[
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.yml",
    "content": "name: Bug Report\ndescription: Report a FreeDATA bug\ntitle: \"[Bug]: \"\nlabels: \"bug :beetle:\"\nbody:\n  - type: markdown\n    attributes:\n      value: |\n        Thanks for taking the time to fill out this bug report!\n\n  - type: input\n    id: freedata-version\n    attributes:\n      label: FreeDATA Version\n      description: |\n        What version of FreeDATA are you using?\n    validations:\n      required: true\n\n  - type: dropdown\n    id: operating-system\n    attributes:\n      label: What operating system are you using?\n      options:\n        - Windows\n        - macOS\n        - Ubuntu\n        - Other Linux\n        - Other (specify below)\n    validations:\n      required: true\n\n  - type: input\n    id: operating-system-version\n    attributes:\n      label: Operating System Version\n      description: What operating system version are you using? On Windows, click Start button > Settings > System > About. On macOS, click the Apple Menu > About This Mac. On Linux, use lsb_release or uname -a.\n      placeholder: \"e.g. Windows 10 version 1909, macOS Catalina 10.15.7, or Ubuntu 20.04\"\n    validations:\n      required: true\n\n  - type: dropdown\n    id: architecture\n    attributes:\n      label: Architecture\n      description: Please specify the system architecture.\n      options:\n        - x86\n        - x64\n        - ARM Desktop\n        - ARM Raspberry Pi\n    validations:\n      required: true\n\n  - type: dropdown\n    id: area-of-problem\n    attributes:\n      label: Area of problem\n      description: Select the area where the problem occurred.\n      options:\n        - Server - Message System\n        - Server - General\n        - Server - API\n        - Server - File Transfer\n        - Server - Socket Interface\n        - GUI\n        - Rig Control\n        - Installation\n    validations:\n      required: true\n\n  - type: textarea\n    id: description\n    attributes:\n      label: Describe the bug\n      description: A clear and concise description of what the bug is.\n      placeholder: \"A clear and concise description of what the bug is.\"\n    validations:\n      required: true\n\n  - type: textarea\n    id: steps-to-reproduce\n    attributes:\n      label: To Reproduce\n      description: |\n        Steps to reproduce the behavior:\n        1. Go to '...'\n        2. Click on '....'\n        3. Scroll down to '....'\n        4. See error\n      placeholder: \"1. Go to '...'\\n2. Click on '....'\\n3. Scroll down to '....'\\n4. See error\"\n    validations:\n      required: true\n\n  - type: textarea\n    id: expected-behavior\n    attributes:\n      label: Expected behavior\n      description: A clear and concise description of what you expected to happen.\n      placeholder: \"A clear and concise description of what you expected to happen.\"\n    validations:\n      required: true\n\n  - type: textarea\n    id: screenshots\n    attributes:\n      label: Screenshots\n      description: If applicable, add screenshots to help explain your problem.\n      placeholder: \"If applicable, add screenshots to help explain your problem.\"\n\n  - type: textarea\n    id: log-files\n    attributes:\n      label: Log Files\n      description: If applicable, add log files to help explain your problem.\n      placeholder: \"If applicable, add log files to help explain your problem.\"\n\n  - type: textarea\n    id: additional-context\n    attributes:\n      label: Additional context\n      description: Add any other context about the problem here.\n      placeholder: \"Add any other context about the problem here.\"\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/config.yml",
    "content": "contact_links:\n  - name: Discord Chat\n    url: https://discord.gg/QewJE4hrFH\n    about: Have questions? Try asking on our Discord - this issue tracker is for reporting bugs or feature requests only\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.yml",
    "content": "name: Feature Request\ndescription: Suggest an idea for FreeDATA\ntitle: \"[Feature Request]: \"\nlabels: \"enhancement :sparkles:\"\nbody:\n\n- type: textarea\n  attributes:\n    label: Problem Description\n    description: Please add a clear and concise description of the problem you are seeking to solve with this feature request.\n  validations:\n    required: true\n- type: textarea\n  attributes:\n    label: Proposed Solution\n    description: Describe the solution you'd like in a clear and concise manner.\n  validations:\n    required: true\n- type: textarea\n  attributes:\n    label: Alternatives Considered\n    description: A clear and concise description of any alternative solutions or features you've considered.\n  validations:\n    required: true\n- type: textarea\n  attributes:\n    label: Additional Information\n    description: Add any other context about the problem here.\n  validations:\n    required: false\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates\nversion: 2\nupdates:\n\n  # Maintain dependencies for GitHub Actions\n  - package-ecosystem: \"github-actions\"\n    directory: \"/\"\n    schedule:\n      interval: \"monthly\"\n    target-branch: \"develop\"\n    \n  # Maintain dependencies for npm\n  - package-ecosystem: \"npm\"\n    directory: \"/freedata_gui\"\n    schedule:\n      interval: \"monthly\"\n    target-branch: \"develop\"\n\n  # Maintain dependencies for pip\n  - package-ecosystem: \"pip\"\n    directory: \"/\"\n    schedule:\n      interval: \"monthly\"\n    target-branch: \"develop\""
  },
  {
    "path": ".github/workflows/build_appimage_bundle.yml",
    "content": "name: Build and Release APPIMAGE Installer\non: [push]\n\njobs:\n  build-and-release:\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Check out repository\n        uses: actions/checkout@v5\n\n      - name: Set up Python 3.13\n        uses: actions/setup-python@v5\n        with:\n          python-version: \"3.13\"\n\n      - name: Install Node.js, NPM and Yarn\n        uses: actions/setup-node@v4\n        with:\n          node-version: 24\n\n      - name: Electron Builder\n        working-directory: freedata_gui\n        run: |\n          npm i\n          npm run build\n\n      - name: LIST ALL FILES\n        run: ls -R\n\n      - name: Install Linux dependencies\n        run: |\n          sudo apt install -y portaudio19-dev libhamlib-dev libhamlib-utils build-essential cmake python3-libhamlib2 patchelf desktop-file-utils\n\n      - name: Install Python dependencies\n        run: |\n          python -m pip install --upgrade pip\n          pip install -r requirements.txt\n\n      - name: Build binaries\n        working-directory: freedata_server\n        run: |\n          python3 -m nuitka  --remove-output --assume-yes-for-downloads --follow-imports --include-data-dir=lib=lib --include-data-files=lib/codec2/*=lib/codec2/ --include-data-files=config.ini.example=config.ini --standalone server.py --output-filename=freedata-server\n\n      - name: Prepare AppImage folder\n        run: |\n          mkdir -p $HOME/freedata-appimage\n          mkdir -p $HOME/freedata-appimage/gui\n          mkdir -p $HOME/freedata-appimage/server\n\n\n      - name: Copy GUI\n        run: |\n          cp -r freedata_gui/release/linux-unpacked/* $HOME/freedata-appimage/gui\n\n\n      - name: Copy server\n        run: |\n          cp -r freedata_server/server.dist/* $HOME/freedata-appimage/server\n\n      - name: Copy Icon\n        run: |\n          cp freedata_gui/build/icon.png $HOME/freedata-appimage/icon.png\n\n      - name: Create Desktop shortcut\n        run: |\n          echo \"[Desktop Entry]\" > $HOME/freedata-appimage/FreeDATA.desktop\n          echo \"Type=Application\" >> $HOME/freedata-appimage/FreeDATA.desktop\n          echo \"Name=FreeDATA\" >> $HOME/freedata-appimage/FreeDATA.desktop\n          echo \"Icon=icon\" >> $HOME/freedata-appimage/FreeDATA.desktop\n          echo \"Exec=AppRun\" >> $HOME/freedata-appimage/FreeDATA.desktop\n          echo \"Categories=Utility\" >> $HOME/freedata-appimage/FreeDATA.desktop\n      \n\n      - name: Create AppImage build script\n        run: |\n          echo '#!/bin/bash\n          # Navigate to the AppDir root; this ensures relative paths work as expected\n          cd \"$(dirname \"$(readlink -f \"${0}\")\")\"\n          \n          # check if config exists in ~/.config/FreeDATA/config.ini else create it\n          SERVER_CONFIG_FILE=~/.config/FreeDATA/config.ini\n          if test -f \"$SERVER_CONFIG_FILE\"; then\n              echo \"$SERVER_CONFIG_FILE exists.\"\n          else \n              echo \"$SERVER_CONFIG_FILE does not exist. Copying the default one\"\n              mkdir ~/.config/FreeDATA\n              cp ./server/config.ini $SERVER_CONFIG_FILE\n          fi\n\n          echo \"Setting server config variable\"\n          export FREEDATA_CONFIG=$SERVER_CONFIG_FILE\n          # ./server/freedata-server\n          \n          # Launch the gui\n          echo \"Starting gui\"\n          ./gui/freedata\n          \n          ' > $HOME/freedata-appimage/AppRun\n          chmod +x $HOME/freedata-appimage/AppRun\n\n      - name: Download AppImage\n        run: |\n          wget https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage -O appimagetool-x86_64.AppImage\n          chmod +x appimagetool-x86_64.AppImage\n\n      - name: Execute AppImage\n        run: |\n          ./appimagetool-x86_64.AppImage $HOME/freedata-appimage/\n\n      - name: LIST ALL FILES\n        run: ls -R\n\n\n\n      - name: Upload artifact\n        uses: actions/upload-artifact@v4\n        with:\n          name: 'FreeDATA-x86_64.AppImage'\n          path: FreeDATA-x86_64.AppImage\n\n      - name: Upload Installer to Release\n        uses: softprops/action-gh-release@v2\n        if: startsWith(github.ref, 'refs/tags/v')\n        with:\n          draft: true\n          files: FreeDATA-x86_64.AppImage\n          tag_name: ${{ github.ref_name }}\n          name: 'FreeDATA-x86_64.AppImage'\n"
  },
  {
    "path": ".github/workflows/build_docker_image.yml",
    "content": "name: Build and Release Docker Image\non: [push]\n\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    name: Build image and upload artifact\n    steps:\n      - name: Checkout Code\n        uses: actions/checkout@v5\n\n      - name: Set up Docker Buildx\n        uses: docker/setup-buildx-action@v3\n\n      # Build a single-architecture image (using linux/amd64) so we can load it locally.\n      - name: Build Docker image for artifact\n        run: |\n          docker buildx build --platform linux/amd64 --load -t ghcr.io/dj2ls/freedata:latest .\n\n      # Save the built image as a tarball.\n      - name: Save Docker image to tar file\n        run: |\n          docker save ghcr.io/dj2ls/freedata:latest -o freedata.tar\n\n      # Upload the image tarball as an artifact.\n      - name: Upload Docker image artifact\n        uses: actions/upload-artifact@v4\n        with:\n          name: freedata-image\n          path: freedata.tar\n\n  release:\n    if: startsWith(github.ref, 'refs/tags/')\n    needs: build\n    runs-on: ubuntu-latest\n    name: Build and Publish Release\n    permissions:\n      packages: write\n      contents: read\n    steps:\n      - name: Checkout Repo\n        uses: actions/checkout@v5\n\n      - name: Set up QEMU\n        uses: docker/setup-qemu-action@v3\n\n      - name: Set up Docker Buildx\n        uses: docker/setup-buildx-action@v3\n\n      - name: Log in to GitHub Container Registry\n        uses: docker/login-action@v3\n        with:\n          registry: ghcr.io\n          username: ${{ github.actor }}\n          password: ${{ secrets.GITHUB_TOKEN }}\n\n      - name: Build and push multi-arch Docker images\n        uses: docker/build-push-action@v6\n        with:\n          context: .\n          platforms: linux/amd64,linux/arm64\n          push: true\n          tags: |\n            ghcr.io/dj2ls/freedata:latest\n            ghcr.io/dj2ls/freedata:${{ github.ref_name }}\n          labels: |\n            org.opencontainers.image.title=FreeDATA\n            org.opencontainers.image.description=Docker image for FreeDATA\n            org.opencontainers.image.url=https://github.com/dj2ls/freedata/pkgs/container/freedata/\n"
  },
  {
    "path": ".github/workflows/build_nsis_bundle.yml",
    "content": "name: Build and Release NSIS Installer\non: [push]\n\njobs:\n  build-and-release:\n    runs-on: windows-latest\n\n    steps:\n      - name: Check out repository\n        uses: actions/checkout@v5\n\n      - name: Set up Python 3.13\n        uses: actions/setup-python@v5\n        with:\n          python-version: \"3.13\"\n\n      - name: Install NSIS via choco\n        run: choco install nsis\n\n      - name: Install Node.js, NPM and Yarn\n        uses: actions/setup-node@v4\n        with:\n          node-version: 24\n\n      - name: Vue Builder\n        working-directory: freedata_gui\n        run: |\n          npm i\n          npm run build\n\n      - name: LIST ALL FILES\n        run: ls -R\n\n      - name: Install Python dependencies\n        run: |\n          python -m pip install --upgrade pip\n          pip install -r requirements.txt\n\n      - uses: robinraju/release-downloader@v1.12\n        with:\n          repository: \"Hamlib/Hamlib\"\n          fileName: \"hamlib-w64-*.zip\"\n          # latest: true\n          extract: true\n          tag: '4.6.5'\n          out-file-path: \"freedata_server/lib/hamlib\"\n\n      - name: Move Hamlib Files\n        working-directory: freedata_server\n        run: |\n          # Find the downloaded folder (handle version numbers dynamically)\n          $HAMLIB_DIR = Get-ChildItem -Directory -Path lib/hamlib -Filter \"hamlib-w64*\" | Select-Object -First 1\n          # Move all contents from the found directory to the target directory\n          Move-Item \"$($HAMLIB_DIR.FullName)\\*\" \"lib/hamlib\" -Force\n          # Remove the now empty versioned directory\n          Remove-Item \"$($HAMLIB_DIR.FullName)\" -Recurse -Force\n        shell: pwsh\n\n\n      - name: Build binaries\n        working-directory: freedata_server\n        run: |\n          python3 -m nuitka `\n            --remove-output `\n            --assume-yes-for-downloads `\n            --follow-imports `\n            --include-data-dir=lib=lib `\n            --include-data-dir=../freedata_gui/dist=gui `\n            --include-data-files=lib/codec2/*=lib/codec2/ `\n            --include-data-files=lib/hamlib/bin/*.exe=lib/hamlib/bin/ `\n            --include-data-files=lib/hamlib/bin/*.dll=lib/hamlib/bin/ `\n            --include-data-files=config.ini.example=config.ini `\n            --nofollow-import-to=sqlalchemy.dialects.mysql,sqlalchemy.dialects.mariadb,sqlalchemy.dialects.postgresql,sqlalchemy.dialects.oracle,sqlalchemy.dialects.mssql `\n            --include-package=sqlalchemy.dialects.sqlite `\n            --standalone server.py `\n            --output-filename=freedata-server `\n            --low-memory\n        shell: pwsh\n\n\n      - name: LIST ALL FILES\n        run: ls -R\n\n      - name: Create installer\n        uses: joncloud/makensis-action@v5.0\n        with:\n          script-file: \"freedata-nsis-config.nsi\"\n          arguments: '/V3'\n\n      - name: LIST ALL FILES\n        working-directory: freedata_server/server.dist\n        run: ls -R\n\n      - name: Upload artifact\n        uses: actions/upload-artifact@v4\n        with:\n          name: 'FreeDATA-Installer'\n          path: ./FreeDATA-Installer.exe\n\n      - name: Upload Installer to Release\n        uses: softprops/action-gh-release@v2\n        if: startsWith(github.ref, 'refs/tags/v')\n        with:\n          draft: false\n          files: ./FreeDATA-Installer.exe\n          tag_name: ${{ github.ref_name }}\n"
  },
  {
    "path": ".github/workflows/build_server.yml",
    "content": "name: build_server\non: [push]\n\njobs:\n  build_i686_x64_release:\n    name: Build FreeDATA packages\n    runs-on: ${{ matrix.os }}\n    strategy:\n      fail-fast: false\n      matrix:\n        os: [ubuntu-24.04, windows-latest] # removed macos-latest as it's broken for now\n        include:\n          - os: ubuntu-24.04\n            zip_name: freedata-server_ubuntu\n           #generator: Unix Makefiles\n            modem_binary_name: freedata_server\n\n          #- os: macos-latest\n          #  zip_name: freedata-server_macos\n          #  generator: Unix Makefiles\n          #  modem_binary_name: freedata_server\n\n          - os: windows-latest\n            zip_name: freedata-server_windows\n            #generator: Visual Studio 17 2022\n            modem_binary_name: freedata_server.exe\n\n    steps:\n      - name: Checkout code for ${{ matrix.platform.name }}\n        uses: actions/checkout@v5\n        with:\n          repository: DJ2LS/FreeDATA\n\n      - name: Install Node.js, NPM and Yarn\n        uses: actions/setup-node@v4\n        with:\n          node-version: 24\n\n      - name: Vue Builder\n        working-directory: freedata_gui\n        run: |\n          npm i\n          npm run build\n\n      - name: Set up Python 3.13\n        uses: actions/setup-python@v5\n        with:\n          python-version: \"3.13\"\n\n      - name: Install Linux dependencies\n        if: ${{startsWith(matrix.os, 'ubuntu')}}\n        run: |\n          sudo apt install -y portaudio19-dev libhamlib-dev libhamlib-utils build-essential cmake patchelf\n\n      - name: Install MacOS pyAudio\n        if: ${{startsWith(matrix.os, 'macos')}}\n        run: |\n          brew install portaudio\n          python -m pip install --upgrade pip\n          pip3 install pyaudio\n\n      - name: Install Python dependencies\n        run: |\n          python -m pip install --upgrade pip\n          pip install -r requirements.txt\n\n      - name: Add MacOS certs\n        if: ${{startsWith(matrix.os, 'macos')}}\n        run: chmod +x add-osx-cert.sh && ./add-osx-cert.sh\n        env:\n          CERTIFICATE_OSX_APPLICATION: ${{ secrets.CERTIFICATE_OSX_APPLICATION }}\n          CERTIFICATE_PASSWORD: ${{ secrets.CERTIFICATE_PASSWORD }}\n\n      - name: Build binaries\n        working-directory: freedata_server\n        run: |\n          python3 -m nuitka --remove-output --nofollow-import-to=sqlalchemy.dialects.mysql,sqlalchemy.dialects.mariadb,sqlalchemy.dialects.postgresql,sqlalchemy.dialects.oracle,sqlalchemy.dialects.mssql --include-package=sqlalchemy.dialects.sqlite --assume-yes-for-downloads --follow-imports --include-data-dir=lib=lib --include-data-dir=../freedata_gui/dist=gui --include-data-files=lib/codec2/*=lib/codec2/ --include-data-files=config.ini.example=config.ini --standalone server.py --output-filename=freedata-server\n\n      #- name: Download Portaudio binaries Linux macOS\n      #  if: ${{!startsWith(matrix.os, 'windows')}}\n      #  working-directory: freedata_server\n      #  run: |\n      #    if ! test -d \"server.dist/freedata_server/_sounddevice_data\"; then\n      #    git clone https://github.com/spatialaudio/portaudio-binaries dist/freedata_server/_sounddevice_data/portaudio-binaries\n      #    fi\n\n      #- name: Download Portaudio binaries Windows\n      #  if: ${{startsWith(matrix.os, 'windows')}}\n      #  working-directory: freedata_server\n      #  run: |\n      #    if(Test-Path -Path \"server.dist/freedata_server/_sounddevice_data\"){\n      #    echo \"sounddevice folder already exists\"\n      #    } else {\n      #    git clone https://github.com/spatialaudio/portaudio-binaries dist/freedata_server/_sounddevice_data/portaudio-binaries\n      #    }\n\n      - name: LIST ALL FILES\n        run: ls -R\n\n      - name: cleanup on macos before code signing\n        if: ${{startsWith(matrix.os, 'macos')}}\n        run: |\n          ls -l\n          # find . -type d -name .git -exec rm -r {} \\;\n          find . -type d -o -name \".git\" -delete\n\n      - name: Compress Modem\n        uses: thedoctor0/zip-release@master\n        with:\n            type: 'zip'\n            filename: '${{ matrix.zip_name }}.zip'\n            directory: ./freedata_server/server.dist\n            path: .\n            # exclusions: '*.git* /*node_modules/* .editorconfig'\n\n      - name: LIST ALL FILES\n        run: ls -R\n\n      - name: Upload artifact\n        uses: actions/upload-artifact@v4\n        with:\n          name: '${{ matrix.zip_name }}'\n          path: ./freedata_server/server.dist/${{ matrix.zip_name }}.zip\n\n      - name: Release Modem\n        uses: softprops/action-gh-release@v2\n        if: startsWith(github.ref, 'refs/tags/v')\n        with:\n          draft: false\n          files: ./freedata_server/server.dist/${{ matrix.zip_name }}.zip\n          tag_name: ${{ github.ref_name }}\n\n\n      - name: LIST ALL FILES\n        run: ls -R\n"
  },
  {
    "path": ".github/workflows/codeql-analysis.yml",
    "content": "# For most projects, this workflow file will not need changing; you simply need\n# to commit it to your repository.\n#\n# You may wish to alter this file to override the set of languages analyzed,\n# or to provide custom queries or build logic.\n#\n# ******** NOTE ********\n# We have attempted to detect the languages in your repository. Please check\n# the `language` matrix defined below to confirm you have the correct set of\n# supported CodeQL languages.\n#\nname: \"CodeQL\"\n\non:\n  push:\n    branches: [ main ]\n  pull_request:\n    # The branches below must be a subset of the branches above\n    branches: [ main ]\n  schedule:\n    - cron: '43 0 * * 2'\n\njobs:\n  analyze:\n    name: Analyze\n    runs-on: ubuntu-latest\n    permissions:\n      actions: read\n      contents: read\n      security-events: write\n\n    strategy:\n      fail-fast: false\n      matrix:\n        language: [ 'javascript', 'python' ]\n        # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]\n        # Learn more:\n        # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed\n\n    steps:\n    - name: Checkout repository\n      uses: actions/checkout@v5\n      with:\n        ref: ${{ github.head_ref }}\n\n    # Initializes the CodeQL tools for scanning.\n    - name: Initialize CodeQL\n      uses: github/codeql-action/init@v3\n      with:\n        languages: ${{ matrix.language }}\n        # If you wish to specify custom queries, you can do so here or in a config file.\n        # By default, queries listed here will override any specified in a config file.\n        # Prefix the list here with \"+\" to use these queries and those in the config file.\n        # queries: ./path/to/local/query, your-org/your-repo/queries@main\n\n    # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).\n    # If this step fails, then you should remove it and run the build manually (see below)\n    - name: Autobuild\n      uses: github/codeql-action/autobuild@v3\n\n    # ℹ️ Command-line programs to run using the OS shell.\n    # 📚 https://git.io/JvXDl\n\n    # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines\n    #    and modify them (or add more) to build your code if your project\n    #    uses a compiled language\n\n    #- run: |\n    #   make bootstrap\n    #   make release\n\n    - name: Perform CodeQL Analysis\n      uses: github/codeql-action/analyze@v3\n"
  },
  {
    "path": ".github/workflows/gui_tests.yml",
    "content": "name: GUI tests\n\non: [push]\n\njobs:\n  build:\n    # The CMake configure and build commands are platform-agnostic and should work equally\n    # well on Windows or Mac.  You can convert this to a matrix build if you need\n    # cross-platform coverage.\n    # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix\n    runs-on: ubuntu-latest\n    strategy:\n      # By default, GitHub will maximize the number of jobs run in parallel\n      # depending on the available runners on GitHub-hosted virtual machines.\n      # max-parallel: 8\n      fail-fast: false\n      matrix:\n        include:\n          #- node-version: \"16\" # EOL\n          #- node-version: \"18\" # EOL\n          - node-version: \"20\"\n          - node-version: \"22\"\n          - node-version: \"24\"\n\n    steps:\n      - uses: actions/checkout@v5\n      - name: Install Node.js, NPM and Yarn\n        uses: actions/setup-node@v4\n        with:\n          node-version: ${{ matrix.node-version }}\n\n      - name: Install dependencies\n        working-directory: freedata_gui\n        run: |\n          npm i\n\n      - name: GUI Linting\n        working-directory: freedata_gui\n        run: |\n          npm run lint\n\n      - name: GUI Build\n        working-directory: freedata_gui\n        run: |\n          npm run build"
  },
  {
    "path": ".github/workflows/modem_tests.yml",
    "content": "name: Modem tests\n\non: [push]\n\njobs:\n  build:\n    # The CMake configure and build commands are platform-agnostic and should work equally\n    # well on Windows or Mac.  You can convert this to a matrix build if you need\n    # cross-platform coverage.\n    # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix\n    runs-on: ubuntu-latest\n    strategy:\n      # By default, GitHub will maximize the number of jobs run in parallel\n      # depending on the available runners on GitHub-hosted virtual machines.\n      # max-parallel: 8\n      fail-fast: false\n      matrix:\n        include:\n          #- python-version: \"3.7\" EOL\n          - python-version: \"3.8\"\n          - python-version: \"3.9\"\n          - python-version: \"3.10\"\n          - python-version: \"3.11\"\n          - python-version: \"3.12\"\n          - python-version: \"3.13\"\n\n    steps:\n      - uses: actions/checkout@v5\n\n      - name: Set up Python ${{ matrix.python-version }}\n        uses: actions/setup-python@v5\n        with:\n          python-version: ${{ matrix.python-version }}\n\n\n      - name: Install system packages\n        shell: bash\n        run: |\n          sudo apt-get update || true\n          sudo apt-get install octave octave-common octave-signal sox portaudio19-dev\n\n      - name: Install python packages\n        shell: bash\n        run: |\n          pip3 install -r requirements.txt\n\n      - name: run config tests\n        shell: bash\n        run: |\n          python -m unittest discover tests"
  },
  {
    "path": ".github/workflows/pip_package.yml",
    "content": "name: Deploy Python Package\non: [push]\n\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v5\n\n    - name: Set up Python 3.13\n      uses: actions/setup-python@v5\n      with:\n        python-version: \"3.13\"\n\n    - name: Install Node.js, NPM and Yarn\n      uses: actions/setup-node@v4\n      with:\n        node-version: 24\n\n    - name: Install Linux dependencies\n      run: |\n        sudo apt install -y portaudio19-dev libhamlib-dev libhamlib-utils build-essential cmake patchelf\n\n    - name: Install Python dependencies\n      run: |\n        python -m pip install --upgrade pip\n        pip install -r requirements.txt\n        pip install wheel\n\n    - name: Build GUI\n      working-directory: freedata_gui\n      run: |\n        npm i\n        npm run build\n\n    - name: Build package\n      run: |\n        python setup.py sdist bdist_wheel\n\n    - name: Publish to PyPI\n      uses: pypa/gh-action-pypi-publish@v1.13.0\n      if: startsWith(github.ref, 'refs/tags/v')\n      with:\n        user: __token__\n        password: ${{ secrets.PYPI_API_TOKEN }}\n"
  },
  {
    "path": ".github/workflows/prettier.yaml",
    "content": "name: Prettier\n\n# This action works with pull requests and pushes\non:\n  push:\n    branches:\n      - main\n\njobs:\n    prettier:\n        runs-on: ubuntu-latest\n\n        steps:\n            - name: Checkout\n              uses: actions/checkout@v5\n              with:\n                  # Make sure the actual branch is checked out when running on pull requests\n                  ref: ${{ github.head_ref }}\n\n            - name: Prettify code\n              uses: creyD/prettier_action@v4.6\n              with:\n                 # This part is also where you can pass other options, for example:\n                 prettier_options: --write **/*.{js,md,css,html}\n"
  },
  {
    "path": ".gitignore",
    "content": "# possible installation of codec2 within freedata_server\nfreedata_server/codec2\n\n# temporary test artifacts\n**/build\n**/Testing\n\n.DS_Store\n\n# Other various files and virtual environments\n.coverage\n.coveragerc\n.env\n.envrc\n.idea\n.pytest_cache\n.venv\n.vscode\n*.iml\n*.pyc\n*.raw\ncoverage.sh\ncoverage.xml\n\n#Ignore GUI config\n/freedata_gui/config/config.json\n\n#GUI_WEB\n/freedata_gui/dist\n/freedata_gui/node_modules/\n/freedata_gui/node_modules!/venv/\n\n# venv packages\nvenv_3.11/\nvenv/\ntest_venv/\nfreedata_server/lib/codec2/codec2/\n"
  },
  {
    "path": ".obs/workflows.yml",
    "content": "# .obs/workflows.yml\n# OBS SCM/CI workflow for FreeDATA\n# - develop branch -> package freedata-dev (on every push)\n# - release tags v* -> package freedata (only on tags)\n# - pushes to main  -> no build\n\nworkflow:\n  version: 1\n\n  steps:\n    # === develop branch (dev builds on every push) ===\n    - branch_package:\n        source_project: home:DJ2LS\n        source_package: freedata\n        target_project: home:DJ2LS\n        target_package: freedata-dev\n      filters:\n        event: push\n        branches:\n          only:\n            - develop\n\n    - trigger_services:\n        project: home:DJ2LS\n        package: freedata-dev\n      filters:\n        event: push\n        branches:\n          only:\n            - develop\n\n    # === release tags (build only for tags, e.g. v1.2.3) ===\n    - branch_package:\n        source_project: home:DJ2LS\n        source_package: freedata\n        target_project: home:DJ2LS\n        target_package: freedata\n      filters:\n        event: tag_push\n        branches:\n          only:\n            - \"v*\"\n\n    - trigger_services:\n        project: home:DJ2LS\n        package: freedata\n      filters:\n        event: tag_push\n        branches:\n          only:\n            - \"v*\"\n"
  },
  {
    "path": ".prettierignore",
    "content": "# Ignore artifacts:\nbuild\ncoverage\nassets\nfreedata_gui/src/waterfall"
  },
  {
    "path": ".stignore",
    "content": "gui/node_modules\n"
  },
  {
    "path": "Dockerfile",
    "content": "################################################################################\n# Build frontend\n################################################################################\nFROM node:20-alpine AS frontend\n\nWORKDIR /src\n\nCOPY freedata_gui ./\n\nRUN npm install && npm run build\n\n################################################################################\n# Build server\n################################################################################\nFROM python:3.11-slim-bookworm AS server\n\nARG HAMLIB_VERSION=4.5.5\nENV HAMLIB_VERSION=${HAMLIB_VERSION}\n\nRUN apt-get update && \\\n  apt-get install --upgrade -y fonts-noto-color-emoji git build-essential cmake portaudio19-dev python3-pyaudio python3-colorama wget && \\\n  mkdir -p /app/FreeDATA\n\nWORKDIR /src\n\nADD https://github.com/Hamlib/Hamlib/releases/download/${HAMLIB_VERSION}/hamlib-${HAMLIB_VERSION}.tar.gz ./hamlib.tar.gz\n\nRUN tar -xplf hamlib.tar.gz\n\nWORKDIR /src/hamlib-${HAMLIB_VERSION}\n\nRUN ./configure --prefix=/app/FreeDATA-hamlib && \\\n\t\tmake && \\\n\t\tmake install\n\nWORKDIR /app/FreeDATA\n\nADD https://github.com/DJ2LS/FreeDATA.git#v0.16.10-alpha ./\n\nRUN python3 -m venv /app/FreeDATA/venv\nENV PATH=\"/app/FreeDATA/venv/bin:$PATH\"\n\nRUN pip install --no-cache-dir --upgrade pip wheel && \\\n  pip install --no-cache-dir -r requirements.txt\n\nWORKDIR /app/FreeDATA/freedata_server/lib\n\nADD https://github.com/drowe67/codec2.git ./codec2\n\nWORKDIR /app/FreeDATA/freedata_server/lib/codec2\n\nRUN mkdir build_linux\n\nWORKDIR /app/FreeDATA/freedata_server/lib/codec2/build_linux\n\nRUN cmake .. && make codec2 -j4\n\n################################################################################\n# Final image\n################################################################################\nFROM python:3.11-slim-bookworm\n\nENV PATH=\"/app/FreeDATA-hamlib/bin:/app/FreeDATA/venv/bin:$PATH\"\n\nENV FREEDATA_CONFIG=/data/config.ini\nENV FREEDATA_DATABASE=/data/freedata-messages.db\nENV HOME=/home/freedata\n\nWORKDIR /app\n\nCOPY --from=server /app ./\nCOPY --from=frontend /src/dist/ ./FreeDATA/freedata_gui/dist/\nCOPY entrypoint.sh /entrypoint.sh\n\nRUN mkdir -p /data && \\\n  cp FreeDATA/freedata_server/config.ini.example /data/config.ini && \\\n  apt-get update && \\\n  apt-get install --upgrade -y \\\n    portaudio19-dev \\\n    alsa-utils \\\n    libasound2 \\\n    libasound2-plugins \\\n    pulseaudio \\\n\tpulseaudio-utils && \\\n  rm -rf /var/lib/apt/lists/*\n\nRUN useradd --create-home --home-dir $HOME freedata \\\n\t&& usermod -aG audio,pulse,pulse-access freedata \\\n\t&& chown -R freedata:freedata $HOME\n\nUSER freedata\n\nENTRYPOINT [ \"/entrypoint.sh\" ]\n"
  },
  {
    "path": "LICENSE",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                       TERMS AND CONDITIONS\n\n  0. Definitions.\n\n  \"This License\" refers to version 3 of the GNU General Public License.\n\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n  \"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n  To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n  A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n  To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n  To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n  An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n  1. Source Code.\n\n  The \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\n  A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n  The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n  The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n  The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n  The Corresponding Source for a work in source code form is that\nsame work.\n\n  2. Basic Permissions.\n\n  All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n  You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n  Conveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n  No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n  When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n  4. Conveying Verbatim Copies.\n\n  You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n  You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n  5. Conveying Modified Source Versions.\n\n  You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n    a) The work must carry prominent notices stating that you modified\n    it, and giving a relevant date.\n\n    b) The work must carry prominent notices stating that it is\n    released under this License and any conditions added under section\n    7.  This requirement modifies the requirement in section 4 to\n    \"keep intact all notices\".\n\n    c) You must license the entire work, as a whole, under this\n    License to anyone who comes into possession of a copy.  This\n    License will therefore apply, along with any applicable section 7\n    additional terms, to the whole of the work, and all its parts,\n    regardless of how they are packaged.  This License gives no\n    permission to license the work in any other way, but it does not\n    invalidate such permission if you have separately received it.\n\n    d) If the work has interactive user interfaces, each must display\n    Appropriate Legal Notices; however, if the Program has interactive\n    interfaces that do not display Appropriate Legal Notices, your\n    work need not make them do so.\n\n  A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n  6. Conveying Non-Source Forms.\n\n  You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n    a) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by the\n    Corresponding Source fixed on a durable physical medium\n    customarily used for software interchange.\n\n    b) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by a\n    written offer, valid for at least three years and valid for as\n    long as you offer spare parts or customer support for that product\n    model, to give anyone who possesses the object code either (1) a\n    copy of the Corresponding Source for all the software in the\n    product that is covered by this License, on a durable physical\n    medium customarily used for software interchange, for a price no\n    more than your reasonable cost of physically performing this\n    conveying of source, or (2) access to copy the\n    Corresponding Source from a network server at no charge.\n\n    c) Convey individual copies of the object code with a copy of the\n    written offer to provide the Corresponding Source.  This\n    alternative is allowed only occasionally and noncommercially, and\n    only if you received the object code with such an offer, in accord\n    with subsection 6b.\n\n    d) Convey the object code by offering access from a designated\n    place (gratis or for a charge), and offer equivalent access to the\n    Corresponding Source in the same way through the same place at no\n    further charge.  You need not require recipients to copy the\n    Corresponding Source along with the object code.  If the place to\n    copy the object code is a network server, the Corresponding Source\n    may be on a different server (operated by you or a third party)\n    that supports equivalent copying facilities, provided you maintain\n    clear directions next to the object code saying where to find the\n    Corresponding Source.  Regardless of what server hosts the\n    Corresponding Source, you remain obligated to ensure that it is\n    available for as long as needed to satisfy these requirements.\n\n    e) Convey the object code using peer-to-peer transmission, provided\n    you inform other peers where the object code and Corresponding\n    Source of the work are being offered to the general public at no\n    charge under subsection 6d.\n\n  A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n  A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n  \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n  If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n  The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n  Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n  7. Additional Terms.\n\n  \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n  When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n  Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n    a) Disclaiming warranty or limiting liability differently from the\n    terms of sections 15 and 16 of this License; or\n\n    b) Requiring preservation of specified reasonable legal notices or\n    author attributions in that material or in the Appropriate Legal\n    Notices displayed by works containing it; or\n\n    c) Prohibiting misrepresentation of the origin of that material, or\n    requiring that modified versions of such material be marked in\n    reasonable ways as different from the original version; or\n\n    d) Limiting the use for publicity purposes of names of licensors or\n    authors of the material; or\n\n    e) Declining to grant rights under trademark law for use of some\n    trade names, trademarks, or service marks; or\n\n    f) Requiring indemnification of licensors and authors of that\n    material by anyone who conveys the material (or modified versions of\n    it) with contractual assumptions of liability to the recipient, for\n    any liability that these contractual assumptions directly impose on\n    those licensors and authors.\n\n  All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n  If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n  Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n  8. Termination.\n\n  You may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n  However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n  Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n  Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n  9. Acceptance Not Required for Having Copies.\n\n  You are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n  10. Automatic Licensing of Downstream Recipients.\n\n  Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\n  An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n  You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n  11. Patents.\n\n  A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\n  A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n  In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n  If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n  If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n  A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n  Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n  12. No Surrender of Others' Freedom.\n\n  If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n  13. Use with the GNU Affero General Public License.\n\n  Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n  14. Revised Versions of this License.\n\n  The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n  Each version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n  If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n  Later license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n  15. Disclaimer of Warranty.\n\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. Limitation of Liability.\n\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n  17. Interpretation of Sections 15 and 16.\n\n  If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n    <program>  Copyright (C) <year>  <name of author>\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<http://www.gnu.org/licenses/>.\n\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\n<http://www.gnu.org/philosophy/why-not-lgpl.html>.\n"
  },
  {
    "path": "README.docker.md",
    "content": "# Running FreeDATA in Docker\n\nThis image was built to allow FreeDATA to be run on MacOS. These instructions are for MacOS, but should work on any platform that supports Docker.\n\n## Prerequisites\n\n- An install of Docker (eg. [Docker Desktop for MacOS](https://docs.docker.com/desktop/setup/install/mac-install/)).\n- Some familiarity with the command line (eg: via `Terminal.app`).\n- [Brew](https://brew.sh/) - I've tried to avoid this as a requirement but it is the easiest way to install `pulseaudio` on MacOS.\n\n## Setting up\n\n### PulseAudio\n\nA lot of this is taken from [this gist](https://gist.github.com/seongyongkim/b7d630a03e74c7ab1c6b53473b592712) and [this Dockerfile](https://github.com/KEINOS/Dockerfile_of_Speaker-Test-for-MacHost/blob/master/Dockerfile)\n\nFirstly, install.\n\n```bash\nbrew install pulseaudio\n```\n\nNow run the daemon.\n\n```bash\npulseaudio --load=module-native-protocol-tcp --exit-idle-time=-1 --daemon\n```\n\nConfirm it is running.\n\n```bash\npulseaudio --check -v\n```\n\nSetup the audio output, this will list your audio output devices. The `*` will show the default output.\n\n```bash\npacmd list-sinks | grep -e 'name:' -e 'index:' -e 'card:'\n```\n\nIf you need to change your default output then this can be done by specifying the index:\n\n```bash\npacmd set-default-sink 1\n```\n\nAs will above, setup the the audio source.\n\n```bash\npacmd list-sources | grep -e 'name:' -e 'index:' -e 'card:'\n```\n\nAny updates to sources can be triggered with:\n\n```bash\npacmd set-default-source 1\n```\n\n### FreeDATA Image\n\nThis can be run in one of two ways. By running the docker image with a long command line or via `docker compose`. Lets start with the long command line.\n\nOn first run, this will copy the sample config file into the `./freedata-data` directory. This can be edited to suit your needs via the GUI. However, to get the GUI to run you will need to update the `NETWORK` section in `config.ini` file to be:\n\n```bash\n[NETWORK]\nmodemaddress = 0.0.0.0\nmodemport = 5050\n```\n\nNow we can start the server.\n\n```bash\ndocker run --rm -it \\\n    -v ./freedata-data:/data\n    -e PULSE_SERVER=host.docker.internal\n    -v /$HOME/.config/pulse:/home/freedata/.config/pulse \\\n    -p 5050:5050 \\\n    --name freedata \\\n    ghcr.io/dj2ls/freedata:latest\n```\n\nIf you'd like to start a `rigctld` instance in the container (see [the wiki](https://wiki.freedata.app/en/usage/radio-control#hamlib-rigctld-commands)), the arguments can be provided with the `RIGCTL_ARGS` environment variable. In the examples below I'm passing a model for a FlexRadio at IP `192.168.0.10` listening on port `6701`:\n\n```bash\ndocker run --rm -it \\\n    -v ./freedata-data:/data\n    -e PULSE_SERVER=host.docker.internal\n    -e RIGCTLD_ARGS=\"--model=2036 --port=4532 --rig-file=192.168.0.10:6701\"\n    -v /$HOME/.config/pulse:/home/freedata/.config/pulse \\\n    -p 5050:5050 \\\n    --name freedata \\\n    ghcr.io/dj2ls/freedata:latest\n```\n\nA slightly more tidy method of provding the same config is via `docker compose`. Create a `docker-compose.yml` file with the following content:\n\n```yaml\nservices:\n  freedata:\n    container_name: freedata\n    image: ghcr.io/dj2ls/freedata:latest\n    pull_policy: always\n    volumes:\n      - ./freedata-data:/data\n      - /$HOME/.config/pulse:/home/freedata/.config/pulse\n    environment:\n      - PULSE_SERVER=host.docker.internal\n      - RIGCTLD_ARGS=--model=2036 --port=4532 --rig-file=192.168.0.10:6701\n    ports:\n      - 5050:5050\n```\n\nThis can then be run with:\n\n```bash\ndocker-compose up -d\n```\n\nAnd its logs viewed with:\n\n```bash\ndocker-compose logs -f\n```\n\n## Usage\n\nOnce the server is running, you can access the GUI by visiting `http://localhost:5050/gui` in your browser.\n\nYou will need to set up your audio device and radio config.\n"
  },
  {
    "path": "README.md",
    "content": "# FreeDATA\n\n> FreeDATA is a versatile, **open-source platform designed specifically for HF communications**, leveraging **codec2** data modes for robust global digital communication. It features a network-based server-client architecture, a REST API, multi-platform compatibility, and a messaging system.\n\n> Please keep in mind, this project is still **under development** with many issues which need to be solved.\n\n[![CodeFactor](https://www.codefactor.io/repository/github/dj2ls/freedata/badge)](https://www.codefactor.io/repository/github/dj2ls/freedata)\n[![Modem tests](https://github.com/DJ2LS/FreeDATA/actions/workflows/modem_tests.yml/badge.svg)](https://github.com/DJ2LS/FreeDATA/actions/workflows/modem_tests.yml)\n\n![FreeDATA_main_screen.png](documentation%2FFreeDATA_main_screen.png)\n\n![FreeDATA_chat_screen.png](documentation%2FFreeDATA_chat_screen.png)\n\n## Installation\n\nPlease check the [wiki](https://wiki.freedata.app) for installation instructions\nPlease check the ['Releases'](https://github.com/DJ2LS/FreeDATA/releases) section for downloading precompiled builds\n\n## Credits\n\n- David Rowe and the FreeDV team for developing the modem and libraries -\n  FreeDV Codec 2 : https://github.com/drowe67/codec2\n"
  },
  {
    "path": "add-osx-cert.sh",
    "content": "#!/usr/bin/env sh\n\nKEY_CHAIN=build.keychain\nCERTIFICATE_P12=certificate.p12\n\n# Recreate the certificate from the secure environment variable\necho $CERTIFICATE_OSX_APPLICATION | base64 --decode > $CERTIFICATE_P12\n\n#create a keychain\nsecurity create-keychain -p actions $KEY_CHAIN\n\n# Make the keychain the default so identities are found\nsecurity default-keychain -s $KEY_CHAIN\n\n# Unlock the keychain\nsecurity unlock-keychain -p actions $KEY_CHAIN\n\nsecurity import $CERTIFICATE_P12 -k $KEY_CHAIN -P $CERTIFICATE_PASSWORD -T /usr/bin/codesign;\n\nsecurity set-key-partition-list -S apple-tool:,apple: -s -k actions $KEY_CHAIN\n\n# remove certs\nrm -fr *.p12"
  },
  {
    "path": "documentation/FreeDATA-daemon_network_documentation.md",
    "content": "# FreeDATA - DAEMON network documentation\n\n## GET DAEMON STATE\n\n#### Description:\n\nGet the current daemon state\n\n#### Parameters\n\n- Type: GET\n- Command: DAEMON_STATE\n- Parameter: --- (str)\n\n#### Example\n\n```\n{\"type\" : \"GET\", \"command\" : \"DAEMON_STATE\"}\n```\n\n#### Returns\n\n```\n{\n\t\"COMMAND\": \"DAEMON_STATE\",\n\t\"DAEMON_STATE\": [],\n\t\"PYTHON_VERSION\": str(python_version),\n\t\"HAMLIB_VERSION\": str(hamlib_version),\n\t\"INPUT_DEVICES\": [],\n\t\"OUTPUT_DEVICES\": [],\n\t\"SERIAL_DEVICES\": [],\n\t\"CPU\": \"\",\n\t\"RAM\": \"\",\n\t\"VERSION\": \"0.1-prototype\"\n}\n```\n\n## SET CALLSIGN\n\n#### Description:\n\nSave your callsign to the daemon\n\n#### Parameters\n\n- Type: SET\n- Command: MYCALLSIGN\n- Parameter: callsign (str)\n- timestamp: unix timestamp (str)\n\n#### Example\n\n```\n{\"type\" : \"SET\", \"command\": \"MYCALLSIGN\" , \"parameter\": \"<callsign>\", \"timestamp\" : \"123456789\"}\n```\n\n## SET GRIDSQUARE\n\n#### Description:\n\nSave your gridsquare/maidenhead-locator to the daemon\n\n#### Parameters\n\n- Type: SET\n- Command: MYGRID\n- Parameter: gridsquare (str)\n- timestamp: unix timestamp (str)\n\n#### Example\n\n```\n{\"type\" : \"SET\", \"command\": \"MYGRID\" , \"parameter\": \"<gridsquare>\", \"timestamp\" : \"123456789\"}\n```\n\n## TEST HAMLIB\n\n#### Description:\n\nTest your hamlib settings\n\n#### Parameters\n\n- Type: GET\n- Command: TEST_HAMLIB\n- Parameter: obj\n  - devicename\n  - deviceport\n  - pttprotocol\n  - pttport\n  - serialspeed\n  - data_bits\n  - stop_bits\n  - handshake\n- timestamp: unix timestamp (str)\n\n#### Example\n\n```\n{\n        \"type\": \"GET\",\n        \"command\" : \"TEST_HAMLIB\",\n        \"parameter\" : [{\n            \"devicename\" : \"<devicename>\",\n            \"deviceport\" : \"<deviceport>\",\n            \"pttprotocol\" : \"<pttprotocol>\",\n            \"pttport\" : \"<pttport>\",\n            \"serialspeed\" : \"<serialspeed>\",\n            \"data_bits\" : \"<data_bits>\",\n            \"stop_bits\" : \"<stop_bits>\",\n            \"handshake\" : \"<handshake>\"\n        }]\n    }\n```\n\n## START TNC\n\n#### Description:\n\nStart the tnc process\n\n#### Parameters\n\n- Type: GET\n- Command: TEST_HAMLIB\n- Parameter: obj\n  - mycall\n  - mygrid\n  - rx_audio\n  - tx_audio\n  - devicename\n  - deviceport\n  - pttprotocol\n  - pttport\n  - serialspeed\n  - data_bits\n  - stop_bits\n  - handshake\n\n#### Example\n\n```\n{\n        type: 'SET',\n        command: 'STARTTNC',\n        parameter: [{\n            mycall: mycall,\n            mygrid: mygrid,\n            rx_audio: rx_audio,\n            tx_audio: tx_audio,\n            devicename: devicename,\n            deviceport: deviceport,\n            pttprotocol: pttprotocol,\n            pttport: pttport,\n            serialspeed: serialspeed,\n            data_bits: data_bits,\n            stop_bits: stop_bits,\n            handshake: handshake\n\n        }]\n    }\n```\n\n## STOP TNC\n\n#### Description:\n\nStop the tnc process\n\n#### Parameters\n\n- Type: SET\n- Command: STOPTNC\n- Parameter: ---\n\n#### Example\n\n```\n{\"type\" : \"SET\", \"command\": \"STOPTNC\" , \"parameter\": \"---\" }\n```\n"
  },
  {
    "path": "documentation/FreeDATA-protocols.md",
    "content": "# FreeDATA - Protocols\n\n## ARQ Sessions\n\nAn ARQ Session represents a reliable data transmission session from a sending station (A) to a receiving station (B). It uses automatic repeat request on top of different codec2 modes according to the transmission channel conditions.\n\nSo lets say A wants to send some data to B. A typical scenario would be like this:\n\n```\nISS->(1)IRS:<datac13> OPEN_REQ(session id, origin, dest)\nIRS->(1)ISS:<datac13> OPEN_ACK (session id, proto version, speed level, frames, snr)\n\nISS->(1)IRS:<datac13> INFO(id, total_bytes, total_crc)\nIRS->(1)ISS:<datac13> INFO_ACK(id, total_crc)\n\nISS->(1)IRS:BURST (ID, offset, payload),(ID, offset, payload),(ID, offset, payload)\nIRS->(1)ISS:BURST_ACK (ID, next_offset, speed level, frames, snr)\n\nISS-->(1)IRS:Lost BURST (total or part)\nIRS->(1)ISS:BURST_NACK (ID, next_offset, speed level, frames, snr)\n\nISS->(1)IRS:BURST (ID, offset, payload),(ID, offset, payload),(ID, offset, payload)\nIRS->(1)ISS:DATA ACK NACK (ID, next_offset, speed level, frames, snr)\n```\n\n### Frame details\n\n#### SESSION_OPEN_REQ\n\nISS sends this first\n\nDATAC13 Mode (12 bytes)\n\n| field           | bytes |\n| --------------- | ----- |\n| session id      | 1     |\n| origin          | 6     |\n| destination_crc | 3     |\n\n#### SESSION_OPEN_ACK\n\nSent by the IRS in response to a SESSION_OPEN_REQ\n\nDATAC13 Mode (12 bytes)\n\n| field            | bytes |\n| ---------------- | ----- |\n| session id       | 1     |\n| origin           | 6     |\n| destination_crc  | 3     |\n| protocol version | 1     |\n| snr              | 1     |\n\n#### SESSION_INFO\n\nISS sends this in response to a SESSION_OPEN_ACK\n\nDATAC13 Mode (12 bytes)\n\n| field       | bytes |\n| ----------- | ----- |\n| session id  | 1     |\n| total bytes | 4     |\n| total crc   | 4     |\n| snr         | 1     |\n\n#### SESSION_INFO_ACK\n\nIRS sends this in response to a SESSION_INFO\n\nDATAC13 Mode (12 bytes)\n\n| field            | bytes |\n| ---------------- | ----- |\n| session id       | 1     |\n| total crc        | 4     |\n| snr              | 1     |\n| speed level      | 1     |\n| frames per burst | 1     |\n\n#### Data Burst\n\nISS sends this to send data to IRS\n\nMode according to handshake speed level\n\nFrames per burst according to handshake\n\n##### Modulation\n\nEach burst is composed of frames_per_burst frames:\n\n|preamble|f1|f2|f3|...|postamble|\n\n##### Each data frame\n\n| field      | bytes                          |\n| ---------- | ------------------------------ |\n| session id | 1                              |\n| offset     | 4                              |\n| payload    | (the remaining payload length) |\n\n#### DATA_BURST_ACK\n\nSent by the IRS following successful decoding of burst.\n\n| field                 | bytes |\n| --------------------- | ----- |\n| session id            | 1     |\n| next offset           | 4     |\n| next speed level      | 1     |\n| next frames per burst | 1     |\n| snr                   | 1     |\n\n#### DATA_BURST_NACK\n\nSent by the IRS following unsuccessful decoding of burst or timeout.\n\n| field                 | bytes |\n| --------------------- | ----- |\n| session id            | 1     |\n| next offset           | 4     |\n| next speed level      | 1     |\n| next frames per burst | 1     |\n| snr                   | 1     |\n\n#### DATA ACK NACK\n\nSent by the IRS after receiving data with a state information.\n\n| field      | bytes |\n| ---------- | ----- |\n| session id | 1     |\n| state      | 1     |\n| snr        | 1     |\n"
  },
  {
    "path": "entrypoint.sh",
    "content": "#!/usr/bin/env bash\n\necho \"Starting pulseaudio\"\npulseaudio --exit-idle-time=-1 --daemon &\n\nif [ -z \"${RIGCTLD_ARGS+x}\" ]; then\n    echo \"No RIGCTLD_ARGS set, not starting rigctld\"\nelse\n    echo \"Starting rigctld with args ${RIGCTLD_ARGS}\"\n    rigctld ${RIGCTLD_ARGS} &\nfi\n\necho \"Starting FreeDATA server\"\npython3 /app/FreeDATA/freedata_server/server.py\n"
  },
  {
    "path": "freedata-nsis-config.nsi",
    "content": "!include \"MUI2.nsh\"\n\n; Request administrative rights\nRequestExecutionLevel admin\n\n; The name and file name of the installer\nName \"FreeDATA Installer\"\nOutFile \"FreeDATA-Installer.exe\"\n\n; Default installation directory for the server\nInstallDir \"$LOCALAPPDATA\\FreeDATA\"\n\n; Registry key to store the installation directory\nInstallDirRegKey HKCU \"Software\\FreeDATA\" \"Install_Dir\"\n\n; Modern UI settings\n!define MUI_ABORTWARNING\n\n; Installer interface settings\n!define MUI_ICON \"documentation\\icon.ico\"\n!define MUI_UNICON \"documentation\\icon.ico\" ; Icon for the uninstaller\n\n; Define the welcome page text\n!define MUI_WELCOMEPAGE_TEXT \"Welcome to the FreeDATA Setup Wizard. This wizard will guide you through the installation process.\"\n!define MUI_FINISHPAGE_TEXT \"Folder: $INSTDIR\"\n!define MUI_DIRECTORYPAGE_TEXT_TOP \"Please select the installation folder. It's recommended to use the suggested one to avoid permission problems.\"\n\n; Pages\n!insertmacro MUI_PAGE_WELCOME\n!insertmacro MUI_PAGE_LICENSE \"LICENSE\"\n!insertmacro MUI_PAGE_COMPONENTS\n!insertmacro MUI_PAGE_DIRECTORY\n!insertmacro MUI_PAGE_INSTFILES\n!insertmacro MUI_PAGE_FINISH\n\n; Uninstaller\n!insertmacro MUI_UNPAGE_WELCOME\n!insertmacro MUI_UNPAGE_CONFIRM\n!insertmacro MUI_UNPAGE_INSTFILES\n!insertmacro MUI_UNPAGE_FINISH\n\n; Language (you can choose and configure the language(s) you want)\n!insertmacro MUI_LANGUAGE \"English\"\n\n\n; Installer Sections\nSection \"FreeData Server\" SEC01\n  ; Set output path to the installation directory\n  SetOutPath $INSTDIR\\freedata-server\n\n  ; Check if \"config.ini\" exists and back it up\n  IfFileExists $INSTDIR\\freedata-server\\config.ini backupConfig\n\ndoneBackup:\n  ; Add your application files here\n  File /r \"freedata_server\\server.dist\\*\"\n\n; Restore the original \"config.ini\" if it was backed up\n  IfFileExists $INSTDIR\\freedata-server\\config.ini.bak restoreConfig\n\n  ; Create a shortcut in the user's desktop\n  CreateShortCut \"$DESKTOP\\FreeDATA Server.lnk\" \"$INSTDIR\\freedata-server\\freedata-server.exe\"\n\n  ; Create Uninstaller\n  WriteUninstaller \"$INSTDIR\\Uninstall.exe\"\n\n  ; Create a Start Menu directory\n  CreateDirectory \"$SMPROGRAMS\\FreeDATA\"\n\n  ; Create shortcut in the Start Menu directory\n  CreateShortCut \"$SMPROGRAMS\\FreeDATA\\FreeDATA Server.lnk\" \"$INSTDIR\\freedata-server\\freedata-server.exe\"\n\n  ; Create an Uninstall shortcut\n  CreateShortCut \"$SMPROGRAMS\\FreeDATA\\Uninstall FreeDATA.lnk\" \"$INSTDIR\\Uninstall.exe\"\n\n\n  ; Backup \"config.ini\" before overwriting files\nbackupConfig:\n  Rename $INSTDIR\\freedata-server\\config.ini $INSTDIR\\freedata-server\\config.ini.bak\n  Goto doneBackup\n\n; Restore the original \"config.ini\"\nrestoreConfig:\n  Delete $INSTDIR\\freedata-server\\config.ini\n  Rename $INSTDIR\\freedata-server\\config.ini.bak $INSTDIR\\freedata-server\\config.ini\n\nSectionEnd\n\n; Uninstaller Section\nSection \"Uninstall\"\n  ; Delete files and directories for the server\n  Delete $INSTDIR\\freedata-server\\*.*\n  RMDir /r $INSTDIR\\freedata-server\n\n  ; Remove the desktop shortcuts\n  Delete \"$DESKTOP\\FreeDATA Server.lnk\"\n\n; Remove Start Menu shortcuts\n  Delete \"$SMPROGRAMS\\FreeDATA\\*.*\"\n  RMDir \"$SMPROGRAMS\\FreeDATA\"\n\n  ; Attempt to delete the uninstaller itself\n  Delete $EXEPATH\n\n  ; Now remove the installation directory if it's empty\n  RMDir /r $INSTDIR\nSectionEnd\n"
  },
  {
    "path": "freedata_gui/README.md",
    "content": "# freedata_gui\n\n## Project setup\n\n```\nnpm install\n```\n\n### Compiles and hot-reloads for development\n\n```\nnpm run serve\n```\n\n### Compiles and minifies for production\n\n```\nnpm run build\n```\n\n### Lints and fixes files\n\n```\nnpm run lint\n```\n"
  },
  {
    "path": "freedata_gui/babel.config.js",
    "content": "module.exports = {\n  presets: [\"@vue/cli-plugin-babel/preset\"],\n};\n"
  },
  {
    "path": "freedata_gui/eslint.config.js",
    "content": "import pluginVue from \"eslint-plugin-vue\";\nimport globals from \"globals\";\n\nexport default [\n  ...pluginVue.configs[\"flat/base\"],\n  //...pluginVue.configs['flat/recommended'],  // causes some errors not able to fix, yet. So disabled for now\n  {\n    ignores: [\n      \"**/*.config.js\",\n      \"!**/eslint.config.js\",\n      \"**/src/locales/**\",\n      \"**/node_modules/**\",\n      \"**/dist/**\",\n    ],\n    rules: {\n      \"vue/no-unused-vars\": \"error\",\n      \"vue/multi-word-component-names\": \"warn\",\n    },\n    languageOptions: {\n      //sourceType: 'module',\n      globals: {\n        ...globals.browser,\n      },\n    },\n  },\n];\n"
  },
  {
    "path": "freedata_gui/jsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"target\": \"es5\",\n    \"module\": \"esnext\",\n    \"baseUrl\": \"./\",\n    \"moduleResolution\": \"node\",\n    \"paths\": {\n      \"@/*\": [\n        \"src/*\"\n      ]\n    },\n    \"lib\": [\n      \"esnext\",\n      \"dom\",\n      \"dom.iterable\",\n      \"scripthost\"\n    ]\n  }\n}\n"
  },
  {
    "path": "freedata_gui/package.json",
    "content": "{\n  \"name\": \"FreeDATA\",\n  \"version\": \"0.17.8-beta\",\n  \"description\": \"FreeDATA Client application for connecting to FreeDATA server\",\n  \"private\": true,\n  \"scripts\": {\n    \"serve\": \"vue-cli-service serve\",\n    \"build\": \"npm i && vue-cli-service build\",\n    \"lint\": \"npx eslint .\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/DJ2LS/FreeDATA.git\"\n  },\n  \"keywords\": [\n    \"Modem\",\n    \"GUI\",\n    \"FreeDATA\",\n    \"codec2\"\n  ],\n  \"author\": \"DJ2LS\",\n  \"license\": \"GPL-3.0\",\n  \"bugs\": {\n    \"url\": \"https://github.com/DJ2LS/FreeDATA/issues\"\n  },\n  \"homepage\": \"https://freedata.app\",\n  \"dependencies\": {\n    \"@popperjs/core\": \"^2.11.8\",\n    \"bootstrap\": \"^5.3.8\",\n    \"bootstrap-icons\": \"^1.13.1\",\n    \"bootstrap-vue-next\": \"^0.40.4\",\n    \"chart.js\": \"^4.5.0\",\n    \"chartjs-plugin-annotation\": \"^3.1.0\",\n    \"core-js\": \"^3.45.1\",\n    \"d3\": \"^7.9.0\",\n    \"dompurify\": \"^3.4.0\",\n    \"gettext-parser\": \"^8.0.0\",\n    \"gridstack\": \"^12.3.3\",\n    \"i18next\": \"^25.5.2\",\n    \"i18next-vue\": \"^5.3.0\",\n    \"js-image-compressor\": \"^2.0.0\",\n    \"marked\": \"^16.3.0\",\n    \"pinia\": \"^3.0.3\",\n    \"qth-locator\": \"^2.1.0\",\n    \"topojson-client\": \"^3.1.0\",\n    \"uuid\": \"^13.0.0\",\n    \"vue\": \"^3.5.21\",\n    \"vue-chartjs\": \"^5.3.2\",\n    \"vuemoji-picker\": \"^0.3.2\"\n  },\n  \"devDependencies\": {\n    \"@babel/core\": \"^7.28.4\",\n    \"@babel/eslint-parser\": \"^7.28.4\",\n    \"@eslint/js\": \"^9.35.0\",\n    \"@vue/cli-service\": \"~5.0.9\",\n    \"eslint\": \"^9.35.0\",\n    \"eslint-plugin-vue\": \"^10.4.0\",\n    \"globals\": \"^16.4.0\"\n  },\n  \"browserslist\": [\n    \"> 1%\",\n    \"last 2 versions\",\n    \"not dead\",\n    \"not ie 11\"\n  ]\n}\n"
  },
  {
    "path": "freedata_gui/public/index.html",
    "content": "<!doctype html>\n<html lang=\"\">\n  <head>\n    <meta charset=\"utf-8\" />\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n    <link rel=\"icon\" href=\"<%= BASE_URL %>favicon.ico\" />\n    <title><%= htmlWebpackPlugin.options.title %></title>\n\n    <!-- Favicon for browsers -->\n    <link\n      rel=\"icon\"\n      type=\"image/png\"\n      sizes=\"32x32\"\n      href=\"<%= BASE_URL %>favicon-32x32.png\"\n    />\n    <link\n      rel=\"icon\"\n      type=\"image/png\"\n      sizes=\"16x16\"\n      href=\"<%= BASE_URL %>favicon-16x16.png\"\n    />\n    <link\n      rel=\"icon\"\n      type=\"image/png\"\n      sizes=\"192x192\"\n      href=\"<%= BASE_URL %>android-chrome-192x192.png\"\n    />\n    <link\n      rel=\"icon\"\n      type=\"image/png\"\n      sizes=\"512x512\"\n      href=\"<%= BASE_URL %>android-chrome-512x512.png\"\n    />\n\n    <!-- Apple touch icon -->\n    <link rel=\"apple-touch-icon\" href=\"<%= BASE_URL %>apple-touch-icon.png\" />\n\n    <!-- Android icons -->\n    <link rel=\"manifest\" href=\"<%= BASE_URL %>manifest.json\" />\n\n    <!-- Prevent status bar from showing on iOS -->\n    <meta name=\"apple-mobile-web-app-capable\" content=\"yes\" />\n    <meta\n      name=\"apple-mobile-web-app-status-bar-style\"\n      content=\"black-translucent\"\n    />\n\n    <!-- Add custom JavaScript to set the viewport height -->\n    <script>\n      function setAppHeight() {\n        const appHeight = window.visualViewport?.height || window.innerHeight;\n        document.documentElement.style.setProperty(\n          \"--app-height\",\n          `${appHeight}px`,\n        );\n      }\n      window.addEventListener(\"resize\", setAppHeight);\n      window.addEventListener(\"orientationchange\", setAppHeight);\n      document.addEventListener(\"DOMContentLoaded\", setAppHeight);\n    </script>\n  </head>\n\n  <body>\n    <noscript>\n      <strong\n        >We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work\n        properly without JavaScript enabled. Please enable it to\n        continue.</strong\n      >\n    </noscript>\n    <div id=\"app\"></div>\n    <!-- built files will be auto injected -->\n  </body>\n</html>\n"
  },
  {
    "path": "freedata_gui/public/manifest.json",
    "content": "{\n  \"name\": \"FreeDATA\",\n  \"short_name\": \"FreeDATA\",\n  \"description\": \"FreeDATA is a communication platform for transferring data over radio.\",\n  \"categories\": [\"utilities\", \"communication\", \"productivity\"],\n  \"start_url\": \".\",\n  \"display\": \"standalone\",\n  \"background_color\": \"#ffffff\",\n  \"theme_color\": \"#ffffff\",\n  \"icons\": [\n    {\n      \"src\": \"android-chrome-192x192.png\",\n      \"sizes\": \"192x192\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"android-chrome-512x512.png\",\n      \"sizes\": \"512x512\",\n      \"type\": \"image/png\"\n    }\n  ]\n}\n"
  },
  {
    "path": "freedata_gui/src/App.vue",
    "content": "<template>\n  <Suspense>\n    <template #default>\n      <!-- Lazy load FreeDATAMain -->\n      <FreeDATAMain />\n    </template>\n    <template #fallback>\n      <!-- Show loading screen while the component is loading -->\n      <LoadingScreen />\n    </template>\n  </Suspense>\n</template>\n\n<script setup>\nimport \"./styles.css\"; // Import global styles\nimport \"bootstrap/dist/css/bootstrap.css\";\nimport \"bootstrap-icons/font/bootstrap-icons.css\";\n\n\nimport {defineAsyncComponent, onMounted} from 'vue';\nimport { Tooltip, Popover } from 'bootstrap'\n\n// Lazy load FreeDATAMain\nconst FreeDATAMain = defineAsyncComponent(() =>\n    import('./components/main_screen.vue')\n);\n\n// Import the loading screen\nconst LoadingScreen = defineAsyncComponent(() =>\n    import('./components/main_loading_screen.vue')\n);\n\nonMounted(() => {\n// Set attributes on the <html> element\n  document.documentElement.setAttribute('lang', 'en');\n  document.documentElement.setAttribute('data-bs-theme', 'light');\n\n// Initialize Tooltips and Popovers\n    new Tooltip(document.body, {\n      selector: \"[data-bs-toggle='tooltip']\",\n    })\n\n  new Popover(document.body, {\n      selector: \"[data-bs-toggle='popover']\",\n    })\n\n});\n\n\n</script>\n"
  },
  {
    "path": "freedata_gui/src/assets/countries-10m.json",
    "content": "{\"type\":\"Topology\",\"objects\":{\"countries\":{\"type\":\"GeometryCollection\",\"geometries\":[{\"type\":\"MultiPolygon\",\"arcs\":[[[0,1]],[[2,3,4,5]],[[6,7]],[[8,9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]]],\"id\":\"360\",\"properties\":{\"name\":\"Indonesia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[270,-1]],[[271,272]],[[273,-8,274,275,276,277]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]]],\"id\":\"458\",\"properties\":{\"name\":\"Malaysia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[292,293,294,295]],[[296,297,298,299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[324]],[[325]],[[326]],[[327]],[[328]],[[329]],[[330]],[[331]],[[332]],[[333]],[[334]],[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[353]],[[354]],[[355]],[[356]],[[357]],[[358]],[[359]],[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370]],[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]]],\"id\":\"152\",\"properties\":{\"name\":\"Chile\"}},{\"type\":\"Polygon\",\"arcs\":[[461,462,463,464,-293]],\"id\":\"068\",\"properties\":{\"name\":\"Bolivia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-296,465,466,467,468,-462]],[[469]],[[470]],[[471]],[[472]]],\"id\":\"604\",\"properties\":{\"name\":\"Peru\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-465,473,474,475,476,-294]],[[-297,477]],[[-299,478]],[[479]],[[480]],[[481]],[[482]],[[483]]],\"id\":\"032\",\"properties\":{\"name\":\"Argentina\"}},{\"type\":\"Polygon\",\"arcs\":[[484,485,486,487,488,489,490,491],[492]],\"properties\":{\"name\":\"Dhekelia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-492]],[[-493]],[[-486,493,494,495,496,497,498]],[[499,500,-490]]],\"id\":\"196\",\"properties\":{\"name\":\"Cyprus\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[501,502,503,504,505,506,507,508,509,510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]]],\"id\":\"356\",\"properties\":{\"name\":\"India\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,-506,562,-504,563,-502]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]]],\"id\":\"156\",\"properties\":{\"name\":\"China\"}},{\"type\":\"Polygon\",\"arcs\":[[633,634,635,636,637,638,639,640,641,642]],\"id\":\"376\",\"properties\":{\"name\":\"Israel\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-634,643,644]],[[645,639,-640,-639]]],\"id\":\"275\",\"properties\":{\"name\":\"Palestine\"}},{\"type\":\"Polygon\",\"arcs\":[[646,647,-636]],\"id\":\"422\",\"properties\":{\"name\":\"Lebanon\"}},{\"type\":\"Polygon\",\"arcs\":[[648,649,650,651,652,653,654]],\"id\":\"231\",\"properties\":{\"name\":\"Ethiopia\"}},{\"type\":\"Polygon\",\"arcs\":[[655,656,657,658,659,-655]],\"id\":\"728\",\"properties\":{\"name\":\"S. Sudan\"}},{\"type\":\"Polygon\",\"arcs\":[[660,661,662,-653]],\"id\":\"706\",\"properties\":{\"name\":\"Somalia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-654,-663,663,664,665,-656]],[[666]]],\"id\":\"404\",\"properties\":{\"name\":\"Kenya\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-510,667,668,669,-547,670]],[[671]]],\"id\":\"586\",\"properties\":{\"name\":\"Pakistan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[672,673,674]],[[675]],[[676]]],\"id\":\"454\",\"properties\":{\"name\":\"Malawi\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[677,678,679,680,681,-665,682,683,-675]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]]],\"id\":\"834\",\"properties\":{\"name\":\"Tanzania\"}},{\"type\":\"Polygon\",\"arcs\":[[-637,-648,690,691,692,693]],\"id\":\"760\",\"properties\":{\"name\":\"Syria\"}},{\"type\":\"Polygon\",\"arcs\":[[-661,-652,694,695]],\"properties\":{\"name\":\"Somaliland\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[696,697,698]],[[699,700,701,702,703,704,705,706,707,708,709,710],[711]],[[712]],[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720]],[[721]],[[722]],[[723]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]]],\"id\":\"250\",\"properties\":{\"name\":\"France\"}},{\"type\":\"Polygon\",\"arcs\":[[731,732,733,-697]],\"id\":\"740\",\"properties\":{\"name\":\"Suriname\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[734,735,736,-733]],[[737]]],\"id\":\"328\",\"properties\":{\"name\":\"Guyana\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[738,739]],[[740]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[748]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[755]],[[756]],[[757]],[[758]],[[759]],[[760]],[[761]],[[762]],[[763]],[[764]],[[765]],[[766]],[[767]],[[768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]]],\"id\":\"410\",\"properties\":{\"name\":\"South Korea\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-740,792,-555,793,794]],[[795]],[[796]],[[797]],[[798]],[[799]],[[800]],[[801]],[[802]],[[803]]],\"id\":\"408\",\"properties\":{\"name\":\"North Korea\"}},{\"type\":\"Polygon\",\"arcs\":[[804,805,806,807,808,809,810,811]],\"id\":\"504\",\"properties\":{\"name\":\"Morocco\"}},{\"type\":\"Polygon\",\"arcs\":[[812,813,814,-812]],\"id\":\"732\",\"properties\":{\"name\":\"W. Sahara\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[815,816,817,818]],[[819]],[[820]],[[821]]],\"id\":\"188\",\"properties\":{\"name\":\"Costa Rica\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[822,823,824,-819]],[[825]],[[826]],[[827]]],\"id\":\"558\",\"properties\":{\"name\":\"Nicaragua\"}},{\"type\":\"Polygon\",\"arcs\":[[828,829,830,831,832,833]],\"id\":\"178\",\"properties\":{\"name\":\"Congo\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[834,-658,835,836,837,-679,838,839,840,841,-829]],[[842]]],\"id\":\"180\",\"properties\":{\"name\":\"Dem. Rep. Congo\"}},{\"type\":\"Polygon\",\"arcs\":[[-505,-563]],\"id\":\"064\",\"properties\":{\"name\":\"Bhutan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[843,844,845,846,847,848,849,850,851,852,853,854,855]],[[856]],[[857]],[[858]]],\"id\":\"804\",\"properties\":{\"name\":\"Ukraine\"}},{\"type\":\"Polygon\",\"arcs\":[[859,860,861,862,-856]],\"id\":\"112\",\"properties\":{\"name\":\"Belarus\"}},{\"type\":\"Polygon\",\"arcs\":[[863,864,865,866,867]],\"id\":\"516\",\"properties\":{\"name\":\"Namibia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[868,869,870,871,872,873,-868],[874]],[[875]],[[876]]],\"id\":\"710\",\"properties\":{\"name\":\"South Africa\"}},{\"type\":\"Polygon\",\"arcs\":[[877,878]],\"id\":\"663\",\"properties\":{\"name\":\"St-Martin\"}},{\"type\":\"Polygon\",\"arcs\":[[-878,879]],\"id\":\"534\",\"properties\":{\"name\":\"Sint Maarten\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[880],[881]],[[882,883]],[[884,885,886,887]],[[888]],[[889]],[[890]]],\"id\":\"512\",\"properties\":{\"name\":\"Oman\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[891]],[[892,893,894,895,896],[897]],[[898]]],\"id\":\"860\",\"properties\":{\"name\":\"Uzbekistan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-551,899,-896,900,901,902],[903]],[[904]],[[905]],[[906]],[[907]],[[908]]],\"id\":\"398\",\"properties\":{\"name\":\"Kazakhstan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-898]],[[909,-549,910,-893]],[[911]]],\"id\":\"762\",\"properties\":{\"name\":\"Tajikistan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-861,912,913,914,915]],[[916,917]]],\"id\":\"440\",\"properties\":{\"name\":\"Lithuania\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-475,918,-463,-469,919,920,-735,-732,-699,921,922]],[[923]],[[924]],[[925]],[[926]],[[927]],[[928]],[[929]],[[930]],[[931]],[[932]],[[933]],[[934]],[[935]],[[936]],[[937]],[[938]],[[939]],[[940]],[[941]],[[942]],[[943]],[[944]],[[945]],[[946]],[[947]],[[948]],[[949]],[[950]],[[951]],[[952]],[[953]],[[954]],[[955]],[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]]],\"id\":\"076\",\"properties\":{\"name\":\"Brazil\"}},{\"type\":\"Polygon\",\"arcs\":[[965,-476,-923]],\"id\":\"858\",\"properties\":{\"name\":\"Uruguay\"}},{\"type\":\"Polygon\",\"arcs\":[[-553,966]],\"id\":\"496\",\"properties\":{\"name\":\"Mongolia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[967,-794,-554,-967,-552,-903,968,969,970,971,-846,844,-844,-863,972,973,974,975,976,977]],[[978,979,-917,980,-914]],[[-848,981]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1022]],[[1023]],[[1024]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1035]],[[1036]],[[1037]],[[1038]],[[1039]],[[1040]],[[1041]],[[1042]],[[1043]],[[1044]],[[1045]],[[1046]],[[1047]],[[1048]],[[1049]],[[1050]],[[1051]],[[1052]],[[1053]],[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[1077]],[[1078]],[[1079]],[[1080]],[[1081]],[[1082]],[[1083]],[[1084]],[[1085]],[[1086]],[[1087]],[[1088]],[[1089]],[[1090]],[[1091]],[[1092]],[[1093]],[[1094]],[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1100]],[[1101]],[[1102]],[[1103]],[[1104]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116]],[[1117]],[[1118]],[[1119]],[[1120]],[[1121]],[[1122]],[[1123]],[[1124]],[[1125]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141]],[[1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1174]],[[1175]],[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182]],[[1183]],[[1184]],[[1185]],[[1186]],[[1187]],[[1188]],[[1189]],[[1190]],[[1191]],[[1192]]],\"id\":\"643\",\"properties\":{\"name\":\"Russia\"}},{\"type\":\"Polygon\",\"arcs\":[[1193,1194,1195,1196]],\"id\":\"203\",\"properties\":{\"name\":\"Czechia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1197,1198,-702,1199,1200,1201,1202,1203,1204,1205,-1197]],[[1206,1207]],[[1208]],[[1209]],[[1210]],[[1211]],[[1212]],[[1213]],[[1214]],[[1215]],[[1216]],[[1217]],[[1218]],[[1219]],[[1220]],[[1221]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[1227]]],\"id\":\"276\",\"properties\":{\"name\":\"Germany\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1228,-974,1229]],[[1230]],[[1231]],[[1232]],[[1233]],[[1234]],[[1235]],[[1236]]],\"id\":\"233\",\"properties\":{\"name\":\"Estonia\"}},{\"type\":\"Polygon\",\"arcs\":[[-973,-862,-916,1237,-1230]],\"id\":\"428\",\"properties\":{\"name\":\"Latvia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1238,1239,-977,1240]],[[1241]],[[1242]],[[1243]],[[1244]],[[1245]],[[1246]],[[1247]],[[1248]],[[1249]],[[1250]],[[1251]],[[1252]],[[1253]],[[1254]],[[1255]],[[1256]],[[1257]],[[1258]],[[1259]],[[1260]],[[1261]],[[1262]],[[1263]],[[1264]],[[1265]],[[1266]],[[1267]],[[1268]],[[1269]],[[1270]],[[1271]],[[1272]],[[1273]],[[1274]],[[1275]],[[1276]],[[1277]],[[1278]],[[1279]],[[1280]],[[1281]],[[1282]],[[1283]],[[1284]],[[1285]],[[1286]],[[1287]],[[1288]],[[1289]],[[1290]],[[1291]],[[1292]],[[1293]],[[1294]],[[1295]],[[1296]],[[1297]],[[1298]],[[1299]],[[1300]],[[1301]],[[1302]],[[1303]],[[1304]],[[1305]],[[1306]],[[1307]],[[1308]],[[1309]],[[1310]],[[1311]],[[1312]],[[1313]],[[1314]],[[1315]],[[1316]],[[1317]],[[1318]],[[1319]],[[1320]],[[1321]],[[1322]],[[1323]],[[1324]],[[1325]],[[1326]],[[1327]],[[1328]],[[1329]],[[1330]],[[1331]],[[1332]],[[1333]],[[1334]],[[1335]],[[1336]],[[1337]],[[1338]],[[1339]],[[1340]],[[1341]],[[1342]],[[1343]],[[1344]],[[1345]],[[1346]],[[1347]],[[1348]],[[1349]],[[1350]],[[1351]],[[1352]],[[1353]],[[1354]],[[1355]],[[1356]],[[1357]],[[1358]],[[1359]]],\"id\":\"578\",\"properties\":{\"name\":\"Norway\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1360,1361,-1239]],[[1362]],[[1363]],[[1364]],[[1365]],[[1366]],[[1367]],[[1368]],[[1369]],[[1370]],[[1371]],[[1372]],[[1373]],[[1374]],[[1375]],[[1376]],[[1377]],[[1378]],[[1379]],[[1380]],[[1381]],[[1382]],[[1383]],[[1384]],[[1385]],[[1386]],[[1387]],[[1388]],[[1389]],[[1390]],[[1391]],[[1392]],[[1393]],[[1394]],[[1395]],[[1396]],[[1397]],[[1398]],[[1399]],[[1400]],[[1401]]],\"id\":\"752\",\"properties\":{\"name\":\"Sweden\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-976,1402,-1361,-1241]],[[1403]],[[1404]],[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[1410]],[[1411]],[[1412]],[[1413]],[[1414]],[[1415]],[[1416]],[[1417]],[[1418]],[[1419]],[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[1428]],[[1429]],[[1430]],[[1431]],[[1432]],[[1433]],[[1434]],[[1435]],[[1436]],[[1437]],[[1438]],[[1439]],[[1440]],[[1441]],[[1442]],[[1443]]],\"id\":\"246\",\"properties\":{\"name\":\"Finland\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1444,-560,1445,1446]],[[1447]],[[1448]],[[1449]],[[1450]],[[1451]],[[1452]],[[1453]],[[1454]],[[1455]],[[1456]],[[1457]],[[1458]],[[1459]],[[1460]],[[1461]],[[1462]],[[1463]],[[1464]],[[1465]],[[1466]],[[1467]],[[1468]],[[1469]],[[1470]]],\"id\":\"704\",\"properties\":{\"name\":\"Vietnam\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1447,1471,1472,1473]],[[1474]],[[1475]],[[1476]],[[1477]],[[1478]]],\"id\":\"116\",\"properties\":{\"name\":\"Cambodia\"}},{\"type\":\"Polygon\",\"arcs\":[[-1200,-701,1479]],\"id\":\"442\",\"properties\":{\"name\":\"Luxembourg\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1480,-888,1481,1482,-884],[-881]],[[-882]],[[1483]],[[1484]],[[1485]],[[1486]],[[1487]],[[1488]],[[1489]],[[1490]]],\"id\":\"784\",\"properties\":{\"name\":\"United Arab Emirates\"}},{\"type\":\"Polygon\",\"arcs\":[[1491,1492,1493,1494,-1201,-1480,-700]],\"id\":\"056\",\"properties\":{\"name\":\"Belgium\"}},{\"type\":\"Polygon\",\"arcs\":[[-971,1495,1496,1497,1498]],\"id\":\"268\",\"properties\":{\"name\":\"Georgia\"}},{\"type\":\"Polygon\",\"arcs\":[[1499,1500,1501,1502,1503]],\"id\":\"807\",\"properties\":{\"name\":\"Macedonia\"}},{\"type\":\"Polygon\",\"arcs\":[[-1504,1504,1505,1506,1507]],\"id\":\"008\",\"properties\":{\"name\":\"Albania\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1508]],[[-1496,-970,1509,1510,1511],[1512]],[[1513,1514,1515]],[[1516]],[[1517]],[[1518]]],\"id\":\"031\",\"properties\":{\"name\":\"Azerbaijan\"}},{\"type\":\"Polygon\",\"arcs\":[[1519,1520,-1500,-1508]],\"properties\":{\"name\":\"Kosovo\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1521,-1515,1522,1523,-692,1524,-1498]],[[1525,1526,1527]],[[1528]],[[1529]],[[1530]],[[1531]]],\"id\":\"792\",\"properties\":{\"name\":\"Turkey\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-806,1532]],[[1533,-809]],[[-710,1534,-708,1535,1536,1537,1538,1539]],[[-712]],[[1540]],[[1541]],[[1542]],[[1543]],[[1544]],[[1545]],[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]],[[1555]],[[1556]],[[1557]],[[1558]]],\"id\":\"724\",\"properties\":{\"name\":\"Spain\"}},{\"type\":\"Polygon\",\"arcs\":[[-1445,-1474,1559,1560,-561]],\"id\":\"418\",\"properties\":{\"name\":\"Laos\"}},{\"type\":\"Polygon\",\"arcs\":[[-550,-910,-897,-900],[-892],[-899],[-912]],\"id\":\"417\",\"properties\":{\"name\":\"Kyrgyzstan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1512,1561,-1516,-1522,-1497],[-1509],[-1517]],[[-1513]]],\"id\":\"051\",\"properties\":{\"name\":\"Armenia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1562,-1204]],[[1563]],[[1564]],[[1565]],[[1566]],[[1567]],[[1568]],[[1569]],[[1570]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]]],\"id\":\"208\",\"properties\":{\"name\":\"Denmark\"}},{\"type\":\"Polygon\",\"arcs\":[[1577,1578,1579,1580,1581,1582,1583]],\"id\":\"434\",\"properties\":{\"name\":\"Libya\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1584,1584,1585]],[[1586]],[[1587]],[[1588]]],\"id\":\"788\",\"properties\":{\"name\":\"Tunisia\"}},{\"type\":\"Polygon\",\"arcs\":[[-852,1589,-850,1590,1591,1592,1593]],\"id\":\"642\",\"properties\":{\"name\":\"Romania\"}},{\"type\":\"Polygon\",\"arcs\":[[-1594,1594,1595,1596,1597,1598,-853]],\"id\":\"348\",\"properties\":{\"name\":\"Hungary\"}},{\"type\":\"Polygon\",\"arcs\":[[-854,-1599,1599,-1195,1600]],\"id\":\"703\",\"properties\":{\"name\":\"Slovakia\"}},{\"type\":\"Polygon\",\"arcs\":[[-1194,-1206,1601,-1207,1602,-979,-913,-860,-855,-1601]],\"id\":\"616\",\"properties\":{\"name\":\"Poland\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1603,1604]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]]],\"id\":\"372\",\"properties\":{\"name\":\"Ireland\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1611,-1604]],[[1612]],[[1613]],[[1614]],[[1615]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1651]],[[1652]],[[1653]],[[1654]],[[1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]]],\"id\":\"826\",\"properties\":{\"name\":\"United Kingdom\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1503,1668,-1527,1669,-1505]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688]],[[1689]],[[1690]],[[1691]],[[1692]],[[1693]],[[1694]],[[1695]],[[1696]],[[1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703]],[[1704]],[[1705]],[[1706]],[[1707]],[[1708]],[[1709]],[[1710]],[[1711]],[[1712]],[[1713]],[[1714]],[[1715]],[[1716]],[[1717]],[[1718]],[[1719]],[[1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1729]],[[1730]],[[1731]],[[1732]],[[1733]],[[1734]],[[1735]],[[1736]],[[1737]],[[1738]],[[1739]],[[1740]],[[1741]],[[1742]]],\"id\":\"300\",\"properties\":{\"name\":\"Greece\"}},{\"type\":\"Polygon\",\"arcs\":[[-674,1743,1744,-866,1745,-839,-678]],\"id\":\"894\",\"properties\":{\"name\":\"Zambia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1746,1747,1748]],[[1749]]],\"id\":\"694\",\"properties\":{\"name\":\"Sierra Leone\"}},{\"type\":\"Polygon\",\"arcs\":[[1750,1751,1752,1753,1754,1755,-1749]],\"id\":\"324\",\"properties\":{\"name\":\"Guinea\"}},{\"type\":\"Polygon\",\"arcs\":[[-1747,-1756,1756,1757]],\"id\":\"430\",\"properties\":{\"name\":\"Liberia\"}},{\"type\":\"Polygon\",\"arcs\":[[1758,-659,-835,-834,1759,1760]],\"id\":\"140\",\"properties\":{\"name\":\"Central African Rep.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1761,-1580,1762,1763,1764,-649,-660,-1759]],[[1765]]],\"id\":\"729\",\"properties\":{\"name\":\"Sudan\"}},{\"type\":\"Polygon\",\"arcs\":[[-695,-651,1766,1767]],\"id\":\"262\",\"properties\":{\"name\":\"Djibouti\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1767,-650,-1765,1768]],[[1769]],[[1770]]],\"id\":\"232\",\"properties\":{\"name\":\"Eritrea\"}},{\"type\":\"Polygon\",\"arcs\":[[-1600,-1598,1771,1772,1773,1774,1775,-1198,-1196]],\"id\":\"040\",\"properties\":{\"name\":\"Austria\"}},{\"type\":\"Polygon\",\"arcs\":[[1776,1777,1778,1779,1780,-693,-1524]],\"id\":\"368\",\"properties\":{\"name\":\"Iraq\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1781,-1773,1782,1783,-704],[1784],[1785]],[[1786]],[[1787]],[[1788]],[[1789]],[[1790]],[[1791]],[[1792]],[[1793]],[[1794]],[[1795]],[[1796]],[[1797]],[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[1812]],[[1813]]],\"id\":\"380\",\"properties\":{\"name\":\"Italy\"}},{\"type\":\"Polygon\",\"arcs\":[[-1782,-703,-1199,-1776,1814,-1774]],\"id\":\"756\",\"properties\":{\"name\":\"Switzerland\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1514,-1562,-1511,1815,1816,1817,-669,1818,-1777,-1523]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]]],\"id\":\"364\",\"properties\":{\"name\":\"Iran\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1202,-1495,1830]],[[1831,-1493]],[[1832]],[[1833]],[[1834]],[[1835]],[[1836]],[[1837]],[[1838]],[[1839]],[[1840]],[[1841]]],\"id\":\"528\",\"properties\":{\"name\":\"Netherlands\"}},{\"type\":\"Polygon\",\"arcs\":[[-1775,-1815]],\"id\":\"438\",\"properties\":{\"name\":\"Liechtenstein\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1842,1843,1844,1845,-1757,-1755]],[[1846,1847]]],\"id\":\"384\",\"properties\":{\"name\":\"Côte d'Ivoire\"}},{\"type\":\"Polygon\",\"arcs\":[[-1593,1848,-1501,-1521,1849,1850,1851,-1595]],\"id\":\"688\",\"properties\":{\"name\":\"Serbia\"}},{\"type\":\"Polygon\",\"arcs\":[[1852,1853,1854,1855,-1843,-1754,1856]],\"id\":\"466\",\"properties\":{\"name\":\"Mali\"}},{\"type\":\"Polygon\",\"arcs\":[[-1857,-1753,1857,1858,1859,1860,1861]],\"id\":\"686\",\"properties\":{\"name\":\"Senegal\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1862,1863,1864,1865,1866]],[[1867]],[[1868]]],\"id\":\"566\",\"properties\":{\"name\":\"Nigeria\"}},{\"type\":\"Polygon\",\"arcs\":[[-1867,1869,1870,1871,1872]],\"id\":\"204\",\"properties\":{\"name\":\"Benin\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-842,1873,-830]],[[-1746,-865,1874,-840]],[[1875]]],\"id\":\"024\",\"properties\":{\"name\":\"Angola\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1596,-1852,1876,1877,1878]],[[1879,1880,1881]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]]],\"id\":\"191\",\"properties\":{\"name\":\"Croatia\"}},{\"type\":\"Polygon\",\"arcs\":[[1905,-1783,-1772,-1597,-1879]],\"id\":\"705\",\"properties\":{\"name\":\"Slovenia\"}},{\"type\":\"Polygon\",\"arcs\":[[1906,1907]],\"id\":\"634\",\"properties\":{\"name\":\"Qatar\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1908,1908,-1482,-887,1909,1910,1911,-1780,1912,1913]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]]],\"id\":\"682\",\"properties\":{\"name\":\"Saudi Arabia\"}},{\"type\":\"Polygon\",\"arcs\":[[1924,-869,-867]],\"id\":\"072\",\"properties\":{\"name\":\"Botswana\"}},{\"type\":\"Polygon\",\"arcs\":[[-1745,1925,-870,-1925]],\"id\":\"716\",\"properties\":{\"name\":\"Zimbabwe\"}},{\"type\":\"Polygon\",\"arcs\":[[-1669,-1502,-1849,-1592,1926,-1528]],\"id\":\"100\",\"properties\":{\"name\":\"Bulgaria\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1927,-273,1928,1929,-1560,-1473]],[[1930]],[[1931]],[[1932]],[[1933]],[[1934]],[[1935]],[[1936]],[[1937]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[1944]],[[1945]],[[1946]],[[1947]],[[1948]]],\"id\":\"764\",\"properties\":{\"name\":\"Thailand\"}},{\"type\":\"Polygon\",\"arcs\":[[-1785]],\"id\":\"674\",\"properties\":{\"name\":\"San Marino\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1949,1950]],[[1951]],[[1952]],[[1953]],[[1954]]],\"id\":\"332\",\"properties\":{\"name\":\"Haiti\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1955,-1950]],[[1956]],[[1957]]],\"id\":\"214\",\"properties\":{\"name\":\"Dominican Rep.\"}},{\"type\":\"Polygon\",\"arcs\":[[-1864,1958,-1581,-1762,-1761,1959]],\"id\":\"148\",\"properties\":{\"name\":\"Chad\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1960,-1913,-1779]],[[1961]],[[1962]],[[1963]]],\"id\":\"414\",\"properties\":{\"name\":\"Kuwait\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1964,1965,1966]],[[1967]],[[1968]]],\"id\":\"222\",\"properties\":{\"name\":\"El Salvador\"}},{\"type\":\"Polygon\",\"arcs\":[[-1965,1969,1970,1971,1972,1973]],\"id\":\"320\",\"properties\":{\"name\":\"Guatemala\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-6,1974]],[[1975,-4]],[[1976]]],\"id\":\"626\",\"properties\":{\"name\":\"Timor-Leste\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-278,1977]],[[-276,1978]]],\"id\":\"096\",\"properties\":{\"name\":\"Brunei\"}},{\"type\":\"Polygon\",\"arcs\":[[1979,-706]],\"id\":\"492\",\"properties\":{\"name\":\"Monaco\"}},{\"type\":\"Polygon\",\"arcs\":[[1980,-813,-811,1981,-1585,-1583,1982,-1854]],\"id\":\"012\",\"properties\":{\"name\":\"Algeria\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1983,-871,-1926,-1744,-673,-684,1984,-873],[-676],[-677]],[[1985]],[[1986]],[[1987]]],\"id\":\"508\",\"properties\":{\"name\":\"Mozambique\"}},{\"type\":\"Polygon\",\"arcs\":[[-1984,-872]],\"id\":\"748\",\"properties\":{\"name\":\"eSwatini\"}},{\"type\":\"Polygon\",\"arcs\":[[-680,-838,1988]],\"id\":\"108\",\"properties\":{\"name\":\"Burundi\"}},{\"type\":\"Polygon\",\"arcs\":[[-837,1989,-681,-1989]],\"id\":\"646\",\"properties\":{\"name\":\"Rwanda\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-507,-562,-1561,-1930,1990,1991]],[[1992]],[[1993]],[[1994]],[[1995]],[[1996]],[[1997]],[[1998]],[[1999]],[[2000]],[[2001]],[[2002]],[[2003]],[[2004]],[[2005]],[[2006]],[[2007]],[[2008]],[[2009]],[[2010]],[[2011]],[[2012]],[[2013]],[[2014]],[[2015]],[[2016]],[[2017]],[[2018]],[[2019]],[[2020]],[[2021]],[[2022]],[[2023]],[[2024]],[[2025]],[[2026]],[[2027]],[[2028]],[[2029]]],\"id\":\"104\",\"properties\":{\"name\":\"Myanmar\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1992,2030,-508]],[[2031]],[[2032]],[[2033]],[[2034]],[[2035]],[[2036]],[[2037]],[[2038]],[[2039]],[[2040]],[[2041]],[[2042]],[[2043]],[[2044]],[[2045]],[[2046]],[[2047]],[[2048]],[[2049]],[[2050]],[[2051]]],\"id\":\"050\",\"properties\":{\"name\":\"Bangladesh\"}},{\"type\":\"Polygon\",\"arcs\":[[-1535,-709]],\"id\":\"020\",\"properties\":{\"name\":\"Andorra\"}},{\"type\":\"Polygon\",\"arcs\":[[-670,-1818,2052,-894,-911,-548]],\"id\":\"004\",\"properties\":{\"name\":\"Afghanistan\"}},{\"type\":\"Polygon\",\"arcs\":[[-1880,2053,-1850,-1520,-1507,2054]],\"id\":\"499\",\"properties\":{\"name\":\"Montenegro\"}},{\"type\":\"Polygon\",\"arcs\":[[2055,-1877,-1851,-2054,-1882]],\"id\":\"070\",\"properties\":{\"name\":\"Bosnia and Herz.\"}},{\"type\":\"Polygon\",\"arcs\":[[-1990,-836,-657,-666,-682]],\"id\":\"800\",\"properties\":{\"name\":\"Uganda\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[2056,2057]],[[2058,2059]]],\"properties\":{\"name\":\"USNB Guantanamo Bay\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-2058,2060,-2060,2061]],[[2062]],[[2063]],[[2064]],[[2065]],[[2066]],[[2067]],[[2068]],[[2069]],[[2070]],[[2071]],[[2072]],[[2073]],[[2074]],[[2075]],[[2076]],[[2077]],[[2078]],[[2079]],[[2080]],[[2081]],[[2082]],[[2083]],[[2084]],[[2085]],[[2086]],[[2087]],[[2088]],[[2089]],[[2090]],[[2091]],[[2092]],[[2093]],[[2094]],[[2095]],[[2096]],[[2097]],[[2098]],[[2099]],[[2100]],[[2101]]],\"id\":\"192\",\"properties\":{\"name\":\"Cuba\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1974,2102,-824,2103,-1966]],[[2104]],[[2105]],[[2106]],[[2107]],[[2108]],[[2109]]],\"id\":\"340\",\"properties\":{\"name\":\"Honduras\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[2110,-467,2111]],[[2112]],[[2113]],[[2114]],[[2115]],[[2116]],[[2117]],[[2118]],[[2119]],[[2120]],[[2121]],[[2122]],[[2123]],[[2124]],[[2125]],[[2126]]],\"id\":\"218\",\"properties\":{\"name\":\"Ecuador\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[2127,2128,2129,2130,-920,-468,-2111]],[[2131]],[[2132]],[[2133]],[[2134]],[[2135]],[[2136]],[[2137]],[[2138]],[[2139]],[[2140]]],\"id\":\"170\",\"properties\":{\"name\":\"Colombia\"}},{\"type\":\"Polygon\",\"arcs\":[[-464,-919,-474]],\"id\":\"600\",\"properties\":{\"name\":\"Paraguay\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[2141,-1539]],[[2142]],[[2143]],[[2144]],[[2145]],[[2146]],[[2147]],[[2148]],[[2149]],[[2150]],[[2151]],[[2152]],[[2153]],[[2154]],[[2155]],[[2156]],[[2157]]],\"id\":\"620\",\"properties\":{\"name\":\"Portugal\"}},{\"type\":\"Polygon\",\"arcs\":[[-851,-1590]],\"id\":\"498\",\"properties\":{\"name\":\"Moldova\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1817,2158,-901,-895,-2053]],[[2159]],[[2160]]],\"id\":\"795\",\"properties\":{\"name\":\"Turkmenistan\"}},{\"type\":\"Polygon\",\"arcs\":[[-694,-1781,-1912,2161,-641,-640,639,-640,-646,-638]],\"id\":\"400\",\"properties\":{\"name\":\"Jordan\"}},{\"type\":\"Polygon\",\"arcs\":[[-503,-564]],\"id\":\"524\",\"properties\":{\"name\":\"Nepal\"}},{\"type\":\"Polygon\",\"arcs\":[[-875]],\"id\":\"426\",\"properties\":{\"name\":\"Lesotho\"}},{\"type\":\"Polygon\",\"arcs\":[[2162,2163,-1865,-1960,-1760,-833,2164]],\"id\":\"120\",\"properties\":{\"name\":\"Cameroon\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-832,2165,2166,-2165]],[[2167]],[[2168]]],\"id\":\"266\",\"properties\":{\"name\":\"Gabon\"}},{\"type\":\"Polygon\",\"arcs\":[[-1873,2169,-1855,-1983,-1582,-1959,-1863]],\"id\":\"562\",\"properties\":{\"name\":\"Niger\"}},{\"type\":\"Polygon\",\"arcs\":[[-1872,2170,2171,-1844,-1856,-2170]],\"id\":\"854\",\"properties\":{\"name\":\"Burkina Faso\"}},{\"type\":\"Polygon\",\"arcs\":[[-2171,-1871,2172,2173]],\"id\":\"768\",\"properties\":{\"name\":\"Togo\"}},{\"type\":\"Polygon\",\"arcs\":[[-2174,2174,-1847,2175,-1845,-2172]],\"id\":\"288\",\"properties\":{\"name\":\"Ghana\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1752,2176,-1858]],[[2177]],[[2178]],[[2179]],[[2180]],[[2181]],[[2182]],[[2183]],[[2184]],[[2185]],[[2186]],[[2187]],[[2188]]],\"id\":\"624\",\"properties\":{\"name\":\"Guinea-Bissau\"}},{\"type\":\"Polygon\",\"arcs\":[[-1537,2189]],\"id\":\"292\",\"properties\":{\"name\":\"Gibraltar\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[2190,2191,2192,2193,2194]],[[2195,2196]],[[2197,2198]],[[2199]],[[2200]],[[2201]],[[2202]],[[2203]],[[2204]],[[2205]],[[2206]],[[2207]],[[2208]],[[2209]],[[2210]],[[2211]],[[2212]],[[2213]],[[2214]],[[2215]],[[2216]],[[2217]],[[2218]],[[2219]],[[2220]],[[2221]],[[2222]],[[2223]],[[2224]],[[2225]],[[2226]],[[2227]],[[2228]],[[2229]],[[2230]],[[2231]],[[2232]],[[2233]],[[2234]],[[2235]],[[2236]],[[2237]],[[2238]],[[2239]],[[2240]],[[2241]],[[2242]],[[2243]],[[2244]],[[2245]],[[2246]],[[2247]],[[2248]],[[2249]],[[2250]],[[2251]],[[2252]],[[2253]],[[2254,2255]],[[2256]],[[2257]],[[2258]],[[2259]],[[2260]],[[2261]],[[2262]],[[2263]],[[2264]],[[2265]],[[2266]],[[2267]],[[2268]],[[2269]],[[2270]],[[2271]],[[2272]],[[2273]],[[2274]],[[2275]],[[2276]],[[2277]],[[2278]],[[2279]],[[2280]],[[2281]],[[2282]],[[2283]],[[2284]],[[2285]],[[2286]],[[2287]],[[2288]],[[2289]],[[2290]],[[2291]],[[2292]],[[2293]],[[2294]],[[2295]],[[2296]],[[2297]],[[2298]],[[2299]],[[2300]],[[2301]],[[2302]],[[2303]],[[2304]],[[2305]],[[2306]],[[2307]],[[2308]],[[2309]],[[2310]],[[2311]],[[2312]],[[2313]],[[2314]],[[2315]],[[2316]],[[2317]],[[2318]],[[2319]],[[2320]],[[2321]],[[2322]],[[2323]],[[2324]],[[2325]],[[2326]],[[2327]],[[2328]],[[2329]],[[2330]],[[2331]],[[2332]],[[2333]],[[2334]],[[2335]],[[2336]],[[2337]],[[2338]],[[2339]],[[2340]],[[2341]],[[2342]],[[2343]],[[2344]],[[2345]],[[2346]],[[2347]],[[2348]],[[2349]],[[2350]],[[2351]],[[2352]],[[2353]],[[2354]],[[2355]],[[2356]],[[2357]],[[2358]],[[2359]],[[2360]],[[2361]],[[2362]],[[2363]],[[2364]],[[2365]],[[2366]],[[2367]],[[2368]],[[2369]],[[2370]],[[2371]],[[2372]],[[2373]],[[2374]],[[2375]],[[2376]],[[2377]],[[2378]],[[2379]],[[2380]],[[2381]],[[2382]],[[2383]],[[2384]],[[2385]],[[2386]],[[2387]],[[2388]],[[2389]],[[2390,2391]],[[2392]],[[2393]],[[2394]],[[2395]],[[2396]],[[2397]],[[2398]],[[2399]],[[2400]],[[2401]],[[2402]],[[2403]],[[2404]],[[2405]],[[2406]],[[2407]],[[2408]],[[2409]],[[2410]],[[2411]],[[2412]],[[2413]],[[2414]],[[2415]],[[2416]],[[2417]],[[2418]],[[2419]],[[2420]],[[2421]],[[2422]],[[2423]],[[2424]],[[2425]],[[2426]],[[2427]],[[2428]],[[2429]],[[2430]],[[2431]],[[2432]],[[2433]],[[2434]],[[2435]],[[2436]],[[2437]],[[2438]],[[2439]],[[2440]],[[2441]],[[2442]],[[2443]],[[2444]],[[2445]],[[2446]],[[2447]],[[2448]],[[2449]],[[2450]],[[2451]],[[2452]],[[2453]],[[2454]],[[2455]],[[2456]],[[2457]],[[2458]],[[2459]],[[2460]],[[2461]],[[2462]],[[2463]],[[2464,2465]],[[2466]],[[2467]],[[2468]],[[2469]],[[2470]],[[2471]],[[2472]],[[2473]],[[2474]],[[2475]],[[2476]],[[2477]],[[2478]],[[2479]],[[2480]],[[2481]],[[2482]],[[2483]],[[2484]],[[2485]],[[2486]],[[2487]],[[2488]],[[2489]],[[2490]],[[2491]],[[2492]],[[2493]],[[2494]],[[2495]],[[2496]],[[2497]],[[2498]],[[2499]],[[2500]],[[2501]],[[2502]],[[2503]],[[2504]],[[2505]],[[2506]],[[2507]],[[2508]],[[2509]],[[2510]],[[2511]],[[2512]],[[2513]],[[2514]],[[2515]],[[2516]],[[2517]],[[2518]],[[2519]],[[2520]],[[2521]],[[2522]],[[2523]],[[2524]],[[2525]],[[2526]],[[2527]],[[2528]],[[2529]],[[2530]],[[2531]],[[2532]],[[2533]],[[2534]],[[2535]],[[2536]],[[2537]],[[2538]],[[2539]],[[2540]],[[2541,2542]],[[2543,2544]],[[2545]],[[2546]]],\"id\":\"840\",\"properties\":{\"name\":\"United States of America\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-2195,2547,-2198,2548,-2196,2549]],[[2550,-2191]],[[2551]],[[2552]],[[2553]],[[2554]],[[2555]],[[2556]],[[2557]],[[2558]],[[2559]],[[2560]],[[2561]],[[2562]],[[2563]],[[2564]],[[2565]],[[2566]],[[2567]],[[2568]],[[2569]],[[2570]],[[2571]],[[2572]],[[2573]],[[2574]],[[2575]],[[2576]],[[2577]],[[2578]],[[2579]],[[2580]],[[2581]],[[2582]],[[2583]],[[2584]],[[2585]],[[2586]],[[2587]],[[2588]],[[2589]],[[2590]],[[2591]],[[2592]],[[2593]],[[2594]],[[2595]],[[2596]],[[2597]],[[2598,2599]],[[-2600,2600]],[[2601]],[[2602]],[[2603]],[[2604]],[[2605]],[[2606]],[[2607]],[[2608]],[[2609]],[[2610]],[[2611]],[[2612]],[[2613]],[[2614]],[[2615]],[[2616]],[[2617]],[[2618]],[[2619]],[[2620]],[[2621]],[[2622]],[[2623]],[[2624]],[[2625]],[[2626]],[[2627]],[[2628]],[[2629]],[[2630]],[[2631]],[[2632]],[[2633]],[[2634]],[[2635]],[[2636]],[[2637]],[[2638]],[[2639]],[[2640]],[[2641]],[[2642]],[[2643]],[[2644]],[[2645]],[[2646]],[[2647]],[[2648]],[[2649]],[[2650]],[[2651]],[[2652]],[[2653]],[[2654]],[[2655]],[[2656]],[[2657]],[[2658]],[[2659]],[[2660]],[[2661]],[[2662]],[[2663]],[[2664]],[[2665]],[[2666]],[[2667]],[[2668]],[[2669]],[[2670]],[[2671]],[[2672]],[[2673]],[[2674]],[[2675]],[[2676]],[[2677]],[[2678]],[[2679]],[[2680]],[[2681]],[[2682]],[[2683]],[[2684]],[[2685]],[[2686]],[[2687]],[[2688]],[[2689]],[[2690]],[[2691]],[[2692]],[[2693]],[[2694]],[[2695]],[[2696]],[[2697]],[[2698]],[[2699]],[[2700]],[[2701]],[[2702]],[[2703]],[[2704]],[[2705]],[[2706]],[[2707]],[[2708]],[[2709]],[[2710]],[[2711]],[[2712]],[[2713]],[[2714]],[[2715]],[[2716]],[[2717]],[[2718]],[[2719]],[[2720]],[[2721]],[[2722]],[[2723]],[[2724]],[[2725]],[[2726]],[[2727]],[[2728]],[[2729]],[[2730]],[[2731]],[[2732]],[[2733]],[[2734]],[[2735]],[[2736]],[[2737]],[[2738]],[[2739]],[[2740]],[[2741]],[[2742]],[[2743]],[[2744]],[[2745]],[[2746]],[[2747]],[[2748]],[[2749]],[[2750]],[[2751]],[[2752]],[[2753]],[[2754]],[[2755]],[[2756]],[[2757]],[[2758]],[[2759]],[[2760]],[[2761]],[[2762]],[[2763]],[[2764]],[[2765]],[[2766]],[[2767]],[[2768]],[[2769]],[[2770]],[[2771]],[[2772]],[[2773]],[[2774]],[[2775]],[[2776]],[[2777]],[[2778]],[[2779]],[[2780]],[[2781]],[[2782]],[[2783]],[[2784]],[[2785]],[[2786]],[[2787]],[[2788]],[[2789]],[[2790]],[[2791]],[[2792]],[[2793]],[[2794]],[[2795]],[[2796]],[[2797]],[[2798]],[[2799]],[[2800]],[[2801]],[[2802]],[[2803]],[[2804]],[[2805]],[[2806]],[[2807]],[[2808]],[[2809]],[[2810]],[[2811]],[[2812]],[[2813]],[[2814]],[[2815]],[[2816]],[[2817]],[[2818]],[[2819]],[[2820]],[[2821]],[[2822]],[[2823]],[[2824]],[[2825]],[[2826]],[[2827]],[[2828]],[[2829]],[[2830]],[[2831]],[[2832]],[[2833]],[[2834]],[[2835]],[[2836]],[[2837]],[[2838]],[[2839]],[[2840]],[[2841]],[[2842]],[[2843]],[[2844]],[[2845]],[[2846]],[[2847]],[[2848]],[[2849]],[[2850]],[[2851]],[[2852]],[[2853]],[[2854]],[[2855]],[[2856]],[[2857]],[[2858]],[[2859]],[[2860]],[[2861]],[[2862]],[[2863]],[[2864]],[[2865]],[[2866]],[[2867]],[[2868]],[[2869]],[[2870]],[[2871]],[[2872]],[[2873]],[[2874]],[[2875]],[[2876]],[[2877]],[[2878]],[[2879]],[[2880]],[[2881]],[[2882]],[[2883]],[[2884]],[[2885]],[[2886]],[[2887]],[[2888]],[[2889]],[[2890]],[[2891]],[[2892]],[[2893]],[[2894]],[[2895]],[[2896]],[[2897]],[[2898]],[[2899]],[[2900]],[[2901]],[[2902]],[[2903]],[[2904]],[[2905]],[[2906]],[[2907]],[[2908]],[[2909]],[[2910]],[[2911]],[[2912]],[[2913]],[[2914]],[[2915]],[[2916]],[[2917]],[[2918]],[[2919]],[[2920]],[[2921]],[[2922]],[[2923]],[[2924]],[[2925]],[[2926]],[[2927]],[[2928]],[[2929]],[[2930]],[[2931]],[[2932]],[[2933]],[[2934]],[[2935]],[[2936]],[[2937]],[[2938]],[[2939]],[[2940]],[[2941]],[[2942]],[[2943]],[[2944]],[[2945]],[[2946]],[[2947]],[[2948]],[[2949]],[[2950]],[[2951]],[[2952]],[[2953]],[[2954]],[[2955]],[[2956]],[[2957]],[[2958]],[[2959]]],\"id\":\"124\",\"properties\":{\"name\":\"Canada\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[2960,2961,-1971,2962,-2193]],[[2963]],[[2964]],[[2965]],[[2966]],[[2967]],[[2968]],[[2969]],[[2970]],[[2971]],[[2972]],[[2973]],[[2974]],[[2975]],[[2976]],[[2977]],[[2978]],[[2979]],[[2980]],[[2981]],[[2982]],[[2983]],[[2984]],[[2985]],[[2986]],[[2987]],[[2988]],[[2989]],[[2990]],[[2991]],[[2992]],[[2993]],[[2994]],[[2995]],[[2996]],[[2997]],[[2998]],[[2999]],[[3000]],[[3001]],[[3002]],[[3003]],[[3004]],[[3005]],[[3006]],[[3007]],[[3008]],[[3009]],[[3010]],[[3011]],[[3012]]],\"id\":\"484\",\"properties\":{\"name\":\"Mexico\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-2962,3013,-1972]],[[3014]],[[3015]],[[3016]],[[3017]],[[3018]],[[3019]],[[3020]],[[3021]],[[3022]]],\"id\":\"084\",\"properties\":{\"name\":\"Belize\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3023,-2129,3024,-817]],[[3025]],[[3026]],[[3027]],[[3028]],[[3029]],[[3030]],[[3031]],[[3032]],[[3033]],[[3034]],[[3035]],[[3036]],[[3037]],[[3038]]],\"id\":\"591\",\"properties\":{\"name\":\"Panama\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-736,-921,-2131,3039]],[[3040]],[[3041]],[[3042]],[[3043]],[[3044]],[[3045]],[[3046]],[[3047]],[[3048]],[[3049]],[[3050]],[[3051]],[[3052]],[[3053]],[[3054]],[[3055]],[[3056]],[[3057]],[[3058]],[[3059]],[[3060]],[[3061]],[[3062]],[[3063]],[[3064]],[[3065]],[[3066]],[[3067]]],\"id\":\"862\",\"properties\":{\"name\":\"Venezuela\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3068,-9]],[[3069]],[[3070]],[[3071]],[[3072]],[[3073]],[[3074]],[[3075]],[[3076]],[[3077]],[[3078]],[[3079]],[[3080]],[[3081]],[[3082]],[[3083]],[[3084]],[[3085]],[[3086]],[[3087]],[[3088]],[[3089]],[[3090]],[[3091]],[[3092]],[[3093]],[[3094]],[[3095]],[[3096]],[[3097]],[[3098]],[[3099]],[[3100]],[[3101]],[[3102]],[[3103]],[[3104]],[[3105]],[[3106]],[[3107]],[[3108]],[[3109]],[[3110]],[[3111]],[[3112]],[[3113]],[[3114]],[[3115]],[[3116]],[[3117]],[[3118]],[[3119]],[[3120]],[[3121]],[[3122]],[[3123]],[[3124]],[[3125]]],\"id\":\"598\",\"properties\":{\"name\":\"Papua New Guinea\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-643,3126,-1763,-1579,3127,-644]],[[3128]],[[3129]],[[3130]],[[3131]],[[3132]],[[3133]],[[3134]]],\"id\":\"818\",\"properties\":{\"name\":\"Egypt\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-886,3135,-1910]],[[3136]],[[3137]],[[3138]],[[3139]],[[3140]],[[3141]],[[3142]],[[3143]]],\"id\":\"887\",\"properties\":{\"name\":\"Yemen\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1981,-1853,-1862,3144,-814]],[[3145]],[[3146]],[[3147]],[[3148]]],\"id\":\"478\",\"properties\":{\"name\":\"Mauritania\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-2163,-2167,3149]],[[3150]],[[3151]]],\"id\":\"226\",\"properties\":{\"name\":\"Eq. Guinea\"}},{\"type\":\"Polygon\",\"arcs\":[[3152,-1860]],\"id\":\"270\",\"properties\":{\"name\":\"Gambia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3153,-557]],[[3154]],[[3155]],[[3156]]],\"id\":\"344\",\"properties\":{\"name\":\"Hong Kong\"}},{\"type\":\"Polygon\",\"arcs\":[[1785]],\"id\":\"336\",\"properties\":{\"name\":\"Vatican\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-488,3157,3158,3159]],[[3160,3161]]],\"properties\":{\"name\":\"N. Cyprus\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-3160,3162,-500,-489]],[[-487,-499,3163,-3158]],[[3164,-497,3165,-3161]]],\"properties\":{\"name\":\"Cyprus U.N. Buffer Zone\"}},{\"type\":\"Polygon\",\"arcs\":[[-671,-546,-511]],\"properties\":{\"name\":\"Siachen Glacier\"}},{\"type\":\"Polygon\",\"arcs\":[[-904]],\"properties\":{\"name\":\"Baikonur\"}},{\"type\":\"Polygon\",\"arcs\":[[3166,-495]],\"properties\":{\"name\":\"Akrotiri\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3167]],[[3168]],[[3169]],[[3170]],[[3171]],[[3172]],[[3173]],[[3174]],[[3175]],[[3176]],[[3177]],[[3178]],[[3179]],[[3180]],[[3181]],[[3182]],[[3183]],[[3184]],[[3185]],[[3186]],[[3187]],[[3188]],[[3189]],[[3190]],[[3191]],[[3192]],[[3193]],[[3194]],[[3195]],[[3196]],[[3197]],[[3198]],[[3199]],[[3200]],[[3201]],[[3202]],[[3203]],[[3204]],[[3205]],[[3206]],[[3207]],[[3208]],[[3209]],[[3210]],[[3211]],[[3212]],[[3213]],[[3214]],[[3215]],[[3216]],[[3217]],[[3218]],[[3219]],[[3220]],[[3221]],[[3222]],[[3223]],[[3224]],[[3225]],[[3226]],[[3227]],[[3228]],[[3229]],[[3230]],[[3231]],[[3232]],[[3233]],[[3234]],[[3235]],[[3236]],[[3237]],[[3238]],[[3239]],[[3240]],[[3241]],[[3242]],[[3243]],[[3244]],[[3245]],[[3246]],[[3247]],[[3248]],[[3249]],[[3250]],[[3251]],[[3252]],[[3253]],[[3254]],[[3255]],[[3256]],[[3257]],[[3258]],[[3259]],[[3260]],[[3261]],[[3262]],[[3263]],[[3264]],[[3265]],[[3266]],[[3267]],[[3268]],[[3269]],[[3270]],[[3271]],[[3272]],[[3273]],[[3274]],[[3275]],[[3276]],[[3277]],[[3278]],[[3279]],[[3280]],[[3281]],[[3282]],[[3283]],[[3284]],[[3285]],[[3286]],[[3287]],[[3288]],[[3289]],[[3290]],[[3291]],[[3292]],[[3293]],[[3294]],[[3295]],[[3296]],[[3297]],[[3298]],[[3299]],[[3300]],[[3301]],[[3302]],[[3303]],[[3304]],[[3305]],[[3306]],[[3307]],[[3308]],[[3309]],[[3310]],[[3311]],[[3312]],[[3313]],[[3314]],[[3315]],[[3316]],[[3317]],[[3318]],[[3319]],[[3320]],[[3321]],[[3322]],[[3323]],[[3324]],[[3325]],[[3326]],[[3327]],[[3328]],[[3329]],[[3330]],[[3331]],[[3332]],[[3333]],[[3334]],[[3335]],[[3336]],[[3337]],[[3338]],[[3339]],[[3340]],[[3341]],[[3342]],[[3343]],[[3344]],[[3345]]],\"id\":\"010\",\"properties\":{\"name\":\"Antarctica\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3346]],[[3347]],[[3348]],[[3349]],[[3350]],[[3351]],[[3352]],[[3353]],[[3354]],[[3355]],[[3356]],[[3357]],[[3358]],[[3359]],[[3360]],[[3361]],[[3362]],[[3363]],[[3364]],[[3365]],[[3366]],[[3367]],[[3368]],[[3369]],[[3370]],[[3371]],[[3372]],[[3373]],[[3374]],[[3375]],[[3376]],[[3377]],[[3378]],[[3379]],[[3380]],[[3381]],[[3382]],[[3383]],[[3384]],[[3385]],[[3386]],[[3387]],[[3388]],[[3389]],[[3390]],[[3391]],[[3392]],[[3393]],[[3394]],[[3395]],[[3396]],[[3397]],[[3398]],[[3399]],[[3400]],[[3401]],[[3402]],[[3403]],[[3404]],[[3405]],[[3406]],[[3407]],[[3408]],[[3409]],[[3410]],[[3411]],[[3412]],[[3413]],[[3414]],[[3415]],[[3416]],[[3417]],[[3418]],[[3419]],[[3420]],[[3421]],[[3422]],[[3423]],[[3424]],[[3425]],[[3426]],[[3427]],[[3428]],[[3429]],[[3430]],[[3431]],[[3432]],[[3433]],[[3434]],[[3435]],[[3436]],[[3437]],[[3438]],[[3439]]],\"id\":\"036\",\"properties\":{\"name\":\"Australia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3440]],[[3441]],[[3442]],[[3443]],[[3444]],[[3445]],[[3446]],[[3447]],[[3448]],[[3449]],[[3450]],[[3451]],[[3452]],[[3453]],[[3454]],[[3455]],[[3456]],[[3457]],[[3458]],[[3459]],[[3460]],[[3461]],[[3462]],[[3463]],[[3464]],[[3465]],[[3466]],[[3467]],[[3468]],[[3469]],[[3470]],[[3471]],[[3472]],[[3473]],[[3474]],[[3475]],[[3476]],[[3477]],[[3478]],[[3479]],[[3480]],[[3481]],[[3482]],[[3483]],[[3484]],[[3485]],[[3486]],[[3487]],[[3488]],[[3489]],[[3490]],[[3491]],[[3492]],[[3493]],[[3494]],[[3495]],[[3496]],[[3497]],[[3498]],[[3499]],[[3500]],[[3501]],[[3502]],[[3503]],[[3504]],[[3505]],[[3506]],[[3507]],[[3508]],[[3509]],[[3510]],[[3511]],[[3512]],[[3513]],[[3514]],[[3515]],[[3516]],[[3517]],[[3518]],[[3519]],[[3520]],[[3521]],[[3522]],[[3523]],[[3524]],[[3525]],[[3526]],[[3527]],[[3528]],[[3529]],[[3530]],[[3531]],[[3532]],[[3533]],[[3534]],[[3535]],[[3536]],[[3537]],[[3538]],[[3539]],[[3540]],[[3541]],[[3542]],[[3543]],[[3544]],[[3545]],[[3546]],[[3547]],[[3548]],[[3549]],[[3550]],[[3551]],[[3552]],[[3553]],[[3554]],[[3555]],[[3556]],[[3557]],[[3558]],[[3559]],[[3560]],[[3561]],[[3562]],[[3563]],[[3564]],[[3565]],[[3566]],[[3567]]],\"id\":\"304\",\"properties\":{\"name\":\"Greenland\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3568]],[[3569]],[[3570]],[[3571]],[[3572]],[[3573]],[[3574]],[[3575]],[[3576]],[[3577]],[[3578]],[[3579]],[[3580]],[[3581]],[[3582]],[[3583]],[[3584]],[[3585]],[[3586]],[[3587]],[[3588]],[[3589]],[[3590]],[[3591]],[[3592]],[[3593]],[[3594]],[[3595]],[[3596]],[[3597]],[[3598]],[[3599]],[[3600]],[[3601]],[[3602]],[[3603]],[[3604]],[[3605]],[[3606]],[[3607]],[[3608]],[[3609]],[[3610]],[[3611]]],\"id\":\"242\",\"properties\":{\"name\":\"Fiji\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3612]],[[3613]],[[3614]],[[3615]],[[3616]],[[3617]],[[3618]],[[3619]],[[3620]],[[3621]],[[3622]],[[3623]],[[3624]],[[3625]],[[3626]],[[3627]],[[3628]],[[3629]],[[3630]],[[3631]],[[3632]],[[3633]],[[3634]],[[3635]],[[3636]]],\"id\":\"554\",\"properties\":{\"name\":\"New Zealand\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3637]],[[3638]],[[3639]],[[3640]],[[3641]],[[3642]],[[3643]],[[3644]],[[3645]],[[3646]],[[3647]]],\"id\":\"540\",\"properties\":{\"name\":\"New Caledonia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3648]],[[3649]],[[3650]]],\"id\":\"450\",\"properties\":{\"name\":\"Madagascar\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3651]],[[3652]],[[3653]],[[3654]],[[3655]],[[3656]],[[3657]],[[3658]],[[3659]],[[3660]],[[3661]],[[3662]],[[3663]],[[3664]],[[3665]],[[3666]],[[3667]],[[3668]],[[3669]],[[3670]],[[3671]],[[3672]],[[3673]],[[3674]],[[3675]],[[3676]],[[3677]],[[3678]],[[3679]],[[3680]],[[3681]],[[3682]],[[3683]],[[3684]],[[3685]],[[3686]],[[3687]],[[3688]],[[3689]],[[3690]],[[3691]],[[3692]],[[3693]],[[3694]],[[3695]],[[3696]],[[3697]],[[3698]],[[3699]],[[3700]],[[3701]],[[3702]],[[3703]],[[3704]],[[3705]],[[3706]],[[3707]],[[3708]],[[3709]],[[3710]],[[3711]],[[3712]],[[3713]],[[3714]],[[3715]],[[3716]],[[3717]],[[3718]],[[3719]],[[3720]],[[3721]],[[3722]],[[3723]],[[3724]],[[3725]],[[3726]],[[3727]],[[3728]],[[3729]],[[3730]],[[3731]],[[3732]],[[3733]],[[3734]],[[3735]],[[3736]],[[3737]],[[3738]],[[3739]],[[3740]],[[3741]],[[3742]],[[3743]],[[3744]],[[3745]],[[3746]]],\"id\":\"608\",\"properties\":{\"name\":\"Philippines\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3747]],[[3748]],[[3749]],[[3750]],[[3751]]],\"id\":\"144\",\"properties\":{\"name\":\"Sri Lanka\"}},{\"type\":\"Polygon\",\"arcs\":[[3752]],\"id\":\"531\",\"properties\":{\"name\":\"Curaçao\"}},{\"type\":\"Polygon\",\"arcs\":[[3753]],\"id\":\"533\",\"properties\":{\"name\":\"Aruba\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3754]],[[3755]],[[3756]],[[3757]],[[3758]],[[3759]],[[3760]],[[3761]],[[3762]],[[3763]],[[3764]],[[3765]],[[3766]],[[3767]],[[3768]],[[3769]],[[3770]],[[3771]],[[3772]],[[3773]],[[3774]],[[3775]],[[3776]],[[3777]],[[3778]],[[3779]],[[3780]],[[3781]],[[3782]],[[3783]],[[3784]],[[3785]],[[3786]],[[3787]],[[3788]],[[3789]],[[3790]],[[3791]],[[3792]],[[3793]],[[3794]],[[3795]]],\"id\":\"044\",\"properties\":{\"name\":\"Bahamas\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3796]],[[3797]],[[3798]],[[3799]],[[3800]],[[3801]],[[3802]],[[3803]],[[3804]],[[3805]],[[3806]],[[3807]]],\"id\":\"796\",\"properties\":{\"name\":\"Turks and Caicos Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3808]],[[3809]],[[3810]],[[3811]],[[3812]],[[3813]],[[3814]],[[3815]]],\"id\":\"158\",\"properties\":{\"name\":\"Taiwan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3816]],[[3817]],[[3818]],[[3819]],[[3820]],[[3821]],[[3822]],[[3823]],[[3824]],[[3825]],[[3826]],[[3827]],[[3828]],[[3829]],[[3830]],[[3831]],[[3832]],[[3833]],[[3834]],[[3835]],[[3836]],[[3837]],[[3838]],[[3839]],[[3840]],[[3841]],[[3842]],[[3843]],[[3844]],[[3845]],[[3846]],[[3847]],[[3848]],[[3849]],[[3850]],[[3851]],[[3852]],[[3853]],[[3854]],[[3855]],[[3856]],[[3857]],[[3858]],[[3859]],[[3860]],[[3861]],[[3862]],[[3863]],[[3864]],[[3865]],[[3866]],[[3867]],[[3868]],[[3869]],[[3870]],[[3871]],[[3872]],[[3873]],[[3874]],[[3875]],[[3876]],[[3877]],[[3878]],[[3879]],[[3880]],[[3881]],[[3882]],[[3883]],[[3884]],[[3885]],[[3886]],[[3887]],[[3888]],[[3889]],[[3890]],[[3891,3892]],[[-3892,3893]],[[3894]],[[3895]],[[3896]],[[3897]],[[3898]],[[3899]],[[3900]],[[3901]],[[3902]],[[3903]],[[3904]],[[3905]],[[3906]],[[3907]],[[3908]],[[3909]],[[3910]],[[3911]],[[3912]],[[3913]],[[3914]],[[3915]],[[3916]],[[3917]],[[3918]],[[3919]],[[3920]],[[3921]],[[3922]],[[3923]],[[3924]],[[3925]]],\"id\":\"392\",\"properties\":{\"name\":\"Japan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3926]],[[3927]]],\"id\":\"666\",\"properties\":{\"name\":\"St. Pierre and Miquelon\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3928]],[[3929]],[[3930]],[[3931]],[[3932]]],\"id\":\"352\",\"properties\":{\"name\":\"Iceland\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3933]],[[3934]],[[3935]],[[3936]]],\"id\":\"612\",\"properties\":{\"name\":\"Pitcairn Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[3937]],[[3938]],[[3939]],[[3940]],[[3941]],[[3942]],[[3943]],[[3944]],[[3945]],[[3946]],[[3947]],[[3948]],[[3949]],[[3950]],[[3951]],[[3952]],[[3953]],[[3954]],[[3955]],[[3956]],[[3957]],[[3958]],[[3959]],[[3960]],[[3961]],[[3962]],[[3963]],[[3964]],[[3965]],[[3966]],[[3967]],[[3968]],[[3969]],[[3970]],[[3971]],[[3972]],[[3973]],[[3974]],[[3975]],[[3976]],[[3977]],[[3978]],[[3979]],[[3980]],[[3981]],[[3982]],[[3983]],[[3984]],[[3985]],[[3986]],[[3987]],[[3988]],[[3989]],[[3990]],[[3991]],[[3992]],[[3993]],[[3994]],[[3995]],[[3996]],[[3997]],[[3998]],[[3999]],[[4000]],[[4001]],[[4002]],[[4003]],[[4004]],[[4005]],[[4006]],[[4007]],[[4008]],[[4009]],[[4010]],[[4011]],[[4012]],[[4013]],[[4014]],[[4015]],[[4016]],[[4017]],[[4018]],[[4019]],[[4020]],[[4021]],[[4022]],[[4023]],[[4024]]],\"id\":\"258\",\"properties\":{\"name\":\"Fr. Polynesia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4025]],[[4026]],[[4027]],[[4028]],[[4029]],[[4030]],[[4031]],[[4032]],[[4033]],[[4034]],[[4035]],[[4036]],[[4037]],[[4038]],[[4039]],[[4040]],[[4041]],[[4042]]],\"id\":\"260\",\"properties\":{\"name\":\"Fr. S. Antarctic Lands\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4043]],[[4044]],[[4045]],[[4046]],[[4047]],[[4048]],[[4049]],[[4050]],[[4051]],[[4052]],[[4053]],[[4054]],[[4055]],[[4056]],[[4057]],[[4058]],[[4059]],[[4060]],[[4061]],[[4062]],[[4063]],[[4064]],[[4065]],[[4066]],[[4067]],[[4068]]],\"id\":\"690\",\"properties\":{\"name\":\"Seychelles\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4069]],[[4070]],[[4071]],[[4072]],[[4073]],[[4074]],[[4075]],[[4076]],[[4077]],[[4078]],[[4079]],[[4080]],[[4081]],[[4082]],[[4083]],[[4084]],[[4085,4086]],[[4087]],[[4088]],[[4089]],[[4090]],[[4091]],[[4092]],[[4093]],[[4094]],[[4095]],[[4096]],[[4097]],[[4098]],[[4099]],[[4100]],[[4101]],[[4102]],[[4103]],[[4104]]],\"id\":\"296\",\"properties\":{\"name\":\"Kiribati\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4105]],[[4106]],[[4107]],[[4108]],[[4109]],[[4110]],[[4111]],[[4112]],[[4113]],[[4114]],[[4115]],[[4116]],[[4117]],[[4118]],[[4119]],[[4120]],[[4121]],[[4122]],[[4123]],[[4124]],[[4125]],[[4126]]],\"id\":\"584\",\"properties\":{\"name\":\"Marshall Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4127]],[[4128]]],\"id\":\"780\",\"properties\":{\"name\":\"Trinidad and Tobago\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4129]],[[4130]]],\"id\":\"308\",\"properties\":{\"name\":\"Grenada\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4131]],[[4132]],[[4133]],[[4134]],[[4135]]],\"id\":\"670\",\"properties\":{\"name\":\"St. Vin. and Gren.\"}},{\"type\":\"Polygon\",\"arcs\":[[4136]],\"id\":\"052\",\"properties\":{\"name\":\"Barbados\"}},{\"type\":\"Polygon\",\"arcs\":[[4137]],\"id\":\"662\",\"properties\":{\"name\":\"Saint Lucia\"}},{\"type\":\"Polygon\",\"arcs\":[[4138]],\"id\":\"212\",\"properties\":{\"name\":\"Dominica\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4139]],[[4140]],[[4141]],[[4142]],[[4143]],[[4144]],[[4145]],[[4146]],[[4147]],[[4148]],[[4149]],[[4150]],[[4151]]],\"id\":\"581\",\"properties\":{\"name\":\"U.S. Minor Outlying Is.\"}},{\"type\":\"Polygon\",\"arcs\":[[4152]],\"id\":\"500\",\"properties\":{\"name\":\"Montserrat\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4153]],[[4154]]],\"id\":\"028\",\"properties\":{\"name\":\"Antigua and Barb.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4155]],[[4156]]],\"id\":\"659\",\"properties\":{\"name\":\"St. Kitts and Nevis\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4157]],[[4158]],[[4159]]],\"id\":\"850\",\"properties\":{\"name\":\"U.S. Virgin Is.\"}},{\"type\":\"Polygon\",\"arcs\":[[4160]],\"id\":\"652\",\"properties\":{\"name\":\"St-Barthélemy\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4161]],[[4162]],[[4163]],[[4164]]],\"id\":\"630\",\"properties\":{\"name\":\"Puerto Rico\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4165]],[[4166]]],\"id\":\"660\",\"properties\":{\"name\":\"Anguilla\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4167]],[[4168]],[[4169]],[[4170]],[[4171]],[[4172]]],\"id\":\"092\",\"properties\":{\"name\":\"British Virgin Is.\"}},{\"type\":\"Polygon\",\"arcs\":[[4173]],\"id\":\"388\",\"properties\":{\"name\":\"Jamaica\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4174]],[[4175]],[[4176]]],\"id\":\"136\",\"properties\":{\"name\":\"Cayman Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4177]],[[4178]]],\"id\":\"060\",\"properties\":{\"name\":\"Bermuda\"}},{\"type\":\"Polygon\",\"arcs\":[[4179]],\"id\":\"334\",\"properties\":{\"name\":\"Heard I. and McDonald Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4180]],[[4181]],[[4182]],[[4183]]],\"id\":\"654\",\"properties\":{\"name\":\"Saint Helena\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4184]],[[4185]],[[4186]]],\"id\":\"480\",\"properties\":{\"name\":\"Mauritius\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4187]],[[4188]],[[4189]]],\"id\":\"174\",\"properties\":{\"name\":\"Comoros\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4190]],[[4191]]],\"id\":\"678\",\"properties\":{\"name\":\"São Tomé and Principe\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4192]],[[4193]],[[4194]],[[4195]],[[4196]],[[4197]],[[4198]],[[4199]],[[4200]]],\"id\":\"132\",\"properties\":{\"name\":\"Cabo Verde\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4201]],[[4202]]],\"id\":\"470\",\"properties\":{\"name\":\"Malta\"}},{\"type\":\"Polygon\",\"arcs\":[[4203]],\"id\":\"832\",\"properties\":{\"name\":\"Jersey\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4204]],[[4205]],[[4206]],[[4207]]],\"id\":\"831\",\"properties\":{\"name\":\"Guernsey\"}},{\"type\":\"Polygon\",\"arcs\":[[4208]],\"id\":\"833\",\"properties\":{\"name\":\"Isle of Man\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4209]],[[4210]],[[4211]],[[4212]],[[4213]],[[4214]],[[4215]],[[4216]],[[4217]],[[4218]],[[4219]],[[4220]],[[4221]],[[4222]],[[4223]],[[4224]]],\"id\":\"248\",\"properties\":{\"name\":\"Åland\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4225]],[[4226]],[[4227]],[[4228]],[[4229]],[[4230]],[[4231]],[[4232]],[[4233]],[[4234]],[[4235]]],\"id\":\"234\",\"properties\":{\"name\":\"Faeroe Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4236]],[[4237]],[[4238]]],\"properties\":{\"name\":\"Indian Ocean Ter.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4239]],[[4240]],[[4241]],[[4242]],[[4243]],[[4244]],[[4245]],[[4246]],[[4247]],[[4248]]],\"id\":\"086\",\"properties\":{\"name\":\"Br. Indian Ocean Ter.\"}},{\"type\":\"Polygon\",\"arcs\":[[4249]],\"id\":\"702\",\"properties\":{\"name\":\"Singapore\"}},{\"type\":\"Polygon\",\"arcs\":[[4250]],\"id\":\"574\",\"properties\":{\"name\":\"Norfolk Island\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4251]],[[4252]],[[4253]],[[4254]],[[4255]],[[4256]],[[4257]],[[4258]],[[4259]],[[4260]],[[4261]],[[4262]],[[4263]]],\"id\":\"184\",\"properties\":{\"name\":\"Cook Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4264]],[[4265]],[[4266]],[[4267]],[[4268]],[[4269]],[[4270]],[[4271]],[[4272]],[[4273]]],\"id\":\"776\",\"properties\":{\"name\":\"Tonga\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4274]],[[4275]]],\"id\":\"876\",\"properties\":{\"name\":\"Wallis and Futuna Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4276]],[[4277]]],\"id\":\"882\",\"properties\":{\"name\":\"Samoa\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4278]],[[4279]],[[4280]],[[4281]],[[4282]],[[4283]],[[4284]],[[4285]],[[4286]],[[4287]],[[4288]],[[4289]],[[4290]],[[4291]],[[4292]],[[4293]],[[4294]],[[4295]],[[4296]],[[4297]],[[4298]],[[4299]],[[4300]],[[4301]],[[4302]],[[4303]],[[4304]],[[4305]],[[4306]],[[4307]],[[4308]],[[4309]],[[4310]],[[4311]],[[4312]],[[4313]],[[4314]],[[4315]],[[4316]],[[4317]],[[4318]],[[4319]],[[4320]],[[4321]],[[4322]],[[4323]],[[4324]],[[4325]]],\"id\":\"090\",\"properties\":{\"name\":\"Solomon Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4326]],[[4327]],[[4328]],[[4329]],[[4330]],[[4331]],[[4332]],[[4333]],[[4334]]],\"id\":\"798\",\"properties\":{\"name\":\"Tuvalu\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4335]],[[4336]],[[4337]],[[4338]],[[4339]],[[4340]],[[4341]],[[4342]],[[4343]],[[4344]],[[4345]],[[4346]],[[4347]],[[4348]],[[4349]],[[4350]],[[4351]],[[4352]],[[4353]],[[4354]],[[4355]],[[4356]],[[4357]],[[4358]],[[4359]],[[4360]],[[4361]],[[4362]],[[4363]],[[4364]],[[4365]],[[4366]],[[4367]],[[4368]],[[4369]],[[4370]],[[4371]],[[4372]],[[4373]],[[4374]],[[4375]],[[4376]],[[4377]],[[4378]],[[4379]],[[4380]],[[4381]],[[4382]],[[4383]],[[4384]],[[4385]],[[4386]],[[4387]],[[4388]],[[4389]],[[4390]],[[4391]],[[4392]],[[4393]],[[4394]],[[4395]],[[4396]],[[4397]],[[4398]],[[4399]],[[4400]],[[4401]],[[4402]],[[4403]],[[4404]],[[4405]],[[4406]],[[4407]],[[4408]],[[4409]],[[4410]],[[4411]],[[4412]],[[4413]],[[4414]],[[4415]],[[4416]],[[4417]],[[4418]],[[4419]],[[4420]],[[4421]],[[4422]],[[4423]],[[4424]],[[4425]],[[4426]],[[4427]],[[4428]],[[4429]],[[4430]],[[4431]],[[4432]],[[4433]],[[4434]],[[4435]],[[4436]],[[4437]],[[4438]],[[4439]],[[4440]],[[4441]],[[4442]],[[4443]],[[4444]],[[4445]],[[4446]],[[4447]],[[4448]],[[4449]],[[4450]],[[4451]],[[4452]],[[4453]],[[4454]],[[4455]],[[4456]],[[4457]],[[4458]],[[4459]],[[4460]],[[4461]],[[4462]],[[4463]],[[4464]],[[4465]],[[4466]],[[4467]],[[4468]],[[4469]],[[4470]],[[4471]],[[4472]],[[4473]],[[4474]],[[4475]],[[4476]],[[4477]],[[4478]],[[4479]],[[4480]],[[4481]],[[4482]],[[4483]],[[4484]],[[4485]],[[4486]],[[4487]],[[4488]],[[4489]],[[4490]],[[4491]],[[4492]],[[4493]],[[4494]],[[4495]],[[4496]],[[4497]],[[4498]],[[4499]],[[4500]],[[4501]],[[4502]],[[4503]],[[4504]],[[4505]],[[4506]],[[4507]],[[4508]],[[4509]],[[4510]]],\"id\":\"462\",\"properties\":{\"name\":\"Maldives\"}},{\"type\":\"Polygon\",\"arcs\":[[4511]],\"id\":\"520\",\"properties\":{\"name\":\"Nauru\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4512]],[[4513]],[[4514]],[[4515]],[[4516]],[[4517]],[[4518]],[[4519]],[[4520]],[[4521]],[[4522]],[[4523]],[[4524]],[[4525]],[[4526]],[[4527]],[[4528]],[[4529]],[[4530]],[[4531]]],\"id\":\"583\",\"properties\":{\"name\":\"Micronesia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4532]],[[4533]],[[4534]],[[4535]],[[4536]],[[4537]],[[4538]],[[4539]],[[4540]],[[4541]],[[4542]],[[4543]]],\"id\":\"239\",\"properties\":{\"name\":\"S. Geo. and the Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4544]],[[4545]],[[4546]],[[4547]],[[4548]],[[4549]],[[4550]],[[4551]],[[4552]],[[4553]],[[4554]],[[4555]],[[4556]],[[4557]],[[4558]]],\"id\":\"238\",\"properties\":{\"name\":\"Falkland Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4559]],[[4560]],[[4561]],[[4562]],[[4563]],[[4564]],[[4565]],[[4566]],[[4567]],[[4568]],[[4569]],[[4570]],[[4571]],[[4572]],[[4573]],[[4574]],[[4575]],[[4576]],[[4577]],[[4578]],[[4579]],[[4580]],[[4581]],[[4582]],[[4583]],[[4584]],[[4585]]],\"id\":\"548\",\"properties\":{\"name\":\"Vanuatu\"}},{\"type\":\"Polygon\",\"arcs\":[[4586]],\"id\":\"570\",\"properties\":{\"name\":\"Niue\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4587]],[[4588]],[[4589]],[[4590]],[[4591]]],\"id\":\"016\",\"properties\":{\"name\":\"American Samoa\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4592]],[[4593]],[[4594]],[[4595]],[[4596]],[[4597]],[[4598]],[[4599]],[[4600]]],\"id\":\"585\",\"properties\":{\"name\":\"Palau\"}},{\"type\":\"Polygon\",\"arcs\":[[4601]],\"id\":\"316\",\"properties\":{\"name\":\"Guam\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4602]],[[4603]],[[4604]],[[4605]],[[4606]],[[4607]],[[4608]],[[4609]],[[4610]],[[4611]],[[4612]],[[4613]]],\"id\":\"580\",\"properties\":{\"name\":\"N. Mariana Is.\"}},{\"type\":\"Polygon\",\"arcs\":[[4614]],\"id\":\"048\",\"properties\":{\"name\":\"Bahrain\"}},{\"type\":\"Polygon\",\"arcs\":[[4615]],\"properties\":{\"name\":\"Coral Sea Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4616]],[[4617]],[[4618]],[[4619]],[[4620]],[[4621]],[[4622]],[[4623]],[[4624]],[[4625]],[[4626]],[[4627]]],\"properties\":{\"name\":\"Spratly Is.\"}},{\"type\":\"Polygon\",\"arcs\":[[4628]],\"properties\":{\"name\":\"Clipperton I.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[4629]],[[4630]]],\"id\":\"446\",\"properties\":{\"name\":\"Macao\"}},{\"type\":\"Polygon\",\"arcs\":[[4631]],\"id\":\"036\",\"properties\":{\"name\":\"Ashmore and Cartier Is.\"}},{\"type\":\"Polygon\",\"arcs\":[[4632]],\"properties\":{\"name\":\"Bajo Nuevo Bank\"}},{\"type\":\"Polygon\",\"arcs\":[[4633]],\"properties\":{\"name\":\"Serranilla Bank\"}},{\"type\":\"Polygon\",\"arcs\":[[4634]],\"properties\":{\"name\":\"Scarborough Reef\"}}]},\"land\":{\"type\":\"GeometryCollection\",\"geometries\":[{\"type\":\"MultiPolygon\",\"arcs\":[[[1,270]],[[4,1974,2,1975]],[[276,1977,273,6,274,1978]],[[9,3068]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[2030,508,667,1818,1777,1960,1913,1906,1908,1482,882,1480,884,3135,1910,2161,641,3126,1763,1768,1767,695,661,663,682,1984,873,863,1874,840,1873,830,2165,3149,2163,1865,1869,2172,2174,1847,2175,1845,1757,1747,1750,2176,1858,3152,1860,3144,814,804,1532,806,807,1533,809,1981,1585,1577,3127,644,634,646,690,1524,1498,971,846,981,848,1590,1926,1525,1669,1505,2054,1880,2055,1877,1905,1783,704,1979,706,1535,2189,1537,2141,1539,710,1491,1831,1493,1830,1202,1562,1204,1601,1207,1602,979,917,980,914,1237,1228,974,1402,1361,1239,977,967,794,738,792,555,3153,557,558,1445,1471,1927,271,1928,1990],[968,1509,1815,2158,901]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[294,465,2111,2127,3024,817,822,2103,1966,1969,2962,2193,2547,2198,2548,2196,2549,2550,2191,2960,3013,1972,2102,824,815,3023,2129,3039,736,733,697,921,965,476]],[[297,478,299,477]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[324]],[[325]],[[326]],[[327]],[[328]],[[329]],[[330]],[[331]],[[332]],[[333]],[[334]],[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[353]],[[354]],[[355]],[[356]],[[357]],[[358]],[[359]],[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370]],[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[469]],[[470]],[[471]],[[472]],[[479]],[[480]],[[481]],[[482]],[[483]],[[495,3165,3161,3164,497,3163,3158,3162,500,490,484,493,3166]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[666]],[[671]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[712]],[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720]],[[721]],[[722]],[[723]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[737]],[[740]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[748]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[755]],[[756]],[[757]],[[758]],[[759]],[[760]],[[761]],[[762]],[[763]],[[764]],[[765]],[[766]],[[767]],[[768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[795]],[[796]],[[797]],[[798]],[[799]],[[800]],[[801]],[[802]],[[803]],[[819]],[[820]],[[821]],[[825]],[[826]],[[827]],[[842]],[[856]],[[857]],[[858]],[[875]],[[876]],[[878,879]],[[888]],[[889]],[[890]],[[904]],[[905]],[[906]],[[907]],[[908]],[[923]],[[924]],[[925]],[[926]],[[927]],[[928]],[[929]],[[930]],[[931]],[[932]],[[933]],[[934]],[[935]],[[936]],[[937]],[[938]],[[939]],[[940]],[[941]],[[942]],[[943]],[[944]],[[945]],[[946]],[[947]],[[948]],[[949]],[[950]],[[951]],[[952]],[[953]],[[954]],[[955]],[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1022]],[[1023]],[[1024]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1035]],[[1036]],[[1037]],[[1038]],[[1039]],[[1040]],[[1041]],[[1042]],[[1043]],[[1044]],[[1045]],[[1046]],[[1047]],[[1048]],[[1049]],[[1050]],[[1051]],[[1052]],[[1053]],[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[1077]],[[1078]],[[1079]],[[1080]],[[1081]],[[1082]],[[1083]],[[1084]],[[1085]],[[1086]],[[1087]],[[1088]],[[1089]],[[1090]],[[1091]],[[1092]],[[1093]],[[1094]],[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1100]],[[1101]],[[1102]],[[1103]],[[1104]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116]],[[1117]],[[1118]],[[1119]],[[1120]],[[1121]],[[1122]],[[1123]],[[1124]],[[1125]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141]],[[1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1174]],[[1175]],[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182]],[[1183]],[[1184]],[[1185]],[[1186]],[[1187]],[[1188]],[[1189]],[[1190]],[[1191]],[[1192]],[[1208]],[[1209]],[[1210]],[[1211]],[[1212]],[[1213]],[[1214]],[[1215]],[[1216]],[[1217]],[[1218]],[[1219]],[[1220]],[[1221]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[1227]],[[1230]],[[1231]],[[1232]],[[1233]],[[1234]],[[1235]],[[1236]],[[1241]],[[1242]],[[1243]],[[1244]],[[1245]],[[1246]],[[1247]],[[1248]],[[1249]],[[1250]],[[1251]],[[1252]],[[1253]],[[1254]],[[1255]],[[1256]],[[1257]],[[1258]],[[1259]],[[1260]],[[1261]],[[1262]],[[1263]],[[1264]],[[1265]],[[1266]],[[1267]],[[1268]],[[1269]],[[1270]],[[1271]],[[1272]],[[1273]],[[1274]],[[1275]],[[1276]],[[1277]],[[1278]],[[1279]],[[1280]],[[1281]],[[1282]],[[1283]],[[1284]],[[1285]],[[1286]],[[1287]],[[1288]],[[1289]],[[1290]],[[1291]],[[1292]],[[1293]],[[1294]],[[1295]],[[1296]],[[1297]],[[1298]],[[1299]],[[1300]],[[1301]],[[1302]],[[1303]],[[1304]],[[1305]],[[1306]],[[1307]],[[1308]],[[1309]],[[1310]],[[1311]],[[1312]],[[1313]],[[1314]],[[1315]],[[1316]],[[1317]],[[1318]],[[1319]],[[1320]],[[1321]],[[1322]],[[1323]],[[1324]],[[1325]],[[1326]],[[1327]],[[1328]],[[1329]],[[1330]],[[1331]],[[1332]],[[1333]],[[1334]],[[1335]],[[1336]],[[1337]],[[1338]],[[1339]],[[1340]],[[1341]],[[1342]],[[1343]],[[1344]],[[1345]],[[1346]],[[1347]],[[1348]],[[1349]],[[1350]],[[1351]],[[1352]],[[1353]],[[1354]],[[1355]],[[1356]],[[1357]],[[1358]],[[1359]],[[1362]],[[1363]],[[1364]],[[1365]],[[1366]],[[1367]],[[1368]],[[1369]],[[1370]],[[1371]],[[1372]],[[1373]],[[1374]],[[1375]],[[1376]],[[1377]],[[1378]],[[1379]],[[1380]],[[1381]],[[1382]],[[1383]],[[1384]],[[1385]],[[1386]],[[1387]],[[1388]],[[1389]],[[1390]],[[1391]],[[1392]],[[1393]],[[1394]],[[1395]],[[1396]],[[1397]],[[1398]],[[1399]],[[1400]],[[1401]],[[1403]],[[1404]],[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[1410]],[[1411]],[[1412]],[[1413]],[[1414]],[[1415]],[[1416]],[[1417]],[[1418]],[[1419]],[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[1428]],[[1429]],[[1430]],[[1431]],[[1432]],[[1433]],[[1434]],[[1435]],[[1436]],[[1437]],[[1438]],[[1439]],[[1440]],[[1441]],[[1442]],[[1443]],[[1447]],[[1448]],[[1449]],[[1450]],[[1451]],[[1452]],[[1453]],[[1454]],[[1455]],[[1456]],[[1457]],[[1458]],[[1459]],[[1460]],[[1461]],[[1462]],[[1463]],[[1464]],[[1465]],[[1466]],[[1467]],[[1468]],[[1469]],[[1470]],[[1474]],[[1475]],[[1476]],[[1477]],[[1478]],[[1483]],[[1484]],[[1485]],[[1486]],[[1487]],[[1488]],[[1489]],[[1490]],[[1517]],[[1518]],[[1528]],[[1529]],[[1530]],[[1531]],[[1540]],[[1541]],[[1542]],[[1543]],[[1544]],[[1545]],[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]],[[1555]],[[1556]],[[1557]],[[1558]],[[1563]],[[1564]],[[1565]],[[1566]],[[1567]],[[1568]],[[1569]],[[1570]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]],[[1586]],[[1587]],[[1588]],[[1604,1611]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]],[[1612]],[[1613]],[[1614]],[[1615]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1651]],[[1652]],[[1653]],[[1654]],[[1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688]],[[1689]],[[1690]],[[1691]],[[1692]],[[1693]],[[1694]],[[1695]],[[1696]],[[1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703]],[[1704]],[[1705]],[[1706]],[[1707]],[[1708]],[[1709]],[[1710]],[[1711]],[[1712]],[[1713]],[[1714]],[[1715]],[[1716]],[[1717]],[[1718]],[[1719]],[[1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1729]],[[1730]],[[1731]],[[1732]],[[1733]],[[1734]],[[1735]],[[1736]],[[1737]],[[1738]],[[1739]],[[1740]],[[1741]],[[1742]],[[1749]],[[1765]],[[1769]],[[1770]],[[1786]],[[1787]],[[1788]],[[1789]],[[1790]],[[1791]],[[1792]],[[1793]],[[1794]],[[1795]],[[1796]],[[1797]],[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[1812]],[[1813]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]],[[1832]],[[1833]],[[1834]],[[1835]],[[1836]],[[1837]],[[1838]],[[1839]],[[1840]],[[1841]],[[1867]],[[1868]],[[1875]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]],[[1930]],[[1931]],[[1932]],[[1933]],[[1934]],[[1935]],[[1936]],[[1937]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[1944]],[[1945]],[[1946]],[[1947]],[[1948]],[[1950,1955]],[[1951]],[[1952]],[[1953]],[[1954]],[[1956]],[[1957]],[[1961]],[[1962]],[[1963]],[[1967]],[[1968]],[[1976]],[[1985]],[[1986]],[[1987]],[[1992]],[[1993]],[[1994]],[[1995]],[[1996]],[[1997]],[[1998]],[[1999]],[[2000]],[[2001]],[[2002]],[[2003]],[[2004]],[[2005]],[[2006]],[[2007]],[[2008]],[[2009]],[[2010]],[[2011]],[[2012]],[[2013]],[[2014]],[[2015]],[[2016]],[[2017]],[[2018]],[[2019]],[[2020]],[[2021]],[[2022]],[[2023]],[[2024]],[[2025]],[[2026]],[[2027]],[[2028]],[[2029]],[[2031]],[[2032]],[[2033]],[[2034]],[[2035]],[[2036]],[[2037]],[[2038]],[[2039]],[[2040]],[[2041]],[[2042]],[[2043]],[[2044]],[[2045]],[[2046]],[[2047]],[[2048]],[[2049]],[[2050]],[[2051]],[[2061,2056,2060,2058]],[[2062]],[[2063]],[[2064]],[[2065]],[[2066]],[[2067]],[[2068]],[[2069]],[[2070]],[[2071]],[[2072]],[[2073]],[[2074]],[[2075]],[[2076]],[[2077]],[[2078]],[[2079]],[[2080]],[[2081]],[[2082]],[[2083]],[[2084]],[[2085]],[[2086]],[[2087]],[[2088]],[[2089]],[[2090]],[[2091]],[[2092]],[[2093]],[[2094]],[[2095]],[[2096]],[[2097]],[[2098]],[[2099]],[[2100]],[[2101]],[[2104]],[[2105]],[[2106]],[[2107]],[[2108]],[[2109]],[[2112]],[[2113]],[[2114]],[[2115]],[[2116]],[[2117]],[[2118]],[[2119]],[[2120]],[[2121]],[[2122]],[[2123]],[[2124]],[[2125]],[[2126]],[[2131]],[[2132]],[[2133]],[[2134]],[[2135]],[[2136]],[[2137]],[[2138]],[[2139]],[[2140]],[[2142]],[[2143]],[[2144]],[[2145]],[[2146]],[[2147]],[[2148]],[[2149]],[[2150]],[[2151]],[[2152]],[[2153]],[[2154]],[[2155]],[[2156]],[[2157]],[[2159]],[[2160]],[[2167]],[[2168]],[[2177]],[[2178]],[[2179]],[[2180]],[[2181]],[[2182]],[[2183]],[[2184]],[[2185]],[[2186]],[[2187]],[[2188]],[[2199]],[[2200]],[[2201]],[[2202]],[[2203]],[[2204]],[[2205]],[[2206]],[[2207]],[[2208]],[[2209]],[[2210]],[[2211]],[[2212]],[[2213]],[[2214]],[[2215]],[[2216]],[[2217]],[[2218]],[[2219]],[[2220]],[[2221]],[[2222]],[[2223]],[[2224]],[[2225]],[[2226]],[[2227]],[[2228]],[[2229]],[[2230]],[[2231]],[[2232]],[[2233]],[[2234]],[[2235]],[[2236]],[[2237]],[[2238]],[[2239]],[[2240]],[[2241]],[[2242]],[[2243]],[[2244]],[[2245]],[[2246]],[[2247]],[[2248]],[[2249]],[[2250]],[[2251]],[[2252]],[[2253]],[[2254,2255]],[[2256]],[[2257]],[[2258]],[[2259]],[[2260]],[[2261]],[[2262]],[[2263]],[[2264]],[[2265]],[[2266]],[[2267]],[[2268]],[[2269]],[[2270]],[[2271]],[[2272]],[[2273]],[[2274]],[[2275]],[[2276]],[[2277]],[[2278]],[[2279]],[[2280]],[[2281]],[[2282]],[[2283]],[[2284]],[[2285]],[[2286]],[[2287]],[[2288]],[[2289]],[[2290]],[[2291]],[[2292]],[[2293]],[[2294]],[[2295]],[[2296]],[[2297]],[[2298]],[[2299]],[[2300]],[[2301]],[[2302]],[[2303]],[[2304]],[[2305]],[[2306]],[[2307]],[[2308]],[[2309]],[[2310]],[[2311]],[[2312]],[[2313]],[[2314]],[[2315]],[[2316]],[[2317]],[[2318]],[[2319]],[[2320]],[[2321]],[[2322]],[[2323]],[[2324]],[[2325]],[[2326]],[[2327]],[[2328]],[[2329]],[[2330]],[[2331]],[[2332]],[[2333]],[[2334]],[[2335]],[[2336]],[[2337]],[[2338]],[[2339]],[[2340]],[[2341]],[[2342]],[[2343]],[[2344]],[[2345]],[[2346]],[[2347]],[[2348]],[[2349]],[[2350]],[[2351]],[[2352]],[[2353]],[[2354]],[[2355]],[[2356]],[[2357]],[[2358]],[[2359]],[[2360]],[[2361]],[[2362]],[[2363]],[[2364]],[[2365]],[[2366]],[[2367]],[[2368]],[[2369]],[[2370]],[[2371]],[[2372]],[[2373]],[[2374]],[[2375]],[[2376]],[[2377]],[[2378]],[[2379]],[[2380]],[[2381]],[[2382]],[[2383]],[[2384]],[[2385]],[[2386]],[[2387]],[[2388]],[[2389]],[[2390,2391]],[[2392]],[[2393]],[[2394]],[[2395]],[[2396]],[[2397]],[[2398]],[[2399]],[[2400]],[[2401]],[[2402]],[[2403]],[[2404]],[[2405]],[[2406]],[[2407]],[[2408]],[[2409]],[[2410]],[[2411]],[[2412]],[[2413]],[[2414]],[[2415]],[[2416]],[[2417]],[[2418]],[[2419]],[[2420]],[[2421]],[[2422]],[[2423]],[[2424]],[[2425]],[[2426]],[[2427]],[[2428]],[[2429]],[[2430]],[[2431]],[[2432]],[[2433]],[[2434]],[[2435]],[[2436]],[[2437]],[[2438]],[[2439]],[[2440]],[[2441]],[[2442]],[[2443]],[[2444]],[[2445]],[[2446]],[[2447]],[[2448]],[[2449]],[[2450]],[[2451]],[[2452]],[[2453]],[[2454]],[[2455]],[[2456]],[[2457]],[[2458]],[[2459]],[[2460]],[[2461]],[[2462]],[[2463]],[[2464,2465]],[[2466]],[[2467]],[[2468]],[[2469]],[[2470]],[[2471]],[[2472]],[[2473]],[[2474]],[[2475]],[[2476]],[[2477]],[[2478]],[[2479]],[[2480]],[[2481]],[[2482]],[[2483]],[[2484]],[[2485]],[[2486]],[[2487]],[[2488]],[[2489]],[[2490]],[[2491]],[[2492]],[[2493]],[[2494]],[[2495]],[[2496]],[[2497]],[[2498]],[[2499]],[[2500]],[[2501]],[[2502]],[[2503]],[[2504]],[[2505]],[[2506]],[[2507]],[[2508]],[[2509]],[[2510]],[[2511]],[[2512]],[[2513]],[[2514]],[[2515]],[[2516]],[[2517]],[[2518]],[[2519]],[[2520]],[[2521]],[[2522]],[[2523]],[[2524]],[[2525]],[[2526]],[[2527]],[[2528]],[[2529]],[[2530]],[[2531]],[[2532]],[[2533]],[[2534]],[[2535]],[[2536]],[[2537]],[[2538]],[[2539]],[[2540]],[[2541,2542]],[[2543,2544]],[[2545]],[[2546]],[[2551]],[[2552]],[[2553]],[[2554]],[[2555]],[[2556]],[[2557]],[[2558]],[[2559]],[[2560]],[[2561]],[[2562]],[[2563]],[[2564]],[[2565]],[[2566]],[[2567]],[[2568]],[[2569]],[[2570]],[[2571]],[[2572]],[[2573]],[[2574]],[[2575]],[[2576]],[[2577]],[[2578]],[[2579]],[[2580]],[[2581]],[[2582]],[[2583]],[[2584]],[[2585]],[[2586]],[[2587]],[[2588]],[[2589]],[[2590]],[[2591]],[[2592]],[[2593]],[[2594]],[[2595]],[[2596]],[[2597]],[[2598,2600]],[[2601]],[[2602]],[[2603]],[[2604]],[[2605]],[[2606]],[[2607]],[[2608]],[[2609]],[[2610]],[[2611]],[[2612]],[[2613]],[[2614]],[[2615]],[[2616]],[[2617]],[[2618]],[[2619]],[[2620]],[[2621]],[[2622]],[[2623]],[[2624]],[[2625]],[[2626]],[[2627]],[[2628]],[[2629]],[[2630]],[[2631]],[[2632]],[[2633]],[[2634]],[[2635]],[[2636]],[[2637]],[[2638]],[[2639]],[[2640]],[[2641]],[[2642]],[[2643]],[[2644]],[[2645]],[[2646]],[[2647]],[[2648]],[[2649]],[[2650]],[[2651]],[[2652]],[[2653]],[[2654]],[[2655]],[[2656]],[[2657]],[[2658]],[[2659]],[[2660]],[[2661]],[[2662]],[[2663]],[[2664]],[[2665]],[[2666]],[[2667]],[[2668]],[[2669]],[[2670]],[[2671]],[[2672]],[[2673]],[[2674]],[[2675]],[[2676]],[[2677]],[[2678]],[[2679]],[[2680]],[[2681]],[[2682]],[[2683]],[[2684]],[[2685]],[[2686]],[[2687]],[[2688]],[[2689]],[[2690]],[[2691]],[[2692]],[[2693]],[[2694]],[[2695]],[[2696]],[[2697]],[[2698]],[[2699]],[[2700]],[[2701]],[[2702]],[[2703]],[[2704]],[[2705]],[[2706]],[[2707]],[[2708]],[[2709]],[[2710]],[[2711]],[[2712]],[[2713]],[[2714]],[[2715]],[[2716]],[[2717]],[[2718]],[[2719]],[[2720]],[[2721]],[[2722]],[[2723]],[[2724]],[[2725]],[[2726]],[[2727]],[[2728]],[[2729]],[[2730]],[[2731]],[[2732]],[[2733]],[[2734]],[[2735]],[[2736]],[[2737]],[[2738]],[[2739]],[[2740]],[[2741]],[[2742]],[[2743]],[[2744]],[[2745]],[[2746]],[[2747]],[[2748]],[[2749]],[[2750]],[[2751]],[[2752]],[[2753]],[[2754]],[[2755]],[[2756]],[[2757]],[[2758]],[[2759]],[[2760]],[[2761]],[[2762]],[[2763]],[[2764]],[[2765]],[[2766]],[[2767]],[[2768]],[[2769]],[[2770]],[[2771]],[[2772]],[[2773]],[[2774]],[[2775]],[[2776]],[[2777]],[[2778]],[[2779]],[[2780]],[[2781]],[[2782]],[[2783]],[[2784]],[[2785]],[[2786]],[[2787]],[[2788]],[[2789]],[[2790]],[[2791]],[[2792]],[[2793]],[[2794]],[[2795]],[[2796]],[[2797]],[[2798]],[[2799]],[[2800]],[[2801]],[[2802]],[[2803]],[[2804]],[[2805]],[[2806]],[[2807]],[[2808]],[[2809]],[[2810]],[[2811]],[[2812]],[[2813]],[[2814]],[[2815]],[[2816]],[[2817]],[[2818]],[[2819]],[[2820]],[[2821]],[[2822]],[[2823]],[[2824]],[[2825]],[[2826]],[[2827]],[[2828]],[[2829]],[[2830]],[[2831]],[[2832]],[[2833]],[[2834]],[[2835]],[[2836]],[[2837]],[[2838]],[[2839]],[[2840]],[[2841]],[[2842]],[[2843]],[[2844]],[[2845]],[[2846]],[[2847]],[[2848]],[[2849]],[[2850]],[[2851]],[[2852]],[[2853]],[[2854]],[[2855]],[[2856]],[[2857]],[[2858]],[[2859]],[[2860]],[[2861]],[[2862]],[[2863]],[[2864]],[[2865]],[[2866]],[[2867]],[[2868]],[[2869]],[[2870]],[[2871]],[[2872]],[[2873]],[[2874]],[[2875]],[[2876]],[[2877]],[[2878]],[[2879]],[[2880]],[[2881]],[[2882]],[[2883]],[[2884]],[[2885]],[[2886]],[[2887]],[[2888]],[[2889]],[[2890]],[[2891]],[[2892]],[[2893]],[[2894]],[[2895]],[[2896]],[[2897]],[[2898]],[[2899]],[[2900]],[[2901]],[[2902]],[[2903]],[[2904]],[[2905]],[[2906]],[[2907]],[[2908]],[[2909]],[[2910]],[[2911]],[[2912]],[[2913]],[[2914]],[[2915]],[[2916]],[[2917]],[[2918]],[[2919]],[[2920]],[[2921]],[[2922]],[[2923]],[[2924]],[[2925]],[[2926]],[[2927]],[[2928]],[[2929]],[[2930]],[[2931]],[[2932]],[[2933]],[[2934]],[[2935]],[[2936]],[[2937]],[[2938]],[[2939]],[[2940]],[[2941]],[[2942]],[[2943]],[[2944]],[[2945]],[[2946]],[[2947]],[[2948]],[[2949]],[[2950]],[[2951]],[[2952]],[[2953]],[[2954]],[[2955]],[[2956]],[[2957]],[[2958]],[[2959]],[[2963]],[[2964]],[[2965]],[[2966]],[[2967]],[[2968]],[[2969]],[[2970]],[[2971]],[[2972]],[[2973]],[[2974]],[[2975]],[[2976]],[[2977]],[[2978]],[[2979]],[[2980]],[[2981]],[[2982]],[[2983]],[[2984]],[[2985]],[[2986]],[[2987]],[[2988]],[[2989]],[[2990]],[[2991]],[[2992]],[[2993]],[[2994]],[[2995]],[[2996]],[[2997]],[[2998]],[[2999]],[[3000]],[[3001]],[[3002]],[[3003]],[[3004]],[[3005]],[[3006]],[[3007]],[[3008]],[[3009]],[[3010]],[[3011]],[[3012]],[[3014]],[[3015]],[[3016]],[[3017]],[[3018]],[[3019]],[[3020]],[[3021]],[[3022]],[[3025]],[[3026]],[[3027]],[[3028]],[[3029]],[[3030]],[[3031]],[[3032]],[[3033]],[[3034]],[[3035]],[[3036]],[[3037]],[[3038]],[[3040]],[[3041]],[[3042]],[[3043]],[[3044]],[[3045]],[[3046]],[[3047]],[[3048]],[[3049]],[[3050]],[[3051]],[[3052]],[[3053]],[[3054]],[[3055]],[[3056]],[[3057]],[[3058]],[[3059]],[[3060]],[[3061]],[[3062]],[[3063]],[[3064]],[[3065]],[[3066]],[[3067]],[[3069]],[[3070]],[[3071]],[[3072]],[[3073]],[[3074]],[[3075]],[[3076]],[[3077]],[[3078]],[[3079]],[[3080]],[[3081]],[[3082]],[[3083]],[[3084]],[[3085]],[[3086]],[[3087]],[[3088]],[[3089]],[[3090]],[[3091]],[[3092]],[[3093]],[[3094]],[[3095]],[[3096]],[[3097]],[[3098]],[[3099]],[[3100]],[[3101]],[[3102]],[[3103]],[[3104]],[[3105]],[[3106]],[[3107]],[[3108]],[[3109]],[[3110]],[[3111]],[[3112]],[[3113]],[[3114]],[[3115]],[[3116]],[[3117]],[[3118]],[[3119]],[[3120]],[[3121]],[[3122]],[[3123]],[[3124]],[[3125]],[[3128]],[[3129]],[[3130]],[[3131]],[[3132]],[[3133]],[[3134]],[[3136]],[[3137]],[[3138]],[[3139]],[[3140]],[[3141]],[[3142]],[[3143]],[[3145]],[[3146]],[[3147]],[[3148]],[[3150]],[[3151]],[[3154]],[[3155]],[[3156]],[[3167]],[[3168]],[[3169]],[[3170]],[[3171]],[[3172]],[[3173]],[[3174]],[[3175]],[[3176]],[[3177]],[[3178]],[[3179]],[[3180]],[[3181]],[[3182]],[[3183]],[[3184]],[[3185]],[[3186]],[[3187]],[[3188]],[[3189]],[[3190]],[[3191]],[[3192]],[[3193]],[[3194]],[[3195]],[[3196]],[[3197]],[[3198]],[[3199]],[[3200]],[[3201]],[[3202]],[[3203]],[[3204]],[[3205]],[[3206]],[[3207]],[[3208]],[[3209]],[[3210]],[[3211]],[[3212]],[[3213]],[[3214]],[[3215]],[[3216]],[[3217]],[[3218]],[[3219]],[[3220]],[[3221]],[[3222]],[[3223]],[[3224]],[[3225]],[[3226]],[[3227]],[[3228]],[[3229]],[[3230]],[[3231]],[[3232]],[[3233]],[[3234]],[[3235]],[[3236]],[[3237]],[[3238]],[[3239]],[[3240]],[[3241]],[[3242]],[[3243]],[[3244]],[[3245]],[[3246]],[[3247]],[[3248]],[[3249]],[[3250]],[[3251]],[[3252]],[[3253]],[[3254]],[[3255]],[[3256]],[[3257]],[[3258]],[[3259]],[[3260]],[[3261]],[[3262]],[[3263]],[[3264]],[[3265]],[[3266]],[[3267]],[[3268]],[[3269]],[[3270]],[[3271]],[[3272]],[[3273]],[[3274]],[[3275]],[[3276]],[[3277]],[[3278]],[[3279]],[[3280]],[[3281]],[[3282]],[[3283]],[[3284]],[[3285]],[[3286]],[[3287]],[[3288]],[[3289]],[[3290]],[[3291]],[[3292]],[[3293]],[[3294]],[[3295]],[[3296]],[[3297]],[[3298]],[[3299]],[[3300]],[[3301]],[[3302]],[[3303]],[[3304]],[[3305]],[[3306]],[[3307]],[[3308]],[[3309]],[[3310]],[[3311]],[[3312]],[[3313]],[[3314]],[[3315]],[[3316]],[[3317]],[[3318]],[[3319]],[[3320]],[[3321]],[[3322]],[[3323]],[[3324]],[[3325]],[[3326]],[[3327]],[[3328]],[[3329]],[[3330]],[[3331]],[[3332]],[[3333]],[[3334]],[[3335]],[[3336]],[[3337]],[[3338]],[[3339]],[[3340]],[[3341]],[[3342]],[[3343]],[[3344]],[[3345]],[[3346]],[[3347]],[[3348]],[[3349]],[[3350]],[[3351]],[[3352]],[[3353]],[[3354]],[[3355]],[[3356]],[[3357]],[[3358]],[[3359]],[[3360]],[[3361]],[[3362]],[[3363]],[[3364]],[[3365]],[[3366]],[[3367]],[[3368]],[[3369]],[[3370]],[[3371]],[[3372]],[[3373]],[[3374]],[[3375]],[[3376]],[[3377]],[[3378]],[[3379]],[[3380]],[[3381]],[[3382]],[[3383]],[[3384]],[[3385]],[[3386]],[[3387]],[[3388]],[[3389]],[[3390]],[[3391]],[[3392]],[[3393]],[[3394]],[[3395]],[[3396]],[[3397]],[[3398]],[[3399]],[[3400]],[[3401]],[[3402]],[[3403]],[[3404]],[[3405]],[[3406]],[[3407]],[[3408]],[[3409]],[[3410]],[[3411]],[[3412]],[[3413]],[[3414]],[[3415]],[[3416]],[[3417]],[[3418]],[[3419]],[[3420]],[[3421]],[[3422]],[[3423]],[[3424]],[[3425]],[[3426]],[[3427]],[[3428]],[[3429]],[[3430]],[[3431]],[[3432]],[[3433]],[[3434]],[[3435]],[[3436]],[[3437]],[[3438]],[[3439]],[[3440]],[[3441]],[[3442]],[[3443]],[[3444]],[[3445]],[[3446]],[[3447]],[[3448]],[[3449]],[[3450]],[[3451]],[[3452]],[[3453]],[[3454]],[[3455]],[[3456]],[[3457]],[[3458]],[[3459]],[[3460]],[[3461]],[[3462]],[[3463]],[[3464]],[[3465]],[[3466]],[[3467]],[[3468]],[[3469]],[[3470]],[[3471]],[[3472]],[[3473]],[[3474]],[[3475]],[[3476]],[[3477]],[[3478]],[[3479]],[[3480]],[[3481]],[[3482]],[[3483]],[[3484]],[[3485]],[[3486]],[[3487]],[[3488]],[[3489]],[[3490]],[[3491]],[[3492]],[[3493]],[[3494]],[[3495]],[[3496]],[[3497]],[[3498]],[[3499]],[[3500]],[[3501]],[[3502]],[[3503]],[[3504]],[[3505]],[[3506]],[[3507]],[[3508]],[[3509]],[[3510]],[[3511]],[[3512]],[[3513]],[[3514]],[[3515]],[[3516]],[[3517]],[[3518]],[[3519]],[[3520]],[[3521]],[[3522]],[[3523]],[[3524]],[[3525]],[[3526]],[[3527]],[[3528]],[[3529]],[[3530]],[[3531]],[[3532]],[[3533]],[[3534]],[[3535]],[[3536]],[[3537]],[[3538]],[[3539]],[[3540]],[[3541]],[[3542]],[[3543]],[[3544]],[[3545]],[[3546]],[[3547]],[[3548]],[[3549]],[[3550]],[[3551]],[[3552]],[[3553]],[[3554]],[[3555]],[[3556]],[[3557]],[[3558]],[[3559]],[[3560]],[[3561]],[[3562]],[[3563]],[[3564]],[[3565]],[[3566]],[[3567]],[[3568]],[[3569]],[[3570]],[[3571]],[[3572]],[[3573]],[[3574]],[[3575]],[[3576]],[[3577]],[[3578]],[[3579]],[[3580]],[[3581]],[[3582]],[[3583]],[[3584]],[[3585]],[[3586]],[[3587]],[[3588]],[[3589]],[[3590]],[[3591]],[[3592]],[[3593]],[[3594]],[[3595]],[[3596]],[[3597]],[[3598]],[[3599]],[[3600]],[[3601]],[[3602]],[[3603]],[[3604]],[[3605]],[[3606]],[[3607]],[[3608]],[[3609]],[[3610]],[[3611]],[[3612]],[[3613]],[[3614]],[[3615]],[[3616]],[[3617]],[[3618]],[[3619]],[[3620]],[[3621]],[[3622]],[[3623]],[[3624]],[[3625]],[[3626]],[[3627]],[[3628]],[[3629]],[[3630]],[[3631]],[[3632]],[[3633]],[[3634]],[[3635]],[[3636]],[[3637]],[[3638]],[[3639]],[[3640]],[[3641]],[[3642]],[[3643]],[[3644]],[[3645]],[[3646]],[[3647]],[[3648]],[[3649]],[[3650]],[[3651]],[[3652]],[[3653]],[[3654]],[[3655]],[[3656]],[[3657]],[[3658]],[[3659]],[[3660]],[[3661]],[[3662]],[[3663]],[[3664]],[[3665]],[[3666]],[[3667]],[[3668]],[[3669]],[[3670]],[[3671]],[[3672]],[[3673]],[[3674]],[[3675]],[[3676]],[[3677]],[[3678]],[[3679]],[[3680]],[[3681]],[[3682]],[[3683]],[[3684]],[[3685]],[[3686]],[[3687]],[[3688]],[[3689]],[[3690]],[[3691]],[[3692]],[[3693]],[[3694]],[[3695]],[[3696]],[[3697]],[[3698]],[[3699]],[[3700]],[[3701]],[[3702]],[[3703]],[[3704]],[[3705]],[[3706]],[[3707]],[[3708]],[[3709]],[[3710]],[[3711]],[[3712]],[[3713]],[[3714]],[[3715]],[[3716]],[[3717]],[[3718]],[[3719]],[[3720]],[[3721]],[[3722]],[[3723]],[[3724]],[[3725]],[[3726]],[[3727]],[[3728]],[[3729]],[[3730]],[[3731]],[[3732]],[[3733]],[[3734]],[[3735]],[[3736]],[[3737]],[[3738]],[[3739]],[[3740]],[[3741]],[[3742]],[[3743]],[[3744]],[[3745]],[[3746]],[[3747]],[[3748]],[[3749]],[[3750]],[[3751]],[[3752]],[[3753]],[[3754]],[[3755]],[[3756]],[[3757]],[[3758]],[[3759]],[[3760]],[[3761]],[[3762]],[[3763]],[[3764]],[[3765]],[[3766]],[[3767]],[[3768]],[[3769]],[[3770]],[[3771]],[[3772]],[[3773]],[[3774]],[[3775]],[[3776]],[[3777]],[[3778]],[[3779]],[[3780]],[[3781]],[[3782]],[[3783]],[[3784]],[[3785]],[[3786]],[[3787]],[[3788]],[[3789]],[[3790]],[[3791]],[[3792]],[[3793]],[[3794]],[[3795]],[[3796]],[[3797]],[[3798]],[[3799]],[[3800]],[[3801]],[[3802]],[[3803]],[[3804]],[[3805]],[[3806]],[[3807]],[[3808]],[[3809]],[[3810]],[[3811]],[[3812]],[[3813]],[[3814]],[[3815]],[[3816]],[[3817]],[[3818]],[[3819]],[[3820]],[[3821]],[[3822]],[[3823]],[[3824]],[[3825]],[[3826]],[[3827]],[[3828]],[[3829]],[[3830]],[[3831]],[[3832]],[[3833]],[[3834]],[[3835]],[[3836]],[[3837]],[[3838]],[[3839]],[[3840]],[[3841]],[[3842]],[[3843]],[[3844]],[[3845]],[[3846]],[[3847]],[[3848]],[[3849]],[[3850]],[[3851]],[[3852]],[[3853]],[[3854]],[[3855]],[[3856]],[[3857]],[[3858]],[[3859]],[[3860]],[[3861]],[[3862]],[[3863]],[[3864]],[[3865]],[[3866]],[[3867]],[[3868]],[[3869]],[[3870]],[[3871]],[[3872]],[[3873]],[[3874]],[[3875]],[[3876]],[[3877]],[[3878]],[[3879]],[[3880]],[[3881]],[[3882]],[[3883]],[[3884]],[[3885]],[[3886]],[[3887]],[[3888]],[[3889]],[[3890]],[[3892,3893]],[[3894]],[[3895]],[[3896]],[[3897]],[[3898]],[[3899]],[[3900]],[[3901]],[[3902]],[[3903]],[[3904]],[[3905]],[[3906]],[[3907]],[[3908]],[[3909]],[[3910]],[[3911]],[[3912]],[[3913]],[[3914]],[[3915]],[[3916]],[[3917]],[[3918]],[[3919]],[[3920]],[[3921]],[[3922]],[[3923]],[[3924]],[[3925]],[[3926]],[[3927]],[[3928]],[[3929]],[[3930]],[[3931]],[[3932]],[[3933]],[[3934]],[[3935]],[[3936]],[[3937]],[[3938]],[[3939]],[[3940]],[[3941]],[[3942]],[[3943]],[[3944]],[[3945]],[[3946]],[[3947]],[[3948]],[[3949]],[[3950]],[[3951]],[[3952]],[[3953]],[[3954]],[[3955]],[[3956]],[[3957]],[[3958]],[[3959]],[[3960]],[[3961]],[[3962]],[[3963]],[[3964]],[[3965]],[[3966]],[[3967]],[[3968]],[[3969]],[[3970]],[[3971]],[[3972]],[[3973]],[[3974]],[[3975]],[[3976]],[[3977]],[[3978]],[[3979]],[[3980]],[[3981]],[[3982]],[[3983]],[[3984]],[[3985]],[[3986]],[[3987]],[[3988]],[[3989]],[[3990]],[[3991]],[[3992]],[[3993]],[[3994]],[[3995]],[[3996]],[[3997]],[[3998]],[[3999]],[[4000]],[[4001]],[[4002]],[[4003]],[[4004]],[[4005]],[[4006]],[[4007]],[[4008]],[[4009]],[[4010]],[[4011]],[[4012]],[[4013]],[[4014]],[[4015]],[[4016]],[[4017]],[[4018]],[[4019]],[[4020]],[[4021]],[[4022]],[[4023]],[[4024]],[[4025]],[[4026]],[[4027]],[[4028]],[[4029]],[[4030]],[[4031]],[[4032]],[[4033]],[[4034]],[[4035]],[[4036]],[[4037]],[[4038]],[[4039]],[[4040]],[[4041]],[[4042]],[[4043]],[[4044]],[[4045]],[[4046]],[[4047]],[[4048]],[[4049]],[[4050]],[[4051]],[[4052]],[[4053]],[[4054]],[[4055]],[[4056]],[[4057]],[[4058]],[[4059]],[[4060]],[[4061]],[[4062]],[[4063]],[[4064]],[[4065]],[[4066]],[[4067]],[[4068]],[[4069]],[[4070]],[[4071]],[[4072]],[[4073]],[[4074]],[[4075]],[[4076]],[[4077]],[[4078]],[[4079]],[[4080]],[[4081]],[[4082]],[[4083]],[[4084]],[[4085,4086]],[[4087]],[[4088]],[[4089]],[[4090]],[[4091]],[[4092]],[[4093]],[[4094]],[[4095]],[[4096]],[[4097]],[[4098]],[[4099]],[[4100]],[[4101]],[[4102]],[[4103]],[[4104]],[[4105]],[[4106]],[[4107]],[[4108]],[[4109]],[[4110]],[[4111]],[[4112]],[[4113]],[[4114]],[[4115]],[[4116]],[[4117]],[[4118]],[[4119]],[[4120]],[[4121]],[[4122]],[[4123]],[[4124]],[[4125]],[[4126]],[[4127]],[[4128]],[[4129]],[[4130]],[[4131]],[[4132]],[[4133]],[[4134]],[[4135]],[[4136]],[[4137]],[[4138]],[[4139]],[[4140]],[[4141]],[[4142]],[[4143]],[[4144]],[[4145]],[[4146]],[[4147]],[[4148]],[[4149]],[[4150]],[[4151]],[[4152]],[[4153]],[[4154]],[[4155]],[[4156]],[[4157]],[[4158]],[[4159]],[[4160]],[[4161]],[[4162]],[[4163]],[[4164]],[[4165]],[[4166]],[[4167]],[[4168]],[[4169]],[[4170]],[[4171]],[[4172]],[[4173]],[[4174]],[[4175]],[[4176]],[[4177]],[[4178]],[[4179]],[[4180]],[[4181]],[[4182]],[[4183]],[[4184]],[[4185]],[[4186]],[[4187]],[[4188]],[[4189]],[[4190]],[[4191]],[[4192]],[[4193]],[[4194]],[[4195]],[[4196]],[[4197]],[[4198]],[[4199]],[[4200]],[[4201]],[[4202]],[[4203]],[[4204]],[[4205]],[[4206]],[[4207]],[[4208]],[[4209]],[[4210]],[[4211]],[[4212]],[[4213]],[[4214]],[[4215]],[[4216]],[[4217]],[[4218]],[[4219]],[[4220]],[[4221]],[[4222]],[[4223]],[[4224]],[[4225]],[[4226]],[[4227]],[[4228]],[[4229]],[[4230]],[[4231]],[[4232]],[[4233]],[[4234]],[[4235]],[[4236]],[[4237]],[[4238]],[[4239]],[[4240]],[[4241]],[[4242]],[[4243]],[[4244]],[[4245]],[[4246]],[[4247]],[[4248]],[[4249]],[[4250]],[[4251]],[[4252]],[[4253]],[[4254]],[[4255]],[[4256]],[[4257]],[[4258]],[[4259]],[[4260]],[[4261]],[[4262]],[[4263]],[[4264]],[[4265]],[[4266]],[[4267]],[[4268]],[[4269]],[[4270]],[[4271]],[[4272]],[[4273]],[[4274]],[[4275]],[[4276]],[[4277]],[[4278]],[[4279]],[[4280]],[[4281]],[[4282]],[[4283]],[[4284]],[[4285]],[[4286]],[[4287]],[[4288]],[[4289]],[[4290]],[[4291]],[[4292]],[[4293]],[[4294]],[[4295]],[[4296]],[[4297]],[[4298]],[[4299]],[[4300]],[[4301]],[[4302]],[[4303]],[[4304]],[[4305]],[[4306]],[[4307]],[[4308]],[[4309]],[[4310]],[[4311]],[[4312]],[[4313]],[[4314]],[[4315]],[[4316]],[[4317]],[[4318]],[[4319]],[[4320]],[[4321]],[[4322]],[[4323]],[[4324]],[[4325]],[[4326]],[[4327]],[[4328]],[[4329]],[[4330]],[[4331]],[[4332]],[[4333]],[[4334]],[[4335]],[[4336]],[[4337]],[[4338]],[[4339]],[[4340]],[[4341]],[[4342]],[[4343]],[[4344]],[[4345]],[[4346]],[[4347]],[[4348]],[[4349]],[[4350]],[[4351]],[[4352]],[[4353]],[[4354]],[[4355]],[[4356]],[[4357]],[[4358]],[[4359]],[[4360]],[[4361]],[[4362]],[[4363]],[[4364]],[[4365]],[[4366]],[[4367]],[[4368]],[[4369]],[[4370]],[[4371]],[[4372]],[[4373]],[[4374]],[[4375]],[[4376]],[[4377]],[[4378]],[[4379]],[[4380]],[[4381]],[[4382]],[[4383]],[[4384]],[[4385]],[[4386]],[[4387]],[[4388]],[[4389]],[[4390]],[[4391]],[[4392]],[[4393]],[[4394]],[[4395]],[[4396]],[[4397]],[[4398]],[[4399]],[[4400]],[[4401]],[[4402]],[[4403]],[[4404]],[[4405]],[[4406]],[[4407]],[[4408]],[[4409]],[[4410]],[[4411]],[[4412]],[[4413]],[[4414]],[[4415]],[[4416]],[[4417]],[[4418]],[[4419]],[[4420]],[[4421]],[[4422]],[[4423]],[[4424]],[[4425]],[[4426]],[[4427]],[[4428]],[[4429]],[[4430]],[[4431]],[[4432]],[[4433]],[[4434]],[[4435]],[[4436]],[[4437]],[[4438]],[[4439]],[[4440]],[[4441]],[[4442]],[[4443]],[[4444]],[[4445]],[[4446]],[[4447]],[[4448]],[[4449]],[[4450]],[[4451]],[[4452]],[[4453]],[[4454]],[[4455]],[[4456]],[[4457]],[[4458]],[[4459]],[[4460]],[[4461]],[[4462]],[[4463]],[[4464]],[[4465]],[[4466]],[[4467]],[[4468]],[[4469]],[[4470]],[[4471]],[[4472]],[[4473]],[[4474]],[[4475]],[[4476]],[[4477]],[[4478]],[[4479]],[[4480]],[[4481]],[[4482]],[[4483]],[[4484]],[[4485]],[[4486]],[[4487]],[[4488]],[[4489]],[[4490]],[[4491]],[[4492]],[[4493]],[[4494]],[[4495]],[[4496]],[[4497]],[[4498]],[[4499]],[[4500]],[[4501]],[[4502]],[[4503]],[[4504]],[[4505]],[[4506]],[[4507]],[[4508]],[[4509]],[[4510]],[[4511]],[[4512]],[[4513]],[[4514]],[[4515]],[[4516]],[[4517]],[[4518]],[[4519]],[[4520]],[[4521]],[[4522]],[[4523]],[[4524]],[[4525]],[[4526]],[[4527]],[[4528]],[[4529]],[[4530]],[[4531]],[[4532]],[[4533]],[[4534]],[[4535]],[[4536]],[[4537]],[[4538]],[[4539]],[[4540]],[[4541]],[[4542]],[[4543]],[[4544]],[[4545]],[[4546]],[[4547]],[[4548]],[[4549]],[[4550]],[[4551]],[[4552]],[[4553]],[[4554]],[[4555]],[[4556]],[[4557]],[[4558]],[[4559]],[[4560]],[[4561]],[[4562]],[[4563]],[[4564]],[[4565]],[[4566]],[[4567]],[[4568]],[[4569]],[[4570]],[[4571]],[[4572]],[[4573]],[[4574]],[[4575]],[[4576]],[[4577]],[[4578]],[[4579]],[[4580]],[[4581]],[[4582]],[[4583]],[[4584]],[[4585]],[[4586]],[[4587]],[[4588]],[[4589]],[[4590]],[[4591]],[[4592]],[[4593]],[[4594]],[[4595]],[[4596]],[[4597]],[[4598]],[[4599]],[[4600]],[[4601]],[[4602]],[[4603]],[[4604]],[[4605]],[[4606]],[[4607]],[[4608]],[[4609]],[[4610]],[[4611]],[[4612]],[[4613]],[[4614]],[[4615]],[[4616]],[[4617]],[[4618]],[[4619]],[[4620]],[[4621]],[[4622]],[[4623]],[[4624]],[[4625]],[[4626]],[[4627]],[[4628]],[[4629]],[[4630]],[[4631]],[[4632]],[[4633]],[[4634]]]}]}},\"arcs\":[[[82695,52935],[9,-3],[13,0],[19,0],[15,-1]],[[82751,52931],[2,-7],[1,-26],[5,-24],[-9,-14],[-4,-3],[-4,0],[-10,5],[-5,17],[-16,19],[-6,19],[-10,18]],[[84569,45033],[4,1],[14,0],[13,5],[11,8],[18,26],[1,3],[1,5],[2,14],[2,4],[1,1],[18,11],[3,3],[6,15],[10,6],[4,4],[8,4],[8,12],[6,7]],[[84699,45162],[1,-14],[-4,-20],[0,-10],[1,-10],[3,-7],[3,-5],[4,-3],[5,1],[4,3],[7,10],[13,12],[4,7],[0,4],[2,12],[1,3],[2,3],[2,-2],[1,-3],[2,-4],[5,-6],[5,-8],[4,-9],[2,-12],[0,-13],[-4,-37],[0,-6],[1,-6],[1,-3],[0,-3],[-1,-6],[-2,-2],[-7,1],[-3,-1],[-4,-5],[-3,-5],[-2,-3],[-4,0],[-2,2],[-3,8],[-2,3],[-2,1],[-6,1],[-9,-4],[-4,-12],[-1,-17],[1,-21],[2,-10],[2,-7],[6,-12],[6,-8],[2,-4],[0,-4],[0,-9],[0,-4],[6,-21],[2,-9],[2,-36]],[[84738,44852],[-8,-13],[-8,-17],[-4,-24],[-2,-43],[-3,-8],[-26,-36],[-8,-14],[-25,-61],[-3,-21],[-3,-8],[-16,-18],[-10,-16],[-9,-18],[-14,-16],[-5,-13],[-5,-28],[-4,-7],[-3,-10],[-13,-20],[-9,-10],[-11,-4],[-30,2],[-21,-4],[-9,-4],[-3,1],[-5,4],[-3,-1],[-4,-7],[-6,-24],[-3,-5],[-5,-3],[-3,-6],[-1,-8],[-3,-8],[-4,-3],[-24,-8],[-30,-41],[-7,-6],[-3,3],[-3,6],[-6,-1],[-10,-7],[-6,3],[-6,6],[-5,5],[-5,-4],[-7,-6],[-4,2],[-8,15],[-4,2],[-6,1],[-6,-2],[-4,-11],[-2,-4],[-3,-3],[-3,0],[-1,6],[1,6],[4,13],[2,13],[0,11],[0,22],[2,9],[4,10],[9,16],[14,12],[4,6],[2,2],[10,4],[3,2],[23,27],[4,13],[-5,15],[-5,6],[-6,5],[-6,4],[-7,1],[-6,-4],[-9,-15],[-5,3],[-3,9],[0,12],[2,42],[2,9],[11,13],[5,10],[3,11],[1,12],[0,14],[-1,6],[-4,12],[0,8],[0,5],[2,3],[2,2],[1,3],[2,12],[0,54],[2,12],[3,11],[7,11],[9,11],[3,4],[8,24],[2,6],[2,1],[3,1],[3,2],[2,3],[2,7],[2,3],[1,0],[3,-1],[2,1],[9,28],[3,4],[1,4],[13,24],[6,16],[3,7],[5,2],[6,1]],[[84452,44937],[9,-33],[8,-14],[8,-3],[4,4],[5,17],[4,6],[5,4],[3,1],[4,-4],[4,-7],[3,-8],[3,-10],[2,-10],[1,-10],[0,-4],[-1,-11],[0,-3],[1,-8],[0,-1],[1,2],[4,2],[5,1],[5,2],[3,5],[3,8],[0,6],[-1,10],[0,4],[1,5],[3,8],[1,4],[0,18],[2,6],[1,1],[1,0],[3,3],[8,15],[6,15],[1,2],[0,2],[2,6],[1,20],[4,33],[0,12]],[[82657,52933],[-4,-5],[-7,-14],[-3,-3],[-3,1],[-37,27],[0,-3],[1,-6],[1,-3],[2,-4],[2,-2],[2,-2],[1,-6],[-1,-3],[-2,-7],[0,-6],[4,-3],[6,-1],[5,-2],[5,-5],[2,-8],[-2,-8],[0,-6],[3,-2],[3,2],[3,4],[3,2],[3,-2],[26,-55],[4,-6],[9,-4],[5,-4],[3,-7],[-1,-7],[-4,-7],[-6,-2],[-6,4],[-11,15],[-5,4],[-13,2],[0,-4],[8,-2],[7,-7],[7,-11],[5,-10],[4,-4],[4,2],[5,2],[4,2],[2,-2],[8,-11],[2,-6],[14,-30],[1,-7],[1,-5],[-2,-3],[-5,-1],[-16,3],[4,-8],[5,-7],[12,-9],[11,-4],[4,-5],[-1,-11],[-3,-5],[-8,-10],[-3,-6],[-4,-14],[-4,-4],[-27,-6],[-6,3],[-12,11],[-5,2],[-6,6],[-4,12],[-2,14],[-5,16],[0,7],[-1,13],[-1,4],[-3,4],[-6,6],[4,-13],[0,-4],[3,-34],[2,-8],[4,-11],[3,-15],[0,-14],[-4,-11],[-4,1],[-13,12],[-5,3],[-36,-1],[-23,9],[-36,-1],[-9,-8],[-7,-23],[6,9],[8,4],[9,3],[15,0],[9,-3],[4,-8],[-3,-15],[-1,-13],[3,-15],[4,-15],[5,-8],[2,-3],[11,-5],[4,-5],[2,-5],[4,-14],[5,6],[8,1],[9,-2],[6,-5],[2,-1],[2,0],[1,0],[1,-5],[0,-17],[-1,-8],[-1,-7],[-2,-5],[-3,-2],[-3,-3],[-2,-6],[-3,-11],[-2,-4],[-3,-4],[-2,-5],[-1,-6],[-1,-24],[-1,-6],[-4,-8],[-3,1],[-6,11],[-9,7],[-2,1],[-2,-2],[0,-4],[1,-6],[0,-6],[3,-7],[20,-23],[5,-4],[5,-1],[12,0],[6,-2],[1,-7],[-1,-9],[1,-10],[7,-16],[11,-1],[12,2],[11,-5],[4,-5],[1,-4],[0,-4],[2,-5],[1,-7],[-1,-6],[-3,-4],[-3,-2],[-2,-4],[-7,-19],[-3,-5],[4,-3],[6,1],[6,3],[4,5],[5,2],[6,-7],[3,-9],[-1,-5],[-4,-2],[-11,-10],[-5,-3],[-19,-5],[0,-4],[7,0],[20,-8],[27,-4],[-3,-9],[-6,-4],[-7,-4],[-4,-5],[-11,-16],[-2,-7],[4,-8],[11,-8],[12,-3],[10,-5],[9,-16],[2,-9],[1,-12],[2,-39],[1,-11],[3,-10],[3,-8],[11,-21],[4,-12],[27,-51],[3,-6],[3,-13],[2,-5],[5,-26],[3,-10],[2,10],[6,-9],[5,-17],[4,-20],[1,-15],[-3,-10],[-9,-25],[-4,-6],[-19,-10],[-5,-6],[-4,-11],[-1,-12],[-1,-11],[-6,-11],[0,-8],[-9,2],[-15,6],[5,-11],[10,-12],[5,-10],[-11,-7],[-10,-1],[-9,1],[-10,5],[-4,-1],[3,-8],[4,-4],[10,-2],[5,-3],[3,-7],[4,-8],[3,-5],[3,4],[2,0],[0,-25],[-1,-13],[-2,-6],[-2,-4],[0,-7],[2,-6],[2,-4],[3,1],[1,1],[2,-6],[3,-9],[2,-13],[4,-10],[6,-4],[5,-2],[5,-5],[4,-5],[4,-5],[7,1],[3,-1],[1,-5],[0,-8],[-1,-6],[0,-5],[2,-6],[20,-46],[16,-14],[24,-41],[11,-12],[12,-5],[5,-7],[6,-15],[7,-3],[2,-3],[-2,-8],[-4,-7],[-1,-4],[1,-5],[3,-3],[7,0],[3,-3],[0,-4],[1,-15],[1,-5],[2,0],[3,4],[5,-4],[8,-13],[4,-2],[13,-2],[8,-9],[17,-42],[11,-10],[5,-6],[6,-14],[7,-17],[2,-12],[-1,-2],[-2,-1],[-2,-2],[-1,-5],[10,-8],[3,-6],[4,-12],[9,-37],[4,-1],[2,0],[3,1],[1,3],[4,8],[2,1],[5,-1],[15,-11],[4,-6],[1,-6],[0,-7],[-2,-6],[0,-7],[1,-3],[1,-2],[2,-4],[0,-7],[-2,-8],[-9,-16],[-4,-14],[-5,-6],[-21,-20],[-4,-7],[-2,-16],[-4,-7],[-4,-5],[-4,-3],[-4,0],[-3,1],[-3,2],[-6,8],[-7,3],[-3,5],[-5,6],[-7,0],[-6,-4],[-16,-15],[-2,-4],[-3,-2],[-3,2],[-3,4],[-3,2],[-5,2],[-12,10],[-12,1],[-3,-2],[-2,-9],[-2,-4],[-3,-4],[-2,-2],[-5,4],[-3,7],[-3,10],[-4,8],[-4,3],[-36,10],[-16,11],[-9,9],[-8,12],[-7,15],[-4,18],[-7,39],[-4,16],[-4,6],[-11,12],[-2,5],[-1,5],[-3,0],[-3,-3],[-3,-4],[0,-5],[0,-6],[3,-10],[9,-23],[1,-4],[10,-29],[1,-10],[2,-24],[2,-9],[1,-2],[2,-8],[1,-1],[2,-2],[1,-1],[2,-8],[1,-9],[1,-9],[1,-13],[-1,-12],[-3,-6],[-5,-1],[-3,0],[-3,1],[-2,5],[-3,11],[-2,4],[-3,4],[-2,3],[-3,1],[-4,1],[-3,-1],[-2,-3],[-2,-3],[-1,-2],[-10,0],[-5,-3],[-5,-5],[-7,-11],[-12,-31],[-4,-15],[-1,-37],[-2,-9],[-7,-12],[-2,-6],[-1,-6],[-1,-13],[-1,-6],[-16,-37],[-2,-14],[1,-5],[3,-15],[0,-6],[-2,-6],[-3,-4],[-3,-3],[-3,-3],[-5,-11],[-4,-23],[-10,-35],[-1,-6],[0,-3],[1,-3],[2,-5],[0,-12],[-1,-10],[-2,-8],[-6,-13],[-2,-6],[-1,-8],[0,-7],[2,-2],[3,0],[3,-1],[2,-5],[-3,-5],[-6,-4],[-3,-4],[-1,-6],[0,-4],[1,-4],[0,-6],[0,-6],[0,-3],[0,-3],[0,-4],[2,-2],[3,0],[1,-2],[-2,-8],[3,-3],[3,-4],[2,-6],[2,-8],[1,-13],[0,-7],[0,-4],[-1,-2],[-3,-10],[-2,-7],[-3,-6],[-2,-3],[-1,-4],[-4,-22],[-2,-9],[-1,-24],[-1,-12],[-6,-20],[0,-15],[2,-10],[4,-16],[5,-13],[3,-3],[3,1],[0,-10],[-1,-13],[-1,-9],[-6,-14],[-3,-9],[1,-7],[2,-11],[-1,-14],[-3,-12],[-3,-10],[0,-4],[9,9],[34,51],[5,5],[4,-2],[3,-11],[-2,-6],[-4,-6],[-2,-6],[-2,-5],[-9,-6],[-4,-3],[-1,-7],[10,-5],[3,-6],[-1,-23],[-1,-9],[-4,-10],[0,-3],[-1,-1],[-9,-1],[-2,-1],[-2,-3],[0,-4],[5,-3],[5,-2],[3,-4],[-1,-11],[-3,-6],[-4,-5],[-2,-5],[3,-9],[-3,-3],[-3,1],[-8,2],[-4,-2],[-1,-4],[2,-4],[3,-2],[6,-1],[15,-9],[8,-2],[3,-2],[2,-5],[1,-8],[0,-9],[-1,-6],[-2,-3],[-8,-4],[-4,1],[-2,0],[-2,-3],[-4,-7],[-1,-3],[-14,9],[1,-18],[-10,5],[-2,-14],[1,-13],[-2,-7],[-5,-2],[-4,4],[-6,15],[-3,6],[-2,-10],[-3,-14],[-4,-10],[-3,-3],[-1,6],[-1,8],[0,16],[-1,5],[-7,15],[-6,4],[-4,-11],[-2,-18],[-1,-15],[-1,-15],[-5,-9],[-11,-14],[-8,-20],[-28,-83],[-7,-9],[-2,-13],[-1,-15],[-1,-11],[-5,-8],[-6,-8],[-8,-6],[-29,-14],[-6,-1],[-3,3],[-1,8],[1,16],[3,10],[0,5],[-3,3],[-2,-2],[-2,-5],[-2,-9],[-1,8],[0,19],[-2,7],[-11,29],[-1,15],[4,36],[-4,0],[-4,-12],[-2,-16],[-2,-31],[1,-7],[9,-20],[2,-7],[0,-4],[-1,-3],[-1,-6],[-4,-7],[0,-3],[11,-8],[1,-2],[1,0],[1,-1],[1,-3],[0,-3],[0,-3],[-3,-12],[-4,-8],[-1,-6],[2,-27],[-2,-13],[-6,-5],[-6,-2],[-30,-26],[-12,-15],[-8,-21],[0,-26],[2,-9],[2,-6],[2,-7],[1,-12],[-2,-14],[-5,-9],[-6,-7],[-24,-15],[-11,-15],[-13,-7],[-5,-4],[-15,-27],[-2,-8],[-9,-9],[-3,-7],[6,-10],[5,-1],[7,1],[6,3],[3,7],[1,4],[2,3],[6,3],[2,0],[2,-3],[2,-1],[0,1],[2,6],[0,1],[6,1],[6,-1],[5,-6],[2,-12],[-4,-15],[-6,-15],[11,-22],[4,-14],[-4,-30],[3,-37],[-1,-13],[-6,-14],[-3,-6],[-19,-10],[-6,-9],[-7,-12],[-5,-13],[-3,-11],[2,0],[13,14],[9,5],[5,-9],[2,-23],[4,-7],[8,3],[17,17],[5,2],[4,-2],[0,-5],[1,-10],[2,-9],[3,2],[4,5],[4,6],[5,2],[2,-5],[-1,-19],[-8,-82],[-10,-88],[-6,-25],[-10,-4],[-2,8],[-2,12],[-2,12],[-4,5],[-7,1],[-4,-1],[-1,-1],[-3,-5],[-1,-2],[-2,0],[-2,2],[-1,1],[-1,1],[-9,-3],[-3,-1],[-3,-3],[-2,-5],[0,-6],[1,-2],[4,-5],[0,-12],[-7,-24],[4,-4],[8,29],[7,6],[5,-1],[3,-10],[-1,-9],[-6,-26],[-1,-11],[1,-102],[-1,-22],[-4,-20],[-5,-18],[-13,-36],[-6,-11],[-6,-2],[-4,4],[-3,10],[-1,27],[-1,5],[-1,5],[-2,4],[-5,4],[-2,3],[-3,9],[-1,13],[-2,13],[0,12],[-1,5],[-1,0],[-2,-4],[-2,-7],[1,-3],[1,-11],[0,-6],[-2,-13],[-4,-12],[-2,-12],[4,-14],[1,-7],[-2,-6],[-3,-6],[-1,-7],[1,-5],[2,1],[4,4],[8,-3],[2,-7],[0,-9],[3,-12],[4,-8],[17,-26],[4,-10],[-1,-7],[-13,-6],[-11,-9],[-3,3],[-1,-9],[5,-21],[2,-14],[-2,-15],[-4,-5],[-5,-3],[-7,-6],[1,9],[2,6],[2,2],[3,-5],[2,4],[2,5],[1,11],[-4,0],[-9,-7],[-4,-5],[-3,-11],[-4,-25],[-17,-62],[-4,-23],[-3,-53],[-3,-25],[-6,-16],[-5,-3],[-18,0],[-7,-3],[-6,-8],[-11,-22],[-11,-16],[-48,-49],[-75,-61],[-71,-61],[-51,-50],[-45,-59],[-14,-8],[-11,8],[-5,22],[1,26],[6,45],[-5,51],[-2,43],[2,101],[-4,27],[-17,44],[-4,26],[0,26],[8,76],[-6,-6],[-5,-6],[-3,-9],[-4,-62],[-3,-7],[-7,1],[-11,8],[-12,15],[-22,21],[-5,6],[-2,10],[1,11],[2,9],[5,4],[3,6],[6,39],[7,19],[3,8],[1,14],[-11,-22],[-10,-34],[-11,-32],[-17,-13],[-10,2],[-7,6],[-5,12],[-1,20],[5,58],[-1,15],[-2,-5],[-1,-5],[-3,-27],[0,-13],[-1,-3],[-4,-6],[-10,-39],[-18,-17],[-9,-6],[-17,-21],[-20,-15],[-28,-10],[-22,10],[-2,44],[3,24],[2,25],[-1,25],[-6,42],[-2,7],[-5,2],[-24,0],[-6,-2],[-5,-6],[-4,-9],[-2,-13],[-2,-10],[-4,-5],[-16,-4],[-4,2],[-2,7],[0,14],[-2,8],[-2,11],[-4,8],[-4,4],[12,-50],[2,-15],[-15,34],[-4,6],[-8,10],[-4,6],[-3,8],[-2,8],[-2,10],[-2,18],[-2,6],[-5,9],[-7,8],[-8,5],[-8,8],[-18,71],[0,-42],[-1,-9],[-2,-5],[-2,-12],[-3,-6],[-1,0],[-3,1],[-1,-1],[-2,-1],[-2,-5],[-3,-7],[-4,-10],[-2,-12],[2,-11],[3,-8],[2,-3],[3,-4],[3,-1],[6,-1],[3,-2],[0,-3],[-98,-134],[-8,-17],[-6,-4],[-10,5],[-2,-3],[-1,-6],[-2,-4],[-2,-3],[-3,-1],[-6,4],[-37,58],[-12,10],[-13,5],[-27,-9],[-24,-31],[-40,-85],[-12,-20],[-7,-8],[-5,1],[-5,6],[-13,9],[-4,7],[0,13],[6,26],[2,12],[2,37],[0,14],[-8,101],[1,27],[4,50],[-3,25],[-17,66],[-2,23],[0,26],[-1,2],[-2,2],[-2,3],[-1,5],[1,12],[5,16],[0,11],[-4,-5],[-5,-7],[-3,-9],[-1,-9],[1,-27],[1,-8],[-2,-7],[-2,-5],[-3,-3],[-1,-3],[-1,-3],[-1,-3],[-2,-4],[0,-5],[1,-4],[2,-2],[1,-2],[3,-5],[1,-1],[1,-3],[1,-4],[-1,-3],[-3,1],[0,-3],[-12,-8],[-18,-28],[-4,-4],[-5,-2],[-5,4],[-2,9],[-2,11],[-2,8],[-8,14],[-10,7],[-24,4],[-10,-2],[-8,-6],[-66,-74],[-20,-16],[-12,-2],[-10,5],[-23,27],[-5,2],[-10,1],[-5,4],[1,8],[2,10],[3,6],[8,15],[9,9],[10,5],[23,21],[3,0],[-3,13],[-6,-3],[-10,-16],[-5,-4],[-14,-10],[-5,-1],[-5,-5],[-4,-9],[-22,-61],[-10,-11],[-9,16],[-1,7],[2,2],[2,1],[1,5],[-1,6],[-1,14],[-1,12],[-1,14],[-4,24],[-8,20],[-11,5],[-11,-4],[-29,-27],[-29,-46],[-10,-3],[-7,18],[-4,25],[-5,21],[4,11],[5,18],[2,19],[0,17],[-5,26],[-1,24],[-3,19],[0,10],[-3,7],[-10,5],[-3,6],[1,6],[6,13],[1,7],[4,15],[9,-2],[9,0],[5,22],[-10,-12],[-7,4],[-5,14],[-12,43],[-1,10],[0,25],[-4,52],[-3,12],[-3,6],[-4,4],[-2,10],[-1,12],[0,10],[3,26],[4,25],[3,25],[-2,26],[-8,39],[-1,6],[-4,16],[-3,3],[-9,5],[-13,15],[-5,1],[-4,5],[-14,28],[1,2],[3,4],[2,2],[-3,3],[-1,5],[-1,6],[1,6],[3,6],[13,15],[4,3],[3,5],[3,11],[8,39],[1,11],[1,40],[8,75],[0,26],[-2,25],[-5,25],[-4,11],[-5,5],[-7,2],[-6,5],[-5,9],[1,12],[-6,4],[-2,13],[1,16],[3,28],[0,9],[-4,5],[-6,2],[-2,1],[-6,7],[-3,1],[-7,-1],[-3,7],[-4,18],[-7,7],[-3,8],[-4,17],[-5,14],[-2,8],[-1,13],[1,8],[2,6],[3,5],[2,7],[2,8],[-1,2],[-8,-5],[-3,-6],[-1,-9],[-1,-13],[-1,-12],[-3,-8],[-7,-14],[-8,10],[-5,9],[-2,0],[-2,-2],[-3,-1],[-2,5],[-4,32],[-7,10],[-9,9],[-10,6],[-14,4],[-3,-1],[-2,-2],[-2,-6],[0,-4],[2,-4],[1,-6],[-2,-11],[-3,-5],[-4,0],[-5,1],[-11,12],[-2,3],[-2,1],[-10,11],[-3,6],[-8,94],[2,10],[3,6],[4,-1],[6,-9],[4,-6],[19,0],[5,-5],[8,-13],[8,-4],[1,-1],[2,-2],[3,0],[6,4],[3,3],[-1,5],[-3,2],[-7,-2],[-3,2],[-5,16],[-2,5],[-6,8],[-7,6],[-3,1],[-4,1],[-2,2],[0,4],[1,1],[2,3],[-1,2],[-1,4],[-1,2],[0,4],[5,0],[9,-4],[5,0],[0,4],[-7,10],[-7,6],[-8,2],[-19,-1],[-4,-4],[-2,2],[-1,4],[-5,3],[-1,4],[-1,4],[-1,3],[-2,3],[-1,1],[-1,0],[-3,0],[-3,-1],[-2,-2],[-2,0],[-4,5],[-5,12],[-3,7],[-2,10],[-5,53],[-1,24],[0,5],[3,1],[7,-1],[-9,28],[-4,16],[3,13],[0,4],[-3,3],[-4,1],[-2,-2],[0,-10],[-5,6],[-1,9],[1,10],[3,7],[3,3],[4,3],[9,2],[8,-1],[8,-4],[7,-6],[5,-9],[1,0],[-1,9],[-6,13],[-2,7],[-1,7],[1,23],[-1,33],[-2,16],[-5,19],[-1,8],[-1,18],[2,8],[3,0],[7,-6],[28,-8],[-5,10],[-12,18],[-17,29],[-3,3],[-18,78],[-15,26],[-4,3],[-5,2],[-17,3],[-7,8],[-2,15],[3,24],[3,16],[1,9],[0,13],[-2,12],[-7,23],[-1,16],[1,6],[4,13],[1,7],[0,25],[-1,14],[-3,12],[-11,32],[0,5],[2,6],[1,12],[-2,14],[-7,20],[0,13],[2,5],[4,8],[4,8],[4,3],[5,1],[5,5],[3,8],[3,10],[5,25],[0,23],[-15,86],[-1,14],[2,8],[6,4],[11,2],[11,7],[21,17],[10,13],[4,9],[16,42],[3,13],[5,13],[6,9],[0,4],[-7,1],[-4,-9],[-3,-11],[-4,-6],[-4,-6],[-6,-28],[-4,-6],[-1,-4],[-1,-7],[-2,-7],[-3,-3],[-3,-1],[-3,-4],[-5,-7],[-6,-4],[-15,-3],[-7,-5],[1,18],[5,16],[9,27],[4,19],[2,19],[0,68],[3,21],[7,16],[43,64],[6,15],[8,35],[5,15],[5,11],[1,3],[0,1],[1,1],[1,2],[0,4],[-1,2],[-1,0],[-1,0],[-1,-2],[-13,-22],[0,10],[3,7],[4,6],[4,9],[2,10],[0,11],[0,20],[2,20],[5,7],[18,5],[38,20],[5,5],[4,6],[3,8],[8,31],[3,5]],[[80456,51703],[-5,-31],[-7,-28],[-5,-13],[-2,-7],[-11,-19],[-2,-7],[0,-9],[2,-21],[-1,-5],[1,-4],[1,-8],[2,-7],[2,-7],[3,-6],[4,-2],[12,-1],[5,-4],[2,-11],[-2,-47],[0,-27],[2,-11],[3,-12],[5,-15],[25,-45],[2,-6],[0,-17],[2,-1],[5,6],[2,-4],[5,-25],[5,-8],[6,-1],[5,1],[6,0],[5,-5],[3,-10],[5,-35],[4,-12],[3,-7],[10,-10],[5,-10],[6,-23],[6,-9],[6,-5],[16,-4],[5,-6],[4,-12],[6,-25],[14,-43],[1,-14],[1,-12],[3,-2],[3,2],[4,2],[14,-7],[4,-3],[4,-9],[12,-34],[11,-17],[12,-14],[14,-3],[11,12],[3,7],[1,4],[1,2],[3,0],[2,-3],[2,-5],[3,-4],[3,-1],[4,3],[5,11],[3,3],[2,0],[3,-2],[1,0],[6,5],[0,1],[3,4],[1,-1],[3,-5],[2,0],[2,2],[0,5],[0,11],[3,9],[16,28],[7,8],[9,3],[17,1],[62,34],[6,-1],[37,-35],[6,-4],[6,0],[6,2],[11,7],[5,0],[3,-5],[1,-9],[1,-10],[3,-14],[4,4],[6,20],[23,19],[5,1],[5,-1],[7,-4],[14,-13],[8,-5],[17,9],[24,62],[18,12],[22,0],[7,2],[4,4],[2,7],[15,89],[8,37],[1,7],[1,7],[-2,5],[-7,0],[-1,5],[2,15],[5,9],[32,32],[7,5],[17,3],[5,4],[5,8],[4,8],[4,7],[7,3],[83,-9],[7,-5],[2,0],[3,3],[2,5],[2,6],[3,5],[5,4],[4,-1],[5,-4],[5,-2],[14,1],[5,-2],[6,-5],[5,-6],[3,-8],[0,-13],[-2,-14],[-3,-11],[-4,-9],[-9,-14],[-1,-6],[0,-5],[5,0],[10,7],[11,4],[11,-2],[10,-10],[9,-15],[4,-3],[13,-2],[16,-7],[13,-10],[21,-34],[12,-1],[11,10],[6,3],[6,0],[6,-8],[14,-35],[8,-8],[6,3],[45,63],[16,45],[7,11],[5,5],[40,13],[11,1],[10,-7],[3,-5],[3,-7],[2,-6],[4,-2],[3,2],[6,8],[0,1],[42,37],[5,3],[6,-2],[7,-7],[22,-33],[6,-4],[6,3],[5,9],[2,12],[0,13],[-2,12],[0,15],[3,10],[10,16],[4,10],[7,26],[6,31],[3,41],[-1,18],[0,8],[-1,4],[-1,4],[1,7],[2,5],[2,5],[3,5],[3,2],[15,4],[15,13],[4,7],[0,12],[-1,12],[0,10],[1,10],[3,12],[1,8],[0,9],[-2,8],[-2,4],[-7,-2],[-4,-4],[-3,0],[-3,14],[0,5],[0,19],[-1,6],[-3,10],[-1,5],[0,11],[3,32],[4,23],[9,11],[21,6],[8,5],[1,7],[-1,9],[0,13],[2,13],[3,4],[11,-2],[5,7],[12,22],[5,4],[4,6],[11,25],[6,8],[12,2],[6,5],[4,11],[-1,11],[-3,13],[-4,14],[-4,10],[-3,4],[-4,3],[-3,2],[-3,1],[-3,-2],[-6,-6],[-4,0],[-4,9],[1,12],[2,13],[2,12],[-1,6],[-3,12],[-1,5],[2,8],[3,2],[3,1],[3,5],[3,14],[-2,12],[-7,20],[-2,8],[1,2],[2,2],[4,7],[2,7],[1,6],[1,6],[1,7],[4,13],[4,9],[16,23],[3,8],[5,21],[5,15],[4,-2],[7,-23],[8,-8],[8,3],[19,17],[11,3],[5,4],[2,11],[1,25],[2,11],[9,27],[0,5],[-5,3],[-4,11],[0,11],[9,89],[5,27],[6,13],[3,-1],[3,-2],[2,-2],[3,3],[2,5],[-1,7],[-2,12],[-4,17],[-1,8],[0,6],[0,12],[0,6],[-7,36],[-1,14],[0,23],[2,24],[10,69],[0,19],[-4,9],[-5,7],[-5,8],[0,14],[2,4],[10,11],[3,7],[5,23],[3,25],[4,53],[1,10],[2,14],[3,5],[5,4],[2,3],[2,6],[12,23],[2,-2],[2,-5],[3,-3],[4,2],[1,6],[1,8],[11,19],[1,18],[0,19],[2,19],[4,8],[3,1],[3,-5],[1,-9],[3,-9],[5,-3],[12,-2],[7,-5],[3,-4],[2,-4],[1,-10],[2,-9],[3,-8],[4,-3],[4,4],[13,28],[5,7],[3,5],[2,7],[2,13],[3,-4],[3,-1],[7,0],[12,-8],[4,-1],[8,5],[8,9],[7,3],[7,-16],[2,0],[2,0],[2,-1],[1,-3],[1,-7],[7,-26],[3,-3],[3,-1],[3,2],[6,15],[3,0],[4,-3],[4,3],[3,5],[-1,4],[-1,4],[0,6],[2,9],[6,12],[1,8],[4,-1],[12,-38],[3,0],[7,7],[8,-6],[5,1],[5,3],[9,16],[5,-2],[10,-15],[11,-5],[22,9],[11,0],[16,-9],[51,2],[3,3],[4,9],[3,1],[4,-1],[3,-4],[1,-6],[2,-6],[11,-15],[22,-25],[16,-35],[6,-9],[8,-4],[10,-3],[4,-1],[8,1],[4,-3],[3,-5]],[[89159,48930],[0,-19],[0,-104],[-1,-115],[0,-147],[0,-196],[0,-130],[1,-120],[0,-101],[0,-250],[0,-105],[0,-128],[0,-6],[0,-2],[0,-115],[0,-75],[0,-24],[0,-152],[0,-110],[0,-116],[0,-134],[0,-63],[-1,-1],[-2,-7],[-2,-12],[-1,-1],[0,-2],[0,-3],[3,-5],[1,-4],[-1,-6],[-3,-4],[-1,-5],[1,-7],[-3,0],[-3,0],[-3,-2],[-3,-2],[3,-1],[2,-3],[1,-5],[0,-8],[4,1],[2,-9],[-1,-11],[-2,-5],[-4,-1],[-2,-4],[-1,-7],[0,-15],[-1,-3],[-1,-2],[-3,0],[-2,-2],[1,-5],[2,-5],[0,-5],[-4,-6],[-4,-2],[-4,-3],[-3,-9],[4,-4],[0,-11],[-2,-20],[-1,-7],[-1,-5],[0,-6],[2,-6],[6,-11],[2,-7],[-1,-4],[-2,-8],[-1,-3],[1,-6],[2,-5],[5,-9],[2,-9],[0,-13],[2,-8],[7,4],[1,-19],[5,-5],[4,0],[0,-64],[0,-90],[0,-74],[0,-25],[0,-156],[0,-110],[0,-112],[0,-23],[0,-100],[0,-157],[1,-104],[0,-111],[-1,-114],[0,-68]],[[89159,45077],[-12,15],[-3,1],[-18,18],[-65,143],[-32,100],[-15,31],[-2,5],[-19,33],[-3,8],[-1,10],[-3,2],[-14,12],[-10,22],[-4,13],[-61,96],[-12,32],[-4,16],[-1,14],[2,12],[5,10],[7,9],[4,2],[3,0],[3,2],[1,10],[1,21],[-2,20],[-1,15],[2,14],[6,9],[8,-8],[5,6],[6,30],[-4,-4],[-5,-14],[-5,-2],[-7,-1],[-4,-2],[-2,-7],[-2,-26],[-1,-39],[-3,-8],[-5,-9],[-11,-13],[-12,-7],[-45,-1],[-39,-9],[-8,-6],[-15,-18],[-9,-8],[-22,-11],[-11,-2],[-11,1],[-10,5],[-10,11],[-8,15],[-4,21],[0,6],[1,6],[1,7],[1,4],[0,3],[-1,11],[-1,20],[-1,7],[-6,14],[4,3],[5,-4],[5,-3],[5,8],[-12,9],[-7,4],[-4,-7],[1,-7],[1,-12],[0,-6],[1,-1],[3,-1],[1,-2],[1,-4],[-1,-3],[-1,-3],[0,-27],[-7,-13],[-22,-13],[-9,-9],[-32,-57],[-3,-9],[-1,-12],[-1,-3],[-1,-7],[-3,-5],[-2,-3],[-4,0],[-2,2],[-10,43],[-7,21],[-2,13],[-2,14],[2,12],[4,10],[12,5],[5,8],[1,5],[0,6],[-1,5],[-4,5],[0,8],[1,13],[0,51],[2,11],[3,6],[11,5],[8,12],[2,17],[1,48],[8,38],[3,9],[1,5],[1,20],[2,6],[2,6],[4,4],[2,6],[1,22],[-6,16],[-10,10],[-10,4],[-11,1],[-4,6],[-3,28],[-2,13],[-11,39],[-6,15],[-7,13],[-21,29],[-4,5],[-1,4],[-2,4],[-3,2],[-6,1],[-2,1],[-3,2],[-3,6],[-3,8],[0,7],[6,3],[60,-4],[11,-4],[5,-5],[8,-13],[3,-2],[43,-2],[5,4],[4,13],[3,15],[4,13],[7,5],[0,5],[-5,4],[-5,-4],[-6,-15],[-4,-12],[-2,-4],[-4,-2],[-12,0],[-12,-4],[-6,1],[-5,10],[-15,18],[-6,4],[-6,3],[-18,2],[-5,2],[-7,9],[-15,10],[-2,4],[-2,5],[-28,58],[-21,34],[-3,14],[6,17],[4,5],[5,3],[11,0],[6,-2],[11,-10],[7,0],[5,6],[7,15],[4,3],[24,4],[9,5],[4,-1],[3,-1],[5,-6],[3,-1],[5,-5],[8,-26],[6,-5],[8,-15],[1,-4],[3,-2],[6,-4],[4,-5],[2,-2],[4,-1],[12,1],[3,-1],[-4,8],[-6,3],[-7,1],[-3,2],[-2,5],[-13,14],[-19,38],[-9,10],[-12,6],[-19,4],[-5,3],[-4,5],[-15,29],[-6,10],[-13,7],[-5,8],[-3,12],[0,14],[3,15],[6,0],[11,-11],[5,-4],[19,-21],[-34,45],[-8,16],[-13,35],[-3,6],[-5,4],[-38,74],[-13,50],[-2,16],[-5,22],[-1,12],[0,28],[0,9],[-5,28],[-1,10],[-1,9],[-5,12],[-1,8],[-1,9],[-18,57],[-4,19],[3,16],[9,11],[20,8],[8,12],[-5,-1],[-12,-7],[-6,-1],[-32,15],[-7,9],[-1,3],[-1,5],[-1,6],[-4,7],[26,33],[16,14],[15,10],[-5,5],[-7,-1],[-12,-4],[-6,-1],[-6,-2],[-5,-5],[-12,-15],[-5,-4],[-13,-1],[-6,-9],[0,1],[-1,3],[-3,3],[0,5],[0,7],[-1,6],[-3,24],[-1,27],[1,13],[1,9],[3,6],[3,6],[3,3],[3,1],[1,2],[1,6],[-1,2],[-6,5],[-2,1],[-4,6],[0,13],[3,26],[0,15],[-1,6],[-3,3],[0,-9],[-2,-7],[-3,-3],[-4,3],[2,-14],[0,-12],[-2,-6],[-8,4],[-3,5],[-8,23],[-12,26],[-2,15],[5,20],[-6,3],[-14,-23],[-9,0],[-2,2],[-2,4],[-7,20],[-1,2],[1,10],[5,16],[2,11],[-10,-12],[-6,-3],[-5,3],[-5,10],[-2,20],[-4,6],[-3,0],[-2,-3],[-3,-2],[-5,5],[-8,4],[-5,5],[-5,9],[-2,9],[6,6],[0,4],[-4,4],[-2,13],[-3,3],[-2,-3],[-4,-14],[-2,-3],[-4,1],[-3,3],[-5,12],[-2,3],[-3,1],[-1,3],[-1,9],[-9,-5],[-8,4],[-7,9],[-7,12],[3,4],[1,5],[0,6],[0,6],[-1,0],[-4,-8],[-4,5],[-8,19],[1,-13],[-3,-3],[-7,4],[-2,3],[0,9],[4,35],[-1,2],[-13,-19],[-2,-8],[2,-10],[-3,-8],[-14,13],[-5,10],[-1,17],[-9,-20],[-7,11],[-1,10],[2,13],[2,19],[-2,0],[-6,-20],[-9,-12],[-10,-1],[-14,13],[-2,3],[-1,5],[2,6],[3,5],[3,4],[2,3],[-3,6],[-6,-4],[-20,-26],[-6,-5],[-6,-2],[-3,2],[-3,5],[-2,6],[-1,6],[1,10],[-1,2],[-4,2],[-6,1],[-3,-3],[-3,-1],[-13,20],[-19,15],[-25,29],[-20,22],[-7,12],[-2,2],[-5,0],[-3,3],[-8,14],[-5,4],[-25,0],[-25,16],[-8,14],[-1,2],[-6,2],[-4,4],[-4,6],[-4,4],[-5,3],[-3,0],[-4,3],[-6,8],[-12,31],[-6,8],[-10,5],[-24,0],[-10,7],[-4,-5],[-7,-2],[-8,1],[-4,4],[-3,1],[-12,1],[-11,7],[-3,3],[-5,5],[-33,9],[-7,3],[-4,6],[-4,-4],[-15,-4],[-8,2],[-16,-11],[-13,-1],[-11,7],[-63,77],[-5,8],[-2,9],[-2,9],[-6,6],[-7,5],[-5,2],[-11,-4],[-1,0],[-3,3],[-5,9],[-14,21],[-2,4],[-1,6],[-1,22],[-1,4],[-4,3],[-7,1],[-7,2],[-3,8],[2,12],[9,15],[3,12],[-1,5],[-4,7],[-1,4],[0,6],[1,33],[3,8],[4,4],[5,2],[5,-1],[12,-6],[22,-2],[5,-3],[7,-11],[3,-2],[3,2],[2,2],[2,3],[1,2],[6,7],[1,3],[-1,6],[-2,-1],[-2,-5],[-3,-2],[-3,1],[-2,3],[-1,3],[1,1],[-1,1],[0,3],[0,2],[-1,2],[-2,1],[-2,-2],[-2,-2],[-2,-1],[-12,0],[-21,7],[-21,2],[-2,1],[-3,3],[-2,-3],[-1,-6],[-1,-4],[-8,-9],[-3,-5],[-2,-8],[-1,-12],[-2,-8],[-5,-4],[-15,-8],[-2,-3],[-4,6],[-7,15],[-6,7],[4,11],[-3,10],[-5,10],[-3,8],[-2,3],[-4,2],[-7,1],[-4,3],[-12,17],[5,-17],[2,-16],[-3,-11],[-12,0],[0,-4],[4,-4],[3,-6],[2,-8],[1,-9],[-4,-14],[-3,0],[-2,3],[-1,3],[-1,2],[-2,4],[-3,8],[-3,9],[-5,4],[-5,1],[-7,4],[-6,7],[-2,10],[0,6],[-2,10],[0,4],[-1,3],[-3,-3],[-4,-4],[-1,-2],[-2,8],[2,9],[12,19],[2,4],[-1,6],[-5,22],[-3,10],[-4,8],[-5,8],[-2,-5],[1,-5],[0,-4],[1,-7],[-1,-11],[-1,-4],[-3,-7],[-5,-4],[-5,7],[-5,8],[-5,3],[-4,-7],[-7,-24],[-3,-5],[-5,2],[-3,8],[-13,64],[-5,16],[-12,29],[-2,9],[-1,12],[0,12],[-1,4],[-2,2],[-2,-1],[-3,-4],[-2,-4],[-1,-4],[-1,-13],[2,-13],[3,-13],[2,-17],[2,-6],[0,-4],[-4,-2],[-1,2],[-3,18],[-3,6],[-3,7],[-4,5],[-5,2],[-4,-4],[-4,-5],[-4,0],[-2,14],[3,11],[1,5],[-1,7],[-2,11],[-3,16],[-11,35],[-2,13],[0,13],[3,10],[7,4],[5,6],[2,14],[-1,15],[-5,43],[0,43],[2,10],[6,-9],[1,4],[0,5],[1,13],[1,7],[4,-1],[6,-4],[4,9],[3,26],[5,6],[6,4],[7,16],[5,4],[5,-6],[4,-13],[4,-8],[5,7],[-2,2],[-1,3],[-1,4],[0,5],[-1,5],[-2,2],[-3,2],[-2,1],[-2,5],[-3,6],[-1,8],[-1,10],[0,10],[4,17],[1,9],[0,7],[-2,7],[-1,6],[-2,5],[-5,-3],[-5,-1],[-2,-3],[3,-12],[0,-3],[-4,-14],[-2,-16],[-2,-5],[-18,-20],[-4,-7],[-9,-17],[-6,-17],[-3,-40],[2,-102],[-10,-32],[-4,-4],[-15,-7],[-2,1],[-2,5],[-5,22],[-1,3],[-3,2],[0,-4],[2,-11],[0,-16],[-2,-5],[-6,1],[0,-4],[6,-7],[11,-8],[5,-7],[3,-11],[3,-13],[0,-14],[-2,-13],[-2,-8],[-5,-9],[-5,-8],[-6,-3],[-4,-5],[-27,-59],[-3,-20],[3,-26],[9,-16],[4,-12],[0,-10],[-3,-5],[-7,-4],[-2,-4],[-2,-6],[-5,-16],[-33,-76],[-5,-9],[-11,-7],[-13,2],[-23,9],[-8,0],[-5,-6],[-7,-20],[-5,-6],[-6,1],[-14,13],[-2,0],[-1,2],[-2,4],[-1,7],[0,12],[-2,7],[-2,5],[-6,7],[-3,4],[-3,7],[-2,13],[-2,7],[-2,4],[-3,4],[-3,6],[-1,8],[1,5],[3,-2],[5,-9],[0,6],[0,6],[-6,35],[-4,8],[-1,4],[0,20],[0,6],[-15,66],[-1,20],[8,12],[11,-3],[13,-8],[11,2],[2,5],[0,5],[0,5],[-1,5],[1,9],[2,5],[4,9],[4,6],[2,4],[-2,6],[-3,5],[-2,3],[-2,4],[-2,7],[-4,22],[-2,2],[-6,0],[-5,6],[-3,14],[-2,28],[-1,14],[2,37],[-2,13],[-5,6],[-5,1],[-9,-4],[-2,-2],[-2,-3],[0,-8],[3,-13],[-2,-6],[-5,-5],[-6,1],[-6,5],[-4,9],[-2,5],[-4,20],[-2,5],[-7,13],[0,6],[4,4],[4,6],[-1,10],[-2,3],[-7,8],[-1,1],[-3,4],[-2,17],[-1,4],[-2,3],[-1,7],[-2,7],[-3,3],[-2,2],[-5,12],[-2,2],[-3,2],[-3,5],[-1,5],[-2,4],[-31,37],[-7,4],[1,12],[-5,7],[-13,6],[-3,0],[-9,0],[-4,1],[-3,3],[-3,4],[-3,3],[-1,-11],[-4,-6],[-5,0],[-3,6],[-3,-3],[-2,-1],[-2,1],[-3,3],[2,-11],[-3,-3],[-7,1],[-1,4],[-4,20],[-5,-5],[-12,6],[-4,-8],[-2,0],[1,9],[2,4],[2,2],[3,5],[2,6],[2,4],[1,14],[-5,1],[-4,3],[0,4],[4,3],[5,4],[4,7],[2,8],[-2,6],[-7,2],[-13,-1],[-2,2],[4,7],[11,11],[4,0],[5,-2],[4,2],[2,8],[2,-6],[2,-2],[1,4],[-1,8],[2,2],[12,-2],[7,3],[7,5],[-6,5],[-13,-2],[0,9],[3,4],[11,9],[5,0],[4,3],[2,1],[30,0],[4,-2],[12,-11],[4,-1],[9,1],[-2,0],[2,1],[4,-1],[-1,-7],[1,-7],[1,-6],[-3,-8],[4,0],[7,7],[4,1],[0,4],[-2,10],[4,5],[6,1],[4,-2],[2,-6],[5,-1],[6,-1],[5,-2],[10,-14],[16,-36],[11,-7],[3,1],[2,2],[6,8],[2,6],[4,4],[16,25],[5,11],[14,43],[7,11],[6,28],[16,39],[2,11],[5,9],[22,22],[7,4],[2,1],[2,1],[2,2],[1,2],[3,2],[2,-1],[2,-2],[2,-1],[5,2],[7,5],[5,1],[15,-16],[2,-8],[1,-21],[1,-8],[4,5],[4,0],[4,-3],[3,-6],[3,-9],[0,-7],[-1,-16],[0,-51],[-2,-14],[7,0],[1,10],[-2,26],[1,14],[2,15],[7,37],[2,5],[3,-2],[1,-5],[-1,-23],[2,-29],[-1,-14],[-2,-14],[4,3],[2,12],[1,27],[-1,8],[-1,7],[0,8],[1,6],[3,3],[2,-4],[2,-6],[3,-10],[1,-13],[2,-10],[5,2],[0,2],[0,8],[1,3],[2,2],[3,0],[2,0],[5,5],[3,4],[3,8],[2,-5],[2,-1],[2,2],[2,0],[2,-2],[7,-12],[2,-7],[0,-8],[0,-36],[-1,-6],[-1,-7],[4,-28],[3,8],[0,8],[-1,9],[0,12],[1,11],[4,23],[1,12],[0,34],[1,5],[6,-3],[3,-7],[5,-22],[6,-19],[4,-26],[3,-7],[1,3],[1,9],[0,13],[3,37],[-2,6],[0,2],[-4,9],[-1,1],[0,7],[0,6],[1,6],[3,6],[-5,4],[-9,-1],[-5,5],[-3,10],[2,5],[5,1],[5,0],[12,6],[7,1],[3,-5],[1,-6],[8,-14],[2,-6],[2,0],[-3,11],[-6,15],[-3,13],[5,5],[20,-4],[9,2],[5,10],[-16,-1],[-8,2],[-6,6],[-1,8],[14,12],[5,10],[-7,-1],[-12,-7],[-7,-1],[0,4],[12,9],[6,6],[4,10],[2,12],[1,15],[0,15],[-3,11],[-2,-31],[-3,-11],[-6,9],[-2,0],[-8,-14],[-5,-7],[-4,-3],[-5,3],[-4,14],[-3,3],[-1,3],[2,7],[3,7],[10,5],[4,6],[4,8],[1,9],[6,-5],[4,4],[4,8],[5,5],[-1,4],[-4,-4],[-5,-4],[-4,0],[-1,8],[2,2],[6,4],[2,2],[1,4],[0,10],[2,4],[0,7],[-5,1],[-7,-1],[-4,-3],[-1,1],[-3,1],[-3,1],[-1,-3],[-4,-14],[-2,-4],[-2,-2],[-5,-1],[-2,-1],[-8,-10],[-2,-2],[-11,-1],[-4,-3],[-2,-10],[-2,-3],[-5,-4],[-5,-5],[-2,-9],[0,-3],[-2,-2],[-2,2],[-2,3],[-2,2],[-3,-2],[-6,-5],[1,25],[-1,7],[-4,-22],[-4,-11],[-4,-4],[-4,4],[-4,17],[-4,4],[0,-5],[3,-9],[-5,-2],[-6,-1],[-9,-4],[-10,10],[-6,3],[-13,-4],[-6,0],[-4,5],[-2,6],[-6,-1],[-12,-6],[-11,1],[-6,-1],[-10,-13],[-6,-3],[-13,-1],[-13,-6],[-11,-10],[-10,-7],[-12,3],[-17,18],[-7,2],[-6,-2],[-6,-7],[-20,-27],[-3,-1],[-2,3],[-2,4],[-1,4],[-3,2],[-6,5],[-3,12],[-2,15],[-2,12],[-3,6],[-5,6],[-7,3],[-5,-4],[-5,-7],[-19,-7],[-19,-24],[-11,-8],[-11,3],[-7,9],[-5,13],[-3,14],[-5,13],[-6,10],[-39,36],[-7,13],[-1,14],[2,4],[8,9],[2,5],[1,8],[3,5],[7,5],[-8,-1],[-12,-9],[-8,-2],[-6,21],[-6,6],[-3,5],[-1,7],[1,6],[1,6],[0,7],[-1,5],[-2,2],[-2,1],[-2,2],[-2,5],[-1,7],[1,20],[-1,7],[0,6],[-3,13],[6,7],[4,9],[3,11],[4,9],[5,8],[3,6],[1,9],[-1,14],[0,-1],[0,-1],[1,1],[0,5],[-6,-1],[-9,-11],[-11,-6],[-3,0],[-2,2],[-3,8],[0,3],[2,4],[0,3],[-2,3],[-1,3],[-2,3],[-1,3],[2,25],[1,5],[4,7],[1,4],[2,2],[8,4],[1,2],[6,13],[2,5],[-5,0],[-16,-16],[-8,-4],[3,10],[-2,3],[-3,-1],[-3,-4],[-11,-23],[-4,-5],[-2,15],[2,19],[1,17],[-5,14],[-1,-17],[-1,-13],[-4,-9],[-6,-6],[-7,1],[-4,9],[-1,13],[5,10],[-5,4],[-6,-2],[-5,-5],[-5,-2],[-5,3],[-5,6],[-6,14],[-5,4],[-6,2],[-8,0],[-2,1],[-2,2],[-2,1],[-3,0],[-3,-2],[-3,-3],[-1,-5],[1,-6],[-3,-3],[-3,-1],[-3,1],[-2,3],[-6,16],[-2,2],[-1,3],[-2,3],[0,3],[2,7],[2,7],[-2,8],[-3,7],[-3,5],[-9,-6],[-5,2],[-13,16],[-1,-11],[5,-10],[12,-18],[1,-8],[-4,-9],[-5,-9],[-4,-4],[-9,-4],[-9,-11],[-6,-5],[-2,2],[-1,15],[-2,6],[-3,5],[-3,4],[-11,10],[-11,1],[-23,-3],[-7,2],[-5,4],[-3,8],[0,12],[1,5],[9,8],[4,7],[1,4],[7,44],[0,8],[0,5],[3,2],[1,3],[4,12],[5,6],[22,7],[7,5],[2,6],[4,26],[8,22],[2,5],[1,7],[4,15],[1,10],[-2,21],[1,8],[4,6],[-1,10],[1,22],[-2,12],[2,2],[6,7],[-11,25],[-5,15],[3,16],[24,16],[12,3],[4,3],[3,10],[8,4],[3,3],[3,2],[11,2],[2,4],[2,4],[4,1],[4,-1],[3,-2],[-6,-15],[-1,-7],[0,-6],[4,1],[6,4],[5,4],[2,5],[3,3],[53,22],[23,16],[3,1],[3,5],[6,28],[12,27],[8,13],[7,9],[14,10],[4,2],[2,5],[4,24],[2,7],[15,21],[4,2],[9,10],[11,8],[9,10],[5,2],[7,1],[23,15],[11,4],[67,-13],[9,5],[54,-55],[6,-2],[3,2],[6,7],[5,-2],[1,-4],[0,-5],[1,-6],[4,-6],[10,-10],[4,-6],[2,-2],[4,0],[6,0],[1,-2],[3,-8],[2,-2],[3,-1],[6,1],[3,0],[37,-58],[7,-15],[3,-14],[3,-7],[12,-16],[3,-4],[47,-12],[1,-1],[1,-1],[2,-2],[2,0],[1,8],[2,3],[2,3],[2,1],[3,-5],[4,-5],[7,-3],[25,-2],[3,3],[-2,9],[3,6],[4,2],[4,-1],[4,-3],[2,-2],[5,-10],[2,1],[4,2],[16,5],[11,-1],[4,2],[4,3],[5,-6],[17,-36],[3,-5],[6,-3],[3,-3],[3,-4],[4,-11],[3,-5],[8,-7],[2,-3],[0,-7],[-6,-4],[-17,-4],[-4,-3],[-2,-8],[0,-14],[-2,-10],[-4,-2],[-3,-4],[12,-52],[3,-10],[2,-5],[1,-13],[1,-6],[3,-7],[4,-19],[4,-11],[5,-10],[5,-8],[4,-4],[3,-5],[18,-70],[4,-12],[-12,-39],[-3,-12],[0,-24],[-2,-40],[-2,-9],[-2,-8],[-15,-33],[-4,-5],[-4,-9],[-2,-2],[-3,-1],[-3,-3],[-2,-5],[0,-7],[0,-8],[4,-24],[12,-120],[1,-45],[0,-6],[0,-2],[1,-3],[1,-3],[-1,-4],[-1,-1],[-2,1],[-1,0],[-1,-2],[-4,-38],[0,-13],[1,-6],[5,-5],[2,-5],[1,-8],[-1,-5],[0,-6],[0,-7],[0,-13],[4,-19],[1,-11],[-1,-13],[-1,-5],[1,-7],[4,-9],[1,-5],[1,-10],[2,-10],[3,-10],[4,-8],[11,-19],[4,-14],[3,-9],[5,-7],[3,-4],[2,-4],[3,-10],[2,-12],[2,-20],[5,-25],[0,-10],[5,-11],[3,-16],[3,-38],[2,-6],[3,-6],[3,-8],[3,-17],[6,-28],[0,-4],[7,0],[5,5],[7,11],[-1,7],[-2,26],[-2,5],[-3,12],[-1,7],[0,8],[0,16],[0,9],[-1,7],[-4,15],[-1,6],[-1,17],[0,15],[1,14],[2,11],[3,13],[4,6],[12,9],[-3,3],[-2,5],[0,5],[3,4],[3,-1],[6,-9],[2,-3],[5,-2],[5,-6],[5,-7],[2,-9],[3,-22],[3,-156],[0,-7],[9,-71],[7,-17],[13,5],[15,38],[7,8],[3,-23],[-3,-38],[-1,-9],[-2,-3],[-1,-1],[-2,-3],[-1,-5],[-1,-7],[1,-20],[-3,-22],[1,-9],[9,-7],[3,-8],[1,-25],[1,-3],[1,-2],[0,-3],[1,-8],[-1,0],[2,-7],[1,-4],[4,-8],[4,-3],[5,4],[9,14],[0,-7],[-2,-12],[0,-6],[1,-3],[4,-9],[3,-17],[5,-4],[12,1],[6,-2],[8,-12],[4,-2],[46,-4],[5,-2],[8,-9],[5,-2],[6,2],[11,9],[19,5],[5,4],[5,5],[4,7],[12,27],[1,5],[1,7],[1,7],[-1,6],[0,4],[8,22],[11,16],[22,17],[9,12],[4,12],[-1,5],[-3,5],[-2,8],[1,5],[1,4],[1,4],[3,2],[0,1],[1,2],[2,0],[6,-4],[5,7],[7,18],[13,7],[6,8],[4,12],[3,14],[0,9],[-3,22],[1,7],[7,16],[2,8],[1,10],[0,27],[1,3],[7,11],[2,4],[3,-1],[3,23],[4,6],[3,1],[2,2],[3,3],[1,5],[1,4],[3,3],[7,3],[25,22],[11,17],[8,21],[3,12],[1,12],[2,42],[2,10],[2,7],[9,22],[2,9],[2,10],[-1,7],[-1,12],[-1,18],[1,3],[2,7],[3,12],[6,11],[6,8],[7,5],[15,0],[3,3],[8,9],[3,1],[1,-6],[-1,-8],[0,-8],[3,-3],[7,-1],[7,-2],[2,-8],[1,-1],[2,1],[4,2],[2,1],[3,-1],[11,-7],[6,13],[3,-1],[6,-6],[3,-2],[3,2],[2,4],[1,4],[2,2],[8,3],[2,2],[15,21],[16,7],[4,2],[1,5],[1,7],[1,6],[9,9],[11,5],[37,4],[6,3],[5,6],[9,13],[2,8],[-3,13],[-6,12],[-3,9],[1,3],[3,4],[1,8],[0,9],[-1,8],[-3,3],[-8,6],[-3,3],[-15,24],[3,8],[1,12],[0,27],[2,7],[5,6],[58,46],[32,40],[6,6],[1,2],[2,5],[3,10],[2,2],[5,1],[72,68],[13,7],[12,1],[12,-8],[2,-5],[6,-15],[3,-3],[5,-11],[1,-3],[4,-1],[3,-2],[12,-28],[5,-7],[12,-4],[31,-19],[36,-36],[47,-29],[19,-6],[7,-5],[12,-7],[20,-32],[19,-46],[11,-17],[5,-4],[18,0],[6,-2],[44,-31],[49,-65],[28,-20],[15,-18],[5,-2],[3,-3],[13,-22],[46,-36],[28,-37],[12,-7],[11,-3],[54,10],[8,7],[3,12],[2,2],[5,-4],[6,-9],[2,2],[0,9],[2,1],[2,-2],[1,-4],[0,-5],[1,-5],[10,-32],[5,-2],[17,-15],[6,-9],[6,-6],[5,8],[3,-4],[3,1],[2,4],[2,7],[-1,6],[-4,4],[-1,4],[4,6],[3,-1],[26,-21],[5,-2],[30,-2],[34,-31],[4,-4],[0,-11],[-1,-19],[-2,-9],[-10,-26],[2,-5],[2,-6],[3,-4],[3,-1],[2,5],[0,6],[0,7],[3,2],[1,-1],[5,-9],[3,-2],[3,1],[6,5],[3,2],[26,0],[12,4],[3,1]],[[81498,45467],[3,-3],[2,-9],[0,-8],[-1,-3],[-4,-1],[-7,-4],[-22,0],[-3,4],[-1,9],[1,9],[4,6],[-1,5],[-1,4],[14,-7],[16,-2]],[[84206,45480],[7,-3],[3,-8],[-1,-10],[-4,-8],[-11,-7],[-24,-3],[-8,-10],[-15,-46],[-6,-11],[-5,-2],[-3,2],[-6,13],[8,40],[25,39],[2,1],[3,-2],[3,-1],[4,1],[8,7],[4,0],[5,-1],[3,1],[2,2],[5,5],[1,1]],[[85619,45583],[2,-7],[-2,-6],[-3,-3],[-4,-2],[-7,-2],[-8,0],[-8,3],[-5,3],[-2,3],[-3,4],[-1,5],[1,6],[2,7],[1,7],[2,5],[3,3],[6,-5],[8,3],[7,6],[6,1],[2,-6],[2,-18],[1,-7]],[[85841,45609],[2,-8],[-1,-9],[-2,-9],[-3,-6],[-3,-1],[-3,1],[-4,4],[-4,6],[-5,5],[-2,-3],[-3,-5],[-4,-3],[-8,6],[-10,13],[-5,14],[7,8],[9,5],[26,-5],[2,-2],[11,-11]],[[85483,45638],[5,-9],[3,-12],[-1,-11],[-6,-5],[-6,-2],[-10,-8],[-5,-2],[-6,3],[-8,14],[-4,3],[22,31],[5,2],[6,-1],[5,-3]],[[82684,45644],[2,-3],[3,-3],[2,-4],[1,-6],[0,-5],[-2,-3],[-5,-6],[-8,-15],[-5,-17],[-15,-66],[-4,-8],[-6,-4],[-2,2],[-9,12],[-2,7],[0,4],[3,8],[4,20],[0,9],[-3,9],[-3,5],[-1,1],[-1,3],[0,24],[0,8],[1,8],[2,4],[15,16],[5,2],[28,-2]],[[85337,45716],[3,-7],[1,-9],[1,-10],[0,-9],[-3,-13],[-6,-2],[-14,9],[0,4],[2,6],[-1,18],[1,8],[3,7],[5,3],[4,-1],[4,-4]],[[86417,45952],[4,5],[2,1],[2,-3],[-4,-24],[-3,-11],[-4,-6],[-12,5],[-4,-2],[2,-15],[-16,1],[-4,6],[3,17],[2,5],[3,4],[3,2],[8,2],[4,3],[4,4],[3,5],[0,-2],[1,-1],[2,0],[1,0],[3,4]],[[86379,46008],[3,-1],[2,-3],[1,-3],[-1,-4],[-2,-2],[-1,3],[-2,3],[-3,2],[-1,-1],[-3,-6],[-1,-1],[-11,1],[-12,4],[-3,3],[-1,8],[1,9],[4,16],[1,-2],[9,-14],[3,4],[4,-2],[4,-5],[3,-2],[9,4],[2,-2],[-5,-9]],[[86437,46085],[0,-2],[1,-2],[1,-3],[-5,-5],[-11,-25],[-3,-3],[-3,-3],[-2,-3],[-2,-10],[-3,-3],[-3,-2],[-3,-1],[0,5],[2,2],[1,2],[1,8],[-7,0],[-6,-3],[-6,-1],[-4,8],[-1,10],[2,10],[3,9],[4,5],[3,2],[2,-1],[4,-2],[5,0],[16,4],[4,3],[4,1],[2,1],[0,1],[1,0],[3,-2]],[[86467,46129],[2,7],[2,-1],[0,-5],[0,-5],[-1,-3],[-7,-9],[2,-8],[-14,5],[-3,3],[2,3],[2,4],[4,9],[4,15],[2,4],[1,-3],[3,-12],[1,-4]],[[83599,46157],[17,1],[8,-3],[5,-10],[-3,-11],[-9,-6],[-9,-1],[-4,4],[-4,7],[-17,6],[-6,5],[-4,-4],[-7,-1],[-7,1],[-4,4],[-2,5],[0,5],[0,5],[2,4],[4,4],[5,-2],[10,-8],[25,-5]],[[83543,46279],[4,10],[3,2],[1,-10],[-1,-9],[-3,-16],[0,-9],[-8,-3],[-11,1],[-6,6],[0,-9],[-3,-7],[-11,11],[-3,14],[1,9],[-7,-3],[-5,4],[-5,-2],[-2,13],[3,3],[7,-7],[6,6],[2,15],[-1,13],[1,14],[4,-5],[5,-2],[7,-20],[14,-14],[4,-4],[4,-1]],[[88542,46455],[1,-7],[7,-14],[1,-9],[-1,-5],[-4,-7],[-6,-8],[-5,-3],[-4,2],[-2,4],[-3,1],[-4,5],[-3,23],[-3,5],[-3,2],[-3,6],[-4,12],[-2,11],[0,12],[3,5],[4,-6],[6,-12],[4,-5],[5,-1],[10,-2],[4,-3],[2,-6]],[[86554,46514],[6,-2],[3,-7],[-1,-9],[-6,-10],[-6,4],[-4,-7],[-1,-12],[7,-9],[-2,-9],[-5,-8],[-4,-3],[-6,12],[2,25],[8,25],[9,10]],[[87418,46568],[3,-4],[3,-6],[2,-7],[0,-8],[-2,-20],[-2,-11],[-2,-8],[-3,-7],[-7,-21],[-1,-8],[-2,-9],[-4,2],[-9,13],[2,7],[1,5],[-1,10],[1,6],[9,29],[3,24],[2,6],[1,5],[3,2],[3,0]],[[87390,46667],[-1,-12],[-4,-8],[-10,-11],[3,-11],[-1,-14],[-5,-8],[-9,9],[-2,8],[-2,9],[-1,8],[0,6],[-1,4],[-7,18],[-3,0],[-4,-2],[-3,1],[-1,7],[-2,5],[-16,16],[-2,4],[-1,7],[1,6],[1,5],[3,5],[2,3],[4,5],[1,2],[4,10],[2,3],[2,3],[3,2],[2,1],[2,-1],[2,-1],[3,-5],[9,-11],[3,-4],[6,-17],[5,-8],[5,-3],[3,-4],[4,-7],[4,-10],[1,-10]],[[87455,46746],[4,2],[5,-2],[3,-7],[1,-9],[-1,-13],[-2,-11],[-4,-21],[-7,-41],[-3,-8],[-4,5],[-4,8],[-1,6],[3,6],[0,4],[-3,13],[1,19],[5,15],[5,2],[0,18],[0,9],[2,5]],[[87326,46766],[3,-2],[2,-4],[4,-5],[4,-1],[0,-4],[-7,-2],[-5,-9],[-4,-10],[-5,-8],[-3,-1],[-1,2],[0,5],[-2,7],[-6,12],[-4,5],[-1,-3],[-3,5],[-12,22],[-4,18],[-4,8],[-6,-6],[-6,5],[1,8],[4,9],[3,10],[-1,10],[-4,-1],[-8,-13],[-6,21],[-2,27],[3,25],[8,17],[0,-25],[2,3],[13,10],[3,1],[2,-3],[3,-20],[1,-6],[1,-2],[2,3],[6,6],[-2,-9],[-5,-12],[-3,-8],[-1,-12],[3,-8],[4,-8],[4,-12],[4,2],[4,-6],[9,-30],[3,-2],[5,0],[-3,-7],[1,-2],[6,0]],[[80529,45828],[-7,-4],[-10,5],[-10,8],[-16,6],[-27,18],[-47,12],[-11,-6],[-6,-1],[-2,5],[-1,4],[-2,2],[-1,1],[-2,3],[0,4],[2,6],[0,3],[-2,2],[-8,6],[-47,10],[-28,5],[-14,-8],[-4,-11],[-3,-7],[-2,-1],[-8,15],[-3,3],[-4,1],[-6,1],[-6,2],[-4,4],[-4,6],[-2,28],[-2,13],[-4,-2],[-2,-3],[-7,-7],[-2,-5],[-4,-12],[-2,-3],[-3,-6],[-7,-11],[-8,8],[-1,2],[-2,3],[-3,3],[-2,0],[-4,-4],[-2,-6],[-3,-5],[2,-11],[-1,-6],[-1,-1],[-6,3],[-1,14],[-2,3],[-4,1],[-18,-1],[-6,-3],[-9,-16],[-1,-26],[-2,-17],[-12,-16],[-35,1],[-52,18],[-52,28],[-13,1],[-11,-4],[-10,9],[-1,17],[-5,9],[-8,3],[-18,5],[-8,6],[-2,13],[-5,15],[-10,10],[-9,16],[-10,5],[-8,8],[-13,6],[-3,13],[-5,3],[-6,3],[-1,-1],[-2,2],[-2,6],[-14,-5],[-18,4],[-14,4],[-10,3],[-9,5],[-9,6],[-11,6],[-65,11],[-23,1],[-50,11],[-24,4],[-12,21],[-6,5],[-7,3],[-7,-8],[-3,-2],[0,11],[0,15],[-6,14],[2,26],[-1,12],[2,10],[3,13],[5,12],[5,5],[5,0],[4,2],[2,6],[-5,12],[5,10],[11,29],[8,15],[0,22],[-1,20],[-7,12],[-9,-2],[-8,7],[-8,-5],[-5,-17],[-1,-1],[-6,-4],[-7,-1],[-6,1],[-4,2],[-2,3],[-2,2],[-4,1],[-2,2],[-2,8],[-2,2],[-4,1],[-1,3],[0,4],[-2,4],[-1,3],[-10,16],[-10,-1],[-12,12],[-20,35],[-12,9],[-8,2],[-6,0],[-5,-2],[-6,-2],[-5,-3],[-1,-8],[-3,-3],[-3,8],[-6,-2],[-8,-1],[-9,-3],[-5,-3],[-5,3],[-9,4],[-6,1],[-29,-7],[-12,-4],[-5,-10],[-11,7],[-3,-4],[-4,8],[-3,5],[-5,1],[-1,-2],[-3,-4],[-2,-2],[-2,2],[0,4],[-2,5],[-1,4],[-2,1],[-11,10],[-13,1],[-2,-2],[-2,-11],[-1,-5],[-2,-3],[-3,-2],[-5,5],[-2,10],[-4,22],[-3,5],[-2,4],[1,5],[2,1],[9,-3],[4,3],[5,8],[8,17],[2,10],[2,11],[3,8],[5,4],[3,-3],[4,-7],[3,-8],[2,-7],[1,-7],[0,-6],[0,-6],[7,-24],[1,-9],[4,-9],[5,-4],[5,4],[3,11],[5,28],[3,12],[22,43],[4,11],[1,10],[-2,49],[7,30],[3,5],[6,-1],[1,-22],[5,-5],[3,-8],[8,2],[12,11],[7,21],[5,25],[-1,20],[3,102],[2,22],[8,48],[6,24],[19,42],[2,4],[3,5],[6,39],[6,15],[9,7],[9,-3],[6,-15],[2,-38],[1,-6],[3,-3],[9,-11],[5,-3],[9,9],[6,19],[7,15],[12,-2],[17,-29],[7,-4],[6,-2],[17,-18],[7,0],[5,6],[4,7],[6,4],[32,-1],[6,-3],[6,-5],[4,-6],[2,-10],[1,-6],[0,-5],[2,-10],[4,-7],[11,-5],[12,1],[42,13],[2,1],[3,4],[1,11],[1,7],[1,7],[-3,9],[-2,6],[2,9],[6,18],[-2,20],[7,6],[10,-4],[9,-10],[3,-6],[3,-8],[4,-7],[6,-4],[5,0],[4,2],[21,13],[11,-4],[10,-8],[7,-20],[9,-32],[9,-24],[7,-25],[11,-11],[15,-12],[16,-2],[9,-22],[7,-8],[6,7],[4,-5],[5,2],[3,5],[7,6],[1,3],[3,2],[3,-2],[2,-2],[3,0],[0,6],[0,7],[4,3],[6,-4],[0,-8],[4,-1],[4,9],[2,3],[3,-14],[0,-12],[15,-19],[12,-11],[16,-17],[7,-5],[5,-5],[6,0],[4,0],[4,2],[4,7],[7,9],[1,1],[2,4],[3,7],[1,8],[-1,7],[-2,6],[-3,5],[3,2],[5,-6],[9,-5],[18,-1],[5,-8],[2,7],[6,2],[1,-15],[3,-40],[23,-60],[5,-6],[4,-3],[14,-18],[10,-108],[8,-55],[16,-3],[12,-17],[12,-10],[12,1],[12,14],[2,-6],[5,-3],[5,-1],[3,-3],[2,-3],[2,-5],[2,-7],[4,-6],[6,-3],[6,1],[4,4],[2,8],[1,13],[2,10],[6,0],[6,-4],[3,-3],[11,-18],[6,-4],[8,-11],[2,0],[7,0],[49,-11],[24,9],[15,35],[11,-20],[54,-17],[47,-32],[12,-3],[12,0],[36,11],[7,4],[3,6],[1,3],[5,13],[2,2],[3,-2],[1,-6],[1,-6],[1,-6],[4,-6],[13,-12],[9,-6],[12,-18],[6,-7],[7,-1],[5,4],[4,6],[5,3],[6,1],[5,3],[4,5],[11,25],[13,35],[20,88],[3,26],[2,22],[0,25],[2,11],[2,7],[1,7],[-3,13],[6,3],[3,4],[4,14],[4,5],[14,12],[7,3],[3,2],[4,4],[3,2],[17,4],[6,4],[2,-4],[8,-10],[3,-2],[5,-1],[3,1],[1,2],[2,4],[2,-3],[2,-5],[0,-2],[4,-6],[3,-5],[2,-8],[2,-23],[4,-21],[11,-62],[5,-22],[2,-3],[1,-1],[2,1],[52,-13],[6,1],[12,6],[6,1],[4,6],[9,29],[5,10],[7,-10],[16,-6],[9,-8],[3,-6],[9,-25],[5,-10],[7,-13],[6,-9],[6,-7],[19,-10],[11,-3],[5,-2],[5,-1],[6,5],[9,10],[6,3],[5,-3],[9,-20],[16,-45],[5,-7],[6,-3],[12,0],[12,4],[9,7],[3,1],[12,0],[5,2],[12,8],[6,2],[10,-4],[5,-3],[2,2],[2,3],[1,2],[6,-3],[4,-7],[4,-8],[4,-6],[6,-4],[6,0],[4,6],[2,12],[-1,8],[1,4],[1,1],[4,-3],[2,-3],[2,-6],[1,-6],[1,-5],[0,-13],[-5,-23],[-1,-15],[1,-6],[7,-20],[2,-4],[3,-3],[4,4],[4,1],[2,-10],[-9,-6],[-4,-4],[-2,-5],[1,-7],[2,-10],[3,-9],[3,-4],[4,-4],[5,-10],[2,-12],[-1,-11],[-4,-4],[-17,4],[5,-13],[7,-9],[15,-15],[4,10],[4,11],[4,9],[7,3],[4,-4],[4,-7],[3,-10],[4,-16],[1,-9],[0,-9],[-2,-22],[-1,-10],[0,-24],[-2,-12],[-11,-15],[-2,-10],[0,-48],[23,-37],[35,-32],[5,-3],[8,0],[5,-2],[6,-4],[5,-10],[10,-20],[6,-9],[9,-5],[6,-5],[4,-2],[2,1],[6,3],[3,1],[6,-6],[6,-19],[4,-4],[7,2],[5,5],[10,13],[10,11],[6,4],[6,2],[4,3],[9,10],[7,2],[36,-11],[3,1],[6,5],[3,2],[6,-1],[11,-9],[6,-2],[5,3],[4,6],[6,15],[5,5],[4,0],[4,-3],[7,-2],[6,1],[4,4],[19,35],[9,4],[8,-11],[11,-30],[7,-12],[9,-7],[6,-1],[12,7],[6,1],[4,-3],[10,-20],[4,-6],[3,-2],[3,-1],[7,1],[3,0],[2,-3],[5,-9],[11,-12],[4,-9],[2,-13],[-1,-13],[-1,-25],[-1,-4],[-4,-11],[-1,-7],[0,-7],[1,-5],[1,-4],[0,-4],[0,-28],[-12,-86],[-10,-118],[-1,-17],[-2,-13],[0,-6],[1,-7],[3,-13],[1,-27],[0,-13],[4,-5],[3,7],[1,15],[1,26],[4,-10],[2,-19],[-1,-39],[2,-12],[4,-12],[4,-9],[5,-4],[5,0],[4,-2],[7,-10],[14,-11],[3,-7],[1,-8],[4,-7],[3,-9],[-1,-15],[-7,-20],[-12,-2],[-24,18],[-6,2],[-16,-2],[-6,4],[1,9],[6,15],[-2,21],[-10,19],[-13,13],[-11,0],[-12,-15],[-6,-5],[-3,6],[-4,9],[-7,-2],[-12,-9],[-3,0],[-10,4],[-2,3],[-3,11],[-2,2],[-6,-3],[-5,-5],[-4,-1],[-3,9],[0,6],[1,9],[1,7],[-3,3],[-3,-1],[-6,-6],[-3,-2],[-4,2],[-8,5],[-7,6],[-4,8],[-2,-3],[-1,-1],[0,-1],[-1,-4],[-1,9],[-2,20],[-2,4],[-4,-1],[-5,-3],[-4,-5],[-1,-5],[-1,-2],[-3,0],[-5,0],[-1,2],[1,10],[-1,4],[-3,5],[-3,0],[-3,-2],[-4,1],[-4,6],[-5,15],[-3,4],[-9,3],[-2,3],[-3,8],[-2,2],[-9,-3],[-3,1],[-11,12],[-2,4],[-1,4],[-2,8],[-1,2],[-6,2],[-5,-5],[-4,-4],[-5,5],[-14,34],[-6,9],[-12,10],[-11,7],[-12,2],[-35,-9],[-13,-6],[-10,-13],[-14,-34],[-10,-13],[-9,7],[-4,-1],[-6,10],[-1,-3],[-1,-5],[-3,-4],[-2,-1],[-3,2],[-2,4],[-2,1],[-4,-5],[-4,-8],[-2,-3],[-4,-2],[-5,-1],[-4,-2],[-3,-5],[-5,-10],[-4,6],[-13,12],[-10,4],[-15,11],[-22,0],[-4,2],[-4,5],[-4,5],[-6,0],[1,6],[1,2],[-5,9],[-7,6],[-7,2],[-6,0],[-3,-2],[-7,-6],[-4,0],[-2,3],[-1,2],[-2,3],[-5,3],[-51,11],[-6,5],[-9,11],[-2,0],[-7,-10],[-2,-2],[-1,-2],[-2,0],[-6,3],[-6,14],[-5,3],[-7,-1],[-3,1],[-3,2],[-3,4],[-2,1],[-3,-3],[-3,-12],[0,-12],[0,-9],[-6,-4],[-1,4],[-1,7],[-2,7],[-3,3],[-2,-2],[-2,-6],[-1,-13],[-1,-2],[-2,-6],[0,-5],[4,-5],[0,-4],[-1,-4],[-3,-2],[-6,2],[-6,6],[-4,9],[-2,11],[-2,0],[-3,-8],[-5,2],[-9,10],[-4,1],[-4,-6],[-5,-2],[-19,10],[-2,9],[1,7],[-1,5],[-4,5],[-3,0],[-4,-4],[-3,0],[-2,1],[-3,5],[-3,2],[-14,0],[-3,-1],[-2,2],[-3,5],[-2,2],[-3,-1],[-2,-2],[-1,-3],[-23,-14],[-2,0],[-2,6],[0,6],[-2,5],[-3,2],[-3,1],[-4,4],[-1,7],[0,8],[-2,5],[-2,0],[-1,-5],[-1,-5],[-2,-5],[-2,-8],[-2,-4],[-2,-1],[-12,0],[-5,3],[-19,17],[-23,12],[-37,5],[-2,1],[-4,9],[-3,2],[-6,1],[-6,5],[-10,10],[0,-4],[-15,14],[-7,5],[-7,1],[-6,4],[-18,21],[-3,1],[-3,0],[-3,1],[-1,4],[-6,14],[-2,2],[-5,10],[-3,2],[-8,2],[-71,77],[-28,18],[-7,10]],[[84462,46939],[2,-14],[-1,-15],[-3,-10],[-5,4],[-1,5],[0,15],[-2,7],[-3,4],[-7,4],[-3,4],[-4,12],[-1,11],[1,13],[3,14],[2,-5],[14,-21],[2,-7],[4,-15],[2,-6]],[[86887,47148],[0,-10],[1,-9],[1,-9],[3,-9],[-2,-5],[0,-3],[-3,3],[-1,3],[-1,5],[-1,5],[0,-9],[-1,-4],[-3,-1],[-2,2],[-2,4],[-4,24],[0,16],[2,18],[4,17],[6,10],[1,-5],[1,-5],[-1,-5],[-1,-5],[1,3],[2,2],[2,0],[2,-1],[0,-6],[-4,-26]],[[86754,47204],[8,-13],[4,-2],[6,3],[-1,-6],[-2,-6],[-2,-5],[-3,-3],[-4,-3],[-1,0],[-1,3],[-4,10],[-2,9],[-1,9],[3,4]],[[84382,47204],[6,-5],[2,-13],[1,-16],[1,-14],[-6,4],[-4,9],[-7,23],[-5,10],[-5,7],[-4,8],[-3,12],[4,0],[8,-2],[4,-8],[3,-10],[5,-5]],[[84316,47363],[6,-4],[9,-2],[8,-6],[3,-15],[1,-31],[-1,-14],[-4,-5],[-8,1],[-5,5],[-4,9],[-10,43],[-1,16],[6,3]],[[86090,47787],[1,9],[3,3],[2,-3],[-1,-25],[-3,-4],[-5,0],[-5,-3],[-1,5],[-3,3],[-3,1],[-4,-1],[4,6],[13,5],[2,4]],[[85342,48207],[3,-9],[2,-8],[1,-15],[-2,-9],[-2,-6],[0,-6],[-4,-4],[-5,1],[-5,2],[-5,1],[-3,7],[-5,8],[-2,9],[0,14],[8,19],[4,3],[5,-1],[10,-6]],[[83977,48390],[4,-3],[3,-7],[2,-9],[1,-8],[-3,0],[-5,-3],[-6,-5],[-3,-6],[-3,11],[2,13],[4,11],[4,6]],[[86861,48425],[2,-10],[1,-10],[0,-11],[-3,-9],[-4,6],[-3,8],[-2,10],[-1,16],[-2,1],[-4,0],[-2,2],[-5,14],[2,3],[5,6],[2,2],[4,-3],[4,-8],[6,-17]],[[84010,48445],[6,-10],[1,-3],[0,-7],[-2,-9],[-2,-7],[-5,-3],[-2,4],[-3,11],[-3,17],[0,6],[0,7],[1,7],[2,5],[0,2],[1,0],[1,0],[1,-1],[1,-4],[2,-11],[1,-4]],[[85448,48511],[4,-9],[3,-10],[1,-10],[-6,-3],[-6,3],[-10,11],[-13,4],[-4,6],[-4,8],[-3,8],[2,1],[6,9],[1,2],[3,7],[1,3],[0,1],[1,1],[1,-1],[9,0],[5,-8],[9,-23]],[[85491,48597],[4,-4],[1,-9],[0,-9],[2,-7],[-3,-14],[-2,-6],[-3,-1],[-7,1],[-17,-4],[-6,4],[-4,12],[4,14],[8,13],[5,13],[10,0],[3,4],[2,0],[0,-1],[1,-2],[1,-3],[1,-1]],[[85542,48742],[4,-2],[5,-5],[2,-6],[-1,-2],[-2,-4],[-4,-14],[-1,-3],[-1,-3],[-3,-16],[-1,-5],[-4,-4],[-4,-2],[-22,-3],[-3,3],[-1,7],[3,9],[5,7],[4,3],[2,1],[1,2],[3,7],[2,4],[2,-1],[1,-1],[1,0],[4,6],[2,5],[0,7],[-2,10],[8,0]],[[84409,49274],[1,-8],[2,-11],[1,-7],[-1,-7],[-2,3],[-3,10],[-1,-1],[-4,0],[-3,3],[2,8],[4,15],[2,3],[2,-8]],[[84541,49309],[4,-7],[2,-12],[-1,-28],[-3,4],[-6,16],[-3,3],[-3,1],[-3,2],[-1,5],[2,8],[3,6],[4,2],[5,0]],[[84348,49339],[2,-24],[0,-8],[-2,0],[-1,8],[-1,9],[0,19],[2,0],[0,-4]],[[84371,49340],[0,-5],[2,-8],[0,-4],[-1,-3],[-8,-9],[-2,13],[2,14],[4,6],[3,-4]],[[80187,49455],[4,8],[9,4],[10,-1],[5,-5],[-5,-8],[-10,-2],[-13,4]],[[85380,49660],[3,-18],[-1,-5],[-5,-1],[-3,-3],[-6,-11],[-3,-3],[-9,7],[0,14],[6,14],[5,2],[0,3],[1,2],[0,3],[1,4],[2,0],[2,-7],[2,0],[3,2],[2,-3]],[[80324,49725],[4,-5],[-2,-7],[-9,-20],[-2,-2],[0,3],[-1,7],[-1,1],[-2,-2],[-2,1],[0,-4],[-2,0],[-2,2],[0,5],[2,5],[2,3],[2,1],[3,0],[3,2],[5,10],[2,0]],[[80348,49777],[3,-3],[0,-8],[-2,-8],[-2,-6],[-2,-4],[-3,-4],[-3,-1],[-1,4],[0,8],[0,5],[1,4],[5,10],[2,2],[2,1]],[[79021,50309],[3,-2],[1,-4],[1,-5],[0,-5],[-1,-6],[-2,-1],[-2,0],[-2,-1],[-4,-4],[-3,-1],[-8,1],[-3,4],[-2,9],[2,8],[4,3],[16,4]],[[78566,50642],[4,7],[8,7],[8,3],[4,-5],[-5,-8],[-9,-8],[-8,-4],[-2,8]],[[78632,50839],[2,-9],[0,-5],[0,-5],[-1,-7],[-1,-3],[-2,2],[-2,4],[-2,7],[-3,18],[-1,8],[0,4],[-1,3],[0,3],[1,2],[4,-1],[3,-6],[2,-7],[1,-8]],[[78751,50885],[3,-2],[1,-5],[0,-6],[-1,-7],[-3,-16],[-2,-8],[-3,-4],[-5,2],[0,8],[1,10],[1,4],[2,4],[4,17],[2,3]],[[78642,50939],[2,-7],[-1,-14],[-4,-13],[-3,-8],[-2,2],[-1,6],[-1,6],[-1,5],[1,4],[1,5],[1,4],[3,6],[1,3],[2,1],[2,0]],[[79045,50942],[11,-2],[5,-4],[-1,-6],[-1,-7],[-4,-1],[-8,4],[-5,0],[-4,-2],[-8,-10],[0,14],[4,9],[5,4],[6,1]],[[78796,50967],[10,-15],[4,-10],[2,-10],[0,-8],[-4,-3],[-3,2],[-2,5],[-1,10],[-7,19],[1,10]],[[78739,51014],[3,-6],[2,-9],[-1,-9],[-2,-5],[-3,0],[-4,2],[-3,4],[-2,6],[-2,4],[-3,4],[-1,4],[13,6],[3,-1]],[[83513,51105],[3,-3],[2,-4],[4,-10],[-4,-1],[-10,15],[-7,3],[3,2],[3,2],[3,-1],[3,-3]],[[83437,51109],[5,4],[2,-5],[1,-10],[0,-10],[-1,-4],[-2,-4],[-2,-3],[-3,-1],[-2,5],[0,10],[1,11],[1,7]],[[83290,49952],[4,24],[1,12],[1,15],[-1,3],[-2,8],[-1,5],[0,20],[0,6],[-2,9],[-6,16],[-2,6],[-1,7],[-6,27],[-3,23],[-1,20],[-1,7],[-4,19],[-1,12],[7,137],[2,18],[4,8],[1,7],[0,17],[-2,18],[-2,10],[-8,-7],[-9,-1],[-9,4],[-7,9],[-5,11],[-5,18],[-3,19],[2,17],[4,-5],[3,-2],[2,-2],[0,7],[1,5],[0,5],[1,4],[7,-8],[5,-9],[7,-20],[6,-19],[4,-8],[6,-5],[5,-3],[2,0],[2,4],[4,13],[3,12],[6,52],[2,15],[-5,20],[-21,54],[-1,7],[-1,8],[0,10],[2,7],[17,12],[4,10],[0,9],[-3,10],[-1,13],[1,13],[7,22],[3,12],[1,6],[0,12],[1,6],[3,7],[3,4],[4,4],[3,4],[5,4],[13,3],[5,6],[4,20],[-1,23],[-3,24],[-2,23],[1,13],[2,14],[3,13],[5,5],[3,0],[7,4],[3,1],[3,1],[18,18],[6,8],[6,10],[2,10],[3,60],[3,21],[6,15],[11,2],[6,-8],[2,-12],[-2,-27],[0,-27],[2,-10],[4,7],[2,0],[2,-11],[3,-8],[4,-8],[6,-6],[8,-4],[5,-4],[2,2],[2,4],[1,2],[7,0],[4,-3],[4,-6],[4,-9],[3,1],[5,9],[8,21],[-3,13],[4,26],[12,41],[6,14],[2,3],[3,-3],[3,-5],[3,-4],[3,2],[2,5],[2,13],[2,6],[2,3],[6,4],[3,3],[2,9],[1,9],[-2,37],[1,7],[0,3],[0,3],[2,6],[2,6],[1,1],[2,13],[0,11],[0,23],[-2,22],[1,11],[3,10],[3,1],[6,-2],[2,1],[3,3],[7,13],[-1,-17],[1,-8],[3,3],[5,13],[3,3],[5,2],[26,-11],[6,2],[14,-10],[7,-7],[7,-18],[23,-25],[15,14],[5,2],[12,0],[5,3],[7,9],[5,10],[3,2],[3,-3],[2,-6],[0,-7],[0,-8],[-1,-6],[-2,-2],[-7,-5],[-1,-1],[0,-4],[2,-9],[1,-5],[1,-6],[0,-3],[0,-5],[1,-7],[5,-12],[1,-6],[3,-10],[13,-22],[5,-6],[11,-7],[13,1],[82,21],[4,-4],[4,-27],[4,-10],[5,-4],[6,1],[5,6],[6,15],[4,3],[6,-2],[18,-14],[7,-1],[4,-2],[2,-3],[7,-9],[3,-1],[3,0],[6,3],[3,1],[1,-1],[3,-3],[1,0],[1,1],[3,5],[1,2],[4,0],[13,-8],[6,0],[13,7],[3,-1],[9,-14],[11,-10],[11,-5],[16,-3],[6,-4],[5,-7],[2,-10],[3,-7],[6,-6],[10,-9],[3,-4],[1,-4],[1,-3],[4,-1],[2,-2],[1,-8],[7,-5],[7,-14],[5,-4],[11,18],[5,3],[3,4],[6,28],[1,3],[3,5],[1,4],[0,11],[1,7],[2,3],[6,-1],[4,-1],[19,-15],[6,-3],[1,0],[4,1],[6,5],[12,-10],[4,3],[-1,6],[-2,13],[2,8],[6,-8],[5,-6],[8,7],[5,-7],[1,-6],[0,-6],[1,-4],[3,-5],[3,-1],[8,0],[3,1],[3,2],[2,4],[2,2],[4,0],[2,-2],[2,-4],[2,-1],[4,3],[7,-11],[21,-9],[9,-10],[3,-2],[10,9],[4,3],[5,-3],[12,-13],[5,-4],[39,-12],[19,4],[3,-1],[5,-4],[2,1],[3,3],[1,5],[-1,4],[-3,3],[4,6],[11,7],[5,11],[31,24],[9,4],[4,6],[7,16],[9,9],[18,11],[7,12],[4,20],[5,41],[4,16],[3,6],[5,5],[5,4],[5,2],[19,-2],[5,2],[3,3],[2,4],[2,4],[3,1],[2,-3],[1,-6],[2,-5],[3,-3],[5,5],[3,11],[2,14],[1,11],[-3,10],[-4,3],[-11,-1],[-5,7],[0,15],[2,17],[2,10],[15,24],[2,6],[3,4],[20,-9],[7,2],[4,6],[7,18],[5,5],[11,4],[6,5],[4,12],[-2,11],[-4,11],[-2,13],[1,14],[3,10],[28,45],[2,8],[1,2],[6,-5],[1,3],[-1,20],[1,6],[3,5],[6,6],[5,2],[3,-7],[0,-24],[2,-7],[6,-4],[5,0],[18,5],[8,-2],[1,-7],[-4,-24],[1,-25],[6,-14],[7,-10],[7,-12],[3,-23],[-8,-15],[-12,-11],[-10,-12],[-8,-21],[-5,-21],[-17,-103],[-13,-49],[-9,-23],[-10,-20],[-1,-4],[-3,-15],[0,-5],[-2,-4],[-10,-11],[-9,-5],[-2,-3],[-2,-6],[-4,-15],[-3,-3],[-6,-3],[-6,-8],[-10,-22],[-9,-14],[-4,-9],[-3,-17],[-4,-11],[-1,-7],[0,-9],[0,-4],[-3,-10],[-10,-18],[-2,-12],[-2,-5],[-1,-6],[1,-5],[2,-6],[0,-4],[0,-11],[-1,-2],[-6,1],[-2,-1],[-1,-2],[-12,-32],[-1,-9],[4,-5],[0,-4],[-5,-4],[-3,-8],[-5,-21],[-7,5],[-7,-5],[-6,-8],[-6,-4],[-6,-3],[-8,-14],[-34,-15],[-14,-2],[-11,10],[-3,-5],[-8,-16],[-8,4],[-2,0],[-3,-2],[-5,-8],[-2,-2],[-18,-1],[-6,-3],[-12,-8],[-3,-1],[-9,1],[-5,-4],[-5,-6],[-2,-2],[-3,3],[-4,3],[-3,2],[-6,-1],[-10,-9],[-9,-4],[-2,-4],[-4,-9],[-2,1],[-3,3],[-9,15],[-4,3],[-29,6],[-6,-1],[-10,-6],[-5,-2],[-27,6],[-9,8],[-4,0],[-2,2],[-1,2],[-2,9],[-2,1],[-1,5],[-7,22],[-1,2],[-6,-1],[-1,3],[0,2],[-8,28],[-12,27],[-5,13],[-1,0],[-4,-9],[-6,-5],[-15,-5],[-41,5],[-26,-6],[-12,1],[-3,3],[-6,16],[-3,5],[1,-18],[-1,-8],[-3,-3],[-5,1],[-4,2],[-3,6],[-4,2],[-5,2],[-67,0],[-3,-1],[-6,-6],[-2,-1],[-21,0],[-3,0],[-3,-2],[-4,-5],[-2,-1],[-6,1],[-11,5],[-18,1],[-5,-3],[-5,-13],[-5,-4],[-26,-7],[-14,-1],[-11,-5],[-4,1],[-2,3],[-13,40],[-5,9],[-7,5],[-4,0],[-9,-4],[-2,-1],[-3,4],[-2,5],[-2,6],[-3,6],[-1,-7],[-2,-4],[-4,-1],[-5,0],[-3,2],[-3,3],[-2,-1],[-3,-8],[-1,-8],[0,-8],[-2,-6],[-3,-2],[-5,-1],[-3,-1],[-4,-3],[-3,-3],[-4,7],[-4,1],[-4,-3],[-10,-3],[-6,-6],[-3,-1],[-3,2],[-6,8],[-3,3],[-7,-1],[-11,-9],[-6,-3],[-6,0],[-4,-2],[-4,-5],[-4,-9],[-3,-10],[-2,-4],[-3,-2],[-2,0],[-10,4],[-5,3],[-7,13],[-4,4],[-5,-1],[-9,-9],[-18,-5],[-4,1],[-4,6],[-2,4],[-1,9],[-1,3],[-2,2],[-9,3],[-1,1],[-1,5],[-1,4],[-2,2],[-4,-1],[-4,-4],[-3,1],[-6,6],[-8,18],[-6,4],[-49,-1],[-4,-3],[-22,-23],[-5,-1],[-4,-3],[-4,-8],[-3,-8],[-3,-6],[-7,-11],[-12,-26],[-16,-51],[-16,-38],[-6,-22],[-2,-6],[-2,-21],[-1,-5],[-4,-12],[-1,-12],[-1,-27],[-3,-27],[-3,-13],[-3,-11],[-10,-16],[-1,-5],[0,-7],[0,-15],[-1,-27],[-2,-13],[-3,-10],[-2,-10],[1,-15],[6,-77],[1,-12],[8,-21],[2,-13],[-1,-6],[-2,-12],[-1,-6],[1,-7],[2,-14],[5,-57],[4,-26],[43,-136],[4,-7],[13,-19],[6,-4],[6,6],[6,10],[5,6],[7,-2],[4,-9],[2,-12],[4,-12],[2,-3],[3,-2],[6,-1],[3,-3],[3,-7],[2,-14],[18,-56],[1,-7],[1,-7],[-1,-5],[-2,-5],[-1,-5],[0,-5],[0,-8],[-2,-15],[0,-8],[2,-7],[13,-32],[3,-11],[2,-25],[3,-13],[3,-12],[4,-6],[17,16],[0,4],[19,10],[7,2],[1,-3],[-2,-19],[2,-4],[3,-3],[7,-3],[6,-1],[19,5],[5,3],[3,1],[3,-3],[7,-13],[2,-5],[12,-3],[9,9],[7,16],[10,33],[2,11],[1,22],[3,27],[2,11],[3,7],[4,10],[5,8],[4,4],[3,3],[3,10],[4,19],[8,20],[15,27],[16,52],[6,16],[13,28],[5,5],[5,2],[12,0],[2,3],[0,5],[0,7],[1,5],[2,3],[7,5],[2,1],[3,-2],[2,-2],[2,-3],[2,-2],[0,-35],[0,-9],[8,-13],[3,-8],[2,-5],[2,-2],[23,0],[13,-4],[12,-6],[11,-2],[10,7],[10,13],[5,3],[7,1],[6,-3],[6,-4],[5,0],[7,10],[3,13],[4,20],[1,20],[-1,13],[11,17],[4,3],[56,4],[11,4],[10,1],[20,-11],[10,2],[2,2],[1,3],[2,2],[3,1],[4,-2],[5,-8],[8,-5],[4,-5],[5,-5],[6,1],[14,10],[35,7],[4,2],[4,5],[5,8],[0,4],[-18,8],[-1,3],[-2,7],[-1,3],[-4,1],[-24,4],[-4,2],[-4,4],[-3,5],[-2,6],[0,6],[5,4],[4,-5],[4,2],[7,11],[2,3],[1,4],[2,2],[4,-5],[2,1],[2,2],[1,3],[24,3],[6,4],[3,-5],[5,0],[5,2],[4,3],[3,5],[4,14],[3,5],[4,1],[45,-8],[10,-8],[19,-22],[17,-13],[4,-7],[-3,-8],[-1,-3],[1,-3],[2,-5],[1,-4],[0,-5],[2,-4],[2,-1],[3,0],[-1,-12],[4,-16],[-4,-21],[1,-24],[-2,-12],[-7,-16],[-3,-8],[-3,-53],[-2,-12],[-8,-21],[-12,-7],[-11,4],[-9,12],[-8,24],[-2,4],[-2,4],[-13,21],[0,7],[2,15],[0,6],[-1,9],[-3,6],[-6,11],[-6,5],[-10,-27],[-6,0],[-9,-8],[-25,-3],[-12,-6],[-10,6],[-7,-15],[-12,-56],[-3,-9],[-7,-17],[-1,-4],[-1,-5],[0,-5],[-1,-6],[-1,-7],[-2,-3],[-3,-2],[-3,-2],[-8,-13],[-4,-10],[-3,-28],[-3,-7],[-11,-11],[-4,-9],[-12,-38],[-5,-6],[-2,-4],[-1,-6],[-1,-6],[-4,-13],[-1,-3],[-20,-39],[-7,-19],[-3,-8],[-18,-19],[-20,-30],[-9,-17],[-5,-6],[-3,2],[-4,6],[-4,4],[-5,-2],[-12,-12],[-5,-2],[-3,0],[-5,4],[-3,0],[-2,-3],[-1,-3],[-1,-3],[-1,-4],[-9,-12],[-6,-5],[-3,1],[-6,-6],[-5,-2],[-11,4],[-2,-11],[-2,-1],[-5,-7],[-3,-4],[-3,-1],[-3,-5],[-2,-11],[-3,-21],[-7,-36],[-4,-17],[-6,-16],[-7,-11],[-9,-8],[-9,-4],[-18,-2],[-3,1],[-4,4],[-1,4],[-1,4],[-6,15],[-2,4],[-2,2],[-1,1],[-10,7],[-3,11],[0,10],[-1,7],[-7,4],[-13,0],[-1,2],[-3,10],[-2,4],[-10,-2],[-4,-20],[2,-18],[10,4],[1,-9],[-1,-12],[-3,-13],[-1,-13],[1,-5],[2,-6],[1,-5],[0,-27],[3,5],[3,5],[2,5],[1,6],[2,8],[1,8],[1,7],[4,5],[3,-11],[6,-31],[9,-12],[3,-12],[4,-9],[5,2],[7,-16],[5,-44],[6,-17],[12,-9],[12,1],[11,-3],[11,-18],[7,-18],[16,-27],[7,-20],[4,-22],[3,-13],[0,-11],[2,-9],[14,-29],[9,-33],[4,-21],[9,-23],[2,-13],[0,-12],[-1,-27],[0,-7],[13,-31],[6,-11],[5,-4],[10,-3],[3,-2],[1,-2],[0,-7],[3,-3],[2,-1],[2,-4],[2,-9],[1,-14],[2,-12],[4,-5],[10,0],[6,-2],[6,-6],[7,-23],[-5,-22],[-7,-22],[3,-22],[2,-3],[7,-10],[20,-42],[3,-1],[3,3],[4,5],[3,3],[1,-8],[1,-7],[2,-5],[3,-5],[3,5],[1,-1],[0,-7],[-2,-9],[-1,-2],[-5,-3],[-2,-3],[0,-3],[0,-9],[0,-4],[-1,-10],[0,-5],[-1,-2],[-3,1],[0,1],[-1,3],[-3,4],[-2,1],[-2,-1],[-1,-2],[-1,-2],[-7,12],[-5,-12],[-5,-11],[-7,-33],[2,-17],[4,-2],[12,-11],[4,-5],[2,-12],[1,-16],[-2,-12],[-5,1],[3,7],[-2,7],[-5,5],[-5,1],[1,6],[1,2],[-3,9],[-4,4],[-4,2],[-4,5],[-1,-6],[-1,-6],[-2,-3],[-4,3],[1,-11],[2,-9],[2,-7],[4,-7],[2,-10],[0,-12],[-2,-13],[-5,-18],[-1,-3],[-2,-3],[-3,-4],[-3,-2],[-6,-4],[-3,-4],[-1,-9],[2,-13],[6,-21],[2,-8],[5,-8],[5,-5],[6,-3],[4,-3],[3,-8],[2,-9],[3,-8],[6,-6],[6,-1],[12,3],[6,-4],[3,-9],[5,-24],[16,-46],[5,-8],[6,-3],[19,0],[3,-1],[2,-3],[2,-4],[2,-7],[-1,-6],[-5,-4],[-3,-3],[-1,-3],[-3,-10],[-3,-2],[-7,-1],[-6,-4],[-4,-4],[1,-3],[13,-2],[6,-3],[5,-5],[4,-8],[2,-10],[1,-11],[-1,-25],[1,-11],[3,-12],[3,-9],[5,-3],[1,2],[0,5],[1,5],[0,5],[7,-9],[11,-4],[11,-1],[7,6],[-15,32],[-4,15],[9,5],[11,-10],[7,-21],[6,-26],[4,-35],[1,-13],[-1,-11],[-4,-18],[0,-12],[3,-25],[1,-24],[-2,-11],[-4,-5],[-5,-2],[-2,-6],[-2,-8],[-3,-9],[-4,11],[-19,30],[-10,22],[-7,8],[-8,3],[3,-12],[12,-23],[1,-5],[3,-11],[2,-6],[1,-1],[4,2],[1,-1],[1,-4],[0,-2],[-1,-2],[0,-4],[1,-7],[1,-5],[0,-11],[-1,-6],[-3,-3],[-4,-1],[-3,2],[-6,18],[-4,0],[0,-3],[0,-5],[2,-4],[-4,-7],[-2,2],[-4,13],[0,16],[-8,14],[-12,7],[-9,-6],[-9,-13],[-10,-4],[-9,3],[-9,8],[-11,-13],[-12,-8],[-12,-6],[-18,-2],[-2,-1],[-2,-3],[-5,-7],[-3,-3],[-6,-4],[-5,-8],[-1,-2],[-11,-3],[-2,-1],[-6,-14],[-6,-23],[-5,-26],[-2,-22],[1,-26],[5,-21],[6,-16],[7,-14],[1,-1],[5,-3],[0,-5],[-5,-3],[-6,-14],[-3,-3],[-7,-1],[-12,-6],[-5,-1],[-29,6],[-5,3],[-8,11],[-5,5],[-4,0],[-5,-3],[-6,-2],[-5,4],[-2,0],[-1,-6],[-2,-2],[-2,-2],[-3,-2],[-3,0],[-5,8],[-8,21],[-5,4],[-4,2],[-16,14],[-4,5],[-14,41],[-1,7],[-1,1],[-1,0],[-1,0],[-1,3],[-2,20],[1,25],[5,48],[6,35],[2,25],[1,25],[-1,46],[1,18],[0,6],[1,4],[3,3],[4,0],[1,-4],[-1,-6],[-2,-6],[9,10],[9,41],[3,47],[-10,28],[-11,11],[-34,13],[-21,19],[-1,6],[-4,8],[-1,6],[-1,6],[-1,7],[-4,9],[-4,6],[-4,-2],[-3,-5],[-5,-3],[-2,5],[1,12],[3,14],[1,10],[-3,11],[-4,5],[-11,0],[-7,2],[-4,5],[-16,39],[-58,113],[-6,24],[-1,17],[0,7],[0,7],[3,13],[0,6],[3,15],[5,12],[6,12],[5,12],[5,25],[3,11],[5,4],[3,2],[3,3],[2,5],[0,5],[2,5],[2,3],[4,3],[2,3],[2,10],[2,32],[0,15],[-2,14],[-1,7],[-2,3],[-2,5],[1,10],[4,16],[0,8],[3,11],[1,7],[-1,25],[2,6],[1,13],[-2,19],[-3,12],[-3,-6],[-2,0],[-1,6],[-2,16],[-3,6],[-2,-5],[-2,-12],[-1,-3],[-3,0],[-3,4],[-1,5],[-1,5],[2,8],[4,2],[4,3],[1,14],[5,-3],[3,4],[4,15],[1,-2],[1,-1],[1,0],[1,-1],[-9,35],[-4,6],[0,2],[-2,4],[-3,8],[-3,3],[-34,11],[-3,-1],[-3,-2],[-2,1],[-3,4],[-3,6],[-3,4],[-3,2],[-3,2],[-7,0],[-4,-4],[-4,-5],[-4,-3],[-6,-1],[-4,-3],[-15,-17],[-4,-2],[-7,-1],[-5,-4],[-3,-8],[-2,-10],[-2,-11],[-5,-9],[-69,-93],[-11,-19],[-6,-9],[-8,-4],[2,-7],[4,-11],[1,-8],[1,-7],[1,-8],[1,-5],[2,-2],[4,-7],[4,-31],[3,-11],[-2,-2],[-1,-3],[-3,-7],[6,-12],[6,-7],[13,-10],[8,-11],[1,-3],[1,-5],[1,-8],[2,-9],[2,-5],[5,2],[-1,-6],[-4,-10],[-2,-8],[1,-6],[1,-7],[0,-6],[-2,-10],[-2,-21],[1,-6],[2,-12],[1,-7],[0,-6],[-2,-9],[-1,-31],[1,-10],[5,-27],[1,-11],[0,-50],[1,-4],[5,-10],[1,-23],[-5,-22],[-12,-36],[-4,-20],[-4,-20],[-1,-21],[-1,-101],[1,-9],[6,-22],[1,-8],[0,-24],[0,-6],[-1,-12],[-1,-7],[1,-8],[3,-18],[0,-21],[-7,-34],[2,-23],[6,-16],[3,-12],[-1,-10],[-1,-10],[0,-15],[1,-15],[1,-10],[4,-11],[8,-20],[1,-12],[0,-6],[-3,-5],[-5,-9],[-1,-5],[-5,-58],[-1,-14],[-2,-11],[-6,-4],[-6,-1],[-5,-3],[-5,-17],[0,-72],[-7,-70],[-2,-14],[-3,-9],[12,-37],[2,-10],[4,-24],[2,-8],[12,-32],[2,-9],[1,-12],[12,-92],[1,-22],[1,-5],[5,-17],[1,-11],[-1,-3],[-8,7],[-4,-2],[-10,24],[-2,7],[0,7],[-5,18],[-2,5],[-7,3],[-7,-6],[-7,-8],[-6,-5],[-12,-4],[-2,-1],[-7,-11],[-5,-5],[-11,-7],[-5,-4],[-1,3],[-2,1],[-4,0],[-18,6],[-3,4],[-3,4],[-7,1],[-8,-1],[-5,-2],[-5,-7],[-11,-24],[-2,-6],[-1,-13],[-1,-5],[-6,-11],[-4,-7],[-10,-6],[-13,-1],[-13,4],[-8,11],[-1,11],[-1,13],[-2,12],[-7,5],[-5,-7],[-3,-13],[-3,-8],[-5,8],[-1,6],[0,14],[-1,8],[-2,6],[-2,3],[-3,5],[-1,8],[-4,1],[-8,-3],[-5,-7],[4,-13],[-6,0],[-4,4],[-2,9],[-1,13],[1,6],[2,5],[1,7],[-1,6],[-2,6],[-3,11],[-10,29],[-5,22],[-2,24],[2,28],[2,19],[2,38],[1,12],[4,21],[3,19],[1,5],[3,4],[5,6],[3,4],[3,11],[2,11],[1,21],[4,20],[10,41],[2,20],[-10,76],[2,22],[1,2],[5,6],[2,3],[3,19],[1,8],[12,44],[2,9],[4,85],[5,40],[1,23],[0,6],[-2,10],[0,6],[-1,7],[-4,8],[-1,5],[2,12],[5,23],[1,12],[-2,25],[-2,5],[-1,3],[-1,2],[1,7],[2,9],[1,6],[0,6],[0,11],[0,7],[6,20],[1,9],[-4,3],[-7,-2],[-1,-6],[-1,-11],[-1,-13],[-2,11],[-1,22],[-5,18],[-13,68],[-6,19],[-3,23],[-8,24],[-1,8],[4,18],[4,33],[3,10],[4,12],[2,9],[-1,9],[-4,31],[-1,4],[-2,3],[-6,3],[-2,4],[-7,-2],[-8,8],[-9,11],[-7,7],[-10,3],[-4,-1],[-1,-4],[-2,-7],[-11,-18],[-4,-5],[-6,-3],[-5,2],[-4,3],[-5,2],[-5,-2],[-7,-11],[-5,-3],[-20,-3],[-8,-9],[2,-20],[-3,1],[-4,9],[-3,1],[-2,-3],[-3,-14],[-3,-3],[-4,5],[-2,11],[-11,62],[-5,18],[-3,13],[-2,13],[-1,12],[1,11],[2,10],[1,10],[-5,21],[-3,40],[-2,12],[-2,6],[-2,3],[-3,3],[-3,5],[-1,7],[-1,6],[-2,11],[-1,7],[1,4],[5,12],[2,2],[2,-1],[6,-5],[4,-2],[4,4],[1,8],[1,48],[2,18],[5,11],[1,8],[1,17],[-1,7],[-1,5],[-3,4],[-3,4],[-7,4],[-6,-2],[-12,-10],[0,13],[-3,25],[-1,13],[1,6],[4,12],[1,6],[0,27],[1,10],[3,13],[4,12],[4,5],[6,-3],[4,-9],[4,-7],[6,-1],[6,4],[12,18],[7,12],[6,8],[3,4],[2,6],[2,21],[5,12],[5,5],[5,5],[14,24],[2,7],[-1,37],[-2,15],[-1,59],[1,7],[2,7],[1,9],[-2,8],[10,32],[4,17],[9,65],[5,17],[8,11],[7,3],[4,-2],[4,-3],[5,-2],[3,6],[2,15],[4,52],[0,8],[-1,3],[-1,2],[-3,5],[-4,11],[-2,10],[-6,51],[0,25],[1,13],[5,22],[1,12],[-6,41],[-2,6],[-2,49],[0,3],[0,4],[1,7],[2,4],[6,12],[1,6],[0,12],[-5,27],[0,23],[4,18],[6,15],[7,12],[2,7],[2,7],[3,7],[3,3],[5,3],[4,7],[3,9],[1,23],[4,22],[3,34],[2,10],[3,9],[2,8],[3,24],[2,10],[3,6],[8,10],[2,2],[4,6],[3,15],[1,2],[9,8],[13,24],[-6,15],[-1,3],[1,6],[3,5],[6,6],[3,7],[6,16],[3,3],[0,-4],[4,-22],[2,-15],[10,-44],[5,-33],[4,-15],[6,-9]],[[85495,51811],[5,0],[2,-1],[1,-5],[1,-12],[-3,-13],[-7,-2],[-7,7],[-2,16],[1,11],[2,2],[7,-3]],[[85608,51872],[0,-8],[-6,-34],[-4,-6],[-4,6],[-3,12],[-2,11],[0,7],[1,6],[2,6],[2,6],[2,7],[2,6],[1,3],[4,-3],[5,-19]],[[78040,51551],[-1,9],[1,12],[0,13],[-3,13],[-3,10],[-3,13],[-2,27],[-6,28],[-17,47],[-6,27],[-1,28],[4,24],[8,18],[12,11],[6,0],[40,-4],[2,-7],[-1,-23],[3,-13],[32,-44],[33,-58],[5,-13],[2,-14],[1,-12],[-1,-25],[1,-13],[6,-34],[8,-51],[5,-22],[8,-16],[19,-18],[10,-5],[10,-9],[7,0],[23,8],[10,1],[11,-5],[8,-11],[68,-122],[26,-30],[7,-17],[3,-28],[-2,-22],[0,-15],[3,-7],[5,-3],[4,-8],[2,-11],[1,-11],[-2,-45],[0,-23],[4,-25],[9,-25],[23,-38],[29,-67],[10,-18],[13,-14],[6,-5],[6,-2],[12,-1],[6,1],[9,6],[5,1],[32,-11],[26,-3],[12,-11],[9,-19],[29,-70],[8,-25],[2,-27],[-5,-16],[-10,-13],[-21,-20],[-12,-18],[-6,-7],[-10,-5],[-32,-35],[-4,-7],[-5,-5],[-19,-9],[-5,-5],[-2,-2],[-2,-5],[-6,-21],[-3,-3],[-7,3],[-5,8],[-10,22],[-4,3],[-8,3],[-6,1],[-2,-1],[3,-5],[2,-1],[7,0],[2,-2],[2,-3],[2,-7],[6,-14],[8,-14],[9,-6],[10,9],[1,4],[3,9],[1,3],[4,5],[6,5],[3,4],[5,4],[13,-3],[6,1],[15,15],[19,4],[4,4],[20,27],[5,3],[4,4],[14,29],[5,5],[7,6],[6,3],[6,2],[7,4],[4,11],[5,26],[6,11],[16,6],[8,9],[8,11],[7,2],[8,-3],[8,-9],[17,-20],[17,-28],[13,-34],[5,-39],[3,11],[2,6],[3,3],[3,0],[2,-3],[3,-3],[7,-5],[6,-9],[5,-11],[4,-9],[4,-23],[12,-121],[2,-6],[1,-3],[0,-6],[-3,-10],[-3,-3],[-3,0],[-7,1],[-23,-4],[-2,-2],[0,-11],[-2,-3],[-4,-1],[-2,-1],[-2,0],[-2,2],[-3,5],[-3,12],[-2,3],[-2,0],[-2,-2],[-3,-2],[-1,-4],[1,-6],[2,-1],[2,-1],[1,-4],[0,-5],[-1,-6],[-1,-6],[2,-13],[-3,-5],[-5,-4],[-4,-2],[-10,0],[-3,-2],[-2,-8],[-1,-17],[-5,-14],[-7,-11],[-8,-9],[-31,-12],[-9,-12],[5,0],[8,-3],[5,-1],[5,3],[8,7],[5,2],[7,6],[10,9],[8,4],[4,-11],[-2,-14],[-11,-20],[-2,-16],[-3,-13],[-8,-7],[-18,-7],[0,-4],[10,-8],[6,-2],[4,4],[4,2],[14,0],[3,-1],[3,-1],[2,-3],[3,-5],[3,-4],[6,-1],[10,-15],[3,-7],[-2,-12],[-5,-11],[-8,-8],[-8,-6],[-28,-11],[-4,5],[-3,11],[-5,25],[2,-39],[1,-5],[6,-11],[2,-6],[1,-14],[-2,-18],[-4,-16],[-6,-9],[0,-4],[4,-7],[-1,-9],[-4,-7],[-7,-1],[3,-10],[6,-9],[6,-7],[10,-4],[1,0],[4,-3],[3,-4],[1,-6],[-1,-9],[-4,-10],[-2,-8],[12,5],[6,0],[6,-7],[3,-8],[4,-18],[3,-8],[1,-1],[4,1],[1,0],[0,-2],[1,-5],[1,-1],[2,-4],[1,-5],[3,-5],[6,-5],[1,-5],[1,-6],[2,-3],[11,-3],[4,-7],[6,-15],[4,-3],[6,-1],[5,-4],[4,-6],[3,-9],[4,-23],[3,-6],[2,24],[5,11],[6,9],[6,5],[12,5],[4,3],[18,-18],[5,-8],[5,-4],[14,-1],[5,-1],[18,-22],[6,-3],[12,10],[2,4],[16,10],[16,1],[1,-6],[8,-52],[-3,-37],[1,-23],[2,-19],[1,-6],[9,-19],[1,-7],[2,-37],[-1,-90],[3,-25],[4,-25],[11,-43],[4,-27],[0,-4],[1,-12],[0,-7],[-1,-7],[-4,-15],[-2,-7],[-6,-23],[-2,-13],[1,-9],[0,-8],[3,-15],[5,10],[4,31],[2,8],[8,-2],[6,-12],[5,-13],[5,-6],[4,-7],[-2,-17],[-4,-17],[-3,-10],[-3,-5],[-2,-5],[1,-4],[4,0],[4,5],[7,17],[3,7],[1,-12],[1,-13],[0,-11],[4,-5],[1,-1],[1,-1],[1,-1],[1,-1],[1,1],[1,3],[1,3],[1,1],[1,2],[6,10],[12,9],[11,-7],[10,-17],[7,-25],[2,-27],[-2,-23],[-4,-21],[-9,-28],[-20,-49],[-3,-7],[-5,-2],[-12,-1],[-3,-3],[-4,-8],[-10,-13],[-5,-9],[20,18],[9,1],[6,-23],[0,-26],[-1,-15],[-4,-20],[0,-27],[-1,-10],[-3,-5],[-5,-5],[-5,-4],[-5,-2],[-3,-2],[-8,-13],[-10,-18],[-5,-16],[-4,-21],[0,-23],[0,1],[-1,-3],[0,-6],[4,7],[4,13],[4,14],[1,13],[2,9],[4,8],[9,13],[19,19],[8,11],[6,18],[5,39],[0,13],[-1,26],[1,9],[4,11],[9,18],[4,12],[4,25],[5,8],[5,3],[5,-5],[3,-12],[0,-15],[0,-13],[5,-9],[1,14],[3,9],[4,5],[6,1],[6,-3],[4,-8],[4,-8],[4,-5],[3,0],[6,3],[3,0],[3,-2],[4,-7],[1,-2],[6,2],[18,17],[6,3],[6,0],[7,-2],[10,-13],[7,-3],[13,-1],[25,-8],[12,-1],[6,-3],[5,-4],[0,-4],[-1,0],[-2,0],[-1,0],[3,-7],[4,3],[5,8],[3,4],[5,0],[4,-4],[3,-8],[0,-16],[-1,-13],[-5,-24],[-1,-14],[0,-14],[1,-13],[2,-12],[2,-12],[3,-9],[5,-11],[5,-8],[8,-5],[6,-6],[3,-1],[6,0],[3,-1],[3,-3],[5,-21],[-1,-81],[5,-22],[8,-19],[11,-12],[12,-4],[3,1],[5,3],[3,0],[4,-1],[4,-5],[3,-2],[4,-3],[4,-8],[4,-17],[3,-21],[0,-48],[1,-25],[1,-5],[4,-13],[1,-6],[0,-7],[-2,-13],[0,-6],[-3,-7],[-18,-20],[-10,-17],[-9,-21],[-8,-25],[-5,-26],[-17,-131],[1,-23],[7,-19],[23,-35],[5,-19],[1,-21],[-5,-24],[-18,-56],[-3,-19],[-2,-20],[-6,-41],[-1,-11],[-4,-48],[0,-20],[1,-16],[3,-14],[5,-17],[3,-17],[-1,-13],[4,-5],[3,-8],[4,-20],[1,2],[0,1],[1,1],[2,-10],[-2,-25],[2,-21],[-1,-11],[-3,-12],[-1,-10],[0,-10],[4,-30],[-4,-5],[-2,-11],[-4,-50],[0,-26],[1,-14],[10,-36],[1,-20],[-4,-19],[-5,-19],[-3,-20],[-2,-50],[2,-51],[-1,-26],[-7,-48],[-2,-27],[2,-51],[-1,-14],[-3,-23],[2,-36],[0,-25],[-1,-12],[-5,-25],[-1,-13],[-4,-46],[-3,-19],[-5,-16],[-8,-21],[-1,-3],[-3,5],[0,23],[-2,10],[-9,8],[-22,5],[-4,11],[-2,46],[-3,20],[-7,13],[-1,-3],[-3,-7],[-1,-2],[-3,0],[-2,3],[-2,4],[-2,1],[-3,3],[-9,21],[-15,25],[-6,14],[-18,55],[-8,12],[-9,-8],[-1,-12],[3,-23],[-2,-12],[0,-2],[-3,-16],[-1,-2],[-1,-3],[-3,1],[-5,4],[-6,-7],[0,-10],[3,-12],[1,-14],[0,-16],[1,-6],[2,-5],[2,-4],[1,-3],[-4,-5],[-7,-5],[-6,-7],[1,-9],[5,-5],[7,-2],[4,-3],[-4,-9],[-5,-5],[-6,-2],[-9,-1],[-3,3],[-13,22],[-48,44],[-17,28],[-13,9],[-6,10],[-17,39],[-3,6],[-5,5],[-10,6],[-6,4],[-3,7],[-2,0],[1,-3],[1,-9],[-7,0],[-5,-1],[-5,-5],[-5,-9],[-1,-9],[1,-12],[43,-147],[3,-22],[1,-25],[3,-13],[1,-7],[-1,-4],[-4,-1],[-38,1],[-2,5],[1,21],[-1,14],[-3,11],[-15,27],[-3,4],[-4,4],[-2,6],[-2,12],[-18,36],[-5,4],[-19,25],[-2,10],[6,12],[-3,12],[-12,27],[-6,7],[-3,2],[-3,1],[-2,1],[-4,4],[-1,5],[-2,7],[-2,6],[-9,6],[-5,7],[-4,9],[-20,53],[-13,26],[-1,10],[3,12],[1,8],[-3,10],[-5,8],[-3,4],[-6,2],[-6,-1],[-5,3],[-2,10],[1,6],[3,12],[1,7],[0,12],[0,5],[-1,5],[-5,11],[-16,21],[-7,16],[-5,6],[-5,3],[-7,0],[-3,2],[-3,4],[0,5],[3,18],[-1,3],[-2,2],[-2,4],[-4,4],[-3,2],[-3,-2],[-3,-4],[-5,-10],[-7,26],[-3,9],[-7,6],[-2,0],[-7,0],[-2,1],[-1,2],[0,2],[-2,2],[-2,5],[-5,8],[-2,4],[-3,3],[-3,3],[-4,2],[-3,0],[-4,-2],[-3,-4],[-4,-3],[-3,1],[-1,5],[-4,28],[-2,5],[-3,4],[-5,7],[-4,-8],[-4,4],[-4,10],[-3,25],[-6,11],[-31,58],[-34,44],[-36,30],[-4,9],[-4,22],[-4,12],[-49,89],[-48,70],[-45,74],[-7,9],[-8,12],[-5,15],[-3,21],[2,9],[5,18],[1,12],[-2,12],[-8,20],[-3,10],[-1,7],[0,6],[1,4],[0,4],[-2,7],[-2,5],[-1,6],[-1,8],[-1,21],[-1,12],[-4,9],[-43,55],[-53,77],[-66,101],[-7,15],[-8,28],[-5,9],[-41,139],[-3,25],[-22,86],[-8,19],[-10,15],[-24,24],[-10,15],[-10,18],[-24,70],[-27,80],[-23,98],[-1,5],[-1,11],[4,13],[9,23],[2,25],[-1,25],[-3,25],[-2,24],[-2,12],[-4,13],[-16,32],[-2,6],[-2,6],[-2,14],[-12,44],[-14,35],[-4,13],[-3,14],[-2,25],[-1,26],[-3,6],[-11,22],[-4,10],[2,3],[1,4],[1,9],[-3,5],[-1,0],[1,2],[1,4],[2,2],[-2,23],[-2,15],[-2,6],[-6,3],[-11,15],[-6,4],[-1,3],[-3,6],[-2,2],[0,-1],[-1,-2],[-1,-2],[-7,-2],[-3,1],[-2,6],[1,3],[4,9],[2,6],[0,3],[0,13],[-1,8],[-12,23],[-4,-4],[-1,6],[0,10],[1,8],[1,2],[1,1],[1,2],[1,5],[-1,4],[-3,14],[3,3],[3,1],[3,-1],[3,-3],[1,5],[0,5],[0,5],[-1,5],[-6,-1],[-3,6],[-8,32],[-2,40],[-5,30],[-7,25],[-40,88],[-7,20],[-12,46],[-15,41],[-10,18],[-19,28],[-3,7],[-3,13],[-6,11],[-12,15],[-6,11],[-3,11],[-1,13],[0,15],[-1,12],[-2,7],[-3,5],[-3,7],[-3,8],[-2,8],[-1,8],[0,10],[1,13],[1,12],[1,12],[-1,14],[-4,13],[-16,30],[-16,36],[-6,10],[-21,25],[-13,9],[-11,3],[-6,0],[-5,2],[-5,4],[-4,10],[-6,22],[-4,8],[-7,2],[-5,-3],[-10,-10],[-5,-2],[-3,0],[-3,2],[-3,3],[-2,4],[-3,7],[-1,1],[-2,-1],[-4,-1],[-2,2],[-5,8],[-1,2],[0,7],[4,8],[1,6],[0,13],[-3,8],[-4,4],[-6,3],[5,28],[1,12],[-1,43],[-2,14],[-3,9],[-3,-6],[-1,10],[2,28],[-1,14],[-3,12],[-5,5],[-6,-6],[-3,18],[2,53],[-1,22],[-10,25],[-3,3],[-4,4],[-1,9],[1,24],[-1,20],[-17,116],[-18,95],[-3,14],[-1,6],[0,6],[2,7],[0,8],[-1,6],[-12,25],[-3,9],[-3,22],[-2,14],[0,11],[-1,3],[-2,4],[-3,2],[-3,1],[-2,3],[-1,5],[-1,13],[-3,11],[0,3],[4,2],[2,-2],[2,-3],[1,-5],[1,-4],[2,-8],[3,8],[6,22],[3,8],[6,12],[1,6],[0,22],[-1,9],[-4,4],[-5,1],[-1,5],[0,7],[0,11],[-3,11],[-3,9],[-10,17],[-3,-4],[-1,-4],[0,-9],[1,0],[3,-4],[0,-4],[-1,-6],[0,-4],[-3,-4],[-6,6],[-9,16],[-23,74],[-11,28],[-25,33],[-5,4],[-5,2],[-6,1],[-6,0],[-3,0],[-1,2],[-1,9],[0,4],[-2,3],[-3,3],[-5,1],[-6,-2],[-6,1],[-2,6],[-1,15],[-4,8],[-9,13],[-16,28],[-18,23],[-29,29],[-8,16],[-6,-1],[-15,-12],[-4,-1],[-4,2],[-6,8],[-3,-4],[-2,3],[-2,5],[-3,4],[-2,0],[-5,-3],[-3,-1],[-4,6],[-10,38],[-8,18],[-4,9],[-1,12],[0,68],[-4,84],[-10,107],[-2,10],[-3,5],[-4,1],[-12,7],[-14,15],[-5,4],[-7,1],[-5,4],[-5,9],[-20,52],[-5,18],[-4,19],[-4,50],[-4,21],[-9,14],[-9,2],[-7,3],[-3,5],[-1,8],[-41,151],[-5,14],[-22,35],[-5,17],[-3,19],[-3,9],[-3,5],[-2,1],[-6,9],[-1,3],[-3,3],[-3,2],[-3,2],[-8,11],[-5,4],[-56,-2],[-11,5],[-11,14],[-14,28],[-42,119],[-18,40],[-1,4],[-2,9],[-1,3],[-2,3],[-4,4],[-3,3],[-2,2],[-3,1],[-4,-1],[-1,-2],[-1,-1],[-3,7],[-14,34],[-4,5],[-6,2],[-5,5],[-30,71],[-25,52],[-2,8],[-13,22],[-9,28],[-20,29],[-11,29],[-4,4],[-7,-1],[-3,2],[-1,5],[1,3],[2,6],[1,3],[-1,5],[-1,0],[-2,0],[-2,1],[-8,12],[-3,10],[-7,29],[-6,16],[-2,5],[-5,8],[-2,3],[-2,6],[-1,3],[0,3],[0,6],[-2,9],[-3,15],[-2,14],[-4,14],[-1,15],[-9,46],[-3,9],[-4,10],[-3,10],[-2,10],[-2,8],[-5,3],[5,17],[1,13],[-3,11],[-5,12],[-5,7],[-2,5],[-1,6],[0,8],[-1,9],[-2,7],[-3,3],[-7,3],[2,9],[5,11],[3,11],[0,9],[3,11],[2,10],[1,9],[-2,8],[-4,16],[3,5],[-2,8],[-4,10],[1,9],[-6,17],[-2,7],[4,16],[3,4],[4,-3],[4,3],[2,-1],[3,-2],[3,0],[2,2],[5,8],[3,4],[5,8],[3,2],[4,1],[3,3],[12,16],[5,3],[5,-3],[8,-15],[4,-7],[3,-4],[2,-1],[3,4],[3,7],[12,6],[10,-3],[42,-30],[21,-28],[5,-4],[5,-1],[4,-5],[2,-11],[2,-25],[8,-22],[34,-60],[9,-10],[11,-8],[46,-14],[3,-3],[12,-13],[4,-4],[13,-5],[6,1],[5,6],[5,4],[6,-3],[6,-7],[5,-4],[12,-2],[23,5],[9,5],[28,21],[12,12],[6,-2],[12,-9],[4,0],[4,4],[14,3],[16,-13],[12,-8],[10,-14],[11,-10],[5,-14],[3,-8],[5,-2],[9,-7],[11,6],[64,57],[8,-6],[38,-100],[46,-80],[12,-11],[6,-8],[4,-10],[13,-48],[2,-11],[4,-49],[2,-17],[6,-26],[1,-6],[-1,-15],[-2,-17],[-2,-10],[2,-4],[8,4],[3,-1],[3,-7],[1,8],[2,1],[5,-5],[0,-3],[1,-3],[2,-2],[2,0],[3,3],[2,1],[7,-3],[6,-7],[4,-11],[3,-12],[2,0],[1,3],[2,3],[1,2],[3,-7],[6,-17],[4,-8],[4,-6],[2,-5],[1,-5],[1,-30],[-4,-43],[0,-3],[-1,-45],[0,-5],[-7,-8],[-12,-9],[-3,-3],[-2,-7],[0,-9],[0,-20],[7,14],[4,7],[5,3],[1,3],[5,10],[1,1],[1,3],[10,-53],[1,-5],[16,4],[6,0],[6,-5],[10,-12],[6,-3],[4,-4],[6,-19],[3,-6],[5,-1],[5,2],[3,-3],[3,-20],[3,-8],[5,-6],[4,-4],[18,-13],[7,-23],[0,-25],[3,-18],[24,-46],[27,-26],[17,-6],[6,-8],[9,-13],[5,-4],[7,-4],[6,-8],[7,-16],[22,-21],[25,-37],[27,-45],[5,-5],[10,-5],[4,-5],[5,-13],[7,-9],[3,-6],[2,-15],[3,-8],[6,-15],[8,-16],[9,-10],[27,-13],[9,-8],[5,-2],[4,-5],[8,-35],[15,-29],[5,-15],[2,-21],[8,4],[6,-11],[6,-14],[7,-8],[6,-8],[3,-20],[2,-69],[0,-8],[-2,-8],[-3,-7],[-2,-8],[-1,-11],[-1,-5],[-3,-9],[0,-5],[2,-5],[2,-2],[3,-1],[2,-2],[2,-6],[0,-3],[-1,-2],[0,-3],[5,-20],[0,-7],[0,-4],[2,-1],[2,4],[2,6],[-1,4],[-2,4],[-1,4],[0,20],[-1,4],[-8,11],[-2,3],[3,10],[9,7],[10,-2],[6,-23],[1,-8],[-1,-16],[0,-8],[4,-20],[0,-6],[2,-12],[3,-15],[5,-9],[3,5],[0,8],[-4,21],[-1,10],[0,24],[1,11],[2,11],[4,8],[4,5],[6,3],[6,0],[3,-2],[0,-5],[0,-6],[1,-5],[2,-3],[5,-4],[2,-3],[1,-4],[1,-16],[1,-5],[2,-10],[1,-3],[1,-4],[7,-11],[3,-2],[1,-4],[0,-4],[0,-1],[19,-118],[7,-25],[8,-23],[20,-44],[15,-25],[16,-16],[13,3],[34,-51],[7,-5],[5,-14],[3,-3],[4,-7],[4,-16],[4,-19],[2,-13],[1,-19],[3,-18],[4,-13],[7,-5]],[[83553,44571],[5,-14],[5,-18],[3,-22],[-4,-24],[-2,-6],[-9,-13],[-12,-28],[-5,-15],[-4,-6],[-17,-10],[-2,-4],[-3,-3],[-18,5],[-5,-4],[-13,-14],[-3,-5],[0,-11],[-2,-10],[-4,-5],[-6,0],[-4,6],[-7,18],[-5,4],[-41,12],[-4,-2],[-2,4],[-18,11],[-2,4],[-3,12],[-1,4],[-12,11],[-1,3],[-8,26],[-3,3],[-2,0],[-2,1],[-2,26],[-3,15],[-11,30],[-3,5],[-2,4],[-3,2],[-5,0],[-3,3],[-2,4],[-1,9],[-3,-5],[-2,2],[-1,6],[-2,5],[-5,6],[-3,2],[-11,2],[-5,3],[-10,16],[-17,19],[-2,7],[-1,16],[-3,8],[-11,6],[0,2],[0,8],[0,2],[-2,1],[-1,-2],[-2,-2],[-1,0],[-7,3],[-13,2],[-12,8],[-6,2],[-4,0],[-6,-3],[-5,-5],[-2,-6],[-2,-10],[-6,4],[-11,16],[-2,1],[-3,-4],[-3,0],[-2,2],[-7,10],[-7,-3],[-11,0],[-12,3],[-11,10],[-11,4],[-4,4],[-13,20],[-3,10],[-5,19],[-3,6],[-4,8],[-8,11],[-4,9],[-1,10],[2,16],[4,16],[6,14],[13,23],[7,8],[8,5],[8,1],[4,2],[8,10],[5,4],[10,4],[9,1],[2,1],[4,6],[2,1],[11,0],[22,-8],[2,1],[4,6],[14,5],[5,-2],[11,-8],[4,0],[5,7],[6,5],[17,7],[5,0],[4,-3],[1,-8],[4,-6],[33,-8],[6,4],[34,53],[4,-1],[1,-14],[2,-6],[12,-20],[16,-49],[7,-12],[4,-6],[5,-4],[6,-1],[4,5],[5,2],[7,-5],[6,-10],[4,-10],[0,-24],[2,-15],[1,-23],[1,-10],[4,-7],[16,-16],[5,0],[2,8],[3,7],[7,4],[13,4],[6,-1],[5,-5],[4,-10],[2,-15],[3,-8],[20,-23],[7,-20],[11,-49],[7,-19],[7,-12],[19,-20],[8,-13]],[[82096,45337],[7,-3],[4,-14],[3,-14],[5,-12],[2,-17],[-5,-11],[-5,-12],[-8,5],[-15,22],[-5,12],[-4,3],[-1,3],[1,4],[9,27],[3,5],[5,-2],[4,4]],[[83256,45364],[4,2],[8,0],[7,-4],[-1,-10],[-9,-12],[-3,-6],[1,-8],[-4,-2],[-4,-1],[-3,-2],[-2,-7],[1,-11],[5,-10],[0,-12],[-2,-5],[-4,-13],[-1,-6],[-3,2],[-3,4],[-2,6],[-2,5],[-2,4],[-3,-3],[-3,-4],[-3,-1],[-2,1],[-3,6],[2,17],[2,6],[4,1],[-1,6],[-1,2],[4,5],[4,6],[1,6],[-5,4],[1,13],[-5,23],[2,13],[6,-9],[1,-4],[1,-6],[2,-13],[1,-5],[6,-5],[4,4],[3,10],[1,13]],[[83210,45425],[1,-8],[2,-5],[2,-5],[3,-8],[-4,-2],[-1,-6],[1,-6],[-1,-3],[-9,-2],[-3,2],[-3,11],[-3,4],[-3,-4],[-4,-11],[-2,-3],[-4,0],[1,-8],[2,-4],[3,1],[1,6],[2,-4],[-3,-14],[-2,-7],[-2,-1],[-3,2],[-2,-5],[-1,-15],[0,-7],[1,-11],[3,-11],[3,-8],[-6,-3],[-13,12],[-5,-9],[-2,4],[2,0],[-1,7],[1,8],[5,20],[0,5],[0,15],[-1,4],[-2,2],[-2,0],[0,2],[0,16],[-1,16],[0,5],[2,5],[2,1],[4,-1],[2,0],[0,2],[2,11],[0,5],[-1,19],[2,4],[0,9],[-3,17],[2,1],[10,10],[1,-9],[0,-12],[2,-11],[3,-4],[14,4],[4,-1],[3,-2],[1,-2],[3,-6],[1,-5],[-1,-3],[-2,-2],[-1,-2]],[[84263,45573],[0,-7],[-1,-4],[-2,-4],[-1,-3],[-2,-41],[-2,-10],[-9,-12],[-12,0],[-23,8],[-23,-10],[-11,-1],[-6,11],[1,20],[4,15],[25,44],[4,5],[4,4],[9,5],[5,1],[9,-1],[7,-2],[7,-5],[7,-9],[2,4],[3,0],[2,-2],[3,-6]],[[82397,45569],[10,-8],[11,-17],[8,-21],[2,-23],[-2,-10],[-10,-29],[-2,-6],[-2,-8],[-1,-45],[-4,-10],[-11,-24],[-3,-12],[-5,-19],[-5,-18],[-7,-28],[-10,-20],[-6,-14],[3,-18],[-1,-9],[1,-6],[3,-1],[2,10],[4,4],[1,-6],[4,-2],[3,-6],[5,-2],[-7,-19],[-11,-4],[-4,3],[-9,-14],[-9,0],[-3,6],[5,14],[2,13],[3,15],[-4,3],[-9,-1],[-7,-12],[0,-16],[1,-20],[0,-22],[-3,3],[-1,7],[0,8],[-2,7],[-3,0],[-2,-8],[-3,-1],[-1,3],[-1,6],[-2,5],[-3,3],[-4,-2],[-11,-9],[-5,-2],[-1,2],[-2,5],[-2,2],[-3,-2],[-4,-6],[-2,-1],[-2,3],[-5,16],[-3,6],[-4,1],[-13,1],[-1,-8],[-3,-5],[-4,1],[-4,6],[3,3],[2,4],[1,5],[-2,4],[-3,1],[-2,-1],[-3,-3],[-2,-1],[-2,-4],[1,-7],[1,-11],[-3,-4],[-3,0],[-3,2],[-2,4],[-2,5],[-2,13],[-2,6],[-3,5],[-1,-1],[-2,-2],[-4,-2],[-5,2],[-16,20],[-8,2],[-3,15],[0,13],[1,12],[4,15],[6,-4],[3,4],[1,-5],[1,-8],[1,-5],[8,1],[6,-1],[4,1],[4,3],[4,6],[2,-3],[3,0],[3,-2],[3,-1],[1,2],[2,3],[2,3],[2,0],[1,-3],[1,-6],[3,-6],[3,10],[3,3],[1,6],[-9,8],[1,24],[2,21],[1,36],[-3,33],[-7,13],[-3,32],[6,18],[6,5],[8,-1],[2,2],[1,4],[2,10],[2,4],[4,7],[8,9],[4,6],[24,53],[5,7],[25,20],[5,1],[8,-10],[21,-12],[11,-3],[4,-5],[6,-7],[5,-4],[11,-3]],[[83079,45654],[7,-9],[5,-12],[2,-14],[-3,-18],[-3,-9],[-4,-9],[-6,-6],[-8,0],[-8,16],[-1,27],[6,24],[13,10]],[[83111,45370],[-1,-1],[-2,-2],[-1,-1],[2,-5],[-2,-3],[-2,-3],[-2,-5],[0,-9],[1,-8],[1,-9],[2,-7],[-2,-2],[-1,-2],[0,-3],[1,-5],[-5,-6],[-3,-7],[-4,-2],[-5,7],[-1,-8],[-2,-3],[-2,1],[-3,4],[-4,3],[-3,-1],[-4,-3],[-17,-5],[-5,2],[-7,12],[-6,19],[-3,4],[-4,2],[-2,-3],[-1,-6],[-2,-6],[-7,-4],[-12,6],[-6,-6],[-8,6],[-5,-4],[-5,-9],[-7,-9],[3,-4],[4,-9],[2,-3],[3,-1],[22,0],[23,-8],[5,-4],[3,-5],[0,-4],[3,-8],[1,-5],[-2,-4],[-3,-3],[-7,-3],[-3,1],[-5,2],[-3,1],[-4,4],[-2,0],[0,-1],[-1,-3],[-2,-2],[-2,-2],[-3,4],[-11,19],[-6,6],[-12,1],[-12,-4],[-57,-34],[-14,6],[-7,35],[1,15],[3,12],[5,11],[4,15],[1,9],[0,9],[0,9],[-1,9],[-2,9],[-2,8],[-2,9],[0,11],[-4,-8],[-1,-13],[1,-26],[-2,-8],[-5,-3],[-5,-3],[-5,-4],[-7,-21],[-4,-18],[-1,-4],[-2,-3],[-4,-1],[-32,-57],[-5,-3],[-6,6],[-6,7],[-5,4],[-3,-1],[-9,-7],[1,1],[-1,2],[-2,1],[-1,0],[-2,-7],[-3,-3],[-2,-8],[-30,-33],[-3,5],[-2,0],[-2,-1],[-3,-2],[-1,3],[-2,11],[-2,3],[-4,0],[-2,-4],[-1,-4],[-2,-5],[-3,-2],[-2,-1],[-4,-1],[-2,1],[-3,3],[-2,4],[-3,6],[-3,-1],[-4,-3],[-1,-2],[-11,-10],[-31,-38],[-11,-10],[-12,-7],[-24,-14],[-15,-3],[-9,7],[-8,4],[-13,10],[-9,0],[-6,-5],[-5,-17],[-4,-10],[-4,-8],[-15,-7],[-17,-3],[-5,13],[-6,8],[-6,7],[-6,-2],[-6,0],[-15,11],[-7,1],[-6,4],[-9,14],[-3,-1],[-1,6],[-4,13],[-4,12],[1,9],[4,14],[-2,11],[-1,13],[0,6],[6,14],[5,14],[11,4],[2,12],[0,7],[-2,4],[-2,3],[-1,2],[-1,4],[-1,6],[-2,6],[-5,-2],[-2,6],[2,19],[0,15],[-7,8],[12,49],[12,6],[2,11],[-1,28],[6,-9],[2,-2],[4,-1],[3,1],[26,18],[13,17],[16,25],[10,12],[-2,13],[6,7],[9,4],[6,4],[6,-16],[4,-2],[9,-1],[3,-3],[4,-6],[8,-9],[10,-16],[23,-20],[-2,9],[1,8],[2,6],[1,8],[0,11],[1,1],[3,-3],[3,-3],[15,0],[6,3],[4,5],[3,-10],[2,-38],[5,-17],[1,12],[1,29],[3,8],[3,-4],[2,-11],[2,-40],[1,-9],[2,-7],[14,-15],[4,2],[2,3],[3,2],[4,-2],[-1,-4],[-1,-4],[3,-2],[2,-2],[2,-4],[3,-5],[-1,-2],[-1,-4],[0,-4],[2,-2],[2,0],[2,-2],[0,-2],[1,-4],[-3,0],[-3,0],[-2,-2],[-1,-2],[2,-9],[3,-21],[3,-9],[5,-5],[5,0],[17,12],[2,-1],[2,-4],[1,-5],[0,-5],[0,-2],[4,0],[5,-1],[5,-4],[4,-7],[6,9],[11,26],[5,6],[0,2],[2,4],[2,3],[1,1],[1,3],[2,2],[2,0],[11,5],[10,0],[2,-1],[5,-6],[2,-1],[15,1],[6,3],[4,6],[3,10],[0,11],[-2,11],[-4,8],[-5,3],[-1,3],[-2,5],[-2,4],[-1,-2],[-1,-4],[-1,-4],[-4,-7],[-4,17],[-13,22],[-4,15],[-2,0],[-2,-6],[-4,5],[-8,18],[-5,4],[-6,-4],[-9,-10],[-4,3],[-5,5],[-5,6],[-4,11],[-16,20],[-16,26],[-4,9],[-6,20],[-4,10],[-8,12],[-4,9],[-2,5],[-3,2],[-2,7],[2,15],[2,17],[3,10],[3,6],[2,2],[2,0],[2,0],[8,11],[1,1],[5,2],[23,19],[6,2],[11,2],[2,-4],[2,-6],[2,-6],[2,1],[3,4],[2,1],[6,-3],[13,0],[12,-5],[10,-13],[5,-22],[1,-24],[1,-12],[2,-5],[1,-4],[10,-24],[6,-24],[2,-7],[2,-1],[1,1],[1,2],[1,0],[9,-18],[3,-2],[4,2],[5,6],[5,8],[8,15],[2,6],[0,6],[2,2],[3,3],[3,5],[4,14],[6,5],[6,2],[5,-1],[3,-3],[4,-8],[3,-1],[12,0],[2,-1],[2,-3],[1,-2],[1,-2],[10,-3],[2,-1],[4,-10],[9,-39],[-2,-10],[-1,-14],[-1,-27],[-7,-41],[0,-9],[3,-3],[5,8],[3,11],[2,6],[1,5],[3,15],[3,11],[0,6],[-2,6],[-1,8],[0,23],[4,18],[6,14],[7,10],[10,8],[13,4],[13,0],[12,-4],[6,-4],[4,-4],[3,-7],[2,-13],[1,-17],[4,-28],[8,-31],[-2,-22],[-4,-23],[2,-21],[0,-15],[1,-13],[3,-9],[7,-4],[4,2],[6,4],[5,5],[3,5],[0,6],[-2,5],[0,4],[6,3],[1,4],[1,5],[0,8],[1,3],[4,-7],[4,-13],[2,-10]],[[84173,45561],[1,-5],[-1,-14],[-2,-8],[-5,-4],[-16,-2],[-6,-3],[-5,-8],[-2,-15],[2,-23],[0,-12],[-2,-8],[-5,-1],[-7,5],[-6,6],[-3,5],[-1,5],[-2,-1],[-2,-5],[-1,-8],[1,-11],[0,-5],[1,-5],[12,-39],[0,-19],[-12,-16],[-3,-1],[-13,-4],[-2,-2],[-4,-7],[-2,-1],[-9,3],[-2,-1],[-7,-7],[-1,-4],[-4,0],[-20,-10],[-3,-5],[-8,-17],[-3,-4],[-18,-13],[-12,-4],[-29,1],[-4,-1],[-6,-4],[-4,-1],[-7,7],[-18,6],[-13,-3],[-10,-12],[-10,-16],[-10,-13],[-36,-21],[-12,-12],[-11,-16],[-4,-2],[-3,0],[-3,2],[-3,0],[-4,3],[-5,5],[-4,7],[-3,5],[-4,-7],[-5,-21],[-3,-4],[-2,5],[-2,26],[-3,9],[-11,12],[-11,1],[-12,-1],[-12,4],[-10,7],[-7,3],[-5,-3],[-3,-13],[1,-13],[2,-13],[-1,-12],[-9,-20],[-12,0],[-24,16],[-13,-2],[-10,-8],[-17,-19],[-5,-2],[-15,2],[-9,6],[-1,3],[-8,-1],[-2,0],[-5,8],[-12,26],[-2,9],[-2,15],[-4,7],[-6,1],[-5,-5],[-4,-8],[-2,-9],[-2,-8],[-5,-3],[-6,2],[-4,5],[-3,5],[-5,4],[-3,0],[-5,-1],[-3,1],[-5,11],[-2,1],[-5,13],[-2,4],[-2,2],[-2,1],[-6,1],[-6,-2],[-12,-6],[-6,0],[-9,3],[-3,1],[-3,-1],[-3,-2],[-3,-1],[-4,4],[-16,-21],[-12,1],[-10,3],[-5,7],[-12,21],[-5,5],[-5,0],[-4,-2],[-10,-10],[-10,-7],[-23,-8],[-8,-11],[-1,0],[-1,0],[-1,-3],[0,-3],[2,-6],[0,-3],[-3,-4],[-4,-4],[-3,0],[-2,6],[-3,32],[-2,2],[-3,0],[-3,1],[-6,5],[-4,8],[-4,10],[-1,13],[-1,86],[1,15],[4,14],[14,31],[0,13],[-1,15],[0,20],[8,-18],[6,-10],[3,2],[1,1],[8,10],[2,1],[2,1],[2,-2],[2,-5],[3,5],[2,8],[2,12],[0,2],[2,8],[0,2],[3,1],[2,-2],[2,-2],[2,-1],[1,1],[1,1],[2,1],[2,1],[2,-1],[1,-6],[2,-1],[4,4],[1,6],[1,9],[1,9],[2,-2],[3,-6],[1,-4],[2,0],[3,13],[10,20],[2,10],[3,4],[17,14],[28,-4],[4,4],[6,19],[3,5],[4,-3],[2,-8],[1,-10],[3,-7],[7,-2],[10,14],[6,-6],[3,-5],[4,-4],[4,-3],[3,2],[2,7],[1,8],[-3,14],[12,-10],[5,-7],[2,-10],[3,-8],[15,-18],[5,-4],[19,5],[5,-3],[5,-5],[6,-3],[11,-2],[13,3],[6,0],[5,-6],[6,-18],[4,-9],[6,-7],[15,-11],[5,-1],[6,0],[3,-2],[2,-4],[3,-3],[7,1],[3,0],[2,-3],[1,-5],[2,-3],[3,-2],[3,0],[5,-2],[3,-2],[3,-6],[7,-22],[6,-6],[12,-28],[8,-6],[4,2],[4,4],[4,3],[5,-1],[5,-4],[2,-4],[1,-7],[1,-4],[2,-1],[3,4],[2,3],[10,13],[3,2],[0,11],[0,5],[2,1],[7,-3],[-1,12],[0,15],[2,12],[4,5],[4,-3],[11,-23],[5,1],[15,11],[6,3],[3,-2],[2,-2],[1,-1],[3,0],[2,2],[6,10],[5,-6],[5,-4],[6,-1],[11,11],[2,4],[1,6],[2,3],[10,3],[2,3],[2,5],[2,4],[3,1],[3,-3],[2,-6],[1,-5],[-4,-7],[-1,-11],[1,-12],[4,-9],[3,-1],[6,2],[3,-1],[3,-3],[5,-7],[4,-2],[4,-4],[25,-44],[8,-9],[8,-1],[45,17],[8,6],[6,11],[4,14],[-1,14],[-1,3],[-5,3],[-1,2],[-1,5],[0,4],[0,3],[1,6],[2,6],[15,13],[4,7],[10,27],[5,5],[10,1],[5,4],[5,-4],[5,3],[4,6],[4,3],[7,2],[4,6],[6,16],[7,11],[17,12],[17,41],[2,8],[-3,6],[-6,3],[-12,1],[-6,-3],[-6,-6],[-6,-8],[-5,-9],[-2,0],[-10,-2],[-2,2],[0,4],[1,9],[8,27],[2,8],[1,15],[3,8],[11,12],[5,9],[3,3],[3,0],[3,-3],[2,-11],[2,-2],[5,-3],[5,-6],[8,-12],[4,-9],[1,-8],[-1,-21],[8,-39],[4,-10],[1,-6]],[[82116,45561],[9,-18],[11,-15],[6,-18],[-4,-26],[-3,-6],[-8,-16],[-6,-6],[-6,-16],[-3,-5],[-20,-3],[-3,-3],[-2,-13],[-5,-9],[-37,-29],[-12,-15],[-9,-21],[-6,-24],[-4,-9],[-6,-4],[-5,-4],[-3,-11],[1,-14],[4,-11],[2,4],[-1,2],[-3,10],[5,4],[2,-10],[-1,-29],[-2,-6],[-4,-5],[-5,-5],[-4,-2],[-7,-1],[-6,1],[-6,3],[-5,7],[0,9],[6,9],[12,13],[3,8],[3,13],[1,14],[-2,11],[-1,4],[-5,21],[-2,2],[-3,2],[-2,2],[-8,13],[-3,9],[-2,8],[-2,9],[-5,9],[-10,13],[-19,38],[-8,10],[-36,37],[-11,4],[-33,0],[-9,7],[-9,14],[-7,17],[-22,69],[-6,57],[2,16],[8,3],[6,-1],[4,-5],[2,-8],[4,-9],[4,-3],[4,2],[8,11],[4,-6],[6,-3],[11,-3],[5,-2],[46,-34],[10,7],[25,0],[11,5],[11,17],[20,42],[11,10],[5,0],[6,-2],[6,-5],[5,-7],[4,-6],[19,-9],[46,-40],[9,-13],[9,-16],[15,-40]],[[80282,45875],[2,-2],[5,0],[1,-4],[-1,-6],[-2,-1],[-3,2],[-7,2],[-15,11],[-17,7],[-3,4],[-5,3],[-11,-4],[-5,3],[-1,8],[1,11],[2,9],[4,4],[15,-14],[14,-5],[9,-5],[15,-18],[2,-5]],[[82102,46381],[1,-16],[-5,-5],[-12,0],[-3,2],[-5,5],[-5,2],[-3,4],[-1,2],[-2,2],[-1,-1],[-2,-3],[-2,-2],[-2,-2],[-2,0],[-2,2],[-1,2],[-2,3],[-3,1],[-9,-10],[-2,0],[1,-8],[3,-3],[3,-1],[3,-3],[3,-5],[2,-3],[1,-4],[-6,-8],[-7,3],[-10,17],[-4,-8],[-1,-3],[0,-4],[0,-2],[1,1],[0,-4],[2,-5],[0,-3],[-1,-2],[-2,-2],[-2,0],[-1,2],[-1,0],[-6,12],[0,4],[3,22],[-10,-2],[-5,2],[-2,7],[1,14],[3,7],[4,7],[4,10],[-4,10],[3,5],[6,2],[6,0],[23,0],[23,-5],[6,-5],[19,-22],[5,-9]],[[81305,47079],[4,-6],[3,-7],[3,-9],[1,-15],[-1,-13],[-2,-11],[-3,-8],[-5,-4],[-3,-1],[-7,1],[-2,2],[-1,5],[-2,-1],[-5,-6],[-7,1],[-2,6],[-1,12],[-3,13],[2,5],[8,13],[1,4],[7,15],[3,-3],[3,2],[4,3],[5,2]],[[78445,47269],[-1,-8],[-4,-7],[-6,-7],[1,-7],[4,-8],[2,-6],[-3,-3],[-13,6],[-2,2],[-1,-2],[-2,0],[-3,0],[-2,0],[-1,-3],[-3,-13],[-3,6],[-4,19],[-3,9],[-33,55],[-8,8],[13,27],[7,6],[8,-4],[8,-9],[4,-3],[5,-1],[4,-2],[3,-7],[5,-11],[17,-11],[8,-9],[3,-17]],[[82179,47648],[0,-2],[0,-4],[2,-3],[1,0],[-14,-25],[-6,-3],[-4,7],[7,17],[15,28],[0,-4],[-1,-7],[0,-4]],[[82332,48460],[2,11],[3,-4],[5,-17],[-1,-22],[-5,-43],[-2,-34],[-3,-21],[0,-12],[-2,-4],[-5,11],[-10,35],[-2,9],[0,8],[1,13],[7,31],[1,11],[2,7],[8,14],[1,7]],[[82306,48268],[1,-4],[5,-4],[1,-5],[1,-6],[-3,-4],[-3,-17],[-3,-8],[-3,-10],[0,-15],[1,-8],[4,-14],[1,-9],[-1,-7],[-3,-2],[-3,0],[-3,-1],[-2,-5],[-2,-5],[-1,-4],[-3,-2],[-4,-1],[-3,0],[-2,-3],[-2,-4],[0,-4],[0,-7],[-1,-4],[-1,-2],[-5,-5],[0,-1],[-1,-3],[-2,-6],[-5,-9],[-2,-2],[-6,-4],[-2,-4],[-5,-14],[-2,-4],[-1,10],[-2,7],[-3,3],[-4,-4],[-2,12],[1,13],[2,13],[1,13],[1,2],[3,1],[3,3],[1,6],[-1,5],[-3,9],[-2,4],[0,11],[2,36],[-1,14],[-2,8],[-6,13],[-5,15],[-2,9],[-2,44],[1,12],[7,38],[1,40],[2,12],[12,46],[6,38],[1,7],[1,3],[10,9],[3,4],[16,31],[5,4],[2,3],[2,6],[2,2],[2,-7],[1,-8],[-1,-7],[-1,-7],[-4,-58],[1,-23],[8,-23],[4,-9],[4,-12],[1,-11],[-13,-9],[0,-12],[2,-12],[2,-8],[2,-10],[0,-11],[0,-26],[1,-14],[1,-6],[0,-22]],[[77918,48621],[0,-11],[2,-8],[6,-14],[-2,-4],[-6,3],[-4,11],[0,13],[4,10]],[[77888,48584],[3,-17],[4,-15],[12,-29],[3,-17],[-5,-11],[-3,5],[-6,13],[-3,6],[-3,4],[-6,6],[-2,3],[0,2],[0,12],[0,4],[-2,1],[-2,0],[-1,1],[-6,9],[-2,6],[0,9],[2,0],[0,-3],[1,-3],[1,-2],[2,0],[2,2],[-1,6],[-3,8],[-2,13],[0,5],[1,10],[1,6],[-15,29],[-4,3],[-5,0],[-3,2],[2,9],[-3,6],[-9,22],[-2,7],[0,7],[-4,10],[-1,7],[0,8],[3,7],[1,5],[-1,14],[-5,41],[0,15],[3,7],[10,11],[4,-4],[2,-3],[2,-4],[5,-18],[2,-3],[2,-2],[1,-1],[1,-2],[16,-35],[9,-12],[9,-31],[14,-29],[1,-13],[0,-9],[-1,-9],[1,-12],[0,-15],[-2,-11],[-5,2],[-3,-4],[-3,-1],[-2,1],[-3,4],[-6,-9],[-1,-5],[2,-3],[4,-1],[0,-4],[-1,-5],[0,-6]],[[77834,48875],[1,-9],[2,-9],[1,-10],[-1,-8],[-3,-4],[-9,-3],[-4,-4],[-2,-8],[-2,-15],[-2,-6],[-6,-4],[-7,2],[-6,5],[-5,5],[-2,-8],[-1,-8],[-3,-3],[-4,3],[-2,9],[0,22],[-2,10],[-4,-1],[1,13],[3,35],[0,16],[-1,12],[-3,8],[-5,6],[2,7],[0,5],[-2,9],[-2,12],[0,4],[2,22],[2,13],[3,5],[5,-3],[3,-9],[2,-8],[3,-4],[15,-30],[6,-14],[3,-5],[9,-6],[4,-6],[2,-10],[1,-6],[7,-13],[1,-9]],[[77728,49112],[7,-25],[3,-13],[0,-11],[0,5],[-2,-6],[-2,-2],[-2,3],[-1,14],[-3,2],[-7,0],[-3,2],[-2,5],[-2,5],[-3,4],[-4,2],[-6,0],[-4,3],[-4,7],[-3,10],[-4,8],[-7,3],[-10,-1],[-2,1],[0,7],[2,6],[1,6],[-3,6],[-2,-3],[-1,0],[0,4],[-1,6],[-2,0],[-2,-7],[-2,5],[-3,19],[-7,16],[-1,6],[1,7],[2,1],[4,-2],[3,3],[-1,5],[-3,12],[0,24],[4,18],[8,9],[11,-2],[3,-6],[2,-8],[3,-7],[6,-3],[3,-5],[2,-12],[2,-23],[4,-19],[15,-46],[0,-3],[-1,-7],[1,-3],[1,-2],[2,-1],[8,-12],[2,-5]],[[80267,49538],[1,-9],[-1,-9],[-2,-9],[-2,-8],[-5,-5],[-17,-13],[-3,-1],[-8,1],[-1,3],[-1,7],[0,8],[0,5],[2,5],[0,6],[0,6],[-1,5],[-2,2],[-4,-1],[-3,3],[3,9],[7,5],[13,6],[3,4],[1,3],[2,1],[5,-4],[3,-3],[8,-11],[2,-6]],[[80488,49816],[1,-3],[2,-4],[2,-4],[1,-5],[-1,-6],[-3,-4],[-6,-4],[-13,-21],[-3,-4],[-4,-2],[-20,-18],[-9,-10],[-9,-7],[-9,-20],[-7,-3],[-4,3],[-5,7],[-6,8],[-2,8],[1,13],[6,37],[3,98],[2,11],[4,5],[4,-1],[10,-6],[5,-1],[3,2],[6,8],[3,2],[5,-3],[10,-12],[4,-5],[5,0],[4,4],[2,5],[3,3],[5,-2],[4,-7],[4,-9],[2,-10],[0,-43]],[[77575,49501],[4,-11],[2,-19],[-1,-19],[-5,-12],[-3,41],[-2,9],[-8,24],[-3,-6],[-2,-1],[-2,-2],[3,-6],[9,-45],[3,-24],[0,-10],[-3,-4],[-4,1],[-6,4],[-7,-2],[-5,-3],[-5,-4],[-3,-6],[-5,-4],[-5,2],[-32,35],[-7,16],[-17,15],[-4,5],[-11,35],[-2,2],[-3,3],[-1,3],[2,22],[-5,24],[-45,137],[-4,5],[-1,3],[-1,3],[1,6],[0,3],[-5,21],[-2,5],[-4,13],[2,13],[7,25],[5,24],[2,13],[0,13],[0,27],[0,13],[2,11],[3,5],[5,4],[5,3],[5,0],[4,-1],[9,-7],[5,0],[5,4],[6,14],[4,2],[12,6],[4,-2],[-2,-11],[7,-3],[6,-12],[2,-14],[-2,-12],[-2,4],[-2,3],[-2,1],[-3,0],[2,-9],[3,-7],[2,-7],[0,-12],[2,-9],[4,-6],[4,-5],[4,-6],[2,-10],[4,-20],[2,-9],[5,-9],[1,-5],[1,-6],[0,-7],[1,-3],[2,-2],[5,-12],[1,-4],[1,-6],[-2,-1],[-2,-5],[-1,-7],[2,-3],[5,-3],[3,-8],[2,-22],[6,-20],[7,-13],[6,-15],[0,-25],[-3,3],[-7,13],[-1,0],[2,-11],[4,-13],[9,-20],[3,-4],[2,-1],[2,-3],[1,-7],[0,-16],[0,-10],[3,-4],[4,-1],[5,1],[3,-4],[3,-9],[1,-11],[-1,-9]],[[77361,50197],[1,-8],[-1,-7],[-2,-8],[-2,-7],[2,-6],[2,-8],[1,-10],[-2,-8],[-1,0],[-1,4],[0,3],[-1,2],[0,3],[-2,-5],[-2,-2],[-2,0],[-2,3],[2,8],[-1,5],[-4,2],[-5,-3],[-1,-7],[-1,-11],[-1,-10],[1,-5],[-9,6],[-21,25],[-11,6],[2,2],[3,5],[2,1],[3,-1],[5,-4],[2,1],[1,7],[7,38],[0,12],[-1,25],[1,11],[1,7],[6,17],[2,5],[2,2],[2,1],[2,2],[2,3],[0,6],[-2,18],[3,8],[3,-1],[3,-7],[12,-42],[3,-21],[-2,-14],[3,-9],[1,-12],[-1,-11],[-2,-11]],[[77355,50376],[5,-25],[9,-23],[8,-23],[-1,-24],[0,4],[-1,-6],[-3,-7],[0,-5],[0,-7],[2,-9],[0,-7],[-2,0],[-8,37],[-30,89],[-4,17],[-8,39],[-5,17],[-3,5],[-5,5],[-4,6],[-1,6],[2,4],[6,3],[11,4],[11,-11],[11,-26],[7,-33],[3,-30]],[[78692,50840],[1,-12],[1,-18],[-2,-15],[-4,-7],[-23,-10],[-4,-3],[-3,-1],[-5,6],[-4,9],[-1,10],[0,11],[6,53],[6,19],[9,7],[5,-2],[5,-6],[4,-8],[3,-9],[4,-12],[2,-12]],[[78754,50954],[2,-6],[0,-5],[0,-13],[-9,26],[-4,7],[-10,7],[-4,6],[-2,11],[3,-3],[16,-14],[2,-3],[3,-3],[2,-5],[1,-5]],[[78838,50995],[12,-6],[10,-14],[7,-18],[5,-19],[0,-9],[-3,-3],[-3,1],[-3,5],[-4,18],[-2,4],[-10,10],[-2,5],[-1,4],[-6,18],[0,4]],[[78746,50930],[4,-8],[1,-5],[1,-7],[-8,-35],[-6,-16],[-7,-6],[-5,6],[-4,12],[-2,13],[-3,5],[-11,33],[-1,12],[-1,12],[1,8],[3,13],[2,19],[3,8],[4,2],[5,-5],[2,-9],[2,-11],[3,-9],[9,-6],[3,-8],[5,-18]],[[78833,50975],[4,-7],[4,-15],[3,-16],[-1,-12],[-1,-2],[-2,0],[-2,2],[-5,9],[-10,12],[-5,11],[-5,15],[-1,15],[5,12],[2,-3],[5,-3],[2,-2],[7,-16]],[[78872,51060],[3,-5],[2,-8],[2,-9],[0,-7],[-2,-5],[-4,-2],[-4,-1],[-3,0],[-3,2],[-15,18],[-3,6],[-1,7],[-1,8],[2,5],[3,1],[5,-6],[0,5],[2,12],[3,-11],[5,-5],[9,-5]],[[79110,51081],[3,-4],[6,-1],[3,-3],[-1,-9],[2,-3],[1,-4],[1,-5],[0,-5],[-1,-4],[-1,-3],[-2,-3],[-2,-2],[-1,6],[0,7],[0,10],[-2,3],[-8,15],[2,5]],[[79878,51084],[6,-7],[4,-5],[1,-4],[-8,-18],[-4,-6],[-4,4],[1,3],[1,3],[2,4],[0,6],[-2,2],[-2,0],[-3,1],[-1,6],[0,5],[2,4],[3,2],[4,0]],[[78733,51069],[1,-3],[0,-4],[-1,-3],[-1,-2],[-4,-1],[-4,3],[-8,9],[-6,-3],[-5,8],[-7,25],[0,7],[2,12],[3,11],[2,5],[2,1],[5,6],[3,1],[4,-2],[0,-5],[-1,-6],[0,-7],[2,-14],[1,-7],[2,-6],[1,-2],[4,-1],[1,-1],[1,-3],[0,-3],[0,-2],[0,-3],[1,-3],[2,-4],[0,-3]],[[78624,50942],[1,-8],[0,-4],[1,0],[-2,-12],[-2,-22],[-2,-9],[-2,-2],[-3,-3],[-3,-1],[-1,2],[-1,2],[-5,12],[-14,29],[-10,12],[-12,4],[-23,-4],[-6,2],[-12,6],[-6,0],[-23,-11],[-11,-3],[-12,6],[-14,21],[-2,4],[-15,24],[1,13],[4,11],[6,9],[13,6],[3,8],[0,12],[-9,56],[-1,23],[6,16],[11,4],[8,-9],[14,-33],[3,-7],[0,-8],[-2,-10],[-1,-9],[4,-6],[7,-3],[5,0],[4,2],[7,8],[4,2],[7,-1],[6,-2],[5,-6],[14,-23],[21,-21],[31,-49],[4,-10],[2,-4],[2,-14]],[[78645,51019],[11,-17],[3,-10],[-2,-14],[-11,-14],[-12,4],[-37,49],[0,2],[-13,24],[-3,4],[-10,8],[-4,1],[-5,3],[-4,8],[-3,8],[-3,6],[-5,2],[-17,-2],[-5,-4],[-6,-6],[-7,-5],[-5,2],[-1,7],[4,11],[9,21],[4,11],[5,25],[3,10],[11,8],[13,-2],[24,-18],[22,-25],[20,-28],[11,-24],[13,-45]],[[78929,51157],[1,-12],[0,-12],[-5,-42],[-3,0],[-4,9],[-1,-4],[0,-4],[1,-3],[1,-5],[-2,-2],[-1,-4],[-1,-5],[-1,-5],[0,-3],[0,-7],[0,-2],[-1,-1],[-4,1],[-1,0],[-6,-3],[-5,3],[-10,12],[-2,0],[-6,-1],[-3,1],[-2,2],[-9,22],[-3,12],[-1,11],[3,6],[3,-2],[4,-10],[3,-1],[2,4],[0,5],[-1,6],[-2,13],[-1,3],[1,3],[3,3],[3,1],[6,-5],[2,0],[4,7],[2,20],[4,5],[3,-4],[8,-21],[4,-7],[2,7],[0,8],[-2,7],[-2,6],[3,4],[4,1],[3,-1],[4,-4],[2,-5],[2,-4],[1,-3]],[[79070,51119],[0,-10],[4,-29],[-5,-13],[-1,-7],[2,-12],[0,-17],[1,-4],[1,-2],[-1,-6],[-2,-5],[-4,-3],[-4,-1],[-2,-4],[0,-5],[-1,-8],[-3,-29],[-9,-3],[-24,17],[2,10],[-2,11],[-3,8],[-6,4],[0,4],[7,0],[3,1],[1,3],[-1,6],[-3,1],[-7,1],[-6,5],[-2,4],[0,7],[2,4],[10,5],[-2,6],[0,5],[2,9],[1,1],[3,4],[2,5],[-4,2],[-1,2],[-3,8],[-1,2],[-4,0],[-2,-2],[-13,-14],[-4,-3],[-6,-1],[-2,-2],[-4,-8],[-3,-2],[-10,-1],[-3,1],[-7,8],[-1,11],[0,12],[-2,12],[0,10],[6,9],[14,11],[3,4],[2,3],[2,9],[2,7],[0,5],[1,3],[4,1],[6,-3],[3,2],[2,7],[1,7],[4,-1],[6,-8],[11,-6],[9,1],[9,7],[9,11],[-1,6],[2,3],[3,-3],[2,-12],[-2,-22],[0,-10],[4,-11],[13,-13],[2,-5]],[[78464,51205],[2,-13],[-1,-15],[-8,-56],[-1,-14],[1,-15],[5,-33],[1,-13],[-1,-6],[-3,0],[-2,0],[-3,-2],[-8,-16],[-2,-3],[-9,5],[-10,16],[-18,44],[-5,17],[-3,10],[-2,10],[1,14],[2,26],[1,22],[-1,10],[-6,10],[-2,12],[-3,13],[-1,10],[1,5],[3,12],[0,6],[-2,24],[1,13],[2,6],[4,3],[6,0],[10,-6],[9,-13],[15,-35],[21,-33],[4,-9],[2,-6]],[[78470,51277],[5,-40],[-1,-11],[-8,-4],[-13,17],[-17,36],[-12,32],[-4,4],[-3,2],[-5,6],[-42,13],[-11,11],[-11,21],[-8,22],[-6,23],[1,17],[12,7],[6,-2],[13,-13],[4,-7],[5,-5],[6,-3],[18,-3],[16,-7],[9,0],[2,0],[3,-3],[6,-7],[3,-3],[23,-13],[8,-15],[1,-28],[0,-47]],[[77376,51466],[4,-6],[6,-12],[2,-12],[-5,-3],[-6,-2],[-9,0],[-8,2],[-9,10],[-4,2],[-3,2],[-3,7],[0,8],[1,10],[3,7],[5,3],[4,-3],[3,-8],[4,-15],[5,-6],[3,4],[3,7],[4,5]],[[76986,51689],[-2,-4],[-6,-8],[-1,-2],[1,-8],[-2,-4],[-4,1],[-9,42],[2,-1],[3,6],[1,6],[3,3],[5,1],[4,-3],[2,-9],[2,-11],[1,-9]],[[78255,51689],[10,-28],[4,-16],[1,-22],[-2,-13],[-9,-22],[-2,-15],[1,-27],[-1,-11],[-4,-12],[-13,-20],[-2,-7],[-3,-6],[-7,-5],[-7,-3],[-6,0],[-13,5],[-11,11],[-8,17],[-6,24],[-3,26],[-2,14],[-7,21],[-1,13],[3,49],[4,18],[6,13],[11,4],[4,-2],[10,-7],[6,1],[4,5],[14,29],[9,7],[9,-11],[7,-18],[4,-12]],[[76845,51729],[4,-3],[3,-5],[0,-6],[-1,-9],[-6,-8],[-6,-2],[-4,6],[0,15],[1,8],[2,4],[2,2],[5,-2]],[[77035,51741],[2,-12],[1,-12],[1,-14],[0,-14],[-1,-6],[-1,-4],[-2,-3],[-2,-3],[0,11],[0,5],[-4,-1],[-3,7],[-2,11],[-3,9],[-12,26],[-2,7],[-6,10],[-29,22],[2,4],[4,4],[12,4],[1,0],[2,-1],[1,-3],[3,-10],[4,-1],[4,4],[3,6],[4,4],[5,1],[5,-2],[2,-5],[-2,-7],[7,-14],[4,-4],[1,-5],[1,-14]],[[82944,51799],[6,-19],[5,-8],[4,-6],[0,-4],[-6,3],[-7,9],[-5,11],[-3,9],[-3,11],[-3,18],[0,16],[6,4],[3,-8],[9,-11],[3,-9],[0,-7],[-5,5],[-8,14],[-3,1],[0,-1],[1,-3],[2,-5],[4,-20]],[[80307,51969],[2,-5],[-1,-4],[-5,-7],[-4,-5],[-8,-5],[-7,-1],[-4,7],[1,8],[2,5],[0,5],[-4,6],[-2,-1],[-3,-4],[-1,-1],[-2,0],[-1,3],[-1,3],[-1,3],[1,7],[3,3],[4,1],[3,-1],[3,-3],[7,-8],[3,-2],[12,-1],[3,-3]],[[79511,52104],[0,-8],[0,-5],[-1,-3],[-2,5],[-3,10],[-2,14],[-3,9],[-1,8],[1,5],[4,2],[2,-3],[2,-6],[2,-8],[1,-20]],[[76799,51900],[-1,-10],[2,-12],[0,-8],[-7,-3],[2,0],[-9,-6],[-3,-4],[-3,1],[-11,14],[-6,-8],[-4,1],[-4,4],[-4,7],[2,2],[3,7],[1,3],[-6,6],[-6,19],[-12,7],[-49,77],[-6,8],[-6,4],[-3,1],[-7,-1],[-1,2],[-3,6],[-2,1],[-1,-4],[-1,-3],[-1,-2],[-2,-1],[-2,-1],[-2,0],[-6,9],[-5,3],[-3,3],[-1,4],[0,5],[-1,6],[-3,5],[-20,0],[-2,3],[1,8],[2,13],[-2,5],[-8,12],[1,9],[-4,6],[-4,5],[0,6],[2,6],[-4,1],[-5,-1],[-3,0],[-1,8],[0,12],[1,12],[5,5],[15,0],[3,3],[0,5],[-1,4],[-2,2],[-1,2],[0,6],[2,10],[0,6],[3,12],[1,4],[1,6],[3,-3],[2,-6],[1,-3],[20,-2],[7,-7],[0,-19],[-5,9],[-3,-3],[0,-23],[10,9],[3,-10],[10,-10],[5,-22],[6,-8],[7,-5],[17,-6],[5,-5],[5,-9],[1,-11],[-8,-24],[0,-12],[5,7],[3,-1],[2,-4],[3,-2],[2,-4],[2,0],[1,4],[-1,4],[-4,5],[-1,5],[4,1],[24,-48],[4,-4],[9,-10],[3,-2],[5,-4],[4,-8],[7,-18],[1,-8],[1,-11],[2,-9],[4,-3],[2,5],[0,9],[0,19],[4,-10],[2,-1],[2,2],[5,-11],[6,-32],[4,-13]],[[80233,52231],[4,17],[7,0],[5,-12],[-4,-17],[0,-7],[2,-23],[-1,-9],[-1,-2],[-6,-4],[-2,-2],[-1,-4],[-2,-10],[-1,-3],[-3,1],[-4,5],[-5,11],[-4,5],[-2,3],[0,4],[0,1],[6,7],[4,8],[5,9],[1,6],[2,8],[0,8]],[[79946,52255],[1,-12],[0,-5],[-12,-4],[-4,0],[-3,3],[2,16],[6,8],[7,0],[3,-6]],[[79389,52245],[3,-1],[8,-5],[3,-2],[-2,-9],[-2,0],[0,5],[-2,0],[-6,-43],[-2,-4],[-4,5],[-2,-1],[-2,-4],[-12,-10],[1,-5],[1,-2],[2,-1],[2,0],[3,-2],[0,-4],[0,-5],[-1,-2],[-3,-1],[-4,-2],[-3,-1],[-3,2],[-2,5],[-2,6],[-1,7],[0,7],[1,7],[2,14],[2,14],[2,15],[1,5],[-2,7],[-7,8],[-3,5],[3,5],[1,9],[0,8],[-2,7],[4,3],[2,-10],[1,-2],[1,-1],[4,-5],[2,-2],[0,-10],[0,-9],[0,-7],[4,-2],[3,-1],[4,-3],[2,0],[1,2],[1,4],[1,4],[2,2]],[[79523,52352],[0,-54],[-2,0],[-6,16],[-4,-4],[-2,5],[-3,6],[-4,1],[1,4],[1,4],[0,3],[0,5],[-3,30],[0,12],[5,-1],[4,1],[6,-7],[5,-10],[2,-11]],[[82639,52444],[5,-5],[2,-5],[0,-7],[0,-8],[-2,-2],[-2,2],[-3,1],[-9,0],[-3,0],[-2,-2],[-4,-6],[-1,0],[-5,5],[-1,10],[2,10],[4,9],[4,4],[5,1],[5,-2],[5,-5]],[[79519,52460],[6,4],[1,-5],[-1,-25],[0,-21],[0,-6],[-2,-4],[-1,2],[-1,6],[0,6],[0,2],[-2,1],[-1,-1],[-1,-2],[0,-4],[3,-16],[2,-4],[0,-4],[-1,-6],[-13,16],[1,3],[0,3],[0,10],[3,13],[1,12],[1,11],[5,9]],[[82673,52506],[4,-1],[5,-2],[4,-4],[3,-7],[0,-9],[0,-13],[-2,-13],[-3,-16],[1,-34],[-3,-10],[-3,-5],[-3,2],[-1,11],[-2,9],[-15,18],[-4,11],[-4,13],[-2,15],[-1,14],[3,15],[7,6],[16,0]],[[82747,52541],[1,-7],[0,-10],[-1,-8],[-4,3],[-14,20],[-2,10],[-10,16],[-2,12],[2,14],[5,5],[7,-1],[6,-8],[4,-10],[4,-11],[3,-12],[1,-13]],[[82643,52529],[-6,-13],[-11,5],[-23,20],[-24,0],[-5,2],[-4,4],[-4,5],[-3,5],[-2,6],[-1,8],[0,7],[1,6],[3,5],[3,5],[4,3],[3,0],[3,-2],[5,-8],[3,-1],[24,-4],[4,-6],[7,-19],[5,-4],[2,-1],[6,-5],[7,-3],[2,-4],[1,-6],[0,-5]],[[82734,52720],[-4,-1],[-5,4],[-8,9],[-4,7],[-7,15],[-4,6],[2,0],[5,4],[2,0],[1,0],[6,-4],[5,-7],[6,-8],[5,-9],[2,-9],[-2,-7]],[[82693,52904],[12,-13],[3,-5],[0,-17],[-3,-15],[-10,-23],[-11,-3],[-13,20],[-7,28],[5,27],[10,19],[4,5],[3,-5],[7,-18]],[[80109,52764],[3,6],[0,-6],[-5,-31],[-2,-7],[-11,-32],[-2,-9],[-2,-10],[-1,-18],[-2,-6],[-4,-4],[-5,-1],[-8,1],[-5,0],[-4,-4],[-8,-10],[-3,-3],[-2,2],[-9,15],[-11,8],[-3,4],[7,17],[1,5],[1,8],[2,3],[2,0],[2,-1],[5,4],[2,8],[1,9],[3,4],[4,0],[4,-1],[3,-4],[3,-7],[8,-20],[4,-4],[-1,8],[-4,28],[-1,1],[-3,9],[-1,2],[-2,1],[-8,-1],[-8,2],[-21,17],[-9,4],[-2,2],[-3,5],[-2,8],[-4,19],[-1,5],[-1,9],[0,5],[-2,3],[-2,3],[-1,3],[-1,4],[1,14],[-1,6],[-2,3],[-2,2],[-1,4],[1,5],[2,8],[7,17],[3,4],[3,1],[2,-1],[3,2],[2,4],[4,10],[1,2],[2,3],[21,44],[4,15],[4,9],[4,9],[4,6],[5,-9],[2,-11],[0,-31],[2,-17],[3,-11],[10,-15],[17,-42],[7,-11],[1,-4],[1,-8],[0,-16],[1,-8],[-3,-7],[-4,-5],[-3,-6],[-1,-10],[3,2],[2,-1],[4,-10]],[[80001,53296],[2,-3],[0,-4],[-2,-5],[0,-4],[-2,-22],[-2,-10],[-3,-5],[-6,1],[-4,1],[-2,3],[-1,2],[0,2],[1,3],[1,3],[3,6],[4,5],[3,5],[2,8],[0,4],[2,5],[2,4],[2,1]],[[76437,53803],[4,-12],[-3,1],[-2,-2],[-3,-2],[-1,-5],[-4,6],[-3,1],[-3,0],[-3,3],[-1,6],[3,6],[3,5],[2,3],[2,11],[3,-4],[6,-17]],[[76420,53852],[3,-5],[2,-7],[0,-6],[-3,-7],[-8,9],[-9,-17],[-1,8],[0,3],[1,6],[-3,1],[-1,2],[1,3],[2,4],[0,4],[-2,3],[0,3],[3,4],[0,4],[-3,3],[-3,0],[-2,-2],[-2,-1],[-3,3],[0,5],[3,5],[3,4],[6,-2],[7,-9],[6,-13],[5,-9],[-2,4]],[[76483,53962],[3,-6],[8,-27],[0,-20],[-1,0],[-1,4],[-1,2],[-4,6],[0,-19],[-2,-7],[-3,-3],[-5,1],[-5,3],[-4,5],[-4,8],[-2,8],[-2,11],[-2,9],[-6,9],[-3,9],[-2,10],[1,5],[6,-1],[3,-2],[3,-5],[4,-16],[3,-7],[4,0],[2,8],[3,9],[2,7],[5,-1]],[[84274,44197],[7,-8],[2,-8],[-1,-26],[-3,-10],[-5,0],[-6,3],[-5,0],[-5,-5],[-15,-25],[-3,-2],[-3,-3],[-4,-2],[-1,-5],[0,-14],[-1,-6],[-1,-6],[-6,-14],[-9,-4],[-10,-2],[-42,-25],[-6,-6],[-3,-7],[4,-7],[0,-4],[-25,-10],[-11,1],[-6,17],[-2,52],[-1,12],[1,4],[6,3],[6,10],[17,11],[7,1],[5,0],[4,0],[2,2],[3,5],[3,1],[3,-1],[3,1],[6,6],[14,29],[6,7],[12,10],[4,9],[1,6],[1,12],[2,6],[2,3],[3,-2],[2,1],[0,9],[2,10],[5,8],[11,12],[15,11],[5,7],[6,21],[3,6],[3,-9],[0,-9],[-1,-7],[-5,-12],[5,-8],[-1,-12],[-4,-11],[-1,-5],[2,-3],[-2,-6],[-3,-5],[-1,-1],[1,-5],[2,-1],[3,1],[3,-1]],[[83871,44293],[6,-6],[5,1],[5,-2],[3,-16],[-3,-24],[-1,-7],[-11,-19],[-6,-8],[-3,-5],[-2,-1],[-1,-1],[-3,0],[-2,-1],[-1,-4],[-1,-4],[-1,-3],[-6,-3],[-17,3],[-13,-1],[-5,2],[-6,7],[-4,6],[-1,2],[-1,4],[4,7],[34,35],[10,32],[5,7],[6,4],[6,1],[4,-6]],[[84295,44459],[2,-8],[9,-5],[0,-9],[-3,-7],[-10,-10],[-2,-5],[-1,-9],[-3,-2],[-4,4],[-3,9],[-4,-4],[6,-27],[2,-16],[-4,-6],[2,-9],[-1,-4],[-3,-2],[-4,3],[-1,3],[-2,8],[-3,6],[-2,-3],[-2,-9],[-4,-9],[-5,-1],[-2,15],[0,17],[2,10],[3,8],[7,12],[4,10],[5,25],[4,10],[4,5],[6,5],[5,1],[2,-6]],[[84424,45597],[3,-3],[0,-6],[-1,-13],[-1,-4],[-3,-3],[-13,-6],[-18,-1],[-6,-3],[-4,-7],[-2,-10],[-5,-20],[-6,-22],[-11,-25],[-3,-2],[-2,7],[-2,8],[-2,5],[-4,-4],[-5,-9],[-4,-11],[-2,-7],[-2,-3],[-3,-2],[-3,-3],[-1,-6],[1,-6],[10,-26],[-3,-12],[-4,-6],[-5,-2],[-6,0],[-3,3],[-6,18],[-3,7],[-13,-28],[-2,-2],[-5,-9],[-2,-2],[-4,1],[-2,2],[-5,10],[-10,15],[-6,5],[-4,-8],[-2,-2],[-3,-2],[-2,-1],[-2,1],[-3,4],[-1,2],[-2,2],[-2,-2],[-1,-2],[-2,0],[-3,13],[7,18],[17,26],[12,24],[4,4],[4,2],[23,21],[3,5],[2,4],[-1,12],[-3,6],[-10,2],[-18,0],[-1,8],[3,9],[6,9],[4,4],[4,-2],[4,-4],[4,-1],[2,6],[4,1],[6,12],[4,3],[8,-1],[7,-3],[-2,-4],[0,-10],[0,-6],[-3,-6],[-7,-15],[-3,-12],[1,-9],[3,-7],[5,-4],[6,-2],[5,1],[5,5],[1,13],[-2,8],[-4,7],[-1,7],[5,6],[3,-8],[4,1],[3,8],[2,11],[-2,8],[-2,5],[-1,5],[1,7],[1,3],[2,3],[2,2],[2,-1],[3,-3],[0,-5],[0,-4],[1,-4],[4,-2],[5,0],[3,4],[-2,7],[0,3],[7,3],[5,8],[5,10],[5,4],[1,1],[3,2],[1,1],[2,-1],[1,-3],[0,-3],[1,-1],[1,-2],[5,-7],[3,-4],[4,-3],[5,-2],[13,-3]],[[84529,45601],[-4,-22],[-1,-13],[2,-11],[1,-12],[-5,-12],[-10,-15],[-4,-10],[-4,-12],[-2,-13],[-2,-25],[-3,-14],[-4,-13],[-4,-10],[-4,-6],[-5,-6],[-7,-3],[-6,-2],[-7,3],[-2,8],[1,22],[-1,11],[-6,16],[-1,7],[-2,8],[-6,0],[-6,-4],[-10,-12],[-3,-1],[-2,-1],[-4,4],[1,7],[4,7],[2,3],[9,38],[5,14],[11,14],[6,5],[4,0],[3,-6],[1,-3],[3,-17],[0,-2],[0,-2],[4,-12],[1,-3],[2,-2],[0,13],[4,8],[7,12],[10,34],[5,12],[8,25],[4,8],[1,4],[2,4],[4,2],[4,-3],[3,-6],[3,-16]],[[88582,45532],[2,-8],[1,-14],[0,-13],[-4,-5],[-54,6],[-13,11],[-7,3],[-13,-1],[-6,4],[-3,11],[1,15],[3,9],[21,30],[5,9],[2,10],[1,13],[2,8],[4,5],[11,2],[16,11],[8,-2],[4,-14],[1,-20],[0,-19],[2,-15],[5,-12],[11,-24]],[[84759,45603],[1,-9],[0,-52],[-1,-11],[-3,-8],[-7,-3],[-6,-1],[-16,-7],[-24,-4],[-47,-18],[-11,-1],[-15,4],[-3,0],[-3,-1],[-3,-3],[-6,-8],[-6,-3],[-5,-5],[-5,-2],[-3,-3],[-1,-1],[-2,1],[-3,6],[-2,2],[-5,1],[-2,0],[-2,-1],[-7,-8],[-2,-1],[-2,-2],[-1,-4],[-2,-4],[-3,-2],[-2,2],[-3,8],[-3,2],[-2,-1],[-5,-5],[-1,-2],[-3,3],[-2,4],[-1,6],[-2,6],[-2,9],[4,10],[8,15],[3,8],[6,22],[1,9],[17,22],[9,3],[2,1],[2,2],[4,9],[2,3],[2,4],[0,4],[-3,2],[-6,-3],[-6,-4],[-20,-20],[-8,1],[1,26],[2,6],[4,5],[4,7],[1,9],[1,8],[3,8],[3,6],[4,3],[5,-3],[14,5],[7,-1],[4,-8],[1,-27],[4,-10],[11,16],[6,6],[7,3],[23,4],[35,-6],[11,6],[2,2],[1,2],[1,1],[4,-1],[1,-1],[2,-3],[2,-3],[3,-1],[14,4],[10,0],[2,0],[1,-2],[3,-6],[6,-20],[3,-7]],[[85580,45654],[9,-11],[1,-7],[-3,-10],[-14,-25],[-3,-3],[-4,-17],[-4,-4],[-5,2],[-4,4],[-12,16],[-3,4],[-4,2],[-17,2],[-6,3],[-4,6],[-7,12],[-3,8],[-1,12],[-1,6],[-3,4],[-4,4],[2,6],[2,3],[3,0],[3,-1],[10,4],[10,-5],[20,-15],[22,-7],[11,1],[9,6]],[[86418,45654],[5,2],[4,4],[6,2],[5,-4],[-5,-16],[-8,-9],[-9,-7],[-11,-16],[-19,-17],[-4,-1],[-7,2],[-14,-10],[-2,-1],[0,-19],[-1,-7],[-3,-8],[-13,-16],[-4,-7],[-3,-2],[-13,0],[3,10],[12,29],[5,10],[3,8],[3,9],[4,4],[2,1],[8,7],[2,3],[2,9],[0,7],[-1,6],[-1,11],[1,10],[3,5],[3,0],[4,-5],[6,-2],[11,29],[6,8],[4,-5],[10,-20],[-2,-5],[-1,-5],[1,-4],[3,-2],[1,2],[3,8],[1,2]],[[86066,45804],[4,-3],[2,-9],[0,-11],[-1,-9],[-3,-8],[-10,-22],[-8,-37],[-2,-6],[-5,1],[-18,9],[-1,6],[-26,62],[-3,13],[1,39],[3,17],[9,7],[26,0],[2,-1],[7,-7],[2,-2],[3,-3],[10,1],[2,-2],[3,-3],[3,-3],[1,-4],[0,-6],[-2,-16],[1,-3]],[[85232,45894],[0,-8],[0,-5],[-1,-6],[-3,-2],[-3,2],[-3,4],[-3,2],[-12,-3],[-6,-1],[-4,4],[-22,-16],[-4,-4],[-6,-12],[-2,-2],[-6,-5],[-2,-3],[-16,-41],[0,-4],[0,-5],[0,-5],[-2,-6],[-2,-6],[-4,-14],[-2,-6],[-4,5],[-5,12],[-4,3],[-13,0],[-7,2],[-13,8],[-8,2],[-23,-7],[-6,5],[-4,8],[-5,8],[-6,3],[-7,-5],[-4,5],[-6,-1],[-15,-5],[-5,-6],[-3,-1],[-7,0],[-3,-1],[-3,-3],[0,-2],[-1,-7],[-1,-3],[-1,-2],[-3,-1],[-1,-1],[-24,-41],[-6,-5],[-5,5],[1,10],[3,12],[3,11],[2,4],[1,7],[0,41],[2,9],[3,7],[3,6],[4,3],[5,5],[2,12],[1,13],[1,10],[1,2],[4,3],[2,2],[1,4],[2,9],[8,25],[2,7],[4,4],[3,1],[3,-2],[8,-8],[3,-4],[1,-4],[3,-3],[44,-11],[3,2],[8,11],[5,3],[5,-1],[7,-4],[6,-1],[5,4],[15,27],[15,14],[9,13],[5,5],[28,12],[4,4],[2,2],[2,-4],[-1,-13],[0,-6],[1,-5],[4,-6],[13,-12],[2,-6],[3,-7],[3,-5],[4,-3],[17,5],[4,-3],[2,-7],[2,-9],[2,-9],[1,-9]],[[85408,46012],[3,-3],[2,-7],[-1,-21],[-1,-6],[-4,-6],[-10,-8],[-4,-1],[-1,-2],[-2,-3],[-2,-12],[-3,-4],[-4,-3],[-5,0],[-2,9],[-1,10],[1,5],[1,5],[2,2],[3,2],[1,2],[1,6],[-1,10],[-3,19],[0,9],[2,9],[4,2],[9,-3],[6,-7],[4,-3],[5,-1]],[[88593,46003],[10,-7],[20,-5],[8,-8],[-5,-11],[-3,-10],[-3,-11],[-4,-25],[-8,-28],[-1,-11],[-2,-54],[-1,-7],[-3,-6],[-16,-16],[-5,-12],[-2,-20],[1,-44],[1,-20],[4,-21],[-13,0],[-6,-2],[-5,-8],[-9,-22],[-4,-8],[-7,-5],[-13,-1],[-6,-2],[-5,-7],[-4,-12],[-7,-27],[-5,-12],[-19,-28],[-5,-4],[-2,-4],[-10,-25],[-8,-13],[-9,-10],[-10,-8],[-11,-5],[-12,0],[-19,16],[-13,4],[-40,2],[-51,2],[-14,-3],[-11,-6],[-23,-19],[-11,0],[0,21],[24,145],[7,26],[1,9],[2,7],[8,13],[3,6],[3,35],[2,6],[2,5],[19,88],[7,20],[13,25],[2,10],[1,12],[2,14],[6,25],[6,16],[17,30],[43,61],[42,30],[37,11],[8,6],[18,7],[27,3],[24,-8],[11,-29],[1,-8],[13,-41],[4,-9],[4,-7],[4,-6]],[[86582,46190],[-4,1],[-3,1],[-2,0],[-3,-6],[-3,-7],[0,-6],[1,-16],[0,-12],[0,-4],[0,-1],[6,-20],[2,-8],[-1,-8],[-3,-7],[2,-6],[2,-4],[3,-3],[2,-4],[1,-1],[1,1],[1,0],[1,-3],[0,-4],[-2,-1],[-1,0],[-1,-2],[-3,-13],[-1,-13],[-1,-4],[-2,-3],[-2,-1],[2,-13],[-2,-14],[-3,-13],[-2,-27],[-3,-12],[-4,-10],[-5,-4],[-1,-3],[-5,-24],[-1,-3],[-5,-7],[-5,-4],[-7,-2],[-5,-6],[2,-13],[-2,-5],[-2,-4],[-2,-2],[-4,3],[2,-13],[-3,-6],[-4,-4],[-2,-3],[-2,-5],[-13,-19],[-2,-8],[0,-8],[-1,-11],[-3,-7],[-3,-5],[-2,-6],[-3,-10],[3,0],[2,-1],[1,-4],[-1,-5],[-2,-5],[0,-3],[0,-4],[-1,-6],[-3,-9],[-5,-10],[-5,-4],[-2,8],[4,23],[1,11],[-2,5],[-2,2],[-2,3],[-1,1],[-4,-6],[-1,-5],[-1,-13],[-1,-6],[-8,-10],[-11,-2],[-21,4],[-2,5],[1,13],[4,24],[-1,9],[-2,9],[-3,5],[-3,-1],[-2,12],[1,13],[4,12],[4,8],[4,0],[3,-3],[2,-1],[3,8],[0,6],[-2,4],[-2,4],[-2,2],[0,4],[5,1],[0,5],[-2,7],[1,8],[-3,-3],[-2,1],[-1,3],[0,7],[-2,0],[0,-4],[-2,0],[-1,15],[2,10],[5,3],[6,-4],[12,-12],[5,-1],[7,5],[-5,2],[-5,5],[-5,6],[-4,20],[0,5],[3,3],[0,3],[1,21],[2,10],[6,20],[2,9],[1,14],[2,11],[4,9],[17,30],[3,3],[2,-3],[2,-5],[1,-4],[3,1],[1,5],[4,17],[1,6],[2,2],[1,2],[1,7],[0,1],[-1,6],[1,6],[1,3],[16,5],[0,4],[-1,5],[0,6],[1,11],[3,7],[5,14],[1,6],[1,5],[1,4],[4,2],[5,1],[3,1],[2,2],[-3,17],[-1,12],[2,10],[9,14],[6,6],[7,5],[6,2],[5,-3],[2,-9],[-2,-22],[0,-4],[4,3],[2,4],[4,12],[4,5],[1,-3],[1,-8],[7,-27],[2,0],[-2,-6],[-3,-6],[-4,-4],[-4,-2]],[[86661,46212],[1,-21],[-1,-12],[-5,-6],[-2,4],[-10,15],[-2,4],[-3,21],[-7,10],[-10,1],[-19,-2],[-9,4],[-3,11],[7,18],[34,2],[6,-2],[5,4],[4,-5],[3,-9],[1,-8],[2,-8],[6,-12],[2,-9]],[[85741,46243],[-3,-4],[2,-8],[4,-9],[-1,-4],[-11,-24],[-4,6],[-11,18],[-10,10],[-4,7],[-1,12],[3,11],[6,12],[8,11],[8,6],[2,-3],[4,-9],[3,-4],[2,-2],[5,0],[2,-2],[4,-8],[1,-8],[-3,-6],[-6,-2]],[[81679,46375],[5,-5],[8,-6],[4,-8],[5,-21],[-8,-1],[-13,-17],[-19,-5],[-7,-14],[-6,-3],[-7,1],[-5,-7],[-6,-21],[4,-3],[3,-6],[0,-6],[-6,-5],[-12,-2],[-15,4],[-20,7],[-5,0],[-6,2],[-6,-12],[-9,1],[-5,-6],[-3,-9],[-2,-9],[-1,-8],[-2,-6],[-2,-11],[-2,-13],[-5,-4],[-5,-5],[-2,5],[-3,6],[-7,5],[-14,-3],[-42,5],[-5,5],[-5,1],[-13,-9],[-6,2],[-2,20],[-1,5],[-2,4],[0,3],[3,4],[0,5],[-3,1],[-7,6],[-2,-1],[-1,-7],[0,-11],[-2,-5],[3,-7],[6,-7],[3,-7],[-1,-7],[-4,-3],[-86,42],[-12,1],[-9,-1],[-5,1],[-2,7],[-1,18],[1,8],[2,8],[-2,4],[-2,-8],[-3,3],[-2,9],[0,11],[0,11],[2,3],[4,1],[5,3],[8,10],[8,16],[15,35],[-1,9],[9,7],[12,3],[8,1],[10,0],[24,6],[22,-8],[35,1],[48,6],[22,-8],[41,10],[33,-2],[37,10],[12,-3],[6,-4],[6,-6],[5,-7],[5,-9]],[[79239,46604],[1,-15],[-1,-23],[-2,-22],[-4,-9],[-5,-3],[-5,-14],[-4,-4],[-2,5],[0,9],[3,11],[2,8],[-3,3],[-2,7],[-2,14],[-12,-26],[-4,-2],[0,11],[5,15],[14,23],[2,-4],[3,6],[3,3],[3,2],[1,-1],[1,3],[2,2],[3,1],[3,0]],[[87356,46575],[7,-2],[3,-4],[-1,-8],[-2,-5],[-2,-11],[-1,-6],[-7,-15],[-7,1],[-6,5],[-7,-3],[0,-4],[5,0],[4,-8],[1,-3],[-2,-5],[-3,-8],[-3,-6],[-3,-3],[-14,-48],[5,-4],[-2,-8],[-13,-23],[-19,-14],[-10,-16],[-6,-5],[-8,27],[-3,9],[-2,2],[-3,3],[-11,7],[-4,7],[-3,18],[-2,12],[-1,7],[0,7],[4,19],[5,46],[5,99],[2,9],[2,5],[1,-6],[3,-11],[15,-5],[7,-11],[-1,10],[-5,16],[0,11],[-15,-3],[-4,18],[2,56],[-2,20],[-6,39],[-1,20],[2,7],[2,4],[4,1],[3,-3],[3,-7],[2,-9],[3,-7],[10,-5],[4,-7],[9,-20],[8,-12],[4,-3],[1,-2],[1,-5],[1,-6],[-1,-5],[-3,-7],[0,-3],[7,-19],[5,-9],[5,-6],[12,-5],[4,-7],[4,-8],[5,-7],[1,-1],[1,2],[1,1],[2,-2],[1,-4],[1,-2],[0,-3],[0,-3],[5,-19],[1,-6],[1,-1],[0,-1],[1,-4],[-1,-2],[-1,-1],[-1,-2],[-1,-3],[2,-27]],[[83484,46953],[3,-24],[1,-26],[0,-26],[-2,-26],[-6,-37],[-1,-13],[1,-32],[0,-23],[-2,-29],[-2,-9],[-4,-13],[0,-11],[1,-23],[-2,-12],[-2,-12],[-3,-3],[-2,25],[-2,19],[-1,11],[2,64],[0,7],[-3,3],[-3,1],[-1,5],[0,7],[0,6],[-4,19],[0,5],[1,7],[4,12],[0,8],[1,36],[-3,61],[2,79],[3,25],[3,20],[3,2],[2,-2],[2,-4],[1,-5],[-1,-14],[2,-10],[3,-8],[1,-9],[1,-13],[7,-38]],[[79119,47059],[4,-8],[1,-6],[-1,-17],[-2,-5],[-5,5],[-8,14],[-4,10],[-2,6],[0,5],[2,7],[3,-1],[6,-7],[5,-2],[1,-1]],[[86889,47042],[2,-5],[0,-14],[-1,-25],[-3,-14],[-2,-12],[-4,-11],[-4,-10],[-5,-5],[-3,9],[-2,14],[-2,9],[0,-7],[-1,-6],[-1,-6],[-3,-2],[-2,2],[-2,4],[-3,10],[0,-4],[-1,7],[-1,7],[0,15],[0,3],[-1,1],[0,2],[0,4],[0,4],[1,1],[2,0],[0,1],[-1,31],[1,14],[4,0],[-1,6],[-3,22],[-1,0],[-2,0],[-2,2],[1,4],[0,3],[1,3],[0,4],[0,4],[-2,0],[-2,0],[-1,2],[-1,4],[0,12],[0,3],[-2,5],[-2,5],[-1,5],[-1,9],[10,-11],[2,-2],[3,7],[4,7],[3,2],[1,-12],[-1,-8],[-2,-7],[0,-4],[3,-5],[2,0],[5,2],[2,0],[1,-3],[1,-5],[1,-11],[3,-22],[0,-5],[2,6],[0,2],[2,0],[1,-12],[1,-13],[2,-11],[5,-5]],[[87432,46823],[0,-6],[0,-5],[-1,-4],[-2,-4],[-1,-5],[2,-12],[-1,-7],[-2,-7],[-5,-24],[-1,-9],[-5,-14],[-20,-18],[-6,-10],[-7,10],[-3,2],[-3,-4],[-2,0],[-4,10],[-1,2],[0,2],[-5,10],[-2,2],[-2,7],[-12,13],[-3,8],[-3,0],[-17,15],[-1,1],[-1,2],[-1,3],[0,3],[-2,2],[-1,-1],[-2,-2],[-1,-1],[-3,3],[-2,7],[-1,7],[-2,5],[-7,20],[-4,22],[0,21],[5,17],[5,4],[5,-1],[5,-1],[5,10],[1,6],[-10,-1],[-6,-1],[-3,7],[1,9],[3,10],[1,10],[-2,7],[-7,18],[1,4],[2,3],[4,6],[3,8],[0,12],[10,11],[-1,9],[0,4],[6,14],[0,7],[-4,7],[-3,-7],[-3,-7],[-3,0],[-1,12],[-2,7],[-6,3],[-9,0],[-5,4],[-4,6],[-7,13],[-2,10],[4,9],[6,8],[6,3],[5,-4],[9,-16],[6,-4],[6,2],[2,7],[1,9],[1,10],[3,6],[4,5],[4,7],[1,8],[1,8],[12,47],[2,-11],[3,-3],[3,3],[2,7],[1,-1],[3,-3],[0,12],[0,6],[-1,4],[-2,6],[-1,3],[0,28],[0,4],[1,3],[2,3],[2,1],[2,0],[1,-1],[0,-3],[2,-2],[3,0],[8,7],[4,2],[13,-12],[2,-6],[3,-22],[3,-7],[9,-12],[2,-6],[-2,-1],[-6,-7],[2,-2],[1,-4],[1,-10],[-2,0],[0,4],[-7,-4],[-2,-2],[-2,-6],[2,1],[8,-1],[2,-1],[3,-4],[6,-7],[7,-17],[6,-20],[-5,-8],[-4,-16],[-2,-15],[0,-9],[2,-1],[2,-1],[1,-2],[1,-4],[0,-4],[-1,-9],[-2,-9],[-5,-12],[-2,-7],[5,-2],[6,-5],[3,-8],[-1,-10],[1,-1],[1,-4],[2,-3],[-3,-4],[-6,-7],[-3,-5],[-1,10],[-3,3],[-2,-4],[-1,-9],[2,-5],[7,-6],[2,-5],[-3,0],[-1,0],[4,-15],[-4,-1],[-8,6],[-5,6],[-2,4],[-2,4],[-2,3],[-4,1],[-4,-1],[-3,-3],[-2,-3],[-2,-5],[12,2],[4,-3],[1,-13],[3,-7],[11,-20],[4,-4],[11,-29],[2,-8],[-1,-14],[-4,-13],[-5,-11],[-5,-6],[-2,2],[0,1],[-2,1],[-1,-8],[-1,-6],[-2,-4],[14,10],[5,8]],[[86995,47325],[1,-9],[0,-11],[-1,-11],[-4,-4],[-1,-7],[-8,-83],[-7,-44],[-2,-6],[-7,-16],[-3,-3],[-3,-1],[-3,-6],[-4,-3],[-2,-5],[-3,-9],[-5,-13],[-6,-17],[-5,-19],[-2,-20],[0,-11],[2,-18],[0,-11],[-2,-7],[-26,-68],[-4,-5],[-1,7],[17,102],[6,16],[2,5],[0,37],[0,10],[10,34],[4,-2],[5,-4],[2,2],[3,24],[1,24],[1,11],[4,20],[11,69],[5,19],[3,9],[1,23],[3,10],[5,4],[5,0],[5,-5],[3,-8]],[[83907,47381],[-1,-5],[-2,-2],[-2,-2],[-1,-7],[1,-16],[1,-96],[-2,-12],[-4,-8],[-5,0],[-5,2],[-4,-4],[-4,0],[-8,28],[-4,10],[-4,3],[-3,0],[-2,1],[-3,4],[-1,5],[-2,13],[-12,36],[-6,24],[2,6],[0,17],[1,7],[3,7],[2,7],[1,7],[1,8],[1,4],[8,3],[2,2],[0,6],[-2,7],[-6,12],[4,9],[4,9],[5,6],[5,4],[-2,-9],[0,-9],[3,-6],[5,0],[2,2],[4,12],[3,3],[2,-2],[1,-5],[4,-35],[4,-9],[6,2],[4,-9],[3,-6],[2,-9],[1,-15]],[[86592,47690],[4,-10],[2,-15],[-2,-14],[-3,-4],[-2,7],[-2,13],[1,15],[2,8]],[[84105,47558],[0,-13],[-1,-6],[-1,-6],[-2,1],[-4,2],[-2,1],[-2,-6],[-1,-7],[-3,-9],[-17,-39],[-5,-14],[-11,-48],[-1,-13],[2,-5],[3,-1],[3,1],[2,-2],[-1,-8],[-1,-6],[-2,-3],[-7,-4],[3,-4],[6,-6],[5,-6],[1,-3],[1,-7],[1,-14],[-1,-15],[-2,-14],[-3,-6],[-3,8],[-3,-8],[-1,-15],[-1,-12],[-1,-7],[-2,-4],[-2,-1],[-1,4],[-1,3],[-2,-3],[-3,-8],[-6,0],[-1,24],[1,29],[-2,14],[-2,5],[-2,9],[-3,3],[-3,-13],[-1,-6],[1,-12],[0,-6],[-4,-20],[-5,-8],[-5,-2],[-5,4],[-4,10],[-3,13],[2,9],[10,10],[0,4],[-5,0],[-3,2],[-3,0],[-4,-6],[-2,-5],[-1,-7],[-1,-18],[-1,-7],[-4,-3],[-14,0],[-3,1],[-3,4],[-3,7],[2,4],[-3,10],[-1,11],[2,11],[7,26],[3,13],[1,14],[2,44],[1,12],[3,9],[3,2],[7,4],[1,4],[1,3],[5,15],[-2,8],[-1,11],[-2,30],[-4,14],[-1,24],[-3,18],[-4,16],[-4,9],[0,4],[5,12],[6,29],[4,12],[7,5],[18,4],[8,3],[8,9],[20,32],[16,19],[9,8],[6,-3],[4,-7],[2,-9],[5,-77],[0,-42],[1,-7],[4,-11],[1,-3],[0,-5],[1,-10],[1,-7]],[[86556,47846],[2,3],[2,0],[2,-1],[2,-2],[4,-13],[6,-22],[3,-21],[-5,-6],[-2,6],[-11,49],[-3,7]],[[84207,47375],[11,-13],[6,-11],[2,-10],[-1,-11],[-3,-9],[-7,-15],[-5,-19],[-4,-7],[-12,-5],[-10,-14],[-5,-4],[-5,3],[-5,14],[-4,3],[-5,-2],[-24,-30],[-5,-8],[-3,-22],[-1,-7],[2,-4],[2,2],[8,7],[2,0],[2,-17],[-6,-26],[-13,-39],[-6,-23],[-4,-7],[-6,-2],[-1,3],[-1,14],[0,5],[-4,7],[-1,1],[0,-4],[-4,-11],[0,-5],[-2,-3],[-2,5],[0,6],[0,14],[-1,6],[-3,0],[-9,-23],[-4,-7],[-6,0],[-5,9],[-19,92],[21,40],[3,9],[-1,8],[-6,4],[2,8],[7,21],[3,19],[1,1],[2,-1],[2,1],[4,11],[4,22],[3,8],[6,4],[8,3],[6,5],[3,12],[0,11],[-1,2],[-13,-11],[-2,1],[3,10],[-3,7],[0,8],[5,12],[1,9],[0,15],[1,9],[5,17],[2,10],[-2,10],[-2,3],[-3,-2],[-4,-4],[-4,-1],[3,10],[15,28],[3,10],[2,14],[0,14],[0,13],[-1,6],[-2,6],[-1,6],[0,6],[2,4],[3,1],[3,2],[2,7],[-2,101],[2,23],[4,24],[8,35],[1,12],[2,9],[3,7],[27,43],[6,3],[8,1],[5,-4],[-7,-19],[2,-11],[4,-9],[18,-31],[4,-11],[8,-24],[3,-13],[1,-13],[-1,-6],[-3,-12],[0,-7],[1,-6],[1,-2],[2,-2],[2,-4],[1,-20],[1,-63],[-2,-15],[-4,3],[-3,12],[-1,24],[-1,3],[-3,9],[-1,2],[-2,3],[-1,5],[-1,7],[-1,6],[-7,4],[-5,-34],[-7,17],[-1,-2],[-1,-3],[-1,-3],[-5,7],[-1,-7],[0,-26],[-1,-4],[-6,-7],[-1,-6],[-2,-19],[0,-7],[2,-24],[-1,-12],[-7,-9],[-3,-10],[-3,-11],[-1,-7],[0,-7],[1,-5],[2,-4],[1,-4],[2,-15],[0,-8],[-1,-13],[-1,-10],[-7,-27],[-2,-13],[1,-11],[5,-4],[6,6],[4,14],[4,12],[8,3],[3,-4],[1,-5],[0,-5],[2,-5],[9,-7],[1,-9],[4,-7],[8,-10]],[[87099,47963],[14,-35],[5,-5],[-7,0],[-7,13],[-6,16],[-6,7],[-3,0],[-7,-3],[-3,-1],[-5,0],[-3,1],[-2,4],[-4,7],[-4,5],[-6,5],[-4,3],[-3,6],[-2,7],[-2,5],[-5,2],[-3,3],[-2,7],[-2,9],[0,8],[2,10],[2,-1],[21,-30],[1,-1],[2,-1],[1,-1],[1,-9],[1,-2],[4,-8],[3,-3],[3,-1],[8,-2],[7,-3],[6,-5],[5,-7]],[[86490,48028],[5,-10],[2,-8],[-2,-2],[-9,14],[-13,11],[-3,3],[-2,6],[-1,6],[-1,6],[0,3],[0,2],[1,3],[1,1],[2,0],[1,-1],[2,-6],[3,-7],[14,-21]],[[86453,48108],[2,-2],[1,-3],[1,-4],[0,-4],[1,-13],[-1,-6],[-2,-3],[-4,5],[-3,12],[-1,13],[-1,10],[7,-5]],[[84223,48105],[8,-13],[5,-21],[0,-23],[-4,-20],[-12,-38],[-7,-20],[-9,-11],[-14,3],[-12,15],[-10,22],[-8,26],[-3,12],[-2,25],[-3,11],[3,7],[7,10],[3,7],[5,15],[4,4],[5,-3],[4,-4],[6,-9],[5,-7],[5,2],[4,6],[7,4],[7,2],[6,-2]],[[86512,48079],[2,-11],[-3,-6],[-6,2],[-6,9],[-2,9],[-6,28],[-1,10],[1,3],[2,3],[5,3],[6,-4],[3,-14],[2,-18],[3,-14]],[[85776,48312],[0,-5],[1,-6],[1,-4],[2,-5],[-4,-10],[-5,-5],[-5,2],[-3,9],[-1,14],[3,10],[5,4],[6,-4]],[[84215,48353],[0,-16],[-5,-2],[-5,1],[-3,-9],[-3,-7],[-6,6],[-5,10],[-4,8],[-1,5],[0,6],[2,2],[4,2],[16,15],[5,-4],[3,-8],[2,-9]],[[85702,48377],[3,-8],[5,-14],[1,-13],[-5,-5],[-4,-2],[-11,-8],[-12,-3],[-4,-2],[-11,-10],[-2,10],[2,12],[2,12],[1,9],[1,8],[1,8],[1,7],[3,5],[10,7],[4,-5],[10,-4],[5,-4]],[[85647,48390],[5,-11],[-2,-7],[-3,-7],[-2,-10],[1,-12],[2,-12],[0,-9],[-7,-5],[-2,1],[-6,7],[-4,3],[-1,1],[-3,0],[-2,-3],[1,-8],[7,-20],[1,-4],[-1,-4],[-5,-17],[-6,-8],[-6,-4],[-8,-1],[-6,-5],[-5,-9],[-5,-9],[-8,-2],[2,6],[6,8],[1,4],[6,24],[14,20],[5,12],[-5,5],[-5,-4],[-11,-18],[-11,-9],[-7,-9],[-7,-3],[-3,-3],[-6,-11],[-5,-12],[-5,-9],[-9,-1],[-6,6],[-2,10],[-1,12],[-3,14],[1,5],[13,32],[6,12],[14,18],[4,3],[4,0],[24,-2],[3,2],[23,37],[12,10],[13,-4]],[[85755,48382],[1,-12],[1,-41],[-6,7],[-5,12],[-6,8],[-4,-7],[0,-6],[1,-7],[0,-6],[-3,-5],[-3,-1],[-2,3],[-2,6],[-3,8],[2,0],[-4,7],[-2,8],[-3,10],[-5,14],[-2,11],[1,10],[6,1],[4,0],[2,-3],[4,-11],[3,-4],[8,-7],[4,-4],[2,14],[3,9],[4,-1],[4,-13]],[[85344,48414],[1,-80],[-5,-22],[-6,-10],[-5,0],[-6,4],[-7,3],[-5,-3],[-34,-36],[-3,-2],[-2,-4],[-7,-18],[-3,-6],[-11,-13],[-22,-14],[-14,-13],[-10,-16],[-6,3],[-6,-6],[-7,13],[-5,5],[-18,10],[-9,14],[-9,2],[-24,24],[-16,28],[-5,3],[-11,6],[-13,14],[-5,13],[-4,6],[-11,0],[-9,17],[-2,21],[-5,25],[-16,25],[-6,9],[-4,13],[-3,15],[0,5],[-10,30],[-4,67],[7,46],[5,10],[8,12],[7,13],[6,-6],[3,-16],[4,-7],[7,-7],[7,-5],[4,-1],[7,5],[0,14],[9,17],[11,9],[34,21],[83,6],[33,-8],[6,-7],[4,-14],[5,-9],[7,6],[5,-9],[6,-5],[6,-2],[6,-5],[10,-14],[5,-3],[8,-9],[3,-4],[2,-6],[2,-5],[0,-6],[1,-21],[0,-4],[-2,-1],[-3,1],[-3,2],[-4,5],[-4,0],[-3,-7],[-1,-9],[2,-11],[2,-10],[2,-7],[2,-1],[3,-8],[4,-7],[6,-4],[3,3],[3,14],[3,3],[3,-2],[10,-11],[12,-4],[6,-5],[3,-9],[-2,-11],[-5,-26],[-1,-13]],[[79696,48735],[2,-13],[-7,-26],[1,-14],[-8,-5],[-1,-1],[-13,6],[-5,5],[-11,19],[-10,7],[1,6],[3,6],[1,2],[2,9],[1,3],[6,9],[6,6],[5,3],[4,-7],[5,-5],[13,-5],[5,-5]],[[79749,48776],[-1,-15],[-1,-11],[-2,-4],[-4,2],[-3,3],[-4,3],[-3,5],[-5,5],[4,13],[4,10],[4,6],[0,2],[1,3],[3,1],[1,-1],[2,-10],[4,-12]],[[79831,48771],[2,10],[7,10],[9,6],[7,2],[3,-1],[0,-9],[1,-4],[2,-6],[-3,-13],[-4,-13],[-5,-10],[-10,-6],[-5,-13],[-3,5],[-8,20],[-8,11],[2,7],[5,-4],[4,4],[4,4]],[[86353,48353],[1,-7],[0,-6],[-1,-11],[-1,-7],[-4,-12],[-1,-4],[-1,-5],[-4,-12],[-1,-7],[-2,-77],[2,-8],[3,-9],[0,-7],[-7,-3],[-5,5],[-9,16],[-4,4],[-6,1],[-27,22],[-5,1],[-2,5],[-12,28],[-4,6],[-4,5],[-5,4],[-7,2],[-4,3],[-3,8],[-5,16],[-4,7],[-4,5],[-6,3],[-6,1],[-6,3],[-12,18],[-52,36],[-5,11],[-1,2],[-4,1],[-14,11],[-10,11],[-5,8],[-3,7],[0,4],[-3,7],[-1,5],[1,18],[-1,5],[-7,20],[-12,9],[-96,21],[-10,-3],[-2,-19],[14,-41],[3,-21],[-9,-15],[-13,1],[-23,24],[-12,7],[-34,5],[-12,7],[-22,24],[-8,5],[-7,0],[-21,-4],[-6,-5],[-6,14],[-1,7],[3,12],[9,29],[-3,11],[-5,8],[-5,4],[-7,1],[-5,4],[-4,1],[-1,-3],[-1,-3],[-5,-15],[-16,-13],[-3,-5],[-2,-6],[-23,-41],[-2,-6],[0,-3],[-2,-3],[-1,-4],[0,-7],[0,-5],[2,-3],[2,-3],[1,-3],[-4,-13],[-12,-3],[-13,2],[-11,-2],[-11,-12],[-7,-3],[-5,5],[-4,7],[-10,10],[-4,9],[-33,112],[-3,6],[-11,1],[-6,3],[-8,6],[-1,0],[0,2],[1,14],[1,16],[4,17],[-1,12],[-3,10],[-5,4],[-9,-5],[-7,-14],[-5,-19],[-4,-18],[-3,-21],[-2,-59],[-2,-8],[-2,-9],[-4,-19],[-2,-6],[-2,-2],[-6,-1],[-2,-2],[-1,-5],[-2,-12],[-4,-12],[-2,-11],[-4,-20],[-1,-11],[0,-5],[2,-6],[0,-4],[-4,-12],[-1,-7],[-7,18],[1,28],[8,51],[0,27],[-1,13],[-2,5],[-2,4],[-8,24],[-3,34],[-2,9],[-7,12],[0,5],[6,5],[3,2],[6,1],[2,1],[3,6],[7,16],[3,3],[5,3],[7,12],[4,5],[5,3],[6,2],[5,-1],[5,-4],[6,4],[-4,20],[0,7],[1,7],[5,10],[1,5],[-3,6],[-6,0],[-4,2],[2,8],[2,2],[8,3],[2,3],[5,20],[0,-1],[0,3],[0,3],[0,4],[1,0],[2,0],[2,1],[1,5],[0,7],[2,6],[2,4],[4,1],[7,-3],[47,0],[10,6],[11,2],[11,6],[5,1],[6,-2],[11,-8],[7,-2],[55,-1],[12,-3],[6,0],[12,4],[11,6],[19,18],[10,6],[5,-10],[0,-20],[-2,-24],[5,-6],[7,-25],[4,-6],[3,1],[6,3],[3,0],[1,0],[1,-2],[1,-1],[1,-1],[2,2],[0,3],[-1,4],[0,4],[-1,1],[0,2],[0,3],[3,2],[1,0],[1,-4],[1,0],[3,-7],[2,0],[1,9],[2,6],[4,5],[9,7],[15,17],[8,6],[2,9],[0,10],[2,10],[8,9],[12,4],[22,0],[3,3],[2,0],[1,-5],[0,-3],[1,-2],[2,-1],[15,-5],[40,-35],[3,-1],[4,-4],[5,-19],[4,-6],[4,0],[3,3],[4,4],[3,1],[2,-2],[0,-5],[1,-7],[3,-5],[3,6],[5,-4],[4,-9],[5,-10],[5,-5],[23,-11],[46,1],[25,8],[12,-1],[12,-9],[28,-56],[4,-4],[21,-17],[3,-4],[1,-5],[2,-20],[1,-5],[5,-19],[3,-24],[0,-50],[1,-9],[5,-17],[2,-7],[1,-6],[5,-2],[11,2],[11,-1],[9,-7],[6,-10],[4,-14],[-6,-4],[0,-12],[3,-12],[3,-13],[9,-18],[3,-10]],[[86555,48909],[7,9],[4,4],[4,0],[-3,-9],[-6,-9],[-7,-6],[-5,-1],[-2,3],[2,3],[6,6]],[[80081,48783],[-2,-11],[-2,-8],[-3,-6],[-1,-6],[-2,-15],[-12,-31],[-3,-16],[0,-6],[2,-9],[0,-5],[-1,-6],[-2,-12],[-1,-5],[-1,-2],[-1,-4],[-1,-5],[-1,-5],[1,-4],[5,-9],[2,-5],[-7,-1],[-10,-9],[-5,-3],[-7,0],[-5,-3],[-3,-6],[-1,-11],[0,-21],[-3,-3],[-8,0],[-6,-3],[-5,-4],[-4,2],[-3,13],[0,27],[-1,13],[-7,9],[-15,28],[1,1],[0,4],[-1,6],[-2,5],[-3,5],[-1,0],[-2,-3],[-4,-2],[-5,-3],[0,-9],[4,-16],[0,-22],[-7,-13],[-17,-19],[-19,1],[-8,-21],[-7,-5],[-8,7],[-2,14],[3,17],[9,27],[1,2],[-1,4],[-1,2],[-1,2],[-2,6],[-7,12],[-2,6],[0,7],[1,7],[-1,7],[-1,6],[-1,5],[-1,6],[0,7],[1,8],[5,12],[1,6],[1,22],[-1,2],[-5,-2],[-7,-6],[-3,0],[-2,6],[1,7],[2,7],[4,5],[4,2],[5,6],[2,17],[-1,18],[-4,16],[4,3],[4,6],[4,7],[2,6],[-1,38],[4,59],[5,14],[11,5],[5,0],[8,-5],[4,0],[5,4],[8,13],[4,4],[4,-14],[10,-9],[10,-3],[4,3],[15,-6],[5,-3],[2,-7],[5,-30],[2,0],[2,16],[2,7],[4,5],[8,-8],[2,-2],[3,-11],[1,-3],[5,-2],[4,-7],[2,-9],[1,-10],[6,5],[4,-2],[19,-47],[3,-22],[4,-21],[1,-11]],[[87383,49039],[0,-13],[0,-4],[-4,-4],[-5,0],[-3,3],[-1,6],[3,8],[-7,9],[1,9],[8,15],[2,9],[1,13],[1,22],[3,-4],[1,-5],[0,-7],[0,-8],[0,-49]],[[87328,49283],[4,-1],[3,-4],[3,-6],[2,-6],[0,-4],[-1,-4],[-7,-27],[-2,-24],[-4,-10],[-5,-3],[-5,11],[-2,14],[0,17],[2,16],[3,14],[1,6],[3,5],[2,4],[3,2]],[[85018,49058],[2,-13],[3,-11],[1,-10],[-4,-13],[-8,-7],[-9,9],[-8,17],[-5,17],[-3,20],[0,39],[-3,18],[-2,7],[-7,12],[-2,5],[-2,8],[0,29],[-3,16],[-4,16],[-3,17],[0,20],[2,10],[3,10],[6,18],[4,9],[2,3],[3,2],[3,0],[3,-4],[8,-13],[2,-6],[2,-7],[0,-7],[-1,-17],[-5,-31],[-1,-16],[1,-27],[24,-108],[1,-12]],[[84404,49315],[2,-24],[1,-5],[-3,4],[-3,-2],[-2,-4],[-2,-2],[-6,3],[-5,5],[-1,7],[-4,34],[-1,16],[5,13],[15,-33],[3,-5],[1,-7]],[[85091,49392],[3,0],[1,1],[0,-7],[-3,-5],[-17,-17],[-4,-1],[-10,1],[-6,-2],[-3,-2],[-1,-2],[-2,-4],[-3,-1],[-7,2],[-23,-4],[-3,-1],[-7,-7],[-9,1],[-3,-1],[-9,-12],[-6,-5],[-5,3],[-6,10],[-4,4],[-5,-1],[-19,-9],[-46,2],[-6,-2],[-13,-8],[-6,-2],[-13,0],[-4,-1],[-11,-7],[2,10],[1,12],[-1,10],[-2,8],[-2,4],[-12,13],[-2,-3],[-2,-11],[-3,-3],[-2,3],[-2,5],[-1,6],[0,5],[0,13],[3,10],[4,5],[4,2],[1,6],[1,5],[2,3],[3,1],[2,-3],[4,-9],[2,-2],[3,0],[5,3],[4,7],[3,2],[1,-3],[0,-5],[0,-4],[1,-3],[1,-2],[18,5],[8,-1],[6,-8],[4,2],[22,-6],[2,1],[3,2],[4,4],[5,8],[3,0],[6,-3],[12,-1],[32,9],[13,0],[35,-12],[47,-4],[12,-4]],[[84203,49424],[3,-6],[2,-14],[0,-14],[-3,-10],[-3,-4],[-4,-7],[-3,-7],[-1,-9],[-1,-6],[-4,-4],[-3,0],[-1,6],[0,31],[2,12],[4,24],[1,6],[0,8],[2,4],[4,-2],[4,-5],[1,-3]],[[87287,49440],[3,-3],[1,-11],[-2,-20],[-2,-2],[-5,-8],[-3,-8],[5,-13],[-4,-21],[-5,-22],[-5,-13],[-4,28],[0,11],[2,28],[16,51],[3,3]],[[86218,49351],[-9,-14],[-3,-9],[25,-21],[1,-8],[-2,-2],[-4,0],[-3,-2],[-2,-4],[-1,-3],[-1,-3],[-2,-5],[-3,-2],[-2,2],[-2,4],[-3,2],[-2,3],[0,6],[0,6],[1,2],[0,3],[-1,6],[-1,3],[-3,-6],[-5,-19],[-2,-4],[-4,-3],[-3,-9],[-3,-10],[-3,-6],[-9,-7],[-19,-1],[-8,-4],[-2,4],[-1,4],[-2,2],[-2,2],[2,3],[2,1],[-8,8],[-5,2],[-15,-2],[-12,12],[-12,1],[-3,1],[-3,5],[-9,7],[-5,7],[-4,4],[-2,2],[-5,11],[-1,3],[-12,11],[-7,3],[-3,5],[-5,13],[8,11],[36,26],[1,2],[0,3],[0,2],[1,1],[4,6],[3,1],[9,3],[6,5],[15,18],[5,4],[6,3],[12,2],[11,6],[7,1],[16,-7],[4,1],[4,9],[6,8],[6,8],[9,7],[3,2],[3,0],[2,-2],[1,-9],[-1,-28],[15,-22],[3,-8],[4,-13],[2,-12],[0,-9],[-3,-3],[-2,0],[-1,-2],[-1,-14],[-2,-2],[-2,0],[-3,-2]],[[84809,49416],[1,-8],[1,-42],[-1,-11],[-3,-2],[-10,7],[-6,0],[-17,-5],[-3,1],[-6,3],[-3,1],[-2,-2],[-5,-8],[-3,-3],[-5,1],[-6,3],[-6,1],[-5,-7],[-2,-10],[-1,-10],[-2,-7],[-7,1],[-8,12],[-4,2],[-8,-2],[-7,3],[-10,12],[-7,1],[-12,-7],[-21,-27],[-11,-10],[-25,-14],[-4,-5],[-3,-2],[-4,-1],[-8,1],[-17,-4],[-6,0],[-7,5],[-2,7],[-1,10],[-16,52],[-2,10],[1,26],[2,11],[4,11],[4,23],[1,27],[4,22],[11,7],[4,1],[13,5],[4,4],[5,8],[2,0],[1,-6],[-1,-12],[8,9],[10,4],[11,2],[16,-5],[11,-7],[4,-5],[4,-3],[16,-3],[16,-14],[18,-6],[2,0],[2,3],[1,1],[1,-1],[3,-5],[1,-2],[7,-4],[3,0],[4,-4],[3,-17],[4,-8],[0,3],[1,2],[1,3],[3,-5],[4,-2],[4,0],[4,3],[-3,3],[-1,1],[2,9],[3,27],[2,5],[3,-1],[2,-3],[1,-3],[2,-2],[10,-3],[3,-11],[0,-13],[-1,-23],[1,-4],[3,-1],[4,1],[1,4],[1,6],[1,7],[2,9],[4,7],[4,3],[4,-1],[4,-7],[1,-5],[-2,-6],[-2,-6],[-2,-7],[1,-2],[6,5],[3,-1]],[[88013,49424],[14,-17],[0,-3],[-3,-2],[-2,-8],[-3,-2],[-21,-1],[-10,-3],[-8,0],[-2,-2],[0,-6],[-2,-4],[-3,-3],[-6,-3],[-3,-3],[-2,-4],[-3,-3],[-3,-2],[-25,6],[-6,0],[0,-4],[2,-3],[2,-6],[0,-5],[-3,-3],[-3,1],[-5,6],[-3,1],[-3,0],[-6,-3],[-3,-1],[-3,2],[-8,6],[-5,2],[-11,9],[-5,2],[-2,-2],[-2,-5],[-2,-1],[0,-1],[-2,0],[-3,0],[0,1],[-2,-4],[-2,-4],[-2,-5],[-1,-8],[-2,0],[-2,7],[-2,3],[-3,-1],[-3,-5],[-4,17],[-9,11],[-21,9],[-3,0],[-6,-1],[-2,1],[-3,3],[-4,8],[-2,1],[-6,1],[-5,2],[-4,4],[-7,9],[-12,12],[-3,2],[-2,7],[-5,2],[-12,1],[-5,4],[-9,10],[-10,3],[-2,2],[-4,8],[-2,2],[-4,-1],[-4,-3],[-3,3],[-3,6],[-4,3],[-2,-2],[-4,-4],[-5,-3],[-3,3],[-7,9],[-7,1],[-8,-2],[-8,2],[-3,5],[-1,5],[-1,6],[-2,8],[-1,1],[-5,-1],[-2,0],[0,4],[-1,5],[-1,5],[-2,3],[-2,2],[4,4],[4,4],[2,0],[2,4],[4,0],[29,-14],[57,-9],[19,-9],[11,-2],[17,9],[21,-12],[8,6],[10,-7],[26,0],[11,-5],[2,-2],[2,-7],[2,-3],[3,0],[7,1],[2,-3],[5,-7],[5,-7],[10,-8],[6,-1],[18,5],[46,-13],[24,5],[5,-2],[10,-9],[5,-2],[10,-1],[5,-3],[5,-4]],[[79657,48953],[13,0],[5,-3],[0,-8],[-2,-4],[-2,0],[-2,1],[-3,-1],[-10,-11],[-3,-2],[-4,-4],[-5,-8],[-13,-42],[-17,-101],[-3,-24],[3,-19],[10,-13],[3,-1],[4,0],[2,-3],[3,-5],[2,-5],[2,-4],[4,-2],[5,-4],[2,-9],[0,-11],[-2,-9],[2,-9],[2,-3],[-3,-4],[-2,3],[-2,-4],[-2,-4],[-4,-3],[-2,1],[-2,3],[-2,1],[-4,-6],[-2,2],[-1,5],[-1,2],[-15,6],[-8,-3],[-2,-15],[-3,3],[-1,1],[-6,-7],[-4,7],[-2,13],[-1,13],[-2,7],[-3,5],[-6,9],[-2,6],[-3,14],[-3,6],[-6,3],[-13,0],[-5,3],[-13,28],[-58,43],[-6,3],[-20,3],[-4,6],[-18,62],[-4,25],[-2,27],[3,25],[6,26],[3,26],[-4,25],[-9,12],[-10,9],[-9,15],[-3,28],[2,18],[0,6],[0,6],[-3,9],[-1,10],[-3,12],[0,6],[0,20],[-1,17],[-2,8],[-2,5],[-5,5],[-4,4],[-17,5],[-1,1],[-3,5],[-1,1],[-2,0],[-3,-3],[-1,-1],[-9,3],[-2,1],[-4,7],[-5,16],[-3,6],[-7,-9],[-14,-10],[-6,-6],[-5,-8],[-3,-1],[-5,1],[-18,0],[-14,-8],[-2,2],[-2,3],[-6,19],[-1,4],[-10,11],[-5,2],[-9,-2],[-5,-3],[-4,-3],[-6,21],[0,24],[3,23],[5,17],[8,11],[32,26],[21,31],[8,23],[-3,26],[-10,14],[-6,10],[2,5],[2,2],[0,5],[-1,11],[1,6],[3,3],[3,2],[2,3],[1,4],[2,9],[1,4],[2,0],[4,0],[1,2],[12,24],[3,3],[13,-1],[5,3],[3,3],[2,5],[3,5],[8,4],[5,-8],[2,-15],[0,-15],[3,-14],[5,-12],[7,-8],[8,-5],[-3,-9],[-11,-21],[-1,-9],[4,-11],[5,-9],[4,-6],[6,-5],[3,1],[4,3],[5,1],[2,-2],[1,-10],[2,-4],[2,-1],[8,1],[-3,12],[-3,11],[-9,20],[-3,10],[0,12],[2,22],[-1,2],[-4,17],[-1,5],[-1,10],[0,5],[-2,8],[-2,8],[-3,7],[-3,5],[7,5],[25,-1],[7,5],[11,17],[5,-1],[6,-2],[2,-6],[2,-9],[3,-10],[2,-2],[3,0],[6,0],[2,-2],[13,-20],[2,-4],[1,-6],[0,-6],[-3,-6],[0,-6],[0,-25],[1,-7],[2,-5],[2,-3],[2,-3],[1,-5],[2,-11],[1,-4],[2,-3],[1,-3],[2,-3],[1,-6],[0,-7],[1,-6],[2,-4],[3,-1],[3,-2],[0,-6],[-1,-7],[-1,-5],[15,-35],[1,-6],[-1,-5],[-3,-39],[0,-26],[10,-101],[18,-103],[7,-25],[8,-22],[10,-19],[5,-5],[7,-6],[6,-2],[3,7],[3,1],[31,-23],[36,-13],[19,-15],[5,-2]],[[87578,49595],[4,-2],[2,-3],[3,-1],[5,2],[-6,-16],[-10,-7],[-25,-2],[-23,5],[-2,5],[0,12],[3,9],[6,-2],[6,-4],[15,4],[6,-6],[4,-2],[12,8]],[[85595,49526],[4,-26],[-2,-19],[-7,-14],[-10,-10],[-11,-3],[-33,19],[-5,0],[-10,-6],[-7,-2],[-42,4],[-5,-3],[-4,-7],[-3,-7],[-3,-3],[-22,-5],[-10,0],[-11,9],[-17,18],[-15,32],[1,13],[5,22],[0,11],[-1,8],[1,8],[4,10],[-3,11],[2,11],[3,10],[1,10],[1,15],[2,1],[7,-10],[6,-11],[1,-1],[2,3],[5,14],[1,5],[2,7],[28,42],[3,1],[22,-10],[8,-6],[7,-8],[2,-9],[3,-11],[6,-10],[7,-7],[6,-3],[1,1],[5,6],[3,2],[4,-3],[5,-12],[3,-2],[22,-32],[5,-15],[3,-6],[3,-4],[6,-6],[3,-4],[3,-3],[2,1],[2,3],[3,1],[3,-2],[2,-6],[3,-12]],[[85469,49751],[2,-10],[-2,-11],[-3,-9],[-4,-5],[-6,1],[-15,16],[-11,4],[-5,0],[-3,-6],[-2,-9],[-5,2],[-5,6],[-4,3],[-1,5],[4,11],[7,16],[4,6],[5,4],[4,1],[17,-13],[5,-8],[13,-2],[5,-2]],[[84306,49721],[5,-1],[5,-4],[3,-7],[1,-11],[-1,-13],[-4,-21],[-1,-12],[0,-19],[0,-5],[-1,-7],[-7,-16],[-12,-20],[-2,-3],[-5,-2],[-2,-3],[-6,-5],[-7,10],[-6,-7],[-1,22],[-2,10],[-5,4],[-1,3],[0,7],[0,7],[-3,3],[-3,0],[-3,-1],[-2,-2],[-2,-5],[-6,-22],[-3,-26],[1,-53],[-1,-13],[-2,-6],[-2,3],[-1,14],[-1,6],[-3,-1],[-11,-16],[-2,2],[-2,5],[-2,6],[-9,5],[-2,3],[-1,6],[-1,6],[1,6],[2,2],[3,3],[13,18],[2,19],[-6,78],[1,19],[-1,6],[-1,3],[-2,3],[-2,1],[-2,-15],[-4,-5],[-4,-3],[-4,-5],[-6,-28],[-2,-4],[-3,-4],[-3,-10],[-3,-19],[-5,-17],[-6,-14],[-20,-39],[-7,-9],[-6,3],[-17,84],[-2,25],[1,25],[3,27],[4,23],[18,53],[4,5],[6,-2],[10,-9],[4,-1],[3,4],[6,10],[3,2],[12,4],[11,0],[2,-2],[2,-4],[2,-4],[3,-2],[4,2],[1,6],[0,7],[2,6],[4,3],[1,-2],[2,-3],[2,-2],[12,-41],[-2,-5],[-2,-6],[-2,-4],[-4,-1],[-2,-3],[-1,-8],[0,-16],[1,-7],[2,-5],[3,-5],[2,-5],[0,-9],[0,-18],[1,-9],[7,10],[4,13],[8,29],[1,2],[4,4],[1,2],[4,12],[2,18],[3,8],[3,3],[5,0],[3,0],[2,2],[2,0],[1,-5],[0,-7],[1,-4],[4,-6],[2,4],[2,8],[3,4],[3,-3],[6,-14],[5,-3]],[[86098,49781],[1,-8],[-2,-8],[-7,-12],[0,3],[-1,3],[-1,2],[0,4],[-11,-18],[-6,-8],[-8,-2],[12,16],[2,4],[-2,4],[-3,-2],[-4,-4],[-1,-2],[-3,-1],[-20,1],[-5,6],[1,8],[6,9],[25,17],[6,1],[4,-8],[6,-1],[6,0],[5,-4]],[[87499,49866],[-2,-8],[0,-10],[0,-20],[-10,-27],[-4,-3],[-4,-1],[-10,1],[-4,2],[-4,6],[-3,7],[-5,22],[-6,13],[-3,13],[4,16],[1,3],[0,11],[2,7],[1,3],[1,2],[4,7],[4,4],[4,1],[13,-8],[4,-4],[1,-6],[1,-5],[3,-9],[0,-6],[0,-5],[-1,-9],[-1,-6],[-5,-14],[-1,-8],[4,-5],[6,6],[4,25],[6,5]],[[86404,49877],[1,-2],[2,-10],[1,-6],[0,-27],[-10,-89],[-6,-25],[-1,-11],[-1,-14],[-3,-12],[-4,-10],[-6,-3],[-3,3],[-5,13],[-3,4],[-3,-1],[-4,-4],[-4,-7],[-5,2],[-3,4],[-6,23],[-3,6],[-6,10],[-8,9],[-3,6],[-3,9],[0,4],[1,8],[-1,4],[0,4],[-2,2],[-1,1],[0,1],[-1,9],[-1,6],[0,4],[-2,6],[-3,5],[-2,3],[-2,4],[-3,8],[7,8],[0,14],[-3,15],[-4,12],[-10,21],[0,9],[8,10],[31,16],[11,13],[10,8],[7,3],[6,-3],[4,-10],[2,-9],[1,-3],[2,0],[4,5],[6,3],[12,2],[2,1],[1,-1],[2,-5],[3,-5],[6,-21],[0,-4],[-4,-10],[-1,-6]],[[86365,50009],[2,-2],[-2,-3],[-3,-2],[-2,-1],[-2,-2],[-3,-1],[-1,-2],[-1,-5],[1,-6],[2,-1],[2,0],[1,-4],[-2,-4],[-2,-4],[-3,-3],[-6,-3],[-8,-12],[-5,-2],[-11,-1],[-40,-19],[-21,-4],[-9,-5],[0,5],[3,2],[1,1],[-6,1],[-4,2],[-4,-1],[-2,-10],[-2,0],[-2,7],[-4,-1],[-11,-10],[3,11],[5,5],[4,6],[-2,11],[4,8],[0,25],[3,8],[0,-7],[0,-2],[2,0],[1,8],[2,4],[3,0],[4,-3],[-2,-14],[6,-7],[9,4],[4,17],[3,-3],[1,-3],[2,-5],[0,-6],[8,13],[5,3],[4,-4],[-1,-1],[0,-1],[-1,-2],[4,-2],[3,2],[2,3],[2,1],[4,-1],[7,-6],[4,-1],[7,5],[6,7],[6,3],[4,-11],[1,6],[-1,2],[-1,5],[1,6],[-4,11],[1,7],[2,-4],[2,-2],[5,0],[4,-1],[1,0],[5,3],[2,0],[2,-2],[5,-5],[3,-1]],[[87881,49822],[3,-8],[-1,-10],[-4,-7],[-5,-3],[-2,-4],[-14,-21],[-17,-6],[-4,-4],[-4,-5],[-6,-4],[-5,-3],[-5,-2],[-12,5],[-18,23],[-12,4],[-7,-2],[-11,-8],[-6,-2],[-6,4],[-6,9],[-5,12],[-3,11],[-2,13],[2,34],[-1,6],[-4,11],[-1,4],[0,6],[-4,20],[-5,58],[-4,20],[-7,12],[-6,-4],[-5,-12],[-5,-13],[-6,-12],[-6,4],[-43,73],[-2,-7],[0,-6],[4,-15],[-9,7],[-10,18],[-9,23],[-6,42],[0,10],[5,5],[3,-2],[4,-10],[3,-4],[1,0],[4,1],[1,0],[2,-1],[3,-4],[1,-2],[9,-5],[14,-2],[3,0],[6,6],[3,-5],[2,-12],[18,7],[3,-1],[1,-4],[2,-10],[1,-7],[1,-5],[3,1],[3,5],[3,1],[8,-13],[6,-6],[3,5],[1,7],[5,9],[5,8],[6,3],[6,-5],[6,-10],[21,-45],[22,-34],[5,-11],[3,-16],[2,-6],[3,-6],[3,-5],[1,-7],[1,-8],[1,-6],[4,-9],[5,-7],[4,-8],[3,-16],[4,-11],[2,-10],[4,2],[3,4],[1,2],[6,3],[8,0],[6,-4],[3,-13],[3,-5],[16,-5]],[[85359,50029],[6,-21],[1,-8],[-12,-7],[-2,0],[-1,2],[-4,7],[-1,3],[-9,1],[-10,-1],[-7,7],[1,25],[3,12],[3,10],[3,11],[1,24],[2,7],[3,4],[9,1],[2,0],[1,-2],[1,-2],[-3,-10],[2,-8],[3,-6],[2,-7],[1,-1],[4,-12],[1,-4],[0,-6],[0,-13],[0,-6]],[[86298,50212],[3,-8],[0,-9],[-1,-8],[-8,-23],[-4,-7],[-12,-6],[-4,-1],[-3,5],[3,4],[4,20],[0,16],[-9,-8],[-1,-2],[-1,-9],[-1,-3],[-2,-3],[-4,-2],[-1,-3],[-3,-2],[-16,-4],[3,6],[3,3],[3,4],[1,7],[-4,-3],[-3,3],[-3,8],[-1,8],[2,-1],[1,-1],[1,-2],[1,-4],[2,8],[3,8],[4,5],[1,-2],[1,-10],[2,-4],[4,0],[4,3],[3,5],[2,7],[4,6],[7,4],[1,2],[1,3],[1,3],[2,2],[2,-1],[4,-5],[6,-6],[2,-3]],[[83847,50232],[12,-16],[2,-5],[2,-14],[2,-6],[-1,-9],[-2,-8],[-3,-5],[-5,-2],[-1,3],[-7,13],[-4,4],[3,-14],[0,-4],[-4,-2],[-4,2],[-4,8],[-3,2],[-12,4],[-3,2],[-3,-1],[-7,-31],[-3,-5],[-5,-4],[-5,-1],[-3,4],[0,8],[2,11],[8,26],[3,6],[3,5],[9,9],[2,4],[3,16],[8,-14],[5,3],[7,8],[8,3]],[[79040,50234],[13,-30],[2,-9],[-3,-12],[-5,-10],[-11,-16],[-2,-12],[-1,-29],[-3,-10],[-9,0],[-9,15],[-7,8],[-7,-23],[-3,-23],[-3,-4],[-5,-1],[-3,49],[-3,21],[-2,8],[-4,-1],[-16,33],[0,9],[2,8],[4,20],[2,7],[8,14],[3,8],[2,10],[2,0],[2,-10],[-3,-24],[1,-14],[2,0],[1,12],[1,12],[2,0],[6,-8],[10,11],[15,30],[5,-10],[2,-3],[6,-5],[2,-3],[2,-4],[2,-9],[2,-5]],[[83896,50273],[4,-2],[2,-4],[1,-8],[0,-11],[-3,-11],[-5,-8],[-5,-3],[-6,6],[-6,-7],[-9,-1],[-9,4],[-7,8],[-4,10],[0,6],[2,6],[0,9],[2,6],[2,1],[6,-1],[0,-1],[2,-2],[2,-2],[2,1],[0,3],[0,10],[1,3],[11,-2],[3,-2],[7,-7],[3,-1],[4,0]],[[85524,50017],[2,-2],[0,-3],[-1,-7],[-1,-10],[-4,-10],[-12,-24],[-3,-3],[-2,-2],[-4,0],[-4,-2],[-5,-8],[-3,-2],[-2,1],[-6,11],[-3,3],[-6,5],[-3,0],[-1,2],[-1,4],[-1,4],[-3,2],[-3,4],[0,7],[2,14],[-1,6],[-1,6],[-2,5],[-2,3],[-3,3],[-2,-2],[-1,-3],[-2,-2],[-5,-3],[-15,-17],[-19,-12],[-3,2],[-1,8],[-1,5],[-2,12],[-2,26],[1,7],[9,38],[0,7],[-1,1],[-9,5],[-2,3],[-6,1],[-2,2],[-1,2],[0,8],[-1,3],[-1,1],[-4,2],[-1,1],[-5,17],[-1,5],[-1,6],[-9,13],[-3,7],[-2,10],[-1,10],[0,10],[2,9],[4,8],[2,9],[2,11],[1,14],[-1,5],[-3,16],[4,0],[5,6],[3,2],[3,-2],[3,-5],[5,-10],[1,-3],[2,-2],[2,-3],[1,-13],[1,-7],[3,-6],[3,-2],[4,5],[2,12],[2,14],[1,9],[2,3],[3,2],[2,2],[1,4],[0,5],[1,6],[1,5],[3,2],[1,0],[0,-1],[0,-2],[1,-1],[9,-7],[4,-5],[1,-10],[2,-6],[6,-8],[2,-7],[0,-6],[1,-7],[1,-6],[1,-3],[2,-1],[3,1],[1,0],[2,-8],[2,-4],[5,-15],[1,-12],[-3,-14],[-16,-41],[-3,-12],[-1,-14],[0,-7],[2,-4],[3,-2],[3,-1],[4,-2],[1,-5],[0,-19],[-1,-7],[1,-6],[4,-6],[3,0],[4,2],[3,4],[2,5],[4,3],[18,2],[4,-2],[13,-12],[2,-4],[1,-3],[4,-11],[1,-6],[0,-4],[0,-1],[1,-1],[2,0]],[[85342,50179],[-6,-13],[-4,-5],[-5,-2],[-17,0],[0,4],[1,2],[1,2],[-5,6],[1,5],[3,4],[2,2],[0,7],[-1,8],[-2,6],[-1,3],[-4,2],[0,7],[3,13],[0,16],[0,5],[1,2],[2,1],[1,2],[-1,14],[-2,16],[-1,13],[3,6],[2,1],[7,6],[2,3],[3,3],[8,-1],[3,5],[2,-5],[2,4],[2,0],[2,-3],[2,-5],[2,-7],[2,-2],[8,1],[1,-2],[0,-5],[-1,-6],[-1,-3],[-1,-1],[-5,0],[-2,-1],[-2,-9],[1,-9],[2,-8],[2,-7],[2,-6],[1,-8],[0,-9],[-5,-7],[0,-8],[2,-17],[-1,-4],[-3,-8],[-1,-12],[-2,1],[-2,2],[-1,1]],[[78808,50310],[6,-7],[6,-12],[3,-14],[-3,-13],[-2,-1],[-10,1],[-4,-1],[-7,-9],[-4,-2],[-2,-1],[-7,-9],[-4,-2],[-2,3],[-3,4],[-3,2],[-4,-3],[-6,-3],[-16,13],[-7,-4],[-1,20],[7,28],[10,25],[10,12],[5,0],[15,-6],[3,-4],[3,-8],[6,-5],[11,-4]],[[83948,50323],[1,-1],[4,-5],[1,-4],[0,-5],[-2,-1],[-2,3],[-2,3],[-1,0],[-3,-2],[-10,11],[-5,3],[-1,7],[4,13],[5,8],[4,-5],[-4,-15],[4,0],[3,-1],[3,-3],[1,-6]],[[83991,50313],[-2,-10],[1,-14],[2,-12],[2,-8],[-2,-5],[-6,15],[-9,38],[-7,12],[-2,0],[-4,-4],[-2,0],[-2,2],[-4,10],[-4,10],[-1,5],[1,6],[3,-4],[7,-6],[2,0],[1,-5],[3,-3],[11,-7],[5,-5],[4,-6],[3,-9]],[[83770,50362],[-2,22],[8,12],[10,0],[5,-14],[-2,-17],[-5,-13],[-7,-3],[-7,13]],[[86471,50329],[2,-8],[9,-16],[2,-6],[-2,-5],[-6,-2],[-1,-5],[-2,-8],[-3,-4],[-2,-5],[-1,-10],[-1,1],[-4,2],[-1,1],[0,-12],[-3,-10],[-4,-3],[-5,7],[-11,18],[-6,8],[-3,-1],[-1,2],[-9,0],[-2,2],[-1,3],[-1,0],[-3,-1],[-5,-5],[-13,-20],[0,9],[-2,1],[-5,-2],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-2,2],[-4,5],[-1,1],[-6,19],[-7,10],[-2,4],[2,4],[-4,12],[-3,6],[-5,2],[-8,1],[-5,3],[-2,0],[-3,3],[-1,7],[1,11],[-2,11],[-2,6],[-15,29],[-3,10],[-1,12],[-2,-1],[-2,0],[-4,1],[2,5],[0,4],[-5,1],[-7,-2],[-7,-3],[-3,-5],[6,-3],[3,-3],[2,-6],[-5,0],[-3,-7],[1,-9],[10,-8],[5,-9],[10,-28],[5,-23],[2,-11],[2,-8],[11,-11],[6,-7],[1,10],[1,4],[2,2],[12,-1],[5,-2],[2,-3],[0,-6],[2,-3],[3,-2],[2,-3],[2,-6],[3,-12],[3,-7],[-3,-2],[-2,-5],[-2,-5],[-1,-6],[-1,-5],[-3,-4],[-11,-10],[-24,-9],[-7,0],[-6,2],[-5,8],[-3,11],[-7,42],[4,4],[1,8],[-1,9],[-2,7],[-22,-13],[-8,-12],[-4,-24],[2,0],[3,5],[-1,-11],[-5,-25],[-2,-4],[-2,-2],[-1,3],[1,7],[3,19],[-4,3],[-1,9],[2,12],[-1,13],[-1,5],[-5,9],[-1,6],[0,5],[1,5],[2,5],[-1,5],[-5,4],[-6,-3],[-8,-9],[-1,-2],[-2,-5],[-1,-1],[-2,1],[-1,6],[-1,1],[-5,1],[-3,1],[-2,2],[-3,-7],[-1,1],[-2,4],[-1,2],[-8,1],[0,-1],[-6,3],[-1,1],[-1,3],[-1,6],[-1,5],[-2,2],[-8,4],[-9,7],[-4,7],[6,3],[3,-1],[5,-5],[2,-2],[1,0],[6,0],[1,0],[9,3],[5,1],[4,-2],[4,-5],[4,0],[4,3],[3,6],[2,7],[-4,2],[-5,0],[-3,5],[4,3],[3,8],[0,9],[-2,8],[-2,-11],[-4,-7],[-3,1],[0,13],[-2,0],[-1,-5],[-2,-2],[-2,1],[-3,3],[1,-9],[2,-8],[1,-7],[-2,-5],[-3,0],[-5,4],[-4,5],[-1,5],[-1,8],[-4,12],[-1,8],[1,7],[3,4],[4,0],[3,-5],[2,3],[2,3],[1,5],[1,6],[2,-9],[0,-9],[1,-7],[3,-4],[3,4],[0,8],[-2,9],[-1,8],[6,3],[4,-5],[3,-9],[6,-6],[-1,13],[-1,4],[2,0],[1,-5],[1,-4],[12,11],[6,8],[3,10],[3,-3],[2,-4],[4,-9],[1,2],[1,6],[1,-3],[1,-3],[0,-2],[1,4],[3,12],[1,-2],[3,-6],[3,7],[7,-3],[5,4],[6,0],[8,6],[7,1],[2,-11],[4,3],[8,-2],[5,3],[-2,5],[-2,2],[-3,2],[-3,-1],[4,8],[5,5],[6,3],[6,0],[38,-24],[2,-2],[1,-3],[1,-2],[1,1],[2,4],[1,1],[9,5],[1,0],[5,0],[4,-2],[0,-4],[-4,-10],[5,-1],[7,-3],[8,-1],[3,-2],[8,-5],[2,-4],[2,-6],[3,-4],[3,-3],[2,-3],[1,-6],[3,-5],[5,2],[1,-2],[1,-1],[4,0],[3,-2],[2,-3],[1,-3],[7,-4],[2,-7],[3,-19],[-3,-8],[-2,-6],[0,-6]],[[79146,50329],[23,-26],[-2,-8],[-6,3],[-7,5],[-6,2],[-5,-6],[1,-6],[3,-9],[1,-11],[-15,14],[-5,2],[-3,2],[-6,11],[-15,15],[-4,9],[-3,9],[-5,8],[-6,3],[-12,-2],[-4,-2],[-4,-5],[-7,-10],[-3,-2],[-1,0],[-4,4],[-2,-2],[-2,-4],[-3,-3],[-3,-9],[-3,-2],[-3,1],[-1,2],[-1,4],[-1,6],[-3,8],[-3,5],[-3,2],[-7,0],[-4,2],[-2,4],[-1,6],[0,7],[1,6],[1,4],[4,4],[10,19],[5,13],[2,15],[2,48],[3,17],[6,-11],[1,5],[1,7],[0,5],[2,-8],[4,-5],[9,-8],[16,-29],[1,-7],[-9,-4],[0,-5],[1,-5],[2,-4],[2,-2],[3,2],[2,4],[2,1],[4,-5],[9,-19],[5,-25],[3,-11],[6,-4],[7,1],[2,6],[0,8],[2,13],[6,5],[8,-16],[14,-42]],[[85982,50390],[5,-14],[3,-10],[1,-10],[-1,-5],[-2,-5],[-3,-3],[-2,-2],[-4,2],[-3,3],[-4,12],[-12,44],[-24,21],[-1,7],[1,10],[0,8],[-3,3],[-7,23],[-1,2],[-6,8],[-3,5],[-2,2],[-1,3],[1,4],[2,2],[2,-2],[42,-76],[15,-20],[7,-12]],[[85405,50467],[0,-12],[0,-8],[-2,-2],[-5,8],[-1,4],[0,6],[0,11],[-1,1],[-4,9],[-1,-5],[0,-3],[-1,-2],[-2,-3],[-2,14],[0,16],[2,32],[2,24],[9,-5],[4,1],[-2,-4],[-2,-8],[6,-74]],[[79026,50512],[-3,-3],[-2,-1],[-2,-1],[2,-11],[1,-5],[0,-7],[-2,0],[-4,14],[-14,26],[-2,16],[1,0],[2,-2],[1,-2],[3,-3],[-1,3],[-4,23],[-1,6],[0,6],[2,3],[2,-2],[2,-5],[3,-11],[14,-37],[2,-7]],[[79079,50512],[6,-16],[-2,-7],[-5,2],[-6,9],[-6,11],[-2,5],[-2,14],[-2,2],[-4,-8],[-3,6],[-4,14],[-3,7],[-1,3],[0,9],[-1,2],[-2,0],[-2,1],[-2,2],[-2,3],[-1,4],[0,7],[-1,3],[-7,17],[-2,5],[-1,6],[4,-2],[2,-3],[6,-10],[-1,1],[1,3],[1,2],[1,1],[1,-1],[1,-1],[39,-91]],[[79001,50670],[3,-6],[1,-6],[0,-7],[-3,-7],[-1,-1],[-2,1],[-1,4],[-1,9],[-1,2],[-2,0],[-2,3],[-8,21],[-2,3],[1,1],[2,2],[1,1],[2,-2],[5,-8],[8,-10]],[[85388,50694],[5,-15],[0,-24],[-6,-19],[-11,2],[-3,7],[-1,11],[-1,11],[0,9],[1,8],[5,6],[5,3],[6,1]],[[78948,50889],[7,-8],[8,-12],[5,-14],[-3,-15],[-3,5],[-2,6],[-2,14],[-8,17],[-2,7]],[[85382,50839],[-1,6],[-3,9],[-1,10],[4,20],[3,34],[3,-3],[2,-1],[2,1],[2,3],[2,-2],[2,-2],[1,-2],[1,-2],[1,-10],[1,-12],[1,-13],[-1,-10],[-4,-9],[-6,-12],[-6,-8],[-3,3]],[[78967,50889],[-3,-3],[-2,0],[-3,1],[-5,8],[-6,2],[-3,3],[-4,11],[-1,11],[2,10],[6,6],[5,-3],[3,0],[2,5],[1,2],[2,1],[3,-2],[1,-5],[0,-14],[1,-10],[2,-10],[3,-13],[-4,0]],[[85380,50934],[-3,-11],[-4,-5],[-4,0],[-5,0],[-3,5],[-3,10],[-2,12],[-1,7],[2,13],[5,11],[5,5],[11,-13],[3,-9],[1,-11],[-2,-14]],[[78951,50991],[4,-2],[5,-5],[2,-7],[-2,-10],[-2,-6],[-3,-4],[-15,-14],[-3,0],[-2,3],[-2,9],[-2,16],[-2,7],[-4,5],[-7,4],[-4,4],[2,9],[-2,22],[2,10],[3,2],[5,-6],[8,-19],[1,-5],[1,-6],[2,-5],[3,-2],[12,0]],[[77202,51060],[3,-6],[-2,-14],[-4,-21],[0,4],[-5,-17],[-1,-18],[2,-36],[-1,-8],[-2,-14],[-3,-35],[0,-45],[-2,-12],[-14,-35],[-2,-3],[-3,1],[-2,4],[-7,11],[-3,-10],[-3,0],[-8,10],[0,-2],[-3,-4],[-3,-1],[-2,8],[-2,3],[-1,3],[-2,1],[4,15],[-2,11],[-5,10],[-2,9],[-1,8],[1,16],[-2,7],[-1,6],[-4,19],[-1,7],[-5,25],[-11,23],[-24,31],[1,11],[-3,6],[-6,3],[-6,1],[-12,-3],[-1,5],[0,14],[-1,25],[-4,24],[-14,48],[-3,16],[-1,4],[-2,5],[-3,5],[-3,5],[-2,13],[-4,8],[-1,7],[0,7],[-2,5],[-2,3],[-2,3],[-2,3],[-3,1],[-3,3],[-3,5],[-2,6],[-2,14],[-3,7],[-11,23],[-6,9],[-6,6],[0,-1],[-4,-6],[-2,12],[5,8],[7,4],[7,0],[2,-2],[4,-4],[2,-4],[1,-5],[2,3],[3,1],[7,-2],[8,2],[6,4],[6,7],[12,23],[3,7],[1,8],[-1,16],[1,6],[4,5],[7,-16],[4,-6],[5,3],[2,3],[3,-2],[3,-12],[1,-6],[0,-3],[2,-2],[3,1],[3,-1],[3,1],[2,-1],[0,-2],[1,-8],[1,-2],[6,-14],[2,-3],[1,-3],[2,-13],[2,-6],[14,-30],[4,-10],[3,-25],[21,-56],[6,-8],[12,-5],[5,-5],[5,-7],[3,-6],[4,-14],[2,-8],[1,-8],[2,-8],[5,-3],[5,-1],[5,-3],[4,-8],[5,-24],[2,-4]],[[84803,51389],[2,0],[0,-13],[-1,-16],[-1,-18],[-1,-5],[-4,-7],[-1,-4],[-1,-19],[-6,-6],[-9,-7],[-8,-1],[-4,8],[1,7],[2,3],[6,4],[13,13],[12,61]],[[85462,50346],[0,14],[5,24],[1,12],[-1,69],[1,6],[0,7],[3,14],[0,6],[0,14],[-4,17],[-1,11],[0,26],[9,68],[1,11],[0,10],[-2,8],[-4,9],[-3,3],[-6,-4],[-2,1],[-12,23],[-1,1],[-1,5],[0,2],[-6,8],[-2,5],[-1,4],[-1,5],[0,19],[-2,27],[-2,9],[-1,3],[-2,3],[-3,4],[-1,6],[-1,6],[1,26],[4,37],[1,28],[2,15],[9,12],[5,15],[4,16],[1,12],[-3,15],[-10,6],[-11,4],[-8,7],[-4,11],[1,10],[3,11],[2,11],[-1,5],[-2,11],[-1,4],[0,2],[-3,0],[-1,2],[1,11],[-1,3],[1,6],[1,6],[0,6],[-4,6],[-2,1],[-2,-3],[-3,-4],[-1,-2],[-5,-2],[-4,-4],[-4,1],[-1,13],[0,9],[1,5],[2,4],[2,7],[2,8],[1,5],[-1,13],[-1,8],[-3,7],[-3,8],[0,12],[2,12],[8,28],[8,22],[6,39],[11,35],[4,22],[-2,18],[-4,15],[2,15],[8,25],[-2,9],[-1,5],[0,4],[1,8],[2,3],[3,1],[1,3],[1,5],[1,7],[-1,5],[-4,3],[-1,2],[1,5],[3,9],[3,21],[14,50],[7,18],[6,24],[4,11],[15,28],[7,21],[25,57],[9,15],[2,5],[1,9],[4,11],[5,9],[5,5],[5,-2],[4,-5],[5,-2],[12,14],[2,-7],[0,-13],[-1,-14],[-6,-22],[-4,-10],[-3,-4],[-1,-3],[-2,-5],[-2,-6],[-6,-5],[-2,-7],[-1,-15],[-3,-21],[-2,-11],[-4,-4],[-5,-1],[-4,-4],[-4,-5],[-3,-6],[-2,-10],[-2,-17],[-1,-19],[2,-15],[6,-11],[18,-4],[4,-7],[3,-9],[11,-20],[3,-12],[-3,-44],[-1,-7],[-2,-4],[2,-8],[2,-4],[2,-3],[2,-5],[1,-7],[3,-26],[-1,-12],[-5,-31],[0,-17],[0,-19],[0,-5],[-1,-4],[-2,-2],[-2,-3],[-1,-6],[2,-10],[4,-21],[0,-7],[-3,-4],[-6,1],[-3,-2],[-1,-4],[-3,-15],[-2,-7],[-5,-12],[-4,-10],[-5,-25],[-1,-7],[-1,-3],[-1,-3],[-3,-3],[-3,-1],[-7,1],[-2,-2],[-22,-39],[-24,-27],[-9,-19],[-4,-27],[1,-10],[2,-11],[3,-10],[3,-7],[4,-7],[10,-9],[4,-6],[1,-5],[3,-11],[2,-5],[2,-2],[3,1],[2,0],[8,-10],[5,0],[6,3],[5,4],[5,8],[10,17],[4,10],[2,9],[1,52],[0,10],[1,10],[16,45],[6,10],[6,7],[5,5],[6,3],[19,0],[4,4],[6,13],[3,14],[1,11],[-1,11],[-4,11],[-6,5],[-12,-6],[-4,3],[-2,12],[4,12],[10,14],[4,11],[5,22],[4,10],[5,10],[11,16],[5,9],[5,6],[12,8],[5,8],[2,5],[2,10],[2,5],[2,2],[6,5],[7,9],[5,5],[6,4],[6,0],[3,-2],[1,-3],[1,-3],[3,-1],[3,3],[2,5],[4,11],[4,4],[14,5],[11,1],[21,-5],[1,-3],[1,-4],[0,-6],[-1,-4],[-7,-11],[-3,-12],[-1,-12],[0,-22],[1,-5],[2,-5],[5,-9],[4,-3],[4,-2],[0,-4],[0,-7],[1,-10],[1,-15],[-1,-14],[-2,-6],[-5,-4],[-1,-10],[-1,-26],[-3,-29],[-1,-14],[3,-40],[-1,-10],[-1,-7],[-1,-2],[-4,-4],[-2,0],[-4,0],[-4,-1],[-1,-5],[-23,-28],[-4,-6],[-2,-6],[-2,-4],[-16,-10],[-6,-13],[-4,-6],[-5,-2],[-5,-1],[-25,-14],[-4,-5],[-2,-8],[-1,-14],[2,-12],[1,-8],[-2,-3],[-3,2],[-6,6],[-3,1],[-5,-4],[-3,-8],[-2,-11],[0,-12],[2,-9],[4,-10],[9,-16],[8,-18],[5,-10],[8,-6],[6,-8],[3,-2],[9,1],[8,-2],[2,-1],[2,-4],[4,-11],[3,-5],[2,-3],[10,-2],[6,-3],[8,-12],[4,-1],[4,2],[5,0],[4,-2],[3,-4],[3,-2],[4,4],[4,-6],[1,-8],[-1,-18],[-1,-3],[-1,-3],[-1,-4],[3,-8],[1,-6],[0,-5],[0,-47],[1,-21],[4,-9],[16,-6],[3,-3],[15,-3],[7,-13],[8,-20],[6,-20],[0,-8],[-11,21],[-4,4],[-4,1],[-37,23],[-5,-4],[-7,8],[-8,6],[-8,5],[-9,1],[-8,5],[-7,12],[-10,24],[-4,5],[-3,1],[-9,-2],[-4,0],[-8,3],[-4,1],[-18,-7],[-9,1],[-8,14],[-7,-4],[-6,8],[-6,12],[-4,8],[-23,5],[-4,-1],[-7,6],[-14,1],[-5,6],[-6,-10],[-5,-8],[-3,-9],[-4,-49],[-4,-11],[-1,-7],[1,-14],[7,-15],[1,-13],[3,-64],[-1,-9],[-2,-7],[-4,-10],[-2,-9],[-1,-12],[0,-25],[2,-25],[3,-19],[8,-34],[6,-33],[5,-20],[1,-27],[1,-13],[3,-10],[8,-18],[1,-10],[0,-12],[4,-28],[2,-11],[11,-39],[3,-22],[9,-15],[3,-9],[25,-90],[15,-33],[15,-28],[3,-6],[6,-17],[5,-9],[9,-9],[5,-6],[1,-10],[-2,0],[-8,10],[-9,5],[-24,4],[-5,2],[-5,4],[-3,6],[-3,10],[2,7],[4,1],[3,-4],[2,0],[-5,22],[-13,16],[-43,34],[-4,8],[-4,10],[-14,72],[-16,49],[-7,42],[-5,10],[-5,14],[-3,3],[-2,2],[-15,17],[-10,15],[-5,3],[-4,7],[-6,16],[-4,17],[-2,13]],[[84841,51884],[6,-6],[1,-6],[-1,-21],[-8,-9],[-9,5],[-6,13],[0,16],[3,7],[5,3],[5,0],[4,-2]],[[85745,51941],[3,-27],[-4,-24],[-6,-21],[-4,-22],[-1,-38],[-16,-63],[-3,-20],[-2,-7],[-16,-28],[-5,-5],[-40,-8],[-4,-3],[-4,-9],[-8,-11],[-6,-4],[2,13],[4,14],[-1,10],[-9,19],[-2,10],[1,41],[-2,28],[-3,14],[-4,7],[-6,5],[3,12],[12,23],[8,25],[12,54],[10,23],[12,12],[5,9],[3,20],[2,5],[6,9],[2,2],[3,-2],[3,-7],[8,-3],[3,5],[1,11],[4,14],[6,5],[5,-5],[3,-9],[7,-29],[3,-9],[3,-4],[12,-32]],[[84845,52124],[2,-9],[-1,-8],[-2,-7],[-7,-13],[-2,-4],[-1,-4],[-1,-10],[1,-8],[4,-11],[1,-7],[0,-7],[-1,-6],[-2,-4],[-6,1],[-2,7],[-2,11],[0,11],[-1,9],[-4,17],[-1,11],[1,7],[6,23],[2,6],[4,5],[4,0],[4,-4],[4,-6]],[[84903,52524],[0,-4],[3,-9],[0,-5],[0,-5],[-1,-3],[-10,-16],[-2,-2],[-4,2],[-1,4],[0,6],[-2,7],[-6,7],[-13,7],[-5,8],[0,10],[2,29],[1,6],[1,2],[0,20],[-1,3],[-6,7],[-15,26],[-3,8],[-3,10],[-1,12],[1,13],[6,16],[10,-4],[10,-13],[6,-15],[10,-33],[1,-10],[0,-4],[0,-3],[-1,-5],[1,-6],[1,-3],[5,-8],[2,-5],[3,-17],[1,-1],[3,-3],[3,-2],[1,0],[1,-13],[2,-14]],[[85206,52752],[10,-6],[9,-12],[6,-16],[2,-10],[4,-13],[-5,-8],[-7,-7],[-13,24],[-8,30],[2,18]],[[85182,52828],[12,-29],[3,-7],[1,-12],[-4,-13],[-4,-15],[3,-25],[-6,0],[-2,26],[-2,25],[1,19],[-5,13],[-6,8],[-2,15],[-1,21],[0,11],[8,-10],[4,-27]],[[85241,53035],[8,-15],[6,-14],[-16,-43],[-15,-31],[0,-42],[0,-29],[-3,-12],[-11,-15],[-12,11],[-11,-4],[-3,18],[3,15],[4,11],[8,11],[11,52],[12,23],[-3,10],[-4,3],[-5,3],[-13,8],[-1,14],[2,12],[-2,15],[-1,6],[-1,7],[-1,7],[0,18],[2,15],[10,30],[0,4],[0,7],[0,6],[-2,13],[0,7],[3,6],[7,2],[7,1],[6,-3],[4,-5],[1,-6],[0,-6],[2,-7],[4,-4],[3,-1],[2,-2],[1,-9],[2,-13],[-2,-12],[-2,-13],[-2,-13],[-1,-15],[3,-21]],[[83988,45476],[8,-2],[6,-5],[3,-10],[-3,-15],[-9,-9],[-7,13],[-2,18],[4,10]],[[83808,45561],[6,-3],[3,-11],[0,-13],[-4,-10],[-6,-2],[-4,6],[-5,21],[3,3],[1,4],[2,3],[4,2]],[[83827,46121],[11,6],[5,-14],[-1,-19],[-7,-9],[-9,-8],[-5,1],[-2,13],[1,9],[1,9],[3,7],[3,5]],[[81831,46247],[3,0],[3,-1],[2,-3],[0,-6],[0,-10],[-1,-2],[-24,5],[-6,0],[-3,0],[-2,3],[1,6],[1,4],[1,2],[10,9],[3,1],[2,-1],[6,-6],[4,-1]],[[81768,46271],[4,-14],[4,-11],[-1,-15],[0,-13],[-4,1],[-6,6],[-7,5],[-2,7],[-5,-1],[-4,3],[-2,10],[-3,15],[-1,12],[7,16],[7,3],[6,-4],[4,-8],[3,-12]],[[84267,49479],[3,-4],[2,-6],[0,-7],[-1,-7],[-2,-4],[-6,-6],[-2,-5],[-7,-21],[-4,-8],[-6,1],[-3,10],[3,12],[14,32],[7,11],[1,1],[1,1]],[[83927,50242],[-5,-5],[-2,2],[-2,4],[-4,1],[-1,-5],[0,-7],[-1,-4],[-4,6],[-3,26],[0,15],[1,19],[3,16],[5,3],[2,-30],[1,-4],[8,-9],[1,-6],[2,-8],[0,-8],[-1,-6]],[[86129,45873],[3,-2],[2,-4],[-1,-9],[-4,0],[-4,6],[-2,1],[-4,0],[-2,2],[1,2],[1,4],[2,0],[2,-1],[3,1],[3,0]],[[86112,45895],[3,-11],[-2,-4],[-4,1],[0,2],[-1,4],[-2,3],[-1,7],[-1,5],[1,5],[3,1],[3,-2],[1,-5],[0,-6]],[[86020,45986],[-6,6],[0,8],[1,7],[2,-1],[5,-10],[2,-3],[3,0],[2,3],[2,-2],[-1,-7],[-5,-5],[-3,0],[-2,4]],[[85867,46328],[-2,6],[0,6],[2,4],[3,3],[3,0],[2,-9],[-1,-9],[-2,-3],[-2,-1],[-3,3]],[[85967,46469],[-1,-3],[-1,3],[0,7],[3,9],[3,3],[3,0],[3,1],[2,-1],[1,-5],[-1,-4],[-3,-15],[-1,-3],[-3,-1],[-3,3],[-1,3],[0,4],[-1,-1]],[[86114,46722],[-2,2],[-2,5],[0,4],[1,2],[5,-4],[1,-3],[-1,-4],[-2,-2]],[[85430,47205],[1,4],[2,-7],[-3,3]],[[85431,47218],[1,-5],[-3,2],[2,3]],[[85496,47266],[3,6],[1,-5],[-4,-1]],[[85493,47302],[0,4],[2,-6],[-2,2]],[[86662,47320],[3,4],[3,-1],[2,-10],[-4,-25],[-2,-3],[-2,0],[-2,-1],[-1,-5],[-3,-1],[-1,10],[0,17],[5,12],[2,3]],[[86043,47791],[1,3],[5,-4],[-3,-9],[-3,10]],[[87308,50918],[4,5],[5,0],[1,-8],[-3,-9],[-4,-4],[-5,2],[-1,6],[3,8]],[[86454,51073],[0,4],[2,6],[0,-4],[-2,-6]],[[86459,51103],[2,4],[2,-2],[0,-7],[-1,-5],[-3,-5],[-1,5],[1,10]],[[85109,51263],[2,-4],[-3,-13],[0,-4],[-2,-11],[-1,-1],[-6,19],[-2,2],[-1,2],[1,8],[3,5],[2,2],[2,0],[2,-3],[3,-2]],[[84831,51724],[3,7],[1,-4],[-1,-9],[-1,-3],[-1,1],[-1,0],[-1,-2],[-4,-5],[-2,-1],[-2,-3],[-2,-5],[-2,-4],[-2,2],[-2,5],[0,6],[2,5],[1,1],[2,4],[2,0],[0,3],[-1,1],[-1,4],[1,4],[1,-1],[2,-3],[1,2],[1,-1],[1,-2],[3,-2],[2,0]],[[85163,53761],[2,5],[2,-1],[-1,-6],[-1,-3],[-2,5]],[[83781,44191],[2,0],[3,-1],[0,-7],[-5,-7],[-5,-4],[-6,-3],[-6,-1],[-6,1],[-1,6],[4,8],[6,7],[9,2],[5,-1]],[[82191,46261],[1,-3],[1,-8],[-1,-23],[-5,-13],[-11,-7],[-11,5],[-11,12],[-4,11],[3,6],[2,1],[1,-3],[1,1],[3,16],[2,-1],[1,-5],[1,-7],[2,-6],[2,-2],[4,1],[6,-5],[7,-1],[3,0],[1,3],[-1,1],[-1,-1],[-2,4],[-1,6],[1,5],[2,3],[2,0],[1,-4],[0,2],[1,8],[0,4]],[[87424,46618],[0,-6],[1,-7],[-1,-12],[-4,-4],[-4,1],[-2,-1],[-1,-3],[-4,-3],[-5,2],[-3,10],[-1,13],[-2,9],[-3,5],[0,7],[2,6],[3,6],[6,6],[5,-2],[6,-7],[4,-10],[3,-10]],[[80675,47013],[7,3],[2,-5],[0,-10],[-4,-10],[-4,-4],[-2,4],[-1,7],[-1,6],[0,5],[3,4]],[[87280,47059],[4,-7],[1,-1],[0,-10],[-2,-15],[-4,-7],[-4,-2],[-4,2],[-3,9],[0,13],[0,13],[3,8],[4,1],[2,-2],[1,0],[2,-2]],[[87108,49012],[4,-4],[0,-12],[-6,-14],[-6,0],[0,2],[-2,3],[-9,9],[-3,7],[-2,10],[-2,8],[-2,9],[4,4],[9,-9],[4,-6],[0,4],[2,0],[3,-5],[4,-4],[2,-2]],[[84333,49520],[2,-5],[2,-7],[0,-10],[-1,-7],[-1,-13],[0,-8],[-2,-9],[-4,-6],[-2,-2],[-1,-2],[-3,-1],[-3,1],[-3,-1],[-3,3],[-3,6],[-2,2],[-1,-4],[-2,-2],[-3,2],[-2,6],[0,4],[-2,14],[-1,12],[1,9],[0,9],[0,2],[1,3],[1,4],[2,5],[-1,6],[-1,3],[-2,2],[-1,4],[0,4],[1,3],[1,8],[2,12],[3,9],[3,2],[2,0],[2,4],[-1,10],[2,1],[2,-3],[2,-7],[4,-29],[0,-6],[-1,-4],[1,-11],[3,-11],[3,-1],[3,2],[3,-3]],[[85657,49884],[10,-4],[2,-8],[-1,-10],[-4,-6],[-6,-1],[-2,1],[1,1],[-2,1],[-5,2],[-4,5],[-1,9],[1,8],[0,8],[-6,10],[-2,4],[0,2],[2,5],[2,2],[3,-1],[2,-4],[1,-7],[1,-6],[5,-6],[3,-5]],[[86083,50228],[2,-3],[2,-8],[-1,-9],[-1,-4],[-2,-6],[-1,-12],[-3,-9],[-3,-5],[-3,2],[-4,10],[-2,12],[0,11],[1,7],[2,3],[1,2],[4,5],[5,3],[3,1]],[[77374,50564],[11,7],[10,2],[13,-3],[13,3],[7,-5],[6,0],[11,-3],[9,-12],[4,-18],[-2,-15],[-12,1],[-11,0],[-10,-7],[-10,-2],[-11,5],[-8,4],[-13,0],[-10,2],[-3,13],[-1,20],[7,8]],[[79089,50914],[5,-1],[4,-7],[-2,-8],[-3,-4],[-2,4],[-3,9],[1,7]],[[79071,50971],[1,-7],[0,-3],[0,-6],[-2,-3],[-1,-3],[-2,-2],[-4,0],[-1,3],[1,3],[2,7],[1,12],[2,6],[3,-7]],[[84769,51535],[1,-4],[1,-8],[-7,-13],[0,-5],[-1,-4],[-1,0],[-3,4],[-1,6],[-1,8],[-1,10],[-1,11],[1,5],[1,7],[2,2],[3,-5],[2,-7],[3,-5],[2,-2]],[[85313,53297],[3,-4],[1,-9],[-2,-7],[-4,7],[0,10],[0,2],[2,1]],[[82695,52935],[-2,4],[-15,27],[-1,7],[2,8],[5,7],[6,6],[4,3],[5,-1],[10,-7],[5,-1],[3,-3],[3,-7],[4,-13],[2,-5],[3,-3],[2,-2],[4,0],[13,-9],[1,-6],[2,-9]],[[78353,54175],[7,-10],[15,-22],[3,-3],[7,3],[1,7],[-3,5],[-4,-3],[3,9],[6,0],[32,-25],[6,-8],[12,-26],[33,-140],[6,-15],[6,-10],[2,-4],[15,-19],[7,-11],[5,-15],[4,-19],[2,-9],[8,-7],[50,-84],[12,-12],[11,-5],[5,-7],[14,-27],[26,-61],[28,-95],[10,-51],[27,-98],[17,-63],[1,-12],[1,-4],[5,-12],[2,-6],[0,-7],[-2,-17],[0,-14],[3,-24],[5,-90],[-1,-13],[-2,-11],[-2,-12],[3,-27],[0,-8],[9,-55],[0,-18],[0,-7],[-4,-20],[-2,-7],[-2,-4],[-4,-10],[-1,-5],[0,-5],[2,-15],[-2,-6],[-2,-2],[0,-1],[-2,-2],[-3,-3],[-5,-16],[-3,-10],[0,-10],[2,-19],[10,-54],[-1,-15],[-6,8],[-5,-17],[-3,-26],[-1,-20],[0,-22],[-1,-10],[-4,-1],[-3,-7],[-2,-11],[-2,-8],[1,-11],[1,-10],[11,-50],[1,-8],[5,-14],[9,-19],[7,-20],[-4,-18],[9,4],[-13,-61],[-2,-24],[5,-73],[2,-12],[1,-12],[-6,-143],[2,-24],[9,-42],[13,-37],[33,-69],[3,-3],[5,-2],[5,-1],[1,-2],[4,-8],[3,-2],[3,1],[7,7],[4,-4],[0,-4],[0,-5],[0,-5],[10,-16],[3,-10],[8,-33],[-3,-14],[0,-11],[2,-11],[20,-55],[3,-5],[6,-10],[2,-4],[1,-6],[0,-12],[1,-6],[2,-7],[5,-13],[1,-7],[-1,-5],[-3,-12],[0,-7],[2,-12],[13,-34],[7,-37],[5,-15],[3,-15],[2,-6],[6,-15],[1,-6],[3,-13],[0,-12],[-1,-25],[2,-13],[3,-12],[4,-7],[3,6],[2,0],[7,-29],[3,-27],[5,-16],[1,-8],[1,-20],[1,-9],[4,-8],[2,-7],[-1,-7],[1,-8],[2,-24],[6,-33],[3,-27],[0,-15],[-2,-6],[-2,-6],[1,-26],[-2,-9],[-10,0],[-2,-2],[-3,-8],[-1,-2],[-13,1],[-5,3],[-11,9],[-2,4],[-1,6],[1,11],[-2,9],[-3,6],[-4,6],[-3,6],[-1,21],[7,11],[10,8],[7,17],[-5,2],[-5,-2],[-5,-6],[-9,-15],[-2,-2],[-1,4],[-2,10],[-9,39],[-6,21],[-6,10],[-2,-8],[3,-16],[10,-35],[0,-8],[-1,-17],[1,-8],[1,-8],[1,-9],[-1,-9],[-10,-17],[-13,7],[-24,26],[-7,-1],[-12,-12],[-5,-3],[-12,2],[-4,-1],[-4,-5],[-15,-39],[-8,-14],[-10,4],[0,3],[-2,6],[-2,4],[-2,-3],[1,-6],[1,-9],[0,-5],[0,-7],[-5,-15],[-4,-21],[-4,12],[-9,17],[-4,12],[-3,12],[-9,64],[-5,23],[-8,19],[-11,16],[-33,26],[-47,63],[-12,11],[-6,4],[-6,1],[-5,3],[-3,6],[-5,15],[-5,14],[-7,12],[-7,11],[-9,8],[-4,-3],[-14,-5],[-5,1],[-6,7],[-4,11],[-5,26],[-5,11],[-22,39],[-4,7],[-2,8],[3,1],[0,2],[0,2],[-1,3],[-3,7],[-5,8],[-11,13],[-39,34],[-44,39],[-10,12],[-7,12],[-21,50],[-3,3],[-6,3],[-6,6],[-3,9],[0,11],[-4,2],[-5,4],[-8,10],[-5,-7],[-8,-1],[-4,-8],[-2,14],[0,19],[-2,17],[-4,7],[-2,2],[-3,4],[-4,10],[-6,34],[-2,6],[-4,4],[-13,2],[-4,5],[-2,6],[-5,8],[-15,5],[-6,6],[-9,3],[-7,6],[-11,16],[-6,17],[-14,44],[-8,16],[-13,6],[-12,3],[-7,9],[5,27],[-6,2],[0,8],[14,36],[4,8],[4,3],[3,7],[0,15],[-2,29],[-2,7],[-8,14],[-1,7],[-6,77],[-2,12],[-4,10],[-9,17],[-1,4],[-1,6],[-2,4],[-5,3],[-3,3],[-2,3],[-1,3],[-2,9],[-13,38],[-9,18],[-2,5],[-2,14],[-6,17],[-2,26],[-2,13],[-5,13],[-20,29],[-7,7],[-3,4],[-1,4],[-5,16],[-7,19],[-4,7],[-13,5],[-3,6],[0,10],[3,14],[5,10],[1,4],[-3,2],[-7,-2],[-3,-2],[-1,-2],[-3,-3],[-7,5],[-7,7],[-4,5],[-3,9],[-2,10],[0,11],[0,29],[1,10],[4,4],[17,-2],[6,2],[4,12],[5,5],[5,2],[5,-2],[-3,12],[-6,-1],[-7,-7],[-3,-4],[-7,1],[-1,9],[1,14],[0,16],[-3,8],[-15,20],[-4,10],[-6,8],[-6,3],[-6,-8],[-3,12],[-3,19],[-1,18],[2,8],[-4,2],[-2,8],[0,9],[-1,9],[-3,7],[-3,1],[-1,4],[1,12],[3,16],[1,8],[0,11],[1,8],[6,8],[1,8],[1,17],[5,38],[3,16],[-4,-3],[-5,2],[-4,8],[-2,11],[1,12],[3,11],[3,6],[5,-6],[2,8],[2,7],[2,6],[3,3],[-7,3],[-6,-5],[-4,0],[-2,16],[-1,30],[3,7],[8,2],[0,4],[-2,1],[-4,3],[2,8],[-1,4],[-5,4],[-3,1],[-2,-2],[-1,1],[-2,8],[0,8],[2,10],[0,6],[-1,2],[-3,1],[-2,2],[-1,8],[-3,-3],[-3,-2],[-7,1],[-3,2],[2,5],[3,5],[1,0],[0,8],[-1,3],[-2,2],[-3,5],[-3,3],[-3,-1],[-3,-4],[-2,-4],[-3,8],[-2,8],[-1,8],[-2,9],[-6,16],[-2,13],[-4,20],[-3,8],[-2,14],[1,5],[1,0],[1,-1],[1,2],[3,6],[3,6],[3,7],[2,19],[4,19],[0,12],[0,6],[-3,12],[-1,4],[1,7],[3,11],[0,6],[-1,8],[-6,27],[-6,17],[-1,8],[-1,13],[2,51],[-2,14],[-6,24],[-2,13],[-1,50],[2,-2],[3,-2],[4,1],[2,3],[0,6],[-2,4],[-2,2],[-2,3],[3,69],[-7,119],[-2,11],[-4,11],[-4,13],[-5,26],[-10,39],[-3,24],[-4,9],[-9,13],[-8,19],[-6,26],[-4,27],[-2,26],[-1,11]],[[77812,54285],[3,9],[2,13],[1,15],[0,5],[-1,10],[0,5],[2,7],[3,4],[1,5],[0,9],[-2,13],[-1,10],[2,24],[1,14],[0,7],[2,5],[4,2],[3,-3],[0,-2],[2,-3],[2,-3],[4,0],[0,1],[4,6],[3,0],[3,0],[3,-3],[2,-4],[10,-67],[3,-11],[6,-10],[8,-8],[3,-3],[6,-4],[4,-1],[8,2],[4,-2],[9,-14],[5,-5],[17,-10],[9,-9],[5,-3],[5,2],[18,27],[5,0],[0,-4],[0,-13],[1,-5],[2,-3],[3,-1],[3,0],[3,-1],[6,-8],[3,-11],[1,-29],[0,-6],[1,-7],[4,-12],[0,-5],[0,-5],[-1,-5],[0,-1],[-1,-5],[0,-17],[1,-5],[2,-9],[2,0],[1,4],[4,3],[3,-1],[12,-6],[5,2],[7,17],[6,2],[9,-15],[4,-3],[13,6],[3,-3],[2,-8],[1,-12],[0,-14],[-3,-5],[-4,-4],[-3,-10],[-1,-13],[5,-9],[5,-9],[2,-11],[-2,-23],[0,-34],[-2,-19],[0,-12],[-2,-11],[-6,-4],[-5,-2],[-5,-6],[-11,-49],[-2,-7],[-1,-7],[1,-7],[1,-5],[2,-7],[3,-14],[2,-4],[3,-3],[5,1],[3,-1],[6,-9],[6,-13],[4,-15],[3,-15],[5,-4],[7,5],[13,17],[5,8],[3,11],[3,12],[1,13],[3,27],[8,9],[11,4],[11,11],[10,14],[30,24],[9,8],[7,3],[6,-3],[4,-12],[1,-7],[2,-4],[2,-3],[3,-1],[3,-3],[0,-4],[-1,-6],[0,-6],[5,-27],[5,-10],[6,-2],[2,3],[1,0],[4,9],[4,3],[3,-3],[3,-6],[1,-7],[3,-6],[6,-7],[4,1],[3,7],[3,13],[1,4],[8,10],[2,5],[1,6],[1,5],[3,4],[9,17],[2,22],[0,26],[4,24],[7,18],[21,33],[7,16],[3,19],[-1,46],[2,31]],[[81984,53377],[5,-1],[4,1],[3,5],[3,20],[3,5],[4,-1],[3,-8],[1,-4],[1,-1],[6,0],[3,-1],[3,-2],[2,-3],[3,-12],[5,-3],[6,-1],[4,2],[3,5],[10,20],[1,3],[11,21],[9,24],[3,4],[6,2],[5,5],[5,7],[2,7],[2,9],[2,24],[0,22],[1,5],[3,12],[2,5],[3,4],[1,4],[-2,8],[-11,-10],[-10,0],[-9,9],[-25,45],[-1,6],[1,5],[0,4],[-3,1],[-1,-1],[-6,-10],[-1,7],[0,8],[2,10],[2,19],[2,8],[2,6],[1,4],[3,7],[14,18],[4,12],[3,9],[19,30],[10,45],[6,11],[4,-13],[-10,-38],[6,-17],[1,6],[1,16],[2,6],[9,-17],[6,-6],[24,-3],[8,1],[8,5],[8,15],[8,24],[5,26],[3,24],[3,26],[1,11],[3,10],[4,7],[25,29],[5,11],[1,13],[1,27],[2,12],[17,59],[4,25],[-5,18],[-6,-5],[-2,8],[3,11],[8,6],[5,6],[13,42],[6,11],[4,4],[4,2],[4,-3],[4,-4],[3,-1],[2,6],[-1,19],[-4,2],[-5,-6],[-7,-1],[0,3],[8,9],[4,10],[1,2],[2,1],[6,-1],[2,4],[1,2],[0,3],[2,19],[1,3],[1,5],[3,7],[25,40],[4,9],[5,8],[5,5],[4,6],[2,13],[0,11],[1,11],[2,9],[4,3],[5,8],[17,49],[4,9],[3,8],[2,11],[0,15],[0,20],[0,6],[1,4],[4,10],[1,6],[-1,23],[1,10],[8,8],[2,9],[3,23],[0,13],[1,6],[2,2],[1,2],[3,9],[2,7],[2,5],[3,4],[3,1],[1,-2],[3,-14],[12,-16],[1,-6],[4,-43],[-5,6],[-3,2],[-1,-2],[-2,-19],[0,-3],[3,-6],[4,-3],[4,-5],[2,-13],[-1,-23],[-3,-16],[-9,-28],[-5,-20],[-4,-26],[1,-21],[11,-6],[6,7],[5,11],[3,10],[3,5],[3,3],[13,25],[9,14],[2,8],[1,20],[1,3],[2,1],[2,3],[4,16],[10,22],[1,9],[-1,12],[-7,26],[1,12],[2,7],[2,1],[3,-2],[3,-2],[2,2],[2,5],[1,4],[-1,2],[-2,3],[-1,6],[1,7],[1,4],[3,1],[3,-2],[3,-2],[2,-1],[3,3],[4,7],[2,0],[2,-3],[7,-6],[2,-1],[1,-3],[15,-18],[1,-3],[1,-5],[1,-10],[-2,-28],[-1,-6],[-4,-4],[-1,-11],[0,-12],[2,-10],[10,-28],[1,-10],[1,-37],[1,-10],[3,-12],[4,-5],[11,1],[4,-3],[4,-7],[6,-14],[7,-14],[5,-8],[5,-3],[4,3],[3,6],[7,24],[4,11],[2,0],[1,-9],[1,-17],[1,0],[6,-14],[-1,1],[-1,-3],[0,-3],[0,-3],[1,-1],[4,-2],[1,-1],[4,-8],[3,-3],[3,-1],[4,4],[3,1],[3,-3],[7,-16],[3,-10],[2,-13],[2,0],[1,5],[2,3],[1,-1],[2,-3],[1,-4],[0,-4],[0,-6],[1,-6],[1,-6],[2,-10],[1,-4],[-1,-6],[-2,-5],[-1,-5],[2,-16],[-2,-39],[-2,-9],[-4,-1],[-9,3],[-6,-3],[-5,-8],[-8,-15],[-2,-10],[1,-9],[6,-15],[5,-23],[4,-4],[1,-3],[0,-6],[1,-5],[0,-5],[-1,-7],[-2,-5],[-3,-2],[-2,-2],[-1,-7],[2,-10],[4,-2],[4,-4],[2,-15],[-2,-9],[-4,-9],[-10,-12],[-35,-25],[-7,-16],[5,2],[16,15],[7,3],[20,1],[19,5],[13,-4],[5,1],[2,7],[-2,15],[2,4],[3,-1],[4,-2],[4,-1],[5,1],[13,5],[2,4],[2,8],[4,7],[8,11],[9,25],[5,6],[1,3],[2,1],[4,-2],[9,-21],[1,-5],[0,-7],[0,-5],[5,-6],[0,-7],[0,-12],[1,-14],[12,-33],[2,-3],[0,-4],[-8,-23],[-5,-5],[-6,-4],[-6,-1],[-5,4],[-5,-3],[-17,3],[-5,-3],[-3,-7],[0,-8],[2,-3],[1,-4],[9,-46],[2,-4],[1,-1],[2,2],[3,1],[4,3],[11,11],[5,2],[2,-1],[2,-5],[3,-2],[2,1],[3,3],[3,1],[2,-3],[3,-9],[2,-2],[3,3],[2,6],[0,6],[-1,6],[2,10],[1,4],[2,5],[0,4],[-2,11],[1,7],[4,7],[12,2],[12,11],[6,-3],[14,-16],[2,-1],[1,3],[3,7],[2,2],[3,-3],[3,-3],[2,-2],[5,-3],[28,-35],[10,-17],[4,-5],[5,-5],[4,-5],[2,-8],[-2,-6],[-2,-3],[-1,-2],[-1,-3],[-3,-33],[-2,-13],[-1,-12],[2,-13],[2,0],[3,15],[1,7],[2,5],[2,6],[-1,16],[1,6],[8,11],[6,0],[5,-8],[13,-34],[6,-11],[4,-4],[8,-3],[5,-8],[4,-12],[2,-14],[2,3],[1,3],[0,4],[0,6],[13,-21],[5,-3],[6,-6],[5,-12],[1,-13],[-5,-6],[3,-5],[4,-3],[5,0],[3,4],[1,8],[-2,6],[0,5],[3,5],[7,0],[13,-15],[9,-1],[21,22],[7,3],[5,-5],[4,-9],[6,-19],[6,-13],[3,-7],[1,-10],[-1,-13],[-2,-20],[-1,-10],[2,-27],[-1,-15],[-6,-12],[-14,-31],[-11,-13],[-51,-40],[-52,-32],[-10,-13],[-6,-6],[-7,-4],[-6,-1],[-4,2],[-9,8],[-8,2],[-6,4],[-3,0],[-3,-3],[-9,-13],[-6,-8],[-2,0],[-4,6],[-2,4],[-5,18],[-9,24],[-9,9],[-6,4],[-2,-3],[-3,2],[-6,-8],[-8,-16],[-3,3],[-1,-2],[-1,-6],[1,-7],[-11,5],[-10,-13],[-15,-37],[-5,-7],[-2,-5],[-1,-6],[0,-7],[2,-3],[1,-1],[8,-10],[1,-3],[2,-6],[3,-17],[7,-22],[7,-19],[9,-17],[10,-15],[3,-7],[3,-4],[2,-1],[3,0],[6,-2],[2,-2],[1,-3],[2,-11],[1,-4],[2,-4],[2,-2],[5,-5],[1,11],[3,2],[5,-3],[4,-5],[3,-8],[1,-8],[-1,-7],[-4,-8],[-1,-7],[3,-7],[3,-6],[2,-4],[2,-4],[5,6],[8,12],[3,-3],[7,-2],[4,-3],[-2,-8],[3,-11],[11,-26],[0,-4],[-2,-6],[-3,-4],[-3,1],[-2,3],[-5,2],[2,-10],[-1,-9],[-3,-8],[-3,-6],[-4,-6],[-4,-2],[-11,1],[-5,-2],[-9,-5],[-5,-2],[-12,0],[-7,2],[-4,7],[-4,-11],[-2,-3],[-25,-15],[-22,-4],[-7,-5],[-37,-39],[-6,-1],[-17,11],[-5,2],[-3,3],[-11,21],[-4,5],[-2,2],[-2,1],[-1,2],[-2,12],[-1,2],[-4,1],[-9,7],[-7,3],[-2,2],[-6,9],[-3,10],[-3,12],[-4,11],[-5,-1],[-6,-9],[-5,-10],[-3,-6],[2,-5],[5,-7],[1,-7],[0,-24],[1,-6],[4,-9],[1,-7],[-2,-7],[-2,-6],[-6,-8],[-2,-4],[-1,-5],[-2,-4],[0,-5],[1,-3],[4,-10],[2,-5],[-2,1],[-3,-1],[-11,-10]],[[80456,51703],[2,-10],[0,-13],[3,-24],[0,-12],[-1,-9],[-1,-9],[0,-9],[2,-13],[8,-25],[6,-11],[5,-9],[17,-15],[10,-14],[12,-10],[4,-8],[4,-10],[4,-21],[4,-9],[4,-2],[13,1],[4,1],[4,5],[6,1],[35,0],[4,-2],[5,-8],[4,-2],[1,1],[4,8],[2,3],[3,2],[1,0],[2,-2],[7,-16],[2,-1],[1,10],[3,7],[0,4],[0,4],[-1,6],[-1,2],[0,19],[0,5],[4,13],[4,6],[4,-3],[2,-17],[3,-7],[1,-4],[0,-4],[-1,-8],[1,-4],[1,-4],[1,-4],[1,-2],[2,-2],[2,-2],[3,-1],[6,-1],[3,2],[3,12],[8,6],[5,6],[5,1],[3,-11],[-3,-9],[-2,-8],[-2,-10],[0,-11],[-1,-5],[-5,-11],[-2,-7],[8,7],[3,1],[4,-4],[3,-6],[1,-7],[1,-5],[3,-2],[2,1],[6,6],[3,1],[4,-3],[12,-13],[16,-10],[7,-9],[3,-14],[-2,-15],[-4,-10],[-11,-15],[0,-4],[7,0],[6,2],[5,6],[6,10],[3,11],[-1,12],[-1,10],[0,10],[7,12],[13,-4],[24,-21],[12,-16],[21,-45],[10,-15],[17,-18],[3,-3],[7,2],[9,11],[6,4],[9,-8],[10,-18],[11,-11],[12,12],[-5,1],[-7,6],[-4,1],[-1,4],[-3,17],[-2,3],[-4,2],[-8,6],[-4,0],[-3,-2],[-10,-9],[-6,-1],[-6,3],[-4,7],[-4,9],[-5,7],[-12,11],[-5,8],[-5,28],[-5,11],[-2,8],[0,17],[0,5],[4,20],[2,22],[3,8],[16,6],[6,1],[6,-4],[3,-11],[4,-14],[4,-8],[7,6],[3,2],[4,-6],[5,-5],[6,3],[-6,4],[-2,3],[-5,8],[-3,0],[-2,0],[-6,3],[-2,0],[0,1],[-1,8],[-3,9],[-1,3],[-1,2],[-5,2],[-1,2],[-1,2],[-7,24],[-1,8],[-1,9],[2,3],[6,3],[2,4],[-1,3],[-4,6],[-1,5],[1,12],[2,11],[6,20],[9,38],[8,55],[1,14],[1,3],[4,-1],[5,-4],[7,1],[-7,13],[-1,14],[4,8],[5,-1],[6,-4],[10,-5],[2,2],[4,5],[2,4],[5,15],[1,5],[-3,5],[-3,-2],[-3,-7],[-2,-14],[-3,-2],[-3,3],[-8,10],[-5,2],[-20,-6],[-4,1],[-2,6],[0,14],[2,9],[4,10],[6,6],[5,-3],[-3,11],[-5,5],[-5,2],[-2,4],[0,11],[4,28],[2,41],[4,17],[7,11],[2,-10],[4,-4],[9,-7],[3,-5],[7,-19],[3,-4],[1,-1],[2,-4],[2,-2],[2,1],[9,13],[3,2],[9,3],[2,-1],[5,-8],[6,-7],[-3,11],[-5,12],[-9,18],[-3,7],[-3,25],[-2,9],[9,-1],[7,-5],[7,0],[5,10],[2,-2],[0,-1],[1,1],[1,2],[-6,5],[-10,5],[-5,6],[-3,6],[-3,7],[-2,9],[1,14],[4,37],[2,23],[2,8],[3,7],[20,33],[30,40],[9,8],[53,23],[42,3],[79,44],[77,43],[42,19],[17,15],[4,0],[48,32],[9,10],[15,34],[6,22],[-4,14],[2,5],[8,10],[13,25],[3,4],[1,5],[10,31],[21,41],[5,16],[1,5],[1,5],[0,13],[2,6],[6,10],[2,4],[2,6],[13,32],[6,24],[3,14],[0,13],[3,11],[5,10],[11,14],[68,123],[58,162],[6,28],[-2,24],[6,19],[3,25],[0,28],[-7,56],[2,10],[7,4]],[[81666,53195],[18,-19],[15,-5],[6,-6],[9,-15],[7,-6],[3,-5],[2,-12],[2,-1],[4,-1],[2,-1],[1,-4],[0,-5],[1,-4],[3,-7],[1,-6],[3,-17],[0,-16],[3,-12],[2,-27],[-1,-6],[-4,-7],[0,-3],[0,-9],[1,-6],[10,-1],[12,-5],[11,4],[5,0],[4,-8],[6,-38],[2,-11],[4,-12],[18,-34],[6,-9],[2,-4],[1,-6],[2,-15],[2,-5],[11,-3],[13,17],[26,52],[2,8],[2,25],[1,11],[7,20],[2,11],[-1,11],[-9,-8],[0,12],[2,6],[1,3],[7,14],[3,10],[2,10],[3,23],[0,16],[-2,3],[-4,-1],[-5,4],[-5,17],[-2,21],[-1,70],[-1,13],[-2,12],[-5,22],[-2,11],[0,10],[3,5],[10,9],[5,6],[9,19],[5,6],[6,4],[5,-1],[5,-2],[5,1],[4,6],[2,9],[0,9],[1,10],[7,13]],[[81939,53365],[3,3],[2,4],[2,4],[2,5],[2,-12],[0,-23],[2,-21]],[[81952,53325],[-2,-47],[1,-49],[2,-23],[10,-46],[3,-23],[3,-58],[2,-9],[4,-5],[16,-13],[6,-2],[8,2],[2,-2],[5,-8],[2,-3],[6,1],[2,-2],[5,-7],[7,-6],[6,-1],[4,10],[-1,12],[-4,13],[-10,19],[-6,18],[-4,24],[-1,25],[0,23],[2,23],[1,11],[-2,14],[-18,111],[-7,22],[-3,5],[-4,3],[-3,6],[0,14]],[[82838,53937],[4,-2],[1,-6],[-2,-6],[-3,-2],[-2,-1],[-5,-3],[-1,-1],[-3,1],[-2,1],[-2,3],[-1,4],[2,5],[3,5],[4,2],[7,0]],[[80947,51886],[0,-3],[0,-5],[0,-3],[-3,3],[-3,2],[-2,-2],[-2,-5],[-2,-6],[-3,8],[-4,24],[-3,5],[-6,6],[-1,12],[2,26],[1,24],[-5,98],[0,30],[4,19],[10,-8],[5,-19],[3,-25],[1,-103],[2,-44],[6,-34]],[[78950,52119],[1,-29],[-1,-7],[-3,-5],[-6,-4],[-5,-1],[-4,4],[-5,12],[-3,7],[0,5],[0,3],[-1,10],[0,5],[2,4],[3,3],[2,3],[3,9],[0,9],[-1,9],[-1,10],[0,6],[2,6],[3,4],[2,-1],[2,-3],[0,-3],[1,-7],[0,-4],[4,-12],[2,-8],[3,-25]],[[82979,53130],[6,-4],[3,-8],[-1,-9],[-6,-3],[-11,0],[-4,-9],[-2,0],[-1,2],[0,2],[-1,12],[-1,3],[-3,6],[-1,3],[-1,7],[1,1],[3,1],[4,0],[15,-4]],[[82919,53223],[3,10],[8,-1],[7,-6],[7,-7],[0,-4],[-5,-1],[-2,-4],[-1,-7],[0,-8],[-5,10],[-2,2],[-1,-3],[-1,-5],[-1,-4],[-3,2],[-4,7],[-4,4],[-5,2],[-3,1],[-2,1],[-2,5],[-1,2],[-10,4],[-19,12],[0,4],[22,0],[3,2],[2,4],[2,4],[2,2],[5,-2],[3,-8],[2,-11],[5,-7]],[[82013,53647],[3,-29],[0,-15],[-5,-11],[-3,0],[-5,8],[-3,-1],[-5,-10],[-7,-9],[0,9],[8,46],[2,6],[8,15],[5,4],[2,-13]],[[77863,53698],[2,-9],[5,-5],[2,-6],[-5,-20],[-1,-23],[-1,-11],[-7,-27],[-1,-11],[-15,6],[-11,0],[0,-1],[0,-2],[-1,0],[-2,1],[-1,3],[0,2],[4,5],[0,8],[-1,32],[1,27],[-1,6],[-1,4],[-2,4],[0,3],[0,5],[1,5],[1,4],[-2,4],[3,3],[2,-3],[1,-6],[3,-2],[2,1],[1,4],[2,4],[1,3],[5,3],[6,-1],[5,-3],[5,-7]],[[77718,54166],[4,19],[6,5],[4,7],[0,-10],[-2,-5],[-2,-6],[0,-8],[0,-3],[0,-10],[2,-10],[-1,-9],[-3,-9],[-3,-2],[-4,8],[-2,9],[-3,2],[-2,11],[6,11]],[[77749,54239],[3,-10],[1,-5],[1,-5],[-3,-3],[-4,-2],[-2,-6],[-4,-4],[-1,-9],[-5,6],[-1,14],[-6,0],[-5,-4],[-4,-11],[-4,-9],[-4,-1],[-4,-7],[-3,-3],[-2,-2],[-4,29],[2,10],[-1,15],[-5,3],[-7,4],[-5,-1],[-2,8],[-1,10],[-1,25],[7,-5],[6,5],[9,-1],[4,-6],[9,-2],[5,1],[4,8],[3,11],[3,0],[4,0],[-1,5],[0,5],[2,-1],[3,-2],[2,-13],[2,-9],[3,-5],[6,-6],[0,-5],[2,-2],[2,-5],[-1,-7],[-3,-8]],[[82629,54477],[7,-19],[5,-18],[-1,-18],[-11,-18],[-7,-5],[-8,0],[-9,3],[-7,5],[-2,4],[-1,5],[0,5],[3,4],[3,2],[14,2],[4,2],[3,6],[2,9],[-3,6],[-10,1],[-1,8],[4,7],[11,3],[4,6]],[[82500,54826],[4,-8],[1,-14],[0,-14],[-3,-9],[-5,10],[-4,-4],[-2,-11],[3,-11],[-26,-14],[1,-6],[2,-3],[2,-3],[-2,-7],[-2,-2],[-4,-1],[-4,1],[-3,2],[13,53],[4,4],[10,5],[4,4],[11,28]],[[82547,54818],[21,8],[6,-4],[3,-10],[1,-14],[-3,-45],[-3,-18],[-4,-11],[-5,5],[-5,-5],[-16,-6],[-4,-4],[-1,-3],[-8,-7],[-2,-4],[-2,-7],[-1,-6],[-2,-6],[-3,-5],[-2,14],[-2,45],[1,10],[1,4],[0,27],[1,5],[2,3],[4,3],[3,3],[6,15],[7,9],[3,3],[4,1]],[[78130,52274],[-1,-7],[-2,-3],[-4,-2],[-2,5],[2,8],[5,5],[2,-6]],[[78149,52277],[-1,-4],[1,-8],[-1,-13],[-4,-8],[-5,-4],[-4,-7],[-2,-3],[-2,-3],[-2,-1],[0,3],[0,7],[7,36],[4,12],[5,4],[3,-3],[1,-8]],[[30691,40102],[1,-46],[3,-22],[6,-18],[22,-41],[10,-23],[7,-27],[2,-21],[0,-44],[3,-22],[4,-14],[3,0],[4,5],[4,2],[6,-13],[2,-4],[2,-2],[6,-3],[9,-10],[4,-4],[5,-3],[6,0],[4,4],[3,0],[3,-9],[0,-1],[-2,-25],[-10,-17],[-8,-17],[4,-28],[8,-18],[3,-10],[1,-14],[0,-6],[0,-5],[5,-25],[0,-5],[-1,-33],[1,-9],[10,-35],[2,-12],[0,-14],[-2,-28],[0,-31],[3,-29],[6,-24],[2,-7],[1,-8],[-1,-8],[-2,-8],[0,-1],[0,-1],[16,-66],[1,-6],[-1,-13],[-2,-11],[-8,-23],[4,-5],[4,-8],[5,-19],[6,-31],[3,-9],[4,-5],[13,-9],[9,-13],[26,-46],[7,-14],[10,-34],[7,-10],[10,-8],[30,-44],[6,-11],[4,-11],[2,-12],[-2,-4],[-11,-10],[-4,-8],[-6,-17],[-12,-38],[-15,-46],[-5,-10],[-12,-21],[-4,-12],[0,-11],[2,-7],[13,-21],[9,-19],[5,-7],[8,-7],[3,-4],[2,-8],[0,-5],[1,-17],[1,-8],[1,-4],[0,-3],[0,-9],[-6,-28],[0,-11],[-3,-20],[-1,-7],[-3,-6],[-2,0],[-3,2],[-4,1],[-9,-2],[-34,-21],[-4,-10],[1,-11],[8,-11],[9,-4],[1,-6],[-1,-17],[-1,-23],[3,-20],[11,-39],[-15,-11],[-7,-10],[-3,-16],[1,-18],[4,-18],[6,-16],[6,-13],[6,-10],[29,-27],[13,-17],[7,-6],[8,-14],[0,-10],[-19,-34],[-4,-12],[-2,-14],[0,-76],[5,-25],[6,-8],[6,-7],[4,-1],[12,1],[6,-3],[4,-9],[58,-192],[4,-26],[-1,-144],[2,-21],[17,-63],[6,-45],[3,-98],[1,-8],[3,-7],[6,-13],[14,-26],[6,-7],[4,-13],[4,-14],[1,-13],[-1,-5],[-4,-10],[-1,-6],[1,-6],[8,-22],[3,-15],[0,-11],[-5,-37],[0,-12],[2,-12],[11,-39],[2,-12],[2,-30],[9,-33],[0,-12],[-9,-88],[0,-46],[1,-15],[3,-9],[11,-4],[1,0],[6,-18],[2,-4],[9,-6],[43,-5],[20,2],[10,4],[88,38]],[[31335,36954],[50,-106],[-2,-18],[-5,-32],[-19,-126],[-20,-125],[-19,-126],[-1,-6],[-10,-60],[-9,-60],[-6,-39],[-6,-17],[-14,-15],[-11,-9],[-3,-2],[-5,-4],[-6,-4],[-2,-2],[-35,-30],[-35,-31],[-34,-30],[-35,-30],[-14,-12],[-14,-11],[-14,-12],[-14,-11],[-9,-8],[-5,-6],[-1,-5],[-3,-16],[-10,-33],[-4,-7],[-5,0],[-5,3],[-5,2],[-5,-6],[-11,-47],[-2,-18],[-2,-11],[-3,3],[-5,15],[-4,-2],[-2,-6],[-1,-9],[-1,-8],[-3,-20],[-14,-56],[-2,-13],[0,-10],[7,-32],[1,-4],[2,-5],[7,-8],[2,-3],[6,0],[3,-2],[1,-5],[2,-9],[0,-2],[-1,-3],[1,-3],[1,-3],[3,-5],[1,-2],[1,-5],[2,-3],[0,-4],[0,-6],[-1,-22],[6,-18],[9,-16],[6,-15],[0,-12],[-4,-8],[-5,-4],[-6,-3],[-6,1],[-5,1],[-4,0],[-5,-6],[-1,-2],[-6,-14],[-10,-64],[-15,-86],[-1,-23],[1,-11],[1,-10],[10,-24],[4,-13],[-4,-9],[2,-12],[0,-16],[0,-16],[5,-15],[6,-11],[4,-13],[2,-16],[4,-48],[19,-152],[2,-30],[-3,-21],[-35,-53],[-8,-21],[-3,-20],[-2,-24],[-1,-47],[3,-30],[4,-25],[8,-23],[9,-23],[53,-143],[4,-17],[1,-17],[-2,-10],[-4,-22],[-2,-11],[0,-7],[1,-15],[-1,-5],[-2,0],[-8,1],[-3,0],[-12,-11],[-6,-3],[-14,-1],[-7,-5],[-6,-8],[-5,-10],[-3,-13],[-2,-12],[-3,-8],[-7,-1],[-11,8],[-9,15],[-10,12],[-13,1],[-10,-5],[-3,-4],[-4,-10],[-12,-37],[-3,-13],[0,-11],[1,-23],[-1,-10],[-14,-59],[-3,-8],[-4,-7],[-10,-10],[-5,-7],[-2,-7],[-1,-7],[0,-8],[2,-8],[-1,-15],[-3,-16],[-7,-28],[-2,-6],[-7,-12],[-2,-6],[0,-10],[2,-7],[2,-8],[1,-8],[-2,-5],[-7,-7],[-3,-4],[-2,-7],[-2,-23],[-11,-89],[-5,-17],[-7,-10],[-16,-8],[-5,-4],[-3,-6],[-3,-9],[0,-5],[1,-4],[-1,-4],[-5,-9],[-10,-47],[-6,-18],[-6,-24],[-3,-6],[-4,2],[-6,8],[-5,4],[-4,-6],[-3,-31],[-3,-10],[-12,-30],[-15,-22],[-12,-25],[-1,-2],[-5,-33],[0,-63],[-1,-6],[-2,-3],[-3,-1],[-2,-2],[-6,-16],[-5,-18],[-3,-19],[-1,-20],[1,-14],[4,-25],[1,-13],[0,-10],[-8,-28],[-1,-5],[0,-5],[0,-5],[-2,-5],[-3,-8],[-3,-9],[-2,-11],[-1,-12],[0,-12],[1,-12],[2,-29],[0,-16],[-2,-13],[-5,-13],[-7,-5],[-13,-5],[-5,-3],[-1,-4],[0,-4],[-2,-7],[-3,-5],[-7,-9],[-5,-8],[-1,0],[-2,-2],[-1,-4],[1,-3],[3,-8],[0,-4],[-1,-6],[-3,-4],[-3,-3],[-3,-2],[-5,-7],[-3,-12],[-1,-29],[0,-10],[2,-8],[3,-7],[2,-9],[2,-31],[3,-5],[1,-7],[2,-7],[6,-56],[0,-18],[-1,-17],[0,-14],[2,-12],[8,-11],[2,-8],[4,-52],[-2,-79],[-2,-22],[-3,-21],[-10,-27],[-1,-9],[2,-10],[4,-2],[11,3],[10,-7],[9,-16],[4,-21],[-4,-22],[-2,-3],[-6,-5],[-2,-5],[-1,-4],[-1,-6],[-1,-11],[-1,-22],[-1,-11],[-2,-10],[-8,-15],[-7,-12],[-8,-8],[-10,-5],[-10,5],[-23,21],[-7,-7],[0,-10],[7,-22],[1,-12],[-2,-12],[-3,-6],[-5,-4],[-4,-6],[-6,-17],[-5,-45],[-4,-21],[-6,-18],[-1,-9],[-1,-12],[0,-8],[0,-6],[1,-5],[-2,-8],[-5,-12],[-1,-4],[-4,-21],[-6,-81],[1,-11],[3,-9],[5,-10],[8,-13],[3,-8],[0,-8],[-3,-1],[-12,3],[-5,-5],[-6,-18],[-3,-12],[-3,-17],[-3,-9],[-4,-8],[-4,-2],[-4,7],[-1,14],[-2,12],[-6,5],[-3,-4],[-16,-45],[-1,-9],[-1,-12],[0,-23],[-1,-11],[-6,-23],[1,-11],[2,-11],[1,-13],[-1,-11],[-5,-19],[-1,-11],[1,-22],[-1,-21],[-3,-26],[0,-11],[3,-15],[15,-54],[8,-18],[3,-10],[0,-25],[1,-14],[2,-14],[3,-10],[10,-19],[10,-5],[10,1],[12,-3],[5,-6],[6,-9],[5,-11],[3,-10],[1,-11],[-2,-8],[-2,-7],[-3,-9],[-2,-22],[-3,-5],[-7,0],[-12,8],[-5,2],[-4,-7],[-1,-7],[1,-5],[5,-9],[2,-5],[0,-5],[0,-11],[1,-6],[5,-6],[1,-4],[0,-6],[-2,-9],[-1,-6],[1,-7],[3,-13],[1,-6],[0,-6],[0,-10],[0,-6],[2,-14],[3,-5],[5,-2],[6,-4],[4,-9],[4,-10],[-1,-43],[5,-19],[11,-11],[4,-7],[4,-12],[0,-12],[0,-11],[0,-10],[6,-16],[-3,-2],[-6,0],[-2,-5],[0,-5],[-1,-11],[0,-13],[7,-64],[4,-18],[15,-33],[9,-16],[5,-5],[6,-5],[4,-5],[0,-8],[-5,-16],[-1,-11],[-3,-25],[-3,-9],[-3,-5],[-9,-4],[-4,-6],[-3,-12],[2,-9],[0,-1],[3,-10],[1,-12],[-5,-34],[0,-12],[2,-10],[4,-9],[10,-14],[3,-8],[8,-36],[8,3],[12,31],[10,3],[9,-7],[10,-10],[6,-14],[2,-32],[5,-21],[0,-12],[-2,-9],[-7,-17],[-3,-9],[-1,-9],[-1,-28],[-1,-7],[-2,-2],[-5,-4],[-2,-3],[-1,-6],[0,-5],[1,-5],[1,-6],[-6,-34],[-1,-12],[3,-9],[7,-20],[0,-9],[-3,-6],[-10,-14],[-2,-7],[0,-12],[5,-46],[-1,-11],[-2,-23],[-1,-16],[3,-2],[4,3],[6,-3],[2,-16],[0,-27],[-2,-45],[-1,-9],[-1,-5],[-1,-6],[2,-9],[2,-8],[6,-24],[3,-14],[-1,-6],[-20,-15],[0,-3],[-1,-4],[-1,-2],[-10,6],[-6,2],[-6,1],[-14,-5],[-2,-3],[-3,-5],[-2,-13],[1,-18],[1,-17],[0,-14],[-3,-11],[-12,-20],[-4,-13],[-7,-28],[-4,-12],[-12,-18],[-5,-10],[-4,-20],[-3,-46],[-6,-18],[-5,-6],[-5,-2],[-2,-3],[3,-11],[4,-8],[3,-5],[1,-7],[-21,-92],[-5,-42],[0,-2],[1,-41],[-5,-42],[-44,-25],[-10,-30],[6,-23],[11,-6],[12,-3],[10,-11],[3,-14],[-3,-6],[-6,-3],[-3,-5],[1,-9],[7,-39],[4,-10],[4,-8],[2,-9],[-3,-24],[2,-24],[0,-12],[-3,-21],[0,-10],[13,-60],[4,-13],[1,-19],[-17,-31],[-1,-21],[3,-3],[6,2],[2,-5],[-1,-4],[-1,-4],[-3,-3],[-1,-4],[-2,-11],[0,-7],[8,-36],[1,-9],[-2,-8],[-5,-9],[-2,-6],[-3,-19],[-2,-8],[-2,-4],[-4,-9],[-6,-6],[-7,-1],[-13,12],[-7,3],[-3,-3],[-2,-4],[-3,-12],[0,-3],[-1,-7],[-1,-4],[-1,-2],[-3,-3],[-1,-2],[-11,-23],[-3,-5],[-5,-2],[-3,-2],[-2,-3],[-1,-6],[0,-5],[1,-5],[-1,-5],[-4,-15],[-1,-5],[1,-7],[4,-13],[1,-7],[0,-14],[-2,-7],[-25,-11],[-2,2],[-2,3],[-2,3],[-11,9],[-6,3],[-5,-3],[-2,-8],[-2,-23],[-3,-9],[-6,-6],[-4,-2],[-6,2],[-5,3],[-5,-2],[-5,-2],[-5,-21],[-2,-27],[0,-23],[4,-40],[0,-9],[-5,-6],[-5,5],[-5,6],[-6,1],[-4,-7],[-1,-9],[1,-22],[-2,-11],[-7,-33],[-1,-4],[-2,-5],[-2,-5],[0,-5],[1,-6],[3,-3],[2,-2],[3,-4],[1,-6],[0,-2],[0,-2],[0,-5],[-1,-5],[-1,-5],[0,-4],[8,-9],[1,-9],[-2,-8],[-5,-6],[-6,0],[-5,3],[-2,-1],[5,-8],[9,-10],[2,-6],[3,-29],[3,-9],[11,-16],[-10,-9],[-4,-8],[-3,-13],[0,-12],[1,-12],[0,-11],[-3,-13],[-11,-23],[-3,-11],[1,-13],[2,-17],[8,-28],[9,-20],[3,-11],[2,-14],[-1,-11],[-4,-23],[-2,-11],[1,-7],[3,-10],[0,-7],[-1,-4],[-7,-7],[-4,-7],[-4,-7],[-2,-8],[0,-13],[2,-26],[14,-79],[11,-35],[2,-25],[7,-23],[3,-12],[2,-12],[2,-10],[8,-17],[0,-4],[1,-3],[-1,-3],[0,-4],[-4,-9],[0,-11],[2,-13],[2,-11],[0,-1],[0,-2],[0,-1],[-2,-20],[-1,-18],[1,-18],[12,-95],[6,-21],[9,-14],[11,-11],[9,-15],[4,-22],[-1,-12],[-3,-9],[-7,-16],[-3,-9],[-1,-4],[0,-7],[1,-5],[2,-3],[1,-4],[0,-6],[-2,-2],[-8,-7],[-2,-3],[-4,-14],[-4,-7],[-6,-2],[-12,3],[-11,-1],[-8,-6],[-17,-21],[-4,-4],[-21,-5],[-2,-2],[-1,-4],[-4,-9],[-7,-10],[-25,-22],[-9,-14],[-4,-14],[-4,-38],[0,-16],[5,-44],[3,-80],[-3,-49],[-2,-14],[-5,-9],[-6,-6],[-5,-9],[0,-12],[4,-19],[-2,-9],[-4,-7],[-5,-16],[-4,-8],[-7,-18],[13,-20],[-2,-21],[-5,-8],[-5,0],[-5,1],[-6,-1],[-6,-3],[-5,2],[-4,6],[-3,4],[-10,19],[-3,0],[-4,-9],[-3,-11],[-1,-13],[1,-13],[6,-17],[-2,-9],[-2,-11],[-2,-11],[1,-12],[5,-26],[2,-12],[0,-13],[2,-9],[3,-7],[9,-14],[4,-7],[1,-9],[-2,-12],[-10,-38],[-2,-3],[-2,-3],[-2,-3],[0,-5],[0,-6],[3,-13],[0,-6],[-3,-23],[-11,4],[-13,10],[-9,-2],[-4,-8],[0,-4],[2,-5],[1,-5],[0,-5],[-1,-5],[-2,-18],[0,-6],[1,-6],[-1,-2],[-2,-9],[0,-4],[2,-10],[4,-9],[8,-15],[6,-15],[2,-3],[4,-1],[1,2],[0,3],[2,3],[4,2],[1,0],[4,-4],[2,-4],[1,-5],[0,-6],[0,-6],[-1,-9],[-11,-43],[-3,-5],[-4,0],[-12,5],[-3,-1],[-2,-7],[-10,-54],[-5,-15],[-1,-4],[0,-6],[3,-7],[1,-5],[-1,-22],[-6,-18],[-21,-37],[-2,-7],[10,-63],[3,-13],[11,-27],[3,-11],[2,-15],[0,-11],[-5,-25],[1,-6],[0,-6],[4,-22],[-1,-13],[-2,-21],[-1,-21],[-2,-10],[-2,-3],[-3,-5],[1,-12],[3,-19],[1,-10],[-1,-12],[-7,-39],[-1,-19],[4,-22],[2,-11],[1,-8],[0,-8],[0,-12],[-2,-17],[0,-8],[2,-10],[3,-9],[3,-6],[1,-7],[-2,-10],[-4,-6],[-10,-10],[-4,-7],[0,-18],[16,-37],[3,-19],[0,-23],[5,-16],[7,-14],[6,-18],[5,-42],[0,-10],[-1,-10],[0,-8],[3,-8],[2,-5],[5,-10],[1,-4],[1,-31],[-4,-12],[-6,-9],[-8,-7],[-20,-5],[-3,-3],[-3,-5],[-2,-6],[-2,-5],[-4,-3],[-7,6],[-4,13],[-4,11],[-9,1],[-8,-12],[-4,-15],[-2,-16],[-5,-14],[-7,-12],[-6,-13],[-2,-15],[3,-15],[14,-22],[3,-11],[-5,-32],[1,-6],[8,-22],[2,-6],[-1,-6],[-14,-12],[-8,-11],[-6,-16],[-2,-21],[1,-5],[3,-8],[1,-6],[0,-4],[-3,-15],[1,-8],[4,-20],[1,-10],[2,-85],[-1,-20],[-7,-39],[-2,-21],[6,-26],[9,-21],[12,-16],[12,-9],[41,-7],[26,-17],[5,-7],[2,-10],[-1,-6],[-2,-10],[-1,-5],[0,-6],[2,-9],[0,-5],[1,-11],[-1,-10],[-3,-7],[-12,4],[-6,-2],[-11,-9],[-7,-1],[-3,-1],[-2,-5],[0,-18],[-1,-4],[-2,-4],[-2,-2],[-2,-3],[-2,-6],[0,-3],[1,-17],[-1,-5],[-3,-2],[-1,-3],[2,-6],[3,-2],[3,1],[3,2],[3,1],[5,-2],[5,-5],[3,-9],[0,-13],[-5,-12],[-1,-3],[2,-9],[6,-2],[8,0],[6,-1],[3,-3],[2,-3],[1,-4],[2,-4],[2,-2],[11,-14],[3,-4],[1,-7],[2,-34],[-2,-8],[-4,-8],[-5,-4],[-12,-7],[-5,-6],[-2,-7],[-2,-11],[1,-10],[5,-4],[6,3],[4,4],[2,-1],[0,-14],[0,-5],[-2,-4],[-1,-5],[1,-6],[2,-4],[5,-4],[2,-3],[4,-7],[15,-40],[0,-8],[-3,-12],[-21,-50],[-4,-12],[-10,-13],[-11,-5],[-6,-8],[4,-22],[9,-25],[2,-10],[0,-11],[-7,-17],[-1,-11],[3,-10],[3,-8],[2,-8],[-2,-11],[-4,-5],[-6,-4],[-5,-6],[1,-11],[11,-16],[12,1],[12,5],[12,0],[14,-5],[57,0],[42,-12],[14,-1],[7,-2],[7,-6],[4,-9],[1,-8],[1,-9],[2,-10],[4,-8],[3,-5],[2,-6],[0,-11],[-2,-13],[-4,-6],[-6,-2],[-6,0],[-3,-4],[-4,-9],[-6,-19],[-1,-12],[0,-9],[2,-21],[-2,-23],[-7,-17],[-9,-11],[-11,-3],[-12,5],[-21,24],[-12,5],[-12,-4],[-25,-18],[-11,1],[-19,13],[-6,1],[-7,-1],[-4,-6],[-3,-7],[-5,-6],[-7,-1],[-37,11],[-6,4],[-11,6],[-7,-3],[-4,-13],[4,-32],[0,-10],[-2,-20],[2,-9],[6,-3],[12,2],[11,-7],[11,-11],[11,-8],[11,3],[6,4],[7,4],[6,1],[6,-3],[5,-5],[7,-14],[4,-5],[12,-4],[10,3],[10,-2],[9,-16],[11,-36],[5,-27],[3,-7],[11,-21],[15,-16],[9,-14],[6,-15],[6,-19],[2,-19],[-6,-14],[-5,-6],[-7,-16],[-4,-7],[-5,-4],[-28,-18],[0,-6],[2,-12],[6,-17],[1,-9],[-3,-9],[-11,-12],[-10,-3],[-21,2],[-9,-2],[-12,-6],[-10,-9],[-4,-14],[1,-2],[4,-7],[1,-4],[-1,-4],[-1,-3],[-2,-3],[-2,-3],[-5,-15],[-1,-7],[0,-9],[0,-5],[1,-3],[1,-4],[-1,-6],[-5,-11],[0,-4],[1,-9],[2,-7],[8,-10],[3,-11],[0,-9],[-3,-8],[-1,-9],[2,-10],[4,-6],[12,-6],[10,-10],[6,-12],[5,-17],[3,-22],[-10,-17],[-20,-34],[-4,-8],[-6,-18],[-3,-7],[-7,-5],[-6,-3],[-21,-4],[-4,-2],[-2,-3],[-1,-6],[2,-3],[2,-1],[3,-3],[13,-19],[17,-17],[5,-12],[2,-17],[-1,-27],[0,-23],[3,-21],[18,-75],[1,-11],[-1,-9],[-2,-9],[-1,-11],[5,-43],[-2,-18],[-10,-15],[-15,-13],[-5,-8],[-7,-17],[-4,-5],[-6,-4],[-15,0],[-7,-3],[-4,-8],[-1,-6],[2,-4],[1,-5],[2,-4],[-1,-5],[-1,-4],[-2,-4],[-1,-4],[-5,-35],[0,-9],[3,-8],[9,-13],[3,-9],[-5,-9],[-18,-16],[-2,-12],[6,-11],[18,-16],[7,-8],[6,-13],[3,-15],[0,-17],[-5,-15],[-9,-7],[-9,4],[-18,17],[-6,1],[-3,-4],[-1,-7],[1,-10],[2,-10],[1,-6],[1,-6],[-3,-10],[-5,-15],[-25,-42],[-7,-15],[-4,-6],[-6,-1],[-15,3],[-7,0],[-12,-7],[-5,-6],[-4,-8],[-2,-14],[3,-6],[6,-2],[5,-7],[0,-8],[-5,-31],[-1,-12],[-1,-10],[-2,-10],[-3,-9],[-26,-68],[-5,-20],[-7,-42],[-7,-17],[-5,-19],[2,-19],[7,-16],[9,-12],[6,-4],[5,-2],[5,-3],[5,-9],[1,-5],[0,-6],[1,-5],[2,-4],[3,-2],[9,-5],[3,-12],[7,-72],[-1,-11],[-3,-23],[-1,-10],[2,-8],[4,-10],[3,-10],[-2,-8],[-4,-2],[-8,4],[-4,0],[-3,-2],[-2,-2],[-3,-8],[-8,-16],[-5,-6],[-17,-8],[-12,-10],[-11,-12],[-10,-35],[2,-30],[6,-32],[2,-63],[-1,-23],[-3,-18],[-7,-17],[-15,-26],[-20,-30],[-10,-12],[-12,-6],[-27,-5],[-14,-7],[-11,-15],[-2,-5],[-17,-36],[-4,-13],[0,-9],[0,-7],[-1,-8],[-3,-8],[-18,-32],[-3,-15],[0,-14],[4,-7],[2,-5],[18,-5],[0,-3],[-9,-4],[-3,-4],[-1,-11],[-87,-2],[-4,-6],[0,-15],[3,-19],[-2,-7],[-4,-8],[-11,-10],[-5,-6],[-3,-10],[0,-11],[2,-9],[0,-8],[-4,-10],[-8,-13],[0,-6],[3,-11],[4,-7],[8,-14],[3,-8],[1,-12],[-3,-9],[-3,-9],[-2,-11],[2,-9],[4,-8],[9,-13],[8,-19],[0,-16],[-5,-14],[-15,-22],[-1,-8],[0,-9],[-1,-11],[-3,-8],[-4,-7],[-1,-7],[5,-9],[15,-18],[4,-8],[2,-11],[-1,-7],[-14,-36],[-2,-18],[3,-16],[34,-46],[12,-8],[5,-7],[6,-15],[6,-18],[5,-20],[3,-19],[0,-12],[-1,-24],[1,-12],[3,-32],[0,-34],[1,-9],[4,-10],[12,-22],[3,-9],[1,-22],[0,-22],[3,-20],[10,-12],[12,0],[13,7],[11,13],[20,30],[10,11],[34,28],[7,2],[6,-5],[14,-21],[6,-5],[12,1],[19,31],[12,8],[34,-11],[11,-10],[6,-3],[6,-4],[-1,-10],[-10,-30],[-2,-8],[0,-8],[3,-11],[7,-16],[8,-13],[6,-15],[1,-23],[-2,-51],[-3,-28],[-5,-13],[-8,-2],[-4,-2],[-4,-6],[-5,-12],[-7,-15],[-3,-8],[1,-12],[6,-20],[9,-14],[21,-20],[4,-8],[0,-8],[-3,-9],[-12,-23],[-2,-8],[-1,-13],[0,-34],[-2,-10],[-1,-5],[-2,-4],[-2,-4],[-1,-6],[0,-5],[1,-6],[0,-6],[-1,-4],[-20,-28],[-7,-18],[5,-13],[8,-3],[7,1],[7,-3],[6,-9],[2,-10],[2,-33],[4,-12],[6,-6],[26,-11],[12,-11],[20,-23],[17,-30],[8,-10],[6,-13],[3,-17],[-3,-19],[-2,-25],[14,-12],[22,0],[62,-1],[63,-1],[63,-2],[62,-1],[63,-1],[63,-1],[62,-1],[63,-1],[22,-1],[34,-19],[47,-27],[49,-28],[76,-3],[57,-25],[41,-32],[11,-5],[55,-13],[5,-2],[9,-7],[4,-2],[22,-7],[7,-3],[1,-6],[0,-22]],[[30986,19469],[-6,6],[-26,-2],[-41,20],[-19,-4],[-11,6],[-22,0],[-13,9],[-5,2],[-12,10],[-22,25],[-12,10],[-15,6],[-14,-3],[-31,-24],[-16,-1],[-11,-4],[-2,-5],[-6,-7],[-2,-7],[-1,-4],[-2,-44],[-2,-12],[-6,-4],[-7,-4],[-3,-9],[-1,-12],[-1,-11],[-4,-9],[-11,-12],[-5,-6],[-6,-10],[-5,-9],[-12,-3],[-18,8],[-9,10],[-4,8],[-5,3],[-7,-5],[-11,-9],[-10,-12],[-38,-26],[-19,-7],[-8,-10],[-5,-11],[-2,-17],[-10,7],[-9,0],[-5,3],[-8,-2],[-3,-4],[0,-9],[-9,2],[-5,-9],[-38,-31],[-8,1],[0,11],[7,9],[6,6],[-1,10],[-6,1],[-5,-4],[-7,-2],[-4,-1],[-2,-10],[6,-9],[-5,-6],[-6,5],[-7,-2],[-7,-7],[-7,-3],[-4,-8],[-5,1],[0,8],[-2,11],[-3,2],[-3,-4],[-2,-5],[-3,-3],[-12,-3],[-4,-1],[-4,2],[-2,3],[-2,1],[-4,-2],[2,-7],[3,-2],[3,-1],[8,-5],[1,-1],[1,-3],[-1,-7],[0,-2],[3,-4],[2,0],[3,1],[9,-2],[1,-4],[-2,-8],[-3,-2],[-11,-6],[-3,-3],[-1,-3],[-3,-10],[-1,-5],[-2,-11],[-1,-4],[-1,-19],[-6,1],[-5,1],[-3,-8],[8,-1],[7,-3],[7,-4],[1,-8],[-1,-12],[0,-10],[-2,-8],[-13,-34],[-2,-7],[-1,-16],[-3,-15],[-15,-37],[-3,-13],[-2,-15],[0,-47],[-1,-14],[-7,-22],[-2,-12],[0,-12],[0,-14],[3,-24],[9,-47],[3,-26],[0,-13],[-1,-15],[-3,-12],[-4,-5],[-3,-7],[0,-16],[2,-17],[0,-12],[-6,-19],[-11,-13],[-54,-39],[-16,-6],[-14,3],[-26,22],[-14,8],[-46,4],[-21,15],[-2,3],[-5,7],[-2,2],[-17,10],[-6,9],[-3,2],[-5,5],[-2,22],[-5,1],[-3,-4],[-4,-14],[-4,-2],[-3,2],[-6,11],[-4,5],[-4,12],[-3,2],[-4,-1],[0,-3],[0,-4],[-1,-4],[-6,-7],[-3,0],[-4,5],[-3,4],[-7,1],[-3,3],[-20,34],[-12,16],[-6,6],[-9,5],[-1,5],[-1,7],[-2,6],[-2,4],[-6,4],[-3,4],[-14,27],[-3,4],[-2,11],[-11,23],[-2,8],[2,13],[6,7],[5,7],[-3,12],[-2,6],[0,4],[1,4],[2,4],[1,0],[5,4],[25,33],[5,4],[35,-9],[6,1],[6,-1],[5,-6],[4,-37],[1,-12],[-1,-13],[-2,-6],[-3,-5],[-3,0],[-7,11],[-2,-2],[-2,-13],[-5,-8],[-14,-8],[-6,-6],[8,-4],[8,2],[8,4],[13,3],[4,2],[6,9],[4,8],[2,2],[2,0],[5,-3],[2,2],[3,25],[-3,32],[-1,29],[11,15],[4,-1],[8,-6],[3,-1],[4,1],[5,5],[4,2],[7,-2],[4,-6],[2,-10],[4,-53],[1,-12],[1,-10],[4,-12],[2,-12],[0,-13],[-4,-9],[-7,-9],[-7,-8],[-5,-2],[-8,-2],[-18,-15],[-8,-3],[-2,-4],[-2,-7],[0,-8],[1,-4],[2,-2],[4,0],[6,3],[12,12],[6,5],[16,3],[7,3],[6,8],[9,21],[2,5],[0,7],[-3,12],[-1,6],[2,13],[0,8],[-1,4],[-1,3],[-2,19],[1,13],[8,57],[4,7],[10,3],[4,2],[2,1],[7,0],[4,2],[3,3],[10,15],[3,3],[8,3],[18,13],[4,2],[13,-1],[4,1],[6,3],[6,7],[6,7],[6,9],[2,6],[4,14],[2,6],[3,5],[5,6],[2,5],[2,12],[1,13],[2,11],[10,19],[8,-4],[14,7],[0,23],[-8,22],[-6,18],[-11,-1],[-11,15],[-16,-10],[-12,0],[-5,13],[-3,10],[-5,23],[-1,-13],[0,-12],[-1,-10],[1,-19],[1,-7],[-7,-3],[-7,4],[-5,3],[-5,0],[-2,-2],[-3,-6],[-1,-3],[-2,-1],[-5,-13],[-13,-14],[-10,-1],[-8,-14],[-7,-1],[-10,-10],[-9,-4],[-12,-15],[-17,-10],[-6,-11],[-12,-5],[-5,-14],[-20,-34],[-5,-16],[-2,-4],[-4,-1],[-3,2],[-4,1],[-7,-7],[-5,0],[-4,3],[-5,8],[-6,5],[-2,4],[-2,6],[-4,9],[-2,6],[-3,6],[-3,3],[-3,3],[-8,1],[-6,6],[-3,2],[-7,-2],[2,-6],[6,-8],[4,-9],[-5,0],[-6,2],[-15,9],[-5,1],[-32,-3],[-11,-5],[-8,-8],[6,-4],[6,2],[7,4],[6,2],[11,-7],[6,-1],[5,6],[8,4],[12,-38],[27,-11],[4,-4],[4,-7],[2,-7],[-1,-6],[-4,-6],[-5,-3],[-8,0],[-7,3],[-5,11],[-6,2],[-13,-1],[0,-4],[11,-2],[3,-9],[-3,-9],[-11,0],[-24,19],[-10,1],[11,-10],[4,-7],[-2,-7],[-6,-1],[-6,7],[-8,14],[-7,-2],[1,-6],[4,-7],[5,-5],[14,-4],[7,-4],[4,-9],[-4,-5],[-2,-5],[-3,-5],[-6,0],[-5,4],[-4,5],[-5,3],[-5,-5],[6,-9],[3,-17],[-1,-17],[-4,-14],[-10,-5],[-10,7],[-9,12],[-6,15],[-1,-13],[4,-11],[12,-17],[4,-7],[2,-7],[3,-4],[6,-2],[1,2],[1,8],[1,2],[2,1],[6,-1],[4,-5],[29,-68],[4,-8],[-43,-4],[-3,1],[-2,4],[-1,4],[-2,3],[-6,5],[-13,5],[-6,6],[-2,5],[-1,6],[-2,4],[-3,2],[-12,2],[-3,1],[-3,8],[1,19],[-3,10],[-6,8],[-2,-7],[0,-12],[-2,-9],[-5,-3],[-2,8],[0,13],[-2,10],[-5,2],[-8,-1],[-6,2],[1,9],[-4,4],[-15,4],[-38,40],[-17,10],[-9,7],[-7,10],[-6,11],[-9,22],[-4,5],[-7,6],[-3,7],[33,-19],[12,-1],[6,3],[9,8],[29,5],[7,0],[4,-3],[4,-6],[3,-9],[3,-2],[7,1],[3,-3],[3,-3],[23,-18],[5,-1],[2,-4],[-2,-9],[-2,-10],[-3,-5],[2,-5],[3,-2],[4,0],[3,7],[4,-6],[2,1],[-1,6],[-3,8],[3,3],[4,6],[3,7],[-2,3],[-7,4],[-9,10],[-8,12],[-3,11],[5,0],[14,-9],[-3,11],[-5,8],[-2,6],[4,4],[6,0],[20,-9],[-2,7],[-4,4],[-5,3],[-4,3],[-2,10],[0,2],[-3,0],[-1,-3],[-1,-3],[-2,-2],[-13,2],[-4,-2],[-8,-14],[-4,-5],[-19,19],[-6,8],[1,10],[11,19],[4,12],[0,11],[-5,-8],[-3,-3],[-2,-1],[-2,3],[-2,5],[0,5],[1,6],[2,10],[-3,11],[-3,11],[-2,10],[-1,5],[1,3],[2,8],[1,4],[2,4],[1,5],[-2,6],[-10,14],[-3,8],[5,8],[7,4],[16,3],[12,15],[20,11],[5,7],[11,29],[4,0],[2,-3],[7,-9],[11,-6],[2,-2],[0,-19],[-11,-16],[-13,-15],[-7,-15],[2,-10],[6,5],[7,11],[11,11],[6,10],[5,6],[7,-5],[-4,-5],[-4,-7],[-1,-6],[5,-2],[5,3],[7,11],[3,2],[9,4],[5,-1],[2,-9],[2,-11],[4,-9],[4,-1],[3,11],[-2,8],[2,10],[3,9],[3,6],[5,5],[19,14],[2,2],[3,4],[2,5],[1,4],[3,11],[1,3],[6,4],[14,1],[5,8],[0,13],[5,3],[13,-3],[5,2],[5,0],[4,-2],[6,-10],[8,1],[2,10],[2,6],[5,0],[5,-2],[4,-11],[8,-8],[19,-8],[62,7],[8,5],[4,8],[18,3],[12,6],[-4,20],[-12,19],[-10,11],[-17,-8],[-15,7],[-12,1],[-9,-4],[-20,9],[-22,7],[-17,-12],[-8,6],[-7,-5],[-6,1],[-6,12],[-5,10],[-2,3],[-8,2],[-22,-6],[-22,5],[-7,-1],[-5,-5],[-5,-10],[-4,-10],[-2,-10],[-2,-8],[-13,-11],[-4,-7],[3,3],[2,1],[3,-1],[2,-3],[-4,-18],[-2,-2],[-3,1],[-3,3],[-5,8],[-12,10],[-1,2],[-5,7],[-7,5],[2,9],[10,16],[5,6],[5,3],[12,-1],[7,3],[4,7],[-1,7],[-6,3],[-3,-1],[-5,-5],[-3,-2],[-4,-1],[-6,1],[-4,0],[-8,-7],[-2,-1],[-2,-3],[-4,-11],[-3,-2],[-5,1],[-6,4],[-5,6],[-1,5],[-7,5],[-6,-2],[-6,-5],[-22,-7],[-4,2],[-2,4],[0,5],[-2,6],[-11,8],[-3,0],[-1,-5],[2,-11],[-2,-6],[-1,-5],[-1,-5],[-1,-3],[0,-1],[-4,-15],[-1,-4],[-1,-11],[-3,-9],[-3,-8],[-3,-6],[-15,-25],[-2,-6],[5,-7],[9,16],[21,46],[6,11],[6,4],[6,-17],[7,-5],[14,-5],[8,0],[2,-1],[3,-5],[1,-6],[-2,-6],[-9,-18],[-14,-21],[-5,-10],[-3,-4],[-4,-2],[-8,0],[-3,-2],[-2,-4],[-2,-14],[-7,-3],[-15,-2],[-19,-21],[-2,-5],[2,-8],[11,-14],[4,-9],[-5,-8],[0,-10],[1,-20],[1,-3],[4,-8],[1,-5],[-2,-23],[-3,-8],[-4,-10],[-5,-6],[-2,6],[-2,-1],[-29,-24],[-7,-1],[-6,6],[-5,9],[-1,5],[-1,4],[2,4],[3,4],[3,5],[0,7],[-5,5],[-5,-9],[-4,-13],[-1,-9],[3,-3],[3,-3],[2,-3],[1,-5],[-2,-6],[-3,-2],[-4,2],[-2,1],[-4,4],[-2,4],[-3,3],[-21,6],[-9,12],[-7,20],[-4,2],[-7,-2],[-3,3],[-5,9],[-1,6],[4,3],[11,1],[3,-1],[2,-2],[2,-4],[3,-3],[4,1],[-1,5],[-2,4],[-2,4],[0,5],[1,5],[4,1],[8,0],[0,2],[0,4],[1,4],[2,2],[1,0],[3,-3],[6,-3],[6,-7],[4,-3],[-1,6],[-5,14],[7,-2],[3,-2],[-2,12],[3,8],[5,2],[-2,6],[-21,-9],[-4,12],[-2,5],[-3,-2],[-4,-4],[-5,-1],[-3,6],[-2,9],[-3,9],[-6,4],[-25,8],[-14,7],[-6,9],[7,11],[13,2],[9,-5],[-2,-16],[5,3],[7,14],[4,4],[4,-4],[3,-13],[3,2],[2,3],[3,2],[4,1],[5,-4],[2,2],[3,4],[3,3],[11,-5],[6,0],[4,9],[-4,-1],[-3,0],[-2,3],[1,6],[-4,5],[-7,-5],[-4,4],[-2,4],[0,4],[0,10],[1,6],[2,0],[4,-4],[6,5],[4,6],[2,7],[4,11],[0,4],[0,6],[0,4],[3,2],[10,0],[5,2],[3,5],[1,8],[1,11],[5,26],[1,5],[20,-3],[8,-6],[3,1],[2,3],[-2,5],[-2,1],[-9,-1],[-16,8],[-3,2],[1,5],[2,6],[1,5],[3,7],[9,2],[14,-3],[23,-11],[6,-8],[2,-1],[4,2],[-1,6],[-2,7],[-3,5],[-3,2],[-12,2],[-17,8],[-10,2],[-7,-4],[-5,-6],[-6,-2],[-6,1],[-4,5],[-7,22],[-3,9],[-2,-5],[1,-5],[1,-6],[1,-6],[-1,-5],[-3,-3],[-3,1],[-3,-2],[-2,-8],[10,-3],[5,-8],[2,-13],[4,-16],[-8,-17],[-5,-8],[-5,-4],[-4,-5],[-5,-24],[-4,-7],[-6,0],[-8,6],[-5,10],[1,10],[6,10],[2,6],[1,6],[-2,4],[-2,0],[-3,-3],[-3,-1],[-4,1],[-3,1],[-2,4],[0,8],[-1,6],[-3,5],[-2,3],[-3,-1],[-1,-11],[6,-24],[0,-12],[-3,-6],[-4,-1],[-7,3],[-4,-2],[-1,-4],[0,-6],[-1,-6],[-5,-1],[-5,5],[-4,0],[0,-14],[-8,3],[-6,-6],[-11,-22],[-2,0],[-2,0],[-1,1],[-1,-3],[0,-3],[1,-2],[1,-1],[0,-2],[-1,-6],[-4,2],[-7,10],[-8,4],[-4,4],[0,6],[8,15],[3,4],[14,6],[7,6],[3,12],[-5,-1],[-16,-7],[-6,2],[-2,6],[-1,10],[-2,10],[8,5],[4,3],[1,6],[1,7],[2,1],[3,-1],[2,0],[2,2],[0,3],[1,2],[3,1],[2,-1],[1,-1],[0,-2],[1,0],[4,1],[2,2],[1,4],[-2,5],[-3,3],[-13,5],[-1,1],[3,4],[7,7],[2,4],[3,10],[1,2],[18,0],[-6,6],[-4,5],[1,7],[4,15],[-5,3],[-4,-7],[-4,-8],[-5,-5],[-21,10],[-3,4],[0,15],[2,9],[3,6],[5,1],[3,-2],[1,-4],[2,-3],[3,1],[2,4],[1,6],[1,12],[1,3],[3,6],[2,6],[-4,3],[-6,10],[-2,3],[-2,11],[1,8],[4,7],[3,10],[1,16],[-3,5],[-6,0],[-6,4],[0,3],[-1,8],[-2,7],[-1,0],[-1,3],[-8,7],[-2,14],[-9,16],[-7,18],[3,21],[5,5],[5,-3],[6,-10],[1,-5],[9,-28],[4,-19],[3,-8],[4,1],[5,5],[4,-8],[3,-14],[2,-9],[6,-5],[5,3],[5,6],[4,4],[3,2],[-4,7],[-11,11],[7,4],[9,-3],[9,-9],[12,-23],[7,-10],[8,-6],[9,-2],[8,4],[8,8],[6,13],[3,18],[-1,14],[1,4],[2,7],[4,2],[5,-2],[5,-5],[3,-6],[7,14],[9,12],[9,8],[10,3],[6,-1],[2,-3],[1,-6],[1,-11],[0,-7],[0,-10],[-2,-9],[-2,-6],[-2,-1],[-6,4],[-2,1],[-2,-2],[-2,-4],[-1,-4],[-1,-4],[-3,-7],[-3,-8],[-2,-9],[-1,-9],[2,-7],[3,3],[11,23],[4,4],[5,0],[14,-9],[7,-7],[1,-7],[-1,-8],[2,-3],[8,-3],[3,-3],[2,-2],[1,1],[6,9],[2,4],[1,5],[0,8],[1,7],[4,12],[1,6],[1,14],[2,10],[8,18],[4,14],[0,11],[-4,3],[-16,-24],[-4,-8],[-3,-12],[0,-21],[-1,-10],[-4,-11],[-4,-1],[-6,5],[-7,7],[-4,7],[1,9],[-2,17],[3,16],[-3,18],[1,9],[4,6],[3,-4],[3,-7],[2,-3],[2,4],[2,19],[2,7],[2,8],[1,18],[1,8],[4,4],[5,4],[5,2],[4,1],[17,-19],[12,-7],[3,-5],[-1,-11],[-4,-8],[-3,-10],[3,-13],[3,-4],[7,-7],[3,-4],[2,-4],[0,-5],[2,-4],[3,-3],[0,2],[1,4],[2,2],[2,-1],[4,-7],[1,-3],[4,-13],[1,-2],[3,-13],[5,-9],[4,-9],[0,-16],[-2,-4],[-2,-3],[-3,-4],[-1,-7],[0,-5],[-1,-8],[-2,-21],[-3,-10],[-4,-7],[-7,-4],[-3,1],[-4,2],[-3,3],[-2,4],[-3,3],[-2,-3],[-3,-12],[-5,-8],[-7,-8],[-7,-1],[-5,7],[2,-10],[-1,-3],[-4,1],[-2,0],[-3,-4],[-5,-12],[-6,-7],[-8,-6],[-8,-3],[-7,-1],[1,-4],[1,-2],[2,-1],[2,0],[7,1],[14,8],[13,5],[12,11],[7,3],[8,-1],[22,-7],[7,-5],[5,-9],[6,-6],[8,3],[4,9],[-4,5],[-24,5],[-4,2],[-3,4],[-1,5],[1,2],[2,2],[4,3],[9,12],[9,14],[5,7],[5,3],[4,6],[7,54],[1,12],[-2,10],[-29,53],[-8,8],[-11,20],[-3,8],[-2,39],[-1,6],[2,2],[2,4],[2,3],[4,-1],[2,-4],[1,-7],[3,-5],[4,-1],[2,4],[2,14],[2,3],[4,-2],[5,-5],[4,-2],[7,2],[5,6],[4,7],[5,10],[-4,10],[-9,13],[-2,9],[-1,13],[3,10],[9,18],[-8,12],[-4,24],[-3,9],[-12,7],[-12,14],[-5,7],[-3,7],[-9,28],[-6,8],[-6,7],[-7,4],[-7,3],[-18,0],[-3,2],[-6,8],[-3,2],[-8,1],[-5,1],[-3,2],[-1,5],[-3,12],[-1,4],[-7,6],[-16,5],[-7,1],[-4,5],[-3,12],[-2,14],[2,9],[-3,0],[-9,-12],[-5,-4],[-29,-11],[-4,-3],[-2,-6],[1,-8],[5,-7],[5,-1],[15,6],[4,5],[5,1],[5,-6],[5,-3],[14,0],[3,-5],[0,-7],[1,-3],[0,-4],[-2,-7],[-2,-3],[-5,-6],[-10,-13],[-1,-6],[4,-6],[16,23],[4,3],[1,3],[-1,4],[1,3],[2,4],[3,4],[4,2],[3,-4],[8,-15],[2,-3],[5,-2],[18,-18],[7,-1],[5,2],[6,0],[6,-7],[4,-9],[12,-35],[1,-5],[2,-5],[4,-1],[15,-4],[1,-1],[3,-6],[1,-2],[2,0],[5,1],[8,-2],[2,-3],[2,-7],[-1,-10],[-3,-12],[-4,-11],[-7,-6],[-8,-11],[-4,-4],[-3,0],[-12,0],[-4,-3],[-2,-1],[-1,3],[-1,2],[-2,7],[0,1],[-14,4],[-4,4],[-3,11],[-5,10],[-8,3],[-7,-7],[-4,-1],[-2,6],[-1,5],[-2,0],[-13,-6],[-4,-1],[-3,4],[0,6],[1,5],[1,6],[-2,7],[-3,2],[-8,1],[-2,4],[-1,5],[-3,3],[-3,2],[-3,0],[-14,-5],[-8,-1],[-6,6],[-3,14],[1,11],[-1,8],[-13,5],[-3,11],[-4,4],[-4,0],[-3,-1],[-3,-3],[-1,-4],[11,-11],[5,-7],[3,-11],[-1,-8],[-1,-5],[0,-5],[3,-8],[3,-4],[3,-2],[36,-2],[13,-12],[8,-27],[-9,7],[-11,14],[-11,6],[-9,-15],[3,-4],[4,0],[3,2],[3,4],[3,3],[2,-1],[4,-4],[3,-5],[1,-12],[0,-12],[-1,-8],[-9,-13],[-25,-3],[-10,-12],[5,-5],[6,-1],[6,2],[5,6],[3,3],[11,-1],[3,2],[7,11],[10,11],[10,6],[8,-3],[6,-19],[-5,-6],[-18,-10],[-16,-18],[-6,-3],[-6,-1],[-6,-3],[-5,-7],[-3,-11],[0,-8],[-5,-30],[-1,-14],[1,-12],[-1,-9],[-5,-5],[-8,-1],[-5,8],[-9,23],[0,10],[1,30],[-1,7],[-2,5],[-6,31],[2,17],[-1,23],[-8,62],[-3,16],[-5,14],[-8,14],[0,-11],[1,-7],[6,-14],[3,-9],[2,-18],[3,-29],[1,-35],[4,-57],[1,-39],[7,-48],[0,-23],[-2,-14],[-7,0],[-7,7],[-5,5],[-10,7],[-1,3],[-1,7],[-2,6],[-3,4],[-9,4],[-24,23],[-7,9],[-5,11],[1,9],[2,13],[-3,11],[-5,10],[-3,8],[3,0],[2,1],[2,1],[2,3],[-4,9],[-8,18],[-6,19],[-2,12],[8,10],[6,-6],[10,-26],[8,-11],[3,-6],[1,-9],[0,-8],[2,-9],[3,-7],[11,-10],[3,-16],[5,-13],[10,0],[-4,15],[-19,46],[2,1],[2,1],[1,2],[3,0],[-2,6],[-3,2],[-2,1],[-3,3],[-1,6],[0,12],[-2,3],[-5,2],[-3,7],[-1,10],[3,9],[-8,8],[-8,13],[-3,11],[16,8],[8,8],[8,10],[4,11],[-8,0],[-6,-5],[-11,-16],[0,25],[-3,-6],[-5,-14],[-3,-5],[-6,1],[-3,8],[-2,8],[-2,4],[-5,-1],[-1,-4],[-1,-5],[-4,-14],[-2,-9],[0,-8],[1,-8],[-5,-9],[-6,5],[-12,24],[0,12],[-14,16],[2,11],[5,6],[14,5],[6,7],[-6,1],[-6,-3],[-7,-1],[-6,5],[-4,4],[-2,1],[-3,-2],[-4,-1],[-3,2],[-3,5],[-3,2],[-4,-5],[-1,5],[0,3],[0,4],[1,5],[2,6],[2,2],[3,1],[3,3],[10,18],[3,6],[-18,0],[-8,6],[-3,17],[1,4],[2,4],[1,3],[-1,5],[-1,3],[-1,6],[-2,3],[-1,7],[0,14],[-2,5],[0,4],[10,15],[5,4],[3,-9],[3,-6],[13,0],[3,-6],[2,-9],[4,-9],[9,-12],[10,-10],[4,-6],[3,-8],[7,-28],[2,-15],[7,-17],[2,-19],[3,1],[2,9],[0,12],[-2,7],[-8,25],[7,8],[3,6],[-1,3],[-9,-1],[-3,2],[-2,7],[1,15],[15,10],[1,11],[-11,-8],[-9,5],[-6,14],[-8,35],[0,5],[0,22],[0,7],[1,3],[0,3],[-2,5],[-5,6],[-1,4],[-1,7],[-1,1],[-6,5],[-3,4],[0,6],[1,5],[2,4],[1,3],[3,5],[6,-8],[9,-17],[1,-6],[0,-6],[0,-6],[2,-5],[3,0],[1,7],[-2,12],[-1,18],[0,7],[5,5],[0,4],[-5,-2],[-4,0],[-3,2],[-4,4],[3,7],[7,17],[-3,5],[-3,-2],[-2,-4],[-3,-2],[-3,2],[-7,14],[-1,-6],[1,-3],[1,-3],[1,-4],[0,-9],[0,-2],[-2,-2],[-4,-4],[-20,-32],[-6,-6],[-5,-1],[-5,5],[-8,13],[-7,9],[-2,4],[-1,4],[-1,17],[-3,9],[-4,11],[-4,4],[-2,-10],[1,-12],[2,-13],[0,-12],[-3,-10],[-7,-3],[-7,5],[-7,6],[-7,4],[-2,6],[1,39],[0,11],[-4,7],[-2,6],[1,6],[1,5],[14,30],[6,8],[-3,4],[0,4],[2,5],[2,3],[0,4],[-5,-2],[-3,-4],[-23,-41],[-3,-3],[-10,2],[-2,4],[0,23],[-1,9],[5,5],[0,6],[-4,5],[-5,5],[7,19],[10,13],[12,7],[13,1],[30,-8],[6,-4],[7,-1],[5,4],[1,13],[7,-5],[8,-10],[5,-12],[0,-14],[15,-16],[0,8],[3,9],[1,7],[-8,25],[-11,20],[-2,1],[-2,-1],[-2,1],[0,5],[0,3],[2,2],[1,1],[1,2],[3,14],[6,0],[8,-7],[7,-10],[4,-3],[4,1],[2,5],[-2,5],[-8,6],[-3,3],[1,5],[2,8],[2,10],[0,8],[-1,9],[-2,17],[-1,8],[3,10],[5,6],[6,3],[9,3],[9,6],[4,1],[5,-1],[5,-3],[4,-4],[4,-4],[8,-25],[2,-4],[6,1],[1,1],[-1,4],[1,6],[3,6],[3,3],[9,0],[-3,7],[-6,2],[-6,0],[-6,2],[-2,12],[-1,3],[-2,2],[-3,1],[-5,-1],[-11,4],[-9,9],[-15,26],[-1,6],[2,9],[3,8],[3,3],[11,1],[5,3],[4,4],[5,11],[7,30],[5,16],[-6,1],[-6,-12],[-11,-30],[-3,-5],[-3,-3],[-4,-3],[-7,-2],[-6,-6],[-8,-5],[-2,-11],[-3,-26],[-2,-6],[-2,-3],[-2,-5],[-1,-8],[0,-7],[1,-6],[0,-5],[-7,-20],[0,-12],[3,-11],[1,-14],[-4,-10],[-6,-11],[-7,-8],[-4,-2],[-4,1],[-2,-5],[-4,-10],[-4,-6],[-3,-1],[-11,-1],[-16,5],[-5,5],[-14,21],[-4,9],[16,16],[3,5],[-1,9],[-5,7],[-11,8],[1,-8],[0,-4],[1,-4],[-6,-11],[-4,2],[-5,25],[-4,12],[-11,24],[-4,13],[4,11],[5,8],[1,8],[-6,10],[-4,1],[-4,0],[-3,3],[-2,17],[-2,6],[-6,9],[4,4],[17,6],[3,0],[1,-8],[3,-10],[4,-11],[3,-7],[3,-9],[5,-23],[4,-7],[5,2],[-2,11],[-8,20],[1,2],[3,7],[1,3],[-6,5],[-2,8],[2,6],[6,1],[5,-4],[10,-17],[5,-3],[32,-11],[6,-3],[6,-2],[5,4],[-8,7],[-19,11],[-8,2],[-3,3],[-1,8],[0,9],[2,6],[1,5],[-2,4],[-3,1],[-2,-1],[-7,-11],[-4,-1],[-3,2],[-4,11],[-7,9],[-2,5],[4,3],[4,1],[4,4],[3,5],[1,8],[2,5],[5,4],[9,5],[-5,1],[-10,5],[-4,-2],[-1,-2],[-1,-11],[0,-3],[-2,-1],[-4,-2],[-15,-12],[-4,-1],[-9,4],[-4,0],[-7,-21],[-10,8],[-8,16],[-1,9],[2,4],[7,22],[2,5],[3,4],[2,5],[-4,9],[2,13],[-3,9],[-5,4],[-3,-4],[-1,-11],[-6,-17],[-1,-8],[-4,-20],[-11,-4],[-13,5],[-10,8],[2,2],[2,5],[2,2],[-4,3],[-7,-1],[-4,2],[-2,2],[-6,13],[4,9],[8,12],[3,8],[-4,-1],[-7,-7],[-4,0],[-3,4],[1,6],[4,7],[2,7],[-7,-3],[-6,-5],[-6,-3],[-8,3],[1,6],[2,6],[2,4],[3,4],[-2,4],[-7,-7],[-9,-5],[-8,3],[-3,16],[1,8],[2,5],[7,9],[5,12],[4,6],[3,2],[4,2],[8,5],[4,1],[6,-2],[1,-6],[0,-6],[1,-6],[3,-2],[4,2],[3,4],[-1,6],[-3,6],[0,6],[1,6],[3,5],[5,-6],[4,-7],[-2,0],[2,0],[32,7],[3,-2],[1,-11],[2,-3],[7,-7],[3,-4],[-8,-18],[-2,-6],[3,2],[3,2],[4,1],[3,-1],[2,-2],[1,-4],[1,-2],[6,-4],[5,-7],[4,-8],[2,-10],[-4,-12],[6,-7],[5,4],[9,15],[6,3],[7,-3],[39,-35],[14,-7],[14,6],[-6,8],[-27,12],[-7,8],[-6,10],[-1,7],[8,-1],[-3,7],[-5,1],[-11,-4],[-1,2],[-4,5],[-2,1],[-2,0],[-4,-3],[-13,-2],[-4,2],[-6,8],[-3,6],[-1,5],[-2,17],[-1,9],[-5,15],[-1,11],[-2,-1],[-11,9],[-3,4],[-13,26],[-5,15],[1,10],[-1,13],[4,9],[6,5],[3,-1],[1,-12],[4,0],[5,6],[4,4],[11,-5],[8,-11],[14,-31],[2,-2],[3,2],[2,4],[3,2],[2,-1],[8,-7],[1,-3],[3,-7],[1,-2],[3,-1],[26,7],[5,-2],[4,-7],[5,-17],[5,-4],[0,12],[-1,12],[-2,10],[-5,6],[-9,-6],[-10,5],[-7,11],[2,17],[11,19],[3,3],[10,0],[5,1],[5,3],[-7,2],[-2,8],[1,27],[-4,-7],[-4,-16],[-3,-6],[-3,-1],[-6,2],[-3,-1],[0,-3],[-1,-13],[-1,-4],[-5,-12],[-6,-3],[-14,3],[-7,3],[-3,7],[-3,10],[-3,8],[-12,8],[-28,3],[-10,13],[-5,25],[-2,14],[0,8],[4,3],[4,-1],[3,-3],[4,-1],[3,2],[1,3],[2,4],[1,3],[6,7],[7,5],[7,4],[29,0],[6,4],[-1,4],[0,4],[2,4],[1,5],[-9,0],[-19,-4],[-10,-5],[-13,0],[-8,-8],[-3,0],[-8,13],[-3,25],[2,27],[5,17],[11,9],[1,2],[2,2],[2,5],[3,4],[4,2],[14,2],[6,2],[12,9],[7,2],[7,-1],[6,-8],[1,-10],[-1,-11],[-1,-11],[4,-7],[4,28],[2,7],[5,4],[6,-1],[6,-3],[3,-6],[-1,-8],[1,-5],[3,-5],[1,-9],[1,-8],[1,-7],[2,-6],[2,-5],[23,-18],[4,-8],[11,-15],[3,-5],[1,-5],[1,-6],[1,-10],[2,-6],[4,10],[5,15],[2,12],[-7,2],[-3,2],[-3,4],[-2,3],[-1,7],[-2,4],[-6,8],[-5,2],[-5,1],[-8,3],[-4,3],[-1,2],[1,3],[-3,17],[-1,5],[-2,5],[-1,7],[1,26],[-1,9],[-10,11],[-45,5],[-4,3],[-3,3],[-2,5],[-1,8],[1,13],[0,6],[-2,3],[-2,6],[1,13],[8,46],[1,14],[1,12],[2,10],[7,2],[7,-4],[5,-6],[4,-11],[4,-12],[4,-9],[10,-5],[5,-5],[3,-2],[15,0],[0,4],[-22,13],[-6,7],[-11,21],[-5,15],[-1,13],[1,7],[6,17],[1,9],[0,4],[-2,3],[-1,4],[-2,16],[-2,5],[-2,6],[-9,14],[18,27],[10,8],[12,-3],[8,-11],[5,-6],[4,1],[5,8],[-3,6],[-10,8],[-6,7],[-7,0],[-32,-9],[-5,2],[-3,4],[-1,-5],[-1,-8],[0,-5],[1,-5],[4,-11],[1,-6],[-1,-12],[-2,-10],[0,-8],[5,-9],[-12,-31],[-7,-14],[-8,-3],[-2,3],[-5,10],[-2,3],[-3,0],[-3,-2],[-1,-3],[0,-5],[2,-3],[6,-5],[1,-4],[0,-5],[2,-10],[2,-3],[-2,-6],[-1,-5],[1,-5],[2,-5],[-2,-7],[-1,-7],[-1,-7],[0,-9],[-1,-8],[-4,-12],[-1,-5],[-4,-44],[2,-11],[-8,-21],[-7,-2],[-8,10],[-10,20],[-3,8],[-3,9],[-3,8],[-4,5],[-7,4],[-5,3],[-4,8],[-3,9],[-1,8],[2,8],[4,7],[3,8],[0,9],[-5,59],[2,15],[9,4],[-8,17],[-3,10],[-1,14],[1,7],[3,10],[0,5],[-1,7],[-4,-2],[-4,-5],[-2,-6],[-4,6],[-2,8],[-2,10],[0,10],[2,7],[5,5],[5,3],[3,4],[3,8],[1,7],[-1,7],[-4,8],[-1,9],[4,3],[7,0],[5,-2],[-5,7],[-8,5],[-4,5],[-3,5],[-1,7],[1,6],[4,2],[0,4],[-7,7],[-2,12],[2,14],[3,12],[10,16],[2,7],[1,6],[2,6],[3,5],[8,-19],[2,-2],[0,3],[-1,6],[9,-6],[9,5],[10,9],[10,4],[23,-4],[4,-3],[4,-4],[4,-3],[3,1],[2,1],[0,4],[-9,10],[-10,6],[-12,2],[-11,-2],[-18,-11],[-9,-2],[-7,9],[3,5],[2,4],[3,3],[4,0],[-3,6],[-2,2],[-2,3],[-1,6],[-3,-8],[-5,-4],[-5,1],[-2,9],[0,17],[0,5],[-2,3],[-3,1],[-2,2],[-1,6],[2,7],[18,29],[5,5],[6,3],[5,1],[-4,6],[4,8],[11,12],[2,3],[2,3],[3,3],[2,1],[3,-2],[6,-8],[8,-6],[15,-24],[8,-5],[3,-4],[2,-4],[3,-12],[1,-4],[8,-4],[5,7],[1,12],[-4,5],[-7,4],[-3,9],[0,13],[0,13],[-2,25],[3,6],[28,11],[7,5],[-2,5],[-1,2],[-3,1],[-6,1],[-17,-11],[-9,2],[-2,2],[-4,7],[-2,3],[-2,1],[-5,-1],[-2,0],[-5,3],[-3,4],[-5,9],[-5,3],[-20,3],[-3,2],[0,3],[5,6],[4,3],[15,0],[13,7],[6,1],[-7,6],[-8,2],[-14,-4],[-6,-3],[-15,-12],[-2,0],[-2,5],[1,5],[2,5],[1,5],[0,7],[-1,5],[-3,8],[-4,7],[-4,7],[-4,8],[1,11],[-22,7],[-13,10],[-5,17],[-2,4],[-9,25],[-1,6],[-2,3],[4,8],[8,12],[0,5],[-1,4],[0,3],[1,5],[-7,-4],[-13,-18],[-7,-6],[-6,-3],[-6,3],[-5,9],[-2,15],[1,8],[1,10],[6,4],[3,2],[6,4],[10,14],[6,2],[3,-2],[6,-8],[3,-2],[12,0],[4,-2],[8,-14],[3,-2],[6,-3],[2,-3],[3,-7],[7,-23],[2,-8],[2,-26],[3,-25],[2,-8],[1,-2],[6,2],[2,-2],[1,-4],[1,-5],[1,-3],[2,-12],[6,-1],[7,4],[2,3],[-3,0],[-3,3],[-2,7],[0,5],[0,1],[-2,1],[-2,5],[-4,10],[-1,3],[0,5],[0,3],[3,2],[1,3],[-2,3],[-1,1],[-2,-1],[-1,1],[-3,7],[-1,3],[-1,4],[-1,8],[-5,16],[-2,2],[-3,5],[-4,11],[-4,12],[-1,9],[6,6],[18,-5],[6,1],[5,4],[40,-6],[3,-3],[3,-14],[2,-3],[3,1],[1,2],[1,2],[3,-1],[3,-3],[6,-7],[3,-2],[12,11],[7,4],[4,-5],[0,-5],[2,-1],[3,0],[1,0],[0,-5],[-1,-2],[-1,-3],[0,-3],[-2,-4],[-2,-4],[-1,-6],[1,-5],[3,2],[13,21],[8,7],[3,9],[3,1],[2,-3],[1,-5],[0,-6],[-1,-7],[-8,-16],[-3,-11],[3,-4],[2,3],[6,14],[4,3],[3,-2],[10,-11],[7,-3],[7,-1],[4,-1],[7,-9],[3,-2],[3,-6],[0,-14],[-2,-15],[-2,-10],[5,-3],[3,-6],[5,-15],[3,8],[5,21],[3,7],[4,5],[5,3],[5,1],[9,-3],[23,-26],[0,9],[1,8],[2,6],[7,4],[6,11],[2,3],[3,7],[0,18],[-1,17],[-3,10],[0,-6],[0,-23],[-1,-9],[-3,-4],[-7,-6],[-5,-6],[-7,-5],[-7,0],[-10,14],[-13,9],[-7,17],[-1,3],[-6,4],[-16,25],[3,11],[0,6],[-3,3],[-10,8],[-4,6],[-2,6],[4,4],[0,4],[-3,5],[-3,11],[-1,13],[1,8],[3,1],[17,-7],[2,-1],[5,-14],[3,-12],[2,-6],[2,-2],[7,-7],[2,-1],[21,-5],[22,6],[9,-1],[11,-12],[8,-4],[5,2],[-2,10],[-7,6],[-15,3],[-12,10],[-24,-7],[-7,1],[-4,1],[-12,19],[0,2],[4,12],[1,6],[-1,7],[-2,4],[-2,3],[-3,2],[-1,-8],[-3,-4],[-3,1],[-4,5],[-2,3],[-8,5],[-2,2],[2,9],[5,10],[7,9],[5,5],[-8,5],[-26,3],[-7,5],[-3,6],[-2,8],[-4,12],[-3,23],[10,18],[10,15],[1,19],[-5,-5],[-5,-3],[-2,12],[2,9],[3,8],[5,7],[-3,5],[-3,3],[-3,0],[-3,-4],[-2,5],[-1,4],[0,4],[2,3],[0,4],[-5,-4],[-5,-24],[-6,-8],[0,-4],[13,-17],[-4,-20],[-8,-24],[-4,-24],[1,-6],[3,-10],[1,-3],[-1,-5],[-4,-8],[0,-3],[-4,-5],[-21,-9],[-10,-11],[-3,-1],[-3,0],[-5,3],[-12,1],[-3,1],[-4,3],[-4,4],[-1,3],[0,4],[-1,5],[-7,18],[-1,-1],[-35,-10],[-6,1],[-12,9],[-8,3],[-7,-13],[-9,1],[-10,5],[-6,7],[5,2],[13,2],[1,4],[-4,6],[-7,0],[-27,-11],[-16,-12],[-4,-1],[1,6],[0,4],[-10,-3],[-13,3],[-12,8],[-3,13],[-4,-4],[-4,1],[-5,4],[-2,7],[0,8],[2,5],[6,9],[6,14],[3,6],[5,2],[5,-1],[12,-6],[5,-5],[-2,-4],[-2,-12],[4,2],[2,4],[5,10],[-3,7],[-6,6],[-6,5],[-5,3],[-2,5],[1,11],[3,12],[1,8],[16,11],[6,1],[3,-7],[0,-15],[1,-11],[4,5],[2,5],[2,14],[2,5],[3,3],[3,-1],[7,-2],[5,-5],[2,-24],[3,-7],[0,7],[2,6],[2,4],[4,-1],[0,-4],[5,-18],[2,-6],[-8,-12],[-22,-9],[-8,-16],[27,12],[5,4],[3,1],[3,-1],[5,-2],[0,-3],[0,-4],[1,-7],[8,-16],[12,-13],[13,-5],[13,5],[-26,5],[-5,4],[-3,10],[-6,22],[8,9],[28,-7],[11,6],[-7,5],[-15,-4],[-8,3],[-6,9],[3,7],[6,3],[10,2],[6,3],[3,1],[3,-2],[5,-5],[3,-1],[13,1],[6,3],[3,8],[-13,-1],[-4,1],[-3,3],[-4,5],[-3,5],[1,3],[7,2],[6,7],[5,9],[4,10],[-5,-7],[-12,-4],[-5,-5],[-4,-5],[-2,-5],[-3,-4],[-3,-2],[-4,0],[-5,3],[-3,1],[-3,-1],[-8,-6],[-3,-3],[-3,-3],[-3,1],[-3,2],[-2,2],[-4,6],[-2,13],[-1,15],[-2,11],[-6,-9],[-7,0],[-6,6],[-6,10],[-5,16],[3,6],[16,7],[-2,7],[-4,1],[-5,-1],[-4,1],[-2,4],[-1,5],[-1,5],[-3,2],[0,-8],[-5,-15],[-7,-8],[-6,23],[0,5],[5,3],[2,3],[3,7],[3,15],[4,8],[5,5],[12,7],[-2,12],[5,9],[8,9],[4,13],[8,30],[3,0],[3,-5],[3,-6],[2,-5],[2,13],[1,5],[2,2],[3,-3],[5,-11],[2,-2],[3,2],[-1,4],[-1,6],[1,6],[2,2],[4,1],[7,-1],[3,-6],[2,-39],[3,-10],[4,-11],[4,-10],[2,-1],[0,4],[2,4],[0,4],[-1,5],[-5,11],[-3,11],[-1,8],[1,20],[1,10],[5,7],[6,4],[5,1],[6,-3],[2,0],[1,5],[1,2],[2,1],[3,0],[2,0],[3,-13],[5,-22],[4,-11],[1,15],[-1,8],[-4,17],[-1,11],[-3,2],[-16,5],[28,57],[3,7],[1,12],[-2,7],[-19,22],[-6,4],[-7,0],[-10,-9],[-5,0],[-5,5],[-4,7],[-15,35],[-1,8],[2,8],[6,7],[2,0],[4,0],[2,1],[2,5],[0,5],[1,4],[2,3],[2,2],[0,4],[-12,-5],[-3,-3],[-3,-4],[-5,-9],[-3,-3],[-6,3],[-7,20],[-6,5],[2,6],[2,2],[3,2],[0,7],[-1,7],[-3,1],[-3,-1],[-4,1],[-2,1],[-2,2],[-1,3],[-1,4],[-1,3],[-2,-1],[-1,-3],[0,-2],[-28,0],[-5,2],[-7,5],[-11,4],[-19,14],[0,-4],[19,-18],[12,-6],[-1,-7],[-6,-7],[-6,-3],[-17,5],[-4,2],[-3,4],[-4,3],[-4,-1],[-3,-5],[0,-5],[1,-6],[1,-7],[-1,-6],[-2,-5],[-5,-7],[34,8],[5,-3],[7,-11],[4,-3],[12,5],[4,0],[-12,-28],[-18,4],[-21,12],[-17,-5],[-3,5],[-3,6],[-2,7],[-1,5],[-2,3],[-12,15],[-7,5],[-3,3],[-1,7],[-1,8],[-2,5],[-3,-1],[-4,-6],[2,0],[-4,-16],[-3,-4],[-3,5],[-7,10],[-2,3],[-15,13],[-1,1],[-13,4],[-3,2],[0,6],[0,7],[0,5],[-16,35],[-3,11],[2,13],[5,10],[9,14],[3,8],[2,8],[3,7],[5,5],[6,4],[5,5],[2,8],[-1,12],[-1,7],[-1,7],[3,13],[-9,-10],[-6,-22],[-8,-17],[-10,4],[-6,-27],[-11,-17],[-25,-25],[-1,15],[0,5],[-8,-16],[-4,-6],[-5,-2],[-16,-2],[-4,-2],[0,-2],[0,-3],[0,-2],[-1,-1],[-12,1],[-3,2],[-1,3],[-1,10],[-3,-2],[-3,-6],[-3,-4],[-35,-18],[-3,-5],[-3,-3],[-2,-2],[-1,-2],[-1,-5],[0,-5],[0,-3],[-1,-3],[-1,-3],[-3,-6],[-8,-8],[-4,-7],[8,-10],[9,16],[9,23],[7,12],[22,-1],[6,-3],[5,-5],[1,-5],[-2,-3],[-6,1],[2,-10],[-2,-8],[-4,-7],[-4,-4],[21,-1],[4,-2],[1,-16],[-4,-13],[-7,-11],[-3,-10],[11,7],[6,2],[5,-4],[2,-7],[0,-7],[-2,-13],[-2,-1],[-14,-17],[-4,-1],[-12,-7],[-14,-2],[-9,0],[-5,5],[-4,18],[0,4],[-3,2],[-6,4],[-3,2],[-4,6],[-2,4],[-1,4],[0,13],[0,6],[-2,6],[-13,22],[-1,25],[1,53],[1,9],[2,7],[6,7],[4,9],[3,9],[4,7],[6,4],[12,-1],[3,1],[3,2],[2,3],[2,3],[5,0],[-5,13],[-2,7],[0,4],[19,0],[6,2],[1,6],[1,6],[3,6],[4,3],[8,-2],[5,4],[0,3],[-8,10],[0,5],[3,8],[12,19],[3,3],[6,2],[5,5],[3,6],[4,3],[5,-2],[4,-6],[3,-8],[2,-8],[3,40],[1,3],[1,6],[0,7],[0,5],[2,1],[2,2],[3,-1],[1,-4],[6,-12],[13,-14],[14,-6],[7,9],[-7,2],[-14,8],[-7,2],[-2,5],[1,10],[3,10],[7,4],[0,4],[-4,4],[-1,6],[1,7],[2,7],[4,6],[6,3],[6,1],[5,-2],[7,-9],[6,-13],[6,-11],[9,-3],[-6,15],[-3,10],[1,9],[9,17],[2,5],[2,17],[6,2],[3,0],[4,-2],[7,-12],[8,-17],[4,-6],[5,-2],[-2,9],[-2,4],[2,4],[3,3],[2,1],[3,-1],[-4,8],[-10,7],[-3,6],[-2,10],[1,8],[2,8],[1,9],[8,22],[2,4],[20,4],[-1,6],[-1,1],[-2,-2],[-2,-1],[-4,2],[0,5],[3,10],[1,3],[2,2],[1,3],[-1,5],[-2,5],[-1,4],[0,10],[10,61],[7,10],[5,5],[5,-5],[4,-9],[3,-4],[3,1],[4,7],[6,4],[3,-11],[1,-18],[-4,-17],[4,0],[4,0],[4,0],[2,-6],[0,-8],[2,-1],[2,2],[1,1],[4,-1],[1,1],[1,-1],[3,-5],[1,-6],[0,-7],[-1,-6],[-1,-6],[-1,-6],[-3,-7],[-1,-6],[1,-7],[3,-1],[3,3],[3,5],[1,4],[0,5],[2,5],[2,4],[1,3],[1,7],[0,6],[2,5],[3,3],[0,4],[-7,8],[-6,13],[-5,17],[-1,19],[2,-3],[2,-1],[5,0],[-4,7],[-3,8],[4,4],[15,5],[9,6],[4,0],[4,-6],[1,-4],[1,-10],[1,-5],[2,0],[2,3],[3,4],[2,3],[28,13],[5,1],[4,-3],[15,-24],[-4,-10],[-5,-8],[-3,1],[-3,-3],[-5,-4],[-5,-2],[2,-1],[18,-8],[-1,-5],[-2,-4],[-2,-3],[-2,-4],[0,-4],[18,5],[6,-5],[-2,-20],[-4,-10],[-8,-8],[-8,-5],[-8,-1],[0,-5],[4,-3],[14,3],[4,-3],[1,-7],[-4,-30],[-6,-13],[-13,-20],[7,3],[10,9],[8,12],[3,11],[2,29],[-1,5],[-2,5],[0,10],[2,8],[5,1],[2,-4],[1,-7],[1,-6],[13,-13],[1,-6],[3,-12],[0,-8],[-1,-6],[-5,-19],[-9,-19],[-12,-14],[-35,-28],[-20,-7],[-14,-11],[-7,-2],[-6,4],[-10,14],[-6,2],[-2,2],[-15,28],[-3,3],[0,-15],[7,-11],[15,-17],[3,-5],[3,-4],[4,-3],[4,-2],[5,-1],[42,11],[32,23],[7,8],[2,-4],[-3,-11],[-5,-10],[9,-8],[0,-15],[-10,-30],[4,3],[7,15],[3,3],[5,-1],[18,-10],[4,-5],[3,-7],[3,-6],[4,-2],[13,-2],[-28,45],[-3,10],[1,11],[-6,5],[-11,2],[-1,9],[2,11],[4,11],[3,8],[5,5],[7,3],[13,2],[4,-3],[3,-8],[4,-17],[8,-12],[9,-7],[7,-11],[2,-23],[-3,-28],[-6,-24],[-8,-22],[-9,-19],[-16,-23],[-2,-8],[-2,-9],[-13,-25],[-4,-12],[2,-4],[5,-2],[11,-16],[7,-3],[7,0],[6,4],[6,11],[3,12],[2,12],[6,19],[1,4],[2,2],[3,-3],[3,-4],[2,-5],[3,-11],[1,7],[0,8],[-2,7],[-2,2],[-4,4],[0,8],[3,17],[4,13],[14,29],[5,8],[14,15],[6,9],[6,5],[18,2],[7,4],[-11,0],[-6,3],[-4,5],[-1,10],[2,7],[3,7],[2,8],[5,34],[5,12],[9,3],[-2,4],[16,43],[6,6],[13,11],[3,9],[-5,2],[-6,2],[-7,-1],[-6,-5],[-4,-11],[-6,-24],[-30,-67],[-10,-10],[0,-4],[3,-12],[-7,-18],[-17,-27],[-4,17],[3,22],[7,18],[9,4],[-4,14],[2,18],[4,20],[2,17],[0,12],[-2,7],[-7,12],[0,5],[-1,27],[0,7],[-2,3],[0,2],[4,7],[7,8],[1,3],[0,7],[3,18],[6,11],[9,4],[9,1],[-4,3],[-4,5],[-2,5],[-2,8],[1,7],[6,10],[1,5],[37,60],[13,9],[44,6],[3,3],[0,6],[-1,4],[-2,-3],[-27,6],[-5,4],[-1,3],[-1,5],[-2,6],[-2,-1],[-7,-7],[-2,-4],[-3,-2],[-12,-4],[-1,-3],[-14,-34],[-4,-8],[-6,-4],[-6,-5],[-9,-21],[-7,-2],[2,17],[2,17],[1,37],[2,16],[6,31],[2,26],[3,19],[1,20],[1,6],[2,5],[2,5],[8,12],[8,6],[7,-3],[2,-19],[2,0],[2,37],[2,8],[6,5],[5,-4],[8,-13],[0,10],[-1,12],[0,10],[4,4],[2,1],[5,6],[3,1],[3,0],[2,1],[2,2],[2,3],[5,6],[5,-1],[4,-6],[4,-9],[1,-5],[1,-10],[2,-5],[1,-3],[6,-5],[10,-14],[5,-5],[5,-2],[6,-3],[9,-17],[6,-4],[25,-8],[12,0],[0,12],[6,10],[2,5],[-1,7],[-3,6],[-4,4],[-4,2],[-5,-2],[-4,-3],[-2,-4],[-3,-3],[-5,-2],[-4,1],[-7,5],[-27,27],[-27,43],[-11,14],[-11,6],[-11,-7],[-9,-14],[-5,-4],[-8,-1],[-7,0],[-7,3],[-7,5],[-3,7],[-1,12],[1,15],[3,13],[4,5],[15,-2],[7,2],[7,8],[0,9],[4,5],[3,5],[-2,12],[-5,9],[-2,5],[0,4],[1,4],[-1,3],[-5,1],[-4,3],[-4,9],[-4,10],[-2,11],[0,11],[2,11],[4,9],[4,5],[6,4],[32,-4],[4,0],[3,3],[5,7],[3,2],[6,1],[11,-3],[5,4],[5,10],[15,21],[6,14],[2,2],[12,0],[6,2],[6,6],[29,48],[12,10],[11,-5],[1,7],[3,8],[1,5],[-1,4],[-3,10],[-1,4],[-1,12],[0,5],[6,14],[1,5],[5,32],[1,11],[1,10],[3,7],[7,8],[7,6],[6,2],[-6,24],[1,26],[6,47],[-1,-5],[-4,-13],[-1,0],[-4,-11],[-1,-3],[-3,-6],[-2,-1],[-3,-1],[-1,-2],[1,-12],[0,-4],[-3,-9],[-4,-20],[-4,-6],[-6,-2],[-3,4],[-2,9],[0,11],[-3,7],[-5,6],[-7,4],[-5,1],[-1,2],[-6,11],[-3,4],[-21,17],[-3,5],[1,11],[2,8],[-1,7],[-3,9],[-6,4],[-15,4],[-10,11],[-30,8],[-4,3],[-3,4],[-2,4],[-1,5],[1,4],[14,10],[5,12],[1,4],[0,14],[-3,8],[-3,0],[-4,-19],[-5,-7],[-7,-4],[-6,0],[-7,1],[-6,4],[-5,8],[-2,13],[1,17],[3,8],[4,1],[6,-4],[2,-3],[2,-4],[1,0],[1,9],[0,20],[1,6],[4,4],[4,1],[4,0],[1,-3],[3,-9],[1,-5],[8,-5],[3,6],[0,11],[-2,5],[-3,6],[-1,15],[-1,23],[2,10],[3,10],[8,15],[3,4],[2,1],[1,2],[2,7],[1,6],[0,5],[0,6],[1,8],[7,20],[3,11],[2,15],[0,6],[2,-1],[3,-7],[2,-6],[0,-6],[1,-5],[5,-3],[4,10],[7,9],[8,6],[7,-1],[2,-4],[1,-7],[2,-6],[3,-3],[4,1],[2,2],[-1,4],[-5,15],[-1,10],[-1,11],[0,14],[2,10],[1,6],[-2,6],[-2,0],[0,-6],[-1,-9],[-1,-5],[-1,-6],[-1,-6],[-1,-6],[-3,-4],[-3,-2],[-7,2],[-4,0],[-3,-3],[-4,-5],[-3,-1],[-2,3],[-3,11],[-3,3],[-7,1],[-5,3],[-1,1],[-2,8],[3,11],[5,7],[6,4],[4,7],[4,26],[6,4],[7,1],[6,4],[-3,11],[-4,1],[-13,-4],[-8,0],[-5,4],[-4,7],[-8,36],[-3,11],[-9,20],[0,11],[6,24],[1,12],[0,39],[3,9],[5,7],[29,25],[6,2],[5,5],[2,12],[-1,15],[-1,12],[-5,27],[-1,15],[3,7],[5,6],[11,34],[5,5],[7,2],[5,-4],[4,-24],[5,-8],[5,-5],[6,-2],[-6,27],[-2,15],[3,13],[0,5],[1,41],[-2,5],[-4,8],[-14,18],[-6,11],[-3,17],[0,10],[-4,25],[1,8],[0,7],[1,8],[-2,9],[9,5],[2,5],[1,9],[-2,7],[-7,11],[-3,8],[0,18],[3,20],[4,19],[5,12],[8,6],[11,1],[12,-2],[9,-5],[3,-5],[4,-7],[4,-6],[9,-5],[8,-11],[4,-2],[7,4],[-1,10],[-4,10],[-7,4],[-6,2],[-15,14],[-6,7],[-11,27],[-1,6],[2,13],[-2,8],[-2,2],[-7,0],[-2,2],[-3,9],[-5,29],[-1,7],[-5,0],[-6,1],[-3,5],[0,10],[10,21],[12,9],[26,11],[14,14],[8,2],[6,-5],[4,-12],[28,-136],[4,-11],[4,-3],[2,14],[-2,26],[-4,25],[-3,9],[-3,9],[-4,9],[-1,12],[2,11],[5,6],[7,6],[5,7],[-7,0],[-6,2],[-4,7],[-2,14],[1,15],[3,6],[5,3],[6,6],[-4,2],[-5,1],[-4,2],[-4,7],[0,6],[0,22],[0,9],[7,47],[0,6],[-6,10],[-9,5],[-7,-16],[-5,-21],[-6,-11],[-7,-1],[-3,1],[-2,9],[-2,4],[-6,-7],[-4,3],[-3,6],[-2,5],[-7,-11],[-7,1],[-22,21],[-3,4],[-3,6],[-1,3],[0,6],[-1,3],[-2,3],[-4,3],[-2,2],[-2,3],[-2,4],[0,3],[7,3],[2,4],[4,9],[2,2],[4,3],[1,1],[0,3],[-1,7],[1,2],[2,5],[25,40],[4,4],[4,4],[7,19],[5,6],[7,0],[8,-4],[7,-1],[9,10],[4,0],[3,-1],[4,0],[3,1],[7,7],[10,3],[2,3],[10,14],[1,2],[5,7],[2,3],[3,1],[11,-1],[-8,8],[-2,4],[-2,9],[1,7],[5,21],[0,4],[0,8],[0,4],[5,6],[1,2],[-2,8],[-5,11],[-1,6],[1,15],[7,31],[0,14],[-6,8],[-5,-2],[-1,-9],[6,-13],[-2,-7],[-4,-13],[-2,-8],[-6,-80],[-2,-11],[-3,-7],[-4,-15],[-3,-7],[-3,-3],[-9,-6],[-17,-5],[-3,-2],[-3,-4],[-8,-9],[-4,-1],[-7,1],[-11,12],[-5,3],[-2,5],[-3,26],[-2,10],[-10,13],[0,3],[-2,3],[-4,19],[-2,3],[-9,7],[-8,13],[-6,6],[-3,1],[-3,0],[-3,-5],[-3,-3],[-3,2],[-2,5],[-2,2],[-7,6],[-3,2],[-3,-1],[-6,-19],[-12,1],[-4,-9],[0,-16],[-12,-5],[-2,-3],[-3,-1],[-2,-3],[-2,-5],[1,-3],[3,-7],[2,-2],[-1,-3],[-1,-2],[0,-1],[0,-2],[5,-5],[1,-5],[-1,-17],[2,-5],[2,-8],[1,-6],[-2,-3],[-6,-1],[-3,-4],[-5,-16],[-3,-6],[-3,-4],[-5,-1],[-4,3],[-8,-20],[-21,1],[-24,6],[-18,-3],[1,-3],[1,-2],[1,-2],[1,-1],[0,-4],[-6,3],[-6,-2],[-11,-5],[-5,1],[-16,15],[-24,12],[-21,2],[-7,3],[1,5],[4,3],[4,6],[5,17],[2,9],[1,8],[1,10],[-1,9],[4,6],[4,6],[8,2],[16,-1],[8,4],[3,11],[2,13],[9,22],[2,12],[-9,-16],[-5,-18],[-7,-14],[-12,-5],[-3,1],[-6,5],[-3,2],[-3,-1],[-4,-2],[-3,-1],[-5,2],[-9,8],[-4,2],[-2,1],[-1,4],[-1,2],[-3,-1],[-1,-1],[-1,-1],[-2,0],[-2,5],[-1,7],[3,6],[-1,7],[-3,16],[-8,17],[-2,16],[-1,11],[3,15],[0,38],[-4,32],[-5,30],[-6,26],[-7,18],[2,11],[-1,11],[-4,13],[1,11],[-3,15],[1,17],[-1,16],[-2,13],[2,8],[4,3],[6,3],[3,7],[6,4],[5,9],[-1,8],[-5,7],[-4,7],[-1,9],[1,6],[3,7],[2,12],[0,15],[2,18],[5,15],[5,14],[5,6],[-3,9],[-5,8],[-1,6],[3,6],[3,9],[4,6],[13,14],[3,20],[6,18],[-3,12],[-3,12],[0,9],[-1,7],[-3,12],[-2,5],[-2,2],[-1,4],[-1,8],[1,5],[4,8],[1,7],[0,25],[1,12],[3,32],[0,8],[1,6],[2,11],[1,7],[3,3],[1,3],[-1,3],[0,4],[-1,2],[-1,-1],[0,4],[-1,5],[0,4],[4,5],[1,3],[5,17],[0,3],[3,0],[4,1],[2,3],[2,6],[-2,25],[-1,13],[-1,9],[-8,18],[-3,13],[0,6],[3,2],[5,13],[3,5],[3,1],[8,-1],[6,5],[8,13],[13,4],[5,6],[5,8],[5,9],[4,11],[3,4],[4,1],[2,-1],[3,-3],[2,-3],[1,-3],[1,-14],[2,-14],[3,-8],[4,5],[1,12],[0,13],[-3,13],[-3,9],[-2,10],[2,13],[3,13],[2,10],[-2,13],[-4,8],[-2,8],[3,10],[10,8],[4,5],[-4,5],[12,24],[5,14],[2,13],[1,6],[1,7],[3,7],[2,2],[1,3],[1,7],[1,7],[4,3],[-3,13],[0,11],[3,9],[5,10],[-1,4],[-5,12],[-1,6],[1,7],[3,3],[2,4],[2,9],[-1,14],[-4,28],[1,13],[6,21],[1,12],[-7,7],[0,-15],[-1,-9],[-2,0],[-2,26],[-4,20],[-5,41],[-21,95],[-20,135],[-3,0],[1,-28],[3,-25],[-3,2],[-2,7],[-2,15],[-1,12],[0,13],[-1,12],[-6,21],[-6,39],[-3,19],[-2,11],[-1,27],[-5,32],[0,13],[4,28],[1,6],[-2,6],[2,3],[3,3],[2,3],[0,6],[-4,23],[1,6],[2,7],[2,3],[2,4],[3,4],[1,5],[5,75],[0,24],[-2,23],[-9,47],[-15,52],[-18,51],[-3,5],[-5,6],[-2,4],[-2,5],[-1,4],[1,33],[-1,6],[-4,13],[-1,6],[1,13],[2,12],[3,9],[3,8],[10,14],[4,8],[2,12],[-1,27],[-1,11],[-2,9],[-17,30],[-2,9],[1,13],[6,21],[2,13],[1,39],[2,11],[5,10],[3,7],[4,1],[4,-3],[4,-9],[2,-6],[3,-2],[1,-1],[11,-11],[7,1],[3,-1],[1,-5],[-1,-6],[0,-5],[2,-5],[3,1],[6,8],[7,-5],[4,1],[7,4],[12,2],[10,6],[13,13],[8,19],[10,50],[0,29],[-1,10],[-1,5],[0,6],[1,4],[5,14],[0,6],[4,69],[-2,15],[-4,9],[-6,6],[-6,5],[3,7],[3,7],[4,6],[4,4],[2,-7],[5,6],[2,11],[-8,6],[7,18],[1,7],[-2,9],[1,10],[2,11],[1,10],[7,-12],[1,-41],[5,-16],[5,-3],[5,-1],[5,1],[4,3],[4,7],[2,7],[0,21],[1,4],[1,5],[2,4],[1,3],[1,4],[0,4],[-1,4],[-2,9],[-4,9],[-1,3],[0,26],[1,4],[1,3],[3,1],[2,-2],[1,-4],[0,-4],[1,-2],[4,2],[3,5],[2,8],[5,32],[3,11],[4,9],[1,5],[1,21],[2,7],[4,13],[3,10],[2,12],[2,12],[1,13],[-4,41],[0,10],[2,6],[5,8],[1,8],[-1,6],[-3,12],[0,6],[1,12],[6,18],[2,13],[0,6],[0,6],[-1,6],[-3,6],[1,6],[2,6],[4,9],[26,41],[4,10],[2,12],[15,16],[4,5],[4,24],[-1,24],[-4,23],[-14,49],[-1,13],[2,12],[4,8],[26,32],[3,5],[6,25],[5,17],[-1,9],[0,8],[1,8],[2,8],[4,7],[6,4],[4,6],[1,13],[1,14],[1,12],[2,11],[4,10],[10,15],[21,23],[9,14],[7,17],[4,21],[3,24],[3,78],[2,14],[3,11],[5,10],[3,12],[4,27],[2,3],[6,11],[2,6],[1,10],[8,33],[2,11],[1,53],[3,37],[0,13],[-3,21],[-1,13],[2,14],[5,8],[6,6],[4,6],[2,9],[0,12],[0,48],[-2,25],[-3,8],[-4,10],[-2,11],[3,13],[12,29],[4,10],[4,21],[4,10],[7,8],[0,7],[0,8],[0,6],[1,5],[7,12],[5,20],[6,50],[6,23],[2,6],[2,3],[2,1],[2,4],[3,2],[6,0],[3,2],[5,9],[5,5],[5,8],[5,13],[5,25],[2,13],[0,13],[0,20],[0,6],[1,4],[4,9],[1,3],[-5,24],[-18,39],[0,27],[1,6],[2,5],[2,3],[4,1],[1,3],[0,7],[0,13],[-1,14],[-3,10],[-3,10],[-3,13],[-4,46],[-1,8],[-7,24],[-3,7],[5,9],[15,1],[3,8],[0,7],[2,7],[1,7],[2,5],[4,5],[2,1],[2,-1],[11,0],[3,2],[2,4],[2,4],[1,11],[3,12],[0,6],[-1,6],[0,7],[2,6],[6,8],[2,7],[1,14],[-3,12],[-3,13],[-2,15],[-1,6],[0,6],[2,7],[3,2],[6,0],[2,2],[2,12],[-2,12],[-1,9],[11,7],[3,8],[2,12],[1,13],[-1,27],[-2,14],[-6,23],[2,11],[4,10],[4,9],[0,7],[3,27],[1,10],[2,6],[2,3],[1,5],[-1,10],[-9,16],[-2,2],[-3,2],[-1,2],[0,1],[0,9],[-3,22],[-1,7],[-4,9],[-5,7],[-5,8],[-3,12],[-1,7],[1,20],[1,7],[3,13],[0,25],[5,63],[-1,10],[-2,6],[-2,6],[0,6],[0,8],[1,6],[3,4],[2,3],[1,3],[-1,12],[-9,19],[0,8],[5,11],[2,9],[-1,9],[-13,99],[-2,10],[0,43],[-6,44],[-5,14],[-10,129],[-6,19],[0,12],[4,48],[1,28],[-1,27],[-3,23],[-2,4],[-1,3],[-1,4],[-1,14],[-1,12],[-1,19],[-5,38],[2,41],[-1,7],[-3,49],[1,13],[4,29],[0,9],[-2,12],[1,14],[4,21],[2,63],[11,54],[0,6],[1,2],[2,-1],[2,-4],[3,-17],[6,-6],[7,-1],[6,1],[7,4],[3,4],[1,6],[0,6],[-1,5],[0,2],[4,1],[1,7],[12,38],[3,-7],[3,-6],[2,-2],[5,7],[3,8],[1,9],[2,19],[0,22],[-2,19],[-3,17],[-5,15],[1,5],[2,3],[2,0],[3,-3],[0,4],[1,4],[1,3],[5,2],[0,3],[-1,4],[1,4],[1,3],[0,2],[1,2],[3,1],[1,-1],[3,-6],[2,-1],[6,5],[3,14],[1,18],[0,18],[-1,8],[-2,7],[-5,9],[-2,6],[-2,7],[-3,35],[0,10],[3,5],[2,4],[0,9],[0,9],[-1,6],[7,20],[2,11],[-3,5],[-3,5],[-3,11],[-3,14],[-1,12],[1,12],[4,19],[1,16],[1,7],[1,7],[0,7],[-2,5],[-4,6],[-2,6],[-1,14],[-1,12],[-1,12],[-4,12],[-4,8],[-26,32],[-5,10],[-2,11],[0,30],[0,2],[0,3],[0,4],[1,3],[2,6],[1,3],[0,8],[-2,4],[-3,4],[-1,6],[1,5],[2,9],[1,6],[-4,27],[1,2],[0,6],[-1,4],[-4,-4],[-2,22],[3,30],[7,26],[9,11],[4,2],[11,10],[3,4],[3,11],[3,24],[3,10],[11,18],[5,11],[4,33],[-1,7],[-1,5],[-3,4],[-2,5],[-1,6],[2,7],[5,6],[5,7],[3,11],[-2,21],[0,5],[2,3],[3,1],[3,0],[2,0],[6,14],[6,25],[4,26],[1,20],[-2,11],[-1,4],[-2,2],[-1,2],[2,6],[4,10],[0,11],[3,22],[1,41],[-1,13],[-4,17],[2,5],[2,6],[2,5],[2,10],[2,61],[2,13],[2,13],[1,4],[3,3],[2,3],[1,6],[-1,13],[-1,8],[2,4],[3,1],[1,5],[0,5],[0,7],[2,13],[5,21],[3,13],[1,12],[1,14],[1,7],[2,6],[2,1],[1,-6],[2,-4],[12,7],[5,-1],[1,7],[2,7],[3,5],[2,2],[3,3],[0,7],[-2,14],[0,25],[7,24],[1,6],[-2,14],[-2,16],[-4,16],[-7,26],[0,13],[2,14],[1,16],[-1,10],[-3,11],[-2,12],[3,17],[-1,6],[-3,9],[-1,4],[0,8],[1,4],[3,17],[0,6],[2,6],[3,4],[4,0],[1,-6],[1,-8],[2,-2],[3,2],[2,2],[3,5],[1,5],[-1,4],[0,6],[2,5],[2,4],[1,4],[1,5],[0,8],[1,2],[2,-2],[2,-2],[4,2],[0,5],[-1,6],[0,4],[2,5],[6,7],[1,4],[0,11],[-5,28],[0,6],[0,3],[-4,17],[-1,8],[1,4],[10,46],[2,6],[2,4],[6,7],[5,6],[-5,12],[-1,4],[-1,5],[1,7],[2,6],[4,6],[1,6],[1,7],[3,31],[5,23],[1,15],[-3,19],[-1,11],[3,12],[2,5],[1,5],[0,5],[0,8],[-1,6],[-3,14],[0,4],[2,6],[7,-1],[3,17],[7,9],[-3,15],[-11,7],[2,16],[5,7],[2,17],[-2,10],[-2,10],[0,16],[-2,9],[1,6],[1,10],[1,20],[0,16],[0,5],[2,5],[3,4],[1,3],[2,20],[-1,21],[-4,18],[-5,14],[-8,21],[-2,11],[-1,15],[-1,4],[-6,3],[-2,0],[2,15],[2,15],[7,3],[2,19],[0,16],[0,14],[2,14],[3,8],[6,3],[5,14],[-1,26],[-1,6],[-2,12],[-1,6],[1,7],[1,4],[6,11],[1,0],[2,0],[3,1],[5,5],[9,13],[4,2],[2,7],[2,31],[3,11],[10,0],[3,2],[2,5],[1,6],[1,5],[2,6],[-1,7],[-2,9],[1,7],[3,18],[2,23],[-1,26],[-3,24],[-7,20],[-5,5],[-2,4],[-1,5],[0,6],[2,9],[0,5],[2,13],[3,11],[2,12],[-1,15],[-13,33],[-2,14],[-1,13],[-5,25],[-2,12],[0,27],[-1,6],[-4,11],[-1,3],[0,47],[6,28],[0,6],[-1,6],[-2,14],[-2,5],[-1,4],[-2,5],[0,8],[1,4],[2,4],[1,5],[2,12],[2,19],[4,21],[-2,17],[0,4],[-2,5],[0,3],[2,3],[1,3],[1,2],[-1,6],[-1,9],[2,5],[2,7],[0,8],[1,8],[-1,11],[1,10],[5,18],[-2,7],[0,7],[4,13],[-3,13],[-1,13],[3,1],[1,5],[1,10],[0,17],[-2,18],[-5,25],[2,18],[5,31],[-1,16],[-2,8],[0,8],[5,13],[-1,31],[1,9],[3,9],[9,15],[3,9],[5,17],[5,20],[3,22],[1,22],[-4,15],[-2,24],[-8,11],[-7,7],[-9,7],[-4,-7],[-2,-14],[-4,-7],[-2,-9],[-6,3],[-5,4],[-7,5],[-4,-12],[-3,9],[2,25],[2,11],[1,5],[3,2],[3,5],[2,7],[-3,10],[-1,1],[-1,15],[-1,13],[4,19],[-1,14],[-2,12],[1,11],[0,11],[3,18],[6,8],[1,15],[-3,12],[2,14],[-4,14],[2,16],[3,12],[7,16],[7,11],[1,3],[1,0],[2,-5],[1,-5],[0,-6],[-1,-6],[-1,-5],[2,-11],[3,-7],[4,-6],[5,-1],[7,5],[8,11],[7,12],[4,12],[6,16],[2,19],[0,5],[0,3],[2,6],[0,1],[3,7],[4,9],[1,10],[1,10],[0,10],[-1,13],[-4,16],[-2,17],[3,17],[0,8],[3,14],[3,17],[-2,18],[2,4],[0,5],[-2,5],[0,6],[2,5],[2,0],[1,2],[1,7],[-1,7],[-2,11],[-1,7],[1,5],[10,36],[0,5],[0,6],[-3,13],[2,42],[-1,34],[2,8],[2,9],[3,81],[0,9],[4,27],[-1,11],[4,4],[2,10],[2,10],[0,10],[-4,12],[0,1],[1,1],[1,0],[0,4],[4,13],[-2,5],[1,5],[2,6],[1,8],[-1,9],[-1,6],[-4,13],[12,14],[1,29],[-2,31],[2,16],[-1,6],[-1,34],[1,7],[2,13],[5,7],[5,7],[3,10],[0,10],[1,9],[1,8],[4,5],[0,9],[-1,6],[-1,7],[-1,7],[0,3],[3,10],[3,9],[1,11],[-2,10],[-5,14],[-2,16],[-1,12],[2,5],[1,5],[3,7],[1,6],[-2,14],[0,11],[-3,5],[0,6],[1,3],[1,4],[-1,4],[-2,6],[-1,8],[0,8],[-4,9],[-1,7],[-2,13],[-1,3],[-1,3],[-1,4],[0,3],[1,3],[1,2],[-1,12],[-4,8],[-6,21],[-2,16],[1,10],[1,6],[4,14],[5,10],[1,6],[-4,12],[1,9],[-1,12],[-2,8],[-2,6],[-4,9],[-4,8],[-3,7],[-5,1],[0,2],[4,4],[2,7],[-3,18],[-1,14],[4,11],[0,4],[-2,1],[0,1],[-1,1],[-1,1],[3,17],[0,20],[-2,60],[-1,9],[2,7],[6,14],[2,9],[1,17],[-1,16],[-1,10],[-4,15],[-1,7],[1,8],[7,9],[5,5],[1,17],[1,4],[2,16],[-8,28],[-2,7],[1,7],[2,2],[2,2],[1,7],[0,4],[-2,14],[0,6],[2,8],[5,19],[1,12],[-1,3],[-2,9],[-1,6],[1,6],[2,13],[1,5],[0,13],[-3,17],[-1,20],[-2,15],[1,7],[1,11],[0,7],[-6,18],[0,16],[3,32],[-1,11],[-6,34],[-1,12],[-2,7],[-7,7],[-8,8],[-1,3],[8,1],[1,10],[2,7],[0,9],[1,11],[-2,27],[-2,17],[-4,14],[0,15],[-4,23],[-7,22],[1,4],[1,3],[-3,6],[-3,6],[-2,1],[0,6],[2,11],[0,6],[0,23],[1,12],[3,15],[-1,4],[-2,3],[-1,4],[2,16],[0,6],[-1,8],[-10,52],[0,8],[1,21],[-3,17],[-2,38],[-5,24],[-2,25],[-1,14],[1,6],[3,16],[0,16],[0,7],[2,13],[0,7],[-1,6],[-2,6],[-1,4],[4,11],[-1,23],[1,19],[3,13],[1,7],[0,6],[-2,14],[0,4],[6,7],[1,9],[-3,9],[-3,10],[-7,18],[-6,12],[-6,14],[0,1]],[[30446,39610],[7,7],[14,3],[30,-6],[14,3],[7,4],[20,23],[6,4],[8,0],[7,5],[4,8],[14,32],[11,20],[5,11],[6,19],[17,78],[0,11],[0,11],[-3,11],[-6,22],[-1,10],[-1,15],[-2,25],[-5,21],[-3,20],[2,25],[9,20],[12,1],[13,-4],[12,5],[13,17],[35,71]],[[30932,18017],[0,-32],[-3,-20]],[[30929,17965],[-3,0],[-6,4],[-15,19],[-52,41],[-10,-3],[0,-4],[23,-10],[3,-9],[3,-7],[6,-10],[7,-8],[5,-5],[14,-8],[2,-6],[-6,-9],[-8,-5],[-78,-17],[-17,4],[-43,26],[-62,22],[-15,9],[-9,10],[-2,3],[-5,0],[-4,0],[-4,1],[-4,4],[-3,6],[-1,4],[-1,7],[2,5],[4,2],[5,1],[3,2],[2,6],[-1,5],[-1,5],[0,4],[1,26],[-4,-3],[-6,-33],[-5,-7],[-3,9],[-2,30],[-5,6],[-1,-5],[2,-40],[0,-12],[0,-4],[-2,-4],[-3,-3],[-4,-1],[-4,1],[-2,6],[2,26],[-1,13],[-3,7],[-5,-3],[-1,-12],[0,-27],[-4,-14],[-9,-6],[-11,-1],[-8,2],[-5,5],[-6,9],[-4,10],[-2,10],[0,25],[1,6],[1,4],[2,5],[0,7],[-3,3],[-4,-8],[-3,-13],[-2,-12],[1,-14],[4,-18],[1,-10],[0,-11],[-1,-5],[-3,-2],[-24,-9],[-4,0],[-1,8],[1,9],[2,9],[1,7],[-1,9],[-3,-1],[-2,-8],[-1,-10],[-8,8],[-1,-6],[-1,-12],[-6,-11],[-9,-5],[-11,-2],[-11,3],[-9,8],[-4,13],[0,12],[5,10],[10,17],[9,22],[3,11],[-5,4],[-2,-6],[-3,-10],[-4,-4],[-3,-3],[-9,-11],[-2,-4],[-1,-5],[-2,-3],[-2,-3],[-1,-3],[-1,-4],[0,-8],[-1,-4],[0,-4],[1,-10],[-1,-3],[-2,-2],[-3,2],[-2,3],[-1,2],[-12,7],[-9,2],[-12,6],[-11,9],[-10,3],[-8,-1],[0,-6],[-5,-7],[-7,-4],[-12,-1],[-6,-4],[-5,-8],[-7,-6],[-8,3],[-10,9],[-2,6],[-1,14],[2,6],[7,6],[7,4],[18,4],[25,13],[22,20],[25,38],[-10,12],[-15,-6],[-24,-26],[3,-4],[7,-5],[3,-4],[-6,-9],[-9,-8],[-9,-5],[-8,-2],[-5,2],[-3,3],[-4,1],[-5,-2],[-4,-4],[-3,-6],[-4,-4],[-4,-2],[-22,1],[-9,6],[1,15],[9,9],[23,3],[9,6],[-7,5],[-16,-4],[-7,-1],[-12,7],[-5,-1],[-4,-10],[5,-8],[-3,-11],[-16,-29],[-5,-4],[-4,1],[-2,8],[2,9],[4,7],[4,5],[3,6],[2,9],[-1,8],[-1,8],[0,8],[11,17],[3,3],[1,2],[-1,4],[-2,3],[-5,-5],[-3,-1],[-5,1],[-3,3],[-8,11],[-5,2],[2,-8],[2,-7],[2,-6],[0,-7],[-2,-10],[-3,-3],[-4,1],[-3,3],[0,4],[-1,4],[-1,4],[-3,1],[-1,-2],[-12,-30],[-4,-6],[-4,-3],[-4,2],[-7,11],[-4,3],[-11,-1],[-5,0],[-4,6],[0,9],[4,3],[20,2],[4,3],[3,7],[-7,3],[-6,0],[-5,5],[-2,19],[0,3],[0,4],[1,6],[2,5],[4,6],[2,5],[-9,-1],[-5,-10],[-4,-5],[-7,8],[-4,14],[-3,3],[-4,-6],[0,-7],[2,-7],[3,-5],[2,-4],[-7,-1],[-6,5],[-5,2],[-3,-14],[11,-5],[6,-4],[4,-7],[-4,-4],[-2,2],[-3,4],[-3,2],[-4,-3],[-1,-6],[-1,-8],[-1,-7],[-3,-7],[-2,3],[-2,5],[-4,3],[-2,-3],[-2,-5],[-3,-5],[-5,0],[3,-13],[-3,-6],[-5,2],[-4,14],[0,13],[2,10],[5,17],[-6,-3],[-5,-9],[-4,-11],[0,-14],[-2,4],[-3,1],[-2,-1],[-3,-4],[-2,10],[2,12],[4,11],[4,8],[-2,1],[-2,-2],[-1,-2],[-3,-1],[-2,2],[-1,4],[-1,1],[-2,-5],[-1,-4],[0,-4],[0,-3],[-1,-5],[-7,-10],[0,-4],[0,-3],[0,-3],[-2,-3],[-2,-1],[-2,1],[-3,1],[-1,2],[-3,9],[2,8],[7,13],[-3,0],[-7,-4],[-3,0],[-4,2],[-7,5],[-4,1],[4,-13],[-6,-5],[-8,0],[-7,2],[2,-7],[1,-5],[-1,-5],[-4,-4],[-8,5],[-5,0],[-14,-5],[-7,0],[-5,5],[-3,8],[-2,12],[6,4],[4,1],[5,-2],[6,-3],[-3,6],[-1,2],[5,5],[2,4],[1,3],[0,7],[-1,0],[-2,-1],[-3,-1],[-9,0],[-2,4],[5,8],[-4,0],[-15,-12],[0,7],[2,7],[2,5],[2,4],[-5,9],[-2,2],[0,5],[1,4],[1,-1],[3,-4],[5,-2],[5,-1],[3,1],[-14,19],[-3,11],[8,6],[9,-6],[6,-3],[1,-2],[0,-3],[1,-2],[8,-4],[5,-11],[2,-7],[0,-8],[2,-7],[5,-2],[10,-2],[25,-14],[10,-1],[-3,4],[-7,5],[-3,5],[-6,17],[-2,5],[10,0],[22,-22],[13,1],[-20,19],[-10,13],[0,13],[-7,4],[-5,-2],[-6,-3],[-7,-3],[-13,4],[-3,2],[-3,7],[0,5],[1,3],[5,0],[-1,5],[-1,4],[-2,4],[-2,3],[10,-1],[3,1],[2,2],[1,4],[2,4],[4,2],[6,-2],[7,-5],[3,-6],[-6,-4],[0,-3],[13,-8],[21,-36],[14,-5],[0,11],[19,-1],[0,10],[-6,7],[-18,1],[-6,8],[-2,4],[-1,6],[-1,7],[1,6],[4,6],[3,-3],[5,-13],[3,-5],[4,-5],[5,-2],[3,2],[1,6],[-1,7],[-3,5],[-2,4],[4,-1],[7,-9],[10,-7],[2,0],[5,1],[5,-1],[1,0],[2,-1],[0,-4],[1,-5],[1,-3],[2,0],[7,8],[8,3],[4,7],[-6,6],[-17,2],[-8,8],[3,1],[2,3],[2,3],[1,5],[4,-3],[2,1],[2,4],[3,2],[4,-1],[5,-6],[9,-3],[31,-23],[6,-7],[5,-21],[5,-9],[11,-11],[-13,35],[-2,9],[6,1],[31,-9],[11,-12],[2,2],[0,15],[1,6],[3,2],[5,7],[-1,16],[-4,29],[6,-3],[6,5],[7,7],[6,4],[17,1],[8,-2],[7,-7],[0,-8],[6,-1],[11,4],[1,2],[2,5],[1,1],[2,1],[3,-3],[1,-1],[6,-1],[2,-1],[3,-3],[-26,-46],[-1,-2],[-5,-3],[-1,-1],[0,-4],[1,-3],[1,-2],[0,-1],[1,-8],[1,-7],[1,-7],[-3,-9],[-15,-28],[-2,-11],[0,-5],[1,-8],[2,-6],[2,-3],[2,4],[2,18],[3,7],[9,-18],[6,-8],[12,-5],[2,2],[-2,6],[-2,4],[-8,10],[-7,19],[2,23],[5,22],[7,18],[5,8],[7,9],[7,5],[5,-4],[1,-3],[0,-6],[1,-1],[1,-1],[4,-4],[3,-5],[10,-6],[10,-16],[5,-6],[12,-5],[14,-12],[5,-6],[13,-27],[9,-8],[4,15],[-6,5],[-5,6],[-4,8],[-4,13],[12,-5],[23,-21],[13,-3],[-6,9],[-16,11],[-12,15],[-49,29],[-6,8],[-1,5],[-1,5],[0,14],[-12,10],[-3,4],[4,11],[-4,12],[-11,20],[-7,7],[-23,7],[-41,-3],[-10,3],[-7,10],[-3,14],[-2,14],[-3,10],[2,5],[4,-5],[5,-3],[10,-5],[-13,18],[-5,3],[-5,3],[-4,8],[-3,9],[-1,8],[109,-85],[32,-21],[29,-20],[3,-4],[3,-5],[3,-5],[12,-4],[5,-8],[10,-18],[11,-14],[4,-2],[-2,21],[3,2],[13,3],[4,3],[-1,5],[-5,6],[-20,6],[-5,6],[-4,11],[2,6],[9,4],[5,4],[2,6],[2,6],[5,8],[5,6],[5,3],[5,-1],[6,-4],[9,-9],[5,-7],[3,-8],[0,-10],[-1,-10],[0,-8],[6,-5],[-4,-16],[8,4],[4,0],[4,-4],[1,-6],[0,-7],[1,-5],[5,-2],[3,-4],[1,-9],[0,-8],[-2,-4],[-2,-3],[1,-25],[2,2],[5,8],[1,2],[1,1],[4,4],[3,4],[2,-1],[2,-3],[7,-6],[0,-11],[-2,-12],[-3,-8],[4,-2],[4,-9],[2,0],[3,4],[1,4],[-1,3],[-2,6],[0,4],[5,13],[1,5],[0,7],[-1,6],[-4,7],[-5,7],[-6,7],[-5,7],[-1,10],[4,11],[-1,2],[-1,1],[-2,7],[-7,5],[-1,6],[0,7],[0,3],[-2,4],[-3,5],[-3,0],[-1,3],[1,9],[5,10],[7,0],[16,-7],[8,-7],[16,-8],[11,-14],[4,-9],[-2,-6],[2,-6],[2,-3],[6,-7],[1,-1],[3,-2],[1,-1],[2,-4],[0,-7],[1,-3],[6,-7],[6,-4],[4,4],[-2,13],[-8,15],[-4,9],[2,10],[6,9],[6,2],[6,-3],[59,-50],[11,-5],[2,-3],[2,-5],[2,-9],[0,-7],[-3,-4],[-6,-3],[-5,-8],[-4,-10],[-5,-8],[-10,-8],[-3,-3],[-2,-6],[-3,-11],[-2,-6],[-10,-20],[8,-14],[-2,-7],[0,-6],[2,-4],[3,-4],[3,11],[-1,15],[-1,13],[6,6],[6,4],[4,10],[4,11],[4,11],[5,8],[6,4],[7,-1],[6,-8],[6,-19],[3,-3],[3,11],[0,10],[-5,32],[0,7],[2,3],[1,5],[2,6],[3,2],[14,1],[4,-1],[4,-2],[8,-10],[8,-1],[4,2],[0,5],[0,5],[1,6],[1,6],[-14,14],[-14,9],[-23,6],[-6,6],[-11,15],[-13,15],[-63,36],[-7,2],[-2,2],[-5,9],[-3,8],[-4,1],[-9,0],[-74,37],[-8,10],[-3,2],[-1,2],[-13,11],[-12,3],[-12,16],[-4,20],[-3,24],[-5,25],[-5,11],[-5,8],[-3,9],[-2,29],[-6,24],[-2,13],[3,30],[10,13],[22,16],[22,14],[15,5],[3,11],[10,2],[20,-5],[43,18],[81,67],[10,18],[2,24],[-3,21],[-2,15],[-4,16],[-1,5],[-12,1],[-19,-2],[-59,-1],[-36,-14],[-25,-3],[-15,-7],[-10,-11],[-10,-11],[-10,5],[-16,-4],[-6,-4],[-12,-13],[-6,-3],[-8,1],[-7,3],[-7,7],[-6,9],[-7,18],[-5,7],[-6,3],[-7,2],[-7,5],[-7,8],[-4,10],[-2,9],[-2,12],[3,22],[0,31],[2,15],[2,8],[3,7],[1,11],[-1,13],[-1,13],[2,21],[0,16],[2,10],[2,9],[7,8],[9,9],[6,8],[3,3],[4,-2],[0,-7],[-4,-8],[-4,-7],[3,-7],[5,-5],[-1,-9],[-5,-6],[3,-6],[8,2],[15,-2],[16,19],[14,10],[5,19],[2,10],[3,10],[2,21],[-5,14],[-6,5],[-2,0],[-2,-2],[-1,-1],[-2,-1],[-2,1],[-3,5],[-1,2],[-8,3],[-4,1],[-3,-2],[-4,-6],[-5,-9],[-3,-7],[-7,-5],[-1,7],[5,12],[8,8],[-3,25],[-4,17],[-15,12],[-22,-1],[-3,2],[0,6],[3,5],[13,7],[26,6],[21,-1],[11,4],[9,-1],[3,-15],[19,-32],[13,-18],[14,-5],[11,1],[16,29],[8,10],[11,3],[14,2],[6,8],[3,8],[3,9],[5,9],[9,18],[6,11],[4,8],[4,7],[-3,16],[-2,11],[-3,10],[-1,12],[1,13],[4,10],[6,7],[21,12],[10,11],[5,3],[4,4],[3,2],[3,2],[6,-2],[6,-9],[8,-21],[5,-11],[3,-9],[5,-14],[6,-10],[14,-35],[11,-17],[13,-9],[14,2],[19,17],[16,0],[12,6],[12,10],[12,11],[6,8],[3,10],[3,10],[3,6],[4,0],[6,-5],[20,-35],[4,-6],[8,-8]],[[30936,19296],[0,-159],[-1,-158],[0,-159],[-1,-159],[0,-158],[-1,-159],[0,-159],[0,-159]],[[30933,18026],[-17,9],[-3,-1],[2,-6],[6,-5],[11,-6]],[[27567,30472],[-5,20],[2,19],[8,10],[8,-12],[1,-7],[1,-10],[0,-12],[0,-8],[-3,-3],[-5,-2],[-5,1],[-2,4]],[[28114,30566],[2,-3],[7,-17],[-4,0],[-3,0],[-3,-2],[-2,-3],[-3,4],[-1,-4],[-8,9],[-6,3],[-6,-1],[-10,-9],[-6,-3],[-4,-2],[-6,-8],[-2,1],[-1,7],[6,13],[7,11],[3,2],[6,3],[3,3],[1,3],[0,6],[1,5],[2,2],[4,-1],[6,-3],[6,-5],[2,-9],[1,-2],[3,0],[5,0]],[[19658,34425],[3,-7],[-2,-8],[-5,-7],[-8,-3],[-5,-6],[-3,-2],[-6,0],[-2,-1],[-3,-2],[-3,-4],[-2,-4],[-2,-3],[-3,-2],[-3,0],[-2,-1],[-4,-3],[-2,-6],[-3,-4],[-3,-1],[-3,3],[-1,5],[1,5],[1,5],[6,42],[3,9],[5,9],[5,6],[3,-2],[16,-14],[2,-1],[6,-6],[3,-1],[2,1],[3,3],[3,1],[3,-1]],[[20705,34797],[-3,4],[2,1],[0,-1],[1,-2],[0,-2]],[[27805,34866],[3,-2],[0,-3],[-2,-1],[-3,0],[2,6]],[[27751,34915],[0,-2],[1,0],[0,-2],[0,-1],[-2,-1],[-2,0],[3,6]],[[31320,17401],[5,-4],[3,-4],[1,-5],[-3,-8],[2,0],[2,-3],[2,-1],[-6,-10],[-9,4],[-18,14],[-4,2],[-3,4],[-1,6],[-2,6],[-4,3],[-8,-3],[-4,2],[4,9],[5,4],[7,1],[21,-6],[7,-5],[3,-6]],[[31362,17409],[0,-8],[0,-11],[2,-11],[3,-9],[1,-7],[-1,-4],[-3,-2],[-4,-1],[-3,1],[-3,4],[-4,9],[-2,3],[-5,4],[-2,3],[0,7],[1,7],[1,5],[2,5],[5,10],[5,6],[6,1],[5,-4],[0,-4],[-1,-2],[-1,-1],[-2,-1]],[[31249,17412],[1,5],[5,3],[3,-6],[-2,-7],[1,-8],[-9,7],[-7,-6],[1,-10],[-4,-19],[-7,-5],[-8,8],[-4,-4],[0,-10],[-3,-6],[-5,3],[-2,5],[1,9],[3,9],[0,9],[-5,0],[-4,-2],[-3,1],[-3,-4],[-3,-7],[1,-6],[-5,2],[-6,5],[3,5],[-1,3],[-2,6],[-4,3],[-2,-6],[-5,-5],[-6,-3],[-2,-5],[0,-10],[-6,5],[-4,6],[-5,-2],[-6,-1],[-7,6],[0,7],[-2,7],[-1,8],[4,5],[6,1],[8,2],[6,4],[7,3],[4,-5],[7,-3],[7,-1],[7,1],[6,1],[5,5],[4,-4],[11,-2],[9,-9],[7,2],[-3,10],[-4,6],[-1,5],[6,-3],[4,-3],[8,3],[3,-2],[2,-3],[1,-3]],[[31324,17441],[5,6],[7,3],[7,-3],[2,-10],[-3,-3],[-3,-1],[-4,1],[-3,3],[-2,-10],[-5,-2],[-3,5],[2,11]],[[31284,17453],[-2,2],[-1,2],[-2,1],[-2,-1],[-6,-10],[-2,-2],[-4,1],[-2,4],[-1,4],[-3,3],[-3,1],[-10,-1],[-5,2],[-6,3],[-4,5],[-4,7],[0,4],[9,2],[3,27],[9,4],[4,-3],[7,-8],[5,-2],[4,-5],[2,-8],[2,-6],[4,5],[0,5],[1,25],[-3,6],[-3,4],[-3,4],[-1,9],[2,8],[3,5],[17,8],[3,-1],[-2,-6],[0,-2],[0,-2],[-1,-1],[-1,0],[4,-4],[1,-4],[-1,-10],[1,-5],[5,-7],[1,-5],[-4,-5],[-4,-6],[-2,-9],[-1,-11],[4,-3],[22,-3],[0,-2],[-2,-9],[-1,-4],[1,-3],[3,-2],[3,-2],[0,-7],[-3,-8],[-7,-3],[-8,-2],[-6,-3],[0,14],[-1,6],[-3,2],[-6,2]],[[31210,17603],[7,-9],[6,-12],[3,-12],[-3,-11],[2,-4],[0,-4],[-7,-1],[-13,-13],[-15,-6],[-5,-1],[-2,3],[1,6],[1,6],[2,4],[3,2],[4,1],[2,3],[2,4],[1,4],[0,8],[-2,5],[-1,3],[-1,4],[-1,11],[0,5],[3,4],[1,2],[2,2],[2,0],[2,0],[1,0],[2,-1],[3,-3]],[[30635,17694],[11,-7],[5,-5],[4,-7],[1,-7],[-5,1],[-9,8],[-5,-2],[1,-5],[9,-10],[-5,-3],[-4,-1],[-28,0],[2,6],[2,5],[1,4],[3,2],[-2,8],[-6,20],[25,-7]],[[30551,17717],[12,10],[7,3],[0,-9],[-9,-16],[-1,-6],[0,-14],[-1,-4],[-6,-5],[-2,8],[-3,12],[-4,5],[1,1],[1,1],[0,1],[2,1],[0,4],[-6,4],[-6,0],[-5,2],[-6,10],[4,0],[7,4],[4,0],[3,-2],[6,-8],[2,-2]],[[31429,17737],[7,-6],[-3,-12],[-8,-12],[-8,-6],[-11,-1],[-34,5],[3,11],[-2,5],[-3,4],[-2,8],[1,7],[4,7],[5,7],[3,4],[10,4],[32,-1],[3,-1],[2,-3],[2,-6],[0,-3],[1,-5],[-1,-4],[-1,-2]],[[31548,17788],[1,-9],[-4,-5],[-10,-4],[-3,-7],[-6,-18],[-3,-4],[-5,-2],[-10,-8],[-5,-2],[-2,2],[-1,4],[-1,3],[-5,-6],[-3,1],[-2,4],[-1,4],[-1,8],[1,11],[1,10],[2,6],[3,5],[15,9],[6,8],[3,3],[3,2],[4,-2],[7,-8],[3,-3],[3,-1],[7,1],[3,-2]],[[31425,17884],[6,-9],[5,-14],[6,-30],[-12,4],[-21,26],[-18,9],[-12,11],[-9,4],[-1,3],[0,4],[1,5],[6,6],[6,-1],[13,-7],[23,-6],[7,-5]],[[31111,17526],[-5,-8],[-3,-5],[-1,-7],[9,1],[4,-2],[0,-7],[-2,-1],[-12,-11],[-7,-10],[-3,-2],[-5,0],[-3,2],[-4,10],[-6,8],[-2,5],[-2,7],[0,3],[2,6],[0,3],[-1,4],[-2,5],[-1,1],[2,12],[-1,5],[-3,1],[-3,-1],[-10,-11],[-7,-2],[-9,0],[-6,5],[2,12],[8,18],[2,10],[-1,10],[-5,5],[-17,8],[-3,5],[-3,11],[-8,-3],[-12,-14],[-9,1],[-12,7],[-11,11],[-4,12],[0,12],[-1,5],[-1,1],[-3,0],[-1,-1],[-1,-4],[-2,-3],[-2,0],[-1,3],[0,6],[-2,5],[-4,2],[0,-9],[1,-8],[1,-8],[2,-7],[-22,3],[-8,-5],[-5,1],[-12,21],[-8,4],[8,-17],[0,-8],[-8,1],[7,-12],[2,-6],[-3,-3],[-5,-1],[-10,-5],[-5,-1],[-4,3],[-4,6],[-5,8],[-1,5],[-2,6],[-7,5],[-4,5],[-5,9],[-1,5],[2,8],[2,3],[15,10],[5,1],[16,-1],[15,4],[6,0],[-5,1],[-11,11],[0,4],[14,12],[-8,0],[-45,-29],[-4,-1],[-2,4],[1,5],[11,16],[3,4],[3,1],[2,3],[1,6],[-1,8],[1,7],[2,6],[9,14],[-1,3],[-2,4],[-1,1],[2,7],[2,5],[3,3],[4,2],[1,2],[5,11],[2,3],[-6,1],[-22,-21],[-13,-6],[-3,-2],[-1,-11],[-1,-4],[-2,-2],[-3,0],[-14,2],[-6,5],[-9,18],[-2,4],[-3,3],[-2,3],[-2,6],[0,8],[1,13],[-1,7],[-8,-13],[2,-15],[6,-15],[4,-14],[-7,-2],[-9,3],[-8,7],[-5,9],[-2,6],[-2,8],[-1,8],[-1,8],[-1,5],[-2,3],[-1,4],[2,11],[-3,-2],[-4,-5],[-2,-2],[-13,1],[-9,-7],[-17,-3],[-7,-3],[5,-3],[10,5],[5,0],[4,-3],[13,-1],[5,-2],[-3,-3],[-1,-1],[3,-9],[5,-14],[2,-9],[-8,4],[-8,-2],[-15,-11],[-9,-1],[-4,0],[-2,3],[-2,6],[-4,1],[-4,-2],[-3,-2],[0,-5],[2,-3],[3,-5],[2,-5],[1,-3],[0,-5],[0,-4],[-1,-5],[-2,-6],[4,1],[5,8],[3,3],[3,0],[4,-1],[3,-3],[3,-4],[3,-4],[1,-3],[2,-2],[4,-3],[4,0],[4,3],[3,1],[4,-4],[-2,-3],[-5,-4],[-3,-1],[0,-4],[3,-2],[1,-2],[0,-4],[-2,-4],[5,-2],[8,-1],[6,-3],[-1,-8],[-10,-11],[-5,-7],[-1,-9],[3,-1],[8,1],[3,0],[1,-3],[1,-4],[2,-4],[2,-1],[7,7],[3,1],[8,-1],[8,-3],[-10,-12],[-1,-4],[1,-5],[5,-4],[1,-6],[-3,-12],[-7,6],[-11,21],[-6,0],[-14,-13],[-6,3],[-2,4],[-3,3],[-2,4],[-1,9],[1,21],[-1,5],[-4,12],[-3,-1],[-3,-9],[-1,-12],[-1,-12],[-1,-14],[-2,-11],[-4,-6],[-5,4],[-2,11],[1,24],[-3,14],[-16,0],[-4,9],[5,8],[30,12],[-6,4],[-19,-4],[0,4],[1,1],[5,7],[-8,2],[-4,-6],[-4,-8],[-6,-4],[-18,0],[-6,4],[5,3],[2,4],[-1,5],[-3,6],[-3,1],[-9,-1],[-5,2],[-2,3],[-3,4],[-3,3],[-5,2],[-17,0],[3,7],[4,1],[5,0],[4,0],[17,10],[5,2],[23,0],[-7,5],[-6,1],[-15,-2],[-1,3],[1,5],[3,9],[5,4],[26,14],[4,4],[8,11],[1,3],[-2,2],[-12,-2],[-5,-3],[-10,-14],[-5,-3],[-4,0],[-3,2],[-3,0],[-3,-4],[-1,-4],[-1,-3],[-1,-4],[-3,-3],[-7,-4],[-37,-9],[-5,2],[1,11],[-4,2],[-9,2],[-4,4],[14,1],[6,3],[5,8],[-16,1],[-5,3],[3,6],[16,10],[-7,3],[-26,1],[-6,-2],[-5,-3],[-5,4],[-3,6],[0,3],[2,3],[10,18],[3,-7],[3,-1],[2,4],[3,19],[3,5],[14,9],[18,-1],[13,7],[34,1],[10,6],[8,0],[3,-14],[2,-21],[2,-15],[-6,-17],[12,6],[1,14],[-3,20],[2,21],[-2,9],[5,3],[14,1],[9,7],[2,1],[4,-4],[0,-5],[-3,-4],[-3,-4],[5,-4],[3,1],[4,4],[4,3],[4,-1],[8,-5],[5,-2],[-3,8],[-12,13],[17,14],[10,4],[9,-3],[11,-13],[4,-2],[3,2],[0,5],[-4,5],[-3,3],[8,-1],[16,3],[8,-2],[10,-6],[3,-1],[3,2],[4,8],[3,2],[50,1],[28,19],[14,4],[30,0],[3,1],[7,6],[3,1],[4,0],[20,-6],[7,-6],[3,-3],[9,-16],[8,-10],[3,-7],[2,-11],[0,-10],[-2,-10],[-4,-6],[-7,-2],[-6,6],[-5,8],[-5,4],[-3,0],[0,-4],[1,-7],[2,-9],[-14,-14],[-8,-6],[-6,2],[-4,8],[-8,11],[-8,7],[-5,-8],[1,-4],[3,-3],[4,-2],[3,-3],[2,-6],[1,-8],[1,-7],[-3,-4],[-3,-1],[-7,-5],[-4,-2],[-5,1],[-12,7],[-17,5],[-11,7],[-4,1],[-6,3],[-18,21],[-20,15],[-8,1],[-3,6],[-7,10],[-6,3],[-3,-15],[1,-9],[3,-2],[4,3],[3,0],[5,-3],[2,-3],[1,-5],[2,-5],[5,-9],[5,-6],[45,-32],[7,-2],[23,0],[20,-4],[6,-6],[6,-4],[42,7],[8,-2],[7,-17],[17,-5],[7,-5],[-4,0],[-12,-4],[25,-13],[6,-1],[3,-2],[1,-5],[-1,-7],[-2,-3],[-3,-2],[-4,0],[-10,7],[-2,-1],[-3,-3],[-3,-1],[-35,-6],[-6,4],[-4,1],[-1,-3],[-2,-5],[-3,-3],[-3,-2],[-26,0],[-7,4],[-3,6],[-6,19],[-3,3],[-11,2],[-6,-2],[-6,-8],[12,4],[6,-1],[2,-9],[-1,-3],[-1,-3],[0,-3],[6,-2],[3,-3],[1,-4],[-2,-4],[5,-5],[7,-1],[13,2],[-3,-6],[-4,-4],[-3,-4],[-2,-6],[6,0],[19,16],[6,2],[12,2],[6,-2],[5,-2],[1,-2],[2,-3],[2,-2],[3,-1],[7,2],[3,-1],[3,-5],[1,-6],[-1,-5],[0,-5],[0,-4],[3,-8],[2,2],[4,5],[4,5],[3,0],[3,0],[2,-3],[5,-8],[2,0],[3,1],[3,2],[12,-2],[6,-5],[0,-8],[-1,-4],[0,-4],[0,-4],[0,-2],[-2,-4],[-4,-4],[-1,-4],[5,-5],[22,5],[6,-4],[-2,-9],[-9,-15],[-1,-11],[3,-4],[5,-4],[6,-8],[1,-6],[1,-4],[1,-4],[3,-4],[5,-2],[8,1],[4,-4],[-4,-2],[-2,-5],[-1,-6],[-2,-7]],[[31143,17753],[7,7],[33,-2],[-5,7],[-22,8],[-7,5],[-6,14],[-4,6],[-1,-2],[-1,-8],[-2,-6],[-3,0],[-2,8],[-2,0],[-5,-17],[-8,-8],[-27,-5],[-8,2],[-7,6],[-6,14],[2,4],[3,3],[7,5],[-9,9],[-3,3],[-2,5],[-6,25],[-1,5],[1,3],[1,8],[2,4],[2,5],[1,4],[0,4],[-1,3],[-1,3],[-1,24],[-3,12],[-4,-1],[-7,-6],[-10,-3],[-11,0],[-8,2],[-4,9],[-3,13],[-1,14],[4,6],[25,-2],[8,2],[0,1],[1,2],[2,3],[1,1],[75,2],[38,-5],[22,-13],[7,2],[6,4],[8,3],[52,-1],[45,-4],[22,-12],[11,-11],[9,-16],[10,-21],[4,-9],[6,-7],[4,-9],[3,-13],[-1,-6],[1,-11],[0,-6],[-2,-7],[-5,-13],[-1,-7],[-2,-7],[-38,-60],[-13,-9],[-22,2],[-17,7],[-6,6],[-3,4],[-2,2],[-1,3],[-1,7],[2,8],[6,8],[2,7],[-6,20],[-16,6],[-18,-3],[-12,-7],[-3,-7],[-2,-7],[-4,-19],[-1,-6],[1,-2],[-1,-2],[-5,-2],[-3,0],[-10,4],[-7,1],[-18,-5],[-6,2],[-17,10]],[[30473,17849],[1,-8],[2,-2],[3,-2],[2,-6],[-12,-8],[-8,-1],[-3,7],[-2,9],[-6,8],[-6,4],[-5,1],[6,-16],[-5,0],[-6,3],[-4,-2],[1,-13],[5,-7],[12,-4],[4,-10],[-5,-4],[-11,-2],[-5,-2],[-4,-5],[-5,-12],[-4,-3],[2,15],[-2,10],[-5,6],[-7,1],[-3,-3],[7,-20],[-1,-9],[-6,-3],[-3,9],[-2,13],[-1,11],[2,11],[3,8],[5,5],[6,3],[0,4],[-10,5],[-4,4],[-4,18],[-4,6],[-4,1],[-3,-6],[2,0],[2,-2],[3,-6],[-3,-2],[-5,-1],[-3,0],[-1,2],[-2,1],[-1,0],[0,-2],[0,-5],[0,-1],[-6,-12],[-3,-4],[-6,0],[0,-8],[-5,2],[-5,7],[-3,7],[4,8],[3,10],[-2,9],[-7,1],[-3,-3],[-3,-4],[-2,-4],[-5,-1],[-1,-2],[0,-3],[-1,-2],[-2,-1],[-3,1],[-1,3],[0,3],[-1,1],[-2,1],[-2,4],[-3,3],[-4,0],[-3,-3],[-4,-7],[-4,-2],[-5,1],[-3,3],[-5,8],[-6,7],[-3,1],[-5,0],[0,4],[5,3],[0,5],[-2,6],[1,7],[6,4],[12,-3],[3,6],[-9,2],[-11,6],[-6,8],[7,9],[5,2],[12,-2],[6,0],[4,4],[3,4],[4,3],[4,-2],[-4,-14],[0,-5],[5,-2],[7,2],[3,-1],[4,-5],[0,14],[0,4],[0,5],[0,2],[2,1],[2,-2],[2,-3],[1,-1],[2,-1],[4,-6],[3,-1],[2,0],[3,-2],[2,-2],[2,-4],[4,5],[4,0],[9,-5],[23,0],[0,4],[-11,2],[-4,4],[2,6],[4,5],[12,4],[17,16],[27,1],[12,3],[10,-4],[0,-5],[-36,-18],[-14,-2],[-3,-5],[-1,-22],[-4,-5],[-15,6],[-6,0],[0,-10],[-18,2],[-8,3],[-8,7],[-3,-13],[1,-5],[3,-2],[5,-1],[13,-7],[24,0],[2,1],[5,6],[3,1],[6,0],[3,-1],[3,-3],[-2,-1],[-3,-3],[-2,0],[5,-6],[8,-4],[16,-3],[3,2],[6,9],[3,2],[15,1],[4,-1],[5,-11],[-5,-5],[-9,-3],[-4,-4],[2,-6],[9,1],[2,-3]],[[30582,17900],[-2,7],[-3,2],[-4,1],[-4,4],[0,12],[10,4],[20,-2],[0,4],[-18,10],[-5,7],[-1,9],[4,7],[6,3],[9,2],[3,3],[4,1],[3,-3],[5,-14],[6,-4],[1,-8],[1,-11],[1,-10],[3,6],[3,5],[4,0],[4,-5],[3,-2],[3,2],[1,4],[-1,5],[-9,10],[3,3],[3,0],[3,-1],[3,-2],[-4,8],[-2,3],[-3,1],[-8,1],[-4,2],[-2,5],[4,7],[9,2],[16,-1],[43,-16],[2,-3],[0,-6],[-4,-12],[-2,-7],[0,-3],[4,-2],[4,1],[2,3],[8,17],[5,5],[6,3],[8,0],[7,-4],[12,-10],[7,-3],[19,-2],[17,-13],[2,-1],[-12,-8],[-14,-1],[-27,9],[5,-9],[2,-5],[-2,-2],[-8,-2],[-17,-7],[-4,0],[-3,3],[-6,8],[-3,3],[-4,-1],[4,-11],[-3,-7],[-8,-2],[-6,0],[-12,4],[-3,0],[-3,-2],[-5,-8],[-2,-2],[-39,-7],[-5,3],[-6,8],[-5,-10],[-7,-3],[-16,0],[0,5],[3,3],[1,5],[1,5],[-1,7]],[[30438,17989],[3,-2],[3,-6],[1,-6],[-1,-2],[-15,-4],[-15,0],[-20,-11],[-21,-2],[-6,2],[-4,7],[1,4],[-1,2],[-6,2],[-1,-1],[-1,-4],[-1,-3],[-2,0],[0,1],[-4,7],[0,4],[10,8],[6,4],[4,-2],[5,-4],[5,4],[4,7],[5,3],[18,0],[33,-8]],[[30282,17940],[-2,1],[-2,3],[-2,1],[-3,0],[-2,-3],[-2,-7],[-1,-3],[-8,-4],[-15,9],[-10,0],[3,7],[5,5],[5,3],[4,0],[-4,8],[-4,2],[-17,-9],[-3,-1],[-3,1],[-1,3],[1,4],[-2,10],[1,4],[-1,2],[-4,1],[-10,-4],[-3,3],[-2,2],[-1,-3],[0,-6],[-2,-3],[-2,-2],[-3,1],[1,-11],[-1,-12],[-3,-10],[-4,-4],[-2,-1],[-1,-2],[-2,0],[-2,3],[-1,5],[1,2],[1,2],[1,3],[4,10],[1,6],[-5,1],[-9,-17],[-5,-8],[-3,2],[-1,15],[-3,7],[-4,5],[-5,8],[15,12],[-3,14],[3,4],[6,-1],[4,1],[3,2],[3,-2],[7,-6],[3,-1],[4,1],[26,-4],[3,6],[3,3],[5,-1],[2,-2],[2,-2],[1,-5],[0,-7],[6,0],[13,-12],[5,2],[4,5],[5,4],[6,2],[3,-1],[2,-8],[3,-4],[4,1],[4,3],[0,-8],[-2,-6],[-2,-4],[-1,-3],[2,-3],[9,-2],[4,-2],[-4,-5],[-5,-1],[-11,1]],[[30014,18074],[5,5],[3,-7],[0,-10],[-2,-8],[-3,-6],[-4,-3],[-5,-2],[-4,0],[-4,1],[-2,4],[-1,5],[2,6],[3,4],[1,3],[1,5],[-2,5],[-8,14],[-4,10],[-1,5],[-3,2],[-4,-3],[-1,-6],[1,-5],[-1,-3],[-4,1],[-2,2],[-3,7],[-1,8],[3,5],[6,3],[9,2],[3,-1],[2,-2],[2,-4],[6,-14],[4,-6],[3,-4],[3,-5],[2,-8]],[[29905,18294],[8,1],[3,-2],[1,-8],[-2,-11],[-6,3],[-8,6],[-7,-2],[3,-3],[2,-5],[2,-6],[-2,-2],[-8,0],[-2,1],[-2,3],[-1,3],[-1,1],[-6,-6],[-5,-25],[-5,-5],[-2,3],[-7,17],[-8,18],[-3,12],[12,-4],[-1,11],[15,-2],[6,3],[-2,11],[3,3],[2,1],[3,-1],[2,-3],[4,-2],[7,-8],[5,-2]],[[30448,18379],[7,-1],[13,3],[7,-2],[1,-2],[3,-8],[2,-3],[3,-1],[6,-1],[2,-1],[3,-12],[-4,-7],[-4,-5],[-2,-7],[-5,-2],[-19,3],[-6,3],[-6,6],[-14,5],[-7,3],[-6,7],[-5,9],[-4,10],[-3,11],[9,15],[10,-3],[19,-20]],[[29917,18443],[5,-6],[7,-6],[4,-7],[0,-9],[3,-1],[2,-2],[4,-5],[0,-4],[-8,1],[-3,-2],[-2,-7],[0,-7],[1,-8],[0,-7],[-4,-3],[-5,1],[-2,2],[-2,-2],[-1,-8],[1,-14],[-1,-8],[-5,-3],[-8,4],[-8,16],[-6,-4],[-3,-6],[-2,-5],[-3,-4],[-5,-1],[-4,1],[-4,1],[-8,6],[0,4],[2,3],[2,2],[2,8],[-9,7],[6,7],[14,12],[6,1],[14,1],[7,5],[4,11],[-9,1],[-4,-1],[-4,-4],[0,11],[9,4],[10,2],[7,3],[-13,4],[-6,0],[-1,0],[-5,4],[-2,3],[8,6],[7,9],[7,4],[5,-10]],[[29672,18447],[-1,-3],[0,-9],[-1,-4],[2,0],[4,-3],[2,-1],[-6,-12],[-7,2],[-8,7],[-6,-1],[1,-7],[-8,-1],[-9,3],[-3,5],[-2,6],[0,5],[0,11],[-2,6],[-4,1],[-4,-3],[-1,-4],[-4,-2],[-9,-1],[-10,2],[-6,3],[4,5],[9,4],[4,4],[6,11],[3,4],[6,1],[24,-3],[8,-8],[-1,-18],[5,1],[6,7],[6,3],[2,-11]],[[30102,18443],[-1,21],[-4,19],[-2,17],[7,17],[5,4],[9,4],[7,0],[4,-10],[1,-6],[1,-6],[3,-5],[2,-2],[4,2],[1,4],[0,5],[1,6],[2,5],[1,4],[1,2],[5,1],[2,-3],[1,-7],[0,-7],[-1,-6],[2,-2],[3,-12],[5,-24],[6,-11],[5,13],[1,22],[-6,16],[6,4],[11,-4],[10,-9],[5,-11],[2,-8],[1,-16],[2,-7],[1,-7],[-3,-6],[-3,-6],[-2,-7],[6,3],[4,-6],[4,-10],[2,-11],[-1,-7],[0,-4],[1,-5],[3,-6],[3,0],[0,5],[-2,7],[1,8],[7,31],[3,7],[4,0],[0,-11],[-2,-27],[1,-2],[3,-1],[4,2],[1,5],[0,24],[2,12],[5,7],[6,4],[6,0],[11,-13],[4,-5],[1,-4],[-1,-13],[-1,-15],[-9,-20],[-3,-12],[5,1],[3,5],[4,13],[4,3],[2,-5],[1,-9],[-2,-8],[2,-6],[0,-6],[-1,-6],[-4,-2],[-4,-1],[0,-2],[5,-5],[5,-9],[0,-4],[-5,-5],[-3,-3],[-4,-2],[-4,-2],[-4,1],[2,-4],[2,-4],[2,-6],[-1,-4],[-3,-5],[-2,1],[-2,4],[-3,2],[-5,2],[-11,9],[-5,1],[2,-7],[2,-4],[7,-7],[8,-2],[1,-2],[0,-4],[0,-5],[-1,-4],[-2,-2],[-1,-2],[-1,-4],[-1,-4],[-2,-2],[-10,0],[-1,3],[-5,15],[-2,13],[-2,-7],[-2,-12],[0,-4],[-4,-2],[-4,4],[-5,10],[-16,17],[-10,2],[-4,3],[-3,7],[3,7],[3,0],[4,-2],[4,-1],[2,2],[2,5],[2,3],[4,2],[2,-1],[5,-4],[2,1],[1,4],[-1,2],[-1,2],[-1,2],[1,6],[6,7],[2,5],[-3,6],[-2,2],[-2,0],[-2,-4],[-4,-10],[-1,-4],[-2,-1],[-2,-1],[-6,-7],[-4,4],[-2,8],[-2,7],[0,3],[1,3],[1,4],[-1,4],[-2,1],[-1,-1],[-1,-4],[-1,-4],[-3,-15],[-7,-1],[-9,8],[-6,11],[-3,17],[4,9],[9,4],[7,6],[-4,3],[-7,-2],[-2,5],[1,3],[1,4],[1,3],[1,0],[-2,8],[-1,2],[-1,-4],[-4,-11],[-8,-1],[-8,1],[-5,-3],[1,-6],[5,-5],[2,-7],[-2,-3],[-4,-2],[-2,-5],[3,-14],[-3,-3],[-7,-4],[-2,-5],[0,-23],[-9,9],[-5,7],[-1,8],[1,10],[4,6],[5,5],[3,7],[-11,-7],[-3,-1],[-2,-3],[-2,-17],[-2,-4],[-9,3],[-3,6],[-2,9],[-5,13],[-3,11],[3,10],[5,10],[5,7],[11,8],[3,4],[2,7],[-1,5],[-4,1],[-5,-1]],[[29995,18370],[-7,4],[-19,25],[5,3],[9,2],[5,3],[-5,4],[-6,1],[-12,-1],[3,10],[6,3],[14,-1],[-3,3],[-7,4],[-2,3],[-2,5],[-1,13],[-2,5],[-4,-1],[-5,-8],[-9,-18],[-5,-1],[-5,8],[-5,11],[-2,9],[7,31],[0,5],[-7,3],[-3,7],[-1,9],[-4,12],[0,9],[7,2],[29,-5],[3,-3],[2,-7],[1,-7],[2,-6],[2,-4],[4,-2],[4,0],[2,4],[0,5],[-3,5],[-4,7],[3,0],[3,-1],[3,-3],[2,-4],[1,6],[0,5],[0,5],[2,6],[3,4],[3,3],[2,6],[-2,9],[4,1],[3,-1],[7,-4],[-2,6],[-2,4],[-3,4],[-3,3],[14,7],[11,-5],[11,-15],[10,-20],[-3,-9],[-3,-13],[0,-10],[6,3],[0,3],[6,18],[3,18],[1,4],[3,0],[5,-6],[2,5],[4,1],[4,-1],[9,-8],[8,-3],[4,-5],[-17,-25],[-6,-6],[-12,-6],[-4,-6],[2,-4],[7,1],[12,11],[5,0],[2,-13],[-3,-14],[-5,-4],[-7,-2],[-6,-6],[3,0],[3,-1],[3,-1],[2,-2],[-2,-13],[-1,-4],[6,0],[8,6],[7,2],[3,-10],[-2,-8],[-15,-26],[-14,-10],[-12,9],[-17,37],[-11,17],[-5,11],[1,5],[1,3],[0,5],[-2,5],[-3,3],[-3,-2],[-1,-5],[0,-6],[0,-7],[1,-8],[1,-4],[2,-4],[1,-5],[4,-21],[1,-5],[6,-8],[16,-18],[4,-10],[3,-10],[4,-9],[11,-6],[4,-7],[0,-9],[-5,-10],[-3,3],[-13,2],[-5,3],[-1,-8],[-2,-5],[-3,-4],[-3,-3],[2,-3],[9,-5],[-6,-7],[-2,-1],[0,-4],[2,-2],[6,-6],[-5,-4],[-5,2],[-6,3],[-5,2],[-12,-1],[-6,1],[-5,5],[7,12],[7,30],[9,10],[-7,10],[-8,5],[-16,1]],[[30429,18720],[-2,-19],[-3,-13],[1,-15],[7,-42],[6,-24],[-3,-14],[4,-27],[-9,-9],[2,-11],[5,-9],[5,-4],[3,-5],[10,-25],[7,-17],[-2,-13],[-12,-13],[-15,-6],[-15,16],[-11,18],[-21,33],[-11,5],[-6,-7],[0,-10],[10,-20],[11,-18],[7,-19],[1,-8],[0,-6],[-2,-4],[-3,-3],[10,-12],[3,-8],[1,-14],[-1,-6],[-2,-4],[-1,-6],[0,-7],[1,-3],[3,-4],[3,-3],[3,-1],[-8,-4],[-15,4],[-25,16],[-38,44],[4,10],[-6,12],[-10,14],[-5,15],[-1,17],[-3,30],[0,10],[3,6],[6,0],[-8,18],[-2,10],[6,5],[6,3],[-7,10],[8,2],[9,2],[9,3],[4,4],[16,-11],[13,-4],[10,-14],[8,5],[1,21],[-8,9],[-19,16],[-2,24],[1,4],[1,2],[0,3],[-1,4],[-1,2],[-1,4],[-1,5],[0,3],[4,6],[10,3],[10,15],[5,4],[12,17],[5,17],[0,12],[3,9],[7,2],[7,-2],[5,-3],[2,-6],[2,-21]],[[29493,18803],[1,-5],[3,-2],[22,-10],[7,-5],[5,-9],[-4,-8],[-4,-2],[-11,2],[-7,-1],[-1,-4],[0,-6],[-1,-9],[-4,-5],[-7,-4],[-6,-1],[-2,4],[1,9],[3,5],[3,4],[2,8],[-14,-1],[-3,1],[-2,7],[3,3],[4,2],[3,0],[6,7],[-3,14],[-4,14],[1,6],[3,-1],[3,-3],[2,-5],[1,-5]],[[29613,18837],[-18,-13],[-9,-9],[-5,-14],[3,-2],[2,1],[1,3],[3,2],[2,-2],[4,-9],[3,-1],[2,-4],[12,-21],[-2,-6],[-4,-3],[-8,1],[-3,-2],[-5,-11],[-3,-3],[-7,2],[-4,9],[-2,13],[-4,12],[-3,-18],[-2,-3],[-5,1],[-4,10],[-2,2],[-14,4],[-3,4],[-8,15],[-5,6],[-16,10],[-4,2],[0,2],[-5,9],[-1,1],[0,7],[1,2],[5,-1],[4,-3],[21,-24],[3,-1],[7,1],[4,-1],[3,-2],[5,-6],[5,-5],[5,-1],[3,6],[-8,6],[-3,4],[-4,6],[5,4],[6,-1],[6,-2],[6,-1],[-3,7],[-14,11],[0,19],[1,4],[4,-1],[3,-3],[3,-7],[3,-2],[4,1],[5,6],[2,2],[16,0],[4,-1],[12,-8],[0,-4]],[[29853,18445],[-4,-14],[-9,3],[-9,11],[-7,11],[2,5],[1,7],[-1,6],[-3,2],[-2,-2],[-2,-5],[-1,-5],[-1,-4],[-6,-11],[-4,-4],[-3,-2],[-1,-1],[0,-3],[-1,-3],[0,-3],[1,-4],[-2,0],[-2,1],[-1,1],[-17,4],[-2,-3],[-6,-17],[-7,-4],[-16,7],[-8,1],[9,4],[3,5],[2,7],[-2,5],[-3,-2],[-4,-4],[-3,-3],[-1,2],[-3,5],[-1,1],[-1,0],[-4,-3],[-8,-3],[-3,0],[-4,2],[-5,11],[7,6],[19,4],[30,-6],[9,6],[-24,14],[-1,6],[7,4],[27,-8],[-3,8],[-10,7],[-4,5],[4,1],[3,2],[3,4],[3,5],[-18,10],[-3,3],[3,4],[16,12],[8,15],[3,5],[6,4],[12,5],[5,4],[4,7],[-26,-10],[-8,2],[7,7],[3,5],[2,9],[-6,-2],[-11,-10],[-6,-1],[7,17],[-1,7],[-4,1],[-4,-2],[-8,-12],[-15,-15],[-6,-4],[-6,3],[-4,6],[-2,4],[-12,-13],[-3,7],[-1,22],[-5,10],[-5,-3],[-3,-11],[-1,-15],[-1,-11],[-7,-21],[-1,-14],[3,-10],[13,-13],[3,-8],[-2,-7],[-5,-11],[-6,-9],[-4,-3],[-2,1],[-1,3],[-2,6],[-2,4],[-2,1],[-2,0],[-2,1],[-13,11],[-4,1],[-19,4],[-10,6],[-8,11],[4,2],[8,3],[3,3],[5,5],[1,4],[-1,4],[1,7],[3,3],[3,1],[1,2],[-3,6],[-6,4],[-3,-1],[-2,1],[-1,10],[-1,7],[-5,4],[-1,6],[2,6],[5,3],[4,1],[2,2],[3,10],[2,7],[-2,7],[-3,6],[-3,4],[-4,3],[-4,1],[0,5],[14,9],[4,6],[-5,9],[-3,0],[-8,-7],[-3,-1],[-14,1],[-47,-23],[-16,-2],[7,9],[13,11],[9,12],[-3,12],[0,9],[-8,1],[-11,-2],[-6,2],[-3,3],[-3,1],[-2,3],[-1,9],[0,8],[1,6],[1,4],[2,5],[6,9],[5,2],[19,-5],[4,0],[3,4],[4,7],[3,3],[3,1],[4,-1],[15,-8],[9,-6],[3,-9],[2,-9],[4,-9],[6,-7],[5,-5],[16,-7],[64,-2],[6,3],[2,10],[-4,8],[-5,-2],[-5,-6],[-4,-4],[-14,1],[-6,2],[0,7],[13,22],[2,9],[-3,-4],[-2,-3],[-3,-1],[-4,0],[-3,-2],[-2,-5],[-2,-10],[-5,-7],[-6,-4],[-6,-2],[-14,2],[-14,6],[-5,5],[-4,12],[1,10],[7,19],[-15,2],[-7,4],[-20,32],[-2,9],[0,4],[0,3],[2,1],[4,1],[3,1],[12,-4],[13,-9],[6,-6],[4,-10],[11,10],[15,-3],[25,-19],[-3,10],[-4,5],[-4,4],[-4,6],[-1,9],[1,11],[-1,9],[-4,3],[-6,2],[-1,6],[4,6],[6,2],[7,1],[7,3],[9,8],[5,1],[2,-3],[-1,-18],[-1,-2],[0,-3],[0,-3],[5,-14],[1,-4],[2,-14],[2,-3],[3,5],[1,12],[0,10],[-1,9],[-3,6],[-3,5],[0,4],[8,-2],[14,-15],[6,5],[0,-14],[-1,-12],[-3,-11],[-3,-10],[-1,-7],[2,-5],[1,-2],[1,2],[2,7],[3,3],[3,0],[4,-4],[3,-10],[-1,-10],[-3,-11],[-2,-18],[-4,-8],[-1,-6],[1,-5],[1,-5],[4,-8],[1,-11],[1,-5],[3,0],[3,6],[-1,7],[-2,13],[2,6],[2,4],[3,3],[1,3],[1,7],[5,14],[2,6],[0,15],[-2,9],[-4,8],[-3,15],[-4,9],[-1,7],[2,3],[4,-4],[6,-9],[4,-2],[4,0],[4,-3],[1,-9],[2,-4],[3,-3],[7,-4],[-3,-12],[-1,-4],[5,-6],[11,-18],[3,-8],[1,-8],[0,-6],[-1,-6],[-3,-7],[-2,-8],[2,-6],[3,-3],[2,1],[1,1],[7,-1],[3,2],[1,4],[-2,37],[-2,12],[-3,10],[-5,10],[0,4],[5,0],[27,-24],[3,-6],[4,-2],[9,9],[5,3],[5,-2],[5,-5],[2,-7],[-2,-9],[2,-3],[6,-4],[5,-7],[-1,-10],[-4,-3],[-11,1],[-5,-4],[-3,-8],[0,-8],[3,-6],[10,-5],[1,-5],[-5,-16],[4,-4],[3,4],[2,8],[3,4],[1,4],[4,9],[5,7],[2,-2],[5,-11],[32,-11],[-11,-18],[1,-3],[12,-2],[11,-6],[9,-11],[4,-1],[-5,-6],[-12,-4],[-5,-4],[-3,-9],[2,-9],[-2,-11],[-6,-4],[-7,3],[-6,6],[-9,13],[-5,5],[-6,0],[-6,-8],[11,-9],[-1,-11],[3,-19],[-2,-10],[-10,14],[-6,6],[-3,-2],[1,-12],[3,-8],[4,-6],[6,-4],[-3,-7],[-3,-2],[-4,0],[-4,-4],[10,-7],[17,-5],[1,-7],[0,-10],[-3,-9],[-4,-6],[-3,-1],[-3,1],[-4,2],[-2,4],[-3,1],[-7,-6],[-3,-1],[-5,3],[-2,7],[2,22],[-5,-3],[-4,-1],[-5,3],[-3,5],[-1,-7],[-2,-8],[-2,-9],[4,-4],[0,-9],[-3,-18]],[[29404,18939],[6,4],[8,4],[6,-1],[4,-12],[-2,-6],[-3,-2],[-4,-1],[-4,-3],[2,-13],[-5,-9],[-8,-5],[-7,-1],[-2,-1],[-3,-6],[-2,-1],[-2,0],[-4,3],[-2,1],[-4,6],[-1,2],[-1,5],[1,2],[1,0],[1,3],[3,8],[22,23]],[[29602,19162],[13,-19],[2,-8],[-1,-9],[-2,-9],[-4,-7],[-5,-3],[-4,1],[-6,2],[-5,5],[-4,6],[-1,8],[1,5],[3,3],[5,0],[0,4],[-3,2],[-6,5],[-3,2],[-13,0],[-3,-1],[-2,-1],[-2,0],[-3,4],[-3,2],[-3,0],[-7,0],[-8,-8],[-3,-1],[-12,1],[-4,-1],[-16,-11],[-6,-1],[3,9],[11,4],[5,8],[-2,6],[3,1],[5,1],[4,2],[3,5],[3,2],[3,0],[7,-2],[9,-6],[4,-1],[2,3],[-3,6],[-8,11],[6,6],[16,-19],[7,9],[6,-8],[8,-9],[8,-3],[5,4]],[[29664,18894],[8,-1],[11,-5],[10,-8],[4,-8],[-5,-8],[-23,6],[-7,-2],[-4,-4],[-5,2],[-8,7],[-3,7],[-2,2],[-1,-2],[-1,-3],[-2,-2],[-2,-2],[-8,6],[-8,11],[-8,13],[-5,12],[-4,-7],[-3,-8],[-3,-7],[-6,-3],[-23,1],[-6,3],[-5,5],[-2,6],[1,4],[7,1],[13,-5],[7,-1],[3,6],[-5,4],[-12,4],[-6,4],[-3,8],[-3,9],[0,8],[5,4],[-4,2],[-2,4],[-2,6],[0,8],[-3,-2],[-4,-8],[-2,-2],[-3,1],[-1,2],[-1,4],[-1,5],[-8,20],[-4,7],[-6,6],[1,-6],[3,-15],[-8,1],[-5,9],[-1,13],[-1,12],[-2,0],[-12,-3],[-4,3],[-7,18],[-6,12],[-1,0],[0,-4],[-2,-4],[-5,-5],[-3,0],[-5,1],[-27,13],[-6,-1],[3,-5],[9,-11],[-2,-2],[-2,-2],[-5,0],[-2,-1],[-2,-6],[-2,-1],[-5,0],[-2,2],[-2,4],[-3,3],[-2,-1],[-3,-3],[-3,-2],[-8,6],[-14,25],[-8,6],[4,-12],[1,-9],[-2,-6],[-7,-5],[-7,4],[0,-1],[0,-6],[-1,-2],[-4,1],[-3,1],[-3,3],[-1,6],[1,7],[1,6],[0,6],[-2,7],[-1,3],[-3,2],[-2,-1],[-2,-6],[-1,-3],[-5,2],[-4,4],[-3,4],[0,2],[1,4],[0,5],[-3,4],[1,5],[1,5],[0,11],[-5,-3],[-21,3],[-2,1],[-2,3],[-1,2],[1,8],[-1,2],[-2,0],[-1,0],[-14,5],[-5,6],[4,16],[-1,5],[-1,4],[0,1],[1,4],[1,4],[3,8],[-3,4],[-2,4],[-5,10],[-28,21],[-6,8],[-5,10],[2,4],[2,1],[2,1],[2,2],[1,1],[3,-1],[1,0],[0,2],[0,5],[0,1],[1,2],[1,2],[1,2],[2,0],[3,-2],[9,-14],[12,-14],[7,-6],[23,-11],[-1,-8],[-1,-4],[-2,-4],[4,-6],[11,-9],[3,-3],[2,-8],[4,-1],[10,3],[3,-4],[-3,-10],[-7,-15],[2,-4],[11,-16],[5,13],[4,1],[16,-20],[3,-1],[3,-1],[1,1],[2,5],[1,2],[1,0],[3,-3],[2,-1],[2,2],[2,4],[3,3],[3,-3],[6,-15],[1,-5],[2,-7],[7,4],[10,13],[-8,5],[-3,4],[-3,7],[12,-7],[4,-1],[13,-20],[1,11],[5,-2],[11,-13],[6,-3],[2,-1],[1,-5],[-1,-3],[-10,0],[3,-6],[1,-1],[2,-2],[-2,0],[4,-1],[13,-7],[-1,9],[0,6],[3,4],[5,1],[2,-3],[7,-17],[4,-4],[1,-2],[1,-4],[2,-4],[2,-2],[2,1],[2,3],[1,3],[0,1],[4,-1],[5,-3],[7,-8],[13,-21],[4,-3],[3,-3],[6,-14],[2,-4],[5,3],[-1,7],[-7,11],[-1,7],[-4,25],[5,0],[5,-1],[4,-4],[3,-7],[-1,-3],[-1,-5],[0,-5],[1,-5],[1,-1],[7,-1],[0,7],[1,-2],[4,-6],[1,-3],[2,-13],[-1,-9],[-2,-7],[-7,-12],[8,-12],[2,-4],[3,-11],[1,-6],[-1,-3],[4,-8],[3,-1],[1,7],[1,8],[2,5],[3,3],[4,2],[-2,6],[-2,6],[-3,5],[-3,3],[5,10],[-3,16],[4,7],[6,0],[7,-5],[4,-7],[-3,-9],[3,1],[4,0],[2,-3],[2,-6],[-4,-4],[14,-10],[5,-6],[6,-9],[1,-5],[-2,-2],[-11,-2],[-3,2],[2,-7],[1,-2],[-2,-8],[7,-1],[15,5],[6,-3],[20,-21],[-3,-3],[-1,-1],[0,-4]],[[29630,19264],[0,-5],[-11,-16],[-5,-5],[-3,5],[8,12],[2,3],[9,6]],[[29489,19259],[-5,0],[0,-1],[-2,-2],[-2,-5],[-2,0],[-2,4],[-2,0],[-1,-1],[-2,-3],[-1,-3],[-2,-1],[-6,1],[-3,2],[-2,5],[1,12],[3,7],[8,12],[13,26],[5,8],[-8,-7],[-23,-27],[-7,2],[0,12],[4,9],[23,31],[4,9],[-11,-6],[-23,-31],[-12,-26],[-24,-30],[-6,0],[-1,6],[3,6],[3,12],[-15,11],[-2,18],[1,18],[11,7],[13,2],[13,5],[9,15],[12,23],[9,10],[-1,7],[-11,2],[-13,-5],[-3,14],[4,13],[15,2],[10,1],[12,10],[11,-7],[10,-3],[9,-2],[4,12],[7,5],[6,-3],[6,-21],[8,-20],[0,-7],[-3,-9],[-2,-4],[-6,-3],[-2,-3],[-2,-5],[-3,-12],[-3,-2],[-8,0],[-2,-3],[2,-5],[3,-6],[3,-2],[6,-10],[-3,-20],[-7,-22],[-6,-13],[-3,-4],[-9,-5]],[[29257,19443],[-8,3],[0,21],[-3,4],[-9,1],[-3,-14],[-8,-1],[-8,10],[-2,17],[6,12],[-2,10],[-19,17],[-9,12],[-2,10],[1,9],[3,8],[6,2],[3,-4],[10,-14],[5,-12],[6,3],[9,11],[21,0],[3,2],[8,3],[7,1],[8,-6],[4,-13],[9,-6],[2,-16],[-1,-10],[-6,-15],[-2,-13],[-1,-17],[-6,-17],[-22,2]],[[29508,19450],[-5,-5],[-5,-3],[-6,-1],[-6,4],[-6,7],[-3,4],[-1,4],[2,3],[15,7],[0,4],[-4,1],[-2,4],[-2,4],[-1,3],[-13,6],[-4,5],[-5,9],[-2,3],[-7,7],[-6,4],[-4,3],[-5,10],[-9,22],[-11,10],[0,11],[4,11],[6,5],[4,-1],[3,-3],[2,-4],[3,-4],[1,-1],[4,2],[2,-1],[2,-3],[2,-7],[1,-2],[2,-2],[2,-4],[2,-4],[6,-4],[10,-11],[21,-11],[4,-7],[1,-3],[3,-5],[2,-5],[1,-7],[-1,-7],[-4,-12],[0,-8],[4,-6],[6,-4],[3,-5],[-6,-13]],[[29410,19439],[-6,6],[-6,7],[-6,5],[-3,8],[3,18],[-11,-2],[-2,2],[-3,4],[0,4],[2,3],[4,1],[2,1],[3,4],[2,4],[1,5],[-11,18],[8,13],[10,-4],[10,-9],[8,0],[-7,13],[-20,14],[-5,10],[5,0],[10,-4],[6,0],[-19,14],[-8,2],[-4,2],[-5,8],[-3,2],[-4,-2],[-7,-7],[-4,-3],[-6,1],[-8,5],[-7,8],[-1,8],[5,6],[15,17],[7,3],[3,1],[4,-1],[2,-2],[7,-8],[7,-4],[33,-43],[10,-18],[12,-14],[5,-8],[7,-16],[13,-18],[4,-11],[-1,-4],[-12,0],[4,-8],[-6,-2],[-8,2],[-6,1],[1,-9],[-6,-9],[-9,-10],[-9,-4]],[[29224,19568],[-3,5],[0,7],[2,18],[1,3],[2,2],[4,1],[2,0],[2,-3],[1,1],[1,2],[17,19],[14,6],[1,2],[2,7],[3,1],[2,-1],[2,-1],[1,-4],[-3,-8],[-13,-23],[-2,-7],[-1,-9],[-1,-8],[-4,-2],[-8,0],[-10,-10],[-6,-3],[-6,5]],[[29348,19637],[-3,-6],[-4,-3],[-5,1],[-3,4],[-1,3],[-1,4],[0,4],[0,5],[13,-8],[4,-4]],[[29307,19687],[0,-8],[-6,-8],[-31,-22],[-4,-6],[-2,-4],[-2,-3],[-3,-2],[-7,-3],[-8,-6],[-4,-1],[1,7],[3,14],[4,14],[4,6],[3,3],[9,11],[2,4],[4,3],[23,35],[2,-4],[5,-4],[3,-3],[2,-7],[1,-6],[0,-5],[1,-5]],[[29525,19564],[1,-3],[4,-6],[1,-4],[0,-5],[-2,-15],[-3,3],[-4,4],[-3,5],[-2,7],[-2,9],[-2,3],[-12,18],[-3,9],[-1,3],[-17,26],[-11,7],[-15,20],[-15,7],[-20,17],[-6,9],[2,-3],[2,-2],[2,1],[2,4],[2,-4],[3,-2],[3,-2],[3,-1],[-2,9],[-4,2],[-5,2],[-4,3],[-3,8],[0,6],[3,3],[6,-1],[-5,9],[0,8],[4,3],[6,-3],[-2,9],[3,2],[5,-4],[5,-5],[8,-15],[5,-5],[6,-2],[4,-4],[42,-55],[7,-13],[9,-26],[5,-20],[0,-1],[0,-10],[0,-5]],[[29236,19649],[-5,-15],[-4,-9],[-6,-3],[-10,-1],[1,-13],[-4,-11],[-6,-4],[-4,7],[-3,8],[2,12],[5,13],[4,8],[16,19],[5,9],[-9,0],[-3,0],[-1,0],[-1,-3],[-1,-1],[-2,2],[0,3],[-1,3],[0,3],[1,2],[3,5],[15,68],[8,22],[1,1],[3,-1],[2,-3],[0,-5],[-2,-7],[1,-5],[1,-3],[4,2],[12,-1],[3,1],[2,7],[10,7],[3,5],[2,0],[-3,-11],[-4,-14],[-5,-11],[-7,-8],[-7,-19],[-3,-6],[-4,-4],[-3,-5],[-2,-8],[4,1],[6,6],[5,1],[-1,-5],[-3,-6],[-3,-6],[-3,-3],[-3,-3],[-6,-21]],[[29149,19744],[-3,-5],[-4,-4],[-4,-1],[-4,3],[-1,10],[2,10],[3,10],[3,11],[-5,11],[4,18],[11,30],[4,5],[6,2],[6,-1],[4,-4],[4,-9],[-1,-7],[-4,-7],[-3,-9],[6,0],[-7,-40],[-3,-11],[-3,-4],[-7,-4],[-4,-4]],[[29323,19766],[4,6],[3,9],[0,7],[-9,6],[-4,6],[-1,7],[4,4],[0,4],[-6,6],[-7,18],[-4,5],[1,4],[25,-12],[11,-9],[1,-16],[4,0],[11,4],[-2,-3],[-1,-4],[-1,-3],[6,-4],[-1,-5],[-1,-6],[1,-5],[5,-5],[5,0],[11,3],[3,-2],[1,-3],[1,-4],[1,-3],[3,-1],[7,2],[2,-1],[3,-11],[-4,-6],[-7,-3],[-5,-1],[11,-6],[5,-2],[7,0],[10,7],[1,-2],[-2,-13],[-2,-7],[-7,-17],[-2,-4],[-6,-3],[-8,1],[-7,2],[-6,4],[-3,8],[-2,3],[-7,5],[-3,-1],[-3,1],[-1,6],[-1,3],[-2,1],[-3,2],[-10,1],[-4,4],[-1,9],[-2,3],[-12,11]],[[29503,19831],[3,-8],[2,-10],[0,-9],[-4,-5],[-2,3],[-2,3],[-2,1],[-3,1],[3,-10],[3,-7],[0,-5],[-7,-2],[-5,2],[-5,7],[-3,9],[-3,16],[-2,11],[-4,11],[-3,5],[-5,3],[-3,8],[0,10],[0,9],[2,4],[7,-4],[10,-10],[3,-3],[2,1],[1,0],[1,-6],[0,-5],[-2,-11],[0,-5],[4,-2],[9,2],[5,-4]],[[29197,19673],[-4,-2],[1,-7],[2,-8],[2,-7],[-18,-40],[-4,-4],[-3,3],[1,7],[7,26],[-12,-21],[-7,-7],[-2,11],[4,6],[5,6],[3,7],[1,10],[-5,-3],[-4,3],[-2,5],[-6,6],[-4,6],[-4,8],[-1,7],[2,8],[11,2],[2,8],[2,3],[9,7],[2,5],[-6,-1],[-5,-3],[-4,0],[-4,7],[8,21],[7,26],[7,16],[10,-13],[-3,-11],[5,-5],[8,-3],[6,-6],[2,7],[5,11],[2,7],[-6,-1],[-4,4],[0,7],[4,10],[-6,7],[-2,4],[-1,7],[1,5],[3,0],[4,-1],[3,2],[0,4],[-4,5],[-1,7],[1,9],[2,8],[-3,3],[-3,1],[-4,-1],[-3,1],[2,7],[0,3],[2,2],[0,4],[-10,10],[-1,12],[6,9],[11,2],[-2,-5],[2,-4],[2,-3],[5,-5],[5,8],[4,-1],[4,-6],[3,-9],[-2,-12],[3,-20],[-4,-9],[5,-5],[1,-9],[0,-9],[2,-9],[-2,-1],[-3,-2],[-3,-1],[2,-10],[-1,-7],[-1,-7],[-3,-16],[-6,-14],[-2,-9],[0,-20],[-1,-10],[-2,-5],[-4,-4],[-6,-19],[-3,-5]],[[29460,19828],[2,-2],[1,-4],[1,-4],[0,-5],[0,-6],[-1,-2],[-2,0],[-11,-10],[-10,-2],[-10,4],[-50,51],[-3,5],[2,10],[4,6],[7,-5],[3,7],[4,0],[4,-2],[5,3],[1,7],[0,9],[-2,8],[-2,7],[0,6],[7,1],[9,-2],[5,1],[-8,23],[-1,7],[2,9],[4,0],[5,-5],[4,-6],[2,-7],[2,-9],[1,-10],[1,-8],[1,-9],[3,-8],[6,-12],[1,-9],[-2,-7],[-3,-7],[0,-7],[2,-4],[2,0],[3,0],[2,-1],[8,-10],[1,-1]],[[29389,20014],[-7,3],[-4,7],[-1,9],[6,9],[-8,5],[-3,11],[-1,15],[0,16],[2,6],[5,-1],[6,-1],[3,0],[4,4],[4,2],[3,-2],[2,-8],[0,-5],[1,-6],[3,-11],[2,-7],[5,-13],[2,-5],[1,-13],[0,-16],[-3,-11],[-5,0],[-6,17],[-2,3],[-3,0],[-3,-6],[-3,-2]],[[29160,20071],[3,-3],[2,-4],[2,-4],[0,-8],[0,-7],[-1,-9],[-1,-9],[-3,-5],[-4,1],[-6,4],[-5,2],[-3,-5],[0,-10],[-2,-4],[-2,-3],[-3,-5],[-1,-5],[0,-3],[0,-4],[0,-2],[-2,-2],[-2,1],[-2,3],[-1,2],[0,8],[-2,7],[-2,5],[-3,2],[1,-14],[5,-31],[1,-18],[-2,-19],[-6,-5],[-7,5],[-7,9],[-2,-15],[3,-10],[1,-6],[-9,-1],[-4,-2],[-10,-12],[-3,-2],[-2,0],[-2,1],[-1,4],[0,6],[0,5],[0,5],[0,3],[-2,5],[0,3],[1,3],[2,17],[0,4],[2,1],[3,3],[3,3],[1,3],[3,4],[7,3],[3,4],[3,6],[0,5],[-1,4],[0,5],[2,32],[1,6],[3,8],[2,2],[1,1],[2,2],[0,3],[0,5],[-2,1],[-2,0],[-1,0],[-2,10],[-2,13],[0,13],[4,5],[6,5],[6,8],[6,6],[4,-3],[0,-10],[-4,-32],[-4,-14],[2,-2],[3,1],[2,2],[2,6],[2,15],[1,6],[0,3],[0,5],[1,3],[2,1],[3,-1],[2,-3],[1,-3],[2,-1],[0,-1],[3,-8],[1,-3],[3,-1],[5,1],[2,0]],[[29502,20114],[7,-14],[3,-10],[-1,-9],[-2,-9],[-1,-11],[-2,-10],[-5,-4],[-2,1],[-2,2],[-1,4],[-1,5],[-4,-4],[-3,-2],[-4,0],[-4,2],[-3,2],[-2,5],[-2,6],[1,7],[3,-3],[6,3],[6,5],[4,7],[-14,-6],[-7,0],[-6,6],[6,13],[10,14],[11,6],[9,-6]],[[29239,20048],[-15,-30],[3,-4],[-5,-3],[-9,-4],[-9,-2],[-12,-7],[-3,1],[-4,2],[-3,0],[-4,-5],[-4,-7],[-4,-3],[-4,0],[-4,4],[-2,7],[1,7],[4,7],[10,6],[27,26],[5,6],[3,8],[4,5],[4,4],[4,5],[2,8],[-36,-28],[-8,1],[-4,11],[1,9],[3,7],[5,8],[6,7],[14,5],[6,4],[1,13],[5,15],[7,11],[5,0],[4,-2],[4,3],[5,6],[4,3],[5,-1],[5,-4],[5,-1],[5,4],[11,-5],[13,-27],[2,-20],[-22,13],[1,-11],[12,-22],[1,-11],[3,-2],[3,-4],[2,-4],[1,-7],[-14,-20],[-8,-4],[-6,8],[0,3],[1,5],[0,5],[0,5],[-3,4],[-4,6],[-2,5],[-2,6],[-1,7],[-1,10],[0,9],[-3,-7],[-2,-8],[-3,-3],[-5,10],[-2,-6],[0,-6],[2,-5],[3,-5],[0,-4],[-1,-6],[-2,-7],[-1,-4]],[[29204,20195],[0,-4],[1,-5],[0,-4],[-1,-5],[-3,-4],[-4,-1],[-9,1],[-6,-2],[-17,-8],[-4,1],[-1,7],[2,8],[3,9],[2,5],[2,5],[3,4],[3,3],[7,2],[9,-1],[9,-4],[4,-7]],[[29327,20201],[8,-7],[2,-12],[-1,-16],[-4,-13],[-3,-5],[-3,-3],[-2,0],[-3,2],[-3,6],[-2,2],[-4,4],[-12,8],[-9,1],[-6,7],[-5,15],[-3,17],[-1,12],[28,35],[5,0],[4,-2],[4,-5],[1,-7],[-2,-10],[-3,-4],[-4,2],[-2,10],[-5,-7],[-3,-11],[1,-10],[4,-5],[2,-1],[7,-3],[5,-5],[3,1],[3,3],[3,1]],[[29375,20128],[-4,-4],[-4,-1],[-2,4],[0,13],[0,10],[-1,10],[-8,42],[-4,46],[-1,10],[1,12],[2,12],[1,6],[-1,6],[-2,4],[-2,3],[-2,3],[-2,7],[8,2],[6,-10],[4,-17],[1,-18],[2,-15],[10,-27],[4,-37],[8,-26],[-1,-15],[-2,-5],[-11,-15]],[[29337,20278],[2,-13],[0,-15],[-3,-6],[-5,10],[1,-9],[2,-16],[1,-10],[-1,-4],[-4,5],[-3,10],[-3,18],[-3,10],[-5,8],[-4,4],[-4,-2],[-13,-14],[-11,-6],[-11,-2],[-5,-3],[-1,-7],[2,-10],[1,-11],[-23,-10],[-4,0],[-4,2],[-3,5],[-2,9],[4,2],[1,5],[-1,7],[-2,7],[5,4],[6,1],[5,4],[3,11],[-18,-1],[-4,3],[-4,7],[0,-6],[0,-11],[-2,-10],[-5,-16],[-3,-5],[-6,-2],[0,1],[-9,7],[-5,2],[-2,2],[-1,5],[15,44],[-4,2],[-1,0],[-2,-2],[-4,5],[-3,3],[-3,1],[-4,-1],[-2,-4],[-3,-6],[-3,-3],[-5,5],[-1,6],[0,8],[1,9],[2,6],[3,3],[4,1],[8,-1],[-8,15],[0,4],[7,2],[7,-1],[51,-19],[10,-9],[2,6],[2,3],[3,-1],[2,-3],[8,18],[4,6],[-16,0],[-4,6],[4,16],[6,6],[14,3],[3,9],[-9,-3],[-4,6],[-3,11],[-5,10],[-12,18],[-1,6],[6,5],[30,-14],[3,-7],[15,-11],[3,-11],[3,-14],[6,-3],[7,0],[5,-9],[1,-15],[-2,-12],[-9,-21],[5,-5],[4,-10],[5,-18]],[[29192,20387],[-11,10],[-4,6],[4,4],[-3,21],[9,1],[22,-13],[-2,10],[-11,9],[-4,9],[2,15],[6,-4],[13,-15],[3,7],[-2,10],[0,8],[7,-1],[17,-24],[-3,-8],[0,-7],[0,-7],[-1,-6],[3,-9],[6,-12],[3,-8],[-18,0],[5,-8],[5,-4],[4,-6],[2,-12],[1,-4],[2,4],[2,7],[0,3],[8,16],[4,-8],[-5,-28],[-4,-11],[-6,3],[-19,2],[-18,6],[-4,3],[-6,7],[-3,2],[-4,0],[-4,-1],[-3,1],[-2,8],[4,4],[19,4],[-6,4],[-7,1],[-6,3],[-4,8],[9,0]],[[29172,20386],[0,-1],[-1,-2],[-5,-5],[-1,-1],[-1,0],[-2,1],[-6,4],[-8,8],[-2,1],[-3,4],[-4,17],[-1,6],[-3,7],[0,7],[2,5],[4,3],[3,-2],[4,-5],[3,-1],[3,8],[-5,9],[-5,13],[0,9],[8,1],[2,-1],[2,-2],[3,-6],[2,-3],[1,1],[1,2],[1,1],[2,3],[3,4],[1,-1],[1,-12],[0,-7],[-3,-13],[-1,-8],[0,-20],[0,-14],[0,-6],[3,-3],[1,0],[1,-1]],[[29275,20554],[7,-9],[-5,-20],[-11,-13],[-9,5],[1,12],[-4,15],[1,10],[4,7],[5,-1],[6,-4],[5,-2]],[[29131,20566],[6,-1],[2,-1],[0,-3],[-4,-12],[-2,-6],[-3,-5],[-2,-4],[-5,-1],[-3,0],[-2,-2],[-2,-10],[-2,4],[-2,3],[-3,1],[-2,0],[3,-14],[0,-7],[-3,-3],[-9,0],[-6,5],[-9,19],[-6,5],[-7,-7],[21,-36],[-5,-14],[-2,4],[-2,-4],[6,-5],[3,-3],[2,-5],[-3,-5],[-2,-3],[0,-3],[-1,-5],[1,-3],[1,-6],[-1,-4],[-6,1],[0,-4],[4,-4],[3,-7],[1,-9],[-1,-9],[-3,-7],[-5,-5],[-5,1],[-3,7],[0,4],[1,7],[0,4],[-1,6],[-3,-3],[-3,-7],[0,-3],[-8,-5],[-7,0],[-14,5],[1,5],[2,4],[2,2],[3,2],[-4,10],[-2,7],[1,3],[4,1],[4,2],[3,5],[1,6],[0,6],[0,1],[-21,-2],[-4,2],[-3,4],[-1,5],[0,5],[3,2],[4,-1],[3,1],[2,5],[0,9],[4,9],[8,1],[15,-4],[-1,3],[-1,6],[0,3],[6,0],[-5,11],[-4,12],[-5,8],[-7,2],[0,2],[1,7],[1,3],[-4,0],[-3,2],[-3,4],[-2,6],[2,2],[3,1],[5,1],[3,2],[2,12],[3,2],[6,-2],[3,-6],[3,-7],[2,-9],[4,8],[1,8],[1,5],[6,-1],[3,-4],[3,-12],[3,-4],[3,1],[2,2],[1,3],[0,2],[2,-2],[2,-2],[1,-3],[1,-1],[1,-1],[1,-1],[1,-2],[3,0],[2,1],[1,3],[1,2],[1,2],[9,1],[10,-1]],[[29358,20365],[-3,-7],[-8,2],[-7,9],[-3,12],[-3,9],[-6,9],[-2,9],[7,8],[-9,3],[-14,1],[-9,6],[3,18],[-9,5],[-2,1],[-1,5],[-6,16],[-3,13],[3,8],[11,9],[1,3],[1,6],[1,5],[2,2],[13,4],[1,3],[-2,13],[0,5],[2,3],[4,1],[4,1],[3,-1],[-3,5],[-3,3],[-4,0],[-3,-4],[-5,5],[-4,2],[-17,2],[-5,3],[-4,6],[-3,10],[-4,-3],[-6,-1],[-5,0],[-4,4],[6,5],[12,16],[4,4],[7,2],[5,3],[4,0],[6,-9],[2,-6],[1,-6],[2,-5],[2,-4],[4,-1],[12,1],[6,4],[4,6],[4,1],[5,-11],[2,-10],[3,-12],[4,-39],[4,-9],[9,-11],[4,-8],[9,-31],[-3,-2],[-27,8],[-11,9],[-6,3],[-5,-4],[6,-6],[17,-5],[9,-10],[3,-2],[3,-3],[1,-8],[2,-6],[3,0],[7,4],[5,-4],[6,-11],[4,-14],[2,-11],[0,-16],[-2,-14],[-3,-9],[-11,4],[-1,21],[-4,9],[-4,2],[-2,-2],[-2,-2],[-8,-4],[-1,-6],[2,-14]],[[29227,20574],[1,12],[3,10],[9,19],[-3,2],[-5,6],[8,16],[11,5],[24,-1],[3,-1],[5,-6],[3,-1],[6,0],[1,-2],[0,-6],[-3,-7],[-7,-4],[-13,-1],[0,-4],[1,-6],[-1,-6],[-4,-6],[-4,-3],[-5,0],[-3,-2],[-10,-19],[-3,-2],[-4,-1],[-9,1],[-2,2],[1,5]],[[29155,20688],[-5,-5],[-5,-10],[-5,-6],[-7,4],[1,-4],[1,-5],[-1,-5],[-2,-2],[-3,-1],[-2,-4],[0,-3],[-1,-4],[-7,-8],[-3,-2],[-1,-3],[-1,-5],[-1,-4],[-3,-8],[-2,-7],[-4,-6],[-6,-1],[-17,4],[-4,3],[-1,5],[0,5],[1,6],[1,5],[12,11],[0,1],[6,5],[6,12],[10,24],[-5,-1],[-8,-6],[-8,-8],[-7,-11],[-3,-1],[-2,3],[2,6],[5,6],[1,4],[-1,4],[-4,2],[-2,-3],[-2,-6],[-2,-5],[-3,-3],[-3,1],[-3,1],[-3,1],[-6,-5],[-6,-10],[-6,-8],[-6,2],[-2,9],[5,43],[2,5],[3,3],[7,3],[-1,5],[-5,9],[1,7],[1,4],[1,2],[1,3],[3,21],[2,6],[6,9],[6,1],[14,-8],[8,0],[2,-2],[1,-5],[-1,-4],[-2,-4],[-2,-1],[-12,-2],[-6,-2],[-4,-5],[6,-11],[4,-4],[3,1],[4,4],[2,-5],[2,-8],[2,-5],[4,-1],[4,2],[4,1],[5,-4],[3,-3],[6,0],[9,5],[-3,16],[3,14],[5,16],[2,19],[-12,-14],[-7,-1],[-7,5],[-4,4],[-5,12],[-3,3],[-9,-2],[-4,1],[-5,7],[-5,10],[-5,8],[-7,4],[-1,2],[-3,15],[-1,5],[2,4],[3,-1],[5,-1],[3,0],[3,4],[4,13],[1,3],[3,1],[5,-2],[3,-3],[0,-6],[-2,-6],[2,-7],[1,-6],[1,-5],[2,-5],[3,4],[8,17],[1,2],[0,-1],[7,-3],[9,7],[4,1],[8,-5],[1,-11],[-2,-12],[-1,-8],[4,-6],[3,3],[3,5],[4,2],[1,-4],[7,-24],[1,-1],[2,0],[3,2],[0,4],[0,4],[1,2],[4,3],[4,1],[4,3],[1,8],[2,4],[3,0],[3,-4],[2,-9],[-1,-9],[-3,-4],[-8,-5],[-22,-32],[0,-4],[5,0],[4,1],[12,10],[4,1],[9,0],[1,-1],[3,-3],[1,0],[2,1],[1,6],[0,1],[5,4],[2,0],[4,-2],[3,-2],[2,2],[4,10],[-1,2],[-1,3],[0,3],[-1,4],[12,0],[4,-4],[2,-12],[0,-15],[-6,-15],[1,-11],[-6,-3],[-31,0],[-2,-3],[-1,-5],[1,-8],[0,-6],[-8,-6],[-11,-11],[-6,-2]],[[29042,20992],[-8,-4],[-4,-3],[-4,-5],[-4,-3],[-6,-4],[0,-10],[-1,-7],[-8,-7],[-12,-10],[-5,22],[4,11],[-4,16],[2,15],[11,7],[9,6],[8,-3],[4,13],[-2,8],[-6,0],[-6,-2],[-7,12],[1,13],[1,14],[-9,3],[11,14],[3,8],[4,6],[5,2],[5,-1],[4,3],[0,5],[-3,6],[1,4],[3,0],[3,-4],[3,-5],[4,1],[3,-5],[4,-2],[6,-1],[5,-4],[3,-7],[8,-4],[2,-15],[5,-10],[5,-12],[1,-5],[2,-11],[1,-4],[1,-2],[3,-1],[2,-2],[2,-8],[0,-2],[1,-3],[0,-5],[3,-9],[12,-19],[2,-12],[7,-42],[-1,-13],[-3,8],[-4,4],[-4,3],[-4,5],[-3,9],[-2,8],[-3,5],[-6,3],[3,-7],[2,-9],[1,-10],[0,-9],[-2,-6],[-4,2],[-5,6],[-2,5],[-8,10],[-8,18],[-2,18],[8,10],[-5,37],[-2,0],[-3,-17],[-13,-6],[-5,-10]],[[29022,21227],[4,-5],[4,-10],[6,0],[2,-9],[-1,-9],[-1,-9],[3,-5],[4,5],[2,-5],[2,-5],[-1,-8],[0,-6],[1,-7],[-3,-9],[-3,-1],[-1,5],[-3,7],[-7,2],[-2,6],[-4,4],[-5,8],[-4,7],[2,7],[5,1],[5,1],[0,10],[-4,4],[-5,-4],[-4,6],[2,12],[6,7]],[[29193,21406],[4,-11],[-1,-25],[-6,-41],[0,-27],[-2,-12],[-4,-5],[-3,2],[-4,4],[-14,19],[-13,25],[-6,14],[2,3],[1,1],[2,0],[1,0],[-9,4],[-31,-8],[0,4],[10,12],[10,5],[3,3],[-10,2],[-13,-7],[-9,-3],[2,17],[2,6],[17,33],[6,3],[11,-2],[-3,3],[-2,4],[-1,4],[-2,5],[4,-1],[5,-4],[4,-4],[8,-10],[10,-10],[4,-5],[3,2],[2,27],[3,-1],[15,-23],[4,-3]],[[29011,21305],[-2,1],[-6,2],[-13,8],[-5,5],[-2,8],[3,1],[3,0],[3,-2],[2,-3],[-3,17],[7,20],[10,16],[11,8],[-6,-21],[5,4],[8,4],[2,4],[-2,-2],[-1,0],[-4,2],[11,15],[6,5],[4,-3],[2,7],[5,8],[2,5],[-5,1],[-3,3],[1,6],[4,10],[5,13],[4,5],[12,8],[4,-3],[1,-12],[-2,-8],[-7,-10],[-2,-9],[7,5],[3,1],[3,-2],[3,-4],[3,-5],[5,-13],[-2,-12],[-6,-16],[-7,-8],[-2,13],[-12,-32],[-4,-4],[-4,3],[-1,8],[3,10],[3,11],[-4,-2],[-2,-6],[-1,-8],[-2,-8],[-2,-2],[-4,0],[-2,-2],[-2,-16],[-1,-2],[-1,0],[-1,-2],[-1,-4],[0,-3],[1,-2],[1,-3],[0,-4],[-2,-8],[-3,-6],[-4,-3],[-4,1],[-3,2],[-4,7],[-3,3]],[[29107,21443],[2,-12],[-2,-11],[-4,-8],[-6,-4],[-7,6],[-5,14],[-6,44],[0,4],[-1,3],[-4,0],[-5,-7],[-4,-1],[-2,8],[-1,-6],[-1,-3],[-2,-1],[-2,-2],[-2,-1],[-3,1],[-2,-2],[-1,-3],[-1,-6],[0,-1],[-11,-25],[-4,-4],[-5,2],[-6,5],[-4,7],[2,9],[5,7],[4,5],[4,7],[3,11],[-5,1],[-5,-7],[-5,-8],[-6,-6],[-7,-2],[-8,1],[-7,5],[-6,8],[-3,9],[-1,11],[1,13],[3,12],[3,11],[6,8],[5,0],[3,-11],[2,10],[3,5],[3,-1],[5,-6],[-1,18],[5,-1],[8,-7],[7,2],[-3,-8],[-11,-24],[-2,-6],[4,-1],[7,7],[6,8],[3,6],[3,7],[5,11],[6,9],[3,-1],[-1,-5],[-2,-7],[-3,-5],[-3,-3],[0,-3],[0,-6],[1,-3],[4,4],[2,-9],[2,-9],[4,-5],[6,-2],[-7,23],[-1,8],[2,9],[5,1],[9,-4],[6,-5],[6,-11],[5,-14],[2,-19],[6,-28],[0,-6],[1,-2],[1,-3],[3,-4],[2,-1]],[[29137,21469],[-8,-1],[-8,-9],[-9,-5],[-8,10],[-3,13],[-3,19],[-1,18],[4,14],[-5,1],[-4,4],[-4,5],[-2,6],[-4,16],[-1,9],[0,4],[9,-2],[18,-8],[25,-23],[8,-12],[3,-14],[-1,-6],[-2,-6],[-3,-5],[-2,-2],[-5,4],[-2,1],[-1,-3],[0,-4],[2,-3],[3,-2],[2,-1],[10,6],[3,-11],[-2,-13],[-9,0]],[[29111,20994],[-2,7],[-1,4],[1,22],[0,5],[-2,5],[-4,4],[-7,3],[-3,5],[1,3],[2,10],[1,3],[-9,7],[-3,1],[-1,3],[0,7],[0,7],[3,4],[5,2],[4,7],[5,19],[-5,-4],[-8,-1],[-6,2],[-4,7],[2,7],[12,16],[3,10],[-4,-4],[-14,-7],[-4,0],[-4,9],[1,6],[3,5],[3,11],[-7,0],[-3,-1],[-3,-3],[-1,6],[1,4],[4,10],[-7,-1],[-7,4],[-4,10],[-3,15],[-2,9],[-4,12],[-1,4],[-1,3],[-1,3],[-1,6],[2,10],[4,9],[6,7],[5,2],[7,-3],[4,-9],[3,-11],[7,-19],[12,-41],[23,-38],[11,-13],[-2,10],[-5,11],[-3,9],[4,7],[-9,8],[-11,14],[-8,19],[-1,18],[-4,6],[-4,8],[-1,10],[2,10],[-1,11],[4,5],[8,0],[5,-5],[21,-49],[2,-8],[2,-4],[5,-7],[5,-1],[12,6],[-5,4],[-10,3],[-4,5],[-2,7],[-6,25],[0,4],[8,-3],[13,-15],[4,6],[-1,6],[-3,8],[0,7],[5,4],[8,-1],[4,1],[4,4],[-5,6],[-5,9],[-4,11],[-1,10],[7,-6],[18,-34],[13,-17],[7,-11],[2,-11],[1,-7],[1,-9],[2,-5],[4,3],[2,30],[0,34],[4,13],[7,-4],[-6,9],[-2,5],[-1,8],[1,7],[2,4],[3,3],[3,0],[0,4],[-3,6],[0,6],[3,7],[2,5],[-2,3],[-1,3],[-2,7],[3,2],[4,1],[8,1],[-42,57],[5,5],[22,13],[3,-2],[8,-16],[0,19],[-2,15],[-4,6],[-7,-4],[-14,-16],[-7,-7],[-8,-1],[1,6],[1,2],[-7,3],[1,9],[8,20],[-9,-1],[-5,2],[-3,4],[-1,6],[1,5],[4,3],[4,2],[4,2],[8,8],[17,11],[3,3],[-12,-1],[-14,-10],[-13,-7],[-11,10],[-3,12],[1,12],[4,9],[5,4],[8,-7],[6,-3],[4,-3],[3,-4],[3,-4],[-1,5],[-1,2],[-1,1],[-2,3],[-4,13],[0,2],[0,2],[-7,1],[-2,1],[-1,3],[7,9],[29,23],[3,5],[5,9],[6,4],[2,-8],[4,-20],[3,-6],[1,4],[-1,9],[0,7],[1,9],[3,6],[3,4],[4,2],[17,-1],[4,-3],[4,-7],[2,-8],[-1,-7],[-5,-3],[4,-2],[9,7],[3,-3],[1,-6],[-2,-7],[-2,-7],[-2,-8],[1,-7],[3,-15],[0,-4],[-2,-8],[-7,-9],[-2,-8],[4,0],[5,1],[4,3],[2,4],[1,6],[0,11],[-1,11],[-1,7],[0,12],[5,17],[8,13],[7,4],[5,-10],[1,-17],[-2,-35],[0,-33],[-2,-9],[-4,-5],[-3,-6],[1,-11],[8,8],[7,0],[4,-8],[4,-16],[0,-17],[-3,-13],[-6,-10],[-6,-9],[6,-6],[4,-11],[2,-13],[7,-24],[-3,-17],[1,-14],[1,-5],[3,-6],[2,-5],[1,-8],[-1,-6],[0,-5],[0,-7],[0,-35],[0,-12],[-5,-34],[-2,-26],[-1,-11],[-3,-10],[-2,-8],[-3,-6],[-7,-10],[-2,-5],[-1,-6],[2,-3],[2,-3],[2,-12],[4,-9],[0,-5],[0,-9],[-1,-3],[-6,-9],[-5,-5],[-2,-3],[-1,-4],[1,-12],[-1,-6],[-3,-6],[-5,-6],[-5,-9],[0,-11],[3,-7],[5,5],[4,10],[7,18],[1,16],[2,8],[5,5],[7,-2],[6,-5],[5,-6],[4,-9],[2,-9],[0,-10],[0,-27],[-1,-6],[-3,-1],[-6,0],[-3,1],[-4,5],[-3,1],[-4,0],[-2,-2],[-6,-5],[7,-6],[16,-9],[5,-10],[1,-12],[-1,-19],[-2,-17],[-3,-9],[-2,14],[-1,6],[-3,5],[0,-12],[-4,-4],[-5,3],[-4,5],[-1,-8],[3,-8],[4,-7],[4,-2],[4,-5],[1,-11],[-2,-11],[-3,-5],[-5,-2],[-4,-2],[-3,-1],[-6,5],[-12,20],[-5,4],[18,-36],[3,-13],[-7,-6],[-18,-22],[-4,-3],[-5,-2],[-6,0],[-4,5],[-1,8],[1,6],[4,6],[2,8],[-4,-2],[-11,-11],[-2,-5],[-2,-9],[-3,-6],[-4,-2],[-4,3],[-6,6],[-4,9],[0,11],[4,11],[-5,-2],[-3,-5],[-2,-8],[2,-10],[-10,7],[3,15],[10,16],[23,25],[5,2],[4,-3],[8,-12],[5,-5],[-6,14],[-7,12],[-8,6],[-10,-4],[-19,-22],[-12,-10],[-5,5],[0,3],[-3,7],[-1,5],[0,5],[2,8],[2,16],[3,5],[4,2],[5,0],[5,-2],[5,-4],[5,-2],[4,2],[5,6],[8,7],[4,6],[-18,-5],[-8,0],[-5,9],[1,6],[3,8],[3,7],[2,3],[3,3],[4,5],[3,6],[-1,3],[-9,1],[-3,-1],[-8,-16],[-3,-4],[-2,-1],[-2,0],[-2,0],[-1,3],[-2,22],[0,6],[2,5],[5,0],[0,4],[-5,5],[-5,9],[-5,10],[-1,9],[4,4],[6,-3],[6,-6],[5,-4],[0,5],[-10,15],[-4,9],[1,8],[0,10],[7,0],[23,-16],[4,-2],[3,2],[3,4],[4,1],[4,0],[3,-3],[-2,8],[-5,0],[-4,-1],[-5,3],[-1,6],[3,13],[1,8],[-4,-5],[-2,-5],[-3,-5],[-5,-1],[-6,0],[-5,3],[-5,5],[-4,8],[-2,7],[-1,9],[1,9],[5,3],[1,3],[16,16],[4,9],[3,2],[9,-22],[2,-2],[0,5],[0,12],[-1,9],[-2,5],[0,5],[5,7],[5,3],[11,1],[5,4],[-6,3],[-5,0],[-5,-2],[-5,-1],[5,13],[15,21],[5,15],[-7,-4],[-16,-21],[-3,-2],[-2,-2],[-8,0],[-3,2],[-4,8],[-3,2],[2,-8],[4,-8],[5,-5],[5,-3],[1,-3],[-4,-8],[-8,-11],[-7,-12],[-9,-13],[-8,-3],[-2,18],[-4,-9],[-3,-14],[-3,-12],[-6,-6],[-6,6],[1,28],[-5,7],[-2,-4],[-1,-7],[1,-7],[-2,-3],[-3,-1],[-1,-5],[-1,-6],[1,-8],[2,-22],[-3,-6],[-9,0],[2,-5],[6,-8],[2,-4],[1,-7],[-1,-5],[-1,-6],[-1,-8],[1,-8],[4,7],[4,13],[5,6],[3,-5],[-1,-13],[-4,-14],[-3,-8],[-8,-16],[-3,-9],[2,-12],[3,10],[3,4],[4,-1],[3,-9],[1,-3],[1,-4],[0,-4],[0,-7],[-9,-14],[-6,-2],[-5,-4],[-3,-4],[5,-2],[4,-5],[1,-11],[0,-25],[-4,2],[-8,2],[-3,2],[-5,12],[-3,2],[-5,0],[-7,4],[-4,9],[-7,24],[-7,18]],[[29143,21666],[3,0],[3,-4],[1,-6],[0,-10],[0,-17],[-6,-29],[-1,-13],[-1,-7],[-3,-8],[-3,-8],[-3,-5],[-3,-1],[-5,0],[-18,10],[-5,5],[-4,6],[-1,10],[6,9],[7,5],[6,2],[0,4],[0,9],[12,16],[3,14],[9,15],[3,3]],[[29160,21635],[1,5],[4,0],[8,-2],[-4,4],[-4,6],[-1,7],[0,11],[11,-9],[6,-2],[14,8],[7,-2],[13,-8],[0,-3],[-8,-7],[-21,-26],[-16,-12],[-10,-3],[-6,7],[1,9],[4,11],[1,6]],[[29072,21674],[3,-2],[1,-4],[-1,-4],[-2,-2],[-1,-1],[-1,-3],[-1,-3],[1,-3],[1,-1],[3,2],[2,0],[4,1],[1,0],[2,-4],[2,-8],[1,-10],[-1,-11],[-2,-8],[-5,-4],[-3,-1],[-3,-1],[-2,0],[-4,4],[-1,2],[-4,0],[-1,2],[0,4],[2,8],[0,3],[2,0],[-5,1],[-4,-6],[-7,-16],[-2,-2],[-5,-4],[-2,-2],[-2,-3],[-3,-7],[-1,-2],[-5,-5],[-4,-2],[-12,-1],[-11,-7],[-6,-1],[-5,4],[-5,5],[-1,11],[0,26],[3,9],[8,-1],[15,-10],[14,1],[13,11],[32,43],[2,2]],[[29075,21716],[2,-5],[1,-8],[0,-9],[-1,-6],[-5,-9],[-46,-47],[-10,-4],[-4,0],[-5,1],[-4,3],[-4,5],[-1,5],[-1,6],[1,4],[3,1],[19,-3],[8,2],[7,8],[6,10],[3,12],[-7,-2],[-13,-11],[-9,-3],[4,5],[9,8],[3,7],[-14,-2],[-4,-2],[-9,-14],[-4,-2],[-8,3],[-5,8],[-8,21],[5,10],[1,11],[-2,26],[1,11],[4,2],[4,0],[4,9],[0,5],[-2,4],[-1,3],[5,4],[3,0],[4,-3],[5,-3],[1,-4],[3,-10],[7,1],[7,6],[4,5],[9,14],[4,1],[2,-18],[2,0],[2,3],[1,10],[1,4],[2,2],[2,1],[3,-2],[0,-4],[-1,-6],[2,-7],[0,-2],[1,0],[3,4],[0,3],[3,7],[3,5],[1,-5],[0,-13],[-4,-37],[0,-3],[-3,-9],[3,0],[3,-1],[2,-2],[2,-4]],[[29313,21773],[-9,17],[-2,12],[10,1],[19,-7],[26,-28],[2,-1],[1,-2],[0,-6],[-1,-5],[-2,-3],[-8,-4],[-16,-15],[-8,0],[-3,5],[-6,22],[-1,5],[0,3],[0,3],[-2,3]],[[29419,21759],[-6,4],[-19,18],[-6,12],[-12,17],[-2,10],[5,5],[6,3],[5,0],[9,-6],[12,-18],[9,-4],[8,-9],[1,-17],[-4,-15],[-6,0]],[[29307,21836],[10,6],[9,-4],[18,-14],[-6,13],[-4,11],[1,10],[6,11],[4,4],[3,3],[4,1],[5,0],[4,-4],[0,-10],[-3,-17],[2,-18],[6,-13],[14,-21],[2,-14],[-5,-9],[-8,-2],[-19,24],[-34,23],[-9,20]],[[29306,21698],[3,-4],[1,-10],[-1,-11],[-2,-9],[-6,-15],[-3,-5],[-10,-4],[-8,-6],[-5,-2],[-3,2],[-10,12],[-3,3],[-7,4],[-4,0],[-2,2],[-7,13],[-3,3],[-4,-1],[-8,-4],[-7,0],[-14,6],[-22,4],[-7,4],[-7,6],[-4,10],[-1,25],[-3,12],[-2,12],[3,11],[4,10],[17,30],[5,4],[3,0],[6,3],[3,1],[4,1],[7,7],[4,0],[3,-8],[3,-27],[3,-12],[5,-9],[4,-2],[5,2],[4,7],[5,12],[1,9],[-4,6],[-8,2],[-15,36],[-1,13],[3,34],[1,11],[8,21],[2,11],[1,14],[-1,11],[0,10],[3,11],[4,5],[5,-3],[3,-7],[2,-9],[1,-8],[0,-8],[-1,-6],[-4,-2],[-3,-5],[2,-9],[3,-7],[2,3],[2,0],[3,-5],[3,-8],[2,-8],[-4,-16],[0,-7],[11,-8],[7,-10],[5,-13],[4,-13],[-1,-16],[-7,-2],[-10,0],[-7,-6],[11,-8],[4,-6],[4,-11],[1,-9],[-1,-31],[1,-13],[1,-8],[2,-7],[12,-24],[5,-4],[2,9],[-1,14],[2,0],[6,0]],[[29293,21853],[-2,11],[-1,10],[-1,25],[8,20],[2,9],[-6,-2],[-3,-7],[-3,-10],[-3,-8],[-5,-4],[-3,7],[1,15],[2,17],[3,10],[-2,1],[-2,2],[-2,1],[7,14],[6,7],[7,-1],[8,-12],[8,-21],[3,-3],[4,-3],[11,-14],[8,-13],[2,-5],[1,-6],[-2,-8],[-3,-8],[-4,-5],[-4,-3],[-6,-1],[-1,-3],[-1,-2],[-2,-3],[-10,-4],[-8,-10],[-4,-1],[-3,8]],[[29122,21867],[1,6],[8,9],[2,7],[-6,-1],[-5,1],[-3,6],[-1,13],[-1,1],[-3,1],[-3,3],[-2,5],[1,2],[2,3],[2,5],[0,6],[-2,5],[-6,5],[-1,4],[0,4],[1,6],[0,2],[-3,8],[-1,5],[-2,3],[-1,3],[-2,3],[0,4],[-1,9],[-1,4],[0,4],[25,-4],[4,-2],[3,-10],[6,-4],[14,-5],[0,4],[-2,2],[-1,2],[0,2],[-1,2],[11,-2],[8,6],[11,-6],[18,-13],[6,-3],[7,-5],[10,-10],[5,-16],[2,-1],[-1,-23],[-1,-11],[-7,-10],[-1,-13],[1,-44],[-2,-8],[-3,-7],[-3,-2],[-2,1],[-3,1],[-3,0],[-3,-3],[-5,-7],[-12,-9],[-9,-15],[-9,-9],[-7,6],[-1,3],[-1,2],[0,3],[-1,9],[-3,6],[-1,4],[-1,7],[-10,24],[-7,8],[-3,5],[-1,9]],[[29125,21653],[-4,-2],[-12,-22],[-5,-4],[-4,3],[-3,9],[-1,12],[1,5],[2,4],[3,2],[1,2],[0,4],[-4,0],[-4,-2],[-3,-1],[-3,3],[-1,4],[-1,4],[2,4],[2,4],[-3,3],[-4,8],[-2,8],[1,7],[2,8],[0,7],[-6,14],[-2,15],[3,18],[6,16],[5,6],[0,4],[-8,5],[-5,5],[-2,4],[2,18],[0,9],[-3,3],[-2,-3],[-6,-16],[-2,-5],[-4,-4],[-5,-2],[-5,-1],[-3,3],[-3,-9],[-6,-6],[-8,-4],[-6,-1],[-8,5],[-5,11],[0,11],[6,5],[3,1],[14,9],[12,2],[7,3],[6,8],[10,18],[0,4],[-5,-1],[-4,-3],[-4,-5],[-4,-4],[2,13],[2,12],[-5,-5],[-9,-15],[-5,-5],[-1,3],[-3,3],[-2,3],[-7,-11],[-5,-4],[-5,3],[-3,8],[1,8],[3,7],[3,5],[16,17],[7,11],[4,17],[-7,-3],[-10,-14],[-7,-4],[-3,1],[-3,3],[-1,5],[1,6],[2,5],[0,3],[-6,11],[-1,1],[-2,2],[-1,8],[0,23],[-1,4],[-3,9],[0,7],[9,17],[5,6],[8,9],[8,3],[4,-11],[2,-12],[3,4],[6,18],[5,5],[7,6],[8,3],[3,-8],[-1,-7],[-2,-13],[0,-5],[4,-9],[3,-9],[0,-4],[0,-6],[1,-2],[5,4],[1,-13],[5,-12],[4,-12],[-4,-13],[-1,-5],[-1,-6],[0,-5],[2,-3],[2,2],[0,3],[1,2],[2,-2],[1,-4],[-1,-5],[-1,-5],[-1,-3],[4,-3],[2,-4],[11,-36],[1,-7],[1,-6],[2,-8],[3,-6],[2,-3],[4,-3],[-2,-9],[-5,-16],[10,1],[5,-8],[4,-13],[6,-13],[-4,-2],[-7,-4],[-3,-4],[1,-3],[12,-6],[4,-1],[1,-4],[0,-10],[-2,-15],[1,-6],[4,-14],[1,-8],[-4,-10],[-6,-12],[-8,-10],[-4,-5]],[[29091,22027],[11,13],[2,8],[-3,12],[8,33],[11,13],[22,16],[12,-1],[10,0],[18,-9],[6,11],[6,11],[3,11],[5,8],[5,-5],[3,3],[3,4],[4,-2],[8,2],[3,-10],[3,-15],[0,-18],[-4,-11],[-2,-8],[-5,-7],[-2,-6],[8,-7],[2,-12],[-2,-11],[-9,-3],[-5,-8],[4,-4],[10,1],[6,-5],[2,-13],[8,-37],[-18,16],[-17,4],[-12,2],[-12,7],[-7,6],[-13,3],[-6,6],[-1,5],[3,10],[-1,7],[-2,3],[-4,2],[-4,0],[-10,-3],[-5,-4],[-4,-7],[-4,-9],[-6,-6],[-8,-3],[-8,-2],[-6,1],[-1,1],[-5,7]],[[29329,22080],[-13,1],[-6,4],[-6,7],[8,13],[15,21],[7,12],[9,6],[11,-9],[12,-12],[9,-7],[-3,10],[-7,9],[-13,14],[12,8],[12,1],[47,-25],[22,-3],[6,-4],[12,-12],[7,-2],[6,2],[7,8],[6,6],[6,-6],[2,-12],[0,-14],[-6,-16],[1,1],[0,-3],[0,-3],[-1,-4],[-2,0],[-6,0],[-14,-2],[-3,-4],[-2,3],[-2,12],[1,-1],[2,3],[1,5],[0,3],[-1,3],[-3,-1],[-4,-4],[-4,-1],[-9,-12],[-8,-4],[-25,4],[-4,0],[-10,-8],[-42,-13],[-8,6],[-4,6],[-4,7],[-4,5],[-7,2]],[[29116,22143],[-3,14],[-8,10],[-13,9],[-10,5],[-11,-9],[3,14],[-6,14],[5,8],[5,9],[6,2],[8,-5],[6,-7],[10,4],[7,3],[5,2],[4,3],[0,3],[10,11],[7,0],[4,-13],[4,-19],[1,-10],[-10,-9],[-3,0],[-3,-3],[-2,-6],[2,-3],[4,1],[4,4],[3,3],[2,-4],[7,-7],[6,-7],[-8,-12],[-12,-2],[-1,-3],[-9,-5],[-8,2],[-19,-11],[2,5],[7,6],[4,3]],[[29198,22214],[7,-19],[-2,-11],[-18,-6],[-7,-1],[-3,1],[-4,4],[-6,8],[-6,8],[-3,16],[-5,13],[4,14],[11,2],[14,-9],[13,-5],[5,-15]],[[29314,22591],[8,8],[11,7],[12,3],[9,-5],[2,-7],[0,-8],[-1,-7],[-3,-7],[-3,-4],[-10,-7],[-4,-5],[-13,-20],[-4,-3],[-4,1],[-1,4],[3,7],[-2,6],[-4,8],[-2,5],[-1,10],[2,7],[2,4],[3,3]],[[29423,22624],[8,-2],[7,-4],[13,-11],[-13,-19],[-2,-7],[-2,-9],[-4,-10],[-5,-8],[-21,-20],[-8,1],[-3,6],[2,5],[7,0],[-1,2],[-2,5],[-1,2],[-2,1],[-1,1],[-9,1],[-3,1],[-2,4],[-1,12],[2,14],[3,12],[8,21],[2,4],[3,2],[3,-1],[8,-7],[2,-2],[2,-14],[5,3],[4,11],[1,6]],[[29521,23198],[3,-5],[4,-3],[3,-5],[2,-9],[-1,-11],[-7,-12],[-2,-8],[0,-2],[-2,0],[-2,-2],[-1,-4],[-1,-11],[-2,-9],[-4,-6],[-4,-1],[-5,1],[-5,4],[-3,5],[-3,9],[0,2],[1,7],[2,5],[3,3],[-4,2],[-5,3],[-14,21],[-10,10],[-3,5],[6,24],[2,7],[4,3],[6,1],[10,-2],[4,-4],[9,-13],[3,-3],[8,3],[4,0],[4,-5]],[[29525,23273],[2,-7],[-1,-21],[6,-28],[-8,-2],[-30,14],[-2,7],[2,10],[10,33],[3,9],[5,6],[2,-18],[0,-3],[3,-1],[6,2],[2,-1]],[[29235,23342],[5,0],[4,-2],[2,-7],[0,-15],[-3,-11],[-6,-20],[-2,-16],[-3,-18],[-1,-19],[-1,-5],[-3,-8],[-4,-8],[-5,-6],[-11,-6],[-4,-7],[-7,-18],[-7,-10],[-9,-4],[-10,-1],[-17,4],[-4,3],[-3,4],[-2,8],[-2,7],[-2,8],[-3,5],[2,7],[4,5],[26,13],[10,-1],[9,-5],[9,-1],[9,11],[-2,3],[-10,-8],[-4,-4],[-14,18],[-5,2],[-3,-1],[-7,-5],[-4,-2],[-3,1],[-10,4],[3,6],[3,2],[8,-1],[0,5],[-16,8],[1,20],[-2,4],[-5,11],[-1,4],[1,6],[4,5],[4,2],[3,0],[4,0],[11,-8],[13,-5],[3,-5],[5,-8],[7,-8],[9,-5],[7,3],[-6,9],[-24,22],[-1,5],[2,5],[4,0],[3,-4],[2,-6],[3,-3],[3,-1],[3,-2],[2,0],[1,5],[0,10],[2,1],[2,-3],[3,-2],[7,2],[2,6],[-1,10],[0,15],[8,-7],[3,-1],[3,1],[5,5],[3,2]],[[29516,23350],[7,-11],[2,-15],[0,-16],[4,-14],[-6,1],[-6,5],[-7,4],[-7,-3],[-4,-9],[-3,-14],[-3,-9],[-6,4],[1,-6],[0,-3],[1,-3],[-5,-14],[-7,-8],[-8,-1],[-7,6],[-3,20],[0,8],[2,9],[3,10],[5,11],[5,8],[5,4],[11,3],[9,8],[17,25]],[[29464,23379],[-11,-15],[-2,-6],[3,-4],[1,-5],[-1,-6],[-1,-7],[0,-2],[-2,-2],[-1,-3],[-1,-3],[1,-3],[2,-7],[1,-4],[-2,-13],[-5,-14],[-6,-6],[-4,6],[-4,22],[-2,7],[-2,5],[-3,4],[-1,6],[2,8],[-7,1],[-3,15],[2,15],[8,-2],[2,13],[4,4],[5,-2],[5,-2],[5,-1],[12,1],[5,0]],[[29224,23445],[12,-38],[-1,-1],[-5,-3],[-1,-1],[-6,5],[-16,24],[-3,3],[-2,1],[-1,2],[-1,7],[0,6],[1,7],[2,5],[2,2],[6,0],[7,-2],[4,-6],[2,-11]],[[29290,23480],[4,-3],[0,-5],[0,-5],[-1,-3],[-6,-19],[-2,-12],[6,-11],[-1,-10],[-2,-11],[-6,-16],[-3,-7],[-5,-3],[-7,-1],[-7,1],[-6,5],[-4,9],[-2,16],[1,16],[2,16],[4,15],[6,12],[4,4],[11,5],[7,7],[2,0],[5,0]],[[29424,23411],[-8,29],[-2,16],[-1,4],[-1,5],[1,7],[8,10],[1,2],[3,5],[5,8],[6,7],[5,-2],[3,-4],[6,-3],[3,-3],[6,-11],[3,-1],[7,-10],[3,-22],[-2,-25],[-4,-16],[-9,-10],[-13,-4],[-12,3],[-8,15]],[[29304,23386],[11,23],[2,10],[0,15],[3,5],[-3,7],[-6,6],[-4,5],[1,4],[9,7],[3,4],[-5,9],[-1,15],[1,17],[4,14],[8,24],[5,4],[9,-2],[15,-10],[7,-7],[5,-9],[5,-12],[2,-12],[-1,-11],[-7,-8],[4,-2],[6,-2],[5,-5],[1,-11],[-3,-8],[-5,-3],[-11,-2],[5,-8],[6,1],[6,2],[5,-2],[-3,-8],[-3,-9],[-3,-7],[-6,-5],[-20,-2],[-7,-6],[6,0],[4,-4],[0,-6],[-2,-6],[-3,-5],[-18,-20],[-9,-6],[-9,1],[-6,16],[-3,9]],[[29537,23561],[10,-4],[7,-8],[5,-13],[1,-20],[-1,-4],[-1,-4],[-2,-4],[0,-6],[0,-14],[0,-4],[-3,-9],[-3,-9],[-1,-9],[3,-6],[-5,-4],[-5,1],[-9,7],[3,-13],[2,-6],[2,-5],[7,-5],[3,-4],[2,-7],[-1,-14],[-4,-14],[-7,-9],[-7,0],[-5,14],[-6,14],[-13,15],[-3,4],[-2,2],[-6,8],[-3,9],[3,4],[18,15],[0,5],[-12,19],[4,34],[13,32],[16,12]],[[29476,23541],[11,11],[6,0],[2,-13],[-1,-11],[-3,-12],[-11,-29],[-4,1],[-4,1],[-6,6],[-3,1],[-7,7],[-7,2],[-9,7],[-4,2],[-9,-2],[-3,-1],[-7,-9],[-3,-2],[-2,-3],[-2,-13],[-1,-4],[-4,0],[-1,10],[1,13],[2,9],[2,5],[2,3],[1,4],[1,7],[2,10],[3,11],[5,11],[3,6],[5,1],[16,-3],[5,-4],[5,-7],[6,-7],[7,-6],[6,-2]],[[29290,23496],[-4,4],[0,10],[5,14],[9,33],[6,11],[8,5],[6,-7],[-2,-15],[-12,-29],[-2,-15],[1,-21],[0,-14],[-6,4],[-1,6],[-2,7],[-3,5],[-3,2]],[[29493,23586],[-4,-9],[-7,-6],[-8,-4],[-8,-2],[-17,6],[-8,5],[-3,11],[4,8],[9,5],[10,3],[13,-6],[10,3],[8,0],[1,-14]],[[29349,23620],[2,-8],[2,-9],[1,-8],[4,-6],[-3,-3],[-3,-2],[-4,-2],[-3,-1],[-6,2],[-31,27],[-6,10],[-4,13],[0,12],[8,6],[19,3],[11,-1],[5,-9],[1,-4],[7,-20]],[[29493,23662],[4,-7],[5,-14],[3,-13],[-1,-6],[-8,-7],[-4,-1],[-42,-1],[-5,-2],[-4,0],[-17,11],[-13,4],[-3,2],[-3,7],[-3,12],[-3,13],[-1,10],[2,11],[6,4],[6,2],[13,12],[4,-6],[7,-23],[12,-10],[31,6],[14,-4]],[[29368,23697],[1,-5],[-2,-3],[-3,-2],[-3,-28],[-2,-13],[-5,-5],[-4,2],[-15,18],[-3,6],[-3,7],[-2,9],[1,19],[3,16],[5,10],[8,-1],[5,-5],[11,-19],[2,-2],[4,-2],[2,-2]],[[29519,23693],[-3,-13],[3,-18],[-3,-8],[-7,-3],[-6,7],[-6,10],[-6,8],[-3,2],[-8,1],[-25,-7],[-8,2],[-5,9],[-5,23],[-4,5],[-5,5],[-7,21],[-6,3],[-2,-4],[-1,-5],[-2,-5],[-3,-3],[-3,4],[-4,6],[-3,3],[-1,-7],[-3,-9],[-6,0],[-6,5],[-4,6],[-2,24],[4,22],[8,18],[9,10],[7,1],[20,-6],[4,1],[5,6],[3,2],[12,-1],[4,1],[6,4],[11,10],[7,2],[6,-2],[6,-4],[19,-22],[2,-5],[3,-9],[0,-3],[-2,-2],[-1,-4],[3,-5],[6,-7],[6,-10],[4,-12],[0,-15],[-1,-12],[-3,-11],[-4,-9]],[[29369,23853],[5,7],[11,28],[7,10],[7,2],[7,-2],[26,-15],[16,-2],[5,-4],[8,-15],[6,-9],[1,-4],[-1,-3],[-6,-8],[-1,-1],[-3,-1],[-6,-6],[-3,-1],[-3,1],[-8,5],[-5,3],[-3,2],[-3,1],[1,-5],[2,-4],[5,-7],[-8,-4],[-34,4],[-8,-6],[-9,-9],[-9,-6],[-8,4],[-7,1],[-6,4],[-2,9],[4,13],[5,6],[17,12]],[[29455,23932],[-4,-14],[-8,-8],[-10,-3],[-9,-1],[-7,8],[-22,14],[-3,7],[6,3],[35,10],[8,6],[4,1],[7,-2],[2,-3],[1,-6],[0,-12]],[[29463,23945],[6,8],[4,4],[3,2],[9,-2],[4,-9],[6,-30],[15,-56],[-4,-10],[-5,-6],[-5,-3],[-7,2],[-12,18],[-12,21],[-1,6],[0,10],[0,6],[3,-2],[8,-15],[4,-4],[5,-3],[-3,4],[-3,6],[-2,7],[-1,13],[-2,4],[-3,2],[-4,4],[-3,4],[-2,5],[0,6],[2,8]],[[29141,23941],[8,-21],[11,-7],[-1,-6],[-4,-10],[2,-12],[1,-8],[-6,-1],[-5,-9],[-4,-2],[-7,-1],[-6,0],[-6,3],[-3,4],[1,5],[3,9],[1,7],[-3,8],[-8,16],[-4,13],[0,5],[7,14],[7,12],[10,-2],[4,-6],[2,-11]],[[29554,23971],[0,-8],[-5,-13],[0,-5],[3,-14],[-4,-10],[-7,-6],[-7,0],[-7,3],[-7,8],[-6,11],[-2,14],[4,14],[7,2],[7,-1],[8,7],[3,4],[5,2],[5,-2],[3,-6]],[[29349,23935],[3,-4],[4,-9],[1,-8],[-4,-4],[-18,-5],[-5,3],[-4,5],[-8,5],[-4,5],[-2,4],[-4,15],[-10,24],[0,6],[1,6],[4,5],[5,3],[7,2],[6,1],[5,-2],[2,-7],[2,-9],[1,-11],[0,-7],[2,-7],[6,-6],[6,-4],[4,-1]],[[29310,24035],[4,-1],[2,-5],[2,-7],[0,-9],[-1,-9],[-3,-5],[-4,0],[-23,3],[-8,6],[-4,-1],[-4,-2],[-4,-1],[-4,2],[-3,4],[-2,5],[1,9],[2,1],[9,15],[1,4],[15,1],[5,-1],[15,-8],[4,-1]],[[29464,24040],[10,-19],[4,-12],[1,-8],[-26,-6],[-12,-7],[-23,-22],[-28,-15],[-15,-13],[-3,-2],[-3,-1],[-3,1],[-11,8],[-5,7],[-5,8],[-3,11],[-1,13],[3,7],[6,2],[6,0],[0,3],[-5,0],[-20,6],[-2,5],[0,20],[4,15],[9,3],[20,-4],[-3,7],[4,5],[7,3],[67,0],[15,-5],[12,-10]],[[29228,24068],[10,5],[3,-12],[-2,-20],[-3,-17],[0,-6],[-4,-4],[-6,-3],[-5,2],[-4,11],[-2,15],[-1,15],[1,14],[3,13],[4,6],[5,-4],[1,-15]],[[29539,24012],[5,-1],[4,1],[3,-1],[4,-6],[3,-11],[-4,-6],[-6,-1],[-6,0],[-18,-11],[-11,-3],[-5,10],[-5,12],[-14,24],[-2,7],[4,6],[3,-7],[1,10],[0,14],[-1,7],[-2,4],[2,10],[3,9],[4,6],[5,1],[6,-1],[6,1],[4,4],[6,4],[5,-4],[5,-9],[2,-9],[-5,0],[3,-7],[8,-13],[2,-8],[0,-11],[-3,-8],[-3,-6],[-3,-7]],[[29390,24121],[5,-7],[6,-21],[6,-5],[-6,-7],[-26,-4],[-14,-7],[-7,-1],[-6,3],[-3,9],[-3,11],[0,9],[11,6],[9,9],[11,-3],[12,7],[5,1]],[[29434,24117],[-6,13],[-24,11],[-6,16],[3,-1],[3,-3],[2,-4],[3,-4],[4,-1],[27,-2],[3,-2],[6,-6],[3,-1],[4,-5],[2,-11],[1,-27],[-4,-4],[-8,-2],[-16,1],[-6,0],[-9,4],[-7,7],[-2,9],[4,4],[23,8]],[[29335,24088],[-8,0],[-20,7],[-8,5],[-5,15],[-2,15],[2,13],[7,10],[3,2],[18,-3],[3,-4],[1,-6],[1,-9],[16,36],[4,5],[8,4],[4,1],[6,-5],[5,-2],[2,-4],[6,-16],[4,-17],[-5,-6],[-17,-4],[-15,-8],[-18,-4],[3,-5],[2,-6],[2,-7],[1,-7]],[[29503,24162],[1,-12],[-4,-7],[-6,-4],[-13,-3],[-6,4],[-4,9],[-2,15],[0,13],[2,11],[4,6],[7,-4],[3,-6],[2,-11],[2,-5],[4,-2],[7,-1],[3,-3]],[[29616,24064],[2,-2],[4,-10],[2,-4],[9,7],[3,1],[3,-3],[8,-11],[5,-4],[1,-3],[2,-1],[3,4],[1,7],[-2,4],[-6,7],[-3,9],[-4,14],[0,12],[6,6],[6,-2],[22,-21],[3,0],[2,3],[2,6],[0,6],[-1,6],[-3,2],[-7,1],[-14,6],[-5,5],[-6,21],[5,23],[10,17],[12,0],[1,-4],[4,-12],[2,-4],[0,2],[1,2],[1,1],[3,0],[3,1],[3,3],[4,-2],[4,-6],[6,-18],[4,-8],[-3,23],[-1,7],[-1,9],[-4,2],[-3,2],[-3,6],[2,11],[17,6],[5,7],[7,-8],[7,-11],[5,-14],[2,-12],[-2,-8],[-13,-36],[7,-1],[14,36],[9,9],[6,-2],[12,-8],[6,-1],[5,-6],[6,-25],[5,-6],[2,-5],[-2,-13],[-4,-12],[-16,-35],[-3,-5],[-25,4],[-11,6],[-11,11],[1,-12],[4,-7],[6,-4],[5,-7],[6,-6],[15,-3],[5,-5],[-2,-20],[-11,-19],[-25,-27],[-11,-15],[-2,-7],[-2,-2],[-2,-2],[-3,-2],[-2,-10],[-2,-4],[-26,-32],[-12,-9],[-18,-7],[-6,0],[-4,4],[-3,10],[-17,28],[-8,16],[-4,11],[1,5],[12,0],[4,2],[5,9],[6,6],[5,-3],[9,-14],[3,3],[7,3],[3,2],[0,5],[-3,1],[-22,19],[-2,-2],[-9,-10],[-6,-6],[-3,-2],[-3,0],[-3,2],[-2,6],[-2,7],[0,7],[-1,5],[-6,13],[-3,11],[-4,26],[-3,12],[11,24],[3,4],[3,1],[4,2],[3,1]],[[29520,24161],[-17,25],[12,11],[4,1],[9,0],[2,2],[2,6],[3,1],[5,-3],[1,-4],[-1,-7],[-1,-9],[-3,-2],[-17,0],[9,-6],[5,-5],[2,-7],[-2,-9],[-3,-2],[-5,2],[-5,6]],[[29436,24202],[8,-1],[14,5],[6,-4],[-2,-14],[2,-31],[-3,-12],[-14,19],[-5,4],[-6,2],[-4,2],[-5,8],[-5,5],[-3,5],[-2,6],[-2,15],[-2,7],[6,5],[6,-6],[5,-8],[6,-7]],[[29649,24182],[-6,4],[-4,8],[-1,11],[3,13],[2,4],[7,7],[3,2],[1,-3],[8,-8],[1,0],[10,-26],[0,-4],[-24,-8]],[[29482,24214],[-9,0],[-10,4],[-8,8],[-4,15],[3,3],[24,-9],[8,2],[2,4],[1,8],[1,2],[2,2],[2,2],[2,0],[2,-1],[1,-2],[0,-3],[4,-20],[-5,-9],[-9,-5],[-7,-1]],[[29337,24264],[5,2],[7,0],[6,-1],[5,-6],[3,-11],[1,-12],[-3,-7],[-4,4],[-7,4],[-11,2],[-9,5],[-2,11],[2,4],[2,3],[5,2]],[[29516,24255],[12,14],[6,0],[3,-14],[-3,-7],[-6,-9],[-7,-6],[-5,2],[-4,10],[-1,12],[2,5],[3,-7]],[[29414,24278],[-5,16],[4,6],[9,0],[8,-4],[0,4],[-2,4],[-3,8],[-1,8],[2,4],[5,-2],[3,-6],[11,-23],[4,-4],[19,-4],[3,-4],[3,-11],[-6,-1],[-9,0],[-7,-4],[-4,-3],[-3,0],[-3,-2],[-2,-9],[0,-8],[7,-25],[-8,0],[-4,1],[-3,3],[-14,23],[-2,8],[0,17],[-2,8]],[[29367,24324],[2,-4],[3,-5],[0,-5],[-2,-3],[-20,-7],[-13,18],[2,5],[6,3],[17,1],[3,-1],[2,-2]],[[29477,24342],[4,-8],[1,-4],[-3,-2],[-1,-1],[-1,-2],[0,-3],[1,-2],[2,-3],[1,1],[2,2],[2,0],[3,-2],[2,1],[1,-2],[0,-7],[-1,-6],[-3,-4],[-4,-3],[-3,-1],[-11,1],[-12,5],[-10,9],[-7,17],[17,22],[10,4],[10,-12]],[[29362,24405],[5,0],[19,-4],[-25,-8],[-2,2],[-2,5],[-1,2],[2,2],[4,1]],[[29515,24440],[5,7],[4,2],[3,-4],[-2,-11],[5,-3],[6,-6],[5,-8],[3,-8],[0,-8],[-2,-5],[-2,-6],[2,-9],[9,-12],[1,-7],[-2,-14],[-4,-9],[-5,-5],[-4,1],[-2,9],[1,12],[-1,8],[-3,7],[-7,8],[-4,3],[-2,3],[0,5],[-1,12],[-1,5],[-3,7],[-2,7],[0,8],[3,11]],[[29659,24405],[-4,6],[-10,5],[-2,7],[-1,19],[1,8],[3,10],[7,10],[9,8],[9,6],[7,-2],[4,-6],[1,-7],[-1,-17],[-1,-7],[-5,-16],[0,-6],[1,-9],[3,-6],[0,-5],[-6,-6],[-4,0],[-5,1],[-4,3],[-2,4]],[[29404,24514],[8,11],[20,8],[13,-11],[8,-8],[15,9],[-2,8],[5,3],[7,1],[4,2],[-1,11],[1,5],[2,-3],[18,-37],[5,-15],[3,-20],[-23,-2],[-7,2],[-10,9],[-2,3],[3,5],[8,1],[3,7],[-8,4],[-10,0],[-9,-6],[-4,-11],[5,-7],[11,-9],[3,-8],[-7,-2],[-11,-13],[-7,-1],[-3,4],[-2,6],[-2,6],[0,6],[-3,4],[-5,-1],[-9,-5],[-15,7],[-3,3],[-4,5],[-1,1],[0,1],[0,8],[0,4],[5,6],[1,9]],[[29217,24628],[1,10],[-3,14],[-1,14],[1,5],[4,-2],[7,-5],[6,3],[5,2],[1,9],[-1,9],[2,3],[6,-1],[6,-5],[4,-7],[9,-1],[8,-14],[10,-12],[7,-17],[-6,-5],[-26,-2],[-14,-8],[-4,-11],[-6,-3],[-4,1],[-4,10],[-8,13]],[[29552,25042],[6,14],[10,-3],[17,-15],[9,-2],[11,-5],[10,-9],[6,-12],[-3,0],[-2,-1],[-1,-2],[-2,-2],[-9,1],[-7,2],[-6,6],[-6,10],[-3,4],[-8,3],[-4,5],[-3,3],[-11,1],[-4,2]],[[29554,25254],[1,-9],[-2,-17],[0,-9],[-2,-1],[-11,9],[-5,1],[-4,-1],[-5,-2],[-4,-4],[-4,5],[-4,8],[-2,8],[5,4],[21,3],[4,3],[4,6],[3,2],[5,-6]],[[29607,25285],[0,-2],[-1,-5],[-1,-3],[0,-3],[0,-3],[0,-6],[-3,5],[-11,32],[-2,3],[-3,1],[-3,1],[-2,1],[-11,10],[-2,2],[-4,2],[-12,9],[-4,5],[-1,5],[0,6],[-1,12],[-1,4],[-3,3],[-1,4],[1,7],[5,4],[6,-1],[18,-6],[3,-8],[1,-10],[3,-9],[28,-55],[1,-5]],[[29698,25450],[2,-5],[2,-6],[1,-7],[-1,-6],[-5,-7],[-7,-6],[-7,-2],[-4,7],[-1,0],[-4,5],[-3,6],[0,3],[-1,3],[-2,7],[0,7],[2,3],[3,-3],[4,-14],[5,-3],[6,15],[4,7],[6,-4]],[[29849,25513],[-18,17],[-3,5],[2,9],[5,10],[5,9],[4,3],[9,-1],[4,-4],[1,-8],[1,-25],[0,-14],[-3,-7],[-7,6]],[[29351,24838],[-8,-6],[-4,13],[-6,5],[-2,14],[1,4],[8,8],[5,23],[-1,12],[2,3],[7,6],[5,3],[1,8],[-5,3],[-3,5],[-1,6],[2,8],[4,9],[5,-2],[5,4],[7,13],[5,8],[2,6],[1,7],[-6,5],[-2,7],[3,6],[7,2],[2,8],[-1,10],[-2,5],[-2,6],[0,7],[2,2],[3,1],[8,5],[5,12],[1,14],[0,11],[-3,7],[2,7],[3,7],[-2,7],[-2,6],[0,10],[5,4],[1,7],[0,9],[-4,8],[2,5],[5,4],[2,6],[1,13],[-1,18],[-2,22],[-2,15],[-2,12],[-1,4],[-2,3],[-1,4],[0,7],[-2,2],[-3,2],[-3,4],[1,10],[2,8],[0,12],[-2,7],[0,12],[10,42],[3,25],[-4,17],[-3,15],[3,14],[3,14],[7,13],[15,25],[4,13],[0,11],[-3,14],[1,5],[3,7],[2,6],[-1,6],[-1,5],[-2,31],[0,13],[1,12],[2,5],[-2,2],[3,4],[3,3],[2,2],[4,6],[1,4],[0,8],[-4,12],[-2,9],[-3,3],[-5,3],[-1,5],[0,8],[-1,9],[3,4],[3,6],[1,7],[1,3],[4,0],[2,-4],[2,-6],[2,-2],[3,-2],[5,-5],[4,-2],[1,-2],[1,-1],[2,2],[1,3],[1,9],[0,2],[5,1],[5,-4],[3,-9],[1,-10],[-3,-12],[-6,0],[-12,9],[-6,4],[-3,0],[-3,-4],[-1,-6],[0,-5],[2,-3],[1,-4],[4,-5],[21,-9],[5,-4],[6,-3],[6,3],[2,14],[4,4],[6,-8],[7,-12],[2,-6],[3,3],[-1,6],[-4,9],[0,8],[9,12],[10,10],[5,7],[4,-3],[6,-8],[6,-3],[4,15],[4,4],[4,1],[3,0],[4,-4],[3,-6],[5,-15],[2,4],[3,0],[2,-1],[2,-3],[0,-4],[-7,-5],[-2,-3],[-3,-5],[0,-3],[0,-1],[2,-8],[2,-4],[1,-3],[0,-3],[-2,-5],[-1,-8],[-3,0],[-3,2],[-3,-2],[-2,-10],[3,-5],[5,-3],[5,-4],[10,-31],[3,-4],[4,-3],[4,-9],[3,-10],[0,-11],[-3,-5],[-10,-9],[-3,-7],[4,-18],[9,-12],[20,-17],[-1,-3],[-2,-6],[-1,-3],[4,-6],[3,-8],[0,-11],[-1,-12],[-2,-9],[-1,-5],[-2,-4],[-2,-1],[-6,5],[-2,1],[-6,-2],[-9,-11],[-6,-2],[-18,1],[-5,-1],[-17,-12],[-4,-5],[-4,-9],[-1,-8],[2,-7],[1,-8],[-1,-12],[-2,-8],[-1,-6],[2,-11],[4,-7],[10,-10],[5,-7],[-3,-3],[-24,-13],[-6,-1],[-6,4],[-6,6],[-4,11],[3,4],[2,6],[4,14],[-2,4],[-11,-12],[-4,-9],[-2,-13],[1,-5],[5,-8],[2,-3],[-1,-8],[-4,-13],[-1,-6],[2,-13],[6,-9],[7,-8],[8,-12],[3,-2],[7,0],[0,-3],[2,-6],[4,-6],[1,-1],[9,-26],[2,-5],[3,-2],[7,-2],[6,-6],[16,-19],[5,-7],[2,-10],[1,-15],[-1,-14],[-5,-6],[-6,-2],[-11,1],[-4,1],[-7,6],[-3,-11],[-8,2],[-9,6],[-7,3],[0,-4],[15,-14],[2,-5],[0,-5],[-2,-8],[0,-5],[2,-3],[3,0],[2,-1],[2,-11],[3,-2],[6,1],[4,-1],[1,-4],[0,-5],[0,-6],[14,-37],[-7,1],[-11,10],[-6,-1],[-1,-8],[12,-2],[11,-12],[11,-16],[-4,-16],[-6,-2],[-6,5],[-6,6],[-5,3],[-7,-2],[-11,-11],[-19,-7],[-2,4],[-2,7],[-1,9],[-7,-1],[-4,-5],[6,-11],[3,-20],[-1,-14],[-2,-10],[3,-10],[5,-7],[5,-5],[3,-6],[6,-13],[3,-9],[0,-9],[-4,-4],[-7,0],[-7,0],[6,-6],[4,-8],[6,-6],[1,-8],[-3,-10],[-8,-4],[-6,-3],[-5,4],[-3,8],[-5,2],[-6,5],[-1,-10],[1,-8],[0,-11],[-4,0],[-4,4],[-2,-7],[-3,-5],[-9,1],[-3,12],[-5,5],[-3,10],[-3,6],[-7,0],[-5,-2],[-6,-12],[-3,9],[-6,6],[-8,1],[-7,-9],[-1,-14],[-4,4],[-5,14],[-4,8],[-10,9],[-10,-2],[-4,9],[-9,2],[-12,4],[-6,14],[-6,9]],[[29698,25689],[-1,5],[2,5],[2,5],[1,4],[-4,24],[0,14],[5,6],[4,-6],[8,-36],[4,-10],[2,-11],[-2,-8],[-7,-2],[-8,3],[-3,3],[-3,4]],[[29712,18220],[17,7],[5,-1],[1,-6],[-3,-6],[-3,-12],[-4,-5],[-7,3],[-7,2],[-5,-4],[-8,-1],[-3,5],[5,9],[7,9],[5,0]],[[30443,18444],[12,4],[6,8],[7,3],[6,-9],[0,-15],[-2,-20],[-6,-14],[-8,-3],[-15,3],[-18,16],[-12,19],[2,11],[7,2],[12,-9],[9,4]],[[30364,19173],[16,8],[3,-6],[-4,-6],[-4,-14],[-8,-10],[-13,-12],[-11,-1],[-7,9],[6,8],[10,11],[12,13]],[[29325,19376],[4,0],[6,-9],[3,-14],[6,-17],[2,-17],[1,-13],[-5,-4],[-14,12],[-12,11],[-6,11],[-2,12],[7,9],[4,4],[6,15]],[[29312,19491],[-2,-11],[4,-15],[-5,-14],[-1,-7],[11,-3],[-3,-11],[0,-15],[-6,-2],[-7,9],[-8,13],[0,21],[2,23],[6,16],[9,-4]],[[29495,19755],[7,6],[4,11],[2,5],[9,-3],[5,-10],[3,-20],[3,-15],[0,-21],[-6,3],[2,-11],[2,-11],[-2,-12],[-7,-9],[-8,3],[-11,15],[-9,22],[0,16],[-11,9],[-10,1],[-8,4],[-2,15],[-8,17],[4,12],[8,6],[10,3],[6,-7],[5,-9],[9,-12],[3,-8]],[[29344,20067],[4,-3],[5,-9],[5,-11],[4,-11],[-3,-14],[-8,-5],[-10,5],[-7,3],[-1,12],[2,12],[-5,3],[4,11],[3,8],[7,-1]],[[29175,20689],[12,7],[10,-12],[-11,-24],[-9,-13],[2,-18],[-6,-26],[-19,-26],[-19,4],[-16,4],[1,19],[13,29],[13,20],[29,36]],[[29326,21087],[-3,7],[1,18],[-2,13],[2,10],[-1,5],[-8,10],[-1,4],[0,5],[2,4],[2,3],[2,5],[1,5],[0,5],[1,12],[1,5],[3,1],[2,-3],[1,-3],[2,-7],[3,-2],[4,0],[3,-1],[5,-7],[13,-32],[2,-8],[2,-4],[1,-6],[-1,-3],[-22,-23],[-2,-8],[-5,-7],[-5,-3],[-3,5]],[[29264,22163],[6,-2],[9,-2],[10,-1],[9,-4],[2,-15],[-2,-18],[-5,-2],[-14,5],[-7,-9],[-1,-15],[1,-10],[-7,-1],[-4,12],[-4,7],[-4,17],[0,17],[0,12],[11,9]],[[29077,22822],[11,1],[8,1],[10,4],[12,-2],[8,-11],[3,-18],[4,-12],[-3,-18],[-9,-2],[-12,18],[-12,5],[-5,11],[-11,6],[-10,7],[6,10]],[[29374,24797],[1,-1],[1,-11],[-2,-11],[2,-6],[4,-4],[0,-4],[-4,0],[-2,-3],[-1,-6],[-3,2],[-5,4],[1,6],[1,11],[1,11],[0,6],[6,6]],[[29530,24893],[5,-1],[5,-4],[2,-19],[-4,-10],[-7,9],[-9,9],[-2,14],[3,7],[7,-5]],[[29719,25185],[4,-3],[2,-10],[2,-10],[7,-2],[0,8],[4,4],[3,-4],[1,-19],[2,-18],[-5,-4],[-5,-9],[-4,10],[-4,17],[-9,17],[-4,12],[0,10],[6,1]],[[29637,25225],[8,0],[1,0],[9,-2],[1,-12],[-6,-4],[-10,2],[-8,7],[-9,8],[3,5],[11,-4]],[[29477,27752],[2,-5],[1,-10],[-2,-9],[-2,-5],[-2,-3],[-2,0],[-3,3],[-5,8],[-5,14],[-1,9],[0,11],[-1,10],[0,5],[6,-6],[14,-22]],[[29572,28564],[2,10],[3,-2],[0,-8],[0,-10],[4,-7],[6,-4],[4,-7],[3,-7],[4,-6],[-5,2],[-3,3],[-5,5],[-5,-5],[-1,-12],[-1,-6],[-3,7],[-2,16],[-4,8],[2,6],[1,11],[0,6]],[[30691,40102],[0,1],[1,42],[-1,21],[-3,17],[-4,11],[-6,12],[-11,18],[-4,3],[-15,4],[5,15],[4,33],[3,13],[1,1],[5,2],[2,1],[15,28],[8,12],[8,6],[8,3],[7,6],[6,14],[2,9],[-2,4],[-2,2],[-1,3],[1,6],[2,4],[12,14],[3,8],[7,33],[29,62],[4,12],[5,32],[2,9],[5,5],[10,2],[5,3],[16,17],[5,7],[4,13],[4,9],[-8,21],[-1,10],[1,18],[-1,35],[1,12],[2,10],[8,19],[9,10],[31,25],[6,20],[-3,16],[-6,9],[-14,12],[-12,26],[-6,8],[-8,-6],[-9,6],[-3,1],[-3,-2],[-5,-9],[-3,-3],[-8,0],[-6,5],[-6,8],[-5,9],[-10,25],[-6,32],[-12,61],[-12,61],[-12,61],[-11,61],[-4,18],[-1,18],[2,17],[18,56],[1,12],[1,12],[2,12],[3,10],[3,3],[8,6],[2,2],[0,6],[-3,17],[1,10],[5,12],[5,10],[9,7],[4,22],[5,1],[7,-1],[4,7],[1,11],[-7,14],[-7,20],[-4,9],[-17,25],[-4,10],[-16,51],[-5,9],[-6,11],[-1,11],[1,11],[4,22],[1,4],[-1,49],[0,10],[3,8],[6,8],[15,9],[5,5],[4,17],[1,76],[4,12],[5,1],[7,-3],[6,0],[1,6],[0,28],[0,10],[2,2],[5,3],[2,2],[11,26],[5,9],[18,20],[6,11],[-1,12],[-4,12],[-2,10],[-1,23],[1,12],[1,10],[7,10],[10,5],[18,5],[6,12],[-2,21],[-6,40],[-2,20],[-2,9],[-3,9],[-15,20],[-3,11],[-2,19],[0,22],[-1,20],[-5,15],[-3,23],[-1,8],[1,9],[2,7],[0,7],[-3,9],[-15,25],[-6,17],[4,14],[3,0],[9,-3],[3,1],[2,7],[0,7],[0,7],[1,8],[2,7],[6,13],[2,8],[2,14],[2,15],[-1,13],[3,116],[-4,47],[0,23],[2,71],[-1,8],[-3,58],[0,26],[1,13],[9,14],[3,15],[3,11],[7,-2],[3,17],[4,12],[6,8],[23,13],[2,5],[6,27],[-2,6],[-9,6],[-3,5],[0,10],[3,8],[4,7],[8,9],[4,8],[3,9],[3,9],[1,11],[2,6],[3,3],[-2,5],[-7,25],[-29,108],[-29,107],[-29,107],[-29,107],[-29,108],[-29,107],[-28,107],[-29,107],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4]],[[30673,43984],[20,-2],[11,2],[19,10],[9,-3],[9,-6],[10,-3],[16,1],[22,-5],[10,-5],[10,2],[4,-2],[21,-19],[1,0],[3,0],[1,0],[6,1],[14,-8],[6,-1],[7,3],[8,6],[7,3],[9,-5],[4,-5],[-4,-13],[-3,-15],[-2,-15],[1,-24],[1,-6],[2,-3],[5,0],[40,17],[7,8],[15,22],[12,8],[4,2],[5,0],[5,-2],[4,2],[9,18],[5,5],[13,3],[5,4],[5,9],[6,11],[4,13],[4,12],[7,35],[4,12],[16,35],[10,39],[4,9],[6,10],[9,9],[4,3],[5,1],[8,-3],[33,3],[4,-1],[4,-2],[5,-7],[11,-18],[6,-4],[9,5],[5,17],[2,21],[3,18],[3,7],[9,14],[3,9],[6,18],[3,8],[4,8],[6,4],[10,10],[11,8],[6,8],[4,9],[4,11],[2,7],[0,5],[0,4],[3,6],[3,1],[12,1],[3,1],[3,2],[2,4],[1,5],[-2,13],[1,5],[4,5],[6,2],[12,1],[5,-2],[11,-6],[4,0],[4,4],[2,7],[1,7],[2,4],[3,2],[6,1],[3,1],[13,15],[45,97],[36,60],[6,6],[22,18],[3,4],[1,5],[1,6],[1,6],[2,5],[3,2],[33,12],[17,-3],[5,2],[6,4],[11,14],[5,4],[27,8],[5,4],[9,12],[4,4],[16,4],[1,-1],[1,-3],[1,-2],[2,-1],[1,3],[2,7],[1,1],[4,2],[2,-1],[3,-2],[7,-9],[4,-2],[5,3],[13,16],[5,3],[5,1],[4,-1],[11,-6],[4,0],[3,4],[4,10],[1,-4],[1,-6],[2,-4],[1,-3],[3,1],[1,5],[0,7],[0,4],[2,12],[2,3],[2,-8],[0,-6],[1,-4],[2,-4],[2,-2],[11,10],[4,0],[-1,-13],[-1,-8],[1,-2],[2,1],[2,-1],[1,1],[3,2],[2,0],[1,-2],[3,-6],[1,-2],[8,-12],[4,-4],[6,-3],[3,1],[1,3],[1,3],[1,5],[1,2],[0,5],[0,3],[2,1],[3,2],[1,1],[3,7],[3,9],[1,5],[1,10],[2,5],[13,22],[4,9],[2,1],[8,0],[5,-4],[7,-14],[4,-18],[1,-2],[4,-27],[2,-6],[4,-7],[4,-8],[1,-9],[-1,-14],[-6,-24],[-2,-13],[-1,-24],[1,-24],[2,-23],[5,-31],[1,-12],[1,-26],[1,-6],[2,-14],[1,-6],[-1,-6],[-5,-15],[-3,-29],[-3,-14],[-10,-10],[-4,-12],[-3,-13],[-1,-11],[-1,0],[1,-4],[0,-2],[2,-2],[-7,-25],[-4,-9],[-7,-3],[0,-4],[3,-10],[1,-4],[0,-3],[-2,-5],[0,-4],[0,-5],[1,-6],[1,-5],[1,-3],[1,-6],[-2,-29],[0,-9],[5,-11],[5,-7],[4,-8],[1,-17],[0,-10],[-2,-23],[-4,-27],[1,-8],[11,-6],[5,-7],[4,-9],[3,-9],[1,-51],[1,-3],[2,-3],[1,-5],[0,-7],[-1,-5],[-2,-4],[-2,-3],[-3,-4],[-4,-14],[0,-11],[2,-10],[1,-12],[-3,-11],[-10,-17],[-5,-11],[0,-14],[3,-9],[5,-7],[2,-8],[-2,-9],[-3,-5],[-3,-7],[1,-14],[3,-11],[6,-9],[5,-6],[2,-4],[-1,-7],[-4,-12],[-2,-7],[0,-6],[0,-5],[9,-51],[8,-17],[10,6],[6,-8],[3,-5],[2,-8],[0,-5],[-2,-11],[0,-8],[1,-8],[2,-2],[2,0],[3,-2],[6,-9],[2,-5],[-7,-5],[-1,-5],[2,-15],[-1,-6],[-3,-9],[0,-5],[0,-22],[2,-8],[3,-9],[5,-8],[4,-2],[2,6],[2,29],[1,7],[2,5],[4,2],[0,-5],[0,-14],[4,-8],[5,-4],[4,-6],[2,-19],[4,-13],[1,-7],[1,-5],[-1,-12],[0,-6],[2,-13],[1,-5],[3,-3],[1,0],[3,-3],[2,-6],[0,-7],[-1,-6],[-4,-11],[0,-11],[2,-10],[3,-7],[4,-4],[4,-3],[12,-1],[6,-2],[5,-5],[6,-2],[7,5],[3,-3],[5,-2],[5,-4],[2,-9],[1,-12],[3,-11],[9,-20],[-2,-8],[1,-7],[4,-3],[3,2],[1,5],[1,16],[1,3],[4,1],[1,-3],[2,-10],[0,-5],[-2,-7],[0,-4],[0,-3],[3,-5],[0,-2],[3,-6],[7,-8],[13,-13],[4,-1],[7,0],[2,-1],[4,-7],[6,-7],[0,2],[0,2],[1,0],[4,-1],[1,-1],[5,-8],[1,-5],[0,-6],[0,-14],[-2,-12],[-5,-24],[1,-10],[2,-3],[6,-4],[2,-3],[3,-6],[3,-12],[2,-6],[4,-9],[4,-7],[5,-5],[7,-2],[11,5],[4,-3],[3,-18],[3,-2],[2,2],[2,1],[2,2],[3,7],[2,3],[6,1],[5,-3],[4,-6],[8,-17],[3,-2],[2,6],[5,12],[4,-10],[17,-1],[6,-17],[5,1],[9,7],[3,-3],[3,-5],[3,-4],[5,0],[3,6],[2,5],[2,6],[9,24],[0,3],[5,2],[8,5],[4,2],[40,-12],[1,-2],[15,-17],[11,-20],[5,-4],[6,-2],[4,-1],[3,-1],[3,-2],[2,-4],[2,-7],[1,-6],[0,-5],[1,-6],[2,-4],[3,-2],[2,-3],[1,-6],[1,-4],[10,-16],[7,-4],[3,-2],[8,-14],[3,-3],[20,1],[3,1],[1,5],[3,5],[6,9],[1,0],[3,-1],[1,1],[2,2],[1,7],[1,3],[8,7],[1,1],[3,-2],[5,-5],[9,-4],[3,-8],[2,-22],[1,-3],[2,-3],[1,-4],[-3,-7],[0,-3],[0,-3],[1,-3],[7,-11],[3,-7],[1,-7],[1,-13],[2,-11],[3,-9],[4,-5],[3,-2],[2,-1],[3,2],[2,3],[2,2],[2,-4],[1,-6],[14,-39],[1,-4],[2,-3],[3,-1],[2,0],[2,-2],[2,-3],[0,-5],[2,-9],[3,-9],[5,-7],[5,-5],[1,11],[3,4],[5,0],[5,1],[3,5],[3,5],[4,1],[5,-7],[3,-5],[2,-5],[1,-5],[0,-14],[1,-3],[24,-22],[18,1],[5,-2],[4,-5],[8,-19],[0,-3],[1,-6],[1,-1],[3,0],[1,0],[5,-6],[2,-2],[13,-3],[4,1],[3,6],[6,-5],[4,2],[4,4],[11,6],[3,1],[3,-2],[7,-11],[1,14],[2,-2],[7,-15],[3,-3],[2,2],[2,-1],[0,-9],[0,-39],[1,-11],[3,-8],[6,-9],[12,-28],[4,-4],[0,-3],[5,-14],[1,-2],[6,-6],[5,-6],[13,-28],[3,-4],[6,-6],[2,-4],[1,-5],[6,-39],[3,-6],[6,-2],[6,2],[5,4],[6,2],[5,-5],[5,7],[7,5],[7,3],[19,4],[1,0],[2,-1],[7,-15],[3,-3],[13,-6],[13,3],[12,9],[19,21],[4,-1],[4,-4],[10,-4],[6,-7],[3,-3],[3,0],[6,4],[19,-1],[3,3],[1,12],[4,6],[12,4],[1,2],[4,4],[3,2],[2,-6],[0,-24],[5,-12],[12,-5],[14,-2],[9,-4],[5,-10],[2,-3],[19,-17],[21,-35],[21,-33],[9,-11],[7,-2],[1,-2],[2,-3],[1,-7],[1,-3],[3,-2],[21,-11],[5,-6],[2,-11],[0,-16],[2,-16],[2,-15],[3,-13],[2,-5],[6,-10],[1,-4],[-1,-6],[1,-4],[3,-2],[2,-2],[0,-5],[0,-4],[-2,-11],[-4,-28],[-3,-13],[-4,-9],[-7,-4],[-2,-3],[-2,-8],[-1,-13],[0,-14],[1,-8],[4,-13],[0,-15],[-1,-16],[0,-16],[3,-11],[15,-26],[2,-10],[4,-37],[9,-42],[2,-25],[-9,-6],[5,-19],[14,-19],[3,-13],[1,-36],[1,-49],[1,-48],[1,-49],[1,-49],[1,-38],[-1,-7],[-32,-1],[-54,-1],[15,-27],[19,-47],[30,-75],[26,-63],[4,-13],[2,-14],[4,-88],[5,-120],[3,-88],[2,-63],[2,-67],[5,-26],[9,-4],[19,-2],[53,-4],[53,-4],[53,-4],[53,-4],[53,-4],[53,-4],[52,-4],[53,-3],[20,-2],[7,2],[5,6],[2,5],[4,15],[2,3],[12,-1],[3,-5],[2,-58],[-2,-8],[-6,-11],[0,-10],[5,-22],[-3,-22],[-28,-64],[-5,-18],[-2,-21],[1,-25],[6,-45],[1,-23],[-1,-4],[-2,-11],[-1,-5],[0,-7],[3,-30],[5,-18],[1,-10],[2,-42],[1,-9],[3,-10],[2,-13],[0,-53],[2,-23],[5,-17],[10,-12],[9,-2],[3,-2],[2,-3],[5,-9],[3,-4],[2,-1],[5,-2],[2,-2],[3,-9],[5,-19],[4,-7],[4,-2],[3,-1],[3,-2],[4,-5],[7,-17],[3,-4],[10,-9],[4,-4],[12,-20],[8,-7],[10,-6],[11,-1],[8,5],[6,2],[5,-2],[6,-5],[4,-8],[3,-13],[0,-15],[0,-14],[1,-9],[-1,-23],[1,-11],[2,-11],[3,-8],[4,-7],[4,-5],[4,-4],[-2,-19],[1,-7],[5,-12],[4,-15],[-1,-10],[-8,-2],[25,-92],[15,-72],[9,-36],[11,-13],[6,0],[5,-1],[2,-6],[0,-13],[-19,-1],[-6,-2],[-3,-7],[-5,-29],[-13,-85],[-13,-84],[-13,-85],[-13,-84],[-3,-20],[11,-2],[3,-5],[1,-12],[2,-35],[1,-26],[-15,-2],[-5,-6],[-6,-28],[-9,-36],[-19,-81],[-19,-80],[-9,-37],[-3,-15],[-7,-32],[-8,-32],[-3,-15],[-10,-42],[2,-16],[21,-39],[23,-41],[28,-52],[-3,-7],[-3,-10],[-4,-9],[-7,-6],[-7,4],[-4,1],[-2,-3],[-1,-5],[-2,-5],[-2,-3],[-4,-1],[-7,-6],[-8,-25],[-8,-6],[-1,-2],[-4,-10],[-1,-4],[-4,-4],[-12,-8]],[[33844,38528],[0,15],[4,31],[1,13],[-1,25],[1,13],[-1,18],[-5,34],[0,19],[1,20],[-1,8],[-3,7],[-11,14],[-26,32],[-26,33],[-26,32],[-26,32],[-26,33],[-25,32],[-26,33],[-26,32],[-14,18],[-8,11],[-9,12],[-5,3],[-23,-1],[-52,-1],[-52,-2],[-53,-1],[-52,-1],[-23,-1],[-42,-18],[-94,-41],[-94,-42],[-94,-41],[-94,-41],[-6,-2],[-13,-4],[-13,-4],[-6,-2],[-25,-7],[-4,-4],[-2,-7],[-5,-29],[-8,-44],[-8,-43],[-8,-44],[-8,-43],[-3,-15],[-4,-16],[-2,-7],[-1,-8],[-4,-15],[-5,-14],[-4,-15],[-5,-14],[-5,-14],[-12,-36],[-12,-36],[-13,-36],[-12,-36],[-6,-17],[-6,-17],[-10,-31],[-3,-16],[1,-54],[0,-52],[0,-57],[1,-86],[-1,-39],[-9,-61],[-9,-61],[-10,-67],[-10,-68],[-9,-63],[-13,-86],[-11,-67],[-12,-81],[-7,-52],[-8,-56],[-6,-30]],[[32597,37302],[-3,2],[0,4],[-1,5],[-1,6],[-3,7],[-12,16],[-13,13],[-4,8],[-2,11],[0,19],[-2,7],[1,5],[0,6],[-2,22],[-1,6],[-4,1],[-12,5],[-41,-4],[0,-1],[-88,1],[-87,1],[-11,-3],[-4,-5],[-13,-23],[-3,3],[-12,20],[-5,5],[-26,4],[-8,-3],[-4,-4],[0,-1],[-1,-4],[-2,-13],[-1,-12],[-1,-4],[-2,-5],[-3,-2],[-1,-1],[-2,-2],[-2,-10],[-5,-33],[-8,-44],[-2,-6],[-6,-6],[-2,-5],[-21,-107],[-6,-19],[-15,-27],[-4,-14],[-12,-89],[0,-43],[-2,-11],[-7,-46],[1,-7],[-6,4],[-1,28],[-3,8],[2,15],[-1,16],[-4,13],[-6,5],[-3,5],[-7,32],[-3,4],[-2,2],[-2,3],[-1,9],[0,7],[2,11],[0,6],[1,7],[2,5],[3,6],[0,9],[-15,30],[-4,11],[-2,13],[-1,4],[-5,7],[-2,4],[0,6],[3,11],[-1,7],[-4,6],[-5,8],[-4,11],[3,14],[3,8],[2,8],[0,10],[-2,12],[-3,7],[-7,18],[-3,4],[-5,2],[-7,6],[-5,8],[-6,2],[-2,2],[-2,-1],[-5,-5],[-3,-1],[-11,6],[-19,22],[-53,24],[-47,-1],[-74,-2],[-15,3],[-19,6],[-2,-1],[-2,-2],[-1,-3],[-2,-2],[-39,-9],[-8,6],[-8,11],[-36,84],[-6,7],[-26,9],[-1,3],[-3,28],[-9,19],[-12,12],[-23,15],[-5,-3],[-14,-98],[-2,-55],[-1,-9],[-2,-7],[-1,0],[-1,1],[-3,-1],[-3,-3],[-2,-5],[-2,-5],[-1,-6],[-7,-10],[-36,-22],[-33,-17],[-1,-3],[-1,-4],[0,-4],[-2,-1],[-4,3],[-6,1],[-3,3],[-3,0],[-4,-3],[-6,-11],[-4,-12],[-2,-14],[-3,-44],[-2,-13],[-4,-9],[0,-5],[1,-17],[0,-6],[-3,-5],[-31,-19],[-7,-8],[-6,-12],[-3,-8],[-3,-4],[-5,-2],[-6,1],[-5,-1],[3,-55],[-1,-13],[-3,-9],[-21,-33],[-8,-19],[-14,-47]],[[30446,39610],[-7,12],[-14,18],[-17,26],[-9,11],[-10,11],[-10,11],[-14,15],[-13,27],[-1,3],[-2,6],[-1,4],[-2,1],[-3,1],[-1,2],[-16,30],[-5,6],[-10,6],[-3,6],[-4,24],[-3,11],[-4,6],[-4,3],[-12,19],[-6,6],[-16,11],[-6,1],[-14,29],[-6,7],[-4,7],[-8,20],[-4,7],[-14,12],[-10,15],[-6,6],[-6,3],[-9,-3],[-1,-1],[-1,6],[2,7],[4,11],[2,14],[-1,12],[-2,12],[-2,59],[-2,11],[-3,24],[-2,20],[-1,2],[-2,2],[-2,2],[-7,21],[-10,14],[-1,2],[-4,18],[-4,7],[-5,3],[-11,4],[-6,5],[-3,3],[-5,9],[-4,7],[-2,1],[-46,24],[-10,10],[-9,15],[-13,31],[-7,13],[-15,19],[-6,5],[-6,4],[-18,2],[-2,3],[-2,5],[1,13],[-1,6],[-4,8],[-11,13],[-2,5],[-3,11],[-7,6],[-13,6],[-7,9],[-1,10],[0,12],[-2,11],[-16,37],[-6,10],[-3,2],[-3,0],[-2,0],[-3,4],[-3,9],[-2,3],[-2,2],[-2,1],[-6,9],[-3,2],[-11,4],[-17,15],[-29,-1],[-24,19],[-30,44],[-48,35],[-9,21],[-12,13],[-11,14],[-5,4],[-10,0],[-6,3],[-4,5],[-4,3],[-4,-4],[-3,8],[-3,25],[-3,5],[-2,3],[-8,4],[-16,16],[-17,8],[-32,23],[-22,7],[-7,-10],[0,15],[-5,8],[-2,6],[-2,4],[-10,7],[-20,18],[-8,11],[-18,25],[-19,29],[-8,15],[0,7],[1,7],[-2,9],[-3,8],[-8,8],[-24,27],[-4,2],[-12,4],[-5,6],[-3,9],[-1,6],[-4,4],[-6,5],[-11,-5],[-10,5],[-9,8],[-13,17],[-1,3],[-1,12],[0,6],[-2,5],[0,8],[-1,8],[-8,5],[-13,9],[-40,36],[-20,22],[-26,23],[-6,17],[-31,33],[-7,12],[-4,3],[-4,-2],[-2,-1],[-2,1],[-5,6],[-8,19],[-3,5],[-6,4],[-5,2],[-4,4],[-2,9],[-1,2],[-5,3],[-1,4],[1,2],[4,4],[5,3],[1,8],[-4,13],[-8,11],[-11,10],[-8,15],[6,0],[3,3],[1,6],[0,7],[-2,5],[-2,6],[-13,26],[-6,5],[-14,5],[-4,6],[-3,10],[-2,14],[-13,39],[-2,12],[-2,6],[-10,14],[-3,6],[-1,4],[1,19],[-1,4],[-13,20],[-22,23],[-8,8],[-6,6],[-6,9],[-12,21],[-14,14],[-1,3],[-3,3],[-2,3],[-3,1],[-3,3],[-2,5],[-2,7],[-1,5],[-2,4],[-2,3],[-12,13],[-4,8],[1,13],[-1,14],[-1,14],[-3,13],[-5,14],[-3,4],[-1,6],[1,6],[2,9],[-1,5],[-3,14],[-6,6],[-10,12],[-3,7],[-5,16],[-4,8],[-3,3],[-7,1],[-3,2],[-1,5],[-3,18],[7,2],[3,6],[0,6],[-2,7],[-3,11],[-1,7],[-2,12],[-4,11],[-4,5],[-5,3],[-2,8],[-2,9],[-2,8],[-3,4],[-10,8],[0,-13],[-6,-18],[-5,20],[2,15],[0,22],[-2,14],[2,4],[1,10],[3,4],[-2,7],[1,4],[1,7],[-3,7],[-1,10],[3,2],[0,15],[-1,10],[-5,6],[-1,8],[0,4],[1,4],[0,5],[-1,3],[-3,2],[-2,-3],[-1,-10],[-2,-5],[-3,3],[-5,-2],[-5,7],[-6,0],[0,16],[1,8],[4,19],[3,8],[-2,8],[3,4],[5,-2],[5,8],[5,0],[3,-1],[2,-7],[-3,-8],[-1,-8],[3,-5],[4,-4],[5,-8],[2,6],[0,13],[2,12],[4,26],[2,18],[0,12],[1,16],[3,20],[4,18],[4,49],[-2,45],[-2,21],[-7,42],[-15,42],[-9,18],[-17,49],[-23,60],[-9,21],[-2,15],[-4,13],[-3,26],[1,21],[-1,24],[-4,15],[-3,7],[-19,35],[-5,14],[-12,48],[-3,8],[1,16],[-1,5],[-2,6],[-4,9],[-9,25],[-12,17],[-5,8],[-4,16],[6,16],[2,22],[-2,22],[-10,17],[-8,30],[-26,31],[-16,14],[-3,0],[-1,3],[-5,10],[-2,6],[0,8],[1,5],[1,5],[0,6],[-4,23],[-10,15],[-7,5],[-5,3],[-12,3],[3,11],[3,8],[3,9],[1,15],[-2,39],[-2,14],[-2,17],[-1,6],[-5,14],[-1,13],[1,14],[-4,14],[0,6],[5,-2],[3,8],[-1,12],[-6,27],[-2,12],[-3,14],[-4,12],[-4,4],[-3,3],[-4,6],[-4,14],[-1,4],[2,5],[0,5],[-1,5],[-5,11],[-4,15],[-2,7],[-3,3],[-3,2],[-2,4],[-3,10],[-5,7],[-12,11],[-9,16],[-43,48],[-7,12],[-4,6],[1,8],[-1,13],[-1,12],[2,4],[-1,5],[2,5],[3,0],[3,-2],[3,4],[3,2],[1,9],[0,16],[-4,13],[-3,9],[2,7],[-6,13],[1,6],[-3,11],[2,5],[-3,11],[-5,14],[1,5],[3,5],[-2,12],[-3,10],[1,8],[-2,11],[-3,11],[-5,11],[-4,13],[1,10],[-7,12],[-5,9],[0,9],[1,5],[-5,14],[1,5],[-8,15],[-5,7],[-1,7],[-2,6],[-2,5],[-6,12],[-17,63],[0,7],[-3,14],[-6,9],[-7,13],[0,9],[-3,13],[-5,15],[-4,11],[-1,6],[3,5],[-1,7],[-3,6],[-10,15],[-1,11],[0,16],[-5,9],[-3,5],[0,10],[-2,12],[1,7],[-3,8],[-1,8],[-5,13],[-12,23],[-3,12],[-2,6],[0,6],[3,1],[1,3],[0,8],[-3,7],[1,3],[0,7],[0,5],[-5,13],[-1,14],[-1,6],[-3,8],[-1,7],[-3,2],[-1,3],[-1,1],[-1,3],[1,3],[2,4],[-1,6],[0,7],[0,7],[-1,10],[-2,5],[-1,10],[2,12],[2,8],[0,19],[-11,20],[-9,22],[-1,14],[-5,10],[-2,11],[-3,6],[-3,12],[-5,10],[-1,18],[2,17],[-5,6],[-2,10],[1,8],[-3,9],[-2,14],[3,8],[3,7],[-2,10],[-4,0],[-6,9],[-1,16],[1,10],[2,5],[2,3],[-3,3],[-3,7],[-2,3],[-2,7],[-3,3],[-4,-1],[-2,-3],[-7,15],[0,6],[-1,6],[-2,4],[-2,5],[2,4],[3,4],[3,2],[2,11],[0,12],[-2,14],[-5,7],[-6,4],[-4,-4],[-2,-3],[-1,-5],[1,-5],[0,-7],[2,-12],[-1,-7],[-3,2],[-3,16],[-6,13],[-4,9],[0,6],[-1,4],[2,2],[4,-3],[7,-4],[1,5],[2,7],[0,12],[-3,14],[-3,9],[-3,7],[-4,0],[-5,-1],[-3,4],[-2,9],[0,10],[2,10],[1,6],[-2,5],[-7,5],[0,7],[2,-2],[2,4],[0,13],[-2,15],[-2,9],[-3,13],[-2,8],[-4,11],[-6,16],[-13,37],[0,5],[0,6],[2,5],[4,5],[0,17],[-1,13],[1,9],[-2,16],[-3,23],[-8,24],[-9,23],[-11,22],[-6,10],[-9,7],[-4,7],[-3,9],[1,7],[3,0],[2,-2],[3,5],[2,13],[-1,12],[-17,53],[0,13],[-7,20],[1,8],[-9,22],[-29,54],[0,14],[-17,24],[-32,51],[-14,35],[-9,27],[-4,25],[-13,32],[-4,7],[-2,6],[1,4],[4,3],[3,6],[0,12],[-3,14],[-10,34],[-20,58],[-8,19],[0,14],[-2,11],[1,6],[3,6],[1,8],[-3,18],[-3,15],[0,11],[-5,27],[-9,21],[-11,23],[-3,9],[1,12],[1,16],[-5,14],[-30,63],[-14,30],[-3,12],[-15,27],[-4,19],[-1,19],[-5,19],[-6,18],[-5,10],[-32,53],[-14,19],[-35,44],[-45,48],[-75,79],[-17,18],[-17,36],[-21,29],[-24,30],[-24,40],[-9,22],[-5,35],[0,23],[0,26],[0,6],[6,10],[1,11],[2,4],[6,1],[3,14],[0,9],[3,8],[5,-1],[5,-18],[8,-8],[11,-8],[8,-3],[11,21],[10,42],[3,55],[-7,46],[-14,65],[-9,20],[-26,53],[-4,13],[-7,3],[-3,-2],[-7,10],[-6,19],[-7,17],[-5,18],[1,6],[2,5],[3,3],[3,12],[-1,7],[-3,6],[1,8],[4,2],[-2,10],[-1,13],[3,9],[4,-2],[5,6],[4,-10],[9,2],[4,13],[1,21],[-6,28],[-9,20],[-9,14],[-6,21],[-5,18],[-9,26],[-23,51],[-9,25],[1,8],[4,4],[4,9],[-1,11],[-2,14],[2,30],[0,9],[-1,11],[-3,12],[-2,12],[1,8],[3,6],[2,3],[2,3],[2,7],[4,20],[0,14],[-4,33],[1,11],[4,14],[3,13],[4,8],[24,36],[6,13],[5,20],[4,9],[5,4],[5,3],[3,6],[5,19],[15,48],[8,20],[11,17],[11,14],[4,8],[2,13],[1,13],[2,12],[5,21],[7,20],[10,17],[44,56],[8,17],[12,36],[2,13],[2,2],[3,1],[2,3],[4,3],[20,-1],[5,2],[6,6],[4,7],[2,11],[1,6],[4,14],[1,6],[0,6]],[[27683,48460],[2,-2],[4,-5],[11,-6],[4,-6],[-1,-11],[-2,-12],[1,-13],[2,-3],[4,-4],[2,-4],[1,-5],[0,-6],[-1,-12],[-2,-16],[0,-4],[2,-4],[3,-2],[2,-2],[1,-6],[0,-7],[1,-11],[1,-6],[-1,-6],[-2,-12],[0,-5],[0,-6],[0,-5],[2,-11],[0,-5],[-1,-5],[-1,-4],[0,-5],[1,-12],[6,-19],[2,-12],[0,-5],[0,-11],[1,-5],[2,-6],[3,-3],[2,-4],[0,-1],[0,-5],[-5,-11],[-21,-21],[-4,-10],[-4,-14],[-5,-12],[-6,-6],[-5,2],[-12,13],[-6,4],[-5,1],[-6,-1],[-5,-3],[-4,-6],[-3,-10],[-3,-14],[-3,-15],[0,-1],[0,-11],[1,-7],[5,-13],[1,-8],[0,-5],[-1,-12],[0,-5],[6,-26],[10,-3],[12,8],[13,3],[-3,-13],[-37,-104],[-1,-10],[2,-12],[4,-7],[12,-15],[5,-4],[5,0],[2,1],[3,5],[11,13],[22,35],[4,10],[2,9],[3,21],[2,8],[3,4],[2,3],[3,2],[12,4],[1,0],[1,-6],[5,-3],[6,-3],[4,-3],[5,-9],[9,-21],[6,-9],[7,-8],[8,-2],[7,0],[7,-4],[7,-14],[6,-19],[7,-15],[10,-3],[19,12],[9,12],[11,3],[7,-8],[14,-30],[2,-2],[4,-6],[2,-2],[7,0],[5,-7],[2,-6],[-1,-8],[-6,-24],[0,-13],[8,-25],[3,-36],[7,-29],[1,-11],[2,-13],[5,-8],[6,-7],[4,-7],[2,-5],[2,-12],[1,-5],[3,-4],[5,-4],[3,-4],[3,-11],[3,-12],[4,-10],[6,-4],[13,1],[7,0],[5,-1],[9,-7],[5,-2],[3,0],[4,2],[3,-1],[3,-3],[3,-4],[6,-11],[8,14],[7,16],[2,13],[3,29],[3,9],[5,3],[8,0],[6,3],[3,12],[-1,14],[-7,27],[0,16],[3,16],[5,16],[13,25],[12,13],[25,22],[3,4],[8,11],[2,10],[1,11],[-1,12],[1,11],[4,13],[4,12],[1,9],[-7,9],[-3,11],[-2,22],[-1,22],[3,13],[5,9],[2,11],[3,26],[17,76],[3,26],[0,35],[1,10],[3,6],[3,2],[3,0],[4,3],[4,4],[1,3],[0,4],[3,44],[2,11],[2,11],[2,3],[3,3],[3,3],[6,15],[2,11],[-3,38],[0,8],[0,3],[1,1],[4,1],[2,3],[0,6],[-1,12],[0,22],[0,11],[2,12],[5,24],[1,3],[3,24],[2,25],[1,7],[-2,11],[0,4],[3,11],[4,3],[6,-1],[12,-8],[4,-6],[2,-8],[4,-38],[2,-11],[4,4],[4,7],[5,3],[5,3],[2,13],[0,16],[-4,8],[-4,7],[-4,11],[0,13],[4,8],[10,16],[3,11],[9,35],[4,9],[13,24],[28,80],[21,38],[5,5],[11,8],[7,6],[35,26],[35,26],[35,26],[35,26],[35,26],[35,26],[35,26],[35,26],[25,20],[5,5],[12,16],[16,26],[16,27],[17,27],[16,27],[17,27],[17,27],[16,27],[17,27],[16,27],[14,34],[14,35],[14,34],[14,35],[14,34],[14,35],[13,34],[14,34],[11,28],[16,30],[4,12],[2,5],[4,21],[4,34],[8,70],[9,70],[8,69],[8,70],[4,30],[1,5],[8,-16],[4,-9],[2,-6],[3,-5],[6,0],[12,3],[13,0],[2,0],[0,4],[-2,6],[-2,5],[-3,7],[0,5],[0,11],[0,5],[-12,89],[0,8],[2,10],[0,6],[0,6],[-1,11],[0,6],[1,7],[3,4],[3,4],[3,6],[0,5],[0,4],[-1,5],[0,5],[1,23],[-1,11],[-3,10],[-1,1],[-3,-3],[-1,1],[-2,3],[-1,7],[-1,2],[-11,18],[-1,4],[-2,2],[-3,-1],[-3,1],[-3,4],[-5,11],[-8,23],[-5,25],[-9,67],[-3,9],[-5,6],[-6,4],[-3,3],[-6,12],[-3,4],[-3,1],[-6,-1],[-3,2],[-2,6],[-3,11],[-1,13],[1,11],[4,3],[5,-3],[5,-5],[5,-1],[5,1],[4,0],[3,-2],[20,-23],[7,-1],[8,10],[2,1],[9,-3],[5,0],[4,3],[3,4],[6,9],[4,9]],[[29088,50406],[4,3],[4,8],[4,8],[1,8],[1,11],[3,6],[4,2],[6,-1],[12,-7],[6,-6],[5,-9],[11,-32],[3,-7],[3,-2],[5,0],[2,-2],[2,-2],[11,-27],[4,-6],[6,-5],[9,-5],[5,-3],[3,0],[3,5],[7,24],[3,2],[6,-11],[4,-12],[9,-41],[-7,-12],[-2,-8],[4,-4],[3,-1],[6,-3],[7,-1],[1,-2],[2,-2],[2,-4],[1,-2],[1,-3],[1,-3],[4,0],[2,1],[1,3],[3,3],[3,1],[2,-4],[8,-28],[12,-27],[7,-12],[17,-21],[3,-6],[4,-9],[2,-8],[2,-2],[4,0],[1,-3],[1,-6],[0,-6],[1,-6],[13,-61],[-1,-4],[-3,-6],[-2,-6],[0,-11],[2,-9],[10,-22],[1,-2],[3,-2],[5,0],[2,-2],[-2,-10],[1,-7],[3,-6],[2,-8],[-2,-6],[-4,0],[-4,2],[-4,-2],[-2,-7],[2,-5],[7,-10],[3,-8],[4,-27],[6,-17],[7,-9],[17,-6],[17,-14],[7,1],[5,17],[3,-6],[6,-42],[2,-5],[2,-4],[3,-3],[2,1],[2,3],[3,3],[1,3],[1,4],[1,1],[2,-4],[1,-5],[-3,-10],[0,-5],[4,-5],[9,5],[4,-4],[2,-5],[4,-24],[5,-17],[3,-6],[4,-5],[7,-6],[5,-2],[3,0],[5,6],[4,15],[4,3],[3,-11],[3,-9],[6,-6],[6,-2],[3,-2],[6,-9],[6,-4],[2,-5],[0,-6],[2,-10],[1,-6],[0,-3],[1,0],[4,1],[1,-1],[1,-4],[0,-5],[1,-13],[0,-4],[2,-5],[1,-4],[5,-4],[-2,-6],[-4,-11],[2,-9],[11,-11],[3,-10],[6,-9],[2,-7],[0,-5],[0,-7],[1,-8],[3,-24],[-1,-12],[-6,-8],[-3,-9],[-3,-20],[-1,-23],[6,-14],[18,-24],[0,-2],[1,-8],[1,-2],[1,0],[3,1],[4,-1],[3,0],[3,-1],[4,-5],[7,-13],[2,-1],[3,7],[4,9],[4,1],[10,-5],[1,2],[1,16],[3,0],[8,-18],[2,-4],[3,-2],[2,-4],[2,-6],[-2,-22],[2,-8],[6,-17],[2,-10],[-1,-5],[-3,-15],[0,-8],[1,-10],[2,-7],[5,-16],[2,-11],[1,-13],[2,-13],[4,-7],[-8,-29],[-3,-13],[-10,-19],[-2,-7],[-1,-4],[-1,-5],[1,-6],[3,-9],[0,-4],[1,-3],[4,-6],[1,-3],[1,-18],[1,-4],[4,-7],[12,-6],[3,-6],[2,-12],[3,7],[4,13],[0,7],[19,-23],[1,-3],[4,-8],[5,-27],[3,-10],[2,-4],[2,0],[12,5],[4,3],[3,7],[8,6],[7,8],[5,-4],[7,-11],[1,7],[1,6],[2,4],[4,4],[1,-5],[1,-5],[1,-6],[1,-15],[2,-2],[4,4],[4,7],[7,32],[4,9],[5,-1],[5,-6],[12,-22],[6,-3],[28,-10],[3,-4],[1,-7],[4,-8],[5,-5],[5,-3],[6,1],[11,7],[6,1],[3,2],[1,4],[-1,12],[2,2],[7,4],[3,0],[18,-9],[4,3],[12,30],[8,14],[8,7],[9,0],[17,-5],[5,2],[3,8],[2,13],[2,4],[13,22],[10,33],[1,6],[3,0],[16,22],[6,6],[2,-3],[0,-21],[2,-10],[6,2],[9,10],[7,-3],[5,-7],[5,-8],[6,-7],[16,-7],[3,-5],[1,-11],[1,-25],[2,-9],[4,-4],[2,7],[3,22],[4,8],[3,-2],[5,-18],[6,-18],[1,-6],[-1,-5],[-3,-8],[-2,-4],[4,-12],[9,4],[20,20],[2,-8],[5,3],[6,6],[4,4],[3,-2],[3,-5],[3,-2],[3,1],[6,9],[7,9],[6,28],[6,6],[8,3],[3,0],[7,-9],[4,-2],[3,1],[3,3],[-3,15],[0,13],[3,9],[7,-1],[12,-10],[7,-3],[6,5],[8,-11],[15,-32],[9,-14],[11,-8],[5,-2],[7,-2],[1,-3],[1,-5],[0,-17],[1,-1],[9,-16],[2,-6],[0,-6],[0,-8],[0,-8],[2,-3],[12,0],[2,3],[0,5],[0,7],[1,6],[5,6],[3,-5],[4,-8],[4,-5],[5,-1],[5,-4],[5,-5],[3,-6],[2,-6],[1,-7],[1,-5],[4,-3],[2,1],[7,6],[3,1],[6,0],[6,-1],[3,-6],[-1,-13],[-1,-2],[-5,-3],[-1,-3],[0,-5],[1,-6],[2,-4],[1,-2],[7,4],[6,7],[5,4],[6,-6],[4,-11],[4,-25],[3,-11],[5,-4],[4,4],[5,3],[6,-9],[0,-6],[0,-6],[1,-5],[2,-3],[3,1],[1,5],[2,7],[1,5],[6,8],[3,-4],[3,-26],[2,-9],[3,-7],[3,-6],[1,-1],[-6,-21],[-22,-73],[-22,-72],[-21,-73],[-22,-72],[-22,-73],[-22,-72],[-22,-73],[-21,-72],[-10,-31],[12,-3],[38,-42],[3,-4],[15,-8],[7,0],[7,6],[11,21],[6,8],[8,2],[11,-8],[10,-16],[9,-21],[7,-20],[3,-21],[2,-21],[3,-19],[7,-16],[28,-31],[9,-14],[5,-14],[5,-15],[8,-33]],[[30565,47961],[1,-17],[-3,-15],[-5,-15],[-9,-14],[-4,-1],[-4,2],[-3,5],[-4,8],[-1,4],[-2,15],[-3,10],[-5,5],[-6,-1],[-5,-6],[-4,-11],[-5,-22],[-5,-10],[-3,8],[-2,9],[-2,6],[-2,1],[-3,0],[-2,2],[-14,23],[-3,8],[0,10],[2,23],[0,12],[-2,8],[-4,8],[-3,2],[-5,-17],[-4,2],[-6,14],[-5,4],[-4,0],[-4,-2],[-5,-4],[-11,-19],[-4,-3],[-3,4],[-1,8],[-1,9],[-4,4],[-5,-5],[-2,-10],[-1,-11],[-2,-6],[-13,16],[-1,9],[1,11],[0,8],[-4,2],[-5,-4],[-2,-6],[-3,-18],[-4,-5],[-5,0],[-17,10],[-3,-1],[-13,-13],[-4,-7],[0,-8],[2,-15],[-1,-5],[-4,-3],[-4,-5],[-3,-8],[-1,-11],[-3,-10],[-8,-17],[-4,-10],[-2,-11],[-6,-12],[-6,11],[-4,11],[-1,-13],[-6,-10],[-14,13],[-7,-6],[-4,-13],[-2,-3],[-5,1],[-2,5],[-3,13],[-2,4],[-4,-6],[-4,-13],[-4,-9],[-8,18],[-6,2],[-7,-3],[-4,-8],[-1,-7],[1,-6],[0,-6],[-3,-8],[-1,1],[-2,1],[-1,1],[-2,-2],[-3,-7],[-1,-2],[-3,-3],[-3,3],[-1,7],[-3,4],[-4,1],[-13,-4],[-8,0],[-4,-1],[-4,-4],[-2,-5],[-2,-13],[-1,-4],[-2,1],[-7,3],[-4,-1],[-13,-11],[1,12],[-3,-2],[-5,-12],[-4,-2],[-2,-1],[-2,3],[-3,6],[-5,7],[-3,-2],[-3,-5],[-5,-2],[-3,2],[-7,7],[-3,0],[-2,-2],[-1,-4],[0,-4],[-1,-3],[-2,-1],[-23,-5],[-5,-3],[-7,-11],[-13,-27],[-8,-6],[-5,-8],[-2,-4],[-2,-1],[-3,2],[-3,3],[-2,0],[-2,-4],[-5,-22],[-3,-9],[-6,-9],[-15,-18],[-14,-22],[-5,-7],[-5,-3],[-4,0],[-10,3],[-4,-2],[-1,-4],[-1,-5],[-1,-3],[-12,-6],[-3,-7],[-2,-33],[-2,-9],[-5,-7],[-6,-7],[-2,0],[-3,-1],[-2,-1],[0,-3],[-1,-4],[0,-3],[0,-2],[-1,-5],[-1,-6],[-2,-3],[-4,0],[-5,-2],[-5,-5],[-4,-7],[-7,-15],[-8,-8],[-4,-8],[-1,-6],[0,-6],[-1,-5],[-2,-5],[-3,-2],[-15,0],[-6,4],[-5,1],[-3,-6],[-4,-9],[-5,-5],[-11,-5],[-2,1],[-3,2],[-2,0],[0,-3],[-1,-9],[0,-2],[-4,-5],[-2,-1],[-4,0],[-6,-4],[-1,-8],[2,-11],[2,-8],[2,-10],[1,-36],[0,-9],[-3,-9],[-3,-8],[-2,-8],[-2,-26],[-1,-9],[-8,-36],[-3,-19],[2,-20],[2,-19],[0,-17],[-5,-54],[-3,-18],[-3,-16],[-29,-82],[-10,-19],[-16,-75],[-6,-20],[-4,-23],[0,-27],[2,-14],[14,-32],[1,-11],[3,-47],[2,-14],[6,-27],[2,-13],[0,-13],[-2,-13],[-4,-25],[-7,-24],[-7,-17],[-10,-11],[-12,-7],[-20,0],[-6,-4],[-10,-19],[-11,-14],[-19,-35],[-22,-27],[-14,-24],[-8,-10],[-3,-6],[-4,-15],[-2,-8],[-12,-15],[-3,-7],[-2,-10],[0,-33],[-7,-53],[-4,-17],[-2,-15],[2,-9],[1,-5],[19,-58],[3,-25],[2,-11],[1,-11],[-3,-12],[-5,-6],[-5,-2],[-11,1],[-7,-1],[-5,-3],[-10,-13],[-7,-5],[-5,1],[-11,9],[-6,0],[1,-11],[8,-28],[2,-16],[-2,-9],[-2,-9],[0,-13],[-4,-13],[-4,-3],[-9,-9],[2,-10],[12,-14],[36,-81],[8,-11],[8,-8],[11,-6],[8,-15],[3,-23],[-3,-23],[-9,-12],[-10,7],[-4,0],[0,-10],[3,-29],[2,-8],[8,-13],[12,-10],[10,-12],[5,-19],[2,-14],[9,-26],[3,-14],[0,-11],[-1,-22],[0,-11],[4,-14],[8,-23],[2,-15],[2,-24],[2,-12],[4,-8],[22,-25],[3,-6],[4,-12],[3,-6],[3,-2],[6,-2],[2,-2],[4,-8],[2,-11],[0,-12],[-2,-26],[0,-12],[2,-9],[11,-33],[5,-10],[6,-7],[16,-7],[6,-6],[4,-10],[4,-11],[4,-25],[22,-66],[4,-8],[10,-14],[4,-8],[8,-25],[1,-9],[3,-50],[-1,-18],[-2,-11],[-3,-7],[-13,-22],[0,-16],[-2,-7],[-3,-5],[-5,-2],[-4,-2],[-3,-4],[-3,-9],[-5,-19],[-6,-18],[-15,-32],[-6,-19],[112,-2],[34,-14],[1,-1],[2,-5],[2,-1],[1,1],[2,3],[1,1],[6,-3],[11,-7],[12,-12],[5,-3],[12,-3],[17,2],[6,-2],[5,-6],[8,-15],[5,-7],[3,0],[3,1],[3,-1],[1,-5],[1,-5],[-1,-18],[1,-12],[3,-10],[7,-19],[2,-11],[-1,-11],[-3,-22],[3,-23],[20,-25],[5,-24],[1,-7],[2,-12],[1,-6],[0,-7],[-5,-11],[-1,-6],[-1,-13],[1,-10],[-1,-10],[-3,-13],[15,0],[50,0],[49,0],[50,0],[49,0],[11,-1],[5,3],[2,5],[2,4],[1,4],[4,1],[3,-3],[2,-3],[2,-3],[4,0],[6,6],[9,17],[14,9],[4,12],[2,13],[4,13],[4,8],[19,17],[17,10],[5,8],[2,7],[4,15],[2,7],[3,5],[7,10],[4,5],[8,25],[4,11],[14,15],[6,10],[10,22],[6,9],[18,22],[5,11],[10,25],[6,11],[5,5],[6,3],[11,3],[1,-8],[-1,-2],[-3,-10],[0,-10],[-2,-8],[-5,-4],[1,-2],[0,-5],[1,-2],[-3,-2],[-3,-6],[0,-7],[3,-14],[-2,-2],[-4,2],[-1,1],[-8,-1],[-1,0],[3,-11],[2,-20],[1,-10],[3,-9],[9,-14],[3,-9],[2,-12],[-1,-11],[-2,-10],[-3,-10],[-1,-4],[-1,-7],[-1,-3],[-2,-1],[-3,4],[-1,0],[-3,-3],[-3,-4],[-2,-6],[-1,-6],[-3,-24],[0,-35],[0,-26],[0,-49],[0,-76],[0,-75],[0,-76],[-1,-75],[0,-75],[0,-76],[0,-75],[0,-48],[24,40],[6,3],[7,-14],[13,-31],[7,-13],[13,-14],[14,-5],[14,2],[14,6],[11,8],[67,72],[12,-1],[5,-3],[6,-1],[11,2],[7,-2],[5,-4],[11,-14],[9,-4],[34,8],[6,0]],[[28834,42023],[2,-7],[1,-5],[3,-3],[-1,-4],[-4,1],[-4,7],[-4,4],[0,7],[3,2],[4,-2]],[[28765,42279],[2,-2],[0,-6],[-1,-6],[-3,-1],[-3,0],[-2,1],[1,7],[2,5],[1,7],[3,-1],[0,-4]],[[28546,43324],[11,-20],[2,-6],[1,-4],[-3,2],[-3,-1],[-4,6],[-5,7],[-3,9],[-2,8],[3,3],[3,-4]],[[27543,46690],[-1,-4],[-2,-10],[1,-8],[3,-6],[0,-7],[0,-10],[0,-10],[-3,-1],[-3,1],[-1,5],[1,6],[-1,9],[-3,5],[2,5],[1,9],[4,20],[2,-4]],[[32597,37302],[3,-1],[2,-3],[2,-3],[1,-5],[-2,0],[2,-8],[-1,-6],[-2,-5],[0,-5],[2,-6],[3,-3],[4,-3],[3,0],[7,-4],[4,-8],[7,-17],[4,-3],[11,-7],[2,-4],[2,-9],[5,-10],[19,-26],[6,-4],[2,-1],[10,-2],[3,-2],[2,-3],[0,-2],[1,-3],[0,-7],[0,-4],[2,-1],[2,0],[1,-1],[6,-14],[3,-10],[-2,-10],[-4,-11],[0,-8],[4,-6],[7,-6],[3,-1],[2,0],[1,-1],[1,-6],[-2,-13],[0,-8],[6,-7],[-4,-14],[1,-3],[4,-2],[2,-5],[1,-7],[2,-6],[7,-16],[1,-5],[1,-5],[1,-5],[2,-2],[0,-2],[3,-4],[3,-4],[1,0],[1,-7],[3,-7],[5,-12],[4,-12],[6,-22],[3,-9],[0,-5],[-1,-14],[1,-3],[0,-3],[4,-11],[10,-22],[31,-37],[2,-4],[6,-18],[3,-6],[7,-7],[3,-5],[3,-7],[1,-6],[1,-7],[0,-11],[1,-10],[4,-5],[4,-4],[4,-5],[4,-10],[2,-3],[4,-2],[13,0],[4,-4],[14,-29],[3,-2],[3,-1],[5,-1],[-1,-4],[-2,-7],[0,-6],[4,-6],[3,-14],[3,-3],[6,-1],[5,-1],[4,-4],[4,-6],[4,-6],[2,-4],[4,-2],[7,-1],[18,-15],[2,-8],[2,-9],[3,-8],[5,-4],[3,-2],[5,-11],[3,-3],[2,0],[5,0],[2,0],[4,-6],[3,-8],[4,-7],[5,-4],[4,-5],[1,-12],[-1,-13],[-3,-10],[3,-5],[5,-16],[7,-8],[4,-11],[4,-13],[0,-8],[2,-3],[4,-13],[2,-5],[9,-11],[11,6],[10,-10],[9,-15],[8,-10],[6,-1],[8,0],[16,1],[3,-1],[6,-10],[2,-1],[13,1],[3,-1],[3,-2],[5,-5],[3,-1],[0,-4],[5,-18],[1,-2],[10,0],[5,-5],[9,-13],[17,-7],[10,1],[3,-1],[3,-3],[5,-10],[3,-3],[3,-1],[9,1],[21,-7],[21,2],[7,3],[13,9],[6,1],[5,-3],[100,-129],[10,-21],[5,-13],[2,-4],[3,-2],[7,-2],[5,-5],[5,-2],[2,-3],[3,-7],[3,-4],[6,-8],[6,-5],[2,-3],[1,-4],[1,-5],[1,-5],[6,-6],[11,-18],[3,-6],[5,-21],[5,-11],[9,-7],[4,-8],[2,-2],[5,-1],[2,-3],[1,-4],[3,-5],[11,-7],[8,-11],[7,-5],[10,-13],[6,-4],[5,0],[2,-1],[2,-3],[6,-11],[3,-4],[9,-4],[53,-78],[6,-3],[14,-1],[4,-2],[2,-3],[2,-2],[2,-3],[0,-5],[2,-2],[61,-24],[6,-6],[4,-6],[6,-18],[18,-39],[2,-6],[1,-5],[1,-3],[4,-2],[3,1],[3,4],[4,4],[8,16],[4,7],[5,0],[25,-33],[3,-9],[4,0],[19,-19],[3,0],[6,1],[2,-1],[2,-5],[1,-7],[2,-6],[4,-2],[22,0],[5,-4],[4,-7],[13,-28],[4,-6],[9,-8],[3,-8],[9,-38],[5,-15],[9,-11],[0,-1],[8,-41],[0,-7],[18,-26],[3,-9],[2,-7],[1,-10],[-4,-51],[-1,-11],[-4,-7],[-4,-1],[-3,-5],[-1,-13],[-2,-4],[-4,0],[-8,2],[-1,-3],[-1,-13],[-1,-5],[-3,-3],[-3,-1],[-3,1],[-3,-1],[-6,-5],[-3,-6],[-6,-17],[2,-5],[2,-4],[3,-2],[3,-1],[-3,-8],[-5,-9],[-5,-8],[-5,-4],[-5,-5],[1,-11],[5,-20],[-3,-8],[-2,-3],[-4,-5],[-6,-6],[-6,-5],[-1,-4],[1,-4],[7,-4],[0,-7],[-2,-6],[-1,-5],[-10,-15],[-2,-9],[13,-8],[0,-8],[-4,-9],[-32,-46],[-9,-11],[-18,-12],[-3,-6],[-3,-20],[-2,-12],[-3,-6],[-1,4],[-1,3],[-3,3],[-2,2],[0,-11],[3,-6],[5,-4],[4,-6],[0,-8],[-5,-7],[-6,-5],[-4,-2],[-3,-4],[0,-10],[2,-19],[-1,-9],[-1,-9],[-10,-31],[-2,-10],[1,-7],[7,-12],[-1,-7],[-4,-5],[-1,-5],[0,-10],[-2,-9],[-1,-9],[1,-10],[2,-4],[6,-9],[2,-4],[2,-8],[2,-4],[-2,-3],[-5,-7],[-1,-2],[0,-7],[2,-5],[1,-5],[1,-5],[-2,-4],[-3,0],[-9,3],[-1,2],[-1,-1],[-1,-6],[-2,-12],[0,-46],[-1,-3],[-2,-1],[-4,0],[-4,-2],[0,-6],[2,-7],[1,-5],[-4,-7],[-4,1],[-5,3],[-5,-3],[-3,-13],[3,-8],[5,-7],[2,-11],[-4,-6],[-13,-2],[-2,-5],[-3,-8],[-6,-4],[-12,-7],[-5,-5],[-2,-8],[1,-8],[4,-7],[-2,-8],[-5,-12],[-3,-8],[-1,-5],[0,-4],[0,-10],[-2,-3],[-2,1],[-2,3],[0,1],[0,3],[-1,4],[-1,2],[-3,-2],[-2,-5],[-1,-4],[-1,-5],[-1,-5],[0,-10],[1,-10],[-2,-6],[-14,-4],[-6,-8],[-4,-12],[-1,-17],[1,-7],[4,-8],[7,-9],[3,-12],[1,-12],[-1,-29],[1,2],[25,20],[75,13],[31,-8],[4,1],[17,5],[8,0],[6,-2],[16,-7],[9,-7],[3,-1],[13,-5],[12,-8],[28,-11],[3,-3],[46,-43],[4,-3],[2,-1],[7,-2],[28,8],[7,0],[1,-1],[6,-3],[3,-3],[4,-8],[2,-4],[3,-3],[3,-1],[12,-7],[3,-3],[8,-12],[2,-3],[3,-2],[7,0],[2,-1],[11,-1],[9,4],[28,29],[10,8],[10,2],[10,-8],[17,-32],[10,-12],[10,4],[14,21],[13,7],[7,4],[18,-6],[11,-26],[6,-16],[7,-16],[8,-13],[9,-7],[9,4],[5,14],[4,19],[5,15],[6,11],[3,12],[1,13],[-1,16],[1,13],[7,7],[8,4],[6,5],[10,23],[5,7],[8,8],[7,-1],[6,-3],[1,0],[18,-14],[6,-2],[6,0],[1,1],[7,1],[6,1],[6,-4],[4,-12],[4,-22],[3,-6],[3,-3],[7,-4],[17,-18],[11,16],[10,22],[7,12],[7,2],[6,6],[5,10],[2,14],[1,8],[-1,5],[0,4],[3,12],[1,6],[-1,7],[-1,6],[-7,25],[1,9],[7,3],[5,5],[1,10],[1,13],[4,9],[5,1],[8,-1],[7,1],[3,9],[0,28],[2,12],[3,11],[5,10],[5,6],[5,3],[13,3],[14,15],[7,0],[6,-5],[5,-5],[4,-3],[11,-1],[6,2],[5,7],[1,13],[-4,24],[2,10],[18,34],[6,4],[13,2],[5,5],[4,9],[2,8],[2,11],[4,27],[3,12],[5,8],[6,4],[13,0],[2,-3],[1,-3],[2,-1],[2,3],[4,9],[3,13],[1,15],[0,13],[-1,11],[-1,9],[-1,8],[3,11],[4,9],[8,13],[8,18],[3,9],[1,9],[3,36],[1,4],[0,3],[4,18],[0,27],[0,12],[0,3],[0,1],[2,8],[4,9],[1,6],[-1,8],[-5,12],[-1,9],[6,38],[0,13],[-3,19],[-1,18],[-1,6],[0,6],[1,6],[3,2],[6,1],[3,2],[2,9],[0,11],[-2,26],[1,10],[3,9],[3,11],[0,13],[-1,7],[-7,15],[-1,8],[-1,12],[-5,31],[0,16],[3,5],[9,-1],[5,5],[-1,12],[-5,19],[1,11]],[[34833,35324],[11,3],[4,-3],[2,-7],[0,-9],[2,-5],[6,2],[5,-4],[5,-7],[4,-10],[1,-12],[0,-6],[1,-6],[1,-4],[3,2],[1,6],[-1,12],[0,6],[2,5],[5,6],[2,4],[1,6],[0,6],[0,6],[2,5],[2,3],[3,-1],[5,-4],[3,1],[4,13],[3,4],[7,1],[4,-2],[3,-8],[3,-12],[2,-5],[1,3],[2,9],[2,1],[2,0],[5,-3],[6,0],[-1,11],[-6,19],[2,2],[3,-1],[5,-4],[4,1],[3,3],[7,17],[2,2],[1,1],[2,0],[1,-3],[-1,-11],[-3,-10],[-1,-10],[0,-11],[2,-6],[2,-5],[3,-4],[3,0],[1,4],[0,6],[-1,7],[0,5],[2,6],[3,-4],[4,-9],[4,2],[1,2],[2,1],[4,-1],[5,-6],[4,-9],[2,-10],[0,-12],[3,-16],[5,2],[11,13],[3,-6],[3,-13],[3,-22],[-1,-5],[-1,-4],[-1,-6],[1,-7],[2,-7],[5,-10],[2,-5],[3,-11],[1,-11],[-1,-35],[3,-31],[0,-6],[-1,-6],[-1,-5],[1,-8],[2,-6],[9,-16],[8,-17],[3,-18],[2,-19],[4,-21],[13,-36],[5,-19],[2,-24],[-4,-19],[-11,-32],[-3,-18],[3,-55],[0,-18],[-4,-7],[-2,-4],[0,-4],[0,-6],[1,-6],[1,-4],[1,2],[-1,-10],[-4,-21],[0,-11],[1,-22],[0,-11],[-2,-11],[-2,-3],[-3,-1],[-2,-2],[-1,-6],[2,-7],[2,-4],[2,-2],[2,-2],[0,-6],[-2,-8],[0,-6],[1,-1],[4,0],[1,-1],[3,-22],[3,-35],[0,-19],[-4,-21],[-12,-49],[-1,-4],[-2,-2],[-5,-1],[-1,-2],[-1,-8],[0,-17],[0,-8],[-2,-4],[-4,-5],[-1,-3],[0,-4],[3,-6],[0,-5],[-3,-10],[-3,-4],[-2,4],[-3,9],[-3,9],[-4,4],[-2,-4],[-2,-19],[-3,-6],[-5,2],[-3,6],[-4,4],[-3,-3],[-1,-8],[1,-8],[0,-6],[-5,-3],[-2,1],[-1,2],[-2,2],[-2,-1],[-1,-3],[-2,-11],[-21,-43],[-10,-2],[-8,5],[0,13],[-2,4],[-4,5],[-3,-11],[-8,-40],[-1,-5],[-2,-3],[-1,-5],[1,-12],[-1,-5],[-2,-2],[-3,-1],[-3,-2],[-1,-6],[-1,-5],[-2,-6],[-2,-4],[-1,-3],[-6,0],[-4,5],[-3,8],[-4,7],[1,-19],[-1,-5],[-2,-6],[-2,-5],[-3,0],[-1,5],[-1,14],[-2,6],[-5,3],[-11,-1],[-4,-2],[-1,-7],[4,-13],[0,-8],[-6,-7],[-18,-10],[-2,0],[-3,3],[-1,3],[-3,11],[-1,2],[-2,1],[-2,1],[-1,0],[-3,-4],[-1,-5],[-2,-7],[-1,-10],[-3,-11],[-4,-7],[-3,0],[-2,11],[-1,3],[-1,-1],[-2,-3],[-1,-6],[0,-9],[0,-4],[-2,-3],[-2,-3],[-3,-1],[-6,2],[-3,-1],[-11,-7],[-2,1],[0,1],[-2,4],[-1,1],[-1,2],[1,3],[1,3],[0,2],[-1,7],[-4,-2],[-4,-6],[-2,-5],[-2,-12],[-1,-15],[-2,-12],[-6,-6],[-7,0],[-2,-1],[1,-23],[-2,-25],[-1,-14],[-2,-6],[-6,-4],[-14,-24],[-7,-2],[-5,3],[-5,5],[-5,2],[-5,-4],[3,-10],[9,-14],[4,-13],[-1,-6],[-5,0],[-6,7],[-3,-3],[-6,0],[-2,-2],[-1,-3],[-2,-17],[-6,3],[-6,11],[-4,2],[-6,-4],[-4,-10],[-3,-9],[-10,-16],[-3,-1],[-3,1],[-6,4],[-3,-1],[-5,-8],[-1,-11],[-1,-10],[-6,-4],[-3,0],[-2,-1],[-1,-3],[0,-6],[0,-13],[-1,-3],[-1,-6],[-13,-27],[-2,-5],[-6,-4],[-3,0],[-2,1],[-1,4],[-2,2],[-4,-3],[-1,-3],[-3,-14],[-1,-2],[-4,-5],[-1,-3],[-1,-5],[-1,-4],[-1,-4],[-3,-1],[-3,2],[-1,5],[0,5],[-1,4],[-6,2],[-3,-7],[-2,-9],[0,-1],[-3,-5],[-2,-3],[-12,-22],[-18,-11],[-7,-10],[2,-15],[3,-5],[11,-9],[4,-2],[4,-3],[3,-7],[4,-15],[-4,-28],[-2,-8],[-3,-7],[-3,-5],[-3,2],[-1,12],[-4,11],[-10,5],[-12,2],[-8,5],[-13,-11],[-5,-8],[2,-12],[1,-5],[0,-28],[-1,-4],[-1,-3],[-2,-3],[-2,-2],[-9,-2],[-8,-7],[-9,-4],[-3,-9],[0,-10],[0,-11],[0,-23],[-5,-14],[-18,-23],[-22,-57],[-10,-12],[-13,-5],[-5,-4],[-3,-10],[-2,-50],[-6,-21],[-19,-21],[-5,-23],[0,-24],[-1,-12],[-4,-11],[-4,-5],[-19,-9],[-10,-10],[-10,-13],[-9,-17],[-8,-21],[-2,-7],[-1,-9],[0,-8],[1,-8],[-2,-12],[-5,-25],[-3,-10],[-5,-8],[-3,-5],[-10,-9],[-3,-3],[-2,-4],[-1,-4],[-2,-6],[0,-6],[0,-6],[-1,-6],[-4,-5],[-2,-6],[-2,-7],[0,-6],[-1,-5],[-22,-36],[-2,-8],[-2,-5],[-11,-17],[-4,-8],[-4,-21],[-8,-16],[-1,-6],[-2,-6],[-21,-41],[-5,-8],[-6,-4],[-12,0],[-12,-3],[-12,-9],[-8,-13],[-4,-20],[-3,-69],[-2,-10],[-24,-34],[-26,-62],[-12,-15],[-6,-4],[-12,-4]],[[33996,32595],[-6,0],[-2,-6],[1,-13],[4,-26],[-2,-23],[-6,-19],[-55,-92],[-7,-18],[-4,-21],[1,-23],[7,-23],[4,-11],[6,-25],[2,-13],[3,-21],[2,-16],[0,-10],[1,-15],[0,-25],[0,-6],[-1,-14],[-2,-9],[-3,-3],[-7,2],[-12,-6],[-5,-6],[-2,-11],[2,-7],[12,-31],[2,-28],[-5,-20],[-7,-20],[-4,-26],[2,-26],[0,-16],[-3,-6],[-6,-23],[-2,-4],[-4,-6],[-2,-4],[-3,-12],[-1,-27],[-3,-11],[-4,-7],[-11,-12],[-5,-8],[-3,-18],[6,-16],[4,-4],[7,-10],[7,-17],[2,-27],[-2,-26],[-17,-91],[-3,-9],[-7,-4],[-13,-5],[-6,-5],[-4,-6],[-8,-16],[-2,-12],[4,-12],[8,-18],[3,-19],[1,-25],[-1,-26],[-3,-23],[-6,-19],[-1,-12],[3,-12],[19,-46],[3,-18],[-2,-18],[-17,-46],[-7,-26],[-3,-7],[0,-1]],[[33833,31254],[0,2],[-6,-27],[0,-27],[3,-72],[5,-41],[4,-61],[2,-12],[8,-21],[1,-9],[-1,-12],[-4,-22],[-1,-13],[3,-27],[1,-15],[-3,-7],[-10,-16],[-3,-2],[-7,-2],[-4,0],[-39,12],[-10,-8],[-1,-3],[-2,-5],[0,-5],[5,-5],[0,-4],[-1,-6],[-1,-6],[-1,-13],[-2,-27],[-1,-11],[5,-26],[1,-13],[-3,-6],[-5,-5],[-5,-11],[-8,-20],[-5,-22],[-4,-25],[-3,-27],[-1,-24],[2,-26],[-1,-6],[-3,-12],[-2,-44],[0,-13],[2,-24],[5,-19],[15,-38],[2,-10],[2,-12],[1,-27],[4,-33],[-1,-6],[-2,-6],[0,-4],[0,-2],[3,-2],[3,-1],[7,-6],[2,-3],[2,-9],[1,-12],[0,-26],[-2,-19],[0,-7],[0,-3],[3,-11],[0,-6],[-9,-18],[-1,-4],[-2,-9],[-1,-4],[-4,-8],[-5,-7],[-6,-3],[-5,4],[-2,1],[-10,1],[-2,-3],[-1,-4],[-2,-4],[-3,-1],[16,-17],[5,-7],[8,-12],[3,-10],[-5,-19],[-3,-6],[-3,-6],[-5,-11],[1,-8],[2,-8],[7,-12],[1,-5],[0,-12],[0,-6],[6,-7],[5,-5],[6,-7],[9,-11],[5,-8],[5,-13],[3,-14],[5,-15],[22,-26],[13,-20],[10,-9],[10,-2],[6,-2],[9,-9],[9,-4],[8,-5],[10,-22],[8,-5],[15,3],[3,-1],[6,-11],[12,-14],[14,-22],[20,-15],[23,-32],[22,-15],[10,-18],[11,-16],[27,-47],[10,-23],[12,-24],[6,-11],[13,-37],[11,-36],[8,-27],[2,-14],[-5,-26],[-10,-22],[-12,-28],[-28,-75],[-8,-19],[-3,-21],[-2,-16],[-3,-24],[-3,-19],[3,-22],[3,-23],[0,-17],[0,-5],[2,-7],[5,-8],[1,-6],[0,-1],[8,-33],[0,-13],[2,-5],[4,-5],[6,-9],[1,-3],[1,-13],[4,-12],[39,-66],[29,-31],[12,-4],[7,-6],[2,-7],[-5,-9],[2,-4],[5,9],[6,6],[12,9],[6,2],[19,-2],[-3,14],[1,8],[3,2],[6,-8],[2,-7],[3,-24],[2,-5],[5,-11],[0,-74],[6,-32],[1,-15],[1,-80],[1,-68],[-1,-26],[-5,-19],[-28,-66],[-28,-73],[-36,-110],[-10,-39],[-31,-72],[-9,-19],[-31,-47],[-11,-31],[-3,-5],[-4,-4],[-23,-48],[-8,-22],[-7,-24],[-5,-24],[-2,-25],[-1,-26],[0,-4],[3,-6],[0,-4],[0,-4],[-1,-6],[0,-2],[0,-17],[0,-7],[-7,-22],[-10,-19],[-25,-31],[-29,-28],[-20,-25],[-44,-43],[-9,-3],[-4,-3],[-14,-21],[-11,-10],[-33,-23],[-10,-11],[-5,-3],[-25,-7],[-21,-12],[-20,-20],[-45,-18],[-59,-34],[-15,-18],[-9,-3],[-10,-7],[-79,-27],[-79,-27],[-46,-32],[-6,-1],[-19,1],[-127,-40],[-44,-13],[-43,-9],[-57,-19],[-32,0],[-7,4],[-3,0],[-4,-1],[-2,-2],[-4,-5],[-26,-11],[-54,11],[-25,0],[-18,-10],[-3,-4],[-4,-4],[-43,11],[-4,5],[-5,3],[-3,6],[-2,1],[-2,0],[-2,-1],[-1,-2],[-2,-1],[-11,-4],[-14,1],[-52,25],[-10,9],[-8,12],[-6,18],[-5,21],[-3,11],[-4,5],[-45,5],[-5,5],[-6,3],[-6,-6],[-3,-10],[3,-6],[-2,-12],[5,-22],[-1,-10],[3,5],[4,1],[3,-5],[1,-7],[0,-23],[0,-4],[3,-3],[4,0],[9,3],[0,-3],[-2,-7],[-1,-10],[1,-8],[-7,-6],[-3,-6],[-4,-21],[-3,-12],[-1,-6],[-2,-4],[-1,-4],[2,-5],[2,-5],[1,-5],[0,-10],[-1,-10],[-1,-9],[2,-11],[5,-9],[13,-16],[5,-11],[-4,0],[-4,2],[-7,6],[-4,-8],[3,-6],[6,-4],[6,-3],[22,-1],[7,-3],[22,-18],[12,-14],[6,-16],[0,-7],[-1,-7],[-2,-6],[-3,-5],[-3,-2],[-3,1],[-1,3],[-2,2],[-6,5],[-16,24],[-5,12],[-1,3],[-2,7],[-1,2],[-2,2],[-1,0],[-1,-2],[-2,0],[-5,2],[-15,-2],[0,-5],[1,-6],[2,-5],[2,-4],[3,-1],[4,1],[3,-1],[1,-5],[3,-12],[5,-13],[12,-18],[5,-5],[13,-6],[7,-1],[2,-2],[1,-6],[0,-8],[-1,-6],[-3,-5],[-2,-6],[0,-41],[-2,-7],[-2,-7],[-7,-81],[0,-52],[-2,-10],[-1,0],[-10,-10],[-1,-2],[-21,6],[-6,6],[-12,16],[-1,-6],[1,-7],[6,-12],[-7,-5],[-2,-5],[1,-7],[0,-15],[-1,-10],[-4,-21],[-2,-21],[-5,-24],[-2,-5],[-1,-6],[7,-35],[0,-12],[-4,-25],[-1,-10],[-3,-11],[-6,-6],[-7,-4],[-5,-5],[-5,-8],[-5,-10],[-4,-12],[-2,-12],[2,-9],[8,-26],[4,-35],[3,-5],[0,-3],[4,-14],[3,-3],[9,-5],[9,-10],[3,-2],[1,-3],[0,-14],[1,-3],[4,-5],[3,-10],[4,-5],[5,7],[4,-26],[0,-15],[-5,-7],[-13,4],[-1,2],[-5,11],[-3,3],[0,-5],[1,-5],[1,-4],[1,-4],[2,-6],[0,-5],[-2,-3],[-1,0],[3,-9],[2,-2],[22,21],[8,5],[9,1],[-3,-7],[-10,-12],[-2,-7],[-1,-9],[-2,-18],[-1,-10],[-1,-8],[-8,-27],[-8,-32],[-7,-16],[-42,-35],[-33,-34],[-19,-13],[-5,-5],[-5,-8],[-5,-4],[-6,-2],[-7,-1],[-7,2],[-3,-1],[-3,-7],[-7,-10],[-5,-8],[-19,-8],[-33,-28],[-13,-5],[-60,4],[-12,-6],[-7,-2],[-27,5],[-39,-4],[-44,1],[-12,5],[-12,10],[-28,43],[-12,9],[-12,0],[-3,2],[0,6],[1,6],[2,9],[-2,4],[-7,-3],[-7,-5],[-6,-2],[-12,5],[-67,58],[-37,16],[-26,22],[-25,9],[-14,2],[-19,-3],[-9,1],[-7,4],[0,9],[5,6],[7,4],[5,-2],[-1,-10],[2,0],[2,2],[1,1],[0,1],[17,0],[5,1],[3,4],[-2,12],[-9,5],[-4,6],[8,13],[-7,8],[-26,10],[-16,-3],[-10,-7],[-2,-4],[5,-1],[9,4],[5,-3],[-4,-9],[1,-5],[3,-4],[3,-6],[-28,2],[-5,-4],[-4,-7],[-22,-29],[-2,-5],[-1,-5],[0,-13],[-1,-6],[-4,-11],[-3,-13],[-3,-13],[-1,-14],[0,-24],[8,-101],[11,-70],[1,-18],[7,-34],[2,-18],[3,-19],[15,-26],[5,-19],[-1,-17],[-2,-19],[-4,-19],[-4,-12],[-2,-16],[3,-21],[8,-34],[-1,-21],[-5,-25],[-11,-43],[-5,-25],[2,-21],[4,-15],[14,-49],[9,-19],[10,-16],[22,-24],[3,-1],[6,0],[4,0],[2,-2],[4,-6],[7,-6],[7,-5],[6,-1],[14,-1],[6,-2],[5,-8],[6,-6],[7,1],[7,5],[6,2],[8,-1],[4,-2],[2,-3],[4,-8],[1,-4],[-8,-6],[-5,-8],[-21,-49],[-2,-6],[-2,-18],[1,-5],[9,-4],[22,3],[11,-9],[10,0],[9,3],[7,3],[6,6],[4,2],[52,-6],[7,3],[3,10],[1,1],[8,13],[2,5],[1,4],[-1,11],[0,3],[-1,3],[-1,4],[1,2],[1,1],[2,2],[0,4],[0,7],[-3,11],[-1,6],[-2,7],[-6,4],[-12,3],[-31,-3],[-14,3],[-12,12],[9,8],[40,9],[34,30],[23,26],[24,18],[17,8],[11,-4],[10,-17],[7,-17],[8,-36],[1,-10],[2,-10],[4,-8],[9,-13],[7,-21],[2,-24],[-2,-60],[5,-89],[-4,-24],[-7,-25],[-4,-24],[3,-21],[-14,-30],[-18,-14],[-57,-20],[-17,0],[-6,-2],[-13,-10],[-10,-3],[-9,10],[-6,12],[-9,23],[-6,10],[-5,4],[-5,6],[0,13],[2,14],[2,7],[5,36],[3,5],[4,2],[-2,5],[-6,9],[-2,1],[-4,3],[-1,3],[-2,3],[-1,2],[-10,9],[-3,6],[-2,12],[-3,7],[-6,7],[-12,8],[-14,6],[-29,1],[-20,-6],[-7,-3],[-6,-6],[-7,-9],[-10,-4],[-3,-3],[-2,-3],[-12,-27],[-5,-7],[-6,-4],[-14,-2],[-13,-6],[-7,-8],[-3,-9],[-3,-10],[-4,-12],[-8,-15],[-2,-9],[2,-14],[4,-8],[11,-5],[9,-11],[18,-9],[34,-26],[9,-10],[11,-16],[6,-6],[8,-4],[7,-5],[3,-2],[4,0],[7,3],[7,1],[3,0],[2,-2],[5,-8],[5,-5],[2,-3],[5,-6],[8,1],[22,14],[3,1],[0,-3],[4,-15],[-1,-8],[-6,-9],[-33,-35],[-33,-21],[-56,-26],[-49,-54],[-9,-18],[-5,-8],[-6,-7],[-5,-3],[-3,-13],[0,-11],[2,-10],[1,-12],[-2,-11],[-4,-6],[-5,-6],[-23,-37],[-10,-30],[-5,-10],[-15,-21],[-3,-3],[-11,-31],[-1,-6],[-4,-8],[-1,-6],[1,-34],[1,-10],[6,-19],[-2,-8],[-1,-12],[0,-11],[2,-5],[4,-5],[2,-10],[2,-11],[2,-9],[1,-8],[-1,-23],[1,-7],[3,-3],[6,3],[3,-7],[-7,-8],[3,-13],[0,-10],[5,-6],[10,1],[-7,-9],[-5,-10],[-2,-10],[1,-8],[0,-9],[4,-3],[1,-11],[-4,-4],[-9,-2],[-5,-4],[-5,-7],[-3,-20],[1,-15],[0,-9],[4,-9],[2,-4],[2,-2],[3,-4],[-1,-6],[0,-5],[1,-6],[4,-4],[-1,-4],[-1,-5],[4,-7],[4,0],[3,-2],[0,-11],[1,-6],[-3,-2],[-2,-5],[0,-5],[-4,0],[-3,-1],[-2,-4],[-1,-6],[-3,-1],[-1,-3],[2,-3],[0,-3],[-3,-1],[0,-1],[2,-2],[-1,-2],[-3,1],[-2,3],[-2,-1],[0,-4],[1,-3],[-1,-3],[-2,-1],[-1,-3],[-2,-2],[-1,-4],[1,-2],[4,-1],[1,-3],[-1,-3],[-1,-3],[-1,-4],[2,-3],[2,1],[2,0],[1,1],[4,-1],[0,-4],[-2,-3],[0,-3],[2,-2],[1,-3],[-3,-1],[-4,2],[-2,-2],[-1,-3],[0,-4],[-2,-1],[-1,3],[1,6],[-1,5],[-4,1],[-3,-1],[-1,-4],[-2,0],[-1,1],[-3,-1],[0,-3],[1,-5],[3,-3],[0,-4],[-3,-2],[-3,2],[-2,-3],[-1,-4],[1,-5],[2,-4],[3,0],[2,-3],[2,-1],[0,-3],[-3,-4],[-2,0],[0,6],[-2,0],[-2,-3],[-1,-3],[-1,-5],[-1,3],[-2,2],[-1,6],[-2,2],[-1,-1],[-1,1],[-1,2],[-3,-2],[-3,-2],[-3,0],[-1,-4],[0,-5],[1,-6],[-4,1],[-1,-3],[-6,0],[-12,-9],[-10,-16],[-5,3],[-13,-15],[-4,-9],[-3,-9],[-3,-4],[-1,-5],[-3,-13],[1,-16],[-1,-10],[-1,-8],[-2,-5],[-3,-2],[-3,-3],[0,-12],[3,-4],[-2,-1],[-1,-6],[3,-13],[5,-2],[4,0],[1,-3],[2,0],[1,-3],[1,-4],[5,1],[0,-1],[4,3],[5,-2],[5,-6],[7,2],[6,-9],[4,-3],[4,-10],[-3,-1],[-4,-7],[-3,-3],[-2,-3],[-2,-3],[-4,2],[-2,-5],[-3,-4],[1,-7],[4,-5],[1,-8],[-5,1],[-3,4],[-3,-5],[2,-4],[4,-8],[-12,-12],[-5,3],[-6,-1],[-2,-11],[-12,16],[-5,7],[-9,-2],[-5,0],[-4,-8],[-4,3],[1,11],[-4,8],[-4,-1],[-4,1],[-5,-3],[0,-11],[1,-7],[-6,0],[-8,-6],[-8,4],[-6,12],[-8,11],[-8,0],[-18,9],[-16,-5],[-9,2],[-6,-13],[-11,-14],[-6,-11],[-5,6],[-4,2],[-6,0],[-4,0],[-5,-2],[-1,-5],[-6,2],[-3,-7],[-18,-8],[-8,-6],[-7,-13],[-1,-13],[14,-6],[6,-4],[-5,-12],[-27,16],[-5,1],[0,-16],[12,-4],[6,-11],[0,-14],[-10,1],[-31,0],[-32,-9],[-23,-4],[-17,-12],[-9,-12],[-13,-16],[-15,-27],[-9,-25],[-11,-20],[-9,-21],[-9,-24],[-6,-16],[-13,-19],[-7,-17],[-4,-7],[-7,-7],[-3,-12],[-3,-15],[0,-19],[0,-9],[5,-8],[-1,-6],[-2,-3],[-5,-1],[0,-8],[-1,-7],[0,-4],[2,-5],[-1,-6],[-3,-4],[-6,2],[-8,-10],[-4,-6],[-4,-5],[-5,-22],[-9,-9],[-3,-11],[-5,-12],[-4,-10],[4,-14],[-6,-6],[-6,-15],[-1,-4],[-9,-43],[-2,-16],[-1,-18],[1,-20],[13,-94],[9,-47],[7,-22],[26,-76],[16,-23],[8,-11],[14,-7],[8,-4],[3,-5],[4,-12],[11,-11],[11,-4],[6,-6],[5,-17],[9,-13],[9,-22],[4,-14],[3,-2],[4,0],[3,-2],[2,-8],[2,-2],[3,-4],[25,-41],[16,-37],[11,-15],[24,-19],[11,1],[9,-9],[11,6],[6,-4],[5,1],[6,3],[6,0],[4,-2],[9,-8],[5,-2],[15,2],[5,-2],[3,-3],[15,-4],[29,-9],[32,4],[15,9],[7,2],[7,-2],[17,-16],[10,-2],[7,-10],[3,-15],[6,-8],[5,-9],[3,-4],[14,-17],[-3,-12],[5,-32],[4,-19],[3,-19],[-4,-40],[-2,-59],[-7,-35],[-9,-38],[-15,-65],[-5,-5],[-8,0],[-8,2],[-14,4],[-17,1],[-8,-11],[-9,-18],[-8,-7],[-7,-4],[-17,-13],[-18,-18],[-6,-3],[-21,2],[-5,-2],[14,-7],[11,2],[21,18],[7,2],[15,6],[27,22],[7,12],[14,4],[12,-2],[8,-1],[4,-9],[5,-30],[4,-26],[7,-12],[11,-3],[8,-4],[-8,-8],[-2,-7],[6,-4],[3,-3],[-6,-3],[-8,-4],[-6,-2],[-3,11],[-15,7],[-7,-5],[-6,-12],[-1,-11],[6,-6],[-2,-15],[-1,-3],[-2,-3],[0,-7],[-6,-6],[1,-5],[8,-9],[9,-4],[2,-10],[-6,-11],[-7,-2],[-3,7],[-5,3],[-5,-4],[-7,0],[-13,-2],[-8,-3],[-5,-5],[-6,-7],[-3,-15],[-3,-8],[-2,-6],[-12,-8],[-10,-6],[-7,-20],[-10,-6],[-5,-7],[-5,-13],[-5,-21],[4,-19],[-4,-2],[-9,3],[-10,1],[-7,0],[-1,-3],[-5,-6],[2,-8],[-2,-13],[-9,-8],[-12,-6],[-9,0],[-20,-4],[-12,-14],[-16,-12],[-6,-11],[-10,-11],[-9,-16],[-5,-5],[-1,-13],[-1,-12],[-7,-4],[-7,-4],[-20,-5],[-16,-19],[-19,-18],[-6,-11],[-3,-29],[-11,-18],[-2,-14],[-2,-13],[-13,-16],[-21,-13],[-23,-22],[-42,-66],[-5,-19],[-4,-22],[-2,-13],[-5,-7],[-5,-7],[-1,-15],[6,-3],[1,-10],[-4,-4],[-2,-4],[-5,-3],[-2,-5],[-1,-6],[-2,-6],[-2,-14],[-8,-11],[-8,-5],[3,-5],[3,-6],[2,-6],[-2,-7],[-4,-1],[-4,-6],[-5,-4],[4,-5],[-1,-7],[-8,-12],[-15,-3],[-1,-3],[5,-4],[6,0],[19,1],[8,11],[4,21],[-1,16],[5,8],[1,17],[5,9],[3,3],[4,-2],[4,-9],[0,-11],[-1,-23],[-12,-32],[-1,-11],[-5,-39],[-7,-43],[-2,-17],[0,-26],[-2,-14],[-1,-24],[2,-9],[-6,-57],[-8,-39],[-3,-14],[-4,-12],[-2,-8],[-1,-3],[-10,-26],[-17,-25],[-24,-28],[-26,-26],[-26,-16],[-25,-6],[-19,3],[-4,1],[-3,4],[-7,17],[-6,4],[-6,15],[-4,11],[-3,16],[-5,15],[-6,12],[-10,11],[-6,15],[-2,13],[-5,21],[-7,14],[-13,35],[-4,10],[-5,7],[-6,7],[-7,3],[-6,1],[18,-16],[3,-7],[2,-9],[8,-21],[9,-24],[5,-27],[0,-14],[-4,-6],[-9,-9],[-7,-3],[-7,-6],[-7,-2],[-12,4],[-16,-2],[-20,3],[-11,-11],[-9,-6],[-8,0],[-11,-10],[0,-4],[2,0],[3,0],[1,0],[6,1],[16,1],[9,11],[7,6],[4,1],[4,0],[7,-2],[9,2],[15,-5],[12,-3],[9,6],[11,7],[5,2],[4,-3],[2,-3],[2,-12],[6,-5],[4,-4],[0,-6],[0,-9],[2,-12],[5,-12],[7,-11],[6,-6],[7,-1],[5,-3],[3,-7],[8,-4],[4,-8],[-4,-12],[-9,-5],[-6,-9],[-6,-5],[-49,-30],[-34,-24],[-8,2],[-7,-9],[-1,-8],[-9,-4],[-4,-1],[-4,2],[-6,-5],[-1,-13],[-5,-5],[-13,-26],[-8,-14],[-4,-13],[-6,-16],[-9,-22],[-5,-16],[-4,-11],[-1,-26],[-12,-45],[-6,-23],[-2,-14],[1,-9],[4,-15],[2,-38],[-1,-18],[-2,-15],[-6,-7],[-13,-12],[-15,-23],[-25,-26],[-11,-18],[-6,-21],[8,11],[16,20],[10,9],[17,14],[8,7],[8,2],[3,-11],[0,-12],[4,-24],[6,-46],[4,-29],[1,-19],[5,-12],[2,-25],[5,-26],[27,-106],[2,-13],[1,-12],[-3,-10],[-5,-7],[-5,2],[-5,3],[-8,0],[-6,-5],[-9,-16],[-5,-3],[-8,0],[-7,3],[-31,23],[-21,3],[-5,-1],[-3,-2],[-8,-6],[-16,-3],[-7,-3],[-13,-15],[-13,-6],[-6,-6],[60,20],[13,2],[13,-3],[29,-16],[12,-8],[-2,-10],[-15,-17],[0,-4],[6,0],[5,3],[23,17],[12,14],[7,9],[8,2],[7,-5],[11,-16],[17,-67],[13,-26],[21,-66],[19,-53],[45,-94],[34,-66],[9,-19],[3,-11],[-2,-8],[-8,-11],[-4,-8],[-3,-9],[-5,-3],[-2,7],[2,8],[-4,11]],[[30932,18017],[3,-4],[7,-16],[2,-5],[6,-8],[2,-5],[1,-9],[-5,-4],[-19,-1]],[[30936,19296],[10,-9],[2,-5],[6,-19],[2,-6],[18,-34],[18,-43],[5,-8],[19,-22],[8,-16],[7,-18],[6,-22],[10,-63],[1,-9],[-1,-10],[-3,6],[-3,13],[-8,42],[-7,5],[-5,0],[-7,-5],[-9,-9],[-8,-10],[-14,-23],[-17,-20],[-9,-28],[-3,-20],[4,-22],[11,-18],[16,-17],[12,-1],[12,-6],[20,-6],[29,4],[22,-18],[5,-19],[5,-12],[-2,-20],[1,-5],[3,-11],[3,-28],[3,-12],[15,-38],[2,-8],[53,-74],[19,-20],[6,-9],[2,-9],[-3,-8],[7,1],[6,1],[9,-7],[20,-14],[2,-7],[-8,-2],[-3,-11],[2,-14],[3,-8],[76,-87],[43,-41],[32,-19],[18,-16],[5,-10],[10,-8],[39,-22],[18,-23],[14,-34],[27,-34],[8,-15],[10,-7],[2,-15],[10,-4],[8,-2],[12,-5],[24,-21],[96,-59],[4,-2],[7,-1],[4,-1],[10,-11],[3,-1],[21,-2],[19,-7],[67,13],[14,-3],[8,0],[19,11],[43,-8],[4,-4],[-3,-8],[-5,-9],[-5,-4],[-2,-5],[-8,-31],[1,-3],[2,-7],[1,-3],[-10,-11],[-2,-4],[1,-6],[1,-6],[1,-6],[-7,-4],[-8,-11],[-3,-4],[-7,-36],[-4,-5],[-4,-3],[-3,-1],[-6,2],[-1,5],[0,6],[-1,8],[-8,6],[-9,-1],[-7,-6],[3,-11],[-7,-11],[-22,2],[-10,-3],[-2,-5],[-1,-6],[-2,-6],[-4,-4],[-6,-1],[-4,1],[-4,5],[-3,7],[0,3],[0,9],[0,5],[-1,3],[-2,4],[-3,1],[-5,0],[-6,1],[-11,-6],[-19,9],[-6,-7],[-18,6],[-6,-5],[4,-9],[6,-9],[-5,-10],[-7,-9],[-19,-7],[-15,-6],[-22,1],[-34,-1],[-15,-6],[1,-10],[-1,-9],[-15,-6],[-7,-3],[-25,1],[-25,11],[-8,7],[-6,8],[-4,9],[-5,6],[-25,23],[-7,4],[-32,4],[-24,14],[-84,8],[-58,10],[-35,-3],[-73,10],[-41,10],[-13,13],[-26,3],[-15,12],[-8,4],[-4,-5],[1,-14],[-1,-5],[-3,-6],[-54,-6],[-7,3],[-5,5],[-8,17],[-12,16],[-1,0]],[[32253,18058],[6,-2],[6,6],[5,5],[4,-9],[-6,-6],[-2,-4],[-2,-4],[-4,-13],[-2,-4],[-4,-1],[-5,-1],[-4,-3],[-14,-15],[-3,0],[-4,3],[2,5],[5,13],[1,4],[-1,8],[-3,2],[-5,-4],[-3,-6],[-4,-5],[-4,-2],[-10,1],[-2,1],[-1,0],[-3,-1],[-2,-3],[0,-3],[-1,-4],[-1,-2],[-6,-5],[-26,-6],[-2,-6],[-4,-3],[-4,1],[-3,7],[0,6],[1,8],[4,14],[-5,0],[-2,-2],[-2,-2],[-4,4],[-4,0],[-6,-8],[-15,-12],[-3,-4],[-5,-9],[-3,-4],[-5,-2],[-5,-2],[-9,0],[0,2],[1,2],[1,2],[1,2],[0,5],[-3,0],[-3,-2],[-3,-3],[-2,-4],[1,0],[3,-4],[-4,-4],[-13,-8],[-3,-5],[-4,-11],[-3,-4],[-5,-2],[-14,0],[-4,2],[-1,5],[1,4],[4,5],[2,6],[-25,20],[2,11],[6,7],[6,6],[3,7],[4,6],[9,-4],[13,-13],[6,2],[17,8],[5,7],[-16,19],[-2,9],[7,4],[2,-2],[7,-14],[4,-4],[9,-4],[3,1],[5,6],[3,1],[2,0],[3,0],[2,-3],[1,-8],[0,-8],[1,-4],[2,-1],[3,1],[1,3],[-1,3],[0,4],[0,10],[-1,8],[1,8],[3,9],[2,-1],[4,-5],[5,-4],[5,4],[1,-3],[2,-1],[1,0],[2,0],[3,-3],[9,4],[5,-1],[3,-4],[4,-6],[3,-4],[3,0],[2,5],[-1,6],[-1,5],[5,2],[2,-1],[4,-6],[3,-1],[2,1],[2,4],[2,3],[3,0],[2,-3],[3,-13],[3,-4],[3,1],[8,9],[31,10],[9,-4],[-2,-4]],[[32803,27292],[1,3],[3,-5],[4,-12],[5,-29],[1,-9],[-3,-8],[-6,-1],[-6,4],[-4,5],[-4,8],[-18,10],[-6,7],[-5,8],[-11,27],[-4,12],[0,9],[6,2],[10,-9],[28,-10],[5,-16],[1,-5],[1,0],[2,3],[0,6]],[[32754,27359],[-4,-6],[-6,1],[-3,7],[3,11],[22,-2],[11,-5],[8,-12],[2,-8],[-3,-6],[-4,-4],[-5,0],[-6,4],[-15,20]],[[32734,26559],[8,-1],[9,0],[8,-13],[5,-17],[6,-16],[-3,-18],[-8,-16],[-5,-19],[-7,-12],[-7,0],[-7,4],[1,18],[-3,10],[-7,-7],[-8,0],[-4,7],[4,11],[6,17],[2,23],[5,29],[5,0]],[[32744,26704],[6,0],[8,-4],[8,-6],[7,-17],[-1,-25],[0,-33],[1,-32],[-1,-9],[-3,12],[-3,15],[-7,14],[-12,32],[-7,23],[4,30]],[[59383,71183],[-6,2],[-12,-1],[-4,-3]],[[59361,71181],[0,9]],[[59361,71190],[3,-1],[1,7],[-5,3],[0,3],[2,4],[-1,4],[-5,5],[-1,2]],[[59355,71217],[-1,2],[-1,6],[2,5],[4,2],[3,5],[3,0],[1,-3],[-2,-13],[-1,-6],[3,1],[6,9],[7,-9],[3,5],[3,-1],[2,1],[1,7],[7,9],[3,-2],[2,-4],[3,1],[4,5],[1,3],[2,3],[-2,5],[0,9],[1,11],[4,0],[1,-5],[2,-1],[1,-6],[1,-2],[0,-3],[2,0],[2,-6],[-2,-5],[-2,-1],[0,-1]],[[59418,71238],[-2,-5]],[[59416,71233],[-5,7],[-2,-3],[-2,-4],[-3,-4],[-4,-2],[-2,4],[-2,2],[-4,-3],[-2,-3],[-2,-7],[7,-5],[2,-4],[-1,-13],[4,-5],[5,-1],[0,-10],[-3,-1],[-3,-5],[2,-3],[5,2],[8,-3]],[[59414,71172],[-2,-5],[-3,-5],[-3,-2],[-5,3],[-7,13],[-5,5],[-6,2]],[[59383,71183],[1,0],[1,1],[1,0],[1,0],[-1,3],[-1,1],[-2,0],[-1,0],[-1,2],[-2,1],[-1,0],[-1,-1],[2,-1],[1,-1],[0,-3],[2,0],[1,0],[0,-2]],[[59372,71198],[1,1],[2,1],[0,6],[-2,0],[-1,-1],[0,-2],[-1,-3],[1,-1],[0,-1]],[[59361,71181],[-6,-4],[-7,-13],[-2,-7],[-2,-10],[-2,-10],[0,-11],[0,-11],[0,-5],[-3,-2],[-2,-2],[-1,-11],[-2,-3],[-4,-3],[-9,0],[-4,-1],[-2,-5],[-3,-7],[-3,-6],[-4,-3],[-9,-3],[-8,-7],[-7,-3],[-4,9],[0,-17],[-8,-8],[-21,-8],[-4,-3],[-2,-3],[-4,-4],[-4,-2],[-20,5],[-20,-5],[-4,-2],[-4,-4],[-13,-21],[-3,-10]],[[59170,70981],[-6,0],[-6,-2],[-2,-4],[-2,2],[-1,9],[4,5],[1,-3],[5,0],[0,16],[-10,2],[-3,-6],[-2,-6],[-1,3],[-4,3],[-1,-4],[-8,4],[-5,7],[-2,5],[0,8],[-2,-1],[-2,0],[-1,0],[-2,0],[-1,1],[-1,-3],[-1,-3],[-1,-2],[-4,-1],[-2,-9],[-5,2],[-4,1],[-2,-4],[1,-9]],[[59100,70992],[-4,-2],[-11,-3],[-12,4],[-11,9],[-14,15],[-5,4],[-6,3],[-12,2],[-5,3],[-4,5],[-11,16],[-2,3],[-2,17],[-1,3],[0,6],[-6,31],[-3,4],[-6,7],[-3,5],[-2,6],[-2,7],[0,8],[2,7],[-5,16],[-1,6],[0,13],[-1,11],[-6,18],[-2,9],[-1,15],[1,11],[3,4],[6,-7],[8,-16],[4,-6],[6,-4],[11,1],[10,9],[9,14],[6,16],[4,18],[3,10],[4,6],[1,3],[1,2],[1,2],[2,-1],[2,-3],[2,-1],[3,1]],[[59051,71299],[2,-6],[4,-5],[4,-1],[3,1],[4,5],[2,7],[2,8]],[[59072,71308],[8,-2]],[[59080,71306],[2,-16],[2,-8],[2,-6],[5,-4],[7,-4],[6,-5],[5,-5],[3,-5],[1,-8],[0,-6],[2,-5],[3,-2],[2,0],[7,4],[4,4],[1,3],[2,6],[2,2],[2,-2],[2,-4],[4,-5],[4,0],[4,4],[5,9],[5,9],[5,4],[6,7],[3,5],[3,1],[7,-2],[7,-2],[7,0],[4,3],[2,2],[2,5],[6,9],[5,0],[3,-3],[4,-3],[4,0],[2,-2],[4,-8],[3,-6],[4,-5],[7,-3],[2,2],[1,3],[1,5],[3,4],[6,11],[2,1],[5,-1],[7,2],[5,1],[1,-2],[0,-7],[1,-9],[2,-4],[3,-6],[4,-7],[1,-4],[0,-10],[0,-10],[0,-11],[-2,-14],[-2,-10],[1,-8],[3,-6],[3,0],[4,2],[2,10],[1,17],[2,2],[2,4],[2,4],[3,-4],[0,-14],[1,-8],[4,-3],[5,4],[2,8],[2,3],[3,-1],[4,-4],[2,1],[2,2],[3,-2],[3,-2],[6,-6],[3,-1],[3,0],[5,-6]],[[59416,71233],[3,-2],[3,-2],[3,-2],[4,0],[4,4],[5,0],[3,-3],[3,-3],[3,1],[2,2],[1,3]],[[59450,71231],[4,-6],[4,-8],[3,-16],[3,-11],[4,-9],[3,-4],[-3,-1],[-8,1],[-7,4],[-3,6],[-3,3],[-15,-4],[-13,-6],[-3,-3],[-2,-5]],[[71610,71491],[5,-14],[5,-12],[6,-9],[7,-4],[9,6],[12,25],[8,7],[16,-2],[3,-23],[-4,-32],[-8,-30],[-3,-47],[10,-44],[26,-82],[3,-22],[2,-44],[4,-21],[11,-25],[3,-11],[17,-112],[6,-20],[11,-18],[12,-9],[64,-19],[16,-12],[23,-33],[15,-33],[10,-11],[13,-7],[10,-8],[8,-13],[2,-6],[5,-18],[3,-13],[1,-14],[-1,-14],[-3,-13],[-20,-35],[-27,-21],[-21,-26],[-3,-50],[14,-73],[5,-37],[2,-39],[-4,-113],[5,-35],[7,-19],[25,-44],[1,-1],[15,-45],[5,-4],[10,-6],[5,-4],[4,-5],[4,-8],[1,-11],[1,-14],[2,-4],[10,8],[8,-1],[22,-20],[9,-6],[23,-2],[9,-9],[1,-22],[-3,-9],[-6,-16],[-2,-11],[-1,-31],[-2,-12],[1,-22],[5,-15],[16,-26],[6,-19],[2,-18],[2,-17],[8,-16],[7,-13],[1,-20],[-3,-21],[-5,-19],[-12,-26],[-27,-39],[-12,-25],[-5,-2],[-5,3],[-6,5],[-5,2],[-7,-2],[-8,-4],[-8,-7],[-6,-8],[-3,-13],[-3,-35],[-4,-12],[-3,0],[-7,3],[-3,1],[-4,-2],[-7,-6],[-4,-1],[-9,-9],[-9,5],[-8,12],[-7,15],[-24,36],[-4,19],[-5,31],[-1,9],[2,10],[2,10],[1,10],[-4,11],[-7,4],[-5,-5],[-8,-18],[-5,-7],[-5,-5],[-11,-5],[-40,-2],[-11,-5],[-6,-6],[-1,-12],[8,-30],[11,-30],[1,-6],[-2,-3],[-1,-4],[-2,-5],[0,-7],[0,-4],[1,-2],[6,-55],[0,-12],[-1,-11],[0,-7],[3,-2],[2,-2],[10,-10],[7,-15],[4,-18],[27,-68],[8,-12],[13,-13],[3,-6],[3,-12],[-1,-11],[-6,-25],[-2,-12],[-2,-25],[-2,-11],[-7,-21],[-1,-9],[7,-14],[0,-6],[-1,-5],[1,-6],[1,-5],[3,-7],[3,-11],[1,-4],[2,-3],[2,-1],[6,0],[10,-19],[6,-16],[-1,-7],[-5,-10],[-27,-41],[-1,-13],[11,-12],[8,-13],[-1,-20],[-4,-22],[-2,-23],[1,-11],[1,-5],[2,-4],[9,-8],[3,0],[7,3],[8,-1],[3,0],[5,4],[0,1],[3,6],[3,8],[5,18],[5,-4],[6,-13],[5,-3],[4,14],[2,25],[5,23],[13,5],[4,-4],[8,-12],[9,-11],[2,-8],[1,-9],[3,-9],[2,-1],[6,-2],[2,-2],[1,-6],[0,-6],[-1,-5],[0,-7],[1,-5],[4,-6],[2,-4],[0,-5],[-1,-5],[0,-5],[1,-6],[4,-6],[5,-3],[4,-4],[1,-13],[0,-11],[1,-10],[2,-10],[4,-8],[7,-7],[7,-4],[7,-7],[3,-9],[2,-6],[1,-19],[2,-8],[4,-2],[4,2],[5,0],[4,-1],[4,-4],[1,-3],[1,-2],[1,-4],[0,-3],[3,-8],[4,-9],[5,-7],[4,-4],[6,-3],[3,-2],[3,1],[12,13],[5,2],[11,1],[14,7],[6,-1],[20,-9],[5,-5],[3,-7],[5,-17],[7,-14],[3,-3],[1,-2],[4,-5],[20,-15],[6,-10],[5,-14],[5,-13],[8,-6],[5,2],[9,9],[4,0],[4,-5],[7,-22],[8,-8],[2,-6],[-7,-23],[-2,-3],[-2,0],[-3,0],[-2,-1],[-2,-2],[0,-8],[3,-7],[3,-7],[3,-7],[1,-12],[-2,-9],[-2,-8],[-3,-11],[11,5],[10,-1],[20,-11],[28,-29],[14,-10],[9,-11],[4,-2],[6,1],[4,3],[4,0],[6,-4],[27,-28],[8,-12],[4,-8],[5,-19],[4,-9],[4,-6],[23,-19],[22,-11],[9,-9],[5,-17],[2,-8],[-2,-9]],[[72498,68353],[-2,0],[-19,-12],[-5,2],[-2,10],[-3,8],[-4,-6],[-5,-11],[-4,-7],[4,-16],[-6,-16],[-17,-23],[-4,-8],[-8,-24],[-3,-6],[-10,-13],[-7,-12],[-3,-5],[-6,-3],[-10,-2],[-4,-4],[-2,-11],[-4,-21],[-6,-18],[-14,-34],[-6,-9],[-17,-8],[-7,-11],[-4,-17],[0,-15],[3,-15],[3,-15],[3,-16],[-1,-13],[-3,-12],[-6,-13],[-2,-2],[-3,-4],[-2,-2],[-1,-4],[1,-4],[1,-3],[-1,-3],[-2,-6],[-2,-4],[-6,-8],[-2,-6],[-3,-4],[-2,-4],[0,-7],[-2,-6],[-8,-5],[-3,-4],[-1,-10],[2,-10],[6,-20],[2,-23],[1,-7],[3,0],[2,0],[2,-3],[1,-12],[-1,-13],[-6,-39],[-2,1],[-4,5],[-5,-1],[-1,-9],[5,-24],[0,-10],[-3,-7],[-6,-3],[-5,0],[-5,1],[-9,-8],[-5,-22],[-2,-27],[0,-19],[-2,-11],[-4,-5],[-4,-5],[-5,-6],[-3,-10],[-2,-10],[-1,-11],[0,-12],[2,-24],[5,-7],[5,-2],[2,-1],[9,-10],[9,-23],[5,-6],[5,-4],[10,-3],[4,-5],[2,-4],[3,-10],[2,-4],[2,-2],[5,-3],[2,-3],[8,-29],[3,-8],[6,-4],[5,1],[5,3],[6,0],[5,-6],[12,-27],[5,-5],[2,8],[-3,37],[1,10],[3,9],[5,5],[5,0],[6,0],[1,-4],[-1,-5],[0,-5],[2,-5],[5,-5],[5,-3],[10,-3],[4,-5],[5,-20],[3,-7],[5,-4],[8,-5],[5,-6],[11,-20],[4,-6],[5,-2],[12,0],[4,-3],[2,-9],[0,-9],[2,-8],[5,-7],[4,-3],[6,-2],[5,0],[5,2],[3,-3],[1,-6],[0,-8],[2,-6],[13,-5],[28,-10],[6,-6],[6,-14],[6,-35],[4,-17],[16,-35],[3,-14],[-4,-3],[-1,-5],[2,-5],[4,-2],[0,-8],[3,-3],[4,1],[4,4],[3,7],[1,8],[2,5],[4,1],[6,-4],[6,-8],[5,-10],[4,-11],[1,-9],[0,-6],[2,-6],[4,-6],[24,-24],[6,-7],[4,-11],[5,-8],[14,-7],[7,-4],[6,-9],[11,-23],[14,-15],[7,-11],[8,-9],[8,-1],[6,9],[11,25],[8,6],[15,-2],[6,-4],[6,-9],[5,-11],[5,-5],[12,-9],[33,-52],[22,-21],[15,-29],[10,-6],[24,5],[35,17],[6,-4],[2,-1],[5,-15],[3,-23],[3,-44],[3,-23],[6,-13],[34,-5],[7,-4],[13,-14],[18,-8],[34,1],[10,-8],[14,-22],[3,-8],[3,-11],[2,-8],[3,-6],[6,-5],[7,1],[5,6],[5,9],[6,17],[1,7],[1,7],[-4,11],[-1,7],[1,7],[1,6],[7,5],[26,0],[31,-8],[20,-15],[39,-39],[12,-9],[2,-3],[2,5],[2,3],[3,2],[0,5],[-1,6],[-1,5],[-8,17],[-2,10],[5,4],[13,1],[6,4],[4,-2],[11,-4],[9,1],[6,7],[14,33],[5,5],[5,-3],[1,-10],[3,-5],[3,-4],[7,-5],[2,-5],[3,-15],[3,-1],[8,2],[4,-5],[3,-11],[5,-14],[6,-8],[80,-28],[8,-11],[7,-19],[5,-22],[2,-22],[1,-23],[-2,-23],[-2,-13],[-4,-14],[-3,-13],[2,-13],[3,-5],[34,-17],[3,0],[4,5],[4,4],[5,-2],[3,-10],[6,-7],[14,-9],[6,-7],[4,-11],[2,-12],[2,-11],[7,-7],[3,-1],[4,-1],[4,-5],[0,-9],[1,-8],[7,-1],[15,12],[6,1],[11,-9],[1,-18],[0,-20],[9,-16],[25,-13],[4,0],[10,6],[4,6],[1,1],[4,9],[5,8],[4,0],[5,-3],[5,3],[11,10],[12,13],[22,16],[3,-2],[21,-23],[4,-9],[2,-20],[-2,-44],[3,-21],[4,-9],[15,-23],[3,-1],[3,2],[2,1],[2,-3],[1,-5],[0,-6],[1,-4],[2,-3],[4,1],[6,7],[19,31],[5,5],[6,2],[10,6],[9,-6],[19,-22],[1,-3],[2,-1],[6,0],[1,0],[2,0],[4,-2],[2,-2],[1,-3],[2,-3],[3,-1],[2,1],[6,8],[10,7],[6,2],[5,-2],[2,-4],[0,-9],[2,-4],[2,0],[6,1],[2,0],[9,-6],[17,-17],[8,-7],[6,-2],[4,-5],[4,-6],[4,-9],[5,-6],[19,-17],[19,-22],[5,-2],[3,4],[2,7],[2,6],[4,1],[10,-7],[2,-1],[7,4],[7,8],[6,12],[2,13],[9,10],[8,5],[10,7],[4,5],[8,17],[4,7],[3,0],[1,-11],[0,-10],[4,-30],[2,-17],[5,-20],[6,-16],[8,-6],[15,3],[9,5],[3,-6],[2,-9],[2,-7],[4,-5],[11,-10],[4,-1],[4,5],[5,22],[3,8],[8,9],[9,5],[9,1],[8,-3],[20,-22],[10,-5],[10,9],[7,10],[3,5],[6,3],[5,-4],[3,-7],[5,-1],[4,4],[2,9],[2,13],[4,3],[4,-4],[5,-5],[5,0],[9,14],[5,2],[0,-2],[6,-10],[1,0],[1,-5],[2,-10],[2,-6],[4,-7],[9,-10],[4,-8],[9,2],[10,21],[8,29],[3,24],[-1,8],[0,6],[2,13],[4,25],[12,47],[5,26],[1,12],[1,11],[-1,11],[-2,24],[-1,25],[-1,10],[-3,9],[-6,18],[-2,10],[-4,20],[-6,20],[-6,15],[-3,7],[-5,3],[-5,6],[-5,22],[-4,8],[-1,4],[-1,5],[1,5],[4,17],[1,42],[4,18],[7,29],[1,14],[0,7],[-4,12],[-1,6],[0,8],[0,7],[3,13],[1,4],[1,3],[2,4],[0,5],[0,2],[-3,5],[0,3],[-2,12],[0,5],[0,7],[7,29],[17,56],[7,50],[4,15],[3,15],[-1,24],[3,11],[-1,7],[-2,4],[-4,2],[-6,3]],[[74477,66969],[-4,11],[-2,15],[0,14],[5,11],[3,2],[7,-2],[3,0],[3,2],[7,5],[50,14],[6,8],[15,21],[6,3],[7,-4],[4,6],[4,12],[6,11],[12,17],[4,-1],[6,-13],[6,-8],[16,-5],[7,-4],[12,-16],[7,-10],[4,-9],[0,-11],[-2,-19],[0,-10],[2,-8],[7,-13],[2,-9],[1,-11],[0,-9],[-14,-112],[-6,-19],[-4,-21],[-5,-16],[-2,-8],[0,-9],[4,-12],[0,-9],[-1,-19],[2,-17],[4,-16],[6,-13],[3,-4],[3,-3],[3,-4],[6,-15],[4,-6],[8,-10]],[[74692,66646],[-3,-17],[-2,-3],[-4,-6],[-17,-9],[-7,-9],[-6,-17],[-4,-19],[-3,-17],[1,-1],[3,-4],[17,-18],[7,-9],[3,-13],[2,-15],[0,-33],[1,-29],[5,11],[5,9],[6,1],[4,-11],[1,-7],[0,-7],[0,-5],[2,-6],[3,-4],[3,0],[3,1],[3,4],[6,1],[6,-6],[7,-9],[4,-10],[4,-15],[2,-12],[4,-8],[9,-5],[16,-2],[8,2],[7,4],[4,4],[3,6],[2,4],[4,1],[4,-1],[11,6],[8,-10],[11,-14],[9,-10],[18,4],[11,-3],[11,-8],[7,-11],[1,-10],[-5,-17],[4,-5],[5,0],[10,8],[6,-1],[15,-12],[4,-2],[2,0],[11,0],[1,0],[2,-2],[1,0],[2,2],[1,4],[0,4],[0,1],[0,1],[0,3],[1,3],[1,2],[2,0],[2,-3],[1,-1],[2,-1],[6,-4],[3,0],[6,1],[17,9],[32,6],[11,5],[7,12],[7,36],[9,12],[5,0],[10,0],[5,3],[5,6],[4,8],[4,6],[5,3],[10,-3],[25,-35],[32,-31],[35,-7],[64,7],[17,1],[2,2],[13,12],[9,0],[9,-2],[20,0],[10,-4],[8,-9],[4,-3],[5,0],[5,2],[5,4],[4,6],[4,7],[3,11],[2,10],[3,10],[5,6],[4,1],[11,-1],[4,-2],[3,-8],[6,-26],[4,-6],[5,0],[10,7],[5,0],[12,-7],[5,0],[13,3],[8,8],[18,22],[8,3],[5,-6],[2,-8],[1,-10],[3,-8],[4,-1],[2,7],[0,9],[-3,8],[6,6],[0,8],[-1,8],[4,2],[5,-3],[9,-15],[5,-4],[17,5],[10,19],[2,20],[1,9],[-5,34],[-4,19],[-14,27],[-4,19],[0,11],[1,11],[2,10],[2,9],[0,2],[1,2],[4,7],[1,5],[1,5],[1,11],[1,6],[4,8],[9,14],[1,11],[-1,7],[-24,85],[-6,14],[-3,-2],[-9,-12],[-3,-2],[-10,1],[-8,-2],[-21,-14],[-9,-2],[-1,4],[0,10],[-5,12],[-6,5],[-7,2],[-6,4],[-5,10],[-2,9],[-8,13],[-3,8],[-6,43],[2,23],[13,35],[2,25]],[[75453,66909],[39,3],[11,-6],[10,-11],[4,-3],[12,1],[13,-4],[6,1],[10,8],[16,32],[10,10],[6,1],[23,-4],[3,1],[2,2],[2,6],[0,5],[-2,6],[1,5],[2,10],[3,-2],[3,-8],[4,-22],[4,-11],[4,-4],[4,10],[3,18],[2,-1],[1,-10],[3,-7],[5,1],[2,10],[2,12],[3,8],[3,-1],[4,-15],[3,-4],[3,1],[10,14],[13,8],[4,5],[8,16],[3,3],[7,2],[7,7],[10,14],[7,17],[1,16],[3,18],[0,7],[-4,6],[-9,3],[-5,3],[0,8],[5,20],[6,16],[8,14],[18,21],[2,3],[1,-3],[1,-5],[1,-2],[4,-1],[5,1],[4,2],[4,5],[4,8],[7,18],[4,9],[5,5],[11,7],[4,7],[7,16],[25,34],[7,14],[5,20],[4,22],[2,20],[9,14],[9,13],[12,13],[15,24],[10,12],[26,29],[29,4],[15,-4],[5,0],[5,5],[5,7],[4,6],[4,-2],[5,-5],[4,3],[19,32],[5,5],[16,10],[2,4],[1,6],[3,2],[4,0],[2,1],[1,5],[-1,3],[-1,4],[1,4],[3,5],[5,2],[6,0],[4,-1],[5,6],[6,5],[4,6],[14,12],[16,8],[11,20],[21,1],[11,26],[16,28],[-11,21],[-10,23],[4,30],[10,-2],[4,2],[3,6],[4,16],[3,6],[6,7],[8,2],[14,0],[7,2],[4,4],[4,6],[15,42],[5,8],[8,2],[11,-8],[10,-13],[14,-32],[4,-9],[-2,-24],[4,-4],[6,-1],[5,2],[11,1],[10,-6],[21,-18],[6,-3],[-2,5],[-5,10],[-2,11],[4,-5],[5,-4],[16,-8],[15,-16],[5,-3],[20,-7],[3,-1],[2,-3],[1,-5],[1,-5],[0,-5],[3,-3],[15,-4],[-2,36],[9,14],[18,1],[11,-5],[4,28],[6,5],[1,-22],[5,-15],[2,8],[10,-3],[3,4],[0,13],[-3,22],[1,7],[10,2],[0,4],[0,6],[1,5],[3,4],[2,1],[3,0],[3,2],[15,-13],[19,-6],[9,33],[-1,40],[9,3],[5,4],[19,-17],[25,21],[17,3],[17,3],[18,-1],[3,-8],[4,-31],[3,-9],[8,-18],[8,-9],[9,0],[10,12],[6,8],[4,3],[3,-4],[5,-10],[0,-7],[-7,-20],[-4,-18],[-3,-5],[-30,-16],[-4,-5],[-3,-8],[-3,-9],[6,-48],[24,30],[20,12],[4,-36],[25,-25],[-2,-8],[0,-7],[3,-4],[4,-1],[5,-8],[2,-11],[3,-26],[3,-12],[15,-34],[5,-29],[1,-29],[-27,-39],[-18,-19],[9,-28],[-12,-27],[10,-18],[9,-40],[5,5],[2,35],[2,27],[9,30],[15,14],[24,-11],[20,-42],[19,-24],[13,-30],[3,-43],[10,-11],[9,-4],[9,4],[10,12],[12,11],[11,-5],[18,-31],[3,-2],[3,0],[2,-2],[3,-14],[2,-6],[16,-23],[11,-11]],[[77034,67180],[1,-16],[-8,-36],[-2,-20],[4,-15],[13,-28],[2,-16],[-1,-9],[-5,-17],[-1,-9],[0,-14],[1,-7],[-2,-4],[-5,-6],[-6,-4],[-1,4],[0,8],[-4,8],[-4,1],[-5,-3],[-5,-5],[-4,-6],[-3,-9],[-5,-10],[-14,-24],[-2,-3],[-3,-1],[-2,-2],[-2,-9],[-2,-3],[-5,-4],[-2,-3],[-1,-6],[-1,-8],[-1,-2],[-1,0],[-4,-3],[-9,-5],[-4,-4],[-9,-23],[-5,-8],[-11,-15],[-5,-8],[-3,-10],[-3,-12],[0,-12],[1,-6],[4,-9],[0,-5],[1,-6],[1,-11],[1,-5],[0,-9],[-3,-17],[1,-12],[6,-21],[46,-113],[7,-15],[2,-5],[0,-11],[1,-5],[2,-4],[2,-3],[3,-4],[1,-6],[0,-5],[-3,-15],[-1,-4],[-4,-3],[-2,2],[-2,4],[-4,3],[-3,-1],[-2,-2],[-3,-3],[-3,0],[-3,3],[-2,4],[-2,5],[-2,4],[-39,34],[-6,10],[0,10],[2,9],[3,12],[-2,5],[-9,14],[-3,8],[-6,19],[-3,7],[-5,7],[-10,8],[-5,3],[-5,1],[-3,-3],[-5,-9],[-3,-3],[-3,-1],[-2,2],[-2,3],[-2,3],[-8,3],[-3,-5],[-2,-10],[-6,-13],[-4,-5],[-6,-3],[-6,-1],[-4,2],[-19,2],[-73,-24],[-19,-16],[-17,-24],[-11,-28],[-10,-37],[-6,-17],[-8,-15],[-8,-7],[-15,-6],[-8,-5],[-12,-29],[-7,-23],[-3,-7],[-3,-3],[-13,-3],[-4,-3],[-4,-8],[-2,-14],[-4,-12],[-4,-4],[-6,0],[-6,2],[-12,-6],[-7,-19],[-7,-25],[-8,-20],[-5,-6],[-21,-14],[-10,-9],[-5,-3],[-4,1],[-2,0],[-5,12],[-5,-1],[-3,-4],[-3,-12],[-3,-4],[-2,-3],[-7,-3],[-2,-2],[-3,-6],[-1,-4],[-1,-17],[0,-4],[0,-4],[-1,-6],[-3,-9],[-8,-18],[-5,-7],[-4,-11],[1,-10],[5,-19],[1,-11],[0,-9],[-4,-20],[-2,-19],[0,-23],[1,-24],[3,-18],[3,-4],[2,-1],[2,-1],[2,-3],[1,-4],[-1,-5],[-2,-4],[-1,-5],[3,-40],[3,-6],[10,-7],[4,-7],[0,-12],[-3,-12],[-9,-21],[-12,-24],[-4,-6],[-11,-7],[-3,-6],[-2,-13],[0,-11],[6,-61],[0,-14],[-1,-10],[-3,-4],[-6,-1],[-2,-2],[-3,-5],[-25,-71],[-1,-2],[-2,-3],[-2,-2],[0,-3],[3,-6],[-1,-2],[-2,-3],[-6,0],[-2,-2],[-4,-10],[-7,-22],[-5,-8],[-5,-3],[-10,-2],[-5,-4],[-9,-12],[-3,-5],[-6,-12],[-6,-19],[-16,-89],[1,-24],[7,-18],[10,-7],[11,-5],[10,-9],[5,-17],[2,-25],[-2,-25],[-5,-18],[-5,-12],[-5,-51],[-4,-15],[-11,-29],[-2,-18],[0,-11],[-1,-11],[-2,-10],[-3,-8],[-4,-4],[-4,-1],[-3,0],[-4,-2],[-3,-9],[-5,-41],[-4,-13],[-12,-16],[-3,-6],[-3,-9],[-3,-30],[-5,-5],[-3,-5],[-2,-7],[0,-24],[-3,-7],[-3,-5],[-3,-7],[0,-3],[0,-10],[0,-5],[-2,-5],[-6,-8],[-2,-5],[-1,-10],[-1,-20],[-1,-9],[-14,-63],[-3,-23],[-1,-21],[-1,-10],[-3,-7],[-1,-6],[-2,-22],[-1,-9],[-12,-33],[-3,-12],[-1,-12],[1,-13],[-1,-12],[-1,-2],[-3,-7],[-5,1],[-4,8],[-4,11],[-4,7],[-16,18],[-7,2],[-9,5],[-8,6],[-8,3],[-22,-5],[-6,6],[-11,29],[-9,6],[-14,3],[-13,-1],[-7,-8],[-1,-5],[-1,-4],[-1,-4],[-2,-3],[-2,-1],[-2,3],[-2,4],[-1,2],[-5,-4],[-9,-9],[-6,-1],[-5,1],[-2,5],[-1,8],[-1,8],[-10,18],[-2,7],[-8,24],[-6,6],[-7,-5],[-3,-9],[-2,-14],[0,-3],[-1,-11],[1,-13],[1,-11],[2,-9],[6,-20],[3,-5],[1,-3],[1,-4],[1,-10],[0,-21],[5,-69],[8,-12],[2,-6],[4,-10],[1,-6],[1,-20],[-9,-115],[0,-16],[1,-35],[1,-6],[0,-6],[-1,-5],[-6,-15],[-1,-10],[-1,-10],[1,-25],[-2,-40],[0,-9],[1,-7],[0,-8],[-12,-45],[-4,-11],[-5,-10],[-8,-7],[-7,-1],[-6,10],[-4,11],[-4,8],[-5,3],[-7,-5],[-4,-11],[0,-15],[1,-17],[3,-12],[5,-22],[2,-11],[-1,-11],[-4,-13],[-10,-23],[-2,-14],[-1,1],[-9,-16],[-3,-47],[1,-13],[2,-11],[7,-22],[1,-11],[0,-13],[-3,-24],[0,-13],[3,-20],[2,-9],[10,-21],[4,-25],[2,-69],[0,-6],[-1,-7],[-3,-3],[-2,-1],[-6,-5],[-2,0],[0,-1],[0,-7],[5,-19],[-6,-3],[-4,3],[-4,6],[-5,3],[-8,3],[-2,0],[-4,-3],[0,-3],[0,-5],[0,-40],[1,-5],[-5,-4],[-4,-1],[-2,-5],[-6,-19],[0,-8],[1,-8],[2,-8],[0,-4],[1,-4],[0,-4],[0,-4],[-1,-2],[0,-1],[-2,-2],[-2,0],[-2,1],[-1,4],[-4,10],[-4,5],[-4,-2],[-3,-13],[-2,-17],[-3,-6],[-3,6],[-2,17],[-2,17],[-5,13],[-18,34],[-18,26],[-6,4],[-3,-5],[-1,-7],[1,-17],[0,-6],[-1,-2],[-2,1],[0,1],[-2,-12],[0,-9],[1,-8],[0,-8],[-2,-8],[-3,-4],[-4,0],[-3,-2],[-3,-8],[-2,-4],[-2,-3],[-2,-2],[-2,-2]],[[75715,63485],[0,5],[-1,6],[-4,39],[-6,40],[3,5],[5,0],[3,3],[0,15],[-16,194],[0,10],[-4,18],[-1,10],[0,35],[-1,45],[-2,9],[-3,9],[-7,13],[-3,9],[-2,18],[-3,46],[-4,10],[-9,8],[-5,15],[-2,20],[0,41],[-7,84],[0,24],[1,9],[5,20],[2,11],[0,6],[-1,6],[-2,9],[0,6],[1,12],[0,5],[-1,3],[-4,6],[-1,4],[-1,4],[1,8],[-1,5],[-1,5],[-4,7],[-1,4],[-2,9],[-1,29],[-11,67],[-1,20],[3,25],[0,11],[0,2],[-6,6],[-5,-5],[-3,-28],[-4,-8],[-4,11],[-3,22],[-5,17],[-12,-8],[-5,-10],[-9,-25],[-4,-8],[-7,-3],[-4,4],[-12,26],[-3,11],[-4,8],[-4,0],[-1,-8],[-1,-13],[0,-22],[8,-69],[-1,-23],[-6,-21],[-4,-8],[-4,-6],[-15,-13],[-5,-8],[-7,-19],[-8,-28],[-5,-29],[1,-24],[4,-19],[4,-40],[4,-18],[1,-7],[-1,-6],[-4,-9],[-1,0],[-3,0],[-1,0],[-1,-2],[0,-3],[0,-3],[0,-2],[-5,-14],[-2,-4],[-5,-9],[-2,-4],[-3,-4],[-8,-4],[-3,-2],[-2,-1],[-2,1],[-2,1],[-2,1],[-3,-2],[-1,-5],[-1,-6],[-2,-4],[-4,-5],[-1,2],[0,6],[-2,6],[-4,4],[-3,1],[-4,3],[-4,8],[-1,6],[0,17],[-1,3],[-2,1],[-1,2],[-2,15],[-6,43],[-1,6],[-2,19],[-1,0],[-4,8],[0,3],[0,3],[0,4],[-2,5],[0,-1],[-1,-4],[-2,9],[-4,11],[-5,8],[-7,0],[-3,-9],[-1,-14],[0,-26],[5,-50],[-1,-19],[-9,5],[-7,17],[-4,25],[-6,95],[-1,6],[-2,5],[0,5],[2,5],[3,5],[1,5],[-1,4],[-4,2],[-3,5],[-3,12],[-4,25],[-1,15],[-1,4],[-2,6],[-4,6],[-3,4],[-2,10],[-3,19],[-2,10],[-8,30],[-1,10],[1,15],[3,1],[4,-1],[3,10],[-2,8],[-5,4],[-4,4],[-1,13],[2,12],[5,3],[5,1],[5,5],[3,10],[6,32],[0,11],[-1,7],[-3,14],[0,8],[1,9],[10,33],[3,7],[3,7],[5,4],[4,-1],[1,-1],[2,-1],[3,-1],[3,4],[3,24],[0,23],[4,15],[11,2],[21,-9],[11,-2],[11,3],[7,4],[4,5],[2,8],[3,13],[2,37],[2,7],[3,-2],[5,-24],[2,-9],[5,-6],[5,-2],[5,4],[4,9],[-1,10],[-1,12],[-1,12],[3,8],[17,-8],[3,0],[1,-4],[0,-13],[1,-6],[9,-16],[5,-3],[4,4],[2,11],[6,50],[0,12],[-3,23],[1,11],[6,4],[3,-5],[6,-8],[5,-4],[0,8],[-6,20],[0,7],[23,-4],[8,2],[7,6],[6,14],[1,17],[-2,36],[2,11],[3,7],[4,5],[3,5],[1,1],[3,9],[2,9],[1,20],[3,23],[14,77],[0,9],[1,10],[-1,9],[-4,19],[-1,11],[2,10],[8,7],[10,-7],[19,-23],[1,-4],[1,-3],[2,-2],[3,-1],[17,11],[9,5],[4,12],[1,7],[-1,10],[-2,10],[-2,5],[-7,5],[2,4],[0,1],[-1,2],[-3,3],[-9,13],[0,2],[-5,3],[-2,1],[0,6],[-1,11],[-7,8],[-8,6],[-5,13],[-2,3],[-14,4],[-5,2],[-4,4],[-3,4],[-4,7],[-4,10],[-2,3],[-2,1],[-4,-2],[-2,1],[-2,3],[-4,0],[-2,2],[-2,3],[-2,8],[-2,4],[-8,5],[-9,5],[-9,0],[-7,-4],[-5,-3],[-16,4],[-30,-7],[-13,2],[-4,-1],[-2,-3],[-2,-7],[-2,-3],[-2,1],[-4,4],[-3,-1],[-1,-9],[-3,-6],[-7,-2],[-7,1],[-4,2],[-5,7],[-2,7],[-2,5],[-5,0],[-2,-2],[-5,-7],[-3,-2],[-3,0],[-5,-4],[-3,-1],[-11,3],[-41,24],[-14,14],[-2,-1],[-7,-6],[-3,-1],[-15,1],[-45,-14],[-9,-6],[-2,0],[-31,-9],[-8,2],[-4,4],[-4,5],[-3,4],[-5,1],[-1,-1],[-3,-6],[-2,-2],[-2,0],[-10,3],[-6,5],[-4,2],[-4,1],[-11,-6],[-22,4],[-29,-12],[-9,1],[-22,18],[-44,18],[-61,51],[-11,-1],[-10,-8],[-4,2],[-3,11],[-3,21],[-1,21],[1,17],[1,6],[2,15],[4,30],[1,44],[2,42],[-3,23],[-6,30],[-5,53],[1,15],[12,41],[1,14],[-2,3],[-4,1],[-6,6],[6,4],[4,6],[1,8],[-4,9],[0,1],[-1,0],[-1,-1],[-2,-3],[-2,-2],[-1,1],[-2,4],[-2,8],[-6,14],[-1,6],[-1,10],[1,8],[0,7],[-4,10],[-2,8],[-1,10],[-2,8],[-3,6],[-3,0],[-5,-1],[-2,1],[-4,3],[0,1],[0,2],[0,13],[0,12],[-1,9],[-5,2],[-6,-4],[-2,-5],[0,-18],[2,-7],[0,-3],[-6,4],[-2,-1],[-1,-1],[-2,-4],[-3,-10],[2,-8],[4,-4],[5,-1],[-3,-4],[-4,-4],[-3,-5],[0,-7],[3,-3],[4,2],[3,-1],[2,-7],[-2,-10],[-12,-20],[-3,-16],[1,-8],[-1,-7],[-2,-6],[-4,-1],[-3,3],[-2,6],[-4,13],[-1,2],[-2,0],[-1,1],[-15,-3],[-2,-1],[-1,0],[-1,0],[-2,1],[-4,12],[-3,0],[-3,-6],[-5,-5],[-4,1],[-6,5],[-5,7],[-7,15],[-10,9],[-2,5],[-2,12],[-2,7],[-5,5],[-18,15],[-3,8],[-2,11],[-3,36],[-2,9],[-5,18],[-2,9],[0,16],[3,1],[4,-3],[2,2],[0,8],[-2,4],[-7,4],[-4,4],[-1,4],[1,5],[-1,7],[-2,4],[-6,3],[-4,2],[-2,4],[-4,10],[-3,3],[-5,6],[-2,5],[-3,1],[-4,-4],[-4,-6],[-3,-10],[-3,-11],[0,-10],[6,-12],[8,-5],[7,-7],[3,-17],[1,-5],[3,-1],[2,1],[3,3],[-1,-12],[2,-4],[3,-1],[3,-1],[2,-11],[-6,-8],[-12,-6],[-8,5],[-13,24],[-7,3],[-6,-8],[-4,-19],[-4,-4],[-5,4],[-3,9],[-1,10],[-3,9],[-10,7],[-23,-16],[-5,7],[2,4],[10,10],[4,6],[3,11],[-1,7],[-4,6],[-6,6],[-2,4],[0,11],[-2,2],[-2,1],[-1,4],[1,5],[1,5],[-6,3],[-3,3],[-3,3],[-3,6],[-1,7],[-2,5],[-3,3],[-6,0],[-3,1],[-6,5],[-6,7],[-2,4],[-3,7],[-3,5],[-4,8],[-4,4],[-10,6],[-4,8],[-1,12],[1,12],[-1,11],[-2,4],[-4,-8],[-3,-11],[-2,-8],[-6,-38],[-4,-12],[-1,-8],[0,-9],[2,-8],[4,-2],[1,3],[1,14],[1,4],[2,0],[6,-5],[16,-6],[8,-7],[4,-13],[5,-32],[1,-15],[-6,2],[-2,-1],[-3,-1],[-3,1],[-2,1],[-2,4],[-2,-3],[-1,-5],[-2,-5],[-13,-16],[-5,-8],[-4,-11],[-1,-8],[1,-22],[-3,-9],[-5,-6],[-16,-10],[-5,-3],[-3,-2],[-2,-4],[-2,-4],[-3,-4],[-9,-12],[-2,-7],[-3,-19],[-1,-3],[0,-3],[0,-6],[1,-3],[2,-2],[1,-3],[1,-7],[-2,-11],[-7,-11],[-6,-20],[-5,-33],[-1,-5],[-2,-1],[-1,-3],[2,-26],[2,-9],[0,-6],[0,-5],[4,-9],[2,-5],[2,-12],[3,-7],[5,0],[6,5],[4,5],[13,7],[9,-9],[17,-37],[20,-27],[7,-16],[1,-36],[4,-8],[11,-10],[3,-12],[7,-11],[2,-8],[3,-6],[6,-2],[12,-1],[5,-5],[9,-11],[6,-3],[3,2],[3,5],[2,5],[3,5],[2,1],[3,-1],[2,0],[3,2],[0,11],[8,-7],[3,-4],[3,-8],[4,-6],[2,-7],[0,-13],[-4,-21],[0,-4],[3,-4],[1,-5],[0,-6],[1,-6],[7,-16],[2,-3],[2,-2],[6,0],[2,-3],[4,-9],[7,-2],[14,1],[2,-5],[0,-5],[0,-6],[-2,-6],[-11,-15],[-2,-6],[-1,-8],[1,-8],[-1,-6],[-5,-2],[4,-13],[-7,1],[-19,13],[-2,2],[-1,2],[-3,-1],[-1,-5],[-3,-12],[-2,-4],[-17,4],[-17,12],[-8,3],[-10,0],[-2,-1],[-4,-8],[-2,-2],[-3,-2],[-1,0],[-2,2],[-7,4],[-9,6],[-4,3],[-10,-4],[-2,-9],[0,-34],[-2,-39],[-3,-17],[-7,-16],[-1,-15],[-3,-14],[-10,-25],[-5,-17],[-2,-4],[-5,1],[-12,6],[-3,0],[0,11],[-3,12],[-4,10],[-4,6],[-5,1],[-6,-4],[-13,-14],[0,-3],[1,-3],[1,-5],[4,-21],[1,-11],[-3,-8],[-4,-7],[-2,-11],[-4,1],[-2,-4],[-1,-7],[0,-8],[-2,-5],[-3,-2],[-4,-2],[-1,-26],[-3,-10],[-3,-11],[-1,-18],[5,-3],[5,-4],[2,-12],[4,-8],[1,-3],[0,-31],[1,-3],[1,-3],[2,-6],[3,-8],[0,-4],[8,-4],[73,-74],[21,-32],[6,-3],[18,-2],[14,-9],[6,1],[4,13],[3,13],[6,-2],[9,-11],[7,-17],[1,-24],[1,-2],[0,-10],[1,-2],[-1,-5],[-3,-10],[-1,-5],[-4,-4],[-7,-4],[-2,-6],[-2,-7],[0,-6],[1,-12],[0,-6],[-2,-13],[0,-5],[1,-7],[6,-9],[0,-7],[7,-3],[0,-6],[-3,-8],[-3,-12],[1,-7],[2,-11],[1,-13],[-1,-11],[-3,-6],[-10,-21],[-4,-5],[-5,-2],[-6,1],[-5,-1],[-5,-7],[-1,-6],[1,-5],[0,-5],[0,-6],[-1,-7],[-4,-12],[-2,-6],[0,-6],[2,-9],[1,-6],[-6,-53],[0,-7],[3,-3],[3,-1],[1,-2],[-1,-7],[0,-5],[0,-4],[2,-6],[3,-2],[6,1],[2,-1],[4,-9],[7,-23],[4,-9],[8,-11],[3,-3],[5,-16],[3,2],[3,10],[4,6],[4,-6],[-1,-13],[-14,-70],[-6,-21],[-3,-12],[0,-13],[3,-11],[4,-7],[18,-11],[3,0],[2,2],[2,3],[3,3],[3,2],[5,-2],[19,-14],[3,-2],[2,-1],[8,0],[1,-2],[0,-5],[-1,-7],[-3,-5],[-7,-12],[-15,-32],[-4,-15],[-1,-30],[-2,-17],[0,-12],[1,-6],[5,-14],[3,-9],[6,-28],[3,-7],[8,-5],[3,-6],[1,-8],[-1,-12],[-1,-11],[-1,-8],[-3,-9],[-3,-8],[-2,-8],[1,-11],[3,-17],[1,-7],[1,-14],[3,-12],[3,-15],[1,-16],[-1,-14],[-7,-8],[9,-7],[3,-5],[3,-22],[5,-23],[1,-14],[0,-5],[-3,-8],[0,-6],[0,-5],[3,-32],[1,-7],[5,-16],[-4,-5],[3,-13],[12,-31],[2,-10],[2,-12],[0,-14],[-5,-12],[0,-1]],[[74738,63575],[0,1],[-4,4],[1,-9],[-1,-6],[-1,-7],[-1,-9],[1,-9],[3,-16],[1,-7],[3,-38],[-2,-17],[-6,-8],[-4,4],[-3,-1],[-1,-6],[0,-9],[-4,5],[-10,12],[-4,3],[-2,6],[-1,12],[-1,10],[-4,0],[-3,-10],[2,-13],[3,-12],[4,-5],[4,-3],[5,-5],[7,-12],[6,-18],[4,-50],[4,-22],[1,-3],[5,-11],[4,-18],[1,-2],[1,-25],[-2,-9],[-5,-5],[-3,0],[-2,3],[-2,3],[0,4],[-1,4],[-2,-5],[-2,-8],[0,-3],[-5,-1],[-7,7],[-12,17],[-10,3],[-2,2],[-1,5],[-1,6],[-3,46],[-2,10],[-2,0],[-1,-10],[-4,-20],[0,-8],[1,-11],[5,-18],[-1,-10],[-4,-8],[-5,-3],[-5,3],[-3,10],[5,8],[1,3],[0,4],[0,6],[-2,10],[-2,-12],[-1,-6],[-2,-2],[-3,-1],[-1,-3],[0,-5],[-1,-6],[2,-11],[2,-9],[2,-9],[-2,-9],[-8,-8],[-9,3],[-6,11],[4,18],[-9,41],[-1,11],[5,67],[-1,9],[-1,9],[5,34],[1,32],[1,8],[3,7],[4,6],[3,7],[2,11],[-3,12],[-10,12],[-2,8],[1,9],[5,10],[9,16],[-6,-1],[-4,-5],[-4,-7],[-3,-8],[-2,-8],[-1,-10],[2,-7],[5,-3],[4,-7],[-2,-14],[-6,-22],[-1,-8],[-3,-10],[-3,-5],[-3,5],[-3,-3],[-4,0],[-3,3],[-1,6],[0,9],[1,5],[4,13],[2,10],[0,8],[-1,9],[-1,17],[-2,13],[0,7],[5,25],[5,6],[2,14],[0,11],[-6,1],[0,-4],[-1,-9],[-2,-8],[-1,-1],[0,-3],[-3,-11],[-1,-11],[-3,-6],[0,-4],[-1,-4],[1,-14],[1,-12],[1,-6],[-2,-11],[-5,-14],[-1,-9],[0,-26],[0,-10],[-9,-47],[0,-11],[0,-36],[0,-3],[4,2],[7,5],[5,0],[2,-17],[0,-10],[-2,-13],[-3,-8],[-4,5],[-2,0],[2,-40],[-1,-15],[-5,6],[0,-30],[-1,-8],[-4,-2],[-4,4],[-2,8],[-2,-7],[0,-6],[1,-6],[3,-6],[-9,-5],[-5,6],[-2,13],[2,15],[2,4],[2,3],[1,4],[1,7],[0,8],[1,8],[1,6],[2,5],[-6,32],[-1,17],[2,13],[6,19],[-1,17],[-4,16],[-6,15],[6,24],[0,12],[-6,9],[2,-11],[-3,-7],[-3,-7],[-2,-12],[1,-11],[4,-20],[1,-11],[0,-8],[-2,-1],[-2,1],[-2,-2],[-1,-15],[-3,-10],[-1,-11],[-1,-11],[1,-10],[4,-17],[1,-8],[-1,-11],[-4,-12],[-4,-5],[-4,-3],[-5,-7],[-4,1],[-3,18],[0,24],[3,16],[-4,-2],[-4,-5],[-2,-1],[-3,2],[-2,5],[-1,7],[-1,6],[-2,-5],[0,-5],[1,-7],[5,-12],[1,-5],[0,-7],[-1,-8],[-3,-12],[-4,-6],[-3,3],[-2,13],[0,66],[-1,12],[-3,9],[-4,11],[-4,0],[1,-14],[9,-58],[0,-14],[-1,-6],[-2,-13],[-1,-7],[2,-5],[3,-7],[1,-4],[1,-6],[-1,-2],[-2,-1],[-3,-5],[-2,-2],[-3,-1],[-4,1],[-1,2],[-1,13],[-2,13],[-4,6],[-4,-6],[-6,23],[-2,14],[0,12],[3,11],[3,12],[2,14],[-2,16],[2,8],[-2,10],[-14,49],[1,6],[1,5],[-4,31],[1,10],[2,9],[2,7],[12,30],[4,15],[-2,13],[-3,30],[-1,10],[-9,10],[-13,9],[-11,10],[-1,14],[-5,-7],[-4,-3],[-5,2],[-5,8],[-6,15],[-4,10],[-1,9],[-1,12],[-4,22],[-1,11],[0,12],[-2,11],[-3,7],[-6,0],[0,-4],[4,-12],[4,-25],[3,-46],[2,-9],[3,-11],[7,-17],[5,-6],[5,-3],[9,-1],[10,-4],[11,-8],[7,-13],[4,-23],[-3,-16],[-6,-18],[-8,-15],[-8,-8],[-10,0],[-1,-2],[0,-7],[1,-6],[1,-6],[-1,-6],[-4,-11],[-14,-61],[-4,-10],[-3,-5],[-3,-2],[-11,-16],[-1,-1],[-1,-1],[-1,-3],[-1,-7],[0,-2],[-7,-14],[-9,-13],[-22,-22],[-15,-22],[-5,-3],[-12,1],[-5,-1],[-40,-21],[-3,-2],[-18,-14],[-17,-15],[-14,-5],[-10,5],[-3,-3],[-3,-1],[-6,0],[-3,-2],[-25,-26],[-13,-20],[-41,-87],[-14,-42],[-8,-48],[2,-55],[30,-138],[3,-26],[-3,-15],[-5,4],[-5,1],[-11,-5],[3,-9],[6,-5],[13,-2],[6,1],[2,-2],[3,-7],[1,-7],[0,-5],[0,-5],[-3,-4],[-4,4],[-4,1],[-3,-2],[-3,-7],[4,0],[2,-1],[2,-3],[2,-4],[2,1],[1,-1],[1,-2],[2,-6],[6,6],[4,6],[3,4],[-4,-11],[-7,-13],[-8,-11],[-14,-10],[-42,-65],[-6,-13],[-5,-16],[-3,-18],[-1,-38],[6,7],[4,8],[4,4],[5,-6],[0,8],[1,7],[1,13],[4,-13],[-4,-22],[-7,-21],[-5,-9],[-3,-2],[-6,-5],[-5,-7],[-2,-6],[2,-5],[5,4],[10,13],[-11,-16],[-24,-31],[-13,-10],[-13,-7],[-7,-5],[-4,-8],[-2,-6],[-3,-26],[-3,-12],[0,-9],[-15,-35],[-6,-9],[1,-6],[2,-4],[3,-3],[4,0],[-9,-9],[-13,15],[-20,35],[-13,-2],[-6,1],[-2,7],[-1,2],[-7,12],[-1,7],[-2,13],[-1,5],[-1,0],[-3,-13],[3,-19],[1,-5],[3,-5],[5,-5],[8,-13],[4,-4],[11,-5],[1,-1],[3,1],[1,0],[2,-3],[0,-4],[0,-3],[0,-2],[2,-5],[2,-4],[2,-3],[3,-1],[4,-3],[4,-6],[5,-3],[-29,-32],[-44,-32],[-6,-7],[-3,-1],[-3,5],[-3,3],[-3,-2],[-2,-5],[-2,-2],[-5,-1],[-35,-22],[-12,-4],[-10,-13],[-6,-5],[-2,0],[-10,0],[-3,-1],[-5,-6],[-8,-3],[-17,-18],[0,3],[3,2],[1,3],[-7,-2],[-18,-22],[-19,-15],[-7,-1],[-2,2],[0,4],[-1,10],[-1,1],[-1,-1],[-2,0],[-1,4],[0,4],[1,0],[2,0],[0,2],[4,5],[7,4],[12,9],[1,-3],[0,-3],[-1,-4],[-2,-6],[13,16],[5,4],[-3,3],[-1,4],[0,4],[2,6],[-1,11],[1,49],[-4,4],[-12,4],[-10,7],[-4,1],[-6,-3],[-7,-10],[-12,-25],[-15,-26],[-4,-1],[-4,-1],[-3,-3],[-3,-3],[-6,-11],[-7,-15],[-5,-17],[1,-14],[-5,-8],[-4,-20],[-3,-7],[-4,-7],[-3,-10],[0,-10],[3,-7],[0,-4],[-3,-2],[-4,-5],[-4,-6],[-2,-6],[0,-8],[2,-5],[1,0],[3,7],[1,-6],[1,-6],[-1,-6],[-1,-6],[3,2],[2,3],[1,4],[1,3],[3,3],[3,0],[2,0],[2,1],[5,7],[-1,6],[-1,7],[1,9],[2,-4],[2,0],[2,1],[3,3],[-8,10],[-3,2],[0,4],[6,0],[2,5],[3,7],[4,4],[0,4],[-1,1],[-2,2],[-1,3],[0,4],[1,2],[3,11],[0,2],[4,-1],[13,-8],[12,21],[3,0],[3,-2],[3,1],[2,9],[2,-7],[1,-5],[1,-5],[0,-10],[-1,-1],[-4,-3],[-1,-2],[0,-3],[-1,-6],[-1,-3],[-2,-4],[-5,-5],[-4,-2],[-2,5],[-1,8],[-2,1],[-2,-6],[-1,-9],[-1,2],[-3,1],[-2,1],[4,-9],[1,-4],[0,-3],[7,1],[69,68],[-11,-13],[-21,-23],[-23,-22],[-12,-11],[-14,-23],[-13,-10],[-17,-26],[-30,-61],[-21,-29],[-34,-61],[-23,-59],[-3,-2],[-1,-1],[-3,5],[-4,9],[-3,5],[-2,-5],[0,-6],[-3,-9],[0,-7],[0,-3],[4,-8],[1,-6],[5,15],[1,2],[2,0],[2,-1],[1,-2],[0,-3],[-8,-22],[-3,-16],[-11,-30],[-6,-18],[-4,-10],[-9,-8],[-23,-71],[-2,-12],[-26,-56],[-3,-11],[-1,-10],[-3,-6],[-14,-20],[-6,-19],[-5,-10],[-6,-4],[-1,-1],[-5,-9],[-2,-2],[-3,-1],[-6,0],[-1,1],[-2,-9],[3,-5],[6,-1],[7,9],[8,13],[7,9],[-5,-8],[-12,-20],[-14,-27],[-2,-8],[-12,-17],[-4,-11],[-6,-9],[-2,-5],[-2,-7],[0,-6],[-2,-6],[-2,-6],[-3,-21],[-10,-16],[-84,-78],[-45,-56],[-8,-15],[-2,-6],[-4,-15],[-1,-4],[-1,-2],[-4,-10],[-2,-2],[-2,-7],[-11,-15],[-4,-8],[-2,0],[-1,3],[-3,9],[0,-10],[0,-12],[1,-10],[-6,-9],[-2,-9],[-2,-19],[-4,-13],[-17,-40],[-7,-8],[-1,-1],[-3,-6],[-1,-1],[-2,1],[-1,1],[0,1],[-1,1],[-1,1],[0,4],[-1,5],[-3,2],[-6,-1],[-1,-5],[2,-7],[6,-4],[6,-6],[2,-3],[0,-5],[-3,-4],[-6,-6],[-3,-6],[-3,-2],[-9,0],[6,-16],[1,-9],[-4,-3],[-4,-2],[-4,-4],[-7,-10],[-23,-17],[-9,-15],[-10,-9],[-6,-10],[-6,-12],[-2,-2],[-4,-3],[-2,-1],[-14,-20],[-2,0],[-2,7],[-4,-5],[-4,-6],[-4,-6],[-12,-6],[-10,-14],[-11,-6],[-68,-85],[-6,-14],[-5,-17],[-3,-8],[-10,-8],[-5,-9],[-8,-22],[-8,-16],[-4,-10],[-2,-19],[-11,-41],[0,-12],[1,-14],[3,-10],[9,-6],[1,-2],[2,-3],[1,-2],[2,1],[2,1],[2,2],[0,1],[5,-5],[3,8],[-1,19],[-1,20],[-2,19],[3,-13],[2,-16],[0,-28],[0,-29],[-4,-30],[-2,-33],[-2,-16],[-7,-30],[0,-5],[0,-4],[0,-3],[-3,-1],[-1,2],[-1,10],[-2,1],[-2,-4],[1,-9],[3,-9],[3,-7],[-13,-8],[-15,-31],[-5,-5],[-4,-2],[-14,-14],[-9,-14],[-6,-6],[-9,2],[-4,-7],[-4,-9],[-4,-7],[-3,0],[-4,0],[-3,-1],[-2,-9],[-2,-2],[-12,-1],[-5,-3],[-5,-4],[-22,-21],[-6,-10],[-12,-6],[-2,0],[-4,2],[-6,7],[-5,6],[-6,-3],[-4,4],[-10,2],[-5,2],[2,7],[-2,6],[-3,3],[-5,0],[3,-12],[-4,-2],[-11,7],[-6,-2],[-16,-10],[1,6],[2,5],[0,4],[-1,4],[-3,6],[-4,0],[-3,-4],[-3,-5],[-5,4],[-4,-1],[-4,-2],[-4,-1],[-16,-21],[-3,-7],[1,-6],[1,-5],[1,-8],[-1,-10],[-7,-17],[-3,-26],[-8,-36],[-3,-31],[-5,-17],[-1,-11],[-1,-31],[-1,-10],[-4,-2],[-13,-27],[-13,-16],[-4,-7],[-8,-21],[0,-7],[1,-5],[2,-5],[1,-3],[2,-12],[0,-5],[-2,-3],[-2,0],[-3,3],[-2,4],[-3,8],[-8,14],[-2,3],[-5,4],[-4,8],[-1,11],[-1,11],[2,45],[0,10],[-1,10],[-2,19],[-2,-6],[2,-7],[-3,-4],[0,3],[-1,2],[-2,3],[4,-23],[1,-25],[-1,-24],[-10,-43],[-7,-44],[-3,-13],[-3,-6],[0,52],[-2,23],[-7,25],[-4,5],[-7,2],[-13,2],[-2,2],[-2,2],[-1,0],[-2,-4],[-1,-4],[1,-2],[-13,-1],[-5,-4],[-4,-5],[-4,-3],[-3,8],[-2,0],[-3,-8],[-4,-7],[-10,-10],[-2,-2],[-2,0],[-2,-1],[-2,-3],[-5,-9],[-2,-3],[-12,-7],[-10,-13],[-22,-44],[-4,-16],[-13,-63],[0,-11],[-5,-18],[-1,-9],[4,-4],[-3,-9],[-4,-17],[-3,-9],[-10,-18],[-3,-11],[-2,-11],[-8,-39],[0,-4],[-3,-55],[-8,-66],[1,-47],[2,-23],[3,-19],[0,-13],[9,-93],[1,-29],[0,-6],[2,-4],[3,-6],[7,-9],[2,-6],[2,-20],[2,-7],[1,-7],[-1,-7],[-1,-4],[-3,-4],[-5,-5],[2,-4],[3,1],[6,3],[2,0],[2,-4],[0,-3],[-1,-4],[-1,-3],[0,-13],[-4,-34],[1,-47],[-1,-26],[-4,-12],[-6,-32],[-3,-8],[-8,-2],[-3,-2],[-5,-11],[0,-2],[-4,-4],[-3,-9],[2,-6],[6,3],[5,9],[4,10],[4,5],[4,-8],[-3,-21],[0,-26],[7,-72],[4,-23],[20,-88],[4,-24],[-1,-26],[-5,-21],[-2,-14],[2,-12],[3,-10],[5,-40],[9,-38],[5,-29],[2,-22],[-2,0],[-8,42],[-9,47],[-14,31],[-3,21],[-9,23],[-3,6],[0,-47],[-2,-18],[-4,5],[-1,7],[1,15],[-1,6],[-2,4],[-2,3],[-2,5],[-1,-14],[0,-7],[-5,-7],[-6,-17],[1,-14],[4,-12],[9,-22],[3,-16],[2,-6],[3,-3],[6,-1],[6,-3],[13,-1],[2,-1],[2,-4],[2,-4],[3,-2],[2,0],[1,0],[-1,-10],[4,-7],[5,-6],[4,-10],[1,6],[1,2],[3,2],[2,-10],[3,-22],[1,-16],[-1,-16],[-2,-30],[-1,-17],[-3,3],[-1,1],[0,-11],[-1,-9],[1,1],[4,2],[0,-13],[-2,-11],[-3,-9],[-2,-11],[0,-6],[2,-18],[-2,-6],[-5,-11],[-1,-6],[-1,-22],[-4,-43],[-1,-72],[-4,-43],[-5,-31],[-1,-21],[-2,-9],[-5,-16],[-2,-11],[-3,-28],[-1,-12],[-1,-8],[-6,-35],[-10,-34],[-1,-9],[-6,-23],[-2,-7],[-7,-8],[-1,-2],[-1,-2],[-8,-32],[-6,-12],[-15,-16],[-2,-7],[2,-2],[6,5],[9,11],[-16,-52],[-4,-9],[-2,-5],[-8,-36],[-8,-19],[-2,-9],[0,-6],[0,-20],[0,-3],[-3,-8],[0,-2],[-2,-13],[-6,-33],[-5,-49],[-3,-4],[-2,-11],[-5,-57],[-1,-23],[-3,-22],[0,-12],[1,-24],[7,-43],[1,-23],[2,0],[1,6],[1,4],[-1,4],[-1,3],[5,-2],[2,-5],[1,-30],[-1,-6],[-2,-2],[-8,0],[-2,1],[-2,1],[-2,-2],[-3,-3],[-3,-4],[-15,-32],[-2,-9],[1,0],[4,4],[13,19],[3,3],[2,10],[4,3],[6,-2],[8,-8],[1,0],[1,-2],[1,-47],[5,-61],[-1,-91],[-1,-16],[-2,-17],[2,-84],[1,-32],[0,-97],[3,-24],[1,-102],[-2,-50],[-2,-7],[-5,-2],[-5,-4],[-5,-2],[-5,4],[0,12],[-6,8],[-34,11],[-4,-2],[-2,-9],[5,1],[4,-1],[5,-1],[4,-3],[2,-2],[3,-4],[2,-2],[8,0],[8,-4],[4,-5],[-1,-7],[-3,-2],[-50,22],[-5,1],[-2,1],[-1,2],[0,6],[1,2],[3,0],[2,1],[9,7],[0,4],[-5,4],[-6,-4],[-10,1],[1,-5],[0,-4],[-6,-4],[-15,-5],[-6,1],[-7,7],[-4,2],[-3,-3],[-6,-10],[-17,-20],[-5,-9],[-4,-11],[0,-7],[0,-8],[0,-7],[-3,-3],[-3,-2],[-3,-6],[-1,-8],[1,-8],[2,-40],[2,-18],[7,-11],[-10,-15],[-12,-24],[-16,-47],[-6,-24],[-5,-12],[0,-2],[-2,-14],[-5,-12],[-10,-21],[-17,-47],[0,-5],[0,-6],[-1,-7],[-1,-4],[-3,-5],[-1,-3],[-3,-8],[-2,-12],[-2,-13],[-2,-28],[-3,-24],[0,-12],[5,-22],[8,-18],[22,-42],[9,-9],[12,-5],[38,-2],[6,5],[6,10],[7,6],[5,-4],[2,-6],[-1,-4],[-2,-5],[-1,-8],[1,-6],[1,-4],[2,-3],[0,-3],[2,-6],[4,-8],[19,-30],[5,-10],[-4,-5],[-4,5],[-18,32],[-19,22],[-17,4],[-4,6],[-4,-1],[-5,4],[-5,1],[-10,-11],[-9,1],[-3,-2],[-7,6],[-10,6],[-10,2],[-9,-2],[-2,-2],[-6,-10],[-3,-1],[-2,0],[-2,1],[-2,0],[-10,-3],[-5,-3],[-8,-9],[-10,-5],[-5,-6],[-2,-6],[-3,-4],[-4,-3],[-14,-2],[-4,-4],[-2,-10],[-2,-6],[-4,-4],[-4,-2],[-37,-9],[-10,-5],[-11,-10],[-9,-14],[-38,-66],[-7,-16],[-9,-36],[-2,-10],[-1,-39],[-1,-13],[-2,-11],[4,6],[3,1],[4,2],[2,11],[2,-13],[-3,-7],[-5,-5],[-5,-7],[-1,-4],[-3,-17],[-4,-11],[-1,-6],[2,-7],[-8,0],[6,-19],[1,-19],[-3,-63],[-2,-6],[-2,-7],[-8,-15],[-2,-5],[-5,-35],[-2,-5],[-4,-2],[-11,-9],[-54,-69],[-3,-8],[-7,-20],[-5,-5],[-30,-10],[-13,-10],[-10,-15],[1,-19],[-15,-4],[-17,7],[-37,24],[-2,2],[-4,9],[-2,4],[-7,9],[-6,4],[-4,6],[-27,51],[-5,8],[-32,49],[-9,22],[-23,69],[-15,29],[-4,18],[-20,50],[-2,14],[-10,19],[-10,35],[-5,11],[-23,43],[-5,13],[2,7],[3,0],[4,-12],[5,2],[5,6],[3,4],[-4,1],[-4,-3],[-3,-1],[-3,7],[1,7],[2,8],[3,7],[3,3],[15,-4],[1,2],[-2,4],[-4,4],[-1,2],[2,2],[4,3],[3,2],[0,5],[-3,2],[-4,-2],[-3,-3],[-2,-3],[-1,-6],[-4,1],[-7,7],[-1,-4],[-3,-18],[-2,-7],[-3,9],[2,4],[1,3],[1,9],[-4,-6],[-3,-7],[-1,-8],[1,-11],[-3,4],[-2,9],[-1,9],[0,8],[-1,7],[-4,12],[-3,20],[-8,35],[1,14],[0,-4],[1,-2],[0,-3],[1,-4],[2,0],[0,8],[1,24],[-2,-4],[-1,-3],[0,-5],[-2,0],[-5,36],[-5,20],[-3,1],[0,-6],[9,-46],[0,-8],[-2,0],[-22,106],[-14,100],[-6,83],[2,15],[-6,89],[-6,44],[-2,6],[-2,27],[-1,8],[4,6],[5,-7],[4,-14],[2,-11],[-1,-3],[-7,4],[-1,-1],[0,-8],[1,-6],[2,-6],[2,-3],[1,4],[1,8],[2,-8],[-1,-9],[-1,-8],[-1,-3],[3,0],[3,3],[1,5],[-2,8],[3,6],[2,-11],[7,-96],[2,0],[0,16],[-3,37],[3,16],[-7,18],[-1,9],[4,5],[1,-8],[4,-16],[2,-8],[1,-7],[-1,-13],[0,-8],[3,-32],[2,-12],[5,-9],[-1,-10],[-1,-8],[-2,-7],[-2,-8],[-5,-52],[1,-9],[5,-4],[14,-5],[2,1],[7,-6],[5,4],[7,18],[-5,6],[-5,7],[-5,4],[-6,-4],[-3,3],[-3,5],[4,14],[0,13],[-1,12],[0,28],[-2,10],[-2,6],[-2,-2],[-1,6],[1,11],[0,7],[-1,6],[-2,10],[-1,7],[1,10],[2,6],[2,6],[-1,12],[-2,11],[-7,22],[-1,10],[-10,22],[-3,8],[-5,-9],[-4,16],[-3,22],[1,12],[-5,7],[-3,32],[-2,1],[-2,4],[-2,4],[-2,13],[-2,-13],[2,-11],[2,-10],[2,-9],[1,-24],[1,-12],[2,-11],[-4,8],[-4,14],[-9,48],[0,10],[1,8],[0,6],[-2,6],[0,9],[13,15],[3,8],[0,4],[2,4],[0,5],[-1,4],[-1,0],[-2,-2],[-2,0],[-2,11],[-2,5],[-3,4],[3,-20],[1,-11],[-3,-10],[-4,-6],[-4,3],[-3,7],[-2,8],[-4,24],[-5,49],[-4,25],[-10,28],[-2,10],[0,12],[-3,26],[-2,9],[-7,15],[-3,8],[-3,22],[-17,72],[-1,11],[0,4],[-2,4],[-1,4],[-1,6],[1,3],[4,6],[1,3],[-8,8],[-5,24],[-4,49],[-13,98],[-25,126],[-1,5],[-2,4],[0,3],[-1,8],[3,4],[1,4],[-2,8],[-4,-2],[-3,8],[-4,23],[-5,18],[-4,7],[-4,3],[-5,1],[-4,3],[-2,6],[-1,12],[-1,11],[-6,16],[1,8],[-15,77],[-7,20],[-35,81],[-2,0],[-5,-4],[0,2],[-1,6],[-7,16],[-5,20],[5,2],[21,-9],[0,4],[-4,5],[-1,6],[1,8],[2,9],[-4,-3],[-5,-11],[-3,-2],[-5,1],[-5,4],[-3,6],[-4,9],[-3,13],[1,5],[9,-2],[4,3],[-1,6],[-5,11],[-1,1],[-11,-18],[-1,-9],[4,-18],[-8,21],[-2,3],[-2,1],[-1,3],[-1,3],[-1,1],[-1,0],[-2,-3],[-1,-3],[1,-2],[-5,8],[-2,12],[-1,21],[-10,50],[-4,27],[2,20],[0,4],[-3,-1],[-2,-4],[-2,-5],[-2,-6],[0,8],[0,7],[-2,14],[-4,21],[-18,65],[-2,12],[-1,5],[-1,3],[-2,4],[-2,4],[0,5],[-1,12],[-3,10],[-6,17],[-21,112],[-2,10],[-4,10],[-1,3],[0,13],[0,6],[-3,7],[-2,4],[-2,6],[-1,8],[7,-8],[2,0],[3,3],[4,10],[2,3],[3,1],[5,2],[4,5],[2,8],[-13,-5],[-12,-8],[-9,3],[-13,113],[3,19],[-2,5],[-1,3],[-2,12],[-1,14],[0,7],[-2,3],[-1,7],[-3,30],[-1,24],[-6,41],[-2,10],[-3,10],[-2,9],[2,7],[-2,10],[-1,20],[-1,15],[3,-17],[1,-15],[4,-1],[-2,4],[0,14],[0,11],[-7,38],[0,14],[-2,32],[1,9],[-1,2],[-1,2],[0,2],[0,2],[2,-2],[1,1],[1,3],[0,7],[2,0],[2,-4],[4,0],[4,3],[3,5],[-4,-1],[-2,2],[-3,10],[-4,8],[0,3],[4,2],[-4,10],[-3,-6],[-5,-25],[-3,19],[-7,49],[-2,36],[-6,22],[-3,19],[-9,24],[-4,15],[-9,24],[-3,12],[0,6],[1,12],[-1,6],[-1,5],[-3,9],[-1,6],[-1,33],[-1,12],[-8,23],[-3,12],[1,14],[4,-6],[7,-3],[6,-1],[4,2],[-2,4],[-18,13],[-2,3],[-4,10],[-1,26],[-2,11],[-2,5],[-1,8],[0,15],[0,5],[-2,3],[-1,4],[-2,21],[-6,23],[0,15],[4,-11],[3,-16],[3,-13],[5,-1],[-3,8],[1,3],[8,-2],[-12,28],[-4,4],[1,2],[1,4],[0,2],[-3,3],[-1,0],[-2,-3],[0,8],[0,3],[0,5],[-4,-5],[0,-7],[0,-8],[-1,-8],[-4,-4],[-4,1],[-3,5],[1,6],[-2,16],[0,13],[3,9],[9,3],[0,4],[-4,3],[-3,-2],[-4,-3],[-3,-2],[-4,2],[-2,6],[0,7],[3,5],[-2,11],[-2,25],[-3,10],[-5,9],[-4,3],[-3,-4],[-4,-9],[-4,15],[-2,5],[-1,0],[-3,-1],[-2,1],[-1,7],[-1,1],[-9,10],[-4,8],[-2,10],[5,-5],[2,3],[0,8],[1,6],[3,4],[3,0],[3,-2],[2,-5],[3,11],[3,7],[3,4],[5,2],[2,-1],[3,-1],[2,1],[0,7],[-1,2],[-3,1],[-2,3],[-1,8],[-3,-6],[-9,-8],[-2,-4],[-1,-5],[-4,-5],[-4,-4],[-4,0],[-3,6],[-3,18],[-3,4],[-1,3],[-11,13],[-2,9],[0,8],[2,18],[-1,9],[-4,4],[-3,2],[-3,3],[-7,28],[-2,4],[-14,9],[2,17],[2,7],[2,6],[6,8],[1,5],[-2,10],[-2,-5],[-15,108],[-3,7],[-3,3],[-6,0],[-6,3],[-5,8],[-7,17],[15,-2],[3,0],[3,2],[3,-3],[4,-2],[4,5],[9,-7],[4,-6],[2,-11],[1,0],[1,1],[1,1],[1,2],[-2,4],[-7,18],[-2,4],[-12,11],[-2,0],[-4,-1],[-1,1],[-2,1],[-2,6],[-1,1],[-10,2],[-3,-2],[0,7],[1,8],[3,8],[2,5],[3,3],[12,5],[-2,4],[-1,3],[0,2],[2,4],[0,3],[-20,-22],[-2,-5],[-6,3],[-4,10],[1,14],[-4,14],[-1,6],[-1,9],[1,7],[1,4],[1,2],[1,5],[3,9],[8,6],[14,7],[0,4],[-10,1],[-5,-2],[-2,-5],[-3,-2],[-9,-13],[-2,-3],[-2,4],[-4,10],[-2,11],[-2,19],[-1,6],[0,5],[4,6],[-3,1],[-5,1],[-5,2],[-2,4],[-1,8],[1,25],[-2,15],[-10,38],[-5,13],[-16,27],[-5,11],[-6,15],[-1,13],[8,1],[0,5],[-4,0],[-5,2],[-3,5],[-1,7],[-1,2],[-2,1],[-2,3],[-1,6],[2,3],[1,3],[1,4],[0,35],[1,9],[2,5],[2,5],[3,7],[-7,-4],[-3,-9],[-1,-14],[-1,-18],[-2,29],[0,24],[-1,9],[-1,1],[-2,-2],[-1,0],[-2,5],[-1,4],[-1,12],[-8,48],[0,3],[0,11],[-1,2],[-4,5],[0,8],[1,5],[3,3],[3,4],[-5,4],[-4,6],[-3,8],[-2,21],[-4,25],[-2,5],[-2,3],[-1,6],[0,13],[1,5],[3,-4],[2,-5],[0,-2],[6,-13],[3,-2],[6,-1],[-2,2],[-2,2],[-2,3],[-1,5],[1,3],[2,6],[2,3],[-5,1],[-4,3],[-4,6],[-2,9],[0,4],[-1,1],[1,0],[2,4],[1,1],[9,8],[0,-10],[1,-4],[1,1],[1,6],[-1,11],[-4,4],[-4,-2],[-4,-6],[-3,14],[-1,4],[1,4],[2,7],[1,5],[-1,8],[-1,5],[-5,7],[-2,16],[1,17],[3,15],[-1,12],[-1,-5],[-3,9],[-4,17],[-1,16],[3,7],[0,2],[-3,22],[0,10],[1,8],[4,15],[-7,8],[-2,5],[2,7],[-3,8],[0,6],[2,1],[3,-7],[2,14],[0,14],[-3,13],[-3,12],[2,8],[-1,9],[-1,9],[-5,20],[0,13],[-5,19],[-1,9],[-1,4],[-5,11],[-2,8],[5,-5],[3,-7],[4,-4],[5,3],[-4,10],[-7,31],[-3,9],[-8,12],[-1,7],[0,7],[3,8],[3,9],[-4,9],[2,12],[-4,15],[-9,22],[-2,10],[1,5],[2,1],[4,0],[3,2],[11,10],[-4,3],[-9,2],[-4,3],[-3,6],[-2,9],[-1,10],[2,7],[-2,5],[-2,7],[-2,8],[1,7],[3,7],[1,7],[0,7],[-2,7],[-1,6],[-1,17],[-2,6],[-4,10],[-2,7],[-1,19],[-3,12],[-13,44],[0,12],[5,12],[-5,0],[-3,5],[0,7],[1,8],[3,6],[3,3],[3,5],[0,10],[-3,-2],[-3,-3],[-2,-5],[-1,-6],[-3,7],[-3,9],[-2,8],[0,1],[1,3],[1,5],[-1,5],[-2,5],[-1,4],[-2,46],[-3,12],[-8,4],[2,12],[1,4],[-1,4],[0,5],[0,6],[1,6],[4,-3],[1,-4],[1,-5],[1,-6],[2,-7],[2,-1],[1,1],[4,1],[5,-1],[5,-4],[5,-6],[4,-10],[-5,-5],[0,-8],[3,-2],[4,11],[1,12],[-3,20],[2,9],[-4,5],[-4,1],[-8,-2],[-5,2],[-5,7],[-3,9],[2,11],[-4,0],[-3,3],[-4,13],[-2,1],[-1,0],[-2,0],[-1,2],[-1,5],[0,2],[1,3],[0,5],[-1,8],[-2,5],[-1,6],[-2,7],[-1,7],[1,23],[1,13],[3,13],[5,7],[6,-2],[4,-9],[8,-28],[6,-12],[1,12],[-3,6],[-4,6],[-2,11],[-1,9],[-2,10],[-3,8],[-3,3],[-8,-3],[-3,3],[-1,10],[-7,35],[-5,8],[-2,19],[-1,23],[0,29],[1,10],[3,8],[4,5],[2,-1],[4,-4],[3,0],[4,16],[3,-6],[10,-22],[-2,-11],[1,-8],[3,-6],[4,-4],[-2,14],[1,15],[3,13],[4,7],[-8,7],[-2,5],[-2,9],[0,4],[1,5],[1,5],[-1,2],[-2,-1],[-1,-1],[-1,-2],[-1,-2],[-4,-4],[-8,7],[-6,14],[5,17],[4,-7],[2,6],[1,16],[3,2],[4,-2],[4,0],[3,10],[-10,0],[0,4],[4,1],[7,5],[14,8],[1,0],[3,12],[-5,1],[-8,-5],[-6,-6],[-1,7],[1,16],[-2,5],[3,13],[-2,4],[-3,2],[-2,8],[2,42],[-2,0],[-5,-21],[-4,-7],[0,-21],[-2,-8],[4,-7],[-2,-12],[-12,-25],[0,6],[-2,14],[-4,-8],[-5,-15],[-4,-16],[-3,-25],[-2,-9],[-2,-3],[-3,7],[0,7],[1,6],[1,7],[-2,9],[-2,0],[-1,-4],[-1,-3],[-3,-6],[-2,7],[2,7],[5,15],[2,9],[1,6],[-1,18],[3,-3],[1,-2],[2,6],[0,6],[-1,6],[-3,2],[4,18],[0,7],[-1,6],[-2,11],[-1,5],[1,5],[3,6],[0,3],[-1,4],[-2,0],[-2,-2],[-2,-9],[-2,-4],[-2,0],[-1,5],[1,6],[5,25],[5,17],[3,7],[-4,1],[-4,-9],[-3,-13],[-4,-7],[-1,36],[1,20],[2,9],[15,3],[8,-2],[5,-12],[4,-3],[9,-3],[4,2],[4,3],[3,0],[5,-9],[6,-32],[4,-12],[7,8],[-6,6],[0,9],[0,9],[-3,4],[-1,4],[-3,8],[-4,9],[-5,4],[-15,-3],[-5,3],[-4,5],[-8,14],[-5,5],[-5,-11],[-5,1],[-4,8],[-7,21],[-1,5],[-3,33],[0,14],[2,8],[4,5],[31,25],[-7,5],[-5,-2],[-6,-5],[-6,-1],[-2,2],[-2,4],[-1,5],[0,7],[-2,5],[-3,4],[-5,5],[-2,0],[1,-7],[1,-5],[0,-5],[-2,-4],[4,-7],[2,-4],[0,-5],[-2,-4],[-2,2],[-5,12],[-3,31],[2,11],[-3,26],[-6,44],[2,-3],[2,-3],[1,-5],[1,-5],[5,5],[0,5],[-2,8],[-1,10],[1,4],[2,0],[1,2],[1,4],[0,6],[0,5],[-1,8],[-11,-27],[-3,-1],[-1,10],[1,22],[-2,7],[-6,17],[0,6],[2,9],[2,9],[0,21],[-1,14],[1,7],[3,3],[2,4],[3,9],[3,11],[1,9],[0,34],[1,7],[5,28],[1,26],[1,6],[4,12],[1,6],[0,2],[-2,0],[-1,1],[-1,3],[0,12],[1,2],[1,19],[2,9],[4,10],[2,10],[1,14],[2,0],[3,4],[3,5],[2,5],[1,6],[1,18],[2,12],[3,13],[11,31],[2,12],[1,12],[0,14],[0,7],[-2,12],[0,7],[1,5],[4,8],[1,7],[1,27],[0,11],[-3,9],[11,16],[2,0],[0,6],[-3,4],[-2,2],[-2,4],[0,5],[1,4],[0,5],[-1,6],[-6,-13],[-4,5],[-1,13],[2,14],[3,9],[-1,1],[-4,-2],[-2,-2],[-10,-16],[2,9],[3,21],[3,6],[-8,20],[5,10],[9,9],[0,12],[-3,-1],[-7,-4],[-5,-1],[-3,6],[-1,5],[-1,5],[-2,3],[-3,1],[-3,0],[-1,2],[-3,8],[-2,9],[5,1],[11,-4],[6,3],[1,6],[-9,43],[-2,5],[-3,-1],[-12,-11],[-1,3],[-1,2],[-2,3],[-1,-3],[0,-4],[-1,-11],[-1,-3],[-8,-8],[1,19],[4,14],[3,11],[-4,9],[-2,-3],[-6,0],[-3,-3],[-1,-5],[0,-6],[0,-13],[0,-8],[-2,-1],[-2,0],[-6,-7],[-2,1],[-4,11],[0,8],[4,10],[18,25],[5,9],[3,3],[3,0],[-3,6],[-10,7],[-2,5],[-2,6],[-4,3],[-3,5],[0,12],[-6,-8],[-2,-4],[-3,8],[-1,7],[-2,17],[-2,15],[-1,5],[1,5],[4,2],[10,3],[2,3],[-2,5],[-5,-1],[-8,-4],[-4,3],[-3,5],[-1,6],[3,2],[17,10],[10,13],[1,2],[15,20],[5,-8],[1,7],[-1,9],[-3,2],[-15,-10],[-5,-5],[-15,-21],[-8,-3],[2,9],[8,33],[5,7],[4,4],[11,20],[4,5],[6,3],[7,7],[6,9],[4,9],[6,23],[4,6],[3,0],[7,-4],[3,-1],[5,3],[13,10],[8,12],[16,12],[18,18],[6,2],[3,3],[2,5],[2,7],[-2,5],[-2,-1],[-10,-11],[-10,-8],[-2,-1],[-5,-9],[-2,-2],[-6,-2],[-12,-12],[-6,-2],[-12,5],[-7,1],[-5,-4],[-6,-8],[-6,-1],[-12,7],[-6,1],[-16,-5],[-6,1],[-5,3],[-6,0],[-12,-9],[-6,-2],[-4,4],[-2,13],[1,11],[5,22],[2,14],[2,38],[1,6],[5,6],[4,13],[5,26],[4,7],[5,2],[11,-1],[3,5],[2,11],[2,10],[5,2],[0,5],[-2,1],[-2,0],[-1,0],[-2,-1],[-2,-3],[-1,-4],[0,-4],[-1,-2],[-20,-3],[-3,-7],[-2,-7],[-6,-9],[-7,-8],[-4,-2],[-3,5],[-7,25],[-1,8],[0,11],[4,22],[1,14],[0,7],[0,6],[0,7],[3,11],[0,7],[1,13],[2,9],[4,12],[5,11],[4,6],[7,4],[6,-1],[5,-5],[4,-8],[4,-4],[2,0],[3,2],[2,0],[3,-2],[3,-3],[5,-7],[12,31],[6,10],[10,4],[5,-4],[4,-8],[5,-4],[5,6],[1,7],[1,11],[-2,10],[-3,6],[-2,-7],[-4,-4],[-4,0],[-4,5],[-5,3],[-5,-2],[-6,-4],[-4,-5],[-8,-8],[-8,3],[-19,15],[-3,0],[-3,-2],[-3,0],[-5,7],[-3,2],[-6,1],[-6,-3],[-9,-18],[-5,-7],[-7,-4],[-3,-1],[-3,3],[0,5],[3,6],[-1,5],[-4,1],[-5,-6],[-5,-6],[-6,5],[-1,7],[-2,14],[0,13],[2,6],[5,7],[1,12],[-3,8],[-8,-7],[-2,-7],[-4,-12],[-2,-12],[-1,-11],[-3,-14],[-5,-2],[-6,2],[-3,0],[-4,9],[1,7],[0,4],[-7,4],[-5,1],[-4,-2],[-2,-5],[2,-10],[-13,4],[-3,-2],[4,-10],[7,-6],[5,5],[9,17],[2,-7],[-1,-6],[-2,-6],[-1,-7],[2,-3],[8,-7],[10,1],[3,-26],[-2,-63],[-3,-10],[-1,-6],[-1,1],[-2,-6],[-2,-7],[0,-2],[-5,-9],[-2,-3],[-4,0],[-4,2],[-2,-2],[0,-8],[-2,0],[-2,8],[-1,-2],[-2,-6],[-1,-5],[-1,-2],[-3,-4],[-2,-1],[-1,5],[-3,7],[-4,6],[-6,4],[-5,-2],[6,-8],[3,-6],[-1,-7],[-3,-2],[-10,6],[1,-3],[6,-9],[0,-4],[0,-4],[-2,-1],[-2,3],[-4,3],[-5,0],[-5,-4],[-3,-5],[17,-11],[4,-1],[11,4],[4,0],[-3,-4],[0,-4],[4,-4],[-2,-4],[4,-4],[0,-7],[-2,-8],[0,-8],[2,-7],[-2,-1],[-8,4],[-2,5],[-4,9],[-3,7],[-6,8],[-6,2],[-2,-10],[1,-3],[2,-2],[3,-1],[3,-1],[1,-2],[5,-18],[-5,-3],[-6,2],[-17,14],[-1,-2],[-1,-9],[0,-16],[0,-7],[2,-7],[1,3],[1,1],[3,4],[0,-4],[0,-8],[0,-4],[10,6],[5,2],[4,-2],[4,-6],[4,1],[13,10],[2,-1],[0,-8],[1,-7],[6,-5],[1,-5],[1,-1],[3,-21],[1,-4],[1,-3],[2,-3],[3,-2],[3,-1],[3,1],[3,-1],[2,-11],[2,-4],[2,-3],[0,-4],[1,-7],[0,-4],[0,-5],[-1,-6],[-1,-3],[-3,-6],[-1,-3],[-9,-68],[-7,-21],[-14,-32],[-2,-11],[-3,-8],[-9,-22],[-4,-4],[2,-6],[0,-5],[-1,-4],[-3,-1],[2,-8],[-1,-6],[-2,-4],[0,-3],[0,-6],[3,-12],[0,-10],[-3,-8],[-2,-2],[-3,-2],[-2,-2],[-1,-4],[-2,-4],[-18,-19],[-5,-2],[-13,-2],[-34,-40],[-4,-9],[-8,-9],[-5,-2],[-4,1],[-3,1],[-10,-12],[-12,-9],[-15,-23],[-10,-4],[2,9],[2,4],[2,4],[-5,-3],[-4,-6],[-12,-21],[-3,-7],[-1,-10],[-5,-9],[-23,-15],[-17,-6],[-49,-50],[-7,1],[-2,-4],[-4,2],[-3,-4],[-3,-6],[-3,-4],[-5,1],[-6,2],[-4,-2],[-1,-3],[-1,-8],[-5,-7],[-3,-1],[-37,-4],[-6,0],[-5,4],[-4,8],[-3,3],[-3,-2],[-3,-3],[-4,-1],[-2,3],[-9,14],[-44,36],[-16,22],[-6,3],[-3,4],[-9,20],[-5,8],[-18,14],[-10,19],[-10,13],[-31,58],[-26,42],[-24,62],[-2,5],[-2,6],[-13,25],[-18,44],[-9,26],[-1,19],[-6,2],[-5,6],[-4,7],[-35,74],[-17,20],[-4,9],[-10,24],[-5,9],[-6,19],[-9,8],[-5,9],[-9,20],[-1,10],[1,17],[-1,9],[-7,-12],[-3,-2],[-6,6],[-25,49],[-9,13],[-4,7],[-13,37],[-9,12],[-4,9],[-3,13],[-13,35],[-10,16],[-5,11],[-3,19],[-8,24],[-2,11],[-1,14],[2,10],[3,8],[1,11],[1,12],[2,10],[2,9],[3,7],[4,7],[11,12],[7,11],[3,-1],[1,-5],[-1,-7],[-2,-6],[-5,-5],[-3,-6],[4,-14],[3,-5],[5,-2],[2,2],[5,5],[2,2],[3,-1],[2,-2],[2,-1],[2,2],[4,7],[3,5],[2,-1],[4,-7],[1,-10],[-6,-19],[0,-10],[-4,-12],[1,-12],[5,-10],[6,-6],[0,-4],[21,6],[13,13],[3,11],[4,2],[21,1],[9,4],[3,3],[2,3],[4,12],[1,3],[1,1],[2,1],[1,1],[2,9],[-1,7],[-1,7],[-1,9],[0,10],[2,0],[2,-1],[3,3],[2,0],[3,-24],[1,-12],[-2,-8],[4,-4],[9,-4],[4,-5],[0,6],[1,3],[3,8],[3,-5],[2,3],[1,5],[2,4],[1,2],[1,3],[1,3],[1,1],[2,-1],[4,-3],[1,0],[3,8],[4,28],[3,9],[2,-5],[13,-29],[2,-3],[3,2],[2,5],[1,7],[1,6],[3,7],[3,2],[2,-1],[4,0],[6,5],[5,7],[16,29],[3,4],[0,-1],[7,1],[1,1],[6,7],[10,2],[24,-6],[9,8],[3,10],[5,22],[8,20],[9,33],[14,43],[2,6],[-1,14],[0,7],[1,2],[5,10],[9,35],[3,5],[5,5],[9,21],[5,7],[2,0],[3,-2],[4,0],[3,4],[2,5],[2,10],[2,5],[2,12],[1,13],[-2,14],[-2,12],[-4,8],[-5,11],[-4,4],[-3,-9],[-2,-5],[-11,-11],[-3,-11],[0,-5],[0,-9],[1,-7],[2,-6],[-3,-14],[0,-5],[1,-5],[0,-8],[-1,-9],[0,-5],[-2,-2],[-2,-2],[-6,0],[-2,-1],[-1,-2],[-2,-1],[-2,2],[-1,3],[-1,2],[-2,1],[-2,0],[-1,-1],[-1,-2],[-2,-1],[-1,4],[-2,4],[0,1],[-6,3],[-3,8],[-3,9],[-5,8],[0,-15],[-3,-10],[-5,-4],[-7,1],[-2,-1],[-1,-2],[-1,0],[-2,5],[-1,3],[-1,1],[0,1],[-2,1],[-3,1],[-2,4],[1,6],[1,5],[-6,-21],[3,-3],[4,-7],[0,-7],[-4,-3],[-16,-4],[-18,-14],[-16,-5],[-15,-11],[-9,-2],[-6,-3],[-7,-8],[-7,-11],[-6,-11],[-9,-32],[-3,-4],[-6,1],[-11,7],[-19,0],[-3,2],[-5,8],[-4,2],[-9,0],[-3,0],[-3,2],[-2,2],[-1,2],[-2,2],[-13,6],[-5,5],[-10,3],[-9,9],[-28,5],[-10,6],[-18,21],[-27,37],[-48,41],[-49,66],[-8,14],[-2,2],[-1,3],[0,5],[0,6],[-8,6],[-4,9],[-2,11],[-1,9],[0,-2],[3,-6],[3,11],[1,6],[0,7],[-5,-5],[-7,-2],[-7,2],[-4,11],[6,23],[2,1],[9,2],[2,2],[-1,5],[-3,4],[-4,2],[-2,2],[-1,4],[-1,4],[-1,2],[-2,0],[-1,-1],[-2,-2],[-1,-1],[-3,4],[-2,3],[-2,5],[0,6],[0,7],[2,5],[2,3],[3,-1],[-1,6],[-2,3],[-2,-1],[-2,-4],[-4,3],[-1,-3],[-2,-5],[-4,-3],[-3,3],[-1,6],[0,8],[2,8],[-4,-5],[-3,-2],[-3,1],[-2,6],[2,12],[4,12],[6,11],[5,5],[-1,7],[-2,-1],[-2,-3],[-2,1],[-2,3],[-2,9],[-2,5],[1,-10],[1,-10],[0,-8],[-4,-5],[-5,1],[-2,8],[1,24],[-1,29],[1,14],[5,6],[12,-8],[6,0],[0,11],[-2,2],[-2,-1],[-3,1],[0,9],[1,2],[5,3],[4,6],[6,1],[2,2],[2,3],[4,13],[8,17],[5,8],[10,8],[5,22],[5,10],[2,1],[10,-1],[3,2],[5,8],[3,2],[4,3],[14,22],[-4,3],[-7,-6],[-4,3],[-7,-15],[-6,-7],[-8,-3],[-10,0],[-6,-2],[-3,-5],[-4,-17],[-2,-8],[-4,-4],[-9,-4],[-4,-5],[-4,-5],[-4,-5],[-10,-4],[-7,-8],[-6,-5],[-5,-9],[-19,-45],[3,-4],[0,-4],[-1,-4],[-2,-4],[-4,-6],[-3,0],[-2,1],[-4,1],[-18,-1],[-13,3],[-7,4],[-4,7],[2,12],[1,0],[6,0],[1,1],[1,8],[0,3],[4,4],[3,2],[3,-2],[4,-8],[3,8],[5,1],[4,3],[1,12],[-6,-7],[-5,0],[-4,4],[-5,9],[-3,11],[0,11],[0,12],[0,12],[-5,-12],[-3,-4],[-1,6],[0,9],[3,15],[1,18],[1,5],[0,3]],[[68939,64589],[0,1],[7,20],[2,3],[5,4],[2,3],[1,0],[2,-1],[2,0],[1,2],[-1,2],[-1,2],[-1,1],[0,4],[0,5],[1,6],[3,4],[2,1],[1,-3],[1,-4],[2,-6],[4,-3],[3,3],[4,7],[2,8],[0,4],[-1,6],[0,5],[3,1],[2,-2],[1,-5],[0,-5],[0,-5],[9,12],[13,4],[32,0],[28,0],[21,-1],[1,82],[0,63],[0,47],[6,25],[14,-1],[4,-13],[2,-34],[5,-8],[3,4],[9,32],[1,5],[0,5],[2,3],[3,1],[3,-2],[2,-4],[2,-5],[6,-19],[4,-8],[5,-1],[7,5],[11,13],[6,2],[6,-4],[16,-15],[5,-2],[11,3],[21,15],[78,-4],[9,-7],[21,-45],[12,-12],[16,-4],[56,2],[12,5],[10,16],[3,11],[7,37],[3,10],[3,3],[10,2],[16,11],[6,0],[5,3],[10,14],[6,5],[15,2],[5,3],[12,18],[29,13],[12,0],[4,-14],[-2,-6],[-5,-7],[-1,-3],[-1,-7],[3,-21],[1,-23],[2,-9],[5,-8],[10,-10],[38,-6],[5,3],[11,11],[5,4],[5,2],[2,4],[-4,10],[-1,10],[5,11],[17,22],[5,3],[5,0],[6,-6],[6,0],[3,4],[2,7],[2,7],[14,9],[3,6],[-3,14],[-9,6],[-11,4],[-7,7],[-1,4],[0,5],[0,4],[1,5],[0,12],[1,4],[0,4],[0,3],[-1,4],[-5,9],[-1,17],[2,18],[4,15],[19,17],[5,8],[-2,6],[-5,17],[-10,51],[-16,51],[-8,31],[-6,33],[-9,82],[-4,14],[-4,12],[-18,29],[-9,20],[-3,12],[-2,14],[-2,15],[-11,23],[-4,13],[-3,20],[2,68],[1,52],[-1,24],[-6,16],[-11,5],[-10,-6],[-11,-9],[-11,-4],[-32,-2],[-16,6],[-11,8],[-4,6],[-4,14],[-6,33],[-5,12],[-11,19],[-11,25],[-9,29],[-5,30],[0,9],[2,30],[0,21],[1,10],[15,48],[5,22],[1,22],[-2,24],[-1,11],[2,12],[2,12],[1,10],[-1,24],[2,48],[-1,22],[-8,19],[-10,11],[-11,5],[-66,-5],[-13,9],[-20,34],[-11,15],[-43,34],[-9,18],[-2,25],[6,70],[6,73],[7,45],[12,37],[25,48],[18,24],[33,59],[16,52],[24,44],[6,17],[21,114],[3,11],[24,48],[3,5],[19,26],[16,33],[5,6],[5,3],[10,3],[11,9],[5,2],[6,-1],[9,-5],[7,-8],[7,-10],[9,-20],[8,-12],[4,-8],[2,-12],[-1,-22],[1,-11],[8,-38],[11,-30],[14,-18],[20,-5],[23,10],[31,29],[34,33],[21,13],[24,10],[24,4],[22,-4],[23,4],[39,22],[45,26],[3,6],[2,9],[3,72],[2,11],[3,12],[22,55],[34,53],[11,21],[8,26],[5,28],[17,119],[6,25],[21,47],[7,10],[40,39],[37,36],[32,31],[36,35],[4,6],[4,9],[9,41],[7,22],[17,44],[22,78],[14,50],[15,55],[14,87],[12,72],[12,72],[4,9],[48,42],[51,21],[10,11],[46,72],[1,9],[1,8],[-4,26],[-7,25],[-5,15],[-14,14],[1,3],[2,9],[4,9],[6,5],[5,-1],[-1,4],[0,8],[-1,4],[5,-3],[3,1],[3,4],[14,37],[2,8],[2,5],[11,5],[4,8],[1,14],[-1,11],[0,10],[3,12],[4,9],[3,6],[5,6],[6,5],[6,3],[2,3],[1,8],[1,5],[4,6],[2,12],[2,4],[5,8],[5,16],[3,4],[4,6],[2,4],[0,4],[-3,12],[1,2],[6,3],[5,8],[3,11],[-2,11],[2,6],[3,5],[2,4],[4,1],[3,0],[7,-4],[6,-1],[2,5],[2,8],[3,10],[5,8],[4,5],[5,1],[7,1],[5,3],[4,8],[4,10],[5,7],[0,12],[4,11],[6,8],[16,16],[-3,5],[-5,9],[-4,5],[-5,0],[-13,-4],[-4,4],[-4,8],[-2,7],[-2,9],[0,11],[0,12],[5,24],[0,26],[2,14],[11,51],[3,10],[5,10],[3,10],[1,11],[0,11],[-9,24],[-8,56],[-15,52],[-3,6],[1,2],[3,10],[0,1],[2,2],[1,1],[1,3],[1,7],[0,3],[2,5],[1,2],[1,3],[0,8],[1,13],[3,9],[4,8],[21,30],[4,3],[4,5],[8,27],[18,-7],[6,3],[5,15],[2,21],[5,13],[12,-9],[5,11],[5,1],[7,-1],[6,2],[4,3],[1,4],[2,5],[2,6],[2,2],[7,0],[3,0],[-2,17],[5,2],[17,-12],[2,0],[3,2],[3,5],[2,2],[6,-3],[4,-1],[0,14],[6,11],[9,8],[6,4],[4,1],[8,-1],[1,6],[3,20],[3,10],[8,19],[3,12],[-1,13],[-8,17],[-7,11],[-19,29],[-10,10],[-19,8],[-10,11],[-10,15],[-9,7],[-9,-2],[-12,-9],[-11,-2],[-19,18],[-11,-2],[-10,-5],[-11,-2],[-10,7],[-7,16],[-8,41],[-1,12],[2,11],[3,10],[2,10],[0,12],[-2,24],[0,13],[2,13],[7,25],[2,13],[-1,13],[-4,5],[-5,-2],[-5,-9],[-2,-11],[-1,-10],[-3,-9],[-5,-8],[-6,-3],[-14,-4],[-6,0],[-5,5],[-8,15],[-4,4],[-6,-1],[-9,-10],[-5,-2],[-6,2],[-5,5],[-3,9],[-3,11],[3,7],[0,1],[2,4],[3,11],[0,13],[-3,30],[-1,30],[-3,13],[-7,9],[-26,8],[-10,11],[-16,38],[-9,16],[-10,13],[-8,14],[-3,18],[1,26],[2,11],[5,5],[10,8],[5,6],[3,7],[4,8],[2,10],[9,43],[6,45],[-5,33],[-15,21],[-17,18],[-14,20],[-2,8],[-1,9],[-1,9],[1,17],[0,8],[2,7],[1,7],[10,31],[6,10],[30,10],[10,8],[10,12],[7,13],[7,17],[2,20],[-3,19],[-9,11],[-10,-1],[-10,-5],[-10,-1],[-15,10],[-6,0],[-19,-8],[-8,3],[-8,11],[-7,15],[-2,18],[2,18],[7,12],[16,16],[6,8],[0,13],[-2,12],[-4,12],[-6,29],[-4,10],[-9,2],[-8,-2],[-7,2],[-7,5],[-7,7],[-6,11],[-2,15],[2,15],[4,13],[3,4],[7,6],[3,5],[1,7],[0,23],[5,13],[13,17],[4,12],[0,16],[-2,16],[0,13],[9,12],[3,4],[44,13],[8,7],[20,27],[18,12],[18,3],[17,-5],[71,-45],[98,-35],[25,2],[19,7],[10,0],[3,-4],[3,-4],[4,-11],[5,-9],[11,-14],[11,-10],[74,-35],[12,-1],[16,7],[6,0],[11,-3],[6,3],[5,8],[16,29],[19,24],[7,5],[2,2],[4,8],[5,17],[5,7],[10,4],[17,-14],[9,1],[30,13],[38,40],[11,7],[11,-3],[12,-16],[4,-3],[5,0],[24,9],[4,3],[25,43],[3,11],[-1,32],[2,14],[7,9],[9,6],[10,2],[8,-4],[7,-8],[4,-2],[4,5],[5,11],[17,23],[4,10],[2,19],[-2,16],[-1,14],[5,13],[2,2]],[[71402,71263],[104,114],[104,114]],[[72490,59824],[5,-9],[1,-6],[-1,-5],[-4,-7],[-8,-5],[-7,8],[-13,34],[3,16],[2,4],[14,-16],[8,-14]],[[70457,56442],[-1,-5],[-1,-4],[-1,-4],[-1,-3],[0,6],[0,6],[1,5],[2,5],[0,-2],[1,-4]],[[70461,56477],[-1,-1],[0,-1],[0,-1],[-1,2],[0,2],[1,0],[0,-1],[1,0]],[[70180,56728],[-3,-5],[-2,-2],[-1,-1],[1,3],[4,9],[1,-1],[0,-1],[0,-1],[0,-1]],[[70152,56853],[-2,-3],[0,2],[1,1],[1,0]],[[70464,56883],[2,-1],[1,0],[-2,-2],[-1,0],[0,2],[0,1]],[[70208,57055],[-1,-3],[0,-2],[-1,-1],[-1,-1],[0,4],[0,1],[1,0],[2,2]],[[70281,57281],[-1,-7],[0,-3],[-1,-3],[-1,6],[0,4],[1,3],[2,0]],[[70198,57395],[-2,-3],[-1,-1],[-1,0],[1,3],[1,1],[2,0]],[[76075,57735],[-5,-4],[-1,6],[3,6],[3,-8]],[[76188,58431],[3,-12],[-4,-2],[-4,6],[5,8]],[[76088,54630],[3,-8],[0,-31],[-3,-15],[-7,-34],[-1,-21],[1,-4],[1,-4],[2,-5],[-1,-6],[-1,-3],[-2,-2],[-3,0],[-2,2],[-4,0],[-3,-11],[-4,-24],[-6,5],[-1,9],[1,12],[1,12],[-3,5],[-3,5],[-3,6],[3,8],[-3,5],[-2,6],[-1,6],[2,7],[-2,2],[-2,5],[0,6],[0,7],[-5,0],[-3,12],[-2,16],[-3,13],[-4,8],[-5,9],[-6,3],[-4,-8],[0,63],[1,7],[6,30],[3,1],[6,0],[3,2],[2,5],[1,4],[2,2],[1,1],[7,7],[2,-4],[7,13],[5,4],[4,-3],[7,-13],[3,-8],[1,-12],[2,-10],[1,-11],[1,-24],[1,-9],[4,-17],[3,-15],[2,-6]],[[76036,54834],[1,-11],[-2,-8],[-4,-7],[-5,-6],[-5,-10],[-9,-24],[-5,-3],[-3,4],[0,4],[0,6],[-1,6],[-1,5],[-4,12],[3,6],[1,13],[2,12],[6,5],[8,4],[3,10],[2,13],[3,14],[0,-16],[1,-12],[3,-6],[3,-4],[3,-7]],[[75952,55181],[1,-1],[7,-25],[0,-7],[0,-12],[-1,-6],[-2,1],[-3,7],[-4,5],[-2,1],[-4,-2],[-3,-2],[-3,-3],[-3,-2],[-4,3],[-3,5],[-1,6],[0,7],[2,7],[-2,4],[-2,-4],[-3,0],[-2,2],[-2,6],[-1,7],[3,23],[2,8],[6,6],[7,3],[6,-1],[1,-6],[1,-5],[0,-13],[1,-5],[6,-4],[2,-3]],[[75990,55207],[1,-6],[1,-12],[0,-26],[-15,24],[-3,9],[1,9],[2,5],[5,-3],[1,10],[2,2],[3,-4],[2,-8]],[[75980,55228],[-1,-1],[-3,-3],[-1,-2],[-1,-4],[-4,-13],[-3,-2],[-1,6],[-1,17],[1,5],[2,3],[2,3],[1,7],[2,0],[3,-3],[0,4],[-1,7],[-4,4],[-2,-11],[-3,0],[-4,6],[-2,10],[-3,38],[0,6],[2,3],[3,8],[2,9],[1,6],[3,7],[5,4],[5,-1],[2,-7],[0,-12],[-3,-9],[-3,-7],[-1,-12],[1,-10],[4,-20],[4,-23],[0,-5],[-2,-8]],[[70299,55394],[1,0],[0,-2],[0,-2],[-5,-22],[-2,-7],[-4,-4],[-3,-2],[-2,4],[-1,11],[2,0],[0,-7],[0,-2],[6,5],[4,7],[2,9],[2,12]],[[75870,55350],[7,-7],[4,-5],[1,-5],[-3,-4],[-4,0],[-8,4],[-6,6],[-6,12],[-4,15],[-2,14],[1,17],[0,9],[2,7],[4,5],[3,0],[2,-6],[0,-27],[0,-14],[3,-12],[6,-9]],[[76001,55532],[4,-17],[2,-8],[0,-11],[-1,-8],[-2,-12],[-2,-9],[-2,0],[-1,7],[2,24],[0,10],[-3,20],[0,10],[3,6],[0,-12]],[[75780,55937],[6,-18],[0,-34],[-9,-20],[-19,12],[-3,10],[-3,16],[0,16],[1,7],[4,3],[5,6],[2,9],[-1,10],[4,2],[2,-3],[7,-11],[4,-5]],[[75717,56849],[1,-21],[3,-16],[-1,-18],[-6,-14],[-3,-8],[-3,-4],[-3,-9],[0,-17],[4,-2],[5,-4],[-7,-20],[-3,-13],[-7,-10],[-9,4],[-4,9],[-6,9],[-6,0],[-4,-10],[-7,0],[-1,7],[7,20],[3,19],[1,13],[-3,11],[-5,10],[-3,5],[0,27],[0,19],[-1,15],[0,5],[3,-1],[6,5],[2,5],[2,14],[2,17],[15,20],[12,6],[6,-12],[5,-15],[1,-20],[3,-15],[1,-11]],[[75743,57228],[2,-7],[3,-5],[1,-4],[-5,-8],[-2,-2],[-8,-5],[-3,-1],[-4,2],[-3,3],[-1,4],[-3,3],[1,14],[1,3],[2,3],[4,0],[2,3],[2,8],[-1,10],[-2,18],[2,18],[6,0],[5,-11],[4,-13],[2,-8],[-2,-7],[-2,-8],[-1,-10]],[[75629,57333],[3,-3],[2,-12],[0,-12],[-3,-7],[-6,-2],[-5,7],[-1,22],[-4,8],[0,4],[3,0],[8,-2],[3,-3]],[[75844,57553],[2,-5],[5,-32],[-5,-1],[-4,9],[-2,12],[-1,5],[-2,3],[-4,2],[-3,3],[-3,6],[-2,5],[-1,4],[-4,1],[-2,5],[3,11],[4,12],[2,5],[10,0],[3,-3],[-2,-9],[6,-28],[0,-5]],[[75861,57689],[0,-1],[0,-2],[0,-3],[-2,-13],[0,-4],[2,-19],[0,-10],[-2,-7],[-3,3],[-3,9],[-3,10],[-1,6],[0,9],[1,11],[1,11],[2,6],[2,3],[3,-1],[2,-3],[1,-5]],[[75758,58152],[2,-6],[-2,-10],[0,-30],[-2,-13],[-2,-6],[-4,-11],[-2,-3],[0,-8],[0,-7],[0,-6],[-4,-4],[-3,42],[1,7],[1,7],[2,32],[-1,10],[4,7],[2,5],[2,4],[2,0],[1,-2],[2,-2],[1,-3],[0,-3]],[[75847,58337],[7,-9],[1,-6],[-7,-20],[-1,-17],[0,-38],[-1,-17],[-3,-25],[-5,-17],[-6,6],[-2,0],[-1,-6],[-2,-2],[-3,1],[-1,3],[-1,7],[1,14],[0,8],[-2,0],[0,-13],[-6,2],[-2,-10],[0,-13],[1,-9],[5,-11],[1,-7],[-1,-7],[-2,-10],[-2,0],[-1,11],[-2,5],[-3,1],[-3,0],[0,-5],[-7,-26],[0,-5],[-1,-3],[0,-3],[3,-5],[3,-2],[2,4],[3,8],[3,-3],[1,-6],[0,-5],[1,-2],[2,-2],[7,-15],[-1,-10],[1,-13],[1,-13],[-3,-12],[4,-11],[3,-11],[2,-13],[0,-14],[-4,-27],[-1,-16],[5,-21],[0,-15],[0,-28],[-3,-8],[-4,-9],[-3,-8],[4,-5],[-2,-9],[-3,-4],[-3,-5],[-1,-11],[-2,0],[-2,6],[-2,6],[-3,5],[-3,3],[1,-2],[1,-10],[-8,-1],[-7,1],[0,-4],[2,-6],[3,-18],[2,-4],[3,-2],[3,-5],[2,-6],[0,-8],[4,-3],[-1,-3],[-2,-3],[-3,-3],[-2,-5],[-1,0],[-1,-1],[0,-6],[2,-5],[2,-3],[2,-4],[0,-8],[-1,-5],[-3,-5],[-2,-5],[2,-7],[1,-5],[1,-6],[0,-5],[-1,-3],[-5,1],[1,-11],[-3,-7],[-6,-9],[-4,-10],[1,-8],[0,-5],[-2,-1],[-5,-7],[1,-5],[-3,-4],[-4,-2],[-5,-1],[-3,-4],[3,-9],[7,-15],[-3,1],[-3,-1],[-2,-3],[-1,-6],[1,0],[-5,-15],[-1,-7],[-1,-14],[0,-49],[2,0],[1,20],[1,12],[2,5],[4,-1],[4,-3],[2,-7],[1,-14],[-1,-20],[-10,-92],[-2,-5],[-5,-1],[-3,-3],[-10,-20],[-1,-6],[-1,-8],[0,-13],[2,-2],[2,0],[3,2],[1,4],[0,23],[2,-2],[3,-1],[1,-1],[0,11],[1,6],[3,1],[4,-6],[0,-6],[1,-20],[0,-7],[-1,-5],[-4,-7],[0,-6],[0,-18],[-3,-20],[-2,-10],[-3,-7],[-1,7],[-2,3],[-2,0],[-3,2],[-8,19],[-1,5],[0,6],[0,5],[-3,2],[-3,3],[-2,8],[-2,8],[0,5],[2,4],[3,1],[2,2],[1,5],[-2,4],[-3,1],[-3,3],[-2,7],[0,6],[-1,12],[-1,6],[0,9],[-3,1],[-2,-3],[-2,-1],[-5,7],[-1,9],[2,27],[0,24],[-1,4],[-2,2],[-3,2],[-3,4],[-1,-1],[-1,0],[0,3],[0,4],[0,3],[1,1],[1,0],[2,18],[6,21],[2,1],[2,-3],[4,-13],[1,-4],[2,-2],[3,2],[-1,-9],[0,-7],[2,-3],[1,5],[1,33],[2,8],[-1,9],[-1,9],[-1,8],[1,9],[4,13],[1,7],[0,59],[1,12],[6,26],[4,11],[2,-7],[2,0],[2,11],[3,4],[2,-4],[1,-13],[-1,-11],[0,-5],[2,-2],[2,0],[0,2],[1,1],[1,1],[5,0],[1,0],[6,5],[1,4],[1,7],[-3,24],[-2,2],[-2,3],[-2,3],[0,3],[0,6],[1,-1],[5,3],[2,0],[1,2],[0,8],[-2,6],[-2,2],[-7,0],[-5,5],[-4,11],[-1,15],[1,140],[2,8],[5,12],[1,7],[1,3],[2,1],[4,0],[1,1],[1,7],[-1,3],[-3,1],[-4,3],[-1,9],[-1,42],[-2,26],[1,8],[2,5],[2,4],[2,6],[6,-3],[4,10],[3,16],[1,13],[0,31],[4,16],[2,10],[-2,4],[-6,6],[1,15],[5,35],[5,19],[2,4],[0,2],[-1,4],[-4,8],[-1,5],[3,7],[0,12],[0,12],[6,5],[0,5],[-4,27],[1,9],[0,3],[-4,9],[2,12],[11,28],[1,5],[1,7],[1,6],[-1,14],[0,5],[2,8],[1,-1],[3,5],[6,15],[2,5],[0,6],[0,10],[2,5],[2,3],[5,2],[2,3],[2,-5],[2,-2],[1,0],[3,3],[-2,3],[0,3],[0,4],[2,6],[1,-7],[2,0],[2,1],[3,2],[2,-3],[5,-17],[-3,-21],[-1,-18],[2,-39],[1,1],[4,2],[1,1],[-1,-9],[-5,-9],[-2,-8],[-1,-7],[-4,-5],[-5,-5],[-3,-5],[0,10],[-3,5],[-3,0],[-2,-7],[1,-9],[3,-7],[4,-4],[6,3],[2,-6],[5,-13]],[[75843,58564],[1,-3],[3,-13],[-9,5],[-5,5],[-3,6],[8,7],[4,0],[1,-7]],[[74686,63259],[5,-4],[3,-5],[3,-8],[1,-11],[-2,-11],[-3,-1],[-5,1],[-5,-4],[-6,5],[-3,27],[3,22],[9,-11]],[[74458,63324],[11,61],[8,30],[7,6],[6,-62],[-1,-35],[-8,-12],[3,-16],[0,-9],[-2,-8],[-2,-2],[-3,1],[-8,5],[-8,0],[-3,3],[-2,10],[-1,6],[1,7],[2,15]],[[74620,63452],[4,3],[4,-3],[2,-8],[-1,-11],[-3,-14],[-2,-14],[-1,-32],[-3,3],[-10,6],[-2,1],[0,5],[-2,8],[0,5],[1,4],[3,16],[5,17],[5,14]],[[74466,63409],[-2,5],[-1,10],[1,11],[1,7],[2,10],[3,10],[3,5],[4,-1],[4,-15],[-3,-19],[-5,-16],[-7,-7]],[[70047,56871],[0,12],[2,11],[2,6],[1,4],[2,5],[1,3],[0,-8],[-3,-17],[-5,-16]],[[70218,57139],[1,0],[1,0],[0,-3],[0,-1],[-1,-2],[-1,-2],[0,-9],[-1,-10],[-2,-17],[-1,8],[-1,2],[1,11],[4,23]],[[71610,71491],[-7,2],[-4,-1],[-3,-2],[-9,-11],[-7,-8],[-8,-3],[-39,12],[-3,1],[-9,-1],[-18,-5],[-8,2],[-9,8],[-13,19],[-7,6],[-8,1],[-21,-4],[-10,1],[-10,8],[-3,6],[-6,13],[-4,6],[-5,3],[-6,-1],[-11,-3],[-12,0],[-5,3],[-6,3],[-4,7],[-7,16],[-3,8],[-6,4],[-11,-1],[-2,0]],[[71326,71580],[-4,0],[-5,5],[-3,7],[-7,16],[-9,12],[-20,13],[-9,9],[-6,19],[4,49],[-2,19],[-5,3],[-11,-19],[-6,-3],[-6,-1],[-4,-1],[-3,-1],[-2,-4],[-4,-10],[-2,-4],[-5,-1],[-5,1],[-5,0],[-10,-12],[-4,0],[-5,2],[-5,3],[-7,-2],[-13,-6],[-6,1],[-8,12],[-3,21],[-1,24],[-3,23],[-7,21],[-8,8],[-21,3],[-9,7],[-8,14],[-6,19],[-2,20],[2,10],[4,6],[13,15],[2,3],[2,5],[0,6],[-2,11],[0,6],[4,8],[5,4],[3,5],[0,10],[-3,8],[-7,15],[-2,9],[0,24],[5,47],[-2,14],[-1,10],[-28,93],[-7,15],[-17,26],[-17,21],[-22,18],[-22,7],[-17,-11],[-2,-6],[-1,-6],[-2,-4],[-16,2],[-6,14],[-2,22],[-1,24],[-2,23],[-4,18],[-8,13],[-10,7],[-33,12],[-10,9],[-7,13],[-4,3],[-6,2],[-23,-6],[-11,0],[-9,-4],[-5,-4],[-4,-5],[-3,-7],[-2,-17],[-2,-6],[-4,-2],[-1,5],[-2,18],[-2,7],[-8,21],[-9,13],[-20,0],[-8,12],[-4,9],[-4,2],[-10,-7],[-18,-8],[-5,-5]],[[70706,72394],[-7,6],[-4,9],[-3,12],[-5,10],[-17,14],[-9,12],[-4,12],[0,12],[4,2],[11,-2],[6,2],[4,4],[3,7],[2,12],[3,9],[4,4],[9,0],[12,6],[4,1],[2,-2],[3,-6],[2,-1],[2,1],[1,2],[1,3],[3,6],[1,4],[2,2],[5,1],[2,2],[6,10],[3,6],[3,4],[5,-1],[2,-5],[10,-40],[3,-4],[6,1],[22,9]],[[70803,72518],[5,5],[3,10],[3,10],[5,5],[7,2],[26,16],[2,8],[1,22],[3,10],[7,5],[13,8],[-9,10],[-7,14],[-15,31],[-4,8],[-26,24],[-8,14],[-6,16],[-3,21],[1,12],[3,8],[4,7],[3,9],[1,5],[1,6],[1,5],[2,5],[4,10],[2,7],[1,5],[-1,11],[-3,6],[-15,13],[-2,3],[-1,4],[-1,8],[1,3],[2,2],[5,13],[1,4],[-3,4],[-3,3],[-1,3],[0,4],[0,16],[1,37],[-4,17],[-19,18],[-6,17],[-5,68],[0,56],[1,11],[3,10],[11,22],[4,10],[1,10],[0,12],[-2,17],[0,5],[-1,5],[-2,4],[-5,5],[-2,3],[-2,6],[-5,10],[-4,6],[-5,2],[-6,-1],[-7,1],[-4,7],[-5,8],[-5,7],[-47,30],[-39,33],[-6,1],[-19,-11],[-7,0],[-5,1],[-17,10],[-5,0],[-4,-4],[-4,-10],[0,-5],[0,-5],[-1,-5],[-2,-4],[-11,-6],[-2,-3],[0,-11],[4,-10],[2,-9],[-4,-10],[-4,-2],[-27,1],[-4,5],[-9,13],[-4,4],[-10,7],[-5,5],[-5,10],[-3,9],[-3,25],[-1,8],[-10,28],[-1,9],[1,26],[-1,12],[-3,8],[-8,15],[-3,9],[-1,11],[2,11],[4,9],[4,7],[7,5],[13,0],[6,3],[4,7],[1,9],[0,10],[-3,10],[-4,5],[-9,17],[-17,21],[-3,7],[-2,10],[-2,20],[-3,9],[-12,19],[-6,19],[-2,17],[3,17],[8,42],[1,9],[0,12],[-3,34],[0,12]],[[70453,73832],[52,11],[5,5],[3,8],[3,21],[3,13],[3,8],[5,7],[6,6],[2,6],[-7,32],[-1,25],[-2,13],[-4,10],[-5,6],[-5,1],[-4,4],[-2,12],[-1,12],[2,11],[2,11],[4,8],[8,11],[2,5],[1,7],[2,25],[4,11],[6,10],[4,10],[2,14],[1,8],[1,8],[3,7],[2,6],[8,10],[18,4],[9,7],[9,10],[9,6],[10,2],[10,-3],[9,-6],[9,-2],[9,2],[10,7],[29,39],[25,44],[9,12],[11,9],[5,6],[14,23],[5,4],[6,0],[24,-10],[8,3],[-2,20],[-3,8],[-13,19],[-2,9],[2,12],[3,13],[2,11],[1,2],[1,6],[3,8],[1,2],[6,1],[6,-5],[24,-27],[10,-7],[10,-4],[8,2],[13,10],[7,2],[5,-3],[5,-6],[5,-4],[6,2],[2,5],[1,5],[1,5],[4,2],[3,1],[3,3],[60,79],[12,11],[10,0],[8,-12],[5,-26],[1,-33],[2,-11],[3,-8],[8,-12],[3,-6],[1,-11],[-3,-8],[-4,-8],[-2,-11],[0,-11],[5,-26],[2,-11],[5,-8],[6,1],[13,9],[6,1],[6,-1],[18,-7],[6,-1],[6,2],[6,6],[4,10],[3,10],[4,9],[25,19],[7,1],[5,-2],[10,-10],[5,-2],[10,10],[8,19],[8,15],[8,-5],[3,-10],[5,-36],[3,-7],[5,2],[9,14],[24,26],[8,13],[6,16],[9,42],[7,18],[15,19],[3,8],[1,10],[2,60],[4,21],[8,18],[9,13],[11,10],[4,8],[3,12],[-1,12],[-2,11],[-1,12],[2,11],[5,7],[10,12],[4,10],[8,11],[10,8],[30,11],[8,-3],[15,-12],[8,-5],[35,-3],[16,8],[9,1],[15,-6],[16,-10],[8,-7],[8,-1],[21,10],[15,-1],[5,1],[4,2],[37,32],[9,5],[10,0],[36,-8],[11,-8],[6,-1],[5,3],[28,39],[4,7],[4,10],[7,23],[5,16],[7,17],[5,7],[11,11],[5,7],[3,10],[-1,10],[-5,23],[1,11],[5,9],[5,5],[11,9],[26,32],[20,6],[10,8],[3,5],[2,15],[2,7],[4,5],[4,3],[37,24],[25,28],[5,4],[17,6],[31,36],[11,6],[13,5],[6,4],[6,7],[13,20],[5,5],[6,3],[18,-9],[6,0],[6,4],[22,24],[18,11],[15,17],[13,5],[13,0],[12,2],[10,15],[3,11],[3,22],[3,10],[3,9],[5,6],[10,6],[14,6],[70,-1],[14,8],[7,18],[0,12],[-3,8],[-3,7],[-3,9],[-1,10],[-1,19],[-2,9]],[[72280,75455],[11,9],[3,7],[2,13],[-5,42],[-4,9],[-3,8],[-2,10],[-6,47],[0,7],[3,12],[1,7],[0,7],[-3,11],[-7,17],[-3,9],[-3,23],[-2,9],[-2,10],[1,13],[3,9],[10,24],[5,18],[6,35],[5,15],[5,4],[5,0],[9,-4],[5,1],[14,8],[5,7],[21,12],[14,3],[6,6],[2,12],[-4,11],[-6,5],[-12,3],[-19,14],[-10,12],[-5,15],[4,17],[11,12],[25,16],[21,26],[12,8],[12,0],[14,-17],[6,-2],[6,2],[5,5],[4,9],[2,12],[-2,12],[-6,18],[-1,11],[-1,12],[-1,11],[-2,11],[-3,8],[-11,8],[-11,5],[-4,9],[14,41],[5,18],[0,20],[-32,133],[-33,134],[-10,23],[-5,14],[-3,12],[0,12],[-1,11],[-1,10],[-4,10],[-9,14],[-4,8],[-1,11],[2,22],[7,43],[0,23],[-11,87],[-1,21],[2,25],[8,44],[4,13],[1,7],[-2,8],[-5,10],[-1,5],[0,7],[6,11],[10,6],[18,7],[4,5],[2,8],[-2,7],[-4,5],[-45,26],[-14,17],[-6,4],[-7,2],[-50,-17],[-13,2],[-34,33],[-7,14],[4,18],[6,7],[13,10],[27,36],[11,16],[11,7],[12,2],[20,-5],[20,12],[21,-2],[7,1],[4,7],[6,21],[5,7],[6,1],[20,-3],[44,25],[14,1],[22,-11],[8,0],[34,21],[12,0],[12,6],[22,20],[111,52],[22,24],[12,8],[11,-4],[10,-1],[7,-18],[4,-25],[2,-20],[0,-14],[2,-8],[4,-4],[18,-4],[5,-5],[5,-9],[11,-8],[14,5],[53,41],[15,6],[14,-3],[13,-13],[24,-40],[13,-13],[18,5],[13,31],[8,43],[5,53],[1,24],[-1,22],[-5,11],[-28,18],[-42,9],[-10,7],[-10,24],[2,13],[2,16],[8,31],[10,59],[21,54],[8,28],[4,17],[7,54],[8,82],[7,39],[11,35],[18,45],[5,18],[3,32],[2,11],[11,35],[25,141],[41,125],[2,9],[0,10],[-1,11],[-1,11],[1,12],[4,22],[1,6],[-2,12],[-1,6],[1,7],[3,12],[1,7],[0,24],[2,7],[7,5],[7,2],[7,1],[8,-1],[7,-4],[14,-18],[5,-5],[26,-9],[11,-7],[48,-47],[105,-55],[26,1],[20,-6],[7,1],[17,16],[1,0],[29,4],[35,-4],[4,0],[5,0],[15,-11],[12,-3],[27,10],[13,-2],[10,-8],[9,-13],[5,-18],[0,-21],[-3,-10],[-4,-9],[-3,-9],[2,-8],[5,-4],[8,2],[20,12],[21,7],[6,6],[6,18],[5,7],[4,3],[12,4],[4,4],[8,13],[19,21],[6,9],[7,18],[3,6],[6,4],[6,2],[16,-3],[35,8],[19,-1],[2,8],[1,11],[2,10],[4,8],[2,9],[2,9],[0,11],[3,10],[6,6],[6,3],[13,2],[4,5],[1,9],[1,12],[3,20],[0,9],[-2,11],[-1,10],[2,11],[1,11],[-2,12],[-20,47],[-4,18],[-2,18],[5,40],[0,19],[-22,176],[0,14],[3,13],[5,16],[4,22],[7,66],[37,128],[8,19],[10,10],[62,13],[51,-6],[16,11],[11,19],[6,8],[7,4],[27,-2],[32,18],[5,6],[3,8],[5,20],[3,9],[5,8],[13,19],[21,41],[2,7],[0,8],[-3,25],[-1,7],[2,5],[6,9],[6,19],[-4,11],[-9,12],[-6,20],[-2,15],[-1,10],[1,9],[4,12],[5,11],[4,7],[11,13],[5,10],[6,21],[6,7],[8,0],[16,-7],[8,-1],[39,22],[13,-4],[11,-8],[34,-14]],[[74256,79539],[11,-6],[10,-3],[11,2],[10,8],[2,2],[1,4],[1,3],[3,10],[1,1],[3,-1],[3,0],[53,23],[28,4]],[[74393,79586],[0,-7],[4,-17],[1,-14],[-2,-9],[-2,-8],[-1,-13],[1,-13],[5,-5],[5,-3],[4,-6],[0,-22],[-10,-13],[-22,-15],[-4,-9],[-2,-11],[1,-10],[5,-7],[6,-4],[3,-3],[2,-4],[1,-5],[1,-13],[1,-5],[4,-7],[6,-5],[18,-13],[12,2],[7,-3],[16,-16],[7,-13],[1,-15],[-2,-5],[-12,-12],[-2,-4],[-2,-7],[-2,-6],[-4,-5],[-9,-10],[2,-14],[9,-14],[9,-7],[4,0],[6,2],[3,-1],[3,-2],[4,-7],[8,-6],[9,-10],[5,-4],[5,0],[9,1],[5,-1],[19,-14],[8,-9],[14,-27],[9,-9],[7,0],[5,3],[6,1],[6,-5],[18,-29],[2,-10],[-4,-22],[1,-12],[2,-11],[1,-12],[2,-10],[4,-9],[11,-13],[6,-3],[7,1],[8,-4],[18,-27],[8,-8],[8,-1],[16,4],[7,-3],[5,-6],[31,-61],[8,-5],[26,-1],[14,-4],[7,2],[7,8],[5,7],[13,16],[6,4],[4,0],[11,-9],[5,-1],[14,1],[7,4],[11,0],[8,-6],[2,-16],[-1,-10],[2,-9],[4,-5],[5,-2],[4,-3],[2,-9],[2,-10],[3,-7],[5,-4],[10,-3],[4,-6],[3,-8],[2,-17],[3,-7],[9,-4],[29,4],[9,5],[4,7],[1,8],[0,7],[2,8],[5,3],[11,-5],[12,0],[4,-7],[1,-10],[-2,-13],[-1,-11],[2,-13],[3,-11],[3,-8],[11,-16],[12,-12],[13,-8],[25,-10],[6,-5],[6,-7],[1,-7],[-3,-6],[-3,-8],[3,-12],[4,-9],[8,-29],[4,-9],[9,-10],[4,-8],[0,-18],[0,-19],[2,-16],[7,-8],[4,-7],[0,-10],[-1,-10],[-3,-9],[-2,-4],[0,-4],[0,-4],[68,-175],[8,-13],[11,-3],[7,0],[6,-3],[6,-5],[6,-8],[4,-9],[2,-10],[2,-10],[3,-11],[2,-4],[2,-3],[2,-3],[1,-7],[0,-4],[-3,-9],[-1,-5],[1,-12],[4,-8],[10,-15],[8,-20],[3,-22],[0,-8],[-1,-16],[-4,-25],[0,-15],[4,-6],[6,-3],[4,-8],[0,-9],[-3,-13],[-6,-21],[-4,-11],[-4,-24],[-3,-11],[-11,-43],[-8,-16],[-3,-9],[1,-12],[14,-67],[7,-16],[6,-16],[3,-27],[-1,-28],[-5,-17],[-3,-3],[-15,-22],[-58,-117],[-4,-13],[-13,-141],[6,-10],[18,-20],[4,-12],[3,-18],[4,-15],[4,-17],[0,-19],[2,-7],[11,-8],[5,-5],[3,-11],[0,-6],[-2,-6],[-1,-10],[5,-17],[9,-1],[19,18],[10,2],[13,-1],[12,-4],[10,-7],[3,-7],[6,-14],[4,-6],[18,-14],[27,-9],[6,0],[5,6],[4,7],[5,6],[6,0],[5,-5],[18,-36],[3,-4],[3,1],[2,2],[4,1],[27,-10],[6,1],[11,5],[7,1],[47,-4],[16,5],[9,1],[10,0],[9,-4],[9,-6],[24,-26],[7,-3],[13,6],[5,0],[13,-7],[4,0],[14,3],[5,-1],[12,-8],[5,0],[27,9],[18,2],[32,13],[13,-3],[4,0],[9,3],[4,0],[15,-14],[8,-5],[9,-1],[5,2],[5,1],[6,-1],[5,-3],[7,1],[17,3],[8,-1],[21,-16],[7,0],[14,3],[6,-1],[6,-3],[11,-11],[5,-3],[29,-3],[46,-35],[7,-10],[44,-95],[15,-24],[13,-8],[24,-5],[12,0],[13,9],[4,-1],[5,-3],[4,-3],[22,-39],[5,-11],[8,-25],[4,-10],[8,-4],[18,0],[8,-7],[36,-34],[19,-28],[4,-9],[3,-10],[4,-7],[7,-5],[51,-25],[24,-20],[12,-3],[96,19],[5,-4],[-3,-11],[-8,-18],[-3,-10],[-2,-16],[-4,-11],[-1,-6],[-1,-6],[2,-30],[-2,-34],[0,-14],[2,-6],[27,-11],[14,-1],[10,-4],[7,-13],[15,-52],[28,-142],[39,-131],[3,-21],[1,-28],[3,-25],[5,-22],[9,-19],[108,-167],[6,-13],[4,-12],[2,-14],[3,-75],[2,-9],[3,-1],[3,-2],[27,7],[99,17],[100,16],[92,-19],[91,-19],[113,-24],[112,-23],[113,-24],[113,-23],[41,19],[97,47],[13,0],[111,-29],[111,-29],[112,-29],[53,9],[32,-4],[31,-13],[27,-32],[42,-109],[24,-41],[17,-14],[96,-36],[97,-35],[96,-36],[8,-6],[82,-70],[81,-69],[9,-2],[108,34],[108,34],[-1,-121],[2,-6],[27,-6],[81,-1],[6,-4],[6,-9],[11,-21],[11,6],[52,87],[5,3],[15,4],[14,12],[6,3],[3,3],[13,15],[19,17],[110,91],[125,87],[125,86],[119,31],[118,30],[119,30],[35,9],[16,-3],[24,-10],[60,1],[73,-21],[8,1],[10,5],[27,23],[9,1],[72,-14],[8,1],[13,8],[44,5],[1,1],[1,2],[2,5],[1,1],[2,0],[2,1],[41,49],[69,47],[20,5],[16,-1],[4,2],[5,3],[2,4],[3,4],[3,5],[10,10],[74,51],[5,10],[7,31],[6,10],[26,33],[12,20],[9,26],[7,29],[4,12],[32,54],[38,82],[11,17],[34,30],[68,42],[17,23],[8,4],[29,5],[9,7],[8,12],[44,83],[5,3],[20,-1],[14,9],[4,2],[7,6],[3,17],[1,19],[-1,18],[-4,20],[-25,70],[-8,15],[-9,13],[-31,33],[-9,14],[-25,54],[-7,19],[-5,22],[-1,23],[-2,10],[-5,10],[-17,16],[-4,12],[0,25],[2,17],[5,18],[7,17],[6,10],[1,1],[3,7],[7,24],[6,14],[2,8],[2,10],[0,10],[-1,20],[0,10],[3,15],[52,161],[6,14],[7,11],[16,19],[5,4],[12,4],[6,4],[3,5],[3,5],[3,4],[4,2],[3,0],[7,0],[27,-12],[76,2],[9,-3],[8,-8],[23,-35],[11,-29],[6,-12],[8,-9],[37,-25],[63,-27],[12,0],[24,-15],[103,-14],[4,-3],[8,-10],[4,-3],[20,-3],[8,4],[11,13],[17,28],[29,31],[14,24],[7,4],[16,3],[13,4],[10,8],[10,13],[8,18],[6,16],[2,6],[4,6],[14,13],[57,83],[15,34],[8,26],[3,13],[2,27],[1,6],[3,3],[38,22],[9,2],[10,-1],[46,-28],[10,-2],[52,12],[58,0],[38,11],[46,18],[8,6],[7,9],[21,36],[60,77],[5,9],[3,2],[14,-3],[4,0],[5,2],[13,11],[8,8],[16,36],[6,20],[-2,14],[-6,14],[-4,18],[2,16],[40,117],[46,72],[4,8],[3,11],[5,19],[4,4],[6,7],[12,5],[17,4],[4,2],[17,22],[6,10],[3,3],[4,-1],[35,-11],[96,-10],[10,4],[4,13],[1,41],[4,16],[10,21],[2,8],[-1,9],[-4,19],[22,8],[5,-4],[3,-1],[2,1],[13,14],[3,1],[4,-7],[7,-24],[5,-9],[13,-12],[7,-2],[28,5],[5,4],[4,9],[8,22],[5,10],[6,6],[7,5],[13,5],[9,2],[22,24],[5,3],[15,1],[4,2],[10,14],[9,8],[9,5],[9,1],[9,-2],[10,-5],[18,-13],[10,-3],[22,0],[5,2],[7,8],[4,2],[11,-5],[10,-9],[10,-4],[9,9],[11,27],[7,13],[8,4],[6,-4],[2,-9],[1,-10],[3,-8],[5,-2],[4,3],[7,13],[6,2],[5,-9],[8,-25],[6,-8],[7,-5],[71,-29],[13,1],[25,8],[13,0],[21,-5],[7,1],[6,-2],[10,-12],[6,-3],[5,2],[6,4],[5,7],[4,6],[5,12],[3,7],[4,2],[6,-5],[5,0],[5,5],[5,8],[5,13],[2,4],[2,4],[1,6],[-1,5],[-5,10],[-1,5],[1,11],[3,19],[0,13],[0,4],[1,3],[1,3],[-2,3],[-2,1],[-1,2],[-1,2],[0,3],[0,7],[1,5],[1,5],[2,6],[-1,4],[-4,1],[-5,1],[-3,1],[-2,4],[-1,5],[-1,4],[-1,5],[-4,8],[-9,14],[-4,9],[-1,3],[-1,3],[-1,7],[0,35],[-2,12],[-7,20],[-8,18],[-19,34],[-12,13],[-17,7],[-4,7],[-2,10],[-4,11],[-4,7],[-43,58],[-11,4],[2,9],[7,14],[1,5],[-2,9],[-5,5],[-12,5],[-26,14],[-6,6],[-3,7],[-2,10],[-3,43],[-2,11],[-4,9],[-7,7],[-24,12],[-57,37],[-15,22],[-30,71],[-17,31],[-20,14],[-53,5],[-7,3],[-14,12],[-6,3],[-17,-1],[-16,-4],[-19,-12],[-7,-1],[-43,4],[-14,-7],[-7,-9],[-59,-113],[-15,-18],[-11,-16],[-10,-26],[-11,-21],[-12,2],[-68,93],[-7,5],[-20,11],[-34,20],[-8,3],[-20,-2],[-70,-22],[-19,-1],[-52,17],[-17,-8],[-27,-25],[-31,-58],[-16,-15],[-18,13],[-70,107],[-6,14],[-4,13],[-5,36],[-8,76],[-1,6],[7,10],[65,45],[8,10],[2,19],[-6,118],[0,12],[1,12],[3,10],[63,140],[6,20],[0,10],[-4,21],[1,10],[58,185],[59,184],[4,14],[58,182]],[[82411,79976],[11,-13],[93,-76],[54,-30],[62,-5],[79,-60],[3,-1],[2,1],[5,4],[2,-1],[4,-4],[2,-1],[2,0],[2,0],[1,0],[9,2],[5,20],[3,4],[8,8],[24,17],[10,11],[5,6],[5,9],[5,7],[17,12],[5,6],[6,8],[4,10],[2,10],[3,0],[18,22],[6,4],[7,2],[6,6],[2,15],[3,5],[18,5],[5,4],[2,4],[1,11],[1,5],[2,4],[7,11],[9,9],[4,6],[9,7],[12,13],[7,5],[12,-8],[8,3],[14,7],[28,8],[3,2],[3,3],[3,2],[3,-1],[3,-2],[4,-2],[8,-2],[28,4],[27,13],[6,4],[4,6],[7,14],[14,19],[5,7],[3,9],[3,10],[1,11],[1,25],[0,6],[-1,4],[-2,5],[-1,4],[0,35],[2,11],[3,4],[3,2],[1,3],[0,6],[-2,12],[-1,3],[-6,3],[-5,1],[-18,-6],[-1,1],[-4,5],[-2,2],[-3,1],[-7,-2],[-4,1],[2,8],[-3,4],[-8,0],[-2,3],[1,7],[2,7],[3,4],[3,2],[9,-1],[2,1],[3,6],[7,12],[5,20],[1,2],[0,4],[0,2],[-1,1],[-2,2],[-1,4],[1,3],[2,3],[1,3],[6,35],[0,6],[2,6],[3,2],[3,1],[3,4],[3,5],[1,5],[3,4],[4,2],[3,3],[2,14],[3,3],[3,1],[4,2],[7,5],[4,7],[11,24],[2,8],[3,24],[0,13],[-5,13],[5,8],[3,11],[1,12],[-3,10],[15,25],[6,14],[3,5],[22,22],[7,13],[0,15],[5,1],[4,4],[2,7],[0,10],[1,8],[2,9],[1,8],[-2,9],[3,1],[1,2],[4,5],[-8,16],[1,10],[3,2],[9,-3],[3,1],[0,5],[-1,5],[-1,7],[2,15],[1,3],[3,3],[6,3],[3,3],[6,17],[2,3],[7,4],[-1,12],[-3,12],[-2,8],[14,4],[2,4],[2,4],[0,5],[2,5],[5,12],[-1,7],[-2,7],[1,13],[4,10],[14,21],[3,8],[0,14],[1,12],[3,11],[5,17],[4,9],[3,4],[3,1],[9,-2],[4,3],[4,8],[38,55],[16,16],[9,14],[5,4],[8,2],[3,2],[1,5],[2,6],[1,5],[3,5],[3,1],[3,0],[4,0],[4,4],[2,4],[2,5],[3,4],[3,1],[13,-1],[6,3],[4,8],[6,21],[7,12],[1,5],[0,8],[-1,6],[-2,6],[-1,7],[0,9],[3,7],[3,3],[4,2],[3,4],[3,6],[3,13],[4,5],[-1,4],[-1,5],[0,5],[1,5],[2,5],[0,3],[-2,2],[-1,3],[-2,5],[-3,9],[-1,5],[0,5],[2,10],[0,5],[-5,12],[-24,25],[-5,16],[-1,5],[-1,4],[-1,3],[1,7],[1,2],[3,3],[3,3],[1,6],[1,10],[6,14],[2,10],[0,18],[1,3],[2,8],[1,6],[0,6],[1,6],[5,14],[-5,5],[-15,10],[-12,4],[-20,17],[-13,8],[-8,11],[-2,2],[-7,-1],[-11,-9],[-6,-3],[-30,-3],[-5,-3],[-12,-10],[-7,-3],[-17,0],[-9,3],[-7,6],[-4,8],[-2,7],[-1,8],[1,12],[1,6],[4,14],[0,7],[-2,11],[0,7],[-3,15],[9,14],[25,15],[6,5],[12,16],[9,5],[4,3],[3,5],[2,5],[1,6],[3,4],[7,4],[3,5],[2,5],[1,5],[2,5],[2,4],[8,10],[17,31],[21,28],[24,25],[11,15],[17,37],[10,13],[20,16],[2,6],[-1,10],[5,7],[8,4],[51,6],[26,-9],[15,1],[14,6],[13,9],[7,11],[4,2],[5,0],[13,-4],[2,0],[13,2],[15,5],[35,33],[69,27],[38,0],[16,-1],[7,5],[11,14],[6,5],[16,3],[19,11],[6,2],[6,-3],[6,-7],[6,-11],[6,-6],[6,1],[13,7],[108,6],[40,19],[41,4],[3,2],[5,8],[6,5],[9,13],[5,4],[7,1],[9,-1],[8,-3],[8,-10],[3,-1],[11,-3],[4,-2],[11,-10],[3,0],[1,5],[0,10],[2,10],[6,1],[6,-5],[3,-8],[-2,-2],[-2,-3],[-4,-7],[6,-4],[6,6],[8,20],[6,4],[7,-7],[11,-19],[7,-6],[8,-4],[33,-5],[7,-4],[26,-19],[6,-9],[5,-15],[2,-5],[4,-4],[7,-3],[4,-3],[8,-16],[6,-6],[6,3],[4,7],[7,5],[8,3],[6,-1],[6,-4],[6,-6],[5,-8],[3,-13],[5,-12],[1,-2],[5,-20],[5,-7],[6,-8],[7,-6],[13,-5],[13,-8],[7,-2],[31,0],[4,-1],[7,-6],[3,-3],[2,-6],[0,-5],[0,-3],[1,-5],[6,-8],[7,0],[15,4],[6,-5],[7,-20],[6,-3],[8,6],[-2,10],[-3,11],[0,11],[5,8],[6,5],[28,10],[15,1],[15,-4],[83,-66],[8,-2],[6,-5],[6,-19],[6,-5],[18,10],[10,2],[5,-10],[3,-13],[8,-11],[15,-14],[-2,-17],[-2,-4],[-2,-3],[-6,-3],[-3,-2],[-5,-8],[-4,-11],[0,-9],[6,-4],[7,2],[12,8],[28,7],[5,-5],[2,-6],[0,-4],[-1,-4],[-1,-6],[2,-5],[1,-4],[31,-50],[2,0],[6,8],[3,2],[14,1],[6,-5],[4,-12],[-11,-6],[-4,-5],[-4,-6],[7,-18],[2,-10],[-4,-4],[-7,-1],[-7,-3],[-6,-7],[-2,-13],[1,-12],[4,-15],[5,-11],[5,-1],[3,2],[3,1],[3,3],[1,7],[1,4],[4,-1],[24,-27],[12,-8],[0,-13],[-3,-15],[0,-12],[4,-1],[9,1],[8,-2],[3,-8],[2,-8],[5,-11],[9,-15],[2,-9],[-2,-11],[-8,-25],[8,-8],[21,-9],[5,-7],[-13,-7],[-22,-21],[-1,-9],[2,-8],[5,-4],[5,-1],[28,-15],[11,-3],[11,-5],[7,-13],[-2,-10],[-8,-31],[-2,-7],[0,-4],[-6,-2],[-7,-4],[-6,-8],[-2,-12],[2,-10],[56,-142],[4,-5],[14,-6],[1,-3],[3,-6],[0,-3],[-1,-3],[-1,-4],[-2,-3],[-1,0],[2,-14],[2,-8],[0,-8],[-5,-13],[-8,-15],[0,-7],[7,-8],[21,-10],[8,-7],[7,-15],[-8,-19],[-3,-11],[-1,-13],[3,-10],[8,-4],[14,-2],[3,-1],[4,-4],[2,-6],[0,-8],[-4,-9],[-4,-3],[-6,-2],[-5,-2],[-4,-7],[-4,-8],[-2,-10],[1,-11],[4,-14],[6,-8],[7,0],[6,11],[0,7],[-1,4],[-1,4],[0,4],[2,5],[2,3],[2,3],[3,2],[5,2],[5,1],[5,-4],[3,-8],[-1,-8],[-3,-9],[-6,-14],[-8,-15],[-2,-6],[-1,-8],[-1,-9],[1,-17],[1,-11],[4,-22],[0,-13],[2,-14],[4,-9],[10,-12],[14,-33],[4,-3],[18,-21],[9,-17],[21,-68],[6,-8],[7,-6],[6,-8],[2,-12],[0,-5],[-1,-4],[-1,-4],[-1,-4],[-1,-4],[1,-4],[1,-4],[0,-4],[2,-5],[9,-17],[4,-6],[5,-13],[2,-16],[-1,-14],[-2,-6],[-6,-12],[-3,-6],[-4,-15],[-2,-7],[-4,-7],[5,-8],[12,-15],[3,-7],[0,-13],[0,-7],[-2,-4],[-2,-6],[-2,-7],[-2,-7],[0,-7],[6,-18],[14,-13],[49,-33],[3,-7],[0,-13],[-1,-12],[-2,-10],[-3,-11],[-17,-40],[-6,-22],[2,-31],[8,-19],[3,-12],[0,-8],[-3,-10],[-3,-13],[-1,-15],[0,-13],[9,-19],[29,-14],[10,-16],[2,-13],[0,-11],[1,-10],[3,-13],[5,-7],[14,-8],[5,-7],[6,-9],[6,-8],[6,-5],[15,-3],[4,0],[2,3],[3,6],[2,3],[2,1],[4,0],[6,-2],[6,-7],[10,-17],[5,-7],[7,-3],[30,-2],[7,2],[6,6],[6,4],[15,-8],[6,2],[3,4],[3,9],[2,3],[3,2],[47,6],[21,-8],[2,2],[9,18],[1,1],[4,-5],[14,-11],[7,-4],[7,-1],[3,-2],[1,-4],[1,-6],[0,-6],[-1,-8],[-3,-3],[-3,-1],[-3,-2],[-4,-11],[-1,-11],[3,-8],[7,-3],[7,2],[12,7],[7,-1],[6,-4],[13,-14],[14,-4],[5,-7],[10,-32],[4,-9],[6,-5],[8,-2],[5,3],[10,15],[6,6],[7,1],[8,-3],[7,-7],[12,-18],[7,-2],[6,5],[3,12],[0,24],[2,9],[7,3],[14,-2],[7,-3],[6,-7],[5,-8],[2,-7],[1,-9],[0,-28],[2,-11],[4,-8],[5,-6],[13,-3],[14,3],[12,-3],[7,-21],[0,-20],[2,-6],[3,-7],[6,-4],[14,-2],[4,-4],[1,-8],[-1,-26],[6,-2],[6,-4],[10,-10],[-2,-14],[0,-11],[4,-9],[13,-6],[6,-7],[12,-18],[45,-53],[14,-11],[12,3],[12,9],[14,7],[14,0],[8,-3],[3,-7],[2,-10],[7,-4],[8,-2],[7,2],[17,11],[7,1],[7,-3],[0,-8],[-3,-10],[-10,-27],[-27,-95],[-1,-11],[3,-11],[6,-6],[7,-3],[6,-3],[4,-10],[0,-7],[-2,-11],[0,-6],[0,-7],[3,-12],[0,-3],[4,-3],[21,13],[8,-2],[4,-6],[0,-11],[-3,-12],[-3,-10],[2,-11],[5,-17],[3,-11],[2,-5],[3,-5],[3,-3],[3,-2],[3,-3],[0,-10],[0,-14],[-1,-7],[-13,-22],[-1,-5],[-2,-7],[-3,-21],[-1,-3],[-5,-4],[-6,-8],[-9,-17],[-3,-11],[0,-9],[2,-9],[1,-13],[2,-8],[48,-73],[14,-26],[10,-37],[0,-19],[-1,-22],[1,-20],[6,-8],[5,-3],[12,-10],[5,-3],[11,-1],[6,0],[7,3],[10,10],[12,7],[58,20],[6,-1],[10,-4],[9,-8],[8,-11],[11,-20],[2,-3],[3,-1],[3,0],[2,0],[3,1],[2,2],[15,16],[5,1],[22,-10],[5,0],[10,3],[5,0],[3,-2],[8,-6],[3,-2],[3,0],[3,1],[2,2],[7,9],[3,1],[16,5],[18,-2],[7,-3],[13,0],[7,4],[4,3],[13,14],[4,2],[19,5],[10,-1],[9,-3],[15,-11],[6,-3],[14,1],[3,2],[3,3],[2,4],[5,10],[2,5],[1,5],[-1,5],[-2,10],[0,4],[1,3],[1,4],[8,16],[14,25],[2,7],[2,7],[-1,5],[-1,4],[-1,4],[-1,4],[0,5],[1,5],[1,3],[2,4],[4,4],[5,2],[4,-1],[5,-3],[7,-9],[3,-3],[4,-1],[5,2],[4,4],[3,5],[6,15],[3,5],[21,22],[0,3],[23,15],[3,3],[2,2],[1,3],[1,3],[1,4],[3,8],[4,6],[4,3],[26,11],[11,1],[11,-4],[2,-3],[5,-6],[3,-2],[6,-1],[16,4],[5,0],[4,-2],[11,-7],[3,-1],[17,3],[6,4],[4,7],[3,12],[2,7],[2,6],[3,5],[3,5],[4,3],[9,4],[5,3],[4,8],[6,17],[4,8],[5,4],[16,-1],[5,3],[10,8],[5,3],[2,1],[17,-1],[8,3],[4,4],[12,18],[5,4],[4,3],[17,4],[25,15],[44,10],[6,3],[5,-7],[13,-15],[5,-3],[5,0],[6,2],[4,4],[5,5],[8,-25],[11,-18],[14,-11],[11,-3],[5,1],[-4,-6],[-5,-20],[-1,-50],[-6,-16],[-4,-4],[-17,-24],[-5,-12],[-2,-18],[2,-15],[9,-24],[-3,-11],[3,-9],[6,-6],[7,-2],[3,-6],[3,-13],[2,-15],[0,-9],[6,-17],[20,-32],[-1,-14],[2,-4],[-13,-28],[-3,-5],[-6,-4],[-2,-10],[0,-14],[-1,-12],[-4,-8],[-12,-15],[-3,-7],[-3,-6],[-12,-27],[-1,-6],[-6,-4],[-10,-15],[-4,-5],[-4,-1],[-9,0],[-6,6],[-4,-1],[-4,-3],[-3,-1],[-6,-1],[-6,-2],[-6,-3],[-5,-7],[-4,-7],[-6,-18],[-4,-7],[-11,-10],[-6,-6],[-2,-10],[-1,-14],[-3,-9],[-2,-9],[2,-11],[2,-5],[5,-10],[2,-2],[1,-3],[0,-7],[-2,-12],[3,-10],[4,-11],[3,-12],[-2,-13],[-6,-6],[-14,-2],[-6,-6],[-3,-9],[-7,-34],[-2,-4],[-2,-2],[-1,-4],[-1,-8],[0,-25],[-1,-11],[-12,-44],[-1,-8],[1,-8],[4,-10],[3,-10],[-1,-12],[-4,-25],[-4,-27],[-2,-11],[-2,-5],[-3,-7],[-6,-9],[-13,-12],[-5,-10],[-1,-6],[0,-15],[-2,-5],[-12,-29],[0,-6],[0,-8],[2,-7],[2,-2],[2,-1],[4,-2],[5,-6],[6,-10],[3,-11],[-2,-12],[-13,-10],[-5,-9],[3,-11],[3,4],[4,0],[3,-2],[2,-6],[-6,-7],[0,-6],[2,-8],[0,-11],[-3,-5],[-6,-4],[-4,-4],[2,-8],[-3,-4],[-4,-10],[-2,-2],[-2,2],[-3,8],[-1,2],[-4,-2],[-2,-4],[-1,-6],[-2,-6],[-3,-5],[-7,-11],[-5,-6],[-6,0],[-3,-4],[2,-16],[6,-21],[1,-10],[-7,-24],[-11,-52],[-2,-4],[-6,6],[-3,-1],[-2,-4],[-1,-6],[0,-9],[-1,-3],[-5,-7],[0,-2],[0,-3],[0,-2],[-1,-1],[-3,1],[-2,3],[-1,3],[-2,1],[-6,0],[-5,-5],[-3,-10],[-1,-15],[-1,-2],[-3,-3],[-2,-5],[0,-8],[2,-6],[5,-5],[3,-6],[-8,-6],[-4,-23],[-7,-11],[2,-7],[7,-3],[3,-4],[1,-8],[-2,-6],[-8,-8],[2,-3],[3,-7],[1,-3],[-5,-3],[-5,-1],[-4,-3],[-3,-9],[3,-12],[-4,-4],[-10,0],[-4,-3],[-9,-11],[-8,-5],[-8,-8],[-9,-3],[-10,-7],[-4,-4],[-2,-6],[-11,-35],[-2,-9],[-2,-10],[0,-11],[-7,-58],[1,-13],[-2,-12],[2,-18],[4,-18],[2,-17],[-1,-8],[-1,-6],[-1,-5],[-5,-9],[-7,-10],[-7,-5],[-7,-14],[-8,-6],[-8,-12],[-3,-2],[-9,2],[-23,18],[-121,52],[-121,52],[-5,3],[-5,6],[-5,6],[-4,8],[-3,11],[-2,11],[-3,10],[-5,6],[-10,-3],[-9,-16],[-17,-53],[-3,-4],[-13,0],[-6,-1],[-5,-5],[-3,-8],[-3,-12],[0,-10],[5,-14],[-1,-12],[-3,-9],[-38,-55],[-2,-2],[-3,-5],[-3,-8],[-2,-6],[-4,-1],[-20,5],[-5,0],[-5,-2],[-4,-4],[-11,-17],[-4,-4],[-19,-11],[-5,-1],[-5,3],[-5,5],[-3,3],[-4,-1],[-13,-6],[-1,-2],[-2,-4],[1,-9],[-1,-5],[-4,-7],[-5,-4],[-5,-1],[-5,0],[-10,-7],[-1,-10],[11,-30],[10,-10],[4,-7],[12,-38],[28,-186],[27,-186],[0,-5],[-3,-2],[-5,-6],[-4,-9],[-2,-6],[0,-8],[-2,-11],[1,-9],[3,-20],[-1,-10],[-6,-29],[-6,-36],[-1,-11],[2,-32],[0,-15],[0,-4],[0,-6],[3,-10],[0,-6],[0,-5],[-2,-11],[0,-4],[1,-5],[2,-11],[0,-5],[-1,-8],[-6,-15],[-1,-10],[1,-7],[24,-30],[3,-3],[3,-8],[1,-7],[1,-27],[0,-8],[-3,-9],[-3,-5],[-3,-7],[-2,-14],[0,-22],[-1,-11],[-3,-8],[-9,-12],[-4,-8],[-3,-10],[-1,-12],[3,-7],[2,-8],[2,-10],[-2,-11],[-4,-7],[-10,-11],[-2,-4],[-1,-4],[0,-5],[-1,-5],[-2,-4],[-5,-3],[-2,-3],[-2,-6],[-1,-7],[0,-16],[2,-17],[5,-17],[1,-15],[-8,-8],[-10,0],[-4,-1],[-5,-5],[-1,-8],[-1,-9],[-2,-6],[-38,1],[-11,8],[-6,3],[-7,-2],[-4,-7],[-2,-9],[-4,-8],[-1,1],[-22,2],[-18,-7],[-26,-22],[-24,-27],[-7,-23],[6,-11],[10,-1],[10,2],[8,-1],[7,-7],[6,-12],[6,-14],[4,-14],[0,-17],[-5,-10],[-10,-13]],[[86258,75657],[-2,11],[-1,23],[-1,7],[-4,6],[-5,0],[-5,-6],[-3,-9],[4,-9],[-1,-9],[-4,-3],[-6,7],[-1,6],[1,12],[-1,5],[-2,3],[-2,0],[-3,-1],[-3,2],[-19,26],[-2,10],[-15,24],[-5,21],[0,23],[3,50],[-4,21],[-13,4],[-15,-1],[-11,8],[3,5],[3,8],[2,10],[1,8],[-3,5],[-8,-3],[-13,-9],[-10,0],[-4,0],[-4,3],[-3,4],[-8,18],[-2,3],[-4,1],[-3,-1],[-5,-5],[-3,-2],[1,-5],[2,-3],[2,-3],[2,-1],[-3,-3],[-9,-1],[-3,-5],[-1,-6],[0,-14],[-2,-6],[-2,-6],[-10,-42],[-1,-18],[-1,-8],[-5,-15],[-3,-12],[-1,-7],[-1,-8],[1,-11],[2,-4],[3,-2],[3,-5],[0,-4],[-2,-4],[-2,-5],[1,-9],[-7,-3],[-3,-8],[2,-8],[4,-2],[0,-3],[-7,-13],[-1,-20],[0,-23],[-1,-22],[-7,-19],[-9,-3],[-11,4],[-11,2],[1,-7],[0,-8],[-2,-7],[-7,-4],[-1,-4],[0,-6],[-2,-6],[-2,-3],[-3,-1],[-2,2],[-1,6],[-2,4],[-8,7],[-2,5],[-13,18],[-4,0],[-4,-3],[-3,-4],[-2,-1],[-4,3],[-3,7],[-3,2],[-3,-2],[0,-4],[1,-5],[2,-5],[-4,-4],[-3,7],[-3,-2],[-2,-9],[-1,-11],[-2,-1],[-15,-5],[-2,-3],[-1,-4],[-1,-5],[0,-5],[2,-2],[1,-2],[1,-3],[-2,-9],[-3,-3],[-9,0],[0,-4],[3,-1],[2,-1],[3,-2],[2,-4],[-3,-4],[-1,-4],[0,-5],[-1,-5],[-2,-3],[-3,-1],[-3,-4],[0,-6],[1,-5],[7,0],[1,-6],[-1,-3],[-2,-3],[-2,-3],[-5,-10],[-8,-11],[-8,-15],[-4,-4],[-5,0],[-7,7],[0,-11],[-3,-8],[-7,-12],[-5,-4],[-7,-1],[-6,-3],[-2,-8],[-4,-23],[-10,-6],[-6,3],[-18,8],[-27,2],[-3,-10],[-8,-3],[-20,3],[-3,-2],[-3,-4],[-4,-10],[-3,-2],[-3,4],[-2,0],[-12,-7],[-4,1],[-9,8],[-13,-1],[-6,7],[-6,3],[-29,4],[-44,-20],[-13,0],[-6,-3],[-3,-8],[-1,-9],[6,-51],[2,-9],[3,-8],[9,-5],[2,-11],[13,-41],[3,-12],[1,-13],[7,-11],[11,-14],[7,-6],[5,-10],[4,-12],[0,-10],[6,-13],[-4,-23],[-29,-83],[-11,-17],[-11,2],[4,8],[-4,4],[-5,-6],[-6,0],[-5,6],[1,13],[-5,-5],[-3,-1],[-2,1],[-1,7],[0,10],[0,11],[-3,6],[-2,-5],[-3,-5],[-2,-2],[-9,12],[-11,-2],[-6,-4],[-3,-4],[-2,-9],[-4,-4],[-6,1],[-5,6],[-7,-4],[-26,1],[-8,5],[-1,0],[-3,-8],[-3,-2],[-2,2],[-9,10],[-11,5],[-4,6],[0,13],[-5,-4],[-5,3],[-5,4],[-4,2],[-5,-3],[-4,-4],[-4,-2],[-7,0],[-1,2],[-1,2],[-2,3],[-3,2],[-2,-1],[-5,-3],[-2,-1],[-11,2],[-6,3],[-4,4],[1,1],[3,3],[1,4],[0,4],[-2,3],[-2,0],[-2,-2],[-2,-1],[-4,1],[-6,8],[-5,3],[-1,-3],[-4,-12],[-2,-2],[-2,1],[-1,3],[-1,2],[-3,2],[-4,-4],[-2,-1],[-1,5],[-3,2],[-2,1],[-2,1],[4,11],[5,8],[6,5],[6,4],[-4,6],[-14,9],[-5,1],[1,6],[1,2],[-9,6],[-4,4],[-2,6],[-1,9],[1,6],[2,2],[5,0],[-2,7],[-6,15],[-1,8],[-3,0],[-9,12],[-5,7],[-7,2],[-3,-1],[-2,4],[0,13],[-3,4],[-5,-3],[-6,-7],[-3,-6],[-4,-16],[-15,-10],[-4,-15],[-2,-5],[-5,5],[-8,14],[-4,5],[-4,2],[-4,0],[-5,-3],[2,-7],[3,-4],[5,-4],[3,-5],[-4,-4],[-9,-14],[-3,-2],[-10,0],[-4,-1],[-5,-14],[-9,-17],[0,-7],[2,-8],[2,-8],[-2,-8],[-5,-16],[-4,-27],[-10,-25],[-2,-7],[2,-15],[4,-19],[0,-15],[-9,-5],[0,5],[1,2],[1,2],[1,2],[0,2],[-8,1],[-8,-11],[-14,-27],[-3,-7],[-7,-25],[-3,-7],[-7,-11],[-3,-6],[-7,-26],[-3,-7],[-3,-6],[-32,-30],[-6,-10],[4,-11],[-4,-8],[-4,-6],[-3,-6],[1,-8],[-3,-2],[-3,-2],[-2,-3],[-2,-5],[1,-5],[-2,-7],[-5,-14],[-5,-6],[-5,-1],[-5,-3],[-3,-9],[4,1],[4,-1],[1,-2],[-2,-6],[-3,-3],[-9,-2],[-4,-5],[-4,-3],[-3,4],[-3,6],[-3,3],[-5,-1],[-3,-3],[-12,-13],[-2,-1],[-12,9],[-3,1],[-2,0],[-2,-3],[-1,-4],[-1,-4],[-3,-1],[-8,-3],[-1,-1],[-6,-7],[-11,-22],[8,-15],[3,-9],[-4,-4],[-16,-1],[-1,2],[-2,5],[-4,5],[-4,2],[-3,-4],[-1,-11],[-1,-13],[-2,-7],[-4,-2],[-11,-1],[-4,-1],[-2,-4],[-3,-6],[-1,-5],[0,-8],[-1,-4],[-2,-3],[-5,2],[-2,-3],[-1,-8],[0,-1],[0,-7],[-1,-5],[-6,1],[-2,1],[-3,6],[-3,1],[-2,0],[-5,-3],[-4,2],[-4,3],[-4,-1],[-5,-3],[-1,-6],[-2,-6],[-2,-5],[-4,-2],[-8,-5],[-9,-5],[-8,-6],[-6,-6],[-5,-6],[-7,-5],[-4,-4],[-7,-4],[-7,-4],[-2,-8],[0,-8],[3,-7],[3,-7],[2,-8],[-1,-6],[-4,-2],[-6,-1],[-5,1],[-8,-2],[-7,1],[-2,1],[-2,2],[-1,3],[-3,6],[-3,5],[-1,-4],[-2,-7],[-9,-20],[-14,-22],[-6,-7],[-6,-2],[-5,-5],[-2,-13],[-3,-13],[-2,-10],[-6,-4],[-14,-5],[-4,-5],[-5,-9],[-11,-11],[-4,-7],[-1,-3],[-1,-7],[0,-2],[-2,-2],[-3,-1],[-1,-1],[-39,-61],[-5,-8]],[[84546,74216],[-3,-5],[0,-8],[1,-17],[1,-15],[-1,-6],[-3,-7],[-12,-23],[-1,-4],[-1,-8],[-2,-4],[-2,-3],[-2,0],[-1,0],[-2,-1],[-18,-29],[-13,-10],[-5,-11],[-6,-6],[-8,12],[-6,-10],[-3,-3],[-4,-4],[-12,-5],[-3,-3],[-3,3],[-2,3],[-4,8],[-3,4],[-4,-2],[-3,-5],[-2,-3],[-7,-1],[-7,1],[-7,3],[-6,5],[-2,0],[-9,-11],[-15,7],[-14,15],[-8,13],[4,25],[-4,-3],[-3,-7],[-1,-8],[-1,-11],[-6,-32],[-1,-15],[-2,-4],[-8,-8],[0,-2],[0,1],[-2,4],[-1,2],[-1,3],[-2,4],[-2,3],[-6,1],[-5,-5],[-3,-6],[-10,-25],[-5,-7],[-5,5],[-1,7],[1,30],[1,3],[1,3],[1,4],[-1,6],[-2,1],[-2,-1],[-2,-3],[2,-5],[-5,-12],[-6,-3],[-7,0],[-7,-5],[-3,5],[-5,11],[-3,4],[-3,-8],[-2,2],[-1,6],[0,4],[-2,-2],[-2,-3],[-1,-4],[2,-5],[3,-6],[3,-9],[1,-8],[-5,-4],[-7,4],[-4,0],[-1,-6],[0,-6],[2,-2],[2,0],[6,-3],[2,0],[2,-1],[2,-4],[2,-6],[-1,-4],[-12,-12],[-14,-9],[-13,0],[-5,15],[-2,-3],[-12,-6],[-5,-1],[-3,1],[-4,2],[-2,1],[-1,-2],[-1,-4],[-2,-3],[-4,1],[0,-5],[5,-5],[-1,-8],[-8,-15],[-5,5],[-21,-8],[-6,7],[-17,-27],[-2,-7],[-3,-1],[-17,-14],[-3,-7],[-3,-3],[-3,-2],[-1,3],[-3,5],[-4,2],[-1,-3],[-2,-11],[-14,-24],[-3,5],[-2,4],[-2,2],[-2,-3],[0,-2],[1,-3],[1,-3],[0,-4],[-2,-3],[-1,0],[-1,0],[-2,-1],[-12,-16],[-7,-6],[-7,-3],[-9,1],[-5,-2],[-3,-9],[-8,-4],[-3,-4],[-3,-6],[-4,-6],[-5,-4],[-3,-2],[-2,-5],[-2,-8],[-3,-7],[-4,4],[0,-3],[-1,-1],[-1,-4],[-1,-15],[-12,-20],[-23,-30],[0,-7],[-1,-8],[-2,-7],[0,-3],[9,0],[4,-2],[3,-5],[-5,0],[-5,-3],[-15,-22],[-2,-2],[-2,0],[-3,-1],[-2,-5],[3,-14],[-2,-5],[-15,2],[-2,-2],[-3,-6],[-3,-5],[-5,-2],[-4,2],[-3,3],[-4,2],[-4,-4],[4,-2],[3,-5],[2,-6],[1,-7],[-12,11],[-7,4],[-8,2],[3,-13],[12,-11],[4,-9],[0,-6],[-2,-5],[-5,-7],[-3,-4],[-3,2],[-10,15],[-7,20],[-4,9],[-8,7],[-5,-2],[-2,-6],[5,-7],[0,-4],[-7,3],[-9,1],[-2,0],[-10,-8],[4,0],[1,-3],[1,-4],[0,-5],[-1,-7],[-2,-2],[-5,-3],[-7,-1],[-3,-2],[-2,-5],[2,-3],[7,-6],[11,0],[5,-2],[5,-7],[3,-11],[0,-11],[-2,-6],[-6,5],[-6,-8],[-20,3],[-8,-3],[-11,-18],[-2,-1],[-2,-7],[-4,-3],[-29,4],[-10,-1],[-16,-15],[-7,4],[-7,2],[-5,-14],[2,1],[5,-1],[-13,-28],[-5,-4],[-7,4],[-3,9],[-3,9],[-5,6],[3,6],[3,2],[1,4],[-1,12],[-2,6],[-3,5],[-2,7],[1,11],[7,10],[4,7],[-1,7],[-17,0],[-1,4],[3,9],[6,14],[3,2],[14,4],[3,-1],[3,-6],[3,-1],[2,0],[4,3],[7,2],[9,11],[8,-1],[4,1],[2,6],[-1,4],[-2,10],[-1,6],[2,9],[5,7],[6,3],[6,-1],[2,-2],[2,-4],[3,-8],[2,-2],[4,-1],[7,1],[5,3],[17,17],[24,12],[12,11],[4,18],[-3,11],[-8,13],[-2,10],[-4,-1],[-6,4],[-4,7],[4,5],[0,3],[-1,6],[-1,3],[7,2],[2,7],[-8,10],[-4,6],[6,7],[7,-1],[2,-1],[1,-4],[3,1],[6,5],[11,13],[5,9],[0,4],[-2,7],[7,14],[3,6],[4,4],[3,0],[13,-4],[8,3],[13,15],[8,3],[-3,10],[-3,-1],[-2,-6],[-4,-3],[-5,-2],[-9,-6],[-5,-1],[-24,8],[-10,-2],[3,-14],[-47,-6],[-7,2],[-9,14],[-9,51],[-7,20],[-4,5],[-6,2],[-12,1],[-4,-1],[-6,-8],[-4,-3],[-1,1],[-5,5],[-3,2],[-10,0],[-2,2],[-2,6],[2,5],[2,3],[3,1],[3,12],[9,13],[4,7],[6,3],[15,-1],[19,8],[6,10],[-2,9],[10,4],[7,-21],[2,3],[1,2],[0,3],[1,4],[0,2],[-3,5],[-1,2],[1,2],[3,4],[0,2],[1,1],[1,3],[1,3],[-1,5],[-2,3],[-2,-1],[-2,-2],[-2,0],[-3,4],[-4,16],[-8,10],[0,2],[-1,2],[-1,2],[5,5],[3,4],[1,9],[-3,5],[-2,11],[0,3],[11,8],[7,22],[9,-1],[13,7],[6,15],[14,15],[6,3],[7,-2],[6,-3],[5,1],[7,12],[2,5],[0,5],[1,5],[8,3],[5,8],[5,4],[2,4],[0,6],[-2,5],[-3,2],[-7,0],[-3,2],[15,11],[13,21],[1,14],[18,14],[3,19],[-4,18],[6,1],[7,5],[5,7],[10,11],[2,13],[2,8],[0,7],[0,5],[0,5],[0,11],[6,9],[14,16],[9,17],[-2,27],[10,0],[3,2],[0,5],[-1,5],[1,4],[4,4],[4,3],[2,4],[0,10],[4,8],[-2,12],[-5,12],[-14,21],[-14,5],[-7,10],[-4,12],[9,17],[0,20],[-3,9],[-6,-10],[-4,-3],[-4,12],[-11,21],[-5,6],[-43,37],[-7,4],[-5,10],[-2,16],[-1,32],[-1,4],[-3,8],[0,9],[3,4],[3,2],[3,5],[4,13],[-2,4],[-11,-13],[-5,-8],[-9,-15],[1,-16],[-3,-11],[-3,-10],[-5,-14],[-13,0],[-27,-2],[-6,-2],[-2,2],[-11,13],[-5,7],[-8,3],[-9,1],[-2,3],[-1,5],[-1,5],[-1,3],[-3,3],[-7,4],[-3,3],[-6,6],[-7,-7],[-6,-11],[-5,-6],[-3,0],[-4,2],[-2,4],[-2,6],[-4,-8],[-5,12],[-7,2],[-7,-5],[-6,-9],[-3,-3],[-3,-5],[-3,-5],[-3,-5],[-1,-2],[-7,-4],[-1,-2],[1,-3],[0,-4],[0,-3],[0,-10],[-4,-6],[0,-9],[-5,-4],[-2,11],[-3,7],[-7,4],[-4,-1],[-3,-3],[-3,-5],[-2,-7],[1,-8],[1,-6],[-3,-5],[-4,-5],[-2,-6],[0,-9],[5,-2],[6,1],[5,-2],[4,-3],[3,-7],[-7,-2],[-9,-4],[-6,-10],[-5,-2],[-8,-2],[-3,-3],[-4,-1],[-6,3],[-6,-6],[-2,-10],[-1,-10],[-2,-13],[-3,-11],[-2,-4],[-6,-4],[-19,-29],[-6,-9],[-2,-11],[-2,-7],[-1,-4],[-8,-5],[-3,-1],[-5,-5],[-2,-9],[1,-11],[-1,-6],[-3,-5],[-6,-1],[-5,-5],[-2,-12],[3,-4],[5,2],[6,3],[1,-10],[-8,-8],[-8,-6],[-9,-10],[0,-11],[0,-10],[1,-11],[0,-14],[-4,-11],[-5,-10],[-6,-8],[-4,-4],[-12,0],[-10,-1],[-7,-3],[-7,-4],[-5,-10],[-8,-10],[-4,-1],[-6,-6],[-9,-5],[-1,0],[-2,-2],[-7,-7],[-11,-7],[-46,-25],[-10,-12],[-1,-15],[0,-8],[-10,-2],[-7,-5],[-11,-8],[-5,-5],[-5,-8],[-7,1],[-12,-10],[-13,-2],[-11,-12],[-5,-3],[-8,-1],[-5,-4],[-6,-4],[-2,-12],[-2,-8],[2,-10],[1,-15],[-10,-1],[-8,1],[-10,-12],[-5,-10],[-7,-11],[-5,-7],[-3,-7],[-2,-3],[-3,-9],[-7,-44],[-3,-14],[-5,-13],[-1,0],[-4,1],[-6,-2],[-6,-6],[-4,-9],[0,-11],[6,9],[3,3],[-1,-5],[-1,-5],[-1,-5],[-1,-6],[4,6],[6,19],[2,2],[3,-3],[-6,-24],[-1,-25],[4,-2],[7,-20],[2,-14],[-2,-12],[-5,-17],[-6,-10],[-9,-5],[-6,3],[-5,-5],[-15,-36],[-10,-20],[-9,-17],[-6,-11],[-7,-14],[-6,-6],[-15,-24],[-4,-5],[-4,-3],[-5,0],[0,4],[11,12],[3,4],[1,6],[1,6],[2,5],[3,4],[-6,-1],[-12,-9],[-6,-3],[1,8],[-4,9],[1,8],[-4,-4],[-6,-19],[-6,-7],[-6,-7],[-6,-2],[-13,-1],[-11,4],[-11,4],[-8,0],[-8,-7],[-8,-1],[-10,1],[-2,-5],[3,-9],[-5,-5],[-7,-9],[-5,-2],[-16,-21],[-8,-7],[-6,-5],[-4,-7],[-5,0],[-8,6],[-9,2],[-9,5],[-8,14],[-5,20],[-5,15],[-8,22],[-12,18],[-14,10],[-5,0],[-15,-2],[-12,-2],[-13,-7],[-20,-29],[-15,-22],[-6,-5],[-6,3],[1,-11],[2,-3],[3,-6],[4,-6],[2,-13],[2,-11],[2,-17],[1,-10],[-9,1],[-4,1],[-8,6],[1,-5],[0,-1],[1,-2],[-35,-101],[-1,-11],[-1,-11],[-1,-35],[-4,-14],[0,-11],[1,-9],[-2,-8],[-3,-13],[6,-5],[4,-17],[25,-82],[13,-40],[24,-50],[10,-14],[17,-14],[12,-8],[6,-13],[4,-10],[3,2],[5,-1],[9,-9],[4,-5],[1,-7],[-1,-4],[3,-6],[5,-2],[1,-1],[3,2],[3,4],[3,2],[8,-6],[19,2],[27,-10],[31,-10],[7,-2],[6,-4],[6,-5],[5,-3],[6,-9],[3,-3],[2,1],[2,3],[1,1],[3,2],[3,6],[4,12],[5,9],[11,12],[29,6],[13,-2],[5,0],[4,0],[16,-17],[15,-16],[-7,-23],[5,-5],[4,-9],[4,-22],[7,-20],[14,-9],[12,-21],[7,-35],[11,-17],[14,-13],[10,-20],[5,-31],[-1,-27],[-11,2],[-8,16],[-19,21],[-14,2],[-9,-11],[-3,-11],[0,-8],[-4,-21],[-5,-12],[-5,-14],[-2,-10],[0,-12],[-3,-25],[-4,-90],[2,-25],[3,-24],[3,-9],[5,-4],[7,-3],[4,-7],[4,-9],[4,-9],[16,-15],[8,-13],[39,-25],[43,-10],[10,8],[13,3],[4,-1],[7,3],[27,-3],[16,2],[15,7],[2,9],[4,8],[23,31],[6,9],[-3,21],[-6,22],[-5,13],[3,10],[7,6],[13,8],[16,17],[3,5],[3,1],[14,10],[36,43],[30,51],[7,20],[-4,20],[-4,3],[-4,1],[-9,0],[-3,1],[-4,3],[-2,3],[2,1],[25,0],[16,5],[5,6],[1,1],[6,3],[9,16],[5,5],[26,9],[2,1],[8,11],[12,4],[11,8],[8,11],[10,7],[13,-2],[10,-7],[4,-1],[3,1],[5,6],[3,1],[6,-2],[8,-4],[4,-8],[-4,-10],[4,-9],[4,-8],[5,-5],[6,-3],[3,-2],[1,-5],[2,-6],[1,-5],[3,-4],[3,0],[3,2],[4,0],[13,-3],[7,-4],[3,-7],[-2,-8],[-3,-7],[-1,-7],[6,-9],[-4,-6],[0,-10],[2,-9],[3,-7],[5,-4],[5,-1],[33,4],[10,5],[8,12],[-4,12],[-1,4],[5,-3],[6,-6],[5,-7],[5,-8],[-9,-1],[-5,-7],[0,-10],[6,-10],[6,-8],[6,-10],[5,-12],[2,-13],[2,-5],[4,-3],[8,-2],[4,-2],[4,-5],[6,-12],[6,-2],[16,7],[7,2],[-6,11],[-6,2],[-13,-5],[2,6],[3,5],[3,3],[2,2],[4,1],[2,-2],[2,-2],[2,-1],[21,-7],[57,2],[5,-3],[0,-4],[-2,-3],[-1,-4],[0,-5],[1,-4],[2,-1],[9,1],[2,5],[-5,22],[1,5],[4,4],[6,18],[2,6],[5,4],[5,2],[3,4],[-1,11],[1,0],[3,-6],[3,-2],[4,2],[4,6],[5,-7],[3,-11],[0,-11],[-4,-8],[-2,-10],[3,-16],[6,-14],[6,-9],[4,9],[3,9],[4,6],[6,1],[5,-5],[4,-16],[5,-4],[45,0],[1,1],[2,2],[1,2],[2,0],[1,-2],[1,-5],[1,-1],[23,-7],[5,2],[3,6],[3,3],[15,-3],[4,0],[2,-3],[0,-12],[-2,-9],[-7,6],[-11,-8],[-8,-11],[-3,-1],[-1,-3],[5,-18],[1,-12],[-10,15],[-2,0],[0,-5],[3,-22],[1,-5],[7,-13],[1,-4],[1,-10],[2,-6],[2,-4],[5,-2],[0,-4],[-12,-3],[-3,-2],[-3,-7],[1,-4],[2,-5],[0,-8],[-9,7],[-9,0],[-8,-10],[-3,-17],[-2,0],[0,21],[0,4],[-3,1],[-2,-4],[-1,-7],[0,-11],[-2,-11],[0,-5],[1,-3],[2,-2],[2,-3],[1,-6],[-2,-6],[-11,-12],[-2,-9],[2,-9],[4,-1],[3,4],[0,10],[7,2],[15,-6],[7,4],[-4,-49],[2,-11],[-2,-7],[-2,-7],[-3,-3],[-2,4],[0,7],[2,6],[1,5],[-3,2],[-2,-3],[-4,-4],[-6,-3],[-5,-2],[-2,1],[-3,2],[-2,1],[-2,-1],[-1,-5],[0,-5],[1,-3],[2,-2],[2,-1],[2,-5],[2,-5],[0,-5],[-1,-4],[-3,-2],[-5,-2],[-2,0],[-1,1],[-1,2],[-1,1],[-1,-1],[-1,-3],[0,-3],[-1,-1],[-1,-3],[-3,-7],[-1,-3],[-10,-3],[-33,11],[-4,5],[-2,9],[1,11],[4,8],[19,0],[-4,5],[-11,7],[-10,14],[-4,3],[5,23],[0,12],[-4,5],[-4,-5],[-1,-12],[0,-14],[-1,-9],[-4,-1],[-5,4],[-5,0],[-2,-13],[-1,-8],[-5,-6],[-5,-3],[-4,-2],[1,11],[0,15],[0,13],[4,6],[1,1],[-1,3],[-3,2],[-3,2],[-7,-1],[-12,4],[-9,1],[-4,-5],[3,-10],[7,-18],[-10,-11],[-35,-17],[-3,-3],[-6,-8],[-1,-3],[0,-6],[-2,-6],[-2,-5],[-2,-2],[-6,-1],[-10,-8],[-6,-2],[0,3],[7,7],[2,1],[0,4],[-7,-1],[-6,-5],[-3,-10],[-1,-15],[3,-17],[0,-8],[-2,-4],[-4,1],[-2,4],[-2,6],[-1,5],[-3,-3],[-3,1],[-3,2],[-3,-2],[-4,-5],[-3,-1],[-6,4],[-2,8],[2,8],[5,4],[4,1],[3,1],[2,3],[3,5],[2,5],[7,4],[2,3],[1,8],[-5,1],[-7,-3],[-5,-4],[-2,-4],[-2,-5],[-3,-5],[-3,-2],[-3,2],[-1,3],[-1,4],[-2,3],[-7,0],[-2,-7],[2,-9],[2,-4],[1,-3],[-1,-7],[-4,-12],[-2,-2],[-4,-1],[-6,1],[-5,-4],[-4,-9],[1,-9],[6,-3],[-5,-3],[-4,0],[-10,3],[-5,0],[-44,-26],[-8,-10],[-11,-21],[-2,-3],[-5,0],[-6,10],[-3,-2],[0,-4],[1,-12],[-1,-4],[-2,-4],[-3,1],[-2,1],[-2,2],[-15,1],[-5,3],[3,9],[-1,5],[-3,2],[-5,0],[-4,3],[-7,10],[-4,3],[-8,-4],[-14,-16],[-6,0],[-1,-5],[0,-3],[1,-2],[2,-2],[-3,-12],[-1,-12],[2,-9],[8,0],[4,6],[5,19],[4,8],[7,4],[4,-4],[8,-21],[3,-3],[2,0],[2,-2],[1,-9],[1,-3],[3,1],[3,3],[2,5],[2,0],[0,-10],[-3,-7],[-3,-6],[-1,-7],[0,-6],[3,-17],[-4,-1],[-4,0],[-4,-3],[-3,-8],[2,-6],[0,-5],[-1,-5],[-2,-8],[-2,-5],[-3,-5],[-2,-2],[-4,5],[-2,22],[-5,6],[2,13],[-7,5],[-10,0],[-6,-3],[-1,-2],[-2,-7],[-1,-3],[-1,-1],[-4,-3],[-1,-2],[-8,-24],[1,-10],[6,-13],[3,-11],[-4,-5],[-4,2],[-7,6],[-2,1],[-4,-4],[-1,-5],[2,-6],[3,-6],[-2,-8],[2,-6],[3,-7],[1,-9],[3,-37],[2,-8],[3,-11],[-2,-7],[-19,-17],[-1,1],[-1,2],[-1,1],[-7,-8],[-8,4],[-3,-1],[-2,-9],[-3,-4],[-6,-2],[-11,0],[-3,-2],[-7,-10],[-4,-4],[-15,-8],[-4,-4],[-4,5],[-4,4],[-5,3],[-4,0],[0,4],[4,6],[1,7],[1,8],[2,9],[4,10],[7,33],[-4,13],[-2,5],[-5,2],[-3,24],[-1,5],[-6,-6],[-4,-18],[1,-18],[7,-7],[-4,-9],[-6,2],[-6,7],[-4,0],[-1,1],[0,2],[-1,1],[-1,0],[0,14],[-9,-2],[-11,-6],[-8,1],[-1,4],[-1,3],[0,2],[-4,0],[-1,-1],[-1,-5],[-1,-4],[2,-2],[4,-3],[1,-7],[-1,-8],[-5,-16],[0,-11],[0,-10],[3,-10],[5,-5],[5,-2],[5,-4],[4,-9],[1,-9],[0,-22],[1,-9],[3,-6],[3,1],[9,8],[0,-16],[4,1],[9,12],[1,2],[1,5],[1,3],[3,-5],[2,-5],[0,-4],[0,-4],[-1,-5],[-4,-6],[-12,-5],[-4,-7],[-12,-23],[-3,-8],[-1,11],[2,7],[3,7],[0,8],[-6,-4],[-1,-3],[-5,-12],[-1,-3],[-2,-2],[-8,0],[-3,-2],[-12,-23],[-4,-12],[-5,-49],[-5,-19],[-9,3],[-5,13],[-4,4],[-3,-3],[-5,-7],[-2,-5],[8,-15],[2,-3],[-2,-4],[-6,-11],[-2,-5],[0,-7],[1,-4],[1,-5],[0,-6],[-1,-6],[-2,-2],[-3,-2],[-3,-3],[-4,-4],[-5,6],[-3,11],[2,14],[-8,-6],[-11,-32],[-8,-11],[2,14],[0,6],[-2,5],[-3,2],[-4,-1],[-3,-3],[-1,-5],[-2,-4],[-3,-3],[-4,-2],[-4,-1],[-2,-3],[-2,-7],[-2,-14],[-8,-36],[-2,-11],[-1,-4],[-7,-16],[-1,-6],[-1,-15],[-1,-6],[-2,-6],[-8,-16],[-3,-8],[-1,-4],[-11,-6],[-9,0],[-2,0],[-2,-5],[0,-8],[0,-14],[-1,-3],[-4,-11],[-5,-28],[-4,-52],[-4,-12],[-6,-5],[-6,-2],[-9,-5],[-9,-5],[-6,-2],[-2,-1],[-2,-3],[-2,-6],[-1,-14],[-1,-5],[-2,-10],[0,-15],[1,-16],[2,-9],[-4,-45],[1,-27],[3,-15],[-4,-11],[2,-4],[-1,-6],[-1,-10],[1,-9],[3,-3],[2,4],[3,18],[2,6],[4,1],[14,-5],[5,1],[4,3],[3,5],[3,7],[3,-3],[5,-9],[3,-4],[4,-1],[8,-1],[4,-2],[5,-8],[3,-10],[0,-11],[-4,-8],[20,-40],[16,-20],[3,-8],[3,-4],[9,-7],[0,-3],[0,-3],[0,-2],[2,-2],[3,-1],[7,1],[6,-1],[6,-5],[6,-6],[13,-19],[8,-6],[10,-3],[12,-1],[10,-4],[12,-10],[11,-13],[15,-24],[11,-11],[34,-21],[5,-7],[2,-13],[1,-14],[2,-13],[7,-24],[2,-18],[3,-13],[2,-9],[0,-15],[6,-21],[2,-9],[1,-4],[2,-5],[2,-6],[3,-39],[7,-31],[1,-12],[0,-6],[-4,-5],[1,-5],[2,-6],[3,-3],[3,-5],[4,-13],[2,-14],[-1,-9],[4,-6],[6,-6],[4,-7],[2,-11],[0,-22],[2,-24],[-3,3],[-2,0],[-2,-2],[-1,-5],[12,-24],[3,-9],[7,-28],[3,-8],[15,-33],[2,-7],[5,-23],[1,-9],[1,-44],[2,-8],[3,-10],[5,-9],[3,-3],[4,-1],[4,-4],[4,-6],[-1,-8],[-1,-2],[-2,-1],[-1,-1],[-1,-4],[1,-3],[3,-5],[0,-3],[0,-9],[-1,-2],[-3,0],[16,-24],[6,-16],[-4,-17],[5,-2],[2,-8],[0,-22],[2,-14],[2,-3],[4,2],[5,2],[7,-4],[1,-7],[-2,-21],[0,-9],[6,-71],[-1,-18],[-7,-24],[-8,-10],[3,-21],[0,-18],[-3,4],[-2,4],[-1,5],[2,4],[-2,4],[-3,-9],[0,-7],[9,-16],[12,-7],[2,-17],[9,-15],[8,-6],[13,-16],[6,-6],[7,-8],[5,-5],[4,-9],[0,-14],[2,0],[4,6],[10,-7],[5,-5],[4,-5],[7,-4],[16,-14],[23,-20],[9,-17],[4,-20],[4,-49],[0,-8],[1,-3],[-1,-1],[-4,-3],[-7,-1],[-3,-2],[-1,-4],[1,-3],[9,-34],[7,-3],[2,-8],[0,-10],[3,-12],[2,-1],[2,2],[2,2],[1,2],[2,-2],[2,-5],[2,-1],[2,1],[10,-1],[6,-4],[11,-9],[17,-14],[8,-12],[10,-10],[2,-6],[11,-12],[9,-15],[7,-11],[0,-14],[7,-14],[7,-24],[0,-23],[8,-23],[5,-19],[3,-16],[-5,-12],[-12,-10],[-15,1],[-19,12],[-12,5],[-8,2],[-6,5],[-13,10],[-9,10],[-7,5],[-6,3],[-3,2],[-3,6],[-2,5],[-1,3],[-4,3],[-18,17],[-28,25],[-8,5],[-16,-15],[-12,-17],[-20,-24],[-8,3],[-6,7],[-7,4],[-9,0],[-8,-3],[-7,6],[-3,12],[0,13],[0,5],[1,5],[-1,5],[-4,2],[-2,2],[-2,11],[-2,5],[-16,38],[-10,19],[-19,8],[-30,24],[-19,0],[-12,3],[-9,0],[-18,-17],[-18,-16],[-17,-32],[-9,-14],[-12,-7],[-14,0],[-12,4],[-11,7],[-11,9],[-9,12],[-8,15],[-19,55],[-3,9],[-1,9],[1,11],[3,23],[0,12],[-6,-11],[-4,9],[-3,31],[-4,9],[-5,11],[-7,8],[-6,4],[-4,1],[-7,3],[-4,0],[-14,-4],[-4,5],[-5,10],[-5,8],[-8,-2],[10,-11],[3,-6],[5,-12],[2,-8],[-2,-4],[0,-5],[-6,-25],[-2,-9],[-4,-6],[-4,-3],[-4,-5],[6,-4],[5,3],[4,8],[3,7],[6,9],[3,-1],[3,-7],[5,-7],[6,-3],[7,0],[3,-4],[-7,-21],[0,-11],[2,-10],[4,-8],[19,-16],[4,-6],[11,-19],[8,-16],[7,-16],[5,-13],[7,-11],[9,-4],[26,-18],[13,-5],[14,3],[31,28],[22,8],[4,3],[6,4],[0,12],[0,11],[4,2],[13,-3],[24,-17],[19,5],[5,-1],[17,-11],[8,-37],[8,-25],[5,-27],[-5,-11],[-16,9],[-3,7],[-3,8],[-3,6],[1,-17],[3,-11],[4,-7],[24,-14],[17,-9],[15,-3],[9,-4],[9,-5],[15,-11],[21,-23],[19,-34],[9,-16],[21,-57],[6,-8],[6,-8],[15,-15],[9,-15],[27,-36],[24,-18],[10,-13],[16,-19],[14,-40],[28,-68],[20,-69],[8,-40],[-5,-24],[-15,-10],[-27,-3],[-21,-4],[-28,-5],[-25,-12],[-14,-11],[-10,-9],[-13,-9],[-16,-32],[-5,-7],[-19,-8],[-12,-8],[-5,-6],[-7,-12],[-6,-5],[-2,-5],[-2,-6],[-2,-6],[-1,-5],[-3,-4],[-5,-2],[-16,-4],[-7,-7],[-6,-7],[-6,-9],[-8,-22],[-5,-20],[-1,-12],[1,-8],[2,-5],[0,-5],[-3,-8],[-1,-2],[-6,-1],[-2,-1],[3,-8],[1,-2],[2,-2],[0,-4],[-4,-1],[-4,-3],[-10,-22],[-5,-15],[-6,-5],[-7,-2],[-5,7],[-4,13],[-3,19],[-5,10],[-8,10],[-8,5],[-14,3],[-38,-2],[-14,-8],[-4,-13],[-2,-8],[-3,-19],[-2,-19],[-3,-10],[-4,-3],[-6,4],[-8,9],[-8,5],[-8,0],[-5,-6],[-12,-33],[-14,-20],[9,1],[6,10],[8,11],[6,20],[7,5],[6,0],[5,-9],[5,-8],[5,-5],[5,0],[4,5],[3,9],[3,9],[4,15],[9,38],[7,3],[13,2],[27,-3],[9,-8],[1,-14],[8,-38],[4,-12],[7,-5],[2,-6],[-11,-21],[-8,-18],[-6,-13],[-3,-6],[0,-7],[6,-12],[8,-11],[5,-2],[6,-1],[9,5],[3,-1],[2,-2],[3,-6],[3,-4],[-3,14],[-5,4],[-14,-2],[-7,3],[-7,7],[-5,10],[5,9],[10,25],[14,25],[17,-8],[5,-16],[7,-7],[11,-2],[8,9],[9,4],[1,2],[10,9],[32,43],[5,11],[6,14],[10,7],[19,6],[16,-6],[18,-7],[15,-19],[21,-44],[13,-35],[9,-29],[10,-30],[6,-14],[4,-11],[6,-11],[8,-9],[7,-4],[-3,-10],[3,1],[5,6],[4,0],[9,-6],[5,-7],[9,-6],[7,-5],[7,-5],[4,-3],[6,-19],[4,0],[4,1],[5,1],[21,-2],[3,2],[5,6],[5,4],[7,-2],[2,-11],[-6,-8],[-13,-12],[-11,-9],[-13,-8],[-4,-7],[-9,-11],[-3,-11],[-6,-12],[-5,5],[-3,-5],[-2,-10],[-1,-17],[-8,-12],[-16,-21],[-16,-37],[-4,-10],[-5,-6],[-5,-3],[-6,0],[-3,-2],[-3,0],[-5,-5],[-4,-1],[-5,5],[-12,-25],[-3,2],[0,9],[-1,10],[-2,2],[-3,0],[-4,-3],[-3,-3],[-2,-5],[-2,-3],[-5,-1],[0,-3],[2,-3],[2,-7],[0,-7],[-4,-5],[-4,-8],[4,-17],[0,-14],[6,3],[3,17],[2,15],[7,5],[-2,-4],[-2,-12],[6,-2],[-1,-9],[-4,-9],[-4,-4],[-1,-2],[0,-3],[0,-3],[2,-7],[3,2],[4,3],[3,5],[3,6],[2,4],[3,9],[1,6],[2,8],[3,7],[3,2],[5,3],[12,7],[9,9],[0,6],[2,2],[5,6],[3,3],[4,0],[0,-2],[0,-4],[0,-4],[1,-2],[2,0],[2,3],[5,4],[1,-6],[-2,-13],[1,-7],[1,-6],[3,-4],[4,4],[6,8],[2,15],[3,8],[5,-3],[-1,7],[-2,4],[-3,2],[-4,4],[-4,-4],[-4,-1],[-5,1],[-2,1],[-4,-2],[1,11],[7,8],[6,15],[7,3],[4,5],[5,1],[4,6],[4,-2],[5,3],[5,7],[3,-3],[4,-14],[3,-3],[4,-2],[1,-6],[0,-14],[-2,-5],[-4,-3],[-2,-3],[2,-7],[-8,-5],[-3,-3],[1,-7],[2,-3],[4,-2],[3,-4],[-2,-7],[1,-4],[8,-18],[0,-6],[-2,-4],[-2,-6],[0,-8],[-3,7],[-3,4],[-1,-1],[-2,-4],[1,-6],[-2,-6],[-1,-5],[1,-5],[-1,-11],[0,-8],[3,-7],[0,1],[1,-5],[0,-4],[-2,-3],[-4,0],[1,-3],[1,-5],[-5,-4],[2,-9],[4,-8],[5,-4],[3,2],[4,9],[3,1],[0,-2],[3,-10],[2,-4],[-7,-1],[-4,-3],[-1,-8],[2,-12],[-4,4],[-1,-8],[0,-3],[1,-5],[-6,0],[-7,-5],[-15,-16],[-8,1],[-8,3],[1,20],[1,9],[1,16],[0,13],[2,16],[-1,8],[3,4],[3,2],[3,2],[3,0],[-3,9],[-4,-1],[-3,-5],[-2,-3],[-3,5],[0,9],[3,18],[-3,1],[-3,-1],[-3,-3],[-2,-5],[3,-13],[2,-25],[-1,-25],[-4,-14],[-4,-17],[-2,-3],[-4,-8],[-5,-5],[-9,1],[-5,4],[-3,12],[-1,9],[0,29],[2,8],[2,12],[-4,3],[-4,-3],[1,-10],[-2,-12],[3,-31],[-1,-14],[-4,11],[-2,13],[-5,38],[-2,4],[-2,4],[-3,-1],[-1,-5],[2,-6],[2,-5],[-3,-3],[-4,0],[-7,3],[0,-4],[3,-7],[-1,-12],[-4,-11],[-3,-6],[0,-4],[1,-8],[-2,-6],[-3,-2],[-2,6],[-1,7],[-3,-4],[-3,-9],[-1,-9],[-7,7],[-3,-1],[-3,-6],[9,-8],[-1,-1],[0,-1],[-1,-2],[6,0],[0,-4],[-4,-1],[-4,-3],[-3,-4],[-4,-8],[26,-1],[9,6],[26,-1],[1,-5],[0,-10],[-1,-10],[-2,-8],[-4,-4],[-4,2],[-4,4],[-4,2],[-6,-2],[-1,-6],[0,-18],[2,-1],[3,2],[1,4],[-4,5],[5,7],[17,-5],[7,6],[11,-14],[2,-6],[-4,-2],[-4,-6],[-2,-9],[1,-9],[2,-2],[1,0],[3,0],[1,-1],[0,-3],[0,-2],[0,-2],[3,-2],[4,-1],[3,-1],[-6,-8],[-2,-5],[-2,-8],[-15,11],[-7,6],[-5,12],[0,-15],[-4,-5],[-5,4],[-2,10],[-3,1],[-5,1],[-5,-4],[-2,-13],[4,5],[0,-7],[1,-4],[2,-3],[2,1],[3,-6],[4,-4],[5,-2],[4,-4],[2,3],[3,1],[3,-2],[2,-6],[2,0],[1,-2],[0,-4],[-2,-5],[0,-3],[0,-9],[2,0],[2,2],[2,1],[4,-5],[1,-3],[2,-5],[-4,-7],[-2,-3],[-3,-2],[0,-4],[7,0],[0,-4],[-3,-2],[-2,-2],[-2,-3],[-2,-5],[-1,-1],[-1,-2],[-1,-2],[-1,-3],[1,-5],[1,-4],[0,-4],[-5,-6],[-28,-15],[-42,7],[-5,3],[-4,5],[-4,6],[-2,5],[-1,3],[-1,2],[-3,3],[-3,1],[-6,1],[-3,2],[-1,4],[-2,12],[0,4],[-3,6],[-2,1],[-2,0],[-3,1],[-5,4],[-2,4],[-2,4],[0,4],[-1,3],[-3,2],[0,-4],[5,-16],[3,-3],[6,-2],[4,-3],[3,-8],[2,-9],[1,-6],[3,-5],[13,-8],[3,-9],[0,-13],[-3,-5],[-5,-3],[-3,-8],[19,11],[11,2],[4,-8],[9,8],[12,-4],[9,-14],[6,-5],[4,-19],[2,-15],[2,-17],[3,-12],[6,-15],[3,-12],[-9,-2],[-4,1],[-4,-2],[-3,-6],[3,0],[7,1],[11,-2],[6,-7],[-2,-7],[-4,-6],[-1,-7],[3,-7],[4,-6],[2,-14],[5,-11],[-1,-9],[1,-5],[0,-5],[2,2],[2,-1],[3,-5],[-4,-11],[-6,-21],[-4,-9],[-6,-8],[-2,2],[1,24],[-4,2],[-7,10],[-6,3],[-6,4],[-7,-2],[-5,-7],[-2,-1],[-2,-3],[-1,-3],[-1,-5],[-1,0],[-3,4],[-3,0],[-3,-4],[-1,-8],[2,-5],[3,-1],[2,-3],[-1,-8],[-2,-5],[-3,-2],[-3,-1],[-4,-3],[-2,-7],[-1,-6],[-1,-8],[-1,-8],[4,2],[1,2],[1,-6],[-1,-7],[-1,-6],[-2,-5],[-3,-5],[-2,0],[-1,0],[-3,1],[-1,3],[-5,13],[-3,1],[-3,3],[-3,16],[-4,10],[-10,8],[6,19],[-3,21],[-9,15],[2,7],[2,5],[3,-2],[4,0],[3,4],[3,6],[-10,-4],[-4,1],[-9,13],[-4,2],[-2,-5],[2,-10],[-7,-10],[-4,-22],[-11,-8],[-5,-1],[-1,12],[-2,0],[-7,-2],[-3,-2],[4,-11],[5,-4],[6,-1],[12,4],[2,-11],[-1,-18],[-2,-10],[-2,-11],[-3,-9],[-4,-11],[-9,-11],[-6,-13],[-6,-13],[-2,-11],[0,-20],[-3,-15],[-3,-12],[-4,-11],[-13,-3],[-6,6],[-5,4],[-7,-1],[-10,-5],[-5,3],[-6,5],[-5,7],[-4,8],[-4,5],[-7,3],[-13,2],[-11,-3],[-4,2],[-5,7],[-1,24],[-2,12],[-5,-2],[4,-7],[2,-6],[0,-26],[0,-7],[2,-5],[4,-1],[16,0],[4,-1],[9,-8],[9,-15],[3,-5],[24,-11],[3,-5],[2,-8],[2,-10],[0,-9],[2,-12],[-5,-14],[-7,-6],[-5,-8],[-3,-18],[-8,-19],[-8,-23],[-5,-11],[-5,-1],[-5,8],[-9,16],[-5,6],[0,-11],[3,-7],[7,-13],[1,-4],[1,-11],[-2,-5],[-1,-6],[1,-5],[1,0],[-2,-20],[-9,-10],[-5,-9],[-3,-7],[-3,-7],[3,-12],[2,-12],[1,-8],[4,-5],[6,-2],[2,-1],[5,-5],[1,-7],[-1,-9],[-4,-9],[-2,-3],[-2,0],[-1,-1],[-2,-12],[-1,-5],[1,-5],[3,-5],[-3,-9],[-1,-3],[-4,1],[-17,13],[-4,0],[0,-10],[-2,-12],[-3,-9],[-6,-3],[0,-4],[3,-1],[5,-2],[4,-4],[0,-3],[-1,-4],[0,-4],[0,-8],[0,-5],[-2,-3],[-1,-1],[-1,-2],[-1,-2],[-2,-3],[-1,-3],[1,-1],[1,-4],[1,-9],[-2,-6],[-2,-3],[-1,-5],[2,-8],[-5,-3],[-5,-6],[-3,-3],[-2,10],[-1,13],[-2,2],[-4,-3],[-4,2],[-1,-7],[0,-2],[0,-5],[3,-15],[-7,7],[-8,30],[-8,8],[-4,-1],[-4,-2],[-4,-1],[-3,4],[-1,9],[2,7],[3,5],[3,3],[-2,3],[-1,-3],[-2,5],[1,1],[1,2],[1,9],[-6,-6],[-1,-2],[-2,4],[-1,3],[-3,5],[0,-5],[0,-3],[1,-2],[1,-2],[-4,-3],[-3,2],[-2,4],[-4,1],[1,-5],[1,-3],[1,-2],[2,-3],[0,-4],[-5,-8],[-2,1],[-1,7],[-5,9],[-1,-6],[0,-6],[1,-5],[0,-4],[-1,-4],[-5,-10],[0,-6],[1,-4],[1,-3],[3,-1],[3,1],[1,4],[0,4],[1,3],[8,9],[5,4],[2,-3],[2,-8],[7,-7],[3,-7],[3,6],[4,6],[0,-4],[2,0],[0,2],[1,2],[1,4],[5,-10],[0,-9],[-5,-18],[6,4],[5,-4],[4,-9],[6,-7],[0,-4],[-5,0],[-6,2],[-3,-2],[10,-4],[0,-4],[-8,-4],[-2,4],[-2,-4],[4,-4],[0,-4],[-2,0],[0,-4],[6,0],[-5,-4],[-5,0],[-21,8],[-2,2],[-4,8],[-2,2],[-3,0],[1,-6],[2,-5],[1,-4],[2,-5],[4,-21],[-2,-3],[-4,8],[-3,-4],[-4,-9],[-4,-4],[0,-4],[7,-1],[4,-10],[-1,-12],[-5,-9],[-2,4],[-3,-3],[-7,-2],[-12,1],[10,-11],[4,-1],[4,1],[3,2],[3,0],[2,-7],[-1,-2],[-1,-4],[-2,-3],[2,-8],[-2,-2],[-1,-3],[-2,-2],[-2,-1],[-3,1],[-9,7],[-6,1],[-6,-1],[-3,-5],[2,-11],[-3,-3],[-2,-3],[-2,-1],[-3,-1],[-2,1],[-1,3],[-2,3],[-3,1],[-7,0],[7,-6],[-3,-8],[-6,-9],[0,-14],[3,-4],[4,-4],[4,-3],[4,-1],[2,-2],[3,-4],[4,-5],[5,-1],[-2,-7],[-4,-8],[-2,-8],[0,-9],[4,-4],[4,0],[4,-2],[2,-7],[-2,-6],[-3,-2],[-4,0],[-3,-3],[-1,-8],[0,-8],[2,-9],[3,-8],[4,4],[0,-4],[-10,-11],[-2,-3],[-3,-3],[-2,2],[1,5],[3,6],[-2,4],[-15,-18],[-3,-3],[-16,0],[-3,-3],[-2,-7],[-1,-10],[0,-10],[-15,-22],[-10,0],[-3,5],[-1,11],[1,7],[2,0],[1,-1],[2,2],[0,5],[-1,11],[1,5],[4,7],[6,4],[11,5],[4,4],[7,9],[4,3],[0,3],[-1,7],[-1,2],[3,4],[4,16],[3,8],[0,-1],[1,-1],[3,-1],[1,1],[0,2],[0,3],[0,2],[13,33],[1,7],[-4,2],[-14,-6],[-19,4],[-6,-3],[-1,-6],[4,-13],[-4,-16],[-6,-13],[-4,-14],[4,-16],[-6,-3],[-6,-1],[-1,21],[-1,1],[-6,15],[-3,-2],[-4,-11],[-3,-3],[0,10],[3,36],[2,6],[8,8],[-3,3],[-4,2],[-3,-2],[-3,-3],[1,16],[5,5],[6,4],[3,12],[-8,-2],[-6,-4],[-4,-8],[-3,-11],[-2,-9],[0,-6],[1,-6],[1,-9],[-1,-9],[-3,-4],[-4,0],[-3,3],[0,4],[0,8],[-2,14],[-3,13],[-6,5],[-2,-3],[-1,-7],[-1,-8],[-1,-6],[1,-8],[2,-5],[7,-15],[3,-3],[2,-4],[1,-7],[-2,-4],[-3,1],[-5,5],[-4,8],[-5,11],[-5,7],[-5,-2],[-2,10],[1,6],[-1,6],[-4,6],[-2,0],[-4,-1],[-2,-4],[1,-7],[-3,-6],[-3,-4],[-2,-6],[0,-7],[0,-7],[1,-6],[1,-4],[3,-3],[4,0],[3,0],[3,-5],[1,-7],[-1,-8],[-2,-14],[-8,11],[-3,1],[-4,-2],[-1,-4],[1,-12],[3,-12],[10,-15],[2,-12],[2,0],[4,10],[5,7],[5,5],[5,7],[4,-5],[3,-1],[9,1],[-3,0],[4,1],[2,-2],[0,-4],[-2,-6],[4,-3],[6,-2],[4,-4],[-1,-7],[0,-3],[1,-6],[-3,6],[-1,2],[-3,-8],[1,-9],[4,-8],[6,-3],[-1,-3],[-1,-2],[-1,-2],[-1,-1],[2,-3],[3,-5],[2,-9],[2,-7],[0,-5],[0,-5],[-2,-7],[-1,0],[-3,0],[-1,0],[-1,-2],[1,-8],[0,-2],[-6,-4],[-3,1],[-2,14],[-4,7],[-6,5],[-5,2],[-3,2],[-7,20],[-3,3],[-2,-2],[-1,-7],[-2,-2],[-3,-5],[-1,-2],[-4,4],[-2,0],[-5,-2],[-3,-3],[-1,-6],[2,-10],[6,-3],[6,2],[3,4],[1,3],[2,-3],[3,-4],[1,-5],[1,-43],[3,-9],[6,-2],[-1,-3],[0,-6],[-1,-3],[4,0],[11,3],[3,3],[1,19],[1,8],[5,-5],[2,6],[2,7],[0,7],[2,5],[1,3],[8,9],[3,-9],[3,-5],[1,-6],[-3,-9],[4,0],[7,-9],[4,-2],[4,1],[7,6],[5,1],[0,-5],[-18,-27],[-3,-3],[-6,8],[-8,1],[-7,-7],[-4,-12],[1,-1],[4,-3],[-3,-4],[-2,2],[-3,4],[-3,2],[-3,-1],[-6,-6],[-3,-1],[-7,0],[-6,-2],[-6,-4],[-5,-11],[5,-3],[4,-4],[-1,-7],[1,-6],[-4,-2],[-4,-3],[-4,-6],[-1,-7],[-2,-5],[-4,-3],[-2,-6],[2,-12],[-10,-13],[-7,-16],[-5,-19],[-7,-19],[-6,-21],[-4,-9],[-6,-1],[-1,3],[-3,10],[-2,4],[-3,2],[-6,3],[-3,2],[-8,12],[-4,4],[-14,3],[-5,4],[-8,16],[-4,8],[-4,2],[-12,4],[-2,3],[-9,12],[-4,4],[-3,2],[0,-4],[6,-10],[6,-12],[5,-7],[7,5],[4,-7],[1,-7],[3,-19],[2,-9],[6,-13],[1,-7],[1,-16],[3,-2],[11,-4],[9,-8],[5,-2],[9,1],[9,5],[8,8],[14,18],[2,4],[1,5],[0,12],[1,4],[4,5],[10,0],[3,3],[15,-16],[8,-5],[7,4],[6,-11],[1,-5],[1,-6],[-1,-7],[-7,-28],[-2,-6],[-4,-5],[-3,-3],[-5,-1],[-2,-4],[-5,-29],[-4,19],[-3,5],[-2,-8],[3,-5],[1,-13],[1,-12],[5,-6],[2,-3],[0,-8],[-1,-14],[1,-1],[2,-1],[1,-3],[-1,-4],[-6,-13],[0,-5],[-1,-17],[0,-4],[-1,-1],[-1,-2],[-1,-1],[-2,0],[-2,1],[-1,4],[-8,10],[-3,0],[-2,-9],[-4,-1],[-4,-1],[-3,-4],[-2,2],[-1,1],[-5,1],[2,-14],[1,-18],[2,-11],[5,7],[-1,-15],[0,-12],[4,-10],[6,-4],[2,3],[1,5],[2,3],[4,-5],[3,-2],[3,3],[2,5],[1,4],[-3,-22],[1,-8],[5,-2],[-1,-5],[-1,-3],[-2,-1],[-3,1],[4,-4],[3,-1],[2,0],[-3,-6],[-2,-1],[-2,-1],[0,-4],[7,3],[1,-1],[-1,-6],[0,-4],[4,0],[3,-3],[1,-5],[-1,-6],[-3,-7],[1,-1],[2,0],[3,-2],[3,-14],[0,-10],[-2,-9],[-5,-8],[5,-1],[2,-1],[3,-2],[-15,-7],[-6,-1],[1,5],[1,5],[2,3],[1,3],[-3,18],[-3,10],[2,4],[2,4],[0,4],[0,3],[-4,11],[0,3],[-2,-1],[-2,-2],[-2,-2],[-1,-3],[-1,2],[-1,1],[-2,1],[0,-7],[-1,-9],[1,-9],[1,-4],[4,-1],[1,-3],[-2,-10],[-2,-7],[-5,-1],[-6,-1],[-6,-1],[2,7],[2,10],[1,10],[1,8],[-1,2],[-1,2],[-2,2],[0,4],[1,4],[2,5],[1,6],[1,1],[-1,0],[-11,0],[-2,-5],[-1,-10],[-2,-6],[-3,5],[-1,7],[3,18],[1,9],[-2,3],[-21,6],[-2,4],[-1,8],[1,6],[7,24],[-4,-4],[-1,-1],[-1,-3],[-2,4],[1,9],[-4,6],[-6,1],[-5,-4],[5,-10],[-3,-6],[-9,-4],[-2,-8],[-1,-18],[-2,-9],[-6,-18],[-3,-4],[-4,-2],[-8,-4],[-4,-4],[-2,-5],[-10,-11],[-3,-2],[-4,-4],[2,-8],[13,-26],[3,-8],[1,-9],[1,-5],[3,2],[2,8],[1,9],[2,0],[6,-24],[-6,-7],[-3,-4],[-3,-6],[3,-8],[1,-7],[2,-2],[4,6],[2,6],[3,9],[2,10],[0,11],[3,-5],[3,-3],[3,1],[1,7],[3,-3],[1,-2],[2,-3],[-2,0],[1,-6],[6,-17],[2,-2],[3,-2],[3,-2],[2,-6],[-3,-9],[-5,-3],[-12,2],[-3,-6],[5,-25],[-2,-6],[-7,-2],[-4,9],[-4,1],[-4,-4],[-6,-2],[-4,-3],[-4,8],[-3,10],[-3,8],[-7,-4],[-4,-11],[1,-8],[2,-5],[2,-8],[1,-3],[2,-4],[1,-6],[3,3],[2,-2],[-1,-5],[-4,-4],[-5,1],[-4,4],[-2,1],[-3,-6],[2,-2],[1,-2],[0,-2],[1,-2],[-2,1],[-7,7],[2,12],[2,4],[-4,6],[-3,-3],[-3,-8],[0,-11],[-4,9],[1,11],[7,16],[3,11],[0,7],[-3,5],[-7,2],[-13,-3],[-5,2],[3,11],[6,5],[7,4],[0,11],[-12,3],[-18,-11],[-3,-4],[-3,0],[-6,-9],[-3,-9],[6,-4],[7,-2],[1,-5],[-1,-8],[1,-10],[2,5],[3,4],[4,2],[4,-2],[4,-7],[-1,-6],[-5,-12],[-1,-9],[0,-11],[-1,-3],[-1,-3],[-2,-2],[-4,-2],[-5,1],[-5,2],[-5,-4],[-3,-1],[-2,-7],[0,-7],[3,-10],[5,-10],[5,-4],[11,-7],[-2,-4],[3,-5],[4,-2],[4,1],[3,4],[3,17],[2,8],[2,-2],[0,-6],[-1,-10],[-2,-9],[-2,-4],[-1,-4],[1,-9],[3,-16],[4,3],[2,2],[-3,-8],[-4,-6],[-5,-2],[-2,6],[-1,6],[-5,1],[-10,-2],[-3,-9],[3,-18],[6,-12],[10,7],[1,-3],[0,-1],[0,-1],[-1,-3],[1,-1],[1,0],[0,-3],[-7,-5],[-7,0],[-8,3],[-5,8],[-3,1],[-8,-6],[-4,-1],[-3,2],[-3,4],[-3,2],[-4,-4],[1,-10],[-5,-6],[-8,-4],[-5,-5],[-3,2],[-2,3],[0,5],[1,7],[2,3],[4,4],[2,1],[0,9],[-3,10],[-4,8],[-3,6],[1,-20],[-1,-5],[-2,-2],[-1,5],[0,7],[1,6],[-1,3],[-2,4],[-3,9],[-1,-7],[-5,-10],[-1,-5],[2,-4],[4,-6],[3,-7],[-1,-7],[-5,-5],[-8,1],[-8,4],[-6,6],[11,-17],[2,-8],[0,-8],[0,-7],[0,-7],[4,-17],[1,-3],[1,4],[1,2],[2,0],[2,0],[2,0],[6,6],[3,6],[1,5],[2,-4],[2,-3],[0,-5],[0,-7],[1,-6],[2,1],[4,3],[5,-4],[1,-4],[0,-6],[-4,-16],[-1,-2],[-4,-3],[-3,-6],[-6,-18],[-4,-5],[-2,2],[-3,7],[-3,6],[-4,-8],[-1,-9],[-1,-10],[0,-11],[2,-7],[4,0],[2,-3],[0,-13],[-4,-13],[-8,-13],[-8,-10],[-7,-4],[-1,-1],[-1,-2],[-1,1],[-1,6],[0,5],[0,5],[1,4],[2,2],[5,3],[-2,5],[-20,23],[-4,2],[-3,2],[-8,8],[-5,2],[1,8],[1,8],[0,18],[-1,6],[-3,-4],[-3,-7],[-3,-5],[6,-28],[-5,-11],[-7,-10],[-7,-4],[-8,4],[-2,-2],[-3,1],[-6,6],[-1,-8],[-2,-6],[-3,-2],[-4,3],[-2,-19],[-6,-2],[-7,9],[-4,12],[0,13],[3,2],[4,-2],[3,4],[0,6],[-3,4],[-5,2],[-4,0],[3,10],[1,9],[-2,9],[-5,12],[-1,-18],[-2,-2],[-2,0],[-1,-1],[-1,-14],[-2,-8],[-2,-7],[-3,-6],[0,-8],[-2,0],[-3,8],[-14,12],[-2,-12],[2,-13],[-2,-9],[-4,-4],[-5,5],[2,11],[-5,-6],[-5,-11],[1,-6],[12,-3],[6,-5],[4,-8],[-4,-10],[-2,-4],[-3,-2],[-3,0],[-1,-2],[-1,-3],[-2,-5],[2,-3],[4,-7],[0,-5],[-7,1],[-24,18],[-12,7],[-11,-6],[5,-3],[6,-1],[5,-3],[4,-9],[-23,11],[-7,-2],[0,-4],[23,-38],[9,-7],[23,6],[8,6],[3,4],[4,-3],[1,-5],[0,-5],[-2,-15],[-1,-2],[-2,-2],[-1,-4],[-3,-15],[3,-2],[3,5],[2,5],[3,4],[5,1],[5,-4],[2,-13],[1,-3],[4,-6],[1,-3],[0,-12],[1,-5],[1,-5],[-5,-1],[-7,-7],[-3,4],[-4,-6],[-5,-15],[-4,-8],[-3,-2],[-5,-3],[-2,-3],[-1,-3],[-1,-11],[-1,-4],[-3,-2],[-1,9],[-2,17],[-4,6],[-3,-3],[-3,-7],[-4,-6],[7,-5],[2,-9],[-2,-13],[-8,-25],[-2,-7],[-1,-8],[1,-7],[1,-6],[0,-6],[-2,-8],[-8,5],[-7,-7],[-11,-26],[-7,-13],[-2,-6],[-1,-11],[-1,-8],[-3,-5],[-3,0],[-2,7],[2,19],[15,30],[2,12],[-3,3],[-7,-7],[-2,6],[4,3],[2,4],[-1,5],[-1,3],[-2,11],[-2,0],[-1,-19],[-8,-2],[-9,7],[-7,10],[2,-9],[2,-5],[3,-2],[5,0],[-6,-23],[0,-11],[2,-15],[-6,-13],[-7,-13],[-4,-21],[-2,-20],[0,-16],[4,-11],[-6,-12],[-2,-7],[-5,-15],[-1,11],[-1,13],[4,13],[0,20],[-1,11],[-1,11],[-3,11],[-3,9],[-4,5],[-6,4],[-17,1],[-5,3],[-7,11],[-4,1],[-3,-8],[1,-11],[5,-2],[6,2],[5,-1],[9,-23],[-3,-24],[-7,-27],[-8,-7],[-15,12],[-3,-2],[-3,-4],[-1,-5],[-3,-5],[-7,-4],[-4,8],[-4,8],[-4,-4],[4,-12],[-1,-9],[-4,-15],[1,-20],[-2,-5],[-2,-14],[5,-12],[-6,-12],[-5,-6],[-1,11],[0,10],[2,10],[-2,8],[-2,13],[-1,-5],[-5,-12],[3,-7],[0,-7],[0,-7],[-9,-5],[-3,-2],[-7,-6],[-6,-20],[-8,-11],[-4,-2],[-2,8],[1,6],[0,8],[-2,10],[1,10],[0,10],[-3,7],[-3,2],[-3,1],[-3,3],[-3,-1],[-2,-7],[-2,-2],[-7,-2],[-6,-15],[-4,-3],[-6,9],[-3,7],[7,13],[-4,3],[-3,-1],[-2,-5],[-1,-8],[-1,-4],[-7,-9],[-1,-7],[0,-5],[2,-3],[1,-4],[1,-8],[-1,-8],[-2,-7],[-6,-14],[-2,-8],[2,-8],[5,-14],[-2,-14],[-26,-59],[-5,0],[-2,-1],[-4,2],[-6,2],[-5,3],[-4,-2],[-6,-1],[-10,8],[-15,13],[-3,7],[-1,7],[-3,4],[-3,1],[-2,-3],[-1,-4],[1,-20],[3,-9],[5,-12],[6,-11],[4,-4],[5,2],[10,-1],[5,11],[8,1],[5,-11],[5,-2],[1,8],[5,-2],[5,-17],[1,-15],[2,-19],[3,-3],[2,3],[3,-3],[-6,-14],[-8,13],[-6,14],[-8,11],[-10,3],[3,-6],[4,-3],[4,-4],[2,-9],[-3,-3],[-4,-5],[-5,-9],[-3,-13],[-4,-18],[-3,1],[-2,6],[-4,2],[0,7],[1,8],[0,11],[-2,10],[-6,4],[-5,1],[-15,-7],[-2,-1],[0,-10],[5,-10],[4,6],[3,4],[3,4],[3,0],[8,-3],[0,-5],[-1,-8],[-8,-11],[-7,-20],[-3,-21],[5,-13],[-1,-12],[2,-18],[2,-10],[-4,-8],[-8,-4],[-1,-19],[-6,-16],[-10,4],[-9,-5],[-13,-5],[-8,5],[-4,8],[-11,7],[-2,9],[-8,-3],[-7,4],[-6,1],[-4,-5],[10,-8],[4,-1],[5,5],[4,-5],[-10,-16],[-7,-7],[-2,-7],[-4,-7],[-8,-19],[-7,-10],[-5,-5],[-4,-3],[-5,-4],[-3,14],[2,11],[9,15],[-10,7],[-13,16],[0,-6],[8,-15],[5,-5],[-3,-13],[-7,-7],[-1,-2],[-3,-1],[-3,-3],[-4,-4],[-5,-1],[-8,-12],[-2,-7],[-5,2],[-2,-1],[-8,-10],[-6,3],[-8,-9],[-3,-6],[-5,-13],[-4,-1],[-4,5],[0,9],[-2,11],[0,6],[1,1],[2,-3],[0,-5],[2,-5],[2,-1],[0,6],[-1,8],[0,5],[-2,4],[-2,3],[-2,1],[-1,2],[-3,4],[-3,6],[-8,6],[-11,-1],[2,11],[-5,5],[-1,6],[3,7],[4,5],[2,-2],[2,0],[2,11],[1,5],[-1,2],[-10,-3],[-3,-3],[-4,-12],[-4,-6],[-4,-3],[-15,-5],[-2,-2],[-1,-3],[-2,-11],[-2,-3],[-5,3],[-2,5],[1,7],[3,8],[0,5],[-4,1],[-8,0],[-3,3],[-7,14],[-5,3],[-2,-1],[-2,-6],[-2,-1],[-2,0],[-5,4],[4,-10],[2,-4],[3,-2],[3,1],[2,6],[3,1],[5,-6],[3,-12],[0,-12],[-7,-2],[0,-5],[3,-1],[7,1],[3,-1],[4,-5],[3,-1],[5,0],[2,1],[3,3],[3,3],[1,5],[2,3],[4,1],[-6,-10],[-10,-23],[-5,-11],[-3,-13],[-1,-15],[9,-17],[3,14],[0,6],[5,-1],[2,-5],[-3,-8],[-5,-11],[0,-12],[3,-10],[-10,0],[-4,5],[-9,7],[-7,8],[-8,-1],[-4,-6],[-8,0],[-6,2],[-3,6],[-4,8],[-2,10],[3,8],[2,1],[9,-1],[2,1],[3,5],[4,3],[0,5],[-3,10],[-7,-3],[-3,-6],[-3,-5],[-10,14],[-11,2],[-11,-2],[-5,0],[0,10],[7,9],[13,11],[5,7],[1,5],[-3,3],[-1,3],[0,8],[2,13],[-4,-1],[-3,-4],[-6,-13],[-4,-16],[-3,-7],[-4,-3],[-4,3],[-6,-2],[-6,-6],[0,-9],[2,-13],[-6,5],[-3,10],[-4,1],[-6,-6],[-3,-1],[-10,-2],[-4,-9],[-2,-3],[-1,-9],[-1,-4],[-4,-6],[-1,-4],[1,-6],[2,-6],[0,-5],[-3,-1],[-3,-2],[-3,-1],[-1,-3],[-2,-4],[-2,-1],[-2,3],[-4,2],[-1,4],[1,7],[-2,8],[-1,8],[-2,7],[-4,4],[-2,-10],[-4,3],[-4,9],[-4,2],[-4,-3],[3,-5],[3,-4],[1,-7],[-2,-4],[0,-4],[3,-5],[4,0],[2,6],[4,-4],[3,-4],[3,-8],[2,-7],[3,-5],[-4,-7],[-3,-4],[-4,-11],[-7,-24],[1,-12],[4,-10],[-6,-8],[-4,2],[-1,5],[3,8],[-1,10],[-6,7],[-9,0],[-7,-6],[-9,3],[-6,-4],[-3,11],[0,11],[0,12],[-1,13],[3,5],[1,9],[-4,10],[1,13],[3,10],[7,8],[5,4],[2,2],[3,1],[1,3],[1,7],[-1,5],[-3,3],[-2,2],[-2,2],[-2,3],[-3,0],[-1,-4],[-2,-11],[-2,-6],[-6,-3],[-5,9],[-6,1],[-3,-7],[-6,-4],[-5,-4],[-2,-7],[-6,-3],[-4,-6],[-6,-4],[-5,-1],[1,-8],[1,-10],[-5,-4],[-3,0],[-2,3],[-3,3],[0,-11],[-2,-6],[-3,-8],[-1,-6],[2,-4],[7,-1],[-3,1],[7,-1],[4,2],[3,4],[3,0],[2,-6],[-4,-5],[-4,-16],[-4,-4],[-5,-2],[-4,-7],[-4,-8],[-2,-7],[2,-6],[2,-1],[3,2],[3,1],[0,1],[1,3],[1,3],[2,2],[1,-2],[2,-6],[1,-1],[4,-2],[6,-6],[5,-7],[1,-9],[-2,-6],[-6,-5],[-5,-7],[-8,-4],[-3,-5],[-4,-10],[-4,0],[-2,7],[-1,1],[-1,2],[-1,3],[0,6],[-2,3],[0,1],[1,6],[-1,5],[2,5],[1,2],[0,8],[-2,3],[0,4],[-2,3],[-3,6],[-2,5],[-2,1],[-2,-2],[-1,5],[0,2],[1,2],[-2,4],[-2,7],[-3,2],[-2,4],[-3,1],[-5,-2],[-5,-3],[-6,-5],[-3,5],[-1,-4],[-2,2],[-3,-5],[0,-5],[-1,-1],[-7,3],[-2,-3],[-6,-8],[-3,-6],[-2,-2]],[[81730,63828],[-3,-1],[-6,1],[-4,0],[-3,4],[-3,-2],[-2,-5],[-2,-8],[-3,1],[-2,-1],[-4,-6],[0,1],[-2,3],[-5,0],[-2,-3]],[[81689,63812],[-1,-1],[0,-2],[-3,-2],[-3,-2],[-1,-6],[-3,0],[-1,2],[-1,0],[0,2],[-5,5],[-5,5],[-4,0],[0,1],[-4,0],[-2,3],[-1,-6],[-3,-2],[0,-8],[0,-6],[-1,-6],[-3,-1],[-3,-1],[-3,1],[0,-1],[-1,-1],[0,-5],[-6,-15],[-2,13],[-2,3],[-2,9],[0,10],[4,2],[3,4],[-4,9],[-10,15],[-2,6],[-3,9],[-3,10],[-4,16],[-1,18],[-6,7],[-3,37],[-1,11],[-4,4],[-9,1],[-4,-1],[-1,-2],[-1,-3],[-2,-3],[-3,0],[-5,7],[0,10],[2,13],[-2,13],[-3,8],[-3,12],[-4,22],[-2,-9],[0,-8],[0,-8],[2,-7],[-4,6],[-1,11],[1,13],[2,10],[-2,-4],[-2,-5],[0,-5],[-1,5],[5,26],[2,14],[0,13],[2,12],[3,21],[-2,0],[-4,-16],[-1,-8],[-1,-18],[-2,-19],[-1,-8],[-1,7],[0,9],[1,9],[2,8],[-1,8],[1,8],[4,20],[-5,-15],[-4,-33],[-3,-9],[2,11],[0,13],[0,25],[-5,-14],[-3,-6],[-3,0],[-3,5],[-1,9],[0,16],[2,15],[6,12],[7,9],[15,6],[15,14],[8,3],[3,-2],[4,-5],[4,-2],[7,6],[5,-2],[8,-7],[-5,7],[-4,3],[-11,2],[-4,3],[-7,8],[-5,1],[-8,-4],[-13,-20],[-9,-4],[-2,-3],[-10,-10],[-2,-1],[-2,-7],[-3,-5],[-5,-3],[-4,1],[-13,16],[-8,4],[-5,-8],[6,-11],[8,-1],[9,-7],[6,-18],[0,-18],[-3,-22],[-3,-10],[1,-4],[0,-3],[-3,-4],[-2,1],[-6,5],[-4,2],[-26,-20],[-8,-2],[-27,10],[0,-4],[6,-3],[7,-1],[1,-2],[6,-8],[2,-2],[6,2],[5,4],[5,1],[5,-5],[16,-38],[4,-7],[15,-18],[-8,-7],[-3,-4],[-4,-10],[-4,6],[-13,11],[5,-12],[16,-13],[4,-5],[2,-10],[11,-17],[11,-19],[3,-15],[10,-23],[-2,-31],[-9,-25],[-4,-25],[1,-25],[2,-9],[7,-6],[8,0],[-3,-12],[-1,-5],[0,-10],[-1,-5],[-3,-4],[-3,-6],[1,-9],[0,-11],[2,-2],[2,-6],[-1,-9],[-7,-2],[-2,-9],[-4,2],[-5,-5],[2,-6],[0,-1]],[[81535,63618],[0,-1],[-2,-5],[-7,-12],[-4,-10],[-6,2],[-10,17],[-2,13],[-2,10],[-13,25],[0,4],[-1,11],[-1,5],[-1,4],[-14,21],[-7,17],[-6,19],[-4,31],[-2,13],[-16,50],[-3,7],[-2,-41],[1,-11],[1,-5],[7,-10],[10,-22],[21,-68],[4,-12],[3,-13],[7,-14],[3,-8],[11,-30],[-11,-5],[-3,0],[-8,7],[-3,1],[-3,-1],[-1,-4],[-1,-5],[-3,-9],[-1,-4],[-1,-3],[-1,-2],[-3,0],[-3,-13],[-1,-7],[2,-13],[0,-6],[-1,-7],[-1,-3],[-5,-7],[-4,1],[-6,1],[-4,-3],[-6,-10],[-5,7],[-6,17],[-2,20],[1,9],[3,10],[-2,8],[2,10],[-2,6],[-1,9],[-1,10],[0,9],[-7,-7],[-2,-35],[-6,-16],[-9,13],[-1,-10],[0,-15],[-1,-11],[0,-14],[0,-14],[0,-8],[1,-11],[0,-11],[-1,-4],[1,-3],[2,-7],[-1,-7],[-2,-4],[-5,-2],[-1,0],[-2,-1],[-1,-5],[0,-5],[-1,-8],[-1,-3],[-2,-6],[-4,-9],[-8,-6],[-4,-6],[-9,11],[-3,11],[-3,23],[-2,10],[-3,7],[-4,3],[-3,-2],[-2,-6],[-2,-3],[-4,3],[-12,-12],[-1,-4],[-1,-17],[-2,-4],[-7,1],[-1,-1],[-1,-2],[-2,-7],[-1,-3],[-12,-12],[1,-16],[-4,-16],[-7,-12],[-8,-5],[-8,4],[-30,33],[-4,10],[-3,13],[-1,20],[3,10],[16,16],[3,12],[-2,0],[-4,-6],[-10,-6],[-8,-1],[-4,7],[-1,5],[-3,8],[0,5],[0,5],[1,7],[3,30],[2,7],[-6,-6],[-3,-14],[-2,-17],[-1,-16],[4,-24],[5,-18],[1,-4],[-1,-15],[0,-8],[2,-4],[1,-3],[1,-8],[1,-15],[-1,-6],[-3,-10],[-1,-17],[-2,-5],[-2,-3],[-3,-6],[-8,-5],[-13,-9],[-12,-1],[-5,13],[-3,4],[-5,4],[-4,6],[2,11],[3,9],[1,12],[-1,12],[-2,10],[-3,-12],[-3,-6],[-24,-10],[-11,-1],[-5,1],[-4,5],[-2,8],[2,9],[7,17],[1,13],[-2,0],[-4,-15],[-8,-15],[-6,-6],[-5,24],[-5,16],[-6,13],[-6,7],[-1,-15],[1,-19],[1,-18],[3,-13],[4,-9],[7,-8],[8,-6],[7,-1],[-2,-6],[-21,-27],[-3,-2],[0,-4],[0,-4],[-1,-2],[-2,-2],[-3,-7],[-2,-3],[-2,-1],[-8,1],[-1,4],[1,8],[4,5],[4,-5],[2,0],[0,6],[-2,5],[-2,2],[-4,3],[-3,-5],[-2,7],[0,12],[1,10],[-3,-8],[-4,-6],[-4,1],[-2,9],[-5,-4],[-3,0],[-9,8],[-1,-2],[-6,3],[-6,8],[5,-12],[18,-21],[3,-12],[2,-18],[-2,-15],[-7,-3],[4,-3],[3,-3],[3,-4],[1,-7],[-11,-1],[-5,1],[-4,4],[-7,-11],[-7,-27],[-4,-10],[-3,-5],[-2,-2],[-3,2],[-4,7],[-2,5],[-1,7],[-1,6],[-3,4],[0,-8],[0,-8],[1,-7],[3,-6],[-5,-2],[-6,-4],[-5,-2],[-3,8],[-2,0],[-1,-5],[-3,-4],[-5,-2],[-3,-1],[-2,3],[-1,7],[2,15],[-5,-2],[-3,7],[-3,23],[-3,-7],[-3,-9],[0,-4],[1,-7],[4,-8],[2,-6],[-14,5],[-7,0],[-3,-9],[3,3],[4,1],[8,-4],[-3,-4],[-9,-8],[-1,-3],[-4,-8],[-14,-22],[-7,-7],[-4,4],[4,4],[3,8],[6,20],[-6,4],[-6,7],[-7,4],[-5,-3],[-2,7],[-4,0],[-10,-7],[0,-4],[4,0],[-1,-3],[-1,-1],[2,-4],[4,4],[4,1],[4,-1],[3,-4],[-11,-8],[-7,-6],[-5,-6],[-2,3],[-4,2],[-9,-1],[0,5],[12,7],[0,4],[-1,2],[-1,2],[-2,-3],[-3,-3],[-2,-2],[-3,0],[-2,3],[-1,3],[1,3],[-2,3],[-11,11],[-2,6],[-1,-8],[-3,-4],[-7,-5],[2,-3],[2,-11],[3,-2],[-3,-14],[-3,-4],[-3,-2],[0,-4],[4,0],[4,3],[2,4],[1,7],[2,6],[4,3],[5,-1],[3,-6],[-7,-2],[-6,-7],[-8,-19],[-8,5],[-7,-7],[-6,-9],[-7,-5],[-1,-2],[-4,-5],[-2,-2],[0,1],[-5,3],[-6,1],[-6,6],[-5,1],[-6,-3],[-7,-9],[-10,-20],[-5,-11],[-3,-12],[-4,-15],[-2,-15],[-1,0],[1,32],[2,14],[4,7],[-4,-1],[-2,-3],[-2,-5],[-2,-7],[0,9],[-2,5],[-1,6],[2,8],[2,3],[7,4],[6,11],[9,2],[9,6],[3,19],[-2,0],[-9,-16],[-26,-22],[-5,-21],[0,-26],[1,-7],[6,-22],[-1,-14],[-6,0],[-11,10],[0,-3],[1,-4],[1,-3],[1,-2],[-30,-5],[-5,-3],[-4,-5],[-4,-7],[-2,0],[0,8],[3,12],[0,8],[-1,7],[-2,6],[0,5],[3,2],[0,4],[-1,2],[-1,1],[-1,2],[1,0],[1,1],[0,2],[1,0],[3,-2],[3,-1],[2,-3],[2,-6],[2,0],[0,5],[1,3],[1,4],[0,5],[-2,0],[-2,-4],[-2,1],[-2,1],[-4,2],[0,3],[12,13],[0,4],[-2,0],[-2,0],[-1,-2],[-1,-2],[0,12],[-4,-10],[-2,-11],[-3,-3],[-2,12],[0,7],[3,34],[-1,0],[-4,-12],[-5,5],[-9,23],[3,7],[1,3],[2,2],[0,4],[-9,-10],[4,-19],[6,-23],[-1,-21],[-1,1],[-3,3],[2,-8],[-4,2],[-6,8],[-5,2],[0,-4],[4,-3],[4,-7],[2,-8],[0,-7],[0,-3],[3,-5],[3,-5],[2,-7],[1,-6],[1,-2],[2,-5],[1,-3],[0,-5],[-1,-4],[-1,-3],[0,-2],[0,-9],[-1,-10],[-2,-9],[-2,-3],[-3,-2],[-8,-12],[-4,-10],[-5,-5],[-9,-7],[-3,-4],[-14,-33],[0,-3],[-3,4],[-1,8],[-1,11],[1,9],[-3,-7],[-1,-7],[-2,-15],[-2,-8],[-6,-20],[-4,4],[0,-4],[4,-5],[0,-9],[-1,-11],[-1,-12],[2,-10],[4,-18],[2,-8],[-3,6],[-1,2],[-2,0],[1,-5],[1,-3],[-1,-4],[-1,-4],[1,-1],[1,0],[0,-1],[0,-2],[2,0],[0,1],[0,1],[0,2],[2,-1],[1,-1],[1,0],[2,2],[0,-8],[6,3],[21,1],[3,6],[6,4],[4,0],[2,-10],[2,4],[1,-6],[2,-2],[1,2],[1,6],[5,-14],[5,-21],[1,-23],[-3,-20],[-4,-3],[-4,4],[-3,8],[-2,8],[-1,9],[0,25],[-1,10],[-3,-9],[-1,-3],[-2,-4],[3,-9],[0,-6],[-3,-5],[-4,-4],[2,-4],[-1,-1],[-1,0],[0,-3],[8,-8],[-2,-11],[-5,-14],[-3,-16],[2,2],[2,3],[1,3],[1,4],[2,0],[0,-8],[0,-7],[-1,-5],[-3,-4],[3,-3],[4,0],[4,3],[3,4],[0,-13],[2,8],[2,-1],[3,-4],[2,-6],[-1,-6],[1,-6],[3,-6],[5,-4],[5,-5],[2,-2],[2,0],[4,1],[2,-1],[4,-8],[5,-15],[6,-30],[-5,-26],[-4,-13],[-5,-5],[-2,-4],[-5,-21],[-14,-33],[-2,-3],[-7,3],[-4,0],[-2,-5],[-3,-11],[-6,-5],[-8,-4],[-3,-6],[-4,6],[-3,3],[-3,3],[-2,1],[-8,-1],[-4,-2],[-1,-4],[0,-4],[-1,-2],[-17,-3],[-5,3],[-4,10],[-2,2],[-3,1],[-2,1],[-2,4],[0,4],[-1,3],[-3,3],[-3,1],[-3,-1],[-1,-2],[-3,-8],[-2,-2],[-1,0],[-2,1],[-1,2],[1,1],[-8,-4],[-4,-5],[-2,-9],[-1,-3],[-2,-4],[-2,-4],[-2,1],[-1,5],[1,7],[1,6],[1,2],[1,12],[1,14],[-1,5],[-3,10],[0,6],[-9,8],[-3,6],[4,4],[-7,14],[0,2],[4,0],[3,2],[1,4],[1,6],[2,0],[3,-7],[9,-14],[3,-7],[5,-17],[2,-2],[1,12],[2,8],[3,10],[3,10],[-2,9],[-7,11],[-3,7],[-2,8],[-1,-4],[0,-3],[-1,-4],[0,-5],[-4,6],[-1,8],[-1,9],[-1,10],[-1,-21],[-1,-10],[-2,-6],[-1,8],[-1,8],[-2,8],[-2,5],[-4,3],[-9,2],[-4,3],[-2,3],[-2,3],[0,4],[0,6],[1,5],[2,1],[2,0],[1,2],[0,6],[1,14],[1,9],[-2,0],[-4,-25],[-2,0],[-1,21],[-4,16],[-8,9],[-8,-1],[2,9],[-1,9],[1,8],[4,6],[2,1],[2,-1],[1,-3],[3,-1],[3,1],[2,3],[4,8],[1,-2],[1,-3],[2,-3],[0,3],[2,4],[1,4],[2,1],[0,2],[0,5],[-2,2],[-7,-7],[-4,1],[-4,-2],[-2,-9],[-1,0],[-8,23],[-1,12],[5,10],[-3,6],[-1,9],[0,9],[4,4],[0,4],[-6,13],[0,4],[2,0],[0,3],[-2,5],[-2,3],[-2,-2],[-2,-6],[2,-28],[-3,5],[-4,11],[-2,5],[0,-6],[3,-15],[-8,17],[-6,27],[-1,27],[8,19],[-3,9],[0,12],[5,27],[1,-1],[2,-2],[1,-1],[-1,14],[-3,15],[-4,14],[-4,10],[2,9],[5,19],[3,5],[4,3],[2,-3],[3,-6],[4,-3],[-2,10],[3,7],[3,7],[2,7],[-1,33],[-1,5],[0,5],[2,7],[0,11],[-2,22],[3,-1],[2,-4],[1,-5],[0,-6],[3,2],[1,5],[0,5],[1,4],[3,1],[7,-1],[23,4],[0,4],[-6,13],[4,13],[6,14],[3,13],[-5,-3],[-2,7],[1,8],[4,4],[0,4],[-7,-2],[-9,-5],[-7,1],[-5,14],[-4,-8],[0,-4],[2,0],[0,-3],[-2,-6],[-1,-3],[-1,-4],[-2,0],[-3,8],[-1,15],[0,34],[-4,-5],[-4,3],[-1,7],[2,7],[0,4],[-7,-4],[0,-1],[0,-17],[3,-20],[4,-11],[0,-4],[-2,0],[0,4],[-2,0],[-5,-11],[-9,5],[-17,22],[3,5],[3,19],[2,9],[-1,4],[0,9],[-1,3],[1,2],[1,2],[0,4],[0,4],[-5,-5],[-6,-8],[-3,-9],[3,-10],[-2,-1],[-2,0],[-2,2],[-2,3],[0,4],[1,4],[0,7],[0,6],[-2,3],[-1,3],[4,17],[-6,-9],[-2,-2],[-2,5],[0,6],[-1,6],[-2,4],[-2,3],[1,12],[1,4],[-2,5],[2,8],[4,7],[3,5],[0,3],[-3,-1],[-2,1],[-2,3],[0,5],[-21,-36],[1,-2],[1,-2],[1,-2],[1,-2],[-1,0],[-2,0],[-1,0],[0,-4],[2,1],[4,1],[1,2],[1,-12],[-4,-4],[-6,0],[-6,4],[0,-4],[18,-13],[3,-6],[1,-4],[8,-22],[0,-4],[-2,-2],[-1,-2],[0,-19],[0,-6],[-1,-3],[-4,-8],[-1,-3],[-3,-7],[-12,-10],[-4,-5],[-1,5],[-1,5],[1,5],[1,5],[-2,-4],[-3,-6],[-2,-7],[-1,-5],[-1,-4],[-4,-2],[-23,1],[-2,3],[-4,13],[-1,-13],[-5,-9],[-6,-4],[-5,5],[-2,-3],[-1,-1],[0,-1],[-1,-3],[-2,0],[0,16],[0,16],[-3,-8],[-2,-14],[-1,-19],[-12,0],[-4,4],[-3,9],[-1,-7],[0,-5],[1,-5],[2,-4],[-5,-1],[-11,14],[-6,4],[-7,3],[-3,8],[1,9],[5,9],[6,3],[7,2],[7,4],[3,8],[-1,26],[-1,29],[-2,0],[-1,-7],[-3,0],[-2,4],[-2,7],[-2,0],[-2,-6],[-2,-1],[-3,3],[0,8],[-2,0],[-1,-3],[-3,-5],[1,7],[1,5],[4,8],[0,5],[-6,-5],[-9,-12],[-6,-4],[-6,-2],[-3,0],[-4,2],[-5,3],[-2,5],[-4,17],[-1,8],[-2,4],[-1,1],[-5,-2],[-1,1],[-4,7],[0,1],[0,5],[1,2],[2,2],[1,3],[-2,16],[-1,0],[2,4],[0,1],[1,1],[1,2],[3,3],[9,2],[1,5],[1,2],[-2,-1],[-4,-1],[-2,-2],[2,9],[-3,-2],[-2,-3],[-1,-3],[-2,-4],[-1,0],[-3,3],[0,4],[2,5],[2,16],[-1,0],[-3,-9],[-1,-3],[-2,6],[0,5],[2,5],[1,4],[-5,-2],[-11,4],[-6,-2],[2,-3],[9,-5],[-1,-3],[0,-2],[0,-3],[-1,-4],[5,1],[3,-9],[1,-14],[-3,-11],[-2,-3],[-1,-3],[-2,0],[-1,8],[0,7],[0,7],[-2,3],[-4,-2],[2,-4],[1,-2],[-1,-7],[-1,3],[-1,0],[-1,2],[1,-5],[0,-2],[-1,-1],[-1,0],[-1,-1],[5,0],[0,-4],[-2,0],[0,-4],[7,-7],[5,-9],[1,-10],[-5,-14],[6,1],[3,0],[2,-1],[-3,-11],[-4,1],[-5,6],[-6,4],[-2,-2],[-2,-3],[-1,-4],[-1,-4],[-3,-1],[-5,0],[-2,-3],[2,-8],[-3,6],[-1,10],[-1,9],[-4,3],[0,5],[6,2],[2,-1],[1,-6],[2,0],[0,25],[-3,-5],[0,-2],[-1,-5],[-2,0],[-5,10],[1,12],[3,12],[0,10],[-2,-2],[-2,2],[-3,-14],[-2,-6],[-3,-4],[-2,6],[-6,5],[-1,5],[2,0],[2,1],[5,4],[0,3],[-5,3],[-4,-1],[-1,1],[1,9],[1,7],[3,5],[2,7],[1,10],[-2,0],[-1,-3],[-1,-5],[-2,-4],[-1,11],[0,5],[-2,0],[0,-7],[0,-8],[-1,-7],[-1,-6],[-2,0],[-2,5],[0,3],[-2,0],[3,-12],[1,-7],[0,-6],[-10,-3],[0,8],[1,7],[3,13],[-8,-4],[-3,8],[1,11],[3,5],[5,5],[6,24],[4,8],[0,3],[-4,4],[-8,13],[0,-4],[0,-3],[-1,-2],[-1,-3],[-1,1],[-1,1],[-3,2],[1,-2],[1,-1],[2,-1],[-3,-3],[-3,1],[-2,5],[0,9],[1,3],[3,3],[2,4],[-1,10],[-1,0],[0,-2],[0,-4],[0,-2],[-2,0],[-1,2],[-1,6],[-1,-10],[-1,-7],[-2,-5],[-4,-6],[-1,1],[-4,3],[0,-4],[1,-2],[1,-2],[0,-2],[1,-3],[-4,-2],[-5,-5],[-2,-7],[4,-6],[-8,4],[-1,15],[5,34],[-2,-3],[-2,-4],[-1,-4],[-1,-5],[0,-18],[-2,-13],[2,-10],[4,-10],[4,-6],[-1,0],[-3,0],[0,-3],[1,-2],[0,-1],[1,-2],[3,4],[2,-4],[2,-6],[1,-6],[-1,-7],[-2,-5],[-1,-6],[0,-10],[-3,2],[-2,0],[-1,-1],[-2,-1],[3,-3],[3,-2],[3,-4],[3,-4],[0,-4],[-4,0],[0,-2],[0,-2],[1,0],[-1,0],[-4,0],[0,-4],[2,-1],[3,-2],[3,-1],[0,-4],[-2,-3],[1,-1],[1,-4],[2,17],[2,7],[3,4],[0,-5],[-2,-3],[-1,-2],[-1,-2],[0,-6],[1,-5],[-1,-5],[2,2],[1,2],[1,1],[0,3],[1,0],[1,-1],[0,-3],[1,3],[3,9],[2,0],[1,-12],[-2,-4],[-3,-3],[-2,-10],[3,4],[1,1],[-2,-9],[-3,-3],[-3,1],[-4,3],[0,-5],[2,-1],[1,-1],[1,-1],[2,-1],[0,-5],[-1,-4],[-2,-2],[-3,-1],[2,-6],[0,-2],[-8,-7],[-2,-1],[0,3],[0,7],[2,5],[5,-3],[0,4],[-4,8],[-4,-10],[-2,-3],[-2,-3],[2,-5],[0,-4],[-1,-2],[-3,-1],[0,-4],[1,-1],[3,1],[0,-4],[-14,-3],[-5,2],[-4,9],[1,12],[4,3],[4,-4],[-1,-7],[4,1],[2,6],[1,17],[-1,0],[-2,-3],[-1,-1],[-1,2],[-2,2],[0,4],[1,3],[2,3],[2,1],[2,2],[0,4],[2,4],[3,2],[3,2],[0,4],[-13,-5],[-4,1],[4,9],[1,4],[-1,7],[-1,-3],[-2,-5],[-1,-4],[0,3],[-1,0],[-1,1],[-1,-7],[-4,0],[-13,14],[0,6],[1,11],[-5,-10],[-3,-16],[0,-18],[4,-13],[-6,0],[2,-6],[0,-2],[-2,-2],[-1,-3],[-1,-5],[-1,-6],[4,0],[1,0],[0,-4],[-1,-2],[-5,-9],[-1,-3],[-1,-8],[-2,-3],[-2,-1],[-3,-3],[-9,-15],[-4,-4],[0,7],[2,10],[7,20],[2,11],[0,4],[0,4],[-1,4],[-2,6],[-4,8],[0,3],[3,8],[-6,-6],[-1,-3],[-1,2],[1,7],[-2,-1],[-1,-3],[-1,-1],[2,-3],[1,-4],[0,-5],[-1,-4],[0,-4],[2,0],[-10,-16],[-5,-2],[-6,6],[-2,-4],[1,-6],[-1,-2],[-2,3],[-2,5],[-2,-10],[-4,0],[-4,3],[-3,-1],[3,-10],[-2,-5],[-4,0],[-7,9],[-4,2],[-4,-1],[-3,-3],[10,-15],[3,-2],[-6,0],[-2,-8],[1,-8],[2,-4],[4,1],[3,3],[4,2],[6,-2],[0,-4],[-11,-3],[-7,-6],[-13,-23],[-2,0],[1,9],[2,8],[5,12],[0,3]],[[79997,63194],[-13,27],[-4,2],[-10,20],[-8,12],[-3,7],[-3,10],[-1,7],[-2,6],[-6,5],[-9,5],[-5,1],[-5,0],[-4,-4],[-11,-16],[-5,-4],[-16,-7],[-6,0],[-12,3],[-5,-1],[-1,-4],[-3,-9],[-2,-3],[-2,0],[-3,1],[-5,4],[-4,3],[-1,21],[-3,9],[-5,3],[-5,-4],[-7,-15],[-10,-12],[-4,8],[-1,2],[-7,43],[-9,18],[-8,-2],[-9,-6],[-11,6],[-21,37],[-8,10],[-12,5],[-6,4],[-4,8],[0,12],[3,10],[4,9],[2,10],[0,12],[-3,8],[-5,5],[-6,0],[-4,-4],[-5,-5],[-5,-2],[-6,7],[-3,9],[-3,8],[-3,6],[-7,4],[-11,-1],[-5,2],[-6,6],[-1,2],[-2,6],[-2,3],[-4,2],[-2,0],[-9,-21],[-4,-6],[-4,0],[-2,4],[-1,5],[0,6],[0,5],[5,28],[2,14],[-1,15],[0,3],[-3,5],[0,4],[0,5],[0,9],[0,4],[-1,7],[-2,6],[-2,7],[-1,8],[4,9],[2,5],[1,6],[-7,43],[-1,8],[-5,8],[-11,1],[-6,4],[-4,8],[-1,9],[-1,22],[0,3],[-2,15],[0,6],[1,6],[3,9],[1,5],[7,61],[2,12],[3,7],[5,2],[4,-8],[3,-10],[4,-7],[6,0],[4,7],[4,30],[3,9],[5,18],[3,11],[1,19],[2,10],[3,6],[10,11],[2,7],[-3,7],[-6,2],[-6,-2],[-4,1],[0,1],[-5,16],[-8,13],[-3,8],[-2,3],[-3,2],[-2,-2],[-3,-8],[-2,-2],[-6,1],[-3,8],[-2,9],[-3,9],[-4,5],[-14,7],[-4,3],[-4,2],[-3,-3],[-1,-13],[-4,-5],[-40,-21],[-5,-2],[-6,0],[-5,3],[-6,5],[-2,7],[-1,22],[-6,20],[-9,11],[-11,6],[-15,3],[-22,-3],[-2,-3],[-5,-18],[-3,-4],[-5,-3],[-8,-2],[-3,0],[-5,3],[-3,-1],[-1,-3],[-1,-5],[-2,-4],[-2,-2],[-5,8],[-16,34],[-3,12],[-3,6],[-4,3],[-3,2],[-3,3],[-5,11],[-3,4],[-7,-1],[-8,5],[-20,2],[-4,3],[-3,9],[-1,11],[0,3],[-1,22],[-1,12],[-2,4],[-1,3],[-13,16],[-2,7],[-6,23],[-3,13],[-2,3],[-3,4],[-2,-1],[-2,-2],[-3,1],[-4,3],[-4,6],[-5,8],[-3,8],[-2,11],[-1,10],[-2,7],[-6,1],[-3,-5],[-10,-17],[-3,-6],[-2,-11],[-1,-12],[-2,-9],[-4,-7],[-3,-1],[-2,1],[-2,2],[-2,1],[-1,1],[-2,3],[-1,1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-22,-13],[-4,-3],[-9,-12],[-9,-10],[-10,-18],[-3,-3],[-4,1],[-7,8],[-4,1],[-3,-5],[-1,-8],[0,-9],[-2,-9],[-7,-11],[-6,-2],[-4,-7],[8,-77],[0,-12],[-1,-6],[-14,-17],[-3,-7],[-10,-27],[-3,-7],[-4,-5],[-5,-4],[-6,0],[-9,5],[-6,2],[-1,-2],[-3,-6],[-1,-2],[-3,1],[-1,2],[-1,3],[-2,2],[-1,3],[0,3],[0,3],[-2,1],[-1,-2],[-5,-11],[-18,-30],[-5,-11],[-24,-31],[-2,-3],[-4,-1],[-5,4],[-5,7],[-16,14],[-3,8],[-2,12],[0,12],[1,13],[2,12],[-8,0],[-23,-17],[-8,-1],[-4,-2],[-4,-5],[-2,-5],[-3,-12],[-2,-5],[-6,-16],[-3,-16],[-2,-36],[-1,-9],[-4,-18],[-1,-9],[0,-9],[1,-9],[-1,-7],[-3,-7],[-4,-5],[-3,5],[-2,5],[-5,2],[-2,3],[-4,15],[-2,6],[-2,2],[-4,1],[-2,1],[-6,14],[-2,2],[-2,4],[-6,18],[-1,5],[-3,7],[-19,34],[-19,45],[-3,4],[-12,-14],[-4,-5],[-2,-7],[-1,-9],[-3,-9],[-6,-15],[0,-5],[1,-25],[0,-5],[-1,-6],[-9,-26],[-3,-3],[-5,1],[-3,5],[-7,16],[-11,33],[-1,8],[-1,11],[1,10],[-1,8],[-4,5],[-2,7],[-3,6],[-3,5],[-4,4],[-6,4],[-4,-1],[-11,-38],[-5,-27],[-2,-6],[-4,-7],[-17,-18],[-7,-11],[-4,-17],[1,-5],[4,-8],[0,-7],[-1,-4],[-14,-19],[-5,-5],[-4,-1],[-4,-6],[0,-8],[1,-9],[-1,-10],[-5,-6],[-5,0],[-6,5],[-9,13],[-10,5],[-5,5],[-2,6],[-10,37],[-1,11],[-3,10],[-3,9],[-6,5],[-11,5],[-6,5],[-16,26],[-6,5],[-11,4],[-5,4],[-2,3],[-4,9],[-1,2],[-3,-1],[-2,-4],[-1,-4],[-2,-3],[-7,0],[-2,8],[0,10],[-3,12],[-6,9],[-8,5],[-6,-2],[-5,-12],[-3,-21],[-2,-10],[-4,-8],[-3,-1],[-3,0],[-3,0],[-2,-5],[1,-7],[1,-4],[3,-3],[2,-4],[1,-5],[0,-1],[-2,-8],[-34,-71],[-3,-11],[-2,-20],[-1,-10],[-4,-9],[-4,1],[-5,5],[-6,2],[-5,-2],[-5,-6],[-2,-8]],[[78366,63734],[-4,0],[-2,5],[0,5],[-1,5],[-3,4],[-2,1],[-17,9],[-6,0],[-6,-1],[-6,-5],[-12,0],[-5,-4],[-2,-11],[-2,-12],[-2,-7],[-7,2],[-7,14],[-9,39],[-8,14],[-2,0],[-2,0],[-8,-3],[-7,-7],[-5,-10],[-4,-9],[-3,-13],[0,-12],[0,-12],[0,-12],[-1,0],[-5,-10],[0,-3],[-1,-9],[-4,-25],[-1,-5],[-4,-3],[-3,1],[-4,2],[-3,0],[-3,-3],[-3,-5],[-4,-10],[1,-10],[8,-21],[4,-10],[1,-16],[-1,-12],[-2,-10],[0,-13],[3,-12],[7,-25],[3,-12],[1,-24],[3,-8],[6,-8],[10,-5],[2,-5],[0,-5],[1,-5],[0,-5],[7,-17],[3,-15],[1,-4],[7,-12],[1,-6],[-6,-33],[-1,-11],[0,-9],[1,-3],[5,-8],[1,-5],[1,-6],[-1,-12],[1,-7],[4,-5],[5,-3],[4,-5],[1,-12],[-4,-10],[-6,-4],[-6,-2],[-4,-5],[0,-10],[4,-23],[-1,-11],[-5,-13],[-1,-59],[-2,-22],[-1,-10],[2,-10],[4,-7],[15,-10],[3,-5],[3,-5],[3,-6],[1,-8],[-1,-6],[0,-2],[-1,-3],[-1,-4],[-3,-3],[-2,-1],[-6,3],[-4,-7],[1,-6],[2,-9],[-1,-6],[0,-6],[-3,-4],[-5,-3],[-6,-2],[-4,0],[-4,7],[-5,18],[-4,7],[-6,0],[-11,-9],[-4,1],[-1,6],[1,5],[2,6],[0,6],[-1,6],[-1,2],[-2,0],[-9,7],[-6,2],[-7,0],[-31,-12],[-6,-4],[-13,-18],[-6,-6],[-5,-1],[-4,3],[-4,8],[-3,8],[-4,17],[-3,7],[3,21],[0,9],[-1,2],[-2,5],[-1,4],[5,12],[3,17],[0,4],[-1,0],[-1,0],[-5,7],[-8,9],[-3,3],[0,13],[5,48],[0,17],[-4,10],[-4,0]],[[78099,63233],[-1,10],[1,10],[2,9],[2,7],[-2,6],[1,9],[-2,12],[-4,11],[-3,5],[-3,6],[-1,29],[-1,9],[-10,4],[-4,-3],[-4,-4],[-3,-5],[-14,-20],[-5,-5],[-27,-16],[-12,-11],[-11,-19],[-11,-33],[-14,-32],[-12,-12],[0,-1],[-5,-9],[-6,-6],[-14,-8],[-7,-2],[-14,6],[-6,-3],[-5,-1],[-4,5],[-2,8],[-2,11],[-8,13],[-4,6],[-6,2],[-6,-1],[-4,-3],[-4,-7],[-3,-10],[0,-1],[-4,-7],[-4,-4],[-8,-7],[-4,-4],[-9,-14],[-3,-3],[-7,5],[-9,27],[-6,8],[-3,7],[-2,12],[-1,13],[0,10],[1,9],[1,10],[3,10],[3,8],[3,3],[3,1],[2,2],[1,6],[-1,3],[-2,4],[-5,7],[-10,7],[-24,1],[-10,11],[-3,9],[-3,33],[-5,21],[-1,10],[1,14],[10,43],[2,22],[-4,20],[-3,6],[-1,8],[0,8],[2,7],[-21,8],[-5,-2],[-2,-5],[0,-12],[-2,-4],[-4,-1],[-2,3],[-1,5],[-3,4],[-16,17],[-5,2],[-5,-5],[-3,-9],[-3,-5],[-5,6],[-2,4],[-2,10],[-2,5],[-3,3],[-26,13],[-9,-2],[-5,0],[-14,12],[-4,-1],[-16,-14],[-10,-2],[-22,4],[-11,6],[-13,12],[-6,12],[9,9],[-5,10],[2,12],[10,24],[1,9],[4,29],[2,7],[5,11],[1,8],[0,7],[-2,4],[-1,5],[2,7],[11,11],[17,36],[2,7],[2,7],[-1,6],[-2,10],[-1,6],[1,12],[2,20],[0,13],[-13,66],[0,15],[2,5],[3,4],[3,2],[4,2],[2,4],[5,23],[7,16],[3,10],[1,10],[-2,27],[1,7],[5,3],[15,-16],[8,0],[7,10],[-1,14],[-10,27],[-3,10],[1,9],[1,9],[-1,9],[-4,5],[-21,1],[-6,8],[-8,22],[-5,6],[-6,-1],[-3,-9],[-2,-9],[-3,-5],[-5,-3],[-2,-2],[-6,-10],[-3,-4],[-3,1],[-2,2],[-2,3],[0,4],[0,11],[-2,2],[-2,0],[-1,0],[-1,1],[-4,0],[-7,5],[-3,1],[-10,-3],[-5,0],[-5,5],[-5,10],[-2,11],[-1,9],[-5,1],[-5,-2],[-6,2],[-10,6],[-21,4],[0,19],[14,51],[-4,15],[-10,0],[-1,1],[-1,6],[3,3],[3,3],[2,3],[3,10],[0,12],[0,12],[-4,23],[-4,12],[-4,8],[-5,0],[-6,-4],[-2,4],[-6,31],[1,9],[4,6],[13,15],[2,4],[2,9],[-1,3],[-2,3],[-11,36],[-2,10],[-1,30],[-1,9],[-4,6],[-11,4],[-9,5],[-6,0],[-3,2],[-3,6],[0,3],[1,4],[1,4],[-2,44],[0,8],[2,14],[1,5],[-3,10],[-2,5],[2,5],[4,4],[6,3],[5,4],[13,23],[25,33],[5,19],[-2,17],[0,1],[-3,-4],[-10,-6],[-29,-4],[-9,-9],[-12,-4],[-7,-7],[-5,-3],[-3,-4],[-4,3],[-8,7],[-11,17],[-8,4],[-11,1],[-11,-1],[-4,-4],[-9,-10],[-5,-3],[-10,0],[-21,10],[-10,1],[-21,-10],[-60,-47],[-4,-5],[-11,-25],[-5,-8],[-4,-2],[-4,-1],[-6,-4],[-6,-7],[-14,-28],[-5,-5],[-6,-4],[-3,-2],[-2,-3],[-4,-10],[-1,11],[-1,6],[-2,5],[-10,14],[-11,10],[-5,11],[53,108],[4,13],[1,14],[-2,6],[-4,11],[0,7],[0,6],[2,4],[2,3],[2,5],[-2,21],[-20,15],[-2,15],[4,6],[6,2],[4,3],[0,13],[-2,6],[-5,7],[-2,7],[0,6],[-1,6],[-2,6],[-2,4],[-4,2],[-6,0],[-23,-7],[-2,5],[0,13],[7,81],[-1,74],[1,13],[18,25],[11,18],[6,7],[6,2],[11,-4],[7,0],[4,5],[2,12],[-3,9],[-10,16],[-5,18],[-1,20],[1,40],[-2,22],[1,5],[5,3],[5,7],[4,13],[7,27],[6,47],[6,14],[11,-10],[3,-10],[2,-8],[3,-5],[5,1],[6,6],[13,32],[4,6],[12,11],[3,7],[5,25],[3,13],[4,6],[6,1],[1,5],[-1,8],[1,23],[-1,5],[-1,6],[-2,15],[0,4],[2,4],[5,9],[3,8],[1,9],[0,29],[0,7],[3,1],[23,-16],[4,-4],[8,-16],[4,-1],[6,4],[6,6],[4,6],[3,9],[3,26],[2,8],[10,25],[1,5],[0,7],[1,7],[1,4],[3,3],[1,4],[4,21],[3,10],[3,6],[7,15],[3,4],[5,1],[3,-3],[7,-11],[8,-5],[2,-3],[3,-1],[4,4],[15,21],[2,6],[1,8],[1,8],[-1,7],[-1,4],[-4,2],[-1,2],[-3,12],[-9,26],[-2,6],[-4,2],[-3,-1],[-3,1],[-2,7],[1,14],[-1,10],[-6,21],[-2,11],[0,10],[1,9],[4,6],[11,5],[4,4],[2,-1],[0,-22],[2,-6],[3,0],[11,16],[1,5],[0,13],[2,3],[2,3],[1,6],[-1,9],[-6,29],[-3,5],[-6,-2],[-1,6],[0,10],[2,11],[2,13],[11,25],[3,10],[2,11],[1,11],[1,77],[2,20],[5,20],[2,11],[-1,13],[-1,6],[0,5],[0,5],[0,5],[-4,19],[0,12],[5,22],[0,12],[-2,11],[-7,19],[-1,12],[1,6],[4,9],[1,6],[0,6],[-7,52],[3,11],[3,10],[1,10],[-1,12],[-5,8],[-3,3],[-4,3],[-2,11],[-3,38],[1,20],[1,17],[7,40],[1,19],[-3,19],[-2,2],[-2,1],[-1,1],[-1,6],[-2,53],[1,24],[3,24],[-1,12],[-1,6],[-3,6],[-2,6],[-3,3],[-3,-1],[-3,-3],[-2,-4],[-4,-4],[-7,0],[-4,7],[-6,23],[-6,8],[-8,-7],[-5,8],[-14,14],[-4,2],[-2,-5],[-1,-12],[0,-21],[-1,-20],[-3,-18],[-5,-14],[-10,-6],[-10,8],[-5,20],[-6,46],[-4,19],[-10,28],[0,6],[2,14],[-1,3],[-1,3],[-2,6],[1,11],[0,8],[-1,6],[-9,12],[-5,10],[-2,11],[5,6],[6,5],[0,9],[-3,10],[-5,9],[-10,10],[-2,7],[3,13],[1,12],[2,53],[0,11],[-3,10],[-1,2],[-18,33],[-5,5],[-11,3],[-2,6],[3,17],[-1,10],[-3,7],[-10,11],[-13,33],[-11,9],[-17,-16],[-9,5],[-7,18],[-11,63],[-8,13],[-8,-7],[-8,-10],[-6,8],[-7,18],[-6,8],[-5,-6],[-4,-20],[-3,-10],[-4,-22],[-3,-9],[-1,-7],[-2,-4],[-4,-9],[-2,-6],[1,-5],[1,-5],[0,-6],[0,-22],[-1,-12],[-3,-7],[-6,0],[-5,2],[-4,-3],[-1,-12],[-3,-6],[-10,-11],[-2,-11]],[[75453,66909],[-2,42],[1,13],[2,15],[3,12],[1,11],[-4,14],[-4,6],[-6,6],[-6,3],[-12,3],[-11,8],[-10,0],[-4,2],[-3,1],[-5,4],[-21,21],[-9,15],[-5,21],[-6,-11],[-7,-1],[-7,2],[-7,-3],[-5,-7],[-12,-26],[-4,-11],[-7,-14],[-12,-5],[-12,2],[-9,9],[-4,8],[-14,22],[-16,7],[-18,2],[-9,4],[-8,4],[-12,15],[-4,2],[-5,-2],[-8,-8],[-7,-2],[-6,-2],[-18,5],[-5,0],[-5,-1],[3,31],[8,17],[10,2],[5,19],[8,6],[-2,20],[-11,8],[-12,2],[-14,19],[-11,0],[-8,10],[-9,0],[-7,-26],[-11,3],[-8,23],[0,21],[-10,14],[-7,-6],[-7,-14],[-6,-2],[-8,8],[-15,6],[-22,-14],[-6,-2],[-5,-6],[-10,5],[-10,-11],[-2,2],[-3,-3],[-2,-5],[-5,-12],[-2,-5],[-9,-11],[-5,-7],[-2,-9],[-5,-17],[-10,-9],[-33,-12],[-6,-3],[-5,-6],[-12,-31],[-6,-8],[-5,-4],[-5,-8],[-4,-10],[-7,-21],[-1,-4],[-13,-47],[-9,-24],[-10,-15],[-12,-9],[-9,-12],[-2,-22],[-5,-24],[-12,-38],[-8,-23],[-1,-7],[-1,2],[-3,2],[-1,0],[-1,1],[-3,1],[-8,-6],[-3,-4],[-4,-9],[-1,-9],[-5,-2],[-4,-9],[1,-6],[-4,-7],[-4,-4],[-1,-8],[1,-6],[1,-6],[1,-3],[-5,-8],[-2,-13],[-2,-14],[3,-24],[5,-23],[5,-14],[-7,-11],[-6,10],[-10,1],[-6,-9]],[[74477,66969],[-7,3],[-12,12],[-6,5],[-3,-1],[-8,-6],[-3,-1],[-4,1],[-6,6],[-2,2],[-22,2],[-6,5],[-3,-1],[-3,-9],[-4,-16],[-5,-14],[-7,-12],[-8,-7],[-8,-1],[-6,4],[-5,4],[-6,2],[-5,-2],[-8,-9],[-5,0],[-2,4],[-2,5],[-1,4],[-1,3],[-5,3],[-5,-1],[-11,-5],[-25,-13],[-5,0],[0,9],[4,9],[1,8],[-6,4],[-8,-5],[-6,-11],[-6,-7],[-16,8],[-15,-3],[-7,1],[-11,11],[-15,37],[-9,18],[-6,8],[-5,1],[-2,-2],[-3,-1],[-9,-3],[-7,1],[-6,6],[-4,9],[-3,15],[-7,11],[-20,-1],[-8,5],[-2,8],[1,18],[-2,7],[-3,7],[-6,6],[-5,4],[-5,1],[-3,-3],[-7,-11],[-4,-2],[-4,4],[-4,7],[-4,5],[-4,-2],[-3,-6],[-1,-9],[0,-10],[0,-8],[-2,-8],[-3,-6],[-1,-7],[0,-10],[0,-14],[-2,-11],[-4,-9],[-6,-6],[-10,-10],[-4,-1],[-5,5],[-10,14],[-2,3],[-3,-1],[-2,-2],[-2,-2],[-3,1],[-2,4],[-7,15],[-5,7],[-5,2],[-6,1],[-5,4],[-4,4],[-2,7],[-2,18],[-2,6],[-2,5],[-1,5],[2,10],[2,12],[0,15],[-3,11],[-6,2],[-24,-47],[1,-6],[3,-9],[1,-4],[-1,-3],[-1,-11],[0,-4],[0,-4],[0,-4],[3,-3],[2,-6],[0,-5],[0,-5],[0,-6],[1,-5],[2,-3],[1,-4],[1,-7],[-2,-2],[-9,-17],[-4,-3],[-2,-1],[-1,0],[-7,1],[-12,-2],[-5,3],[-3,15],[0,12],[1,12],[0,12],[-3,11],[-10,16],[-3,8],[-2,14],[0,7],[0,6],[-1,5],[-4,12],[-2,13],[-1,7],[-4,9],[-6,7],[-12,10],[-7,9],[-7,11],[-5,13],[-4,15],[-1,26],[-1,13],[-4,-1],[-1,-5],[0,-6],[0,-5],[-2,-3],[-6,-4],[-2,-4],[-8,-22],[-3,0],[-4,8],[-6,7],[-6,3],[-6,1],[-6,0],[-6,-2],[-9,8],[-4,3],[-4,-1],[-4,-4],[-7,-14],[-4,-4],[-5,1],[-3,5],[-2,5],[-4,3],[-3,-1],[-8,-7],[-4,-1],[-4,0],[-5,3],[-5,3],[-9,16],[-6,-2],[-5,-5],[-7,0],[-6,7],[-2,8],[0,8],[1,18],[0,11],[-2,33],[2,6],[7,8],[1,8],[1,11],[0,3],[2,5],[4,3],[2,3],[2,6],[1,4],[3,30],[-2,7],[-14,8],[-10,14],[-5,4],[-7,-3],[-2,-3],[-1,-5],[-3,-10],[-2,-5],[-2,-2],[-3,-2],[-8,-8],[-2,-4],[-3,-14],[-2,-3],[-3,-2],[-3,1],[-5,3],[-3,1],[-16,-2],[-3,1],[-3,2],[-5,8],[-8,15],[-5,6],[-13,1],[-3,5],[1,27],[-3,5],[-5,2],[-6,4],[-2,4],[-2,10],[-3,3],[-15,5],[-6,4],[-4,5],[-5,4],[-6,-1],[-7,4],[-4,12],[-4,27],[-2,5],[-6,10],[-5,14],[-3,5],[-3,3],[-19,7],[-14,16],[-3,8],[-5,16],[7,50],[-3,8],[-6,4],[-7,7],[-1,19],[-1,5],[-2,4],[-6,12],[-2,11],[3,10],[4,9],[2,10],[-2,8],[-4,1],[-4,-1],[-4,2],[-2,6],[-2,16],[-2,6],[-5,0],[-6,-4],[-5,-1],[-3,7],[-3,6],[-3,1],[-4,-1],[-3,-4],[-1,8],[-1,4],[-3,3],[-4,2],[-3,0],[-5,-2],[-9,-4],[-1,-3],[-3,-8],[-2,-2],[-6,-4],[-13,-11],[-6,-2],[-7,2],[-7,-1],[-7,-4],[-6,-10],[-2,-10],[-1,-11],[-2,-8],[-5,-3],[-4,0],[-11,4],[-3,4],[-3,4],[-7,2],[-4,3],[-2,4],[0,6],[-1,13],[-2,22],[-3,9],[-5,7],[-8,6],[-3,5],[-2,16],[-3,5],[-4,3],[-3,6],[-1,8],[0,7],[-1,7],[-8,13],[-1,7],[1,9],[-1,11],[-7,14],[-18,-7],[-5,13],[1,7],[1,4],[2,3],[1,5],[-1,9],[-2,8],[-6,12],[-3,2],[-4,3],[-2,3],[-1,2],[-1,8],[-1,3],[-4,6],[-3,2],[-3,0],[-7,-1],[-7,-3],[-2,-2],[-2,-6],[0,-8],[-2,-7],[-4,0],[-3,4],[-4,14],[-2,6],[-16,26],[-3,1],[-6,-2],[-3,1],[-2,3],[-4,9],[-3,3],[-5,-5],[-7,-9],[-6,-3],[-4,10],[-1,8],[-3,3],[-4,2],[-3,3],[-3,6],[-5,15],[-17,24],[-3,10],[1,7],[1,6],[0,5],[-3,4],[-3,0],[-5,-3],[-3,0],[-5,6],[-21,50],[-5,5],[-14,8],[-5,5],[-5,7],[-4,8],[-4,9],[-4,5],[-5,0],[-4,-1],[-4,1],[-3,4],[-3,9],[-2,4],[-7,3],[-5,0],[-6,2],[-12,14],[-6,-1],[-5,-4],[-5,2],[-3,6],[-2,12],[-2,13],[-1,8],[7,22],[1,12],[-4,7],[-7,5],[-5,7],[-3,10],[-1,15],[3,34],[-1,10],[-5,4],[-6,1],[-12,-1],[-2,-2],[-3,-3],[-3,-1],[-3,1],[-1,3],[-4,8],[-2,4],[-6,2],[-9,-2],[-12,10],[-6,-2],[-6,-4],[-6,-2],[-6,3],[-34,28],[-6,4],[-6,-2],[-2,-3],[-1,-5],[-2,-5],[-3,-4],[-6,-1],[-2,-3],[-1,-5],[-3,-22],[-3,-2],[-8,2],[-5,5],[-10,19],[-6,4],[-5,-3],[-1,-8],[1,-10],[-2,-8],[-3,-8],[0,-10],[0,-20],[0,-6],[2,-9],[0,-5],[-1,-6],[-3,-11],[-1,-18],[-2,-10],[-4,-8],[-4,-6],[-4,-1],[-4,1],[-5,-1],[-3,-4],[0,-4],[3,-9],[0,-4],[-1,-10],[-1,-4],[-1,-1],[-2,-4],[-5,-3],[-4,-5],[0,-17],[-2,-8],[-7,-2],[-13,11],[-6,0],[-8,-4],[-3,6],[0,1],[-3,26],[-2,9],[-7,19],[-3,20],[-3,11],[-4,10],[-3,5]],[[80835,62127],[2,-4],[5,-21],[-4,-4],[-3,4],[-4,1],[-5,-2],[-3,-3],[-14,-31],[-8,-19],[-3,-7],[-5,-3],[-4,4],[-4,7],[-2,9],[-1,14],[2,7],[4,3],[6,0],[-4,8],[-6,0],[-5,-5],[-4,-7],[3,-7],[3,-16],[2,-5],[-4,-14],[-1,-8],[-1,-13],[-1,-6],[-3,-8],[-4,-6],[-3,-2],[0,-4],[1,-6],[-2,-6],[-3,-5],[-4,-3],[-2,-1],[-5,1],[-2,0],[-1,-3],[-3,-11],[-1,-3],[-3,-4],[0,-10],[2,-11],[0,-7],[-3,-9],[-7,-4],[-1,-10],[-2,-19],[-3,-20],[-4,-18],[-5,-14],[-2,-12],[-1,1],[-2,3],[-6,-6],[-1,-1],[-10,0],[-2,1],[-1,4],[-2,4],[-3,2],[0,-4],[3,-6],[2,-6],[3,-6],[4,-2],[4,2],[1,4],[1,1],[3,-7],[0,-5],[0,-20],[2,9],[4,29],[1,0],[-3,-30],[-1,-20],[-1,-6],[-4,-9],[-5,-13],[-3,-15],[-3,-17],[0,-21],[0,-4],[1,-5],[0,-5],[-1,-5],[-2,-1],[-3,0],[-1,-2],[-1,-3],[-2,-1],[-2,-1],[-1,-1],[-1,-4],[0,-12],[-1,-4],[-1,-2],[-4,-5],[-2,-4],[0,-5],[1,-4],[2,-4],[0,-3],[2,1],[4,0],[4,-2],[4,-5],[2,6],[0,5],[0,16],[-2,14],[0,8],[3,4],[1,-8],[7,-49],[-4,-2],[-3,1],[-3,-2],[-1,-5],[-2,0],[-5,3],[-5,-12],[-7,-32],[1,-6],[-1,-7],[-3,-6],[-3,-5],[-4,7],[-13,-6],[-2,5],[3,5],[6,3],[12,2],[0,5],[-2,3],[-2,0],[-5,-8],[-14,-6],[-6,-10],[-2,0],[-8,3],[-12,-15],[-20,-37],[-10,-14],[-5,-10],[-4,-21],[-5,-1],[-10,6],[0,-4],[4,-6],[7,-4],[3,-7],[-1,-7],[-3,-23],[0,-10],[-2,0],[0,12],[-2,6],[-3,0],[-1,-8],[1,-9],[2,-7],[0,-5],[-3,-5],[-4,-1],[-9,1],[-7,4],[0,10],[2,0],[3,-1],[4,-1],[4,4],[1,5],[1,7],[0,7],[-1,5],[0,-3],[-3,-6],[-1,-3],[0,2],[-3,6],[0,-2],[0,-4],[0,-2],[-3,3],[-2,-2],[-1,-5],[-2,-4],[-2,-1],[-1,0],[-1,0],[-10,1],[-5,-1],[-4,-4],[-13,-15],[-3,2],[-1,3],[0,4],[-2,3],[-5,1],[-5,0],[-5,-2],[-4,-3],[1,-13],[-6,-42],[1,-18],[-4,0],[-1,4],[0,5],[-2,3],[-2,-2],[-8,-10],[0,-4],[5,1],[2,0],[5,-5],[1,0],[5,1],[1,-1],[1,-5],[-1,-4],[-2,-6],[-1,-5],[-2,-6],[-3,-5],[-2,-2],[-3,3],[-2,7],[-2,15],[-4,-5],[-9,-6],[-2,-4],[-1,-2],[-4,-5],[-1,-3],[1,-3],[2,-9],[1,-4],[-4,3],[-4,0],[-3,-2],[-2,-5],[-2,0],[0,4],[2,10],[-1,5],[-1,2],[-1,2],[-1,3],[0,2],[-2,0],[0,2],[1,3],[1,2],[1,1],[1,0],[0,4],[1,3],[0,4],[-1,6],[-3,-9],[-3,-4],[-3,-6],[1,-10],[-6,2],[-9,-12],[-4,6],[4,6],[2,5],[2,4],[5,1],[0,5],[-1,8],[-2,4],[-2,-8],[-3,11],[-5,9],[-7,6],[-29,9],[-32,1],[-8,-4],[-5,-7],[-3,0],[-3,7],[-2,9],[0,8],[-1,7],[-3,4],[2,8],[-4,-1],[-3,1],[-3,3],[-3,2],[-25,-1],[-3,1],[-3,4],[-3,5],[-2,6],[-2,5],[-4,4],[-15,10],[-2,4],[-3,6],[-10,15],[-10,11],[-5,4],[-6,2],[-12,1],[-5,3],[-3,7],[-2,10],[-1,13],[2,10],[2,10],[1,10],[2,46],[-1,22],[-3,21],[-4,20],[-5,14],[-4,7],[-3,7],[-1,7],[2,12],[5,20],[2,11],[0,14],[0,12],[-1,5],[-1,2],[-1,4],[0,21],[-8,49],[4,5],[4,8],[4,10],[1,9],[5,-2],[1,-1],[0,3],[-2,4],[-1,6],[-1,13],[-1,9],[-4,2],[-5,0],[-3,3],[0,6],[2,6],[2,6],[-3,16],[2,6],[2,5],[3,3],[-1,3],[-1,4],[2,0],[3,-1],[1,3],[-1,4],[1,2],[3,2],[0,4],[-2,5],[1,5],[2,4],[1,4],[1,8],[2,1],[6,-3],[4,2],[6,5],[3,1],[2,3],[6,17],[2,2],[5,8],[3,3],[12,8],[9,21],[6,8],[4,-9],[2,0],[0,4],[-1,9],[4,12],[10,20],[3,12],[1,5],[2,3],[15,4],[3,3],[7,8],[4,3],[3,5],[1,1],[0,1],[6,3],[10,18],[4,11],[0,12],[2,4],[2,-1],[7,4],[4,1],[4,-1],[3,-3],[4,-8],[2,0],[-2,9],[-5,11],[-2,7],[6,2],[0,3],[-2,0],[0,5],[2,1],[1,1],[2,6],[-2,0],[-3,0],[-2,2],[-2,2],[-4,-9],[-7,-10],[-7,-7],[-3,-3],[-5,-5],[-1,-4],[-2,-3],[-2,0],[1,11],[-1,28],[1,9],[3,5],[3,3],[3,5],[1,3],[2,6],[1,3],[2,4],[1,0],[2,0],[1,2],[4,6],[1,4],[0,6],[1,8],[2,1],[2,0],[3,1],[6,12],[2,-2],[1,-11],[2,-5],[5,-1],[8,-1],[8,-11],[5,-5],[4,2],[4,5],[3,-5],[2,-9],[1,-9],[2,0],[2,6],[4,3],[5,3],[4,4],[2,-5],[3,0],[5,3],[6,-1],[0,3],[-15,8],[-3,4],[-1,14],[3,4],[8,-1],[1,4],[-2,6],[-2,3],[-1,-3],[-1,-2],[-2,4],[-1,6],[0,6],[15,20],[4,5],[5,3],[4,0],[3,-4],[1,0],[3,6],[5,3],[5,1],[5,-1],[2,2],[2,0],[2,-2],[0,-5],[-2,-8],[2,-4],[0,-4],[-1,-3],[-2,-5],[3,0],[3,12],[7,-2],[12,-14],[1,9],[0,9],[2,6],[3,-4],[2,-7],[1,-9],[0,-9],[-1,-7],[5,6],[5,7],[3,9],[0,10],[4,0],[5,3],[2,-1],[1,-2],[1,1],[1,2],[1,1],[2,0],[0,-2],[0,-3],[0,-3],[4,-6],[4,-12],[1,-9],[-7,-1],[3,-8],[3,-5],[5,-2],[4,3],[0,4],[-3,5],[2,4],[4,5],[0,10],[10,10],[5,2],[2,1],[4,-1],[3,-2],[2,-6],[4,6],[4,13],[3,6],[-3,-2],[-4,-8],[-2,-3],[-3,-1],[-10,1],[13,10],[4,7],[2,6],[3,19],[2,7],[4,-4],[11,-7],[3,-1],[3,-2],[4,-3],[4,-3],[6,0],[4,3],[6,11],[2,2],[6,-2],[3,-5],[3,-6],[2,-7],[0,-4],[-2,-7],[2,-7],[6,-11],[2,-8],[1,-17],[1,-7],[2,0],[-1,5],[0,1],[-1,2],[0,4],[2,0],[0,4],[-1,4],[-2,13],[0,3],[-3,1],[-2,4],[-1,5],[-1,7],[-1,16],[-1,2],[0,12],[0,5],[2,5],[12,-20],[2,2],[10,-11],[8,-5],[8,-2],[0,-4],[-2,0],[0,-4],[5,-4],[4,-7],[3,-2],[4,8],[1,-11],[5,-21],[1,-10],[1,-3],[2,2],[2,4],[1,5],[-1,5],[0,5],[-1,4],[2,4],[-4,11],[-1,10],[-1,8],[-6,4],[-3,2],[0,6],[1,6],[0,4],[-2,7],[1,6],[7,17],[3,2],[10,-2],[3,5],[5,23],[2,5],[2,-6],[7,-47],[4,-6],[8,-10],[6,-16],[4,-6],[22,-8],[6,1],[1,2],[0,2],[1,0],[2,-4],[4,8],[4,-10],[12,-76],[2,-35],[4,-35],[1,-16],[-2,-16],[1,-5],[3,-1]],[[81100,63296],[7,0],[3,-3],[2,-5],[0,-5],[-2,-9],[-5,-5],[-14,-6],[-3,0],[-3,-1],[-3,-3],[-3,-4],[-5,-9],[-2,-3],[-11,-4],[-4,2],[1,2],[1,2],[2,2],[5,19],[1,10],[-2,12],[3,2],[10,1],[3,2],[6,6],[3,1],[1,-2],[1,-2],[1,-3],[2,-2],[2,1],[1,3],[2,1]],[[81290,63328],[2,-8],[-1,-6],[-2,-6],[-1,-8],[3,-9],[0,-6],[-7,-4],[-2,-8],[-3,-2],[-8,0],[-3,1],[-3,3],[-2,-4],[-3,-10],[-1,-2],[-3,2],[-1,4],[-1,6],[2,6],[10,13],[2,7],[-3,11],[6,3],[12,12],[7,5]],[[81345,63365],[5,-3],[1,-7],[-1,-7],[-9,-6],[-3,-6],[-2,-5],[-4,-7],[1,-9],[2,-11],[0,-8],[-2,-12],[-2,-9],[0,-9],[4,-11],[-3,-6],[-2,-1],[-7,3],[-1,1],[-1,2],[-1,4],[0,8],[-1,1],[-2,0],[-2,2],[-1,10],[10,20],[1,17],[-4,-3],[-6,-3],[-6,-1],[-3,5],[2,8],[4,8],[6,10],[5,0],[3,24],[5,-4],[4,4],[3,1],[8,0],[-1,0]],[[81497,63515],[2,-4],[1,-2],[0,-2],[1,-4],[-23,2],[-4,8],[10,26],[2,3],[3,1],[3,3],[1,5],[1,0],[1,0],[0,-2],[0,-2],[1,-2],[0,-2],[1,-2],[2,-2],[4,4],[-1,-7],[-5,-21]],[[81489,63592],[-3,-16],[-5,-18],[-6,-14],[-7,-5],[-2,4],[-3,8],[-2,10],[3,8],[2,2],[3,2],[2,2],[1,3],[1,4],[1,4],[2,4],[2,2],[1,-7],[2,2],[4,4],[4,1]],[[81553,63963],[3,-7],[0,-6],[-3,-4],[-4,-1],[-6,2],[-4,7],[-2,9],[-2,10],[-2,-8],[-4,6],[-3,9],[-4,21],[-2,0],[0,-14],[-5,3],[-6,11],[-9,20],[-2,9],[3,6],[7,2],[12,-6],[4,-5],[10,-27],[6,-7],[7,-3],[1,-4],[3,-17],[2,-6]],[[82519,64371],[5,-7],[4,4],[1,8],[5,0],[-1,-10],[3,-3],[3,-6],[-2,-18],[-2,-12],[-6,3],[-7,4],[-9,-4],[-7,6],[-3,1],[-3,2],[-3,0],[-6,0],[-6,1],[-2,5],[3,7],[4,7],[4,4],[2,-3],[1,-4],[2,-4],[3,-1],[2,1],[3,1],[3,2],[1,11],[2,5],[4,3],[2,-2],[0,-1]],[[82629,64537],[10,-2],[6,-6],[-2,-14],[-6,2],[-3,-5],[-2,-13],[0,-16],[-3,-3],[-6,4],[-4,-2],[-3,-9],[-1,-11],[0,-11],[2,-4],[2,-11],[-16,-6],[-15,1],[5,13],[9,15],[7,34],[-2,3],[-4,3],[-3,1],[-2,-1],[-3,-3],[-1,3],[0,6],[10,17],[0,11],[1,0],[-2,12],[3,4],[5,0],[3,-1],[2,-11],[4,-2],[4,-5],[5,7]],[[83140,65889],[17,-13],[9,-11],[1,-11],[-4,-6],[-2,0],[-3,2],[-7,3],[-10,6],[-2,3],[-4,2],[-4,2],[-5,2],[-2,7],[-1,8],[-2,7],[-3,5],[-3,7],[-2,24],[3,-6],[6,-19],[4,-6],[4,-3],[10,-3]],[[83681,67135],[3,-11],[6,-12],[-2,-10],[-3,0],[-3,0],[-3,2],[-3,3],[0,-5],[-1,-2],[0,-1],[1,-5],[-1,-4],[-4,2],[0,-6],[-4,-2],[-5,-6],[-5,-1],[-5,-1],[-1,10],[2,8],[0,4],[-3,3],[-2,6],[-1,6],[0,6],[-1,8],[-2,5],[1,3],[3,1],[8,5],[6,11],[5,12],[1,6],[1,5],[5,7],[7,-3],[4,-12],[0,-7],[-2,-8],[-2,-17]],[[83954,68422],[-9,-13],[0,-4],[5,-4],[2,0],[-3,-5],[-1,-4],[0,-5],[0,-4],[-4,-4],[-4,1],[-4,3],[-10,4],[-6,6],[-12,16],[3,6],[1,2],[3,3],[2,2],[5,3],[7,1],[2,1],[3,6],[8,4],[5,4],[4,-8],[-2,-4],[0,-3],[2,-3],[3,-1]],[[83999,68506],[3,-2],[2,-6],[2,-16],[-6,2],[-11,9],[-4,1],[-12,-7],[-6,-1],[-3,8],[1,1],[3,3],[-3,2],[-1,3],[0,5],[0,6],[1,6],[1,2],[2,0],[1,-7],[2,0],[4,1],[7,-8],[3,1],[6,10],[-1,-9],[2,-3],[3,-1],[4,0]],[[83843,69050],[4,-1],[4,-4],[3,-7],[1,-10],[-1,-10],[-3,-10],[-4,-6],[-5,0],[-3,5],[-3,11],[-5,29],[3,3],[9,0]],[[83299,69495],[6,-26],[0,-5],[-3,1],[-9,16],[-4,4],[-8,4],[-3,3],[-2,0],[-1,1],[-2,4],[1,3],[1,2],[0,3],[-1,14],[3,7],[3,7],[2,8],[-8,5],[-11,10],[-8,12],[-1,14],[9,12],[10,-1],[8,-9],[5,-14],[12,-58],[1,-17]],[[83977,73664],[3,9],[7,9],[7,7],[6,4],[-3,-6],[-1,-6],[0,-4],[2,-13],[2,-4],[-4,-4],[-3,5],[-6,-5],[-6,-3],[-4,11]],[[84065,73705],[7,-1],[16,5],[6,-3],[-1,-8],[-3,-8],[-10,-9],[0,4],[0,4],[1,4],[1,4],[-4,2],[-13,2],[0,4]],[[84078,73721],[-11,-4],[-16,2],[-15,8],[-8,15],[9,1],[3,-1],[10,-8],[17,-3],[5,-4],[6,-6]],[[83728,73847],[5,-7],[2,-7],[-2,-6],[-7,0],[0,-4],[2,-2],[2,-4],[1,-4],[0,-4],[0,-14],[-4,-8],[-5,-1],[-14,1],[-4,3],[0,5],[5,12],[5,6],[2,5],[0,5],[-1,5],[-4,2],[-3,-1],[-3,-2],[-4,-8],[-4,-11],[-4,-10],[-7,-4],[-2,1],[-2,3],[0,5],[0,7],[1,9],[1,4],[8,6],[2,1],[3,1],[2,4],[1,4],[1,4],[1,5],[3,3],[3,1],[10,-5],[7,1],[3,-1]],[[84156,73871],[1,15],[6,5],[8,-3],[6,-8],[-3,-13],[-7,-6],[-7,1],[-4,9]],[[80720,62882],[3,-3],[3,-1],[3,-2],[1,-7],[0,-7],[-2,-6],[-4,-11],[-6,-8],[-3,3],[-4,9],[-4,8],[7,18],[5,7],[3,3],[-2,-3]],[[80707,62928],[-1,-8],[-5,-20],[-2,-10],[1,-6],[1,-7],[0,-5],[-3,-3],[-2,2],[-2,4],[0,6],[0,7],[-2,5],[-5,8],[-5,6],[-5,3],[-21,0],[-9,-6],[-9,-9],[-9,-5],[-6,8],[4,4],[1,7],[-1,7],[-4,7],[5,3],[3,1],[4,-1],[0,4],[-3,1],[-2,2],[0,4],[1,5],[4,-4],[6,0],[5,2],[2,7],[-4,-3],[-4,-2],[-3,2],[-2,6],[15,0],[8,4],[5,9],[3,-19],[2,-9],[3,-5],[1,7],[3,3],[3,2],[4,0],[-2,0],[6,1],[3,3],[3,5],[4,4],[5,0],[3,-6],[2,-9],[1,-12]],[[80726,63020],[-5,-8],[-6,-28],[-3,-11],[-6,-5],[-7,4],[-4,9],[1,10],[-3,2],[-2,2],[-2,3],[-1,5],[-2,0],[2,-8],[-5,1],[-3,3],[-2,5],[2,8],[-2,0],[-5,0],[-2,0],[0,4],[4,1],[3,4],[2,4],[3,3],[7,2],[4,-2],[-1,-6],[-7,-1],[-3,-2],[5,-3],[4,-1],[3,2],[6,8],[2,2],[1,0],[2,0],[1,-1],[5,-5],[1,-1],[-4,-9],[-1,-5],[-1,-7],[2,0],[6,20],[5,7],[6,-2],[0,-4]],[[82803,65012],[5,-6],[7,-5],[7,-3],[5,2],[1,-8],[2,-11],[-1,-6],[-2,-6],[-2,-3],[-3,-4],[0,-9],[-2,-11],[-5,-5],[-6,1],[-6,4],[-4,4],[-2,5],[-1,4],[1,5],[3,3],[3,1],[3,3],[0,8],[-6,-7],[-2,1],[-1,9],[1,8],[4,16],[1,10]],[[83290,65593],[-3,7],[-5,-2],[-4,-8],[-1,-9],[2,-12],[9,-10],[2,-11],[-7,4],[-8,-3],[-6,-7],[-4,-10],[0,-7],[1,-7],[-1,-3],[-5,2],[-5,3],[-5,6],[-3,8],[2,11],[0,2],[3,4],[0,2],[1,2],[0,4],[-1,4],[0,1],[-3,-3],[-3,-1],[-3,1],[-3,3],[3,8],[2,4],[3,1],[15,-4],[5,2],[3,9],[-5,5],[-10,-3],[-2,7],[0,5],[4,21],[-1,6],[-3,0],[-2,-3],[-2,-5],[-3,10],[2,11],[4,10],[5,10],[4,1],[1,3],[4,4],[5,-1],[-1,-4],[-1,-9],[1,-11],[4,-8],[3,4],[3,-1],[2,-5],[3,-6],[-4,-7],[3,-4],[7,-4],[6,-5],[-4,-6],[-4,-6]],[[83876,67715],[1,-7],[-1,-4],[-6,-23],[-3,0],[-3,5],[-7,1],[3,12],[-3,10],[-5,10],[-1,12],[4,8],[6,4],[7,0],[4,-4],[3,-5],[1,-5],[0,-14]],[[83928,68078],[9,-21],[3,-14],[-7,-11],[2,12],[-1,-1],[-4,-3],[0,8],[-3,-6],[-2,-2],[-2,0],[0,3],[-1,7],[0,4],[-2,3],[-2,4],[-1,4],[-1,5],[-2,4],[-5,-1],[-5,-3],[-1,-2],[-2,1],[-2,-1],[-1,1],[-1,3],[0,5],[1,5],[1,5],[1,2],[2,3],[2,7],[3,7],[5,3],[3,1],[3,2],[2,-1],[2,-6],[0,-5],[0,-7],[0,-4],[1,-4],[4,-6],[1,-1]],[[83998,68167],[-1,-4],[-2,-3],[-1,-4],[1,-5],[3,-5],[0,-3],[0,-6],[-3,2],[-2,2],[-3,6],[-3,7],[1,5],[2,4],[1,4],[-1,7],[-1,6],[-3,3],[-5,6],[-3,4],[-1,6],[1,7],[0,3],[2,2],[1,2],[2,1],[1,-8],[4,-2],[8,2],[3,2],[2,0],[1,-4],[0,-5],[-1,-4],[-1,-3],[-2,-2],[4,-6],[-1,-7],[-3,-10]],[[83855,68281],[1,-9],[2,-3],[3,-1],[2,-5],[0,-13],[-2,-13],[-4,-10],[-5,-5],[-3,1],[-3,3],[-3,3],[-2,6],[-1,4],[1,2],[0,3],[1,4],[0,3],[0,8],[0,4],[1,6],[3,16],[1,3],[3,-1],[4,-3],[1,-3]],[[83979,68251],[0,-8],[-2,-3],[-2,-2],[-2,-4],[-1,-6],[0,-6],[-1,-14],[-1,-11],[-5,4],[-9,17],[-4,5],[-13,10],[-11,3],[-12,9],[-6,2],[-4,-1],[-4,-6],[-4,-3],[-1,-1],[-2,-2],[-2,0],[-2,2],[0,3],[0,2],[0,2],[0,2],[1,6],[-1,4],[-1,1],[-3,2],[-1,1],[-4,9],[-1,4],[-1,4],[1,3],[1,3],[1,4],[0,3],[-1,11],[-4,13],[0,7],[3,4],[31,-1],[5,-2],[4,-4],[4,-8],[2,-1],[7,-1],[1,-1],[1,-9],[3,-3],[3,1],[3,0],[7,-5],[2,-3],[2,-3],[1,-4],[2,-4],[4,-1],[5,1],[3,-3],[0,-8],[2,-4],[5,-6],[1,-4]],[[83845,69188],[21,-17],[17,-23],[1,-21],[-2,-16],[-18,-12],[-17,-11],[-10,5],[-9,11],[-15,11],[-5,7],[-8,6],[-19,9],[-12,5],[-8,14],[-7,9],[-9,7],[-22,20],[-8,12],[-9,4],[-8,9],[-4,9],[-4,19],[-17,20],[-6,11],[-5,11],[-3,6],[2,7],[3,5],[7,15],[13,6],[16,-7],[11,-6],[7,-4],[10,-9],[14,-15],[7,-12],[10,-13],[10,-9],[9,-13],[6,-9],[4,-7],[7,-7],[16,-13],[34,-14]],[[80887,59812],[-1,1],[0,1],[1,4],[1,2],[2,0],[0,-1],[0,-3],[-1,-2],[-2,-2]],[[81045,59971],[-3,1],[0,1],[2,1],[1,-2],[0,-1]],[[80305,62919],[-1,0],[-2,12],[3,11],[6,3],[4,-9],[-3,-11],[-4,-3],[-2,-1],[-1,-2]],[[83540,72938],[3,-10],[0,-9],[-1,-6],[-2,0],[-3,4],[-3,3],[-1,6],[1,17],[3,0],[3,-5]],[[83501,72962],[3,1],[2,-5],[0,-9],[0,-6],[-2,-1],[-1,1],[-1,4],[-2,9],[1,6]],[[83533,72963],[2,-7],[-2,-3],[-4,1],[-2,2],[-1,3],[-2,4],[0,2],[0,3],[4,0],[5,-5]],[[83544,73075],[3,-3],[0,-4],[-3,-1],[-2,1],[-2,2],[-2,8],[1,7],[5,-10]],[[83557,73145],[-2,-1],[0,4],[0,3],[2,3],[3,6],[4,-1],[1,-5],[-2,-3],[-2,-1],[-1,0],[-2,-2],[-1,-3]],[[83586,73201],[-1,1],[-1,4],[3,2],[2,-5],[0,-2],[-2,0],[-1,0]],[[84216,73620],[1,-3],[3,-12],[0,-8],[-3,-6],[-3,-5],[-4,-3],[-3,5],[-1,4],[1,7],[1,4],[4,-1],[0,3],[-2,3],[-2,2],[-2,1],[0,3],[7,2],[2,3],[1,1]],[[80999,60257],[0,3],[1,1],[1,0],[0,-1],[1,-2],[0,-1],[-1,-1],[-1,0],[-1,1]],[[81314,60335],[-1,1],[-1,4],[0,1],[1,0],[1,-1],[1,-4],[-1,-1]],[[81203,60434],[-2,2],[0,3],[0,2],[1,0],[1,-3],[1,-2],[-1,-2]],[[81203,60498],[1,-1],[1,-3],[0,-2],[-2,0],[0,2],[0,4]],[[80686,62697],[1,-9],[1,-12],[-1,-9],[-1,-2],[-2,-1],[-2,-2],[-2,1],[-1,4],[-2,20],[-1,5],[-3,3],[-2,7],[1,4],[2,0],[1,1],[0,2],[1,1],[2,-3],[1,-3],[4,-2],[3,-5]],[[81465,63454],[1,-1],[1,-3],[0,-3],[-2,-3],[0,-6],[-3,-7],[-2,-3],[-2,1],[-5,6],[-1,3],[-1,2],[-1,8],[2,12],[5,5],[3,2],[2,-2],[3,-7],[0,-4]],[[81602,63499],[2,-9],[-4,-11],[-4,3],[-3,8],[0,7],[2,0],[3,2],[4,0]],[[81751,63532],[0,-4],[-1,-3],[-22,-14],[-5,3],[3,3],[15,11],[3,2],[3,3],[1,3],[1,2],[1,1],[2,0],[0,-4],[-1,-3]],[[81520,63557],[-2,2],[-1,3],[2,4],[13,8],[2,-1],[2,-3],[0,-5],[-2,-4],[2,-6],[4,-2],[-2,-6],[-15,-6],[-4,3],[1,7],[0,6]],[[81561,63759],[3,-1],[5,0],[2,-4],[0,-5],[-1,-6],[-3,-1],[0,-7],[-4,-2],[-2,-3],[-3,4],[0,9],[0,10],[3,6]],[[81540,63938],[3,-4],[2,-9],[2,-12],[1,-1],[8,-8],[9,-17],[2,-18],[-1,-14],[-3,-4],[-8,10],[-11,26],[-10,16],[-9,13],[-5,8],[0,7],[8,3],[6,6],[6,-2]],[[81535,64067],[0,-7],[5,-6],[2,-16],[0,-15],[-3,-3],[-5,9],[-4,15],[-1,18],[2,10],[4,-5]],[[82498,64424],[3,0],[1,-5],[-2,-5],[-2,-4],[-1,-3],[-1,-6],[-5,-6],[-5,2],[-4,5],[-1,6],[3,2],[3,3],[3,6],[2,3],[1,0],[2,1],[3,1]],[[83208,65399],[3,0],[1,-3],[-1,-3],[-3,-2],[-1,-6],[0,-8],[-2,-4],[-3,0],[-4,4],[-1,6],[0,5],[0,5],[-2,3],[-3,-2],[-1,-3],[-8,4],[-3,7],[-2,9],[1,4],[2,1],[1,2],[3,6],[2,-1],[1,-3],[2,0],[1,-2],[2,-6],[1,-6],[3,-5],[3,-3],[3,0],[3,1],[2,0]],[[83151,65611],[0,-4],[2,-5],[-1,-5],[-2,-17],[-2,-15],[-1,-13],[1,-11],[0,-7],[-3,-2],[-3,-2],[-3,-5],[-2,0],[-2,13],[-1,6],[-1,6],[0,11],[6,32],[0,4],[1,2],[1,1],[2,5],[1,2],[3,6],[3,2],[1,-4]],[[83229,65931],[3,-11],[2,-6],[-2,-5],[-5,-4],[-15,10],[-3,9],[5,14],[7,5],[4,-4],[4,-8]],[[83423,66424],[-2,5],[0,6],[1,2],[1,0],[3,5],[2,1],[2,-1],[1,-1],[1,-2],[1,-1],[2,-5],[1,-7],[1,-2],[2,-1],[1,-2],[-10,-7],[-7,10]],[[83631,66743],[2,-3],[3,-4],[3,-4],[0,-5],[-3,1],[-5,2],[-2,-1],[1,-5],[2,-5],[-3,-1],[-2,4],[-3,8],[-1,5],[2,5],[6,3]],[[83661,66972],[2,-1],[0,-5],[0,-4],[-1,-2],[0,-1],[-2,-1],[-1,1],[-1,-1],[1,-9],[-1,-5],[-3,0],[-4,4],[-2,0],[-3,-3],[-3,-1],[-6,0],[0,6],[5,9],[5,2],[5,-1],[2,2],[-1,2],[0,3],[1,1],[3,1],[4,3]],[[83624,67023],[-1,0],[-2,4],[2,5],[5,9],[2,1],[1,-1],[2,-1],[8,2],[5,-4],[3,-7],[0,-5],[-4,-3],[-6,-3],[-3,1],[-3,4],[-3,1],[-6,-3]],[[83850,67721],[0,-4],[1,-5],[-2,-5],[-2,-5],[-3,-2],[-1,3],[-3,5],[-3,4],[-4,2],[-3,0],[-1,1],[-1,3],[0,5],[1,6],[1,4],[1,-1],[14,-4],[3,-5],[2,-2]],[[83973,68128],[2,-13],[0,-7],[-1,-4],[-4,1],[-6,8],[-2,3],[-4,5],[-4,11],[-1,2],[-1,5],[5,6],[6,0],[4,-2],[8,-8],[-1,-3],[-1,-4]],[[83880,68203],[4,-8],[2,-7],[0,-6],[-5,-5],[-8,2],[-3,11],[2,9],[3,6],[2,3],[2,0],[1,-3],[0,-2]],[[83984,68379],[-5,-1],[-3,0],[-3,0],[-3,-2],[-3,-1],[-2,1],[0,3],[3,4],[4,2],[3,5],[2,5],[1,2],[2,1],[3,0],[11,2],[5,-1],[2,-5],[1,-7],[0,-6],[-4,-3],[-3,6],[0,7],[-1,1],[-2,-1],[-5,-8],[-3,-4]],[[84035,68663],[-1,-4],[2,-6],[-2,-1],[-9,0],[-2,0],[-3,0],[-2,-2],[-1,-2],[-1,-1],[-1,0],[-3,2],[-4,0],[-1,4],[1,6],[1,8],[-2,6],[0,3],[3,-1],[5,-6],[4,-8],[4,-2],[3,2],[1,1],[3,1],[4,2],[1,-2]],[[83822,69050],[3,-9],[3,-10],[-1,-10],[-4,-3],[-4,6],[-9,16],[-33,42],[-4,8],[1,2],[4,-1],[4,0],[20,-14],[10,-10],[5,-9],[5,-8]],[[82953,73610],[4,-11],[0,-7],[-15,-42],[-22,-32],[-3,0],[-7,9],[3,5],[-5,17],[-1,21],[3,21],[3,5],[10,-2],[9,-26],[5,3],[9,15],[6,9],[-4,11],[5,4]],[[81021,60287],[0,2],[1,0],[-1,-2]],[[59513,68954],[4,7],[15,19],[9,20],[1,10],[-2,20],[0,10],[6,21],[31,55],[4,5],[1,0],[9,15],[0,13],[-5,12],[-8,13]],[[59578,69174],[2,10],[7,16],[24,77],[2,5],[16,64],[7,31],[6,15],[8,52],[1,3],[-1,6],[0,3],[4,4],[23,127],[9,88],[9,78],[2,5],[1,27],[2,8],[-1,8],[7,49],[1,53],[2,12],[4,4],[4,-2],[6,-6],[4,-2],[2,1],[10,19],[1,5],[3,15],[1,8],[-1,7],[-3,3],[1,9],[2,36],[4,19],[1,12],[-1,10],[1,2],[2,4],[1,2],[-2,4],[2,0]],[[59751,70065],[22,-3],[1,1],[3,5],[2,1],[2,0],[4,-2],[2,0],[10,6],[3,0],[2,-2],[1,-1],[4,-4],[2,-6],[2,-7],[3,-6],[4,-1],[15,7],[13,10],[9,2],[1,9],[6,16],[2,10],[1,15],[1,29],[2,13],[3,8],[1,9],[2,5],[4,1],[1,-4],[5,-14],[4,-5],[1,-2],[1,2],[-1,11],[2,5],[4,1],[5,2],[5,8],[11,20],[5,2],[3,1],[4,2],[4,3],[3,4],[5,9],[5,20],[5,9]],[[59950,70254],[0,-4],[-1,-3],[-1,-10],[-1,-3],[0,-8],[-5,-6],[-2,-4],[-6,-5],[10,-13],[-9,-24],[2,-4],[8,-10],[1,-28],[6,-7],[1,-17],[-3,-11],[-3,-9],[0,-9],[10,-8],[0,-8],[3,-56],[2,-7],[6,-20],[-4,-13],[-2,-1],[-4,-15],[-4,-18],[1,-7],[-2,-15],[-14,-30],[-7,-20]],[[59932,69861],[-5,-2],[-15,-17],[-9,-15],[-5,-4],[-6,1],[-5,-6],[-5,-10],[-2,-4],[-2,-2],[-1,-2],[0,-5],[1,-4],[3,-3],[0,-3],[-2,0],[0,-5],[1,-5],[1,-15],[2,-8],[-1,-3],[-1,0],[0,1],[0,2],[-1,-2],[-1,-6],[-2,4],[1,-12],[1,-4],[-4,0],[0,-4],[1,0],[2,0],[2,-5],[0,-3],[3,-5],[0,-3],[-3,-2],[-1,-3],[-1,-4],[-1,-4],[1,-1],[1,-1],[0,-1],[2,-1],[0,-4],[-2,-2],[-2,-2],[2,-4],[-4,-4],[1,-1],[1,0],[0,-3],[-2,0],[0,-4],[2,-3],[0,-2],[-1,-2],[-3,-1],[1,-6],[1,-2],[1,-3],[1,-4]],[[59877,69648],[-22,11],[-7,3],[-6,0],[-7,4],[-2,15],[0,18],[-2,14],[-9,10],[-8,1],[-17,-1],[-5,3],[-8,12],[-4,3],[0,1],[-5,-1],[-4,-5],[-7,-15],[-9,-9],[-8,-8],[-8,-9],[-5,-17],[-3,-31],[-1,-10],[-2,-12],[-1,-2],[-4,-2],[-1,-2],[-1,-7],[-1,-19],[-1,-8],[3,-2],[2,-4],[1,-6],[-1,-8],[-2,-7],[-11,-18],[-4,-9],[0,-5],[4,-19],[2,-10],[3,-56],[0,-11],[0,-13],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-18],[5,-23],[4,-20],[-8,-8],[-7,-5],[-2,-8],[-1,-2],[3,-10],[9,-3],[5,0],[2,1],[2,3],[5,9],[2,3],[4,-2],[15,-12],[19,-8],[5,-6],[2,-7],[0,-10],[0,-13],[-1,-3],[-1,-1],[-2,1],[-1,3],[-17,-7],[-6,-4],[-5,-8],[-9,-18],[-23,-30],[-5,-11],[0,-2],[-5,-16],[-1,-16],[0,-17],[-2,-19],[-12,-38],[-4,-20],[3,-20],[6,-8],[7,-2],[8,2],[7,4],[17,4],[34,0],[17,11],[30,46],[16,17],[19,3]],[[59849,69120],[0,-1]],[[59849,69119],[0,-34],[0,-6],[-2,-13],[-5,-24],[-5,-17],[2,-4],[0,-13],[-4,-13],[-3,-14],[1,-16],[3,-16],[3,-11],[4,-15],[2,-16],[-2,-17],[-13,-47],[-1,-18],[0,-18],[-3,-11],[-8,-13],[-3,-6],[-4,-14],[-1,-13],[1,-14],[-1,-13],[-2,-5],[-5,-8],[-2,-5],[-2,-7],[-1,-6],[-1,-15],[-2,-15],[-16,-60],[-12,-73],[-2,-14],[-4,-24],[0,-14],[1,-6],[4,-12],[1,-9],[-1,-8],[-1,-6],[-2,-7],[-2,-7],[-3,-31],[-2,-10],[0,-17],[6,-36],[0,-19],[-5,-20],[-11,-33],[-4,-23],[0,-7],[-1,-5],[-1,-5],[-1,-5],[-2,-20],[-1,-36],[-1,-12],[-13,-65],[-2,-15],[-1,-33],[-3,-15],[-4,-11],[-2,-13],[-1,-16]],[[59709,67975],[-1,-8],[-2,-5],[-4,-11],[-3,-7],[-1,-4],[0,-4],[-1,-2],[-2,0],[-3,0],[-2,0]],[[59690,67934],[-2,9],[-7,24],[-2,14],[1,41],[-7,61],[-11,56],[-12,62],[-2,32],[0,4],[0,3],[0,4],[-1,3],[-11,57],[-16,87],[-10,49],[-3,9],[-15,24],[-2,6],[0,7],[0,10],[3,18],[0,8],[-3,7],[-4,11],[-2,10],[-1,25],[-6,47],[-17,83],[-14,68],[-11,52],[-8,50],[-11,62],[-3,17]],[[59513,68954],[-5,28],[-2,10],[-7,22]],[[59499,69014],[7,8],[4,9],[12,20],[6,19],[13,18],[5,18],[21,39],[10,26],[1,3]],[[59877,69648],[1,-4],[1,-6],[-2,0],[0,5],[-2,0],[0,-5],[1,-5],[0,-18],[3,-9],[-1,-7],[-1,-11],[1,-11],[3,-7],[-2,-2],[-1,-1],[-1,-2],[0,-4],[4,0],[-4,-28],[-1,-9],[1,-7],[0,-5],[-2,-2],[-2,-2],[0,-4],[2,-3],[-5,-15],[0,-7],[3,-7],[-5,-7],[-1,-10],[0,-28],[3,-13],[1,-7],[0,-8],[1,-5],[1,-6],[0,-5],[-1,-3],[-2,-1],[-2,-1],[-1,-5],[7,-48],[-3,-7],[0,-4],[6,-32],[-9,-18],[-7,-30],[-6,-26],[-4,-43],[-2,-44],[0,-1]],[[59751,70065],[0,1],[0,3],[-1,0],[0,2],[-1,2],[2,6],[3,7],[2,5],[7,5],[2,6],[1,7],[2,5],[-1,4],[1,0],[1,-1],[1,-3],[9,32],[1,18],[-6,15],[6,8],[4,11],[5,25],[1,8],[0,16],[1,8],[5,14],[2,7],[-1,8],[14,19],[8,14],[3,18],[0,7],[11,52],[-2,4],[4,6],[4,25],[4,5],[0,7],[11,48],[1,12],[1,24],[0,4],[-1,7],[-2,6],[-1,5],[2,5],[3,1],[3,-1],[4,-2],[1,-3],[2,0],[3,3],[4,-1],[2,0],[5,3],[1,4],[3,11],[1,5],[0,3],[0,1],[-2,0],[3,5],[3,14],[2,6],[2,1],[4,0],[2,3],[0,5],[-2,3],[-1,1],[-1,3],[0,14],[4,26],[2,19],[-1,6],[-4,13],[-1,9],[0,20],[1,4],[4,5],[1,4],[0,18],[1,19],[3,15],[7,10],[5,-7],[4,13],[4,19],[4,12],[16,15],[4,11],[-5,15],[0,3],[6,-2],[22,10],[14,25],[5,6],[3,5],[1,8],[1,28],[-1,13],[-2,10],[-3,7]],[[59991,70990],[4,0],[2,-1],[2,-2],[5,-7],[6,-3],[6,0],[8,2],[7,-1],[12,-2],[1,1],[3,3],[2,1],[1,-1],[4,-4],[1,-1],[17,1],[3,3],[2,4],[1,6],[1,12],[0,4],[6,7],[4,-5],[7,-21],[5,-8],[7,-4],[7,0],[7,4],[-1,-19],[-2,-3],[-3,4],[-4,3],[-5,-5],[0,-7],[0,-9],[-1,-9],[-5,-8],[-8,-7],[-5,-9],[3,-9],[1,-2],[1,-1],[1,0],[1,1],[5,2],[8,1],[8,-1],[4,-2],[2,-10],[2,-8],[4,-5],[5,-4],[4,-9],[2,-2],[2,1],[4,-6],[2,-5],[0,-6],[-1,-10],[-1,-4],[-1,-3],[-1,-3],[0,-5],[0,-5],[2,-4],[6,-15],[3,-6],[2,-1],[2,0],[2,-1],[1,-4],[-1,-8],[-2,-7],[-2,-7],[1,-11],[2,-9],[7,-12],[1,-6],[-8,-15],[-6,-20],[-12,-18],[-6,-13],[-2,-8],[0,-7],[-2,-5],[-4,-4],[-4,-1],[-6,4],[-3,1],[-6,-6],[-9,-20],[-11,-18],[-5,-9],[-3,-11],[-6,-21],[0,-2],[2,-6],[2,-4],[8,-11],[11,-3],[5,-5],[0,-13],[-3,-7],[-6,-2],[-10,5],[-14,12],[-5,2],[-4,-3],[-4,-6],[-5,-5],[-6,0],[-2,3],[-3,8],[-2,2],[-10,-11],[-5,-4],[-5,-2],[-5,-4],[-2,-6],[-4,-13],[-9,-14],[-4,-10],[-2,-7],[-5,-8],[-2,-5],[0,-5],[0,-11],[0,-6],[-2,-2],[-3,-2],[-1,-2],[-1,-13],[3,-4],[6,-2],[7,-7],[4,-2],[5,-4],[5,-6],[2,-7],[-1,-11],[-4,-9],[-6,-7],[-5,-4],[-7,0],[-6,-4],[-3,-8],[3,-12],[-4,-18],[-9,-13],[-5,-6],[-7,-7],[-6,-7]],[[59463,56069],[-1,45],[9,88],[34,205],[17,32],[6,20],[1,7],[-1,14],[0,7],[0,3],[3,6],[1,3],[2,25],[0,27],[-13,130],[-2,25],[2,21],[24,71],[11,44],[5,12],[4,9],[34,49],[5,3],[3,-2],[34,-63],[8,-11],[3,-7],[2,-9],[-1,-17],[0,-9],[3,-2],[3,4],[3,19],[4,6],[4,1],[4,-2],[3,1],[3,9],[2,11],[0,7],[1,7],[5,10],[15,24],[5,15],[2,20],[-1,9],[-9,12],[-2,8],[0,7],[18,113],[1,18],[-3,13],[-5,11],[-3,16],[1,13],[35,162],[1,12],[-1,11],[-6,24],[-2,12],[1,24],[-2,23],[0,12],[2,14],[3,14],[4,14],[4,11],[11,15],[6,5],[19,15],[8,20],[0,5],[1,11],[0,3],[0,5],[3,6],[10,12],[6,13],[2,14],[3,33],[5,26],[2,6],[3,5],[6,7],[3,5],[2,8],[1,7],[1,17],[3,16],[52,183],[2,6],[3,2],[5,1],[3,2],[2,6],[1,6],[1,7],[2,15],[0,3],[1,2],[3,3],[1,1],[7,5],[84,25],[2,0],[3,-1],[2,-2],[2,-3],[2,-2],[8,-5],[4,4],[3,11],[5,66],[0,15],[-1,9],[-7,23],[0,13],[3,10],[5,9],[2,9],[0,5],[-1,5],[-2,9],[-1,12],[27,195],[42,124],[2,16],[1,34],[1,12],[12,59],[5,26],[-1,30],[-5,29],[-1,15],[-1,15],[2,12],[25,162]],[[60146,58917],[5,0],[2,11],[4,6],[4,2],[6,1],[4,2],[9,8],[5,2],[13,0],[2,1],[4,6],[3,1],[19,0],[9,-2],[18,-11],[9,-3],[2,-2],[5,-14],[2,-4],[2,-2],[3,-2],[3,0],[1,1],[4,7],[3,0],[5,-1],[2,1],[3,5],[3,7],[2,10],[1,12],[0,14],[1,12],[3,12],[4,13],[8,12],[9,5],[21,-1],[6,4],[4,2],[7,-12],[5,-7],[10,-31],[5,-9],[1,-5],[0,-9],[0,-13],[1,-7],[4,-4],[11,-20],[1,-4],[2,-11],[2,-14],[1,-7],[4,-3],[3,-1],[2,-3],[3,-4],[0,-6],[1,-15],[1,-10],[3,-7],[5,-7],[3,7],[10,50],[16,79],[18,87],[17,89],[18,90],[12,57],[5,-9],[3,-10],[5,-22],[2,-2],[2,-1],[1,-2],[0,-2],[0,-7],[0,-1],[1,-5],[1,-4],[1,-2],[3,-2],[3,-4],[1,-4],[0,-6],[2,-5],[2,-4],[30,-26],[5,-2],[16,6],[6,-1],[5,-4],[2,-7],[2,-9],[1,-3],[1,-16],[2,-6],[2,-5],[3,-4],[3,-4],[2,-8],[3,-22],[2,-11],[3,-8],[5,-8],[14,-16],[3,-5],[2,-13],[1,-5],[4,-5],[2,-1],[2,2],[14,-1],[21,5],[10,6],[18,19],[5,-1],[5,-3],[5,-1],[5,1],[6,2],[16,15],[13,2],[5,7],[9,18],[11,11],[6,8],[4,10],[1,11],[-1,11],[1,10],[3,7],[1,-2],[10,-2],[8,-4],[2,-2],[7,-8],[5,-11],[5,-12],[4,-13],[8,-49],[6,-22],[6,1],[7,20],[3,7],[7,2],[15,-5],[6,1],[22,13],[12,11],[5,14],[2,12],[5,0],[5,-7],[4,-7],[6,-14],[2,-4],[1,-1],[15,-9],[7,-2],[13,5],[3,1],[9,1],[8,-6],[8,-10],[14,-27],[5,-4],[5,-2],[5,4],[9,15],[5,2],[5,-2],[7,-2],[4,0],[14,9],[5,0],[24,-13],[13,-10],[10,-14],[22,-41],[19,-36],[16,-18],[29,-29],[8,-5],[25,-8],[19,-14],[17,-26],[29,-68],[29,-70],[22,-79],[20,-73],[8,-17],[37,-50],[49,-64],[29,-50],[21,-37],[11,-23],[9,-26],[9,-31],[22,-97],[14,-43],[22,-29],[16,-14],[15,-18],[13,-24],[19,-64],[22,-64],[13,-30]],[[61771,57852],[-16,-47],[-9,-39],[-37,-106],[-4,-21],[-2,-7],[-7,-7],[-3,-7],[-11,-44],[-23,-68],[-11,-32],[-3,-6],[-4,-7],[-3,-4],[-4,-2],[-2,-3],[-1,-8],[-3,-8],[-11,-10],[-4,-6],[-5,-19],[-3,-45],[-9,-53],[1,-33],[7,-68],[3,-64],[-1,-114],[-1,-25],[-5,-17],[1,-4],[2,-6],[7,-5],[33,-14],[1,-3],[1,-4],[1,-3],[3,-1],[1,3],[1,3],[2,1],[16,2],[8,4],[8,18],[8,5],[15,4],[14,-7],[6,0],[3,2],[10,9],[3,1],[5,-1],[2,1],[9,6],[6,-2],[5,-3],[4,0],[6,5],[18,26],[25,16],[11,2],[2,0],[20,-10],[6,0],[6,-4],[7,-33],[4,-8],[7,-3],[11,-2],[7,-5],[4,-1],[4,3],[3,7],[2,6],[5,-4]],[[61923,56983],[-4,-12],[-3,-25],[-2,-10],[-4,-8],[-12,-10],[-4,-9],[-3,-12],[-1,-10],[-1,-9],[-5,-10],[-10,-17],[-3,-9],[-3,-15],[-2,-24],[-2,-11],[-4,-10],[-5,-7],[-6,-3],[-3,-6],[0,-12],[6,-27],[7,-24],[15,-32],[5,-12],[3,-16],[3,-54],[6,-38],[7,-36],[8,-18],[26,-37],[7,-14],[5,-17],[3,-20],[3,-19],[5,-28],[8,-16],[10,-9],[12,-4],[11,-10],[5,-19],[8,-95],[4,-23],[6,-14],[8,-4],[2,-3],[2,-6],[3,-12],[2,-7],[3,-5],[5,-8],[3,-5],[6,-27],[2,-11],[0,-19],[2,-12],[3,-9],[15,-18],[21,-27],[5,-1],[7,5],[5,1],[3,-5],[22,-41],[25,-48],[35,-68],[19,-37],[11,-14],[23,-16],[24,-17],[24,-17],[25,-17],[24,-17],[25,-17],[24,-17],[25,-17],[24,-18],[25,-17],[24,-17],[25,-17],[24,-17],[25,-17],[24,-17],[25,-17],[24,-18],[24,-16],[23,-17],[23,-16],[24,-17],[23,-17],[23,-16],[23,-17],[24,-17],[23,-16],[23,-17],[24,-17],[23,-16],[23,-17],[24,-17],[23,-16],[23,-17],[18,-12],[16,-18],[25,0],[39,0],[44,0],[43,0],[37,0],[50,0],[40,0]],[[63327,55205],[-14,-27],[-13,-28],[-14,-28],[-13,-28],[-14,-27],[-13,-28],[-14,-28],[-13,-28],[-14,-27],[-2,-6],[-11,-22],[-14,-28],[-13,-28],[-14,-27],[-13,-28],[-14,-28],[-13,-28],[-14,-27],[-13,-28],[-14,-28],[-13,-28],[-14,-28],[-13,-27],[-14,-28],[-13,-28],[-14,-28],[-13,-27],[-14,-28],[-13,-28],[-6,-11],[-12,-26],[-13,-26],[-5,-11],[-6,-12],[-12,-25],[-17,-37],[-17,-37],[-17,-37],[-17,-37],[-17,-37],[-17,-37],[-17,-37],[-17,-37],[-29,-69],[-30,-70],[-30,-69],[-27,-62],[-3,-8],[-30,-69],[-29,-69],[-30,-70],[-30,-69],[-16,-37],[-22,-51],[-8,-7],[-15,2],[-14,2],[-15,2],[-14,1],[-15,2],[-14,2],[-1,0],[-13,2],[-15,1],[-14,2],[-15,2],[-14,2],[-14,2],[-15,1],[-14,2],[-15,2],[-14,2],[-14,1],[-17,2],[-10,-5],[-24,-18],[-9,-4],[-27,-13],[-21,-11],[-31,-15],[-20,-19],[-31,-32],[-32,-32],[-31,-32],[-23,-41],[-21,-36],[-2,-6],[-2,-6],[-4,-20],[-5,-42],[-4,-19],[-8,-19],[-1,-1],[-10,-14],[-12,-10],[-19,-8],[-42,-15],[-43,-15],[-32,-12],[-21,0],[-24,-1],[-9,-5],[-10,-10],[-16,-27],[-19,-25],[-5,-10],[-2,-11],[0,-18],[-1,-8],[-4,-6],[-4,-12]],[[61634,52825],[-14,-16],[-12,5],[-12,14],[-13,9],[-12,-15],[-4,-2],[-4,2],[-7,6],[-5,1],[-22,-12],[-7,0],[-14,-9],[-32,-4],[-28,-3],[-14,4],[-14,11],[-12,21],[-18,53],[-7,14],[-5,6],[-13,9],[-5,6],[-3,6],[-5,18],[-6,17],[-17,24],[-6,17],[-18,-24],[-23,-19],[-29,-24],[-36,-30],[-2,-3],[-1,-9],[-2,-3],[-22,-17],[-28,-20],[-1,-1],[-1,1],[0,1],[-3,1],[0,-3],[0,-4],[-1,-3],[-13,-13],[-27,-28],[-24,-25],[-24,-24],[-5,-15],[-6,-31],[-7,-43],[-5,-19],[-5,-14],[-22,-43],[-18,-35],[-8,-19],[-6,-39],[-4,-16],[-9,-1],[-5,6],[-2,8],[-1,8],[-3,7],[-8,6],[-35,2],[3,11],[-2,6],[-3,1],[-2,-2],[-11,-14],[-10,0],[-11,5],[-25,24],[-4,4],[-2,1],[-16,-7],[-5,0],[-4,3],[-4,2],[-12,-5],[-7,-1],[-21,12],[-27,16],[-6,6],[-4,10],[-7,21],[0,-4],[-1,-9],[0,-4],[-16,3],[-1,2],[-1,3],[0,2],[-4,-3],[-2,-1],[-3,1],[-4,2],[-1,4],[-1,4],[-2,6],[-5,9],[-2,2],[-2,-3],[-1,-5],[0,-5],[0,-3],[-14,-13],[-16,-3],[-29,7],[-30,7],[-9,-1],[-8,-5],[-4,1],[-6,12],[-8,5],[-4,5],[-4,10],[-7,25],[-6,11],[-8,11],[-28,38],[-26,36],[-29,40],[-25,35],[-23,31],[-32,43],[-27,37],[-27,37],[-15,21],[-1,1],[-2,0],[-1,0],[-1,3],[-2,14],[-1,5],[-2,6],[-2,1],[-5,-1],[-2,3],[-5,16],[-2,4],[-12,6],[-20,21],[-16,10],[-54,-1],[-2,1],[-4,5],[-3,1],[-43,-2],[-52,-2],[-3,1],[-5,5],[-3,2],[-3,0],[-9,-3],[-41,-1],[-1,0],[-6,4],[-6,8],[-11,20],[-5,6],[-2,9],[0,10],[1,12],[0,11],[-4,14],[-1,10]],[[59977,53205],[-37,86],[-7,25],[-3,28],[2,124],[1,8],[11,29],[2,11],[0,13],[-3,14],[-5,22],[-1,12],[2,14],[7,23],[-1,5],[-15,13],[-18,24],[-8,4],[-5,-3],[-5,-5],[-6,-3],[-7,4],[-12,21],[-6,7],[-5,3],[-6,2],[-6,0],[-5,-2],[-6,-9],[-11,-26],[-7,-10],[-6,-2],[-5,5],[-5,10],[-9,31],[-1,5],[1,8],[2,6],[2,6],[2,7],[-2,7],[-2,12],[-10,18],[-23,28],[-12,19],[-3,12],[-2,34],[-4,16],[-23,68],[-2,13],[-1,8],[1,6],[0,7],[1,8],[-1,7],[-4,10],[-2,7],[0,7],[1,6],[3,13],[0,7],[-3,32],[-2,11],[-5,13],[-5,10],[-4,11],[-6,29],[-10,36],[-1,12],[0,35],[-2,15],[-11,41],[-2,12],[-3,34],[-6,33],[-3,24],[-2,25],[-2,2],[-4,8],[-1,11],[-2,7],[-19,26],[-4,4],[-6,2],[-12,0],[-5,2],[-3,6],[-2,24],[-1,3],[-1,6],[0,3],[0,1],[3,4],[1,1],[-1,12],[-1,10],[-2,9],[-2,8],[-18,27],[-39,20],[-1,2],[-2,2],[-2,2],[-2,11],[-1,3],[-11,18],[-3,7],[-2,4],[-2,1],[-2,6],[-1,14],[0,6],[0,19],[-1,12],[-3,10],[-4,5],[-4,-5],[-5,-2],[-6,8],[-7,20],[-13,22],[-2,1],[-1,3],[0,56],[-2,20],[-4,16],[-35,75],[-8,10],[-3,1],[-6,2],[-3,1],[-14,22],[-8,26],[-4,9],[-3,3],[-8,5],[-8,11],[-3,2],[-18,-4],[-6,4],[-3,4],[-4,11],[-2,5],[-3,3],[-5,3],[-3,4],[-5,4],[-7,-1],[-12,-5],[-2,-2],[-7,-10],[-3,0],[-16,8],[-5,10],[-4,11],[-5,8],[-2,1],[-9,3],[-8,7],[-2,1],[-9,-5],[-2,-1],[-1,-5],[-4,1],[-6,6],[-8,2],[-2,2],[-1,3],[-1,6],[-1,5],[-4,6],[-3,9],[-7,39],[1,7],[4,8],[0,1],[1,6],[2,3],[1,4],[1,12],[2,6],[3,10],[16,34],[2,6],[1,6],[1,5],[1,3],[8,3],[5,5],[3,6],[3,8],[0,12],[-1,3],[-3,6],[-1,3],[0,8],[0,6],[1,5],[3,7],[2,4],[3,2],[2,3],[0,8],[-4,3],[-2,3],[-2,7],[-2,4],[-2,6],[-1,7],[0,4],[3,11],[0,8],[0,2],[-3,3],[0,2],[0,3],[1,4],[1,3],[0,10],[0,5],[1,4],[4,4],[4,2],[3,4],[-1,3],[-1,2],[8,15],[5,2],[30,-14],[3,1],[4,7],[2,2],[2,0],[4,-1],[19,4],[2,4],[0,2],[-1,4],[5,1],[5,-6],[4,-7],[4,-4],[6,2],[4,5],[4,3],[5,-2],[9,-15],[6,-21],[6,-16],[13,-3],[3,1],[1,1],[12,21],[3,4],[4,4],[5,2],[9,3],[16,0],[5,3],[6,7],[27,52],[6,14],[4,13],[1,14],[1,14],[-4,172],[-4,171],[-4,148]],[[59977,53205],[-17,0],[-21,1],[-1,34],[-11,2],[-8,-12],[-1,-24],[0,-1],[-2,-18],[-24,18],[-1,1],[-13,51],[-11,44],[13,73],[-21,13],[-27,0],[10,46],[-6,16],[-22,-26],[-19,-23],[-5,20],[-19,-16],[-23,-18],[-26,-20],[-22,-18],[-21,-17],[-23,-18],[-27,-21],[-19,-21],[-19,-20],[-19,-21],[-22,-24],[-28,-59],[-28,-60],[-28,-59],[-29,-59]],[[59437,52969],[-22,-49],[-23,-48],[-31,-67],[-27,-56],[-20,-44],[-1,-2],[-11,-13],[-12,-3],[-44,5],[-26,3],[-8,3],[-6,7],[-35,61],[-6,5],[-5,-4],[-16,-27],[-22,-23],[-24,-15],[-43,-8],[-51,-9],[-12,-6],[-52,-66],[-3,-8],[0,-8],[1,-21],[0,-9],[-1,-8],[0,-4],[-2,-5],[-3,-1],[-18,8],[-5,5],[-4,9],[-2,7],[-3,12],[-3,3],[-3,1],[-21,2],[-4,5],[-2,10],[-1,27],[-1,11],[-4,14],[-20,48],[-6,11],[-2,2],[-6,5],[0,1],[-1,-4],[-22,-53],[-3,-5],[-5,-4],[-29,-9],[-4,-5],[-4,-9],[0,-1],[-3,-5],[-5,2],[-36,41],[-23,27],[-10,7],[-12,4],[-13,0],[-7,-5],[-10,-17],[-8,-12],[-2,-2],[-6,-3],[-2,-2],[-9,-14],[-4,-4],[-2,-1],[-6,0],[-3,-2],[-3,-5],[-1,-7],[-1,-7],[-1,-7],[-19,-57],[-6,-25],[-1,-9]],[[58566,52537],[-3,12],[2,31],[-4,10],[-8,7],[-4,6],[-2,9],[-1,20],[-1,6],[-5,8],[-4,-7],[-5,-11],[-6,-7],[-7,0],[-4,-1],[-4,-4],[-9,-10],[-4,-2],[-5,-2],[-3,0],[-3,2],[-2,5],[0,3],[1,4],[2,7],[2,23],[0,12],[-7,87],[-3,15],[-3,2],[-3,-1],[-3,-1],[-2,-1],[-6,0],[-2,1],[-11,7],[-22,29],[-19,13],[-18,0],[-5,4],[-2,5],[0,6],[0,6],[-1,7],[-2,6],[-6,17],[-3,14],[-1,14],[-3,11],[-7,8],[-11,5],[-4,5],[-4,13],[-7,27],[-4,11],[-7,8],[-3,1],[-3,0],[-3,1],[-2,6],[-1,7],[2,6],[2,6],[1,6],[-3,12],[-6,12],[-7,9],[-6,2],[-13,0],[-7,13],[-3,22],[0,26],[2,17],[1,7],[-1,5],[-2,10],[0,5],[2,6],[1,3],[1,4],[1,6],[-3,4],[-3,3],[-6,8],[-2,1],[-6,-3],[-2,1],[-4,5],[-8,15],[-4,5],[-11,11],[-3,2],[-9,0],[-8,8],[-3,2],[-2,-1],[-4,-4],[-2,2],[-3,6],[-1,1],[-6,3],[-4,-2],[-2,-7],[-1,-21],[-1,-10],[0,-6],[0,-7],[-5,-10],[-2,-7],[-2,-13],[-2,-12],[-4,-11],[-14,-26],[-3,-9],[-2,-14],[-5,-14],[-4,-2],[-6,2],[-7,0],[-3,-7],[-1,-11],[-2,-10],[-7,-2],[-6,7],[-18,38],[-3,5],[-11,10],[0,-1],[-1,8],[-3,3],[-14,19],[-2,5],[-17,-9],[-6,-1],[-13,2],[-8,-2],[-3,0],[-7,6],[-2,11],[0,14],[-4,11],[-4,3],[-2,-3],[-3,-5],[-4,-4],[-5,0],[-3,-1],[-11,-47],[-4,-13],[-5,-5],[-11,-6],[-3,-5],[-1,-6],[-1,-7],[-2,-5],[-3,-2],[-2,1],[-3,1],[-3,0],[-6,-3],[-4,-6],[-10,-30],[-6,-10],[-6,-8],[-6,-1],[-7,4],[-2,6],[-1,8],[-2,12],[-10,15],[-11,-1],[-13,-5],[-10,3],[-6,8],[-5,11],[-8,21],[-1,12],[-2,4],[-4,1],[-3,-3],[-4,-11],[-3,0],[-9,26],[-1,5],[-1,5],[0,5],[0,6],[1,14],[1,10],[-1,6],[-14,5],[-3,-1],[-2,1],[-3,6],[-1,1],[-3,-3],[-1,-2],[0,-2],[0,-3],[-1,-2],[-1,-1],[-5,5],[-2,0],[-8,-2],[-2,0],[-3,4],[-5,12],[-3,5],[-2,1],[-7,3],[-1,0],[-2,10],[-1,14],[-1,25],[2,34],[-1,13],[-1,5],[-2,7],[-2,6],[-2,3],[-3,0],[-5,-3],[-2,0],[-4,6],[-2,10],[-2,24],[-4,14],[-5,7],[-24,6],[-6,4],[-5,9],[-1,6],[-1,12],[-1,6],[-3,6],[-8,14],[-2,2],[-2,2],[-2,2],[-1,4],[1,26],[0,8]],[[57622,53473],[-3,7],[-8,13],[-4,23],[-8,14],[-16,22],[-6,15],[-4,18],[-8,37],[-1,9],[-1,29],[-2,15],[-1,8],[1,9],[11,65],[-1,5],[1,11],[-1,5],[-3,4],[-2,-1],[-1,-2],[-1,0],[-1,-1],[-2,-1],[-1,0],[-2,6],[0,4],[1,9],[1,10],[0,4],[0,3],[-5,7],[-1,2],[-1,4],[0,5],[-1,9],[-2,10],[-3,7],[-4,5],[-6,3],[-1,5],[0,6],[-2,10],[-3,4],[-11,9],[-3,0],[-5,-3],[-3,0],[-1,3],[-2,9],[-6,8],[-3,17],[-3,7],[-12,-7],[-6,1],[-3,10],[-3,14],[-3,1],[-5,-4],[-6,-1],[-7,7],[-2,10],[-2,27],[-3,7],[-5,7],[-20,17],[-19,-2],[-9,2],[-16,12],[-5,8],[-2,10],[-3,13],[-3,10],[-5,3],[-11,-16],[-4,-3],[-1,12],[2,12],[4,10],[6,8],[5,6],[5,8],[2,11],[0,12],[-4,9],[-4,2],[-4,0],[-3,3],[0,15],[-1,15],[-4,7],[-12,5],[-5,7],[-7,19],[-4,10],[-6,6],[-4,4],[-3,5],[-2,12],[1,11],[1,11],[0,9],[-5,4],[2,7],[2,4],[3,3],[2,4],[6,24],[9,25],[4,18],[2,6],[0,7],[0,13],[-14,16],[-16,13],[-10,10],[-4,11],[-12,17],[-8,23],[-5,4],[-5,2],[-6,9],[-3,7],[-1,6],[0,7],[-1,8],[-1,3],[1,4],[0,3],[-1,2],[-2,0],[-2,-1],[-1,0],[-2,2],[-2,13],[-1,31],[-2,13],[-13,2],[-3,2],[-1,4],[0,5],[-1,4],[-3,2],[-6,2],[-3,1],[-8,11],[-2,5],[0,11],[-1,5],[-5,5],[-13,2],[-4,3],[-2,10],[0,8],[-2,5],[-7,0],[-3,2],[-4,9],[-3,3],[-5,0],[-3,1],[-6,11],[-5,5],[-18,9],[-4,5],[-12,25],[-5,5],[-4,2],[-5,-4],[-8,7],[-11,17],[-15,17],[-4,6],[-3,8],[-1,9],[-2,17],[-2,8],[-2,3],[-5,3],[-2,3],[-2,4],[-2,9],[-2,4],[-4,6],[-16,18],[-6,30],[-1,9],[0,8],[6,12],[18,13],[6,11],[1,11],[0,8],[-2,9],[-1,9],[1,25],[0,9],[-2,10],[-4,16],[-3,18],[-2,10],[-4,7],[-7,5],[-2,3],[-1,4],[-2,2],[-7,3],[-4,0],[-8,-4],[-4,-1],[-9,7],[-8,13],[-13,32],[-3,3],[-2,3],[-2,4],[-1,4],[-1,11],[-6,12],[0,21],[-3,10],[-24,47],[-9,8],[-16,4],[-9,10],[-5,2],[-6,0],[-15,6],[-20,-7],[-8,1],[-9,12],[-3,1],[-2,2],[-1,4],[-2,6],[-6,13],[-10,-2],[-18,-13],[-1,2],[-5,7],[-2,3],[-2,0],[-4,0],[-5,1],[-1,1],[-10,5],[-5,3],[-7,9],[-7,12],[-6,15],[-3,17],[1,19],[3,20],[16,56],[3,6],[11,16],[2,6],[-2,7],[-7,12],[-2,9],[1,8],[5,16],[1,8],[-5,6],[-11,-1],[-3,0]],[[56713,55616],[2,3],[0,9],[2,5],[16,25],[8,9],[31,40],[6,3],[25,6],[14,9],[3,4],[1,4],[0,63],[0,4],[2,8],[25,91],[1,5],[1,4],[5,113],[2,10],[2,7],[8,16],[17,40],[2,14],[1,7],[-1,157],[1,13],[1,3],[1,3],[1,0],[3,1],[3,1],[2,2],[3,3],[9,17],[10,12],[4,9],[7,22],[4,8],[2,6],[3,11],[1,11],[8,31],[3,18],[0,3],[0,4],[0,3],[-1,6],[-2,12],[-1,3],[0,6],[0,5],[1,6],[13,64],[3,7],[2,3],[2,2],[4,3],[4,3],[3,1],[7,-1],[4,1],[6,6],[2,0],[3,-1],[2,1],[3,2],[2,1],[1,0],[4,-1],[1,-1],[3,-3],[2,-1],[1,0],[2,-1],[1,1],[3,2],[2,1],[3,-1],[1,0],[2,0],[5,5],[1,1],[4,1],[1,0],[4,1],[3,2],[2,2],[4,3],[4,2],[3,0],[11,-1],[3,1],[4,3],[1,0],[20,15],[12,6],[2,1],[9,0],[6,2],[4,3],[2,0],[11,-1],[2,1],[3,1],[6,6],[12,7],[3,1],[1,-2],[12,-31],[2,-5],[0,-3],[0,-3],[2,-92],[1,-3],[0,-3],[2,-4],[2,-4],[10,-12],[5,-4],[7,-5],[1,-1],[2,-3],[1,-2],[1,-4],[17,-58],[3,-9],[4,-8],[22,-17],[52,-130],[52,-130],[13,-17],[6,-7],[17,-2],[3,0],[107,77],[72,4],[12,-5],[40,0],[23,-6],[1,0],[6,4],[2,0],[35,-11],[28,3],[4,2],[3,2],[28,-124],[14,-32],[110,-2],[111,-2],[1,0],[-4,14],[-1,22],[0,25],[6,23],[18,37],[21,34],[6,10],[34,38],[33,26],[64,30],[24,47],[12,43],[1,85],[8,14],[16,20],[74,76],[12,16],[66,-88],[65,-89],[74,-140],[4,-6],[4,-3],[4,5],[3,6],[6,4],[3,2],[32,2],[59,7],[20,17],[59,125],[60,125],[31,79],[7,17],[18,56],[18,98],[3,11],[66,117],[65,117],[5,19],[1,14],[-20,79],[-4,40],[-1,62],[4,96],[-1,60],[-1,7],[-1,9],[-1,4],[-73,172],[92,1],[93,1],[0,14],[0,8],[-1,7],[-3,20],[-2,28],[0,7],[0,8],[1,14],[0,8],[0,3],[0,4],[0,3],[1,2],[132,-3],[-2,-49],[-16,-114],[1,-69],[-4,-79],[-1,-6],[-4,-17],[-3,-10],[-4,-9],[-1,-3],[-1,-6],[0,-9],[14,-219],[14,-220],[-1,-11],[-1,-7],[-8,-28],[-2,-9],[0,-7],[3,-4],[61,-48],[3,-3],[2,-4],[22,-56],[61,-104],[60,-104],[4,-11],[12,-65],[2,-10],[0,-16],[0,-12],[-3,-39],[1,-18],[2,-12],[1,-13],[0,-4],[0,-4],[-1,-6],[-18,-76],[-5,-53],[-2,-46],[1,-26],[2,-17],[1,-3],[1,-3],[0,-2],[1,-1],[47,0]],[[63327,55205],[17,54],[16,54],[17,54],[17,54],[16,54],[17,53],[17,54],[16,54],[17,54],[17,54],[16,54],[17,54],[17,53],[16,54],[17,54],[17,54],[0,66],[0,67],[0,67],[0,66],[0,67],[0,66],[0,67],[0,66],[0,67],[0,66],[0,67],[0,66],[0,67],[0,66],[0,67],[0,67]],[[63594,57132],[10,1],[37,15],[36,14],[11,10],[4,12],[3,5],[3,-3],[3,-4],[3,0],[18,4],[5,2],[4,4],[15,18],[5,2],[4,5],[7,26],[4,10],[5,3],[6,1],[13,0],[1,1],[4,5],[3,2],[3,0],[8,-4],[25,-5],[13,3],[8,14],[2,0],[5,6],[3,2],[2,1],[3,6],[2,1],[2,0],[2,-1],[1,-2],[1,-1],[25,2],[5,-2],[17,19],[5,10],[3,4],[10,-1],[3,3],[2,3],[3,3],[12,7],[6,8],[23,39],[12,6],[6,7],[9,22],[8,16],[4,10],[1,12],[0,14],[2,13],[1,13],[3,11],[6,18],[4,7],[4,4],[3,1],[8,7],[1,4],[1,3],[1,1],[2,0],[2,-3],[2,-1],[6,4],[12,10],[10,5],[3,4],[7,2],[19,-28],[29,-6],[16,-28],[6,-4],[21,0],[6,-3],[9,-10],[6,-3],[6,0],[7,-2],[5,-5],[7,-4],[-4,-19],[-3,-24],[-5,-18],[2,-28],[-2,-18],[-5,-9],[-5,-17],[-9,-17],[-9,-26],[-6,-14],[-1,-4],[0,-6],[1,-9],[0,-5],[0,-14],[-2,-13],[-9,-40],[-1,-10],[-1,-39],[-2,-25],[4,-27],[12,-16],[12,-1],[5,-12],[-7,-13],[-6,-28],[-3,-10],[-3,-8],[-1,-13],[-1,-14],[3,-82],[3,-105],[7,-47],[-2,-6],[-6,-2],[-7,-5],[-2,-10],[2,-26],[-2,-12],[-2,-8],[-5,-3],[-6,-1],[-5,-4],[-5,-9],[-2,-11],[2,-9],[6,-2],[42,18],[3,-1],[3,-2],[2,1],[1,4],[-1,7],[-3,3],[-2,3],[-1,4],[-1,13],[0,12],[-2,13],[-3,12],[4,-8],[5,-7],[3,-7],[5,-6],[3,-4],[3,-3],[6,-10],[3,-4],[5,-2],[5,-2],[2,1],[3,3],[3,2],[6,-1],[5,-2],[2,-13],[4,-5],[-2,-11],[-4,-20],[-3,-2],[-1,-3],[-2,-3],[0,-8],[-2,0],[-5,4],[-4,0],[-4,2],[-5,-4],[-8,4],[-2,11],[-1,7],[-2,7],[-4,3],[-42,-11],[-20,-15],[-25,-32],[-5,-19],[-2,-36],[3,-34],[-8,-45],[1,-27],[3,-19],[1,-7],[-1,-7],[-2,-8],[-4,-42],[1,-6],[-3,-13],[-2,-11],[-3,-29],[-3,-22],[-2,-6],[1,-17],[0,-6],[-2,-11],[-2,-36],[-5,-16],[0,-18],[2,-31],[7,-38],[1,-12],[-1,-11],[-2,-11],[-17,-59],[-6,-10],[-12,-10],[-4,-7],[-4,-9],[-8,-28],[-2,-9],[3,-38],[-1,-13],[-4,-22],[-8,-21],[-30,-51],[-9,-18],[-7,-20],[-5,-18],[-3,-24],[-5,-49],[-5,-21],[-13,-34],[-2,-12],[1,-36],[-1,-11],[-4,-22],[-4,-10],[-4,-5],[-6,-4],[-2,-9],[-2,-12],[-3,-11],[-18,-50],[-2,-8],[-4,-19],[-8,-52],[-6,-23],[-10,-18],[-35,-47],[-25,-53],[-5,-17],[-3,-21],[-2,-42],[1,-7],[4,-6],[1,-13],[0,-15],[-2,-11],[-8,-24],[-8,-19],[-3,-10],[-1,-26],[-1,-10],[-29,-107],[-15,-55],[-18,-45],[-43,-127],[-20,-85],[-13,-42],[-14,-81],[-34,-153],[-1,-13],[1,-13],[3,-25],[0,-13],[-4,-52],[-9,-45],[-24,-86],[-28,-103],[-43,-140],[-14,-64],[-7,-21],[-20,-41],[-28,-99],[-33,-76],[-35,-101],[-41,-175],[-30,-93],[-30,-68],[-73,-167],[-24,-73],[-43,-93],[-36,-80],[-46,-104],[-7,-16],[-50,-124],[-37,-71],[-21,-53],[-38,-68],[-21,-44],[-17,-27],[-1,-5],[-1,-6],[-2,-5],[-1,-2],[-5,-4],[-2,-9],[-3,-12],[-2,-12],[-4,-6],[-11,-11],[-26,-58],[-3,-9],[-5,-18],[-3,-8],[-11,-15],[-5,-17],[-5,-10],[-56,-77],[-32,-38],[-29,-36],[-95,-116],[-9,-12],[-6,-3],[-3,-2],[-55,-55],[-47,-69],[-3,-6],[-3,-2],[-38,-59],[-35,-46],[-60,-100],[-31,-68],[-6,-6],[-12,-15],[-3,-6],[-1,-5],[-1,-6],[0,-12],[-1,-2],[-5,-3],[-2,-3],[-2,-5],[-19,-42],[-6,-8],[-6,-4],[-3,-5],[-13,-35],[-31,-36],[-11,-17],[-13,-39],[-5,-6],[-4,-3],[-12,-21],[-53,-109],[-51,-122],[-28,-58],[-26,-55],[-55,-131],[-34,-78],[-16,-28],[-18,-31],[-19,-41],[-7,-20],[0,-6],[0,-5],[-1,-4],[-7,-3],[-2,-4],[-11,-31],[-1,-10],[3,-6],[-3,-10],[-1,-3],[0,4],[0,3],[0,3],[-2,3],[-14,-25],[-3,-6],[-1,-10],[-5,-10],[-9,-18],[-27,-71],[-1,-5],[0,-5],[-1,-3],[-2,-2],[-1,-2],[-12,-37],[-7,-16],[-4,-6],[-4,-5],[-6,-3],[-8,1],[-4,-2],[-3,-6],[6,-3],[0,-11],[-3,-13],[-2,-6],[-4,-5],[-4,-10],[-3,-13],[-1,-11],[-1,-5],[-10,-15],[-3,-3],[-1,4],[-1,25],[0,23],[-1,10],[-2,0],[1,-9],[-1,-7],[-2,-6],[0,-7],[0,-7],[2,-8],[0,-7],[1,-7],[2,-4],[2,-2],[1,-5],[-1,-8],[-3,-12],[0,-7],[-2,-7],[-6,-13],[-2,-4],[0,-8],[-2,-6],[-1,-6],[-11,-27],[-1,-6],[1,-5],[2,0],[3,3],[2,4],[-4,-16],[-6,-1],[-6,9],[-2,16],[-1,0],[0,-12],[3,-21],[0,-11],[-1,-11],[-29,-100],[-7,-17],[-5,-17],[-11,-45],[-5,-9],[-6,-8],[-10,-35],[-6,-10],[2,0],[-7,-16]],[[61537,49465],[0,12],[1,37],[-1,11],[-3,13],[-11,30],[-14,38],[-14,39],[-14,39],[-14,38],[-13,35],[-15,42],[-14,39],[-14,38],[-7,19],[-7,20],[-7,19],[-7,20],[-1,45],[0,42],[0,41],[-1,65],[0,64],[0,64],[-1,65],[0,40],[0,40],[0,48],[0,74],[0,74],[0,74],[0,74],[0,74],[0,74],[0,74],[0,74],[0,74],[0,64],[0,10],[0,74],[0,74],[0,74],[0,74],[0,74],[0,74],[0,63],[0,63],[0,64],[0,63],[0,43],[-1,80],[0,77],[0,31],[4,17],[9,20],[23,48],[23,48],[23,48],[22,48],[15,44],[14,44],[15,44],[14,44],[23,71],[24,71],[23,71],[23,71]],[[61537,49465],[-21,-46],[-10,-33],[-2,-10],[-6,-8],[-16,-31],[-9,-26],[-6,-7],[-4,11],[-6,-4],[-4,1],[-4,6],[0,13],[-5,-12],[-2,-14],[-2,-14],[-8,2],[-11,5],[-2,0],[-4,-4],[-5,-13],[-8,-7],[-3,-8],[-3,-6],[-4,0],[-4,4],[-2,4],[-2,6],[-1,8],[0,9],[3,16],[-1,8],[0,8],[1,7],[4,13],[-10,-16],[-1,-69],[-6,-16],[-5,8],[-5,37],[-5,8],[-3,3],[-3,7],[-2,2],[-4,-9],[2,-8],[1,-8],[-1,-8],[5,4],[3,-2],[3,-6],[1,-10],[-1,-4],[-3,-3],[0,-3],[1,-6],[2,-1],[2,-1],[1,-4],[0,-44],[2,-22],[3,-15],[3,-2],[3,1],[3,0],[4,-6],[3,-8],[0,-7],[-3,-15],[-7,-18],[-6,-3],[-1,7],[9,10],[-5,3],[-4,6],[-6,15],[-1,5],[0,3],[0,2],[-3,3],[0,-2],[-2,-1],[-4,-2],[-7,-8],[-6,-16],[-6,-11],[-6,7],[1,-5],[0,-6],[2,-4],[2,-2],[1,-1],[0,-4],[-2,-7],[2,-8],[8,-11],[2,-9],[-4,-13],[-7,-16],[-9,-14],[-13,-11],[-17,-43],[-9,-8],[-9,4],[-8,8],[-9,4],[-9,-2],[-28,-19],[-12,-17],[-7,-5],[-8,-11],[-14,-24],[-3,-7],[-2,-8],[-6,-25],[-8,-22],[-1,-10],[0,-5],[5,-12],[0,-4],[-1,-9],[0,-5],[-6,-38],[0,-19],[6,-10],[-2,-15],[3,-7],[6,1],[6,9],[0,-6],[-2,-7],[-10,-20],[-6,-17],[-1,-7],[-1,-30],[-2,-10],[-9,-29],[-1,-8],[3,-21],[0,-11],[-1,-9],[-3,-9],[-3,-7],[-4,-6],[-13,-13],[-4,-5],[-7,-17],[-4,-6],[-4,-2],[2,10],[3,23],[0,8],[-5,-2],[-2,-6],[0,-8],[0,-8],[-1,-6],[-1,-14],[0,-4],[1,-3],[1,-3],[-5,-17],[-6,-32],[-7,-25],[-3,-34],[-3,-14],[-4,-7],[-2,-1],[-6,5],[-1,2],[-4,9],[-1,1],[-8,1],[1,5],[1,3],[-3,4],[-3,-10],[1,-9],[4,-6],[5,0],[-3,-8],[1,-7],[4,-3],[10,9],[3,-5],[1,-9],[1,-9],[0,-19],[-23,-131],[-7,-15],[-8,-2],[-6,8],[1,21],[-7,-8],[-1,-4],[1,-6],[2,-6],[0,-6],[2,-5],[3,-5],[6,1],[3,-4],[-1,-10],[-6,-14],[-1,-4],[-1,-5],[-2,-7],[-2,-7],[-2,-3],[-3,3],[-2,14],[-2,3],[-2,7],[1,14],[-1,8],[-5,-9],[-7,9],[-3,1],[-3,-6],[3,-5],[3,-3],[7,-4],[-2,-10],[-2,-5],[-9,-5],[-3,0],[-3,1],[-3,-1],[-1,-4],[1,-12],[0,-6],[1,-6],[4,11],[10,2],[9,-6],[6,-11],[-1,-15],[-14,-50],[-9,-49],[-9,-72],[-3,-17],[-3,8],[-2,-1],[-2,-5],[-3,-7],[0,-3],[0,-7],[-1,-4],[-4,-7],[-1,-3],[-9,-61],[-2,11],[1,17],[-1,9],[-4,-6],[-2,-8],[-1,-10],[-2,-8],[-2,0],[-2,2],[-2,0],[0,-9],[0,-5],[5,-12],[-3,-9],[-10,-3],[-10,6],[-7,17],[0,-3],[-2,-9],[-8,6],[-6,-13],[-5,-17],[-5,-8],[-2,-1],[-1,0],[0,-1],[-1,-2]],[[60886,47700],[-24,36],[-24,36],[-23,37],[-24,36],[-24,36],[-23,37],[-24,36],[-24,37],[-24,36],[-1,3],[-22,33],[-24,37],[-24,36],[-23,36],[-24,37],[-24,36],[-24,37],[-15,23],[-3,11],[-3,12],[-5,36],[-2,9],[-4,8],[-5,5],[-6,4],[-6,1],[-13,-2],[-1,8],[2,12],[1,9],[-1,5],[-5,1],[-2,5],[0,6],[0,7],[2,6],[1,6],[4,9],[6,11],[7,7],[5,1],[0,11],[1,8],[3,5],[5,1],[-6,72],[-1,8],[-4,64],[-5,15],[-23,27],[-38,46],[-21,25],[-60,71],[-60,71],[-59,71],[-60,71],[-59,71],[-60,71],[-60,71],[-59,71],[-60,71],[-47,56],[-13,15],[-59,71],[-60,71],[-14,17],[-45,54],[-60,71],[-60,71],[-21,25],[-10,1],[-4,5],[0,16],[-4,0],[-2,0],[-21,0]],[[59417,49876],[-1,120],[-1,81],[4,85],[7,122],[5,94],[0,23],[-9,61],[-9,61],[1,12],[16,46],[3,6],[22,64],[10,16],[3,8],[0,12],[-3,22],[0,11],[1,5],[5,12],[2,6],[1,5],[6,59],[1,2],[4,18],[9,12],[11,9],[9,10],[7,15],[4,25],[1,14],[1,7],[2,6],[18,19],[5,9],[4,24],[8,22],[7,38],[1,12],[1,26],[1,13],[2,12],[3,11],[6,12],[4,-3],[5,-5],[5,2],[1,0],[1,6],[2,5],[0,13],[2,11],[14,7],[9,19],[6,8],[23,5],[8,8],[4,24],[-3,24],[-5,24],[0,11],[-1,10],[17,29],[6,48],[6,20],[3,3],[6,2],[2,3],[3,6],[2,7],[9,39],[2,13],[0,115],[1,7],[5,15],[1,6],[-1,6],[-7,13],[-2,7],[-2,10],[-1,12],[0,12],[0,12],[3,26],[0,11],[-13,65],[-5,26],[-11,55],[-2,23],[3,15],[5,8],[6,7],[4,10],[0,14],[-2,10],[-8,16],[-1,12],[-2,29],[-3,8],[-2,-1],[-2,-4],[-2,-5],[-4,1],[-3,5],[-11,52],[-5,52],[-5,37],[-1,5],[-2,5],[-2,1],[-8,8],[0,2],[-1,1],[0,2],[-1,2],[-1,1],[-1,-1],[-1,-5],[0,-1],[-2,-1],[-3,-5],[-1,-2],[-4,2],[-3,6],[-4,14],[-9,21],[-3,10],[-8,90],[-3,12],[-6,9],[-13,8],[-6,8],[-3,13],[-2,73],[-4,23],[-2,7],[-3,6],[-2,6],[0,7],[0,7],[3,15],[1,5],[-2,7],[-3,12],[0,7],[1,5],[3,2],[3,2],[2,3],[6,17],[2,24],[1,47],[-2,13],[-4,5],[-5,4],[-6,6],[-9,20],[-5,4],[-7,-4],[-3,-6],[-1,-6],[-1,-2],[-4,4],[-4,24],[-6,16],[0,3],[-3,0],[-6,-3],[-5,-1],[-5,-3],[-2,0],[-4,3],[2,4],[6,8],[-4,9],[-4,3],[-1,4],[13,14],[4,8],[-1,8],[-6,7],[-6,0],[-11,-8],[-4,-2],[-7,5],[1,10],[3,14],[3,15],[0,10],[-4,6],[-4,6],[-3,7],[-2,9],[0,6],[1,6],[1,8],[1,14],[0,7],[-1,7],[-2,6],[-3,6],[-3,7],[0,8],[0,18],[-3,14],[-6,10],[-9,9]],[[61403,49256],[4,8],[7,-1],[8,-6],[6,-7],[5,-19],[-2,-12],[-5,-2],[-3,13],[0,-7],[-1,-6],[-1,-5],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-2,1],[-2,3],[-1,3],[0,1],[-4,-1],[-5,-3],[-10,-12],[-3,4],[-2,-1],[-2,-5],[-1,-8],[2,-5],[3,-3],[2,-5],[-1,-6],[-3,0],[-3,4],[-1,6],[0,7],[-7,-3],[0,14],[4,18],[4,14],[5,6],[6,4],[6,6],[2,12]],[[68939,64589],[0,1],[-7,37],[0,-19],[0,-6],[1,-3],[2,-8],[1,-3],[-1,-12],[-5,-23],[-2,-12],[0,-10],[3,-17],[1,-11],[-2,-1],[-6,8],[-7,15],[-1,-14],[-5,-1],[-5,9],[-3,12],[1,4],[4,6],[1,3],[0,11],[0,3],[2,10],[2,2],[4,0],[0,4],[-4,6],[-5,9],[-3,12],[-2,14],[2,15],[1,7],[-5,-1],[-6,8],[-3,3],[8,-52],[3,-13],[-5,-22],[-3,-11],[-3,-3],[-2,3],[-1,7],[-1,7],[0,5],[-1,3],[-3,-1],[-3,-3],[-1,-1],[-2,1],[-3,3],[-3,4],[-1,6],[-1,4],[-2,1],[-3,-1],[-2,2],[-1,6],[0,7],[-2,5],[-2,2],[-2,-3],[-4,-9],[-1,9],[-1,22],[-2,6],[-2,-14],[-3,-39],[-2,-8],[-8,2],[-8,5],[-15,13],[3,-5],[3,-7],[1,-8],[-3,-8],[-5,-3],[-6,1],[-10,6],[-3,0],[-2,-1],[-2,1],[-1,6],[1,7],[1,5],[1,4],[1,6],[2,34],[2,7],[0,4],[-1,0],[-1,1],[0,1],[0,2],[-3,-10],[-1,-25],[-2,-10],[-4,-4],[-4,2],[-3,8],[0,11],[-4,-8],[-2,3],[-3,7],[-3,6],[-4,0],[0,-5],[1,-6],[3,-6],[-15,8],[-4,5],[3,0],[2,0],[2,0],[3,4],[2,5],[3,13],[3,6],[-3,-2],[-3,-5],[-3,-3],[-3,2],[-1,6],[1,9],[2,13],[-12,5],[-3,4],[4,20],[3,6],[4,-3],[8,11],[3,5],[0,9],[-6,-10],[-6,1],[-6,6],[-7,3],[-16,-2],[-8,3],[-4,9],[-1,19],[-3,15],[-7,25],[-1,8],[-1,8],[0,29],[-1,5],[-3,6],[1,4],[2,7],[1,2],[-2,16],[5,8],[9,2],[7,-1],[-5,5],[-5,3],[-12,0],[-3,6],[0,16],[4,26],[-2,-4],[-2,-3],[-4,-5],[0,15],[-3,14],[-4,12],[-6,12],[6,10],[-2,4],[-6,2],[-3,7],[-1,8],[-1,9],[-1,8],[5,-3],[5,-1],[5,1],[5,3],[-8,10],[-5,4],[-5,3],[-5,-1],[-3,-3],[-2,2],[-1,12],[2,16],[5,16],[7,13],[7,9],[8,8],[0,5],[-2,8],[-4,5],[-2,0],[-4,-3],[-10,-4],[-2,1],[-2,13],[-1,6],[-2,4],[-3,3],[-5,-2],[-3,-2],[-3,0],[-5,4],[-2,-5],[2,-13],[-5,5],[-11,17],[-5,2],[-5,5],[-4,6],[-2,6],[-2,0],[0,-10],[0,-5],[2,-4],[-7,1],[-5,7],[-5,9],[-6,7],[-8,1],[-8,-5],[-6,-3],[-7,7],[-3,-2],[-14,-4],[-7,-5],[-4,-1],[-7,5],[1,11],[6,13],[7,7],[0,4],[-6,7],[0,23],[4,45],[1,36],[1,11],[3,10],[5,13],[2,9],[-1,13],[-4,19],[-1,11],[-2,5],[-10,17],[-4,4],[-3,5],[-15,28],[-10,11],[-3,10],[1,11],[8,-3],[3,12],[-1,15],[-7,8],[-3,11],[-3,21],[-3,15],[-5,-6],[-1,3],[0,3],[-1,2],[-3,-2],[-2,4],[-1,8],[-2,6],[-9,20],[-2,9],[-7,-4],[-7,1],[-4,7],[1,13],[-5,-7],[-5,-4],[-10,-2],[-3,1],[-6,3],[-4,0],[-1,-1],[-1,-3],[-3,-3],[-10,-4],[-5,-7],[-5,-9],[-3,-10],[-5,-21],[-2,-3],[-3,-2],[-3,-6],[-3,-6],[-1,-6],[7,0],[22,8],[4,2],[3,5],[4,10],[1,1],[1,1],[1,1],[2,0],[1,2],[-1,4],[0,4],[0,3],[6,4],[9,2],[7,0],[3,-4],[2,-7],[3,-3],[3,-2],[4,-3],[2,-5],[4,-13],[3,-6],[4,6],[5,3],[6,-2],[4,-7],[-9,-16],[11,-14],[4,-10],[-4,-9],[-4,1],[-5,7],[-8,13],[-21,19],[-14,5],[-9,-4],[-7,3],[-9,-5],[-9,-7],[-8,-3],[-25,-1],[-18,-10],[-22,-6],[-12,1],[-7,-2],[-9,-9],[-7,-4],[-10,-10],[-11,-4],[-15,-14],[-5,-2],[-6,1],[-40,22],[-5,1],[-6,-2],[-7,-5],[-6,-4],[-5,3],[1,3],[3,9],[-9,-1],[-8,-3],[-6,-5],[-6,-7],[-9,9],[-8,-5],[-5,-14],[-7,-22],[-2,-4],[-3,-3],[-4,-2],[-3,0],[-7,4],[-8,2],[-9,5],[-4,2],[-18,0],[-16,6],[-9,0],[-8,-6],[-6,5],[-9,2],[-17,-3],[-7,-6],[-7,-10],[-4,-12],[-3,-13],[-2,-15],[0,-7],[2,-7],[3,-3],[5,-2],[3,-4],[0,-7],[-2,0],[-13,-8],[-4,1],[-7,4],[-4,0],[7,22],[0,10],[-4,14],[-5,6],[-8,5],[-8,3],[-5,0],[-3,-5],[-4,-12],[-4,-3],[-3,-1],[-5,-2],[-3,-1],[-6,4],[-10,18],[-6,7],[-12,5],[-11,2],[-3,2],[-4,8],[-2,3],[-17,1],[-25,10],[0,8],[3,11],[1,10],[-2,4],[-2,3],[-3,4],[-1,8],[1,6],[3,3],[4,1],[3,0],[6,-3],[3,2],[1,9],[-1,2],[-3,2],[-4,0],[-12,-6],[-7,-1],[-3,5],[-16,-15],[-3,-8],[4,3],[1,2],[2,-11],[2,-3],[3,4],[4,8],[4,0],[3,-11],[5,-20],[-3,-11],[-2,-1],[-5,0],[-11,-3],[-4,-1],[-5,4],[-7,-6],[-11,4],[-28,20],[-19,6],[-19,-1],[-18,-5],[-9,-6],[-5,-5],[-4,-7],[-8,-16],[-4,-15],[-3,-5],[-4,3],[1,-9],[2,-8],[9,-20],[1,-2],[0,-1],[0,-4],[-1,-4],[-1,-4],[-1,-3],[-2,-1],[-8,3],[-16,14],[-10,3],[-19,-4],[-5,1],[-13,11],[-18,10],[-10,2],[-8,-4],[-18,-18],[-6,-2],[-24,4],[-47,20],[-46,3],[-22,-2],[-14,-3],[-3,-12],[0,-9],[7,-5],[-6,-5],[-7,5],[-8,-5],[-8,-8],[-6,-8],[-3,-6],[-3,-8],[-2,-9],[1,-9],[3,-7],[6,-3],[4,-4],[-2,-8],[-11,0],[-14,1],[-9,5],[6,11],[1,2],[1,1],[1,2],[3,2],[2,0],[2,1],[1,7],[-4,15],[-2,11],[-6,8],[-6,8],[-8,1],[-9,3],[-13,-1],[-12,-7],[-6,-5],[-4,-11],[-2,-10],[4,-7],[1,-13],[3,-6],[3,-7],[-6,-3],[-11,1],[-13,3],[-17,1],[-13,-4],[-4,-11],[-1,-5],[-2,-5],[-3,-18],[-3,1],[-6,-7],[-7,-5],[-10,-3],[-7,5],[-2,9],[1,13],[3,6],[-2,8],[1,5],[5,8],[3,6],[1,4],[0,8],[1,6],[3,10],[1,7],[0,8],[-1,2],[-1,-1],[-2,-2],[-1,-1],[-2,-5],[-2,-1],[-1,1],[-4,5],[-2,1],[-3,1],[-2,3],[-1,3],[-2,2],[-4,0],[-9,0],[-4,2],[-3,0],[-3,-2],[-7,1]],[[67107,65395],[9,49],[2,50],[2,59],[1,51],[1,34],[1,9],[2,5],[4,8],[2,5],[1,20],[-3,24],[-2,22],[6,15],[6,3],[5,0],[5,2],[4,10],[2,10],[3,41],[3,50],[3,37],[2,31],[3,36],[2,19],[4,16],[7,10],[33,18],[10,13],[6,5],[5,3],[12,4],[2,6],[1,14],[5,15],[10,-3],[13,-8],[10,-3],[6,6],[0,8],[-3,11],[-1,14],[2,7],[8,17],[3,10],[0,4],[-1,3],[-1,4],[1,5],[1,5],[3,2],[5,5],[3,2],[3,5],[2,2],[3,1],[6,-1],[3,1],[1,3],[3,8],[2,3],[2,2],[47,9],[6,4],[2,3],[2,5],[2,3],[3,-2],[4,-2],[2,-1],[9,4],[2,2],[2,2],[2,3],[3,10],[2,5],[3,2],[19,-1],[22,-1],[25,-1],[10,-4],[11,0],[9,3],[2,0],[3,-2],[2,-3],[2,-2],[3,0],[6,11],[3,24],[2,86],[2,9],[5,5],[11,3],[4,8],[1,10],[-2,10],[-4,10],[-2,11],[-2,66],[1,7],[1,6],[3,8],[1,6],[3,10],[5,4],[6,1],[5,-4],[-9,40],[-4,11],[-3,6],[-3,3],[-7,5],[-3,4],[-7,12],[-3,3],[-3,0],[-15,-10],[-4,0],[-5,1],[-7,-1],[-15,-8],[-7,-2],[-16,-6],[-8,-1],[-8,4],[-7,6],[-2,2],[-2,-1],[-4,-4],[-2,0],[-4,4],[-12,20],[4,1],[3,4],[2,7],[1,8],[0,10],[-1,6],[-5,13],[14,62],[2,25],[-2,30],[-2,55],[-2,30],[-2,48],[-2,35],[-7,57],[-5,41],[4,67],[4,61],[-1,21],[-6,7],[-46,-18],[-5,7],[-18,36],[-4,13],[-2,10],[-1,6],[-3,3],[-5,3],[-5,5],[-2,7],[-3,8],[-3,7],[-8,8],[-36,14],[-23,19],[-9,4],[-19,3],[-8,5],[-13,14],[-17,9],[-5,5],[-9,19],[-18,31],[-11,28],[-29,49],[-8,18],[-8,33],[-8,16],[-1,9],[-1,10],[-2,12],[-11,50],[-3,6],[-3,5],[-3,3],[-3,3],[0,4],[1,3],[2,4],[2,5],[1,6],[-1,5],[-2,4],[-5,3],[-2,9],[-2,10],[-3,9],[-3,3],[-2,0],[-3,2],[-3,6],[-1,7],[-1,15],[-1,6],[-3,10],[-9,19],[-3,12],[0,11],[4,21],[0,12],[-3,15],[-4,6],[-6,4],[-6,9],[-23,50],[-21,49],[-21,46],[-18,41],[-15,32],[-22,49]],[[66901,68152],[8,-7],[20,-12],[23,-14],[23,-14],[24,-14],[23,-14],[23,-13],[23,-14],[23,-14],[23,-14],[23,-14],[23,-14],[24,-14],[23,-13],[23,-14],[23,-14],[23,-14],[23,-14],[27,-15],[28,-11],[35,6],[8,2],[14,2],[13,3],[14,2],[13,2],[14,3],[14,2],[13,3],[14,2],[13,2],[14,3],[14,2],[13,3],[14,2],[14,2],[13,3],[14,2],[42,8],[61,-22],[51,-19],[32,-25],[8,6],[10,36],[6,16],[10,9],[75,42],[6,0],[51,-1],[38,-1],[46,-15],[14,-1],[40,22],[16,8],[17,9],[16,9],[16,9],[16,8],[16,9],[16,9],[16,9],[16,8],[17,9],[16,9],[16,9],[16,8],[16,9],[16,9],[16,9],[24,13],[22,29],[7,18],[6,18],[2,2],[2,2],[1,2],[-2,6],[-9,12],[-11,22],[-10,12],[-1,8],[0,10],[4,22],[18,68],[1,11],[0,36],[5,78],[-1,12],[-1,12],[-2,8],[-7,16],[-5,23],[1,26],[27,191],[3,8],[5,5],[37,14],[6,5],[27,49],[5,14],[9,66],[7,9],[11,3],[7,10],[6,13],[9,13],[18,17],[11,6],[16,0],[4,-4],[2,-8],[1,-13],[-1,-5],[-2,-3],[-1,-4],[1,-5],[2,-3],[3,-2],[7,-2],[5,0],[11,5],[5,0],[6,-3],[10,-10],[6,-4],[4,-1],[15,1],[18,-3],[5,2],[19,15],[16,4],[11,8],[15,5],[5,4],[17,21],[4,6],[4,5],[4,2],[12,0],[4,3],[3,11],[-2,25],[-10,6],[-23,-6],[-5,3],[-6,7],[-4,8],[-1,24],[-4,10],[-4,9],[-2,9],[3,10],[9,0],[18,-7],[9,2],[8,6],[6,8],[9,11],[18,36],[7,6],[4,1],[9,-3],[11,1],[3,3],[3,8],[5,7],[14,15],[2,4],[1,13],[1,5],[9,15],[2,5],[1,6],[6,25],[4,8],[5,0],[8,-4],[6,-6],[7,-11],[3,-8],[3,-6],[6,-1],[11,0],[11,-1],[29,-19],[11,-3],[4,3],[6,6],[4,8],[-3,5],[-5,1],[-17,0],[-6,1],[-5,4],[0,6],[5,8],[12,11],[7,5],[6,0],[9,-7],[16,-17],[16,-5],[3,-4],[2,-7],[1,-24],[2,-8],[7,-16],[13,-33],[7,-10],[12,2],[17,17],[10,6],[10,-2],[7,6],[10,13],[9,15],[4,10],[4,5],[4,8],[30,86],[8,14],[13,19],[1,2],[1,3],[-1,8],[-9,45],[-5,56],[0,13],[2,25],[0,25],[2,25],[0,13],[-1,12],[-7,34],[-3,25],[2,25],[5,22],[8,19],[6,7],[11,7],[5,7],[15,40],[3,11],[1,8],[-3,19],[0,11],[-1,4],[-2,3],[-2,2],[-3,3],[-2,3],[-1,5],[0,12],[3,8],[9,12],[7,17],[7,10],[2,3],[2,17],[-5,64],[3,10],[2,11],[8,16],[9,11],[11,3],[6,0],[9,3],[3,-2],[2,-2],[2,-1],[6,3],[13,16],[10,4],[19,-17],[12,2],[20,22],[3,1],[8,-1],[4,3],[2,5],[9,32],[3,2],[7,-4],[6,-1],[5,6],[48,71],[2,19],[-5,18],[-15,30],[-1,4],[-2,10],[-2,3],[-8,4],[-2,3],[-4,9],[-2,11],[-1,11],[0,11],[6,38],[0,14],[-1,4],[-2,3],[-5,4],[-2,3],[-1,3],[-2,10],[-2,23],[-3,6],[-12,-3],[-15,11],[-4,1],[-7,2],[-4,5],[-3,11],[-2,11],[-2,9],[-7,18],[-2,9],[-4,22],[-3,8],[-8,15],[-1,9],[3,8],[5,9],[1,9],[-1,9],[0,9],[5,8],[7,5],[15,4],[10,-1],[60,-37],[15,-3],[10,-9],[5,-2],[22,-2],[23,-9],[9,0],[37,9],[38,-1],[19,7],[5,18],[1,7],[3,2],[8,-5],[5,0],[4,2],[3,5],[3,8],[6,4],[13,5],[5,7],[1,11],[-1,10],[0,9],[3,12],[8,16],[2,8],[0,14],[-1,12],[-3,21],[0,10],[9,42],[-2,14],[-19,20],[-9,14],[-8,17],[-6,16],[-2,11],[-2,13],[1,13],[3,11],[4,3],[1,0],[5,0],[12,-3],[5,5],[3,12],[1,14],[-1,12],[-2,14],[0,9],[3,6],[19,29],[11,9],[4,7],[15,37],[4,20],[5,18],[10,14],[33,23],[4,3],[3,4],[2,7],[2,13],[3,7],[3,4],[2,4],[0,6],[-2,6],[1,26],[7,16],[19,23],[7,19],[3,12],[-1,7],[-9,12],[-15,31],[-5,15],[0,16],[9,20],[13,20],[3,9],[0,12],[-2,8],[-4,7],[-2,5],[-1,4],[-2,13],[1,11],[2,11],[0,12],[-2,8],[-5,6],[-15,13],[-6,8],[-2,10],[3,12],[5,11],[2,11],[-1,11],[-4,10],[-2,3],[-4,6],[-1,4],[-2,7],[0,5],[1,5],[-1,6],[-1,9],[-10,29],[-4,9],[-12,15],[-3,9],[-1,20],[-5,8],[-8,6],[-8,3],[-7,6],[-7,13],[-4,5],[-10,10],[-3,4],[0,3],[-1,8],[2,10],[9,15],[2,6],[1,12],[1,5],[11,12],[9,7],[2,3],[2,6],[2,12],[1,4],[18,11],[5,7],[22,41],[4,6],[5,3],[7,2],[6,6],[-2,7],[-3,9],[2,9],[6,12],[3,7],[2,9],[3,18],[3,6],[5,1],[6,-4],[16,-19],[8,-15],[4,-3],[5,0],[4,3],[3,7],[-1,8],[-4,16],[-1,19],[6,6],[18,2],[4,3],[4,5],[3,6],[4,6],[13,13],[5,8],[6,5],[11,5],[5,7],[0,6],[-1,5],[-1,5],[3,5],[3,3],[7,4],[16,4],[5,4],[-2,10],[-4,12],[1,7],[4,6],[13,9],[24,9],[12,2],[12,6],[13,-1],[5,2],[18,26],[13,11],[18,8],[19,2],[23,-6],[24,2],[8,4],[7,6],[7,3],[9,-6],[3,0],[4,2],[6,8],[5,3],[41,8],[9,-2],[8,-4],[4,0],[4,0],[14,9],[14,-2],[18,4],[9,-2],[9,-2],[36,10],[19,-1],[1,0],[17,-1],[17,-6],[8,-6],[23,-25],[8,-3],[9,-6],[8,0],[16,10],[3,6],[1,20],[2,8],[4,5],[4,2],[19,-3],[6,4],[14,19],[23,25],[7,10],[12,6],[6,0],[5,-3],[1,-1],[1,-2],[5,-13],[6,-8],[4,2],[2,19],[1,5],[0,4],[0,4],[-1,3]],[[71326,71580],[38,-159],[38,-158]],[[68715,64720],[4,-8],[6,0],[13,8],[5,-7],[2,-1],[-5,-5],[-2,-8],[-1,-8],[-8,-4],[-5,4],[-4,8],[-3,8],[-1,3],[-1,10]],[[59712,43616],[-87,2],[-10,-5],[-3,-8],[1,-11],[1,-25],[0,-24],[-2,-24],[-12,-58],[-21,-67],[-30,-94],[-5,-30],[-2,-27],[1,-3],[7,-51],[16,-121],[15,-114],[4,-66],[4,-83],[4,-71],[3,-59],[-1,-50],[0,-49],[9,-43],[1,-1],[1,-2],[4,-10],[4,-9],[5,-21],[2,-7],[0,-3],[1,-3],[3,-3],[4,-2],[36,2],[9,-4],[10,-7],[8,-11],[29,-54],[24,-46],[24,-60],[30,-74],[25,-63],[24,-59],[19,-75],[24,-63],[29,-77],[10,-26],[10,-26],[14,-29],[3,-9],[2,-10],[2,-124],[2,-5],[4,-1],[6,0],[-11,-51],[-7,-37],[-14,-66],[-2,-14],[1,-14],[1,-10],[6,-55],[8,-67],[-1,-24],[-1,-47],[-3,-74],[-1,-53],[-3,-85],[-3,-22],[-2,-15],[0,-10],[2,-18],[-1,-9],[-2,-13],[-4,-10],[-21,-28],[-3,-3],[-2,-1],[-5,2],[-3,0],[-27,-17],[-6,-1],[-2,-4],[-1,-9],[-1,-5],[-4,0],[-4,4],[-2,4],[-2,10],[-5,7],[-5,3],[-6,0],[-6,-3],[-5,-7],[-20,-36],[-1,-4],[-6,-15],[-5,-23],[-2,-27],[0,-6],[4,-17],[-2,-6],[-6,-16],[0,-3],[-2,-8],[1,-24],[-2,-10],[-4,-9],[-19,-26],[-4,-5],[5,-26],[4,-15],[1,-6],[2,-5],[3,-2],[3,-1],[6,-5],[2,-2],[1,-3],[1,-6],[1,-3],[1,-1],[3,-2],[0,-2],[7,-15],[1,-3],[1,-39],[1,-12],[5,-23],[2,-14],[-7,-13],[-1,-12],[1,-23],[-1,-2],[-2,-3],[-1,-3],[0,-4],[1,-2],[9,-11],[2,-5],[-1,-8],[-3,-11],[-1,-10],[3,-22],[0,-12],[-1,-10],[-1,-8],[-2,-7],[-16,-3],[-28,2],[-15,5],[-4,8],[1,15],[-9,29],[2,18],[6,11],[7,7],[6,9],[3,16],[1,19],[0,21],[-3,19],[-6,9],[-9,1],[-8,-2],[-8,3],[-8,13],[-5,14],[-3,6],[-4,5],[-1,2],[-5,1],[-2,3],[-1,4],[-1,11],[-1,5],[-2,3],[-2,4],[-5,4],[-5,5],[-2,10],[-2,12],[-3,8],[-12,23],[-3,8],[-5,20],[-4,8],[-17,19],[-2,2],[-2,2],[-4,18],[-1,5],[-2,5],[-9,14],[-3,7],[-3,9],[-8,41],[-6,13],[-13,4],[-9,1],[-6,11],[-11,52],[1,20],[5,38],[-1,17],[-4,13],[-24,51],[-4,5],[-9,9],[-3,6],[-3,16],[-1,22],[2,20],[2,15],[8,18],[5,8],[5,4],[6,4],[3,4],[17,49],[3,19],[1,24],[-2,35],[0,20],[3,10],[5,6],[6,18],[5,7],[2,7],[2,15],[1,8],[3,8],[3,5],[4,4],[4,6],[5,15],[1,16],[-3,42],[-3,45],[1,10],[2,7],[0,7],[-2,7],[-1,8],[2,9],[6,16],[2,9],[0,10],[-2,9],[-3,9],[-2,9],[-2,12],[-1,10],[0,43],[-1,19],[-3,18],[-5,19],[-3,20],[4,35],[0,20],[-5,19],[-14,29],[-7,17],[-9,39],[-3,11],[-3,7],[-8,8],[-2,-1],[-2,-2],[-2,-4],[-2,-3],[-2,-1],[-5,1],[-2,0],[-27,-21],[-21,-1],[-9,-8],[-2,-6],[-3,-15],[-2,-3],[-29,9],[-8,0],[-8,-4],[-16,-21],[-8,-6],[-8,2],[-15,24],[-6,-4],[-4,-14],[-2,-17],[0,-20],[-1,-11],[-3,-4],[-5,3],[-3,6],[-2,8],[-2,10],[-4,22],[-2,8],[-4,5],[-7,7],[-3,5],[-3,8],[-1,7],[-2,8],[-4,6],[-11,11],[-4,6],[-5,14],[-14,59],[-5,15],[-4,15],[-1,3],[-1,4],[-3,2],[-4,5],[-2,6],[-7,24],[-1,10],[1,30],[-3,17],[-6,10],[-16,17]],[[59222,42170],[-4,12],[-9,34],[-4,7],[-3,-3],[-2,-15],[-3,-5],[-10,-6],[-3,-5],[-4,-8],[-9,-30],[-5,-2],[-6,17],[-2,9],[1,30],[1,3],[-1,4],[-1,5],[-2,2],[-5,-1],[-3,4],[-1,10],[-1,8],[-1,9],[-14,36],[-4,7],[-8,7],[-11,4],[-8,8],[-1,16],[3,6],[10,10],[2,7],[-1,7],[-11,31],[-7,7],[-10,0],[-9,4],[-3,19],[1,12],[2,5],[4,-1],[6,-4],[3,1],[8,14],[3,5],[11,3],[3,5],[1,13],[0,11],[1,10],[2,6],[5,2],[8,8],[5,23],[4,32],[4,33],[5,23],[7,19],[8,5],[2,8],[-1,7],[-5,13],[-2,10],[-1,10],[0,11],[4,65],[8,36],[1,17],[-3,14],[-6,13],[-8,10],[-2,7],[-1,43],[1,11],[3,16],[10,31],[9,35],[3,8],[4,8],[2,2],[2,-1],[2,-4],[1,-4],[2,-4],[2,2],[3,5],[2,2],[4,3],[2,0],[3,-1],[2,-4],[3,-13],[1,-3],[3,0],[2,3],[0,4],[2,3],[2,2],[1,2],[1,3],[3,2],[4,5],[5,20],[3,8],[2,2],[8,3],[3,-1],[3,-3],[2,-3],[2,-1],[6,3],[7,8],[5,12],[5,14],[3,6],[8,7],[3,7],[0,14],[1,5],[5,1],[2,10],[7,9],[1,2],[2,9],[0,13],[-3,2],[-5,0],[-11,8],[-20,-13],[-10,7],[-5,17],[-5,42],[-4,19],[-3,8],[-8,16],[-2,9],[0,20],[1,20],[11,54],[2,30],[2,10],[1,9],[-1,9],[-3,13],[0,9],[3,22],[1,22],[-3,96],[-1,10],[-4,9],[-5,1],[-5,-1],[-4,0],[-5,4],[-1,4],[4,19],[2,11],[0,7],[-1,51],[3,8],[7,-12],[2,8],[0,7],[0,8],[0,8],[1,4],[5,3],[1,3],[0,4],[0,6],[0,4],[19,63],[4,17],[3,18],[-9,33],[-6,13],[-6,14],[-4,17],[-2,18],[-1,17],[-1,18],[-2,19],[-4,7],[-4,-1],[-3,0],[-3,3],[1,8],[2,11],[3,2],[3,-2],[3,0],[4,5],[5,17],[4,6],[3,3],[7,3],[4,3],[4,1],[9,-4],[5,0],[3,3],[5,11],[5,2],[5,7],[3,10],[5,24],[13,32],[4,5],[4,4],[10,16],[5,8],[4,15],[0,2],[0,2],[0,6],[-2,11],[0,15],[-8,3],[-4,10],[-5,27],[-2,5],[-8,14],[-3,7],[-7,37],[-1,14],[2,33],[-1,19],[-4,9],[-5,8],[-5,15],[-8,5],[-5,9],[-4,10],[-6,11],[-23,21],[-3,11],[0,15],[1,15],[5,28],[9,27],[2,12],[-2,17],[-5,23],[-1,5],[-11,8],[-3,4],[-3,6],[-3,7],[-4,16],[-3,7],[-7,9],[-2,9],[-1,8],[1,6],[1,5],[1,6],[0,9],[-2,8],[-4,15],[-5,8],[-15,2],[-7,6],[-1,-15],[-1,-18],[-3,-10],[-6,4],[-1,6],[-1,7],[-1,6],[-3,3],[-4,-2],[-3,-4],[-3,-3],[-4,3],[-3,16],[5,42],[0,17],[-3,2],[-4,8],[-2,2],[-3,0],[-2,-3],[-1,-1],[-3,5],[-1,8],[-1,34]],[[59144,44898],[4,10],[6,5],[5,1],[5,-6],[14,-29],[17,-28],[2,-2],[8,-4],[8,-7],[1,-1],[3,2],[3,7],[2,1],[4,1],[6,-4],[3,-1],[3,2],[4,6],[3,1],[4,-4],[16,-23],[5,-10],[5,-22],[3,-11],[5,-7],[5,-3],[12,-2],[8,4],[7,8],[6,6],[10,-2],[8,-5],[8,-3],[7,2],[7,9],[9,5],[8,-10],[7,-15],[7,-10],[7,-6],[7,-10],[7,-12],[3,-11],[3,-5],[5,10],[0,4],[4,6],[2,6],[1,8],[1,10],[1,18],[1,11],[-5,26],[4,15],[6,11],[4,8],[4,9],[10,-7],[9,-12],[0,-1],[3,-7],[4,-4],[9,-24],[2,-3],[5,-11],[8,-8],[27,-60],[8,-6],[2,-8],[1,-11],[1,-11],[2,-5],[6,-13],[1,-1],[5,-11],[0,-2],[28,-73],[3,-12],[9,-25],[3,-20],[0,-6],[0,-7],[-3,-12],[0,-6],[2,-20],[9,-44],[3,-31],[2,-13],[1,-7],[-1,-7],[-5,-64],[1,-13],[5,-19],[2,-11],[-1,-5],[-3,-14],[0,-7],[0,-3],[0,-5],[2,-8],[1,-8],[3,-7],[2,-2],[2,0],[1,0],[1,-1],[1,-7],[0,-11],[1,-4],[6,-15],[2,-12],[0,-13],[-3,-12],[1,-5],[1,-3],[1,-3],[2,-3],[2,-4],[0,-8],[-3,-5],[-2,-5],[1,-16],[-3,-37],[0,-26],[-1,-6],[-5,-24],[-3,-7],[-5,-15],[-1,-15],[1,-12],[3,-25],[1,-14],[2,-11],[14,-24],[1,-5],[1,-6],[1,-3],[5,-3],[2,-3],[2,-5],[1,-5],[1,-14],[2,-11],[4,-9],[4,-5],[0,-4],[-1,-2],[-3,-4],[-1,-1],[6,-25],[2,-4],[1,0],[4,7],[2,1],[2,0],[12,-9],[7,-7],[5,-10],[2,-12],[1,-5],[6,-9],[2,-16],[3,-6],[2,-5],[1,-4],[1,-4],[1,-5],[2,-7],[0,-9],[0,-30],[1,-5]],[[59637,43363],[6,-1],[6,-5],[4,-6],[3,-12],[-1,-15],[-3,-14],[-5,-11],[-5,-7],[-7,-3],[-5,4],[-4,13],[0,12],[2,14],[5,26],[4,5]],[[59600,43376],[10,5],[8,-10],[4,-18],[-3,-21],[-5,-12],[-5,1],[-3,7],[-4,11],[-7,17],[-1,10],[6,10]],[[59144,44898],[-4,6],[-21,17],[-13,18],[-2,0],[-5,-1],[-2,2],[-1,4],[-1,9],[-1,5],[-4,8],[-4,4],[-19,4],[-24,11],[-11,2],[-4,5],[-4,13],[-5,27],[-3,8],[-10,15],[-11,5],[-36,-1],[-6,1],[-6,5],[-5,8],[-11,22],[-2,3],[-3,4],[-3,0],[-5,-3],[-3,0],[-3,2],[-8,9],[-7,3],[-4,-4],[-4,-7],[-6,-5],[-12,6],[-6,23],[0,30],[6,24],[-42,24],[-6,-2],[-10,-10],[-5,-5],[-6,0],[-5,4],[-26,44],[-7,18],[-2,25],[0,22],[-2,15],[-5,10],[-11,7],[-4,5],[-6,15],[-5,5],[-4,0],[-4,0],[-3,0],[-4,5],[-1,5],[-1,10],[-1,4],[-2,3],[-1,-1],[-1,-2],[-2,-2],[-3,-1],[-15,-11],[-2,-3],[-2,-2],[-4,2],[-3,4],[-5,15],[-3,5],[-7,0],[-6,-6],[-5,-9],[-6,-6],[-12,0],[-12,9],[-12,15],[-9,15],[-19,42],[-17,54],[-14,59],[-7,56]],[[58542,45617],[-7,53],[-20,105],[-60,196],[-7,56],[-3,39],[-10,74],[-20,96],[-17,54],[-40,99],[-22,39],[-12,13],[-27,29],[-37,60],[-9,20],[-6,22],[-14,80],[-19,51],[-8,28],[-3,24],[-5,70],[-8,67],[-1,23],[6,38],[21,59],[8,34],[3,45],[-5,50],[-27,136],[-11,95],[-22,85],[-9,48],[-1,4],[-5,47],[-1,50],[6,50],[16,97],[3,50],[-1,24],[-1,7]],[[58167,47834],[65,2],[14,-7],[11,-2],[2,-1],[3,6],[1,6],[0,8],[1,8],[2,4],[4,5],[2,5],[0,9],[1,2],[4,6],[3,-1],[3,-3],[5,-1],[2,1],[15,15],[10,20],[10,12],[2,4],[7,8],[3,9],[7,36],[3,9],[19,34],[8,21],[7,24],[1,4],[4,22],[5,43],[3,12],[15,32],[10,39],[7,10],[13,-9],[1,11],[-1,9],[-2,9],[-1,10],[0,11],[2,11],[12,38],[2,11],[0,11],[-1,12],[2,7],[8,12],[0,2],[1,7],[1,2],[5,2],[0,-2],[6,1],[0,2],[0,5],[1,1],[7,4],[2,1],[2,4],[4,10],[13,13],[7,15],[1,15],[-9,10],[-2,2],[5,13],[6,11],[6,8],[7,6],[4,1],[3,3],[1,6],[1,7],[8,-8],[7,2],[7,9],[4,16],[0,4],[-1,10],[0,5],[4,12],[2,14],[0,7],[0,8],[-1,4],[-4,5],[-1,5],[1,3],[1,8],[0,3],[-3,9],[-7,13],[-1,9],[2,9],[8,21],[1,4],[2,7],[-6,0],[-13,-8],[-7,-1],[-4,2],[-6,9],[-3,3],[-4,-1],[-3,-2],[-2,-2],[-4,2],[-1,3],[-1,9],[0,4],[-2,2],[-3,3],[-18,23],[-3,1],[-3,-3],[-4,-6],[-5,-16],[-2,-2],[0,1],[-1,7],[-2,5],[-2,5],[1,6],[-5,3],[-4,9],[-7,19],[0,10],[3,13],[6,18],[0,15],[1,9],[2,8],[16,35],[2,12],[-6,-5],[-10,-10],[-6,-4],[-6,0],[-3,6],[1,15],[3,7],[6,14],[3,7],[1,6],[2,19],[11,55],[4,12],[9,25]],[[58487,49048],[5,7],[6,-2],[6,-4],[6,1],[3,6],[4,16],[3,5],[4,1],[3,-2],[14,-15],[3,-1],[2,1],[2,2],[4,2],[4,6],[5,4],[4,6],[2,11],[2,12],[-2,40],[3,26],[9,66],[-2,18],[-3,8],[-4,9],[-5,6],[-5,-3],[3,35],[-1,15],[-8,3],[2,5],[1,4],[5,7],[-2,11],[1,9],[3,9],[1,10],[-2,24],[-1,6],[3,16],[0,6],[-3,8],[0,3],[0,6],[3,47],[1,15],[-2,13],[-7,-6],[-4,7],[-3,14],[-3,21],[-1,5],[-3,7],[-5,14],[-2,7],[2,4],[1,7],[0,15],[-1,16],[-6,7],[-5,1],[-19,15],[-2,3],[-4,8],[-3,5],[-8,7],[-4,6],[-1,9],[0,5],[0,3],[1,3],[0,2],[0,5],[-3,7],[-1,12],[-5,18],[-2,8],[-1,16],[-1,3],[-4,5],[-1,0],[-2,-2],[-2,-1],[-2,3],[-1,4],[1,4],[1,3],[0,3],[0,9],[-4,5],[-1,7],[0,6],[3,7],[2,5]],[[58464,49838],[0,1],[2,3],[4,0],[2,-3],[1,-3],[2,-2],[3,1],[5,2],[14,3],[6,-2],[7,-4],[4,6],[10,23],[4,4],[10,7],[11,12],[9,-5],[5,-5],[18,0],[51,0],[51,0],[5,0],[45,0],[51,0],[51,0],[49,0],[2,0],[51,0],[51,0],[51,0],[50,0],[35,0],[16,0],[51,0],[51,0],[43,0],[8,0],[49,0],[2,0],[50,0],[23,0]],[[60886,47700],[2,-4],[4,-3],[2,-17],[-1,-19],[-5,-10],[-8,-8],[6,-5],[4,-1],[3,-3],[0,-14],[0,-12],[-1,-10],[-2,-10],[-9,-32],[-3,-7],[-2,9],[1,11],[2,12],[1,11],[-2,10],[-5,-30],[-4,-11],[-6,1],[5,-16],[0,-6],[1,-33],[0,-6],[-2,-3],[-5,3],[-2,-2],[-1,-3],[-3,-12],[0,-8],[4,1],[9,7],[0,-8],[3,-15],[0,-5],[-1,-5],[-10,-19],[-2,-5],[-6,-25],[-8,-27],[-1,-4],[2,-4],[3,4],[4,12],[2,-7],[-12,-75],[-3,-13],[-4,-11],[-3,-4],[-3,-3],[-2,-5],[-1,-8],[1,-5],[2,-2],[2,-4],[0,-9],[-3,-23],[-8,-35],[-10,-31],[-9,-13],[4,-3],[-2,-13],[0,-27],[-3,-11],[-4,-10],[-5,-22],[-6,-19],[-2,-13],[-1,-14],[0,-38],[-1,-6],[-2,-4],[-1,-5],[-2,-6],[0,-2],[-1,-15],[-3,-12],[-2,-13],[0,-14],[1,-4],[4,-8],[1,-4],[3,-23],[1,-6],[1,-3],[7,-9],[4,-8],[0,-3],[2,-23],[-1,-14],[-2,-13],[-3,-8],[2,-15],[1,-33],[3,-15],[3,-5],[4,-3],[2,-4],[2,-6],[0,-6],[1,-7],[2,-6],[2,-5],[2,-3],[1,-1],[4,0],[2,-2],[1,-4],[1,-4],[1,-3],[3,-1],[8,-1],[3,-4],[3,-2],[3,2],[0,5],[-3,2],[-4,4],[-6,8],[8,-6],[6,-5],[15,-31],[10,-23],[7,-12],[2,-5],[4,-15],[3,-5],[4,-6],[3,-5],[2,-6],[1,-8],[0,-8],[2,-14],[4,-17],[5,-7],[5,10],[1,-17],[-2,-23],[1,-21],[5,-12],[0,11],[0,5],[-2,5],[5,-1],[4,-3],[8,-11],[5,-2],[8,-2],[3,-4],[5,-3],[10,0],[2,-3],[1,-8],[5,-14],[2,-18],[14,-37],[1,-4],[-1,-6],[-1,-4],[-2,-3],[0,-3],[2,-38],[0,-16],[-4,1],[-3,-8],[-2,-16],[-2,-7],[-3,-5],[-3,0],[-2,6],[-1,10],[-11,-18],[-1,0],[-2,-7],[-1,-10],[-1,-10],[-1,-8],[-3,-9],[-4,-6],[-2,-1],[-2,-1],[-2,-2],[0,-4],[1,-5],[1,-5],[-2,-7],[-3,-1],[-5,0],[-3,0],[2,-10],[3,-6],[2,-8],[0,-12],[-1,-9],[-3,-12],[-2,-11],[-8,-14],[-3,-23],[-5,-65],[0,-12],[2,-12],[3,-19],[1,-12],[-2,-8],[-1,-9],[5,-21],[-2,-11],[-12,-30],[8,4],[6,14],[4,20],[3,19],[4,-7],[3,-8],[1,-9],[-5,-9],[11,2],[5,-1],[4,-7],[8,-16],[1,-8],[-2,-15],[-4,-19],[0,-7],[3,-21],[0,-23],[1,-10],[4,5],[2,3],[-1,-18],[-4,-17],[-8,-30],[-10,-53],[-4,-17],[-2,2],[-1,0],[0,-1],[-3,-1],[2,-8],[0,-21],[0,-11],[-3,4],[-1,-5],[-1,-11],[-5,10],[-2,4],[-3,2],[3,-9],[0,-7],[-2,-5],[-4,-3],[3,-15],[2,-16],[2,-16],[0,-18],[-2,-35],[1,-16],[9,-21],[4,-13],[2,-15],[1,-14],[0,-49],[-2,-12],[10,-6],[2,-3],[0,-5],[1,-4],[3,-2],[6,-1],[2,-3],[0,-8],[1,-12],[2,-10],[4,-4],[3,-3],[3,-6],[3,-8],[3,-21],[3,-9],[8,-13],[2,-5],[-4,-3],[-4,1],[-2,1],[-4,7],[0,1],[-6,11],[-5,14],[-4,5],[-6,-1],[-3,-3],[-2,-1],[-1,-1],[-5,-17],[4,-4],[17,4],[-4,-10],[-1,-6],[2,-4],[6,-1],[4,-3],[0,-8],[-1,-12],[-1,-13],[1,-2],[3,-4],[0,-2],[0,-12],[0,-1],[-1,-6],[-1,-2],[1,-1],[1,-1],[2,-2],[0,-4],[-1,-5],[-1,-4],[-1,-4],[0,-7],[2,-9],[0,-5],[-1,-6],[4,2],[5,5],[4,6],[3,5],[4,1],[4,-8],[12,-32],[5,-17],[1,-18],[-4,-19],[-1,-4],[2,-5],[2,-5],[1,-5],[0,-6],[-1,-12],[-1,-6],[1,-19],[-1,-8],[-3,-10],[-4,-6],[-3,-2],[-2,1],[-5,-1],[-3,-3],[-2,-6],[0,-8],[1,-11],[3,2],[3,2],[6,0],[0,7],[2,2],[3,-3],[1,-4],[1,-1],[1,-1],[3,-3],[1,-6],[-1,-7],[0,-4],[2,-6],[7,-13],[2,-11],[3,-32],[3,-9],[4,-6],[-1,-4],[-2,-4],[0,-4],[1,-7],[1,-4],[4,-8],[2,-6],[-1,-12],[2,-12],[-2,-4],[-6,-4],[-4,-9],[-2,-5],[3,-3],[11,1],[2,-1],[1,-4],[2,-16],[2,-6],[4,-7],[2,-4],[2,-7],[2,-17],[-2,-12],[-5,-6],[-8,2],[2,-8],[8,-13],[0,-5],[-3,-4],[-9,-9],[-9,-4],[0,-7],[3,-15],[0,-11],[-2,-8],[-3,-7],[-4,-6],[7,3],[13,33],[5,-2],[4,-4],[8,1],[6,-12],[4,-1],[4,0],[4,-1],[7,-12],[17,-58],[0,-35],[2,-17],[3,7],[2,9],[0,11],[-2,9],[-2,12],[0,5],[4,0],[5,-1],[4,-3],[9,-8],[5,-2],[11,-9],[2,1],[0,-1],[1,-6],[0,-8],[-2,-8],[-1,-9],[2,-10],[1,-5],[-2,-3],[-3,-3],[0,-3],[1,-5],[1,0],[2,1],[1,0],[5,-6],[2,-1],[1,5],[0,6],[1,4],[2,0],[3,-2],[3,-5],[7,-12],[3,-5],[0,5],[0,4],[1,3],[1,4],[2,-3],[2,-1],[1,1],[3,3],[-5,3],[-14,13],[9,25],[4,-3],[1,-6],[1,-9],[2,-7],[2,-4],[6,-6],[3,-6],[2,-5],[9,-42],[2,-6],[1,1],[9,-3],[2,-2],[9,6],[1,12],[-3,9],[-5,-2],[-1,7],[1,5],[2,3],[4,1],[2,-2],[1,-5],[1,-6],[2,-5],[2,-11],[-2,-10],[-5,-8],[-3,-10],[1,1],[4,-1],[2,0],[-3,-20],[-1,-6],[1,-5],[2,-4],[1,-6],[0,-8]],[[61232,44266],[-5,-17],[-8,-18],[-10,-16],[-18,-13],[-11,-16],[-16,-35],[-6,-14],[-3,-7],[-8,-6],[-34,-57],[-6,-6],[-28,-25],[-28,-41],[-7,-6],[-47,-21],[-21,-4],[-5,-3],[-4,-5],[-55,-92],[-6,-7],[-7,-5],[-8,0],[-5,5],[-12,13],[-6,3],[-9,-9],[-9,-4],[-37,1],[-9,-5],[-8,-14],[-4,-7],[-6,-3],[-4,-5],[-11,-22],[-5,-6],[-3,1],[-6,3],[-3,0],[-3,-1],[-6,-5],[-8,-5],[-5,-8],[-6,-17],[-27,-39],[-7,-18],[0,1],[-9,10],[-22,11],[-9,11],[-16,34],[-10,14],[-13,4],[-2,-1],[-7,-6],[-3,-1],[-3,2],[-5,9],[-3,1],[-1,2],[-1,5],[-1,2],[-2,-1],[-1,-1],[-1,-2],[0,-1],[-2,1],[-6,0],[-16,-6],[-3,-6],[-2,-1],[-12,-2],[-4,-2],[-18,-21],[-2,-5],[0,-8],[-5,-27],[-2,-7],[0,-11],[-6,-25],[-2,-13],[1,-8],[2,-7],[0,-8],[-2,-8],[-3,-6],[-6,-9],[-20,-18],[-13,-21],[-5,-6],[-6,-3],[-9,0],[-6,-2],[-10,-11],[-6,-3],[-3,-3],[-2,-7],[-2,-9],[-1,-5],[-2,-5],[-2,-2],[-6,-2],[-6,0],[-14,9],[-2,2],[-5,11],[-3,3],[-3,0],[-2,-3],[-2,-2],[-3,-3],[-10,-2],[-12,2],[-23,12],[-10,10],[-10,17],[-7,20],[-4,18],[-4,-6],[-3,-4],[-2,-2],[-26,-5],[-4,2],[-7,9],[-5,1],[-3,3],[-5,-3],[-12,-32],[-8,-23],[-3,-5],[-3,-4],[-10,-8],[-3,-5],[-1,-3],[-2,-3],[-8,-2],[-4,-3],[-17,-6],[-5,1],[-7,8],[-2,1],[-1,3],[-2,14],[-2,3],[-33,0],[-1,-1],[-1,-3],[-2,-3],[-9,-3],[-10,-6],[-4,0],[-3,1],[-4,6],[-4,1],[-11,-4],[-3,5],[-3,10],[-1,12],[2,9],[-2,12],[0,14],[-2,11],[-4,4],[-3,1],[-2,3],[-2,4],[-2,4],[-3,3],[-6,3],[-2,2],[-11,13],[-5,6],[-4,-1],[-6,-3],[-5,6],[-2,11],[2,13],[-5,12],[-3,4],[-11,0],[-2,1],[-7,7],[-12,4],[-4,-5],[-8,-23],[-5,-8],[-14,-5],[-5,-7],[2,-13],[-3,-4],[-3,-8],[-3,-8],[-2,-12],[-2,-4],[-15,-8],[-1,0],[-6,-8],[-5,2],[-4,4],[-3,0],[-1,-11],[-3,3],[-1,3],[-1,4],[-1,4],[-3,4],[-1,1],[-1,-2],[-2,-1],[-4,-3],[-1,-1],[-7,1],[-2,2],[-2,4],[-1,3],[-11,-1],[-116,3]],[[61082,45947],[4,-10],[-1,-20],[-4,-39],[-8,-39],[-4,-11],[0,-4],[0,-4],[-1,-4],[-1,-12],[-1,-3],[-3,-7],[0,-4],[-2,-7],[-3,0],[-8,5],[-8,-6],[-3,-13],[-2,-13],[-3,-8],[-11,-9],[-5,-3],[-5,0],[-5,4],[-8,17],[-4,7],[2,2],[5,0],[2,2],[1,2],[0,4],[1,4],[1,0],[0,4],[2,1],[2,0],[1,1],[12,25],[4,13],[-2,7],[1,10],[3,5],[5,1],[5,0],[4,2],[9,8],[5,2],[-2,5],[-2,1],[-7,-2],[0,4],[3,2],[3,3],[5,7],[6,6],[2,4],[2,15],[3,9],[2,8],[3,3],[1,3],[3,16],[1,6]],[[60984,46726],[1,-5],[7,-28],[-1,-26],[-7,-18],[-10,-7],[-10,7],[-4,7],[-4,11],[-3,12],[-5,50],[0,9],[-6,-4],[0,-7],[3,-7],[2,-8],[-1,-14],[-1,-3],[-8,6],[1,12],[-1,9],[-8,16],[-8,29],[-3,4],[-2,4],[-4,-5],[0,-4],[2,-1],[0,-1],[0,-3],[0,-3],[-3,5],[-2,-9],[1,-13],[3,-7],[0,-1],[-1,-1],[-1,0],[-2,2],[-3,3],[-1,3],[0,2],[-14,34],[-3,10],[-4,26],[-2,11],[10,26],[-2,34],[-6,37],[2,33],[-1,7],[1,7],[0,6],[2,5],[0,-4],[3,-6],[0,-3],[5,16],[10,18],[5,11],[2,19],[2,43],[5,11],[3,-18],[9,-32],[1,-21],[-2,-25],[0,-9],[1,-10],[2,-16],[1,-9],[1,-9],[6,-19],[3,-27],[1,-2],[6,-2],[1,-8],[-1,-7],[-1,-8],[-1,-8],[0,-9],[1,-7],[1,-7],[2,-7],[-3,-9],[-2,-5],[-1,-6],[4,3],[3,-3],[2,-7],[3,-5],[0,9],[2,5],[2,1],[1,-7],[2,0],[0,1],[0,3],[5,-3],[0,13],[-1,17],[0,13],[5,-13],[3,-17],[5,-87]],[[61011,47263],[0,21],[2,10],[2,8],[-2,6],[4,1],[10,-3],[-3,8],[-5,15],[-2,10],[4,-3],[6,-1],[5,2],[2,6],[-3,1],[-2,2],[-3,4],[-1,5],[4,0],[7,3],[4,1],[5,-6],[3,2],[2,12],[-6,-5],[-7,4],[-12,17],[-3,-3],[-4,2],[-3,6],[-2,8],[3,-3],[2,-3],[2,-1],[3,3],[2,-2],[10,-3],[5,0],[-2,5],[2,11],[-1,10],[-3,3],[-4,-8],[2,12],[0,3],[-1,5],[-2,3],[-3,0],[-3,-4],[0,7],[1,2],[1,4],[-1,7],[0,8],[1,7],[2,0],[4,-3],[1,2],[0,5],[-2,6],[-2,3],[-9,7],[1,6],[4,7],[1,6],[-4,-4],[-3,11],[2,8],[4,3],[5,-6],[1,9],[-4,6],[-4,5],[-3,8],[0,7],[1,17],[1,9],[0,-3],[1,-3],[1,-2],[1,0],[2,-3],[1,-5],[1,-6],[1,-3],[3,1],[1,5],[0,4],[2,3],[1,-2],[5,-10],[1,-3],[13,-15],[2,-5],[0,-7],[1,-6],[1,-2],[2,5],[0,5],[-2,5],[1,7],[3,7],[0,-4],[1,-5],[1,-3],[2,10],[1,12],[1,11],[-1,7],[4,-5],[0,-12],[0,-14],[3,-22],[-3,-11],[-5,-8],[-4,-4],[1,-11],[-1,-11],[-1,-12],[-1,-11],[2,-18],[1,-3],[2,3],[0,5],[0,6],[0,3],[4,-3],[0,-11],[-2,-22],[0,-35],[-2,-10],[2,-4],[-3,-9],[-8,-52],[-2,-6],[-1,-3],[-1,-4],[0,-10],[-1,-7],[-3,-2],[-1,5],[1,11],[-1,0],[-2,-10],[-1,-4],[-2,-3],[1,-6],[-1,-6],[-3,-7],[-4,-5],[-3,-1],[-1,2],[1,4],[3,3],[0,4],[-4,-2],[-3,-4],[-2,-1],[-2,7],[-10,0],[-4,2],[-2,8]],[[61039,45735],[9,2],[6,-1],[1,-8],[-3,-8],[-11,-27],[-8,-16],[-5,1],[-2,10],[2,15],[3,12],[8,20]],[[60896,47053],[-1,-8],[2,-11],[2,-7],[-2,-6],[2,-8],[0,-11],[-4,-2],[-3,0],[0,9],[0,10],[1,17],[-1,12],[4,5]],[[60993,47275],[2,-3],[4,-5],[3,-9],[3,-11],[5,-3],[4,-2],[3,-8],[-1,-7],[-7,-1],[-5,8],[-5,11],[-2,7],[-3,7],[-3,9],[2,7]],[[59991,70990],[-1,11],[-5,18],[-2,16],[-3,9],[0,5],[0,24],[-1,4],[-5,15],[-1,6],[-2,12],[-9,42],[2,2],[0,3],[2,3],[0,5],[0,4],[-2,3],[0,5],[2,2],[0,1],[-1,0],[-1,5],[3,8],[1,4],[2,4],[2,9],[-1,9],[-2,8],[-1,7],[0,28],[2,7],[13,35],[6,10],[-3,16],[-10,38],[4,20],[-2,10],[-2,38],[1,9],[-3,4],[-13,32],[-6,5],[-3,3],[-1,6],[-2,4],[-5,-2],[-4,-2],[-1,-2],[-3,3],[0,6],[1,9],[1,7],[-2,3],[-10,9],[1,3],[0,6],[1,3],[-2,0],[-3,-4],[0,4],[5,3],[6,6],[4,9],[1,11],[0,6],[-3,8],[0,8],[1,4],[7,4],[11,36],[0,3],[0,14],[-1,11],[-3,14],[-4,13],[-4,8],[14,-1],[7,3],[2,8],[2,12],[7,19]],[[59975,71741],[2,-2],[6,2],[5,4],[6,1],[3,-7],[0,-7],[0,-8],[0,-7],[3,-5],[5,-2],[8,0],[9,-7],[16,-20],[5,1],[3,18],[2,42],[6,17],[9,5],[7,-3],[4,2],[2,21],[6,4],[11,-8],[6,4],[-1,17],[1,85],[1,9],[1,4],[2,4],[1,6],[-4,8],[3,5],[4,-7],[3,-4],[4,-3],[7,-1],[2,-1],[2,0],[2,2],[1,3],[1,4],[1,4],[3,2],[5,1],[21,-5],[5,0],[20,6],[2,5],[-1,13],[-1,9],[-2,9],[-2,9],[0,1],[-4,6],[-4,3],[-9,2],[-3,5],[1,0],[2,5],[1,9],[1,5],[-1,5],[-1,4],[-1,4],[-1,1],[-5,4],[-2,3],[-1,4],[-5,32],[-1,10],[1,9],[8,23],[2,25],[0,27],[3,25],[4,14],[1,11],[0,12],[1,13],[3,11],[5,11],[3,11],[-1,15],[3,0],[2,-1],[1,0],[51,-30],[17,-2],[6,-2],[5,-4],[5,-5],[5,-7],[8,-13],[2,-8],[1,-12],[-3,-19],[1,-7],[5,-8],[6,-5],[2,1],[3,5],[4,8],[5,4],[5,-1],[4,-2],[6,-1],[17,8],[6,0],[46,-14],[11,0],[41,45],[17,13],[46,17],[44,35],[8,3],[5,6],[27,29],[19,13],[9,1],[18,-4],[53,-27],[14,-13],[29,-53],[8,-14],[17,-16],[20,-4],[45,4],[6,3],[15,2],[42,-25],[15,1],[56,18],[90,30],[60,38],[28,29],[10,5],[10,4],[10,8],[20,23],[37,42],[5,6],[6,4],[6,2],[7,1],[13,6],[37,35],[13,9],[53,13],[66,-22],[12,-9],[6,-3],[78,6],[115,47],[32,13],[12,12],[21,34],[14,31],[4,4],[5,7],[3,-6],[0,-7],[0,-6],[0,-3],[4,-1],[8,-7],[2,1],[2,4],[1,2],[2,-1],[1,-3],[2,-6],[1,-3],[9,-13],[2,-1],[2,-8],[-5,-33],[3,-8],[3,-3],[0,-9],[0,-16]],[[61765,72447],[2,-7],[2,-6],[2,-7],[0,-9],[-9,-11],[-18,-29],[-28,-52],[-56,-102],[-37,-69],[-8,-10],[-7,-7],[-86,-31],[-18,-5],[-9,-7],[-5,-13],[-25,-82],[-2,-16],[-9,-149],[0,-10],[1,-10],[7,-29],[22,-81],[3,-19],[1,-19],[1,-82],[-1,-18],[-5,-18],[-9,-25],[-13,-34],[-3,-18],[-2,-58],[-12,-73],[-3,-36],[1,-14],[1,-97],[3,-104],[-1,-15],[-2,-15],[-48,-162],[-10,-39],[-6,-16],[-8,-9],[-69,-33],[-40,-43],[-31,-33],[-31,-33],[-31,-33],[-10,-11],[-20,-21],[-31,-33],[-31,-33],[-30,-33],[-31,-33],[-31,-32],[-31,-33],[-30,-33],[-31,-33],[-31,-33],[-30,-33],[-31,-32],[-31,-33]],[[60770,70233],[-68,-76],[-59,-67],[-24,-26],[-48,-55],[-36,-40],[-47,-55],[-48,-55],[-25,-30],[-22,-25],[-48,-55],[-31,-36],[-42,-50],[-45,-55],[-4,-2],[-3,0],[-18,9],[-6,0],[-5,-5],[-10,14],[-38,8],[-10,2],[-5,5],[-15,3],[-6,3],[-4,4],[-24,42],[-18,22],[-9,17],[-3,3],[-2,-1],[-3,-5],[-1,-1],[-2,0],[-3,2],[-2,1],[-10,-3],[-4,0],[-3,0],[-1,1],[0,2],[-2,7],[-12,35],[-3,10],[0,11],[1,10],[-2,6],[-6,1],[-4,-1],[-3,2],[-2,4],[-3,6],[1,-1],[1,3],[0,4],[0,4],[-1,1],[-4,0],[-1,0],[-5,9],[-3,3],[-29,12],[-3,6],[-1,2],[-2,1],[-1,-1],[-2,-2]],[[61923,56983],[73,243],[15,47]],[[62011,57273],[3,-9],[4,-6],[6,-1],[-2,23],[4,-10],[7,-22],[5,-12],[4,-3],[6,-17],[5,-4],[6,-2],[8,-13],[5,-5],[1,10],[4,7],[3,1],[1,-10],[-4,-55],[2,-19],[5,-18],[7,-13],[2,-2],[4,-2],[2,-3],[1,-3],[2,-9],[4,-12],[2,-16],[7,-22],[12,-49],[27,-56],[20,-54],[26,-46],[29,-43],[20,-37],[14,-18],[35,-61],[8,-10],[12,-15],[12,-10],[21,3],[21,-6],[12,-5],[12,4],[9,7],[17,10],[8,5],[11,-2],[18,-6],[12,-1],[18,2],[9,16],[-2,10],[4,0],[30,39],[5,4],[8,5],[26,35],[19,37],[5,5],[5,-1],[5,-4],[5,-2],[5,0],[10,5],[12,10],[8,11],[7,11],[9,22],[3,4],[21,15],[3,3],[4,8],[2,8],[4,6],[5,3],[3,3],[5,17],[4,4],[5,0],[4,-2],[4,-3],[4,-7],[3,-8],[2,-7],[2,-5],[5,-1],[-1,11],[4,0],[26,-25],[10,-3],[9,-5],[5,-4],[11,-5],[9,4],[20,11],[8,-2],[7,-9],[12,-27],[8,-13],[10,-8],[11,-3],[11,1],[9,5],[5,4],[8,11],[9,3],[8,7],[11,1],[5,2],[3,4],[10,16],[24,23],[11,19],[13,11],[1,4],[3,9],[1,3],[2,2],[4,1],[2,1],[26,20],[21,33],[14,24],[9,22],[4,5],[13,8],[3,4],[7,12],[29,30],[5,5],[6,2],[8,-2],[15,7],[9,-3],[43,-47],[9,-4],[16,17],[35,2],[15,-5],[51,7],[8,5],[4,7],[6,18],[6,5],[0,5],[1,4],[2,2],[5,0],[3,0],[5,4],[5,1],[3,3],[2,4],[1,4],[0,4],[1,4],[4,8],[3,4],[8,4],[20,4],[10,5],[7,10],[5,3],[17,-1],[15,7],[5,1],[19,-9],[10,-9],[11,-13],[25,-17],[4,-1],[5,0],[5,1]],[[34829,51847],[4,12],[4,1],[10,-6],[5,2],[3,5],[8,40],[2,4],[3,3],[6,0],[5,1],[3,3],[13,29],[5,14],[11,58],[9,43],[21,58],[2,9],[4,28],[2,4],[3,4],[-3,7],[-2,4],[0,4],[0,6],[1,7],[4,12],[0,3],[2,18],[0,8],[-1,1],[-3,8],[-2,8],[3,4],[2,4],[-1,8],[-2,14],[0,2],[-3,4],[0,4],[2,2],[1,1],[0,1],[1,13],[-1,13],[-3,9],[-6,-2],[6,30],[4,13],[10,26],[7,24],[9,14],[0,1],[3,10],[2,12],[1,10],[1,8],[10,22],[5,24],[-1,45],[2,25],[2,13],[1,9],[-2,8],[-4,8],[-2,2],[-3,-1],[-3,-2],[-3,-1],[0,4],[-7,21],[-6,42],[-2,6],[-6,18],[-3,5],[-10,6],[-3,3],[-1,2],[-3,7],[-3,12],[-2,7],[-1,-1],[-1,5],[-5,6],[-7,28],[-2,4],[-4,6],[-2,6],[-3,20],[-2,6],[-9,18],[-3,10],[0,15],[1,9],[4,21],[1,9],[-1,12],[-3,5],[-10,5],[-3,5],[-3,8],[-1,10],[3,11],[1,10],[0,15],[-2,26],[-9,37],[-5,64],[1,15],[6,22],[1,10],[0,24],[0,7],[-4,20],[0,14],[1,12],[0,10],[-4,11],[-2,3],[-3,2],[-2,3],[-1,8],[0,73],[-2,8],[-1,6],[2,6],[7,11],[1,3],[1,9],[-2,24],[0,10],[2,9],[5,17],[15,37],[1,3],[1,7],[1,4],[4,6],[2,4],[3,24],[4,10],[2,7],[12,26],[22,34],[5,13]],[[34952,53637],[9,7],[9,12],[7,16],[6,17],[7,41],[6,21],[2,10],[4,61],[5,19],[5,20],[3,11],[3,0],[12,-4],[9,-3],[6,-6],[6,-4],[2,-1],[-1,3],[-6,7],[2,1],[4,-1],[10,-10],[7,-11],[5,-7],[5,-6],[5,-6],[32,-27],[9,-11],[9,-11],[6,-5],[4,-2],[9,-5],[11,0],[20,-10],[9,-5],[7,1],[4,-4],[5,-12],[5,-9],[6,4],[0,7],[-5,2],[-5,7],[-6,10],[-5,3],[-2,-1],[-1,3],[3,4],[3,0],[6,-7],[8,-8],[12,-7],[6,-6],[7,-5],[14,-20],[10,-7],[11,-5],[1,4],[2,0],[8,-8],[19,-23],[19,-38],[13,-15],[8,-29],[20,-34],[39,-77],[3,-4],[1,-1],[0,-4],[0,-4],[0,-3],[1,0],[4,1],[1,-1],[7,-8],[21,-39],[7,-22],[-3,-24],[5,7],[7,21],[6,4],[7,-3],[6,-8],[4,-11],[1,-12],[-5,-20],[-10,-28],[-8,-30],[1,-21],[1,0],[1,8],[2,6],[2,4],[1,4],[1,15],[3,15],[4,10],[12,16],[3,11],[5,-5],[6,-10],[4,-12],[2,-12],[3,-8],[18,-22],[9,-17],[10,-22],[8,-24],[3,-24],[2,-24],[6,-46],[2,-24],[-3,-27],[-8,-13],[-8,-11],[-8,-20],[17,11],[10,11],[4,13],[0,6],[3,16],[1,10],[-3,85],[2,21],[4,18],[4,5],[4,2],[5,-2],[4,-5],[13,-26],[3,-6],[-2,-7],[7,-23],[2,-13],[1,-14],[1,-17],[3,-12],[5,0],[-1,-5],[-1,-5],[-1,-2],[-1,0],[0,-4],[2,-10],[2,-8],[5,-2],[4,-2],[2,-4],[-1,-9],[-2,-4],[-3,-6],[-1,-12],[0,-10],[2,-10],[11,-34],[4,-15],[1,-16],[1,-22],[-1,-18],[-6,-36],[-3,-13]],[[35643,52862],[-21,-22],[-7,-13],[-4,-18],[-2,-19],[-3,-16],[-5,-14],[-18,-42],[-9,-9],[-2,-5],[0,-5],[0,-13],[0,-5],[-3,-5],[-2,-1],[-2,1],[-2,-2],[-5,-10],[-2,-12],[-2,-25],[-2,-14],[-12,-37],[-3,-16],[-2,-8],[-6,-6],[0,-4],[1,-5],[-1,-6],[-37,-131],[-3,-6],[-4,-4],[-2,0],[-2,1],[-3,-1],[-6,-10],[-6,-28],[-10,-16],[-1,-12],[0,-13],[3,-26],[-1,-4],[-18,-69],[-1,-9],[1,-7],[2,-6],[1,-4],[-4,-5],[-3,-2],[-2,-3],[-2,-4],[-2,-6],[-22,-103],[-2,-18],[-1,-5],[-2,-3],[-6,-5],[-1,-3],[1,-6],[5,-15],[1,-7],[-1,-7],[-1,-5],[-1,-4],[-2,-5],[-6,-27],[-8,-24],[-10,-20],[-6,-24],[-4,-10],[-4,-8],[-31,-40],[-12,-10],[-5,-9],[-4,-14],[-2,-13],[-2,-6],[-3,-5],[-1,-1],[-3,1],[-2,0],[-1,-3],[-3,-7],[-1,-2],[-6,-1],[-11,5],[-12,2],[-8,16],[-6,4],[-5,0],[-34,-14],[-4,0],[-3,5],[2,9],[5,9],[5,4],[0,6],[-17,31],[-7,21],[-2,4],[-4,2],[-1,-1],[-1,-4],[-8,-20],[-3,-5],[-10,-8],[-10,-16],[-3,-2],[-11,-2],[-5,-3],[-5,3],[-8,11],[-5,2],[-9,1],[-5,2],[-19,17],[-8,1],[-2,2],[1,4],[2,12],[1,6],[-3,9],[-5,2],[-5,-2],[-5,-6],[-3,-8],[-3,-10],[-2,-8],[-4,-2],[-6,-1],[-4,-9],[-2,-10],[-4,-5],[-6,1],[-3,2],[-1,-3],[0,-15],[-2,-10],[-5,-8],[-12,-9],[-2,-2],[-2,-6],[-2,-1],[-2,1],[-2,4],[-2,1],[-6,0],[-2,-3],[-2,-9],[-4,-24],[-3,-8],[-7,-2],[-3,2],[-3,4],[-9,24],[-1,1],[-5,-1],[-5,-3],[-5,-3],[-5,-2],[-14,4],[-2,1],[-3,4],[-8,15],[-3,4],[-2,1],[-2,-1],[-4,1],[-3,1],[-4,5],[-2,1],[-12,3],[-4,5],[-5,12],[-10,15],[-1,7],[6,1],[-5,11],[-5,9],[-7,5],[-7,1]],[[50700,80724],[4,-13],[3,-26],[3,-12],[10,-15],[4,-8],[1,-12],[-2,-4],[-6,-8],[-2,-6],[6,-26],[-1,-4],[-2,-6],[0,-3],[1,-2],[3,-2],[2,-2],[2,-8],[1,-3],[2,-1],[5,-1],[2,-1],[5,1],[3,0],[3,-3],[2,-3],[0,-4],[2,-4],[11,-14],[1,-4],[4,-12],[1,-3],[6,-6],[22,-14],[1,-1],[4,-1],[4,4],[8,19],[5,8],[7,5],[14,6],[23,10],[7,-3],[4,-6],[5,-11],[4,-10],[3,-11],[3,-4],[3,0],[4,-2],[2,-5],[4,-15],[-4,-9],[2,-18],[7,-33],[1,-19],[1,-7],[4,-7],[4,-4],[12,-9],[5,-2],[7,2],[12,6],[4,4],[3,3],[2,3],[4,0],[4,-1],[2,-3],[0,-5],[-3,-7],[3,-3],[18,0],[7,-2],[6,-4],[5,-8],[5,-11],[2,-23],[0,-27],[3,-25],[9,-12],[1,4],[1,0],[2,1],[0,2],[2,5],[5,11],[2,4],[4,2],[12,1],[11,-2],[6,-4],[5,-5],[5,-3],[6,0],[18,10],[6,1],[5,-3],[9,-14],[6,-5],[6,-7],[7,-22],[6,-4],[2,3],[-1,4],[0,4],[4,2],[2,-1],[4,-3],[3,-5],[2,-3],[0,-7],[-3,-4],[-7,-7],[-3,-6],[-1,-4],[-1,-11],[-6,-24],[0,-11],[3,-2],[6,3],[3,1],[3,-2],[4,-26],[2,-5],[2,-5],[0,-4],[-7,-5],[-6,-6],[-5,-6],[-2,-4],[-2,-4],[-1,-7],[2,-1],[1,-9],[0,-9],[-2,1],[16,-12],[3,-1],[5,0],[17,4],[41,-16],[2,-1],[9,2],[38,27],[12,2],[3,3],[3,7],[2,9],[2,19],[-1,4],[-1,3],[0,4],[0,5],[2,5],[30,41],[7,5],[1,-9],[4,-2],[8,3],[3,-5],[-1,-10],[-1,-12],[-1,-11],[-3,5],[-1,-1],[-6,-16],[0,-5],[0,-5],[0,-6],[-10,-37],[-2,-9],[4,-9],[13,-7],[5,-11],[0,-8],[-1,-5],[-1,-5],[-2,-7],[-1,-3],[-2,-4],[0,-4],[0,-3],[3,-6],[0,-3],[0,-22],[3,-5],[7,-1],[6,1],[12,6],[6,0],[5,-4],[11,-14],[5,-4],[10,-4],[3,-4],[12,-24],[4,-6],[5,-5],[7,-2],[12,4],[6,1],[6,-8],[6,-9],[1,-9],[-1,-2],[-2,-2],[-1,-9],[1,-5],[1,-3],[5,-1],[2,1],[1,3],[1,3],[1,2],[2,-1],[3,-2],[9,-5],[2,-2],[3,-4],[13,-34],[2,-5],[0,-6],[-1,-6],[-1,-5],[2,-5],[6,-3],[7,6],[7,8],[5,3],[9,-5],[3,-1],[4,0],[1,3],[0,4],[4,6],[6,5],[7,-2],[6,-4],[6,-1],[3,2],[4,6],[3,3],[3,-1],[6,-5],[3,-1]],[[51608,79807],[9,-16],[5,-7],[7,-4],[17,-6],[5,-8],[4,-16],[5,2],[24,2],[4,2],[3,6],[3,1],[1,4],[-1,3],[2,4],[2,1],[8,1],[-2,5],[16,3],[8,-1],[7,-4],[1,-1],[13,-14],[8,-5],[5,-1]],[[51762,79758],[2,-1],[3,1],[6,5],[2,2],[3,-1],[26,-18],[4,-6],[2,-5],[1,-5],[0,-3],[-1,-1],[2,-4],[14,-20],[1,-3],[-2,-5],[-5,0],[-1,-6],[2,-7],[4,-7],[19,-25],[0,-3],[0,-6],[0,-2],[2,-2],[3,-2],[2,-1],[2,-11],[1,-3],[0,-1],[0,-5],[1,-2],[1,0],[4,4],[1,0],[2,-10],[-1,-7],[-1,-7],[3,-9],[4,-2],[12,0],[11,-5],[3,1],[5,9],[-1,9],[-2,10],[2,8],[2,1],[12,-4],[8,2],[3,-1],[18,-14],[6,0],[-1,-21],[4,-16],[6,-7],[8,7],[1,3],[-1,4],[0,3],[2,3],[2,0],[10,-11],[5,-3],[4,-2],[24,0],[7,-5],[2,-1],[2,3],[3,8],[1,3],[3,1],[6,1],[2,2],[1,3],[2,9],[1,2],[5,4],[1,1],[6,2],[5,-1],[1,-6],[12,-2],[5,-2],[2,-9],[-2,-2],[-1,-1],[0,-2],[4,-6],[6,-14],[4,-6],[6,-6],[12,-3],[6,-4],[2,-4],[3,-7],[2,-3],[3,-1],[1,-1],[3,2],[4,1],[3,2],[3,-1],[6,-3],[3,-1],[3,2],[7,5],[3,1],[23,-10],[16,3],[5,-1],[44,-33],[27,-8],[3,-4],[0,-1],[-5,-9],[-9,-23],[-13,-49],[-3,-8],[-2,-2],[-10,-8],[-3,0],[0,-1],[-1,-2],[-2,-3],[0,-6],[-1,-3],[-2,-2],[-2,-1],[-7,0],[-4,-2],[-1,-5],[0,-11],[-2,-5],[-3,-5],[-3,-6],[-4,-3],[-7,-12],[-4,-6],[-5,-2],[-3,-3],[-12,-26],[-2,-19],[0,-21],[3,-12],[0,-4],[-7,-8],[-3,-5],[-2,-5],[0,-12],[-2,-5],[-2,-4],[-2,-6],[-1,-7],[-2,-15],[0,-8],[1,-7],[1,-8],[2,-8],[-1,-8],[-3,-9],[-5,-4],[-5,-5],[-2,-12],[0,-12],[-2,-10],[-3,-9],[-18,-35],[-2,-7],[0,-9],[-1,-4],[-2,-4],[-2,-5],[-2,-9],[-2,-12],[1,-24],[12,-30],[0,-19],[-2,-7],[-8,-11],[-1,-8],[0,-10],[0,-3],[-2,-5],[-1,-3],[-2,-3],[-1,-2],[0,-3],[0,-1],[0,-2],[0,-3],[2,-11],[-1,-6],[-4,-3],[-1,-3],[-4,-19],[-1,-8],[3,-21],[0,-10],[-1,-4],[-5,-7],[-1,-3],[1,-13],[1,-6],[1,-3],[4,-3],[4,-8],[6,-18],[2,-3],[1,-2],[2,-3],[1,-6],[-1,-2],[-1,-6]],[[52107,78650],[-10,-5],[-7,-6],[-1,-2],[-11,-12],[1,-1],[4,-5],[1,0],[0,-6],[-1,-3],[-2,-1],[-3,1],[-2,-1],[0,-2],[1,-3],[2,-4],[0,-1],[0,-2],[0,-1],[-1,-1],[-4,-6],[-4,1],[-2,2],[-1,1],[-5,2],[-3,-1],[0,-4],[1,-3],[1,-2],[2,-2],[0,-4],[-1,-5],[-1,-3],[-4,-8],[-5,-3],[-3,-1],[-11,1],[-8,0],[-8,-2],[-10,-7],[-2,0],[-2,1],[-1,2],[-1,2],[-1,2],[-8,3],[-6,5],[-2,10],[5,17],[-7,-1],[-4,1],[-4,3],[-6,2],[-14,-4],[-7,2],[-3,2],[-2,1],[-3,-1],[-2,-2],[-5,-3],[0,-6],[3,-8],[1,-7],[-2,-5],[-4,-6],[-4,-3],[-8,-3],[0,-11],[-7,-6],[-4,-8],[-4,-9],[-1,-8],[33,5],[5,4],[4,-5],[4,-6],[3,-6],[-2,-6],[-3,-3],[-2,-1],[-3,-2],[-4,-8],[-2,-1],[-2,0],[-6,-8],[-1,-12],[1,-15],[-19,-20],[-8,-12],[-5,-13],[-1,-1],[-18,-23],[-8,-5],[0,-10],[-4,-3],[-1,-1],[-1,-3],[-7,-4],[-2,-4],[-4,-9],[3,-11],[-6,-14],[-19,-20],[-29,-14],[-14,-11],[-4,-21],[1,-5],[4,-11],[1,-6],[-1,-9],[-1,-3],[0,-2],[-2,-5],[-5,-20],[0,-2],[1,-4],[1,-3],[2,-3],[0,-10],[-1,-5],[-3,-6],[-3,-3],[-9,-7],[-7,-12],[-3,-4],[-20,-16],[-37,-50],[-4,-7],[1,-8],[7,-11],[-10,-18],[-10,-24],[-3,-5],[-1,-4],[0,-3],[0,-3],[1,-2],[0,-2],[0,-5],[1,-4],[-1,-4],[-3,-4],[2,-1],[13,-13],[4,-6],[4,-9],[0,-7],[-5,-16],[-4,-13],[-1,-5],[-2,-17],[0,-6],[0,-6],[-1,-4],[-6,-2],[-2,-1],[-1,1],[-3,1],[-1,-1],[-17,-12],[-6,-6],[-1,-7],[2,-8],[5,-9],[0,-5],[-3,-6],[-3,-13],[6,6],[13,4],[13,1],[9,-6],[9,6],[14,25],[18,17],[7,12],[-1,13],[-2,2],[-5,-4],[-3,3],[-1,2],[-3,10],[0,2],[-2,10],[-1,6],[1,8],[6,12],[8,16],[9,11],[8,4],[10,1],[9,3],[23,24],[18,5],[19,0],[41,-16],[4,-3],[3,-6],[0,-6],[0,-5],[-2,-10],[-7,-13],[-1,-7],[5,-13],[10,-16],[6,-16],[-10,-28],[-5,-21],[-2,-21],[2,-10],[22,-7],[5,-6],[-1,-4],[-2,-5],[-2,-4],[-1,-3],[1,0],[0,-5],[0,-7],[0,-5],[-1,-2],[1,-2],[2,-3],[3,0],[2,2],[2,3],[2,1],[6,-4],[19,-31],[1,-2],[2,-6],[3,-12],[2,-11],[1,-6],[2,-5]],[[51950,77667],[-4,-3],[-3,-5],[-2,-7],[-2,-8],[-4,-10],[-5,-7],[-7,-4],[-5,-3],[-7,0],[-2,0],[0,-3],[-1,-4],[0,-3],[-2,-1],[-1,4],[-2,2],[-3,1],[-7,-3],[-4,-4],[-4,-9],[-1,-10],[-1,-10],[1,-11],[3,-24],[6,-13],[7,-8],[8,-3],[3,-2],[7,-9],[3,-4],[9,-4],[4,-3],[1,-9],[0,-3],[-3,-11],[-1,-5],[0,-5],[3,-6],[2,-5],[1,-24],[2,-9],[13,-11],[12,-13],[1,-3],[2,-4],[2,-7],[2,-7],[4,-4],[11,-8],[3,-2],[-1,-8],[-2,-9],[-6,-15],[-9,-16],[-1,-4],[1,-17],[3,-12],[0,-9],[-8,-10],[-5,-14],[-2,-3],[-1,1],[-4,6],[-2,1],[-10,-4],[-10,-6],[-3,-6],[-5,-12],[-4,-6],[-3,-1],[-6,0],[-2,-1],[-2,-5],[2,-4],[1,-2],[0,-4],[-9,-7],[-10,6],[-11,8],[-9,3],[-2,-2],[-5,-6],[-3,-2],[-2,-1],[-5,1],[-2,-1],[-10,-8],[-1,-2],[-4,-5],[-3,-6],[4,-12],[5,-6],[0,-4],[0,-4],[1,-6],[3,-9],[3,-3],[10,-2],[7,-8],[2,-17],[-1,-33],[5,-12],[9,-12],[19,-17],[6,-2],[13,4],[5,-1],[14,-8],[5,-9],[1,-3],[1,-3],[0,-2],[0,-1],[0,-3],[-1,-1],[-1,-9],[-1,-1],[4,-13],[1,-14],[1,-5],[9,-25],[1,-7],[-5,0],[-10,4],[-5,0],[-6,-5],[-5,-10],[-2,-12],[3,-12],[-4,-5],[-10,-25],[-14,-17],[-3,-8],[1,-18],[6,-17],[9,-13],[7,-10],[-9,-7],[-2,-5],[-3,-19],[0,-4],[0,-3],[1,-5],[1,-3],[6,-11],[2,-5],[3,-12],[2,-5],[3,-4],[5,-6],[3,-5],[1,-5],[1,-6],[2,-5],[2,-5],[4,-2],[3,1],[3,1],[4,1],[4,-2],[16,-13],[11,-6],[30,-28],[5,-4],[7,-1],[4,-3],[2,-4],[1,-5],[3,-4],[3,-1],[11,0],[48,21],[8,1],[11,12],[9,-3],[-4,-19],[4,-11],[6,-9],[3,-11],[1,-4],[0,-10],[-4,-6],[-4,-5],[-3,-5],[-1,-8],[-3,-13],[-2,-7],[-6,-10],[-14,-19],[-6,-14],[-12,-20],[-4,-13],[1,-15],[5,-28]],[[52083,76404],[-3,-4],[-1,0],[-2,0],[-1,-1],[0,-2],[1,-7],[-1,-2],[-2,-2],[-2,0],[-2,-3],[-2,-4],[-3,-4]],[[52065,76375],[-3,7],[-5,5],[-5,-3],[-5,-7],[-1,-7],[0,-7]],[[52046,76363],[-4,-4],[-3,-5],[-1,-6],[-2,-7],[-3,0],[-5,1],[-6,3],[-7,-1],[-4,-4],[-4,-6],[1,-6],[-5,-9],[-2,-3],[-2,8],[-6,2],[-3,-3],[-4,0],[-2,-6],[-2,-2],[-1,-5],[-2,-16],[2,-16],[0,-3],[1,-7],[1,-5],[-4,-4],[-4,10],[-2,2],[-5,1],[-4,-5],[-4,-6],[-4,-5],[-2,-4],[-2,7],[-4,0],[-6,1],[-5,-1],[-4,-4],[-4,-8],[-1,-9],[2,-2],[0,-1],[1,-1],[0,-3],[-8,-16],[-1,-14],[-6,-7],[-2,-6],[-6,-1],[0,4],[-1,2],[-1,2],[-2,-2],[0,-4],[1,-8],[-4,-2],[-3,2],[-4,0],[-10,-4],[-3,6],[-5,2],[-2,-3],[-5,-6],[1,-15],[-4,-9],[0,-9],[-7,-2],[-5,-1],[-3,-8],[-1,-6],[-3,-5],[-7,-11],[-8,-7],[-2,-9],[6,-3],[17,7],[6,-1],[1,-5],[-3,-10],[-5,-5],[-1,-11],[2,-5],[2,-7],[-5,-6],[-6,-5],[-3,-2],[-5,-3],[-3,1],[-1,2],[-1,5],[-3,-2],[-5,0],[-7,-1],[-1,-6],[-3,-7],[-5,-6],[-8,3],[-7,-2],[-9,0],[-5,-3],[-7,-7],[-3,-10],[1,-8],[1,-8],[-9,0],[-3,5],[-1,3],[-6,3],[-7,5],[-7,1],[-10,-2],[-7,-5],[-4,-3],[-5,-6],[-2,-12],[0,-15],[5,-3],[4,2],[-2,-6],[-7,-1],[-16,-2],[-2,3],[4,3],[4,3],[4,4],[-1,11],[-5,8],[-5,-1],[-13,-3],[-5,0],[-3,12],[-7,3],[-9,-1],[-7,7],[1,4],[0,5],[1,3],[-5,0],[-4,-1],[-8,-7],[4,-3],[4,-13],[5,-3],[7,-5],[-3,-5],[-7,1],[-8,0],[-3,-2],[-6,-15],[-10,6],[-8,9],[-2,6],[5,6],[5,6],[-2,4],[-3,3],[-5,2],[-1,5],[-1,4],[-4,1],[-6,0],[-12,9],[-3,13],[-3,6],[-6,4],[-5,1],[-4,-6],[-3,-10],[-6,4],[-5,1],[-3,7],[-4,8],[-2,8],[-4,3],[-3,-3],[-3,-1],[-12,1],[-5,0],[-9,2],[-4,1],[-7,-3],[-6,5],[1,10],[1,6],[2,6],[2,10],[-3,6],[-1,7],[-1,3],[-3,22],[-13,12],[-15,-16],[-21,1],[-11,-2],[-17,1],[-8,5],[-6,13],[-2,14],[6,16],[8,8],[25,0],[8,4],[5,6],[6,11],[3,13],[-1,14],[-8,-8],[-8,-4],[-7,2],[-6,10],[-2,9],[0,6],[-1,3],[-6,3],[-2,0],[-7,0],[-1,2],[-4,8],[-2,2],[-1,-4],[-2,-8],[-2,-8],[0,-5],[1,-11],[3,-5],[3,-3],[4,-5],[4,-15],[-3,-13],[-7,-7],[-8,-2],[-4,2],[-15,14],[-8,-5],[-2,-4],[-7,-3],[-3,-3],[-2,-8],[1,-3],[3,-11],[1,-8],[9,1],[-7,-9],[-6,-6],[-1,10],[-5,14],[-11,10],[-10,14],[-4,16],[1,34],[-1,11],[-2,8],[-3,11],[-4,8],[-4,5],[0,-4],[8,-20],[1,-6],[0,-43],[4,-20],[7,-12],[9,-9],[6,-12],[-1,-12],[-8,-1],[-34,2],[-21,7],[-7,7],[0,10],[5,9],[1,8],[-2,8],[-7,7],[-12,8],[-29,-5],[-56,7],[-7,3],[-6,4],[-8,9],[-4,14],[4,13],[0,2],[-7,10],[-16,2],[-16,-3],[-10,-6],[-4,-5],[-56,-71],[-32,-22],[-9,-12],[-22,-44],[-5,-4],[-12,9],[-6,-2],[-12,-1],[-19,-12],[-20,-26],[-5,-9],[-2,-5],[-4,-6],[-3,-5],[-5,-7],[-3,-8],[-3,-10],[-5,-8],[-7,-9],[-2,-11],[-2,-9],[-3,-11],[-5,-16],[-2,-11],[-2,-9],[-2,-17],[-2,-13],[0,-6],[4,-3],[0,-12],[-2,-36],[-2,-33],[0,-24],[1,-15],[-2,-25],[1,-32],[2,-24],[1,-20],[4,-7],[6,-5],[8,-2],[6,-3],[2,-6],[0,-7],[0,-7],[2,-6],[2,-4],[5,-11],[1,-13],[0,-2]],[[50883,75598],[-12,-3],[-7,-1],[-7,2],[-6,3],[-3,3],[-3,4],[-2,6],[-2,6],[-2,1],[-8,1],[-3,1],[-5,-5],[-9,5],[-9,-11],[-4,-1],[-5,0],[-5,-1],[-4,-4],[-8,-13],[-5,-4],[-6,-2],[-11,3],[-5,-1],[-5,-4],[-12,-14],[-2,-6],[2,-11],[4,-6],[0,-3],[-7,0],[-7,2],[-12,7],[-6,-1],[-2,-3],[-2,-9],[-2,-3],[-3,0],[-3,1],[-6,5],[-5,2],[-5,7],[-5,9],[-2,10],[-4,0],[-9,3],[-16,12],[-3,5],[-8,7],[-9,-2],[-17,-8],[-13,2],[-4,-3],[-2,-3],[-2,-9],[-1,-3],[-7,-8],[-4,-8],[-4,-4],[-4,-1],[-7,-2],[-4,1],[-4,4],[-5,7],[-3,9],[-3,22],[-4,10],[-4,3],[-6,1],[-6,2],[-16,17],[-6,4],[-17,4],[-5,3],[0,2],[0,1],[-1,2]],[[50474,75640],[1,15],[3,13],[5,7],[7,1],[-1,3],[-3,5],[-6,3],[-5,5],[3,12],[-32,5],[-3,2],[-15,16],[-4,0],[-8,-5],[-9,1],[-4,-24],[-6,-4]],[[50397,75695],[-4,9],[-5,20],[-6,11],[-4,14],[-3,2],[-2,1],[-2,2],[1,8],[-6,3],[-34,0],[-10,-4],[-3,0],[-4,6],[-3,8],[-2,9],[-3,9],[-5,6],[-6,3],[-23,3],[-3,2],[-4,6],[-3,1],[-2,-1],[-3,-4],[-3,-2],[-3,2],[-4,7],[-2,3],[-9,5],[-12,11],[-4,1],[-6,0],[-5,1],[-9,6],[-5,1],[-8,-1],[-6,-4],[-2,-8],[1,-13],[-4,-17],[3,-6],[-2,-3],[-1,-2],[-2,-6],[4,-2],[4,-7],[2,-9],[-1,-10],[0,-1],[-2,-5],[-4,-2],[-10,2],[-34,-1],[-5,3],[-10,-5],[-6,0],[-5,1],[-2,2],[0,3],[0,2],[0,2],[-8,11],[-5,-3],[-5,-8],[-8,-17],[-4,-1],[-4,8],[-6,16],[-5,4],[-15,6],[-4,-1],[-5,-6],[-17,-4],[-22,-12],[-9,-2],[-11,7],[-2,3],[-1,3],[-2,3],[-4,1],[-3,2],[0,4],[-1,4],[-1,3],[-5,6],[-3,9],[-2,10],[1,11],[-5,-4],[-8,-3],[-8,1],[-3,11],[-16,16],[-1,0],[-4,7],[-2,-6],[-2,-5],[-2,-1],[-2,4],[-14,-17],[-6,-6],[-9,-1],[-15,11],[-7,0],[0,-14],[-3,-1],[-4,-5],[-3,-1],[-2,3],[0,4],[0,3],[-1,4],[-2,1],[-4,0],[-2,1],[0,2],[1,3],[-1,2],[-11,23],[-5,6],[-9,10],[-3,0],[-3,0],[-2,0],[-3,5],[-2,5],[1,3],[1,3],[0,4],[-1,5],[-5,16],[-7,4],[-21,-6],[-23,3],[-10,5],[-10,12],[-3,6],[-5,2],[-9,2],[-2,3],[-5,4],[-2,2],[-11,-2],[-9,12],[-10,8],[-16,5],[-5,5],[-5,8],[-1,8],[2,8],[6,8],[-6,2],[-6,-4],[-5,-8],[-2,-12],[-1,-15],[-2,-8],[-5,-3],[-7,1],[-7,3],[-6,6],[-5,9],[-4,12],[2,5],[12,20],[3,7],[5,19],[3,23],[-1,22],[-8,13],[-4,0],[-3,-2],[-3,-1],[-11,10],[-9,4],[-6,0],[-4,-4],[-2,-10],[-1,-5],[-4,-3],[-3,-1],[-3,1],[-3,3],[-2,2],[-2,10],[0,6],[1,3],[0,3],[-3,3],[-5,4],[-3,0],[-6,-3],[-6,-1],[-3,-3],[-3,-1],[-1,2],[0,3],[-1,12],[-4,7],[-8,6],[0,7],[0,13],[1,6]],[[49501,76163],[1,0],[0,-1],[4,-4],[2,4],[5,3],[25,7],[7,14],[6,5],[5,6],[2,5],[6,18],[2,7],[2,5],[11,22],[2,7],[8,17],[2,19],[7,34],[11,97],[7,34],[10,76],[18,168],[7,83],[2,37],[-1,9],[-2,16],[0,5],[8,17],[1,3],[0,8],[5,27],[6,10],[7,1],[17,-7],[10,2],[5,7],[0,9],[-6,11],[3,0],[-2,8],[-21,30],[-3,2],[-2,1],[-1,2],[-1,1],[-2,0],[-1,-2],[-1,-2],[0,-3],[-1,-1],[-2,-5],[-12,-29],[-3,-26],[-3,-15],[-2,-6],[17,292],[12,94],[5,125],[2,8],[9,29],[4,9],[5,3],[2,-2],[1,-3],[0,-4],[0,-7],[-1,-2],[-1,-3],[0,-3],[1,-4],[3,-7],[3,-4],[18,-22],[12,-10],[4,-2],[34,-56],[8,-18],[3,-17],[1,-12],[3,-22],[5,-55],[2,-7],[9,-34],[9,-19],[11,-16],[9,-8],[2,-4],[3,-7],[0,-6],[-1,-9],[1,-13],[1,-12],[2,-10],[4,-4],[-1,8],[-1,17],[-2,7],[3,16],[-3,13],[-7,10],[-6,6],[8,-1],[8,-2],[6,-5],[6,-8],[-7,19],[-11,8],[-12,6],[-10,12],[-5,15],[-3,19],[-11,113],[-3,23],[-10,37],[-5,17],[-6,15],[-13,22],[-40,43],[-1,2],[-1,12],[-2,2],[-9,5],[-15,22],[-8,5],[-5,2],[-5,4],[-4,6],[-3,7],[-5,6],[-10,-3],[-5,3],[5,41],[0,8],[18,8],[6,0],[17,-31],[4,-4],[3,-4],[19,-14],[-6,11],[-25,30],[-7,13],[-2,5],[0,7],[-1,9],[-2,8],[-2,6],[3,3],[2,3],[1,4],[1,3],[3,4],[5,4],[2,0],[3,0],[1,1],[2,7],[-1,6],[-1,6],[-2,5],[-2,3],[1,2],[3,5],[2,1],[-5,5],[-3,8],[-4,19],[6,-6],[4,0],[4,5],[3,10],[0,4],[-1,2],[-2,3],[-1,2],[-6,3],[-1,5],[0,6],[-2,8],[0,5],[0,3],[-1,1],[-4,1],[-1,1],[-1,3],[-2,2],[0,3],[3,4],[-6,8],[-2,1],[-2,1],[1,2],[0,3],[0,2],[-2,0],[-4,0],[-3,1],[-3,0],[-2,1],[-3,4],[0,5],[2,6],[3,5],[2,2],[-1,12],[3,7],[19,18],[2,8],[0,4],[-1,5],[-1,9],[-6,12],[-13,2],[-10,-9],[1,-19],[-8,3],[-5,9],[-5,12],[-5,2],[-3,0],[-8,8],[-6,8],[-4,2],[-15,-7],[-7,1],[-3,13],[-2,14],[-4,11],[-6,7],[-8,2],[-19,1],[-7,4],[2,7],[-4,7],[-15,3],[-9,13],[-8,3],[-4,3],[-2,5],[-3,13],[-2,6],[0,-7],[1,-10],[1,-5],[-2,-3],[-2,2],[-3,6],[-6,43],[1,11],[-4,2],[-2,7],[-2,8],[-1,7],[-5,7],[-4,5],[-3,6],[-3,15],[-4,5],[-4,2],[-5,1],[-2,3],[-9,25],[-15,24],[-9,9],[-7,3],[-3,4],[-2,9],[-1,12],[-1,10],[1,13],[2,6],[7,7],[-1,9],[4,6],[10,10],[4,9],[4,21],[4,10],[5,6],[-1,10],[-3,10],[-3,7],[-4,6],[-17,14],[-32,8],[-10,8],[4,4],[3,4],[3,3],[9,2],[2,2],[1,5],[1,9],[0,8],[-3,9],[-1,9],[0,7],[2,7],[1,7],[3,5],[6,5],[26,3],[2,3],[2,1],[2,0],[2,-4],[2,-2],[14,-6],[5,0],[-2,4],[3,0],[3,-1],[3,-2],[2,-4],[-6,0],[0,-5],[12,-12],[11,-3],[3,-3],[6,-10],[7,-4],[15,0],[-6,5],[-11,3],[-5,6],[-8,15],[-10,11],[-10,9],[-5,3],[-7,0],[-2,2],[-4,6],[-11,4],[-38,-4],[-9,-8],[-2,-4],[-1,-4],[-1,-3],[-3,-4],[-9,-4],[-6,-9],[-5,-3],[-6,0],[-5,3],[-4,5],[-7,12],[-4,3],[-5,1],[-2,0],[-3,-1],[-2,-2],[-1,-4],[0,-4],[0,-2],[-9,1],[-26,19],[0,5],[7,-2],[12,-8],[6,1],[5,9],[-3,7],[-5,8],[-5,9],[-2,-2],[-1,-1],[0,-1],[1,-4],[0,-3],[-1,-5],[-2,0],[-1,17],[-3,9],[-12,11],[23,19],[2,0],[3,-2],[5,-1],[-1,-4],[-1,-1],[2,-4],[3,5],[9,8],[1,4],[-4,1],[-7,0],[-5,3],[3,8],[-5,5],[-5,0],[-4,4],[2,11],[-3,8],[3,4],[17,1],[10,4],[6,0],[-5,1],[-7,-2],[-5,1],[-21,12],[-5,1],[-3,-1],[-9,-4],[-11,0],[-2,-2],[-2,-2],[-2,0],[-3,4],[5,1],[4,4],[5,7],[2,8],[-5,-6],[-4,-1],[-4,0],[-4,-1],[2,-1],[2,-1],[1,-2],[0,-4],[-7,0],[-3,1],[-3,3],[0,-14],[-4,-4],[-9,5],[-5,0],[-14,-7],[-6,-1],[-4,0],[-4,3],[-3,5],[-1,2],[-4,12],[-1,1],[-1,3],[-3,2],[-3,0],[-1,1],[0,1],[0,3],[-5,2],[5,5],[8,0],[4,-12],[2,0],[1,4],[2,1],[2,-1],[2,-4],[0,4],[2,9],[4,-7],[7,-4],[8,1],[6,6],[-2,4],[11,22],[1,11],[-6,11],[0,-3],[2,-4],[1,-4],[-2,-3],[-3,-1],[4,-4],[-2,-3],[-1,-2],[-3,0],[-2,3],[-13,13],[5,-1],[6,-3],[-3,7],[-4,3],[-8,2],[4,-3],[-6,-4],[-15,-2],[-2,-5],[-3,-7],[-5,-3],[-9,-4],[0,4],[1,0],[0,5],[-3,-1],[-1,-1],[-1,-3],[-2,0],[-1,7],[0,6],[0,5],[3,3],[-4,0],[-3,3],[-2,6],[-1,7],[-2,0],[1,-5],[1,-7],[0,-4],[0,-14],[1,-6],[3,-7],[3,-6],[3,-4],[-1,-4],[0,-2],[-1,-2],[-1,2],[-3,6],[-2,-2],[-3,3],[-3,7],[-3,4],[1,-7],[-1,-4],[-3,1],[-1,8],[-1,9],[-2,-1],[-1,-6],[2,-8],[-4,0],[-2,1],[-2,3],[-8,-7],[-5,0],[-4,3],[2,2],[2,2],[-3,4],[-3,3],[-3,-1],[-2,-6],[1,-1],[1,-2],[1,-1],[-3,-20],[2,-17],[5,-14],[6,-10],[-4,0],[-6,3],[-2,-3],[-1,0],[-4,17],[0,5],[0,7],[3,10],[1,8],[-1,14],[-2,10],[-3,8],[-4,6],[-3,3],[-3,2],[-2,2],[-2,4],[1,7],[3,17],[21,14],[-1,3],[0,3],[-1,4],[0,6],[-1,-1],[-3,-2],[-1,-1],[-1,12],[1,4],[-2,0],[-2,-6],[-3,1],[-4,3],[-4,-1],[3,-2],[3,-5],[2,-6],[1,-8],[-1,-1],[-1,0],[0,-1],[0,-2],[-3,3],[-2,-2],[-2,-4],[-4,-1],[1,-2],[3,-6],[-4,-3],[-2,-6],[-1,-5],[-2,-3],[-2,3],[-9,14],[-7,3],[-12,4],[-7,1],[5,3],[5,-1],[11,-6],[0,4],[-5,4],[-5,2],[-11,2],[0,4],[2,1],[1,1],[1,3],[0,5],[1,3],[4,-1],[2,0],[4,14],[2,7],[4,4],[0,4],[-6,-10],[-8,-11],[-8,-7],[-6,-2],[2,-2],[2,-2],[1,-3],[0,-4],[-23,-8],[-4,2],[-1,3],[-8,15],[-4,12],[-3,6],[-2,2],[-1,5],[-3,-4],[-4,0],[-10,4],[-7,-1],[-2,1],[-3,1],[-3,6],[-1,1],[-11,-1],[-5,3],[-2,8],[-3,1],[-14,-11],[-4,5],[-6,0],[-6,-2],[-5,1],[-1,2],[-5,14],[-2,3],[-2,3],[-1,3],[1,7],[-2,0],[-2,1],[-3,4],[-1,6],[-6,9],[-7,7],[-7,2],[2,-12],[-2,-9],[-6,-10],[-6,2],[3,0],[2,1],[2,2],[1,6],[-4,-2],[-2,0],[-2,-2],[-2,-5],[-8,9],[-3,3],[-5,0],[-3,3],[-4,7],[-2,9],[-1,10],[-3,-7],[1,-9],[4,-8],[4,-5],[0,-3],[-4,-1],[-3,-1],[-2,-3],[-3,-4],[-5,13],[-4,-1],[-1,-8],[4,-4],[-1,-2],[-1,-2],[0,-4],[8,0],[0,-4],[-9,-13],[-4,-3],[-7,-3],[-41,3],[0,4],[0,9],[0,3],[2,1],[2,0],[3,1],[1,4],[-1,11],[-4,15],[-3,16],[-4,11],[-13,25],[-25,27],[-3,3],[-3,-4],[-4,-6],[-3,-3],[-9,12],[-5,1],[-9,0],[-21,8],[2,2],[1,4],[2,3],[1,5],[0,2],[1,2],[1,2],[1,0],[2,-3],[1,-1],[90,28],[16,-6],[4,2],[1,4],[3,17],[-1,7],[-4,7],[-1,4],[-2,13],[-3,6],[-12,3],[-2,2],[-2,3],[-1,4],[-1,4],[-7,-4],[-15,13],[-7,-3],[-4,-11],[-4,-13],[-5,-12],[-7,-3],[2,12],[1,4],[-3,7],[-1,5],[-1,5],[1,7],[2,2],[1,3],[-2,6],[-3,1],[-17,1],[1,6],[-1,6],[3,2],[3,0],[2,-1],[3,-1],[4,2],[0,4],[0,4],[-1,2],[5,19],[4,4],[4,-3],[-3,-22],[7,-5],[25,3],[3,-2],[2,-3],[2,-2],[3,-1],[4,0],[13,6],[18,2],[-1,-3],[-2,-1],[-4,0],[6,-3],[22,7],[0,4],[-8,-1],[-4,2],[-1,7],[-2,-4],[-4,-2],[-4,2],[-1,6],[-2,0],[-12,-2],[3,6],[1,1],[2,2],[0,2],[1,3],[3,2],[6,9],[-5,0],[-6,-7],[-5,-2],[0,4],[2,0],[0,5],[-2,0],[-1,-3],[-1,-3],[-1,-3],[-5,3],[-8,-9],[-7,-1],[1,2],[1,0],[1,1],[-3,4],[-2,-3],[-3,-2],[-4,-2],[-4,0],[0,3],[16,28],[3,3],[27,23],[-5,-3],[-9,-7],[-5,-3],[-19,-4],[-9,-5],[-17,-16],[-14,-5],[-8,-6],[-6,-1],[-4,2],[-10,6],[-5,1],[-1,-2],[0,-4],[-1,-5],[-2,-2],[-14,0],[-4,3],[-2,6],[-2,12],[5,1],[0,7],[-5,16],[-1,11],[2,11],[3,9],[5,2],[0,4],[-7,7],[3,17],[7,18],[5,10],[3,-2],[3,-2],[-2,4],[4,5],[5,2],[9,2],[5,-3],[10,-7],[3,1],[-6,13],[-2,8],[3,4],[13,-5],[5,0],[-7,5],[0,2],[1,2],[-1,2],[-2,2],[0,4],[22,0],[6,1],[9,7],[6,0],[-3,3],[-2,1],[0,4],[8,2],[8,7],[7,4],[7,0],[5,-9],[-2,-13],[7,1],[8,7],[3,1],[4,-1],[6,-3],[4,0],[0,4],[-6,3],[2,6],[4,6],[5,5],[5,3],[7,2],[6,-1],[5,-4],[2,4],[1,0],[2,-3],[1,-4],[2,0],[1,2],[2,4],[0,4],[-1,6],[4,1],[3,2],[6,5],[10,4],[1,-2],[0,-6],[-1,-4],[0,-3],[3,-2],[0,-3],[-2,0],[0,-5],[3,-2],[2,-5],[0,-6],[-1,-7],[8,11],[4,3],[5,-1],[-2,-4],[-2,-1],[0,-4],[4,-6],[8,-7],[4,-7],[2,4],[-2,4],[2,4],[-2,4],[-1,5],[-1,12],[2,0],[0,-4],[1,-2],[3,-3],[-1,10],[1,12],[2,6],[3,-3],[1,2],[1,3],[0,3],[0,4],[4,-7],[5,-2],[13,1],[3,-2],[6,-8],[3,-2],[4,-1],[10,4],[0,-10],[7,-3],[8,0],[4,3],[-3,14],[-1,9],[1,4],[14,4],[-4,4],[-9,16],[-1,10],[2,5],[8,5],[6,16],[2,5],[2,0],[2,-3],[9,-1],[10,-8],[4,-1],[-2,-1],[-1,-2],[0,-2],[-1,-3],[6,0],[4,0],[2,2],[3,5],[2,2],[23,12],[4,4],[1,0],[3,-1],[8,15],[5,-2],[2,-8],[-1,-12],[-2,-11],[-3,-6],[0,-2],[1,-2],[1,-4],[1,8],[2,5],[9,15],[6,8],[3,5],[3,-2],[5,9],[3,1],[4,-3],[2,-5],[0,-7],[-2,-5],[0,-4],[4,-5],[-2,-4],[-4,-16],[-2,-4],[-6,-12],[0,-4],[2,0],[10,27],[5,11],[5,-2],[2,4],[3,1],[3,-1],[3,-4],[-2,-4],[1,0],[1,0],[0,-1],[0,-3],[-3,-1],[-2,-2],[-5,-5],[0,-3],[4,-5],[7,-4],[14,-1],[6,-3],[-1,-4],[0,-4],[1,-4],[-3,-3],[-1,-1],[0,-4],[4,-4],[5,-6],[4,-7],[2,-6],[18,-22],[3,-17],[1,-5],[1,-3],[-1,-3],[-1,-3],[1,-4],[2,-1],[3,-3],[7,-7],[16,-11],[-1,-5],[-1,-4],[-2,-4],[-2,-3],[3,0],[3,-2],[2,-4],[3,-4],[3,-5],[1,6],[0,8],[1,5],[11,-1],[5,3],[5,8],[7,15],[2,4],[3,3],[5,2],[18,17],[4,6],[0,4],[-2,0],[-5,4],[12,5],[6,-1],[2,-8],[8,4],[8,8],[7,10],[4,11],[1,-7],[2,-5],[3,-1],[4,1],[0,-5],[-2,-2],[-2,-3],[-1,-4],[-1,-3],[-8,-12],[5,-6],[5,5],[6,9],[6,4],[2,-3],[1,-14],[1,-3],[3,-2],[2,-6],[1,-6],[1,-6],[3,2],[2,4],[1,7],[-1,7],[2,-9],[1,-7],[3,-4],[4,4],[0,4],[-1,0],[-3,3],[3,7],[3,3],[4,0],[3,-5],[-2,3],[-1,4],[-2,9],[12,6],[13,2],[1,-3],[6,-15],[0,-6],[2,-6],[2,-5],[4,-1],[-1,-6],[-1,-2],[7,-16],[2,-8],[-2,-13],[3,4],[9,8],[-8,8],[2,5],[-5,10],[-1,10],[2,0],[1,-3],[2,-2],[3,-3],[-2,6],[-3,4],[-2,1],[-4,1],[-2,3],[-5,18],[-3,7],[1,5],[2,5],[3,4],[4,2],[1,2],[0,4],[1,4],[2,2],[11,0],[-2,5],[28,8],[0,-3],[-1,-2],[1,-4],[2,-4],[-6,-16],[0,-14],[6,-10],[12,-4],[20,-1],[22,5],[13,11],[2,0],[3,1],[22,-4],[30,9],[10,-5],[-5,10],[-6,5],[-11,1],[0,-1],[-1,-3],[-1,0],[-1,2],[0,4],[-1,3],[-2,3],[-9,4],[-4,3],[-1,3],[-3,14],[-10,13],[-2,14],[-1,17],[-1,14],[-3,9],[-7,3],[0,4],[4,2],[3,6],[2,7],[2,28],[2,6],[2,-5],[2,7],[0,5],[-1,3],[-4,2],[-1,3],[3,34],[2,9],[4,3],[7,-5],[0,4],[-6,4],[-6,0],[-5,-4],[-2,-10],[-1,-2],[-2,3],[-2,6],[-1,5],[0,14],[1,7],[1,6],[-4,1],[-1,4],[0,7],[1,8],[2,7],[2,4],[6,5],[-4,4],[-1,-1],[-1,-3],[-2,10],[-2,11],[-1,11],[-1,11],[2,6],[5,0],[10,-4],[0,4],[-5,2],[-8,5],[-6,0],[-2,-11],[-4,7],[-5,22],[-4,7],[2,3],[1,1],[1,0],[-8,9],[-3,7],[-3,9],[6,0],[0,4],[-3,12],[-3,0],[-2,-10],[-5,4],[-6,10],[-6,4],[1,4],[1,2],[0,2],[-3,-1],[-4,-2],[-3,-1],[-3,4],[-1,8],[1,20],[0,9],[-1,4],[-1,4],[-4,10],[0,3],[-1,3],[-1,4],[-2,7],[-8,12],[-1,4],[2,8],[8,10],[1,6],[2,18],[0,10],[-3,9],[-2,6],[-1,6],[-3,4],[-9,3],[-12,7],[2,14],[0,8],[1,5],[7,1],[3,-1],[6,-5],[3,-2],[8,2],[2,-2],[2,-2],[1,-7],[1,-3],[1,-1],[3,1],[2,0],[6,-3],[18,-4],[21,-10],[4,1],[0,-2],[1,-3],[0,-3],[2,-1],[3,1],[4,6],[3,2],[3,-1],[6,-3],[3,0],[5,3],[4,5],[7,14],[4,4],[13,6],[5,0],[33,-8],[3,-2],[1,-4],[1,-10],[6,-18],[1,-10],[-7,-7],[-1,-6],[0,-5],[-2,-3],[-6,0],[-2,-1],[-2,-3],[-1,-14],[3,-12],[5,-10],[4,-17],[21,-37],[3,-9],[1,-13],[-1,-6],[-1,-5],[-1,-3],[-1,-2],[1,-6],[2,1],[3,2],[4,1],[3,-4],[2,-4],[3,-2],[5,2],[0,4],[-3,6],[2,8],[5,7],[5,3],[36,-3],[33,-17],[48,-4],[12,-5],[6,-1],[11,8],[6,-2],[12,-8],[19,0],[5,-3],[9,-7],[14,-5],[26,-22],[7,9],[44,15],[13,8],[8,10],[6,2],[2,3],[7,14],[19,19],[34,11],[35,11],[13,9],[5,7],[4,8],[-19,-17],[-23,-4],[-23,4],[-20,9],[-6,0],[-5,1],[-6,3],[-5,4],[-3,6],[-1,4],[-4,3],[-1,6],[1,6],[1,4],[14,37],[11,52],[4,7],[14,15],[3,0],[3,4],[36,23],[3,6],[35,28],[9,5],[11,10],[22,11],[24,-1],[114,51],[7,8],[7,3],[11,17],[36,40],[15,25],[3,4],[2,5],[7,31],[9,18],[10,1],[27,-18],[3,0],[2,3],[0,4],[-3,0],[-2,1],[-1,3],[-2,4],[6,0],[0,5],[-5,0],[-6,2],[-4,5],[-2,7],[-3,7],[-12,8],[-2,5],[0,19],[2,23],[6,16],[7,-2],[4,-1],[0,4],[-16,16],[0,4],[6,20],[0,28],[1,24],[9,9],[-8,16],[-1,8],[-1,28],[-3,25],[0,12],[1,11],[6,23],[3,9],[2,11],[-2,14],[-5,22],[0,8],[0,3],[6,7],[3,2],[5,0],[6,3],[4,6],[8,16],[9,10],[53,32],[5,-2],[10,8],[44,7],[48,21],[3,3],[2,0],[17,-3],[23,8],[11,7],[4,4]],[[50550,75604],[1,0],[3,1],[1,1],[-3,8],[-3,10],[-3,6],[-3,-2],[-3,-11],[0,-7],[4,-5],[6,-1]],[[33108,59034],[-4,-3],[-3,-17],[-3,-8],[-3,-3],[-4,-1],[-3,3],[-1,9],[1,6],[3,2],[3,3],[0,9],[-2,9],[-4,-4],[-4,-5],[-5,0],[0,6],[-2,1],[-7,-3],[-16,5],[-5,-2],[-7,-5],[-4,-2],[-2,3],[-6,18],[0,4],[0,3],[-2,2],[-2,3],[7,16],[8,8],[2,4],[3,-9],[4,-2],[4,3],[2,8],[-1,4],[-2,6],[-2,9],[0,10],[-4,-3],[-4,-2],[-3,0],[-3,1],[-6,-1],[-1,1],[-1,2],[-2,7],[-1,3],[-10,14],[-5,10],[-2,10],[0,4],[-1,3],[-1,3],[-1,3],[-1,4],[0,4],[1,4],[1,4],[-1,7],[-2,7],[-2,6],[-8,17],[-2,7],[0,8],[0,8],[2,7],[3,5],[11,13],[9,0],[10,-6],[12,-17],[11,-10],[5,-6],[1,-4],[0,-5],[2,-5],[3,-2],[5,-20],[4,7],[6,5],[6,4],[7,0],[-2,-3],[-2,-3],[-1,-2],[1,-4],[-6,-12],[-3,11],[-2,-3],[-1,-11],[0,-13],[3,2],[2,-1],[1,-2],[2,-3],[-8,-9],[2,-4],[-3,-4],[1,-5],[2,-1],[2,6],[10,-8],[-2,-1],[-2,-1],[0,-1],[-2,-1],[2,-9],[2,-5],[5,-6],[1,-3],[1,-4],[1,-4],[2,-2],[2,-1],[1,-5],[0,-5],[0,-5],[4,4],[-1,-7],[0,-8],[1,-7],[2,-6],[-2,-2],[0,-2],[-1,-2],[-1,-2],[4,-4],[1,-8],[1,-10],[2,-7],[0,-4]],[[33001,59905],[0,-8],[-1,-5],[-2,-4],[-3,-6],[-7,-7],[-9,-5],[-9,3],[-3,16],[0,3],[-1,5],[-1,4],[-1,2],[-1,2],[1,4],[3,8],[1,9],[2,6],[5,12],[6,7],[6,-4],[6,-9],[3,-17],[2,-4],[2,-4],[1,-8]],[[33058,60150],[-14,-19],[-8,-7],[-6,2],[3,4],[11,19],[7,6],[7,-5]],[[32902,60114],[1,-3],[-2,-13],[2,-12],[-2,-1],[-5,-2],[-2,-6],[1,-28],[3,-20],[2,-33],[-2,-31],[-9,-22],[-13,-15],[-14,-13],[0,3],[-2,9],[2,4],[-2,8],[-2,5],[-3,3],[-3,6],[-2,7],[-1,7],[-1,6],[-3,3],[-3,21],[-1,47],[-4,21],[2,9],[-2,7],[-2,6],[-1,7],[0,10],[1,18],[-1,8],[2,5],[5,17],[4,7],[5,2],[3,-3],[2,-5],[2,-3],[7,-3],[11,-7],[9,-10],[5,-12],[-4,-4],[2,-2],[1,0],[1,2],[1,-2],[3,-6],[1,6],[3,5],[3,1],[2,-4]],[[32904,60114],[5,31],[2,7],[5,2],[1,2],[1,5],[0,6],[-1,4],[-1,2],[-2,3],[-2,2],[-2,1],[-2,21],[-1,5],[0,6],[2,8],[5,11],[1,3],[2,4],[9,10],[1,2],[1,-1],[9,-13],[5,-10],[3,-12],[1,-16],[-1,-15],[1,-6],[2,-10],[3,-8],[3,-6],[3,-5],[4,-5],[2,5],[3,-4],[3,0],[2,0],[4,-1],[2,-3],[6,-11],[2,-2],[3,-3],[15,-22],[5,-3],[2,-3],[-3,-5],[-3,0],[-7,4],[-3,2],[-4,2],[-49,-23],[-9,-8],[-5,-2],[-6,2],[-6,4],[-4,6],[-4,6],[-3,8],[-1,7],[0,8],[1,8]],[[65496,37972],[4,-5],[10,-9],[3,-6],[1,-12],[-1,-10],[-2,-10],[-5,-43],[-1,-13],[1,-11],[-1,-12],[-2,-11],[-6,-4],[-10,1],[-5,-2],[-9,-9],[-6,-2],[-7,0],[-4,4],[-5,-4],[-7,0],[-7,1],[-6,3],[-5,5],[-8,13],[-9,4],[-11,9],[-5,5],[-2,5],[-2,6],[-1,4],[-3,1],[-9,1],[-2,1],[-2,9],[-9,22],[-4,12],[-1,14],[0,10],[-1,9],[-11,31],[-4,13],[-2,13],[0,11],[1,11],[3,10],[10,8],[3,9],[1,11],[-1,8],[2,4],[0,2],[0,3],[-2,3],[4,4],[9,0],[8,12],[12,13],[14,1],[4,-1],[8,-6],[4,-1],[4,3],[4,-3],[10,0],[4,-3],[3,-5],[13,-5],[4,-5],[2,-4],[6,-13],[2,-9],[1,-19],[2,-7],[7,-14],[1,-4],[0,-12],[1,-6],[1,-5],[1,-3],[5,-4],[1,-3],[1,-3],[3,-11]],[[62572,42911],[4,9],[2,3],[2,-10],[0,-8],[-1,-9],[-1,-10],[-2,0],[-4,25]],[[62555,42935],[5,-7],[2,-7],[0,-8],[-1,-10],[-7,-21],[-2,-3],[0,-7],[2,-7],[5,-6],[-1,-8],[-2,-8],[-1,-3],[-2,-13],[-5,-11],[-2,-12],[5,-15],[-1,-4],[-1,-3],[-2,-2],[-2,-3],[-1,7],[-2,-1],[-3,-4],[-3,-2],[-3,2],[-2,3],[-2,2],[-3,-3],[1,9],[-1,6],[-3,2],[-4,0],[0,3],[5,5],[0,10],[-2,9],[-5,6],[1,3],[2,3],[3,1],[1,-3],[5,-12],[5,-6],[3,3],[0,8],[-1,10],[-2,7],[-3,7],[-8,14],[4,4],[1,0],[0,4],[-1,5],[-1,9],[-1,17],[-1,8],[-3,4],[-3,2],[-3,4],[-2,5],[-1,6],[-1,6],[0,9],[14,31],[1,-4],[0,-2],[0,-2],[-1,-1],[-1,-1],[-1,-2],[2,0],[0,-1],[1,-2],[0,-1],[4,-7],[5,-13],[3,-4],[4,-2],[8,0],[5,-3]],[[52626,75726],[7,-16],[-1,0],[0,-1],[-6,17]],[[52379,75466],[2,7],[-2,3],[-4,2],[-2,3],[1,5],[3,1],[8,0],[2,2],[2,2],[2,2],[12,4],[3,3],[3,3],[2,1],[1,0],[1,0],[0,5],[-4,5],[-1,1],[-10,8],[-1,2],[0,4],[-2,3],[-4,-6],[-1,1],[-1,2],[-1,4],[2,2],[8,8],[-6,8],[-6,0],[-11,-8],[2,5],[-2,5],[-1,6],[0,7],[1,6],[2,-3],[3,0],[3,2],[2,4],[3,-3],[1,3],[0,5],[1,4],[2,3],[0,2],[2,2],[9,2],[2,4],[0,6],[0,7],[3,8],[2,4],[-2,3],[-3,0],[-1,2],[1,3],[2,15],[4,6],[4,4],[6,2],[-2,6],[2,13],[-2,5],[0,5],[2,-2],[1,0],[0,-1],[1,-5],[4,4],[3,-2],[3,-5],[3,-2],[4,3],[4,5],[2,8],[1,9],[-2,4],[11,1],[18,14],[31,11],[8,7],[1,11],[15,27],[3,3],[7,2],[6,0],[3,-1],[3,0],[14,-6],[6,-6],[2,-3],[2,-3],[1,-5],[3,-12],[2,0],[10,27],[4,17],[-3,13],[2,12],[-1,10],[-4,10],[-5,9],[8,16],[0,5],[-2,6],[0,5],[1,6],[2,4],[7,11],[-1,3],[-1,1],[1,3],[1,5],[-3,5],[-2,9],[-1,10],[2,8],[4,5],[12,0],[5,3],[3,-8],[3,-3],[5,-5],[0,-4],[-2,-5],[0,-7],[1,-6],[3,-6],[-1,-11],[5,-54],[0,-18],[-9,-56],[0,-7],[-1,-8],[1,-17],[-1,-2],[-1,-1],[0,-2],[-1,-3],[1,-2],[1,-1],[2,-1],[1,-5],[1,-3],[0,-3],[-2,-5],[3,-3],[0,-4],[1,-5],[2,-4],[2,-3],[8,-5],[-1,8],[-1,4],[-5,15],[9,-18],[2,-11],[1,-11],[0,-34],[1,-18],[3,-13],[-2,-7],[-1,-9],[-1,-9],[0,-11],[2,-12],[5,-23],[1,-12],[-2,-74],[2,-14],[-1,-4],[0,-11],[-1,-4],[-2,-6],[-7,-11],[-3,-8],[-5,-14],[-19,-44],[-4,-7],[-2,-5],[0,-21],[-2,-41],[2,-41],[0,-43],[-1,-3],[-2,-2],[-3,-3],[-2,-6],[-2,-5],[4,0],[-1,-11],[-1,-6],[-3,-3],[-2,0],[-3,0],[0,-4],[1,-9],[-4,3],[-4,2],[-4,0],[-3,-1],[0,-5],[-3,-6],[-1,-5],[4,-4],[9,6],[5,1],[3,-5],[-1,-8],[-3,-7],[-4,-5],[-5,-2],[-2,-3],[-2,-6],[-3,-6],[-5,-1],[1,-4],[0,-4],[0,-5],[-1,-4],[3,-2],[1,-4],[-1,-6],[-3,-4],[2,-4],[-5,-3],[-7,-8],[-5,-1],[0,-4],[3,-4],[1,-4],[-1,-5],[-3,-4],[0,-3],[3,2],[5,7],[3,3],[-1,-9],[-2,-10],[-3,-9],[-2,-5],[-4,-4],[-4,2],[-7,10],[-4,3],[-9,2],[-7,5],[3,16],[2,2],[2,1],[-4,6],[-7,5],[-4,5],[4,8],[0,4],[-4,-2],[-8,-10],[-2,4],[1,1],[0,1],[1,0],[0,2],[-3,-1],[-1,-1],[-1,-2],[-2,4],[-3,5],[-7,3],[-7,2],[-4,-2],[-3,4],[-3,4],[-2,3],[-7,2],[-1,2],[0,3],[-2,2],[-2,2],[-2,0],[-3,0],[-2,3],[4,4],[0,4],[-4,2],[-2,2],[-2,-1],[-4,2],[-4,2],[-1,3],[1,11],[-1,4],[-4,3],[2,8],[2,12],[2,8],[5,-4],[15,11],[2,4],[2,8],[3,4],[4,3],[3,7],[-7,0],[-17,8],[-7,1],[-6,1],[-4,6],[3,12],[-7,0],[-12,-7],[-6,-1],[1,3],[1,5],[-4,0],[-3,1],[-3,2],[-3,2],[3,3],[8,1],[4,4],[2,5],[1,6],[0,5],[-3,3],[0,5],[6,0],[6,3],[9,9],[-2,5],[-2,4],[-3,2],[-3,1],[9,5],[3,3],[-1,2],[-1,4],[-1,3],[-1,-1],[3,9],[1,0],[0,3],[3,5],[0,4],[-3,4],[-2,5],[-1,4],[-2,2],[-3,1],[-6,-1],[-9,-8],[-6,-3],[-11,-2],[-5,-1],[-5,-5],[-2,8],[4,10],[-2,8],[-7,14],[13,2],[6,4],[3,11],[-3,3],[2,7],[6,7],[6,3],[1,1],[8,7],[1,0],[1,7],[-2,4],[-4,5],[-5,17],[-2,5],[-3,2],[-8,-4],[-1,2],[-2,8],[-5,5],[-7,2],[-5,0],[1,5],[1,2],[-2,3],[-3,2],[-2,0],[-3,0],[3,1],[2,2],[5,5],[0,4],[-8,0],[0,4],[3,2],[1,6],[-1,6],[-3,2]],[[49661,77678],[-2,-5],[3,-4],[8,-7],[2,-6],[1,-4],[-2,-26],[-3,-15],[-4,-10],[-5,4],[-4,20],[-3,8],[-3,9],[-16,27],[-6,6],[-6,11],[-4,11],[1,6],[0,6],[-3,13],[-6,21],[9,-2],[9,-7],[9,-10],[7,-11],[3,-3],[3,2],[4,1],[4,-6],[1,-8],[0,-6],[0,-6],[3,-5],[0,-4]],[[49644,77804],[-2,2],[-1,1],[-13,4],[-27,25],[-15,-4],[-4,3],[-12,19],[-3,3],[0,4],[16,6],[5,-2],[2,-2],[2,-3],[0,-4],[-2,-3],[-7,4],[-2,0],[4,-13],[8,1],[8,5],[7,3],[0,-5],[-4,0],[0,-4],[4,-3],[28,-7],[7,-6],[5,-9],[3,-11],[-2,-1],[-3,-1],[-2,-2]],[[49350,78145],[11,-7],[5,-6],[3,-7],[-6,3],[-22,1],[-3,10],[2,6],[5,1],[5,-1]],[[49388,78295],[3,-5],[10,-7],[3,-4],[1,-9],[1,-12],[-2,-8],[-4,4],[-4,14],[-6,13],[-7,7],[-8,-5],[-4,9],[-4,22],[-5,9],[16,2],[5,-2],[5,-5],[1,-7],[-1,-7],[0,-9]],[[49134,78500],[4,-2],[8,0],[3,-4],[-1,-11],[-8,-4],[-22,3],[-14,7],[-5,5],[1,9],[-2,10],[-3,9],[-2,9],[3,3],[1,4],[2,0],[2,-4],[4,-1],[12,-9],[7,-8],[1,-2],[9,-14]],[[48597,79180],[0,-2],[1,-1],[1,-2],[1,1],[0,-5],[-14,-10],[-5,-2],[0,4],[1,1],[2,-1],[1,0],[-2,6],[-2,1],[-7,-3],[0,4],[11,10],[6,2],[6,-3]],[[32882,59869],[1,-2],[1,-5],[-1,-4],[-2,-4],[-3,4],[1,8],[3,3]],[[32898,59873],[0,-1],[0,-1],[-1,-3],[-3,-5],[-3,-2],[-1,3],[1,3],[2,2],[1,6],[2,1],[1,-1],[1,-2]],[[51731,75948],[2,2],[3,-5],[0,-9],[-6,-4],[-4,-3],[-4,-2],[-3,2],[-7,6],[0,3],[3,2],[8,0],[2,2],[1,2],[1,0],[1,0],[3,0],[0,4]],[[34829,51847],[-5,-3],[-6,-2],[-5,-1],[-6,2],[-3,3],[-1,5],[1,6],[-1,6],[-2,14],[1,11],[1,1],[2,-1],[1,1],[0,4],[0,3],[-1,7],[-1,3],[0,12],[-1,3],[-4,4],[-6,5],[-4,0],[-5,-5],[-4,-5],[-14,-9],[-11,8],[-27,57],[-1,5],[1,8],[5,12],[2,8],[-2,6],[-5,-1],[-11,-10],[-6,-8],[-10,-19],[-10,-10],[-3,-2],[-2,0],[-2,5],[1,12],[-1,5],[-10,-2],[-22,-36],[-7,1],[-3,8],[-4,4],[-5,-1],[-5,-4],[-5,-10],[-1,-11],[-1,-11],[-2,-9],[-8,-7],[-10,0],[-11,3],[-10,1],[-16,-3],[-5,1],[-6,0],[-10,-10],[-22,-12],[-6,3],[-3,5],[-3,13],[-2,5],[-3,3],[-19,10],[-5,5],[-15,26],[-6,8],[-7,1],[-3,-2],[-2,-3],[-2,-11],[-3,-25],[0,-26],[-2,-11],[-8,-26],[-2,-4],[-3,-4],[-3,1],[-3,3],[-2,2],[-4,-1],[-3,-10],[-5,-17],[-3,-17],[-1,-11],[4,-5],[12,-1],[5,-3],[5,-10],[3,-24],[3,-12],[8,-11],[2,-5],[10,-27],[10,-17],[2,-7],[1,-8],[-1,-5],[-1,-5],[-1,-8],[1,-26],[1,-24],[-1,-21],[-9,-20],[-18,-12],[-18,8],[-17,15],[-18,10],[-14,-2],[-4,1],[-5,5],[-10,14],[-6,5],[-5,1],[-8,-4],[-5,-1],[-4,1],[-15,12]],[[34310,51620],[-1,6],[-1,6],[-3,4],[-6,4],[-2,3],[-2,4],[-1,5],[-11,12],[-27,1],[-8,7],[-27,80],[-2,18],[-2,13],[-2,26],[-4,12],[-2,2],[-7,3],[-2,3],[-2,5],[1,21],[-4,14],[-9,18],[-3,11],[2,8],[1,6],[-2,6],[-4,9],[-2,5],[0,9],[0,5],[1,7],[1,6],[-2,6],[-6,-9],[-4,-3],[-2,6],[2,20],[-1,4],[-7,17],[-1,6],[0,10],[1,7],[1,7],[-2,8],[-6,-7],[-2,4],[-2,23],[-3,11],[-7,16],[-1,8],[1,5],[2,8],[0,6],[-2,3],[-10,-3],[-1,-1],[-2,11],[5,21],[-2,4],[-3,-1],[-6,-6],[-2,-1],[-4,3],[-1,5],[-1,6],[-2,2],[-1,6],[-4,31],[3,6],[4,7],[3,9],[-1,8],[-9,2],[-4,5],[2,7],[2,6],[0,5],[-1,5],[-1,7],[1,2],[4,0],[1,2],[0,4],[-2,8],[0,5],[-2,13],[-5,9],[-3,11],[5,17],[-1,1],[-1,1],[0,2],[-2,-4],[-3,-3],[-2,-2],[-3,1],[-3,5],[0,4],[2,4],[1,7],[-3,14],[-1,7],[1,7],[1,12],[0,7],[-1,7],[-1,5],[-1,5],[2,7],[1,4],[0,21],[0,8],[-7,30],[-9,-14],[-8,-3],[-7,5],[-9,8],[1,-11],[-2,-5],[-8,-4],[-1,-2],[-2,-4],[-2,-3],[-1,3],[-1,3],[-1,1],[-2,1],[-3,1],[-1,2],[-4,5],[-3,1],[-3,-12],[-3,0],[-3,1],[-8,11],[-5,5],[-8,4],[-2,2],[-2,2],[-1,3],[-1,7],[0,7],[0,5],[1,10],[0,4],[0,8],[0,3],[4,18],[0,10],[-4,11],[-6,7],[-1,2],[-1,1],[-3,1],[-1,1],[-1,3],[-1,2],[0,3],[-2,8],[-1,11],[-1,4],[-11,14],[-14,12],[-4,7],[-3,11],[-2,12],[-1,27],[-1,11],[-6,27],[-14,44],[-4,12],[-19,30],[-6,18],[-3,21],[-4,51],[-3,25],[0,12],[4,13],[24,53],[3,10],[2,11],[1,15],[-1,10],[-2,9],[0,9],[1,11],[2,9],[4,8],[2,8],[2,19],[5,27],[5,16],[5,30],[4,16],[3,10],[0,11],[-2,11],[-8,20],[-3,24],[-5,7],[-5,5],[-2,8],[2,20],[5,14],[5,11],[3,10],[6,20],[2,4],[4,2],[2,-2],[3,-2],[4,-2],[6,2],[4,6],[4,16],[7,16],[10,9],[10,2],[11,-10],[12,9],[6,2],[8,1],[1,-2],[4,-8],[2,-2],[4,0],[4,3],[22,5],[7,4],[3,3],[2,2],[3,2],[4,1],[2,-1],[2,-2],[3,0],[2,3],[-10,20],[-1,6],[0,8],[1,7],[4,20],[2,17],[2,8],[3,4],[5,-1],[4,-2],[2,-6],[2,-12],[4,4],[4,5],[4,7],[1,8],[-2,12],[-9,24],[-2,10],[0,1],[-2,4],[-2,2],[-4,-1],[-2,-3],[0,-5],[1,-6],[3,-7],[-1,-4],[-2,-3],[-2,0],[-3,1],[-1,3],[0,5],[-1,41],[-1,2],[-2,0],[-2,1],[-4,-3],[-3,0],[-1,5],[1,7],[2,6],[14,29],[3,10],[1,13],[0,13],[1,10],[3,12]],[[34098,53718],[3,8],[3,5],[9,8],[3,6],[3,7],[2,9],[7,64],[1,56],[2,19],[0,15],[4,24],[3,17],[7,26],[1,6],[2,5],[2,4],[7,2],[2,3],[1,3],[1,1],[2,1],[3,9],[2,3],[3,2],[2,1],[3,6],[2,2],[8,-5],[17,-8],[10,-3],[14,0],[22,-2],[12,-1],[5,-4],[8,-11],[5,-5],[6,-3],[13,-3],[30,-15],[17,-9],[15,-2],[13,-7],[9,-6],[9,-4],[19,-9],[11,-8],[7,-4],[6,-2],[10,-8],[18,-4],[5,-12],[4,-4],[2,-8],[0,-52],[2,0],[1,10],[1,9],[-1,20],[-1,11],[-4,22],[-3,14],[4,12],[-3,6],[-3,-1],[-4,0],[-3,7],[-1,12],[1,9],[4,12],[2,6],[4,8],[3,6],[4,7],[5,4],[6,4],[7,0],[25,3],[14,2],[12,1],[67,-8],[17,-6],[7,-12],[5,-4],[6,-3],[2,-3],[3,-5],[2,-5],[3,-3],[1,-1],[2,-1],[3,0],[3,-1],[4,-1],[3,2],[3,4],[5,1],[5,-8],[5,-8],[2,-9],[-3,-17],[-4,-10],[8,6],[2,13],[1,13],[1,5],[6,0],[9,-14],[6,-3],[4,2],[2,3],[2,1],[6,-8],[3,-1],[2,1],[3,2],[2,3],[1,4],[2,4],[4,1],[2,-1],[3,-3],[5,-8],[-1,5],[-2,5],[-2,4],[-3,3],[-3,1],[-3,-1],[-2,-4],[-4,-4],[-6,-1],[-4,5],[-4,2],[-5,-5],[-4,0],[-4,8],[-4,4],[-16,10],[-6,6],[-5,7],[-2,6],[-1,6],[-2,4],[2,6],[3,4],[7,6],[9,3],[11,2],[9,0],[67,-5],[5,-2],[12,-3],[11,-4],[56,-17],[34,-16],[26,-11],[24,-16],[20,-12],[6,-2],[3,-2],[7,1],[2,-5],[3,-3],[2,-6],[-1,-6],[7,-27],[1,-11],[-2,-6],[-7,-27],[-3,-12],[-1,-23],[-4,-46],[-3,-24],[-4,-13],[-5,-13],[-5,-9],[-2,-6],[-1,-6],[-2,-11],[-12,-39]],[[34310,51620],[-13,-11],[-8,-10],[-5,-1],[-4,5],[-4,6],[-4,6],[-6,2],[-4,-4],[-4,-6],[-4,-5],[-5,0],[-6,2],[-4,-1],[-12,-21],[-3,-3],[-4,0],[-20,7],[-3,3],[-5,8],[-2,5],[-2,4],[-6,0],[-9,-2],[-5,0],[-5,2],[-7,8],[-5,9],[-4,13],[-1,16],[-9,15],[-13,-12],[-24,-31],[-6,2],[-10,13],[-6,2],[-7,-5],[-4,-8],[-3,-10],[-4,-8],[-6,-7],[-4,-3],[-3,-5],[-7,-39],[-3,-11],[-18,-50],[-9,-13],[-13,-7],[-8,-1],[-24,9],[-9,1],[-9,-5],[-23,-21],[-9,-12],[-5,-4],[-5,1],[-8,7],[-4,1],[-2,-4],[0,-9],[2,-18],[-1,-11],[-2,-10],[-5,-20],[-4,-11],[-12,-5],[-13,1],[-9,5],[-2,5],[-2,13],[-2,6],[-4,5],[-3,-1],[-3,-4],[-3,-2],[-6,1],[-6,2],[-6,3],[-5,6],[-2,4],[-2,10],[-1,1],[-4,-5],[-2,-8],[-1,-8],[-2,-7],[-3,-4],[-6,-6],[-2,-4],[0,-6],[1,-12],[0,-6],[-7,-11],[-4,-1],[-20,-7],[-1,-2],[-3,-9],[2,-12],[5,-24],[2,-12],[0,-14],[-2,-11],[-9,-29],[-2,0],[-2,3],[-2,1],[0,2],[-1,2],[-2,2],[-1,2],[-1,-1],[-4,-6],[-2,-2],[-28,6],[-4,-1],[-3,-5],[-8,-24],[-5,-10],[-5,-8],[-7,-6],[-5,-2],[-5,-1],[-5,2],[-6,5],[-7,12],[-2,12],[-2,13],[-4,14],[-5,9],[-6,7],[-1,1],[-11,9],[-47,17],[-17,13],[-5,5],[-4,10],[-6,29],[-2,6],[-5,6],[-1,11],[-1,11],[-3,9],[-3,0],[-5,-3],[-4,2],[-1,3],[-2,9],[-1,3],[-1,2],[-4,1],[-1,1],[-3,6],[-5,21],[-3,6],[-8,15],[-5,12],[-8,27],[-5,11],[-6,4],[-5,-2],[-5,-3],[-6,0],[-3,1],[-3,3],[-2,5],[-6,13],[-1,5],[5,13],[5,24],[0,7],[-1,1],[-1,-1],[-4,2],[-10,9],[-3,0],[-6,-4],[-3,0],[-3,6],[-1,13],[-1,13],[0,9],[1,7],[4,11],[1,7],[0,5],[0,15],[0,5],[2,10],[0,5],[-1,7],[-3,12],[0,8],[0,6],[4,10],[1,6],[-1,6],[-2,18],[0,22],[1,23],[0,20],[-6,15],[-3,1],[-5,0],[-3,1],[-3,4],[-9,16],[-11,12],[-5,8],[-3,11],[0,6],[3,10],[0,6],[0,7],[-1,12],[0,7],[-8,38],[-1,12],[0,7],[-1,5],[-2,9],[-1,3],[-4,3],[-1,2],[0,2],[2,7],[0,3],[-9,37],[-1,11],[2,97],[6,48],[0,13],[-1,34],[2,15],[2,14],[8,25],[1,3],[2,1],[2,2],[1,4],[-1,4],[-2,7],[0,3],[1,2],[3,1],[1,2],[-1,4],[-2,6],[-1,4],[0,7],[2,5],[2,4],[1,5],[4,27],[1,6],[8,25],[3,20],[0,1],[2,0],[2,1],[2,2],[0,5],[-2,7],[0,4],[1,29],[-5,-4],[1,11],[5,24],[-3,15],[-5,12],[-4,13],[0,18],[7,16],[23,17],[10,21],[7,6],[2,4],[2,7],[0,5],[0,5],[0,7],[2,15],[4,8],[11,10],[5,10],[1,8],[-1,10],[-1,13],[2,12],[4,14],[5,11],[6,5],[2,0],[2,3],[0,5],[0,6],[-2,4],[-4,3],[-8,3],[-3,0],[-2,2],[0,15],[-1,4],[-1,3],[-4,15],[-10,19],[-2,9],[0,14],[4,9],[0,9],[-6,10],[-12,8],[-4,7],[-3,16],[-1,6],[0,5],[1,11],[0,3],[3,7],[1,4],[-1,4],[-3,7],[0,2],[3,11],[9,21],[2,14],[0,5],[0,5],[-1,2],[-3,1],[-3,2],[-3,5],[-2,6],[-2,5],[-16,19],[-4,10],[-2,-5],[-3,-1],[-6,3],[-1,0],[-3,0],[-1,1],[-1,4],[0,7],[-1,3],[-3,0],[-6,-6],[-2,-1],[-2,3],[-4,12],[-2,3],[-3,1],[-3,0],[-3,-1],[-1,-5],[-2,-4],[-3,1],[-7,5],[-5,-2],[-4,-2],[-3,1],[-2,11],[-1,4],[-3,4],[-3,0],[-2,-5],[0,-6],[-2,-3],[-3,0],[-3,2],[-4,4],[-3,9],[-2,11],[1,11],[8,17],[2,1],[6,0],[2,2],[3,5],[1,6],[0,6],[1,7],[1,7],[8,24],[2,10],[2,10],[1,11],[-2,26],[4,26],[1,36],[2,17],[2,11],[1,11],[0,23],[5,36],[0,17],[-8,8],[-12,15],[-6,9],[-4,9],[0,1],[-9,44],[-3,7],[-12,-10],[-4,8],[-3,14],[-3,2],[-12,-6],[-5,-6],[-11,-24],[-6,-8],[-6,0],[-12,9],[-6,-1],[-2,-3],[-3,-12],[-3,-4],[-2,0],[-2,3],[-2,4],[-2,3],[-5,3],[-16,-5],[-4,1],[-3,3],[-3,4],[-3,3],[-3,1],[-17,3],[-6,-1],[-13,-6]],[[33127,53550],[-21,50],[-21,49],[-21,49],[-21,50],[-21,49],[-21,50],[-21,49],[-21,50],[-9,21],[-5,24],[3,6],[9,11],[4,7],[13,44],[4,19],[2,8],[4,5],[9,3],[5,3],[3,5],[3,7],[3,16],[3,6],[4,2],[4,-1],[3,1],[1,10],[0,8],[2,22],[-1,6],[-1,2],[0,2],[-1,4],[-2,4],[-5,6],[-1,6],[-2,16],[0,7],[1,28],[2,8],[2,8],[1,5],[0,4],[-1,5],[0,5],[-3,9],[-3,18],[-2,9],[-4,8],[-4,4],[-3,6],[-1,12],[2,21],[4,22],[6,21],[9,21],[2,7],[5,2],[6,-1],[6,-3],[2,10],[6,-2],[6,-3],[5,8],[13,-3],[6,1],[1,3],[8,17],[0,2],[0,5],[0,5],[-3,9],[-1,6],[2,3],[4,-1],[6,-3],[2,-3],[2,-4],[2,-4],[3,-2],[3,0],[6,3],[4,1],[5,-3],[10,-14],[5,-3],[5,4],[5,10],[8,24],[4,8],[6,5],[20,10],[35,47],[8,4],[4,-6],[3,29],[2,10],[4,8],[5,6],[4,7],[3,8],[2,10],[1,10],[0,11],[-2,9],[-4,7],[-10,11],[0,1],[-3,7],[-3,4],[-4,1],[-5,-2],[-4,1],[-3,3],[-2,4],[-4,3],[-7,0],[-6,-5],[-4,-9],[-7,-23],[-3,0],[-20,32],[-3,6],[-4,18],[0,18],[4,16],[6,13],[2,4],[0,4],[0,5],[0,5],[-3,8],[-3,16],[-2,8],[-2,3],[-2,2],[-2,3],[-2,6],[1,5],[0,4],[0,3],[-2,4],[-3,6],[-4,2],[-4,3],[-6,25],[-2,8],[0,9],[4,16],[13,8],[4,12],[4,15],[3,8],[1,3],[4,-2],[3,5],[1,7],[-1,9],[5,16],[0,6],[-1,12],[0,5],[1,5],[7,16],[5,22],[4,8],[6,4],[24,-1],[12,3],[7,11],[2,13],[6,12],[13,20],[2,2],[4,8],[2,9],[4,8],[13,11],[5,9],[4,9],[6,9],[6,4],[11,-2],[6,1],[5,6],[3,10],[2,24],[3,9],[1,7],[-1,6],[0,9],[2,9],[7,12],[3,7],[5,5],[14,7],[5,0],[6,4],[5,11],[4,13],[0,12],[-11,38],[-29,69],[-17,53]],[[33327,55538],[6,-6],[9,-12],[10,-21],[16,-52],[10,-21],[8,-9],[14,-7],[6,-8],[16,-23],[8,-10],[8,-3],[2,-9],[1,-1],[0,-5],[1,-1],[2,0],[16,-7],[2,-4],[3,-9],[25,-45],[-6,21],[-10,21],[-11,16],[-21,18],[-26,38],[-17,19],[-2,6],[-3,17],[0,7],[7,3],[4,-5],[10,-16],[12,-7],[5,-8],[9,-16],[18,-24],[26,-24],[29,-45],[51,-64],[17,-27],[4,-8],[4,-11],[15,-29],[38,-91],[14,-24],[8,-25],[7,-20],[7,-29],[5,-14],[1,3],[-3,15],[0,6],[4,0],[7,-5],[6,-10],[5,-11],[5,-12],[4,-15],[6,-20],[7,-18],[5,-13],[22,-46],[5,-18],[2,-20],[-3,-19],[2,4],[-2,-25],[2,-76],[-5,-62],[-4,-10],[-6,-10],[-4,-7],[-4,-11],[-3,-12],[-2,-12],[-2,-23],[-6,-35],[-1,-13],[1,-39],[-1,-6],[-3,-7],[0,-7],[0,-105],[-2,-13],[-1,-7],[-18,-56],[1,-1],[1,-2],[8,16],[3,4],[1,2],[1,4],[1,2],[4,-4],[2,0],[1,0],[4,0],[-2,4],[4,23],[1,78],[3,25],[29,110],[8,21],[10,15],[12,7],[12,-2],[10,-7],[17,-18],[6,-11],[1,-2],[1,-2],[2,-4],[1,-1],[1,-1],[2,2],[0,7],[3,2],[24,-6],[17,-18],[5,-10],[9,-13],[10,-22],[8,-12],[15,-30],[8,-19],[3,-9],[5,-4],[6,-14],[16,-27],[9,-15],[6,-11],[3,-9],[5,-9],[5,-12],[6,-29],[8,-42],[3,-8],[1,-12],[1,-5],[3,8],[0,5],[1,7],[0,10],[3,8],[3,3],[1,3],[1,0],[6,-1],[6,-4],[4,-5],[6,-6],[8,-11],[4,-4],[10,-13],[11,-18],[23,-49],[5,-18],[6,-22],[2,-24],[1,-14],[1,-7],[2,-6],[0,-6],[0,-6],[-4,12],[-2,4],[5,-21],[2,-8],[0,-13],[0,-10],[1,-21],[-4,-21],[-2,-11],[-2,-10],[-1,-7],[0,-12],[-3,-14],[-1,-14],[7,-23],[-1,-32],[-3,-19],[-3,-11],[-3,-14],[-14,-43],[0,-4]],[[33783,54599],[13,-4],[0,-3],[-16,-24],[-14,-9],[-5,-13],[-1,10],[1,14],[3,11],[5,7],[2,8],[1,3],[3,1],[8,-1]],[[85656,73344],[8,-28],[13,-43],[3,-18],[6,-29],[25,-81],[19,-85],[3,-10],[10,-20],[4,-18],[46,-111],[18,-44],[22,-40],[3,-5],[14,-28],[1,-12],[0,-15],[2,-12],[10,-10],[3,-10],[8,-44],[3,-11],[5,-4],[3,-6],[13,-43],[7,-16],[3,-9],[1,-9],[2,-9],[13,-25],[5,-21],[4,-45],[5,-24],[14,-34],[1,-7],[-2,-7],[-2,-7],[-2,-6],[0,-6],[2,-18],[3,-53],[2,-25],[9,-49],[1,-25],[-3,-23],[-6,-20],[-5,-24],[0,-1],[1,-24],[4,-24],[2,-24],[-2,-51],[-2,-11],[-8,-18],[-4,-10],[-1,-11],[-1,-72],[1,-10],[1,-5],[2,-2],[2,-3],[1,-20],[2,-16],[3,-3],[1,-3],[-1,-9],[-2,-5],[-3,-3],[-3,-1],[-4,-7],[-1,-8],[6,-9],[4,-9],[5,-9],[5,-2],[8,10],[17,33],[4,10],[4,-6],[1,-10],[2,-11],[2,-12],[-5,-11],[-10,-35],[-1,-15],[-2,-41],[-8,-35],[1,-22],[-8,-38],[-5,-19],[-2,-9],[2,-11],[2,-5],[2,-6],[-1,-13],[0,-15],[-2,-23],[-3,-10],[-5,-10],[-4,-4],[-2,10],[-1,14],[-4,10],[-4,2],[-2,-12],[4,-1],[2,-5],[1,-8],[0,-8],[-1,-8],[-3,-2],[-3,0],[-2,-4],[0,-4],[1,-12],[1,-11],[-3,-7],[-2,-7],[2,-6],[2,-3],[0,-8],[-6,-4],[-5,-5],[-8,-14],[-7,1],[-1,-9],[-1,-11],[-1,-5],[-2,-5],[1,-8],[1,-4],[-4,-11],[-4,-16],[-5,-10],[-3,-10],[-2,-7],[-4,0],[-3,1],[-4,-1],[-3,0],[-3,-3],[-3,0],[0,-9],[2,-5],[0,-7],[-1,-8],[-6,-5],[-5,7],[-4,5],[-2,5],[-7,-14],[-3,-11],[-1,-11],[-3,-3],[-1,6],[-3,6],[0,-6],[1,-12],[-3,0],[0,4],[-2,1],[-3,-3],[-2,-3],[-2,4],[-2,13],[1,12],[2,16],[0,8],[-1,2],[-3,-6],[-8,-26],[-4,-1],[0,12],[0,12],[-2,0],[-2,-9],[-2,-15],[-7,2],[-18,-1],[-1,11],[-2,6],[-3,-16],[-3,-3],[-6,5],[-3,10],[-3,1],[-5,-6],[0,26],[-1,2],[-2,-2],[-2,-5],[0,-9],[-5,6],[-3,9],[-4,5],[-6,-4],[2,8],[-3,12],[1,5],[-2,15],[-2,2],[-3,-5],[-4,-10],[0,-6],[4,-13],[2,-16],[1,-5],[2,-7],[5,-11],[1,-6],[-2,-7],[2,-1],[4,-3],[2,0],[-3,-3],[-2,-1],[-6,0],[-3,1],[0,3],[-1,4],[-1,4],[-2,5],[-2,2],[-15,9],[-4,1],[-9,-3],[-3,-2],[0,-4],[3,-8],[-5,-2],[-9,-9],[-11,-5],[-2,-7],[0,-8],[-3,-6],[0,-4],[28,26],[4,0],[1,-10],[2,-8],[0,-6],[-2,-8],[-3,-4],[-6,-1],[-5,0],[-4,3],[-2,-6],[2,-3],[2,-2],[2,-5],[0,-4],[0,-4],[0,-12],[-2,-25],[3,-4],[2,2],[2,4],[1,6],[3,-8],[-3,-12],[-7,-16],[-7,-3],[-8,1],[0,9],[6,0],[2,1],[1,4],[-17,3],[-4,3],[-4,9],[0,5],[3,3],[6,5],[-6,22],[-5,-8],[-4,-15],[-7,-1],[-6,14],[-3,3],[-6,1],[-3,-3],[-1,-7],[-1,-9],[0,-9],[-6,2],[-13,-1],[-5,5],[0,3],[0,9],[-1,2],[-1,1],[-3,-1],[-4,2],[-7,0],[-2,3],[-1,4],[0,5],[1,5],[0,4],[0,43],[0,7],[1,4],[1,4],[2,6],[0,7],[-4,-9],[-4,-11],[-4,-8],[-7,-1],[5,-21],[-3,-4],[-8,1],[-7,-8],[-3,14],[-2,6],[-3,4],[-1,-19],[-3,-15],[-6,-9],[-7,-2],[-3,2],[-3,2],[-2,-1],[-1,-3],[-5,6],[-2,2],[-2,1],[-12,-1],[-3,2],[-2,3],[0,4],[-2,6],[-3,4],[-1,-4],[0,-7],[1,-3],[-2,-11],[-1,-4],[-3,-5],[-10,-15],[-6,-5],[-4,7],[-5,18],[-5,3],[-3,-7],[-1,-12],[0,-10],[3,-10],[4,-14],[5,-12],[4,-5],[3,-7],[3,-2],[4,4],[8,14],[6,1],[5,-2],[5,0],[5,5],[0,-12],[-1,-8],[-3,-17],[-3,-29],[-2,-7],[-10,-6],[-8,7],[-6,2],[-5,-20],[-1,2],[-1,0],[0,-1],[-2,-1],[3,-7],[1,-9],[2,-26],[-1,-5],[-3,3],[-5,8],[-6,2],[-5,4],[-3,9],[-2,13],[2,13],[4,12],[2,12],[-1,10],[-2,5],[-5,17],[-1,1],[-1,1],[-2,0],[-1,3],[0,3],[0,3],[1,2],[-4,16],[-1,6],[0,3],[1,6],[1,3],[-1,3],[-1,3],[-2,1],[0,-3],[-1,-1],[-5,-21],[-2,-5],[-1,-1],[-1,0],[-10,-6],[-5,-1],[-12,0],[-5,-2],[4,-5],[7,-6],[6,-3],[0,-4],[-12,-6],[-6,-6],[-1,-8],[3,-4],[5,4],[3,-2],[2,-6],[-1,-2],[-1,0],[-1,-2],[4,-23],[8,-13],[8,-10],[6,-15],[-2,1],[-5,0],[-2,-1],[11,-8],[2,-7],[1,-12],[-3,-4],[-3,-5],[-5,1],[-3,-2],[-13,14],[-4,2],[-4,-1],[-4,-3],[-4,-5],[-2,-5],[1,-2],[3,-12],[4,-1],[3,-3],[10,5],[6,-9],[-13,-21],[-5,-12],[-5,4],[-8,-10],[1,-11],[3,-6],[-7,-1],[-12,27],[-4,14],[-10,20],[-3,-1],[-11,-11],[1,-6],[1,-2],[-5,3],[-4,1],[-4,4],[-2,8],[-1,9],[2,5],[6,6],[2,3],[6,13],[3,13],[2,5],[4,3],[0,-10],[-1,-9],[-4,-18],[8,1],[6,5],[5,10],[-1,17],[-1,7],[-2,4],[-2,4],[0,9],[1,5],[8,16],[3,-3],[2,-4],[1,-4],[-2,-6],[2,-8],[2,-5],[3,-2],[5,3],[1,4],[4,14],[2,6],[-4,11],[-1,10],[-2,5],[-5,-7],[-6,-5],[-5,8],[-7,19],[-4,-11],[-6,-25],[-4,-9],[-4,-2],[-3,0],[-7,2],[-3,-2],[-3,-4],[-5,-12],[-3,-3],[-10,-11],[-5,-7],[-4,-4],[-3,-1],[-2,-2],[-1,-5],[0,-7],[0,-7],[-2,-5],[-2,-5],[-2,-6],[2,-8],[-15,-26],[0,-25],[-2,-4],[-8,7],[-2,-6],[-1,-5],[0,-7],[2,-7],[-4,2],[-8,10],[-10,6],[-3,2],[-2,12],[1,30],[-1,11],[2,8],[-1,9],[-2,8],[-3,4],[-3,-2],[-3,-5],[-2,-6],[-1,-6],[1,-8],[2,-7],[0,-5],[-9,-5],[1,-7],[7,-14],[-11,-11],[-4,-7],[4,-2],[1,-2],[0,-3],[0,-3],[-1,-1],[-2,1],[-2,2],[-1,1],[-4,-1],[-1,-3],[0,-4],[-1,-6],[-3,-2],[-8,-4],[-3,-5],[-1,-4],[-7,-40],[0,-5],[0,-7],[-7,2],[-13,-7],[-3,1],[0,7],[2,14],[0,7],[-3,4],[-3,1],[-8,0],[0,3],[2,4],[0,2],[1,9],[1,1],[1,-1],[1,1],[4,13],[1,6],[-1,6],[-2,2],[-2,1],[-4,1],[-3,2],[0,3],[1,3],[0,1],[0,7],[2,7],[-1,4],[-4,-2],[1,14],[5,7],[8,3],[7,0],[-2,5],[-1,3],[-3,3],[-2,1],[4,6],[3,6],[0,5],[-3,4],[-2,-1],[-2,-6],[-2,-2],[-2,0],[-4,4],[-2,0],[-1,-2],[-1,-4],[-1,-6],[-3,-1],[-2,0],[-3,1],[-6,0],[-3,-1],[-4,-3],[-1,10],[-2,5],[-7,6],[0,2],[-1,4],[-2,3],[-1,-4],[0,-2],[-2,-2],[-3,-1],[-1,2],[-6,9],[-1,1],[-1,6],[1,1],[1,1],[1,4],[1,-3],[3,0],[2,3],[-1,6],[-8,6],[-6,7],[0,18],[2,18],[3,14],[1,4],[-1,6],[1,4],[2,2],[2,0],[2,-1],[2,-2],[2,-7],[8,-23],[-2,-6],[-1,-6],[0,-6],[1,-6],[6,-28],[3,-4],[14,-4],[6,-7],[3,0],[2,10],[-3,0],[-1,1],[-6,2],[-3,8],[-3,6],[1,14],[-4,-2],[-2,-8],[-3,0],[-1,11],[-1,14],[2,9],[-2,10],[8,1],[12,-4],[1,-5],[-1,-7],[0,-3],[0,-2],[1,-4],[3,-3],[2,-4],[3,-4],[5,-4],[3,-5],[4,-5],[3,-3],[1,3],[-6,13],[4,1],[5,-5],[7,-6],[8,-5],[5,3],[-5,2],[-5,5],[-9,13],[2,4],[-6,8],[-9,20],[-5,5],[-7,2],[-8,-1],[-5,7],[-7,-4],[-7,4],[-1,6],[4,8],[4,3],[8,-2],[11,8],[13,-16],[4,1],[1,-1],[1,-1],[0,-1],[2,-1],[-1,11],[0,11],[3,7],[7,3],[13,-7],[6,0],[-2,7],[5,4],[2,1],[3,0],[-4,8],[-6,2],[-15,-2],[1,5],[0,4],[-1,4],[0,6],[1,4],[2,3],[1,4],[0,6],[-2,9],[-4,2],[-4,-4],[-3,-7],[-1,-5],[2,-10],[1,-5],[-1,-1],[-3,-12],[-3,-20],[-3,-7],[-6,-1],[0,2],[-2,2],[2,3],[1,6],[1,4],[-4,3],[-2,-2],[-3,-4],[-3,-2],[-8,3],[-2,-2],[0,-6],[-4,0],[-6,-3],[-3,2],[-1,7],[2,5],[6,10],[2,6],[1,4],[0,4],[0,5],[0,9],[1,4],[3,5],[-3,5],[-3,10],[-2,12],[1,9],[3,7],[6,6],[1,5],[-7,3],[-3,-1],[-2,-3],[-1,-3],[-2,-1],[-3,-2],[1,-6],[1,-7],[0,-6],[-4,-6],[-5,0],[-5,2],[-3,4],[2,4],[2,0],[-3,4],[-2,3],[-2,5],[-1,5],[3,3],[3,0],[7,-3],[-1,13],[8,13],[-2,13],[-8,19],[-5,8],[-5,3],[2,-14],[-2,-7],[-4,0],[-4,9],[3,6],[-7,16],[-1,10],[4,8],[5,2],[5,-5],[3,-9],[3,4],[2,7],[2,13],[2,-7],[1,-5],[-1,-11],[-1,-6],[-1,-3],[1,-4],[1,0],[1,1],[1,-1],[1,-8],[1,-3],[1,-2],[3,-3],[3,-2],[4,0],[2,-2],[-1,-7],[0,-7],[2,-6],[3,-5],[7,28],[1,9],[0,11],[-2,3],[-5,3],[-2,2],[-2,3],[-3,13],[-9,19],[-2,8],[1,3],[1,3],[1,3],[1,6],[-3,3],[-1,5],[0,8],[-3,-2],[-4,-1],[-8,-1],[3,7],[5,2],[6,1],[5,2],[-2,1],[-1,1],[-1,1],[-2,1],[2,6],[1,3],[2,2],[2,3],[1,5],[-1,4],[-1,4],[0,4],[1,9],[2,9],[6,16],[2,-3],[4,-9],[5,-3],[3,1],[-1,4],[-9,18],[-2,7],[2,14],[5,17],[8,30],[6,16],[9,6],[10,4],[9,0],[4,6],[4,10],[6,2],[5,-9],[5,-11],[4,-2],[-4,22],[-3,10],[-4,4],[-39,-11],[-14,15],[1,16],[0,6],[7,6],[5,9],[5,11],[9,8],[10,10],[8,19],[1,17],[4,5],[3,3],[2,3],[10,2],[10,-3],[6,-8],[4,-2],[3,-9],[2,5],[0,7],[1,7],[-4,5],[-2,3],[-6,5],[-6,7],[-5,6],[-2,3],[1,5],[2,5],[2,3],[3,1],[15,-1],[4,0],[2,2],[2,6],[0,4],[2,3],[4,1],[1,2],[-2,5],[-3,4],[-3,2],[-1,-1],[-20,-14],[-7,-1],[-13,2],[-14,1],[0,11],[-1,14],[-2,3],[-9,5],[-12,-3],[-1,18],[25,5],[14,3],[14,1],[4,5],[5,-3],[6,5],[10,14],[13,9],[6,7],[0,8],[-16,-9],[-6,-3],[-6,-6],[-4,-8],[-5,-4],[-7,-2],[-5,-5],[-5,4],[-1,4],[-1,5],[-1,8],[-2,6],[-5,11],[-3,7],[4,6],[-1,3],[-4,3],[-4,2],[-6,19],[-5,4],[-4,-4],[-1,0],[-1,6],[-6,7],[-5,-1],[-2,-11],[-1,-4],[-2,3],[1,17],[10,8],[8,5],[12,-6],[-4,12],[-3,4],[-3,4],[-2,1],[-2,-2],[-1,1],[-3,4],[-1,4],[6,28],[3,12],[4,5],[-3,6],[-12,7],[-4,3],[4,7],[12,5],[3,6],[-2,8],[-4,2],[-9,0],[-2,3],[-4,7],[-2,3],[0,4],[4,0],[-4,13],[5,5],[5,3],[6,13],[11,6],[6,5],[-17,0],[-3,-4],[-6,-15],[-5,-2],[-3,6],[-2,11],[-2,11],[0,7],[6,11],[3,8],[-1,3],[-5,-4],[-3,4],[-2,3],[-1,0],[-1,6],[1,5],[-1,5],[-1,10],[-2,5],[0,2],[4,1],[6,4],[5,0],[1,7],[2,6],[-3,5],[-3,2],[-4,7],[2,7],[4,5],[-2,9],[-7,2],[-1,10],[2,7],[6,2],[-3,7],[-2,4],[-1,5],[-2,-4],[-4,-7],[-4,-3],[-1,-4],[0,-4],[2,-6],[0,-10],[-2,-11],[1,-16],[-2,-13],[-3,-5],[-5,6],[-6,1],[-5,6],[1,32],[2,11],[-3,3],[1,15],[-3,6],[-5,-1],[-2,-8],[-1,-9],[-2,-7],[-6,0],[3,-10],[5,-13],[1,-10],[-3,-5],[1,-4],[4,-11],[-4,-2],[-3,-3],[-3,-5],[-3,-7],[0,5],[0,4],[-1,4],[-1,4],[4,14],[-8,23],[2,12],[-2,16],[-5,-5],[-7,-16],[-6,-4],[-3,-1],[-3,-2],[-2,0],[-4,3],[-1,3],[-1,6],[0,5],[1,3],[12,-1],[2,4],[0,9],[-3,9],[-4,4],[-4,2],[-4,5],[-1,-7],[-1,-15],[-2,-7],[-3,-5],[-1,5],[0,15],[0,14],[1,4],[7,16],[1,5],[1,8],[1,-6],[1,-5],[2,-5],[2,-5],[1,2],[2,0],[2,-1],[2,-1],[-2,7],[-3,9],[7,-4],[4,2],[2,7],[-7,1],[-5,3],[0,7],[4,13],[-6,9],[1,8],[4,7],[7,4],[-2,-15],[1,-4],[4,-1],[7,0],[2,2],[1,6],[1,13],[-1,18],[1,15],[7,3],[-1,-8],[0,-13],[2,-13],[3,-16],[-2,-5],[-2,-5],[-2,-5],[0,-6],[2,-8],[0,-3],[-2,-2],[-5,-6],[-1,-2],[1,-5],[1,-5],[1,-3],[2,1],[5,8],[3,0],[8,-9],[-6,21],[-2,13],[3,6],[5,-10],[3,-3],[1,7],[1,2],[3,2],[6,2],[0,4],[-3,0],[-5,4],[0,4],[7,2],[4,11],[1,14],[-3,9],[-2,2],[-7,0],[-4,3],[-3,5],[0,6],[1,2],[4,-5],[2,9],[-2,5],[-5,2],[-5,0],[2,4],[3,4],[3,0],[3,-2],[3,-4],[2,0],[1,1],[-1,5],[0,4],[10,1],[5,-3],[2,-8],[-1,-5],[-3,-5],[-2,-7],[2,-9],[2,4],[4,3],[2,-1],[1,-4],[1,-5],[1,-3],[0,-4],[0,-2],[-3,-5],[0,-4],[0,-26],[0,-8],[3,-5],[2,-2],[0,3],[2,14],[5,29],[1,13],[1,4],[4,-4],[5,-9],[2,-7],[1,-6],[2,-3],[4,-1],[0,4],[-2,4],[-2,12],[-3,6],[-17,31],[-1,2],[1,6],[3,0],[2,-5],[5,-10],[2,-3],[3,-2],[3,0],[3,2],[0,4],[-2,4],[-4,2],[-5,4],[-6,9],[-2,14],[-1,9],[5,0],[5,-3],[4,-6],[5,-7],[6,-6],[2,-4],[4,-5],[4,-4],[3,-8],[-1,-8],[-3,-5],[0,-4],[3,-9],[0,-6],[-1,-10],[4,4],[1,4],[0,5],[-1,15],[2,5],[1,5],[3,8],[4,3],[5,1],[5,-2],[5,-3],[7,-3],[4,-5],[6,-11],[1,-12],[-5,-26],[4,4],[5,11],[3,1],[2,-5],[1,-8],[1,-17],[-1,-4],[-1,-8],[0,-5],[0,-4],[3,-7],[2,-19],[-1,-5],[-4,-3],[0,-5],[2,-3],[1,-2],[2,-2],[2,13],[3,8],[1,9],[-2,14],[6,-2],[5,-2],[-9,18],[-3,10],[6,5],[5,1],[12,8],[9,12],[4,3],[3,6],[2,15],[-1,2],[-2,5],[-1,1],[2,2],[1,1],[2,0],[4,3],[2,1],[2,2],[1,7],[-17,-8],[-3,-6],[1,-18],[-2,-5],[-6,-3],[-9,2],[-11,11],[-10,16],[-4,16],[17,3],[0,4],[-1,1],[-3,3],[3,1],[3,0],[3,-2],[2,-3],[-1,11],[-4,10],[-3,12],[3,15],[-4,3],[-2,-6],[-2,-9],[0,-10],[-1,-10],[-3,-2],[-3,4],[-5,-2],[-5,-2],[-13,7],[0,6],[-1,6],[1,8],[-1,10],[3,10],[4,9],[5,4],[4,3],[8,0],[7,4],[2,4],[0,11],[-2,2],[-4,-4],[-5,-8],[-4,1],[-3,2],[-1,5],[0,7],[-7,-5],[-5,-7],[-10,-18],[-2,-4],[-4,-2],[-3,1],[-1,3],[0,5],[1,5],[5,10],[-9,-3],[-2,1],[-1,9],[1,6],[4,3],[4,2],[3,3],[3,8],[-1,2],[-7,-2],[-3,3],[-2,6],[-2,8],[-2,7],[1,1],[1,1],[2,3],[2,-3],[3,0],[5,3],[5,-2],[3,-4],[4,-2],[4,3],[0,-6],[0,-7],[2,-5],[2,-2],[3,2],[2,6],[1,12],[5,12],[4,-1],[4,-4],[6,1],[-1,5],[-2,4],[-2,2],[-3,1],[-4,0],[-1,5],[-5,1],[-3,-2],[-3,0],[-5,2],[-9,5],[-12,16],[-1,6],[5,14],[4,6],[-1,4],[-14,3],[-7,-15],[-7,9],[3,11],[4,10],[-3,6],[-5,5],[-4,4],[0,11],[-1,8],[3,8],[8,4],[2,2],[1,5],[-4,2],[-1,-5],[-5,-1],[-2,6],[0,11],[1,14],[-1,5],[-3,9],[-2,7],[-3,8],[-3,5],[0,8],[-1,12],[-3,19],[-4,49],[1,8],[3,1],[16,-10],[5,2],[4,3],[3,2],[4,-5],[1,-7],[1,-10],[0,-12],[-2,-7],[0,-14],[8,-12],[11,-8],[7,-1],[-5,10],[-16,19],[4,21],[2,13],[-1,8],[-3,10],[0,5],[-1,7],[2,11],[3,10],[-2,4],[-3,0],[-4,-5]],[[85185,72872],[-2,51],[1,14],[3,4],[6,1],[7,5],[11,14],[24,61],[4,9],[11,14],[5,9],[5,23],[4,16],[3,7],[2,3],[15,22],[18,18],[19,13],[18,3],[8,-2],[35,5],[26,-13],[8,1],[17,9],[53,8],[3,-3],[3,-9],[4,-5],[3,-2],[19,6],[29,-2],[19,2],[19,11],[18,20],[14,26],[7,15],[5,16],[4,19],[1,21],[-2,20],[-1,10],[2,8],[7,10],[16,14]],[[85112,72061],[2,-11],[4,-10],[1,-9],[-2,2],[-13,-1],[-4,1],[-1,9],[2,3],[2,3],[1,6],[-7,-8],[-3,3],[1,9],[5,12],[-2,3],[-3,-7],[-2,5],[-3,-3],[2,15],[-1,21],[-2,13],[-2,17],[2,5],[5,8],[5,3],[4,-10],[0,-4],[-1,-4],[-2,-3],[0,-4],[5,-18],[1,-6],[-1,-5],[1,-4],[3,-3],[3,-7],[-6,0],[0,-4],[2,-1],[4,-4],[-1,-3],[0,-3],[1,-6]],[[85081,72857],[6,0],[5,-1],[2,-5],[-2,-11],[-4,-7],[-7,-1],[-11,5],[-3,-2],[-3,-3],[-3,0],[-1,6],[1,2],[3,17],[4,5],[4,2],[4,-2],[5,-5]],[[85262,70296],[2,-8],[-1,-2],[-3,-2],[-2,-4],[0,-3],[2,-6],[0,-3],[-1,-3],[-2,-6],[-1,-2],[-5,-10],[-9,-13],[-3,-12],[-4,-13],[-1,-5],[-1,-8],[-7,-1],[-3,-2],[-7,1],[-11,-15],[-28,-10],[-9,-14],[-12,-4],[-12,2],[-14,-5],[-12,6],[-26,0],[-8,-7],[-5,-16],[-5,-1],[-4,4],[-7,18],[-8,5],[-8,15],[-3,19],[5,24],[5,15],[2,5],[10,10],[8,26],[8,3],[3,14],[13,8],[29,14],[7,11],[27,5],[18,14],[5,-2],[22,7],[13,2],[9,-3],[3,-9],[4,-5],[14,-10],[4,-7],[2,-18],[3,-7],[1,3],[2,2],[1,3]],[[85325,70891],[9,2],[4,0],[4,-4],[3,-9],[-1,-11],[-4,-9],[-5,-4],[-11,-4],[-5,1],[-3,3],[-6,8],[0,5],[1,3],[0,3],[-1,2],[-2,3],[3,5],[5,3],[9,3]],[[85105,70900],[0,-8],[-1,-9],[-1,-9],[-6,-21],[-2,-6],[-3,-3],[0,2],[-5,8],[-2,2],[0,-4],[-1,-9],[-27,-26],[-3,-1],[-11,-2],[-4,1],[0,5],[1,5],[2,3],[1,3],[-1,4],[-8,9],[0,-13],[-6,12],[3,20],[8,16],[8,1],[2,13],[2,5],[3,5],[3,3],[2,0],[2,3],[1,8],[3,-7],[5,0],[4,4],[1,9],[-2,8],[-7,9],[2,5],[4,1],[5,-4],[4,-6],[3,-3],[1,-1],[0,-4],[2,-4],[2,-3],[1,1],[6,7],[0,-5],[9,-24]],[[85494,71010],[3,-1],[3,-7],[2,-9],[2,-14],[0,-9],[-1,-9],[-2,-8],[-2,-5],[-4,0],[-3,3],[-10,17],[-1,7],[2,11],[1,3],[5,7],[1,3],[2,15],[-4,8],[1,5],[3,3],[3,0],[3,-2],[1,-6],[-1,-6],[-4,-6]],[[84996,71027],[3,-5],[1,-2],[1,-5],[-1,-5],[-1,-4],[-4,-10],[-2,-2],[-2,-1],[-3,1],[0,2],[-4,4],[-4,3],[-2,-1],[-2,10],[2,5],[8,6],[5,12],[2,1],[1,-1],[2,-8]],[[85001,71067],[0,-12],[-1,1],[-3,1],[-2,2],[-2,-6],[-4,0],[-3,2],[-2,-2],[0,-8],[-2,-7],[-2,-5],[-4,-3],[-3,1],[-2,4],[-2,6],[0,8],[1,7],[2,6],[3,3],[3,2],[4,-2],[5,2],[9,6],[2,0],[1,0],[1,-2],[1,-4]],[[85015,71146],[1,8],[3,1],[3,-4],[2,-6],[1,-9],[-1,-8],[-2,-7],[-4,-5],[-4,-2],[-2,1],[-2,3],[-2,2],[-9,-4],[-4,0],[0,4],[3,4],[5,14],[4,6],[2,0],[2,-2],[3,0],[1,4]],[[85574,71088],[1,-7],[0,-6],[-2,-6],[-1,-8],[1,-12],[0,-7],[-2,-3],[-2,-2],[2,-13],[-1,-6],[-4,-1],[-4,4],[-4,4],[-6,-4],[-4,-2],[-3,12],[-3,24],[-5,4],[-3,-4],[-3,-10],[-1,-13],[-1,-5],[-4,0],[-4,3],[-3,2],[-2,6],[0,4],[0,5],[-1,8],[-7,44],[-1,10],[0,11],[3,10],[3,3],[2,1],[1,2],[2,13],[1,3],[5,7],[4,3],[4,-3],[3,-5],[3,-8],[-1,-8],[-2,-7],[-7,-11],[2,-5],[1,-10],[1,-5],[3,-3],[6,-4],[3,-10],[6,2],[6,4],[7,3],[9,-3],[2,-1]],[[85763,71120],[-1,-7],[-1,-8],[-2,-4],[-4,3],[1,-8],[4,-14],[1,-9],[-2,-1],[-5,3],[-5,5],[-4,4],[-1,-9],[0,-4],[-5,-10],[-2,-8],[4,-4],[4,-4],[2,-4],[-4,-7],[-20,-11],[-6,0],[9,12],[-4,3],[-1,5],[0,7],[2,9],[-9,-8],[-3,3],[-1,7],[0,7],[2,3],[7,3],[2,6],[0,9],[2,11],[-4,4],[-3,-6],[-10,-8],[-4,-6],[-4,8],[-4,8],[-3,8],[-1,12],[2,6],[4,7],[4,4],[4,3],[10,4],[3,0],[4,-4],[4,-4],[4,-3],[5,-1],[0,4],[-5,6],[-3,9],[-1,10],[-1,9],[4,0],[19,19],[-3,11],[2,11],[4,6],[5,-4],[1,-5],[0,-5],[-2,-22],[0,-4],[2,-7],[1,-5],[2,-6],[0,-8],[-1,-7],[-5,-20],[6,3],[2,4],[1,-1],[1,-10]],[[85030,71227],[-2,0],[-7,3],[-3,0],[-1,1],[0,1],[-1,1],[-1,1],[2,18],[1,6],[2,2],[4,2],[3,2],[1,4],[2,8],[5,6],[6,2],[4,-2],[-8,-8],[-2,-5],[-1,-6],[2,-6],[3,-11],[-3,-2],[-3,-5],[-2,-7],[-1,-5]],[[85156,72686],[1,-2],[1,-3],[1,-2],[1,-4],[1,-3],[-1,-1],[-3,-3],[-1,-2],[-5,-2],[-2,0],[-3,-2],[-6,-5],[-4,-5],[-2,-6],[-12,-15],[-2,1],[-3,-1],[-1,1],[-1,7],[-2,2],[-1,-2],[-1,0],[-1,1],[1,2],[-1,3],[-2,0],[-1,-2],[-1,-2],[-2,1],[-3,2],[1,3],[0,3],[-3,5],[-1,3],[1,4],[2,1],[2,-2],[13,15],[9,2],[6,-1],[5,5],[2,14],[4,2],[3,-5],[2,-1],[2,-2],[1,-1],[2,0],[1,-1],[3,-2]],[[86361,72705],[5,-6],[0,-15],[-3,-17],[-4,-11],[-5,-5],[-7,3],[-7,7],[-4,9],[-2,12],[2,9],[5,6],[10,3],[7,4],[3,1]],[[85098,72793],[4,-4],[2,-5],[1,-6],[-3,-7],[-6,0],[-19,25],[3,3],[1,5],[2,11],[1,3],[1,3],[1,2],[2,1],[1,-1],[1,-2],[0,-2],[1,-11],[0,-2],[2,-4],[1,-3],[4,-6]],[[85140,72735],[-2,0],[-2,1],[-3,5],[-2,2],[-1,0],[-1,-2],[-1,-2],[-15,-1],[-5,4],[-6,13],[9,4],[2,2],[2,7],[0,3],[-2,1],[-1,4],[-10,31],[-1,5],[1,7],[0,28],[1,6],[3,2],[6,13],[5,2],[5,-6],[4,-8],[4,-6],[9,-8],[4,-6],[1,-10],[0,-4],[-2,-8],[0,-4],[1,-4],[2,-8],[1,-4],[1,-22],[-1,-5],[1,-3],[2,-6],[1,-3],[-4,-3],[-3,-13],[-3,-4]],[[84647,72962],[3,-6],[0,-9],[-4,-5],[-6,6],[-7,-1],[-1,-1],[0,-7],[3,-2],[3,-1],[2,-2],[-6,-8],[-11,3],[-9,12],[3,21],[7,-4],[15,9],[8,-5]],[[85363,70617],[1,-3],[2,-1],[1,-2],[0,-3],[-4,4],[-4,1],[-1,2],[-1,4],[0,5],[-1,1],[-1,2],[-1,4],[1,3],[0,3],[0,2],[1,0],[1,0],[1,1],[1,1],[1,-2],[-1,-6],[0,-6],[4,-10]],[[85425,70872],[1,-6],[0,-4],[-2,-4],[-5,-5],[-5,-3],[-1,2],[0,5],[-2,3],[-3,2],[-1,3],[0,2],[-3,4],[-1,2],[1,5],[-1,3],[0,3],[1,1],[2,-1],[2,-3],[4,-1],[0,-2],[2,1],[2,4],[3,0],[6,-11]],[[85494,70905],[2,-2],[1,-3],[0,-4],[-4,-2],[-2,0],[0,1],[-1,2],[-3,3],[-4,2],[-3,4],[-1,5],[-1,4],[-3,2],[-2,4],[2,5],[5,4],[5,1],[3,-4],[5,-15],[-1,-4],[0,-2],[2,-1]],[[85027,70958],[1,-1],[0,-3],[0,-6],[-1,-6],[0,-6],[-2,-3],[-2,-3],[-2,-4],[-6,-6],[-3,0],[-3,1],[-1,3],[2,1],[1,0],[2,3],[1,2],[0,2],[-6,2],[1,4],[4,1],[4,0],[3,4],[2,6],[-2,6],[-2,8],[-2,10],[2,2],[3,-4],[2,-4],[4,-3],[0,-6]],[[85010,70942],[-3,-2],[-2,3],[-1,21],[1,11],[2,6],[4,-14],[3,-8],[2,-8],[-1,-7],[-2,-1],[-3,-1]],[[84845,71013],[3,1],[1,-2],[-3,-5],[-1,-2],[-1,-4],[-4,-9],[-1,-4],[-2,-5],[-1,-4],[-1,-2],[-3,2],[-2,9],[1,8],[1,7],[2,6],[2,6],[2,3],[3,1],[1,-2],[1,-4],[2,0]],[[85048,71039],[0,-5],[1,-7],[-2,-5],[-4,-1],[-3,6],[-2,6],[-3,0],[-2,-2],[-1,-1],[-2,0],[-2,3],[0,5],[-3,8],[-5,10],[-2,5],[3,-1],[2,0],[2,1],[3,1],[4,-1],[2,-2],[2,-3],[3,-2],[3,-1],[3,-1],[1,-3],[1,-3],[0,-3],[1,-4]],[[85046,71074],[-1,-1],[-1,-4],[1,-8],[-2,-3],[-3,-2],[-3,3],[-4,6],[-5,3],[-3,3],[3,4],[7,2],[4,3],[2,4],[2,-3],[2,-4],[1,-3]],[[85021,71092],[-2,6],[-2,6],[1,5],[4,3],[3,1],[3,-3],[2,0],[1,4],[0,7],[2,4],[4,0],[2,1],[1,-2],[1,-3],[1,-4],[-4,-4],[1,-9],[0,-6],[-2,-2],[-3,0],[-2,-3],[0,-7],[-1,-5],[-3,-3],[-2,0],[-1,4],[0,2],[-4,8]],[[85575,71105],[1,-1],[2,-4],[-3,-1],[-13,5],[-7,-4],[-4,1],[-4,5],[-2,8],[1,9],[4,9],[3,8],[2,6],[5,2],[1,-7],[-2,-9],[-1,-7],[0,-5],[2,-2],[2,6],[3,9],[2,1],[1,-4],[2,-2],[1,-2],[1,-7],[1,-10],[2,-4]],[[85068,71148],[-3,-2],[-3,0],[-2,5],[1,6],[2,2],[5,0],[1,-1],[1,-3],[-1,-6],[-1,-1]],[[85049,71226],[0,-3],[1,-3],[0,-6],[-2,-1],[-1,-2],[-1,1],[-3,5],[-1,1],[-2,-1],[-1,0],[0,3],[-1,1],[-2,0],[0,1],[2,3],[-1,0],[-1,0],[-1,1],[0,2],[2,3],[2,0],[3,-2],[3,1],[3,-1],[1,-3]],[[85789,71210],[-1,-12],[-2,-4],[-2,-1],[0,2],[-2,11],[-2,3],[-1,3],[1,5],[-1,5],[-2,4],[1,5],[3,2],[3,1],[3,-1],[2,-8],[0,-15]],[[85071,71535],[-1,2],[-1,4],[0,4],[3,3],[0,1],[-2,1],[1,2],[2,1],[1,3],[1,0],[1,1],[0,3],[1,0],[3,-1],[2,3],[1,2],[2,-2],[0,-3],[-1,-5],[-5,-7],[-3,-7],[-3,-3],[-1,-1],[-1,-1]],[[85027,72517],[-2,-2],[-1,0],[0,3],[1,9],[1,8],[2,5],[2,-3],[2,-5],[2,-3],[7,-6],[2,-4],[-1,-4],[-3,-6],[-3,-2],[-3,0],[-3,2],[-2,5],[0,3],[-1,0]],[[85134,72547],[2,-3],[2,-8],[-2,-2],[-3,-2],[-1,-4],[0,-3],[-2,-5],[-4,-1],[-2,2],[-2,0],[-2,2],[0,7],[0,8],[2,5],[5,5],[7,-1]],[[85170,72533],[0,-3],[1,-5],[-1,-6],[-15,-19],[-6,-1],[0,3],[3,7],[0,4],[-1,3],[4,7],[0,7],[-2,9],[-2,6],[-2,4],[1,1],[5,-3],[3,5],[1,0],[0,-5],[1,-5],[3,-3],[5,-4],[2,-2]],[[84913,72784],[3,-1],[2,-3],[-1,-7],[-3,-4],[-2,-1],[0,3],[-2,7],[0,5],[3,1]],[[84643,72883],[2,-2],[0,-3],[-1,-6],[-1,-6],[-1,-5],[-2,-2],[-2,0],[-2,-1],[-1,-2],[-1,-1],[0,2],[0,1],[-1,3],[-2,4],[1,5],[4,6],[3,6],[2,2],[2,-1]],[[84757,70634],[-2,1],[-5,9],[-3,3],[-1,5],[2,6],[2,4],[3,-2],[2,-5],[4,-15],[1,-5],[-1,-2],[-2,0],[0,1]],[[85166,70705],[2,-2],[2,-5],[0,-3],[-2,2],[-1,0],[0,-2],[-1,1],[-3,2],[-2,0],[-2,-2],[-1,-4],[-3,-3],[-3,-5],[-4,-4],[-5,0],[-3,7],[0,9],[2,9],[5,6],[4,0],[6,-6],[2,-1],[2,2],[3,0],[2,-1]],[[85186,70696],[1,-1],[1,-3],[-1,-2],[-1,0],[-1,-4],[0,-6],[-1,-5],[-3,-1],[-1,2],[-1,2],[-1,2],[-1,1],[-1,8],[2,13],[0,8],[-2,3],[0,3],[2,4],[0,2],[3,0],[4,-5],[1,-5],[-3,-4],[0,-5],[3,-7]],[[85252,70722],[2,-4],[2,-4],[-1,-7],[0,-3],[-2,-6],[-3,-3],[-4,0],[-4,2],[-2,4],[-2,0],[-1,-3],[-1,1],[-1,9],[2,6],[0,6],[1,5],[2,3],[4,3],[5,-2],[3,-7]],[[85169,70734],[1,-3],[1,-5],[-2,-3],[-1,-7],[-4,0],[-3,-1],[2,-4],[-2,-2],[-4,2],[-2,4],[-1,2],[-1,1],[-1,0],[0,2],[1,7],[1,3],[0,2],[-1,1],[1,1],[1,1],[0,2],[0,1],[-1,4],[1,2],[2,-1],[2,-2],[6,-2],[3,-3],[1,-2]],[[85024,70787],[0,-6],[0,-5],[-1,-3],[-3,-1],[-2,-2],[-1,1],[-1,3],[-1,0],[0,-3],[-2,0],[-6,4],[-2,5],[0,3],[1,3],[0,3],[2,2],[10,-3],[4,1],[2,-2]],[[85236,70788],[-1,-2],[-2,-1],[-2,3],[0,5],[-2,3],[-2,2],[-3,-1],[-3,-2],[-3,0],[-1,1],[-1,1],[-6,5],[0,2],[2,1],[3,1],[1,1],[1,1],[3,0],[2,-2],[3,2],[4,5],[3,1],[1,-2],[2,-1],[2,0],[1,1],[3,-1],[4,-1],[2,-3],[0,-4],[-2,-4],[0,-2],[-1,-4],[-1,-3],[-3,1],[-2,-1],[-2,-2]],[[85302,70809],[1,-1],[1,-3],[-2,-1],[-2,2],[-3,2],[-2,-2],[1,-1],[1,-2],[-2,-4],[-4,-6],[-3,-3],[-1,5],[2,4],[2,2],[-1,3],[-6,2],[0,2],[0,3],[-2,2],[-5,1],[-2,1],[0,1],[0,1],[2,1],[2,2],[2,5],[3,4],[0,2],[1,-1],[2,-3],[2,-5],[1,-5],[2,-2],[4,2],[2,1],[2,-2],[1,-3],[1,-4]],[[85211,70788],[1,-4],[1,-6],[0,-2],[-2,1],[-1,0],[-3,2],[-2,3],[-1,-1],[0,-3],[-2,-2],[-2,2],[-4,2],[-5,3],[-1,4],[3,4],[-1,4],[-2,1],[-3,-1],[-4,2],[-3,3],[-2,5],[-1,6],[0,7],[0,8],[2,7],[2,6],[3,3],[1,0],[5,1],[3,-2],[3,-3],[4,-7],[2,-12],[1,-9],[1,-4],[1,-4],[1,-5],[5,-9]],[[85211,70832],[-1,0],[-2,2],[1,4],[2,3],[2,8],[4,9],[5,5],[6,2],[3,-1],[2,-3],[0,-4],[-2,-3],[1,-1],[2,-3],[2,-4],[2,-5],[0,-3],[-2,-1],[-5,3],[-3,-1],[-1,-4],[-7,-6],[-3,-6],[-1,-6],[-1,-2],[-2,4],[0,6],[-1,5],[-1,2]],[[85637,70984],[0,-2],[0,-3],[-3,-6],[-1,-1],[-2,0],[-2,1],[-3,-1],[-3,-3],[-1,-2],[-2,-1],[0,3],[1,3],[0,4],[-1,2],[-2,0],[-1,2],[0,3],[1,2],[0,4],[1,2],[2,0],[9,-8],[0,-4],[1,0],[6,5]],[[85662,71091],[3,2],[4,1],[5,1],[2,-5],[1,-7],[-1,-5],[1,-3],[-2,-3],[-2,2],[-1,-2],[0,-1],[2,-1],[2,-3],[-1,-4],[-3,-6],[-4,0],[-2,4],[-1,5],[-3,0],[1,4],[-1,4],[-4,1],[-1,2],[3,3],[0,5],[-2,4],[-5,3],[-4,-2],[-1,0],[-1,4],[2,4],[3,2],[5,-3],[3,-5],[2,-1]],[[85621,71100],[5,-8],[1,-5],[-1,-3],[-3,0],[-1,-1],[0,-4],[-1,-2],[-3,1],[-1,2],[-3,3],[-2,5],[0,3],[2,6],[4,5],[3,-2]],[[85094,71117],[5,-4],[1,-12],[-6,-9],[-3,2],[2,4],[1,3],[-1,2],[-8,8],[-1,1],[-8,-2],[-4,-4],[-4,-1],[-3,2],[-2,4],[2,3],[4,1],[6,3],[1,2],[1,2],[0,3],[3,2],[2,3],[0,5],[-2,5],[-1,6],[3,2],[5,-2],[5,-4],[3,-6],[0,-4],[-3,0],[-4,-5],[0,-3],[0,-3],[0,-3],[2,-1],[4,0]],[[85064,71225],[1,3],[-2,1],[-7,2],[-2,2],[-2,1],[-2,0],[-1,2],[-1,2],[-2,3],[-3,12],[2,5],[3,2],[4,-2],[2,-3],[3,1],[2,3],[2,-2],[1,-3],[1,1],[2,0],[0,-3],[-2,-4],[-2,0],[-1,-2],[0,-3],[3,-6],[2,-2],[3,0],[2,-4],[1,-6],[1,-3],[1,-5],[-1,-5],[-1,-2],[-1,2],[-3,1],[-2,3],[-1,4],[0,5]],[[86627,72526],[1,0],[-1,-1],[0,1]],[[85185,72872],[-1,0],[-3,-8],[-1,-9],[-2,-1],[-6,-6],[-8,-8],[-5,2],[-39,42],[-2,3],[-7,20],[-1,3],[-6,-2],[-5,-3],[-22,-19],[-6,-4],[-6,-1],[-10,1],[-6,-3],[-6,-6],[-2,-4],[-1,-2],[1,-3],[1,-9],[2,-12],[1,-6],[0,-8],[-1,-9],[-1,-4],[-13,4],[-4,24],[-3,12],[-4,-1],[-2,2],[-2,13],[0,27],[-9,-10],[-3,1],[-2,11],[-2,7],[-4,8],[-4,6],[-3,2],[-4,-6],[1,-8],[4,-6],[3,-3],[0,-6],[3,-16],[0,-8],[-2,4],[-3,3],[-3,3],[-3,2],[-3,1],[-2,-1],[-2,1],[-2,3],[-5,9],[-14,36],[-1,6],[-2,4],[-6,3],[-2,2],[-1,4],[0,7],[1,11],[-2,3],[-4,0],[-3,2],[-5,5],[-2,1],[-12,1],[-5,2],[-11,9],[-7,3],[-7,0],[-5,-4],[0,-10],[5,-10],[7,-8],[5,-3],[10,3],[3,-4],[-2,-11],[3,2],[3,1],[2,0],[3,-3],[-3,-8],[-3,-8],[6,0],[2,1],[2,3],[2,-4],[-3,-6],[-4,-5],[-4,-3],[-4,-2],[-5,0],[-3,4],[-3,6],[-4,6],[-1,-14],[2,-14],[1,-13],[-5,-12],[5,-7],[1,-1],[-1,-6],[-2,-2],[-5,0],[-1,-2],[0,-4],[2,-6],[1,-9],[0,-5],[-2,-2],[-3,0],[-3,1],[-2,2],[-3,4],[1,2],[1,0],[0,1],[0,2],[-3,3],[-3,0],[-2,-3],[-1,-7],[-2,0],[-4,1],[-2,5],[2,9],[-7,-10],[-3,-15],[-5,-13],[-10,-7],[-9,-1],[-6,-1],[-2,-4],[-1,-10],[-3,-8],[-4,-2],[-4,6],[4,31],[4,13],[8,-4],[15,12],[-4,4],[-10,-3],[-5,4],[4,8],[6,8],[6,6],[6,2],[14,-6],[5,3],[1,15],[-5,-3],[-3,1],[-3,4],[-3,6],[9,16],[0,6],[-7,3],[-6,3],[-2,6],[-3,4],[-6,-5],[1,-2],[1,-4],[0,-2],[-7,0],[-3,-1],[-3,-3],[5,-4],[7,-7],[5,-8],[0,-10],[-5,8],[-8,5],[-7,2],[-7,-2],[2,-5],[1,-3],[3,-3],[2,-2],[-9,-12],[-5,-6],[-5,-2],[0,1],[0,3],[-1,2],[-1,2],[-17,0],[3,9],[12,13],[4,11],[-2,10],[-12,11],[1,11],[-6,-2],[-3,-8],[-3,-11],[-3,-10],[-4,-5],[-5,-3],[-5,0],[-16,5],[-3,2],[-7,10],[-3,2],[-6,1],[-5,3],[-2,8],[2,12],[-7,-7],[-2,-1],[1,10],[2,6],[4,3],[5,1],[4,2],[7,9],[3,1],[4,-2],[8,-8],[5,-2],[4,1],[4,1],[3,4],[3,6],[-2,5],[-3,-4],[-3,-1],[-4,2],[-5,9],[-2,1],[-1,1],[-1,8],[-1,11],[3,5],[11,0],[12,4],[4,-2],[1,-5],[0,-6],[2,-3],[6,-1],[2,20],[5,5],[-2,9],[-5,3],[-11,0],[-5,2],[-9,5],[-5,2],[-4,-2],[-14,-11],[-13,-4],[-4,-4],[-21,21],[-9,16],[-5,4],[-3,-11],[-3,-4],[-7,-3],[-13,-2],[-32,10],[-3,6],[2,7],[6,5],[14,1],[5,5],[2,12],[2,2],[12,4],[2,5],[4,14],[3,5],[7,2],[4,-5],[7,-19],[3,2],[17,20],[-7,5],[-14,-4],[-8,10],[-4,7],[-1,5],[0,10],[3,37],[1,6],[12,32],[2,7],[4,18],[3,6],[2,1],[2,0],[0,-5],[0,-8],[3,6],[5,13],[4,15],[1,10],[-2,6],[-5,6],[-1,6],[1,7],[1,5],[-1,5],[-4,6],[1,4],[4,1],[5,-6],[3,4],[3,1],[1,-6],[5,-8],[6,10],[6,5],[7,-8],[2,7],[0,11],[0,9],[-3,5],[-2,7],[0,7],[2,5],[4,-2],[3,-10],[2,-8],[6,2],[1,4],[-1,9],[0,8],[3,-2],[1,-6],[3,-3],[5,2],[4,1],[6,7],[3,1],[3,-4],[6,-4],[3,5],[2,2],[3,6],[4,5],[7,4],[8,0],[2,-1],[7,-3],[3,-1],[1,2],[0,4],[2,5],[3,2],[12,-13],[2,-5],[0,-12],[2,-3],[3,1],[2,6],[1,6],[1,3],[3,-1],[2,-4],[2,-5],[1,-4],[3,-8],[7,-6],[8,-3],[5,3],[-2,4],[-4,9],[-1,3],[-3,2],[-6,0],[-3,2],[-13,27],[-4,6],[-4,1],[-6,0],[-4,3],[-1,4],[-7,22],[0,2],[0,1],[-3,-1],[-1,-2],[-1,-5],[-2,-5],[-3,0],[2,-3],[2,-3],[2,-5],[-4,-4],[-9,-7],[-4,2],[-3,8],[-2,0],[-1,-8],[-3,-2],[-7,2],[-1,2],[0,3],[-2,3],[-1,0],[-1,-4],[0,-4],[2,-3],[1,-2],[0,-3],[-4,-3],[-4,0],[-5,3],[-3,6],[-2,6],[1,5],[6,11],[-2,2],[-2,2],[1,6],[-1,7],[-4,6],[-4,1],[1,-14],[-3,-19],[-8,-1],[-4,8],[-1,7],[-4,3],[-3,5],[-3,16],[2,10],[1,10],[1,22],[1,10],[3,14],[2,14],[5,11],[3,10],[0,7],[3,9],[6,17],[5,11],[3,10],[3,9],[5,0],[7,-1],[5,2],[-14,4],[1,5],[1,4],[0,4],[-1,3],[0,4],[0,5],[1,4],[1,3],[0,2],[-2,3],[3,6],[3,2],[7,0],[3,2],[-1,4],[-2,6],[-1,5],[4,11],[6,5],[6,-1],[7,-3],[-2,9],[-3,4],[0,6],[10,32],[4,6],[-4,1],[-4,5],[-1,8],[2,10],[-2,2],[-2,6],[3,-2],[1,0],[1,-2],[6,5],[3,5],[1,6],[-6,0],[-17,4],[-5,4],[0,9],[7,16],[-3,0],[-3,0],[-3,-2],[-2,-2],[0,15],[4,9],[6,7],[5,9],[1,7],[1,8],[2,7],[8,5],[2,6],[1,8],[-2,8],[-4,-5],[-29,-25],[-6,-4],[-3,-2],[-2,-1],[-3,3],[-7,14],[-1,2],[-3,5],[-5,3],[-2,3],[4,11],[-19,0],[1,-3],[2,-10],[1,-3],[-12,0],[-3,1],[-1,3],[0,4],[-1,4],[-2,5],[0,4],[-2,2],[-3,1],[-4,-2],[-3,0],[-3,2],[-3,2],[-6,10],[-1,2],[-1,4],[-2,1],[-2,0],[-2,1],[-8,14],[-3,1],[-3,-10],[-3,4],[-4,2],[-3,3],[-2,18],[-4,7],[-4,6],[-5,4],[-4,3],[-6,1],[-2,2],[-1,5],[-8,1],[-3,4],[-1,13],[-3,8],[-2,-7],[0,-6],[1,-5],[2,-5],[1,-6],[-1,-7],[0,-8],[-2,-5],[0,-6],[4,-2],[-1,-9],[-4,0],[-3,-4],[2,-6],[2,-6],[-2,-2],[-5,3],[-6,-5],[-6,-10],[-7,-5],[-2,-11],[-1,-2],[-4,4],[0,3],[0,1],[1,4],[-2,1],[-1,1],[0,2],[-2,6],[5,10],[1,11],[4,4],[1,8],[-1,8],[-2,0],[-2,-2],[-2,0],[-1,2],[-2,7],[-1,3],[-3,3],[-2,1],[-2,2],[-1,4],[1,6],[1,9],[0,6],[-1,3],[-5,4],[-1,5],[1,12],[-1,4],[-2,2],[-10,1],[-24,7],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,2],[-2,5],[0,1],[-1,2],[-2,11],[0,4],[-2,1],[-8,2],[-3,13],[-2,4],[-2,3],[-2,3],[-2,2],[3,7],[4,3],[3,2],[3,4],[2,8],[2,29],[6,15],[8,-2],[9,-6],[9,5],[-5,4],[-13,2],[-6,2],[-6,7],[-2,10],[-1,10],[-3,9]],[[86258,75657],[3,-12],[1,-2],[0,-7],[1,-3],[1,-2],[1,-2],[5,-22],[3,-8],[6,-7],[6,-4],[5,-8],[3,-10],[1,-15],[0,-15],[0,-7],[3,-6],[8,-10]],[[86305,75517],[-2,-3],[-7,-4],[-10,-5],[-4,-1],[-4,-5],[-2,-1],[0,11],[0,7],[0,3],[-4,6],[-4,4],[-8,2],[-6,6],[-2,5],[-8,2],[-4,-3],[1,-8],[-4,-6],[-5,-1],[-2,5],[-3,4],[-4,0],[0,-5],[0,-5],[-3,-5],[-3,-5],[1,-8],[0,-4],[1,-4],[2,0],[2,-2],[0,-7],[-1,-4],[-2,1],[-5,8],[-3,-1],[-2,-7],[3,-7],[-3,-2],[-2,-7],[-5,-2],[-1,-13],[-3,-4],[-3,-1],[0,9],[2,12],[-2,11],[-4,0],[-12,-19],[-6,-13],[-4,-5],[-4,-1],[1,-8],[-1,-34],[-2,-1],[-2,2],[-3,-3],[-4,-8],[1,-1],[1,-4],[-2,-2],[-3,1],[-5,6],[-3,3],[-8,0],[-5,-7],[-2,-11],[0,-5],[-4,0],[-1,-5],[-1,-4],[-3,-14],[0,-10],[-2,-2],[-4,13],[-3,-2],[0,-12],[-6,-5],[2,-2],[2,-3],[2,-7],[-3,-1],[-2,-3],[-3,-8],[1,1],[-1,-5],[-1,-7],[0,-3],[-2,-11],[-2,-4],[-3,1],[-2,6],[-7,4],[-4,-4],[-2,-13],[-2,-15],[0,-19],[-4,-20],[-4,-6],[-1,-10],[-2,-3],[-5,11],[-4,0],[-10,-11],[-4,-17],[-3,-20],[-3,-7],[-7,-6],[-7,-15],[-2,-19],[-4,-24],[-5,-16],[3,-14],[-1,-10],[-1,-9],[2,-17],[6,-13],[5,-9],[4,-5],[6,1],[2,-9],[4,-8],[3,-4],[2,0],[4,1],[2,-1],[2,-6],[0,-2],[-1,-2],[-1,-8],[-1,-2],[-2,-13],[0,-3],[-5,-6],[-3,-13],[-11,-75],[-2,-26],[5,-22],[-2,-8],[-1,-9],[1,-20],[2,-26],[1,-6],[5,-10],[4,-4],[-3,-4],[-1,-13],[1,-4],[-6,-11],[1,-12],[-3,-14],[-2,-7],[-3,0],[-3,6],[-3,-2],[-6,-2],[-6,2],[-5,-2],[-4,1],[-3,-1],[-8,1],[-5,-7],[0,-11],[-6,-2],[-4,-7],[-3,-2],[-8,1],[-14,-7],[-10,-12],[-11,-9],[-3,-7],[-3,-9],[-5,-19],[-2,-8],[-2,2],[-3,4],[-2,9],[-2,6],[-5,0],[-6,-2],[-4,-5],[-2,-7],[-1,-6],[0,-3],[0,-4],[-1,-4],[-1,-3],[-1,-8],[-1,-3],[-1,-6],[-1,-4],[-2,-4],[-1,-3],[0,-6],[-1,-15],[-3,-2],[-1,-5],[-2,-6],[-10,-21],[-10,-23],[-13,1],[-15,-8],[-21,-37],[-11,-16],[-9,-2],[-4,-8],[-9,-4],[-5,-1],[-3,-6],[-9,2],[-9,-5],[-5,-12],[-4,0],[0,6],[-5,-4],[-5,-10],[-1,-15],[3,-3],[8,-5],[1,-6],[2,-4],[-1,-9],[0,-15],[-3,-2],[-3,-4],[-2,-4],[-2,-2],[-2,0],[-3,3],[-6,1],[-3,-4],[-9,-8],[-2,-9],[-3,-5],[-5,-5],[-8,0],[-4,-6],[-5,-9],[-3,-3],[-7,-5],[-5,2],[-8,-1],[-7,-18],[-3,-23],[-7,3],[-6,19],[-5,7],[-8,-6],[-2,-6],[2,-16],[-3,-1],[-6,1],[-3,0],[-3,-2],[-5,-5],[-2,-1],[-3,1],[0,3],[-2,2],[-36,11],[-2,-3],[0,-8],[-1,-4],[-2,-3],[-3,-2],[-2,-2],[-2,-2],[-5,-14],[-2,-4],[-3,-1],[-6,7],[-5,-14],[0,-10],[-2,-25],[-2,-5],[-26,-5],[4,-5],[-1,-6],[-8,-7],[-10,2],[-9,-6],[-4,-18],[-5,-6],[-4,8],[-7,6],[-4,-12],[-4,-3],[-5,-5],[-4,-8],[-3,-13],[-8,-9],[-2,-5],[-1,-4],[-2,-9],[-1,-5],[0,-5],[2,-9],[0,-14],[1,-6],[2,-3],[3,1],[6,-6],[5,-11],[2,-14],[-11,-25],[-5,-25],[5,-39],[7,-59],[0,-17],[-2,-6],[-3,-2],[-3,2],[-3,6],[0,8],[1,9],[5,16],[-10,22],[-1,8],[-3,7],[-3,2],[-4,-4],[-8,-13],[0,-2],[-2,-5],[-2,-3],[-13,-8],[0,-4],[3,-3],[7,-3],[3,-2],[4,4],[4,2],[4,-2],[1,-10],[-1,-5],[-9,-3],[-3,-2],[-1,3],[-2,3],[-2,1],[-2,1],[-2,-2],[0,-3],[1,-4],[1,-3],[-4,-16],[-2,-17],[-2,-17],[3,-10],[3,-12],[4,-5],[4,-3],[5,-11],[4,-3],[5,2],[1,5],[-1,6],[0,4],[5,0],[6,-22],[6,-6],[21,3],[6,-3],[4,-5],[2,-5],[3,-5],[4,-2],[19,0],[4,-1],[3,-4],[6,-19],[9,-20],[2,-7],[1,-8],[4,-10],[10,-16],[1,-8],[1,-2],[3,4],[1,2],[2,-2],[1,-4],[1,-9],[1,-5],[2,-3],[3,-2],[5,-5],[9,-25],[6,-10],[21,-9],[33,-68],[4,3],[13,11],[3,2],[9,-22],[2,-4],[5,-5],[2,-4],[4,-10],[0,-2],[0,-9],[0,-11],[1,-10]],[[84701,73924],[-1,-4],[-4,-2],[3,-13],[4,-13],[-6,-6],[-8,-8],[-6,-11],[-5,-2],[-7,-6],[5,16],[4,-3],[2,7],[-4,6],[0,3],[4,0],[0,3],[0,3],[-1,2],[0,10],[4,4],[0,9],[4,5],[-1,5],[5,1],[8,-6]],[[84689,73287],[5,-14],[1,-6],[-12,5],[-6,4],[-5,7],[-6,-8],[-3,5],[1,10],[11,11],[3,2],[2,-6],[4,-2],[3,-4],[2,-4]],[[84813,72836],[2,1],[-7,-16],[-4,-8],[-8,-8],[-2,-4],[-4,-5],[-6,-2],[-1,4],[8,17],[4,3],[3,-2],[0,4],[1,5],[1,0],[1,1],[1,2],[1,1],[2,0],[8,7]],[[84762,72847],[-1,5],[0,3],[1,2],[6,6],[4,4],[2,0],[1,-2],[0,-3],[-1,-1],[-1,-1],[-4,-6],[-4,-7],[-3,0]],[[84730,72877],[3,-1],[1,-6],[-1,-4],[-1,0],[-1,0],[-3,-6],[-2,-1],[-3,0],[-2,1],[0,3],[1,2],[1,2],[2,1],[2,-1],[1,-1],[1,1],[1,2],[0,1],[-1,3],[1,4]],[[84635,73878],[1,5],[3,1],[1,-4],[0,-6],[-1,-7],[-2,-3],[-3,0],[-1,3],[1,5],[-1,3],[2,3]],[[84634,73889],[-3,-4],[-4,0],[-4,5],[-12,-5],[-1,-1],[-1,1],[1,4],[2,2],[2,3],[5,7],[1,-1],[4,1],[7,3],[5,-1],[2,-4],[-1,-5],[-3,-5]],[[84609,73821],[-1,5],[0,5],[3,1],[3,5],[0,-5],[0,-1],[1,-2],[1,-7],[-4,-2],[-1,-1],[-2,2]],[[84503,74044],[2,2],[-1,3],[1,0],[1,1],[-1,1],[1,1],[1,0],[1,-1],[1,-1],[0,-2],[1,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-1,-2],[-1,1],[-1,1],[-2,0],[0,3],[1,2],[0,2]],[[45274,63155],[0,15],[11,87],[2,26],[-1,23],[0,13],[5,16],[1,7],[0,7],[0,7],[-1,3],[-3,7],[-1,3],[1,8],[1,18],[6,24],[2,25],[2,14],[29,118],[10,21],[2,5],[0,4],[3,14],[2,3],[5,6],[1,4],[5,20],[3,9],[6,5],[2,3],[2,3],[3,0],[2,-2],[3,-3],[3,-7],[30,24],[6,9],[5,13],[4,15],[10,68],[1,11],[3,6],[13,28],[4,9],[3,38],[1,50],[2,13],[3,21],[2,10],[6,15],[0,6],[-1,5],[-1,4],[0,7],[1,4],[2,11],[1,3],[1,2],[6,2],[7,3],[9,16],[9,21],[3,12],[2,12],[1,12],[0,15],[-2,13],[-6,3],[-11,-6],[2,11],[5,18],[2,7],[13,24],[2,4],[20,95],[3,8],[3,3],[4,7],[12,42],[4,39],[3,11],[4,12],[10,35],[14,31],[1,3],[4,7],[2,4],[2,6],[1,12],[1,7],[4,13],[5,11],[3,11],[2,15],[0,26],[-1,11],[-3,14],[1,3],[1,5],[-4,-5],[0,-7],[1,-8],[-1,-9],[-2,-4],[-7,-10],[-3,-2],[-3,0],[-3,1],[-2,-1],[-5,-8],[-3,-7],[-2,-7],[-4,-20],[-4,-13],[0,-4],[-1,-7],[-3,-12],[0,-5],[-3,-7],[-12,-23],[-5,6],[2,10],[6,14],[2,9],[10,37],[17,47],[2,9],[4,11],[4,9],[21,34],[9,7],[11,14],[4,7],[9,2],[8,9],[5,13],[5,13],[11,26],[8,23],[11,15],[4,8],[2,11],[2,7],[26,41],[15,32],[19,57],[7,16],[9,15],[5,7],[6,6],[6,3],[12,4],[5,7],[10,14],[0,14],[0,3],[4,14],[6,16],[7,10],[7,8],[5,8],[4,12],[3,38],[6,35],[3,28],[3,17],[1,8],[0,10],[-1,9],[-1,8],[2,10],[-2,4],[2,8],[1,9],[1,10],[0,10],[0,9],[-3,13],[-1,8],[1,52],[-2,15],[8,69],[2,9],[8,60],[13,34],[4,7],[2,5],[8,39],[2,26],[1,4],[2,11],[2,18],[11,55],[21,57],[7,26],[2,8],[1,12],[4,26],[2,8],[-1,10],[3,33],[-1,9],[-2,18],[1,6],[2,6],[3,18],[1,6],[16,39],[2,4],[14,6],[15,15],[23,44],[4,10],[2,10],[4,9],[6,5],[31,6],[5,5],[29,29],[50,69],[34,42],[17,36],[16,65],[6,31],[5,48],[8,35],[9,74],[5,23],[23,65],[0,3],[-2,5],[0,4],[4,4],[15,67],[9,61],[0,12],[2,11],[5,22],[1,11],[0,3],[2,10],[3,6],[8,8],[9,14],[10,6],[5,10],[12,37],[6,43],[3,12],[5,8],[5,6],[26,19],[50,17],[41,-2],[49,31],[76,24],[3,5],[6,12],[2,1],[5,3],[62,51],[82,69],[9,13],[7,16],[11,35],[4,9],[5,8],[4,10],[2,12],[2,9],[17,21],[13,30],[2,9],[12,14],[2,4],[2,8],[2,4],[9,14],[1,3],[6,18],[7,15],[5,6],[79,76],[19,24],[23,22],[10,13],[34,60],[29,82],[8,17],[5,8],[10,7],[5,9],[6,20],[7,17],[4,10],[1,11],[1,5],[10,14],[2,3],[2,13],[12,32],[1,7],[1,12],[2,13],[2,12],[3,9],[13,23],[2,7],[2,10],[12,29],[36,73],[28,93],[18,77],[2,22],[5,76],[5,39],[1,12],[-1,16],[-3,7],[-5,6],[-4,9],[-4,10],[-7,30],[-2,20],[-2,2],[-3,1],[-3,2],[-3,5],[-5,16],[-20,24],[-6,1],[-6,3],[-4,8],[0,23],[6,22],[7,21],[6,19],[1,14],[1,7],[-1,6],[-2,5],[0,4],[0,4],[1,7],[-2,116],[-1,11],[-5,21],[4,14],[7,84],[0,34],[-1,14],[-3,7],[-3,6],[-4,8],[9,20],[6,20],[7,36],[3,9],[5,8],[2,4],[1,11],[4,7],[2,7],[4,10],[1,5],[4,48],[2,9],[26,51],[11,28],[2,4],[4,6],[2,4],[2,6],[3,10],[1,5],[33,61],[3,12],[2,9],[4,24],[0,9],[1,8],[10,23],[4,16],[3,18],[1,61],[-1,3],[-5,5],[-2,4],[1,13],[2,9],[7,27],[2,12],[1,11],[-2,10],[-3,6],[-2,8],[-2,10],[0,10],[5,18],[41,63],[32,68],[27,34],[9,16],[32,76],[35,69],[2,7],[0,8],[0,13],[2,7],[23,49],[3,2],[2,-1],[3,-5],[2,-2],[7,1],[5,2],[10,10],[10,14],[16,36],[10,15],[12,8],[38,16],[26,21],[14,11],[13,6],[6,5],[6,14],[7,5],[19,10],[11,11],[5,2],[5,5],[5,10],[5,8],[5,-3],[3,4],[3,-1],[3,-2],[3,-1],[2,2],[5,5],[8,3],[6,4],[5,6],[4,5],[9,21],[8,7],[8,17],[6,4],[-2,-5],[5,-3],[6,3],[3,4],[21,24],[10,17],[10,10],[12,7],[10,3],[4,3],[9,14],[10,6],[29,42],[29,56],[25,73],[18,70],[31,81],[3,10],[4,24],[7,18],[60,223],[24,144],[50,223],[2,11],[0,15],[1,8],[6,24],[6,32],[1,5],[1,5],[3,9],[1,6],[2,28],[2,14],[2,9],[5,9],[10,3],[26,-6],[3,1],[7,13],[4,4],[5,5],[5,2],[3,-3],[5,4],[7,0],[7,-2],[4,-6],[17,17],[4,7],[10,20],[5,8],[6,5],[2,0],[2,-2],[3,-4],[3,1],[1,4],[0,5],[1,1],[2,-1]],[[48500,71745],[2,-14],[4,-12],[4,-10],[6,-10]],[[48516,71699],[-1,-9],[1,-14],[4,-31],[1,-25],[1,-7],[2,-6],[2,-4],[2,-1],[4,2],[2,-1],[0,-3],[0,-9],[0,-4],[4,-32],[3,-12],[6,-9],[12,-15],[10,-16],[23,-59],[4,-5],[7,-3],[5,-2],[6,-7],[9,-15],[8,-19],[5,-10],[12,-7],[15,-25],[11,-11],[40,-21],[37,-15],[33,-17],[8,-1],[6,3],[16,18],[38,11],[23,19],[24,8],[12,10],[3,-7],[-1,-2],[-4,-2],[-1,-2],[1,-4],[2,-4],[4,-10]],[[48915,71324],[4,-3],[6,-1],[8,-1],[5,1],[9,1],[7,6],[2,10],[3,16],[5,11],[8,5],[7,-1],[5,-7],[12,-19],[6,-7],[21,-5],[7,-8],[4,0],[3,1],[3,0],[3,-2],[6,-5],[2,-2],[15,-2],[11,5],[35,21],[6,7],[12,23],[3,3],[3,0],[2,-2],[3,-2],[4,1],[9,15],[10,47],[8,19],[-1,6],[1,5],[3,2],[3,-4],[1,-4],[-1,-11],[1,-7],[-3,-18],[4,-22],[1,-3],[0,-1]],[[49181,71392],[-6,-9],[1,-16],[6,-11],[8,5]],[[49190,71361],[4,-10],[-2,-5],[-1,-9],[-1,-10],[1,-19],[2,-8],[2,-7],[4,-9],[7,-9],[10,-6],[20,-3],[-12,17],[-21,43],[-4,12],[1,5],[4,-5],[13,-26],[2,-6],[14,-24],[11,-12],[15,-9],[29,-7],[12,2],[7,3],[4,5],[6,12],[6,7],[5,3],[27,-18],[6,-2],[6,-4],[8,-7],[7,-5]],[[49382,71250],[1,-23],[2,-16],[5,-12],[9,-5],[10,-13],[9,-15],[9,-10],[12,-3],[4,-4],[1,-7],[0,-8],[2,-9],[4,-8],[14,-16],[10,-15],[29,-33],[5,-9],[-1,-4],[-4,-5],[-6,-27],[-15,-40],[-2,-10],[33,-60],[10,-6],[3,-3],[-29,-63],[10,-23],[7,-26],[20,-109],[1,-9],[1,-7],[-1,-12],[-13,-95],[-1,-28],[3,-29],[3,-18],[-1,-6],[-2,-9],[-3,-6],[-3,-5],[-2,-6],[-2,-9],[2,-10],[4,-5],[10,-6],[5,-6],[3,-7],[12,-54],[2,-19],[-4,-17],[-4,-11],[-5,-33],[-4,-15],[-3,-15],[0,-58],[2,-19],[15,-25],[5,-17],[3,-18],[6,-15],[7,-12],[8,-10],[5,-9],[2,-12],[0,-14],[-1,-13],[-1,-6],[-1,-5],[-2,-5],[-2,-4],[-11,-16],[37,-113],[9,-14],[18,-12],[78,-107],[4,-14],[-16,-32],[-9,-13],[-11,-8],[-11,-3],[-5,-4],[-4,-11],[-3,-10],[-4,-21],[-4,-55],[-1,-7],[0,-5],[0,-5],[-2,-6],[-2,-3],[-4,-7],[-1,-3],[1,-10],[4,0],[11,7],[5,0],[6,-3],[4,-7],[2,-12],[-6,-21],[-11,-5],[-21,2],[-2,0],[-7,0],[-10,1],[-14,2],[-17,1],[-19,2],[-21,1],[-23,2],[-24,2],[-24,2],[-25,3],[-24,2],[-23,2],[-22,1],[-20,2],[-17,2],[-38,3],[-50,-25],[-52,-8],[-16,-17],[19,-92],[12,-58],[-49,-13],[-60,-33],[-81,-26],[-10,-2],[-12,5],[-19,-18],[-4,-153],[-20,-3],[-16,-20],[-3,-8],[-1,-11],[1,-45],[0,-13],[-6,-18],[-2,-12],[1,-10],[3,-5],[5,-1],[5,4],[8,14],[4,4],[5,-2],[4,-8],[8,-22],[5,-9],[10,-9],[3,-5],[2,-11],[2,-11],[0,-11],[15,-45],[-15,-45],[-14,-25],[2,-37],[2,-38],[-53,-49],[-46,-21],[-43,-4],[-33,-17],[-27,-29],[-31,-74],[-39,-58],[-41,-33],[-29,-29],[-23,-33],[-31,-50],[-29,-37],[-27,-54],[-20,-70],[-25,-75],[-29,-70],[-27,-17],[-24,17],[-9,54],[-35,-9],[-33,-12],[-35,0],[-41,0],[-39,-8],[-41,-21],[-38,-8],[-24,-42],[-48,37],[-31,5],[-22,-5],[-31,-24],[-25,-50],[-32,3],[-5,-4],[-7,-1],[-6,0],[-12,4],[-13,2],[-9,-8],[-17,-33],[-5,-6],[-13,-13],[-17,-30],[-29,-37],[-26,-45],[-9,-12],[-31,-26],[-19,-24],[-19,-33],[-4,-5],[-10,-9],[-4,-6],[-10,-32],[-3,-6],[-13,-13],[-12,-19],[-36,-36],[-5,-9],[-3,-11],[-1,-16],[0,-27],[0,-36],[0,-35],[0,-35],[0,-36],[0,-35],[0,-36],[0,-35],[0,-36],[0,-35],[0,-36],[0,-35],[0,-36],[0,-35],[0,-36],[0,-35],[0,-36]],[[47588,66851],[-20,0],[-18,0],[0,-1],[1,-27],[9,-49],[2,-42],[-4,-26],[-3,-33],[1,-31],[6,-34],[6,-36],[0,-23],[-11,-18],[-26,-10],[-32,-8],[-23,0],[-34,6],[-22,-2],[-18,0],[-17,-5],[-21,-23],[-22,-35],[-29,-48],[-17,-29],[-23,-7],[-23,0],[-23,24],[-14,12],[-10,-1],[-15,-17],[-19,-11],[-17,0],[-29,24],[-34,35],[-20,18],[-29,5],[-28,12],[-21,-6],[-25,0],[-35,-23],[-29,-18],[-31,-18],[-36,-16],[9,-53],[12,-29],[0,-36],[-6,-30],[-17,-29],[-19,-38],[-12,-30],[-11,-41],[-9,-23],[-15,-39],[-13,-49],[-4,-30],[-5,-34],[-10,-11],[-35,-9],[-23,-12],[-19,-12],[-7,-20],[-1,-3],[-6,-42],[0,-30],[-6,-23],[-8,-59],[-11,-54],[-8,-71],[-9,-59],[-11,-95],[-11,-89],[-14,-83],[-11,-53],[-8,-30],[-20,-35],[-16,-24],[-20,-30],[-22,-29],[-31,-35],[-25,-30],[-10,-14],[-12,-16],[-19,-41],[-17,-60],[-11,-47],[-19,-77],[-14,-42],[-9,-23],[-22,-23],[-25,-18],[-28,-24],[-22,-24],[-30,-23],[-20,-24],[-14,-35],[-11,-42],[-14,-60],[-11,-64],[-5,-42],[-17,-142],[-6,-83],[-5,-53],[-9,-66],[-5,-100],[0,-83],[-6,-47],[-3,-36],[-13,-41],[-11,-30],[-20,-41],[-17,-24],[-5,-24],[-17,-29],[-16,-48],[-14,-29],[2,-24],[3,-42],[-8,-41],[-8,-48],[-23,-59],[-25,-29],[-36,-6],[-50,0],[-39,6],[-47,0],[-42,11],[-38,13],[-48,5],[-33,0],[-42,-11],[-108,0],[-42,-7],[-61,-23],[-17,-6]],[[47588,66851],[0,-56],[0,-55],[0,-56],[0,-56]],[[47588,66628],[0,-8],[0,-23],[0,-36],[0,-46],[0,-55],[0,-61],[0,-66],[0,-68],[0,-68],[0,-65],[0,-62],[0,-55],[0,-46],[0,-36],[0,-23],[0,-8],[0,-27],[-2,-8],[-5,-3],[-24,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-27,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[-28,0],[0,-45],[0,-44],[0,-45],[0,-45],[0,-45],[0,-44],[0,-45],[0,-45],[0,-45],[0,-44],[0,-45],[0,-45],[0,-45],[0,-45],[0,-44],[0,-45],[0,-45],[0,-45],[0,-44],[0,-45],[0,-45],[0,-45],[0,-44],[0,-45],[0,-45],[0,-45],[0,-44],[0,-45],[0,-45],[0,-45],[0,-45],[0,-44],[0,-48],[-1,-20],[-4,-10],[-28,-15],[-61,-57],[-10,-6],[-47,-13],[-17,-12],[-17,-24],[-30,-41],[-35,-47],[-28,-38],[-5,-13],[-24,-66],[-9,-38],[-4,-40],[3,-38],[14,-76],[4,-38],[4,-148],[5,-148],[8,-245],[1,-51],[3,-96],[-40,0],[-12,0],[-32,0],[-51,0],[-65,0],[-78,0],[-77,0],[-9,0],[-92,-1],[-96,0],[-95,0],[-92,0],[-87,0],[-77,0],[-66,0],[-50,0],[-33,0],[-11,0],[-32,0],[-3,-5],[-5,-51],[-5,-57],[-12,-68],[-2,-19],[-6,-53],[-1,-18],[7,-64]],[[45262,62768],[-4,15],[-9,27],[-1,15],[1,8],[3,14],[0,8],[0,29],[1,10],[5,30],[12,177],[2,21],[1,9],[1,24]],[[26765,56940],[6,-13],[7,-28],[5,-29],[-1,-19],[-4,11],[-7,38],[5,-48],[-1,-19],[-8,-14],[4,1],[3,5],[3,5],[4,5],[-2,-3],[0,-4],[0,-4],[2,-5],[1,7],[1,13],[1,8],[14,-79],[17,-83],[20,-70],[53,-147],[4,-6],[18,-46],[10,-23],[7,8],[3,-4],[7,-2],[1,-5],[1,-11],[1,-9],[2,-8],[3,-8],[13,-41],[4,-6],[16,-45],[12,-24],[7,4],[2,-9],[2,-24],[2,-11],[4,-7],[19,-14],[7,-1],[6,0],[6,-1],[6,-6],[7,-22],[4,-6],[1,0]],[[27063,56141],[3,-22],[-3,-1],[-4,5],[-4,2],[-2,-7],[-1,-23],[-2,-7],[-4,-1],[-5,2],[-5,3],[-2,2],[-3,7],[-4,15],[-3,6],[-2,-2],[-3,2],[-11,21],[-16,14],[-5,-2],[-6,-9],[-3,-9],[0,-6],[3,-12],[2,-17],[1,-3],[2,-1],[1,-2],[0,-5],[-4,-5],[-15,-4],[-5,-4],[-3,-8],[0,-12],[0,-49],[0,-71],[1,-97],[0,-6],[8,7],[3,0],[2,-3],[1,-4],[1,-5],[1,-4],[1,-2],[7,-5],[12,-20],[13,-9],[4,-6],[7,-25],[1,-6],[0,-1],[-4,-13],[-8,-10],[-29,-25],[-3,-5],[-3,-8],[2,-3],[2,-2],[0,-8],[-3,-7],[-8,-11],[-2,-5],[-1,-9],[2,-8],[2,-8],[9,-20],[4,-14],[4,-16],[2,-18],[2,-41],[-1,-21],[-3,-17],[-6,-16],[-7,-8],[-8,-5],[-8,-8],[-12,-25],[-13,-15],[-2,-5],[-1,-7],[3,-6],[8,-9],[1,-4],[3,-8],[1,-3],[2,0],[4,3],[2,-1],[5,-5],[2,-6],[1,-19],[15,-68],[-2,-27],[-1,-13]],[[26973,55228],[-4,6],[0,9],[2,10],[2,9],[-1,8],[-19,68],[-7,15],[-34,53],[-10,20],[8,21],[2,2],[1,6],[4,8],[1,9],[-1,9],[-9,24],[-2,7],[0,9],[2,3],[3,2],[5,6],[-4,2],[-8,-1],[-4,3],[-2,5],[-5,23],[1,3],[0,2],[1,4],[2,0],[2,-10],[1,-5],[0,-7],[2,-2],[8,7],[0,5],[-4,3],[-4,6],[-3,8],[-2,7],[-2,0],[-2,-7],[-5,-1],[-6,2],[-5,-2],[-2,8],[-3,8],[-4,4],[-4,-4],[-8,11],[-3,9],[2,12],[-2,1],[-2,-1],[1,10],[-4,5],[-6,2],[-4,4],[-2,-7],[-1,0],[-2,3],[-3,0],[-1,-3],[-1,-4],[-1,-4],[-4,-2],[-9,3],[-4,-3],[-1,-11],[2,3],[2,0],[10,-31],[1,-9],[6,-19],[2,-6],[3,-4],[11,-6],[4,-2],[4,-4],[3,-10],[4,-6],[3,4],[0,-14],[0,-6],[-2,-4],[0,-4],[4,-13],[2,-20],[-1,-22],[-3,-15],[-6,0],[-10,7],[-10,10],[-4,8],[2,0],[1,-2],[1,-1],[4,-1],[-6,5],[-2,3],[-2,4],[0,-8],[-16,15],[-6,1],[-17,-4],[-5,0],[-4,4],[-3,8],[-7,19],[-24,47],[-2,6],[-1,0],[-6,5],[-1,2],[-1,19],[8,27],[2,5],[4,6],[3,2],[2,-2],[1,-3],[2,4],[6,22],[2,4],[-3,9],[4,11],[8,9],[6,3],[0,4],[-6,1],[-3,0],[-2,-4],[-3,-7],[-3,-3],[-1,5],[1,10],[4,10],[7,7],[3,5],[1,7],[-1,6],[-4,4],[-3,6],[-1,10],[5,-6],[3,-2],[3,0],[-1,4],[-2,4],[-4,4],[-2,3],[-1,3],[-2,2],[-3,0],[4,5],[-1,3],[-2,2],[-1,2],[1,7],[2,4],[2,5],[3,5],[-8,41],[-1,5],[-5,10],[-2,-4],[-6,17],[-6,20],[-7,16],[-11,4],[1,16],[-6,13],[-9,9],[-6,3],[-22,44],[-21,21],[-4,6],[-26,22],[-2,0],[-2,-3],[-1,0],[-2,3],[-1,4],[-4,-3],[-2,4],[-2,5],[-5,2],[3,11],[-4,15],[-7,14],[-7,5],[0,-4],[2,-1],[2,-1],[3,-6],[-7,3],[-11,14],[-8,3],[-7,1],[-37,22],[-7,1],[-3,-1],[-4,-2],[-3,-2],[-4,1],[-3,6],[-2,7],[-1,6],[-4,2],[1,-3],[0,-2],[1,-4],[-5,8],[-10,14],[-2,9],[-1,8],[-2,4],[-3,2],[-3,4],[-1,6],[0,7],[-1,4],[-4,-1],[1,7],[0,6],[-1,6],[0,6],[2,6],[4,10],[2,10],[2,5],[2,7],[1,8],[-1,8],[-2,6],[-4,9],[-12,35],[-3,5],[-4,4],[0,9],[4,14],[-7,12],[-1,6],[2,8],[-8,5],[-25,-5],[0,5],[3,2],[5,1],[9,0],[0,4],[-8,1],[-8,3],[-7,5],[-7,8],[-8,15],[-2,3],[-2,1],[-3,5],[-3,5],[2,3],[-5,5],[-11,23],[-6,6],[-3,5],[-2,2],[-1,-2],[-2,-2],[-1,0],[-3,4],[2,6],[1,4],[-2,2],[-1,1],[-3,7],[-5,-4],[-19,0],[-5,3],[-5,6],[-7,15],[0,4],[2,11],[-5,12],[-12,18],[2,-12],[8,-12],[2,-15],[1,-27],[1,-16],[4,-11],[-4,-5],[0,-9],[4,-7],[8,-7],[3,-6],[4,-15],[2,0],[2,2],[1,-2],[0,-4],[-2,0],[-3,0],[-2,2],[-2,2],[0,-4],[5,-10],[6,-12],[17,-14],[2,-3],[2,2],[5,-4],[11,-13],[5,-3],[5,0],[5,4],[3,-5],[7,-10],[3,-5],[0,-4],[-5,-3],[0,-9],[3,-9],[4,-8],[-2,-1],[-2,-4],[-4,-7],[4,-4],[5,-1],[10,1],[0,-4],[-4,-6],[-5,-4],[-4,-6],[-2,-10],[-1,-3],[-6,-8],[-2,-4],[-1,-11],[-1,-5],[-9,9],[-4,1],[-2,-8],[1,-4],[4,-12],[-1,-2],[-9,-9],[-1,-1],[-1,-3],[-7,-7],[-1,-5],[-6,-41],[-3,-10],[-3,-9],[-2,0],[-8,33],[-23,67],[-2,7],[-1,3],[-2,3],[-7,7],[-1,4],[0,6],[0,4],[-7,15],[-9,11],[-30,23],[-2,-2],[-4,-5],[-2,-2],[-3,1],[-3,6],[-4,2],[-1,0],[-1,1],[0,2],[-1,2],[-2,2],[-2,-1],[-1,-2],[0,-1],[-16,11],[-7,2],[-2,3],[-2,3],[-2,2],[-3,0],[-2,-3],[-2,0],[-2,7],[2,11],[-3,14],[-29,74],[-1,7],[-3,16],[-3,11],[-11,56],[-1,16],[-1,11],[-2,7],[4,8],[2,6],[-1,4],[-6,16],[-3,5],[2,6],[4,8],[4,10],[2,10],[5,-4],[2,6],[2,9],[6,10],[-2,10],[-4,11],[-3,7],[2,2],[0,1],[2,1],[0,4],[-4,0],[0,4],[3,1],[2,4],[2,11],[2,0],[4,-6],[6,5],[5,6],[4,-1],[2,0],[0,8],[1,4],[1,2],[2,2],[2,9],[1,0],[4,-1],[8,19],[0,5],[-2,3],[-4,6],[-11,-25],[0,2],[0,2],[0,1],[-2,0],[0,3],[3,8],[2,3],[3,2],[-2,4],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,4],[1,2],[3,2],[0,4],[-2,0],[0,4],[4,8],[1,20],[-1,39],[-4,10],[-10,9],[-9,3],[-4,-6],[-2,0],[-7,14],[-2,5],[1,-1],[2,1],[0,4],[-1,4],[-2,1],[-6,-1],[-2,0],[-8,6],[-7,8],[-7,7],[-10,3],[0,4],[6,3],[12,12],[6,1],[-1,4],[-1,2],[-1,1],[-2,1],[0,4],[13,2],[4,-2],[1,-4],[0,-6],[-1,-4],[1,-2],[1,-1],[4,-7],[1,0],[2,4],[0,4],[-3,7],[3,4],[6,2],[6,-1],[2,-2],[2,-5],[2,-1],[2,2],[1,3],[0,4],[-2,3],[0,5],[4,3],[2,6],[-1,8],[-3,7],[-2,3],[-4,4],[-2,3],[-3,5],[0,2],[2,0],[2,3],[4,8],[2,-2],[3,-6],[6,0],[3,7],[-1,8],[-3,9],[-3,5],[-2,2]],[[26194,57032],[6,23],[5,23],[8,22],[10,8],[8,-8],[7,-15],[9,-11],[28,-22],[38,-29],[10,-8],[40,-31],[45,-34],[6,-2],[7,5],[28,40],[21,28],[8,5],[5,-5],[11,-16],[5,-1],[6,0],[6,-4],[14,-13],[2,-1],[1,-1],[1,-1],[2,-2],[6,-17],[2,-4],[3,-3],[3,-2],[3,-1],[2,2],[15,21],[3,3],[2,-3],[1,-4],[0,-6],[0,-8],[2,-4],[3,-10],[1,-4],[3,-6],[13,-10],[3,-4],[2,-6],[6,-6],[5,-8],[1,-15],[-4,-4],[-1,-1],[-2,-5],[1,-3],[1,-3],[1,-2],[6,-10],[1,-4],[3,5],[5,-1],[2,0],[2,-1],[3,1],[6,-10],[3,-3],[3,5],[2,0],[3,-7],[7,9],[5,-2],[3,7],[4,1],[3,-4],[1,-10],[17,-28],[2,-2],[2,-1],[3,1],[4,6],[2,1],[7,-3],[1,2],[6,14],[19,14],[1,1],[18,9],[10,11],[1,16],[-3,21],[0,25],[0,3],[0,3],[2,3],[1,-1],[2,1],[2,-1]],[[26352,56450],[3,-1],[1,-3],[3,-1],[3,0],[0,-4],[-4,-2],[-4,-2],[-5,-1],[-4,1],[-5,4],[-3,6],[-4,15],[6,3],[2,1],[9,-4],[8,-5],[0,-4],[-10,0],[3,-3],[1,0]],[[25806,53736],[-6,0],[4,13],[3,6],[4,4],[4,2],[0,-6],[0,-8],[-4,-8],[-5,-3]],[[26695,55626],[4,4],[4,0],[-1,-7],[-2,-2],[-3,2],[-2,3]],[[26194,57032],[-14,12],[-6,2],[-4,5],[-2,10],[-2,21],[-6,16],[-29,70],[-3,4],[-1,1],[-4,6],[-1,3],[-10,6],[-4,8],[-9,24],[-8,8],[-9,21],[-12,14],[-4,8],[-1,5],[-3,17],[-9,8],[-10,22],[-26,23],[-4,7],[-4,9],[-3,18],[-33,54],[-5,14],[-8,35],[-3,5],[-3,3],[-7,16],[-4,13],[-5,18],[-1,9],[-1,8],[-3,7],[-7,11],[-7,18],[-10,38],[-10,55],[-3,9],[-7,13],[-57,72],[-3,10],[-16,18],[-8,20],[-19,18],[-1,13],[3,-9],[5,-7],[7,-6],[6,-2],[-7,16],[-4,6],[-3,2],[-3,4],[-6,25],[-2,0],[3,-22],[-4,8],[-8,19],[-5,11],[-4,3],[-17,28],[-2,5],[-1,6],[-2,11],[-1,-4],[-2,-5],[-1,-3],[-30,74],[-4,15],[1,-3],[1,-1],[4,-4],[0,4],[-1,1],[-3,3],[0,4],[-1,6],[-4,8],[-7,7],[-5,3],[0,-4],[7,-10],[4,-7],[0,-7],[-3,1],[-4,7],[-6,12],[-33,41],[-6,12],[-4,15],[0,17],[5,21],[8,14],[8,11],[6,13],[1,23],[2,0],[-1,-13],[-1,-4],[3,0],[4,-1],[3,-2],[1,-2],[2,-2],[7,-13],[1,-2],[5,-14],[2,-2],[3,-4],[1,-2],[0,-4],[0,-9],[0,-4],[9,-19],[12,-5],[29,4],[0,4],[-15,-1],[-7,2],[-3,5],[3,10],[13,14],[2,3]],[[25746,58158],[64,8],[4,-1],[6,-8],[3,-1],[2,10],[6,6],[7,9],[3,8],[6,21],[2,2],[4,5],[1,3],[1,5],[-1,3],[-1,1],[-1,4],[2,31],[0,1],[-2,10],[-1,3],[1,2],[2,17],[2,8],[2,5],[13,24],[4,6],[4,2],[5,-1],[16,-16],[3,-2],[2,2],[2,2],[2,3],[4,8],[2,7],[1,10],[-2,16],[0,4],[-2,8],[-2,3],[-2,1],[-2,2],[-1,6],[1,8],[3,16],[1,10],[-9,71],[0,10],[1,19],[0,9],[-1,4],[-2,4],[-2,2],[-1,3],[0,5],[1,32],[0,10],[1,8],[0,4],[1,2],[4,5],[6,6],[6,1],[12,-3],[22,9],[11,2],[10,-11],[5,-3],[4,3],[3,4],[4,1],[5,-9],[1,-3],[3,-1],[2,-1],[14,2],[5,3],[5,4],[3,7],[1,9],[3,18],[4,14],[18,41],[10,31],[3,4],[3,3],[3,3],[4,7],[2,8],[1,6],[1,5],[3,6],[4,4],[21,6],[0,-6],[-3,-13],[1,-16],[20,-29],[6,-17],[1,-3],[4,-3],[3,1],[2,2],[4,1],[6,-6],[4,-10],[2,-12],[5,-12],[6,-4],[6,0],[6,-1],[4,-8],[0,-1],[1,1],[2,4],[2,10],[1,9],[-2,7],[-4,2],[-1,6],[1,11],[3,18],[0,13],[2,3],[2,-1],[5,-1],[4,3],[6,10],[2,-1],[2,0],[0,3],[1,0],[1,1],[-1,6],[9,6],[3,6],[3,8],[6,5],[2,1],[5,1],[5,4],[3,8],[0,9],[2,8],[10,6],[5,6],[7,11],[3,9],[3,11],[2,11],[2,15],[3,10],[3,8],[3,6],[1,0],[3,-1],[1,1],[1,2],[1,4],[2,5],[1,4],[1,3],[3,2],[7,6],[2,2],[11,0],[7,2],[7,5],[6,7],[3,10],[-1,14],[-3,11],[-5,10],[-5,6],[8,12],[0,4],[0,9],[0,3],[6,15],[1,3],[1,30],[1,17],[2,8],[5,-2],[5,-11],[5,-7],[6,6],[9,20],[2,9],[0,1],[-7,0],[2,5],[6,12],[-8,12],[-1,5],[4,3],[1,1],[1,4],[2,22],[2,9],[4,7],[1,1],[4,6],[5,7],[13,26],[4,5],[17,7],[7,0],[7,-4],[6,-10],[5,-14],[-1,-1],[-2,-6],[-1,-1],[6,-2],[1,-7],[-1,-8],[6,-8],[3,-9],[4,-21],[5,7],[6,-2],[10,-9],[7,-3],[20,-1],[-1,-4],[-1,-12],[4,3],[3,-4],[3,-5],[4,-2],[3,1],[8,9],[10,7],[5,13],[4,15],[4,11],[2,-5],[2,-16],[2,-3],[5,-1],[6,-3],[3,0],[6,6],[2,13],[-2,28],[2,7],[3,0],[4,-2],[3,-3],[2,-4],[6,-15],[4,-3],[4,1],[6,4],[2,2],[1,3],[2,2],[2,2],[3,-1],[1,-2],[1,0],[2,3],[0,4],[-3,5],[-1,5],[-4,14],[3,6],[2,0],[7,-9],[0,-2],[2,-2],[2,-1],[5,0],[2,-1],[0,-5],[5,-1],[27,3],[-1,5],[0,5],[1,14],[4,-4],[4,-10],[4,-2],[-1,2],[-1,6],[2,-2],[1,0],[1,-2],[2,-4],[3,6],[5,6],[5,4],[6,0],[-3,3],[-1,3],[-2,7],[16,1],[5,5],[0,9],[3,1],[3,-1],[2,-3],[1,-5],[2,0],[-2,17],[1,7],[5,5],[5,2],[7,-1],[5,-3],[2,-7],[2,0],[1,8],[1,8],[1,6],[7,5],[7,12],[4,2],[-1,2],[0,5],[-1,1],[4,-2],[2,-2],[-1,8],[0,7],[2,3],[3,-6],[0,9],[0,4],[2,4],[-2,6],[1,3],[3,0],[3,-1],[2,-3],[3,-11],[3,-2],[6,1],[6,7],[4,10],[3,10],[3,-6],[4,-2],[3,-4],[1,-8],[4,6],[5,0],[12,-2],[-3,-4],[0,-3],[2,-3],[3,-2],[1,0],[13,0],[7,6],[4,2],[9,-1],[4,1]],[[26908,59351],[-2,-6],[-5,-5],[-3,-5],[-4,10],[-3,-7],[-3,-13],[-2,-7],[-3,-3],[-4,-9],[-2,-10],[-1,-8],[-1,-3],[-4,-7],[-1,-4],[-1,-6],[0,-13],[-1,-5],[-2,-8],[-3,-5],[-10,-8],[1,4],[0,2],[3,6],[0,-4],[1,3],[0,3],[0,3],[0,4],[-2,-3],[-1,-1],[-2,4],[0,3],[3,4],[3,0],[3,-2],[2,-5],[0,11],[-3,15],[-1,12],[-1,12],[-4,2],[-5,-4],[-3,-4],[-6,-10],[-12,-33],[-3,-14],[3,6],[1,2],[4,-6],[3,-24],[2,-6],[3,-4],[4,-8],[4,-3],[5,11],[-2,3],[-5,7],[-3,2],[3,4],[4,-2],[2,-6],[3,-8],[0,13],[2,5],[2,-6],[11,-103],[1,-4],[2,-11],[2,-28],[14,-81],[1,-23],[-1,-21],[-8,-37],[-23,-77],[-10,-25],[-1,-10],[-2,-7],[-13,-20],[-6,-16],[-4,-19],[-6,-55],[-11,-75],[-7,-67],[1,-29],[-1,-14],[0,-12],[-6,-29],[-5,-39],[-3,-77],[0,-14],[2,-8],[-2,-4],[2,-7],[9,-117],[6,-77],[-9,-156],[0,-35],[1,-6],[4,-17],[2,-18],[8,-23],[2,-15],[-1,-18],[-3,-10],[-5,-4],[-9,0],[-7,-3],[-7,-5],[-6,-3],[-6,7],[2,4],[6,8],[2,4],[0,7],[-1,9],[-2,9],[-6,11],[0,39],[-1,15],[1,1],[1,0],[0,2],[2,0],[10,-6],[7,18],[2,27],[-4,18],[0,4],[3,6],[1,8],[0,33],[1,1],[1,2],[1,3],[1,4],[-1,16],[-5,10],[-8,3],[-7,-1],[-6,-7],[-2,-11],[0,-12],[2,-10],[6,-7],[1,-1],[0,-2],[0,-10],[1,-5],[1,-4],[1,-1],[1,-3],[1,-6],[0,-10],[-1,-4],[-1,-4],[1,-3],[3,-9],[-9,-11],[-15,-26],[-9,-8],[-12,-3],[-5,-3],[-2,-8],[0,-31],[1,1],[3,0],[3,-2],[2,0],[2,-1],[2,-5],[2,-27],[-1,-13],[-2,-11],[-1,-12],[2,-11],[6,-5],[8,4],[2,-9],[-1,-6],[-1,-12],[0,-6],[0,-4],[2,5],[4,31],[2,7],[2,4],[6,-2],[1,-5],[-13,-54],[-6,-70],[2,-76],[2,-13],[-2,-2],[-2,-2],[1,12],[-2,10],[-7,18],[-3,15],[2,7],[5,6],[2,13],[-2,10],[-3,12],[-5,10],[-5,5],[-9,-2],[1,-9],[4,-5],[4,8],[2,0],[4,-10],[2,-6],[1,-8],[-1,-10],[-4,-13],[-1,-10],[-1,-11],[-5,0],[-12,7],[-1,-2],[3,-4],[7,-6],[2,-5],[1,-6],[0,-7],[1,-8],[-1,-6],[-2,-11],[-1,-4],[1,-3],[0,-4],[1,-3],[0,-4],[-2,-4],[-1,-2],[-2,-1],[-1,-1],[-5,-14],[-1,-3],[-3,-1],[-3,-5],[-2,-5],[-1,-5],[4,-5],[4,-9],[4,-9],[2,-11],[2,-3],[3,-2],[3,-1],[4,1],[0,3],[-1,3],[0,5],[1,12],[2,6],[2,2],[5,0],[3,-5],[13,-108],[0,-21],[0,-7],[0,-5],[-1,-3],[-2,-5],[-1,2],[-4,-2],[-4,-2],[0,-2],[-2,-2],[-3,-8],[-3,-2],[-3,0],[-3,-1],[-2,-3],[-2,-4],[-3,-18],[-3,-28],[-3,-21],[-6,2],[-2,0],[-9,-24],[-2,-9],[-2,-10],[0,-60],[9,-78],[6,-30],[8,-27],[3,-15],[6,-22],[3,-5],[5,-7],[2,-11],[2,-13],[5,2],[-1,6],[4,2],[6,-3],[4,-5]],[[26742,57504],[-2,16],[0,22],[2,18],[5,9],[1,0],[0,-1],[0,-1],[0,-2],[-2,-6],[-2,-10],[-1,-10],[-1,-10],[2,-22],[0,-8],[-2,5]],[[26929,57661],[0,14],[2,10],[4,4],[3,-5],[-1,-4],[-8,-19]],[[27009,59006],[4,5],[4,0],[2,-5],[1,-10],[-2,-16],[-5,-5],[-14,2],[-2,1],[2,0],[1,1],[-1,3],[5,5],[2,7],[1,6],[2,6]],[[55173,52529],[3,-17],[2,-74],[-3,-86],[-3,-13],[0,-7],[-2,-10],[-5,-8],[-9,-10],[-6,-9],[-4,-10],[-9,-59],[-4,-14],[-1,-6],[-2,-13],[-1,-7],[-5,-15],[-6,-30],[-1,-8],[-1,-16],[-7,-40],[-22,-77],[0,-5],[-3,-2],[-16,-32],[-4,-9],[-2,-10],[-3,-35],[-2,-11],[-2,-11],[-3,-11],[-4,-21],[-3,-9],[-5,-3],[-1,-6],[-7,-17],[-2,-7],[-10,-62],[0,-9],[1,-18],[1,-18],[-1,-57],[1,-27],[0,-9],[-1,-11],[-3,-19],[0,-10],[2,-170],[-1,-13],[-16,-76],[-2,-12],[-1,-21],[-10,-67],[-1,-37],[-2,-11],[-11,-42],[-6,-14],[-6,-23],[-2,-13],[4,-41],[0,-47],[8,-76],[0,-16],[-4,-46],[0,-16],[1,-15],[6,-28],[4,-5],[3,-10],[2,-11],[0,-10],[-2,-58],[-1,-9],[-24,-72],[-22,-127],[-5,-21],[-11,-110],[-1,-15],[1,-15],[6,-59],[3,-105],[-2,-6],[-4,-12],[-18,-35],[-1,-4],[-2,-5],[0,-9],[-1,-2],[0,-2],[-4,-5],[-3,-9],[-6,-9],[-16,-40],[-37,-96],[-7,-14],[-6,-15],[-2,-4],[-8,-8],[0,-3],[-6,-13],[-3,-4],[-14,-9],[-14,-4],[-6,-3],[-18,-16],[-14,-8],[-8,-3],[-2,-2],[-3,-4],[-2,-2],[0,-3],[-7,-17],[-11,-20],[-9,-22],[-13,-22],[-6,-8],[-2,-4],[-1,-4],[-3,-17],[-6,-24],[-5,-22],[-4,-14],[-11,-44],[-9,-25],[-6,-28],[-4,-12],[-5,-18],[-2,-10],[-2,-10],[0,-6],[0,-21],[-2,-17],[-3,-15],[-22,-62],[-1,-2],[-1,-7],[-1,-8],[-2,-2],[-5,-8],[-4,-4],[-2,-1],[-2,-5],[-4,-12],[-18,-36],[-12,-19],[-15,-32],[-8,-11],[-7,-13],[-7,-19],[-3,-13],[-2,-13],[0,-14],[1,-4],[0,-4],[-4,-27],[-1,-9],[1,-9],[3,-9],[1,-3],[0,-5],[0,-29],[10,-142],[-6,-87],[-7,-43],[-1,-8],[0,-8],[2,-35],[1,-21],[-1,-29],[2,-34],[-2,-32],[2,-10],[2,-11],[0,-13],[-1,-26],[1,-13],[3,-7],[4,-4],[1,-7],[0,-13],[-2,-11],[-3,-18],[-14,-51],[-6,-32],[-6,-25],[-17,-45],[-12,-49],[-2,-13],[-4,-9],[-4,-28],[-9,-32],[-2,-4],[-1,-6],[-6,-35],[-6,-14],[-2,-3],[-10,-12],[-13,-8],[-12,-4],[-12,-4],[-40,-27],[-5,-5],[-5,-7],[-3,-11],[-9,-58],[-1,-5],[-6,-14],[-1,-4],[-3,-2],[-7,-8],[-10,-8],[-31,-33],[-6,-8],[-7,-7],[-7,-8],[-3,-12],[-2,-8],[-10,-31],[-15,-44],[-6,-12],[-15,-16],[-2,-7],[-2,-7],[-21,-45],[-23,-81],[-2,-10],[-3,-9],[-4,-8],[-13,-12],[-19,-24],[-8,-6],[-10,-2],[-4,2],[-8,11],[-4,3],[-1,1],[-2,8],[-2,3],[-2,0],[-6,0],[-1,2],[-2,7],[-5,0],[-6,-3],[-3,-4],[-6,-13],[-3,-3],[-5,-2],[-5,-2],[-2,18],[5,46],[-1,6],[-2,5],[-1,6],[0,7],[1,6],[2,10],[0,6],[-1,14],[-3,10],[-4,8],[-4,11],[-2,23],[-2,13],[0,5],[2,8],[4,9],[11,9],[3,7],[3,10],[5,11],[4,11],[1,12],[-2,4],[-10,13],[-5,13],[-5,15],[-1,8],[-1,4],[1,3],[2,8],[0,8],[0,6],[-1,5],[-1,3],[-5,-1],[-12,-14],[-13,-6],[-6,-9],[-10,-19],[-10,-11],[-11,-7],[-24,-6],[-11,-9],[-8,-24],[0,-1],[-1,-2],[-4,-6],[-5,-12],[-3,-4],[-3,0],[-8,5],[-8,-1],[-3,1],[-3,6],[-4,15],[-2,8],[-6,8],[-6,1],[-18,-13],[-3,-3],[-1,-7],[3,-57],[-1,-12],[-4,-24],[-1,-13],[3,-25],[-1,-5],[-2,0],[-3,2],[-2,-3],[-1,-6],[1,-11],[-2,-5],[-2,0],[-7,4],[-2,0],[-6,-8],[-6,-24],[-3,-2],[-3,-2],[-3,4],[-6,12],[-3,3],[-3,-1],[-9,-11],[2,-5],[1,-5],[0,-5],[-3,-3],[-15,-23],[-7,-19],[-3,-5],[-6,25],[-2,21],[-2,7],[-2,6],[-4,4],[-17,13],[-5,7],[-13,24],[-8,11],[-3,5],[-3,20],[-5,15],[-2,9],[-6,15],[-7,-1],[-5,-13],[1,-20]],[[53631,47725],[-13,13],[-18,47],[-11,18],[-6,13],[-5,29],[-4,12],[-4,5],[-3,-1],[-4,-3],[-4,-2],[-4,2],[-5,6],[-2,2],[-4,3],[-6,-8],[-3,-14],[-3,-14],[-3,-9],[-5,-6],[-5,-8],[-4,-10],[-6,-24],[-3,-6],[-4,-4],[-31,-12],[-19,-13],[-4,-1],[-8,2],[-2,-8],[0,-25],[-1,-13],[-12,-49],[-3,-7],[-4,-3],[-9,-2],[-4,-2],[-4,-4],[-3,-4],[-3,14],[-3,6],[-3,4],[-3,0],[-1,-3],[-9,-61],[-7,-25],[-31,-56],[-3,-7]],[[53335,47497],[-4,8],[-4,10],[-6,22],[-10,27],[-7,14],[-3,16],[-15,35],[-3,7],[0,3],[1,4],[2,0],[3,-9],[2,1],[1,7],[-1,13],[-7,20],[-12,23],[-1,7],[0,6],[7,0],[5,12],[1,14],[-5,22],[-31,67],[-29,53],[-26,48],[-13,17],[-13,26],[-6,18],[-1,3],[-4,13],[0,6],[0,13],[0,7],[-1,5],[-25,41],[-27,38],[-9,15],[-7,9]],[[53087,48138],[4,17],[18,106],[5,19],[7,13],[10,13],[8,15],[9,12],[11,4],[11,8],[6,17],[5,18],[8,11],[14,-4],[10,-17],[22,-76],[5,-10],[6,-5],[15,4],[6,-1],[16,-10],[5,0],[1,1],[4,4],[6,9],[5,13],[3,13],[-2,12],[-6,7],[-6,4],[-6,7],[-3,13],[1,13],[16,80],[4,15],[12,19],[3,12],[-3,19],[-10,11],[-14,8],[-10,10],[-11,20],[-6,7],[-15,14],[-3,4],[-2,5],[-1,2],[1,3],[0,41],[2,11],[3,14],[3,4],[4,0],[6,1],[7,9],[0,13],[-4,13],[-21,48],[-10,30],[-4,11],[-6,4],[-8,-6],[-11,-16],[-5,-2],[-1,14],[3,23],[0,4],[21,70],[2,15],[1,13],[0,12],[-1,15],[-3,13],[-7,24],[-2,13],[0,10],[2,33],[-1,13],[-6,34],[2,12],[1,0],[10,0],[14,-9],[4,-5],[2,-4],[1,-5],[2,-5],[9,-16],[5,-6],[5,-1],[5,6],[9,19],[6,5],[10,4],[12,8],[9,9],[3,-3],[5,-8],[9,-25],[8,-13],[9,-2],[110,51],[-3,13],[2,19],[4,20],[2,17],[-2,25],[0,9],[2,9],[5,16],[2,11],[-11,10],[-6,19],[-2,24],[-3,64],[1,8],[3,-2],[4,-7],[5,-12],[5,-3],[4,4],[1,6],[0,6],[0,5],[2,8],[2,4],[1,3],[14,20],[3,2],[13,1],[12,-11],[19,-28],[1,-2],[12,-8],[4,-7],[4,-14],[6,-43],[2,-13],[2,-4],[4,-9],[1,-4],[1,-13],[0,-1],[0,-2],[0,-4],[0,-3],[5,-3],[0,-3],[-1,-4],[0,-3],[-2,-4],[0,-4],[1,-4],[3,-8],[1,-4],[1,-6],[1,-10],[4,0],[6,7],[3,-5],[5,-18],[3,-7],[1,-16],[1,-4],[2,-5],[2,0],[1,-1],[1,-6],[-3,-5],[-1,-5],[-1,-6],[0,-5],[-1,-6],[-1,-5],[-1,-4],[-3,-5],[-2,-6],[1,-3],[4,0],[3,7],[5,11],[4,2],[6,-3],[18,-17],[6,-3],[3,1],[5,7],[4,1],[2,-1],[49,-39],[5,-1],[5,3],[6,-2],[2,0],[4,2],[1,-1],[3,-7],[1,-1],[3,4],[1,4],[1,6],[2,6],[2,5],[9,14],[3,5],[4,10],[2,6],[4,3],[6,5],[3,4],[1,5],[1,13],[2,6],[21,43],[2,7],[1,6],[1,12],[1,6],[3,12],[5,19],[1,3],[1,-1],[3,-4],[4,-8],[3,-11],[2,-13],[3,-24],[6,-28],[4,-11],[5,-11],[2,-6],[1,-16],[2,-4],[3,-3],[2,-5],[4,-11],[-1,-4],[-3,-4],[-4,-18],[-6,-6],[-2,-5],[0,-23],[0,-3],[4,-9],[6,-4],[7,-1],[6,3],[5,6],[2,3],[3,0],[3,-4],[1,-11],[1,-4],[2,0],[13,9],[2,0],[3,0],[4,-5],[3,-3],[2,1],[2,4],[1,8],[2,11],[2,5],[3,4],[2,6],[0,15],[1,6],[2,5],[6,10],[2,3],[3,3],[13,7],[1,-2],[-2,19],[-21,38],[-1,20],[4,6],[10,8],[3,8],[1,5],[-2,10],[0,6],[2,3],[4,4],[2,4],[2,8],[1,31],[2,12],[0,6],[-1,5],[-2,3],[-2,3],[0,4],[1,6],[0,6],[1,6],[1,4],[2,4],[33,27],[0,1],[8,8],[2,9],[-2,25],[0,5],[1,16],[1,47],[2,13],[3,8],[7,8],[-2,4],[-6,2],[-5,3],[-3,24],[-5,7],[-2,4],[2,5],[6,4],[2,3],[3,4],[2,6],[1,7],[2,5],[9,4],[0,8],[-3,11],[-4,8],[4,17],[0,14],[1,6],[3,6],[4,5],[2,7],[-2,12],[-9,14],[-5,9],[-1,11],[1,7],[1,4],[3,4],[2,5],[1,6],[1,6],[1,13],[1,19],[-1,5],[-2,8],[-5,9],[-1,3],[-2,7],[0,5],[2,10],[0,5],[-1,7],[-3,13],[-8,47],[0,8],[3,13],[2,25],[1,14],[4,14],[5,12],[3,13],[-1,18],[-2,15],[0,14],[2,15],[11,52],[2,19],[-3,18],[-6,28],[-3,8],[-12,16],[-6,18],[-9,12],[-11,10],[-7,5],[-5,-1],[-4,-5],[-5,-3],[-4,2],[-5,5],[-5,0],[-5,-4],[-4,-5],[-1,22],[-2,25],[-3,23],[-5,21],[-7,15],[-10,10],[-11,4],[-11,-6],[-2,6],[-2,4],[-3,2],[-9,3],[-3,-2],[-1,-4],[0,-4],[-2,-3],[-3,-2],[-2,-1],[-2,2],[-13,33],[1,17],[3,14],[12,36],[4,10],[3,6],[2,7],[0,7],[-1,6],[-1,9],[1,6],[4,11],[1,6],[-2,7],[-4,1],[-3,0],[-2,5],[-1,42],[-1,15],[-3,18],[-1,15],[1,14],[9,30],[10,47],[6,14],[21,24],[5,12],[1,13],[-2,12],[-3,12],[8,25],[14,4],[16,-4],[14,2],[3,3],[2,2],[1,4],[21,38],[2,12],[0,31],[8,24],[13,24],[10,24],[-2,28],[-1,7],[2,5],[3,4],[3,5],[0,8],[-2,5],[-6,7],[-6,11],[-4,11],[-4,13],[-3,14],[-5,30],[-3,12],[-14,14],[-4,12],[-2,15],[0,45],[-1,15],[-4,37],[-2,7],[-3,5],[-3,3],[-2,3],[-1,3],[0,3],[-3,2],[-2,3],[-2,4],[-3,3],[-11,7],[-5,1],[-5,-3],[-10,-8],[-6,1],[-4,6],[-4,9],[-5,6],[-5,3],[-53,10],[-4,-2],[0,-3],[-2,-15],[-4,-14],[-1,-1],[-3,-3],[-1,1],[-3,3],[-1,1],[-2,-2],[-3,-5],[-2,-2],[-5,-2],[-3,-1],[-3,1],[-5,-1],[-4,-6],[-4,-6],[-10,-9],[-6,-18],[-3,-5],[-10,-4],[-8,0],[-9,4],[-9,7],[-5,1],[-6,-2],[-5,-3],[-2,-4],[-2,-11],[-5,-3],[-5,-1],[-5,-14],[-5,-4],[-6,-3],[-9,2],[-6,-2],[-3,1],[-1,8],[-3,4],[-3,3],[-3,5],[6,1],[2,7],[1,9],[2,3],[4,2],[4,3],[4,6],[3,12],[2,2],[0,3],[-2,7],[-1,4],[0,5],[0,4],[0,28],[0,5],[-4,6],[-5,29],[-6,6],[2,9],[-1,8],[-2,7],[-3,5],[-2,-5],[-5,16],[-4,17],[4,11],[1,15],[-1,27],[1,12],[2,11],[0,11],[-2,10],[4,4],[3,8],[2,9],[3,22],[0,9],[-1,7],[-2,5],[-2,10],[-3,11],[1,2],[3,2],[2,10],[2,7],[2,4],[2,4],[1,4],[1,6],[-2,11],[0,5],[3,2],[1,3],[5,11],[2,3],[10,12],[3,14],[0,19],[0,35]],[[53692,51749],[48,0],[43,-1],[12,0],[44,-1],[50,-1],[44,-1],[30,-1],[2,1],[12,10],[18,-5],[4,-5],[6,-11],[4,-2],[1,1],[6,8],[22,10],[2,2],[1,5],[0,5],[0,6],[2,5],[1,4],[8,-4],[9,-22],[6,-7],[-2,-9],[3,-3],[7,1],[4,-5],[5,-12],[4,-4],[-1,15],[2,2],[7,-9],[-4,-6],[-2,-2],[3,-2],[3,1],[2,1],[2,0],[0,-4],[0,-13],[1,-3],[17,4],[4,2],[2,6],[1,7],[0,7],[1,4],[4,-9],[4,-11],[1,-6],[5,-8],[-3,-17],[-1,-14],[11,-2],[6,2],[3,2],[2,15],[3,-1],[13,-23],[4,-2],[6,3],[3,-10],[5,3],[4,10],[3,9],[2,0],[4,-3],[3,17],[9,-7],[4,4],[4,3],[6,-5],[1,-4],[2,-9],[1,-4],[2,-2],[9,-7],[2,-4],[2,-4],[0,-5],[0,-8],[0,-3],[0,-2],[2,-5],[1,-1],[7,-6],[0,-1],[3,1],[5,5],[6,4],[14,18],[12,4],[12,-5],[24,-15],[26,-6],[2,-3],[3,-3],[3,-3],[7,-2],[2,-3],[10,-29],[4,-4],[7,-5],[7,-9],[2,-3],[2,-4],[1,-9],[1,-5],[4,0],[3,3],[3,3],[1,-9],[4,-4],[6,-3],[4,-4],[3,4],[4,-1],[3,-2],[2,-5],[1,-7],[0,-5],[-1,-6],[0,-6],[2,-10],[11,-30],[13,38],[2,1],[6,-4],[3,3],[1,9],[-7,65],[-9,52],[-5,18],[-2,5],[-2,1],[-1,4],[0,21],[0,6],[5,13],[0,5],[-1,5],[-1,5],[0,2],[0,2],[0,4],[1,3],[1,0],[1,0],[1,1],[1,8],[-1,6],[-1,5],[-1,8],[1,6],[3,14],[2,13],[4,6],[6,-3],[5,-10],[11,18],[3,6],[-2,5],[-1,3]],[[54499,51794],[14,65],[12,57],[9,40],[13,58],[12,53],[4,17],[6,29],[8,36],[1,15],[-2,10],[-4,10],[-4,11],[0,26],[10,44],[2,21],[-2,14],[-3,12],[-2,12],[0,15],[3,14],[10,28],[2,13],[0,14],[7,37],[2,50],[5,26],[8,22],[12,16],[13,8],[6,1],[6,-1],[22,-12],[6,1],[6,6],[0,5],[0,6],[0,5],[4,1],[3,-2],[5,-4],[2,-1],[8,2],[3,0],[3,-4],[2,-5],[2,-3],[4,3],[2,1],[4,-1],[1,0],[3,2],[3,6],[2,3],[4,4],[3,2],[7,-1],[4,1],[8,6],[3,2],[11,0],[4,1],[5,4],[3,6],[2,6],[4,7],[4,3],[3,-1],[7,-5],[11,2],[5,11],[6,15],[11,12],[3,4],[5,7],[4,4],[7,-2],[1,-3],[1,-8],[1,-2],[4,-1],[1,-1],[11,-19],[10,-9],[11,-4],[23,0],[1,1],[3,3],[2,0],[2,-2],[3,-7],[2,-2],[2,0],[6,2],[2,0],[4,-5],[4,-9],[2,-11],[2,-12],[2,-9],[4,-1],[5,3],[10,11],[2,2],[1,-1],[10,-13],[3,-2],[3,0],[9,9],[10,6],[9,0],[10,-7],[5,-10],[3,-24],[4,-8],[6,-2],[6,6],[5,10],[3,10],[1,6],[2,18],[1,8],[3,1],[2,-1],[3,-1],[22,5],[2,-1],[3,-3],[2,-1],[1,3],[1,8],[1,2],[4,1],[4,-1],[3,3],[5,10],[3,8],[4,1],[7,-13],[4,-11],[11,-39],[5,-22],[3,-7],[12,0]],[[55173,52529],[-9,138],[6,73],[-1,20],[0,7],[1,13],[6,20],[2,14],[1,14],[0,38],[-4,50],[-3,23],[-10,39],[-2,11],[-2,7],[-7,14],[-2,10],[1,13],[4,15],[6,11],[5,-1],[5,-6],[6,-3],[5,1],[6,3],[13,9],[9,14],[6,19],[15,75],[6,20],[10,17],[3,17],[0,1],[2,2],[5,4],[1,2],[10,35],[5,8],[5,7],[3,9],[3,22],[2,5],[2,4],[2,5],[2,6],[2,18],[3,14],[4,11],[7,13],[2,5],[5,4],[13,0],[5,2],[5,16],[4,15],[2,5],[13,13],[25,33],[6,17],[4,8],[6,3],[18,-1],[6,1],[9,9],[5,3],[10,-10],[32,-2],[3,-1],[5,-6],[9,-3],[12,-13],[4,-5],[3,-9],[3,-8],[4,-17],[2,-9],[3,-8],[7,-5],[24,-11],[8,-10],[6,-12],[9,-13],[18,-15],[6,-7],[12,-33],[6,-10],[5,-5],[13,-10],[6,-1],[4,-4],[4,-10],[6,-18],[6,-28],[2,-5],[5,-4],[5,-11],[5,-13],[2,-13],[-2,-8],[-3,-10],[-1,-11],[3,-13],[1,-3],[29,-57],[5,-8],[7,-3],[23,8],[22,0],[7,2],[4,5],[3,5],[4,4],[11,2],[26,-12],[26,-20],[5,-2],[2,-5],[6,-20],[2,-8],[7,-4],[3,-4],[3,-10],[2,-2],[5,0],[3,-2],[2,-4],[2,-3],[4,1],[2,3],[2,5],[2,4],[1,4],[3,4],[2,2],[2,1],[4,1],[3,-2],[2,-4],[1,-4],[13,-18],[5,-5],[6,-4],[6,-1],[12,2],[3,-2],[3,-4],[2,-4],[2,-3],[3,-1],[5,0],[3,-3],[27,30],[5,1],[10,-2],[10,1],[4,-1],[5,-4],[2,-3],[1,-2],[1,-3],[3,0],[8,0],[3,0],[5,-6],[3,-6],[5,-6],[6,-3],[17,-2],[5,2],[3,2],[1,1],[2,1],[3,0],[2,-1],[8,-8],[6,-5],[14,-6],[5,-4],[2,-3],[5,-11],[3,-4],[6,-5],[6,-8],[27,-13],[33,3],[3,3],[5,4],[2,2],[9,15],[5,10],[3,9],[1,3],[5,9],[1,6],[0,5],[-2,13],[0,6],[8,32],[3,5],[3,2],[3,5],[3,7],[1,6],[-1,5],[-4,12],[-2,11],[0,17],[1,14],[5,6],[12,-1],[6,2],[4,4],[2,6],[0,6],[0,14],[1,3],[4,6],[1,3],[0,4],[3,10],[1,4],[-1,6],[-1,12],[0,7],[4,5],[3,6],[2,8],[2,9],[3,20],[3,9],[5,3],[4,-3],[5,-6],[5,-2],[3,16],[6,10],[2,6],[-2,6],[-1,7],[0,8],[1,7],[3,6],[2,1],[3,-2],[4,0],[3,2],[3,4],[4,2],[3,0],[2,-5],[3,-16],[3,-12],[1,-9],[2,-8],[3,-3],[4,-1],[4,-4],[3,-4],[3,-5],[6,-6],[7,2],[12,14],[4,-8],[7,-21],[4,-4],[1,-2],[7,-10],[4,-16],[2,-2],[6,-3],[2,-1],[0,-2],[3,-7],[1,-2],[6,0],[5,-2],[4,-4],[5,-6],[2,3],[5,-1],[3,2],[1,5],[0,4],[0,5],[1,7],[2,10],[3,8],[5,5],[6,1],[5,4],[17,29],[6,5],[12,7],[11,13],[6,4],[12,3],[6,5],[11,16],[5,4],[3,-1],[6,-3],[2,-1],[2,2],[3,5],[2,1],[12,-5],[7,0],[-1,7],[-1,6],[0,7],[1,6],[1,3],[2,2],[2,-1],[4,-9],[5,7],[14,14],[7,13],[5,5],[5,2],[3,-2],[6,-8],[4,-2],[2,3],[8,22],[5,7],[6,3],[4,-4],[2,-15],[2,0],[2,4],[1,4],[0,6],[1,6],[3,17],[1,2],[2,5],[20,5],[5,6],[4,8],[-1,7],[-7,3],[-3,6],[2,13],[4,14],[4,8],[2,-6],[2,-18],[2,-5],[4,-3],[1,4],[-1,9],[1,6],[7,4],[6,-3],[1,-1],[8,-8],[5,-8],[2,-4],[2,-12],[2,-4],[3,-3],[7,-2],[3,-3],[3,-5],[0,-12],[1,-7],[3,-5],[9,-6],[3,-6],[-3,-10],[-1,-6],[3,-3],[18,-4],[5,1],[5,6],[3,-7],[3,1],[3,6],[3,6],[3,3],[2,-2],[3,-2],[3,-1],[5,5],[10,13],[7,3],[1,2],[5,7],[2,3],[3,0],[11,-7],[9,-11],[10,-6],[2,2],[2,12],[3,12],[1,2],[3,2],[2,4],[2,6],[3,-1],[2,-2],[2,-3],[2,-2],[18,2],[3,4],[3,5],[12,2],[4,3],[3,6],[1,6],[0,14],[1,7],[4,10],[1,4],[0,6],[2,12],[0,4],[-2,4],[-6,2],[-2,2],[-2,13],[3,11],[3,8],[2,7],[1,14],[1,12],[4,8],[5,4],[-3,11],[2,3],[4,3],[3,8],[5,-7],[6,3],[12,15],[1,2],[1,-1],[3,-6],[2,-2],[7,6],[3,2],[-2,10],[3,2],[5,-1],[4,1],[1,0],[2,-8],[1,-7],[3,-6],[6,1],[-1,-3],[-1,-2],[-1,-2],[-1,-2],[0,-4],[4,-6],[2,1],[2,4],[3,1],[2,-1],[2,-5],[1,-1],[1,-1],[6,-4],[4,-6],[7,-18],[3,-5],[4,-3],[4,0],[3,8],[-3,4],[2,2],[4,-4],[1,-14],[1,1],[3,1],[1,2],[-1,-9],[1,-5],[1,-4],[2,-12],[3,3],[3,7],[1,4],[6,-1],[3,-8],[3,-11],[5,-9],[0,12],[4,7],[5,2],[4,-4],[0,10],[1,6],[3,2],[4,-2],[3,-3],[5,-12],[3,-6],[3,5],[4,1],[3,0],[1,1],[1,6],[2,3],[3,-1],[2,-2],[-1,4],[-1,16],[2,-2],[1,-1],[2,-1],[2,0],[2,2],[1,4],[2,6],[4,-4],[2,-7],[1,-5],[4,4],[1,-3],[2,-2],[1,-3],[3,6],[1,2],[2,-18],[2,-5],[3,3],[0,-3],[0,-10],[2,1],[3,2],[1,1],[2,-10],[5,-8],[6,-5],[7,-3],[5,2],[5,-1],[2,-7],[2,3],[6,5],[3,-9],[4,-7],[4,-5],[3,-5],[6,-23],[0,-4],[4,-1],[7,-6],[5,-1],[2,1],[4,3],[4,4],[2,4],[1,-4],[4,9],[5,3],[5,-1],[2,-7],[2,0],[1,7],[3,0],[3,-3],[3,3],[4,7],[3,3],[13,0],[4,-2],[2,-2],[11,-26],[2,-3],[2,1],[3,6],[2,1],[2,-1],[1,-3],[1,-3],[1,-1],[5,-1],[1,2],[3,7],[2,6],[2,14],[2,5],[8,19],[8,14],[8,12],[10,11],[13,8],[12,-2],[11,-8],[23,-24],[6,-4],[6,-2],[5,-2],[4,-6],[4,-7],[4,-6],[2,-2],[3,-1],[5,0],[3,-2],[4,-5],[3,-1],[7,-6]],[[58566,52537],[6,4],[5,10],[5,3],[3,-14],[0,-5],[-1,-17],[0,-7],[3,-12],[0,-7],[-1,-13],[-2,-4],[-2,-7],[-8,-18],[-6,-21],[0,-2],[0,-7],[-1,-3],[-2,-1],[-3,-2],[-1,-1],[-5,-21],[-11,-73],[-5,-27],[-1,-13],[1,-11],[3,-9],[13,-19],[5,-10],[6,-23],[3,-24],[0,-24],[-7,-39],[-2,-6],[-1,-1],[-3,-2],[-2,-1],[0,-4],[0,-6],[-1,-3],[-9,-53],[-1,-7],[0,-3],[0,-5],[-6,-18],[-1,-6],[0,-11],[1,-22],[-1,-10],[-2,-10],[-3,-12],[-3,-12],[1,-10],[4,-3],[20,0],[2,-4],[1,-7],[0,-9],[1,-9],[2,-9],[5,-12],[5,-10],[5,-4],[8,8],[4,19],[4,16],[11,0],[4,-6],[16,-38],[1,-2],[0,-5],[0,-3],[-2,-2],[-1,-2],[2,-5],[4,-5],[12,-4],[4,-1],[4,2],[14,10],[0,-25],[1,-13],[2,-10],[6,-9],[16,-19],[3,-11],[0,-1],[0,-1],[-2,-29],[-8,-31],[-17,-44],[-17,-48],[-7,-17],[-19,-52],[-20,-34],[-38,-66],[-38,-65],[-23,-64],[-12,-33],[-21,-58],[-6,-10],[-3,-5],[-4,-4],[-6,-2],[-3,-1],[-7,1],[-3,0],[-5,-8],[-3,-12],[-3,-8],[-5,5],[-3,5],[-3,1],[-2,-1],[-2,-3],[-9,-19],[-1,-3],[0,-13],[-1,-6],[-1,-5],[-3,-7],[0,-12],[1,-24],[-2,-11],[-6,-14],[-1,-10],[-1,-2],[-5,-20],[-3,-7],[-3,-3],[-30,-15],[-11,-11],[-4,-7],[-6,-10],[-4,-4],[-5,-23],[-1,-6],[2,-31],[-3,-50],[-1,-12],[6,-48],[0,-23],[-4,-19],[-1,-4],[-5,-13],[-15,-36],[-3,-11],[-2,-13],[-9,-97],[-1,-5],[-2,-3],[-2,1],[-2,4],[-4,3],[-1,-7],[-12,-36],[-3,-16],[0,-11],[3,-25],[0,-12],[-1,-11],[-4,-22],[-5,-60],[-2,-21],[-4,-58],[-1,-11],[-6,-74],[0,-11],[1,-4],[3,-13],[1,-9],[1,-36],[0,-9],[-2,-3],[-3,0],[-3,-2],[-1,-6],[0,-4],[2,-6],[1,-4],[0,-4],[-2,-3],[-1,-3],[-1,-3],[-4,-46],[0,-13],[3,-23],[0,-12],[0,-36],[-1,-9],[-3,-8],[-8,-5],[-4,-11],[0,-5],[0,-6],[1,-11],[1,-9],[-1,-6],[-2,-5],[-1,-7],[1,-10],[4,-23],[1,-12],[0,-10],[-3,-37],[0,-14],[2,-10],[3,-9],[1,-13],[0,-5],[-2,-15],[0,-6],[3,-12],[1,-6],[0,-12],[-2,-35]],[[58216,49647],[-11,-8],[-11,-17],[-10,-21],[-5,-18],[-1,-3],[-1,-1],[-1,-1],[0,-1],[-21,-2],[-5,-3],[-3,-9],[-8,-34],[-2,-7],[-14,-24],[-3,-11],[-6,-23],[-7,-25],[-11,-35],[-5,-26],[-1,-21],[0,-22],[8,-93],[0,-21],[-1,-25],[-5,-28],[-7,-23],[-9,-16],[-12,-7],[-8,1],[-3,-2],[-3,-6],[0,-5],[-1,-6],[-2,-9],[-3,-11],[-4,-9],[-5,-6],[-6,-3],[-7,-6],[-4,-7],[-2,-15],[0,-13],[1,-12],[3,-11],[1,-7],[-5,-9],[-1,-8],[1,-7],[3,-4],[3,-3],[3,-6],[2,-14],[-2,-45],[2,-5],[10,-14],[4,-4],[8,-1],[6,-6],[4,-11]],[[58059,48858],[4,-14],[-6,-1],[-3,-7],[-2,-10],[-1,-13],[3,-10],[5,-3],[5,-1],[5,-4],[1,-5],[2,-15],[5,-13],[1,-6],[0,-10],[2,-9],[4,-5],[5,-4],[4,-6],[2,-9],[1,-12],[3,-11],[5,-4],[5,-2],[5,-4],[4,-6],[2,-9],[2,-34],[0,-4],[-1,-6],[-4,-5],[-2,-10],[-1,-12],[1,-39],[2,-12],[5,-8],[-1,-2],[-7,-13],[-1,-8],[-1,-17],[6,-151],[-1,-46],[-2,-25],[-3,-43],[3,-70],[2,-16],[5,-12],[10,-25],[17,-61],[8,-57],[2,-11],[8,-144]],[[58542,45617],[-48,-15],[-71,-23],[-56,-19],[-74,-23],[-74,-24],[-4,-2],[-58,-19],[-44,-14],[-48,-15],[-34,-11],[-7,-6],[1,-11],[12,-53],[-1,-53],[-11,-51],[-35,-99],[-46,-96],[-26,-41],[-25,-25],[-12,-16],[-6,-22],[5,-22],[11,-10],[14,-6],[10,-10],[6,-15],[0,-12],[0,-10],[-1,-9],[2,-9],[3,-7],[7,-10],[2,-6],[1,-7],[0,-8],[0,-10],[2,-8],[3,-2],[9,0],[-2,-5],[-6,-4],[-2,-3],[1,-6],[6,-12],[1,-8],[0,-6],[3,-12],[0,-7],[1,-27],[2,-12],[3,-12],[3,-4],[3,-1],[1,-4],[1,-9],[7,-15],[0,-3],[-5,-4],[-3,-11],[-3,-25],[-8,-39],[-2,-12],[3,-43],[-1,-47],[-3,-24],[-4,-18],[-7,-17],[-2,-11],[9,-17],[1,-2],[0,-7],[1,-3],[1,-1],[2,-3],[2,-12],[-1,-9],[-1,-9],[-1,-13],[1,-15],[2,-10],[2,-10],[2,-11],[1,-7],[-1,-8],[-1,-6],[-1,-6],[-2,-5],[3,-9],[-1,-6],[0,-8],[3,-11],[7,-16],[0,-7],[-1,-12],[-1,-7],[2,-6],[6,-11],[2,-3],[-2,-12],[-3,-11],[-5,-10],[-4,-6],[-1,-1],[-4,1],[-1,-2],[-2,-3],[-4,-15],[-2,-12],[-2,-6],[-5,-11],[-3,-12],[-3,-14],[-1,-14],[0,-26],[-1,-7],[-3,-12],[0,-6],[-1,-6],[-5,-11],[-2,-5],[0,-6],[0,-13],[0,-6],[-1,-6],[-3,-14],[-4,-12],[-1,-6],[3,-31],[1,-8],[-1,-5],[-3,-8],[0,-3],[-1,-6],[1,-20],[-5,-23],[-3,-6],[-3,-9],[-1,-13],[2,-22],[-1,-2],[-6,-10],[-1,-2],[-15,-44],[0,-11],[0,-32],[1,-9],[2,-4],[3,-18],[2,-6],[4,-9],[2,-5],[5,-35],[-1,-6],[-1,-3],[2,-5],[4,-8],[1,-6],[3,-41],[2,-8],[5,-2],[3,-7],[2,-28],[3,-10],[4,5],[3,-1],[2,-3],[3,-5],[1,-3],[3,-11],[1,-6],[7,8],[4,-6],[4,-22],[4,-6],[14,-15],[6,-4],[9,3],[3,-4],[1,-17],[1,-9],[4,-6],[10,-11],[3,-7],[4,-9],[3,-12],[1,-11],[3,-7],[16,-19],[8,-19],[22,-87],[1,-6],[0,-8],[2,-1],[2,0],[3,-3],[4,-1],[4,5],[5,2],[3,-12],[5,6],[5,6],[7,3],[23,1],[3,-3],[5,-11],[3,-6],[3,-3],[3,-1],[11,0],[2,-1],[12,-14],[7,-5],[2,-1],[4,1],[2,0],[1,-2],[1,-2],[1,-3],[2,-1],[6,1],[4,5],[3,9],[1,11],[-2,11],[-3,3],[-4,0],[-5,4],[-8,22],[-1,5],[0,5],[1,5],[2,14],[3,23],[2,7],[4,7],[12,9],[6,7],[4,8],[2,2],[4,0],[4,-3],[5,-10],[2,-4],[5,2],[15,14],[9,14],[6,5],[12,2],[0,-1],[0,-2],[0,-63],[0,-69],[0,-99],[0,-88],[0,-104],[0,-89],[0,-83],[0,-89],[0,-65],[-5,-19],[-4,-2],[-18,1],[-11,6],[-6,5],[-4,5],[-3,5],[-1,6],[-2,7],[-1,7],[0,8],[2,3],[3,1],[2,2],[0,6],[0,12],[0,5],[2,4],[5,3],[2,3],[1,4],[1,6],[1,6],[-1,6],[-2,7],[-3,0],[-2,-2],[-3,1],[-6,7],[-4,8],[-5,6],[-7,1],[-6,-6],[-16,-32],[-6,-7],[-39,-32],[-17,-22],[-6,-5],[-4,-5],[-5,-13],[-3,-4],[-4,2],[-3,7],[-1,9],[-3,7],[-6,6],[-7,0],[-7,-2],[-2,0],[-5,0],[-5,-4],[-5,-3],[-5,2],[-3,10],[-9,17],[-4,25],[-9,87],[-3,9],[-3,2],[-5,0],[-3,4],[-2,20],[-1,2],[-2,0],[-1,1],[-1,3],[-1,3],[1,6],[-1,3],[1,3],[1,6],[0,3],[-1,3],[-4,3],[-1,2],[-2,21],[-2,7],[-5,9],[-19,51],[-11,24],[-13,6],[-4,-5],[-4,-17],[-3,-7],[-4,-4],[-4,0],[-3,6],[-1,30],[-4,14],[-6,13],[-6,16],[-2,15],[3,8],[4,7],[3,10],[1,15],[-3,11],[-10,21],[-3,13],[-6,30],[-3,12],[-23,42],[-5,6],[-5,3],[-6,1],[-5,-2],[-8,0],[-5,7],[-4,9],[-5,5],[-7,-4],[-4,-8],[-4,-4],[-7,11],[-1,5],[-1,6],[-1,5],[-2,4],[-21,4],[-4,-1],[-5,-2],[-6,4],[-2,13],[-1,15],[-4,10],[-16,20],[-6,5],[-7,1],[-3,-4],[-3,-9],[-6,-9],[-8,-4],[-13,-1],[-13,2],[-7,5],[-12,28],[-2,2],[-15,26],[-4,12],[-14,81],[-1,24],[-13,47],[-52,67],[-6,52],[0,20],[-1,29],[-3,27],[-5,14],[-1,-1],[-8,-6],[-12,-2],[-11,-7],[-2,-1],[-7,2],[-2,0],[-4,-9],[0,-11],[4,-25],[-1,-16],[-2,-9],[-5,-8],[-4,-13],[-3,-24],[-1,-48],[-5,-23],[-10,-20],[-11,-13],[-11,-5],[-13,3],[-7,0],[-5,-8],[-3,-10],[-4,-9],[-6,-2],[-5,4],[-4,8],[-6,7],[-10,4],[-23,4],[-9,6],[-6,9],[-4,8],[-5,8],[-6,4],[-11,0],[-10,-4],[-3,-2],[-5,-8],[-4,-3],[-3,0],[-6,6],[-10,-1],[-5,5],[-6,8],[-6,5],[-48,-2],[-4,2],[-4,4],[-4,19],[-4,6],[-6,5],[-15,25],[-1,3],[-2,2],[-3,1],[-2,-1],[-5,-5],[-3,-1],[-16,0],[-6,2],[-10,13],[-9,17],[-9,13],[-13,1],[-2,-4],[-1,-6],[-1,-6],[-3,-2],[-4,-1],[-2,-3],[-1,-4],[-3,-3],[-5,-1],[-5,4],[-1,8],[2,15],[0,3],[0,4],[0,3],[-5,9],[-16,16],[-3,5],[-1,5],[-2,3],[-3,2],[-4,0],[-2,1],[-2,2],[-3,5],[-2,10],[-8,48],[0,11],[0,6],[1,5],[3,10],[1,5],[-2,11],[-7,23],[-2,12],[0,14],[2,7],[4,5],[2,11],[-1,5],[-4,5],[-1,5],[3,6],[6,4],[2,4],[0,6],[0,12],[0,15],[-1,14],[-3,6],[-9,-3],[-26,-28],[-17,-7],[-39,-8],[-11,2],[-12,-7],[-20,-22],[-11,-5],[-21,0],[-11,-9],[-3,-6],[-5,-14],[-2,-6],[-3,-3],[-7,-3],[-2,-2],[-3,-5],[-1,-5],[-1,-5],[-1,-7],[-2,-5],[-3,-1],[-3,1],[-3,-1],[-12,-9],[-5,-2],[-7,1],[-5,5],[-10,19],[-6,7],[-5,2],[-12,0],[-4,5],[-3,11],[4,6],[12,7],[3,8],[9,29],[2,10],[1,12],[1,12],[-1,13],[-1,10],[-2,5],[-5,9],[-1,7],[0,8],[2,6],[2,5],[1,7],[-3,12],[-7,13],[-8,11],[-6,6],[-5,1],[-11,0],[-5,2],[-11,6],[-4,0],[-6,-4],[-5,-1],[-2,7],[0,20],[0,7],[-2,11],[-1,7],[0,5],[2,11],[0,5],[-6,13],[-12,9],[-13,5],[-10,1]],[[56657,44031],[-5,-6],[-2,-11],[-2,-14],[-2,-12],[-3,-5],[-5,-8],[-3,-5],[-2,-6],[-2,-13],[-2,-5],[-9,-8],[-11,5],[-12,7],[-10,3],[-11,-2],[-9,2],[-24,13],[-17,10],[-11,2],[-11,-1],[-12,-7],[-19,-22],[-30,-35],[-23,-8],[-28,-10],[-12,0],[-11,3],[-5,5],[-11,15],[-5,6],[-7,0],[-6,-6],[-6,-9],[-6,-7],[-10,-4],[-11,2],[-11,7],[-10,8],[-21,18],[-10,-3],[-9,-47],[-8,-15],[-28,-19],[-4,-6],[-12,-28],[-5,-7],[-7,0],[4,24],[1,25],[-4,52],[-2,11],[-4,18],[-1,10],[-1,3],[-4,6],[-1,3],[0,22],[-6,42],[-2,9],[0,10],[4,13],[7,12],[5,7],[11,11],[7,4],[6,2],[2,5],[1,11],[-1,23],[1,2],[1,3],[-4,15],[-1,21],[0,13],[1,11],[-1,25],[-3,13],[-4,8],[-2,8],[-1,12],[2,13],[6,21],[2,9],[0,6],[1,12],[1,6],[-1,7],[-4,11],[-3,17],[-6,25],[-5,28],[-7,26],[-5,27],[2,19],[-2,8],[-2,25],[-6,32],[-2,21],[-2,13],[-4,9],[-11,15],[-4,8],[-3,4],[-2,-5],[-2,-1],[-3,3],[-16,40],[-3,16],[-1,19],[-1,-2],[-5,-3],[-2,-2],[-3,23],[-18,39],[-7,23],[-3,25],[-3,51],[-3,25],[-2,6],[-5,12],[-1,6],[0,8],[3,12],[2,20],[8,37],[3,25],[0,24],[-3,60],[4,68],[-1,31],[3,47],[2,14],[3,20],[2,4],[2,37],[4,44],[3,18],[5,19],[-2,0],[-1,1],[-1,1],[-2,1],[7,46],[1,26],[-2,25],[-7,23],[-3,15],[1,7],[2,3],[2,2],[-2,11],[-8,17],[-3,11],[-3,28],[0,25],[-1,10],[-2,8],[-7,17],[-3,11],[-2,12],[0,14],[-2,7],[-9,10],[-3,5],[-1,11],[-1,40],[1,6],[4,11],[1,7],[0,7],[-2,15],[2,26],[1,10],[3,19],[3,13],[3,22],[3,20],[2,12],[2,7],[0,11],[1,4],[4,9],[1,4],[0,22],[-1,6],[-1,4],[0,3],[0,8],[1,6],[2,12],[1,8],[-1,3],[-2,6],[-1,3],[0,3],[2,6],[0,3],[-1,8],[-1,4],[-2,4],[-2,7],[1,3],[1,4],[1,5],[-2,6],[-1,3],[-7,29],[-1,4],[-2,3],[-2,1],[-1,3],[0,2],[-6,1],[-9,0],[-20,-1],[-21,0],[-20,0],[-20,0],[-20,0],[-20,0],[-21,0],[-20,0],[-20,0],[-20,-1],[-20,0],[-21,0],[-20,0],[-20,0],[-20,0],[-20,0],[-13,0],[-1,29],[0,28],[2,27],[6,33],[4,24],[7,42],[7,36],[-16,0],[-24,0],[-23,0],[-15,-1],[-3,-1],[-3,-3],[-2,-9],[-1,-9],[-1,-19],[0,-9],[-14,0],[-11,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-8,0],[-3,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-11,0],[-15,0],[5,-23],[1,-7],[-2,-9],[-7,-21],[-4,-11],[-2,-19],[-3,-96],[0,-19],[3,-20],[7,-39],[0,-19],[-8,-13],[-1,-1],[-4,-10],[-2,-24],[-4,-9],[-6,-2],[-19,3],[-1,-15],[3,-16],[3,-16],[2,-15],[0,-15],[-1,-15],[-5,-37],[-3,-17],[-4,-27],[-1,-19],[1,-15],[6,-46],[-8,0],[-35,0],[-35,0],[-36,0],[-35,0],[-13,0],[-4,14],[-2,7],[-1,17],[-2,3],[-20,0],[-22,0],[-20,0],[-3,-5],[-1,-11],[1,-23],[-5,0],[-2,1],[-17,-1],[-4,-1],[-6,-7],[-5,-3],[-3,1],[-11,8],[-13,1],[-21,2],[-4,-2],[-12,-11],[-4,-2],[-5,-7],[-3,-13],[0,-17],[2,-15],[-25,-1],[-8,4],[-14,25],[-8,8],[-9,3],[-5,-2],[-17,-20],[-3,-1],[-10,7],[-8,1],[-24,-17],[-8,0],[-15,8],[-2,5],[-3,9],[4,17],[-1,10],[-3,4],[-6,7],[-2,6],[-2,5],[-2,19],[-2,-3],[-1,-3],[-1,-2],[-1,4],[-1,2],[0,1],[2,5],[-6,6],[-3,4],[-1,4],[2,8],[2,5],[1,6],[-3,7],[-4,-2],[-1,4],[0,8],[-1,6],[-2,2],[-4,0],[-2,1],[3,6],[0,4],[-5,0],[-2,5],[0,7],[0,6],[-3,3],[-6,2],[-1,3],[-2,5],[-5,10],[-1,7],[1,6],[2,5],[0,6],[-5,4],[1,2],[0,1],[0,1],[-1,4],[-4,-4],[-1,9],[1,14],[-2,10],[1,11],[-5,9],[-14,14],[-4,13],[-5,28],[-3,14],[-3,5],[-2,3],[-2,4],[-1,6],[2,7],[3,3],[3,3],[2,3],[-1,5],[-3,2],[-6,4],[-2,2],[-2,3],[-1,-1],[-3,-9],[-3,6],[-2,8],[0,14],[0,7],[-1,9],[-3,5],[-8,8],[-9,14],[-7,5],[-2,7],[0,9],[0,9],[-5,14],[-3,7],[-3,4],[-1,5],[0,32],[-6,38],[1,15],[9,-5],[0,13],[2,10],[1,9],[-2,11],[-2,4],[-1,5],[-1,4],[-4,1],[-2,3],[0,5],[1,6],[0,2],[-2,34],[-3,15],[-7,10],[-3,1],[-7,2],[-3,2],[-3,6],[-1,8],[0,9],[-1,8],[-16,46],[-2,10],[-1,10],[-1,22],[-1,10],[-4,20],[-1,10],[1,10],[3,13],[0,5],[-2,7],[-3,6],[-2,5],[0,7],[2,8],[-6,1],[0,6],[3,8],[1,8],[0,7],[-2,1],[-2,-1],[-2,3],[-1,5],[-1,2],[1,23],[1,6],[2,2],[3,0],[1,3],[1,6],[-1,5],[-1,6],[0,5],[-1,43],[1,10],[2,8],[1,7],[-3,9],[-5,12],[-1,8],[-3,4],[-3,2],[-4,4],[-4,14],[-4,5],[-5,1],[6,15],[-2,6],[-2,-1],[-3,-3],[-1,0],[-1,6],[-1,38],[-1,5],[-1,6],[-3,8],[0,4],[4,9],[1,5],[-10,11],[-3,2],[-10,9],[-5,3],[-5,0],[-5,-2],[-9,-5],[-5,-1],[-4,1],[-6,7],[-5,7],[-4,6],[-7,3],[-17,0],[-25,-1],[-18,-1],[-7,0],[-26,-1],[-25,-1],[-25,-1],[-26,-1],[-25,0],[-25,-1],[-26,-1],[-25,-1],[-25,-1],[-26,-1],[-25,-1],[-26,-1],[-25,-1],[-25,0],[-11,-1],[-15,0],[-35,-14],[-9,2],[-18,9],[-12,-4],[-26,1],[-28,1],[-6,1],[-16,13],[-7,1],[-33,-5],[-4,3],[-7,8],[-10,7],[-38,-6],[-46,-8],[-22,5],[-3,-1],[-5,-5],[-3,0],[-8,5],[-23,1],[-9,0],[-2,-2],[-5,-13],[-3,-5],[-9,10],[-12,6],[-23,4]],[[53662,47001],[0,1],[-4,3],[-4,-1],[-9,-6],[-4,0],[-5,1],[-7,-1],[-8,3],[-13,13],[-4,1],[-10,9],[-4,2],[-8,0],[-11,-3],[-10,-6],[-7,-9],[-2,-2],[-6,-10],[-4,-10],[-3,-11],[-7,-18],[2,-28],[-15,-13],[-18,2],[-14,-17],[-22,-11],[-7,-4],[-4,0],[-1,10],[1,5],[6,7],[0,14],[0,5],[-3,3],[-5,1],[-4,-2],[-1,-4],[-2,-3],[-2,-9],[-3,13],[-2,10],[-1,5],[-1,3],[-4,3],[-1,2],[-5,16],[-19,40],[-5,13],[-11,38]],[[53391,47056],[14,16],[23,7],[26,0],[20,-1],[1,55],[1,39],[1,74],[1,70],[1,51],[1,45],[-2,20],[-3,5],[-17,13],[-2,3],[-1,6],[0,6],[0,5],[1,6],[2,1],[2,0],[2,0],[24,17],[10,14],[5,23],[0,12],[3,4],[11,2],[6,4],[2,7],[1,10],[2,12],[5,8],[12,15],[3,7],[0,14],[2,13],[3,13],[5,11],[8,10],[55,27],[10,8],[2,17]],[[53584,46994],[8,-3],[6,1],[5,2],[6,0],[-7,-11],[-8,-6],[-16,-6],[-4,-6],[-8,-6],[-9,-15],[-7,-4],[-6,1],[-4,11],[5,12],[9,13],[9,15],[7,2],[14,0]],[[58823,81324],[17,2],[9,-2],[7,-8],[1,-10],[0,-11],[1,-9],[5,-4],[5,1],[15,10],[10,1],[17,-6],[5,1],[38,24],[12,13],[9,22],[3,36],[2,11],[3,3],[4,3],[3,4],[1,6],[-1,5],[-5,13],[-1,6],[4,20],[11,3],[24,-11],[13,5],[55,-38],[8,0],[17,6],[8,0],[4,-3],[9,-9],[5,0],[5,3],[28,34],[5,3],[3,0],[4,-3],[2,1],[2,3],[4,8],[2,2],[6,3],[3,4],[7,12],[5,4],[4,1],[27,-7],[18,1],[5,-2],[6,-6],[1,-1],[5,-3],[5,1],[4,3],[3,5],[5,3],[5,-10],[-2,-23],[5,-9],[6,1],[19,25],[24,15],[13,3],[12,-1],[7,-3],[4,-6],[2,-8],[4,-10],[6,-7],[11,-10],[5,-9],[7,-21],[4,-6],[18,-16],[5,-7],[4,-9],[3,-7],[2,-6],[0,-6],[0,-6],[-4,-14],[0,-3],[1,-10],[0,-19],[2,-12],[3,-10],[6,-13],[1,-10],[-2,-9],[0,-5],[13,0],[6,-5],[10,-18],[2,-2],[4,-4],[1,-2],[1,-3],[1,-8],[0,-1],[3,-2],[5,3],[4,0],[5,-4],[9,-14],[5,-5],[7,-9],[4,-5],[7,-24],[1,-24],[-11,-17],[-5,-2],[-16,1],[-48,-15],[-10,-9],[-3,-14],[3,-5],[10,-4],[4,-4],[1,-4],[1,-12],[1,-6],[2,-4],[12,-18],[4,-8],[2,-11],[1,-12],[-1,-7],[-2,-10],[-1,-6],[0,-6],[1,-5],[1,-5],[-1,-6],[-2,-4],[-6,-2],[-2,-3],[1,-5],[3,-5],[6,-7],[4,-4],[5,-2],[4,-1],[5,0],[5,4],[3,-20],[-7,-20],[-11,-16],[-16,-15],[19,-11],[7,-2],[5,3],[10,11],[10,4],[10,-2],[20,-10],[9,-4],[18,4],[9,-2],[4,-5],[1,-8],[2,-10],[2,-8],[4,-6],[5,-2],[21,-2],[19,6],[23,13],[13,11],[4,0],[5,-3],[5,-5],[6,2],[5,3],[6,1],[5,-2],[4,-6],[2,-9],[7,-54],[6,-20],[8,-10],[9,-1],[19,6],[9,-1],[6,-3],[5,-4],[2,-6],[-2,-10],[-4,-5],[-15,-5],[1,-6],[0,-12],[0,-4],[1,-6],[2,-4],[7,-2],[3,-3],[4,-8],[0,-7],[-1,-7],[0,-10],[2,-7],[6,-11],[3,-7],[0,-8],[-1,-7],[1,-6],[4,-6],[7,-5],[3,-4],[2,-6],[3,-17],[-1,-14],[0,-13],[7,-12],[-22,-13],[-4,-7],[1,-7],[13,-72],[6,-15],[9,-5],[6,-2],[6,-2],[5,-6],[4,-10],[2,-14],[0,-11],[2,-9],[6,-9],[5,-5],[6,-4],[6,-3],[6,0],[5,2],[1,1],[4,6],[3,8],[5,7],[2,2],[5,0],[3,2],[3,4],[5,10],[4,5],[5,2],[26,4],[49,-5],[7,-6],[3,-11],[7,-5],[28,-61],[7,-4],[6,0],[7,4],[6,6],[5,7],[2,2],[4,0],[2,-1],[6,-5],[6,-2],[8,-7],[9,-3],[2,-1],[4,-4],[1,-2],[-1,-2],[0,-13],[-1,-6],[1,-5],[4,-5],[6,-3],[7,-2],[6,2],[5,4],[2,5],[5,13],[2,5],[4,5],[46,37],[18,9],[19,2],[20,-4],[40,16],[8,9],[16,22],[9,5],[28,5],[5,-4],[4,-15],[4,-20],[5,-15],[24,-17],[9,-12],[0,-25],[-3,-14],[0,-7],[0,-6],[2,-4],[10,-14],[26,-56],[10,-10],[22,-13],[11,-10],[10,-12],[8,-15],[9,-21],[0,-1],[5,-11],[0,-9],[1,-4],[6,6],[12,10],[4,2],[3,-1],[5,-5],[3,0],[13,12],[2,26],[-2,27],[2,18],[5,2],[17,-3],[8,2],[5,-1],[4,-6],[9,-34],[3,-7],[5,-3],[13,-2],[5,-3],[6,-6],[10,-5],[20,5],[14,-4],[3,2],[2,2],[7,3]],[[60739,80058],[1,2],[-1,-2]],[[60739,80058],[3,-11],[1,-10],[1,-5],[2,-3],[17,-16],[29,-12],[9,-12],[7,-15],[7,-10],[27,2],[4,2],[6,6],[8,19],[5,7],[11,6],[7,-9],[16,-56],[6,-12],[8,-7],[11,-4],[11,4],[11,7],[10,3],[10,-9],[5,-4],[17,-2],[3,-6],[3,-14],[5,-25],[7,-21],[8,-8],[10,-3],[11,-8],[15,-19],[5,-4],[8,0],[8,2],[9,5],[7,6],[16,23],[7,3],[5,0],[28,-10],[0,-1],[4,-5],[-1,-13],[-5,-8],[-10,-9],[-5,-6],[-6,-19],[2,-19],[6,-18],[11,-24],[13,-21],[3,-9],[-1,-11],[-4,-20],[0,-21],[-2,-6],[-7,-5],[-5,-6],[-9,-21],[-6,-8],[-16,-16],[-8,-10],[-6,-14],[-1,-9],[-1,-16],[-1,-7],[-3,-3],[-5,0],[-8,2],[-8,0],[-23,-11],[-14,1],[-5,-5],[-2,-30],[4,-7],[5,-5],[5,-7],[4,-11],[2,-8],[3,-6],[7,-4],[22,-7],[10,2],[3,-1],[3,-3],[5,-10],[4,-2],[6,4],[5,10],[5,7],[7,-2],[5,-9],[0,-12],[-4,-11],[-5,-10],[-12,-14],[-12,-2],[-30,17],[-7,0],[-6,-5],[-5,-9],[-3,-6],[-1,-7],[-3,-5],[-7,-4],[-2,-5],[-17,-80],[-3,-14],[11,0],[5,4],[33,-6],[8,-6],[5,-11],[2,-15],[1,-4],[0,-4],[1,-2],[0,-2],[-1,-5],[-3,-1],[-2,0],[-1,0],[0,-10],[3,-4],[3,-4],[9,-27],[3,-15],[2,-8],[2,-5],[-6,-9],[-5,-9],[-19,-23],[20,-17],[5,1],[15,8],[6,-2],[4,-10],[-1,-12],[-4,-11],[-4,-8],[-14,-14],[-5,-9],[-14,-37],[-3,-12],[-1,-14],[4,-18],[0,-5],[-1,-1],[-2,0],[-15,-4],[-3,-3],[-2,-5],[0,-3],[3,-4],[2,-6],[4,-13],[1,-6],[-1,-9],[-1,-5],[-3,-9],[0,-5],[0,-4],[1,-8],[0,-4],[-2,-17],[-4,-15],[-7,-10],[-10,-3],[-27,11],[-9,1],[-17,-5],[-8,2],[-6,3],[-12,-5],[-6,0],[-6,3],[-9,9],[-5,2],[-41,-6],[-11,-4],[-6,-1],[-5,3],[-15,14],[-1,0],[-44,3],[-13,-8],[-10,-17],[-7,-23],[-5,-27],[-2,-25],[-3,-9],[-6,-1],[-10,6],[-4,-2],[-5,-5],[-11,-17],[-5,-7],[-7,-4],[-58,-12],[-9,-9],[-8,-17],[-5,-21],[-4,-20],[1,-43],[-1,-16],[-7,-19],[-9,-16],[-3,-11],[-1,-9],[4,-6],[5,-1],[11,2],[5,0],[4,-3],[3,-7],[-1,-12],[-4,-8],[-6,-6],[-6,-5],[-5,-5],[-6,-13],[-1,-18],[1,-19],[4,-16]],[[60615,78365],[-6,-8],[-15,-31],[-9,-7],[6,19],[0,10],[-7,4],[-9,11],[-2,-1],[-1,-2],[-7,-6],[-3,-2],[-10,6],[-8,3],[-3,-3],[-25,6],[-30,-16],[-12,0],[-36,9],[-9,-5],[-18,-27],[-29,-60],[-7,-21],[-5,-10],[-6,-4],[1,15],[-6,12],[-9,7],[-10,2],[-5,-2],[-13,-14],[-32,-19],[-5,-1],[-3,-2],[-9,-12],[-3,-2],[-10,-5],[-14,-21],[-9,-2],[2,-14],[-4,-14],[-5,-13],[-3,-14],[-2,-16],[-5,-16],[-7,-10],[-7,3],[0,4],[2,0],[6,-3],[5,16],[3,21],[0,11],[-2,2],[-10,18],[-4,3],[-9,5],[-4,4],[-5,-4],[-5,1],[-8,3],[-4,-2],[-3,-4],[-3,-4],[-2,-2],[-18,0],[-12,-10],[-13,-4],[-9,-7],[-9,-9],[-18,-29],[-6,-14],[-1,-17],[-2,0],[0,9],[-1,2],[-3,-2],[-3,-2],[0,-4],[0,-1],[-2,6],[1,2],[0,4],[0,3],[-3,3],[-1,1],[-2,7],[-1,3],[-2,2],[-6,4],[-5,-1],[-10,-3],[-20,4],[-38,-10],[-7,0],[-21,-17],[-15,-13],[-8,-10],[-23,-39],[-9,-12],[-33,-25],[-5,-5],[-4,-7],[-9,-18],[-4,-6],[-10,-10],[-4,-6],[-26,-65],[-2,-2],[-4,-8],[-15,-43],[-7,-14],[-6,-11],[-12,-5],[-7,-9],[-9,-3],[-7,-7],[-10,-8],[-5,3],[1,5],[8,15],[10,9],[-1,3],[-1,6],[29,13],[14,11],[8,23],[7,11],[2,10],[9,21],[10,16],[4,9],[1,15],[-5,-7],[-5,-7],[-5,0],[-7,8],[-3,14],[2,15],[6,23],[-2,2],[-5,0],[-3,1],[-2,2],[-3,5],[-5,5],[-3,8],[-3,10],[-1,11],[-6,-11],[2,-12],[5,-11],[3,-9],[1,-7],[1,-5],[1,-5],[-1,-9],[-2,-6],[-10,-15],[-16,-37],[-1,-2],[-9,-14],[-12,-11],[-26,-10],[-3,0],[-3,2],[-2,3],[0,5],[-1,2],[-3,-2],[-2,-6],[0,-6],[-1,-6],[-12,-8],[-1,-3],[-5,-10],[-2,-6],[0,-6],[1,-5],[1,-9],[2,-38],[1,-9],[3,-9],[10,-72],[2,-8],[4,-7],[2,-7],[15,-59],[12,-36]],[[59722,77551],[-7,-7],[-7,3],[-9,15],[-13,15],[-17,7],[-6,11],[-1,15],[0,24],[0,18],[-6,19],[-8,13],[-13,12],[-13,4],[-11,-1],[-9,-1],[-11,2],[-3,-7],[-4,-11],[-11,3],[-9,10],[-6,9],[-5,13],[-4,12],[-5,16],[-7,8],[-9,0],[-8,8],[-11,8],[-9,2],[-11,-6],[-16,3],[-10,6],[-12,6],[-10,9],[-13,14],[-14,13],[-13,11],[-12,5],[-13,-6],[-11,1],[-13,14],[-2,-5],[3,-22],[-3,-15],[-9,-13]],[[59341,77786],[-5,12],[-4,6],[-7,-4],[-6,-8],[-5,-8],[0,-9],[7,-7],[0,-5],[-7,-1],[-7,-3],[-3,-7],[5,-13],[-2,0],[-6,4],[-17,0],[-3,3],[-8,17],[-8,10],[-7,2],[-6,-12],[-1,3],[-1,1],[-2,0],[-1,1],[4,6],[3,8],[0,7],[-6,3],[-22,-5],[2,8],[1,8],[2,41],[-6,-10],[-5,-17],[-5,-15],[-9,-6],[-2,-1],[-4,-3],[-3,0],[-2,1],[-6,7],[-16,12],[2,-17],[-4,-8],[-29,-7],[-4,0],[-2,1],[-3,2],[-1,0],[-7,0],[-2,0],[-15,8],[-7,1],[-4,-2],[-10,-7],[-35,-10],[-3,-1],[-3,-3],[-5,-8],[-2,-2],[-11,-2],[-56,24],[-6,6],[-3,0],[-2,0],[0,3],[-1,7],[-1,3],[-1,4],[-1,9],[-1,3],[5,7],[1,4],[1,6],[-8,-6],[-7,-1],[-8,2],[-12,7],[-4,1],[-4,3],[-10,20],[-8,10],[-9,-5],[-13,11],[-23,26],[-1,-7],[1,-8],[1,-6],[-2,-3],[-18,1],[-5,2],[-4,5],[-4,6],[-1,9],[3,8],[6,6],[4,4],[6,1],[15,-5],[21,5],[3,3],[15,20],[3,1],[4,0],[1,2],[-2,7],[-13,25],[-4,3],[-10,-1],[-13,3],[-38,23],[-7,3],[-6,0],[-4,-3],[-4,-7],[-2,-3],[-1,-5],[0,-5],[0,-19],[-6,25],[-2,4],[-4,2],[-33,49],[-4,14],[9,-11],[7,-12],[4,-3],[49,6],[9,-4],[16,-15],[1,0],[3,-2],[24,0],[24,-8],[16,4],[5,0],[31,-10],[15,-15],[12,-3],[12,1],[10,7],[8,12],[-5,11],[7,15],[20,24],[5,6],[13,2],[5,4],[4,7],[4,5],[4,5],[4,10],[-7,-4],[-8,-8],[-7,-6],[-7,2],[-37,-32],[-20,-4],[-19,16],[-4,10],[-2,1],[-3,-2],[-5,-8],[-2,-1],[-3,-1],[-6,-3],[-2,-1],[-7,-12],[-4,6],[-4,22],[-5,5],[-17,5],[-4,3],[-4,6],[-5,11],[-3,12],[-2,10],[-1,11],[-2,8],[-4,9],[-2,10],[-1,25],[5,18],[7,17],[6,21],[1,12],[0,9],[-3,5],[-14,4],[-3,5],[1,8],[9,18],[2,6],[-2,4],[-7,2],[-12,-3],[-6,1],[-4,6],[8,25],[1,15],[-4,15],[-4,5],[-4,2],[-3,2],[-2,9],[-1,11],[0,7],[-1,4],[-4,6],[-16,12],[-3,7],[2,12],[-1,4],[-2,2],[-2,-2],[-3,-11],[-1,-3],[1,-7],[5,-6],[5,-6],[12,-4],[3,-7],[0,-35],[1,-3],[7,-2],[2,-3],[1,-3],[2,-1],[3,-5],[-2,-10],[-4,-9],[-2,-4],[-2,-27],[9,-6],[12,3],[10,-3],[-9,-13],[-3,-10],[-2,-10],[3,-10],[5,-2],[6,3],[5,5],[2,-12],[-3,-18],[-5,-15],[-6,-7],[-7,-3],[-6,-9],[-3,-13],[0,-16],[10,-20],[1,-4],[-2,-26],[1,-11],[2,-4],[0,-4],[-3,-8],[-2,-3],[-6,-7],[-3,-2],[-12,-3],[-12,2],[-27,15],[-17,-2],[-5,-4],[-2,-8],[-3,-7],[-6,-1],[-2,2],[-4,5],[-3,1],[-5,-1],[-4,1],[-2,2],[-1,8],[3,10],[15,38],[4,13],[0,6],[3,4],[13,28],[-3,8],[-2,-4],[-2,-8],[-2,-7],[-2,-3],[-6,-3],[-2,-3],[-2,-3],[-5,-12],[0,-2],[-1,-2],[-3,-1],[-4,3],[-4,5],[-4,15],[-3,7],[-4,3],[3,-15],[1,-4],[0,-9],[2,-3],[2,-2],[9,-10],[1,-5],[-2,-7],[-5,-12],[-1,-3],[-4,-5],[-9,-22],[-4,-5],[-5,-2],[-13,-10],[-4,-4],[-4,3],[-7,1],[-4,4],[-2,-5],[-5,6],[-20,7],[-7,0],[-14,-7],[-15,-3],[-12,-5],[-6,-1],[-2,-3],[-7,-8],[-2,0],[-3,3],[-4,-2],[-16,-17],[-4,-2],[-12,4],[-2,0],[-4,-4],[-8,-17],[-2,-5],[1,-8],[5,-15],[2,-12],[1,0],[2,-3],[1,-3],[-1,-2],[-1,-1],[-1,-3],[-1,-3],[-2,-18],[-1,-3],[-11,-22],[-5,-6],[-15,1],[-2,-3],[1,-4],[6,-6],[2,-5],[1,-6],[-2,-6],[-8,-24],[-19,-41],[-6,-17],[-4,-8],[-4,-3],[-3,-5],[-5,-24],[-3,-8],[-34,-49],[-31,-60],[-15,-24],[-19,-21],[1,8],[-2,33],[-2,1],[-2,-4],[-3,-5],[-1,-7],[-1,-16],[0,-4],[-1,-4],[0,-3],[-1,-2],[-2,-1],[-1,1],[-1,3],[-2,1],[-1,-3],[-2,-2],[-13,16],[-7,4],[-6,-5],[-2,-12],[-1,-14],[-1,-14],[-3,7],[-3,6],[0,4],[2,6],[-1,4],[-3,-2],[-2,-8],[0,-10],[1,-8],[2,-6],[3,-5],[-2,-16],[-1,6],[-3,4],[-6,6],[0,3],[0,2],[0,3],[-2,0],[-2,-1],[-1,-3],[0,-2],[-1,-2],[-7,0],[-7,-2],[-6,-6],[-2,-12],[2,-8],[4,-3],[7,-5],[4,-6],[2,-5],[-1,-2],[-5,-3],[-4,-5],[-5,-4],[-6,4],[-1,-3],[0,-2],[0,-2],[1,-4],[-4,-4],[-8,-4],[-3,-5],[0,16],[-3,16],[-5,12],[-6,5],[0,4],[-1,28],[1,10],[2,4],[1,4],[-3,7],[-1,3],[-1,1],[-1,1],[-6,7],[-1,3],[-1,5],[-2,0],[-1,-3],[-1,-5],[1,-4],[4,-8],[1,-2],[-1,-5],[-5,-11],[-2,-7],[0,-9],[1,-4],[1,-4],[2,-7],[-9,-11],[-2,-23],[0,-29],[-2,-27],[7,-5],[4,-2],[5,-1],[5,2],[4,4],[7,11],[-3,-7],[-9,-21],[-4,-5],[-3,-2],[-2,-6],[-1,-5],[-2,-3],[-4,-2],[0,-5],[5,-15],[2,-4],[3,-3],[3,1],[1,5],[0,7],[0,6],[5,2],[0,-14],[1,-2],[1,0],[2,2],[-1,2],[3,-1],[2,1],[2,-3],[1,-9],[2,9],[1,10],[2,4],[5,-7],[2,-10],[0,-11],[-2,-8],[-6,0],[4,-6],[2,-11],[1,-13],[1,-25],[0,-5],[-1,-6],[-3,-8],[0,-5],[-3,-14],[-1,-6],[0,-5],[1,-1],[-1,0],[-5,-8],[-5,-4],[-5,-2],[-4,1]],[[58238,77247],[1,4],[1,5],[0,4],[-2,4],[4,17],[-2,23],[-4,20],[-7,9],[-3,3],[-13,17],[-38,21],[-22,3],[-2,2],[-4,2],[-3,1],[-2,-2],[-2,-4],[-2,-3],[-2,-2],[-3,-2],[-6,0],[-4,2],[-5,-1],[-6,-5],[-4,-5],[-2,-4],[-1,-5],[-2,-1],[-6,-1],[-3,-2],[-4,-6],[-4,-3],[-12,-5],[-14,-18],[-4,-3],[-6,0],[-2,-1],[-2,-2],[-2,-5],[-1,-12],[-1,-4],[-6,-3],[-6,5],[-5,7],[-3,4],[-6,1],[-8,8],[-4,2],[-7,-2],[-1,-9],[1,-9],[-8,-6],[-1,-4],[1,-6],[1,-4],[2,-3],[8,-5],[-3,-6],[-4,-2],[-8,0],[-11,-2],[-37,12],[-23,18],[-24,10],[-10,8],[-5,2],[-6,7],[-5,14],[-9,32],[2,12],[-6,11],[-8,7],[-6,-1],[-1,0],[-3,7]],[[57833,77393],[0,4],[2,7],[3,7],[14,17],[20,-2],[21,-8],[18,-1],[6,4],[1,7],[-2,20],[0,1],[0,1],[1,5],[2,2],[7,6],[-3,8],[-2,8],[0,8],[-2,8],[-3,6],[-5,4],[-2,4],[2,7],[6,14],[3,5],[5,5],[8,4],[2,4],[-1,7],[-1,4],[4,12],[19,2],[7,7],[1,5],[0,6],[-1,6],[0,3],[2,3],[8,3],[6,4],[3,5],[2,8],[1,12],[-2,10],[-3,20],[0,10],[3,9],[5,5],[48,18],[7,5],[1,12],[-5,26],[-1,14],[2,10],[10,16],[6,16],[3,14],[-1,13],[-7,10],[-10,12],[0,1],[-4,9],[-1,8],[2,9],[2,10],[0,9],[-5,28],[-2,22],[1,17],[6,13],[21,20],[10,6],[5,3],[24,20],[6,0],[5,-8],[1,-13],[1,-50],[-1,-7],[-2,-6],[-2,-5],[-2,-6],[0,-6],[5,-6],[6,6],[10,16],[3,2],[2,-1],[2,1],[2,7],[0,6],[-2,12],[1,7],[5,12],[4,-2],[7,-20],[5,-11],[3,0],[12,27],[5,9],[6,4],[0,1],[7,-2],[1,-4],[1,-3],[-1,-5],[-1,-4],[-2,-4],[-1,-5],[1,-4],[2,-5],[4,-2],[8,-3],[4,-2],[4,-5],[4,-13],[4,-8],[4,-3],[5,-1],[5,2],[3,6],[2,10],[-1,14],[2,4],[8,0],[5,3],[3,9],[0,17],[4,-10],[15,-20],[5,-14],[2,-5],[0,-5],[0,-11],[0,-4],[6,-9],[5,1],[11,13],[5,4],[4,2],[33,-3],[12,3],[8,11],[6,18],[-3,3],[-5,2],[-4,-1],[-3,-4],[-5,8],[-12,15],[2,5],[-4,11],[-1,3],[-3,3],[-1,0],[-4,-3],[-1,-1],[-1,1],[-2,6],[0,1],[-13,8],[-3,7],[-1,13],[4,1],[7,2],[3,12],[-1,6],[-3,12],[-1,6],[0,8],[1,6],[1,5],[1,7],[3,37],[-1,11],[-1,4],[-3,9],[-1,4],[-1,5],[0,13],[0,4],[-3,3],[-3,-2],[-2,-3],[-3,1],[-1,3],[-2,11],[-2,4],[-8,9],[-8,2],[-8,-1],[-9,2],[-5,5],[-6,16],[-5,6],[-4,3],[-9,1],[-5,2],[-2,3],[-4,7],[-3,2],[-7,0],[-1,0],[-3,7],[0,7],[1,2],[1,8],[2,22],[3,6],[3,6],[2,8],[0,9],[-2,8],[-3,6],[-4,4],[-5,-1],[-3,-7],[-3,-7],[-3,-4],[-2,4],[-8,23],[-1,2],[0,2],[0,2],[1,1],[7,1],[6,3],[4,7],[2,15],[-3,31],[1,12],[7,6],[3,10],[0,14],[-3,13],[-3,11],[-5,6],[-5,2],[-6,1],[-5,-1],[-3,-9],[-2,-9],[-1,-8],[-5,-7],[-5,-2],[-4,0],[-4,3],[-4,5],[-3,7],[-1,2],[-1,9],[0,8],[-1,10],[-4,7],[-4,3],[-5,1],[-3,4],[-3,6],[-1,7],[-2,6],[-8,9],[-5,12],[-4,3],[-5,-3],[-3,-6],[-2,-4],[-6,6],[-2,6],[-4,18],[-1,2],[-2,6],[-3,24],[3,15],[7,14],[8,18],[2,22],[0,21],[2,19],[8,15],[3,7],[-1,7],[-3,5],[-10,5],[-3,3],[0,7],[3,10],[3,7],[5,8],[5,8],[1,8],[-3,3],[-11,5],[-4,4],[-2,9],[-3,20],[-2,10],[-3,7],[-4,5],[-3,2],[-5,0],[-9,-6],[-12,-23],[-10,-3],[-9,5],[-4,5],[-6,6],[-9,14],[-5,14],[-2,5],[-5,6],[-2,4],[0,3],[-1,16],[-4,15],[-1,4],[0,4],[-1,4],[-2,5],[-8,8],[-10,2],[-19,1],[-25,15],[-9,0],[-7,-4],[-5,-21],[0,-3],[-2,-10],[0,-10],[-1,-5],[-3,-1],[-5,6],[-4,5],[-7,23],[4,8],[1,9],[-3,8],[-4,4],[-7,-1],[-3,-7],[-3,-9],[-5,-7],[-6,-2],[-3,5],[0,8],[2,9],[4,7],[4,4],[3,5],[2,12],[-1,12],[-2,4],[-5,1],[-13,-2],[-5,-4],[-4,-6],[-6,-5],[-7,-2],[-4,2],[-3,7],[-1,12],[-2,9],[-5,-1],[-8,-10],[-5,-2],[-6,1],[-4,4],[6,23],[-2,11],[-5,7],[-5,4],[-15,3],[-10,2],[-11,6],[-6,14],[-3,2],[-3,7],[-5,12],[-5,7],[-17,18],[-10,7],[-34,-1],[-6,4],[-1,16],[-6,1],[-7,-7],[-3,-1],[-12,0],[-6,-13],[-17,-20],[-4,-3],[-4,2],[-8,10],[-6,2],[-10,-7],[-15,-27],[-1,-3],[-11,-7],[-9,0],[-29,16],[-6,5],[-3,2],[-3,-2],[-1,-4],[1,-5],[0,-4],[0,-2],[1,-4],[1,-3],[-2,-1],[-3,1],[-3,-1],[-2,2],[-2,1],[-3,-4],[-10,-3],[-10,8],[-9,11],[-9,6],[-3,-1],[-1,-4],[-1,-4],[-2,-4],[-2,0],[-5,3],[-1,0],[-3,-6],[0,-5],[1,-8],[2,-11],[0,-11],[-1,-8],[-3,-4],[-6,-1],[-5,4],[-3,6],[-3,7],[-4,7],[-6,3],[-1,-6],[-1,-7],[-10,-8],[-3,-7],[-2,-10],[0,-5]],[[57393,79049],[-8,-5],[-35,-12],[-5,-1],[-13,-1],[-5,-2],[-9,-6],[-5,-3],[-5,1],[-2,2],[-2,-20],[0,-13],[-3,-19],[-4,-19],[-4,-12],[-4,-6],[-7,-9],[-3,-6],[-7,-20],[-2,-6],[-13,-9],[-7,0],[-20,0],[-18,-8],[-13,2],[-5,-1],[-8,-5],[-15,-3],[-18,-11],[-136,-21],[-12,-12],[-27,-64],[-12,-16],[-17,-11],[-21,-5],[-4,-1],[-9,-3],[-5,5],[-7,15],[-9,24],[-3,7],[-4,5],[-23,13],[-9,8],[-5,8],[-1,8],[-1,7],[-2,10],[-4,8],[-7,8],[-11,9],[-2,2],[-5,2],[-16,-1],[-16,6],[-5,0],[-7,-5],[-10,-14],[-14,-1],[-19,-13],[-6,0],[-16,9],[-1,0],[-4,1],[-11,14],[-5,4],[-14,5],[-4,5],[-9,1],[-28,-17],[-6,0],[-2,9],[-14,19],[-5,4],[-19,-2],[-7,1],[-11,6],[-18,3],[-5,2],[-11,-2],[-3,-2],[-3,-3],[-1,-4],[-1,-4],[-2,-2],[-1,-1],[-1,-2],[-6,0],[-18,13],[-1,0],[-3,-1],[-2,-1],[-2,1],[-2,1],[-6,10],[-13,17],[-12,19],[-4,5],[-20,10],[-6,1],[-6,-4],[-5,-12],[-6,-28],[-4,-10],[-12,-13],[-4,-1],[-5,2],[-4,4],[-5,4],[-5,3],[-4,0],[-2,-7],[2,-12],[-2,-8],[-5,-5],[-6,-3]],[[56354,78864],[-10,12],[-2,7],[5,9],[0,9],[2,6],[1,6],[-2,11],[-3,8],[-4,7],[-8,11],[-10,8],[-1,3],[-4,4],[-5,-2],[-5,-4],[-5,-3],[-20,0],[-4,-3],[-2,3],[-4,14],[-4,19],[-4,12],[-21,39],[-1,0],[-1,1],[-1,0],[-6,-4],[-4,-1],[-4,1],[-6,4],[-1,0],[-1,0],[-1,-1],[-2,-3],[-2,0],[-2,0],[-2,3],[-14,30],[-3,12],[0,8],[1,7],[0,6],[-3,5],[-1,0],[-8,0],[0,9],[4,18],[-10,7],[-9,2],[-9,-6],[-3,-4],[-1,0],[-7,2]],[[56147,79136],[1,42],[3,10],[1,9],[-3,24],[0,12],[4,10],[18,21],[2,4],[3,9],[2,5],[4,3],[7,3],[3,3],[5,9],[3,11],[2,12],[0,13],[0,8],[3,4],[2,3],[3,5],[1,6],[1,4],[0,20],[-1,5],[0,5],[2,7],[1,1],[2,4],[6,8],[3,6],[0,3],[0,8],[1,3],[3,10],[6,25],[5,6],[11,2],[4,5],[0,10],[1,14],[2,13],[2,10]],[[56260,79531],[6,8],[6,-3],[10,-16],[7,-6],[6,-1],[6,1],[10,-2],[6,3],[3,0],[3,-4],[5,-10],[3,-2],[5,-3],[6,-8],[6,-3],[3,9],[0,2],[-1,1],[-4,11],[-1,6],[0,8],[3,11],[0,5],[-4,6],[-12,10],[-5,5],[-8,15],[-9,9],[1,1],[-4,4],[-4,-6],[-1,-1],[-2,3],[1,7],[5,13],[4,21],[4,18],[1,8],[-3,55],[-2,9],[-1,5],[-6,8],[-4,8],[0,4],[-1,6],[-2,25],[-2,9],[-5,21],[7,23],[21,39],[4,19],[2,5],[3,4],[6,2],[3,2],[5,6],[17,43],[3,5],[2,2],[5,2],[3,4],[1,4],[2,12],[2,5],[11,16],[31,61],[11,17],[10,11],[8,18],[64,94],[12,13],[15,16],[8,9],[22,33],[4,7],[0,1],[4,16],[3,8],[4,6],[4,3],[10,4],[50,1],[15,8],[6,20],[1,6],[1,8],[-1,11],[1,7],[18,13],[5,8],[4,6],[0,2],[-1,1],[-2,8],[-3,28],[6,15],[0,1],[-7,23],[-2,12],[2,14],[-8,2],[-7,7],[-4,9],[3,10],[0,4],[-7,1],[-7,4],[-4,8],[-1,11],[4,10],[6,7],[8,1],[7,-6],[6,4],[9,0],[8,2],[4,11],[-4,7],[-23,17],[-19,24],[-4,9],[-1,8],[-1,5],[0,5],[-3,6],[-4,3],[-3,2],[-2,3],[1,4],[0,4],[-4,25],[-2,8],[-7,15],[-4,12],[1,5],[4,3],[-3,7],[-13,18],[-14,12],[-6,11],[-16,45],[-5,4],[-5,0],[-4,3],[-2,13],[1,8],[4,8],[5,7],[5,3],[-1,8],[0,6],[2,4],[3,2],[-2,7],[-11,22],[-1,4],[4,12],[-4,4],[-5,2],[-4,4],[-2,8],[0,4]],[[56557,80979],[2,-3],[3,2],[1,9],[-1,6],[-7,28],[-2,5],[0,5],[4,8],[3,4],[3,2],[27,10],[7,-1],[19,-8],[7,0],[11,-6],[8,-13],[8,-10],[11,3],[41,49],[32,29],[8,15],[6,38],[5,12],[10,20],[6,8],[6,3],[69,7],[17,-6],[6,0],[78,17],[25,17],[12,6],[13,0],[47,-17],[54,-1],[38,-1],[23,6],[59,-14],[20,0],[8,-2],[18,-21],[8,-5],[65,-4],[3,-2],[0,-4],[-1,-5],[1,-6],[4,-7],[3,-2],[62,-3],[52,-31],[18,-4],[28,13],[25,-1],[11,-3],[8,-6],[2,-9],[-1,-13],[0,-16],[2,-11],[4,-5],[6,-1],[6,1],[9,-3],[-1,-10],[-4,-13],[-2,-10],[4,-4],[6,0],[11,5],[16,-4],[6,1],[6,4],[8,11],[5,4],[10,0],[30,-16],[15,-1],[5,-3],[3,-13],[-2,-15],[-9,-30],[0,-1],[2,-3],[3,-6],[5,-5],[4,-2],[4,1],[3,4],[13,23],[2,4],[1,8],[0,6],[-1,7],[0,7],[2,12],[3,10],[5,7],[7,1],[6,-4],[16,-25],[6,-3],[5,-2],[27,0],[5,2],[7,8],[9,23],[5,12],[6,7],[7,4],[5,-1],[4,-6],[1,-6],[0,-5],[0,-5],[3,-7],[3,-4],[8,-7],[4,-5],[1,-6],[3,-17],[2,-4],[4,-2],[3,2],[7,9],[14,13],[7,3],[8,0],[25,-7],[7,-4],[2,-8],[1,-12],[4,-33],[2,-8],[3,-6],[5,-3],[4,2],[3,3],[4,0],[2,-8],[2,-11],[3,-6],[5,8],[1,9],[-1,22],[1,10],[6,16],[7,13],[9,9],[9,7],[8,2],[17,0],[8,4],[5,8],[7,18],[5,7],[6,3],[5,0],[11,-3],[7,-6],[4,-7],[5,-22],[10,-18],[3,-10],[1,-15],[-3,-16],[2,-7],[5,-4],[6,-9],[3,-11],[2,-13],[3,-11],[7,-5],[6,3],[3,4],[7,8],[7,3],[12,-6],[5,0],[5,9],[4,15],[2,7],[4,2],[7,1],[7,4],[4,7],[4,7],[6,7],[5,3],[7,2],[6,-1],[4,-5],[5,-11],[2,-9],[4,-6],[25,-6],[5,2],[3,4],[5,12],[3,3],[3,0],[4,-4],[4,0],[17,12],[6,2],[39,1],[8,-2],[8,-8],[10,-19],[4,-6],[14,-9],[4,-4],[1,-4],[1,-4],[0,-5],[0,-6],[0,-5],[-2,-12],[-1,-1],[2,-6],[8,-15],[4,-4],[4,-2],[9,0],[4,-2],[4,-5],[6,-12],[4,-2],[4,1],[4,-2],[3,-3],[4,-5],[2,-5],[3,1],[1,3],[0,1],[0,14],[1,1],[5,12],[1,8],[8,9],[8,11],[-2,16],[4,2],[0,3],[-2,4],[-2,3],[-2,17],[-2,4],[-3,3],[-3,0],[-2,2],[-1,7],[1,7],[2,4],[3,2],[3,-1],[0,4],[-2,2],[-3,2],[-3,5],[-1,7],[2,5],[-2,4],[-3,4],[-3,4],[2,2],[2,3],[2,7],[-5,3],[-9,3],[-3,6],[0,4],[1,1],[1,1],[1,1],[3,1],[0,4],[-3,2],[-5,6],[0,4],[8,10],[3,2],[-1,6],[0,2],[1,1],[2,5],[2,2],[-1,9],[3,12],[-2,8],[4,2],[8,0],[3,2],[2,5],[0,8],[1,7],[3,4],[0,4],[-2,1],[-6,3],[4,6],[6,5],[5,7],[0,9],[-2,6],[0,2],[1,2],[2,4],[6,10],[0,2],[2,2],[1,4],[2,4],[6,4],[1,5],[0,6],[1,3],[2,1],[8,-1],[3,2],[2,4],[4,6],[0,5],[-2,2],[0,4],[0,2],[8,4],[4,3],[3,4],[3,4],[3,5],[0,2],[0,3],[0,4],[3,3],[2,3],[2,1],[1,-1],[2,-4],[7,1],[3,8],[-3,8],[-8,1],[1,3],[0,3],[1,3],[2,3],[-2,10],[4,6],[7,3],[38,3],[11,-2],[7,-5],[12,-14],[7,-4],[7,4],[4,10],[4,12],[6,10],[22,11],[25,1],[49,-13],[32,2]],[[58310,77528],[44,61],[14,11],[-61,-86],[-28,-31],[-21,-13],[14,11],[6,7],[2,5],[1,6],[4,2],[4,1],[4,2],[4,5],[8,13],[5,6]],[[59163,77737],[3,-5],[13,2],[3,-8],[-5,-7],[-117,28],[2,4],[2,0],[2,-4],[40,-8],[19,6],[8,-1],[9,-9],[12,7],[6,1],[3,-6]],[[58872,77833],[36,-13],[23,-16],[3,-4],[-6,2],[-11,8],[-102,32],[-43,25],[-9,12],[-7,18],[-3,10],[-2,15],[0,11],[5,-3],[4,-25],[5,-18],[6,-12],[11,-10],[90,-32]],[[56557,80979],[-1,8],[-4,3],[-5,2],[-3,9],[2,0],[2,0],[-6,14],[-3,9],[-1,8],[2,16],[-1,6],[-3,4],[0,5],[3,0],[1,2],[4,6],[-1,2],[-2,4],[-1,4],[1,2],[3,1],[-1,4],[-2,4],[-1,3],[2,14],[1,6],[1,4],[5,8],[6,4],[5,7],[3,14],[-5,9],[-5,11],[4,5],[1,13],[3,2],[0,3],[0,1],[-1,0],[-1,0],[2,7],[0,19],[2,11],[5,16],[4,8],[4,4],[-3,10],[-4,23],[-2,7],[0,7],[-2,7],[-3,3],[-3,1],[-1,4],[-2,5],[-2,5],[-5,4],[-13,-1],[-5,3],[-8,20],[1,2],[1,7],[-1,4],[-5,-6],[-2,3],[-2,3],[-2,3],[-3,-6],[-3,1],[-2,3],[-4,2],[-4,-2],[-1,1],[2,5],[0,4],[-6,1],[-17,8],[-3,5],[-5,-2],[-20,7],[-6,5],[2,11],[-1,8],[-3,5],[-2,3],[-2,2],[-1,0],[13,35],[5,10],[11,18],[34,68],[25,26],[24,19],[47,17],[37,33],[11,17],[4,26],[-1,17],[-2,72],[-1,5],[-1,3],[-1,3],[0,7],[0,4],[3,8],[1,4],[0,5],[-2,16],[0,4],[0,7],[0,5],[-3,8],[-9,14],[-2,10],[0,12],[3,8],[3,7],[3,9],[1,14],[-3,7],[-5,5],[-5,7],[-3,9],[-3,9],[-2,8],[-5,9],[-5,16],[-11,56],[-6,19],[-13,35],[-24,92],[-6,41],[-1,37],[-7,12],[-2,12],[-3,32],[-3,15],[-4,13],[-2,15],[-1,17]],[[56523,82413],[10,-3],[25,-19],[5,-2],[4,0],[14,8],[17,3],[5,4],[4,3],[2,-1],[5,-4],[2,-1],[2,1],[22,15],[4,1],[4,-2],[8,-7],[5,-1],[18,0],[8,3],[17,12],[9,2],[9,-4],[8,-12],[5,-17],[3,-6],[5,-1],[9,1],[9,-4],[10,0],[10,7],[32,36],[14,10],[18,4],[6,7],[1,0],[1,0],[1,-1],[4,-12],[4,-5],[5,0],[18,3],[5,4],[4,10],[0,16],[-2,11],[-4,10],[-3,13],[-2,9],[1,2],[2,0],[2,4],[5,4],[1,3],[-1,4],[0,4],[1,4],[8,6],[2,1],[13,2],[13,-2],[21,-11],[13,3],[12,9],[11,16],[5,13],[6,28],[3,7],[5,1],[18,-8],[23,2],[6,6],[11,20],[7,4],[4,-1],[2,-2],[1,-3],[20,-34],[-3,-2],[-6,1],[-6,-4],[0,-6],[6,-5],[2,-5],[-2,-4],[-8,-4],[-2,-4],[2,-10],[6,-8],[8,-5],[24,-5],[6,0],[3,3],[5,7],[3,2],[10,-2],[3,1],[7,6],[2,9],[0,27],[1,3],[3,6],[1,2],[-1,4],[-1,1],[-1,1],[-2,2],[-1,6],[-3,6],[-2,4],[-3,4],[-1,0],[-3,-1],[-1,0],[-1,2],[-3,11],[-1,5],[-2,5],[-4,3],[-4,-1],[-16,-11],[-12,-1],[-6,3],[-4,7],[0,15],[5,13],[13,19],[5,13],[1,11],[0,13],[1,15],[3,12],[4,7],[17,13],[6,7],[4,9],[1,12],[-2,11],[-6,21],[-2,12],[0,7],[1,6],[2,6],[1,6],[0,6],[-1,30],[1,8],[3,6],[6,6],[3,2],[2,0],[1,1],[1,5],[0,5],[-2,12],[-1,5],[3,11],[6,7],[6,7],[6,8],[2,6],[0,5],[1,5],[4,3],[10,6],[5,0],[10,-3],[5,0],[34,8],[10,7],[4,6],[5,8],[5,10],[10,27],[1,5],[1,7],[0,15],[0,7],[9,16],[13,3],[30,-10],[3,0],[2,1],[2,3],[2,3],[2,3],[4,1],[29,-16],[7,1],[4,9],[3,17],[2,16],[2,7],[4,7],[8,10],[4,3],[11,3],[7,3],[7,6],[3,9],[-2,10],[-7,6],[-46,10],[-17,-5],[-4,0],[-17,7],[-4,4],[-2,6],[3,11],[7,15],[2,6],[3,22],[3,7],[10,12],[0,7],[-5,12],[1,14],[6,11],[7,10],[5,10],[3,13],[0,16],[-1,15],[-2,14]],[[57387,83436],[6,13],[6,4],[8,-1],[15,-7],[6,1],[22,14],[6,7],[16,36],[16,23],[6,5],[36,6],[11,-3],[7,-4],[17,-17],[7,-5],[6,2],[13,16],[6,8],[6,-10],[9,-6],[9,-4],[35,-3],[8,1],[3,9],[2,13],[2,28],[8,26],[27,22],[9,19],[1,14],[9,11],[19,18],[3,7],[3,8],[3,6],[4,5],[3,3],[12,3],[12,6],[7,7],[5,4],[12,6],[11,-9]],[[57819,83718],[5,-10],[19,-25],[9,-15],[6,-7],[6,-2],[6,4],[9,18],[6,5],[42,6],[15,-4],[5,-2],[3,-3],[4,-10],[10,-17],[2,-6],[3,-14],[1,-14],[3,-12],[8,-8],[21,-7],[6,2],[1,14],[7,9],[17,9],[17,13],[14,6],[16,-1],[15,-6],[14,-12],[8,-8],[43,-15],[5,-3],[5,-6],[5,-8],[2,-6],[1,-4],[-1,-4],[-2,-1],[-2,0],[-2,-1],[-3,-2],[-2,-1],[-2,-2],[-2,-5],[-1,-6],[-2,-14],[-1,-6],[-6,-20],[-2,-9],[2,-13],[4,-8],[14,-15],[13,-24],[6,-3],[7,2],[22,32],[27,19],[7,2],[20,-6],[7,4],[11,25],[6,10],[11,8],[11,3],[11,-1],[33,-15],[8,3],[12,15],[6,4],[5,-2],[10,-10],[5,-5],[55,-22],[2,-3],[0,-5],[-1,-5],[-1,-5],[3,-5],[25,-14],[3,-3],[2,-4],[1,-8],[-1,-5],[-1,-5],[0,-5],[3,-9],[6,-4],[6,-2],[12,1],[3,-2],[3,-6],[3,-9],[8,-20],[8,-1],[9,6],[12,5],[11,-6],[6,-13],[1,-4],[2,-22],[-5,-21],[4,-3],[1,-1],[-2,-7],[-7,-7],[-1,-10],[2,-11],[4,-7],[4,-8],[0,-12],[-4,-7],[-16,-15],[-10,-16],[-4,-11],[-1,-11],[3,-8],[5,-5],[10,-6],[3,-7],[5,-22],[4,-8],[13,-12],[3,-5],[1,-3],[-1,-5],[0,-3],[1,-1],[3,-1],[1,-1],[1,-3],[1,-2],[0,-3],[-1,-6],[-2,-4],[-1,-4],[1,-5],[2,-4],[4,-12],[3,-14],[0,-12],[-7,-2],[-13,4],[-6,-1],[-1,-7],[2,-10],[4,-6],[2,-7],[-5,-12],[-5,-4],[-17,-5],[-7,-6],[1,-6],[3,-9],[-1,-15],[-4,-10],[-6,-8],[-6,-10],[-1,-17],[2,-9],[4,-4],[12,-5],[42,-39],[4,-9],[1,-11],[6,1],[24,-3],[6,-16],[11,-12],[-8,-23],[-14,-27],[-7,-26],[9,-8],[20,-7],[3,-8],[9,-3],[4,-12],[7,-31],[3,-7],[4,-5],[3,-5],[2,-10],[2,-34],[3,-17],[4,-9],[43,-43],[7,-8],[7,-3],[14,-5],[24,-16],[8,-3],[8,0],[3,-2],[3,-5],[2,-6],[2,-9],[3,-7],[3,-2],[7,6],[2,1],[2,-2],[0,-2],[0,-3],[7,-31],[-2,-5],[0,-4],[0,-5],[-1,-4],[-3,-13],[-4,-34],[-5,-15],[-11,-23],[-3,-14],[12,-1],[24,-10],[59,20],[6,-2],[16,-15],[35,-12],[10,-9],[9,-16],[4,-3],[13,1],[6,-1],[6,-4],[5,-9],[2,-4],[0,-5],[0,-4],[-2,-5],[-21,-13],[-2,-3],[0,-4],[1,-11],[3,-16],[5,-12],[6,-9],[8,-7],[14,-8],[6,-6],[5,-11],[2,-4],[2,-1],[2,1],[2,4],[5,1],[5,-1],[4,-3],[-1,-5],[-1,-6],[1,-7],[3,-1],[9,4],[3,0],[5,-14],[0,-5],[-4,-38],[4,-19],[-6,-5],[-4,1],[-5,2],[-4,2],[-20,-6],[1,-2],[3,-5],[1,-2],[-8,-6],[-8,-2],[-9,1],[-7,5],[-7,-3],[-2,-7],[2,-6],[6,-2],[-2,-12],[-4,-11],[-9,-19],[-5,-7],[-5,-3],[-10,-4],[-9,-11],[-7,-13],[-7,-9],[-15,0],[-1,-2],[-1,-3],[0,-2],[0,-2],[0,-3],[-1,-3],[-1,-1],[-1,0],[-2,1],[-10,-2],[-8,-7],[-2,-2],[-10,1],[-20,10],[-8,-1],[-7,-5],[-7,-1],[-6,2],[-15,11],[-3,1],[-10,-1],[-3,2],[-5,9],[-3,24],[-3,11],[-5,3],[-13,0],[-5,2],[-17,8],[-6,1],[-5,-2],[-11,-8],[-6,0],[-14,3],[-13,0],[-10,-10],[-5,-29],[0,-7],[0,-1],[1,-6],[0,-6],[0,-6],[-3,-4],[-7,-2],[-3,-2],[-14,-28],[-6,-8],[21,-23],[5,-11],[7,-29],[6,-12],[9,-11],[9,-8],[8,-3],[7,-1],[2,-5],[1,-8],[2,-9],[4,-7],[3,-4],[3,-4],[3,-12],[0,-25],[-6,-11],[-19,-14],[3,-9],[12,-22],[9,-24],[3,-7],[10,-11],[4,-7],[-1,-6],[-4,-1],[-10,3],[-4,0],[1,-2],[4,-7],[-5,-3],[-3,-5],[1,-6],[4,-5],[6,-6],[0,-15],[-1,-18],[-1,-15],[3,-6],[2,-5],[2,-7],[1,-10],[-2,-8],[-3,-8],[-3,-6],[-4,-4],[8,-16],[5,-6],[5,-5],[5,-3],[9,-2],[5,-3],[-3,-5],[-2,-8],[-1,-8],[1,-9],[2,-6],[3,-3],[14,-13],[3,-8],[1,-12],[0,-18]],[[54579,33548],[-5,-7],[-3,-9],[-3,-6],[-8,2],[-3,4],[-17,26],[-8,19],[-4,12],[-30,57],[-5,4],[-2,3],[-17,43],[-18,39],[-37,51],[-7,14],[-14,35],[-20,30],[-4,8],[-9,26],[-9,18],[-1,5],[-1,6],[2,12],[1,6],[-4,19],[-7,19],[-28,53],[-4,10],[-1,15],[0,30],[-1,5],[-1,8],[-27,81],[-4,19],[-4,9],[-4,4],[-3,5],[-8,32],[-11,28],[-2,6],[-4,47],[-1,6],[-2,4],[-2,5],[0,7],[2,24],[-4,39],[2,8],[-6,22],[-1,11],[-1,14],[0,24],[-1,12],[-5,11],[-2,1],[-5,1],[-2,2],[-1,2],[-2,6],[-2,6],[-1,0],[-1,13],[-2,11],[-8,36],[-2,10],[1,16],[-3,11],[-3,12],[-3,10],[0,14],[0,12],[3,8],[4,3],[3,2],[2,2],[3,0],[0,-6],[0,-23],[2,0],[1,12],[6,31],[0,6],[-2,8],[-5,36],[-4,36],[-7,22],[-9,18],[-10,14],[-17,13],[-2,6],[-2,46],[1,45],[-6,16],[-1,4],[1,7],[2,0],[2,-1],[3,2],[4,19],[-1,25],[-3,26],[-4,19],[-13,40],[-1,20],[5,22],[-3,0],[-14,32],[-5,16],[0,7],[0,5],[0,8],[0,47],[2,12],[8,31],[1,10],[0,13],[-2,12],[-6,12],[-1,15],[-2,27],[-6,36],[-2,28],[-3,22],[0,12],[9,44],[-1,7],[5,42],[1,24],[-2,23],[-4,15],[-6,23],[-3,24],[-1,47],[-4,23],[-16,59],[-6,18],[-14,26],[-4,18],[-9,21],[-2,15],[1,7],[4,9],[1,3],[0,24],[-2,12],[-6,22],[-6,30],[-15,57],[-6,41],[-5,19],[-2,27],[-2,9],[1,12],[0,20],[-1,20],[-2,13],[2,9],[2,16],[2,8],[1,1],[3,1],[2,2],[1,6],[4,14],[-2,8],[0,33],[-5,28],[0,11],[3,85],[-1,21],[-3,16],[-10,54],[-4,27],[0,6],[2,5],[7,24],[4,7],[0,-13],[1,-5],[2,3],[0,13],[0,23],[-5,69],[-3,21],[-5,15],[-4,17],[-3,19],[-2,20],[-1,39],[1,6],[1,5],[4,12],[0,5],[0,25],[1,1],[2,0],[1,-2],[-2,-5],[1,-4],[2,-6],[1,-2],[-2,-12],[0,-12],[2,-7],[6,6],[-1,-7],[-3,-17],[4,7],[6,24],[4,5],[3,6],[2,14],[2,27],[-2,104],[-5,77],[-7,22],[-3,26],[-10,41],[-5,35],[-9,37],[-2,5],[-18,40],[-6,20],[0,14],[-1,5],[-43,112],[-20,38],[-3,10],[-23,43],[-5,5],[0,6],[1,6],[1,3],[2,15],[0,4],[-1,7],[-1,6],[-23,66],[-4,38],[-8,43],[-29,75],[-17,58],[-11,26],[-7,18],[-25,88],[-11,32],[-4,22],[-4,8],[-7,12],[-6,20],[-3,20],[-3,49],[-7,53],[-24,94],[-7,52],[-2,25],[-5,48],[-10,50],[-6,21],[-12,7],[-12,17],[-9,32],[-9,74],[-21,83],[-3,17],[-12,32],[-20,75],[-3,14],[-3,9],[-7,29],[-2,7],[-12,44],[-4,19],[-2,12],[-1,27],[-4,12],[-8,24],[-6,21],[-14,68],[-5,18],[-9,20],[-10,16],[-3,8],[-3,43],[-2,12],[-46,123],[-31,41],[-13,31],[-2,4],[-5,13],[-3,4],[-2,3],[-14,18],[-5,31],[-1,10],[-3,19],[-1,7],[0,6],[0,6],[1,5],[-7,20],[-11,57],[-1,4],[-23,49],[-4,27],[-2,35],[-5,28],[-4,21],[-3,57],[-7,43],[-4,61],[-3,30],[-2,20],[-3,31],[1,47],[10,119],[3,8]],[[53268,40252],[4,-1],[4,-5],[3,-1],[4,0],[2,3],[0,4],[2,5],[5,7],[12,11],[13,20],[11,11],[13,8],[13,3],[2,1],[1,2],[2,-1],[3,-3],[10,-6],[3,1],[1,3],[2,1],[2,-1],[2,-4],[1,-4],[0,-4],[1,-5],[2,-3],[2,-4],[4,-4],[3,-1],[2,-3],[2,-5],[0,-6],[1,-2],[20,4],[18,-1],[4,3],[4,6],[3,1],[6,-8],[6,-4],[16,-3],[10,-4],[3,0],[7,7],[13,22],[6,5],[7,2],[6,6],[9,17],[13,12],[9,6],[2,5],[2,9],[3,4],[2,2],[5,3],[2,4],[1,5],[1,7],[1,5],[7,4],[5,6],[9,4],[15,17],[29,11],[7,4],[6,1],[5,-8],[4,4],[2,-3],[1,-6],[3,-3],[7,-2],[3,0],[3,2],[0,-4],[7,7],[4,2],[2,-3],[2,0],[7,4],[5,2],[5,-3],[9,-14],[5,-3],[7,-2],[6,-5],[4,-8],[4,-24],[4,-8],[2,-9],[-3,-17],[24,-27],[24,-41],[27,-31],[26,-29],[4,-7],[12,-35],[4,-6],[7,-3],[3,2],[5,5],[2,2],[3,-1],[6,-3],[6,-2],[4,-3],[3,0],[3,2],[5,5],[2,2],[12,-4],[6,1],[3,12],[0,3],[3,0],[19,0],[71,0],[72,0],[71,0],[71,0],[68,0],[4,0],[71,0],[71,0],[71,0],[72,0],[71,0],[71,0],[47,0],[24,0],[72,0],[71,0],[34,0],[37,0],[71,-1],[15,0],[2,0],[1,-3],[1,-6],[2,-2],[1,-3],[5,-23],[1,-6],[0,-1],[7,-4],[9,-38],[1,-7],[4,-4],[15,-24],[0,-5],[2,-10],[1,-5],[3,-6],[5,-5],[3,-4],[16,-34],[5,-15],[4,-7],[11,-5],[25,-25],[36,-14],[23,2],[10,8],[6,3],[3,0],[8,-4],[13,2],[4,-6],[44,-27],[48,1],[16,8],[6,1],[6,-3],[2,-11],[3,-4],[6,-5],[6,-5],[4,0],[2,3],[3,11],[2,2],[44,0],[10,-12],[10,-7],[3,-1],[16,4],[7,0],[4,1],[4,3],[2,-4],[4,7],[7,4],[7,-1],[7,-6],[9,17],[3,-4],[4,0],[9,4],[4,-3],[10,-18],[8,3],[7,-6],[6,-11],[5,-12],[3,-5],[10,-10],[8,-12],[3,-3],[7,3],[11,1],[10,-1],[4,-5],[3,-5],[4,-4],[5,-2],[2,2],[2,6],[5,-3],[8,-9],[6,-11],[7,1],[8,7],[9,3],[4,16],[22,12],[4,2],[26,14],[4,-4],[5,3],[5,4],[5,2],[4,-2],[11,2],[4,-2],[13,-15],[16,-11],[8,-8],[5,-13],[1,-1],[5,3],[20,8],[70,28],[70,27],[70,27],[69,28],[57,22],[57,23],[56,23],[57,23],[23,9]],[[56494,40022],[12,5],[9,4],[6,0],[8,4],[12,5],[12,5],[12,5],[11,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[12,5],[11,5],[12,5],[12,5],[12,5],[8,3],[5,1],[6,-2],[14,-1],[3,-3],[3,2],[11,6],[5,2],[5,-2],[12,-9],[8,-3],[5,-5],[8,-3],[2,-3],[2,-4],[2,-4],[4,-3],[3,-1],[2,0],[3,3],[5,8],[3,3],[1,5],[2,4],[3,1],[12,0],[24,-7],[1,-2],[2,-2],[2,-3],[3,-1],[9,0],[19,-7],[7,-8],[4,-10],[5,5],[4,-5],[3,-9],[4,-7],[3,-1],[5,4],[3,1],[1,-2],[-2,-10],[0,-4],[2,-5],[1,-2],[2,-1],[4,0],[0,-2],[6,-10],[0,-1],[3,-17],[0,-3],[3,-1],[2,-3],[1,-4],[1,-4],[2,6],[2,1],[4,-9],[1,-3],[0,-8],[0,-3],[2,-3],[3,-3],[1,-3],[4,-9],[2,-2],[5,-1],[3,-2],[4,-4],[3,-7],[2,-7]],[[57016,39932],[-18,7],[-11,0],[-10,-19],[-9,-8],[-8,0],[-3,12],[-8,-10],[-3,-1],[-3,7],[-4,-4],[-2,3],[-2,5],[-3,4],[2,8],[-3,-1],[-1,-3],[-1,-4],[-2,-4],[-2,-2],[-21,-14],[-5,0],[-5,-3],[-6,-11],[-6,-3],[-2,-2],[-2,-8],[-2,-2],[-2,-1],[-3,-2],[-2,-2],[-1,-3],[-8,-19],[-9,-12],[-5,-8],[-14,-34],[-1,-2],[-1,-3],[-3,-10],[-1,-3],[-3,-1],[-13,-3],[-3,-2],[-10,18],[0,9],[-2,4],[-2,1],[-2,4],[-4,19],[-4,7],[-6,2],[-9,1],[-5,-3],[-4,-9],[-8,-29],[-3,-4],[-2,1],[-5,5],[-3,2],[-6,2],[-5,-2],[-10,-10],[-13,-33],[-10,-14],[-10,-3],[-2,-3],[-8,-16],[-2,-3],[-8,-7],[-4,-5],[-1,-3],[-1,-4],[-1,2],[-1,1],[-2,1],[-2,0],[-9,-14],[-1,-21],[-5,-8],[-8,-12],[-3,-6],[-5,-15],[-3,-7],[-5,-3],[-26,-57],[-4,-6],[-6,-2],[-6,-16],[-2,-3],[-1,-1],[-10,-7],[-5,0],[-4,6],[-2,25],[-4,25],[-3,8],[4,12],[-2,13],[-10,20],[3,9],[-2,6],[-3,5],[-1,6],[-1,7],[-3,3],[-4,1],[-4,3],[-1,5],[-4,10],[-4,7],[-3,-6],[-3,1],[-2,2],[-2,1],[0,4],[0,9],[0,4],[-1,6],[-9,20],[-3,15],[-3,9],[-1,3],[0,4],[0,14],[-1,2],[-2,1],[-2,1],[-1,4],[0,8],[0,4],[-2,3],[-3,3],[-11,1],[-19,-3],[-24,-4],[-33,-6],[-24,-10],[-24,-9],[-23,-9],[-23,-9],[-24,-10],[-23,-9],[-24,-9],[-23,-10],[-24,-9],[-23,-9],[-23,-9],[-24,-10],[-23,-9],[-24,-9],[-23,-10],[-24,-9],[-23,-9],[-5,-2],[-5,-2],[-4,-2],[-5,-2],[-5,0],[-6,0],[-13,-2],[-13,-1],[-13,-1],[-13,-1],[-15,-1],[-16,-2],[-16,-1],[-16,-1],[-8,-1],[-5,0],[0,-17],[0,-24],[0,-24],[0,-25],[0,-24],[0,-24],[0,-24],[0,-24],[0,-25],[0,-24],[0,-24],[0,-24],[0,-24],[0,-24],[0,-25],[0,-24],[0,-24],[0,-74],[0,-27],[0,-47],[0,-74],[0,-74],[0,-74],[1,-74],[0,-74],[0,-74],[0,-74],[0,-74],[0,-60],[0,-14],[0,-74],[0,-74],[0,-74],[1,-74],[0,-74],[0,-34],[0,-35],[0,-34],[0,-34],[0,-34],[0,-34],[0,-34],[0,-34],[0,-34],[0,-35],[0,-34],[0,-34],[0,-34],[0,-34],[0,-34],[1,-34],[0,-25],[-4,-21],[-16,0],[-65,0],[-65,0],[-65,0],[-65,0],[0,-51],[0,-90],[0,-89],[0,-89],[0,-89],[0,-102],[0,-102],[0,-101],[0,-62],[0,-40],[0,-102],[1,-102],[0,-85],[0,-17],[0,-102],[0,-102],[0,-101],[0,-102],[0,-102]],[[55550,35811],[0,-8],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-7],[0,-26],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-33],[0,-33],[0,-33],[0,-33],[0,-34],[0,-23],[0,-17],[-9,-5],[-3,0],[-9,2],[-3,-1],[-7,-7],[-12,-22],[-9,-4],[-13,-2],[-6,-4],[-6,-8],[-5,-5],[-27,-4],[-3,-1],[-3,-4],[-2,-4],[-1,-5],[-3,-6],[-1,-4],[-3,-11],[-1,-2],[-3,-2],[-2,-6],[-8,-47],[-3,-9],[-4,-7],[-6,-5],[-23,-11],[-4,-3],[-3,1],[-6,10],[-4,-1],[-4,-5],[-3,-8],[-5,-17],[-1,-13],[2,-13],[10,-33],[0,-7],[-3,-4],[-9,-2],[-2,-2],[-3,-9],[-2,-4],[-16,-16],[-11,-7],[-11,-1],[-5,11],[-1,3],[-3,1],[-10,3],[-2,1],[-3,6],[-7,21],[-4,8],[-58,16],[-54,-14],[-10,-11],[-6,-3],[-1,1],[-3,6],[-2,1],[-1,0],[-3,-3],[-1,-1],[-6,-2],[-3,-2],[-2,-2],[-5,-5],[-7,3],[-12,8],[-6,1],[-24,-7],[-10,-7],[-5,1],[-24,15],[-10,10],[-17,27],[-10,11],[-10,8],[-46,19],[-9,-1],[-3,-3],[-5,-7],[-3,-2],[-4,-1],[-9,5],[-6,5],[-1,12],[0,15],[-1,12],[-4,6],[-5,-2],[-5,-5],[-6,-2],[-12,-3],[-12,-6],[-10,4],[-1,17],[4,25],[1,23],[-3,13],[-10,7],[-2,10],[-1,14],[-8,18],[-2,11],[1,9],[3,7],[5,6],[5,3],[4,6],[3,14],[0,16],[0,13],[-2,6],[-4,11],[-2,6],[-1,8],[0,6],[-1,6],[-3,7],[-1,6],[0,7],[-1,7],[-3,3],[-8,-1],[-17,-8],[-9,3],[-6,14],[-1,28],[0,13],[0,13],[-2,11],[-7,4],[-5,5],[-4,10],[-3,12],[-4,9],[-3,3],[-3,0],[-6,-3],[-3,-3],[-9,-13],[-7,4],[-4,-2],[-4,-8],[-3,-2],[-3,1],[-2,6],[-3,1],[-1,-2],[-5,-11],[-1,-1],[-2,-47],[-2,-6],[-1,0],[-2,2],[-4,0],[-2,2],[-1,1],[-1,-3],[-1,-3],[1,-4],[5,-11],[0,-5],[-4,-2],[-6,0],[-2,-2],[-1,-5],[1,-4],[2,-6],[2,-8],[-1,-7],[-3,-4],[-2,2],[-3,4],[-3,2],[-5,-4],[-1,-11],[1,-12],[2,-9],[6,-17],[2,-11],[-3,-5],[-4,-5],[-1,-12],[-1,-13],[0,-10],[-3,-11],[-5,-12],[-6,-9],[-5,1],[-1,5],[-1,8],[-1,7],[-2,2],[-3,-2],[-21,-39],[-11,-6],[-7,-8],[-8,-9],[-5,-5]],[[55550,35811],[1,-10],[2,-4],[5,-7],[5,-16],[15,-22],[7,-17],[3,-4],[3,-1],[5,-1],[3,-2],[21,-25],[36,-57],[3,-8],[9,-37],[8,-23],[3,-12],[-1,-9],[-2,-10],[2,-8],[5,-6],[6,-4],[0,-16],[1,-4],[2,-3],[5,-5],[1,-4],[1,-5],[-1,-4],[-1,-3],[0,-5],[1,-4],[3,-7],[1,-5],[2,-19],[2,-6],[4,-6],[8,-7],[2,-5],[1,-12],[4,1],[0,-5],[-2,-7],[1,-6],[2,-3],[3,2],[2,3],[3,0],[3,-6],[-8,-10],[-2,-9],[0,-17],[12,-21],[3,-16],[-2,-6],[-6,-7],[-2,-4],[1,-6],[3,-3],[3,0],[2,-4],[1,-7],[-3,-12],[0,-7],[2,-6],[7,-6],[3,-5],[3,-11],[6,-39],[-3,-11],[0,-6],[4,3],[2,3],[2,-1],[3,-7],[0,-2],[8,-35],[2,-51],[-1,-43],[1,-11],[11,-36],[-1,-9],[-12,-32],[-5,-23],[-7,-21],[-16,-39],[-8,-30],[-4,-9],[-8,-12],[-1,-7],[-4,-32],[-1,-17],[1,-15],[2,-8],[4,-12],[2,-8],[-1,-14],[-6,-40],[0,-18],[2,-22],[3,-21],[3,-17],[2,-4],[2,-3],[4,-6],[3,-6],[2,-19],[2,-6],[1,2],[6,8],[18,16],[12,17],[8,7],[15,4],[12,-9],[11,-14],[37,-15],[8,0],[25,13],[4,1],[7,-2],[4,0],[24,12],[12,1],[7,-2],[13,-12],[24,-1],[16,-9],[6,0],[7,5],[15,20],[6,10],[3,10],[1,11],[-1,11],[-2,27],[0,9],[4,6],[7,6],[9,3],[27,0],[17,8],[17,19],[14,27],[10,32],[9,47],[5,21],[12,22],[3,12],[2,3],[13,5],[4,2],[7,7],[14,27],[10,27],[6,10],[9,3],[12,-5],[5,3],[5,16],[5,20],[3,8],[5,8],[3,5],[1,1],[11,35],[1,6],[-2,6],[0,6],[3,4],[8,6],[3,4],[2,7],[2,10],[1,14],[-1,14],[-1,7],[-4,11],[3,10],[6,9],[4,9],[3,10],[0,3],[-2,9],[-2,6],[-2,1],[-1,2],[0,8],[2,13],[4,12],[12,28],[2,6],[0,6],[1,9],[-1,6],[-1,5],[1,5],[4,6],[2,5],[-1,7],[-3,6],[-2,6],[1,5],[0,5],[3,9],[5,36],[2,6],[7,6],[3,7],[5,23],[2,7],[2,5],[3,4],[4,3],[3,4],[1,5],[1,5],[1,5],[11,21],[7,7],[6,-2],[2,-5],[2,-6],[1,-3],[4,4],[2,4],[21,19],[13,8],[14,2],[15,-6],[13,-9],[4,-2],[5,1],[9,6],[4,2],[4,-3],[2,-5],[5,-12],[3,-8],[3,-4],[8,-7],[7,-8],[30,-45],[2,-6],[3,-7],[16,-9],[2,-5],[3,-12],[2,-5],[3,-3],[5,-4],[3,-3],[10,-27],[13,-17],[4,-12],[5,-6],[15,7],[3,-2],[3,-3],[3,-5],[0,-4],[-2,-6],[1,-2],[6,1],[28,15],[15,1],[12,-14],[20,-44],[11,-17],[14,-4],[8,3],[5,5],[6,1],[12,-9],[21,-15],[15,-19],[10,-4],[20,4],[9,-4],[8,-4],[8,2],[17,9],[5,4],[17,25],[13,11],[10,3],[11,-3],[13,-8],[11,-4],[58,12],[20,19],[36,54],[6,36],[12,57],[3,14],[9,77],[24,105],[6,40],[9,29],[0,22],[8,36],[3,19],[1,24],[-3,43],[0,14],[2,3],[2,1],[9,6],[14,-1],[4,4],[9,13],[43,26],[31,19],[13,4],[5,-1],[6,-2],[5,-1],[6,-2],[18,36],[2,7],[8,42],[7,18],[8,12],[18,23],[17,34],[2,9],[6,6],[25,16],[5,6],[5,8],[3,11],[5,52],[1,26],[19,157],[1,16],[-2,12],[8,29],[0,4],[-1,6],[1,11],[6,19],[5,24],[2,5],[3,-3],[2,-7],[2,-6],[5,-1],[4,6],[0,9],[-2,10],[0,12],[1,-2],[2,-2],[1,5],[2,4],[5,7],[-2,0],[2,7],[3,5],[3,0],[3,-4],[2,7],[-2,4],[-2,4],[-1,7],[1,5],[3,1],[3,-3],[2,-5],[1,4],[2,5],[1,3],[2,-4],[2,-3],[3,1],[3,2],[-4,11],[3,7],[10,7],[11,10],[5,7],[4,9],[7,20],[4,7],[3,-18],[3,3],[2,7],[1,3],[3,3],[4,3],[3,-1],[-2,-9],[4,-4],[2,4],[3,7],[2,6],[4,2],[11,1],[6,4],[6,7],[4,11],[2,13],[-1,4],[-1,5],[0,4],[1,1],[1,1],[1,3],[0,3],[0,3],[2,9],[5,12],[2,16],[3,0],[4,-4],[4,-2],[3,2],[11,18],[8,-17],[4,-3],[4,4],[1,6],[4,22],[1,1],[2,3],[0,1],[2,1],[-1,2],[-1,3],[-1,1],[0,3],[-1,4],[-1,5],[0,5],[3,-1],[6,-1],[5,3],[-2,11],[11,5],[11,10],[10,13],[4,17],[-2,25],[0,13],[3,6],[5,2],[6,4],[6,5],[3,5],[5,9],[3,12],[1,13],[-2,13],[0,6],[5,5],[7,4],[4,3],[1,4],[2,9],[1,3],[2,3],[3,1],[3,2],[2,5],[2,7],[0,5],[0,5],[-1,7],[1,8],[1,5],[9,22],[2,4],[3,1],[7,2],[3,3],[10,23],[4,7],[10,12],[11,5],[23,4],[17,-9],[5,2],[6,11],[5,1],[5,-1],[7,0],[10,6],[20,23],[12,7],[7,2],[5,3],[4,6],[2,12],[2,7],[7,1],[12,-3],[5,8],[6,24],[3,5],[1,7],[-2,41],[6,17],[6,11],[4,5],[0,3],[6,15],[2,2],[34,4],[5,4],[4,8],[6,7],[7,2],[15,-7],[8,-1],[5,3]],[[58152,37330],[2,-2],[2,-1],[4,0],[6,6],[10,11],[6,3],[14,-7],[7,-1],[3,6],[2,9],[5,3],[10,-2],[10,9],[6,2],[5,-7],[3,3],[19,1],[5,-3],[17,-21],[9,-4],[7,-7],[10,-2],[4,-2],[8,-10],[2,-2],[6,-3],[3,-2],[5,-12],[1,-2],[0,-2],[9,-2],[4,-4],[8,-11],[6,-7],[5,-1],[12,4],[7,-1],[6,-3],[4,-6],[4,-6],[8,-13],[10,-4],[10,1],[11,3],[6,4],[10,9],[5,3],[6,1],[18,-5],[8,1],[2,-2],[5,-6],[1,-1],[5,3],[7,10],[6,4],[30,5],[9,7],[9,-5],[16,-3],[31,-14],[9,-9],[5,-2],[2,2],[3,1],[9,8],[4,2],[3,-4],[6,-14],[1,-3],[2,-1],[5,-5],[2,-2],[2,0],[5,4],[3,0],[2,-5],[7,-18]],[[58691,37206],[-3,-11],[12,-76],[15,-88],[14,-88],[11,-70],[20,-117],[1,-18],[-6,-135],[2,-25],[5,-21],[27,-56],[5,-22],[11,-74],[11,-52],[4,-12],[6,-10],[17,-26],[4,-7],[1,-10],[0,-10],[2,-93],[2,-25],[16,-67],[10,-42],[7,-45],[1,-46],[-2,-41],[0,-82],[0,-100],[0,-71],[1,-94],[0,-128],[-5,-29],[-1,-15],[0,-20],[1,-18],[3,-12],[2,-13],[2,-37],[0,-13],[-1,-8],[-2,-3],[-3,-4],[-3,-6],[-2,-7],[-12,-60],[-2,-16],[1,-18],[11,-68]],[[58874,35097],[-16,-15],[-8,-4],[-8,5],[-24,30],[-5,6],[-25,32],[-29,36],[-30,37],[-7,4],[-8,0],[-10,-5],[-8,-7],[-28,-48],[-24,-43],[-4,-12],[-4,-31],[-15,-69],[-19,-65],[-20,-49],[-26,-62],[-6,-45],[1,-63],[0,-81],[3,-41],[2,-14],[4,1],[5,1],[5,5],[4,7],[3,8],[2,-8],[4,-27],[4,-11],[8,-16],[3,-9],[2,-12],[-1,-14],[-3,-24],[2,-14],[6,-21],[28,-49],[14,-38],[4,-8],[4,-6],[24,-16],[10,-6],[22,-14],[28,-19],[19,-7],[30,-1],[41,-1],[27,-1],[24,0],[0,7],[0,7],[-2,6],[-2,7],[-1,9],[-1,43],[0,12],[-1,36],[5,55],[4,48],[5,53],[0,17],[18,0],[5,-1],[6,-14],[5,-3]],[[58920,34575],[8,-4],[14,3],[8,0],[20,-6],[16,-5],[33,1],[35,2],[39,3],[43,2]],[[59136,34571],[-3,-24],[-4,-77],[-5,-38],[-1,-13],[-2,-12],[-9,-27],[-1,-5],[-1,-17],[-1,-5],[-3,-9],[-1,-16],[-29,-156],[-19,-174],[0,-13],[-1,-6],[-3,-14],[0,-7],[0,-7],[1,-11],[0,-6],[-13,-148],[-2,-11],[-23,-69],[-2,-9],[-1,-14],[-3,-12],[-4,-10],[-7,-3],[1,-6],[1,-1],[2,1],[2,2],[2,-21],[-3,-22],[-4,-21],[-3,-19],[-3,-11],[-24,-46],[-4,-5],[-9,-9],[-3,-4],[-3,-7],[-5,-17],[-4,-9],[-30,-49],[-8,12],[-11,-3],[-6,-13],[6,-16],[2,5],[4,6],[4,5],[5,1],[-6,-20],[-10,-16],[-35,-35],[-10,-4],[-10,1],[-13,4],[1,-5],[0,-3],[1,-2],[2,-2],[0,-4],[-9,-10],[-54,-115],[-13,-22],[-4,-4],[-2,-3],[0,-3],[-2,-11],[-1,-2],[-3,-5],[-11,-28],[-4,-6],[-9,-11],[-4,-7],[-1,-5],[-2,-13],[-3,-4],[-3,-3],[-2,-5],[-2,-11],[-37,-93],[-36,-136],[-3,-24],[3,-23],[-11,0],[-3,-4],[-1,-16],[4,4],[10,6],[3,7],[0,-5],[0,-4],[-1,-4],[-3,-8],[-7,-16],[-29,-49],[-8,-18],[-13,-44],[-16,-67],[-40,-132],[-6,-24],[-1,-9],[-2,-8],[-13,-27],[-47,-161],[-8,-21],[-5,-9],[-4,-3],[-3,-6],[-9,-35],[-26,-63],[-20,-50],[-8,-10],[-9,-35],[-14,-32],[-41,-71],[-5,-4],[-17,-9],[-6,-6],[-6,-8],[-2,-10],[-17,-39],[-6,-4],[-3,-4],[-2,-11],[-2,-5],[-2,-3],[-1,-1],[-7,-3],[-5,-8],[-8,-18],[-5,-4],[-11,-8],[-7,-9],[-2,-1],[-3,-1],[-3,-1],[-1,0],[-3,0],[-2,0],[-1,-4],[0,-3],[1,-3],[0,-2],[-5,-23],[-8,-8],[-2,-4],[-1,-14],[-3,-8],[-9,-12],[-9,-18],[-4,-11],[-2,-10],[-1,-6],[-5,-16],[-3,-3],[-1,-1],[0,-3],[-1,-7],[-1,-2],[-18,-15],[-3,-8],[-1,-9],[-3,-11],[-7,-22],[-34,-67],[-29,-71],[-15,-17],[-2,-6],[-38,-62],[-6,-17],[-2,-4],[-5,-4],[-2,-3],[-11,-20],[-5,-12],[-2,-11],[-1,-7],[-31,-44],[-7,-7],[-9,-14],[-5,-4],[-1,-9],[-6,-9],[-14,-14],[-13,-17],[-8,-8],[-16,-8],[-7,-12],[-5,-17],[-2,-17],[-3,-13],[-6,-12],[-28,-43],[-9,-5],[-2,-5],[-4,-10],[-3,-4],[-1,-2],[0,-3],[0,-3],[-1,-3],[-14,-11],[-5,-11],[-3,-3],[-6,-1],[-13,-10],[-5,-5],[-25,-47],[-9,-14],[-20,-13],[-3,-5],[-1,-1],[-7,-17],[-2,-2],[-2,-2],[-2,1],[-3,3],[-2,-15],[-7,-13],[-15,-22],[-7,-7],[-1,0],[-1,1],[-1,2],[-1,-1],[-2,-7],[-29,-36],[-3,-6],[-21,-18],[-4,-7],[-2,-4],[-1,-4],[-1,-4],[-1,-5],[-3,-4],[-2,-1],[-6,-2],[-24,-23],[-5,-3],[-7,0],[-6,-4],[-16,-24],[-5,-3],[-14,-3],[-9,-10],[-27,-20],[-3,-1],[-2,-3],[-2,-11],[-2,-2],[-6,-2],[-26,-24],[-11,-5],[-12,-1],[-23,6],[-8,0],[-5,-5],[-5,-1],[-6,5],[-11,11],[-37,13],[-38,4],[-24,-7],[-23,-13],[-21,-18],[-9,-12],[-7,-17],[-5,-19],[-5,-33],[0,-14],[1,-7],[5,-4],[2,-5],[1,-4],[8,-11],[5,-15],[3,-5],[-1,-5],[0,-1],[-1,-2],[-9,5],[-6,-4],[-6,-6],[-7,-3],[-9,1],[-14,9],[-8,2],[-14,-3],[-7,0],[-8,8],[-9,3],[-10,12],[-10,8],[-24,11],[-25,1],[-25,-6],[-16,-9],[-7,-6],[-4,-9],[4,-25],[-3,-11],[-5,-11],[-3,-4],[-13,-21],[-2,-9],[1,-7],[3,-4],[2,-3],[1,-4],[-1,-5],[-4,-7],[-2,-4],[-2,0],[-4,8],[-5,4],[-19,1],[-16,7],[-6,2],[-18,-6],[-5,1],[-24,11],[-12,11],[-10,16],[-5,3],[-34,8],[-5,4],[-4,5],[-18,14],[-49,8],[-6,3],[-12,7],[-30,6],[-49,20],[-13,0],[-45,-19],[-6,-5],[-5,-6],[-5,-8],[-2,-13],[2,-12],[4,-8],[7,-2],[0,-4],[-96,16],[-2,4],[-1,17],[-1,4],[-8,1],[-4,3],[-2,4],[1,-9],[2,-3],[3,-2],[2,-4],[3,-9],[0,-4],[-2,-4],[-1,3],[-4,3],[-8,1],[-4,-2],[-2,-2],[-3,-1],[-4,0],[-23,13],[-8,10],[-4,2],[-3,3],[-2,9],[-1,6],[0,4],[2,2],[4,0],[-4,7],[-6,3],[-13,2],[3,-8],[4,-9],[4,-7],[5,-4],[-5,-3],[-7,2],[-31,20],[-6,1],[-7,0],[-6,-2],[-4,-4],[-15,-21],[-11,-10],[-12,-5],[-26,5],[-12,-1],[-24,-10],[-5,-5],[-5,-6],[-8,-16],[-4,-12],[2,-10],[4,-7],[5,-5],[-4,-6],[-6,-3],[-36,-10],[-10,-8],[-7,-14],[-1,-9],[1,-20],[-2,-6],[-6,-18],[-1,-2],[-17,-17],[-11,-7],[-12,-5],[-12,-1],[-29,11],[-11,11],[-6,3],[-6,-2],[-12,-9],[-9,-3],[-2,-3],[-1,-4],[-2,-4],[-2,-3],[-18,-14],[-12,-3],[-12,2],[-46,30],[-11,4],[-27,5],[-13,-3],[-11,-10],[2,0],[-16,-8],[-5,-4],[7,-3],[7,-9],[3,-12],[-2,-12],[-5,-4],[-49,16],[-39,-10],[-12,-9],[-10,-14],[-15,-36],[-5,-9],[-5,-4],[-4,-1],[-2,-4],[-2,-5],[-2,-6],[-3,-2],[-9,-6],[-4,-6],[-5,-8],[-5,-10],[-1,-10],[-3,1],[-7,-3],[-11,-9],[-21,-26],[-8,-19],[4,-16],[0,-3],[-4,-2],[-8,-9],[-4,-1],[-5,1],[-4,3],[-4,3],[-17,24],[-4,7],[-5,4],[-45,-2],[-4,-2],[-4,-8],[-4,-2],[-3,1],[-2,4],[-1,4],[-2,3],[-14,15],[-21,38],[-14,14],[-5,6],[-4,10],[-5,7],[-7,1],[-6,-3],[-6,-7],[-2,3],[-2,1],[-3,-1],[-2,-3],[1,6],[16,40],[2,7],[-2,16],[-4,19],[-6,18],[-5,12],[-4,5],[-4,2],[-19,-7],[-17,2],[-4,2],[-4,6],[-5,17],[-4,5],[0,4],[7,3],[3,8],[2,13],[3,13],[-5,-5],[-6,-19],[-3,-5],[-21,3],[-4,-1],[-8,-5],[-27,-8],[-6,-7],[-1,-5],[-3,-1],[-3,1],[-2,3],[-3,7],[0,6],[3,7],[-2,20],[0,5],[0,6],[2,3],[1,2],[2,5],[3,12],[-1,8],[-4,21],[0,12],[2,5],[4,5],[4,10],[-12,32],[-4,4],[-17,8],[-26,4],[-25,-2],[-4,-3],[-3,-3],[-10,-8],[-5,-6],[-2,-4],[-3,-6],[-4,-8],[-1,-4],[0,-8],[0,-6],[2,-3],[2,-3],[1,-4],[4,-25],[1,-5],[0,-6],[-3,-39],[1,-12],[5,-7],[-5,-2],[-7,6],[-6,11],[-5,10],[-6,23],[-1,7],[0,4],[1,8],[1,5],[-1,2],[-1,1],[-1,1],[-1,2],[-3,15],[-2,7],[-8,4],[-3,6],[0,8],[0,8],[3,5],[2,1],[2,3],[1,9],[0,8],[1,7],[1,6],[2,6],[-4,-1],[-2,-1],[-2,-2],[-4,11],[0,8],[2,8],[4,9],[4,11],[3,21],[3,13],[9,13],[11,-1],[8,3],[4,22],[-1,11],[-5,15],[-2,8],[0,12],[-8,52],[-7,26],[-1,11],[-3,3],[-13,28],[-4,5],[-3,4],[-1,5],[0,24],[0,13],[-2,10],[-7,20],[-8,15],[-30,38],[3,10],[-2,12],[-7,23],[-3,15],[-7,17],[-1,6],[-3,8],[-12,22],[-5,4],[-6,5],[-4,9],[-3,11],[-3,8],[7,7],[4,1],[3,-2],[2,-7],[2,-6],[2,-6],[3,-3],[-1,-7],[2,-5],[7,-11],[5,-13],[4,-6],[4,-3],[4,5],[-1,6],[-6,11],[-2,5],[0,10],[-1,4],[-1,2],[-3,0],[-2,2],[-6,11],[-2,5],[-1,6],[1,26],[-1,9],[-4,11],[-7,6],[-8,1],[-8,-2],[2,-10],[2,-3],[-3,-1],[-3,-3],[-6,-8],[-3,7],[-1,6],[-1,5],[0,5],[-1,5],[-2,5],[-1,7],[2,9],[-2,4],[-3,17],[-2,14],[0,4],[1,5],[3,7],[1,7],[-1,7],[-7,15],[-1,2],[-1,2],[0,5],[1,1],[2,-1],[2,0],[1,2],[1,2],[4,7],[2,2],[2,0],[0,2],[1,4],[0,4],[1,4],[-1,19],[1,7],[4,5],[7,5],[6,3],[5,-1],[-3,-4],[4,-9],[14,-23],[12,-9],[10,5],[10,13],[33,61],[7,23],[4,22],[6,48],[1,23],[-1,42],[-2,9],[-3,13],[2,10],[6,16],[1,24],[-10,77],[-3,63],[-5,26],[-2,13],[1,26],[-1,12],[-3,12],[-3,9],[-3,10],[-2,8],[0,5],[0,5],[0,6],[-6,41],[-5,20],[-7,20],[-12,30],[-3,9],[0,4],[-13,34],[-13,26],[-2,9],[-2,11],[-4,9],[-9,15],[-11,30],[-8,12],[-3,14],[-3,28],[-4,8],[-11,17],[-2,6],[-2,7],[-15,46],[-1,2],[-3,14],[-1,4],[-4,10],[-6,27],[-3,10],[-19,50],[-15,57],[-2,8],[-2,22],[-3,21],[-17,41],[-7,26],[1,22],[-7,15],[-16,53],[-2,13],[-5,12],[-18,57],[-1,6],[-1,16],[-2,18],[-2,5],[0,16],[-15,47],[-4,20],[-1,23],[-6,48],[-18,75],[-1,21],[-1,3],[-1,3],[-2,4],[0,6],[0,6],[-8,49],[2,0],[-1,8],[0,15],[-1,9],[-7,34],[1,6],[-4,6],[-2,13],[-1,22],[-8,42],[-2,7],[-11,59],[-1,3],[-5,11],[-1,6],[-1,3],[-5,11],[-6,36],[-2,5],[-3,6],[-1,5],[0,14],[-1,6],[-2,8],[-3,14],[-1,14],[2,10],[-4,13],[-18,29],[-3,8],[-4,23],[-2,8],[-13,33],[-18,30],[-3,13],[-3,21],[-2,21],[1,12],[-1,4],[-2,10],[-1,5],[-1,3],[-2,1],[-3,0],[-2,1],[-5,25],[-5,7],[-7,14],[-1,3],[3,4],[2,9],[1,9],[-1,6]],[[58050,33349],[-16,30],[-11,37],[-3,8],[-4,6],[-4,5],[-5,3],[-9,3],[-2,3],[-8,29],[-4,6],[-12,1],[-3,8],[-2,25],[-2,11],[-3,10],[-3,8],[-6,8],[-4,-1],[-16,-21],[-5,-2],[-39,-5],[-5,-4],[-6,-11],[-7,-24],[-6,-9],[-5,-4],[-7,-2],[-6,2],[-6,4],[-3,0],[-15,-3],[-3,2],[-3,-8],[-3,-8],[-8,-21],[-1,-4],[-12,-25],[-11,-26],[-1,-4],[0,-5],[0,-4],[-3,-1],[-7,0],[-3,3],[-3,6],[-3,6],[-5,1],[-4,-4],[-3,-8],[-1,-9],[-3,-9],[-7,-6],[-32,4],[2,-10],[-3,-5],[-4,-3],[-3,-5],[0,-8],[0,-5],[0,-3],[-1,-2],[0,-1],[0,-5],[-1,-2],[-1,0],[-1,1],[-1,-1],[-6,-14],[-3,-7],[-4,-3],[-4,-2],[1,-6],[4,-7],[2,-5],[-2,-1],[-2,-3],[-2,-1],[-1,5],[-2,-5],[1,-10],[0,-4],[-6,-22],[-16,-36],[-2,-2],[-3,-2],[-3,-4],[-2,-5],[0,-5],[2,-14],[0,-7],[-2,-4],[-3,-2],[-11,-7],[-5,-5],[0,-5],[-1,-14],[-1,-5],[-2,-7],[-3,-3],[-3,-1],[-2,-4],[-1,-4],[1,-4],[2,-3],[1,-5],[-1,-7],[-1,-4],[-1,-3],[-12,-23],[-3,-9],[-1,-11],[-2,-2],[-6,0],[-2,-2],[0,-7],[-2,-6],[-2,-5],[0,-2],[-1,-2],[-9,-10],[-6,-5],[-8,-3],[-5,-5],[-3,-2],[-8,-1],[-8,-6],[-1,-2],[-9,-18],[-2,-1],[-2,1],[-1,4],[-1,3],[-2,0],[-2,-2],[-2,-10],[-2,-4],[-2,7],[-3,0],[-2,-6],[-1,-10],[-3,-14],[2,-2],[4,-6],[4,-4],[4,-6],[8,-23],[2,-9],[23,-101],[8,-34],[5,-12],[13,-20],[4,-12],[4,-29],[2,-8],[3,-10],[3,-2],[3,2],[6,0],[5,-2],[2,-4],[0,-6],[-4,-8],[-6,-28],[0,-17],[7,-32],[-1,-9],[3,-1],[6,-3],[3,0],[2,0],[6,5],[4,0],[2,-4],[2,-15],[3,-9],[4,-6],[11,-9],[1,-7],[0,-6],[8,-13],[6,-17],[1,-5],[0,-6],[1,-5],[2,-5],[17,-24],[15,-31],[8,-10],[10,-6],[11,-3],[3,1],[5,5],[3,1],[3,-2],[2,-4],[3,-4],[2,-4],[6,-5],[6,-3],[32,-6],[7,-5],[0,12],[-1,9],[0,10],[2,12],[2,5],[2,3],[2,3],[3,3],[2,6],[1,3],[4,28],[1,5],[-1,5],[-3,11],[-1,4],[2,7],[24,35],[3,8],[2,13],[0,13],[-4,5],[-4,4],[-3,8],[1,11],[4,9],[6,6],[5,4],[8,2],[3,3],[2,3],[3,9],[3,4],[4,8],[5,17],[2,8],[6,9],[7,2],[13,-4],[7,5],[12,13],[4,2],[5,-1],[13,-10],[10,0],[25,18],[18,7],[18,14],[32,39],[11,13],[22,25],[4,3],[7,4],[3,3],[2,5],[-1,6],[-3,11],[0,8],[0,6],[-1,4],[-4,5],[-4,11],[1,14],[1,15],[1,14],[0,1],[5,18],[3,17],[5,14],[8,12],[21,13],[3,7],[0,10],[1,9],[4,6],[-4,9],[-2,14],[0,3],[1,12],[2,13],[5,11],[8,6],[8,5],[8,6],[3,5],[2,5],[2,6],[-1,9],[1,9],[5,14],[1,9],[-1,3],[-4,7],[-1,4],[0,4],[0,9],[0,4],[-3,12],[-8,20],[-3,21],[-2,10],[-4,8],[-4,6],[-3,7],[-1,34],[-9,7],[-11,0],[-9,6],[-23,45],[-10,8],[-6,3],[-4,5],[-1,7],[0,12],[-3,6],[-6,5],[-6,4],[-4,-1]],[[60461,22737],[9,4],[10,-2],[25,-11],[13,-23],[8,-4],[-3,-16],[-6,-14],[-7,-11],[-9,-4],[-2,1],[-5,3],[-31,2],[-4,-2],[-10,3],[-5,3],[-4,6],[-1,5],[-2,8],[0,8],[5,7],[6,13],[3,3],[1,3],[6,14],[3,4]],[[60516,22851],[1,13],[10,9],[13,0],[9,-10],[-1,-17],[-10,-6],[-13,3],[-9,8]],[[32495,61149],[-19,15],[-6,2]],[[32470,61166],[0,3],[-2,-1],[-5,-3],[-1,0],[-2,3],[-1,3],[1,2],[8,1],[5,2],[3,6],[2,9],[2,4],[5,4],[6,3],[4,0],[0,-13],[2,-18],[0,-17],[-2,-5]],[[32495,61149],[-4,-8],[-18,10],[-4,4],[-2,5],[3,5],[0,1]],[[65627,65471],[9,-2],[5,-16],[11,-4],[-1,-16],[-8,-8],[-7,-4],[-3,-6],[-8,-11],[-5,-4],[-4,3],[-3,3],[-1,6],[1,14],[7,7],[3,7],[-2,5],[-1,5],[0,10],[7,11]],[[65628,65423],[6,3],[1,10],[-4,6],[-2,0],[-2,-4],[1,-15]],[[65576,65903],[0,1],[2,5],[2,21],[19,56],[6,27],[3,5],[5,5],[0,-3],[0,-8],[3,-10],[-1,-3],[-1,-9],[2,0],[3,6],[7,0],[1,4],[2,2],[4,-3],[3,-6],[1,-11],[2,7],[2,-1],[2,-2],[3,0],[8,11],[3,1],[8,-4],[2,0],[1,5],[-1,6],[-3,4],[-1,2],[-6,1],[-3,-1],[-3,-2],[-1,-4],[-3,-5],[-3,-4],[-3,2],[0,7],[2,25],[0,9],[8,-12],[3,-3],[2,9],[-1,4],[-3,6],[-4,6],[-4,2],[2,5],[1,1],[2,0],[1,2],[4,8],[1,7],[0,13],[1,9],[2,0],[3,-16],[5,5],[1,3],[2,-5],[-1,-4],[0,-2],[0,-1],[1,-4],[3,4],[1,-2],[2,-4],[2,-3],[6,-3],[4,-1],[3,0],[0,3],[-1,7],[-1,3],[6,4],[3,-15],[-1,-6],[-4,-1],[-7,1],[-4,-3],[-9,-14],[-4,-6],[0,-3],[-2,-7],[6,-12],[3,-5],[4,-2],[2,2],[3,5],[3,1],[3,-8],[-5,-18],[-2,-2],[-2,11],[-3,0],[-3,0],[1,-5],[0,-4],[0,-3],[-1,-4],[3,-7],[5,-5],[3,-6],[2,-10],[-3,0],[-3,1],[-3,3],[-2,4],[-4,-4],[-4,3],[-2,7],[0,10],[-1,-2],[-5,-4],[-1,-2],[0,6],[0,5],[1,4],[3,1],[-7,2],[-7,-7],[-4,-11],[2,-8],[-1,-6],[-1,-8],[1,-7],[1,-8],[3,12],[2,7],[3,2],[2,-4],[0,-7],[-1,-8],[-1,-6],[5,-4],[25,1],[-2,-8],[-4,-7],[-9,-10],[-8,-6],[-3,-5],[1,-10],[7,8],[4,-7],[0,-11],[-6,-8],[1,-6],[4,-10],[1,-4],[3,-3],[6,-3],[-2,-3],[-1,-2],[-1,-8],[-4,5],[-5,2],[-4,-1],[-3,-6],[5,-14],[-2,-13],[-5,-12],[-3,-13],[0,-4],[0,-14],[-6,-10],[-4,-16],[-3,-8],[-4,-5],[0,13],[-4,-13],[-4,-19],[-2,-22],[2,-19],[1,-7]],[[65632,65647],[-11,-7],[-5,-1],[-4,2],[-2,4],[-3,12],[-2,4],[-7,2],[-1,2],[-2,7],[-1,27],[0,10],[3,6],[4,5],[2,8],[-2,8],[-6,16],[-1,10],[1,9],[5,15],[2,8],[1,53],[2,18],[1,11],[-2,12],[-4,23],[-3,1],[-14,-8],[-7,-1]],[[65661,65262],[7,-48],[17,-72],[3,-6],[2,-14],[2,-25],[33,-120],[6,-15],[16,-27],[31,-73],[6,-19],[2,-11],[3,-17],[27,-64],[33,-55],[26,-41],[9,-11],[39,-30],[51,-26],[22,-19],[16,-10],[11,-4],[7,-1],[19,2],[5,-2],[8,-21],[3,-4],[6,-4],[8,-7],[7,-2],[36,4],[13,-2],[12,-5],[17,-14],[5,-2],[5,-4],[10,-21],[5,-7],[10,-7],[12,-3],[14,1],[11,4],[6,5],[3,4],[2,10],[2,1],[5,-3],[12,-1],[7,-2],[5,-6],[3,-7],[5,-24],[3,-5],[1,-1],[1,-3],[2,-2],[1,-2],[2,1],[2,0],[1,-1],[4,-7],[3,-5],[1,-4],[2,0],[2,8],[0,-4],[1,-2],[0,-2],[1,-4],[2,0],[0,2],[1,6],[2,-3],[1,-1],[3,4],[7,-18],[2,-10],[-1,-9],[2,-8],[3,-27],[3,-11],[17,-30],[10,-9],[4,-11],[4,-25],[3,-10],[8,-16],[5,-12],[2,-35],[18,-35],[1,-5],[1,-18],[2,-4],[1,-3],[8,-12],[14,-17],[10,-14],[7,-16],[5,-19],[10,-50],[1,-9],[2,-11],[5,-8],[10,-11],[11,-35],[2,-9],[3,-9],[12,-22],[9,-9],[6,-11],[6,-7],[2,-3],[0,-7],[-1,-1],[-3,1],[-2,2],[1,-8],[2,-4],[3,-1],[4,1],[21,15],[8,-6],[11,-17],[2,0],[4,1],[2,-1],[0,-3],[1,-6],[1,-3],[0,-2],[-1,-2],[0,-4],[2,-4],[2,-2],[1,-1],[2,-1],[2,0],[1,3],[-2,6],[-4,9],[1,8],[3,0],[6,2],[7,-4],[6,-15],[4,-20],[2,-18],[-6,-97],[-3,-26],[-6,-23],[-16,-45],[-8,-14],[-5,-10],[-2,-10],[0,-14],[-6,-28],[-1,-29],[-3,-12],[-11,-9],[-3,-10],[-4,-22],[-22,-59],[-9,-53],[-5,-25],[-26,-82],[-2,-19],[-1,-5],[-2,-5],[-40,-34],[-8,-10],[-31,-51],[-37,-79],[-12,-35],[-2,-6],[-4,-5],[-5,-12],[-8,-32],[-1,-6],[-1,-21],[-1,-6],[-1,-5],[-16,-26],[1,-12],[-5,-9],[-12,-11],[1,-2],[-2,-10],[-1,-1],[-2,-3],[-1,-3],[0,-4],[0,-5],[2,-6],[2,-4],[3,-3],[4,4],[5,8],[3,4],[0,-12],[-3,-8],[-5,-7],[-5,-3],[-3,6],[-1,0],[-2,-8],[-2,-16],[-2,-9],[-2,-4],[-7,-7],[-3,-5],[-3,-12],[-3,-15],[-2,-16],[-1,-16],[-7,-28],[-4,-21],[0,-9],[-1,-5],[-2,-20],[-1,-4],[-2,-1],[-3,-3],[-4,-4],[-3,-4],[-2,-16],[-6,-7],[-8,1],[-7,5],[-5,5],[-4,3],[-9,1],[-3,-2],[-7,-5],[-4,-2],[1,5],[1,3],[-1,2],[-10,5],[-5,2],[-6,5],[-1,11],[4,25],[0,-8],[1,-7],[2,-5],[3,-5],[1,12],[-3,26],[3,13],[3,11],[3,17],[1,18],[-3,13],[-5,4],[-8,-2],[-9,-5],[-8,-11],[-12,-6],[-3,-5],[-2,-6],[-5,-27],[0,-7],[2,-6],[1,-6],[-3,-4],[-3,-3],[-7,-3],[-5,-6],[-5,-6],[-7,-13],[-2,-6],[-2,-6],[0,-8],[0,-6],[4,-9],[1,-5],[-2,-13],[-5,-8],[-12,-10],[-5,-6],[-5,-8],[-4,-10],[-1,-10],[-2,-7],[-3,-8],[-3,-10],[0,-14],[6,-24],[1,-15],[-4,-21],[-5,-33],[0,-8],[0,-18],[-7,-31],[-4,-33],[-4,-15],[-17,-52],[-3,-16],[1,-18],[2,-7],[3,-5],[2,-6],[1,-9],[0,-18],[-1,-8],[-1,-8],[-2,-15],[-1,-12],[2,-12],[14,-44],[2,-10],[2,-17],[0,-16],[-2,-14],[-4,-28],[-1,-12],[0,-14],[6,-30],[2,-9],[7,-17],[2,-9],[-2,-25],[-1,-12],[11,-39],[0,-8],[-7,-14],[-4,-7],[-1,-1],[-12,-3],[-2,-3],[-1,-4],[-3,-5],[-3,-4],[-3,-1],[-58,5],[-16,-5],[-66,-21],[-34,-19],[-47,-40],[-18,-26],[-12,-12],[-6,-10],[-3,-13],[-2,-6],[-30,-60],[-5,-21],[-1,-28],[2,-20],[0,-7],[-1,-7],[-4,-11],[-2,-10],[-2,-12],[-1,-6],[0,-25],[-2,-25],[-15,-68],[4,-12],[0,-12],[-4,-12],[-6,-9],[-12,-10],[-6,-7],[-8,-31],[-2,-3],[-4,-3],[-2,-2],[-13,-29],[0,-5],[0,-13],[-3,-1],[-44,11],[-5,-2],[-9,-8],[-6,-2],[-23,4],[-6,-2],[-18,-15],[-10,-5],[-71,-6],[-28,-15],[-7,-1],[-2,-2],[-1,-2],[-1,-3],[-2,-2],[-5,0],[-1,0],[-9,-5],[-2,-3],[-4,-9],[-4,-24],[-3,-9],[-4,-10],[-1,-5],[-4,-24],[-1,-4],[-4,-9],[-26,-44],[-8,-29],[-1,-12],[-1,-13],[1,-16],[3,-8],[9,-11],[6,-11],[2,-13],[0,-27],[-2,-11],[-11,-32],[-1,-5],[-1,-8],[1,-8],[1,-3],[3,-2],[0,-4],[-2,-8],[-1,-3],[-7,-8],[-3,-3],[-2,-5],[-1,-5],[-1,-10],[-3,-9],[1,-3],[-2,-7],[-9,-5],[-4,-5],[-1,-5],[-2,-8],[-2,-8],[-4,-3],[-11,-27],[-12,-18],[-2,0],[-3,9],[-3,-4],[-3,-9],[-4,-4],[-4,-2],[-4,-3],[-4,-1],[-4,2],[-4,-10],[-5,-3],[-12,-3],[-9,-7],[-5,0],[-3,7],[-3,-4],[-5,2],[-3,-2],[-10,12],[-2,-4],[-2,11],[-1,10],[-3,8],[-12,4],[-8,6],[-3,1],[-3,-1],[-6,-2],[-4,-1],[-9,4],[-4,0],[-3,-2],[-6,-5],[-1,-1],[-13,8],[-7,1],[-6,-9],[-3,3],[-2,1],[-52,-12],[-22,0],[-5,-3],[-12,-12],[-3,-5],[-1,-5],[0,-5],[1,-4],[0,-5],[-1,-5],[-4,-7],[-1,-4],[-3,-6],[-7,-3],[-13,-1],[-16,-7],[-6,-1],[-5,-4],[-5,-6],[-6,-5],[-5,3],[-5,-7],[-7,-12],[-7,-13],[-2,-11],[-3,-7],[-5,-6],[-9,-9],[-10,-5],[-44,-2],[-23,-7],[-46,-30],[-23,-24]],[[64747,60326],[-18,80],[-17,80],[-17,80],[-18,80],[-11,50],[-2,8],[-5,3],[-11,2],[-4,5],[1,0],[1,1],[1,0],[-9,42],[-12,57],[-12,58],[-12,57],[-12,57],[-12,57],[-11,57],[-12,58],[-12,57],[-12,57],[-12,57],[-12,57],[-12,57],[-12,58],[-12,57],[-11,57],[-12,57],[-8,38],[-2,9]],[[64438,61719],[31,22],[47,34],[48,34],[47,33],[48,34],[47,34],[48,34],[48,34],[47,33],[48,34],[47,34],[48,34],[47,33],[48,34],[47,34],[48,34],[47,34],[42,29],[9,57],[2,12],[5,33],[8,52],[10,66],[13,79],[13,88],[15,94],[15,97],[12,75],[3,22],[15,95],[14,88],[12,78],[10,67],[8,51],[6,33],[1,12],[2,9],[10,67],[0,14],[-3,12],[-15,49],[-22,74],[-22,74],[-23,74],[-22,74],[-18,58]],[[65329,63915],[3,86],[-2,87],[1,17],[9,57],[26,92],[6,36],[6,59],[3,20],[6,15],[10,22],[4,12],[9,73],[3,10],[12,38],[2,8],[-1,45],[-1,17],[-5,13],[-10,11],[-5,9],[-2,10],[1,9],[12,4],[12,9],[5,6],[8,9],[8,6],[8,3],[9,-1],[9,-3],[4,0],[5,4],[5,1],[7,-11],[5,-1],[33,26],[17,9],[3,9],[-10,36],[-3,25],[-5,22],[-8,6],[-16,-12],[-4,1],[-18,7],[-3,3],[0,9],[2,11],[11,37],[1,9],[1,28],[0,5],[-2,6],[-6,7],[-2,4],[-1,9],[1,32],[-3,25],[-1,13],[3,8],[4,8],[2,20],[7,14],[-1,11],[-4,18],[-1,7],[-1,11],[2,22],[0,11],[-3,45],[3,19],[9,20],[7,14],[2,3],[9,11],[11,6],[11,-3],[1,-1],[7,-9],[4,-17],[2,-27],[1,-12],[-7,9],[-3,4],[-4,2],[-5,-3],[-1,-8],[2,-9],[10,-18],[9,-41],[8,-13],[4,-1],[1,0],[5,0],[6,3],[2,6],[2,11],[6,14],[4,22],[1,0],[4,4],[10,2],[5,5],[9,17],[2,3],[8,11],[1,6],[0,4],[1,11],[1,19],[1,3],[1,3],[15,3]],[[65509,60828],[-1,6],[0,1],[2,4],[3,3],[4,3],[5,-7],[3,-2],[-5,-5],[-8,0],[-3,-3]],[[65570,60869],[1,-8],[0,-1],[3,-7],[3,-6],[4,-2],[-8,-12],[-5,-4],[-4,-1],[-13,1],[-4,3],[-2,13],[7,9],[11,8],[7,7]],[[66362,62685],[1,-13],[1,-10],[9,-31],[2,-9],[-1,-7],[-2,-4],[-11,-16],[-11,-13],[-5,-9],[-7,-20],[-3,-14],[-3,-29],[-3,-10],[0,-6],[0,-1],[1,-5],[0,-4],[-1,-4],[-10,-19],[-5,-14],[-2,-6],[-3,-1],[-3,-1],[-4,-2],[-1,-4],[-1,-6],[-2,-7],[-3,-5],[-3,0],[-2,5],[-1,5],[-1,18],[-1,19],[1,10],[0,1],[-1,5],[2,47],[2,7],[3,9],[1,3],[5,7],[2,2],[1,1],[0,1],[1,11],[1,3],[5,4],[4,0],[5,2],[5,6],[2,7],[1,3],[1,7],[1,1],[1,23],[1,11],[3,9],[13,35],[5,22],[4,19],[2,7],[4,2],[4,-9],[0,-1],[-1,-10],[-2,-11],[-1,-11]],[[69940,74152],[1,-6],[-6,-38],[-3,-7],[-4,-2],[-8,4],[-5,4],[-6,7],[-3,9],[5,9],[7,0],[5,4],[10,13],[7,3]],[[69710,74299],[-6,1],[-24,-3],[-40,-20],[-12,-2],[-11,1],[-12,14],[-5,25],[-3,27],[-8,20],[-6,4],[-5,-1],[-5,-3],[-6,0],[-6,2],[-14,10],[4,21],[-1,2],[-2,5],[-1,1],[-4,9],[0,1],[-1,3],[0,12],[4,12],[9,9],[19,7],[2,2],[3,6],[7,18],[4,6],[4,3],[4,2],[4,3],[3,5],[10,20],[17,22],[4,6],[4,5],[3,2],[4,2],[1,2],[1,3],[0,3],[5,4],[0,5],[3,20],[-11,10],[-25,10],[-5,9],[0,10],[2,7],[6,1],[10,-13],[5,-4],[1,11],[-3,6],[-50,92],[-9,13],[-1,1],[-1,2],[-5,10],[-3,6],[-13,8],[-10,-4],[-8,-63],[-15,-29],[-20,-20],[-29,-18],[-27,-33],[-51,-26],[-6,-5],[-5,-7],[-12,-24],[-7,-10],[-7,-4],[-9,6],[-3,5],[-3,6],[-5,14],[-3,6],[-7,7],[-3,5],[-11,28],[-7,9],[-8,1],[-5,5],[-3,6],[-4,5],[-5,1],[-9,-5],[-4,-4],[-4,-6],[-7,-14],[-5,-16],[-2,-18],[0,-21],[2,-32],[-1,-8],[-4,-4],[-17,-2],[-10,-11],[0,-12],[11,-31],[6,-34],[3,-10],[7,-21],[3,-12],[2,-13],[-2,-29],[-9,-2],[-11,6],[-7,-1],[1,-18],[20,-29],[0,-14],[-10,-8],[-14,1],[-25,12],[-10,8],[-8,7],[-7,2],[-45,-12],[-5,-3],[-10,-10],[-7,-1],[-16,5],[-6,-1],[-15,-7],[-12,-5],[-5,-6],[7,-13],[12,-13],[10,-6],[3,0],[65,21],[13,-15],[1,-8],[1,-9],[0,-9],[-2,-7],[-7,-2],[-20,5],[-5,-3],[-10,-14],[-4,-2],[-6,19],[-5,6],[-3,-11],[0,-6],[5,-6],[1,-5],[0,-12],[0,-5],[1,-6],[25,-56],[1,-13],[-12,-8],[-6,16],[-5,26],[-5,20],[-6,7],[-2,-5],[1,-11],[3,-13],[6,-21],[0,-9],[-3,-11],[-2,-1],[-2,-1],[-1,-1],[-2,-9],[0,-1],[0,-3],[-1,-6],[-2,-4],[-4,4],[-7,19],[-4,6],[-10,-14],[-4,3],[-3,0],[-3,-13],[-3,-95],[-1,-14],[-4,-12],[-6,-12],[-12,-12],[-4,-9],[1,-3],[2,-8],[-6,-4],[-17,-8],[-13,-2],[-14,2],[-23,13],[-41,2],[-95,41],[-13,0],[-11,-5],[-25,-31],[-23,-6],[-5,-8],[2,-27],[-1,-2],[-1,-1],[-2,-2],[-1,0],[-7,2],[-4,-1],[-3,-6],[-3,-23],[-2,-23],[0,-22],[-4,-20],[-2,-20],[-2,-1],[-2,1],[-3,-1],[-3,-4],[-1,-3],[-1,-4],[0,-8],[2,-24],[7,-12],[34,-20],[23,-1],[11,-7],[1,-3],[2,-6],[2,-3],[1,-1],[5,2],[2,-1],[2,-7],[1,-8],[-3,-46],[1,-15],[5,-8],[36,-10],[7,1],[21,11],[4,3],[4,2],[4,0],[5,-3],[2,-2],[4,-7],[5,-1],[4,3],[5,5],[2,1],[2,1],[3,-1],[2,-1],[4,-8],[10,-35],[5,-13],[3,-7],[2,-12],[0,-13],[-2,-9],[-4,-8],[-4,-7],[-5,-4],[-6,-3],[-5,1],[-3,-4],[-1,-12],[1,-6],[1,-6],[1,-5],[0,-7],[-1,-3],[-7,-9],[-2,-9],[0,-10],[4,-23],[1,-12],[-1,-34],[1,-13],[2,-7],[6,-18],[2,-9],[0,-18],[1,-9],[3,-8],[11,-18],[10,-31],[5,-9],[14,-13],[22,-33],[7,-18],[1,-23],[-4,-35],[-7,-33],[-11,-27],[-3,-12],[-2,-10],[-2,-9],[-2,-7],[-3,-4],[-1,-2],[-4,-2],[-13,-3],[-9,-5],[-5,-8],[-12,-61],[-8,-27],[-20,-48],[-15,-24],[-14,-31],[-12,-35],[-8,-36],[-1,-25],[5,-47],[1,-25],[-1,-21],[-3,-20],[-5,-18],[-2,-9]],[[68827,72493],[-1,12],[-3,7],[-5,5],[-6,3],[-10,-1],[-3,1],[-3,3],[-7,7],[-3,2],[-3,-1],[-5,-2],[-3,-1],[-2,-3],[-1,-6],[-3,-5],[-3,-2],[-4,7],[-5,24],[-7,6],[-6,-3],[-5,-7],[-9,-15],[-5,-7],[-6,-5],[-6,-3],[-7,-1],[-7,-3],[-10,-12],[-7,-2],[-6,5],[-3,9],[-2,11],[-3,10],[-5,9],[-13,8],[-5,6],[-3,9],[-5,25],[-3,6],[-6,3],[-11,13],[-5,4],[-13,1],[-26,-11],[-36,-2],[-3,-2],[-6,-8],[-3,-2],[-7,1],[-3,1],[-19,13],[-7,1],[-7,-1],[-5,-3]],[[68477,72597],[-7,9],[1,11],[4,10],[5,9],[4,13],[-1,9],[-4,8],[-5,8],[-4,17],[1,21],[6,40],[1,23],[-2,47],[1,23],[9,29],[16,34],[10,34],[-3,12],[-3,16],[-9,12],[-10,8],[-11,5],[-21,0],[-9,4],[-28,22],[-13,28],[-8,13],[-9,7],[-18,9],[-17,23],[-8,7],[-19,5],[-28,22],[-9,2],[-8,-6],[-13,-18],[-8,-6],[-19,-3],[-18,10],[-46,52],[-28,32],[-37,42],[-26,40],[-37,56],[-19,20],[-41,24],[-36,35],[-58,82],[-16,34],[-8,18],[-7,7],[-8,-2],[-22,-18],[-7,-2],[-8,2],[-8,7],[-45,53],[-39,47],[-31,36],[-17,29],[-29,69],[-18,28],[-39,45],[-91,108],[-45,53],[-38,44],[-33,38],[-16,27],[-3,3],[-20,41],[-3,16],[-5,33],[0,13],[1,13],[2,11],[2,11],[-1,12],[-9,30],[-1,13],[0,15],[-1,12],[-3,11],[-7,23],[-1,11],[-1,25],[-3,5],[-23,22],[-13,6],[-6,8],[-1,4],[-1,1],[-2,14],[-2,5],[-10,22],[-4,13],[-6,36],[-3,9],[-9,16],[-3,8],[-2,12],[-3,27],[-9,50],[-3,12],[2,4],[-2,9],[0,42],[-1,12],[-3,10],[-20,55],[-5,9],[-62,74],[-25,17],[-27,11],[-10,2],[-6,-5],[-4,-12],[-3,-21],[-6,-6],[-6,-19],[-7,-14],[-10,-7],[-11,-1],[-11,7],[-29,33],[-4,0],[-17,-4],[-1,5],[-1,6],[-1,1],[-2,-5],[-4,-10],[-1,-3],[-2,-2],[-14,22],[-19,7],[-56,-5],[-34,-18],[-16,-1],[-10,5],[-8,9],[-15,24],[-17,20],[-26,22],[-31,25],[-8,13],[-2,14],[4,47],[2,10],[4,9],[4,6],[12,9],[4,8],[-3,11],[-18,42],[-9,26],[-2,21],[7,16],[7,8],[9,2],[11,-6],[9,-9],[6,-4],[4,1],[3,7],[0,9],[-3,8],[-3,7],[-4,5],[-13,13],[-5,6],[-3,8],[-6,16],[-8,11],[-30,18],[-14,-1],[-4,3],[-3,8],[0,8],[4,6],[4,2],[1,0],[16,10],[-1,23],[-5,29],[2,28],[5,5],[6,4],[4,5],[1,10],[-3,8],[-7,6],[-12,8],[-10,14],[-7,19],[-9,15],[-13,2],[-12,-2],[-24,3],[-59,-14],[-14,1],[-7,4],[-11,19],[-7,3],[-14,3],[-8,7],[-4,10],[-3,45],[-3,12],[-4,10],[-17,29],[-7,6],[-7,-1],[-8,-6],[-8,-4],[-8,0],[-13,3],[-19,14],[-19,27],[-59,111],[-7,6],[-5,-13],[-4,-50],[-6,-18],[-12,-5],[-14,1],[-14,6],[-30,19],[-7,0],[-5,-3],[-15,-14],[-10,-7],[-5,-6],[-3,-9],[2,-11],[5,-7],[35,-26],[10,-12],[8,-21],[7,-28],[21,-52],[11,-21],[3,-5],[2,-5],[-1,-5],[-4,-3],[-18,-5],[-4,2],[-3,8],[0,9],[1,10],[1,11],[-3,21],[-7,16],[-9,10],[-28,21],[-6,2],[-5,-2],[-10,-6],[-5,-1],[-4,4],[-6,15],[-4,6],[-6,3],[-6,0],[-6,-1],[-5,-4],[-3,-6],[-3,-7],[-7,-13],[-7,-5],[-5,-6],[2,-16],[6,-20],[0,-10],[-2,-13],[-12,-41],[-4,-7],[-10,-6],[-3,-8],[2,-9],[4,-6],[1,-6],[-6,-7],[-6,-2],[-19,2],[-5,-2],[-15,-12],[-13,-5],[-39,11],[-27,-1],[-26,-21],[-23,-35],[-15,-45],[-10,-25],[-12,-13],[-26,-20],[-8,-18],[0,-22],[6,-47],[-1,-23],[-2,-19],[0,-18],[5,-21],[6,-17],[3,-15],[1,-17],[0,-21],[1,-17],[4,-16],[5,-15],[6,-11],[4,-4],[4,-4],[14,-5],[3,-3],[-1,-4],[-3,-6],[-6,-6],[-13,-11],[-6,-10],[-8,-25],[-5,-5],[-34,11],[-27,9],[-62,6],[-10,1],[-57,5],[-52,4],[-45,4]],[[65549,74941],[0,136],[0,136],[0,136],[0,136],[0,135],[0,136],[0,136],[0,136],[0,136],[-1,136],[0,136],[0,136],[0,136],[0,136],[0,135],[0,136],[0,1],[0,1],[1,0],[26,13],[26,12],[26,13],[26,13],[26,12],[26,13],[26,12],[20,10],[6,3],[26,13],[26,12],[26,13],[26,12],[26,13],[26,13],[26,12],[27,13],[34,16],[35,16],[35,16],[34,16],[16,7],[17,7],[16,7],[16,7],[16,8],[17,7],[17,7],[17,8],[22,9],[7,-1],[7,-5],[21,-21],[7,-6],[17,-18],[27,-27],[35,-36],[25,-25],[18,-18],[47,-49],[52,-52],[55,-55],[56,-57],[55,-56],[54,-55],[51,-51],[47,-47],[40,-41],[33,-34],[25,-25],[17,-17],[7,-13],[5,-15],[2,-15],[2,-30],[2,-14],[17,-40],[32,-53],[15,-25],[15,-26],[19,-34],[16,-29],[16,-28],[16,-28],[16,-29],[16,-28],[16,-27],[15,-28],[16,-28],[21,-37],[5,-4],[6,-3],[23,6],[10,3],[10,3],[10,3],[10,2],[15,5],[16,4],[16,5],[15,4],[26,7],[25,6],[25,7],[26,6],[25,6],[25,7],[26,6],[25,6],[42,-5],[43,-6],[42,-6],[42,-6],[39,-6],[38,-5],[39,-6],[38,-5],[16,-2],[4,2],[5,2],[28,24],[27,23],[28,24],[27,23],[5,3],[5,3],[4,-1],[4,-1],[5,-7],[5,-6],[30,-60],[30,-61],[13,-22],[14,-23],[29,-28],[28,-28],[6,-8],[5,-7],[24,-76],[15,-48],[21,-67],[18,-58],[2,0],[3,-1],[40,34],[40,34],[-6,-147],[-6,-147],[-1,-16],[-1,-15],[-1,-5],[-1,-5],[-4,-2],[-3,-2],[-1,-5],[-1,-4],[0,-18],[-1,-97],[-1,-115],[1,-4],[0,-3],[1,-1],[1,-2],[34,0],[30,0],[31,0],[33,-1],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[4,-75],[5,-75],[9,-73],[9,-73],[12,-87],[12,-88],[6,-12],[6,-12],[7,-3],[5,-2],[11,-5],[32,4],[27,2],[41,4],[30,3],[35,3],[23,3],[36,3],[35,3],[3,-1],[4,-1],[5,-5],[6,-5],[3,-2],[3,-2],[3,1],[3,1],[8,8],[8,9],[3,3],[4,4],[2,-8],[1,-9],[1,0],[0,-1],[1,-3],[1,-3],[6,-13],[6,-13],[1,-5],[2,-6],[1,-11],[1,-12],[2,-4],[2,-5],[1,2],[2,2],[2,2],[2,1],[1,-1],[2,0],[2,-3],[1,-3],[2,6],[2,7],[3,1],[3,0],[0,-6],[1,-7],[0,-1],[0,-3],[-1,-2],[2,-1],[1,-1],[1,-1],[-4,-4],[-3,-4],[-1,-1],[-1,0],[1,-1],[1,-1],[1,-2],[0,-1],[2,-4],[1,-3],[0,-9],[0,-8],[-2,-10],[-1,-10],[-2,-10],[-2,-9],[-2,-8],[-2,-8],[-2,-4],[-1,-4],[-3,-3],[-2,-4],[-2,-3],[-2,-3],[-5,-4],[-5,-3],[-1,-2],[-1,-2],[-1,-2],[0,-2],[1,-1],[1,-2],[5,-1],[5,-2],[5,-4],[4,-4],[13,-20],[12,-21],[10,-12],[9,-12],[11,-9],[22,-19],[32,-28],[1,2],[0,1],[2,3],[2,3],[2,0],[2,0],[1,2],[1,2],[1,2],[1,3],[1,1],[1,2],[2,-1],[1,0],[6,-4],[5,-5],[4,-1],[4,-1],[3,3],[3,3],[1,4],[1,4],[-3,2],[-3,2],[4,9],[3,9],[0,2],[0,2],[-1,4],[-1,3],[-1,4],[-1,3],[0,4],[-1,4],[0,3],[0,4],[-3,2],[-4,1],[-1,1],[-1,1],[-1,3],[-1,2],[-1,6],[-1,5],[-2,25],[-1,25],[0,4],[1,5],[1,1],[0,2],[1,1],[1,1],[1,3],[1,4],[0,3],[0,2],[0,7],[0,7],[0,3],[0,3],[1,-1],[1,-1],[2,-1],[1,-1],[1,7],[2,7],[4,4],[4,5],[6,4],[2,2],[9,6],[3,5],[2,6],[5,24],[5,23],[4,7],[4,7],[10,7],[9,7],[4,9],[3,10],[2,4],[2,4],[3,1],[2,2],[6,1],[6,1],[5,4],[5,4],[5,5],[5,6],[2,3],[3,4],[1,3],[1,4],[2,28],[2,28],[0,5],[0,5],[0,4],[-1,3],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[-2,3],[0,2],[0,3],[0,2],[1,2],[1,2],[1,1],[7,5],[6,5],[3,1],[2,2],[3,-2],[3,-2],[1,7],[1,6],[4,5],[3,6],[8,7],[7,8],[3,1],[2,0],[4,-2],[4,-2],[2,0],[2,1],[5,5],[6,6],[2,1],[2,1],[8,-3],[8,-2],[2,1],[2,2],[0,3],[-1,3],[-2,7],[-2,6],[-1,4],[0,3],[2,7],[1,8],[4,5],[4,4],[8,4],[8,4],[14,18],[14,18],[4,7],[4,7],[2,3],[2,3],[19,9],[19,8],[15,1],[16,1],[6,4],[5,4],[5,8],[4,8],[2,4],[2,5],[2,2],[2,3],[8,5],[8,4],[11,14],[12,14],[3,6],[4,7],[9,26],[9,26],[2,3],[2,3],[3,2],[2,3],[3,1],[2,1],[3,2],[2,2],[2,3],[1,4],[1,5],[1,5],[4,12],[3,12],[6,8],[6,9],[14,9],[13,9],[2,0],[2,-1],[3,-3],[2,-3],[3,-4],[2,-4],[1,-4],[1,-3],[1,-6],[1,-6],[2,-3],[2,-4],[3,-1],[3,-2],[3,-1],[4,-1],[4,4],[4,3],[3,9],[3,8],[3,11],[2,11],[3,10],[4,9],[4,8],[4,7],[1,4],[1,4],[2,6],[1,5],[2,4],[2,5],[3,0],[3,0],[7,-3],[6,-3],[5,1],[6,2],[5,4],[5,4],[10,12],[9,13]],[[69707,75490],[6,9],[12,14],[9,2],[9,-6],[39,-44],[9,-5],[1,0],[-4,-22],[-11,-12],[-23,-11],[-39,-46],[-11,-4],[-14,0],[-11,-4],[-5,-22],[-1,-34],[-3,-10],[-10,-6],[-27,-5],[-9,-8],[-27,-38],[-13,-22],[-8,-28],[-6,-16],[-9,-9],[-9,-7],[-16,-21],[-45,-42],[-6,-15],[5,-19],[10,-9],[39,-7],[1,0],[10,-10],[5,-7],[4,-9],[6,-20],[5,-6],[5,-1],[1,0],[10,6],[34,31],[9,3],[6,-6],[4,-10],[16,-43],[2,-12],[1,-13],[-4,-36],[0,-10],[4,-8],[4,1],[6,4],[6,1],[5,-4],[5,-5],[5,-8],[4,-8],[5,-8],[5,-1],[12,3],[13,-4],[7,-5],[5,-7],[5,-5],[11,-2],[4,-6],[7,-19],[5,-4],[2,11],[0,12],[-2,11],[1,8],[6,5],[6,-1],[4,-7],[3,-22],[3,-8],[3,-7],[4,1],[3,11],[7,15],[19,-27],[6,9],[2,20],[-3,103],[2,7],[4,-1],[13,-20],[12,-9],[10,3],[7,13],[9,32],[4,20],[2,12],[-1,11],[-8,16],[-3,10],[5,23],[4,6],[6,4],[6,-1],[4,-8],[1,-12],[0,-12],[-5,-33],[0,-8],[3,-1],[1,5],[2,6],[1,3],[3,-2],[1,-9],[3,-2],[2,3],[0,13],[2,2],[3,-1],[2,-4],[26,-62],[4,-18],[2,-19],[-1,-25],[2,-25],[7,-6],[22,6],[7,-9],[4,-10],[5,-4],[8,8],[6,9],[6,7],[7,1],[7,-6],[3,-12],[2,-16],[0,-17],[3,-31],[0,-11],[-2,-11],[-4,-14],[9,4],[16,8],[10,2],[2,3],[3,16],[2,4],[5,7],[3,-4],[8,-21],[6,-5],[8,-4],[15,-3],[1,-1],[1,-3],[0,-3],[0,-3],[0,-14],[5,-4],[6,-1],[6,-3],[12,-30],[8,-16],[11,-7],[12,-3],[36,6],[11,-5],[1,-17],[-1,-10],[4,1],[12,14],[21,16],[4,-5],[4,-9],[6,-6],[16,1],[7,-2],[2,-1],[1,-12],[-8,-18],[-13,-12],[-26,-16],[-24,-24],[-20,-8],[-10,-7],[-7,-17],[-3,-39],[-8,-6],[-10,7],[-5,0],[-2,-9],[-1,-9],[-1,-9],[-3,-7],[-4,-5],[-11,-1],[-20,21],[-10,3],[-8,6],[-9,18],[-10,13],[-8,-6],[-1,-10],[6,-16],[0,-11],[-2,-10],[0,-6],[3,-6],[12,-14],[1,-5],[2,-7],[-1,-14],[-3,-15],[-5,-12],[-7,-2],[-7,4],[-17,16],[-4,2],[-12,-1],[-4,2],[1,6],[4,1],[4,1],[4,2],[2,6],[-1,0],[-2,4],[-5,1],[-2,-1],[-13,-1],[-5,-2],[-18,-16],[-3,-6],[-1,-11],[-4,-17],[-8,-12],[-24,-20],[-1,-8],[2,-9],[5,-6],[8,-6],[2,-3],[2,-2],[1,-4],[-1,-7],[-4,-1],[-5,1],[-3,2],[-2,1],[-2,0],[-3,-2],[-11,1],[-11,5],[-10,-1],[-9,-14],[-5,-19],[-3,-8],[-4,-7],[-15,-14],[-4,-2],[-6,4],[-1,9],[0,24],[-2,12],[-4,14],[-5,7],[-5,-8],[-2,-11],[0,-10],[-3,-7],[-7,-1],[-13,4],[-6,4],[-6,6],[-5,8],[-2,9],[-3,7],[-12,6],[-9,13],[-6,1],[-8,-1],[-5,0],[-4,3],[-3,5],[-2,7],[-3,3],[-4,-2],[-4,-10],[-3,-13],[-4,-10],[-8,-2],[-33,8],[-16,-5],[-10,-17]],[[69601,74761],[-5,-2],[4,-12],[5,-8],[8,-18],[4,-7],[6,-2],[-1,10],[-3,14],[-4,11],[-6,9],[-8,5]],[[69771,74183],[1,1],[3,4],[2,1],[7,4],[3,-2],[2,-5],[-2,-9],[-12,-15],[-5,-7],[1,-16],[12,-21],[-1,-18],[-3,-8],[-3,-2],[-10,0],[-13,-6],[-4,1],[-3,4],[-1,7],[-1,5],[-6,0],[-3,-3],[-3,-6],[-4,-4],[-4,3],[0,15],[12,30],[-2,18],[-3,4],[-7,2],[-4,4],[-3,7],[-7,25],[-2,9],[1,10],[1,10],[5,19],[9,8],[6,-7],[5,-14],[4,-16],[4,-10],[8,-8],[16,-11],[0,-1],[2,-1],[2,-1]],[[72280,75455],[-12,11],[-9,18],[-7,21],[-9,19],[-18,26],[-11,25],[-4,7],[-11,12],[-62,21],[-12,1],[-22,-7],[-27,3],[-14,9],[-8,16],[-12,48],[-9,14],[-22,17],[-10,15],[-4,11],[-3,11],[-1,12],[-1,14],[2,23],[-2,6],[-7,3],[-11,-3],[-22,-18],[-10,1],[-11,7],[-18,1],[-23,15],[-33,5],[-5,4],[-10,13],[-11,10],[-27,15],[-19,3],[-12,-1],[-6,-4],[-10,-10],[-5,-3],[-5,1],[-12,6],[-5,2],[-13,-3],[-13,1],[-30,-4],[-12,3],[-16,15],[-6,4],[-6,1],[-7,-2],[-2,-1],[-5,-5],[-7,-5],[-3,3],[-2,4],[-1,4],[-2,3],[-19,7],[-18,1],[-6,-1],[-14,-12],[-5,1],[-5,4],[-5,7],[-6,4],[-11,0],[-7,4],[-5,1],[-4,-2],[-12,-9],[-9,-4],[-27,7],[-5,1],[-5,0],[-4,1],[-4,6],[-8,17],[-3,5],[-10,5],[-31,8],[-6,4],[-5,-1],[-11,-7],[-13,0],[-5,-2],[-5,-6],[-6,-11],[-2,-2],[-2,0],[-5,2],[-2,-1],[-1,-2],[0,-3],[-1,-2],[-11,-9],[-5,-2],[-13,0],[-10,-7],[-6,-2],[-7,2],[-15,9],[-7,2],[-5,-4],[-9,-12],[-5,-3],[-2,2],[-3,10],[-3,3],[-4,-1],[-5,-4],[-3,0],[-24,11],[-25,0],[-20,8],[-8,0],[-18,-10],[-6,1],[-22,10],[-11,2],[-14,-2],[-3,0],[-4,-2],[-3,-4],[-9,-38],[-3,-8],[-7,-10],[-8,-9],[-8,-6],[-7,0],[-18,11],[-5,1],[-11,-1],[-63,13],[-19,-1],[-7,3],[-17,16],[-6,8],[-8,7],[-17,8],[-8,6],[-8,11],[-23,19],[-32,8],[-10,6],[-28,34],[-4,8],[-7,18],[-4,8],[-5,5],[-12,5],[-10,10],[-11,2],[-6,4],[-14,19],[-8,6],[-9,4],[-8,5],[-14,20],[-8,7],[7,-16],[3,-11],[-1,-8],[-4,-4],[-44,-8],[-5,2],[-10,15],[-6,3],[-8,-10],[-9,-41],[-11,-8],[-11,0],[-5,-1],[-48,-31],[-13,-12],[-4,-6],[-3,-9],[-11,-48],[-6,-16],[-2,-8],[-1,-10],[1,-10],[3,-20],[1,-11],[-1,-9],[-7,-26],[-15,-52],[-3,-21],[-1,-22],[2,-20],[4,-18],[20,-62],[0,-11],[-7,-2],[-17,11],[-25,7],[-4,7],[0,13],[1,18],[-4,8],[-7,4],[-19,2],[-5,2],[-5,4],[-6,7],[-10,7],[-12,1],[-36,-10],[-9,1],[-10,4],[-9,7],[-7,10],[-10,28],[-6,12],[-9,7],[-40,15],[-20,0],[-9,3],[-33,35],[-18,11],[-36,3],[-4,-2],[-8,-6],[-5,-1],[-8,4],[-33,28],[-17,7],[-4,3],[-5,5],[-4,3],[-5,-2],[-9,-5],[-20,-2],[-9,-5],[-30,-30],[-5,-2],[-4,2],[-11,15],[-2,2],[-3,0],[-5,-3],[-13,7],[-7,-1],[-5,-7],[-3,-8],[-4,-9],[-4,-6],[-5,-4],[-6,2],[-6,5],[-7,3],[-4,-4],[-6,-17],[-4,-8],[-4,-4],[-11,-6],[-2,-6],[-1,-12],[1,-24],[-2,-8],[-4,-8],[-24,-6],[-11,-10],[3,-22],[3,-5],[10,-14],[2,-7],[-1,-7],[-2,-6],[-4,-3],[-5,1],[-13,13],[-4,-6],[-4,-10],[-3,-12],[-2,-11],[1,-7],[1,-4],[1,-4],[-2,-7],[-9,-17],[-3,-5],[-7,-10],[-3,-9],[1,-9],[11,-17],[6,-5],[8,-3]],[[65549,74941],[-19,3],[-9,-1],[-25,-20],[-26,-6],[-16,-10],[-35,-3],[-9,4],[-8,8],[-6,7],[-4,10],[-8,30],[-3,10],[-5,8],[-17,19],[-10,14],[-8,16],[-18,51],[-18,51],[-13,27],[-29,63],[-2,10],[-2,12],[0,13],[2,10],[0,10],[-3,12],[-7,13],[-47,69],[-33,35],[-27,30],[-47,49],[-43,46],[-21,12],[-21,4],[-66,-19],[-43,-12],[-49,-14],[-18,-6],[-61,-39],[-16,-15],[-43,-24],[-60,-79],[-37,-59],[-42,-67],[-12,-19]],[[64565,75194],[0,12],[2,13],[11,43],[2,23],[-2,23],[-2,13],[-4,9],[-3,5],[-3,3],[-2,5],[-1,8],[2,20],[0,6],[-2,5],[-8,15],[4,9],[2,11],[2,12],[0,11],[2,9],[4,5],[5,3],[4,5],[14,42],[15,32],[2,5],[1,6],[1,7],[-1,12],[1,7],[1,5],[8,13],[2,5],[1,5],[1,10],[0,5],[5,24],[3,22],[0,21],[-4,23],[-7,25],[-5,13],[-12,12],[-3,14],[-1,12],[3,5],[2,-7],[2,-12],[4,-12],[5,-6],[2,-1],[10,-11],[1,-4],[1,-5],[0,-3],[2,0],[4,-21],[3,-11],[2,-5],[3,5],[3,12],[3,14],[1,12],[-3,26],[-6,17],[-10,10],[-13,2],[-2,14],[-14,15],[-28,16],[-28,4],[-4,-1],[-3,-1],[-4,-3],[-3,-3],[-2,-4],[-3,-10],[-1,-3],[-7,5],[-19,40],[-10,12],[-7,1],[-24,-6],[-19,-11],[-10,-11],[-6,-4],[-6,5],[-16,30],[-4,9],[-6,19],[-4,10],[-3,10],[-3,22],[-3,11],[-13,24],[-3,12],[-4,2],[-4,1],[-2,2],[-2,8],[1,5],[2,4],[1,7],[-1,11],[-3,12],[-5,7],[-11,-8],[-14,1],[-6,-2],[-2,-4],[-2,-4],[-2,-3],[-3,-2],[-3,2],[-7,6],[-3,1],[-26,-9],[-25,0],[-4,6],[1,14],[10,48],[3,25],[2,78],[-2,12],[-8,27],[-2,5],[0,6],[0,13],[-1,6],[-4,8],[-11,12],[-3,10],[-1,9],[-2,1],[-3,-2],[-3,-2],[-4,2],[-2,1],[-4,5],[-7,16],[-26,83],[-2,11],[-1,10],[-1,6],[-1,5],[-2,4],[-1,3],[-1,6],[1,13],[0,6],[-3,6],[-8,12],[-2,5],[-2,11],[-4,10],[-4,12],[-2,5],[-3,2],[-6,3],[-3,3],[-2,8],[0,5],[2,5],[0,8],[-1,50],[-1,12],[-1,9],[-8,15],[-11,13],[-23,17],[-98,27],[-13,9],[-6,6],[-6,9],[-5,11],[-2,13],[2,26],[0,13],[-2,11],[2,5],[-3,11],[-1,19],[1,19],[3,11],[5,-17],[4,8],[3,16],[1,10],[3,3],[0,7],[0,8],[1,6],[4,4],[2,-1],[3,-4],[3,-3],[44,-13],[13,1],[13,7],[7,0],[3,-9],[4,-2],[24,0],[4,-7],[3,-3],[4,4],[2,6],[1,4],[1,3],[3,1],[15,-1],[7,-2],[6,-5],[10,-14],[8,-16],[3,-3],[6,2],[3,-2],[2,-4],[-1,-4],[-2,-3],[-2,-1],[4,-10],[7,-7],[23,-17],[8,-2],[8,1],[8,3],[7,5],[14,23],[1,2],[1,2],[0,2],[2,2],[2,1],[7,-1],[4,1],[8,4],[4,0],[-2,-19],[8,-4],[19,6],[18,-13],[7,1],[3,7],[-1,9],[-4,7],[-4,6],[-17,13],[-11,16],[-7,2],[-13,-7],[-13,-3],[-8,11],[-9,44],[-7,18],[-9,13],[-22,22],[-3,4],[-2,4],[-2,3],[-10,2],[-3,2],[-1,4],[-3,4],[-18,18],[-2,10],[-1,13],[1,12],[5,5],[2,2],[1,5],[0,6],[0,4],[-4,3],[-3,0],[-4,2],[-1,7],[3,9],[6,6],[7,4],[6,1],[7,-1],[3,1],[4,4],[2,4],[3,8],[3,4],[12,13],[7,5],[6,2],[4,-5],[5,-10],[6,-8],[6,-1],[2,8],[-2,11],[-4,12],[-3,8],[-1,6],[1,7],[2,7],[1,6],[-1,4],[-2,9],[-1,3],[2,8],[3,10],[9,20],[1,9],[3,10],[24,44],[3,10],[1,13],[1,11],[4,-5],[8,-20],[10,-7],[14,0],[14,5],[9,10],[9,15],[3,2],[6,-1],[2,3],[5,10],[3,12],[3,10],[6,6],[3,-6],[3,-8],[2,-8],[1,-9],[24,-6],[4,-2],[8,-12],[5,-2],[5,2],[9,12],[5,2],[7,-1],[11,-5],[6,-2],[86,17],[12,-5],[20,4],[13,-4],[47,-32],[28,-6],[14,-11],[6,-3],[26,4],[7,-2],[16,-9],[7,-1],[5,3],[12,10],[7,3],[1,1],[4,6],[1,1],[7,-3],[1,-1],[2,2],[2,3],[2,5],[-1,6],[-5,5],[-29,9],[-2,3],[-2,4],[-2,3],[-2,3],[-9,1],[-13,6],[-35,27],[-6,2],[-3,2],[-5,11],[-2,3],[-3,2],[-10,2],[-13,9],[-5,6],[1,7],[-1,5],[-2,4],[1,6],[2,6],[0,4],[-1,4],[0,6],[0,14],[2,11],[3,7],[5,2],[5,5],[3,10],[5,22],[10,28],[5,9],[3,2],[7,4],[2,4],[10,20],[4,10],[5,23],[4,12],[8,13],[3,5],[1,5],[3,13],[1,7],[6,16],[2,9],[-2,11],[0,-4],[-1,9],[1,8],[7,13],[2,8],[1,10],[3,41],[8,53],[0,41],[-8,31],[-12,24],[-14,21],[5,-1],[9,-11],[5,-4],[0,5],[-5,5],[-2,9],[-1,11],[2,11],[-5,-4],[-6,-9],[-6,-7],[-6,4],[0,11],[3,16],[9,25],[0,-11],[4,-5],[5,-1],[4,5],[2,9],[1,22],[3,10],[2,-12],[3,3],[2,9],[2,8],[3,1],[6,-1],[3,0],[3,2],[1,3],[1,7],[1,23],[-5,14],[-9,6],[-8,2],[-6,3],[-2,8],[1,19],[-5,42],[-5,15],[-2,8],[-2,4],[-12,-3],[-5,1],[-5,8],[-10,24],[-5,5],[-12,-1],[-26,-8],[-15,4],[-31,0],[-7,3],[-5,4],[-10,16],[-5,3],[-18,4],[-5,-1],[-3,-5],[-1,-7],[0,-15],[-1,-5],[-12,-24],[-5,-6],[-26,-14],[-8,-1],[-9,10],[-4,-1],[-2,-5],[1,-8],[1,-2],[8,-4],[2,-2],[2,-4],[2,-6],[1,-6],[1,-7],[-2,-2],[-35,4],[-7,5],[-2,3],[-2,2],[-1,4],[0,9],[-2,-1],[-3,4],[-9,14],[-3,3],[-2,3],[-1,7],[2,4],[3,5],[2,5],[-1,6],[-5,3],[-5,-11],[-6,-22],[-5,-3],[-9,0],[-9,4],[-7,5],[9,17],[3,4],[-6,3],[-7,-5],[-12,-11],[-6,0],[-6,4],[-5,6],[-5,8],[-11,13],[-3,10],[5,25],[0,12],[-4,10],[-7,1],[-5,-6],[-3,-12],[-1,-13],[-3,-11],[-5,-1],[-6,11],[-7,20],[-6,8],[-6,5],[-18,5],[-16,8],[-36,12],[-11,10],[-7,-2],[-13,-13],[-10,-9],[-37,-12],[-5,-4],[-8,-16],[-5,-4],[-4,2],[-7,9],[-3,1],[-3,-1],[-1,-5],[-1,-4],[2,-2],[-2,-5],[-22,-56],[-5,-6],[-3,10],[1,7],[5,12],[2,8],[-2,4],[-3,-3],[-10,-16],[-7,-6],[-8,-3],[-5,4],[-5,1],[-1,-12],[-1,-28],[-2,-10],[-4,-9],[-5,-4],[-5,3],[6,10],[3,9],[-1,7],[-6,2],[-10,-4],[-2,-2],[-3,-5],[-3,1],[-2,4],[-9,12],[-3,2],[-2,1],[-1,0],[-2,-3],[-2,-6],[-9,-38],[-5,-7],[2,8],[0,21],[-4,-5],[-2,-7],[-1,-7],[-2,-6],[-2,-1],[-5,-1],[-3,-2],[-2,-3],[-1,-2],[-12,-33],[-6,-10],[-5,2],[0,5],[2,8],[1,6],[-3,3],[-3,-2],[-9,-8],[-25,-39],[-8,-20],[-4,-8],[-6,-4],[-10,2],[-4,-2],[-3,-3],[-4,-9],[-3,-4],[-9,-7],[-3,-8],[-4,-1],[-8,3],[-4,-5],[-1,-11],[-1,-7],[-8,4],[-3,8],[-2,3],[-3,-2],[0,-13],[-1,-6],[-3,3],[-6,11],[-3,4],[-3,-1],[-1,-4],[1,-15],[0,-5],[-18,34],[-5,4],[0,-12],[2,-26],[-6,5],[-3,-4],[-2,-7],[-3,-6],[-2,14],[-4,7],[-16,11],[-5,5],[-3,7],[0,13],[0,-19],[1,-10],[4,-7],[2,-15],[2,-6],[-3,0],[-4,4],[-3,0],[-3,2],[1,5],[1,5],[0,4],[-1,2],[-6,8],[-2,3],[-2,-2],[0,-5],[0,-2],[-9,3],[-10,5],[-9,9],[-5,12],[2,-16],[19,-30],[4,-19],[-5,3],[-11,1],[-1,0],[-4,7],[-3,9],[-3,7],[-5,1],[0,-4],[4,-7],[1,-12],[2,-12],[7,-6],[10,-16],[1,-5],[1,-6],[0,-7],[-2,-6],[-11,13],[-5,8],[-4,8],[-4,9],[-4,6],[-4,4],[-7,0],[3,-3],[2,-4],[2,-5],[0,-10],[1,-5],[11,-17],[-2,-1],[-2,-3],[-4,4],[-22,11],[-3,-1],[-2,-2],[1,-6],[2,-4],[3,-2],[3,0],[4,-5],[2,-12],[1,-11],[0,-5],[1,-3]],[[63674,77906],[-54,45],[-21,24],[-11,17],[-6,5],[-8,0],[-7,-2],[-7,0],[-17,20],[-7,13],[-7,10],[-12,4],[-25,0],[-9,6],[6,14],[-4,4],[-2,9],[-1,8],[-2,6],[-10,10],[-6,3],[-5,1],[7,13],[7,29],[14,18],[17,5],[17,-8],[5,-7],[5,-10],[7,-23],[7,-4],[42,12],[9,10],[16,29],[-86,197],[-42,159],[-2,14],[-3,10],[-5,4],[-10,2],[-10,5],[-7,10],[-14,28],[-52,130],[-17,21],[-19,13],[-110,-3],[-59,41],[-7,1],[-5,-6],[-1,-8],[0,-36],[-2,-28],[-2,-11],[-4,-2],[-52,52],[-9,13],[-5,9],[-1,7],[2,8],[3,10],[2,4],[2,2],[1,2],[1,5],[-1,3],[-9,23],[-20,35],[-2,7],[4,5],[22,19],[11,15],[4,11],[-5,8],[-15,2],[-4,8],[0,11],[2,10],[1,10],[-2,12],[-2,4],[-6,9],[-1,5],[2,4],[2,4],[2,3],[4,11],[0,6],[-4,8],[-5,6],[-28,11],[-69,34],[-70,35],[0,1],[39,153],[38,144],[6,13],[10,11],[21,16],[6,7],[5,7],[14,25],[12,30],[5,31],[-3,31],[-14,25],[-41,44],[-16,8],[18,145],[17,144],[6,24],[10,14],[61,37],[19,27],[18,31],[5,17],[0,21],[-15,29],[-2,17],[3,8],[10,13],[2,9],[-1,9],[-4,6],[-2,8],[3,11],[5,6],[19,11],[4,6],[8,25],[1,4],[8,17],[12,15],[13,9],[11,0],[7,-7],[19,-32],[12,-9],[4,-6],[3,-8],[2,-6],[3,-4],[5,-3],[3,-3],[13,-21],[6,-11],[11,-13],[11,-23],[11,-14],[2,-7],[1,-8],[2,-8],[4,-7],[13,-15],[6,-16],[3,-17],[2,-17],[4,-17],[1,-5],[3,-12],[2,-5],[3,-5],[11,-13],[6,-14],[2,-13],[3,-9],[10,-1],[8,2],[2,-1],[14,-18],[16,-13],[3,-1],[4,3],[6,12],[4,5],[57,30],[28,23],[21,35],[5,10],[2,6],[0,6],[-3,24],[-3,9],[-4,7],[-19,8],[0,16],[2,21],[-5,22],[-12,33],[-7,41],[-8,85],[1,41],[-1,19],[-7,13],[-14,3],[-7,6],[-1,11],[4,8],[7,-1],[36,-30],[13,-4],[12,3],[51,52],[25,44],[11,14],[39,13],[24,14],[11,13],[4,20],[-5,18],[-9,16],[-7,14],[3,17],[7,16],[3,9],[2,19],[3,11],[3,10],[4,6],[6,2],[22,-9],[67,1],[5,4],[13,25],[40,47],[11,8],[50,13],[33,22],[4,6],[2,6],[0,7],[-2,11],[-1,11],[3,5],[4,4],[4,6],[-1,2],[-3,4],[-1,3],[2,4],[4,1],[16,1],[5,2],[4,6],[2,10],[7,2],[4,2],[3,6],[1,13],[-3,35],[1,9],[5,7],[5,1],[4,5],[1,15],[1,13],[5,0],[11,-11],[13,-1],[2,-2],[-5,-10],[-5,-11],[4,-5],[7,-1],[6,1],[13,6],[7,11],[1,17],[-13,50],[-1,19],[6,10],[15,-4],[5,-4],[6,-6],[4,-8],[3,-10],[4,-10],[7,-5],[68,-6],[6,3],[6,4],[6,3],[5,-5],[7,-15],[3,-6],[6,-3],[12,-1],[5,-4],[3,-11],[0,-14],[-2,-9],[-4,-6],[-6,-4],[-27,-6],[-1,-5],[3,-9],[4,-9],[3,-7],[0,-1],[9,-12],[20,-3],[23,5],[15,10],[5,10],[3,9],[5,6],[6,0],[7,-4],[3,-5],[1,-9],[0,-14],[7,-17],[13,2],[14,11],[10,11],[1,22],[-5,20],[-1,18],[16,23],[8,17],[5,7],[8,4],[8,-1],[8,-4],[7,-6],[7,-4],[9,-1],[8,1],[7,3],[6,7],[6,18],[4,9],[7,5],[16,-2],[8,1],[5,7],[4,18],[4,5],[8,-6],[5,-20],[3,-24],[4,-17],[18,-48],[8,-38],[2,-6],[3,-8],[4,-8],[6,-7],[5,-4],[3,-1],[6,5],[24,-2],[2,-5],[3,2],[3,6],[2,5],[3,3],[3,2],[7,1],[2,2],[1,5],[2,4],[4,2],[3,-2],[6,-9],[3,-2],[15,2],[6,-3],[-4,-11],[6,-1],[7,-6],[4,-1],[4,2],[4,4],[4,6],[3,4],[11,6],[33,-2],[-2,11],[1,4],[4,1],[4,0],[2,-1],[2,-3],[1,-3],[2,-3],[2,-1],[2,1],[1,1],[2,1],[21,-4],[4,1],[7,5],[5,-6],[1,0],[11,-6],[3,-5],[6,-14],[4,-6],[28,-15],[12,-11],[3,-5],[2,-10],[-2,-5],[-10,-6],[5,-9],[0,-9],[-1,-11],[2,-9],[9,-13],[4,-7],[2,-11],[7,-10],[51,-21],[14,3],[8,-2],[10,-12],[6,-8],[6,-20],[6,-5],[15,-3],[5,-6],[3,-8],[2,-23],[3,-8],[2,-6],[1,-6],[-1,-10],[8,-14],[5,-6],[11,-9],[4,-7],[4,-8],[4,-8],[7,-6],[22,-5],[3,-3],[5,-7],[3,-3],[12,-3],[4,-3],[2,-5],[1,-6],[-1,-6],[-2,-6],[-15,-27],[-3,-12],[0,-27],[-2,-11],[-6,-27],[-1,-12],[1,-11],[4,-13],[10,-18],[6,-7],[6,-6],[6,-2],[13,5],[1,0],[12,7],[15,18],[8,17],[-1,19],[-9,43],[0,13],[3,22],[0,12],[-1,4],[-5,6],[-1,5],[1,5],[5,11],[1,5],[-3,23],[-16,12],[-16,6],[-6,7],[4,5],[5,4],[3,6],[-6,22],[3,8],[5,4],[24,10],[6,0],[7,-2],[6,-5],[11,-14],[18,-12],[5,-7],[9,-16],[9,-12],[42,-17],[5,-13],[-1,-23],[6,-16],[62,-78],[7,-6],[5,-2],[5,1],[14,5],[7,0],[7,-3],[7,-6],[4,-9],[2,-10],[3,-8],[13,-7],[4,-6],[8,-17],[12,-12],[10,5],[20,29],[46,35],[41,47],[6,13],[10,72],[3,14],[3,8],[4,2],[24,-15],[8,-2],[8,2],[5,7],[2,9],[2,22],[4,6],[14,3],[5,8],[0,8],[-3,17],[0,8],[3,8],[4,6],[9,10],[8,-4],[25,-49],[5,-3],[20,-6],[5,1],[1,7],[-2,10],[-6,19],[0,11],[4,8],[6,6],[5,3],[7,1],[5,-2],[10,-12],[7,-3],[7,0],[7,3],[7,5],[7,2],[24,-3],[13,4],[18,15],[5,3],[3,-4],[4,-12],[2,-23],[3,-10],[4,-4],[7,-1],[5,-2],[4,-5],[5,-10],[2,-9],[4,-21],[2,-10],[5,-9],[5,-7],[18,-14],[7,-3],[7,1],[6,5],[5,8],[3,9],[4,8],[6,5],[11,-1],[26,-12],[9,8],[4,17],[1,19],[-3,40],[2,21],[5,14],[4,13],[8,3],[12,-11],[5,-1],[15,0],[4,-2],[2,-4],[5,-8],[2,-2],[8,6],[4,2],[21,5],[2,-1],[1,-3],[0,-4],[0,-3],[1,-2],[6,-7],[7,-5],[8,-1],[6,6],[4,11],[2,13],[4,11],[6,4],[6,2],[11,9],[4,-4],[9,-12],[3,-8],[1,-8],[0,-8],[2,-7],[6,-4],[34,-1],[12,-7],[9,-16],[2,-25],[-2,-11],[-3,-8],[-4,-7],[-5,-7],[-2,-8],[1,-11],[3,-10],[3,-7],[5,-2],[15,2],[2,-6],[-2,-23],[1,-8],[5,-7],[7,-1],[8,3],[8,1],[6,-7],[5,-20],[2,-7],[5,-7],[21,-22],[11,-6],[75,-9],[6,-3],[5,-8],[3,-9],[3,-5],[4,-3],[5,0],[27,9],[14,0],[11,-10],[6,-8],[14,-9],[4,-3],[-1,-16],[-7,-4],[-16,4],[-7,-9],[-1,-9],[5,-9],[15,-20],[9,6],[9,13],[10,11],[14,3],[15,-1],[13,3],[12,18],[12,35],[3,8],[9,14],[3,8],[2,11],[-2,20],[0,12],[2,10],[11,40],[2,4],[3,4],[12,6],[17,2],[15,-7],[4,-22],[1,-22],[6,-17],[9,-13],[10,-11],[15,-10],[117,-19],[27,6],[77,35],[77,36],[9,12],[6,18],[4,25],[5,53],[2,16],[13,99],[6,28],[9,16],[13,9],[14,6],[-5,2],[-14,9],[-9,11],[-7,16],[-11,46],[-5,12],[-2,3],[-10,4],[-12,10],[-10,6],[-4,-1],[-7,-3],[-4,0],[-3,1],[-10,7],[-7,2],[-19,-2],[-6,1],[-11,6],[-6,1],[-9,-1],[-3,1],[-2,1],[-2,2],[-1,2],[-1,2],[-1,2],[-2,3],[-9,9],[-4,5],[-4,12],[-2,7],[0,6],[-1,19],[1,8],[-4,0],[-113,4],[-3,1],[-1,4],[-1,6],[0,5],[-3,3],[-31,7],[-5,5],[0,13],[4,7],[13,9],[5,5],[2,5],[-1,10],[2,4],[5,5],[3,4],[1,5],[-7,13],[-50,16],[-28,28],[-10,5],[-3,-6],[-2,-9],[-7,-5],[-9,2],[-6,8],[-12,38],[-3,10],[0,9],[5,14],[7,0],[48,1],[41,57],[21,24],[23,13],[15,-1],[16,-5],[15,1],[14,15],[11,24],[5,6],[27,15],[5,6],[14,20],[5,6],[12,9],[9,12],[-17,31],[-5,9],[-1,10],[-2,25],[-2,11],[-2,5],[-3,3],[-26,12],[-5,5],[-1,10],[1,28],[0,11],[-1,10],[-2,4],[-3,0],[-14,-2],[-5,1],[-3,3],[-2,5],[0,4],[-2,3],[-3,4],[-3,3],[-1,5],[0,6],[0,7],[6,24],[12,10],[14,4],[11,8],[4,7],[7,17],[5,8],[48,57],[-23,29],[21,0],[10,4],[10,9],[9,10],[10,2],[9,-4],[10,-8],[8,-5],[8,-1],[9,1],[7,5],[14,14],[6,3],[9,-6],[10,-11],[16,-22],[9,-5],[9,7],[5,7],[5,1],[12,-2],[29,5],[10,-5],[18,-19],[10,-1],[21,10],[11,10],[6,14],[5,29],[1,13],[-2,14],[-7,15],[-9,7],[-60,16],[-20,10],[-16,21],[-12,21],[-6,2],[-26,-19],[-9,-1],[-10,3],[-28,28],[-9,5],[-27,0],[-13,4],[-11,13],[-6,14],[-2,15],[1,15],[5,14],[13,23],[2,8],[1,8],[1,18],[5,6],[7,2],[8,-2],[5,-6],[6,-13],[7,-13],[8,-8],[8,0],[7,6],[14,20],[8,8],[11,8],[-7,39],[-4,8],[-3,2],[-32,0],[-8,-4],[-12,-22],[-10,-2],[-39,12],[-5,4],[-2,4],[-4,10],[-1,4],[-14,5],[-39,3],[-7,12],[6,14],[29,-12],[10,10],[0,8],[0,7],[0,7],[2,8],[5,3],[10,2],[3,7],[3,14],[7,10],[7,9],[6,10],[1,13],[-7,8],[-10,6],[-7,6],[-6,10],[-3,3],[-5,2],[-18,1],[-6,2],[-2,6],[-1,7],[1,6],[2,7],[5,9],[6,4],[12,4],[10,0],[13,-3],[2,-3],[1,-4],[2,-6],[4,-7],[4,-6],[5,1],[5,10],[1,11],[-2,10],[-5,19],[-1,3],[-2,12],[15,2],[7,4],[5,11],[5,8],[8,2],[22,-5],[4,-5],[8,-21],[5,-5],[20,-6],[1,-19],[2,-5],[5,-3],[6,2],[3,5],[1,9],[1,11],[26,0],[4,-4],[4,-3],[4,1],[6,10],[4,1],[4,-2],[4,-3],[2,-12],[0,-7],[2,-6],[6,-5],[9,-4],[32,-2],[-1,36],[0,3],[0,12],[114,5],[6,-1],[3,-6],[0,-13],[-12,-11],[-4,-8],[1,-11],[5,-10],[13,-10],[6,-8],[3,-5],[3,-5],[4,-3],[3,-1],[5,3],[1,4],[-2,19],[-2,4],[0,5],[4,8],[11,15],[-4,11],[-2,3],[-4,20],[9,16],[13,10],[12,4],[24,2],[15,9],[5,-2],[13,-8],[7,0],[23,8],[28,-4],[7,5],[5,10],[-1,8],[-2,9],[-2,11],[4,9],[9,4],[16,-1],[32,-9],[11,0],[8,4],[14,15],[8,5],[19,2],[45,26],[10,-1],[8,-6],[23,-22],[8,-3],[4,-2],[3,8],[9,5],[10,2],[8,6],[5,15],[-9,15],[-4,10],[1,4],[2,3],[2,4],[2,3],[6,-8],[3,-2],[3,0],[4,0],[2,2],[5,8],[2,2],[4,1],[12,-5],[7,2],[14,8],[8,3],[6,3],[2,2],[3,4],[4,-1],[7,-5],[27,4],[4,2],[2,4],[2,5],[2,2],[3,-1],[6,-3],[3,-1],[7,3],[12,10],[3,-5],[17,-18],[9,-7],[10,-1],[18,11],[17,19],[18,11],[19,-10],[22,-37],[4,-5],[4,-4],[4,-2],[5,1],[1,1],[4,5],[2,0],[8,-4],[3,0],[8,19],[-9,63],[6,14],[-1,9],[0,3],[0,14],[4,7],[36,20],[8,0],[16,-5],[6,2],[2,12],[-4,22],[2,8],[7,3],[27,-4],[39,-17],[9,2],[7,10],[8,18],[8,15],[9,7],[20,10],[5,-5],[3,-39],[4,-9],[34,15],[97,43],[17,4],[36,-2],[17,3],[6,5],[11,14],[6,4],[54,4],[9,2],[16,12],[9,2],[21,0],[11,3],[7,10],[6,14],[6,10],[8,4],[18,-7],[18,5],[50,-2],[21,8],[17,18],[11,23],[5,9],[9,7],[9,4],[9,-1],[27,-15],[43,7],[5,7],[2,15],[6,4],[3,5],[1,8],[2,10],[6,5],[7,0],[7,4],[1,12],[-22,17],[-11,14],[5,17],[-6,8],[-3,1],[18,13],[6,1],[4,-2],[4,-3],[4,-2],[6,0],[14,8],[7,0],[21,-7],[18,8],[7,0],[7,-2],[3,1],[3,6],[1,6],[-2,11],[1,5],[4,7],[13,11],[2,9],[-1,13],[1,10],[2,10],[3,10],[6,-5],[3,0],[25,-5],[6,-4],[6,-7],[10,-20],[6,-9],[6,-3],[7,4],[3,8],[0,10],[-1,23],[-7,5],[-6,3],[-4,6],[-3,20],[-1,5],[0,4],[2,5],[5,3],[4,1],[50,-22],[7,-12],[5,-18],[6,-13],[11,5],[23,28],[7,3],[40,-22],[54,-9],[36,-25],[8,-9],[22,-38],[8,-7],[22,-3],[11,-5],[38,-31],[5,-1],[5,5],[9,19],[6,6],[24,10],[3,4],[1,4],[0,5],[1,5],[3,9],[11,22],[6,3],[2,-1],[19,-10],[7,0],[6,2],[6,5],[5,7],[12,10],[15,2],[16,-4],[12,-7],[-5,-8],[-4,-9],[-2,-10],[3,-9],[19,-32],[27,-44],[5,-16],[0,-8],[0,-7],[0,-1],[0,-2],[0,-1],[-1,-17],[-1,-8],[-2,-7],[-1,-11],[4,-16],[-2,-7],[-3,-7],[-2,-10],[0,-11],[2,-8],[10,-15],[2,-8],[-1,-17],[3,-19],[12,-15],[14,-10],[11,-3],[12,0],[5,-2],[5,-6],[10,-19],[3,-12],[0,-13],[-3,-8],[-7,-5],[-14,-5],[-8,-10],[-2,-17],[2,-42],[-1,-4],[0,-3],[0,-3],[6,-8],[1,-7],[-1,-20],[0,-3],[2,-2],[5,-2],[2,-3],[0,-5],[-1,-10],[0,-8],[-2,-25],[-15,-4],[-5,0],[-6,2],[-10,7],[-6,3],[-10,1],[-6,-5],[-3,-12],[2,-21],[17,-1],[4,-3],[1,-9],[0,-14],[-1,-14],[-2,-9],[10,-7],[5,-5],[4,-9],[8,-21],[5,-7],[6,-1],[10,9],[8,12],[14,31],[7,7],[8,-2],[9,-5],[8,-3],[9,1],[2,-2],[3,-6],[2,-8],[2,-29],[6,1],[14,9],[7,2],[3,-2],[5,-7],[3,-3],[5,-1],[4,1],[10,6],[7,8],[3,8],[-2,26],[1,12],[3,11],[4,8],[6,3],[55,-7],[7,-3],[5,-3],[4,-6],[17,-40],[6,-10],[8,-3],[7,1],[7,5],[3,9],[-1,17],[-4,10],[-8,4],[-9,1],[-7,4],[-5,6],[-1,3],[1,8],[0,6],[1,7],[2,6],[6,16],[1,7],[-2,5],[-7,8],[-9,7],[-3,6],[-1,9],[5,4],[30,-6],[10,-6],[10,-14],[9,-18],[4,-18],[3,-6],[12,-6],[4,-10],[-1,-7],[-10,-27],[25,-12],[26,-13],[1,-2],[-1,-3],[-1,-3],[-3,-8],[-4,-1],[-4,1],[-4,0],[-1,-2],[-2,-8],[-1,-2],[-3,0],[-8,4],[-3,-2],[-1,-6],[1,-8],[1,-5],[5,-10],[7,-8],[4,-8],[-3,-14],[-7,-22],[-3,-12],[0,-9],[5,-7],[9,-3],[9,1],[6,5],[11,18],[7,16],[4,4],[4,-1],[28,-15],[8,4],[-2,21],[-5,17],[-5,12],[-7,7],[-10,1],[-24,-7],[-2,4],[2,11],[3,12],[2,7],[12,16],[15,4],[37,-5],[35,-5],[16,2],[4,-2],[3,-8],[2,-11],[1,-22],[13,-9],[3,-8],[2,-16],[6,-8],[35,-10],[47,-14],[4,1],[1,5],[1,7],[1,6],[2,2],[9,-1],[2,-1],[4,-4],[6,-10],[4,-1],[7,2],[3,4],[1,8],[-1,14],[3,11],[16,5],[5,9],[-1,7],[-3,6],[0,5],[3,3],[15,5],[4,-2],[1,-2],[1,-12],[2,-2],[16,6],[-12,-93],[-4,-16],[-6,-8],[-8,-2],[-41,10],[-8,-1],[-7,-4],[-6,-9],[-5,-13],[13,-12],[-25,-13],[-5,-7],[-7,-53],[-12,-3],[-5,-3],[-4,-8],[-3,-11],[2,-8],[9,-14],[-8,-20],[45,-31],[-12,-36],[17,-17],[4,1],[7,10],[21,26],[6,8],[2,5],[3,6],[2,11],[1,6],[2,3],[5,2],[2,1],[7,-2],[2,2],[1,4],[0,5],[2,9],[0,5],[0,4],[2,1],[22,-1],[4,-1],[10,-8],[4,2],[19,20],[9,5],[9,0],[11,-3],[19,-3],[4,-3],[1,-9],[0,-12],[0,-9],[4,-5],[9,0],[3,2],[5,15],[3,2],[18,0],[3,-2],[3,-7],[2,-9],[2,-6],[6,-2],[-2,-14],[2,-9],[10,-13],[15,-16],[8,-2],[5,9],[14,54],[-1,5],[-3,5],[-5,6],[-1,4],[2,30],[3,12],[4,7],[45,-3],[3,4],[5,28],[3,8],[2,4],[3,1],[14,2],[3,3],[2,9],[3,17],[3,8],[2,5],[10,4],[23,-1],[9,-3],[22,-14],[7,1],[36,33],[34,32],[43,40],[-20,44],[19,18],[10,6],[9,1],[29,-5],[11,3],[14,8],[17,10],[31,19],[49,30],[39,23],[-3,14],[0,10],[2,9],[4,11],[6,10],[5,3],[56,-18],[12,4],[17,16],[6,3],[5,1],[8,-2],[4,1],[5,6],[2,11],[0,11],[1,11],[6,9],[8,2],[16,-2],[7,2],[19,12],[6,2],[6,0],[4,-6],[-2,-13],[-5,-5],[-22,-8],[-5,-4],[-6,-7],[-3,-9],[3,-7],[14,-5],[5,-6],[3,-14],[-2,-15],[-5,-11],[-5,-10],[-5,-11],[-4,-18],[-2,-6],[-3,-5],[-7,-8],[-3,-6],[-14,-21],[-17,0],[-35,17],[-18,1],[-5,-2],[-5,-4],[-1,-4],[29,-63],[1,-7],[4,-22],[8,-19],[24,-24],[34,-34],[52,-53],[51,-52],[52,-53],[51,-52],[38,-39],[34,-48],[14,-20],[23,-33],[30,-61],[19,-43],[30,-68],[30,-67],[30,-68],[30,-68],[40,-96],[39,-95],[39,-96],[40,-96],[29,-74],[30,-74],[13,-33],[17,-41],[29,-74],[25,-71],[25,-71],[25,-71],[25,-71],[12,-37],[15,-42],[8,-31],[3,-10],[7,-13],[8,-12],[10,-9],[8,0],[-15,33],[-4,19],[9,7],[5,-3],[10,-15],[5,-4],[6,1],[3,6],[4,20],[4,9],[4,4],[11,6],[2,4],[4,7],[3,3],[3,1],[11,-2],[12,3],[11,8],[10,15],[6,20],[1,9],[1,11],[0,10],[-1,10],[-3,8],[-8,11],[-3,8],[-1,7],[0,11],[1,19],[3,12],[3,7],[5,5],[7,1],[23,-5],[11,4],[4,15],[0,9],[2,9],[3,8],[4,7],[5,6],[5,1],[37,-24],[8,-2],[3,4],[3,7],[5,5],[6,0],[2,-8],[1,-21],[2,-11],[4,-7],[11,-8],[12,-8],[7,-3],[7,-1],[8,12],[4,3],[5,-1],[6,-5],[1,-7],[0,-10],[-3,-13],[-18,-62],[-8,-36],[0,-9],[1,-5],[6,-4],[7,-2],[15,1],[33,15],[35,-3],[0,-21],[4,-20],[6,-17],[8,-16],[-6,-12],[-5,-15],[-2,-15],[3,-13],[8,-6],[60,3],[6,6],[8,17],[5,6],[5,0],[11,-10],[6,-1],[20,5],[14,-3],[12,-6],[7,-5],[16,-21],[7,-4],[14,-4],[7,1],[7,3],[5,6],[6,9],[5,7],[5,-2],[4,-3],[4,2],[3,4],[4,3],[4,-1],[3,-3],[3,-2],[12,4],[7,-5],[12,-16],[36,33],[19,12],[7,13],[0,41],[8,12],[10,3],[23,-9],[36,-5],[13,6],[10,15],[8,21],[6,23],[2,1],[3,1],[3,-1],[7,-3],[5,-1],[4,1],[5,2],[31,6],[30,-6],[8,-17],[4,-6],[6,-5],[31,-8],[7,-4],[16,-19],[6,-6],[5,-2],[13,0],[6,-2],[6,-5],[5,-7],[8,-20],[4,-6],[11,-6],[8,-12],[0,-37],[7,-19],[31,-31],[4,-3],[9,-17],[2,-11],[1,-9],[2,-8],[9,-15],[3,-10],[1,-11],[-6,-32],[4,-18],[7,-18],[6,-20],[1,-13],[-1,-13],[0,-13],[3,-11],[3,-3],[9,-4],[3,-3],[2,-4],[4,-10],[2,-3],[10,-1],[10,11],[10,8],[10,-10],[8,-13],[8,-9],[10,-3],[10,1],[10,-1],[7,-9],[6,-11],[9,-9],[5,0],[9,1],[5,-3],[3,-5],[7,-22],[4,-4],[4,3],[5,4],[4,3],[6,-1],[19,-12],[3,-5],[9,-20],[2,-7],[-1,-10],[-4,-4],[-12,-3],[-1,0],[-2,-1],[-1,-34],[1,-16],[6,-7],[15,-6],[7,-7],[4,-13],[1,-22],[2,-8],[5,-11],[18,-28],[6,-17],[3,-47],[7,-18],[11,-8],[11,5],[5,5],[6,5],[7,4],[5,1],[7,-4],[12,-12],[7,-4],[10,2],[5,2],[5,4],[9,10],[4,4],[5,-1],[4,-7],[4,-17],[4,-7],[4,-3],[5,2],[10,6],[6,0],[5,-4],[4,-7],[4,-8],[4,-3],[5,3],[9,9],[6,4],[5,0],[12,-2],[0,-5],[-3,-25],[0,-10],[4,-7],[5,-1],[5,2],[4,6],[9,14],[12,6],[11,-4],[7,-16],[11,-17],[11,19],[9,32],[7,20],[16,16],[17,8],[18,24],[5,3],[2,4],[0,6],[-1,6],[-2,7],[14,11],[1,1],[3,6],[3,2],[2,0],[1,-1],[2,1],[6,10],[3,13],[4,8],[9,-1],[11,-9],[5,0],[8,3],[5,0],[3,-3],[0,-6],[-2,-7],[-2,-7],[-2,-6],[1,-7],[3,-6],[7,-10],[-6,-8],[-5,-6],[-6,-3],[-13,-1],[-6,-7],[-10,-20],[-4,-10],[-1,-9],[2,-8],[5,-9],[7,-7],[6,0],[12,5],[7,-3],[19,-17],[6,-7],[0,-10],[-3,-12],[0,-13],[4,-10],[7,-7],[15,-10],[7,-9],[0,-5],[-5,-7],[-2,-10],[2,-8],[5,-9],[19,-21],[3,-5],[2,-4],[0,-9],[2,-5],[3,-4],[4,-2],[7,-2],[23,4],[9,-3],[7,-5],[15,-14],[5,-13],[6,-41],[4,-17]],[[67606,77454],[17,2],[16,3],[15,6],[15,9],[14,10],[14,12],[12,14],[12,16],[10,17],[9,19],[8,20],[7,22],[6,22],[4,23],[2,25],[1,25],[-1,25],[-2,24],[-4,23],[-6,23],[-7,21],[-8,20],[-9,19],[-10,17],[-12,16],[-12,14],[-14,13],[-14,10],[-15,8],[-15,6],[-16,4],[-17,1],[-17,-1],[-16,-4],[-15,-6],[-15,-8],[-14,-10],[-14,-13],[-12,-14],[-12,-16],[-10,-17],[-9,-19],[-9,-20],[-6,-21],[-6,-23],[-4,-23],[-2,-24],[-1,-25],[1,-25],[2,-25],[4,-23],[6,-22],[6,-22],[9,-20],[9,-19],[10,-17],[12,-16],[12,-14],[14,-12],[14,-10],[15,-9],[15,-6],[16,-3],[17,-2]],[[63961,77125],[2,14],[1,14],[1,9],[4,4],[3,1],[1,0],[2,0],[5,0],[2,1],[2,2],[1,0],[1,-7],[-2,-13],[-2,-5],[-2,-3],[-1,-3],[2,-23],[-3,-13],[-5,-8],[-7,-2],[-4,5],[-2,13],[1,14]],[[63936,77019],[-8,-8],[-9,2],[-9,8],[-4,6],[-1,5],[-1,7],[-1,10],[-3,8],[-11,16],[-5,15],[0,12],[16,53],[3,5],[4,4],[13,5],[-1,-11],[-16,-14],[-4,-14],[-1,-8],[-4,-15],[-1,-9],[1,-10],[3,-8],[3,-3],[4,2],[0,-15],[1,-14],[4,-11],[6,-4],[3,-1],[3,-4],[2,-3],[5,0],[9,10],[4,2],[-5,-18]],[[64095,77052],[4,-9],[1,-4],[-6,2],[-4,-1],[-4,-4],[-4,-1],[-1,4],[2,6],[0,4],[-3,1],[0,4],[1,6],[-2,7],[-13,13],[-4,10],[1,10],[2,0],[2,-9],[4,-8],[6,-2],[4,3],[2,5],[2,3],[2,0],[0,-4],[1,-3],[2,-1],[2,-6],[1,-13],[0,-7],[2,-6]],[[64636,77392],[2,-11],[1,-10],[0,-12],[-7,-5],[-14,8],[-11,14],[-7,14],[-3,13],[4,9],[5,5],[3,4],[1,4],[-1,4],[1,3],[10,-1],[6,-3],[5,-10],[4,-17],[1,-9]],[[63839,77897],[4,-16],[1,-14],[-5,-27],[-5,-4],[-6,8],[-4,14],[-13,54],[-1,11],[9,0],[12,-11],[5,-7],[3,-8]],[[69710,74299],[6,-14],[-5,-14],[-9,-12],[-9,-4],[-14,5],[-4,-2],[-2,-3],[-5,-4],[0,1],[-1,1],[-2,1],[-1,0],[-1,-2],[-2,-3],[-11,-15],[-4,-4],[-17,-10],[-8,-11],[-1,-16],[0,-18],[-2,-20],[-4,-11],[-5,-8],[-5,-6],[-6,-4],[-12,0],[-3,-3],[-2,-5],[-2,-13],[-3,-5],[-6,3],[-2,8],[1,10],[3,11],[3,9],[4,5],[5,3],[4,6],[5,13],[-3,10],[-7,7],[-7,4],[-22,6],[-10,7],[-10,2],[-5,4],[-5,8],[-3,9],[-4,7],[-6,5],[-7,1],[-13,-2],[-6,3],[-40,43],[-10,2],[-109,-64],[-5,-1],[-4,0],[-2,3],[-3,9],[-2,1],[-1,-2],[-2,-10],[0,-4],[-6,-14],[-5,-14],[-1,-15],[2,-18],[1,-4],[1,-4],[0,-4],[0,-4],[6,-19],[0,-8],[-26,-15],[-14,37],[-8,15],[-4,2],[-1,-2],[0,-3],[-1,-6],[-5,-20],[-13,-63],[-3,-23],[-1,-23],[2,-11],[4,-8],[5,-7],[4,-8],[2,-10],[1,-11],[-2,-70],[4,-15],[11,8],[2,4],[1,5],[1,4],[2,1],[2,-1],[7,-12],[5,-3],[12,3],[7,0],[5,1],[5,3],[5,5],[9,13],[5,4],[24,2],[11,-2],[11,-6],[12,-11],[11,-5],[21,7],[11,-2],[9,-6],[2,3],[5,10],[4,7],[6,3],[6,0],[6,-3],[9,-8],[5,-3],[4,2],[2,6],[8,27],[4,6],[3,-6],[1,-11],[0,-10],[-2,-21],[0,-9],[5,-3],[5,2],[24,30],[4,3],[3,-1],[6,-3],[3,0],[1,2],[2,3],[1,3],[3,2],[5,1],[9,6],[4,1],[4,-2],[6,-10],[4,-3],[5,-1],[10,3],[5,-1],[7,-8],[3,-13],[6,-28],[0,-1],[3,-4],[6,-4],[3,-4],[2,-8],[-1,-9],[-1,-7],[0,-8],[4,-12],[7,-7],[9,-3],[7,2],[9,8],[3,2],[4,0],[3,-1],[2,2],[3,6],[6,4],[6,-4],[7,-8],[7,-3],[9,7],[5,17],[4,19],[6,17],[9,9],[12,6],[12,1],[15,-5],[4,0],[3,3],[9,17],[3,5],[10,9],[2,2],[4,7],[2,2],[3,2],[8,2],[9,8],[5,1],[9,-10],[5,-7],[4,-9],[2,-9],[-1,-9],[-7,-17],[-3,-10],[6,-20],[12,-9],[13,-1],[28,10],[6,0],[4,-6],[3,-14],[0,-15],[-1,-12],[-3,-9],[-4,-6],[-2,-8],[-1,-12],[2,-12],[4,-9],[5,-7],[6,-2],[10,2],[10,7],[27,32],[5,4],[10,3],[10,9],[5,1],[5,-6],[3,-13],[2,-15],[0,-12],[3,-9],[5,-4],[12,-3],[3,-3],[4,-5],[6,-5],[1,-4],[0,-5],[0,-5],[3,-10],[3,-7],[3,1],[11,41],[7,32],[3,9],[5,3],[6,1],[11,9],[4,0],[10,-4],[4,0],[5,1],[8,15],[3,3],[5,-2],[7,-8],[4,0],[3,3],[6,11],[3,4],[4,3],[5,-1],[51,-22],[5,0],[12,5],[5,-1],[18,-6],[5,-3],[4,0],[13,12],[4,2],[3,-2],[5,-4],[10,-5],[9,1],[28,17],[16,5],[2,6],[0,8],[2,9],[7,8],[31,12],[9,2],[26,-5],[8,-6]],[[70803,72518],[-9,8],[-12,37],[-8,15],[-36,37],[-8,-8],[-28,-3],[-2,0],[-3,1],[-10,5],[-6,5],[-5,-1],[-5,-2],[-8,3],[-3,0],[-3,1],[-4,12],[-3,3],[-3,0],[-3,-4],[-1,7],[-4,-15],[-7,-2],[-8,4],[-7,-1],[-4,-7],[-1,-21],[-5,-10],[-7,-5],[-31,-10],[-21,-13],[-5,-3],[-16,-12],[-12,-2],[-6,-3],[-10,-17],[-4,-2],[-4,2],[-7,1],[-2,-2],[-5,-6],[-3,0],[-2,3],[-4,9],[-2,3],[-6,1],[-11,-6],[-5,4],[-1,13],[3,11],[6,9],[6,3],[11,2],[4,4],[5,7],[4,9],[2,9],[0,24],[1,5],[1,15],[-10,2],[-12,0],[-19,9],[-33,20],[-13,0],[-17,-16],[-4,2],[-5,5],[-7,1],[-7,-1],[-5,-3],[-5,-6],[-13,-25],[-3,-2],[-6,4],[-3,-2],[-10,-14],[-5,-9],[-4,-17],[-4,-8],[-5,-7],[-20,-3],[-20,-21],[-6,-12],[-7,-4],[-13,-4],[-11,-12],[-8,-19],[-13,-46],[-12,-31],[-2,-12],[-2,-5],[-41,-11],[-10,-8],[-19,6],[-12,-4],[-29,-20],[-10,-13],[-3,-5],[-4,-10],[-3,-5],[-9,-9],[-8,-14],[-80,-103],[-11,-7],[-14,-5],[-13,0],[-13,5],[-12,11],[-9,17],[-4,10],[-3,11],[-2,12],[-2,28],[-3,11],[-15,44],[-3,11],[-1,13],[0,24],[-1,7],[-4,13],[-2,6],[-1,7],[1,36],[2,24],[2,9],[2,6],[-1,14],[10,30],[0,16],[2,8],[0,12],[0,25],[-2,23],[1,8],[3,14],[3,23],[-4,48],[1,26],[1,3],[3,8],[2,5],[0,6],[2,18],[3,19],[0,6],[0,6],[-3,13],[0,5],[2,11],[10,11],[4,11],[2,10],[0,14],[-1,13],[-1,8],[3,4],[-9,17],[-8,10],[-10,1],[-34,-20],[-5,-6],[-6,-5],[-6,4],[-10,14],[-3,1],[-2,-1],[-2,1],[-1,8],[1,6],[2,14],[2,15],[9,26],[3,24],[5,17],[2,17],[5,26],[2,13],[-2,27],[-7,17],[-9,11],[-23,16],[-17,30],[-11,13],[-8,7],[-3,1],[-3,0],[-3,-2],[-2,0],[-3,4],[-1,5],[-3,11],[-1,4],[-3,5],[-3,5],[-3,3],[-4,1],[-6,0],[-2,-4],[1,-14],[-3,-6],[-7,3],[-11,9],[-4,-1],[-1,-2],[-1,-3],[-2,-2],[-3,1],[-4,2],[-3,1],[-8,0],[-5,-2],[-2,-4],[-3,-10],[-16,-3],[-6,-5],[0,-4],[6,-7],[-2,-7],[-10,-12],[-3,-3],[-6,1],[-3,-3],[-1,-5],[0,-6],[0,-6],[0,-5],[-3,-20],[-3,-3],[-4,-1],[-3,-4],[-3,-14],[-8,-27],[-7,-33],[-4,-10],[-2,-5],[-10,-7],[-3,-3],[-12,-22],[-13,-28],[-2,-2],[-5,-5],[-2,-1],[-1,-4],[-1,-5],[-4,-2],[-3,-1],[-2,-2],[-1,-5],[0,-5],[1,-5],[2,-5],[-6,-4],[-7,-2],[-6,2],[-5,8],[-4,-15],[2,-18],[4,-18],[4,-12],[3,-3],[10,-4],[1,-5],[1,-9],[2,-7],[3,-7],[2,-4],[-1,-7],[0,-8],[3,-17],[0,-9],[0,-5],[-1,-5],[-1,-7],[-3,-9],[-2,-2],[-1,-2],[0,-4],[1,-6],[-1,-4],[-1,-4],[-1,-1],[-1,-3],[-1,1],[-6,-1],[-4,-17],[-1,-5],[-2,-2],[-9,-21],[-8,-5],[-9,2],[-8,5],[-8,3],[2,-5],[-9,3],[-2,2],[-1,1],[-2,3],[-1,4],[-1,3],[-4,1],[-6,3],[-3,9],[-2,9],[-5,7],[-6,1],[-12,-10],[-6,-3],[-2,-2],[-3,-4],[-3,-3],[-3,3],[-2,2],[-6,3],[-3,1],[-6,-2],[-12,-8],[-6,-2],[-38,6],[-6,-5],[-5,-24],[-6,-10],[-12,-16],[-1,-3],[-2,-7],[-1,-3],[-2,-3],[-4,-5],[-1,-3],[-2,-9],[0,-11],[0,-23],[0,-2],[3,-1],[1,-3],[0,-3],[-1,-1],[-1,0],[0,-2],[0,-6],[0,-5],[1,-5],[2,-4],[2,-9],[2,-21],[2,-5],[-2,-13],[5,-4],[5,-1],[-1,-8],[-10,-27],[-4,-8],[-12,-12],[-4,-9],[-3,-5],[-3,-2],[-1,0],[-7,-3],[-5,-4],[-6,-1],[-26,30],[-2,2],[-6,7],[-2,5],[-5,21],[-5,7],[-7,7],[-5,9],[-4,21],[-5,11],[-5,8],[-6,6],[-19,4],[-1,0],[-1,1],[-1,-2],[2,-7],[1,-4],[5,-6],[1,-2],[1,-9],[-1,-5],[-3,-2],[-4,4],[-4,8],[-3,9],[-3,8],[-6,3],[-6,-4],[-1,-7],[4,-17],[0,-13],[-1,-6],[-3,1],[-11,11],[-3,3],[-3,0],[-6,-1],[-11,3],[-5,-1],[-3,-6],[1,-2],[1,-3],[2,-7],[-7,-2],[-3,-8],[-2,-10],[-1,-4],[-5,-2],[-10,-5],[-6,-1],[-1,-3],[-4,-11],[-2,-3],[-3,0],[-13,-5],[-18,-3],[4,-13],[-2,-9],[-5,-5],[-7,-1],[-6,2],[-5,4],[-5,0],[-6,-6],[-2,-10],[0,-12],[2,-25],[-3,-8],[-6,0],[-12,6],[-7,-2],[-5,-7],[-5,-8],[-5,-3],[-3,-4],[-19,-27],[-2,-3],[-4,-3],[-2,0],[-1,1],[-3,3],[-1,4],[-1,6],[-2,4],[-9,21],[-3,3],[-6,6],[-3,5],[-5,12],[-3,10],[-4,8],[-12,5],[-7,6],[-6,8],[-4,8],[0,9],[2,37]],[[69582,74088],[34,-18],[10,-1],[8,7],[4,-2],[2,-11],[0,-10],[-3,-4],[-9,-3],[-8,-7],[-15,-19],[-1,2],[-8,22],[-3,6],[-9,11],[-4,9],[-2,9],[0,9],[4,0]],[[56523,82413],[1,4],[1,3],[-1,3],[-2,3],[-3,3],[-2,4],[-1,5],[0,7],[1,2],[2,3],[3,3],[4,9],[0,14],[-4,27],[-2,13],[-3,13],[-4,12],[-5,9],[-2,1],[-6,2],[-3,3],[-2,5],[-6,12],[-2,5],[-5,5],[-6,6],[-22,11],[-11,8],[-17,18],[-5,3],[-6,-2],[-6,-3],[-7,0],[-5,9],[0,6],[2,7],[1,5],[-2,3],[-9,2],[-4,3],[-1,3],[-2,5],[-1,5],[-3,3],[-3,1],[-6,-2],[-3,1],[-17,11],[-6,1],[-7,-4],[0,-1],[-7,-16],[-5,-6]],[[56324,82660],[-17,37],[-7,21],[-2,23],[2,46],[6,28],[1,11],[0,6],[-2,14],[0,6],[1,4],[6,11],[1,2],[-1,3],[-1,3],[1,3],[1,1],[2,0],[3,4],[5,3],[2,3],[4,8],[9,8],[4,5],[3,11],[1,10],[-1,11],[-4,24],[-2,8],[-4,5],[-16,9],[-3,5],[3,8],[-3,1],[-3,4],[-2,4],[-2,3],[-2,1],[-16,0],[-4,3],[-4,7],[-3,13],[-5,27],[-3,12],[-3,3],[-1,3],[-7,4],[-29,-10],[-46,7],[-6,0],[-30,-9],[-3,-5],[-4,-5],[-5,-5],[-6,-1],[-8,3],[-6,7],[-2,10],[0,9],[-1,7],[-3,3],[-8,-1],[-7,-7],[-2,-1],[-3,1],[-7,6],[-10,3],[-5,4],[-9,10],[-20,5],[-5,5],[-4,8],[-20,19],[-11,6],[-28,2],[-10,10],[-18,36],[-8,10],[-7,-1],[-23,-23]],[[55907,83189],[1,3],[-2,13],[0,5],[2,2],[2,-1],[2,0],[2,6],[-1,5],[-2,7],[-2,6],[-2,3],[-2,3],[-1,6],[0,13],[-3,1],[-16,-19],[-1,4],[0,2],[11,30],[2,4],[5,7],[0,14],[-4,24],[-3,18],[0,5],[-2,2],[-2,3],[-3,5],[-1,6],[0,7],[1,4],[0,5],[-1,6],[-10,34],[-3,10],[0,11],[-2,6],[-12,24],[-2,4],[-3,2],[-2,4],[-1,14],[-2,12],[-5,50],[0,26],[1,6],[2,9],[1,5],[0,51],[-1,21]],[[55848,83677],[10,3],[16,0],[12,4],[4,11],[2,16],[5,19],[7,13],[9,13],[11,11],[8,5],[13,1],[4,1],[39,36],[10,6],[25,1],[78,44],[5,3],[31,17],[12,-1],[5,-3],[11,-9],[5,-3],[83,3],[17,-5],[1,0],[8,-5],[12,-15],[5,-3],[4,1],[39,19],[10,9],[8,7],[10,2],[9,-6],[7,-17],[10,-30],[13,-11],[14,4],[14,18],[-3,6],[5,4],[32,9],[7,-2],[18,-9],[29,-15],[10,-1],[17,12],[9,3],[19,-1],[8,2],[2,-1],[2,-5],[1,-4],[-1,-4],[1,-2],[8,-1],[19,5],[10,0],[3,-2],[31,-11],[26,-25],[9,-6],[9,-2],[7,2],[34,21],[9,2],[9,-5],[17,-15],[9,-3],[10,5],[16,11],[5,7],[23,36],[11,10],[10,5],[25,14],[3,0],[6,-3],[2,0],[2,6],[0,6],[1,7],[4,4],[6,-2],[5,-10],[7,-25],[7,-36],[3,-11],[3,-6],[9,-12],[3,-6],[5,-19],[8,-18],[10,-9],[67,-14],[29,-6],[19,4],[14,-8],[5,-1],[16,2],[4,-2],[2,-5],[5,-20],[2,-6],[4,-4],[16,-14],[8,-11],[21,-28],[25,-20],[16,-12],[17,-24],[27,-28],[7,-14],[7,-18],[14,-31],[18,-16],[38,-23],[16,-5],[16,-2]],[[55830,83203],[-18,6]],[[55812,83209],[21,44],[11,35],[12,48],[3,50],[1,10],[-1,3],[1,5],[-2,12],[1,37],[-3,17],[9,-14],[4,-26],[1,-52],[-1,-7],[-2,-10],[-1,-7],[0,-23],[-3,-9],[-4,-10],[-2,-9],[5,-8],[0,-4],[-4,-6],[-5,-12],[-4,-13],[-2,-12],[-4,-12],[-13,-22],[0,-11]],[[34833,35324],[0,1],[2,14],[0,15],[-2,11],[-2,11],[-1,13],[0,12],[0,7],[4,21],[6,22],[8,14],[5,13],[7,21],[6,39],[3,11],[10,16],[2,11],[-1,11],[-7,23],[-2,11],[0,10],[0,11],[3,21],[13,107],[2,10],[8,22],[3,21],[10,61],[1,20],[-4,40],[0,18],[3,20],[11,31],[3,13],[3,18],[0,17],[-4,19],[-2,13],[-6,17],[-3,8],[-1,22],[-4,19],[0,9],[2,19],[7,16],[10,14],[6,10],[-1,0],[-7,8],[-26,31],[-16,42],[-5,8],[-48,52],[-7,4],[-4,-4],[-7,-15],[-5,-5],[-36,-25],[-18,-19],[-4,-8],[-6,-16],[-4,-5],[-5,-2],[-10,-1],[-4,-4],[-9,-5],[-17,0],[-8,-7],[-9,-9],[-10,-2],[-10,4],[-10,7],[-9,4],[-17,3],[-9,7],[-6,13],[-3,16],[-4,114],[-6,37],[-12,26],[-5,15],[-1,20],[0,21],[0,3],[-2,17],[-1,21],[8,33],[0,18],[-3,11],[-8,18],[-2,13],[1,10],[6,27],[0,10],[-6,44],[-1,5],[-8,10],[-3,7],[0,10],[2,22],[-2,11],[-3,9],[-7,17],[-1,10],[2,20],[0,11],[-7,45],[0,22],[3,18],[5,17],[3,20],[0,5],[-2,10],[-1,5],[1,5],[1,10],[1,4],[-1,13],[-2,7],[-4,4],[-6,4],[-9,10],[-7,16],[-5,19],[-2,21],[-1,50],[-2,15],[-3,6],[-11,17],[-14,37],[-3,-12],[-1,-4],[-5,6],[-17,4],[-5,4],[-4,6],[-4,4],[-3,-4],[-4,-2],[-48,5],[-4,2],[-5,6],[-8,16],[-16,18],[-8,16],[-7,20],[-7,36],[-3,6],[-4,1],[-20,-7],[-5,-3],[-3,-5],[-2,-6],[-5,-12],[0,-4],[-2,-9],[-1,-3],[-2,-2],[-1,-1],[-4,-17],[-3,-6],[-10,-14],[-2,-2],[-3,-2],[-2,-4],[3,-10],[-1,-5],[-5,2],[-9,22],[-5,4],[-1,-2],[-2,-11],[-2,-4],[-2,-3],[-1,1],[0,2],[-2,1],[-10,-5],[-2,-1],[-3,3],[-1,-1],[-1,-4],[-2,-5],[-6,-14],[-4,-3],[-6,2],[-1,8],[-3,15],[-3,9],[-3,-16],[-3,1],[-5,5],[-2,0],[-3,-1],[-1,2],[0,10],[-3,-4],[-3,0],[-7,4],[-4,0],[-9,1],[-4,-2],[-2,-1],[-1,0],[-2,1],[-5,2],[-1,2],[-1,3],[0,1],[-2,3],[-8,6],[-5,1],[-2,-1],[-2,-2],[-1,-2],[-3,1],[-2,3],[-1,9],[-1,3],[-4,-2],[-7,-12],[-5,-2],[-13,6],[-4,1],[0,-2],[-1,-3],[-1,-4],[-3,0],[-5,5],[-2,1],[-1,-3],[-2,0],[-9,11],[-4,3],[-3,1],[-6,4],[-2,0],[-11,-5],[-6,9],[-2,1],[-4,1],[-1,-1],[-1,-1],[-3,-2],[-6,-2],[-5,2],[-4,7],[-3,12],[-4,24],[-3,2],[-2,-1],[-2,-2],[-3,-2],[-6,1],[-4,2],[-3,1],[-6,-5],[-1,0],[-3,2],[-1,0],[0,-2],[-1,-3],[0,-3],[1,-1],[-3,-4],[-3,-1],[-2,2],[-3,0],[-5,-8],[-3,-1],[-1,2],[-4,8],[-3,3],[-2,0],[-4,-4],[-3,0],[-10,6],[-3,7],[-3,10],[-3,5],[-4,4],[0,6],[0,9],[0,8],[6,35],[1,6],[3,5],[6,24],[1,7],[-2,14],[-4,10],[-2,8],[2,10],[3,13],[1,12],[-1,10],[-1,12],[13,39],[-2,6],[-3,4],[-3,8],[-3,11],[-2,10],[2,10],[4,13],[2,12],[-3,5],[-5,5],[-2,10],[0,13],[1,13],[4,20],[19,57],[2,15],[-3,6],[-5,3],[-2,6],[-1,3],[-2,3],[-1,5],[0,7],[2,5],[7,12],[7,18],[4,25],[1,28],[-2,26],[-4,18],[0,9],[7,23],[3,14],[-1,13],[-5,9],[-1,-11],[-2,0],[-6,14],[-7,11],[-1,0],[-1,1],[-2,1],[-2,3],[-1,7],[3,7],[11,13],[3,6],[0,11],[-4,9],[-4,6],[-6,2],[-7,2],[-2,3],[2,6],[4,6],[3,7],[3,3],[6,3],[3,3],[2,4],[-1,6],[-2,5],[-4,6],[-2,3],[-1,4],[-2,9],[-1,3],[-4,6],[-4,1],[-4,-4],[-2,-21],[-3,-1],[-2,4],[-2,7],[0,7],[2,11],[0,7],[-1,6],[-4,12],[-1,8],[1,13],[-1,7],[-3,14],[-1,14],[0,15],[0,12],[5,17],[0,11],[-4,5],[-5,2],[-6,7],[-6,9],[-5,11],[-2,10],[-2,14],[0,15],[2,17],[-1,5],[-2,5],[-2,2],[-3,0],[-2,-4],[-1,-3],[-2,-1],[-5,7],[-2,11],[2,10],[11,7],[-1,7],[-3,6],[-2,4],[-1,2],[-3,-1],[-1,2],[-1,10]],[[30565,47961],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[8,95],[8,96],[8,95],[9,95],[8,96],[8,95],[8,96],[8,95],[8,96],[8,95],[9,96],[8,95],[8,95],[8,96],[8,95],[8,96],[3,36],[4,30],[0,12],[5,40],[0,28],[5,54],[-1,27],[6,33],[-3,18],[-10,36],[0,7],[1,12],[1,7],[-2,22],[1,2],[-1,4],[-1,2],[-1,2],[-3,1],[-2,3],[-6,18],[-3,4],[-6,5],[-2,5],[-2,7],[0,6],[1,6],[0,7],[-2,6],[-2,4],[-2,2],[-2,3],[-2,9],[-1,6],[1,15],[-2,8],[-11,25],[-3,14],[2,11],[9,28],[2,14],[-1,7],[-2,5],[-1,5],[-2,6],[0,5],[-1,18],[-1,13],[-2,12],[-4,10],[-4,9],[-5,6],[-22,17],[-5,8],[-8,19],[-3,4],[-6,7],[-3,4],[-2,6],[-3,13],[-1,5],[-5,7],[-11,5],[-5,5],[-3,5],[-6,19],[-15,28],[-10,26],[-4,13],[-1,21],[0,29],[0,16],[1,39],[1,57],[0,64],[1,65],[1,56],[0,40],[1,15],[0,41],[4,-8],[6,3],[5,6],[7,0],[6,-2],[6,1],[5,4],[19,2],[11,5],[11,8],[9,11],[11,18],[4,0],[8,-7],[9,-4],[4,10],[3,13],[6,5],[5,1],[9,13],[5,5],[7,2],[6,-3],[5,-7],[20,-43],[1,-2],[6,6],[6,3],[5,0],[3,-6],[-1,-16],[5,0],[10,-3],[4,1],[2,3],[3,9],[2,2],[3,1],[5,-5],[3,0],[5,3],[2,8],[-1,10],[-3,14],[-2,4],[-6,6],[-3,4],[0,8],[2,6],[3,4],[1,6],[0,14],[-2,26],[0,13],[2,2],[3,1],[2,3],[0,8],[-2,5],[-3,4],[-7,5],[-4,9],[1,22],[-6,8],[-1,6],[0,7],[-1,5],[-2,4],[-4,7],[-5,13],[-4,6],[-14,15],[-5,2],[-4,-3],[-13,-20],[-3,1],[-5,7],[-2,2],[0,3],[-2,3],[-2,2],[-3,1],[-9,-3],[-9,0],[-3,1],[-12,8],[-6,1],[-27,-8],[-3,1],[0,13],[-3,3],[-3,1],[-4,1],[-7,-4],[-11,-16],[-7,1],[0,36],[0,40],[1,41],[0,41],[0,40],[0,41],[0,41],[0,40],[0,41],[-2,23],[4,0],[10,0],[5,3],[12,13],[4,3],[5,-1],[6,-2],[12,2],[19,19],[10,1],[21,-9],[21,-19],[11,-3],[13,0],[35,0],[50,1],[57,0],[57,0],[49,0],[35,0],[14,0],[20,0],[-4,5],[-3,4],[0,4],[0,7],[-1,5],[-2,3],[-11,1],[0,11],[0,13],[-2,7],[-7,2],[-2,2],[5,17],[17,89],[2,4],[2,-4],[0,-12],[0,-4],[3,-5],[2,-2],[5,-2],[7,-6],[4,-8],[3,-11],[6,-38],[6,-26],[7,-23],[9,-16],[10,-6],[10,1],[9,5],[10,7],[11,13],[8,17],[34,95],[21,49],[11,10],[7,14],[5,7],[10,2],[2,3],[5,11],[2,3],[5,-1],[12,-9],[4,-5],[7,-15],[6,-21],[8,-47],[7,-25],[30,-85],[11,-47],[10,-62],[2,-38],[-7,-170],[1,-31],[3,-15],[5,-2],[25,14],[18,11],[10,5]],[[31423,51194],[5,-10],[14,-26],[19,-36],[21,-42],[22,-41],[19,-36],[13,-26],[6,-10],[11,-22],[17,-26],[17,-8],[16,10],[5,1],[6,-5],[4,-7],[5,-6],[6,-1],[6,6],[9,21],[6,6],[13,1],[5,3],[6,8],[5,12],[11,28],[6,12],[6,8],[24,24],[11,15],[7,4],[5,2],[20,-2],[6,2],[4,-1],[3,-3],[4,-6],[3,-6],[6,-17],[3,-12],[2,-13],[1,-14],[-5,-28],[-8,-23],[-7,-23],[1,-28],[3,-12],[3,-9],[5,-4],[7,1],[6,5],[7,8],[6,10],[5,19],[5,12],[1,8],[0,17],[0,5],[3,14],[3,12],[17,44],[5,5],[7,0],[12,-4],[5,1],[6,6],[6,18],[3,25],[3,49],[6,28],[10,5],[12,-2],[10,5],[0,2],[1,8],[0,3],[1,2],[3,2],[1,2],[9,17],[3,3],[7,4],[5,1],[5,3],[5,9],[6,14],[5,7],[5,0],[14,-14],[5,-2],[6,3],[35,49],[4,11],[5,27],[6,14],[6,10],[15,16],[12,18],[6,8],[7,2],[6,-8],[0,-11],[-6,-25],[-2,-11],[-1,-15],[2,-13],[5,-7],[5,5],[3,10],[5,24],[6,13],[19,30],[16,32],[13,16],[5,12],[5,15],[3,14],[2,11],[1,11],[-1,36],[4,37],[2,51],[5,20],[11,18],[10,8],[11,2],[33,-1],[5,1],[6,7],[40,68],[16,15],[3,1],[8,-2],[3,0],[18,7],[9,8],[3,12],[-1,11],[1,9],[4,19],[4,18],[1,9],[-1,40],[1,9],[2,21],[-1,8],[-5,4],[-35,3],[-18,5],[-36,2],[-17,-5],[-18,0],[-34,19],[-16,4],[-6,-3],[-4,5],[-3,10],[0,13],[2,15],[11,41],[1,11],[1,34],[1,15],[1,5],[-1,7],[-3,11],[-5,32],[-22,88],[-8,24],[-10,38],[-9,22],[-5,21],[-1,24],[3,51],[-1,25],[-7,74],[1,15],[2,10],[8,22],[2,10],[1,11],[0,22],[-2,15],[-6,12],[-12,22],[-16,42],[-7,9],[-13,10],[-11,13],[-27,45],[-12,36],[-6,13],[-13,22],[-5,14],[-13,51],[-3,24],[-2,10],[-4,10],[-6,7],[-6,4],[-5,7],[-3,13],[-1,12],[1,13],[2,12],[4,7],[13,2],[12,-14],[11,-22],[4,-11],[3,-10],[4,-26],[4,-13],[5,-4],[63,19],[34,-5],[19,-11],[7,-8],[6,-13],[5,-18],[3,-20],[5,-42],[4,-25],[7,-17],[12,-1],[11,12],[11,17],[12,12],[12,0],[11,-10],[6,-3],[6,1],[16,8],[5,2],[14,-7],[19,-35],[12,-13],[11,8],[4,20],[2,23],[7,17],[9,2],[11,-8],[18,-22],[10,-21],[16,-47],[17,-26],[30,-74],[4,-13],[3,-10],[7,-9],[6,-8],[6,-4],[6,-1],[5,-1],[5,3],[6,7],[5,11],[3,2],[4,-1],[3,0],[3,4],[4,11],[6,22],[3,24],[0,25],[-3,24],[-5,23],[0,15],[-2,5],[-1,3],[-2,7],[-1,16],[2,12],[3,12],[2,15],[-1,13],[-1,11],[2,9],[6,8],[4,2],[16,3],[23,-7],[8,4],[3,23],[0,13],[1,9],[2,7],[6,4],[9,4],[2,3],[2,4],[1,10],[1,4],[10,5],[12,-6],[53,-46],[11,-3],[12,9],[21,32],[12,4],[6,-4],[5,-4],[5,-4],[7,0],[6,2],[5,5],[6,5],[4,6],[15,33],[6,8],[5,4],[6,1],[10,-1],[9,-5],[2,-1],[4,1],[5,5],[3,1],[4,0],[2,-3],[3,0],[4,4],[3,4],[2,7],[2,7],[1,7],[2,45],[4,17],[12,10],[5,1],[16,-2],[6,1],[8,3],[7,5],[4,9],[-1,12],[-7,24],[2,7],[5,2],[16,-5],[5,-3],[10,-10],[4,-2],[5,1],[16,9],[23,6],[10,10],[8,23],[2,12],[2,26],[8,37],[2,5],[2,2],[6,0],[2,0],[27,26],[13,17],[10,20],[19,49],[6,29],[-2,28],[-19,103],[-5,10],[-8,6],[-8,2]],[[35643,52862],[9,5],[5,12],[10,53],[0,34],[3,11],[4,1],[4,-7],[2,-10],[3,-34],[8,-41],[17,-65],[4,-24],[2,17],[-2,16],[-8,27],[-9,44],[-14,89],[-4,60],[0,7],[4,31],[3,6],[6,6],[7,-8],[10,-15],[18,-26],[25,-59],[21,-56],[10,-51],[2,-32],[0,-59],[0,-71],[-5,-62],[6,-31],[1,14],[5,39],[2,53],[3,24],[6,23],[6,1],[4,-15],[-3,-93],[2,-79],[1,-59],[-5,-26],[1,-43],[16,-87],[2,-28],[-3,-18],[2,-14],[4,-21],[1,-12],[-1,-9],[0,-13],[4,-7],[2,-10],[2,-15],[1,-13],[2,-12],[4,-13],[3,-16],[2,-9],[0,-7],[-1,-9],[0,-6],[1,-9],[3,-5],[3,-3],[2,-5],[4,-4],[1,-8],[2,-10],[3,-9],[2,-11],[0,-15],[2,-12],[4,-10],[2,-12],[0,-12],[3,-20],[4,-24],[-1,-14],[-2,-6],[-2,-2],[-1,-5],[1,-5],[1,-4],[3,-1],[2,3],[1,4],[2,2],[4,-6],[5,-17],[3,-13],[0,-15],[3,-13],[3,-11],[-1,-6],[1,-10],[2,-22],[4,-13],[0,-20],[2,-13],[4,-12],[3,-10],[2,-16],[-4,-15],[-3,-3],[-2,-2],[-5,1],[-2,-3],[-8,5],[-3,4],[-3,7],[-1,0],[0,-4],[0,-3],[1,-5],[2,-3],[2,-2],[2,-2],[0,-3],[0,-4],[-1,-6],[-2,-15],[-1,-7],[2,-6],[1,-5],[2,-5],[3,1],[2,5],[0,6],[0,7],[0,6],[3,11],[4,9],[5,6],[6,3],[5,-3],[12,-15],[5,-17],[2,-28],[1,-7],[8,-32],[8,-19],[3,-11],[2,-23],[1,-9],[3,-8],[2,-7],[7,-10],[10,-8],[10,-3],[12,5],[6,7],[7,-2],[4,-1],[6,0],[3,-3],[10,4],[4,0],[7,3],[5,-2],[7,-10],[13,-10],[25,-18],[14,-18],[8,-18],[4,-16],[2,-31],[1,-20],[0,-12],[1,-16],[2,-36],[3,-21],[1,-25],[0,-19],[-3,-31],[-3,-11],[-5,-10],[-8,-8],[-9,-8],[-14,-9],[-12,-3],[-10,-6],[-4,1],[-4,2],[-2,3],[-3,-2],[1,-9],[2,-7],[5,-5],[7,5],[8,-4],[11,6],[8,1],[7,-1],[8,12],[7,0],[4,-7],[4,-12],[1,-7],[-1,-5],[-5,-19],[-8,-22],[-11,-14],[-10,-1],[-5,21],[-3,-11],[-1,-21],[-4,-20],[-10,-9],[-3,-5],[-10,-32],[-4,-8],[-4,-7],[-21,-21],[-4,-6],[-11,-27],[-3,-4],[-9,-48],[-2,-6],[-4,-7],[-19,-21],[-5,-9],[-4,-11],[-9,-53],[-17,-64],[-13,-44],[-24,-52],[-27,-69],[-3,0],[-5,3],[-9,0],[-21,-11],[-14,-21],[-11,-29],[-14,-54],[-4,-8],[-4,-3],[-18,-1],[-11,-5],[-2,-3],[0,-5],[-2,-4],[-7,-2],[-7,-7],[-12,4],[-5,-1],[0,-4],[3,-3],[6,-3],[4,-4],[1,-6],[1,-5],[2,-4],[4,0],[-20,-52],[-4,-27],[-5,-17],[-2,-21],[-2,-10],[-5,-19],[-3,-9],[-9,-15],[-3,-8],[-1,-7],[1,-9],[-1,-10],[-2,-9],[-9,-18],[-6,-8],[-4,-4],[-4,1],[-7,6],[-5,1],[0,-4],[2,0],[2,-1],[3,-3],[0,-4],[-4,-3],[-5,-1],[0,-4],[4,-1],[3,1],[3,2],[1,6],[4,-4],[-13,-31],[-14,-43],[-2,-3],[-4,-5],[-1,-3],[-12,-31],[-1,-7],[-3,-20],[-3,-50],[4,-60],[-1,-19],[0,-6],[-1,-4],[-1,-3],[-1,-4],[-3,-4],[-5,-5],[-9,-17],[-4,-5],[-6,-19],[-4,-6],[-20,-14],[-6,-12],[0,-27],[4,-51],[-2,-9],[-4,-9],[-8,-12],[-9,-21],[-3,-3],[-16,-2],[-6,2],[-18,12],[-4,6],[-4,8],[-4,7],[-5,3],[-7,-4],[-3,-4],[-7,-18],[-3,-4],[-6,-2],[-7,-8],[-19,-8],[-6,-5],[-6,-8],[-4,-9],[-2,-9],[-3,-6],[-23,-21],[-5,-2],[-12,-2],[-17,-11],[-5,-5],[-2,-5],[-1,-4],[0,-5],[0,-8],[1,-6],[2,0],[2,2],[3,2],[6,1],[18,11],[48,4],[22,8],[4,3],[10,14],[4,4],[4,-5],[4,-10],[2,-11],[1,-14],[1,-5],[1,-5],[0,-7],[-2,-7],[-4,-11],[-2,-7],[-1,-12],[1,-11],[3,-5],[7,7],[4,0],[2,1],[1,3],[0,6],[0,3],[10,20],[6,8],[5,2],[13,-1],[1,1],[4,5],[3,2],[3,0],[6,-1],[3,1],[13,8],[12,13],[68,101],[21,8],[5,6],[5,7],[21,15],[6,6],[6,10],[6,13],[2,14],[3,10],[6,6],[14,6],[0,-4],[-2,-2],[-1,-3],[-1,-3],[-2,-4],[6,2],[6,6],[6,7],[4,7],[5,11],[7,23],[4,11],[7,13],[7,11],[36,39],[8,14],[3,16],[-1,10],[-3,10],[-1,10],[4,8],[5,2],[6,-18],[6,-4],[0,5],[-3,4],[-2,6],[0,7],[3,6],[4,2],[13,-5],[7,2],[5,-1],[3,-6],[2,-7],[-1,-9],[-1,-20],[1,-28],[-1,-8],[-2,-8],[-3,-5],[-3,-3],[-3,-5],[-7,-19],[-3,-5],[-3,-3],[-3,-1],[-9,-1],[30,-41],[5,-9],[3,-11],[0,-12],[-3,-35],[1,-35],[1,-3],[2,-4],[2,-5],[1,-6],[-2,-8],[-1,-6],[-1,-7],[3,-13],[8,-24],[4,-25],[3,-9],[18,-33],[3,-10],[3,-40],[1,-14],[3,-11],[-5,-15],[-5,-1],[-13,16],[3,-13],[2,-5],[3,-13],[-2,-19],[-7,-6],[-5,-7],[-2,-11],[0,-11],[-6,-9],[-8,1],[-6,8],[-6,10],[-6,8],[-2,-10],[-1,-6],[3,-2],[3,-11],[5,-4],[-1,-15],[3,-13],[4,-5],[3,-3],[-1,13],[-1,9],[2,4],[8,-2],[15,4],[7,4],[3,3],[1,12],[-1,10],[1,11],[2,6],[4,8],[2,13],[2,3],[8,-5],[6,-2],[5,-17],[8,-28],[5,-10],[6,-8],[6,-5],[4,1],[3,1],[3,-1],[1,-7],[-1,-4],[-4,-12],[-1,-7],[4,5],[4,15],[4,5],[0,-6],[0,-6],[-1,-5],[-2,-5],[-1,-6],[1,-6],[3,-11],[2,-19],[2,-11],[3,-6],[2,15],[2,7],[2,6],[4,5],[1,7],[0,4],[1,7],[0,8],[3,7],[6,15],[8,16],[9,9],[8,-5],[5,4],[7,-1],[7,-4],[6,-7],[2,20],[5,12],[7,8],[24,13],[7,2],[6,-2],[7,-4],[6,-6],[15,-21],[2,-6],[1,-10],[-1,-8],[-7,-26],[6,12],[4,12],[1,-12],[1,-12],[0,-12],[-1,-13],[-2,-12],[-5,-24],[-2,-13],[2,0],[6,25],[1,0],[2,-10],[3,-11],[3,-10],[4,-6],[-5,30],[-3,31],[1,47],[-3,10],[0,4],[4,-2],[1,-7],[-1,-19],[3,13],[1,9],[2,7],[8,3],[6,-1],[4,-4],[3,-7],[3,-8],[-1,11],[2,4],[3,-2],[2,-9],[3,9],[5,-1],[6,-6],[9,-18],[5,-11],[2,-12],[1,-14],[4,11],[-4,18],[-12,32],[-3,-4],[-1,5],[-1,7],[6,17],[9,14],[10,5],[7,-15],[4,38],[4,10],[7,9],[5,0],[2,-9],[-1,-16],[3,4],[4,9],[4,3],[-1,-12],[-7,-15],[-1,-7],[0,-12],[2,-8],[4,-6],[5,-5],[10,-4],[3,-6],[0,-12],[0,-8],[-2,-10],[-2,-10],[-3,-6],[0,-5],[4,0],[-3,-8],[-6,-13],[-3,-7],[-1,-7],[0,-48],[-1,-5],[-3,-12],[-1,-14],[-2,-4],[-3,-3],[-2,-4],[-7,-26],[-1,-3],[-1,-4],[0,-30],[-1,-6],[-2,-4],[-2,-4],[-1,-5],[-1,-6],[0,-11],[-1,-6],[-5,-13],[-1,-6],[1,-7],[1,-11],[1,-32],[-1,-12],[-17,-52],[-3,-6],[-6,-3],[-6,-7],[-5,-10],[-3,-12],[7,-5],[12,4],[21,17],[5,8],[1,8],[0,8],[2,13],[1,4],[6,6],[1,1],[1,2],[1,11],[1,4],[7,15],[3,9],[1,13],[1,11],[-1,22],[0,11],[3,17],[26,96],[5,26],[3,22],[0,11],[1,8],[19,85],[8,24],[8,15],[2,2],[2,2],[4,11],[1,10],[4,23],[1,20],[10,11],[11,16],[11,24],[5,27],[7,21],[11,4],[6,5],[7,8],[4,7],[2,0],[0,-4],[-5,-12],[-5,-7],[0,-14],[-3,-10],[-2,-20],[-5,-8],[-2,-4],[-2,-4],[-1,-3],[2,-9],[-1,-14],[-3,-13],[-4,-12],[-7,-4],[-5,-9],[-2,-12],[-3,-6],[-1,-5],[5,0],[4,2],[3,6],[2,11],[8,7],[7,9],[3,15],[2,12],[3,4],[2,7],[3,4],[0,2],[-2,12],[0,4],[2,4],[5,5],[2,3],[1,2],[2,8],[0,2],[1,3],[1,-1],[1,0],[2,1],[3,0],[1,1],[1,3],[-1,5],[1,3],[21,65],[0,2],[0,3],[0,2],[1,3],[1,1],[3,0],[0,1],[4,7],[1,3],[1,6],[5,27],[6,20],[4,-1],[3,-12],[4,-13],[3,-17],[8,-33],[4,-10],[3,-9],[2,-13],[3,-9],[3,1],[6,-19],[3,-4],[7,-1],[4,-3],[3,-6],[2,-8],[1,-8],[2,10],[-1,12],[-1,11],[-1,10],[-3,12],[-10,21],[-1,14],[5,-7],[5,-2],[5,1],[15,8],[5,6],[5,8],[4,10],[-3,1],[-8,-1],[-4,1],[-3,1],[-2,3],[-3,3],[-3,-5],[-5,-3],[-5,-2],[-6,2],[-6,5],[-2,8],[1,10],[1,14],[2,48],[2,27],[8,22],[5,15],[4,-8],[-2,-20],[1,-19],[4,-3],[20,-8],[1,2],[1,11],[2,9],[1,29],[5,25],[6,13],[9,-14],[-2,10],[-4,7],[-2,7],[2,9],[-2,3],[2,5],[3,-3],[3,2],[4,3],[3,2],[-3,3],[-3,0],[-8,-3],[-1,3],[-4,17],[-1,15],[1,7],[4,2],[13,1],[5,1],[4,3],[3,7],[1,6],[0,7],[0,5],[2,3],[0,2],[4,10],[1,2],[0,14],[2,13],[1,2],[2,3],[0,3],[-1,9],[0,3],[1,15],[0,7],[-1,6],[-2,4],[-1,3],[-1,3],[0,12],[2,9],[11,34],[21,37],[3,-8],[1,-5],[1,-7],[0,-4],[-1,-8],[0,-5],[0,-1],[3,-3],[1,-2],[2,-7],[9,-20],[2,-1],[4,24],[19,26],[3,14],[5,1],[8,-5],[5,-6],[-1,8],[-4,7],[-1,15],[0,19],[2,11],[1,9],[1,5],[6,-10],[4,-10],[1,-12],[0,-11],[7,2],[6,-6],[2,-14],[0,-27],[-2,-6],[-3,-7],[-2,-6],[2,-7],[2,1],[21,19],[7,10],[4,8],[4,10],[3,21],[2,3],[-2,13],[1,21],[3,-2],[4,-5],[6,-12],[-2,-10],[3,-6],[1,-5],[1,-7],[1,-7],[1,-4],[3,-6],[4,-15],[2,-10],[0,-10],[-3,-11],[20,0],[5,-4],[0,-18],[4,-7],[0,7],[1,7],[1,6],[2,5],[-2,2],[-1,3],[-1,4],[0,5],[-6,6],[-7,20],[-2,5],[-1,-7],[-1,-6],[-2,-4],[-2,-4],[0,64],[1,8],[5,1],[-4,9],[4,4],[5,3],[4,-1],[4,-6],[-1,-5],[-2,-5],[-1,-3],[1,-8],[-1,-20],[2,-12],[0,7],[0,6],[1,4],[3,3],[1,-8],[1,-7],[2,-4],[3,-1],[0,3],[-2,4],[-2,6],[0,8],[2,7],[4,2],[4,-4],[6,-10],[-1,9],[-1,6],[-2,5],[-2,8],[5,-4],[3,4],[3,6],[3,3],[5,-4],[0,-9],[0,-11],[0,-9],[2,0],[3,4],[2,-4],[1,-8],[-2,-9],[5,7],[1,8],[-1,9],[-1,9],[12,-18],[1,-7],[-1,-8],[-3,-3],[-2,7],[-2,0],[-1,-6],[-1,-4],[-2,-4],[-3,-1],[0,-4],[4,-9],[1,0],[2,9],[4,2],[5,-3],[5,-4],[0,7],[0,4],[2,3],[1,3],[2,-9],[0,-10],[-1,-9],[-2,-9],[-2,-3],[-5,-4],[-1,-3],[1,-5],[2,0],[3,3],[2,4],[3,-4],[2,-6],[1,-7],[1,-7],[2,10],[-1,13],[-1,11],[4,6],[0,-4],[2,-5],[0,-3],[1,5],[0,4],[-1,3],[0,6],[0,4],[3,6],[1,5],[0,12],[2,5],[3,3],[3,-3],[1,-5],[0,-7],[-2,-5],[1,-2],[1,1],[0,-1],[0,-2],[-2,-5],[0,-15],[-1,-9],[1,-4],[2,8],[2,-9],[0,-10],[1,-8],[5,-1],[-3,-7],[-5,-7],[-2,-7],[1,-6],[4,-11],[1,-7],[1,6],[1,22],[1,6],[1,5],[2,6],[2,4],[1,-2],[3,-2],[-1,13],[1,6],[2,1],[4,0],[2,5],[2,11],[3,21],[3,-9],[0,-15],[-3,-29],[2,0],[2,8],[2,-3],[1,-4],[0,-4],[-1,-5],[5,0],[-1,-4],[-2,-9],[-1,-4],[3,2],[0,1],[1,1],[2,-9],[-3,-4],[-3,-3],[-3,-4],[-3,-7],[-1,-8],[1,-8],[5,-5],[-1,10],[0,7],[0,6],[4,5],[7,-4],[3,2],[0,11],[2,-5],[0,8],[0,29],[2,-3],[2,-4],[1,-4],[0,-6],[2,0],[1,4],[1,2],[1,2],[3,1],[-1,4],[-2,3],[-2,3],[-3,2],[4,7],[7,21],[5,4],[0,4],[-4,4],[3,-1],[3,-3],[2,-5],[2,-7],[-4,-2],[0,-4],[1,-5],[3,-5],[-5,-4],[-1,0],[0,-4],[1,-4],[0,-4],[-2,-3],[-3,-1],[0,-4],[3,-2],[1,-3],[-1,-6],[-1,-6],[3,2],[2,3],[2,5],[1,7],[1,0],[-2,-33],[0,-1],[0,-2],[1,-5],[3,-12],[0,-4],[2,9],[-2,7],[-1,7],[3,9],[2,0],[0,-12],[3,3],[1,7],[0,18],[3,-5],[7,-22],[1,-7],[-1,-10],[-8,-29],[4,7],[7,25],[3,5],[0,7],[0,15],[3,11],[5,-5],[2,-7],[1,-6],[0,-5],[4,-2],[3,2],[-1,6],[-6,24],[1,7],[5,0],[6,-7],[5,-32],[-7,-18],[-1,-7],[2,0],[2,3],[1,-4],[-1,-8],[-2,-6],[-4,-5],[-4,-1],[-3,3],[0,10],[-3,0],[-1,-8],[-3,-6],[-11,-15],[-4,-7],[-3,-9],[0,-12],[3,11],[5,10],[5,8],[6,4],[1,-1],[6,-1],[8,3],[6,3],[6,-8],[5,12],[1,13],[4,9],[8,7],[4,10],[4,3],[4,-3],[2,5],[6,2],[5,2],[3,-7],[-1,-8],[-5,-5],[-6,-2],[-6,-8],[2,-10],[-1,-10],[-3,-7],[0,-6],[5,-6],[-1,-13],[-2,-9],[4,0],[1,-5],[-3,-8],[3,-1],[3,2],[2,3],[2,6],[1,2],[3,-3],[3,-4],[2,-2],[4,7],[2,11],[5,0],[0,-10],[0,-11],[2,-13],[1,-5],[1,4],[0,11],[2,9],[3,7],[3,1],[2,-8],[0,-23],[-1,-5],[-1,-9],[0,-6],[4,7],[2,10],[1,12],[0,16],[2,0],[3,-11],[7,-16],[2,-10],[-2,10],[-4,14],[-2,8],[-1,2],[-1,4],[0,4],[5,4],[-2,6],[-2,5],[0,7],[3,8],[2,13],[3,11],[5,9],[9,5],[8,-8],[0,-21],[-2,0],[-3,-1],[-4,-11],[-3,-12],[-2,-8],[5,3],[2,-3],[-1,-4],[-4,-4],[1,-2],[0,-2],[0,-2],[1,-3],[-1,-3],[-1,-5],[-2,-3],[3,-10],[-14,-64],[9,21],[2,4],[4,-1],[3,-4],[4,-2],[5,3],[3,13],[2,7],[2,0],[1,-7],[-2,-21],[-1,-9],[4,7],[2,11],[0,25],[1,5],[2,6],[2,5],[2,2],[2,-1],[1,-4],[0,-6],[1,-5],[5,-18],[1,-10],[-3,-4],[-3,-5],[-2,-9],[-1,-11],[3,-8],[4,5],[2,7],[4,16],[3,-7],[0,-7],[-1,-7],[-2,-7],[5,6],[0,9],[-1,11],[0,11],[1,5],[2,7],[2,8],[0,12],[2,0],[0,-3],[1,-1],[0,-2],[1,-2],[3,2],[0,15],[0,6],[4,8],[4,-5],[0,-6],[1,-8],[-3,0],[-1,-3],[4,-9],[-3,-2],[-2,-5],[-1,-13],[3,2],[2,1],[2,-1],[2,-2],[-3,-3],[-11,-3],[-1,-25],[1,-5],[4,-1],[3,-1],[4,-3],[1,-6],[0,-12],[2,-6],[3,3],[1,3],[0,5],[-2,5],[2,1],[0,1],[1,1],[1,1],[-1,9],[2,17],[4,19],[5,30],[7,16],[3,-3],[0,-19],[-8,-24],[-2,-8],[-2,-8],[-2,-3],[0,-15],[0,-7],[2,16],[2,7],[3,5],[-1,-9],[0,-3],[3,-11],[-2,-10],[-4,-11],[-1,-12],[7,13],[2,3],[0,-4],[-1,-4],[1,-4],[0,-4],[-1,-4],[-3,-8],[-1,-4],[6,7],[4,9],[3,14],[0,18],[3,-9],[2,-14],[0,-12],[-2,-6],[-4,-4],[2,-11],[4,-10],[2,-7],[-2,18],[3,13],[4,4],[3,-6],[3,8],[1,21],[2,11],[4,4],[7,41],[6,0],[1,-16],[-8,-38],[-2,-15],[1,0],[1,2],[1,6],[5,9],[4,12],[3,-5],[1,-11],[1,-9],[-1,-9],[3,-6],[3,-3],[-2,-11],[3,-4],[0,-11],[-2,-9],[-2,-8],[-2,-4],[-1,-7],[10,-3],[2,2],[3,6],[1,5],[2,8],[0,9],[-1,6],[-2,8],[0,7],[3,5],[4,2],[4,-1],[1,-4],[-2,-5],[-3,-2],[1,-1],[0,-1],[1,-1],[1,0],[-1,-5],[0,-5],[0,-3],[1,-4],[7,26],[5,7],[3,-8],[-3,0],[-2,-3],[-1,-6],[1,-7],[1,1],[3,1],[1,1],[-1,-7],[-3,-5],[-1,-6],[0,-10],[1,1],[3,3],[0,6],[3,7],[0,8],[2,0],[1,-25],[0,-4],[-3,-15],[-1,-11],[-1,-7],[5,7],[12,32],[0,4],[0,6],[1,6],[2,7],[2,3],[9,8],[-8,0],[6,4],[3,-1],[2,-5],[1,-12],[0,-5],[-2,-10],[0,-5],[-1,-2],[-5,0],[-2,-2],[-6,-5],[-1,-1],[-2,-5],[0,-5],[0,-5],[0,-5],[-3,-17],[-1,-10],[2,-10],[-6,3],[-4,-4],[-7,-15],[3,0],[3,4],[1,5],[0,7],[4,-4],[2,-6],[-1,-8],[-3,-6],[3,-1],[2,1],[2,3],[1,5],[5,-6],[0,-9],[0,-10],[1,-8],[3,11],[0,13],[-2,27],[1,4],[3,6],[3,6],[2,2],[1,-2],[0,-7],[-2,-7],[-2,-4],[3,3],[4,8],[2,1],[0,3],[4,15],[2,11],[7,26],[0,8],[-1,10],[3,5],[6,-1],[5,-8],[0,-6],[3,-47],[-2,3],[-1,2],[-4,-17],[-5,-10],[-7,-7],[-7,-11],[1,-4],[3,7],[2,3],[3,1],[2,-3],[-2,-7],[-2,-9],[-1,-9],[-1,-10],[-2,-3],[-3,-4],[-3,-7],[3,-12],[1,9],[1,5],[-1,6],[10,-8],[3,-14],[-1,-17],[-3,-25],[-2,-8],[-1,-10],[0,-11],[2,-10],[2,-6],[4,-5],[4,-4],[11,8],[3,6],[-1,11],[4,4],[9,8],[2,6],[-1,10],[-7,19],[-1,10],[2,16],[5,19],[7,13],[7,0],[1,15],[3,11],[4,0],[3,-13],[2,0],[1,10],[3,5],[4,4],[1,3],[2,2],[3,-5],[0,-5],[-6,-2],[7,0],[2,8],[0,12],[2,12],[1,-22],[1,-6],[2,-3],[3,-3],[3,-2],[2,2],[4,-2],[3,-11],[-1,-9],[-6,4],[3,-9],[4,-2],[4,0],[4,-6],[0,-4],[-5,-5],[-6,-4],[-4,-6],[0,-13],[1,0],[2,10],[4,1],[8,-7],[-2,8],[2,9],[2,9],[1,10],[0,18],[2,6],[6,1],[0,4],[-2,0],[0,4],[5,5],[6,7],[4,9],[2,9],[1,3],[2,-3],[2,-6],[1,-6],[0,-18],[0,-4],[-2,-3],[-5,-6],[-3,-3],[-1,-5],[-2,-9],[-4,-12],[-2,-9],[0,-10],[2,-12],[-4,-1],[-5,3],[-3,-2],[4,-6],[5,-11],[2,-11],[-5,-5],[4,-1],[2,2],[3,18],[-1,4],[1,4],[4,6],[4,-8],[3,-10],[4,-6],[5,3],[-5,4],[-1,8],[2,9],[2,8],[-2,0],[0,3],[1,3],[1,2],[0,4],[4,-6],[2,-9],[1,-10],[0,-12],[2,12],[0,5],[3,-11],[-1,-7],[-2,-5],[-2,-8],[1,-4],[6,-8],[1,-6],[-1,-1],[-5,-11],[2,-4],[5,-6],[2,-2],[-4,-8],[-2,-3],[-3,-6],[-1,2],[-1,1],[-3,-3],[0,-2],[0,-2],[2,-4],[11,15],[2,8],[-2,14],[9,-10],[5,-2],[5,4],[-4,-19],[-8,-14],[-17,-20],[0,-4],[5,3],[10,4],[4,3],[3,6],[3,-3],[1,-7],[3,-6],[8,1],[4,15],[3,21],[0,20],[15,-17],[-4,-5],[-3,-6],[-2,-7],[-2,-10],[-1,-9],[0,-8],[-1,-6],[-4,-1],[0,-4],[3,2],[5,5],[3,1],[2,-2],[2,-5],[1,-4],[1,-1],[2,4],[1,7],[1,6],[3,3],[2,-3],[1,-8],[-2,-8],[-2,-5],[2,-4],[2,6],[3,3],[2,4],[1,7],[2,-2],[1,-2],[1,-4],[1,-4],[-4,-11],[-11,-13],[-4,-9],[6,1],[9,5],[4,-2],[3,-5],[2,-9],[1,-11],[0,-9],[1,-5],[2,-10],[1,-5],[-1,-5],[-1,-3],[-1,-2],[-1,-3],[-2,-4],[-5,-1],[-6,1],[-4,2],[-3,-7],[-4,-4],[-8,-5],[2,0],[1,0],[1,-1],[1,-3],[5,7],[5,3],[6,0],[5,-2],[5,0],[3,-2],[0,-6],[-2,-5],[-9,-15],[-6,-4],[-6,-21],[-8,-19],[-9,3],[-2,-4],[4,-2],[4,0],[4,1],[1,1],[3,-6],[-2,-5],[-6,-9],[-11,-25],[-5,-5],[-9,2],[2,-4],[1,-4],[1,-9],[-11,7],[-5,1],[-5,-5],[-5,-9],[-4,-6],[-6,4],[5,-7],[12,9],[12,6],[3,-20],[2,0],[2,8],[4,7],[4,2],[1,-7],[0,-8],[-2,-6],[-2,-4],[-1,-5],[-3,-13],[-1,-3],[-3,-6],[-2,-6],[-1,-14],[-2,-6],[2,-4],[1,7],[1,5],[2,4],[7,13],[3,2],[1,-5],[-1,-23],[0,-10],[3,-5],[-1,5],[0,8],[1,8],[3,11],[-1,5],[-1,5],[-1,4],[0,14],[1,11],[2,11],[3,11],[13,25],[3,4],[3,1],[3,3],[3,8],[-1,-1],[1,9],[0,2],[2,3],[1,3],[9,17],[10,2],[10,-11],[8,-21],[2,-12],[1,-12],[1,-22],[0,-1],[4,-9],[1,-4],[1,-7],[-1,-14],[-2,-25],[-3,-11],[-3,-4],[-10,-3],[-7,0],[-5,3],[-2,3],[-3,8],[-2,2],[-1,1],[-1,1],[0,2],[-1,1],[0,3],[-2,-1],[-1,-2],[-5,-5],[-4,-6],[-3,-8],[-2,-7],[13,17],[4,-2],[2,-17],[-3,-30],[-2,-18],[-4,-11],[-4,-2],[-2,1],[-3,0],[-3,-7],[-3,-18],[-2,-2],[-5,-2],[-7,-6],[-5,-8],[-1,-9],[4,9],[13,11],[5,6],[3,7],[1,6],[1,4],[5,2],[1,-4],[-1,-7],[-2,-7],[-1,-2],[-14,-61],[-7,-17],[2,-5],[-1,-7],[-3,-16],[-2,-14],[-1,-11],[1,-26],[-1,-14],[-10,-37],[-1,-4],[1,-18],[-1,-6],[-1,-12],[0,-6],[2,-10],[6,-3],[7,-1],[4,-4],[1,-15],[-5,-11],[-6,-8],[-3,-9],[-2,-8],[-2,-6],[-4,-4],[-2,-4],[-1,-6],[-2,-14],[-1,-5],[-5,-6],[-7,-2],[-5,-4],[-2,-10],[1,-11],[1,-11],[3,-11],[3,-9],[-10,-9],[10,-3],[2,9],[-2,31],[2,11],[3,7],[5,5],[13,3],[5,6],[4,9],[4,11],[5,23],[4,4],[7,2],[12,41],[14,15],[2,3],[1,9],[10,21],[3,10],[2,12],[2,13],[1,12],[-1,27],[1,13],[4,7],[-1,2],[-1,2],[-1,2],[-1,2],[9,66],[2,23],[1,-5],[1,-5],[0,-4],[0,-6],[2,0],[-5,67],[3,7],[1,5],[3,2],[5,0],[4,-4],[3,-9],[3,-19],[0,17],[-1,7],[-3,4],[1,7],[0,7],[0,8],[2,8],[4,4],[16,3],[30,32],[8,0],[3,10],[6,-1],[5,-9],[1,-16],[-4,2],[-7,1],[-6,-3],[-2,-8],[8,-3],[2,-1],[1,-5],[0,-14],[1,-6],[0,6],[0,5],[2,10],[2,0],[2,-14],[0,-12],[-1,-11],[-3,-12],[-5,1],[-5,-6],[-4,-11],[-1,-2],[-2,-1],[-2,-2],[-2,-4],[5,-4],[-1,-12],[-8,-29],[-4,-6],[-4,-4],[-4,-1],[-3,0],[-2,2],[-4,10],[1,-10],[1,-4],[2,-3],[-4,-6],[-7,-4],[-4,-4],[-7,-16],[-2,-2],[-8,-6],[-7,-14],[-2,-15],[5,-10],[0,14],[2,11],[3,4],[4,-8],[-2,-11],[-2,-2],[0,-4],[4,-8],[2,16],[1,1],[2,-1],[2,0],[1,2],[0,8],[1,6],[1,5],[1,4],[3,-5],[7,-11],[-1,9],[2,6],[9,5],[-1,-12],[4,-17],[-2,-10],[-3,-3],[-4,-4],[-2,-3],[-1,-4],[0,-2],[1,0],[2,2],[0,-3],[1,-3],[1,-2],[0,-4],[9,18],[2,6],[1,-1],[1,-1],[0,-2],[3,8],[3,10],[1,11],[1,10],[2,6],[3,5],[2,1],[-2,-6],[0,-4],[4,2],[1,2],[1,4],[2,-4],[-1,-5],[0,-1],[1,-2],[0,-4],[1,4],[0,2],[1,2],[0,-8],[-1,-6],[-3,-11],[4,7],[2,11],[0,25],[1,10],[2,10],[4,15],[4,16],[2,8],[9,12],[1,2],[1,1],[8,-11],[0,4],[-3,6],[0,7],[3,15],[4,11],[3,5],[1,-1],[7,-30],[4,-21],[1,7],[-1,7],[-1,8],[-1,9],[2,7],[7,7],[2,2],[2,0],[1,1],[2,2],[2,0],[2,0],[3,1],[6,10],[4,4],[4,1],[2,-3],[2,7],[0,18],[4,6],[3,-7],[2,-15],[-1,-15],[-3,-8],[0,-5],[2,0],[0,5],[2,0],[0,-5],[2,0],[0,4],[0,3],[2,6],[2,-3],[2,-1],[5,0],[-6,10],[0,14],[3,13],[7,4],[-2,-5],[-1,-5],[-3,-11],[4,6],[5,2],[3,-4],[2,-12],[5,6],[11,-9],[5,3],[-2,4],[-4,0],[0,5],[1,9],[3,6],[0,-12],[2,8],[1,8],[-1,7],[-4,6],[5,12],[4,-4],[1,-13],[-1,-16],[4,0],[2,-20],[4,-4],[-2,-8],[3,1],[2,4],[1,5],[2,6],[2,-10],[1,-10],[2,5],[1,8],[-1,9],[-5,17],[3,2],[10,-5],[0,4],[-5,1],[-3,7],[-2,9],[-2,8],[2,0],[2,-5],[2,-3],[4,-1],[4,1],[-5,9],[-12,14],[-4,13],[1,10],[2,8],[2,7],[0,4],[4,3],[4,1],[4,1],[5,1],[6,-2],[6,-2],[7,-1],[8,-1],[16,-12],[15,-8],[22,-22],[29,-24],[20,-14],[7,-6],[10,-11],[7,-7],[9,-12],[1,-2],[3,-1],[10,-8],[2,0],[16,0],[3,-2],[1,-4],[2,-4],[1,-1],[3,-6],[12,-31],[14,-18],[4,-2],[3,-1],[4,-3],[3,0],[4,1],[8,7],[0,-10],[-1,-8],[-2,-3],[-5,4],[2,-14],[4,-6],[5,-3],[6,-9],[2,3],[5,5],[3,4],[2,-4],[1,-7],[8,-4],[32,-1],[2,-5],[0,-10],[-1,-11],[-2,-7],[8,6],[1,-4],[-2,-14],[2,0],[1,7],[2,6],[3,5],[2,2],[3,-5],[5,-2],[5,2],[3,3],[18,2],[-1,-2],[-1,-2],[2,-8],[0,-4],[4,5],[6,-1],[5,-2],[2,0],[2,8],[3,-1],[10,-12],[3,-4],[4,1],[1,8],[1,22],[-1,8],[-4,-3],[-2,0],[-3,6],[-8,11],[-4,5],[1,9],[4,3],[27,-2],[17,-3],[5,-2],[-6,-19],[3,2],[2,3],[4,7],[8,-22],[24,-30],[8,-14],[2,-7],[-2,2],[-4,4],[-2,2],[1,-2],[1,-6],[-2,2],[-3,2],[0,-4],[3,-4],[3,-3],[3,1],[4,6],[3,-10],[5,-6],[6,-4],[23,-3],[8,2],[6,9],[3,-5],[2,-5],[0,-6],[-3,-8],[1,-1],[3,1],[-1,-3],[0,-1],[-1,-2],[0,-2],[2,0],[1,1],[3,3],[-3,13],[5,3],[22,-7],[2,-1],[2,-6],[1,-5],[-2,-4],[-2,-2],[1,-2],[3,-4],[1,-2],[2,2],[1,-1],[2,-4],[1,-5],[2,0],[0,8],[6,-9],[4,-15],[3,-4],[1,-2],[1,16],[-1,9],[-4,14],[-2,12],[-5,8],[-1,7],[-3,-2],[-1,0],[-2,0],[-2,2],[4,4],[8,11],[4,2],[17,0],[8,-2],[8,-4],[8,-7],[6,-12],[2,0],[-1,7],[-1,7],[-4,11],[4,-4],[2,0],[40,8],[3,-1],[5,-2],[2,-1],[3,1],[1,6],[2,1],[9,1],[2,-3],[1,-10],[2,0],[3,6],[14,15],[4,3],[48,8],[15,14],[5,2],[1,2],[2,7],[2,-1],[1,-1],[1,-2],[1,0],[22,-8],[35,-1],[24,-8],[4,-2],[6,-11],[3,-3],[3,2],[1,6],[2,4],[3,-4],[4,2],[4,-3],[4,-5],[4,-2],[14,1],[4,-1],[23,-32],[9,-5],[3,-3],[15,-31],[3,-4],[4,-2],[4,-4],[7,-11],[5,-11],[-2,-6],[2,-2],[2,-1],[1,-1],[3,0],[-3,8],[4,5],[5,-2],[11,-11],[1,-1],[5,1],[1,-2],[2,-8],[0,-3],[11,-18],[20,-24],[3,-8],[25,-23],[4,-1],[2,0],[2,1],[3,0],[1,-2],[2,-4],[2,-4],[5,-4],[10,-14],[2,1],[2,-1],[1,-3],[1,-3],[1,-4],[0,-2],[18,-27],[8,-15],[3,-3],[3,-1],[5,-1],[3,-2],[4,-8],[3,-10],[3,-7],[6,-3],[12,-1],[4,-3],[4,-4],[7,-14],[5,-15],[8,-36],[5,3],[4,-5],[3,-7],[4,-8],[14,-8],[5,-16],[7,-14],[9,-13],[7,-6],[3,-4],[7,-19],[3,-5],[18,-8],[19,-16],[9,-2],[4,14],[3,-5],[3,-7],[6,-24],[7,-21],[2,-9],[2,-19],[2,-8],[3,-9],[16,-31],[3,-5],[13,-13],[3,-6],[18,-53],[22,-63],[22,-47],[26,-41],[4,-4],[19,-37],[5,-5],[6,-4],[6,-2],[6,-1],[16,-70],[8,-20],[9,-18],[12,-17],[12,-13],[8,-5],[3,3],[3,5],[7,-3],[17,-19],[29,-21],[9,-12],[5,-15],[12,-59],[13,-41],[13,-12],[6,6],[5,1],[4,-3],[9,-8],[3,0],[8,4],[8,1],[23,-5],[5,-6],[9,-22],[1,-4],[3,-3],[4,-6],[3,-7],[1,-6],[4,-13],[9,-9],[11,-5],[6,0],[0,-8],[4,-2],[11,2],[10,-4],[5,-4],[8,-12],[4,-3],[4,3],[2,10],[-3,3],[-10,5],[-3,7],[10,-5],[34,5],[23,-5],[11,-7],[5,-2],[7,1],[0,4],[-10,0],[0,4],[45,-4],[5,2],[10,12],[10,4],[7,8],[5,2],[22,-6],[42,-17],[30,-14],[22,-5],[9,-5],[11,-10],[4,-8],[11,-23],[5,-5],[5,-4],[4,-9],[4,-10],[5,-21],[3,-13],[1,-13],[1,-13],[2,-6],[8,-16],[16,-60],[2,-24],[2,-13],[3,-12],[3,-9],[-2,-4],[2,-6],[5,-41],[0,-6],[3,-7],[0,-41],[2,-8],[3,-6],[2,-8],[1,-13],[-1,-9],[0,-6],[1,-7],[5,-11],[0,-2],[1,-6],[-1,-20],[1,-6],[3,-8],[0,-6],[1,-3],[5,-10],[2,-5],[0,-6],[0,-19],[-2,-12],[0,-6],[3,-2],[1,-3],[2,-71],[-8,13],[-1,-11],[-7,-14],[-1,-6],[5,-4],[4,5],[3,9],[4,5],[2,-4],[3,-13],[2,-4],[6,0],[2,-2],[1,-4],[0,-13],[3,-24],[1,-11],[-1,-9],[1,-6],[2,-7],[1,-5],[4,-4],[2,-4],[2,-8],[3,-25],[4,-62],[0,-27],[-3,-20],[2,-13],[1,-7],[1,-14],[2,-6],[2,-6],[1,-7],[0,-11],[-1,-12],[-1,-12],[2,-13],[0,3],[6,-48],[3,-14],[3,-4],[8,-8],[1,-4],[0,-29],[-1,-8],[-1,-4],[-2,-2],[-1,-4],[-1,-7],[1,-13],[0,-8],[-5,-24],[1,-1],[-2,-4],[-2,-2],[-2,2],[-2,4],[3,-6],[1,-7],[0,-7],[-2,-8],[5,8],[6,13],[4,14],[2,12],[1,12],[4,23],[-1,11],[4,-7],[0,-11],[-2,-22],[0,-35],[1,-18],[1,-4],[2,-4],[4,-6],[2,-3],[1,-10],[-1,-10],[-2,-9],[0,-9],[0,-87],[-3,-44],[0,-23],[3,-18],[-3,-17],[-1,-4],[-2,0],[-3,4],[-2,0],[-10,0],[-4,0],[-1,-1],[-4,-2],[-5,-5],[18,1],[8,-5],[1,-12],[3,-10],[3,-8],[1,-6],[-2,-9],[-2,-9],[-2,-16],[-2,1],[0,7],[-1,7],[0,7],[-1,-4],[-1,-4],[0,-9],[-6,24],[-2,8],[0,-11],[4,-29],[-1,-11],[-3,1],[-3,-3],[-4,-6],[-2,-9],[6,6],[2,5],[3,0],[1,-2],[-1,-6],[-2,-5],[-3,-5],[-2,-10],[0,-26],[2,-6],[11,-4],[0,-7],[1,-8],[-1,-22],[4,16],[2,-7],[2,-14],[2,-7],[-2,-5],[0,-3],[0,-3],[2,-5],[-3,-12],[-7,-53],[0,-10],[-1,-6],[-4,-1],[-4,5],[-6,12],[-3,4],[-5,0],[4,-6],[2,-4],[2,-6],[1,-7],[0,-6],[0,-6],[3,-6],[1,5],[1,4],[-1,-9],[-3,-22],[-2,-22],[-1,-6],[-5,-15],[-3,-16],[-2,-18],[-1,-23],[0,-16],[1,-6],[0,-2],[-2,-3],[-1,-5],[-1,-6],[-1,-5],[-19,-114],[-12,-51],[0,-6],[-3,-5],[-1,-12],[-1,-24],[-2,-12],[-9,-27],[-2,-12],[-1,-26],[-3,-24],[-11,-47],[-12,-34],[-8,-39],[-8,-23],[-4,-24],[-25,-66],[-6,-11],[0,4],[-6,-7],[-7,-11],[-6,-12],[-2,-13],[-1,-9],[-22,-70],[-2,-6],[-14,-18],[-7,-8],[-5,-19],[-6,-38],[-4,-1],[-2,-2],[-7,-1],[-3,-2],[-2,-2],[-5,-8],[4,15],[4,9],[1,11],[-5,18],[-2,6],[-4,7],[-4,2],[-3,-7],[0,-4],[4,-15],[1,-8],[0,-16],[0,-5],[-2,-3],[-2,-2],[-13,-26],[-1,-2],[-3,10],[-2,12],[0,6],[-9,28],[1,9],[-4,10],[-6,5],[-6,-7],[3,-10],[8,-11],[4,-8],[2,-7],[6,-46],[2,-4],[3,-2],[1,2],[0,5],[1,4],[10,3],[4,3],[2,6],[-4,-14],[-14,-30],[-6,-36],[-6,-13],[-12,-21],[-7,-31],[-2,-5],[-3,-4],[-3,-9],[-9,-40],[-4,-9],[-11,-9],[-15,-39],[-30,-52],[-8,-19],[-3,-10],[-1,-14],[1,-7],[0,-4],[0,-3],[-1,-5],[-32,-89],[-3,-4],[-11,-7],[-7,-1],[-6,-3],[-4,-4],[-5,-5],[-11,-4],[-1,-2],[-3,-9],[-1,-2],[-4,-2],[-44,-58],[-37,-59],[-14,-38],[-3,-17],[-4,-12],[-14,-30],[-3,-8],[-2,-9],[0,-12],[-1,-8],[-21,-69],[-4,-6],[-2,2],[0,6],[1,7],[0,5],[-1,4],[-1,1],[-2,1],[-1,6],[-2,0],[-2,-8],[-3,6],[-4,19],[-2,2],[-11,10],[-3,2],[-1,2],[-2,0],[-2,-4],[0,-6],[0,-5],[2,-7],[1,-7],[2,-4],[2,-1],[2,1],[2,1],[3,-3],[2,-4],[2,-3],[4,-3],[0,-4],[-5,4],[-1,-3],[1,-6],[3,-3],[3,1],[1,3],[1,3],[1,1],[3,-3],[2,-3],[0,-5],[-1,-5],[1,-6],[0,-21],[3,-10],[0,4],[1,-4],[-6,-9],[-8,-7],[-6,-9],[-2,-13],[-2,-5],[-2,-4],[-3,-3],[-3,-3],[-1,-4],[-5,-19],[-8,-53],[-4,-9],[-12,-5],[-4,1],[0,5],[1,6],[0,4],[-5,2],[8,22],[2,6],[1,16],[1,5],[3,8],[12,19],[3,7],[1,3],[5,3],[-4,7],[0,17],[-3,8],[-1,-15],[0,-7],[1,-6],[-2,0],[-5,20],[-4,10],[-2,4],[-1,-12],[8,-27],[0,-12],[-2,4],[-6,9],[1,-7],[1,-4],[1,-3],[1,-5],[-1,-6],[-1,-1],[-3,0],[-2,-2],[-3,-6],[-3,-7],[-4,-16],[-4,-30],[-2,-6],[-3,0],[-2,10],[-2,22],[-1,-8],[-2,-3],[-2,1],[-3,6],[3,-20],[2,-7],[3,-5],[11,-10],[2,-5],[-3,-19],[-7,-14],[-9,-8],[-8,-5],[5,-3],[6,2],[6,4],[4,4],[4,8],[4,9],[3,9],[5,3],[-2,-11],[-19,-57],[-21,-91],[-1,-22],[-2,-9],[-7,-17],[-16,-86],[-8,-27],[-6,-32],[-18,-52],[-19,-76],[-23,-69],[-17,-55],[-19,-52],[-14,-47],[-4,-3],[-2,-4],[-20,-48],[-19,-51],[-22,-44],[-8,-24],[-5,-9],[-6,-7],[-3,-2],[-6,-1],[-4,-1],[-3,-2],[-5,-12],[-8,-6],[-6,-6],[-7,-5],[-6,3],[-1,8],[5,21],[3,21],[3,8],[3,2],[2,-12],[0,12],[-2,10],[-1,10],[4,18],[-1,5],[-2,5],[-2,3],[0,4],[0,3],[-2,5],[-1,3],[1,2],[0,2],[0,4],[-2,40],[-5,0],[-5,1],[-4,3],[-4,8],[-9,-7],[-6,7],[-3,13],[-3,25],[-2,3],[-3,0],[-5,4],[-3,7],[0,7],[1,8],[0,11],[-2,0],[-5,-20],[-2,-11],[0,-12],[0,-16],[-1,-5],[-1,-2],[-1,-1],[-1,-2],[-4,-15],[1,-7],[3,-7],[-11,-42],[-3,-7],[-2,-1],[-3,-8],[-2,-3],[-3,1],[-3,6],[-3,1],[-3,5],[-2,13],[-5,43],[0,10],[3,8],[6,11],[-3,12],[-2,0],[1,-10],[-2,-4],[-3,-4],[-4,-6],[-2,-9],[-1,-7],[-1,-6],[-4,-3],[3,-7],[3,-14],[2,-7],[2,-4],[2,-1],[2,-1],[2,-7],[0,-2],[0,-7],[0,-8],[2,-7],[2,-3],[5,-6],[2,-3],[4,8],[3,2],[2,0],[1,-4],[1,-6],[1,-4],[2,2],[3,3],[4,0],[4,-2],[4,-3],[-3,-4],[0,-2],[-2,-8],[-1,-5],[-2,-4],[0,-8],[0,-12],[0,-7],[-1,-5],[-3,-8],[-6,-17],[-3,-9],[-4,-8],[-6,-8],[-6,-6],[-6,-3],[-3,-2],[-2,-7],[0,-8],[0,-7],[1,-4],[1,-3],[1,-3],[3,-2],[19,-10],[-1,-6],[-3,-2],[-3,-1],[-3,-2],[-3,-4],[-6,-16],[-16,-22],[-4,-8],[-3,-11],[-2,-24],[-2,-12],[4,-18],[1,-10],[-3,-4],[-7,9],[-2,2],[-3,1],[-9,-4],[1,5],[0,4],[0,5],[-1,6],[-6,-40],[-2,-24],[3,-18],[-3,-5],[-3,-9],[-2,-12],[0,-12],[1,-26],[-2,-9],[-7,-3],[0,-4],[8,1],[3,8],[-1,29],[1,15],[5,13],[6,6],[7,-7],[1,-5],[1,-11],[3,-7],[0,-4],[-1,-3],[-1,-4],[-1,-5],[1,-15],[2,-12],[3,-11],[3,-13],[1,-15],[-2,-11],[-3,-11],[-2,-13],[0,-37],[0,-10],[3,-9],[1,-5],[-3,-2],[-3,1],[-3,3],[-5,10],[-2,6],[-1,7],[-1,7],[-1,6],[-2,6],[-1,4],[-2,2],[-2,5],[-2,1],[-1,-1],[-1,1],[-1,17],[-2,2],[-4,0],[-6,0],[-2,-6],[-2,-11],[1,-4],[8,12],[2,-4],[0,-6],[0,-5],[-2,-5],[12,-13],[4,-7],[4,-20],[3,-9],[10,-7],[1,-6],[-2,-7],[-2,-4],[-7,1],[-4,2],[-5,5],[-2,-16],[1,-5],[2,-19],[1,-2],[5,-5],[5,-5],[4,-8],[3,-10],[1,-7],[0,-7],[-1,-6],[0,-6],[4,-12],[1,-7],[0,-4],[-3,-3],[-10,-3],[-4,2],[-4,10],[-4,-11],[-1,-5],[4,-8],[-2,-4],[-2,-6],[-1,-7],[1,-8],[2,-5],[3,-3],[3,-4],[1,-8],[2,0],[-7,25],[-1,14],[5,6],[6,1],[5,5],[13,14],[0,5],[0,6],[-1,6],[-2,3],[-1,3],[0,7],[2,10],[0,3],[-1,2],[-1,2],[1,3],[2,2],[2,0],[1,2],[-1,7],[-1,4],[-2,2],[-4,2],[1,2],[1,6],[-4,-3],[-1,6],[2,8],[2,7],[3,5],[4,4],[4,0],[2,-5],[0,-50],[1,-13],[-6,-58],[-3,-12],[-2,-7],[-1,-7],[0,-14],[-1,-7],[-5,-18],[-1,-9],[0,-24],[3,-19],[-1,-7],[-2,-8],[-2,-6],[-1,-7],[2,-8],[-3,-6],[0,-7],[1,-9],[0,-10],[-6,-29],[-2,-45],[-5,-31],[-1,-18],[-3,-19],[0,-12],[3,-47],[1,-7],[4,-8],[1,-8],[-3,-2],[-2,-3],[-1,-6],[2,-4],[2,0],[3,2],[2,0],[-1,-25],[1,-26],[4,-41],[2,-155],[6,-54],[2,-51],[8,-92],[5,-89],[6,-25],[3,-11],[1,-4],[2,-18],[1,-6],[4,-12],[1,-6],[-2,-10],[-6,-20],[-2,-9],[-1,-12],[-7,-39],[0,-11],[-1,-8],[-4,-17],[-1,-9],[-2,-51],[-1,-9],[-11,-42],[-2,-13],[-1,-14],[1,-16],[-1,-20],[-3,-14],[-10,-31],[1,-7],[0,-5],[-2,-13],[-9,-106],[-12,-85],[0,-26],[0,-7],[3,-13],[1,-8],[-1,-4],[-7,-31],[-6,-74],[-4,-23],[-5,-17],[-2,-11],[-2,-79],[2,-51],[5,-29],[2,-13],[-1,-75],[1,-13],[5,-19],[5,-14],[3,-13],[-3,-19],[-31,-65],[-2,-9],[-1,-6],[0,-7],[-1,-5],[-2,-3],[-2,-2],[-7,-9],[-19,-8],[-10,-10],[-9,-16],[-13,-35],[-35,-110],[-10,-48],[-4,-30],[-14,-115],[-6,-97],[1,-130],[6,-112],[6,-88],[-1,-81],[-2,-24],[-21,-110],[-6,-20],[-8,-13],[-32,-28],[-16,-25],[-5,-10],[-16,-78],[-1,-11],[-3,-10],[-12,-8],[-4,-8],[6,0],[1,-8],[-4,-30],[-2,-3],[-3,-1],[-2,-3],[-2,-5],[0,-9],[1,-5],[2,-12],[1,-6],[-1,-5],[-2,-12],[-5,-38],[-1,-5],[-2,-6],[-5,-26],[-3,-9],[-3,-5],[0,-1],[-1,2],[-3,6],[-2,2],[-2,-4],[-2,-6],[-2,-2],[-3,4],[1,17],[-2,8],[-4,2],[-6,1],[-9,-3],[4,-7],[1,-8],[-2,-5],[-5,-1],[0,-4],[1,-1],[1,-1],[2,-2],[-2,-12],[1,-13],[5,-2],[7,1],[-1,-8],[3,2],[4,9],[5,3],[6,-4],[-4,-7],[-4,-10],[-4,-12],[-2,-28],[-7,-22],[-3,-27],[-14,-41],[-6,-27],[-4,-8],[-5,7],[-7,-12],[-2,-6],[-11,-40],[-3,-7],[-6,-10],[-2,-6],[-6,-29],[-7,-3],[-3,-15],[-2,-4],[-2,6],[0,6],[-2,7],[-3,0],[-3,-3],[-1,-2],[-9,-12],[-9,-4],[-4,-6],[-3,-6],[-1,-11],[-3,-4],[-2,-8],[-3,-8],[-3,-9],[-2,-19],[0,-21],[-1,-12],[-1,-11],[-4,-7],[-3,-11],[0,-7],[-2,-9],[-21,-57],[-8,-28],[-4,-21],[0,-1],[2,-7],[0,-10],[-1,-9],[-1,-10],[1,-17],[-6,-16],[-9,-29],[-9,-17],[-2,-8],[-4,-24],[3,-22],[12,-28],[1,-26],[-3,-40],[5,-61],[11,-74],[-2,-23],[-6,-16],[-41,-49],[-28,-29],[-28,-16],[-34,-18],[-24,-18],[-31,-29],[-21,-28],[-8,-15],[-2,-5],[-1,-10],[-1,-5],[-5,-8],[-9,-11],[-4,-8],[-6,-21],[-1,-3],[-2,-1],[-3,-2],[-3,-4],[0,-3],[-3,-10],[-5,-7],[-10,-9],[-5,-18],[-3,-26],[-1,-29],[2,-25],[3,-9],[10,-22],[2,-7],[1,-2],[3,4],[4,8],[2,3],[6,2],[3,3],[0,-10],[-2,-7],[-2,-4],[-2,-7],[-5,3],[-3,-4],[-7,-16],[-8,-7],[-2,-1],[-2,-1],[-1,-5],[0,-5],[-1,-10],[0,-5],[0,-4],[-2,-2],[-3,-1],[-2,-1],[-1,-3],[-1,-3],[-1,-12],[1,-13],[2,-6],[2,6],[2,0],[1,-8],[0,-7],[-3,-13],[-4,3],[-5,11],[-3,2],[-32,2],[-57,8],[-43,2],[-25,-3],[-9,-4],[-4,-1],[-1,-2],[-4,-8],[-2,-2],[-21,-1],[-26,-5],[-19,3],[-28,-1],[-7,12],[-4,5],[-5,-5],[-3,7],[-6,7],[-2,6],[4,-1],[1,-1],[2,-2],[4,6],[0,5],[-2,4],[-4,1],[-5,3],[1,7],[5,13],[2,15],[6,13],[13,23],[-6,-2],[-2,3],[0,4],[2,7],[5,5],[2,3],[1,3],[1,13],[0,6],[-1,15],[-1,4],[-3,2],[-7,-2],[-3,4],[-2,-4],[-3,-9],[-3,-4],[-3,-2],[-2,0],[-2,1],[-3,1],[-3,-1],[-7,-7],[-11,-16],[-5,0],[-6,-2],[-4,-5],[-1,-13],[1,-12],[8,-33],[2,0],[1,3],[1,2],[1,2],[1,2],[0,-6],[1,-5],[2,-3],[3,-3],[-2,0],[0,-1],[-1,-1],[-1,-2],[11,-13],[3,-5],[1,-8],[-1,-11],[0,-8],[3,4],[0,-10],[-5,-11],[-7,-10],[-7,-5],[-63,-14],[-14,-8],[-12,-11],[-2,-3],[-2,-4],[-1,-3],[-2,0],[-3,9],[-1,1],[-11,5],[-70,-17],[-12,0],[-5,-1],[-5,-5],[-5,-7],[-5,-3],[-5,4],[-1,12],[2,13],[4,4],[10,0],[3,-2],[7,-7],[3,1],[1,3],[2,17],[7,-11],[10,-4],[23,-2],[22,8],[12,8],[6,9],[-5,1],[-6,5],[-5,6],[-2,6],[-2,-1],[-3,0],[-3,2],[-2,1],[-3,5],[-3,12],[-2,4],[-4,3],[-12,3],[-3,-1],[-2,12],[-4,1],[-5,-1],[-6,2],[4,4],[0,5],[-4,-3],[-8,-8],[-2,-1],[-15,-5],[-3,-2],[-8,-8],[-3,-1],[-2,-4],[-2,-8],[-3,-7],[-5,-2],[1,9],[2,9],[-1,5],[-4,-2],[-2,-6],[-5,-23],[-2,-4],[-8,-17],[-3,-3],[-7,0],[-1,-2],[-5,-6],[-2,-2],[-1,-2],[-2,0],[0,6],[-1,3],[-3,-3],[-4,-7],[-5,2],[-1,3],[1,19],[-1,6],[-2,2],[-6,1],[-5,-10],[-3,-1],[-1,11],[-4,-5],[-2,-3],[-1,-4],[-7,9],[0,8],[4,5],[6,2],[2,2],[0,6],[-2,8],[-1,2],[-2,2],[0,3],[3,5],[-2,3],[-3,1],[-3,1],[-3,-1],[2,-9],[-1,-5],[-3,-5],[-2,-5],[-1,3],[-2,6],[0,4],[-2,-2],[-1,-1],[-1,-2],[-4,6],[-3,-6],[-5,-20],[1,-9],[-6,-8],[-8,-5],[-13,-4],[-19,-18],[0,3],[1,5],[0,4],[-9,0],[-7,-5],[-5,-9],[-7,-29],[0,-4],[1,-4],[1,-4],[-3,-10],[-2,-18],[-1,-7],[2,-16],[5,2],[6,9],[6,5],[5,-5],[-13,-20],[-1,-12],[2,6],[4,5],[5,2],[4,-4],[-4,-10],[-3,-7],[-1,-5],[0,-8],[2,1],[5,15],[4,8],[4,6],[4,3],[8,1],[-2,-7],[-2,-3],[-2,-3],[5,-8],[7,-2],[7,-4],[2,-14],[-6,4],[-5,-8],[-6,-20],[-6,-9],[-5,1],[-4,5],[-4,-1],[-4,3],[-8,1],[-8,-3],[-7,-5],[0,-1],[-1,-8],[-4,-3],[-5,-1],[-5,-4],[-5,5],[-4,-4],[-3,-5],[-5,1],[-2,3],[-1,6],[-1,5],[-3,2],[-2,0],[-2,-1],[-4,-3],[2,14],[-8,-5],[-9,-11],[-3,-7],[-2,-1],[-2,-8],[-1,-3],[-2,-1],[-4,-1],[-2,-1],[-5,-7],[-2,1],[-2,6],[-2,-14],[3,-6],[5,-5],[3,-8],[-7,-1],[-4,-7],[-6,-24],[-3,10],[-3,3],[-1,-3],[2,-10],[-4,1],[-3,3],[-3,4],[-3,5],[-3,3],[-2,-7],[1,-10],[1,-8],[-5,-2],[-5,4],[-5,2],[-4,-12],[3,-11],[1,-6],[-3,-3],[-3,-1],[-8,-7],[-4,2],[-4,8],[-3,2],[-3,-2],[-3,-6],[-3,-6],[-1,-2],[-6,-4],[-6,-7],[-5,-5],[-7,4],[-1,-7],[-3,-7],[-2,-7],[0,-7],[2,-13],[0,-6],[1,-8],[2,-3],[3,0],[2,-3],[0,-8],[-2,-13],[1,-5],[2,-11],[0,-12],[-3,-10],[-6,-6],[-3,-1],[-3,2],[-2,2],[-2,1],[-4,-2],[-6,-6],[-3,0],[-5,4],[-7,17],[-6,3],[-9,-4],[-3,0],[-1,2],[-2,4],[-1,2],[-5,0],[-1,0],[-18,11],[-18,1],[-3,2],[-6,5],[-2,2],[-11,-1],[-26,-12],[-9,-8],[-5,-7],[-3,-5],[-3,-11],[-3,0],[-6,3],[-5,-3],[-6,-5],[-10,-9],[0,2],[-1,3],[-2,0],[-3,-16],[-6,-12],[-7,-8],[-9,-5],[0,-4],[7,0],[4,2],[4,6],[10,21],[4,4],[6,0],[-11,-25],[-3,-8],[-1,-9],[-1,-12],[0,-10],[1,-6],[-3,-5],[-3,-3],[-3,1],[-1,5],[-2,3],[-4,-1],[-3,-2],[-5,-6],[-5,-9],[-5,-6],[-8,3],[2,9],[7,5],[2,6],[0,9],[-2,7],[-3,5],[-1,6],[0,7],[-2,6],[-4,3],[-7,3],[-4,2],[-1,4],[1,5],[0,4],[-7,3],[-1,-7],[0,-11],[-2,-5],[-4,-2],[0,-4],[1,-4],[-1,-2],[-6,1],[-6,3],[1,-7],[3,-4],[2,-2],[1,-1],[1,-4],[2,-11],[1,-4],[3,-1],[4,0],[3,-1],[2,-4],[0,-14],[-2,-5],[-2,-3],[-1,5],[-1,3],[-2,2],[-2,2],[-17,-18],[-35,-30],[-42,-51],[-31,-31],[-22,-26],[-9,-16],[-6,-19],[-3,-21],[-2,-3],[-1,-3],[3,-14],[0,-5],[-4,-8],[-6,-5],[-4,2],[0,13],[-6,-25],[-3,-3],[-4,-4],[-7,-14],[-4,-3],[-12,-26],[-73,-87],[-3,2],[-4,-3],[-8,-7],[-6,3],[-4,0],[-2,-9],[-5,-6],[-7,-11],[-14,-14],[-53,-82],[-5,-9],[-7,-19],[-2,-2],[-1,-2],[-2,-3],[-2,-5],[-11,-43],[-8,-9],[-13,3],[2,10],[4,1],[4,-1],[3,3],[0,6],[-3,2],[-12,-1],[-2,-3],[0,-4],[0,-7],[-1,-6],[-2,-3],[-3,2],[-2,6],[0,-10],[5,-6],[8,-4],[5,-1],[7,-4],[3,-1],[3,3],[3,5],[4,4],[4,2],[4,-1],[-10,-60],[-8,-25],[-15,-8],[-4,-7],[-14,-32],[-2,-7],[-2,-9],[0,-1],[-2,-9],[-21,-26],[-2,-7],[-6,-22],[-4,-24],[-4,-1],[-5,7],[-2,12],[1,10],[6,35],[1,5],[0,2],[0,3],[3,6],[2,4],[6,7],[12,10],[3,6],[-4,6],[-3,-8],[-6,-5],[-7,-3],[-6,0],[-2,-3],[-4,-8],[-2,-2],[-3,3],[-4,10],[-3,4],[1,-10],[0,-6],[-1,-4],[-3,-11],[-3,-6],[-3,-4],[-4,0],[4,20],[-2,0],[-2,-3],[-1,7],[1,28],[2,16],[0,9],[-4,-5],[-3,-8],[-3,-8],[-1,-3],[-2,-2],[0,-2],[2,-5],[1,-1],[2,-2],[0,-2],[0,-3],[-1,1],[-1,-2],[-2,-3],[-4,4],[-7,8],[-2,6],[-2,13],[-3,6],[0,-12],[-2,0],[-1,3],[-1,2],[-1,1],[-1,2],[1,-9],[6,-36],[-5,0],[-9,-4],[-5,0],[0,-4],[10,-3],[5,-2],[3,-7],[-5,-6],[-2,-7],[2,-3],[5,4],[1,-6],[4,-9],[0,-4],[-1,-10],[-2,-3],[-3,1],[-3,-2],[-2,-7],[0,-8],[-2,-7],[-3,-2],[-4,1],[-3,3],[-5,13],[-3,-4],[-3,-1],[-3,1],[-3,4],[-1,-8],[-3,-1],[-14,7],[-3,3],[-14,19],[-2,4],[-11,27],[-3,5],[1,-9],[4,-24],[2,-9],[0,-3],[2,-3],[3,-3],[1,-2],[3,-13],[-1,-6],[-5,-1],[-6,4],[5,-17],[7,-1],[9,3],[9,-2],[-1,-4],[0,-1],[-1,-3],[-2,4],[-2,1],[-2,-3],[-1,-6],[3,-3],[4,-1],[3,-4],[3,-8],[3,10],[5,1],[5,-1],[10,7],[5,-5],[5,-7],[5,-5],[-3,-6],[-1,-2],[2,4],[-4,-8],[-2,-2],[-2,-2],[6,-5],[3,4],[2,8],[3,5],[4,1],[5,-3],[4,0],[6,6],[7,-16],[-8,-14],[-12,-16],[-23,-88],[0,-16],[-5,-25],[-2,-3],[-5,2],[-4,12],[-3,2],[1,9],[1,3],[-4,-1],[-3,-2],[-3,-3],[-2,-6],[3,0],[3,-3],[2,-4],[2,-5],[1,-8],[-1,-2],[-19,6],[-25,-4],[-3,-2],[-3,-3],[-1,-4],[-1,-8],[2,-4],[2,2],[2,4],[2,2],[46,0],[2,3],[1,2],[1,0],[1,-9],[1,-6],[-1,-7],[-5,-35],[-2,-20],[-6,-17],[-2,-10],[1,-8],[3,-10],[4,-51],[0,-9],[-2,-7],[-7,-2],[-5,-4],[-3,-9],[-3,-9],[-3,-7],[-6,-1],[-7,3],[-6,5],[-2,7],[-1,14],[-1,9],[-4,16],[-1,10],[-1,12],[0,5],[-3,6],[-2,17],[-2,-3],[0,-12],[4,-15],[-2,-7],[0,-6],[0,-6],[2,-5],[1,-2],[1,-2],[2,-2],[1,-4],[0,-7],[0,-3],[1,-2],[1,-7],[-2,-15],[1,-7],[1,-6],[-1,-4],[-2,-3],[-3,-1],[6,-16],[-4,1],[-3,-1],[-3,-3],[-1,-5],[11,-4],[5,-5],[3,-9],[2,-6],[17,-15],[3,-4],[2,-5],[0,-7],[1,-7],[1,-6],[2,-4],[3,-1],[2,-6],[-1,-11],[-14,-59],[-3,-23],[-3,-40],[1,-34],[1,-7],[2,-5],[12,-18],[3,0],[7,4],[3,-2],[1,-6],[-1,-6],[-1,-5],[-4,-5],[-3,-9],[-3,-11],[-2,-9],[0,-7],[0,-19],[1,-4],[2,-5],[1,-3],[0,-4],[-2,-5],[0,-3],[0,-22],[0,-5],[3,-7],[2,-2],[2,0],[1,1],[5,-12],[-1,-10],[-3,-9],[-2,-22],[-2,-5],[-1,-6],[5,-27],[2,-5],[4,-2],[4,2],[2,5],[1,6],[2,6],[5,5],[2,-7],[3,-9],[6,-3],[-2,-7],[-1,-3],[-3,-3],[3,-14],[0,-7],[-2,-3],[-3,-2],[-3,-2],[-2,1],[-2,7],[4,2],[1,5],[-2,5],[-3,4],[-3,0],[-5,-6],[-3,-2],[-1,-2],[-9,-14],[-2,-6],[-1,-3],[-1,-5],[0,-8],[2,-23],[1,-4],[1,-1],[9,-3],[3,-8],[2,-10],[1,-26],[-3,8],[-1,3],[-1,-5],[-2,-5],[0,-5],[0,-7],[-1,-7],[-3,-3],[-3,-1],[-3,-3],[-4,-5],[-3,-6],[-2,-8],[-1,-11],[11,-47],[5,-3],[3,-7],[1,-11],[-2,-11],[-3,7],[-5,-7],[-6,-12],[-4,-9],[3,-8],[2,-11],[1,-12],[0,-11],[1,-4],[4,-9],[1,-6],[-2,-1],[-3,-4],[-1,-5],[1,-2],[2,-4],[10,-20],[2,-8],[0,-5],[-2,-2],[-2,-1],[-1,-2],[1,-7],[2,-1],[3,-1],[1,-2],[-1,-10],[-8,-23],[-2,-9],[-3,-35],[1,-12],[1,-3],[1,-3],[1,-4],[1,-8],[-1,-6],[-2,-4],[-2,-3],[-1,-3],[0,-5],[-4,-18],[-2,-24],[-3,-25],[-1,-13],[6,-11],[-5,-10],[-10,-18],[-1,-6],[-1,-14],[0,-14],[0,-4],[-8,-17],[-2,-8],[-3,-22],[-4,-14],[-2,-7],[1,-6],[1,-6],[-1,-6],[-3,-3],[-3,3],[-3,10],[-3,11],[-1,12],[1,14],[3,9],[1,7],[-1,6],[-8,15],[-4,5],[-4,8],[-4,2],[-2,-15],[0,-8],[3,-13],[0,-6],[0,-6],[-3,-5],[0,-5],[1,-5],[3,0],[3,0],[2,-1],[0,-5],[-1,-5],[-2,-6],[-1,-5],[0,-4],[0,-3],[1,-2],[2,-5],[10,-10],[2,-6],[3,-4],[3,-2],[3,4],[2,3],[3,1],[-2,-10],[-2,-9],[-9,-22],[-3,-12],[-2,-6],[-3,-3],[-13,-3],[-3,-1],[-8,-9],[-8,-5],[-4,-6],[-6,-11],[-22,-26],[-80,-121],[-58,-121],[-45,-117],[-27,-70],[-13,-51],[-21,-62],[-18,-77],[-13,-30],[-45,-229],[-12,-72],[-18,-82],[-75,-231],[-2,-12],[-2,-6],[-34,-96],[-29,-58],[-16,-46],[-42,-94],[-32,-61],[-48,-73],[-67,-102],[-83,-92],[-7,-13],[-40,-92],[-10,-31],[-2,-3],[-2,12],[2,13],[6,22],[2,8],[2,13],[1,14],[-2,11],[-4,13],[4,7],[5,5],[4,10],[-4,18],[-17,37],[0,18],[11,11],[13,-8],[22,-27],[12,-2],[12,10],[6,15],[-6,17],[14,5],[11,-2],[11,2],[11,13],[29,61],[4,16],[10,14],[2,11],[1,14],[4,-5],[8,-19],[3,1],[-1,10],[-4,23],[1,11],[3,13],[4,12],[4,7],[2,-20],[10,-5],[12,5],[9,10],[4,7],[9,10],[3,5],[10,29],[8,33],[6,43],[1,44],[-6,38],[2,8],[2,25],[0,9],[2,6],[6,-1],[10,-7],[5,2],[9,8],[4,2],[5,-1],[2,-5],[0,-32],[1,-5],[3,-2],[3,1],[2,2],[1,5],[0,7],[2,6],[3,3],[3,3],[2,2],[-1,7],[-3,1],[-3,-1],[-3,1],[-5,17],[3,22],[5,25],[1,26],[-4,11],[-2,6],[1,3],[3,-1],[4,-3],[3,0],[7,1],[5,5],[21,32],[11,4],[6,6],[4,6],[4,7],[10,39],[4,50],[-3,105],[-1,11],[-5,22],[-3,18],[-1,5],[0,4],[5,5],[3,3],[2,-2],[4,-9],[9,-14],[0,-4],[-1,-3],[-1,-4],[-1,-5],[1,-11],[4,-12],[4,-9],[4,-7],[10,14],[2,7],[-1,9],[-1,15],[1,7],[4,11],[5,34],[0,16],[-1,16],[-2,9],[-10,12],[-2,3],[-2,14],[-2,5],[-3,5],[-3,2],[-3,-1],[-3,-4],[-7,-15],[-1,-1],[-1,-6],[1,-2],[2,-1],[3,-5],[1,-6],[0,-6],[-2,-8],[-3,-8],[-6,-3],[-19,2],[-5,-1],[-4,-6],[-1,-12],[-16,3],[-5,-1],[-7,5],[-4,-3],[-3,-10],[-1,-13],[-1,-15],[0,-11],[4,-22],[-5,3],[-14,21],[-5,4],[-5,3],[-3,5],[-2,10],[0,9],[0,2],[2,8],[2,5],[2,4],[1,4],[1,5],[-1,10],[-2,9],[-4,4],[-3,-5],[-2,0],[-1,14],[-6,2],[-7,-3],[-3,-3],[-2,-4],[-5,5],[-10,13],[1,9],[-2,6],[-8,5],[-3,1],[-2,0],[-2,0],[-1,4],[1,3],[4,8],[1,5],[-1,11],[-3,7],[-4,5],[-2,5],[0,10],[4,20],[0,11],[-6,-4],[-1,8],[0,11],[-3,5],[-3,-1],[0,-3],[0,-5],[0,-7],[-5,-18],[-1,-4],[0,-4],[2,-1],[1,-2],[1,-1],[-1,-4],[-1,-6],[0,-3],[0,-13],[-1,-6],[-2,-5],[-1,-5],[0,-7],[1,-6],[1,-6],[-1,-7],[-5,-16],[3,1],[5,3],[3,0],[2,-2],[4,-14],[-7,-16],[3,-9],[9,-6],[3,-9],[3,3],[5,11],[1,2],[2,-5],[1,-9],[-1,-16],[3,-14],[6,-2],[14,10],[6,1],[1,-4],[-2,-9],[-1,-11],[-1,-5],[-3,-4],[-3,-4],[-3,-1],[-1,1],[-4,5],[-2,2],[-11,-3],[-8,-15],[-6,-22],[-7,-46],[-3,-24],[-1,-26],[2,-26],[5,-39],[0,-12],[-1,-16],[-3,-9],[-5,1],[-4,13],[7,4],[-1,16],[-6,33],[-3,25],[-2,3],[-7,1],[-6,-4],[-1,-10],[0,-70],[1,-10],[3,-23],[2,-13],[-1,-14],[-2,-5],[-12,3],[-6,-1],[-6,-3],[-3,-8],[-3,-12],[-2,-26],[0,-28],[4,-24],[8,-16],[-35,-23],[-6,-1],[-9,-8],[-6,-19],[-2,-23],[1,-19],[3,-7],[0,-4],[-4,-1],[-3,1],[-3,2],[-3,1],[-3,-2],[-5,-6],[-6,-2],[-13,1],[-4,0],[-7,-3],[-5,-6],[-5,-17],[-6,0],[-7,2],[-5,0],[-2,-2],[-1,-5],[-2,-4],[-4,-1],[-3,-3],[0,-5],[2,-6],[3,-2],[1,-3],[-2,-5],[-10,-14],[-2,-4],[-1,-6],[-1,-12],[1,-39],[-1,-7],[-1,-13],[0,-7],[1,-6],[3,-9],[1,-5],[-4,-30],[-1,-9],[-1,-4],[-2,6],[-3,13],[-1,15],[-1,5],[-2,6],[-2,3],[-1,1],[-3,4],[-3,2],[-3,-3],[-2,-5],[-1,-6],[1,-17],[3,-2],[4,3],[5,-2],[2,-9],[-2,-12],[-4,-13],[-4,-9],[-5,-6],[-30,-22],[-5,-8],[-1,-13],[0,-7],[3,-11],[1,-4],[-1,-5],[-2,-5],[-1,-6],[0,-8],[-6,0],[-1,-12],[4,-11],[7,7],[6,-16],[1,-3],[2,-2],[6,-2],[2,-2],[2,-3],[1,-4],[1,-5],[-1,-6],[-3,-1],[-6,3],[-3,-2],[-5,-6],[-6,-4],[-5,-5],[-2,-10],[-1,-22],[-1,-11],[-2,-9],[9,2],[5,-4],[-1,-6],[-7,-8],[7,-3],[9,4],[7,8],[4,9],[1,7],[4,5],[4,3],[4,-1],[4,-3],[0,-4],[-5,-7],[-14,-16],[-6,-14],[4,-13],[4,2],[11,24],[4,7],[-4,-23],[0,-10],[3,-18],[0,-8],[-10,-6],[-28,-44],[-7,-18],[-34,-129],[-19,-110],[-8,-69],[-41,-178],[-7,-21],[-27,-66],[-21,-43],[-29,-48],[-47,-74],[-29,-54],[-20,-34],[-31,-38]],[[35172,30488],[-9,-1],[-3,7],[-2,10],[-3,10],[-4,5],[-5,1],[-5,-2],[-6,0],[-7,24],[0,53],[7,98],[-6,89],[-1,43],[5,28],[2,15],[8,19],[10,15],[34,40],[3,7],[1,11],[1,22],[2,10],[8,15],[19,25],[6,13],[5,13],[10,14],[4,8],[1,11],[-3,9],[-18,36],[-5,5],[-8,8],[-10,10],[-9,0],[-4,3],[-12,13],[-16,10],[-16,33],[-18,22],[-6,13],[-6,14],[-5,15],[-3,7],[-7,11],[-2,8],[-2,10],[-1,30],[-2,20],[-3,17],[-14,38],[-8,34],[0,21],[-2,8],[-4,5],[-16,6],[-8,9],[-4,6],[-2,6],[-2,6],[-1,6],[-1,6],[-3,7],[-8,10],[-4,3],[-5,3],[-9,1],[-3,2],[-2,4],[-3,9],[-1,4],[-5,7],[-5,4],[-6,1],[-5,-3],[-5,-9],[-3,-6],[-3,-1],[-6,8],[-14,24],[-16,19],[-19,32],[-8,18],[-8,15],[-10,12],[-7,13],[-1,5],[-3,13],[0,24],[-2,10],[-3,11],[-4,8],[-15,21],[-3,8],[-5,19],[-3,7],[-4,2],[-10,0],[-46,12],[-8,6],[-4,5],[-4,6],[-3,8],[-3,7],[-12,9],[-8,15],[-7,17],[-4,15],[-5,11],[-4,-2],[-5,-20],[-4,-9],[-3,-3],[-5,1],[-5,6],[-13,22],[-5,6],[-11,8],[-5,5],[-4,10],[-3,10],[-4,25],[-3,9],[-9,11],[-3,6],[-2,10],[-1,21],[-1,10],[-5,11],[-20,42],[-13,22],[-6,14],[-5,6],[-10,11],[-8,17],[-5,3],[-6,-3],[-5,-8],[-1,-10],[1,-25],[0,-11],[-4,-6],[-6,1],[-7,3],[-5,-2],[-4,-7],[-3,-21],[-2,-9],[-4,-7],[-15,-19],[-2,-3],[-1,-4],[-1,-3],[-3,-3],[-2,-1],[-7,-1],[-8,-3],[-19,2],[-7,-2],[-2,5],[-1,4],[0,13],[2,27],[0,39],[1,13],[5,16],[1,17],[-2,18],[-4,17],[-18,27],[-4,9],[-10,33],[-1,5],[-3,5],[-5,6],[-3,5],[-2,6],[0,6],[-2,6],[-9,20],[-5,9],[-9,9],[-17,25],[-12,13],[-4,6],[-4,10],[-7,21],[-4,9],[-15,18],[-5,7],[-3,6],[-11,21],[-2,8],[-2,3],[-3,4],[-2,0],[-3,0],[-3,2],[-4,5],[-1,4],[1,6],[-1,12],[-2,8],[-4,7],[-5,6],[-9,8],[-17,22],[-3,6],[-5,16],[-10,13],[-10,-1],[-11,-3],[-13,7],[-6,-1],[-10,-3],[-2,-1],[-5,-6],[-3,0],[-5,5],[-3,0],[-7,-9],[-8,-17],[-6,-19],[-2,-15],[-1,-18],[-6,-17],[-8,-12],[-9,-3],[-1,1],[-4,7],[-2,2],[-1,-1],[-4,-8],[-2,-1],[-4,3],[-3,5],[-4,4],[-5,0],[-4,-3],[-6,-10],[-3,-3],[-4,2],[-4,12],[-4,4],[-6,-1],[-13,-4],[-7,2],[-8,10],[-6,31],[-7,13]],[[39182,42537],[8,7],[2,-3],[3,-39],[-1,-10],[-4,-8],[1,-6],[-1,-8],[-3,-9],[-1,-9],[-2,-11],[1,-7],[4,-7],[1,-7],[3,-4],[-1,-4],[0,-9],[3,-5],[1,-6],[-3,-19],[-3,0],[-1,3],[-1,7],[-4,-1],[-4,-1],[-2,15],[-6,20],[-2,15],[1,9],[1,7],[0,18],[2,5],[1,3],[0,3],[-3,5],[-13,10],[-5,9],[3,9],[-3,11],[1,10],[2,8],[5,4],[4,-2],[5,-3],[5,-2],[6,2]],[[39273,42815],[6,-23],[2,-13],[-5,-6],[-6,-3],[-4,-7],[-10,-18],[-12,-17],[-5,-10],[-4,-14],[-3,-2],[-2,-3],[-1,-3],[-1,-4],[-2,0],[0,9],[-2,25],[0,10],[2,5],[7,8],[8,11],[17,33],[0,5],[-2,1],[-2,2],[0,3],[2,5],[1,-1],[0,-1],[0,-1],[1,-1],[0,10],[-3,9],[-2,9],[-3,9],[4,4],[12,-12],[5,-7],[2,-12]],[[37639,48807],[-3,-1],[-1,-3],[-1,-5],[0,-7],[3,7],[7,18],[-2,-47],[-1,-11],[-3,-8],[-1,-7],[2,-20],[-5,-6],[-6,-6],[-5,-20],[-8,-19],[0,-7],[-1,-3],[0,-2],[-1,-3],[-2,0],[0,5],[0,4],[-1,3],[0,3],[0,6],[0,2],[3,13],[2,6],[2,5],[1,15],[2,14],[1,7],[-1,11],[-5,24],[0,9],[0,10],[2,17],[8,34],[6,9],[13,14],[-1,-34],[-4,-27]],[[38321,48868],[2,0],[0,-6],[0,-7],[1,-6],[1,-5],[-2,-3],[-2,-2],[-3,-2],[-6,-2],[-3,1],[-2,3],[-3,5],[4,4],[2,0],[0,4],[-4,1],[-2,3],[-1,5],[1,7],[-5,-2],[-6,4],[-12,15],[4,2],[23,-4],[5,-3],[3,-6],[4,-10],[1,2],[0,1],[0,1]],[[37881,49136],[6,-3],[0,-5],[2,-11],[-3,-10],[-5,-9],[-1,-10],[0,-16],[-1,-10],[-2,-4],[2,-5],[0,-5],[-1,-2],[-5,2],[-5,0],[-4,0],[-1,-5],[-3,-1],[0,-3],[-1,-5],[-2,-1],[-3,2],[-2,2],[-3,4],[0,6],[2,4],[1,12],[-1,12],[0,12],[2,10],[3,17],[4,9],[5,6],[4,3],[4,1],[5,2],[3,1]],[[36309,49428],[3,-5],[-2,-11],[-3,-11],[-2,-5],[-3,-3],[-6,-21],[-7,-18],[-3,-7],[-5,5],[-11,6],[-4,6],[-3,10],[1,8],[7,14],[1,5],[1,12],[1,5],[3,5],[8,9],[6,18],[4,5],[5,-2],[1,-9],[1,-7],[3,-6],[4,-3]],[[37530,49716],[3,-7],[1,-7],[-3,-18],[-1,0],[-2,4],[-1,3],[-3,3],[-2,2],[0,-5],[1,-4],[2,-4],[3,-3],[-3,-3],[-2,-4],[-2,-5],[-1,-4],[-2,-4],[-3,-2],[-2,-1],[-3,3],[0,-14],[-5,-3],[-6,4],[-5,7],[-2,10],[0,12],[2,10],[1,7],[4,-4],[2,-5],[0,-7],[0,-9],[4,20],[1,11],[-4,5],[0,5],[2,9],[3,5],[7,-7],[3,2],[2,5],[2,2],[2,-1],[2,-2],[5,-6]],[[36572,49838],[4,-5],[4,-22],[4,-10],[-5,-15],[-1,-3],[0,-13],[0,-5],[-5,-9],[-4,-2],[-4,-1],[-4,-4],[-3,3],[-1,4],[0,5],[0,4],[-2,-8],[-4,3],[-5,13],[-5,5],[-3,2],[-1,4],[3,10],[6,10],[1,4],[2,22],[5,7],[6,2],[12,-1]],[[36612,49984],[9,-18],[2,-9],[-7,-1],[0,-4],[7,-8],[-2,-20],[-9,-37],[-2,-16],[-1,-4],[-5,-4],[-4,-2],[-14,2],[-5,2],[-3,7],[0,9],[0,12],[1,12],[8,19],[3,15],[6,20],[1,7],[2,5],[13,13]],[[36681,50090],[3,3],[6,-3],[5,-7],[3,-10],[-3,-13],[-5,-10],[-13,-13],[-1,9],[-4,14],[-1,9],[1,2],[2,4],[2,5],[-4,4],[1,4],[1,4],[1,2],[2,1],[2,0],[1,-2],[1,-3]],[[35883,50102],[2,-20],[0,-9],[-3,-18],[-5,-9],[-8,-4],[-10,-1],[-8,-5],[-11,-22],[-7,-5],[-7,-3],[-8,-8],[-7,-9],[-4,-9],[-2,0],[-3,12],[0,14],[1,16],[2,15],[5,17],[2,4],[1,1],[1,8],[1,2],[2,1],[3,-4],[2,0],[6,8],[10,25],[7,11],[13,14],[14,11],[-5,-21],[-1,-8],[2,0],[9,33],[1,-2],[1,-2],[0,-5],[2,-6],[2,-22]],[[36761,50127],[3,-8],[2,-10],[1,-11],[-3,-12],[2,-6],[0,-10],[-1,-11],[-1,-5],[-3,-3],[-7,0],[-5,-2],[1,10],[-2,11],[-3,23],[-10,8],[0,9],[-2,19],[1,5],[3,2],[1,10],[2,3],[5,-3],[3,-8],[1,-10],[4,-5],[8,4]],[[35781,50106],[7,-4],[3,-10],[0,-13],[-1,-13],[-17,-71],[-4,-22],[-6,-73],[-5,-33],[-2,-4],[-2,-4],[-7,17],[-6,-4],[-22,-85],[-7,-20],[-34,-60],[-11,-14],[-4,-2],[-2,-5],[-2,-6],[-2,-4],[-8,-6],[-2,-2],[0,-2],[-1,-8],[-1,-2],[-1,-2],[-4,-2],[-2,-2],[-11,-21],[-12,-18],[-6,-4],[-13,-4],[-11,-12],[-6,1],[-4,7],[-4,8],[-3,20],[3,19],[11,30],[2,9],[1,11],[1,23],[1,7],[4,7],[18,30],[3,2],[0,3],[2,13],[1,2],[1,3],[3,2],[5,2],[10,11],[9,19],[4,23],[-6,23],[1,80],[3,22],[15,34],[11,54],[6,20],[8,18],[8,16],[14,19],[4,8],[4,5],[15,11],[4,2],[2,0],[-2,-8],[-2,-10],[-1,-12],[0,-8],[0,-4],[0,-2],[1,-3],[-1,-6],[-2,-5],[-3,-9],[-1,-6],[2,0],[2,6],[6,11],[1,7],[0,8],[-1,7],[0,5],[3,4],[0,-11],[2,0],[0,11],[2,-4],[3,-4],[2,-2],[3,-1],[-6,17],[-2,7],[0,8],[0,3],[1,3],[1,4],[3,1],[15,-7],[5,-4],[4,-12],[6,-27],[4,-6]],[[35787,50387],[12,0],[1,-3],[-1,-1],[-1,0],[-1,-1],[-1,-8],[-1,-11],[1,-9],[0,-5],[-3,-4],[-1,-12],[0,-20],[-5,-24],[-10,-23],[-21,-34],[-18,-19],[-9,-16],[-5,-4],[-4,4],[1,15],[3,6],[5,5],[4,5],[1,10],[1,3],[4,6],[2,6],[19,87],[5,12],[3,11],[2,3],[8,3],[2,1],[2,3],[5,11],[0,3]],[[36538,50128],[-1,-8],[-5,-22],[0,-15],[-1,-7],[-3,-7],[3,-5],[0,-10],[-2,-12],[-1,-13],[-6,6],[-5,9],[-10,22],[4,-19],[6,-18],[4,-17],[-4,-15],[3,-13],[1,-16],[-1,-15],[-3,-13],[-6,-12],[-15,-11],[-6,-9],[2,-6],[-1,-6],[-5,-13],[-2,-5],[-2,-1],[0,-1],[3,-5],[2,-1],[3,2],[2,0],[0,-9],[-1,-3],[-6,-9],[0,-5],[7,3],[0,-9],[-4,-12],[-4,-6],[-4,-4],[-13,-20],[-6,-4],[-5,-6],[-11,-24],[-6,-7],[-9,3],[-7,10],[-6,14],[-5,14],[-2,-4],[3,-12],[5,-12],[5,-9],[5,-4],[4,-6],[2,-12],[-2,-9],[-7,3],[0,-4],[4,-2],[8,0],[4,-2],[4,-7],[1,-6],[-3,-36],[-8,-45],[-2,0],[-5,10],[-23,61],[-6,8],[-8,-6],[9,-2],[4,-8],[-3,-9],[-8,-5],[0,-4],[2,-4],[0,-5],[-1,-6],[-3,-5],[4,3],[7,11],[2,2],[3,-3],[1,-7],[1,-8],[1,-6],[7,-4],[1,-2],[2,-9],[1,-2],[3,-2],[9,-14],[0,-4],[-4,-2],[-5,-3],[-4,-5],[-4,-6],[-1,-4],[-1,-5],[-1,-5],[-2,-2],[-5,6],[-2,2],[-1,-6],[-2,-5],[-5,-3],[-14,-4],[-4,-4],[-3,-3],[-5,0],[-2,3],[0,4],[0,4],[-2,2],[-3,0],[-1,0],[-2,2],[-1,2],[-2,5],[-3,19],[-1,6],[-6,26],[-1,5],[-8,0],[-1,2],[-2,4],[-1,1],[-4,-3],[5,-9],[2,-12],[0,-14],[-5,-45],[1,-14],[5,-8],[-3,-3],[-1,-1],[0,3],[0,1],[-2,4],[-1,-3],[-2,-3],[-2,-1],[-2,-1],[2,-6],[3,-1],[3,-1],[1,-8],[2,4],[2,2],[4,2],[-6,-12],[-9,-8],[-10,0],[-5,-1],[-5,3],[-6,8],[-5,9],[-6,9],[-10,20],[-1,6],[1,9],[1,6],[1,6],[-1,6],[-2,-7],[-3,-13],[-3,-14],[2,-13],[9,-14],[6,-16],[-1,-14],[-4,-5],[-9,5],[-5,3],[-6,-2],[-7,7],[-4,13],[0,20],[-2,7],[-1,35],[-3,-2],[-2,-1],[-2,1],[-3,2],[2,-5],[2,-5],[3,-5],[1,-8],[0,-30],[-2,3],[-1,0],[-2,0],[-1,1],[3,-7],[0,-10],[-2,-8],[-4,-4],[-5,-2],[-1,-8],[1,-9],[2,-9],[-4,0],[0,-4],[4,-2],[0,-7],[-2,-13],[-2,-2],[-12,4],[-6,-5],[-8,-21],[-4,-7],[-6,2],[-5,11],[-3,16],[-3,27],[-5,15],[-1,6],[0,10],[3,18],[-1,9],[-1,-11],[-4,-19],[-1,-9],[1,-14],[9,-36],[0,-7],[0,-6],[-1,-6],[-1,-6],[-2,-4],[-9,-17],[-7,-6],[-2,-1],[-4,2],[-3,4],[-2,5],[-4,5],[-2,2],[-6,1],[-3,1],[-3,5],[-3,5],[-3,4],[-6,4],[-5,5],[-4,1],[-6,0],[-1,2],[-6,13],[-1,3],[0,3],[2,29],[-1,3],[-6,-1],[-1,-4],[0,-9],[0,-14],[-2,-9],[-7,-12],[-2,-6],[-17,-18],[-4,5],[-3,7],[-2,6],[-11,6],[-2,8],[-1,12],[1,42],[-1,8],[-3,3],[-4,1],[-3,2],[-2,8],[1,5],[2,1],[2,1],[1,3],[2,10],[0,2],[-1,10],[-2,9],[-1,6],[0,4],[2,10],[0,6],[-5,-8],[0,-10],[4,-22],[1,-1],[0,-1],[0,-3],[-1,-3],[-1,0],[-1,0],[-1,-1],[-2,-5],[-1,-3],[-2,-4],[0,-6],[3,-10],[6,-8],[4,-8],[-1,-11],[-2,-9],[-2,-30],[-1,-12],[-2,0],[-1,12],[-6,41],[-2,0],[5,-44],[1,-15],[-3,-10],[-6,-4],[-8,1],[-6,3],[7,-7],[8,-6],[4,-5],[-6,-10],[-8,-5],[-8,-2],[-8,0],[-43,19],[-4,3],[-6,11],[-2,2],[-1,5],[2,9],[4,8],[5,3],[-6,27],[-42,91],[-5,13],[-2,13],[-1,5],[-7,19],[-2,7],[-1,6],[2,14],[3,4],[0,3],[-1,2],[-2,2],[0,1],[-4,18],[0,8],[1,13],[8,72],[1,12],[-2,12],[-4,16],[-2,14],[4,9],[3,-1],[12,-15],[17,-16],[13,-5],[4,-3],[15,-17],[-3,15],[-13,22],[8,5],[4,6],[2,1],[7,-3],[1,-1],[5,6],[0,6],[-4,5],[-5,3],[3,13],[-1,-1],[5,9],[4,1],[4,-2],[6,0],[-5,6],[-5,3],[-4,-1],[-4,-5],[-4,-10],[-5,-7],[-6,-4],[-6,-2],[-2,-2],[-6,-8],[-2,-2],[-3,-1],[-19,3],[-6,5],[-3,7],[-1,5],[-5,17],[-1,8],[-2,21],[0,43],[2,22],[1,10],[2,9],[2,7],[-1,6],[2,8],[3,0],[4,-5],[2,-7],[-1,15],[-4,5],[-4,4],[-5,9],[0,5],[0,17],[1,3],[3,5],[0,2],[0,4],[-3,2],[-1,3],[2,24],[12,65],[3,-7],[4,-14],[3,-15],[1,-11],[4,-5],[21,-22],[5,-3],[3,0],[7,1],[1,1],[0,3],[-1,5],[-2,3],[-15,11],[-16,6],[-3,4],[-1,10],[-1,12],[-7,39],[-2,11],[0,13],[0,9],[5,34],[1,22],[1,6],[2,4],[3,8],[1,3],[1,10],[1,12],[4,20],[2,5],[9,16],[3,3],[1,3],[5,16],[2,2],[3,0],[4,0],[3,0],[5,5],[4,7],[4,6],[7,2],[6,-2],[5,-3],[4,-1],[5,6],[3,9],[2,11],[2,9],[6,4],[6,-1],[15,-8],[49,-11],[16,-13],[8,1],[60,-27],[39,-25],[37,3],[11,6],[6,1],[3,0],[6,-4],[2,-2],[6,-11],[3,-3],[0,4],[-3,9],[-3,11],[1,11],[5,8],[17,18],[2,-3],[2,0],[1,2],[3,1],[4,0],[2,0],[4,3],[7,1],[6,4],[2,1],[3,-1],[4,-5],[4,-3],[3,0],[3,2],[4,0],[3,-6],[8,5],[18,-4],[5,0],[5,-7],[3,-9],[5,3],[4,5],[6,9],[9,3],[4,-6],[-1,-17],[-3,-8],[1,-6],[8,4],[12,1],[32,-18],[5,1],[11,6],[6,1],[6,-1],[16,-11],[33,-9],[7,-7],[2,0],[3,-6],[2,-4],[2,-6],[1,-10],[-1,-27],[-1,-8],[-2,-6],[-3,-7],[-3,-5],[-3,-2],[-3,-4],[-3,-19],[-6,-23],[-2,-18],[0,-36]],[[35840,50297],[-11,11],[-7,22],[0,21],[10,7],[0,4],[-3,1],[-5,7],[14,49],[3,25],[7,19],[6,3],[10,4],[20,20],[14,7],[7,-7],[4,-16],[7,-6],[7,-5],[3,-2],[3,-5],[2,-6],[1,-7],[1,-3],[-1,-6],[0,-3],[4,-10],[0,-2],[0,-11],[-3,-10],[-10,-20],[-5,-7],[-18,-17],[-6,-9],[-16,-34],[-5,-9],[-11,-14],[-8,-14],[-2,1],[-3,4],[-6,5],[-1,5],[-1,6],[-1,2]],[[36157,50409],[3,19],[6,14],[17,27],[18,17],[13,18],[29,9],[8,7],[0,-3],[3,-6],[0,-4],[4,4],[4,3],[4,0],[4,-2],[10,-12],[3,-4],[3,-10],[0,-7],[-1,-5],[1,-5],[3,-4],[2,0],[1,-1],[0,-7],[0,-6],[-2,-3],[-1,-5],[0,-8],[-2,1],[-3,2],[-1,1],[-2,-11],[-9,-15],[-2,-9],[-3,-6],[-7,-4],[-8,-3],[-54,-2],[-8,-7],[-33,27]],[[35935,50512],[-1,5],[0,5],[1,5],[0,6],[-1,6],[-3,13],[0,7],[3,9],[7,10],[8,1],[6,-5],[5,-3],[8,-3],[7,-4],[5,-8],[7,-12],[0,-10],[0,-16],[1,-12],[3,-15],[0,-11],[-2,-10],[-3,-9],[-11,-2],[-2,1],[-3,1],[-2,2],[-1,2],[-2,2],[-10,0],[-3,4],[-5,6],[-3,7],[-2,6],[-1,11],[-1,4],[-3,1],[-2,6]],[[36086,50651],[-5,-8],[-16,-18],[-15,-10],[0,10],[5,16],[17,22],[7,7],[6,0],[2,-10],[-1,-9]],[[36101,50647],[9,6],[12,-1],[11,-9],[17,5],[9,12],[22,19],[27,19],[25,0],[8,-19],[1,-31],[-21,-21],[-11,-20],[-14,-16],[-20,-42],[-6,-25],[-5,-26],[-7,-22],[-10,-13],[-19,-10],[-8,-3],[-3,-2],[-3,-4],[-3,-3],[-3,-3],[-2,5],[-3,12],[-6,13],[-7,11],[-7,9],[-9,4],[-13,-5],[-2,3],[-2,4],[-5,-1],[-4,-3],[-1,-2],[-6,-4],[-7,-6],[-7,-1],[-7,9],[-6,12],[-2,7],[0,11],[3,22],[0,11],[-3,-4],[-2,-6],[-2,-15],[-4,11],[-1,12],[1,38],[1,8],[3,4],[17,1],[7,7],[7,1],[6,-3],[9,-1],[20,-1],[6,0],[12,24],[8,22]],[[36006,50615],[-5,-3],[-5,-8],[-2,-14],[0,-8],[1,-8],[-1,-5],[-2,0],[-6,6],[-3,2],[-6,1],[-3,2],[-3,3],[-4,10],[0,4],[0,17],[1,8],[2,5],[3,3],[3,-1],[1,-2],[1,0],[2,3],[0,2],[9,73],[2,10],[0,1],[2,2],[3,1],[1,0],[1,6],[-1,3],[-2,3],[-1,4],[-2,10],[-1,8],[0,17],[0,16],[0,8],[3,10],[11,28],[4,5],[0,-3],[0,-2],[1,-1],[1,-2],[3,-21],[1,-26],[-3,-68],[1,-7],[1,-6],[3,-13],[4,-17],[2,-18],[-2,-13],[-4,-10],[-3,-11],[-4,-2],[-4,-2]],[[36024,50715],[-1,26],[0,23],[4,20],[6,16],[7,7],[1,4],[-2,5],[5,5],[15,-1],[3,2],[2,6],[5,-5],[8,-15],[2,9],[-6,7],[1,8],[3,9],[5,8],[6,4],[5,0],[7,-24],[2,-8],[0,-5],[0,-14],[0,-3],[2,-5],[0,-4],[-1,-3],[-2,-6],[-2,-9],[-34,-57],[-10,-13],[-8,-9],[-6,-10],[-8,-2],[-6,11],[-3,23]],[[36055,50914],[-11,-3],[-10,0],[-2,14],[2,24],[14,30],[19,16],[7,16],[6,2],[7,-1],[7,-8],[9,1],[3,-7],[-2,-11],[-3,-12],[-4,-19],[-5,-8],[-2,-5],[-2,-12],[-6,-14],[-2,-2],[-3,0],[-8,-1],[-14,0]],[[36093,51016],[-2,5],[-8,5],[0,12],[7,10],[7,5],[3,13],[2,5],[4,6],[5,5],[9,5],[6,12],[5,4],[3,-8],[-6,-19],[-2,-9],[-2,-7],[-1,-6],[-2,-8],[-10,-12],[-2,-5],[-1,-2],[-4,-2],[-2,-2],[-9,-7]],[[35985,51720],[3,-2],[4,2],[5,1],[3,1],[3,-10],[6,-17],[3,-6],[1,-15],[4,-14],[3,-11],[4,-14],[0,-12],[-2,-7],[-5,-14],[-11,-20],[-5,-5],[-7,-4],[-6,4],[-5,7],[-5,36],[-5,15],[0,10],[-3,6],[-5,4],[1,18],[3,14],[0,14],[2,10],[4,2],[5,-1],[5,8]],[[35960,51741],[-3,3],[0,3],[3,7],[8,11],[6,0],[8,0],[4,-7],[5,-6],[4,-12],[0,-11],[-2,-4],[-5,-1],[-4,1],[-3,-2],[-2,-5],[-3,1],[-4,-1],[-3,1],[-3,3],[-1,14],[-3,4],[-2,1]],[[41850,38279],[-3,14],[1,6],[4,-1],[4,-9],[-2,-2],[-1,-2],[-1,-3],[-2,-3]],[[41976,38318],[1,2],[0,2],[0,1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1]],[[36546,34240],[2,10],[5,-7],[5,-12],[3,-9],[0,-13],[-2,-12],[-3,-9],[-2,-12],[-1,-2],[-1,-4],[-1,-6],[1,-8],[1,-13],[0,-6],[-2,-10],[-3,-10],[-4,-9],[-3,-3],[-13,-41],[0,-13],[4,-21],[-1,-9],[-2,-2],[-5,-3],[-2,-3],[-4,-12],[-2,-5],[-3,-1],[-2,0],[-1,1],[-1,2],[1,44],[2,19],[3,15],[-4,4],[2,10],[8,15],[-1,13],[-4,12],[-2,8],[6,3],[3,1],[2,3],[1,5],[0,7],[0,3],[-2,3],[-3,3],[0,4],[0,3],[1,3],[1,4],[-1,6],[-4,7],[-1,5],[2,8],[3,5],[2,5],[-1,10],[5,1],[14,9],[4,4]],[[36515,34870],[-1,-6],[-8,-15],[-1,-5],[0,-7],[1,-14],[-2,0],[-1,1],[-1,3],[-6,1],[-4,14],[-4,17],[-4,9],[-12,17],[-1,2],[1,3],[4,15],[3,5],[3,2],[5,1],[2,4],[0,6],[2,7],[7,7],[8,6],[5,7],[-2,15],[5,8],[5,-2],[4,-8],[6,-21],[1,-5],[0,-5],[-1,-4],[-4,-8],[-2,-15],[-6,-22],[-2,-13]],[[36800,35841],[3,1],[7,-1],[3,2],[4,5],[3,2],[0,-4],[-13,-18],[-10,-5],[-6,-6],[-65,-108],[-10,-10],[-5,-10],[-6,-18],[-5,-23],[-3,-8],[-3,3],[0,12],[5,20],[1,10],[2,4],[11,27],[32,49],[12,11],[17,34],[14,11],[7,15],[5,5]],[[37131,36300],[2,-1],[0,-2],[0,-2],[1,-3],[4,-11],[3,-12],[0,-7],[-14,12],[-4,0],[-3,-7],[-2,3],[-5,0],[-2,1],[-2,3],[-4,14],[4,3],[1,-1],[2,-2],[2,4],[0,3],[0,3],[-2,6],[4,0],[9,-4],[6,0]],[[37440,36312],[-3,-2],[0,-4],[1,-7],[0,-7],[1,-3],[0,-3],[-2,-4],[-1,-2],[-4,-4],[-1,2],[-1,1],[-1,0],[-2,1],[-3,8],[-2,13],[-3,8],[-4,-5],[-1,4],[-11,-9],[-11,-6],[-10,2],[-7,13],[-1,13],[1,8],[4,6],[4,6],[18,34],[3,10],[2,18],[1,4],[1,5],[1,4],[0,3],[3,3],[2,0],[3,-2],[3,-3],[14,-19],[2,-7],[-2,-42],[-8,3],[-2,-18],[5,-17],[9,3],[2,-4],[0,-1],[0,-3]],[[37749,36760],[5,-7],[1,-5],[-5,-2],[-1,-3],[-2,-1],[-1,2],[-1,3],[0,2],[0,2],[-3,0],[-2,0],[-2,-2],[-1,-3],[-4,5],[-2,-4],[-3,-6],[-3,-3],[-12,-4],[-3,0],[-4,4],[-2,4],[-3,3],[-5,1],[-2,-3],[-3,-8],[-2,-9],[-1,-8],[-2,0],[0,1],[0,1],[0,2],[-2,4],[-2,5],[1,5],[1,6],[-5,0],[-2,1],[-1,3],[-1,5],[1,1],[1,0],[11,11],[7,16],[3,-3],[4,5],[7,14],[0,3],[1,9],[2,1],[1,-2],[1,-2],[0,-1],[3,0],[3,-2],[3,-3],[3,-3],[0,-4],[-2,0],[-2,-2],[-1,-1],[-1,-1],[6,-8],[4,5],[2,-4],[2,-6],[4,-3],[2,2],[1,4],[1,4],[1,2],[3,-2],[0,-4],[-1,-3],[0,-3],[2,-5],[2,-6]],[[40999,48197],[3,2],[1,-4],[0,-7],[-3,-5],[-4,-3],[-8,-9],[-3,-1],[-3,3],[2,4],[3,5],[1,3],[1,5],[3,2],[4,2],[3,3]],[[41831,50994],[7,4],[7,-6],[3,-9],[-1,-8],[-2,-7],[-4,-5],[-5,-1],[-6,2],[-3,6],[-1,8],[0,8],[5,8]],[[36577,35437],[6,10],[9,11],[3,0],[2,-10],[-2,-14],[-3,-22],[0,-12],[3,-12],[-4,-6],[-6,-7],[-5,2],[-4,10],[2,8],[-1,8],[-5,9],[0,11],[5,14]],[[40318,45911],[2,1],[3,-1],[2,-4],[-1,-4],[1,-8],[2,-8],[0,-7],[-2,-9],[-1,-8],[-1,-10],[-1,-9],[-2,-2],[-3,1],[-5,2],[-2,3],[0,9],[0,14],[1,7],[2,6],[3,9],[1,8],[0,6],[1,4]],[[38269,48875],[4,-5],[5,-11],[9,-4],[5,-5],[6,-12],[4,-5],[2,-5],[-8,-1],[-10,3],[-6,8],[-7,7],[-9,4],[-3,10],[0,14],[2,8],[3,1],[3,-7]],[[37824,49016],[0,7],[-2,6],[-3,5],[2,5],[1,0],[4,5],[3,-1],[2,-7],[-1,-9],[-1,-11],[3,-1],[1,1],[2,8],[1,1],[4,6],[3,0],[2,-11],[-1,-8],[-2,-9],[-1,-11],[-3,-6],[-8,-4],[-4,-1],[-4,4],[-1,8],[0,1],[0,7],[1,10],[2,5]],[[37898,49071],[6,1],[1,-7],[-1,-11],[-3,-8],[-2,-8],[-3,-4],[-3,5],[-5,2],[-2,9],[-1,7],[1,7],[5,3],[3,2],[4,2]],[[36255,49489],[4,1],[8,-6],[4,-6],[0,-6],[0,-7],[-2,-7],[-4,-3],[-7,-4],[-3,-6],[-4,-7],[-4,-2],[-4,6],[-2,11],[1,8],[0,11],[1,7],[3,6],[3,3],[3,-3],[3,4]],[[35172,30488],[-5,-6],[-5,-8],[-10,-22],[-6,-20],[-3,-20],[-6,-49],[-5,-30],[-2,-27],[-2,-9],[-10,-12],[-5,-7],[-13,-31],[-15,-20],[-5,-10],[-10,-35],[-3,-6],[0,-7],[-6,-34],[4,-21],[0,-11],[-11,-6],[-26,-26],[-21,-25],[-42,-73],[-3,-8],[-1,-10],[0,-9],[-2,-7],[-25,-10],[-6,-1],[1,5],[1,4],[5,8],[-2,3],[-2,3],[-1,5],[-1,5],[1,7],[3,15],[0,2],[-4,7],[-7,6],[-8,3],[-6,1],[3,-4],[11,-8],[-2,-8],[-5,-8],[-5,-6],[-4,-3],[-2,-4],[0,-8],[2,-6],[4,1],[0,5],[4,-2],[5,-8],[3,-13],[-2,-7],[-5,-8],[-63,-58],[-3,-3],[-17,-9],[-9,-13],[-6,-5],[-12,-6],[-48,-41],[-6,-2],[-5,-3],[-7,-15],[-6,-2],[2,6],[0,4],[0,2],[-3,8],[-3,7],[-5,4],[-11,2],[-1,3],[0,4],[-2,5],[-2,3],[-3,3],[-6,2],[-13,-1],[-26,-11],[-10,4],[-8,12],[-14,34],[-11,11],[-7,1],[-18,2],[-12,-2],[-14,7],[-11,9],[-13,-5],[-13,9],[-17,-10],[-10,5],[-19,-11],[-8,-6],[-18,-22],[-14,-17],[-18,-19],[-10,1],[-9,-8],[-4,-5],[-1,-12],[-6,15],[-5,1],[-5,4],[2,5],[1,7],[-4,4],[-4,2],[-2,-9],[-5,-8],[-3,0],[-6,1],[-6,-1],[-9,13],[-17,17],[-4,7],[-1,9],[5,7],[5,8],[7,4],[-4,8],[-6,4],[-14,10],[-11,3],[-9,-1],[-6,-7],[-5,1],[-4,4],[-11,11],[-4,5],[-5,5],[-19,10],[-23,5],[-22,16],[-4,6],[-4,15],[-4,7],[-10,12],[-6,13],[-6,10],[-5,7],[-8,9],[-4,6],[1,8],[-2,4],[-4,5],[-2,3],[-5,11],[-5,7],[-9,7],[-14,6],[-25,1],[-15,-2],[-5,7],[-13,0],[-7,-8],[-3,8],[-8,1],[-7,-7],[-10,-7],[-9,16],[-7,0],[-8,-3],[-11,-8],[-16,-11],[-5,1],[-7,-8],[-8,2],[-8,-2],[-9,2],[2,5],[-2,9],[-8,4],[-5,15],[1,24],[-7,13],[-6,16],[-20,43],[-9,8],[-4,9],[-4,20],[-5,8],[-7,5],[-7,3],[-6,0],[-8,3],[-3,7],[-4,22],[-3,13],[-23,60],[-5,8],[-11,11],[-4,8],[-4,11],[-2,12],[-7,70],[-1,51],[3,51],[-1,12],[-1,12],[-1,12],[1,14],[4,12],[10,22],[1,13],[-1,11],[-8,12],[-2,12],[2,10],[4,10],[10,18],[3,12],[1,13],[-5,51],[0,26],[4,19],[11,7],[26,-3],[12,2],[10,9],[11,18],[4,10],[2,10],[1,14],[1,11],[4,22],[2,24],[-2,18],[-6,14],[-12,23],[-3,9],[-1,11],[-1,13],[1,26],[-1,14],[-2,10],[2,5],[-2,15],[-3,41],[-3,9],[-3,9],[-5,45],[-1,13]],[[74393,79586],[5,-3],[5,-1],[29,6],[5,4],[5,10],[10,14],[22,19],[10,14],[1,15],[-5,17],[-4,18],[5,18],[3,6],[5,20],[3,8],[7,6],[50,13],[6,0],[14,-6],[7,-1],[17,1],[6,3],[11,11],[4,2],[1,0],[5,-1],[4,-4],[7,-15],[6,-7],[7,-3],[42,-4],[1,4],[-6,19],[1,22],[0,9],[3,7],[6,2],[5,-3],[3,-8],[2,-9],[3,-9],[3,-6],[2,-6],[2,-6],[4,-4],[10,3],[41,25],[10,11],[5,14],[-4,15],[-6,17],[3,14],[8,7],[10,-3],[16,-22],[8,-7],[9,1],[7,10],[6,15],[6,11],[10,0],[12,12],[27,13],[18,14],[6,7],[2,9],[-3,10],[-5,5],[-12,8],[-4,8],[1,5],[4,7],[0,6],[-1,4],[-5,6],[-2,4],[0,7],[2,23],[1,6],[2,3],[10,11],[15,8],[40,1],[15,5],[14,10],[7,15],[0,7],[1,12],[2,15],[4,12],[8,8],[37,11],[11,7],[34,36],[5,3],[12,2],[5,2],[14,16],[12,3],[24,-8],[12,1],[5,2],[5,3],[5,6],[3,7],[2,9],[0,17],[2,6],[10,8],[22,9],[10,11],[20,35],[7,10],[10,6],[33,1],[9,4],[27,20],[11,0],[23,-7],[10,4],[4,10],[2,12],[3,12],[7,10],[28,15],[7,11],[14,35],[8,10],[19,17],[21,10],[21,3],[45,-12],[27,1],[23,19],[15,42],[0,11],[0,11],[2,9],[3,7],[6,5],[7,3],[7,-2],[4,-9],[5,-23],[7,-15],[9,-9],[11,-6],[11,-11],[16,-32],[10,-8],[6,1],[7,3],[6,6],[5,8],[3,10],[2,19],[2,10],[10,10],[17,5],[18,-2],[11,-9],[3,-21],[0,-28],[5,-24],[3,-12],[3,-6],[3,-5],[5,-3],[18,-7],[9,0],[14,1],[65,5],[32,-14],[97,-6],[97,-6],[6,-4],[4,-8],[2,-9],[0,-22],[11,-38],[2,-14],[2,-61],[3,-31],[3,-15],[4,-13],[6,-10],[23,-14],[5,-5],[2,-8],[1,-9],[2,-9],[3,-7],[12,-16],[3,-7],[5,-17],[3,-6],[6,-3],[7,2],[27,13],[48,4],[9,-4],[8,-9],[6,-19],[5,-13],[2,-4],[13,-11],[78,1],[12,-5],[13,-14],[4,-7],[5,-5],[1,-1],[5,-4],[6,2],[4,7],[8,16],[5,5],[27,5],[12,8],[10,20],[8,11],[11,5],[11,-3],[7,-13],[3,-16],[5,-12],[7,-4],[8,8],[3,8],[3,6],[4,6],[4,4],[4,3],[4,1],[5,-2],[4,-2],[41,-26],[13,-13],[12,-17],[6,-6],[7,-1],[8,3],[14,13],[7,5],[8,0],[5,-3],[5,-9],[4,-13],[4,-10],[4,-3],[6,3],[6,6],[15,22],[6,2],[74,-16],[10,-12],[10,-25],[5,-7],[7,-4],[4,-2],[6,-5],[3,-10],[6,-16],[15,-9],[16,-5],[10,0],[12,5],[13,9],[24,23],[18,20],[9,15],[2,18],[-3,11],[-2,7],[1,5],[21,8],[25,17],[7,2],[6,-4],[9,-14],[5,-5],[5,4],[8,14],[8,11],[40,30],[16,24],[43,130],[2,10],[1,11],[-1,10],[-2,19],[1,20],[9,35],[1,19],[-2,16],[-5,11],[-7,7],[-7,5],[-17,4],[-8,4],[-21,22],[-6,8],[-4,12],[-14,48],[-8,30],[1,13],[12,23],[-2,7],[-9,9],[-4,7],[-2,7],[-3,7],[-13,12],[-10,14],[-8,17],[0,18],[17,51],[5,20],[2,20],[2,8],[8,28],[0,9],[-1,13],[-3,20],[0,9],[2,10],[3,8],[8,14],[3,8],[13,39],[5,13],[4,6],[4,2],[12,9],[8,0],[23,-6],[2,11],[1,14],[-2,25],[1,14],[3,11],[7,20],[2,11],[17,38],[26,17],[53,20],[9,10],[9,13],[8,15],[18,50],[4,29],[3,9],[10,19],[3,8],[0,10],[0,20],[2,10],[9,13],[11,1],[3,-3],[7,-8],[3,-19],[6,-13],[8,-7],[48,-23],[10,-8],[6,-9],[6,-11],[5,-10],[8,-5],[65,-25],[34,-2],[8,-5],[21,-25],[18,-29],[19,-24],[25,-10],[25,4],[31,-7],[84,0],[17,-13],[18,-8],[120,-82],[13,-15],[12,-4],[12,0],[11,-3],[10,-14],[10,-17],[10,-8],[10,0],[27,14],[12,1],[12,-3],[21,-12],[14,2],[8,-2],[5,-3],[15,-15],[7,-3],[22,2],[6,-3],[9,-11],[5,-4],[22,-2],[6,-5],[5,-6],[26,-25],[2,-9],[-4,-13],[-12,-27],[0,-6],[1,-6],[3,-10],[0,-11],[0,-9],[-2,-21],[1,-22],[5,-23],[8,-22],[7,-17],[3,-8],[1,-8],[-2,-9],[-3,-7],[7,-15],[-2,-17],[-5,-16],[-3,-16],[4,-19],[8,-11],[17,-18],[6,-18],[-2,-13],[-7,-13],[-6,-15],[-1,-17],[3,-18],[6,-16],[7,-11],[12,-7],[28,-5],[11,-12],[20,-53],[9,-9],[1,0],[39,-15],[35,-35],[11,-7],[13,-5],[43,8],[20,-7],[11,-31],[4,-17],[6,-11],[8,-4],[28,4],[9,-3],[10,-6],[17,-17],[18,-12],[19,-1],[32,33],[17,-1],[36,-22],[18,-4],[23,4],[21,13],[14,22],[6,13],[14,15],[8,10],[8,11],[8,6],[19,8],[28,-2],[10,2],[6,6],[11,15],[7,3],[25,-1],[8,4],[17,15],[7,3],[9,2],[32,-5],[8,0],[7,3],[7,5],[31,36],[10,8],[14,3],[86,-33],[39,4],[8,-2],[13,-8],[14,-4],[15,-1],[7,-2],[15,-17],[2,-4],[0,-5],[0,-6],[1,-4],[2,-3],[22,-4],[7,-4],[12,-12],[5,-4],[7,-2],[54,23],[30,4],[30,-5],[25,-12],[12,-9],[41,-49],[10,-7],[3,-6],[4,-22],[2,-6],[6,-8],[2,-4],[1,-6],[3,-14],[2,-7],[4,-4],[8,-6],[4,-4],[14,-18],[8,-8],[9,-5],[8,1],[7,5],[7,1],[17,-20],[101,-2],[4,-3],[2,-1],[10,-10],[6,-3],[9,2],[3,-1],[13,-6],[13,-1],[3,-6],[-1,-15],[-2,-10],[-3,-9],[-1,-9],[0,-12],[5,-28],[2,-22],[0,-8],[-2,-7],[-6,-22],[0,-8],[3,-4],[7,-1],[11,1],[4,-4],[-3,-14],[0,-9],[3,-9],[4,-8],[21,-21],[5,-4],[24,-4],[7,-4],[4,-6],[2,-8],[2,-8],[3,-8],[16,-27],[39,-48],[18,-17],[9,-1],[10,-1],[40,10],[30,0],[20,5],[28,-13],[7,1],[29,10],[35,-4],[7,-4],[6,-5],[16,-9],[5,-3],[11,1],[3,-3],[1,-3],[1,-11],[2,-4],[5,-4],[6,-4],[59,6],[16,-9],[9,-14],[4,0],[23,-8],[74,-31],[12,2],[12,7],[12,11],[10,15],[4,8],[3,4],[3,-1],[14,-22],[5,-5],[16,-6],[26,-23],[12,-5],[12,-1],[12,2],[30,14],[35,27],[48,50],[38,18],[5,5],[8,15],[5,5],[6,2],[6,-3],[13,-10],[7,-2],[7,1],[6,2],[32,23],[12,6],[103,9],[26,17],[85,53],[12,3],[31,-5],[24,-18],[8,-3],[9,1],[12,5],[25,18],[17,21],[5,5],[7,4],[6,3],[14,1],[5,4],[3,13],[1,21],[1,9],[2,11],[20,54],[7,14],[8,12],[57,59],[7,14],[4,7],[15,14],[5,7],[14,16],[48,35],[6,2],[12,-3],[6,0],[3,2],[34,47],[6,5],[12,5],[5,4],[18,24],[22,19],[24,12],[13,-2],[26,-18],[13,-5],[52,10],[26,-9],[68,-54],[5,-7],[3,-8],[6,-17],[4,-8],[41,-62],[44,-46],[5,-2],[18,0],[6,-2],[10,-1],[19,4],[29,-9],[10,0],[9,4],[84,67],[23,10],[23,0],[23,-13],[76,-42],[12,-14],[10,-20],[8,-24]],[[0,89003],[99970,-7],[-19,-14],[-6,-2],[-7,-6],[-19,-38],[-65,-77],[-6,-3],[-18,3],[-27,-8],[-12,1],[-14,-9],[-8,-2],[-37,-26],[-35,-20],[-43,-44],[-55,-29],[-13,-1],[-8,12],[15,8],[45,12],[5,2],[4,6],[6,14],[-1,6],[-8,3],[-15,2],[-7,-2],[-21,-11],[-97,-12],[6,3],[6,1],[3,3],[-3,9],[-6,2],[-43,0],[-30,-10],[-2,2],[-2,5],[-1,5],[-2,5],[-4,3],[-3,1],[-51,0],[-6,1],[-13,8],[-14,-1],[-6,3],[2,5],[9,8],[-5,3],[-19,17],[-6,3],[-12,1],[4,9],[-1,6],[-4,4],[-5,2],[-12,-1],[-4,2],[-6,6],[6,6],[7,2],[15,1],[-2,7],[-6,10],[-3,7],[0,3],[1,5],[-1,5],[-2,4],[-1,3],[-2,3],[-3,2],[-6,2],[-22,-2],[-7,1],[-11,5],[-5,1],[-5,7],[-9,31],[-5,11],[-5,4],[-44,15],[-10,11],[-6,3],[-23,0],[-11,-4],[-23,-17],[-34,-10],[-11,1],[-13,16],[-7,3],[-11,3],[-2,1],[-2,3],[-2,3],[-2,3],[-3,2],[-3,1],[-7,-1],[4,-15],[-7,-6],[-18,0],[8,-10],[10,-2],[20,4],[3,-1],[8,-15],[4,-4],[5,-2],[9,-2],[102,29],[12,-2],[6,-9],[3,-12],[9,-5],[8,-3],[4,-4],[4,-10],[25,-17],[2,-4],[2,-6],[3,-4],[4,-2],[3,-2],[3,-5],[4,-13],[-2,-3],[-1,-2],[-3,-7],[14,-8],[6,-7],[1,-9],[-4,-5],[-23,-12],[-34,-8],[-7,-4],[-4,-1],[-4,1],[-3,3],[-4,8],[-14,6],[-18,23],[-11,5],[-61,10],[-4,-1],[-4,-7],[-8,-10],[-9,-8],[-6,-2],[-11,-5],[-5,-1],[-6,1],[-1,3],[0,6],[-2,8],[-8,12],[-43,24],[-5,5],[-5,7],[-5,4],[-21,-2],[-6,4],[-7,16],[-5,3],[-5,-3],[-13,-14],[-8,-6],[-2,-4],[-1,-3],[0,-6],[-1,-3],[-11,-20],[-9,-11],[-22,-11],[-9,-11],[-11,-9],[-43,11],[-14,-3],[-27,-14],[-35,-4],[-13,6],[-5,-2],[-4,-5],[-6,-2],[-41,4],[-14,-4],[-35,-33],[-19,-7],[-12,-9],[-7,-2],[-79,4],[10,-9],[12,-4],[70,6],[69,44],[24,6],[47,-8],[87,23],[10,-9],[9,-4],[15,4],[36,21],[4,5],[4,7],[5,5],[10,6],[4,5],[12,26],[6,8],[10,4],[12,-1],[12,-7],[23,-20],[18,-29],[2,-5],[3,-13],[3,-8],[4,-8],[4,-6],[9,-4],[3,-6],[3,-6],[3,-5],[5,-4],[3,-3],[-1,-4],[-5,-7],[-5,-5],[-16,-10],[-40,-11],[-11,-12],[-7,-18],[-1,-4],[-3,-20],[-1,-5],[4,-4],[1,4],[0,7],[1,6],[3,5],[21,25],[10,2],[11,-2],[12,2],[11,6],[6,5],[5,7],[6,14],[4,6],[4,2],[23,-4],[12,-7],[30,-27],[3,-6],[7,-23],[4,-4],[5,1],[9,10],[7,4],[3,4],[1,3],[-1,3],[0,3],[0,3],[7,11],[18,16],[19,25],[13,4],[26,1],[12,4],[12,7],[22,19],[13,6],[42,-8],[-3,-18],[-8,-31],[0,-7],[1,-7],[0,-5],[-3,-6],[-7,-9],[-2,-6],[-4,-14],[-2,-7],[-5,-6],[-2,-5],[-1,-9],[2,-16],[5,-17],[11,-30],[8,-12],[28,-26],[11,-21],[8,-5],[13,-17],[5,-5],[12,-5],[23,-20],[51,-26],[52,-3],[0,5],[-24,14],[-7,10],[8,10],[26,14],[6,5],[5,6],[4,8],[4,10],[5,6],[-1,7],[-4,5],[-6,15],[-4,11],[-3,5],[-4,-2],[-5,-7],[2,6],[2,6],[0,5],[6,-6],[50,-110],[2,-8],[6,-31],[3,-8],[34,-62],[7,-15],[-9,6],[-10,10],[-10,5],[-8,-7],[-3,-4],[-4,-5],[-5,-3],[-3,-2],[-5,-20],[24,-5],[6,-3],[-7,-4],[-23,-1],[0,-4],[7,-3],[22,3],[13,-1],[23,-13],[6,-1],[5,1],[1,9],[-2,7],[-2,6],[-3,5],[2,4],[14,-54],[1,-7],[0,-7],[-1,-11],[-1,-7],[1,-6],[4,-13],[3,-22],[6,-29],[6,-56],[-1,-12],[-4,10],[-6,7],[-6,3],[-6,1],[-7,2],[-6,6],[-7,3],[-5,-3],[4,-8],[6,-10],[7,-8],[5,-3],[8,-1],[8,-3],[2,-5],[-8,-7],[-11,-4],[-6,-1],[-5,3],[-1,4],[-1,9],[-2,3],[-6,8],[-8,5],[-8,1],[-7,-4],[7,-3],[-1,-10],[-7,-10],[-8,-1],[-2,2],[0,4],[0,5],[-1,3],[-1,2],[-8,0],[-16,5],[-5,0],[-4,-3],[-2,-5],[-3,-5],[-2,-4],[-13,-8],[-2,-4],[2,-10],[7,-10],[13,-12],[9,-3],[8,2],[7,7],[15,20],[8,4],[46,-9],[2,1],[2,4],[1,2],[1,0],[4,-3],[1,-3],[-1,-3],[0,-7],[2,-5],[2,-2],[1,-3],[-3,-6],[5,-5],[0,-5],[-2,-4],[-1,-5],[-1,-8],[-4,-3],[-8,-3],[-4,-4],[-2,-3],[-2,-5],[-2,-4],[-11,-12],[-2,-4],[19,-13],[10,-2],[32,20],[6,9],[-4,12],[-10,22],[-9,27],[1,26],[4,7],[1,1],[1,-5],[0,-9],[1,-6],[2,-11],[3,-18],[4,-13],[53,-101],[-13,10],[-16,23],[-15,17],[-11,-9],[0,-23],[31,-15],[3,-19],[27,-4],[7,-3],[22,-26],[8,-3],[5,1],[4,3],[5,2],[6,-2],[18,-15],[10,-10],[2,-5],[2,-8],[4,-3],[4,-2],[3,-3],[5,-12],[2,-5],[1,-10],[1,-23],[-1,-6],[-4,-7],[-4,1],[-5,4],[-5,2],[-6,-1],[-5,-3],[-11,-10],[-7,-11],[-2,-11],[3,-13],[11,-34],[7,-12],[8,-8],[35,-5],[11,-7],[8,-14],[2,-8],[0,-16],[1,-7],[4,-7],[2,-2],[2,-1],[2,-2],[0,-4],[1,-5],[2,-8],[3,-19],[0,-6],[-2,-7],[-3,-5],[-3,-4],[-3,-5],[-3,-7],[1,-3],[1,-6],[1,-4],[0,-4],[-1,-3],[-3,-1],[-25,0],[-8,-4],[-3,-11],[-1,-14],[-3,-16],[-7,-16],[-10,-8],[-10,-4],[-34,2],[-11,-4],[-10,-14],[0,-15],[10,-18],[-4,-22],[1,-8],[2,-8],[1,-7],[-1,-5],[-3,-5],[-9,-16],[-4,-4],[-4,-2],[-6,4],[-2,13],[-1,3],[-2,3],[-16,16],[-11,8],[-34,9],[-22,13],[-69,20],[-31,21],[-21,1],[-10,8],[-21,9],[-17,14],[-19,8],[-46,12],[-59,9],[-104,4],[3,2],[2,0],[4,1],[-9,11],[-11,6],[11,23],[3,12],[2,3],[2,2],[0,3],[0,5],[-2,18],[-1,2],[-1,3],[1,6],[1,3],[4,8],[1,1],[21,4],[3,-2],[0,5],[-1,4],[0,4],[1,3],[5,4],[2,3],[1,4],[-4,4],[-22,-4],[-9,-5],[-9,-12],[-8,-16],[-5,-16],[1,-3],[3,-9],[-22,-2],[-9,6],[-8,16],[7,18],[1,6],[-2,5],[-13,16],[-15,7],[-4,4],[-1,3],[-1,3],[0,4],[-2,3],[-3,3],[-3,1],[-1,0],[-5,-5],[1,-12],[4,-14],[3,-10],[-2,-4],[4,-5],[5,-4],[3,-6],[-1,-7],[-4,-5],[-19,-22],[-6,-10],[-1,-13],[8,-17],[15,-12],[2,-4],[1,-10],[3,-6],[5,-3],[4,-1],[8,0],[23,8],[25,-5],[-8,-11],[-62,-11],[-43,-18],[-42,-12],[-6,0],[-1,8],[2,4],[3,2],[4,3],[2,7],[-8,0],[-9,-3],[-7,-8],[-1,-13],[-6,-2],[-4,-2],[-1,-4],[1,-7],[3,-1],[9,3],[0,-3],[-13,-11],[-10,-3],[-35,-25],[-4,-2],[-7,-5],[-20,-36],[-12,-10],[-89,-37],[-90,-38],[-22,-19],[-22,-10],[-38,-35],[-9,-5],[6,6],[8,6],[7,7],[4,10],[-14,-7],[-7,-1],[-6,4],[-7,21],[-4,10],[-2,-5],[1,-39],[-1,-17],[-6,-13],[-15,-13],[-100,-44],[-14,-18],[2,6],[2,3],[7,7],[-5,8],[-9,2],[-15,-2],[-7,3],[-14,12],[-7,1],[5,-15],[7,-8],[8,-6],[9,-14],[4,-5],[3,-5],[-1,-5],[-6,-11],[-4,-4],[-56,-28],[-10,0],[-7,0],[-4,2],[-5,4],[-3,1],[-7,-3],[5,5],[1,6],[-2,5],[-6,0],[-3,-2],[-10,-14],[-5,-4],[-6,-2],[-17,2],[-4,-1],[-10,-7],[4,4],[7,5],[-6,10],[-9,7],[-10,2],[-8,-4],[3,-8],[-15,-1],[-5,-5],[2,-12],[5,-8],[6,-5],[6,2],[7,1],[-13,-6],[-6,-5],[-5,-8],[-3,-8],[-2,-7],[-3,-5],[-14,-3],[-5,-3],[-10,-13],[-17,-13],[-6,-6],[2,15],[-3,9],[-6,5],[-30,13],[-20,19],[-7,2],[-8,-5],[-3,-6],[-3,-10],[-3,-11],[-1,-9],[-2,-10],[-8,-17],[0,-6],[3,-8],[2,-8],[1,-9],[1,-11],[-5,-9],[-10,-2],[-18,5],[-7,-2],[-6,-6],[-7,-8],[-5,-9],[5,-16],[-6,-16],[-44,-40],[-12,-3],[-23,14],[-2,3],[-5,11],[-2,3],[-4,2],[-7,0],[-4,2],[-2,2],[-1,3],[-1,4],[0,2],[0,1],[-1,0],[-20,-2],[-30,-22],[9,-9],[21,-17],[15,-4],[6,-5],[5,-6],[3,-6],[2,-8],[0,-7],[1,-5],[4,-2],[-17,-22],[-21,9],[-22,18],[-20,7],[20,-17],[8,-12],[0,-14],[-4,-4],[-4,-1],[-4,0],[-4,-1],[-3,-2],[-4,-8],[-3,-2],[-1,-3],[-4,-15],[-3,-6],[-20,-2],[-52,23],[-13,-9],[7,-11],[5,-11],[6,-9],[8,-6],[0,-4],[-27,-12],[-14,1],[-12,11],[6,-16],[10,-7],[29,-3],[3,-2],[1,-3],[0,-4],[0,-4],[1,-2],[4,-1],[15,6],[-4,-15],[-8,-7],[-9,-4],[-12,-15],[-5,0],[-10,5],[-15,-3],[-6,3],[-30,28],[-35,20],[6,-9],[36,-35],[6,-9],[4,-10],[2,-12],[-1,-10],[-5,-8],[-4,-1],[-11,2],[-3,-3],[-3,-8],[-1,-4],[-3,-3],[-2,-17],[-10,-16],[-11,-3],[-5,20],[2,9],[2,10],[0,9],[-6,9],[-7,1],[0,-9],[0,-11],[-5,-6],[1,-4],[0,-2],[1,-2],[-2,-8],[2,-6],[3,-4],[1,-6],[-3,-4],[-14,-7],[-21,-3],[-6,2],[-16,11],[-6,-4],[-17,-18],[-9,0],[-9,-8],[-4,-2],[-3,2],[-3,2],[-4,2],[-3,-2],[8,-8],[8,-4],[7,-7],[4,-17],[-9,-5],[-27,-3],[-7,-5],[-12,-14],[-6,-6],[7,9],[5,8],[3,8],[-2,9],[-4,6],[-5,5],[-2,6],[-2,5],[-2,1],[-3,-2],[0,-4],[1,-4],[1,-5],[1,-6],[0,-21],[-1,-6],[-2,-2],[-3,-1],[-2,-1],[-1,-9],[0,-17],[-1,-7],[-4,-9],[-12,-7],[-12,-13],[-14,-6],[-11,-14],[-5,-2],[-12,2],[-11,0],[-7,-2],[-20,-17],[-6,-4],[-42,-5],[-5,3],[-6,5],[-5,2],[-5,-6],[5,-11],[4,-4],[6,1],[6,2],[-6,-13],[-1,-8],[2,-8],[-10,-8],[-11,-5],[-21,-3],[-5,3],[-4,11],[-6,2],[-19,0],[2,-9],[5,0],[6,2],[5,-2],[8,-20],[2,-7],[-2,-1],[-2,-1],[-1,-5],[4,-4],[11,-6],[2,-6],[1,-5],[-1,-6],[-2,-6],[-10,-11],[-23,-7],[-9,-11],[-8,-24],[-5,-29],[-4,-61],[-7,-39],[-1,-12],[-3,-17],[-9,-10],[-29,-17],[-9,1],[-7,7],[-9,12],[-4,4],[-12,5],[-4,5],[-1,7],[1,6],[2,5],[2,7],[-4,3],[-13,13],[-5,2],[-14,2],[-9,4],[-6,9],[-8,28],[-12,24],[-4,11],[-1,17],[5,5],[31,8],[-8,7],[-7,4],[-7,0],[-8,-3],[-8,-1],[-7,4],[-16,15],[-2,4],[-1,6],[0,6],[0,6],[-3,5],[-5,10],[-2,5],[0,11],[0,10],[0,10],[-4,10],[-8,8],[-16,8],[-11,15],[-4,2],[-9,0],[-47,36],[-16,6],[-8,5],[-5,10],[26,-4],[9,4],[-18,26],[-6,5],[-14,0],[-6,5],[-2,-5],[0,-3],[0,-4],[2,-4],[-4,-8],[-3,-3],[-2,-2],[-3,1],[-5,6],[-2,1],[-4,-4],[2,-5],[4,-4],[4,-2],[-53,4],[-63,-3],[-5,-1],[-8,-8],[-2,-1],[-13,0],[-7,2],[-13,15],[-13,7],[-13,3],[-56,-1],[-12,-7],[-40,-8],[-71,-36],[-6,1],[-5,6],[-5,15],[-4,3],[-5,-3],[0,-8],[3,-8],[3,-7],[0,-7],[-5,-4],[-11,-1],[-22,-20],[-12,-6],[-12,-1],[-4,3],[-12,10],[-3,2],[-2,-5],[-1,-7],[0,-7],[-1,-6],[-9,-3],[-18,26],[-9,4],[8,-19],[3,-11],[0,-9],[-5,-4],[-7,3],[-8,5],[-6,2],[7,-14],[-8,-11],[-13,-8],[-11,-3],[-8,4],[-13,9],[-10,13],[-1,14],[-9,3],[-5,0],[0,-5],[2,-6],[2,-6],[0,-5],[-2,-5],[6,-25],[-2,-7],[-7,-4],[-10,-3],[-17,-11],[-3,-1],[-4,2],[2,-4],[7,-8],[2,-6],[-2,-6],[-5,-5],[-16,-12],[-5,-6],[-31,-52],[-54,-77],[-48,-70],[-20,-24],[-12,-8],[-13,-2],[-24,0],[-2,7],[-1,15],[1,27],[3,13],[8,21],[2,12],[0,8],[-2,12],[0,7],[1,5],[8,47],[4,10],[6,9],[15,15],[5,11],[1,17],[-7,23],[-1,13],[3,14],[2,13],[-3,16],[-4,15],[-5,7],[11,-7],[11,5],[9,14],[5,20],[-1,1],[-3,3],[9,8],[3,6],[0,7],[-5,4],[-5,-5],[-5,-7],[-4,-4],[-5,1],[-9,6],[-5,1],[-56,-19],[-11,-8],[-19,-30],[-6,-4],[5,-10],[11,6],[16,28],[12,9],[24,8],[12,3],[-15,-8],[-14,-3],[-15,-8],[-24,-35],[-31,-14],[-13,-12],[-11,-16],[-13,-15],[-14,-10],[-43,-20],[-15,1],[-5,23],[-3,-9],[-1,-10],[1,-9],[3,-9],[-12,-16],[-29,-17],[-14,-22],[-5,-4],[-5,-2],[-4,0],[-3,3],[-1,3],[-1,4],[-1,5],[-4,6],[0,2],[1,6],[2,4],[4,6],[2,6],[-9,-1],[-5,-7],[-4,-10],[-5,-10],[-8,-5],[-8,1],[-15,12],[1,-7],[0,-6],[3,-12],[-1,-6],[4,-7],[6,-2],[2,5],[3,8],[7,2],[7,-2],[4,-4],[2,-5],[2,-18],[2,-7],[4,-6],[10,-10],[3,-9],[-8,-2],[-6,-8],[-9,-22],[-32,-52],[-6,-5],[-17,-4],[-8,-8],[-9,-11],[-8,-8],[-9,1],[-3,5],[-3,9],[-2,9],[-2,7],[1,2],[1,3],[2,3],[0,4],[-1,4],[-3,5],[-1,4],[-4,16],[-8,28],[-6,14],[-5,8],[-17,20],[-20,33],[-9,10],[-9,6],[-10,3],[-11,-3],[-6,-4],[-2,-8],[-2,-9],[-3,1],[-7,8],[-5,-1],[-1,-15],[5,-16],[9,-6],[-8,-20],[-17,-8],[-20,-3],[-12,-6],[-6,-7],[-7,-6],[-3,-10],[1,-13],[5,-11],[12,-10],[5,-8],[-7,1],[-21,11],[-7,1],[-3,2],[-3,17],[0,3],[4,2],[7,-1],[2,1],[3,4],[2,7],[2,5],[7,7],[5,9],[14,16],[-7,0],[-14,-5],[-6,1],[-5,6],[-9,14],[-5,5],[-7,2],[-27,2],[-18,-8],[2,1],[2,3],[1,3],[1,5],[-12,8],[-2,-2],[-3,-5],[-5,-2],[-5,0],[-4,3],[-7,2],[-24,-1],[-7,-3],[-1,-12],[4,-13],[7,-11],[6,-7],[5,-3],[5,2],[11,7],[0,2],[0,3],[0,2],[1,1],[2,0],[6,-4],[-6,-7],[-5,-10],[-11,-21],[-4,-13],[-3,-4],[-5,-1],[-28,6],[-10,0],[-8,-5],[-15,-21],[-7,-8],[-18,-13],[5,-7],[-1,-14],[-2,-15],[-2,-15],[1,-6],[3,-20],[0,-12],[2,-7],[3,-7],[-1,-13],[-8,-15],[-11,-11],[-8,-2],[-6,3],[-6,-1],[-13,-7],[-5,-6],[-1,-4],[3,-2],[5,3],[-2,-7],[-5,-9],[-2,-4],[-2,-9],[0,-3],[3,-2],[10,-15],[17,-16],[7,-10],[5,-13],[2,-11],[0,-12],[-3,-25],[-1,-25],[-2,-10],[-3,-7],[-5,-7],[-5,-5],[-4,-1],[-5,3],[1,4],[7,11],[6,6],[3,5],[-1,8],[-4,2],[-15,-11],[-2,2],[-5,5],[-2,2],[-3,-1],[-4,-3],[-7,-1],[-11,-7],[-4,-5],[-2,-5],[-1,-6],[-1,-6],[0,-5],[2,-7],[1,-6],[0,-4],[0,-7],[14,-6],[4,-4],[9,-11],[13,-4],[4,-11],[5,-15],[3,-16],[-5,-10],[-5,-5],[-14,-9],[-4,-4],[-4,3],[-1,5],[3,5],[4,4],[2,7],[-3,14],[-9,7],[-19,7],[1,2],[1,8],[1,3],[-18,11],[-2,0],[-7,-4],[-2,1],[-4,3],[-2,0],[-1,-2],[0,-2],[-1,-5],[0,-5],[0,-2],[-2,0],[-4,1],[-5,-1],[-3,0],[-3,-1],[0,-7],[1,-4],[23,-37],[5,-6],[11,-10],[3,1],[2,2],[1,0],[8,-13],[1,-14],[-3,-10],[-10,-11],[-12,-9],[-19,-6],[-12,-10],[10,24],[1,15],[-4,7],[-4,-3],[-5,-8],[-8,-35],[-7,-11],[-23,2],[-9,-9],[-7,-1],[2,-11],[3,-5],[5,0],[5,4],[-2,4],[5,2],[4,-3],[4,-1],[4,10],[2,-6],[-1,-5],[-2,-5],[2,-9],[-14,-7],[-62,-59],[-30,-39],[-19,-46],[-28,-58],[-19,-43],[-34,-119],[-6,-30],[-9,-40],[1,-15],[5,-33],[3,-46],[16,-27],[18,-21],[19,-15],[19,-10],[24,-12],[24,-1],[3,-11],[-8,-14],[-12,-8],[-14,-22],[3,-1],[3,0],[4,2],[4,4],[35,33],[-2,27],[-6,28],[-1,23],[6,12],[5,18],[8,7],[7,3],[20,1],[3,2],[3,5],[4,1],[3,0],[3,-2],[2,-2],[3,-4],[7,-12],[3,-4],[2,-1],[6,1],[5,-5],[7,1],[3,-2],[2,-3],[41,-45],[25,-10],[35,-4],[0,-10],[13,-12],[3,-11],[14,-29],[-21,-18],[-3,-5],[-1,-18],[2,-13],[-1,-14],[-7,-8],[-7,-7],[-8,-4],[-7,-16],[-3,-14],[-5,-10],[-9,-20],[-32,-15],[-15,-11],[-21,-20],[-9,-22],[-3,-12],[-3,-42],[5,-42],[-3,-23],[9,-31],[12,-25],[-5,-20],[-6,-28],[-6,-16],[-3,-12],[-1,-37],[2,-23],[-2,-34],[14,-25],[16,-3],[6,-4],[6,-1],[9,-3],[13,14],[12,3],[3,6],[16,-9],[17,4],[11,5],[3,-5],[-3,-7],[4,-5],[3,-8],[8,-7],[-5,-11],[-5,-13],[-2,-14],[1,-18],[10,-18],[-5,-8],[-4,-11],[2,-9],[3,-16],[3,-5],[2,-5],[-1,-6],[-5,-2],[-3,-4],[2,-7],[3,-6],[4,-3],[5,-15],[11,-26],[0,-6],[2,-7],[2,-7],[-1,-14],[-4,-12],[2,-26],[2,-7],[1,-13],[4,-11],[-17,-8],[-4,-11],[-17,-4],[-15,-5],[-13,-14],[-3,-2],[-2,-3],[-2,-7],[-2,-8],[-1,-5],[-1,-3],[-6,-11],[-4,-10],[-1,-13],[-16,3],[-17,4],[-13,14],[-8,5],[-10,4],[-13,22],[-5,9],[-5,24],[-13,13],[-15,29],[-15,3],[-7,2],[7,3],[7,3],[10,3],[10,8],[7,8],[5,12],[5,13],[1,12],[2,8],[12,5],[21,2],[19,14],[1,14],[16,19],[16,5],[7,9],[9,23],[-4,10],[-16,2],[-7,10],[-8,-2],[-9,-21],[-4,-29],[-9,-14],[-20,14],[-27,18],[-16,2],[-9,-8],[-6,-18],[-16,-8],[-4,2],[-5,5],[-4,3],[-4,-1],[-3,-3],[-6,-9],[-2,-4],[-2,-5],[-3,-4],[-3,-3],[-4,0],[-4,-6],[-4,-8],[23,-21],[12,-5],[3,-12],[6,-10],[10,-12],[-5,-6],[-4,-4],[-9,-3],[-3,-2],[-6,-1],[-2,-5],[0,-10],[-13,-3],[-6,-4],[-15,-11],[-26,-13],[-27,-16],[-3,-2],[-6,-3],[-6,-12],[-7,-12],[-11,-11],[-3,-7],[-2,-7],[3,-5],[7,-9],[-6,-11],[-10,-16],[0,-27],[-14,-21],[-5,-25],[-8,-17],[1,-18],[-9,-26],[-14,-28],[-9,-29],[-4,-16],[-5,-11],[-3,-32],[-1,-25],[-3,-28],[-1,-53],[2,-14],[5,-16],[1,-21],[4,-32],[6,-33],[8,-29],[9,-31],[8,-10],[16,-16],[7,-13],[17,-33],[1,-19],[7,-12],[14,-14],[7,-11],[1,-7],[-5,-6],[-5,-5],[-3,-4],[0,-7],[3,-13],[3,-11],[-1,-7],[-5,-11],[-7,-5],[-5,-3],[-5,-2],[-3,-4],[-7,-10],[-2,-4],[-1,-5],[-3,-8],[-3,-6],[-5,-4],[-3,-5],[-8,-7],[-12,-10],[-4,-6],[-3,-5],[-10,-6],[-4,-5],[-9,-27],[-5,-10],[-8,-6],[-5,-1],[-5,1],[-6,2],[-4,4],[-4,4],[-16,-6],[-30,0],[-31,-14],[-13,-1],[-8,5],[-4,5],[-9,6],[-4,7],[-1,6],[-1,13],[-1,5],[-17,16],[-23,0],[-49,-16],[-42,-21],[-2,-2],[-3,-5],[-54,-51],[-11,-18],[-19,-17],[-23,-36],[-18,-23],[-6,-12],[-4,-5],[-5,-4],[-16,-5],[-12,-11],[-18,-24],[-14,-26],[-3,-20],[-9,-29],[-11,-26],[-5,-13],[-16,-110],[0,-34],[6,-27],[-3,-4],[-4,-5],[-6,-11],[7,-5],[8,-10],[7,-13],[5,-13],[1,12],[-4,11],[-5,11],[-4,11],[9,4],[7,-17],[11,-44],[-3,-10],[1,-34],[-4,-13],[-8,1],[-11,10],[-10,15],[-5,11],[-3,-2],[-2,-3],[-2,-3],[-3,-4],[5,-4],[2,-5],[-1,-6],[-4,-6],[5,1],[5,1],[4,0],[3,-6],[1,-4],[-1,-14],[0,-6],[1,-7],[2,-7],[2,-6],[3,-4],[4,-2],[5,4],[5,-2],[-4,-17],[0,-8],[2,-8],[4,-2],[5,1],[4,-3],[-2,-13],[-3,-5],[-5,-4],[-5,-6],[-2,-9],[2,-9],[13,-23],[-2,18],[5,12],[7,5],[3,-5],[1,-14],[1,-12],[2,-7],[2,-5],[0,-5],[-2,-7],[5,-13],[1,-11],[0,-12],[2,-13],[-12,10],[-3,0],[-3,-2],[-2,0],[-5,0],[-2,1],[0,3],[0,4],[-2,4],[-7,8],[-36,27],[-8,8],[-4,10],[2,13],[6,9],[7,7],[4,8],[-12,-6],[-5,-5],[-9,-15],[-5,-2],[-5,3],[-6,4],[-12,5],[-11,-1],[-32,-15],[-4,-4],[-5,-7],[-9,-20],[-8,-9],[-8,2],[-8,4],[-10,1],[-4,-4],[-9,-10],[-5,-3],[-5,-1],[-12,-5],[-44,-34],[-37,-48],[-37,-55],[-8,-7],[-4,10],[-3,15],[-4,12],[-3,11],[4,13],[-4,4],[-11,24],[-8,12],[-4,3],[-5,2],[-5,-1],[-3,-2],[-2,-4],[-3,-5],[-5,-4],[-11,-5],[-4,-6],[-3,-5],[-3,-7],[-1,-7],[5,-3],[6,-3],[-1,-6],[-4,-8],[-2,-8],[2,-15],[8,-8],[10,-2],[8,1],[-2,7],[-3,5],[-8,9],[7,4],[7,-2],[7,-4],[7,-2],[7,-1],[4,-3],[3,-6],[4,-11],[-3,-4],[-3,-4],[-3,-2],[-3,-2],[5,-8],[2,-5],[-2,-4],[-3,-7],[-6,-9],[-4,1],[-3,5],[-6,3],[6,-20],[0,-5],[-3,-5],[-11,-2],[-4,-3],[-2,-12],[6,-7],[9,-3],[7,0],[0,-5],[5,-6],[2,-5],[1,-8],[-1,-5],[-3,-3],[-4,0],[1,-12],[-3,-12],[-6,-9],[-6,-4],[-6,-2],[-10,8],[-10,10],[-2,4],[1,-7],[2,-6],[2,-6],[3,-5],[-6,-10],[0,-5],[9,-11],[9,-1],[8,-1],[1,-5],[-1,-6],[-2,-10],[1,-6],[0,-5],[-1,-4],[-3,-5],[5,-7],[2,-1],[-3,-7],[-11,-5],[-5,-4],[0,-4],[1,-10],[-1,-3],[-2,-4],[-6,-4],[-3,-4],[5,-3],[6,4],[6,7],[6,4],[6,-1],[5,-6],[8,-17],[-6,-4],[-8,-14],[-5,-2],[2,-7],[3,-5],[4,-3],[4,-2],[2,-3],[0,-7],[-1,-7],[-2,-3],[-3,-2],[-9,-11],[-4,-3],[-17,0],[3,-15],[-6,-6],[-8,-4],[-1,-12],[4,-5],[5,-3],[3,-5],[-3,-9],[-6,-8],[-3,-6],[-2,-6],[-2,-3],[-10,4],[-3,1],[-1,-5],[-1,-6],[0,-13],[1,-5],[2,-6],[1,-4],[-1,-3],[-7,-9],[-3,-6],[-1,-5],[-1,-6],[0,-7],[1,-26],[-6,-11],[-5,-4],[-9,-11],[-3,-13],[-4,-2],[-17,-28],[-2,-12],[-1,-9],[-3,-4],[-23,-20],[-3,-6],[-2,-15],[-2,-7],[-3,-6],[-6,-5],[-3,-7],[-4,-15],[-7,-7],[-1,-5],[2,-9],[-2,-4],[-8,3],[-9,-8],[-8,-15],[-6,-5],[-12,-26],[-13,3],[-9,-7],[-20,-7],[-20,-24],[-12,-27],[-5,-17],[4,-12],[-4,-17],[-8,-8],[-16,2],[-10,-13],[-13,-21],[-5,-13],[-3,-13],[-4,-8],[-17,-18],[-16,-23],[-13,-9],[-14,-17],[-22,-32],[-13,-22],[-12,-8],[-7,-13],[-4,-12],[-5,-4],[-4,-10],[-7,-10],[-9,-15],[-8,-15],[-13,-13],[-4,11],[10,16],[19,44],[2,20],[-3,11],[1,16],[0,9],[-5,7],[-10,-1],[-1,9],[-1,9],[5,23],[1,22],[-8,9],[-10,24],[-4,5],[-14,1],[-4,3],[-5,3],[-4,5],[-3,6],[-3,13],[-1,14],[0,45],[0,7],[-1,6],[-2,3],[-3,6],[-1,3],[-1,2],[-1,0],[-1,1],[-1,3],[0,2],[2,4],[-2,14],[0,12],[0,25],[1,8],[2,12],[1,6],[0,7],[-2,12],[0,6],[4,77],[-5,108],[-13,153],[-18,111],[-6,14],[-5,13],[-8,19],[-2,6],[-4,22],[3,0],[2,-2],[2,-3],[3,-3],[5,-8],[2,0],[1,1],[1,0],[2,-1],[3,-7],[2,-7],[0,-8],[-1,-11],[6,6],[7,9],[5,12],[2,12],[-4,8],[-20,3],[-8,3],[-7,12],[-3,10],[-8,15],[-3,18],[-6,21],[-19,80],[-15,81],[-3,63],[-12,102],[-1,42],[-4,51],[-14,122],[-4,39],[-1,10],[-1,42],[-1,12],[-2,21],[-5,34],[0,12],[-7,25],[-8,44],[1,11],[-1,15],[-3,27],[-18,79],[-22,132],[-25,203],[1,13],[1,12],[0,12],[-8,25],[-2,12],[-16,231],[0,47],[4,41],[5,52],[6,36],[5,34],[8,167],[4,24],[5,19],[0,8],[0,12],[0,7],[1,5],[6,20],[3,6],[3,4],[4,2],[3,3],[1,7],[-5,5],[0,11],[3,12],[3,5],[4,43],[9,26],[31,174],[4,10],[3,12],[9,29],[8,22],[11,34],[21,39],[10,8],[4,1],[-1,-6],[-25,-41],[-4,-12],[-1,-18],[5,13],[11,22],[7,9],[14,14],[3,7],[1,7],[-1,5],[0,5],[8,7],[12,5],[10,6],[20,16],[11,11],[10,10],[2,9],[11,19],[6,15],[0,20],[1,20],[5,12],[6,3],[5,-12],[3,-4],[10,-2],[5,-4],[3,-13],[2,-5],[2,2],[10,20],[0,5],[2,9],[1,5],[5,9],[6,11],[17,38],[14,34],[13,36],[14,35],[7,21],[-3,18],[-4,53],[-9,37],[-2,23],[-2,7],[-21,37],[-10,9],[-10,2],[-10,-6],[15,26],[50,49],[4,0],[5,-8],[6,-18],[4,-4],[53,-21],[19,1],[23,6],[22,13],[15,23],[9,20],[2,7],[1,6],[0,12],[1,6],[4,13],[13,20],[6,11],[-1,4],[-2,6],[-1,3],[15,1],[8,-1],[12,-13],[6,-4],[44,-8],[31,4],[31,18],[15,3],[15,-13],[7,-20],[5,-9],[5,-1],[2,9],[-4,9],[-11,12],[1,13],[-5,6],[-7,2],[-7,0],[5,8],[20,16],[5,6],[23,35],[35,30],[31,42],[36,25],[19,22],[11,5],[15,18],[21,16],[24,35],[8,6],[2,2],[1,6],[1,6],[4,2],[5,-3],[2,-5],[2,-7],[3,-5],[4,-4],[4,-2],[1,3],[-3,9],[-3,4],[-5,3],[-4,5],[-2,8],[4,12],[46,61],[6,12],[5,8],[6,3],[20,5],[3,3],[0,3],[-1,4],[-1,3],[0,1],[3,8],[9,9],[4,6],[8,16],[7,10],[1,4],[0,4],[2,8],[4,7],[5,4],[5,2],[5,4],[5,7],[6,10],[4,12],[2,13],[1,20],[-1,7],[-1,6],[-4,12],[-1,6],[4,12],[14,21],[0,10],[3,7],[17,27],[83,90],[7,11],[3,7],[4,5],[6,3],[12,2],[9,3],[7,9],[31,56],[2,11],[1,15],[2,13],[4,11],[5,8],[6,4],[7,3],[13,1],[6,2],[15,15],[38,6],[12,7],[7,9],[15,20],[11,24],[2,5],[5,5],[7,4],[2,3],[2,7],[2,3],[5,3],[6,1],[6,2],[26,40],[25,24],[15,44],[22,22],[14,30],[18,21],[8,2],[5,1],[4,5],[17,5],[16,20],[9,4],[10,8],[32,35],[11,20],[4,19],[-1,15],[-2,5],[-5,6],[-7,-9],[-1,3],[4,14],[1,13],[5,14],[-1,15],[4,11],[15,9],[37,32],[11,10],[5,12],[6,9],[39,7],[6,3],[10,4],[8,11],[8,9],[4,6],[7,9],[10,4],[11,-2],[9,-7],[5,-1],[7,3],[7,5],[10,11],[11,2],[5,4],[12,20],[15,14],[7,13],[-3,5],[2,7],[8,5],[14,4],[15,7],[8,-11],[13,-4],[7,7],[-6,7],[6,0],[13,3],[4,6],[3,7],[5,1],[9,-6],[7,4],[15,1],[6,-3],[-4,-12],[-5,-17],[-5,-13],[5,-4],[6,2],[2,15],[4,12],[8,14],[2,12],[6,4],[6,6],[7,2],[8,5],[14,9],[13,4],[8,2],[12,-1],[11,-7],[8,8],[6,9],[3,11],[4,10],[-6,7],[-5,4],[-14,10],[-21,6],[-20,15],[-6,3],[-8,4],[12,18],[8,9],[17,7],[3,13],[-4,14],[2,9],[7,6],[5,9],[27,24],[38,24],[5,1],[4,4],[3,10],[1,8],[0,14],[1,7],[15,15],[7,12],[-2,15],[-13,28],[-7,9],[-22,10],[-7,1],[-5,-3],[-5,-5],[-4,-10],[-6,-6],[-4,10],[-2,8],[2,21],[11,25],[8,21],[5,14],[-1,11],[3,16],[3,13],[11,8],[7,4],[16,-5],[8,5],[8,9],[3,24],[2,13],[1,24],[0,13],[-2,7],[-3,7],[-2,7],[3,4],[3,4],[5,9],[3,14],[1,17],[-3,11],[1,14],[-4,9],[0,8],[3,2],[5,6],[1,9],[-1,9],[-1,7],[-1,7],[-1,8],[-3,9],[1,7],[4,3],[8,12],[-3,9],[-3,7],[0,7],[6,16],[-3,7],[1,13],[0,7],[1,6],[1,7],[6,3],[3,9],[9,8],[5,10],[9,9],[12,3],[14,6],[23,6],[7,18],[3,13],[13,4],[3,12],[7,11],[15,-1],[13,8],[28,-1],[34,-16],[11,-10],[13,-5],[11,-3],[19,-1],[13,1],[21,-15],[13,3],[3,-4],[8,-25],[5,-5],[4,-2],[5,1],[-2,7],[-2,10],[-4,8],[-16,17],[-13,6],[-20,14],[4,13],[13,5],[26,2],[34,2],[17,-8],[41,-5],[9,0],[6,9],[-2,0],[-48,7],[-32,9],[-68,-1],[-36,20],[-15,11],[-27,8],[-18,5],[-16,18],[-11,25],[-4,5],[-5,4],[-5,6],[-5,10],[-20,1],[-22,8],[-20,1],[-19,-18],[-22,0],[-34,-5],[-14,3],[-14,-14],[-12,-8],[-4,-14],[-11,-7],[-13,12],[-27,-1],[-12,-6],[-14,-3],[-12,1],[-12,-9],[-17,-10],[-13,-7],[-13,13],[-8,5],[-4,-16],[-12,-5],[-21,-11],[-5,-8],[4,-14],[1,-11],[-6,-11],[-9,-4],[-8,1],[-5,-6],[3,-8],[10,1],[6,-2],[-1,-8],[-1,-11],[14,-7],[7,1],[5,-7],[9,-8],[5,-6],[-1,-7],[-8,-2],[-15,1],[-7,-4],[-8,-5],[-2,-4],[0,-6],[5,-5],[-6,-7],[-5,2],[-6,-2],[-13,-13],[-12,-15],[-1,-7],[1,-7],[4,-20],[1,-9],[1,-5],[7,-8],[1,-5],[3,-6],[-1,-5],[-8,-4],[-5,-3],[1,-8],[5,-7],[15,0],[4,-1],[-1,-8],[-6,-4],[-5,-5],[-2,-10],[-1,-7],[-3,-6],[-2,-6],[-7,-9],[-7,-4],[3,-7],[-4,-11],[-6,-3],[-5,-6],[5,1],[6,-3],[-2,-11],[-8,-15],[-1,-10],[-3,-8],[-4,-8],[-6,-12],[-1,-6],[4,-7],[10,-7],[22,-11],[7,0],[4,-7],[26,-6],[17,-8],[7,-7],[5,-2],[-6,-8],[0,-10],[2,-11],[-10,-5],[-14,-3],[-6,-1],[-3,-3],[0,-5],[4,-3],[2,-7],[-7,2],[-3,6],[-8,3],[-8,-3],[-7,-5],[-7,-11],[-3,-8],[2,-3],[7,-5],[-2,-9],[3,-5],[-19,-18],[-7,0],[-10,12],[-4,20],[-3,4],[-8,0],[-6,1],[-1,6],[3,4],[-2,7],[-3,2],[-6,-1],[-4,-4],[0,8],[4,5],[6,5],[12,3],[1,7],[-3,11],[0,4],[-15,11],[-11,8],[-10,2],[-10,-4],[-19,-11],[-21,-16],[2,-13],[14,-9],[18,1],[5,-6],[3,-12],[-28,7],[-20,11],[-17,17],[-10,5],[-15,5],[-9,4],[-3,-2],[-6,-8],[-3,-18],[-7,-8],[-10,2],[-6,0],[4,-10],[6,-7],[-9,-7],[-6,-9],[-6,-6],[-7,4],[-3,-1],[-1,-7],[4,-13],[-3,-6],[-10,-5],[-3,-7],[-5,1],[-3,1],[-1,-8],[-6,-7],[-4,-9],[1,-5],[-2,-7],[-10,2],[-6,-2],[6,-11],[-9,-10],[-12,-17],[-13,3],[-4,8],[-7,22],[-3,2],[-2,-8],[1,-9],[1,-10],[7,-17],[-6,-13],[-8,2],[-4,13],[-6,8],[-5,-1],[-2,-6],[2,-10],[-4,-6],[2,-10],[-8,-12],[-22,-7],[-10,-10],[-3,-3],[-3,-1],[-6,-3],[-5,-1],[0,-11],[2,-6],[-3,-11],[-3,-4],[-1,-6],[-3,-4],[-6,5],[-6,2],[-5,1],[-5,3],[-5,-4],[-1,-7],[-2,-8],[-5,-5],[-7,-4],[-1,-2],[6,-6],[5,-3],[-2,-10],[-8,-1],[-6,-6],[-27,-31],[-10,-3],[-8,1],[-6,1],[-1,-4],[2,-7],[-3,-8],[-6,-5],[0,-13],[-13,-12],[-26,-18],[-8,-7],[-10,-12],[-7,-5],[-10,-1],[-1,-11],[-3,-12],[-8,-7],[-7,-21],[-4,-20],[-1,-15],[-9,-4],[-2,-8],[0,-9],[-7,6],[-8,2],[-4,12],[-10,5],[-7,-5],[-5,-11],[-2,-11],[-6,0],[-4,3],[-5,2],[0,8],[-6,2],[-5,-1],[-4,-9],[-7,-2],[-2,-8],[-7,-4],[-9,2],[-8,2],[5,14],[5,7],[-4,4],[-4,-3],[-5,-6],[-7,-6],[3,-13],[-7,-25],[-11,-6],[-8,-6],[-1,-7],[-1,-11],[-9,-4],[-3,-7],[-15,-7],[-9,-1],[-5,15],[7,23],[-3,6],[-1,7],[5,1],[9,-2],[7,2],[-2,7],[-2,5],[-1,7],[5,8],[7,2],[-4,7],[5,6],[0,7],[-2,6],[2,9],[-5,12],[-17,19],[7,2],[3,6],[3,4],[4,-7],[6,-5],[-2,17],[-1,12],[7,11],[1,5],[3,3],[6,-1],[6,2],[5,0],[4,2],[-2,7],[1,13],[5,13],[15,10],[-5,13],[4,8],[6,10],[-9,0],[-7,1],[-4,3],[-7,-6],[-8,2],[-11,-10],[-21,11],[-9,-4],[-11,-6],[-17,-9],[-2,-6],[-4,-6],[-6,-1],[-5,-8],[-3,-4],[-5,1],[-4,1],[-4,-4],[2,-5],[-2,-6],[-10,2],[-8,-2],[0,-6],[5,-4],[-2,-5],[-4,-1],[-5,5],[-6,4],[-4,2],[-9,-1],[3,3],[6,3],[2,8],[1,9],[-3,5],[7,3],[7,10],[10,13],[8,14],[7,8],[-5,7],[5,5],[2,10],[7,6],[-3,10],[-4,9],[2,8],[-3,9],[-3,8],[-3,7],[-7,6],[-2,6],[5,5],[5,3],[-3,10],[-10,9],[-7,-1],[-8,0],[-9,-15],[-5,5],[-8,1],[4,7],[0,7],[11,8],[-3,6],[7,2],[8,0],[10,1],[1,-5],[3,-3],[11,-5],[9,7],[3,5],[-17,3],[-9,10],[6,8],[11,6],[0,11],[-2,13],[9,2],[10,-1],[5,-1],[-1,5],[1,5],[5,5],[4,3],[6,12],[0,9],[-5,5],[-5,-2],[-5,0],[-5,1],[0,5],[6,2],[3,4],[5,3],[5,5],[3,4],[0,6],[4,1],[12,2],[13,4],[3,9],[5,6],[11,10],[-5,7],[-5,5],[0,7],[4,4],[6,8],[-5,8],[-2,3],[8,3],[6,9],[2,13],[-3,9],[-10,2],[-4,3],[19,14],[15,19],[9,11],[-4,7],[0,10],[-3,4],[-5,0],[-2,8],[8,5],[3,5],[-2,6],[0,7],[-5,2],[-1,5],[0,4],[3,2],[2,4],[-2,3],[-3,7],[-2,5],[-1,3],[-2,1],[-2,2],[-2,12],[2,4],[-5,-2],[-10,-1],[-7,-9],[-8,-3],[-4,-5],[0,-5],[-2,-3],[-10,-10],[-14,-2],[-6,-6],[-10,-6],[-10,-6],[-8,-20],[-7,-15],[-1,-7],[-4,-10],[-4,-1],[-1,-6],[-6,-9],[-6,-2],[-2,-6],[-5,-8],[-10,3],[-9,3],[-2,4],[-3,-6],[-1,-7],[-14,3],[-4,-2],[0,6],[-5,6],[-1,-11],[1,-10],[-6,1],[-9,-3],[-8,-5],[-8,-6],[-5,-7],[-10,7],[-6,6],[0,6],[-2,10],[0,7],[5,4],[3,9],[-2,12],[-1,8],[2,10],[3,12],[5,6],[-5,2],[-5,0],[-2,-5],[1,-9],[-11,-2],[0,-6],[-3,-11],[-7,8],[-7,4],[-7,7],[-6,11],[-6,1],[-2,6],[4,1],[8,4],[3,11],[-3,13],[-9,11],[-20,4],[-21,7],[-27,3],[-14,-1],[-13,0],[-5,-5],[-4,-3],[-18,1],[-7,-6],[-9,-9],[-5,-12],[2,-19],[-5,-3],[-10,0],[-13,0],[-5,7],[-17,1],[-19,-2],[-16,0],[-1,-5],[-6,-14],[-10,-6],[-6,9],[-8,6],[-9,5],[-22,3],[-18,-1],[-8,-8],[0,-8],[-17,-19],[-8,2],[-6,-9],[-11,-13],[-4,5],[-5,2],[-2,-5],[-6,-1],[-8,3],[-11,3],[-2,9],[-17,3],[-24,9],[-30,0],[-42,7],[-20,-6],[-20,-22],[-10,-18],[3,-10],[-1,-7],[-5,-3],[-11,9],[-14,-2],[-20,-11],[-23,-6],[-10,-4],[-10,-4],[-5,-8],[-3,-14],[-10,-17],[-11,-19],[-21,-15],[-14,-7],[-14,7],[-7,0],[-12,-2],[-2,-5],[6,-2],[-6,-8],[-3,-9],[0,-11],[-3,-13],[-2,-6],[-3,-5],[-2,-32],[6,-13],[1,-12],[-4,-11],[-1,-9],[-3,-11],[2,-4],[1,-7],[5,-4],[0,-16],[4,-7],[-3,-9],[-5,-3],[-3,3],[0,6],[-7,3],[-6,1],[-9,-2],[-7,-7],[-18,-12],[-23,-17],[-30,-40],[-48,-47],[-13,-17],[-4,-17],[-6,3],[-8,-15],[-5,5],[-5,-6],[8,-11],[-9,-14],[-3,-3],[-4,-10],[1,-7],[1,-8],[-2,-10],[-3,-6],[0,-6],[2,-6],[-1,-8],[3,-10],[-1,-9],[-1,-22],[-10,8],[-2,6],[-11,1],[-3,-3],[-6,-12],[-5,-5],[-15,-23],[-12,1],[-5,-5],[-9,-4],[-6,-7],[-11,-3],[-4,-7],[-4,-13],[-4,1],[-5,-2],[-5,-5],[-1,-3],[-2,-8],[-2,-5],[2,-3],[0,-5],[0,-4],[-2,0],[-5,-1],[-2,-6],[-2,-2],[-3,-2],[-5,7],[-4,1],[-6,0],[-10,-3],[-11,-8],[-7,-12],[-10,-4],[-15,-27],[-13,-16],[-30,-17],[-22,-9],[-19,-28],[-6,-8],[-8,-10],[-5,-11],[1,8],[2,5],[2,6],[-3,-2],[-5,-6],[-1,-9],[-2,-11],[-3,-4],[-2,-6],[-4,-6],[-19,-16],[-20,-39],[-23,-49],[-8,-17],[-5,-31],[0,-7],[-1,-8],[-2,5],[0,11],[5,33],[8,18],[10,20],[-4,2],[-10,-2],[-11,-5],[-11,-5],[-7,-8],[0,-16],[8,-17],[6,-14],[2,-10],[-1,-13],[5,-13],[0,-10],[2,-6],[-4,-10],[-6,-1],[-15,-17],[2,8],[2,7],[6,13],[-10,4],[-32,-7],[-9,-3],[-8,-10],[2,-11],[-1,-12],[-1,-11],[-1,-16],[2,-16],[1,-16],[7,-19],[10,-21],[20,-46],[2,-6],[-6,5],[-6,10],[-11,14],[-2,15],[-10,10],[-6,-1],[-6,-17],[-1,-5],[0,-14],[-1,-5],[1,-7],[-5,-8],[-5,-5],[1,-5],[-4,-10],[-11,2],[-5,-5],[-4,-13],[7,-13],[6,-8],[4,-10],[35,-12],[10,3],[6,9],[6,10],[3,9],[-2,6],[0,5],[1,5],[2,6],[5,4],[8,1],[2,-8],[0,-9],[-4,-10],[-3,-6],[-2,-5],[3,-6],[4,-6],[4,-6],[0,-4],[2,-7],[11,-4],[14,-3],[6,8],[-1,8],[-11,7],[-11,11],[-5,10],[0,14],[-3,16],[-2,7],[3,0],[8,-4],[11,-9],[16,-7],[10,6],[11,9],[4,3],[26,-31],[12,-12],[8,0],[9,3],[5,-4],[5,-5],[7,4],[4,4],[1,8],[4,4],[5,1],[2,0],[5,-3],[6,-6],[4,-3],[-1,-14],[3,-9],[7,-7],[7,-10],[7,-7],[19,-10],[6,-9],[6,-12],[-4,-5],[-1,-3],[7,-10],[0,-5],[-5,3],[-6,-1],[-6,-7],[1,-10],[3,-10],[7,-15],[-5,-7],[-8,-2],[2,-5],[3,-7],[8,-16],[-10,2],[-19,7],[-10,1],[-6,-6],[-1,-5],[-13,8],[-13,3],[-9,-2],[-13,0],[-12,3],[-4,-5],[-2,-6],[-2,-11],[5,-14],[-4,-1],[-11,5],[-20,4],[-4,6],[-6,3],[-6,6],[-5,6],[-5,3],[-3,8],[-20,10],[-17,-1],[-12,-12],[-9,0],[-9,-2],[3,-7],[1,-14],[1,-8],[2,-19],[-4,4],[-4,-3],[-6,-11],[-8,-5],[-8,3],[-16,6],[-8,-6],[-21,-17],[-11,-5],[-6,1],[-5,2],[-10,9],[-4,2],[-10,3],[-5,3],[-7,10],[-13,29],[-8,11],[-10,5],[-21,3],[1,7],[3,4],[5,8],[8,1],[4,7],[1,9],[-14,-11],[-6,-1],[-8,-18],[-6,-3],[-12,6],[-6,9],[-10,4],[-14,7],[-15,-2],[-10,3],[-10,3],[-2,-7],[2,-12],[-4,-21],[-2,-12],[-9,0],[-5,0],[-4,-2],[0,-11],[4,-1],[8,7],[6,-4],[2,-11],[-2,-7],[-3,-8],[-19,-3],[-14,3],[-15,-4],[-21,0],[-15,-9],[-8,-5],[-3,-8],[-2,-10],[-5,-6],[-8,-8],[-1,-14],[-1,-10],[-5,-7],[-3,-5],[1,-6],[0,-7],[2,-4],[-5,-8],[-4,7],[-9,5],[-10,2],[-10,-3],[-11,-2],[-3,-5],[-5,4],[-3,3],[-10,11],[-13,2],[-17,4],[-10,19],[-14,12],[-11,4],[-7,8],[0,14],[-4,0],[-7,6],[-1,2],[-6,-3],[0,-4],[3,-4],[1,-5],[-4,-8],[-7,-2],[-18,-11],[-24,-8],[-3,-15],[1,-19],[-13,-19],[-25,-12],[-29,0],[-29,-2],[-14,-8],[-12,-5],[-23,0],[-24,9],[-13,-2],[-14,2],[-14,-14],[-13,-5],[-5,4],[4,4],[2,6],[-3,8],[-10,17],[-4,6],[-4,8],[-7,11],[-5,13],[-3,11],[2,10],[-14,11],[-4,5],[-5,10],[-2,8],[-4,10],[-8,11],[-4,7],[4,7],[5,-2],[9,-9],[8,-1],[10,-1],[9,7],[14,7],[12,2],[5,8],[11,12],[10,10],[15,-4],[22,-4],[13,3],[11,0],[14,-11],[16,-6],[12,10],[8,2],[11,-3],[13,-6],[8,5],[11,5],[16,-4],[17,5],[19,19],[13,8],[16,2],[11,1],[-3,12],[-8,4],[-9,7],[-12,15],[-17,13],[-3,2],[-4,-3],[-4,-5],[-10,-3],[-12,-5],[-14,-3],[-4,1],[-6,11],[-6,7],[-5,4],[-21,-3],[-13,2],[-5,-1],[-8,4],[-1,9],[1,4],[2,4],[8,8],[-7,11],[-5,9],[-6,4],[0,6],[0,8],[-2,11],[-9,16],[-7,14],[-16,12],[-13,2],[-5,2],[-2,2],[-3,5],[-2,6],[0,6],[-5,6],[-9,5],[-3,3],[0,3],[8,0],[-2,4],[-8,12],[-7,4],[-7,-2],[-5,-8],[-2,-11],[-7,-7],[-13,2],[-14,8],[-10,2],[-16,1],[-19,0],[-16,-6],[-19,-7],[-8,2],[-4,-8],[3,-9],[9,-7],[-6,-15],[-1,-2],[2,0],[3,-1],[2,-3],[2,-4],[-1,-10],[-4,-8],[-14,1],[-9,0],[-18,-10],[-11,5],[4,6],[6,9],[-3,11],[-7,-1],[-9,5],[-9,2],[-15,-3],[-23,-6],[-9,6],[21,11],[19,6],[17,2],[17,9],[1,15],[-16,-3],[-16,-5],[-16,-4],[-9,3],[-15,6],[1,9],[-8,0],[-6,5],[-1,6],[-2,13],[-13,6],[-20,6],[-9,8],[-9,2],[-30,2],[-20,11],[-25,17],[-68,24],[-45,10],[-44,-13],[-13,12],[-3,-1],[-3,2],[1,9],[-7,-3],[-6,-5],[14,-21],[-9,-5],[-43,-30],[-16,-14],[-14,7],[-7,-1],[-5,-5],[-2,-11],[3,-6],[13,-3],[4,-10],[-3,-14],[-2,-2],[-2,-3],[11,-10],[12,-3],[11,-8],[4,-22],[-1,-11],[-4,-1],[-10,10],[-7,5],[-6,0],[-10,-5],[-7,-4],[-10,-10],[-11,-4],[-3,-1],[-1,4],[-1,5],[-2,2],[-10,-4],[-2,0],[-5,2],[-6,5],[-6,7],[-2,8],[1,11],[3,7],[9,9],[-12,4],[-8,-11],[-9,-15],[-3,-9],[-8,-13],[-5,-13],[-1,-10],[-1,-7],[1,-20],[4,-12],[14,-5],[7,3],[7,12],[8,12],[2,-3],[0,-7],[-4,-20],[6,1],[4,8],[2,9],[4,7],[4,0],[6,-3],[10,-9],[1,-12],[-16,-23],[-1,-12],[9,-14],[-3,-14],[-5,-10],[-14,12],[-12,14],[-12,-3],[-3,-21],[-14,1],[-3,13],[-11,4],[-27,-15],[-33,9],[-9,4],[1,12],[-8,13],[-1,8],[3,9],[-5,12],[-2,15],[-7,2],[-9,8],[-33,7],[-58,-13],[-27,3],[-19,-9],[-15,-19],[12,-16],[4,-12],[-6,-16],[-14,-3],[-10,-1],[-10,4],[-8,9],[2,5],[-7,5],[-9,3],[-9,-2],[-8,-6],[-3,-11],[0,-10],[-2,-12],[-8,4],[-7,1],[-15,9],[-6,6],[-8,14],[-4,5],[-3,2],[-8,2],[-4,2],[-9,8],[-4,3],[-6,1],[-6,-1],[-8,-11],[-9,4],[-10,4],[-21,21],[-7,0],[-14,5],[-26,-4],[-7,-2],[-39,12],[-5,4],[-2,4],[0,7],[-2,3],[1,7],[-15,10],[-5,3],[-16,4],[-10,6],[-6,1],[-18,-2],[-23,-18],[-11,-17],[0,-22],[2,-27],[0,-12],[-4,-12],[4,-4],[2,-7],[0,-7],[-4,-6],[7,-4],[6,-11],[-7,-4],[-5,-15],[-11,8],[-11,2],[-11,5],[-13,-8],[-6,-13],[-10,3],[-13,-21],[-21,2],[0,12],[4,5],[-8,10],[-8,15],[-5,4],[-16,4],[-4,3],[-5,5],[0,11],[3,9],[2,11],[6,9],[6,10],[7,10],[10,8],[2,14],[6,11],[-5,11],[-19,-9],[-12,4],[-8,5],[-1,-11],[-1,-18],[-11,4],[-10,13],[-12,9],[-5,7],[0,8],[-6,-9],[-8,0],[-9,1],[-14,-6],[-25,-3],[-27,-9],[-8,2],[-3,3],[-3,4],[-21,0],[-26,-11],[-37,-12],[-66,7],[4,2],[3,0],[3,1],[2,6],[-54,0],[5,-7],[6,-3],[12,-3],[-67,0],[-24,4],[10,1],[6,0],[7,-1],[-2,6],[-6,4],[-11,3],[-7,-1],[-16,-8],[-5,0],[-42,7],[-53,3],[-10,11],[-17,-12],[-72,-38],[-25,-12],[-23,3],[-14,10],[-13,12],[-23,1],[-7,13],[-11,-2],[-7,-12],[2,0],[4,-4],[-75,-31],[-86,-45],[-89,-60],[-32,-40],[-17,-14],[-8,-7],[-11,-14],[-19,-32],[-46,-106],[-30,-48],[-25,-39],[-53,-44],[-40,-39],[-18,-13],[-13,5],[-9,-3],[-33,-24],[-9,-12],[-5,-4],[-5,-2],[-4,-3],[-45,-66],[-12,-22],[-9,-26],[-12,-47],[-29,-106],[-2,-14],[-3,-24],[-1,-14],[-11,-8],[-8,-6],[-8,-12],[-15,-8],[-9,-21],[-3,-2],[-6,9],[-6,1],[-10,-3],[-4,-7],[-12,0],[-14,-5],[-12,-8],[-5,-3],[-5,-5],[-9,-10],[-6,-5],[-13,-20],[-16,-35],[-18,-52],[-6,-14],[-22,5],[-11,-6],[-14,-8],[-16,-22],[-6,-29],[-6,-13],[-6,-12],[-7,-3],[-8,-8],[-8,-14],[-3,5],[-7,1],[-11,-10],[-7,-8],[-4,1],[-9,-1],[-20,-3],[-10,-9],[-13,-13],[-13,-17],[-8,-23],[-3,-13],[-1,-3],[-5,5],[-5,3],[-8,-5],[-7,-6],[-1,-10],[-3,-6],[3,-7],[-2,-23],[-6,-16],[-5,-7],[-7,-3],[-10,5],[-5,6],[-4,-5],[2,-6],[-3,-4],[-7,-1],[-12,-15],[-6,2],[-10,-3],[-10,-11],[-5,-9],[-6,-13],[-2,-24],[-5,-33],[3,-9],[3,-16],[-5,-4],[-6,10],[1,15],[1,24],[-9,-6],[-9,0],[-8,-6],[3,-14],[-6,-14],[-2,-6],[-1,-5],[-4,-4],[-2,-4],[-2,-6],[0,-6],[-3,-5],[-5,-7],[-7,-2],[-6,-3],[-11,-11],[-1,-11],[-2,-5],[-5,-7],[-1,-7],[3,-9],[-2,-7],[-2,5],[-6,1],[-4,-9],[-9,-1],[-10,-3],[-6,-10],[-2,-10],[-1,-8],[1,-9],[-2,-8],[3,-12],[6,-8],[4,-9],[4,-4],[9,-2],[7,1],[4,0],[3,-2],[-2,-7],[-6,-7],[-1,-11],[-9,3],[-8,13],[-4,-6],[-12,0],[-10,-2],[-3,-7],[0,-7],[-1,-6],[-1,-10],[-8,-3],[-13,-6],[-11,-3],[-6,-4],[-4,-10],[-3,-11],[-5,-19],[-5,-14],[-6,-26],[-11,-2],[-5,-6],[-4,-10],[-2,-11],[-5,-5],[-3,-5],[-1,-7],[1,-7],[-7,-6],[-23,-4],[-12,-1],[-20,-32],[-4,-3],[-4,-2],[-4,-3],[-4,-1],[-5,-10],[-3,-16],[0,-10],[0,-8],[-2,-3],[-2,-2],[-1,-6],[-2,-6],[-6,4],[-4,5],[-6,5],[-10,-4],[-12,-17],[-4,-10],[-10,-10],[-6,-3],[-7,-4],[-11,-14],[-19,-26],[2,-12],[-1,-4],[-6,-3],[-7,4],[-7,-1],[-6,-3],[-13,-10],[-6,-15],[-11,-9],[-4,-4],[-3,-6],[-7,-19],[-7,-12],[-7,-2],[-10,1],[-12,-8],[-13,-18],[-6,1],[-6,4],[-4,0],[-3,-5],[-1,-7],[-1,-6],[-5,-8],[-12,2],[-7,-2],[-9,-9],[-3,-5],[-11,-14],[-8,-14],[-8,-13],[-2,-16],[-2,-21],[-10,-6],[-9,-24],[-5,-12],[-8,-6],[-4,0],[0,-8],[-4,-7],[-5,-2],[-5,-4],[-2,-5],[-9,-8],[-9,-10],[-10,-8],[-10,-7],[-8,-8],[-6,-10],[-4,-5],[-1,-5],[-13,-14],[-7,0],[-9,-1],[-15,-19],[-14,-14],[-10,3],[-21,-11],[-16,-9],[-19,-18],[-3,-16],[-18,-15],[-15,-14],[-20,-31],[-13,-20],[-4,-15],[-6,-6],[-3,-22],[26,-59],[-3,-1],[-1,-2],[-4,-5],[2,-4],[7,5],[6,3],[14,0],[87,-29],[4,-3],[3,-7],[2,-21],[3,-9],[4,-8],[4,-5],[7,-4],[36,9],[27,-3],[42,19],[21,5],[12,0],[4,-3],[4,-5],[4,0],[8,3],[59,-10],[9,4],[9,12],[11,27],[7,10],[4,-7],[-1,-9],[-2,-6],[-2,-6],[2,-9],[4,-5],[6,-1],[5,1],[4,5],[4,8],[3,5],[4,4],[5,1],[5,-1],[4,-2],[1,-5],[-4,-8],[4,-7],[4,-6],[5,-5],[6,-3],[-3,-7],[-9,-16],[0,-11],[-7,-5],[-2,-5],[1,-5],[9,-12],[-6,-1],[-1,-7],[2,-9],[4,-9],[0,-7],[-3,-4],[-6,-1],[-9,8],[-4,0],[-4,-5],[-2,-9],[1,-7],[3,-6],[2,-6],[-2,-9],[5,-10],[9,-10],[5,-10],[-6,-11],[-3,0],[-5,2],[-4,-2],[-1,-8],[3,-6],[10,-10],[4,-4],[-4,-6],[-6,-7],[-4,-7],[0,-7],[4,-7],[4,-5],[4,-6],[2,-8],[-2,-15],[-6,-17],[-5,-15],[4,-10],[-17,-18],[-9,-12],[0,-12],[1,-7],[-2,-8],[-6,-12],[-1,-7],[0,-5],[5,-49],[0,-14],[2,-7],[5,-5],[10,-6],[7,-9],[3,-1],[5,2],[4,3],[4,4],[3,6],[1,9],[2,9],[4,3],[5,1],[7,7],[16,6],[2,-1],[7,-3],[6,1],[2,-1],[8,-7],[8,-11],[9,-7],[9,3],[7,10],[5,12],[14,54],[3,12],[5,9],[4,27],[1,4],[2,2],[0,1],[-1,5],[-1,3],[-3,1],[-5,0],[-18,-7],[-9,3],[-3,18],[-2,6],[-21,37],[8,5],[24,31],[8,6],[8,2],[7,4],[7,13],[-2,4],[6,9],[7,5],[7,2],[7,4],[3,4],[1,4],[1,3],[7,2],[6,3],[3,0],[7,-1],[20,-11],[26,0],[6,5],[6,9],[7,6],[7,-6],[1,-8],[-4,-7],[-11,-11],[-27,-42],[-2,-11],[-8,-8],[-7,-10],[-6,-12],[-6,-14],[0,-6],[1,-6],[-1,-5],[-5,1],[-4,2],[-1,4],[1,5],[0,8],[1,2],[1,0],[1,2],[-1,5],[-1,3],[-2,2],[-3,3],[-4,1],[-5,-1],[-19,-8],[-4,-4],[-4,-5],[-1,-5],[0,-6],[0,-7],[-3,-6],[3,-6],[2,-6],[3,-4],[6,-4],[16,1],[5,-1],[5,-4],[30,-38],[7,-4],[6,-6],[3,-1],[2,1],[5,6],[2,1],[6,-1],[11,-6],[11,-3],[5,-3],[5,-1],[11,8],[14,6],[-6,-10],[-11,-22],[-7,-8],[-27,-13],[-8,-8],[-1,-3],[-1,-4],[0,-3],[-1,-4],[-1,-2],[-5,-1],[-2,-1],[-4,-6],[0,-6],[0,-7],[-1,-5],[-6,-10],[-1,-3],[-1,-10],[0,-6],[0,-5],[0,-5],[-2,-8],[-4,-3],[-6,-2],[-5,-4],[-3,-9],[-1,-8],[-3,-3],[-27,2],[-9,-2],[-9,-7],[-3,-7],[-4,-8],[-3,-7],[-4,-3],[-4,0],[-5,-2],[-4,-4],[-2,-8],[5,-12],[11,-11],[19,-11],[10,-2],[18,8],[67,6],[67,21],[36,38],[28,13],[5,5],[14,18],[15,12],[3,4],[4,11],[12,67],[2,12],[5,12],[8,11],[20,13],[26,23],[3,6],[2,0],[2,-5],[0,-8],[-6,-21],[1,-12],[6,-25],[-2,-30],[-12,-25],[-44,-61],[-7,-14],[-3,-15],[1,-10],[1,-4],[-2,-2],[-19,-14],[-4,-4],[-4,-7],[-1,-4],[1,-15],[-2,-6],[-6,-14],[-1,-5],[3,1],[12,17],[4,2],[34,-9],[9,2],[10,8],[8,10],[7,12],[6,14],[30,85],[11,52],[0,11],[-2,10],[-2,12],[4,14],[10,21],[8,25],[3,23],[0,25],[-1,28],[-26,-19],[-3,3],[3,12],[11,24],[3,13],[1,4],[1,5],[0,3],[0,4],[-2,5],[0,3],[1,5],[4,13],[1,7],[-4,14],[-8,9],[-17,9],[16,11],[5,1],[6,-1],[54,-37],[43,-17],[20,-11],[39,-9],[20,3],[75,42],[17,18],[7,4],[10,0],[9,-4],[1,-6],[-1,-11],[-1,-17],[2,-8],[4,-6],[16,-16],[3,-1],[2,1],[5,6],[2,1],[-2,-7],[3,-8],[22,-31],[5,-3],[10,-2],[52,-34],[1,-7],[-2,-6],[-2,-6],[-1,-7],[2,-7],[6,-7],[7,-6],[5,-3],[6,0],[3,-2],[0,-5],[-2,-9],[-6,-10],[-8,-11],[-6,-13],[1,-13],[28,-46],[5,-4],[12,-7],[26,-22],[3,-4],[2,-4],[1,-5],[1,-2],[-1,-2],[1,-9],[0,-5],[1,-6],[3,-7],[8,-12],[20,-12],[17,-23],[87,-53],[16,-5],[4,-5],[-14,2],[-15,10],[-5,0],[-7,-3],[-5,-8],[2,-13],[-3,-6],[1,-5],[3,-2],[4,3],[4,7],[3,2],[3,-2],[4,-5],[3,-7],[2,-6],[3,-5],[15,-4],[9,-6],[-2,-11],[6,-8],[9,-6],[6,-6],[5,-9],[5,-6],[7,-3],[35,-1],[8,-3],[1,-6],[-2,-9],[-2,-14],[-6,-9],[-4,-6],[-1,-5],[3,-5],[5,2],[4,4],[3,3],[4,-6],[-2,-7],[-2,-6],[1,-7],[3,-5],[1,-5],[1,-5],[0,-6],[-2,-2],[-11,-8],[-3,-5],[-7,-19],[4,-3],[1,-4],[-1,-3],[-4,-2],[-5,1],[-9,9],[-5,2],[-8,-2],[-6,-7],[-6,-8],[-6,-7],[0,-5],[4,-3],[6,-1],[10,0],[-2,-7],[-9,-13],[-9,-8],[-5,-3],[-5,0],[-6,3],[-37,33],[-4,6],[-5,5],[-7,4],[-12,5],[-3,3],[-4,17],[-3,4],[-23,6],[-13,-1],[-7,-9],[19,-13],[15,-15],[9,-11],[4,-4],[16,-4],[4,-5],[0,-13],[-2,-4],[2,-6],[2,-13],[3,-11],[1,-2],[2,-2],[2,-4],[3,-3],[4,0],[7,1],[3,-2],[2,-3],[2,-4],[3,-9],[2,-4],[2,-4],[4,-3],[14,-4],[3,-1],[5,-8],[3,-3],[3,-1],[17,2],[0,-4],[-13,-29],[-3,-12],[2,-5],[5,-3],[6,-8],[6,-9],[3,-8],[2,-12],[1,-10],[2,-8],[5,-7],[-3,-6],[-2,-4],[-3,-14],[-1,-9],[0,-7],[-1,-7],[-3,-8],[-10,-23],[-6,-11],[-22,-23],[-5,-12],[3,-16],[11,-34],[6,-9],[13,-8],[7,-7],[2,-11],[3,-7],[20,-15],[3,-10],[2,-3],[6,-9],[3,-4],[4,-2],[14,-5],[4,0],[11,4],[3,0],[1,1],[2,0],[1,-2],[-2,-8],[0,-3],[1,-3],[1,-1],[0,-3],[1,-6],[1,-7],[1,-2],[-1,-7],[-4,2],[-6,11],[-4,1],[-2,-1],[-6,-8],[-19,-11],[-4,-7],[-3,-6],[-7,-7],[-3,-8],[6,-6],[-11,-17],[-4,-10],[-2,-9],[3,-11],[6,-6],[7,-4],[6,-6],[10,-13],[3,-8],[-1,-9],[-5,-5],[-15,-5],[-3,-4],[-3,-7],[-14,-6],[-6,-14],[-17,-20],[-2,-10],[-4,-22],[-2,-11],[-10,-17],[-3,-10],[2,-7],[-6,-8],[-34,-12],[-15,-18],[-5,-3],[-2,-5],[0,-11],[1,-20],[-3,-41],[-1,-1],[-1,-3],[0,-3],[-1,-1],[-10,0],[-2,2],[-3,0],[-3,-2],[-6,-8],[-1,-7],[2,-9],[1,-10],[2,-4],[7,1],[10,9],[5,-2],[-1,-8],[-2,-9],[-2,-8],[-1,-9],[-3,-8],[-5,-5],[-5,-4],[-22,-1],[-12,-4],[-5,-13],[2,-18],[2,-9],[2,-5],[1,1],[-2,-9],[-11,-6],[-2,-7],[1,-3],[3,-6],[2,-5],[0,-6],[-4,-29],[0,-6],[8,-12],[3,-11],[1,-11],[-1,-25],[-1,-5],[-8,-5],[-2,-4],[0,-6],[3,-12],[1,-6],[-2,-11],[-5,-6],[-6,-3],[-7,-1],[-2,-2],[-16,-30],[-4,-9],[0,-4],[5,-12],[0,-5],[-1,-6],[0,-7],[-3,-9],[-10,-17],[-4,-8],[-2,-6],[0,-3],[1,-3],[-2,-6],[-2,-4],[0,-7],[0,-5],[4,-3],[2,-5],[8,-35],[-5,0],[-4,-6],[-4,-19],[-7,-18],[0,-9],[4,-11],[14,-30],[2,-9],[0,-6],[-1,-5],[0,-4],[3,-12],[1,-14],[6,-19],[-2,-8],[-4,-8],[-3,-13],[1,-9],[3,-13],[2,-13],[-1,-12],[-3,-12],[-1,-13],[1,-13],[4,-12],[4,-10],[10,-19],[4,-4],[3,2],[5,8],[2,2],[10,2],[4,2],[1,-13],[-8,-13],[-20,-18],[-12,-16],[-5,-5],[-10,-5],[-3,-5],[-3,-10],[3,-4],[-8,-16],[-3,-10],[1,-10],[-6,-5],[-3,-5],[0,-7],[12,-34],[4,-6],[6,-4],[7,-2],[5,-4],[2,-13],[-2,-7],[-8,-31],[1,-3],[2,-6],[1,-3],[3,-22],[2,-10],[3,-11],[3,-14],[-3,-12],[-8,-17],[-1,-6],[0,-8],[0,-7],[-2,-3],[-3,-2],[-2,-6],[-9,-20],[-2,-11],[-3,-33],[-3,-35],[1,-6],[-23,0],[-5,-5],[1,-5],[3,-3],[4,0],[6,5],[1,-4],[0,-6],[-2,-3],[-1,-2],[-8,-10],[-1,-6],[-1,-6],[1,-7],[1,-5],[2,2],[2,3],[2,3],[0,-2],[1,-1],[1,-1],[-4,-9],[-1,-10],[1,-9],[4,-9],[-4,-6],[-1,-10],[-1,-12],[-3,-3],[-4,-2],[-10,0],[0,-3],[11,-9],[2,-3],[0,-9],[-1,-4],[-13,-7],[-14,-4],[-6,-5],[4,-3],[5,2],[3,0],[3,-7],[-2,-3],[-3,-5],[-2,-6],[2,-2],[4,1],[2,2],[2,-1],[-1,-6],[3,-1],[3,1],[-2,9],[3,9],[4,7],[7,5],[2,2],[2,1],[2,-3],[0,-2],[1,-6],[0,-2],[3,-4],[2,-1],[3,1],[-6,-20],[-6,-17],[-1,-12],[-8,-11],[-16,-17],[-3,-9],[-2,-6],[0,-6],[-1,-8],[-1,-7],[-5,-13],[-3,-8],[-3,-16],[-2,-18],[-2,-35],[2,-27],[0,-14],[-6,-8],[1,-6],[4,-11],[1,-5],[-1,-14],[-1,-12],[-3,-15],[-3,-7],[-12,-10],[-9,-15],[-3,-2],[-2,-3],[-3,-14],[-1,-5],[-1,-6],[-3,-12],[-2,-5],[-3,-1],[-9,-3],[-12,-9],[-48,-68],[-3,-2],[-9,-14],[-2,-5],[-4,-15],[-8,-20],[-9,-16],[-25,-36],[-12,-22],[-3,-6],[-3,-4],[-20,-18],[-9,-12],[-36,-69],[-4,-12],[-3,-17],[-5,-14],[-2,-6],[0,-7],[-1,-11],[-1,-6],[-4,-9],[-6,-8],[-5,-8],[-2,-14],[-1,-3],[-6,-15],[-6,-20],[-4,-13],[-5,-9],[-3,-11],[-1,-14],[0,-12],[-1,-10],[-2,-10],[-3,-7],[-2,-3],[-6,-7],[-2,-5],[-2,-7],[0,-6],[-1,-5],[-2,-6],[-1,-3],[-3,-3],[-12,1],[-3,-1],[-2,-2],[-2,-3],[-64,-118],[-12,-13],[-6,-9],[-9,-23],[-8,-25],[-6,-27],[-4,-27],[1,-12],[0,-6],[-3,-2],[-2,-2],[-21,-46],[-3,-13],[-9,-42],[-2,-7],[-3,-7],[0,-16],[2,-25],[-3,-27],[-9,-16],[-22,-22],[-8,-18],[-25,-98],[-2,-26],[-2,-10],[-18,-43],[-7,-12],[-6,-5],[-2,-1],[-4,-3],[-4,-4],[-2,-4],[-1,-4],[0,-11],[-1,-5],[-4,-7],[-11,-16],[-4,-15],[-24,-37],[-4,-10],[-4,-20],[-14,-25],[-5,-23],[-4,-12],[-9,-9],[-32,-53],[-8,-7],[-27,-32],[-17,-32],[-19,-50],[-3,-5],[-6,-3],[-4,-7],[-21,-51],[-5,-4],[-7,-2],[-5,-5],[-44,-60],[-28,-30],[-4,-6],[-3,-11],[-3,-28],[-2,-12],[-6,-12],[-12,-12],[-4,-6],[-1,-3],[-2,-6],[0,-2],[-2,0],[-4,1],[-2,-1],[-2,-3],[-22,-48],[-1,-1],[-2,0],[-2,-1],[-1,-3],[0,-3],[0,-4],[1,-2],[1,0],[-1,-6],[0,-10],[-1,-4],[-11,-12],[-1,-3],[-4,-14],[-2,-3],[-3,-1],[-3,-1],[-3,-3],[-2,-3],[-1,-5],[-1,-20],[-5,-7],[-5,2],[-5,6],[-7,3],[-3,-2],[-1,-5],[-1,-7],[-1,-6],[-2,-3],[-2,-2],[-3,-2],[-3,-1],[2,-7],[2,-5],[3,-3],[1,-3],[-2,-4],[-3,-3],[-3,-3],[-9,-3],[-4,-5],[-7,-19],[-2,-12],[2,-27],[-2,-9],[-2,-3],[-3,-1],[-2,-2],[-2,-13],[-2,-10],[-1,-4],[-5,-11],[-12,-12],[-21,-15],[-4,0],[-7,4],[-3,-1],[-1,-2],[-1,-7],[-1,-3],[-10,-9],[-12,-6],[-5,-5],[-2,-5],[-3,-7],[-2,-6],[-7,-5],[-1,-7],[2,-13],[-2,-11],[-4,-12],[-9,-19],[-6,-5],[-7,-3],[-6,-5],[-2,-9],[-2,-13],[-5,-7],[-5,-5],[-4,-6],[-1,-7],[0,-7],[0,-6],[2,-6],[0,-5],[-1,-6],[-5,-10],[-2,-12],[0,-10],[-2,-8],[-6,-8],[-11,-6],[-6,-7],[-2,-9],[1,-12],[-1,-3],[-1,-2],[-1,-1],[-2,-1],[-2,-20],[-1,6],[-4,7],[-4,5],[-4,-2],[-1,-7],[2,-7],[1,-9],[-2,-9],[4,-1],[2,1],[0,-5],[-1,-5],[2,0],[8,5],[0,-4],[-8,-28],[-4,-4],[-1,-5],[-12,-23],[0,-4],[-1,-5],[-2,-3],[-8,-2],[-2,-4],[-2,-6],[-2,-5],[-2,-4],[-1,-2],[-5,-2],[-2,0],[-2,0],[-2,-2],[-2,-4],[-7,-8],[-2,-2],[-5,3],[-1,6],[1,7],[0,4],[-3,4],[-3,3],[-4,-1],[-1,-8],[-2,-3],[-8,-2],[0,-5],[4,-4],[3,0],[4,-2],[2,-6],[-1,0],[0,-8],[-1,-14],[-1,-6],[-2,-3],[-3,-1],[-1,-3],[-6,-18],[-1,-6],[-1,-10],[-2,-4],[-2,-5],[-3,-3],[-2,-4],[0,-6],[0,-2],[1,-1],[0,-2],[1,-4],[-1,-3],[-1,-2],[-2,-1],[0,-2],[-4,0],[-16,-7],[-23,-17],[-3,-4],[-2,-10],[-5,-5],[-12,-7],[-6,-6],[-11,-15],[-18,-38],[-5,-6],[-6,4],[-7,-5],[-7,-9],[-4,-9],[-2,-4],[-7,-3],[-3,-3],[-2,-3],[-5,-9],[-3,-4],[-7,3],[-8,-9],[-15,-22],[-13,-15],[-6,-3],[-9,-8],[-5,-8],[-3,-2],[-3,-1],[-4,4],[-2,-2],[-3,-6],[-14,-11],[-4,-1],[-4,-1],[-5,-3],[-4,-4],[-3,-4],[-1,-4],[-1,-7],[-1,-4],[-2,-2],[-5,-2],[-2,-2],[-3,-8],[-2,-9],[-4,-8],[-10,-6],[-6,-7],[-34,-54],[-4,-1],[-4,3],[-7,8],[-2,1],[-4,0],[-3,-2],[-6,-8],[-7,-4],[-18,-19],[-1,-12],[-2,-5],[-3,4],[-8,15],[-2,3],[-8,0],[-2,0],[-6,-4],[-2,0],[-4,4],[-1,-6],[-1,-4],[-2,-3],[-1,-3],[-6,-4],[-2,0],[-6,4],[-3,-3],[-1,-3],[-1,-3],[-2,-4],[-3,-3],[-5,-4],[-7,-8],[-7,-4],[-12,-5],[-16,1],[-5,-1],[-17,-12],[-5,-4],[-8,-18],[-4,-7],[-6,-4],[-26,0],[-7,2],[-4,5],[-3,6],[-4,8],[3,3],[5,7],[3,2],[4,-1],[4,-3],[3,1],[0,7],[-3,7],[-6,10],[-13,15],[2,7],[1,2],[-5,4],[-8,0],[-14,-4],[-3,-2],[-3,-5],[-1,-4],[3,-2],[1,-2],[-4,-18],[-3,-5],[-3,-4],[-3,-1],[-6,2],[-5,4],[-3,5],[-3,15],[2,10],[-2,8],[-5,4],[-5,3],[3,11],[2,14],[0,12],[-3,7],[-7,0],[-10,-17],[-6,-3],[1,-3],[2,-3],[1,-2],[-3,-3],[-13,3],[-5,0],[-3,-2],[-3,-3],[-3,-5],[-3,-2],[-3,4],[-6,8],[-7,4],[-2,3],[-2,9],[0,8],[0,8],[-1,6],[-4,3],[-16,4],[-4,3],[-3,1],[-2,-2],[0,-4],[0,-4],[-1,-2],[-7,-4],[-4,-3],[-2,-6],[1,-2],[1,-6],[2,-4],[-2,-3],[0,-3],[0,-3],[2,-3],[-3,-3],[-7,-2],[-2,-4],[-2,0],[-6,22],[0,5],[2,7],[0,9],[-1,19],[2,28],[0,16],[-2,12],[3,5],[1,7],[-2,7],[-2,6],[4,0],[4,5],[1,7],[-2,8],[2,2],[3,4],[1,2],[-2,3],[-2,1],[1,5],[0,13],[0,3],[3,-1],[3,-2],[2,0],[3,3],[4,9],[-2,8],[-4,7],[-12,9],[-3,4],[0,5],[3,3],[6,6],[2,3],[1,7],[1,2],[1,2],[-3,7],[-9,11],[-2,2],[-5,-4],[-2,-20],[-6,-5],[-2,-2],[-3,-13],[-2,-5],[-2,-4],[-25,-23],[-6,-1],[-6,-5],[-5,-11],[-9,-21],[-4,-6],[-11,-12],[-5,-8],[-5,-6],[-7,-2],[-6,3],[-6,7],[3,5],[3,4],[3,4],[1,7],[-14,-18],[-3,-2],[-4,2],[1,6],[8,22],[6,27],[3,9],[4,6],[9,13],[6,3],[5,2],[1,4],[0,4],[2,5],[10,16],[2,6],[0,10],[-2,6],[-4,0],[-4,-5],[-3,-10],[-1,-9],[-2,-6],[-7,-2],[3,13],[-6,8],[-17,8],[-3,-1],[-8,-6],[-3,-1],[-4,2],[-2,5],[1,5],[3,4],[-3,3],[-3,-1],[-3,-3],[0,-5],[-2,-4],[-7,-8],[-3,-6],[-2,-17],[0,-12],[-2,-11],[-7,-9],[0,-4],[5,-1],[5,-3],[1,-6],[-4,-6],[-5,-1],[-4,6],[-3,7],[-3,4],[-3,-2],[-1,-3],[-1,-4],[-1,-3],[-6,-8],[-1,0],[1,-8],[4,1],[5,5],[3,6],[-3,-16],[-5,-14],[-22,-45],[-7,-6],[1,-9],[1,-10],[-1,-6],[-5,-2],[-4,5],[-4,4],[-5,-5],[-2,-9],[0,-9],[2,-8],[-1,-8],[-1,1],[-4,-1],[-7,-5],[-4,0],[-3,0],[-6,10],[-4,-4],[-1,-8],[-1,-10],[6,-2],[1,-6],[-3,-16],[17,6],[3,0],[0,-6],[-4,-6],[-6,-5],[-7,-9],[-9,-5],[-3,-7],[-2,-8],[0,-7],[1,-7],[-3,-5],[-15,11],[-7,-9],[-5,-15],[-2,-12],[-3,-15],[3,-7],[1,-2],[3,-2],[0,-2],[0,-2],[-1,-3],[-1,-3],[0,-2],[-2,0],[-4,0],[-3,-4],[-2,-10],[-2,-4],[0,-9],[-1,-2],[-1,-3],[2,-3],[4,-2],[2,-5],[-1,-3],[2,-2],[0,-1],[-4,0],[-2,-2],[3,-7],[0,-3],[-1,-7],[-2,-2],[-2,4],[-3,1],[-2,0],[-2,3],[-2,5],[-2,2],[0,5],[2,0],[2,6],[0,6],[-6,-2],[-4,7],[-5,2],[0,18],[-2,12],[-4,0],[-3,-7],[-2,-9],[-4,-1],[-10,4],[-11,-3],[-12,-8],[-6,-12],[-5,-3],[-7,-1],[-4,2],[-12,13],[-4,5],[6,5],[7,-1],[7,-1],[6,-13],[6,1],[4,7],[1,13],[-5,3],[-9,-2],[-5,3],[-9,1],[-13,-6],[-4,2],[2,5],[10,7],[2,10],[-3,5],[-7,-2],[-6,-4],[-3,-5],[-7,0],[-3,6],[-4,5],[-7,-8],[-10,-13],[1,-12],[6,0],[14,-17],[1,-5],[-2,-16],[7,10],[2,2],[3,-2],[1,-3],[1,-4],[1,-3],[16,-13],[3,-6],[1,-5],[4,-2],[1,-5],[-1,-6],[-2,0],[-1,2],[0,2],[-2,-2],[-2,0],[-1,-1],[-1,-5],[0,-2],[2,-8],[0,-4],[-2,-9],[-4,-4],[-5,-2],[-5,0],[-2,-5],[-5,-31],[-3,-12],[-2,-16],[-3,-9],[-8,-25],[-1,-1]],[[63674,77906],[10,-21],[9,-11],[2,-7],[-2,-6],[-4,-1],[-5,4],[-4,6],[-5,3],[-10,3],[-10,8],[-5,11],[7,11],[-5,4],[-3,-3],[-5,-14],[-9,-7],[-3,-5],[1,-8],[-3,-3],[-1,-2],[-2,-7],[8,-1],[5,-6],[2,-12],[2,-36],[-2,-5],[-6,7],[-2,5],[-4,12],[-3,3],[-5,0],[-2,-5],[-2,-5],[-2,-2],[-7,-3],[-11,-13],[-6,-4],[0,-4],[5,-14],[1,-3],[-1,-5],[-3,-6],[-2,-2],[-2,3],[-1,13],[-2,12],[-5,9],[-5,5],[1,-8],[1,-12],[0,-9],[-4,6],[-5,14],[-4,5],[-2,-4],[5,-10],[5,-15],[2,-13],[-5,-3],[-4,8],[-3,12],[-4,10],[-7,2],[7,-14],[3,-10],[-1,-12],[-2,-6],[-3,0],[-2,5],[-1,7],[-4,12],[-10,13],[-9,6],[-3,-8],[-2,0],[-3,4],[-2,-1],[-3,-8],[0,-3],[0,-4],[-1,-3],[-2,-2],[-8,0],[4,-4],[9,-4],[4,-4],[9,-21],[1,-4],[1,-3],[-2,-6],[-3,-7],[-3,-3],[-4,-2],[-4,-3],[-6,-8],[0,-4],[1,-2],[1,-2],[6,7],[6,2],[11,-1],[4,-3],[0,-7],[0,-7],[-3,-11],[0,-5],[2,-5],[2,-2],[0,-9],[7,-17],[3,-11],[-5,6],[-3,1],[-6,-7],[-6,-1],[-2,-4],[1,-11],[-6,9],[-3,12],[2,12],[5,8],[-5,-1],[-4,3],[-6,10],[-2,1],[-2,2],[-1,1],[-2,0],[-1,2],[-1,7],[-1,3],[-7,17],[-6,7],[-5,-2],[-9,-8],[-2,-4],[-2,-4],[-4,0],[-5,1],[-3,-1],[-2,-5],[-7,-9],[-9,-22],[-2,-7],[-4,5],[-4,0],[-2,-4],[1,-7],[4,-2],[9,-1],[2,-5],[-4,-5],[-27,3],[-4,-2],[-1,-5],[0,-8],[0,-9],[-2,-8],[-2,-4],[-6,-5],[-4,-2],[-3,0],[-1,-2],[1,-8],[1,-5],[2,-5],[2,-5],[0,-9],[-7,9],[-10,8],[-9,3],[-4,-12],[-12,15],[-3,1],[-5,-3],[-5,-11],[-5,-3],[-2,-2],[-2,-4],[-1,-7],[-2,3],[-3,7],[-1,2],[-1,2],[-2,3],[-2,2],[-2,0],[-2,-2],[-1,-2],[-6,-2],[-3,-4],[-6,-13],[-1,2],[-2,8],[-3,7],[-4,1],[-3,-4],[-1,-6],[0,-16],[-3,-12],[0,-6],[5,-4],[-2,-7],[-2,-5],[-3,-5],[-3,-4],[-11,27],[-2,8],[-2,9],[-3,5],[-9,4],[-1,2],[-2,5],[-1,1],[-2,-1],[-1,-2],[-1,-1],[-1,0],[-3,1],[-2,0],[-1,1],[-2,4],[-2,4],[-1,8],[-1,4],[-3,6],[-4,5],[-4,3],[-7,4],[-6,0],[-2,-5],[1,-11],[3,-2],[4,2],[3,0],[0,-2],[4,-13],[0,-1],[2,-2],[2,0],[2,-3],[-1,-7],[0,-5],[1,-6],[0,-4],[-3,-2],[-2,0],[-1,-2],[1,-3],[1,-3],[-1,-9],[4,-5],[11,-5],[-5,-18],[0,-8],[2,-12],[-7,0],[-3,7],[-5,22],[-3,11],[-13,24],[-3,2],[-13,-1],[-3,3],[-4,9],[-7,4],[1,5],[3,5],[2,3],[3,1],[11,-1],[-7,8],[-15,2],[-3,8],[-2,2],[-3,1],[-3,-1],[-2,-6],[1,-4],[8,-12],[1,-3],[-1,-8],[1,-3],[2,-4],[2,-4],[1,-1],[3,1],[1,0],[2,-3],[3,-7],[1,-3],[13,-3],[5,-3],[5,-10],[-1,-4],[1,-6],[2,-7],[3,-15],[1,-4],[0,-5],[-1,-3],[-4,-5],[-1,-2],[-2,-3],[-6,8],[-4,13],[0,13],[-4,-5],[0,-8],[1,-4],[1,-4],[7,-20],[3,-10],[0,-1],[-1,0],[-9,-15],[-1,-6],[0,-5],[0,-14],[0,-5],[-5,-5],[-17,3],[-7,-2],[-3,-7],[4,-4],[13,-2],[4,-2],[1,-4],[-2,-6],[-2,-4],[-4,-3],[-1,-1],[-1,-2],[-1,-4],[-7,-22],[-3,-12],[-2,-11],[0,-47],[-2,-10],[-4,0],[-5,4],[-7,3],[-5,-6],[-3,-12],[-3,-27],[-4,-21],[-2,-12],[-7,-19],[-4,-25],[-3,-12],[-6,4],[-4,-6],[-3,-11],[-3,-12],[-1,6],[-4,7],[-4,5],[-4,-2],[0,-5],[4,-46],[-8,-31],[-1,-10],[0,-9],[-2,0],[-4,11],[-10,23],[-2,9],[-1,26],[-2,12],[-4,-4],[-2,-13],[3,-14],[3,-13],[2,-10],[-2,-8],[-9,-20],[-3,-11],[-5,6],[-5,-2],[-10,-12],[-6,-6],[-3,-9],[-4,-10],[-3,-7],[-11,5],[-7,-14],[-6,-17],[-6,1],[-2,-10],[-2,-40],[1,-2],[2,-5],[1,-5],[-1,-3],[-3,0],[-4,-1],[-3,-3],[-1,-6],[1,-13],[4,-24],[1,-12],[3,-8],[6,-10],[7,-9],[4,-3],[12,0],[7,2],[3,0],[42,-18],[6,-5],[5,-8],[3,-11],[4,-26],[3,-11],[3,-8],[4,-9],[5,-8],[4,-3],[3,-2],[5,-6],[4,-1],[3,4],[5,10],[4,3],[6,-11],[6,-26],[6,-45],[8,-21],[5,-10],[4,-5],[2,-7],[8,-38],[7,-18],[4,-10],[1,-14],[1,-5],[6,-3],[2,-7],[0,-5],[-4,-13],[-1,-6],[3,2],[4,2],[4,-1],[2,-5],[4,-21],[0,-6],[-2,-3],[-8,-3],[-3,-3],[-2,-5],[-2,-5],[-3,-13],[6,-16],[-1,-4],[-2,-3],[-2,-2],[-2,-3],[-6,-19],[-4,-18],[-4,6],[-1,2],[-2,0],[0,-10],[1,-14],[2,-12],[3,-5],[4,-4],[0,-10],[0,-9],[6,-5],[7,9],[4,20],[3,24],[0,22],[1,8],[1,6],[2,5],[3,6],[2,8],[-1,17],[1,7],[4,13],[3,16],[2,17],[1,17],[-1,13],[1,6],[3,8],[9,12],[2,2],[9,-1],[7,-2],[7,-5],[7,-8],[-16,-27],[-12,-38],[-16,-81],[-7,-64],[-8,-34],[-2,-24],[0,-25],[4,-20],[-2,-10],[-1,-11],[2,-9],[4,-2],[7,17],[6,3],[4,5],[2,-3],[2,-5],[1,-5],[0,-8],[-2,-4],[-1,-3],[-3,-11],[-5,-7],[-8,-8],[-4,-5],[-5,-13],[-1,-6],[2,-13],[-1,-5],[-2,-7],[0,-7],[1,-6],[0,-7],[-2,-5],[-4,-8],[-2,-3],[0,-11],[2,-36],[19,-35],[17,-11],[2,-7],[2,-8],[5,-7],[21,-23],[1,-3],[2,-14],[1,-3],[-1,-6],[2,-29],[0,-10],[1,0],[-1,-6],[0,-6],[0,-24],[3,-20],[7,-15],[24,-19],[8,-12],[20,-61],[15,-37],[8,-16],[16,-18],[4,-7],[35,-104],[8,-17],[10,-15],[5,-10],[2,-13],[1,-13],[3,-12],[17,-61],[8,-13],[13,-8],[13,-4],[12,-11],[7,-18],[1,0]],[[63494,75251],[-14,-34],[-19,-40],[-2,-3],[-12,-52],[-5,-17],[-6,-11],[-24,-24],[-15,-20],[-8,-7],[-32,-10],[-9,-9],[-6,-17],[-9,-42],[-6,-6],[-7,2],[-3,-5],[-2,-9],[-2,-11],[-4,-8],[-4,-4],[-2,-6],[-1,-12],[1,-12],[2,-8],[-2,-6],[-6,-6],[-12,-6],[-4,-1],[-19,-2],[-6,1],[-8,7],[-15,12],[-5,1],[-6,-3],[-9,-11],[-6,0],[-5,7],[-8,17],[-6,4],[-29,4],[-2,2],[-6,3],[-22,21],[-4,8],[-3,13],[0,31],[-1,15],[-2,7],[-8,17],[-2,6],[-1,6],[-1,5],[-2,4],[-1,1],[-5,6],[-2,8],[-1,10],[-2,11],[-4,8],[-5,2],[-6,-2],[-5,-3],[-11,-3],[-1,0],[-4,11],[-2,18],[-7,18],[-14,19],[-3,8],[-1,4],[-2,11],[-1,4],[-3,2],[-8,2],[-3,1],[-5,5],[-18,27],[-3,7],[-1,8],[-3,23],[-1,7],[-2,0],[-5,-8],[-2,-2],[-3,-4],[-11,-4],[-6,-3],[-9,-13],[-5,-5],[-5,0],[-5,7],[-2,10],[2,24],[-2,11],[-5,5],[-13,3],[-7,-1],[-6,3]],[[62897,75278],[-7,14],[-7,6],[-16,3],[-8,5],[-12,23],[-8,10],[-2,1],[-3,0],[-2,0],[-2,-1],[-17,-6],[-8,1],[-7,5],[-2,13],[-3,3],[-3,-2],[-5,0],[-3,2],[-4,6],[-2,1],[-3,0],[-3,-5],[-2,-1],[-5,0],[-4,4],[-3,6],[-8,31],[-4,6],[-19,8],[-31,34],[-11,8],[-8,9],[-3,14],[32,132],[1,13],[0,1],[-12,21],[-21,14],[-24,6],[-15,1],[-23,-11],[-12,-2],[-9,6],[-3,6],[-3,11],[-2,8],[-3,8],[-27,52],[-8,11],[-9,6],[-6,-1],[-8,-6],[-2,-2],[-5,-1],[-5,2],[-5,3],[-31,35],[-12,3],[-7,-15],[-2,-9],[-8,-28],[-4,-32],[-3,-4],[-3,5],[-7,35],[-3,8],[-8,14],[-5,5],[-10,9],[-1,1],[-10,5],[-12,3],[-14,-2],[-8,-4],[-22,-18],[-11,-6],[-25,0],[-6,-12],[-5,-17],[-6,-9],[-4,-6],[-3,-1],[-10,-5],[-26,-2],[-12,-9],[-4,-6],[-7,-15],[-4,-6],[-5,-1],[-5,4],[-4,4],[-6,8],[-11,4],[-14,2],[-13,5],[-7,16],[0,17],[8,12],[10,11],[6,14],[-3,18],[-5,4],[-7,6],[-26,10],[-5,5],[-12,21],[-4,7],[-19,14],[-11,4],[-26,12],[-53,24],[-6,4],[-5,5],[-30,44],[-13,15],[-3,6],[1,10],[2,9],[0,8],[-24,14],[-8,8],[-8,12],[-7,8],[-11,4],[-11,1],[-13,-7],[-9,0],[-5,-3],[-7,-11],[-4,-3],[-5,2],[-17,15],[-8,9],[-8,12],[-15,17],[-17,3],[-2,1],[-47,-7],[-8,-3],[-1,-1],[-22,-19],[-9,-3],[-9,1],[-9,4],[-8,6],[-8,4],[-9,0],[-19,-3],[-9,1],[-18,9],[-10,1],[-20,-4],[-10,1],[-8,7],[-12,20],[-7,7],[-15,7],[-4,4],[-3,6],[-3,14],[-3,6],[-8,5],[-20,-6],[-10,7],[-9,11],[-9,7],[-9,3],[-29,-6],[-8,3],[-38,48],[-9,8],[-29,15],[-14,17],[-2,3],[-8,6],[-11,-2],[-17,-14],[-9,-4],[-11,2],[-69,40],[-19,0],[-19,-8],[-6,-7],[-4,-9],[-19,-76],[-1,-11]],[[61107,76165],[-1,0],[-6,2],[-8,9],[-6,11],[-4,14],[-4,16],[-4,11],[-6,9],[-25,21],[-6,9],[-5,4],[-1,3],[-2,6],[-2,13],[-2,5],[-5,6],[-11,7],[-4,6],[-13,26],[-32,48],[-19,45],[-17,30],[-59,75],[-8,13],[-7,18],[-5,7],[-6,3],[-3,5],[-6,20],[-3,8],[-5,5],[-7,4],[-12,3],[-5,3],[-5,6],[-23,46],[-4,7],[-6,5],[-11,6],[-29,24],[-79,20],[-3,7],[-3,4],[-20,1],[-11,12],[-7,18],[-5,19],[-7,16],[-10,12],[-3,5],[-1,20],[-4,1],[-9,-5],[-3,2],[-4,5],[-11,20],[-5,5],[-2,5],[1,2],[2,2],[1,4],[0,4],[-1,2],[-16,30],[-3,5],[-5,2],[-13,13],[-6,4],[4,-14],[5,-11],[4,-11],[-1,-12],[-6,-8],[-8,-1],[-9,2],[-8,3],[-14,12],[-7,4],[-9,0],[-5,-7],[-2,-1],[-2,1],[-9,5],[-4,4],[-3,2],[-3,-4],[-6,5],[-4,8],[-3,8],[-5,8],[-14,11],[-4,7],[-5,18],[-10,40],[-7,13],[0,4],[6,10],[-2,11],[-5,11],[-27,37],[-7,4],[-4,1],[-4,3],[-4,3],[-4,6],[-11,6],[-9,11],[-24,10],[-30,26],[-12,3],[-5,-1],[-11,-6],[-6,-1],[-5,2],[-16,14],[-14,22],[-2,4],[-1,5],[-1,4],[0,4],[2,5],[3,2],[31,-2],[6,2],[10,11],[6,4],[3,1],[9,-1],[3,1],[4,6],[6,2],[16,13],[5,5],[3,4],[1,5],[1,7],[-1,5],[-3,4],[-2,1],[-2,-2],[-42,-15],[-3,5],[-4,12],[-2,12],[0,8],[5,6],[3,-9],[2,-14],[2,-7],[3,2],[0,5],[-1,7],[1,6],[2,3],[3,3],[5,2],[0,4],[-9,0],[-3,2],[-6,10],[-4,0],[-3,-2],[-3,-2],[-5,-6],[-11,-23],[-6,-3],[0,8],[4,15],[6,15],[36,31],[4,-6],[4,-1],[4,0],[5,-1],[48,-45],[11,-7],[7,-1],[2,-3],[-2,-6],[-4,-6],[-1,-1],[-1,-6],[-1,-16],[0,-3],[-3,-2],[-7,-1],[-2,-3],[1,-6],[1,-5],[2,-2],[3,-1],[6,1],[16,7],[13,0],[6,3],[2,7],[3,5],[18,-3],[-5,9],[-8,5],[-16,3],[-8,-1],[-4,1],[-3,4],[-2,8],[1,3],[53,1],[6,-3],[3,-9],[4,6],[10,3],[4,5],[4,6],[12,12],[4,5],[0,-5],[-4,-16],[3,2],[6,5],[2,1],[3,-1],[6,-2],[2,-1],[3,-1],[2,-4],[2,-6],[0,-5],[-2,-4],[-3,-2],[-6,-2],[6,-6],[5,4],[4,10],[4,12],[0,-3],[2,-4],[1,-4],[1,-1],[3,-1],[1,0],[2,-2],[10,-5],[3,0],[3,1],[2,3],[0,2],[-2,3],[-4,8],[-2,3],[-1,2],[-1,0],[0,1],[0,5],[1,2],[3,2],[0,2],[1,0],[5,10],[1,5],[1,4],[1,3],[3,0],[0,4],[-3,-1],[-5,-5],[-4,-1],[2,15],[-2,7],[-2,6],[-2,12],[4,-2],[5,-4],[3,-2],[0,4],[-5,4],[-7,13],[-4,3],[0,6],[4,29],[0,12],[-2,3],[-4,3],[-3,3],[-3,1],[-2,3],[-2,11],[-2,2],[-4,-4],[0,-9],[4,-9],[7,-2],[0,-5],[-5,-3],[-2,0],[0,-5],[1,-2],[1,-4],[1,-5],[0,-5],[1,0],[0,-1],[1,-2],[0,-3],[0,-2],[-2,0],[-1,0],[-1,0],[0,-29],[-3,-16],[-3,-6],[-3,-1],[-4,4],[-2,5],[0,7],[2,20],[0,19],[-2,35],[0,19],[2,21],[2,10],[2,6],[5,3],[2,-4],[-1,-7],[-4,-4],[7,-4],[3,-7],[6,-9],[2,1],[1,10],[4,-2],[1,-1],[0,7],[-2,3],[-3,1],[-2,5],[-3,8],[0,4],[2,1],[25,32],[11,9],[4,2],[4,5],[3,12],[5,20],[4,20],[8,65],[4,24],[6,18],[9,11],[18,10],[15,2],[2,-1],[-3,-3],[-11,-9],[-2,-2],[-2,-6],[6,5],[3,0],[3,-5],[-1,-6],[-6,-13],[-1,-6],[-1,-13],[1,-4],[5,-2],[4,1],[0,-3],[0,-10],[-2,-12],[-5,-12],[-11,-19],[-4,-15],[4,-8],[7,-1],[6,6],[-4,8],[1,9],[7,16],[6,34],[0,6],[3,4],[4,9],[2,11],[3,23],[2,7],[2,4],[2,7],[0,25],[1,11],[6,4],[6,3],[5,3],[6,2],[7,-3],[13,-25],[9,-7],[16,-21],[5,-5],[5,-2],[10,-1],[3,0],[6,3],[3,1],[4,-4],[3,-1],[2,1],[2,6],[2,13],[1,13],[-1,11],[-4,6],[-72,61],[-4,8],[-1,14],[-3,11],[-5,8],[-10,11],[-26,42],[-10,11],[-5,3],[-22,1],[-2,-1],[-2,-4],[1,-7],[9,-6],[2,-2],[-6,-9],[-7,5],[-18,29],[-12,26],[-4,5],[-6,8],[-4,17],[-3,20],[-7,28],[-3,18],[-3,17],[-7,10],[0,4],[1,0],[1,1],[0,2],[0,1],[9,-8],[11,-14],[12,-10],[8,4],[12,-8],[16,1],[15,7],[9,10],[10,18],[5,6],[6,3],[14,0],[5,3],[5,5],[9,14],[2,2],[3,-4],[2,-8],[1,-3],[4,-14],[2,-4],[41,-17],[32,4],[4,3],[2,11],[-3,11],[-6,8],[-3,4],[-11,9],[-12,7],[-12,1],[-11,-8],[0,-4],[-2,-7],[-1,-3],[-1,12],[-1,9],[-1,7],[2,4],[6,7],[2,3],[0,6],[-1,13],[1,6],[3,7],[6,8],[6,6],[5,3],[22,-8],[5,1],[10,6],[23,2],[6,3],[15,11],[10,4],[5,6],[7,16],[5,7],[5,2],[10,-2],[5,3],[6,5],[9,13],[13,21],[6,5],[2,3],[3,3],[3,0],[3,-2],[2,-7],[3,-3],[3,1],[3,3],[2,3],[2,1],[30,-10],[6,2],[2,9],[2,25],[2,9],[6,8],[12,5],[6,5],[-10,9],[-7,-1],[-6,-10],[-7,-14],[-5,5],[-1,6],[4,17],[-6,3],[-1,4],[1,20],[1,5],[2,1],[3,0],[2,3],[0,5],[0,18],[-5,15],[-10,4],[-12,1],[-8,6],[-5,-3],[-5,2],[-5,4],[-4,1],[-4,-2],[-7,-9],[-2,-1],[-8,-7],[-10,2],[-9,-3],[-4,-18],[1,-12],[1,-7],[-1,-3],[-13,-2],[-3,-3],[-4,-4],[-4,-3],[-5,-1],[-16,1],[-14,-8],[-10,-2],[-11,-6],[-5,-1],[-20,0],[1,-3],[0,-1],[1,-2],[2,-2],[0,-4],[-7,0],[-7,2],[-7,6],[-4,8],[4,4],[5,13],[3,3],[2,4],[6,16],[2,5],[10,7],[50,9],[4,3],[5,7],[4,8],[0,6],[-3,1],[-2,-4],[-4,-11],[-2,-2],[-2,0],[-5,0],[-45,-10],[-11,-7],[-10,-11],[-5,-18],[-2,-3],[-2,-1],[-4,-3],[-3,-4],[-1,-6],[-2,-7],[-6,-4],[-45,-9],[-12,-6],[-2,-3]],[[57819,83718],[5,11],[3,14],[1,14],[3,14],[2,6],[2,4],[2,4],[1,9],[-1,6],[-11,41],[-2,12],[-1,13],[1,21],[-1,6],[-2,5],[-15,22],[-2,5],[-1,6],[2,7],[7,8],[2,5],[-2,7],[-5,4],[-22,13],[-5,7],[-4,9],[-1,13],[0,26],[-3,11],[-27,22],[-5,11],[3,9],[6,14],[6,14],[-2,8],[-6,6],[-11,15],[-6,6],[-12,4],[-12,-4],[-23,-15],[-5,1],[-4,2],[6,20],[18,47],[1,6],[1,12],[0,6],[2,7],[5,13],[1,6],[-2,15],[-6,6],[-7,5],[-4,10],[5,9],[26,15],[8,9],[3,13],[2,18],[1,33],[-1,14],[-4,8],[-5,6],[-28,20],[-4,5],[-15,19],[-29,16],[-7,9],[1,10],[3,12],[0,14],[1,22],[-49,-1]],[[57597,84538],[-2,7],[-2,9],[-2,10],[0,7],[2,5],[3,2],[4,0],[4,2],[2,3],[0,2],[1,13],[-1,2],[0,2],[-1,7],[-1,3],[0,3],[1,6],[1,4],[2,4],[5,5],[23,9],[4,6],[1,8],[-3,16],[1,10],[3,6],[4,3],[7,5],[-6,6],[-2,1],[4,3],[5,0],[40,7],[17,9],[7,5],[3,8],[-2,12],[-4,5],[-29,13],[-2,4],[-1,8],[1,7],[2,6],[1,8],[-2,14],[-5,5],[-5,3],[-1,17],[2,15],[-1,17],[-15,23],[-11,27],[-5,13],[-7,16],[-3,28],[3,30],[17,45],[-16,83],[-14,73],[-5,30],[-6,27],[10,38],[9,34],[36,35],[24,24],[1,1],[5,9],[3,13],[12,24],[4,13],[16,50],[9,44],[5,13],[-2,11],[6,8],[15,10],[32,-1],[6,8],[-6,0],[-21,9],[9,5],[23,2],[12,11],[7,-5],[1,11],[-3,4],[-7,7],[-4,4],[-2,6],[-7,17],[-6,7],[-12,8],[-6,11]],[[57782,85696],[11,27],[4,30],[-5,27],[-10,21],[-5,13],[-2,13],[1,7],[3,16],[0,9],[14,19],[8,6],[11,-4],[10,-10],[7,-10],[4,-14],[2,-15],[4,-11],[31,-14],[11,-1],[9,10],[3,15],[1,16],[-1,32],[3,14],[6,13],[7,10],[7,5],[5,1],[5,-2],[5,-3],[8,-12],[10,-3],[8,-5],[6,-2],[3,-2],[1,-3],[3,-7],[1,-2],[6,-4],[4,2],[9,6],[5,0],[8,-6],[5,-2],[4,2],[11,16],[3,1],[7,-3],[3,2],[8,6],[2,0],[2,3],[10,15],[7,17],[-1,9],[-15,17],[8,-1],[2,1],[7,8],[14,22],[8,8],[12,5],[29,-3],[65,-17],[84,-17],[17,-13],[70,-28],[13,-1],[8,7],[7,16],[2,15],[-5,6],[3,9],[5,5],[3,5],[-3,9],[-7,6],[-58,7],[-15,10],[-4,22],[-2,0],[-4,5],[-4,7],[-2,8],[1,8],[2,5],[0,7],[-4,9],[-10,10],[-41,20],[-49,1],[-19,-14],[-11,-5],[-45,4],[-45,1],[-12,4],[-10,7],[-8,12],[-11,28],[-7,9],[-9,4],[-8,5],[-5,13],[-3,15],[-4,11],[-5,5],[-1,-5],[0,-7],[-2,-4],[-11,0],[-7,2],[-4,4],[-4,6],[-18,8],[-3,4],[-3,4],[-25,59],[-18,30],[-4,12],[4,3],[6,1],[5,-1],[4,-3],[2,-5],[1,-11],[2,-6],[5,-7],[21,-13],[11,-15],[7,-4],[5,3],[2,10],[-3,13],[-3,10],[-7,10],[0,12],[0,14],[-1,9],[2,12],[6,1],[-3,8],[-7,16],[-2,8],[3,7],[6,-1],[6,-4],[4,-2],[6,14],[-3,17],[-9,10],[-10,-6],[-5,-7],[-9,-10],[-5,-8],[-3,-2],[-15,1],[-4,-2],[-5,-5],[-4,-2],[-14,1],[-7,-3],[-2,-12],[-2,-13],[-6,0],[-6,2],[-5,-4],[2,-3],[2,-3],[1,-5],[1,-5],[-3,3],[-4,2],[-4,0],[-3,0],[-2,-2],[-1,-2],[-1,-2],[-6,-7],[-6,-12],[-6,-7],[-1,-1],[-6,1],[-6,2],[-3,1],[-2,-2],[0,-4],[-1,-4],[-3,-2],[-3,1],[-5,2],[-3,1],[-5,-1],[-8,-6],[-4,-1],[-37,2],[-9,7],[-2,16],[-5,-6],[-4,-10],[-4,-8],[-6,3],[1,3],[3,9]],[[57724,86330],[23,30],[25,27],[6,9],[40,55],[27,20],[26,40],[40,44],[12,10],[25,7],[11,18],[4,12],[6,9],[17,20],[8,15],[5,6],[16,9],[20,21],[15,12],[41,27],[20,19],[17,27],[4,8],[3,7],[8,13],[41,45],[5,12],[5,15],[5,9],[6,6],[18,8],[8,7],[40,49],[6,10],[6,20],[6,10],[38,40],[46,72],[54,84],[39,45],[35,50],[8,19],[4,5],[5,4],[10,7],[25,25],[32,23],[5,6],[4,7],[7,20],[4,6],[40,45],[5,13],[3,7],[4,5],[15,9],[6,7],[5,13],[6,28],[6,14],[12,20],[4,13],[14,56],[8,25],[11,22],[25,47],[-10,9],[-4,14],[-4,14],[-7,11],[-3,3],[-7,6],[-18,28],[-8,8],[-17,13],[-7,10],[-4,9],[-3,12],[-1,12],[-1,11],[-2,12],[-6,10],[-7,8],[-56,37],[-43,52],[-93,51],[-7,6],[-6,11],[-17,25],[-38,29],[-67,79],[-6,15],[5,4],[15,9],[42,18],[18,22],[17,39],[50,56],[12,18],[8,18],[2,20],[-7,25],[-5,11],[-3,10],[0,10],[5,11],[2,13],[-6,8],[-9,6],[-16,4],[-7,8],[-6,11],[-8,11],[-14,10],[-44,14],[-19,11],[-12,10],[-5,11],[2,16],[6,15],[2,14],[-9,11],[-13,8],[1,4],[-1,1],[-3,2],[0,1],[0,2],[0,2],[0,1],[-2,6],[-1,5],[0,11],[-1,1],[-2,1],[-1,1],[1,4],[2,2],[48,22],[6,6],[6,10],[2,12],[-5,11],[-11,12],[-3,4],[-3,7],[-1,3],[1,4],[1,7],[1,6],[1,4],[0,4],[-5,5],[-11,5],[-51,0],[-27,7],[-23,25],[-18,41],[-13,50],[3,25],[8,16],[11,10],[43,9],[7,9],[1,8],[-3,2],[-5,1],[-4,5],[1,6],[2,4],[3,4],[3,4],[-2,23],[-18,7],[-39,-1],[-13,12],[10,20],[29,36],[3,21],[-4,53],[3,22],[1,3],[4,8],[22,24],[4,8],[-9,12],[-21,14],[-8,12],[17,11],[67,18],[17,-10],[9,-3],[4,6],[1,13],[-1,14],[-8,55],[-2,11],[-10,25],[-9,30],[-3,9],[-11,25],[-2,11],[-8,45],[-6,24],[-7,15],[-23,28],[-39,63],[-16,35],[-7,19],[-5,20],[-1,12],[-4,25],[-2,10],[-32,45],[-3,5],[-1,6],[0,6],[-1,5],[-8,12],[0,1],[-12,32],[-64,93],[-11,41],[14,50],[91,143],[15,14],[2,4],[2,4],[3,11],[3,6],[110,124],[5,11],[8,27],[1,7],[2,39],[2,7],[2,6],[6,8],[-82,63],[-17,19],[-47,81],[-11,18],[-23,39],[-8,9],[-9,6],[-79,27],[-80,27],[-10,6],[-7,12],[-51,153],[-6,17],[-4,14],[1,9],[3,7],[71,110],[9,19],[15,45],[-21,18],[-22,3],[-56,-3],[-5,3],[-4,5],[-1,11],[13,1],[71,41],[34,9],[33,26]],[[58042,91349],[6,4],[9,1],[16,-1],[15,7],[15,14],[13,17],[6,10],[3,9],[5,21],[2,6],[5,9],[2,5],[1,6],[0,5],[0,5],[3,5],[3,16],[2,9],[12,14],[16,6],[47,2],[16,6],[18,16],[7,3],[41,1],[13,4],[6,5],[9,12],[34,28],[4,7],[1,6],[0,8],[1,8],[3,9],[2,4],[8,4],[5,5],[4,8],[2,10],[-1,14],[-2,11],[-3,5],[-17,6],[-6,4],[-2,5],[6,3],[12,1],[13,-2],[18,-10],[51,-45],[9,-5],[68,-9],[27,4],[12,10],[8,20],[1,10],[-1,46],[-7,9],[-5,8],[0,5],[0,6],[-2,10],[-2,7],[-7,10],[-1,24]],[[58566,91810],[53,-17],[29,-1],[9,-3],[9,-8],[4,-1],[3,1],[7,3],[3,1],[6,-2],[7,-5],[12,-12],[6,-3],[6,-2],[4,-5],[-1,-12],[-1,-4],[-2,-4],[-3,-3],[-2,-1],[-2,-2],[-1,-4],[0,-4],[-1,-4],[-4,-7],[-14,-16],[8,2],[8,7],[27,36],[7,6],[12,-6],[3,3],[3,3],[4,2],[71,-8],[-4,10],[-7,5],[-14,7],[-6,7],[0,4],[8,16],[-3,11],[-3,11],[1,11],[5,11],[7,5],[26,0],[6,-3],[10,-11],[16,-8],[18,-20],[8,-3],[1,1],[2,3],[3,3],[6,1],[0,2],[0,4],[0,4],[-2,4],[-12,16],[-15,13],[-4,6],[0,3],[0,10],[0,3],[-2,2],[-15,13],[-2,6],[3,9],[5,8],[6,3],[6,0],[19,-4],[52,-47],[8,-5],[25,2],[11,-3],[25,-14],[10,-11],[-6,-6],[1,-6],[5,-5],[28,-12],[28,5],[54,-7],[24,-12],[12,-11],[4,-1],[5,4],[5,2],[5,-3],[4,-9],[-1,-2],[-3,-20],[-1,-4],[-1,-4],[1,-4],[1,-4],[0,-2],[-1,-4],[-2,-3],[-9,-10],[-11,-9],[-46,-21],[-102,30],[-18,10],[-5,0],[-14,-5],[-41,8],[-9,-1],[-6,1],[-2,4],[0,4],[1,3],[2,2],[1,3],[0,8],[1,6],[0,6],[-1,8],[-4,8],[-4,5],[-5,3],[-5,-2],[-1,-4],[1,-6],[2,-8],[0,-8],[-4,-20],[-12,-9],[-26,-3],[8,-5],[9,-2],[8,-4],[2,-10],[-3,-9],[-6,-7],[-4,-7],[0,-9],[16,15],[16,5],[17,-4],[17,-8],[9,-2],[28,6],[3,-1],[5,-2],[3,-3],[2,-6],[-2,-3],[-7,-9],[-3,-5],[8,0],[23,-11],[-5,-8],[-6,-1],[-6,1],[-6,-1],[-4,-5],[-7,-12],[-4,-3],[-12,-4],[-23,-15],[-13,-1],[12,-7],[15,5],[27,18],[3,1],[3,-1],[3,2],[3,4],[5,10],[2,2],[4,2],[7,-3],[7,-1],[2,0],[1,2],[0,2],[1,7],[0,1],[6,-2],[9,-12],[4,-1],[11,8],[6,3],[6,0],[29,-8],[16,2],[8,-1],[6,-5],[-20,-14],[-10,-9],[-6,-17],[34,28],[27,8],[27,0],[-62,-65],[-7,-20],[-5,-8],[-4,-8],[2,-2],[3,0],[3,1],[6,5],[2,0],[3,0],[3,0],[1,0],[2,2],[3,6],[5,14],[8,17],[5,6],[5,4],[85,29],[6,5],[3,0],[6,-8],[4,-2],[4,1],[12,7],[7,-1],[14,-9],[8,-2],[-6,-15],[-8,-5],[-10,-4],[-7,-9],[6,0],[17,4],[-8,-13],[-18,-18],[-7,-11],[-9,-7],[-23,-3],[-8,-13],[6,0],[6,2],[6,3],[2,3],[26,5],[13,-2],[8,-11],[-25,-12],[-13,-1],[-6,-3],[-6,-8],[21,4],[10,-4],[0,-12],[9,2],[10,6],[10,2],[9,-10],[-9,-14],[-33,-20],[-21,-19],[-7,-4],[-16,-2],[-21,-8],[-14,-2],[-13,-5],[-10,-15],[-2,-12],[-2,-18],[1,-19],[3,-12],[4,13],[2,34],[5,14],[13,10],[32,1],[26,12],[16,0],[14,4],[6,15],[2,7],[4,6],[25,18],[1,4],[3,6],[0,9],[-3,17],[1,2],[2,4],[1,2],[-1,3],[-1,4],[-1,3],[-1,-2],[-1,10],[1,4],[2,7],[6,9],[7,5],[29,5],[3,-3],[2,-5],[-1,-5],[-1,-3],[-3,-3],[5,1],[10,6],[5,0],[5,-3],[6,-2],[6,-1],[5,3],[-2,3],[-2,5],[-2,8],[79,-8],[79,-8],[-2,-11],[9,-6],[26,-8],[12,2],[6,-2],[12,-10],[4,-2],[89,-12],[-2,-4],[-4,-11],[-2,-5],[5,-1],[5,5],[6,7],[5,5],[16,2],[8,-1],[7,-5],[1,-4],[0,-4],[-1,-3],[1,-3],[3,-5],[4,-1],[3,1],[4,3],[5,4],[4,6],[4,4],[6,2],[-5,12],[-19,13],[-8,7],[9,6],[25,-5],[16,3],[133,-47],[18,-1],[14,-8],[12,-3],[8,-6],[7,-8],[6,-10],[4,-5],[3,0],[8,3],[43,-13],[6,-7],[-2,-12],[13,-12],[57,-17],[48,-28],[4,-1],[3,0],[4,-1],[3,-4],[3,-6],[1,-2],[3,-2],[7,-3],[14,-3],[48,-30],[4,-7],[4,-5],[15,-8],[26,-6],[5,-3],[4,-7],[3,-8],[3,-7],[5,-3],[13,-2],[13,-6],[5,-4],[10,-13],[7,-4],[5,-6],[3,-1],[10,-1],[7,-3],[13,0],[2,-1],[2,-6],[26,-6],[6,-6],[8,-11],[23,-14],[37,-36],[12,-18],[10,-10],[4,-6],[2,-5],[4,-11],[1,-4],[7,-5],[16,-1],[8,-2],[7,-7],[1,-1],[1,-2],[0,-4],[0,-5],[2,-2],[28,-8],[4,-3],[5,-14],[12,-11],[-1,-34],[10,-3],[1,3],[1,4],[1,4],[2,2],[2,-2],[4,-5],[2,-2],[6,-1],[62,-30],[14,-1],[-17,13],[-28,12],[-20,14],[-6,6],[0,6],[7,1],[14,-11],[8,3],[-5,10],[4,4],[7,-2],[7,-3],[27,-25],[9,-5],[31,-7],[6,-4],[6,-6],[1,-8],[-6,-6],[7,-6],[22,-9],[61,-48],[29,-12],[45,-44],[25,-7],[22,-1],[14,-8],[17,2],[8,-3],[3,-2],[3,-1],[2,3],[1,6],[-1,0],[-4,8],[-14,28],[-3,6],[-17,18],[-3,6],[3,3],[14,-2],[6,-3],[21,-21],[12,-4],[3,-5],[0,-8],[2,-9],[4,-11],[13,-23],[4,-5],[4,-2],[5,-1],[6,-3],[5,-4],[12,-19],[8,-8],[40,-26],[1,-2],[1,-3],[1,-2],[6,3],[4,1],[3,-1],[3,-2],[14,-17],[2,-5],[-4,-8],[-9,-2],[-14,1],[0,-4],[17,-27],[23,-22],[10,-7],[10,3],[8,17],[0,3],[-1,4],[-1,3],[1,4],[3,2],[4,1],[7,-1],[11,2],[5,-2],[2,-10],[2,-7],[4,-5],[9,-6],[19,-21],[11,-2],[23,6],[12,-6],[14,-16],[6,-12],[4,-14],[0,-20],[-6,-12],[-7,-10],[-5,-11],[0,-5],[5,-7],[2,-5],[0,-4],[-1,-2],[-1,-3],[0,-2],[0,-15],[-1,-7],[-1,-7],[17,-1],[8,-4],[7,-7],[9,-14],[1,0],[-1,-7],[-2,-10],[-1,-6],[0,-29],[-1,-16],[-3,-13],[-3,-20],[8,-11],[29,-13],[6,5],[6,5],[6,3],[3,-2],[6,-4],[4,-6],[2,-6],[-1,-8],[-6,-12],[0,-6],[2,-7],[10,-7],[3,-7],[-2,-9],[-5,-5],[-4,-3],[-3,-5],[0,-24],[2,-10],[2,-5],[1,-5],[-3,-7],[-5,-2],[-7,2],[-7,0],[-3,-8],[2,-4],[4,-5],[4,-6],[0,-8],[-10,-28],[-25,-55],[-9,-12],[-29,-26],[-35,-43],[-15,-12],[-8,-12],[-5,-6],[-6,-4],[-9,-5],[-5,-5],[-4,-8],[-3,-9],[-1,-8],[1,-4],[0,-4],[-4,-8],[-9,-10],[-10,-3],[-9,-6],[-7,-17],[-3,-7],[-17,-9],[-17,-21],[-12,-7],[-26,-7],[-42,-31],[-20,-24],[-65,-26],[-11,-9],[-11,-3],[-19,-11],[-66,-16],[-22,-20],[-12,-6],[-78,-19],[-25,5],[-6,-2],[-4,-4],[-106,-28],[-87,10],[-87,10],[-30,14],[-46,7],[-30,13],[-30,28],[-22,7],[-24,15],[-107,33],[-16,-1],[-22,7],[-33,-5],[-30,8],[-33,-4],[-36,16],[-70,12],[-70,12],[-28,15],[-31,0],[-50,18],[-18,23],[-25,8],[-12,7],[-82,70],[-23,8],[-22,-11],[-22,-18],[-22,-13],[-10,-3],[-14,0],[-13,6],[-10,27],[-8,11],[-3,11],[10,9],[8,1],[15,-6],[8,1],[6,6],[-1,5],[-5,3],[-4,-2],[2,-4],[-8,-4],[-51,16],[-20,0],[-3,1],[-5,6],[-3,2],[-1,-2],[-8,-8],[-3,-1],[-4,0],[-7,2],[12,15],[5,10],[3,12],[0,5],[-1,6],[-1,6],[0,3],[-4,3],[-1,-2],[-1,-6],[-2,-7],[-5,-12],[-5,-9],[-6,-7],[-7,-4],[-1,0],[-3,3],[-2,1],[-1,-2],[-1,-5],[-1,-1],[-18,-2],[-5,3],[-3,3],[-6,9],[-3,3],[-4,0],[-1,-3],[0,-5],[-2,-4],[-8,1],[-5,9],[-7,24],[-7,9],[-15,11],[-7,8],[-4,4],[-8,-3],[-3,3],[-3,5],[-7,10],[-2,-7],[1,-6],[4,-11],[-12,8],[-6,7],[-4,9],[-2,-17],[9,-13],[21,-19],[-7,4],[-14,12],[-7,4],[2,-6],[4,-6],[3,-5],[4,-3],[0,-4],[-6,1],[-11,12],[-6,3],[4,-8],[10,-9],[5,-7],[-11,-2],[-10,3],[-106,76],[-71,70],[-7,9],[-4,11],[-2,12],[1,11],[4,9],[10,6],[22,3],[10,7],[-10,5],[-34,-5],[-10,1],[-10,4],[-28,20],[-50,1],[-6,2],[-11,11],[-3,2],[-16,-1],[-8,-2],[-8,-5],[-5,-1],[-17,5],[-32,-7],[-9,1],[-27,13],[-10,2],[-9,-2],[-7,-7],[21,0],[-1,-4],[-3,-13],[50,-3],[31,9],[8,-1],[8,-5],[12,-16],[11,-8],[4,-8],[-5,3],[-5,1],[-9,0],[7,-10],[9,-2],[10,0],[10,-2],[23,-14],[8,-9],[5,-9],[2,-6],[-2,-8],[-5,-11],[-7,-5],[-23,4],[-9,-1],[7,-5],[16,0],[6,-8],[-4,-3],[-2,0],[1,-10],[-4,-6],[-12,-5],[0,-4],[30,0],[5,-1],[13,-15],[17,-10],[6,-8],[-3,-11],[11,-8],[52,-8],[4,-4],[3,-4],[3,-10],[2,-6],[-4,-3],[-30,0],[-12,3],[57,-30],[58,1],[35,-22],[4,-6],[-1,-9],[-9,1],[-17,8],[-20,5],[-9,-2],[-5,-11],[-3,-12],[-8,-8],[-8,-4],[-7,1],[-10,5],[-10,1],[-20,-3],[10,-14],[56,1],[-3,5],[3,6],[5,2],[20,-1],[3,1],[5,4],[-1,1],[0,3],[0,3],[2,1],[9,0],[46,-15],[7,-12],[4,-8],[1,-2],[4,-3],[12,-6],[3,-3],[-10,-8],[-85,34],[-11,-6],[2,1],[3,-2],[2,-3],[2,-4],[-5,0],[-1,0],[-13,-3],[-13,4],[-12,-7],[-17,-3],[-7,-7],[13,-10],[16,-3],[16,2],[21,12],[7,2],[7,-1],[16,-6],[3,-2],[1,-3],[0,-3],[0,-3],[1,-3],[6,-7],[8,-4],[42,-9],[8,4],[12,14],[6,4],[6,-6],[3,-10],[-2,-3],[-5,-1],[-6,-5],[10,-5],[23,-4],[8,-11],[-14,-7],[-33,3],[-14,-8],[11,-7],[25,-9],[8,-13],[-12,-7],[-43,3],[-24,-3],[-13,-6],[-9,-11],[48,-1],[32,9],[6,-1],[4,-4],[2,-4],[-6,-3],[70,-25],[5,-5],[0,-4],[-2,-4],[0,-4],[5,-6],[4,3],[5,5],[4,4],[7,2],[32,-2],[4,-1],[5,-3],[9,-11],[4,-1],[-1,-5],[-2,-5],[-2,-4],[1,-5],[3,-2],[19,-5],[9,-6],[4,-1],[14,-1],[47,-28],[11,-16],[-2,8],[6,-6],[5,-15],[11,-6],[7,-14],[6,-3],[3,-3],[13,-16],[3,-5],[-2,-8],[-5,-5],[-11,-8],[4,-5],[4,-3],[8,-4],[-4,-3],[-2,-5],[0,-6],[3,-2],[5,1],[9,6],[6,1],[2,-1],[5,-6],[2,-1],[8,1],[2,-1],[2,-3],[1,-5],[2,-8],[-3,-4],[-8,-17],[4,-9],[4,-2],[11,3],[2,-4],[-1,-8],[-1,-8],[-2,-4],[-5,-3],[1,-6],[3,-7],[3,-4],[10,-9],[11,-7],[-5,-6],[-3,-6],[-4,-4],[-7,3],[-36,41],[-18,13],[-5,7],[-2,-18],[0,-6],[1,-1],[2,-21],[-1,-2],[5,-4],[11,-1],[3,-4],[-2,-7],[-5,-5],[-10,-4],[2,-5],[7,-5],[3,-4],[1,-4],[3,-10],[5,-17],[2,-8],[-3,-5],[-9,-3],[1,-23],[-9,-14],[-12,-9],[-8,-11],[4,-1],[6,-3],[3,-7],[0,-9],[-5,-5],[-8,0],[-24,8],[-10,-2],[-5,-8],[5,-18],[-6,-2],[-6,1],[-6,3],[-5,5],[-3,0],[-5,-3],[-4,-2],[-5,3],[1,-4],[2,-3],[4,-6],[-7,-3],[-14,3],[-6,-7],[41,-9],[5,-4],[5,-9],[0,-10],[-5,-9],[3,-16],[2,-5],[5,-3],[8,2],[3,-2],[-4,-9],[8,-4],[18,0],[7,-8],[-10,-8],[8,0],[4,-2],[9,-14],[0,-10],[-4,-3],[-5,0],[-6,-3],[3,-5],[10,-8],[-3,-14],[5,-8],[24,-4],[2,-4],[-2,-8],[-6,-12],[2,-7],[10,-2],[8,-5],[-5,-13],[-7,-5],[-8,-4],[-7,-5],[-5,-10],[12,-2],[9,-6],[8,-11],[8,-16],[2,-2],[1,0],[4,0],[3,0],[0,-2],[-1,-2],[2,-6],[0,-7],[1,-3],[4,-5],[4,-6],[5,-4],[5,-1],[-3,-9],[-6,-9],[-11,-14],[-8,-6],[-16,-5],[-8,-6],[12,-11],[3,-1],[1,3],[19,-2],[13,6],[5,3],[8,0],[9,-16],[-11,-10],[-11,-3],[-13,-2],[-8,-3],[-5,-5],[-1,-4],[22,-21],[7,-16],[10,-6],[1,-8],[-13,-12],[-12,-6],[-11,-13],[-10,-1],[-1,-1],[-14,2],[-4,-2],[9,0],[3,-5],[4,-1],[9,-9],[5,-2],[17,0],[5,-2],[12,-12],[10,-6],[-3,-13],[-12,-12],[17,-17],[11,-4],[18,-9],[4,-6],[7,-6],[33,-3],[8,-2],[4,-6],[-4,-11],[6,-9],[0,-9],[5,-10],[18,-6],[15,12],[20,9],[14,0],[8,11],[-5,18],[-3,6],[-4,8],[-2,7],[4,3],[16,-16],[24,-15],[24,-10],[14,-12],[9,-15],[-2,-17],[4,-7],[9,-5],[4,-5],[3,-6],[2,-12],[3,-6],[8,-3],[6,7],[9,8],[8,-7],[9,-7],[11,-13],[7,-11],[12,-11],[2,-7],[-3,-6],[-4,-6],[3,-17],[10,-6],[7,-11],[-3,-6],[-2,-7],[8,-9],[20,-5],[15,-3],[11,-8],[6,-6],[7,-1],[14,1],[6,-2],[11,-8],[6,-2],[3,-2],[9,-12],[6,-2],[18,9],[6,-1],[5,-4],[8,-10],[6,-2],[5,2],[11,8],[5,2],[6,-3],[10,-13],[5,-4],[44,-2],[7,-2],[5,-7],[10,-19],[2,-3],[2,-1],[3,-8],[2,-3],[3,-2],[41,-16],[27,5],[20,9],[3,15],[-2,10],[1,14],[12,10],[17,4],[30,-2],[11,9],[21,14],[12,3],[4,6],[20,37],[4,10],[0,14],[-11,53],[-5,10],[-7,8],[-16,14],[-9,11],[-3,11],[6,11],[22,10],[6,12],[-1,8],[-5,5],[-15,5],[-7,8],[-4,3],[2,5],[3,3],[4,1],[4,3],[-35,-3],[-9,11],[0,24],[2,4],[-8,5],[-8,5],[-17,-6],[-9,-12],[-1,-14],[-6,-6],[-8,0],[-12,4],[-12,1],[-11,-2],[-25,-13],[-13,-12],[-14,7],[-46,25],[-18,29],[-62,89],[-14,27],[-11,25],[-13,16],[-15,6],[-23,-1],[-6,21],[-6,10],[3,13],[-2,7],[-2,13],[-3,6],[15,-7],[4,4],[-21,12],[-6,9],[-4,13],[-5,17],[7,11],[20,-4],[8,-15],[18,1],[6,14],[12,7],[18,6],[13,5],[2,10],[-4,11],[6,16],[2,6],[9,20],[1,7],[-1,22],[-12,10],[0,10],[22,2],[14,5],[8,4],[8,4],[15,-3],[19,-6],[25,-10],[29,-16],[21,-7],[28,-19],[18,-13],[16,-3],[14,-4],[9,-11],[3,-12],[-3,-12],[4,-11],[21,-22],[70,-40],[27,-6],[31,2],[28,3],[8,-4],[-3,-13],[-2,-8],[2,-7],[6,-7],[2,-7],[-11,4],[-10,9],[-9,5],[-9,-12],[-5,-2],[-23,4],[-21,-1],[-6,-3],[-8,-11],[3,-11],[19,-24],[3,-4],[-1,-5],[-4,-6],[-4,-3],[-15,-9],[2,-7],[4,-1],[5,2],[4,4],[5,3],[11,4],[3,3],[2,8],[-1,11],[2,8],[4,4],[5,1],[10,0],[9,4],[18,16],[10,1],[18,-11],[9,1],[6,14],[-3,1],[-16,14],[-2,6],[0,9],[8,0],[5,-5],[13,-13],[31,-11],[32,-13],[22,-3],[15,-1],[14,-5],[33,-21],[28,-20],[30,-10],[15,0],[8,-4],[3,-10],[11,-9],[17,-15],[34,-22],[47,6],[7,4],[-4,9],[6,3],[15,3],[6,4],[16,6],[6,0],[-5,12],[-11,-3],[-13,-9],[-9,-4],[2,11],[5,26],[3,7],[8,3],[11,-4],[48,-28],[13,-13],[12,-16],[8,-9],[9,-2],[40,4],[4,-1],[8,-6],[22,-6],[10,1],[5,10],[-2,12],[-3,9],[-4,9],[-3,5],[-5,11],[-9,38],[-4,8],[-2,1],[-1,4],[-1,4],[0,5],[0,8],[1,3],[10,7],[7,1],[7,-3],[5,-6],[-1,12],[-7,8],[-9,6],[-6,7],[-4,10],[-12,57],[-4,9],[-5,9],[-10,13],[-4,5],[-2,5],[-2,12],[-3,5],[-8,9],[-30,16],[-6,7],[-67,120],[-25,27],[-11,20],[-6,14],[-2,13],[-1,27],[0,13],[2,15],[4,17],[2,9],[3,8],[21,32],[43,29],[24,7],[59,37],[54,49],[45,71],[21,23],[24,12],[61,9],[25,14],[65,19],[17,14],[4,2],[5,3],[8,14],[4,3],[5,3],[16,14],[19,8],[6,4],[-1,6],[1,4],[3,2],[56,61],[46,69],[27,55],[10,13],[13,3],[46,-12],[77,-35],[5,-6],[-1,-10],[-23,-14],[-8,-10],[56,6],[54,14],[51,3],[35,7],[14,-6],[6,-9],[7,-26],[5,-12],[11,-8],[29,-2],[12,-4],[28,-22],[8,-12],[2,-17],[-7,-11],[-44,-20],[-11,-8],[-9,-13],[-4,-8],[-4,-6],[-5,-5],[-5,-3],[-13,-3],[-6,-3],[-4,-7],[13,-13],[2,-5],[3,-11],[6,-2],[12,3],[9,-3],[7,-9],[6,-13],[5,-15],[3,26],[-1,10],[-6,10],[-25,5],[-8,6],[8,16],[15,17],[4,3],[11,3],[12,6],[6,2],[14,1],[6,6],[4,7],[6,5],[6,2],[13,-5],[21,5],[5,-3],[11,-13],[15,-11],[11,-19],[16,-16],[2,-5],[-1,-10],[-2,-8],[-2,-4],[-2,-4],[0,-8],[4,-13],[13,-20],[22,-44],[4,-13],[3,25],[-5,17],[-8,15],[-6,17],[0,15],[8,26],[2,17],[-3,11],[-14,22],[-4,10],[-1,28],[4,33],[8,31],[8,25],[4,10],[12,17],[2,7],[5,20],[3,4],[28,27],[4,5],[3,8],[2,14],[2,33],[2,12],[10,13],[13,7],[24,6],[-3,7],[-6,0],[-6,-3],[-6,2],[-6,9],[-4,6],[-5,19],[-15,18],[-4,11],[3,14],[25,8],[6,15],[-2,29],[3,6],[9,9],[-7,2],[-2,5],[-1,7],[-2,7],[-13,17],[-2,7],[-5,10],[-10,11],[-19,15],[3,11],[6,6],[6,4],[6,8],[-26,-10],[-6,4],[-5,7],[-11,11],[-9,5],[-6,6],[-16,9],[-15,5],[-15,-2],[-10,0],[-9,-2],[-14,7],[-15,3],[-11,16],[-4,10],[1,10],[1,23],[7,39],[19,49],[39,89],[6,24],[0,5],[1,11],[-1,8],[3,8],[2,6],[2,2],[7,2],[3,0],[1,-3],[2,-4],[1,-4],[0,-1],[3,0],[5,2],[5,5],[2,9],[-3,8],[-5,2],[-13,-2],[-2,4],[3,9],[8,15],[2,6],[2,8],[2,8],[0,7],[-2,8],[-3,5],[-4,4],[-3,5],[-1,6],[0,10],[1,10],[3,5],[22,-2],[6,2],[5,4],[9,11],[5,5],[-9,7],[-24,-8],[-7,5],[4,25],[5,3],[11,1],[5,4],[-5,3],[-11,-3],[-5,3],[7,10],[48,27],[21,4],[-2,1],[-12,3],[-15,-3],[-14,-6],[-12,-9],[-9,-2],[-3,11],[1,18],[3,15],[5,15],[1,6],[0,10],[0,6],[8,35],[2,14],[0,13],[-4,11],[-19,23],[-116,83],[-116,82],[-9,13],[-5,13],[12,5],[16,1],[28,0],[39,-16],[6,-1],[15,-9],[15,-5],[11,-6],[5,-5],[5,-3],[12,-3],[33,-21],[71,-9],[75,10],[126,-1],[95,-4],[77,-18],[85,-35],[16,-5],[1,-14],[2,-4],[3,-12],[1,-4],[3,-4],[7,-6],[3,-5],[1,-6],[1,-13],[1,-5],[5,-3],[9,-5],[24,-24],[16,-18],[15,-15],[5,-2],[16,2],[4,-2],[8,-8],[7,-3],[11,-13],[21,-22],[-4,-7],[-9,-4],[-8,-2],[18,2],[4,-4],[2,-5],[0,-4],[-1,-3],[0,-6],[1,-20],[1,-8],[2,-8],[5,-11],[6,-6],[6,-4],[6,-7],[1,-5],[1,-5],[1,-5],[2,-4],[6,-13],[6,-14],[1,-5],[2,-5],[3,-18],[-7,-16],[-10,-6],[-25,1],[-18,4],[-5,2],[-13,-1],[-19,1],[-45,-10],[-58,-20],[-107,-13],[-47,-10],[-27,1],[-12,-11],[-1,-11],[4,-5],[5,1],[3,-1],[1,-13],[-1,-8],[-2,-14],[-1,-7],[-6,-13],[-15,-5],[-27,0],[-19,-12],[-19,-19],[-17,-24],[-13,-30],[2,-11],[-1,-10],[-2,-10],[-1,-10],[3,-12],[8,-18],[29,-22],[28,-17],[18,-13],[24,-13],[28,-7],[28,-8],[23,-16],[13,-30],[2,-14],[5,-13],[33,-56],[4,-11],[2,-18],[5,-12],[8,-7],[31,-12],[7,-5],[7,-11],[3,-4],[5,-1],[72,5],[52,23],[16,0],[9,-3],[5,-9],[1,-12],[-6,-3],[-7,0],[-6,-3],[-9,-19],[-5,-7],[-23,-19],[-5,-2],[7,-1],[12,5],[11,8],[17,20],[9,8],[68,17],[28,0],[15,11],[12,-2],[107,41],[13,-1],[28,-13],[5,-8],[-1,-16],[2,3],[3,4],[4,9],[-3,9],[-1,7],[1,8],[3,8],[5,8],[14,14],[6,3],[8,8],[5,17],[2,21],[0,33],[-1,6],[-3,8],[-9,16],[-2,5],[-2,9],[2,5],[22,22],[4,6],[1,6],[-1,7],[-3,13],[0,3],[0,10],[-2,11],[0,1],[6,14],[32,24],[8,13],[3,12],[-1,13],[-6,13],[-27,43],[-3,12],[9,12],[45,29],[12,1],[13,-7],[-3,-6],[-2,-7],[-2,-8],[0,-8],[6,1],[5,6],[10,15],[15,14],[5,7],[10,11],[14,5],[15,-1],[23,-12],[12,-3],[12,3],[35,26],[12,2],[12,-9],[-3,0],[-3,0],[-3,-1],[-2,-3],[62,-4],[20,-12],[-10,-8],[9,-6],[11,-5],[12,-2],[8,5],[-8,6],[-5,2],[-4,0],[1,2],[2,8],[1,2],[-25,14],[-8,2],[-5,3],[-11,14],[-7,3],[-15,-4],[-7,0],[-2,8],[3,8],[4,5],[2,6],[-2,10],[-1,24],[-58,61],[11,6],[13,-5],[35,-34],[13,-8],[35,-8],[46,7],[12,8],[39,14],[53,33],[40,15],[39,33],[50,30],[12,2],[-10,-17],[-28,-13],[-9,-14],[43,25],[13,17],[5,9],[9,13],[28,26],[18,7],[24,16],[23,8],[58,47],[14,19],[9,7],[9,16],[6,5],[4,-2],[15,-15],[13,-5],[16,-1],[29,6],[6,4],[13,11],[6,2],[14,1],[38,12],[25,17],[6,2],[12,-7],[6,0],[16,8],[5,7],[-4,0],[-11,4],[8,17],[13,6],[26,-2],[99,32],[33,23],[11,2],[-3,-15],[-7,-11],[-15,-11],[-19,-4],[-3,-4],[0,-5],[1,-5],[2,-4],[2,-2],[11,3],[20,10],[33,-3],[11,-4],[7,-10],[-5,-2],[-6,2],[-6,-1],[-4,-8],[1,-4],[2,-4],[2,-6],[-2,-8],[-10,-9],[-28,-6],[-7,-11],[7,-5],[25,-32],[6,-1],[6,3],[8,7],[5,2],[17,1],[5,3],[9,8],[8,4],[26,28],[9,5],[20,3],[9,10],[4,11],[2,9],[-2,9],[-6,8],[-9,6],[-20,6],[-9,8],[-2,3],[-2,5],[-2,5],[-1,5],[-2,5],[-12,10],[3,7],[0,3],[-1,6],[30,4],[5,2],[5,5],[2,6],[-4,6],[-6,1],[-14,-6],[-13,-3],[-6,-3],[-4,-5],[-9,-17],[-5,-6],[-5,-3],[-31,2],[-6,4],[3,11],[11,10],[13,9],[22,6],[98,65],[38,13],[38,25],[23,8],[24,19],[25,8],[27,16],[123,33],[62,16],[54,0],[14,7],[50,-2],[8,-3],[1,-3],[-1,-4],[-2,-4],[-3,-2],[-3,-2],[-2,0],[-3,1],[-3,1],[-20,-3],[-20,-11],[-103,-13],[-103,-14],[-5,-4],[6,-6],[2,-2],[1,-8],[10,-8],[12,-3],[7,3],[-3,4],[-2,4],[-3,2],[-3,2],[10,7],[64,-13],[12,-5],[7,-13],[-21,-18],[-8,-2],[-7,-1],[-5,-2],[-4,-5],[-9,-18],[-1,-3],[1,-3],[2,-9],[-1,-17],[-5,-15],[-9,-9],[-9,-4],[-9,-6],[2,-13],[7,-14],[11,-14],[8,-12],[15,-20],[4,-6],[4,-9],[3,-11],[1,-12],[1,-15],[1,-7],[4,-11],[1,-4],[-4,-9],[-6,-3],[-13,0],[-4,-6],[-7,-16],[-5,-3],[-5,2],[-13,17],[-23,19],[-13,3],[-10,-8],[16,-8],[4,-6],[3,-6],[3,-5],[7,-8],[-9,-7],[-10,3],[-20,13],[-31,8],[-6,-2],[-4,-5],[-8,-12],[-3,0],[-7,5],[-3,1],[-3,-2],[-5,-9],[-19,-21],[-6,-16],[8,-10],[25,-6],[13,0],[27,10],[93,-5],[8,-4],[11,-12],[5,-1],[27,-1],[14,4],[13,11],[17,31],[10,13],[9,-2],[-10,-21],[-3,-12],[2,-15],[7,-16],[10,1],[63,55],[10,5],[9,-4],[8,-10],[24,-56],[11,-11],[13,-3],[26,2],[5,2],[4,5],[4,7],[2,8],[2,7],[7,11],[2,7],[-2,18],[-5,7],[-6,6],[-6,11],[11,0],[4,3],[-2,9],[4,18],[2,7],[4,7],[16,24],[5,2],[11,-1],[4,4],[7,15],[5,6],[22,5],[5,5],[1,3],[1,6],[1,3],[3,3],[45,23],[28,6],[30,-2],[27,4],[25,10],[46,36],[12,3],[15,-3],[27,-17],[15,-4],[84,5],[5,-5],[-8,-20],[5,6],[16,24],[8,3],[9,0],[9,-2],[8,-4],[44,-35],[67,-14],[66,10],[15,8],[9,11],[9,28],[7,11],[18,15],[5,8],[9,19],[4,5],[91,5],[14,25],[-2,5],[-3,4],[-3,5],[-2,9],[3,8],[6,4],[54,22],[14,2],[7,-3],[-1,-6],[-8,-15],[-3,-8],[0,-4],[3,-3],[4,-6],[6,-15],[4,-6],[4,-3],[14,-3],[13,-9],[-11,-12],[16,0],[8,4],[4,12],[-5,3],[-10,7],[-5,3],[-12,0],[-5,2],[-5,7],[-1,4],[0,3],[1,2],[1,4],[-1,2],[-2,1],[-1,3],[-2,2],[-2,2],[-2,2],[2,4],[2,2],[1,2],[0,3],[1,3],[0,7],[-1,5],[0,5],[3,5],[5,4],[80,28],[81,27],[90,1],[5,-3],[5,-6],[-6,-4],[-14,4],[-6,-2],[-6,-4],[-43,-8],[-13,-7],[-9,-11],[21,-3],[39,-16],[86,-81],[2,-5],[-1,-23],[-6,-11],[-13,1],[-23,8],[-10,-2],[-9,-4],[-8,-7],[-7,-12],[-5,-14],[-3,-4],[-4,-4],[-9,-5],[-4,-5],[1,-5],[1,-5],[0,-12],[2,-8],[3,-4],[5,-5],[3,-6],[2,-7],[-1,-4],[-3,-4],[-4,-9],[-3,-12],[-2,-14],[1,-13],[3,-12],[7,-7],[78,-20],[79,-21],[50,27],[12,15],[18,35],[0,3],[-2,4],[-3,24],[-5,12],[-16,27],[-13,15],[-9,6],[-5,4],[-3,8],[3,17],[11,12],[27,19],[7,0],[27,-16],[14,-4],[107,21],[25,13],[40,42],[5,8],[10,22],[4,6],[13,11],[14,5],[28,2],[-4,3],[-5,1],[-4,3],[-4,5],[5,10],[4,12],[2,12],[0,11],[0,6],[-3,11],[-1,6],[1,17],[-1,5],[-8,26],[-17,21],[-18,11],[-16,-1],[2,-6],[0,-7],[0,-6],[-2,-6],[2,-2],[3,-4],[1,-2],[-9,-8],[-12,1],[-12,5],[-9,10],[-2,10],[0,10],[1,11],[2,33],[-1,9],[-4,12],[-4,11],[-5,12],[-7,10],[-10,6],[-10,10],[-3,4],[-1,4],[0,12],[-1,5],[-4,4],[-25,23],[-4,5],[-13,26],[-12,15],[-1,4],[0,3],[1,4],[1,3],[-2,4],[-6,4],[-10,5],[-5,5],[4,14],[1,7],[-2,7],[10,15],[13,8],[117,5],[3,3],[0,10],[-3,7],[-4,6],[-2,5],[4,5],[6,1],[6,-3],[5,-1],[3,8],[-5,4],[-3,9],[-2,12],[1,12],[5,11],[8,9],[10,6],[43,11],[13,-3],[15,-9],[5,-1],[4,2],[9,9],[4,1],[3,-2],[4,-10],[3,-4],[5,-3],[40,-5],[9,-5],[10,-9],[10,-6],[101,-17],[108,-10],[131,-2],[81,-18],[81,-17],[54,-7],[47,-19],[68,-28],[85,-25],[69,-39],[47,-19],[49,-41],[53,-27],[25,-19],[-4,-9],[-8,-4],[-8,-1],[-6,1],[-15,7],[-7,0],[1,-11],[-6,-6],[-6,-8],[-2,-9],[6,-9],[-6,-11],[-5,-12],[-1,-12],[6,-9],[7,-1],[6,6],[12,14],[10,6],[6,4],[3,7],[0,7],[-3,6],[-3,4],[-1,3],[2,11],[5,4],[24,2],[11,-2],[97,-54],[111,-20],[13,-6],[11,-12],[-6,-4],[-36,1],[-5,3],[3,8],[-5,0],[-9,-3],[-5,-1],[-3,2],[-3,3],[-3,2],[-3,-3],[11,-20],[4,-4],[8,-3],[16,-1],[21,-8],[29,-4],[21,-9],[16,-1],[7,-2],[17,-14],[17,-8],[26,-22],[13,-5],[84,-35],[87,-12],[27,-12],[11,-10],[-16,-6],[-7,-6],[-2,-13],[5,-9],[24,-15],[6,-10],[4,-10],[5,-9],[7,-3],[20,0],[10,-3],[8,-8],[6,-8],[57,-39],[62,-60],[-29,8],[25,-22],[7,-4],[16,1],[8,-2],[43,-23],[14,-2],[7,-3],[4,-6],[3,-8],[4,-6],[20,-20],[3,-13],[-15,-23],[0,-15],[-2,-4],[-1,-4],[-3,-8],[15,4],[7,0],[5,-8],[1,-7],[-2,-6],[-2,-5],[-3,-3],[8,-7],[9,5],[18,19],[18,5],[9,7],[1,12],[17,20],[3,1],[11,7],[3,1],[12,-1],[-8,4],[-9,5],[-7,10],[-1,14],[3,6],[12,14],[7,11],[6,11],[8,14],[19,22],[46,79],[4,11],[2,13],[2,9],[9,20],[2,11],[5,12],[0,4],[0,2],[-1,2],[0,3],[2,13],[1,5],[14,5],[5,8],[2,12],[4,13],[-30,0],[-11,4],[-4,4],[1,6],[12,7],[26,1],[12,6],[-19,0],[10,9],[23,6],[11,6],[-57,-8],[4,8],[-8,2],[-24,-7],[-35,-22],[-28,1],[-55,31],[-9,8],[-5,11],[-11,26],[-6,13],[-70,91],[-18,33],[-10,25],[-1,9],[5,14],[11,11],[7,12],[-4,14],[2,4],[-2,8],[0,8],[2,8],[2,8],[0,8],[-2,12],[0,7],[1,4],[1,5],[1,3],[-3,2],[-10,1],[-4,-1],[-4,-6],[-5,-12],[0,-4],[3,-4],[4,-11],[-19,1],[-41,12],[-39,29],[-15,18],[-19,5],[-28,17],[-40,2],[-59,37],[-24,6],[-13,-9],[3,-1],[3,-3],[3,-5],[1,-5],[-2,-7],[-3,-3],[-15,-4],[-18,-1],[-4,-1],[4,-15],[25,-45],[-8,-5],[-12,6],[-20,20],[-5,9],[-3,9],[0,12],[0,14],[2,25],[1,14],[-3,8],[-4,9],[-1,13],[2,12],[7,20],[20,106],[3,10],[6,11],[4,7],[5,5],[5,3],[6,1],[3,-2],[3,-10],[2,-4],[-7,-9],[-3,-5],[-1,-7],[5,-15],[6,-4],[4,1],[9,6],[25,5],[15,7],[15,15],[13,22],[8,28],[-4,0],[-4,-4],[-3,-1],[-2,5],[0,5],[0,5],[2,4],[0,5],[0,10],[-1,11],[-3,10],[-6,3],[-1,-6],[3,-13],[2,-10],[-6,0],[-22,16],[-11,16],[-5,6],[-3,7],[2,13],[4,10],[9,16],[4,10],[8,46],[7,16],[13,3],[-3,12],[0,13],[4,10],[7,2],[-5,3],[-14,15],[-3,10],[2,14],[15,66],[4,11],[10,23],[3,11],[-1,13],[-4,16],[-8,14],[-9,11],[-33,9],[-8,-1],[-19,-14],[-68,-15],[-21,-13],[-9,1],[-6,34],[-5,10],[-6,9],[-5,12],[4,11],[7,7],[28,22],[6,7],[14,24],[3,8],[2,11],[0,4],[-2,1],[-1,3],[3,8],[3,4],[7,4],[4,3],[-6,8],[-7,5],[-7,1],[-5,-5],[1,-11],[-5,-4],[-8,-4],[-5,-5],[7,-14],[2,-3],[-9,-10],[-14,-3],[-13,4],[-7,14],[1,15],[7,13],[46,48],[4,15],[2,12],[3,12],[16,35],[3,5],[4,3],[30,0],[38,20],[38,11],[52,31],[26,7],[-1,10],[5,6],[21,5],[17,10],[30,25],[8,4],[14,3],[6,3],[17,26],[68,70],[14,4],[12,-12],[-4,6],[-4,6],[-3,5],[0,7],[2,6],[36,54],[6,5],[3,6],[7,29],[3,10],[4,5],[4,3],[4,5],[1,9],[0,22],[6,13],[17,21],[4,13],[-1,17],[1,5],[1,6],[2,4],[2,5],[0,8],[2,12],[14,34],[3,24],[3,10],[5,7],[-1,9],[4,8],[10,11],[-1,7],[0,8],[2,7],[2,7],[-2,8],[2,10],[5,18],[1,5],[-1,9],[1,5],[4,5],[9,2],[5,3],[-9,13],[-3,7],[-1,8],[3,7],[5,6],[5,7],[4,19],[8,15],[1,9],[4,10],[7,3],[8,-1],[6,2],[-6,5],[-11,3],[-5,7],[0,5],[4,6],[54,43],[13,16],[13,21],[8,25],[-1,28],[14,13],[15,9],[16,5],[86,-1],[6,-6],[1,-12],[-7,-5],[-56,-9],[-4,-4],[-2,-6],[3,-9],[7,-6],[84,2],[79,11],[134,-6],[105,10],[65,-7],[23,9],[27,-1],[23,5],[7,-5],[2,5],[31,-19],[86,-22],[7,-8],[-7,-1],[-13,-6],[-7,-1],[-14,1],[-7,-1],[-6,-5],[10,0],[5,-1],[2,-5],[3,-3],[68,21],[46,-23],[55,-3],[46,-29],[49,-17],[-32,-5],[4,-13],[1,-3],[5,-2],[6,-1],[6,-3],[2,-6],[-5,-7],[-9,-7],[-8,-8],[0,-12],[9,-23],[5,-9],[18,-14],[0,-4],[-5,-7],[-8,-12],[-1,-9],[1,-31],[1,-11],[8,-27],[6,-15],[5,-7],[4,-3],[0,-7],[-3,-8],[-2,-6],[-5,-6],[-11,-9],[-12,-14],[-6,-10],[-5,-12],[-1,-16],[0,-15],[-1,-4],[-3,-7],[-5,-7],[-26,-23],[-5,-12],[-3,-12],[-2,-26],[-3,-13],[-4,-12],[-4,-9],[-10,-14],[-25,-12],[-12,-8],[-9,-25],[6,-27],[6,-24],[-5,-17],[-23,-8],[-8,-5],[-1,-4],[-1,-7],[0,-13],[-5,-18],[-11,-9],[-39,-16],[-4,0],[-8,4],[-3,0],[-4,-3],[-10,-9],[-24,-16],[-7,-12],[-2,-19],[3,-15],[7,-14],[8,-10],[12,-10],[54,-63],[129,-77],[18,-17],[10,-14],[1,-11],[-12,-22],[-3,-12],[3,-13],[4,-6],[11,-9],[5,-7],[1,-4],[0,-3],[0,-3],[1,-2],[2,-3],[4,-3],[10,-14],[9,-8],[7,-11],[3,-16],[-2,-13],[-2,-14],[-4,-13],[-5,-11],[-3,-10],[0,-11],[0,-13],[-1,-13],[-6,-10],[-19,-26],[-1,-10],[1,-3],[0,-3],[0,-4],[2,-4],[2,-4],[2,-1],[2,-1],[2,-2],[8,-10],[4,-7],[3,-8],[0,-14],[-5,-25],[4,-27],[-9,-8],[-24,-8],[-12,-9],[-42,-47],[-7,-11],[0,-12],[9,-15],[37,-28],[6,-19],[-3,-10],[-9,-18],[-1,-3],[0,-5],[0,-3],[-2,-2],[-7,-6],[-8,-9],[-3,-5],[-3,-6],[0,-4],[2,-4],[5,-8],[1,-5],[0,-11],[1,-4],[6,-11],[20,-24],[9,-14],[8,-19],[3,-21],[-4,-21],[-3,-10],[-2,-11],[-2,-10],[-5,-10],[-14,-15],[-6,-11],[1,-8],[-3,-6],[-10,-6],[-4,-5],[9,-10],[7,-15],[19,-55],[1,-9],[0,-24],[2,-8],[-5,-6],[-4,-3],[-5,-2],[-23,-1],[-5,-4],[9,-10],[14,-10],[12,-13],[5,-18],[1,-11],[3,-6],[0,-4],[-4,-10],[-7,-7],[-15,-10],[-7,-7],[-6,-10],[-5,-12],[-3,-13],[-1,-15],[2,-13],[13,-34],[2,-12],[2,-29],[3,-10],[2,-7],[3,-13],[2,-7],[2,-5],[30,-40],[44,-39],[62,-30],[129,-99],[20,-26],[6,-12],[3,-9],[1,-10],[0,-16],[-2,-8],[-5,-6],[-5,-1],[-4,5],[0,7],[1,7],[2,6],[1,5],[-7,6],[-13,-7],[-22,-22],[-5,-11],[-5,-29],[-5,-9],[-23,-19],[-42,-49],[-16,-12],[-5,-7],[10,-18],[3,-10],[-1,-12],[-4,-6],[-10,-10],[-3,-9],[0,-8],[3,-5],[6,-7],[24,-46],[3,-10],[1,-11],[-1,-26],[1,-28],[-3,-10],[-8,-7],[-20,-4],[-6,-9],[3,-19],[8,-12],[7,-8],[4,-11],[-4,-16],[-6,-8],[-4,3],[-2,9],[-3,7],[-6,4],[-6,0],[-6,-4],[-11,-9],[-19,-10],[-5,-4],[-2,-5],[4,-9],[-13,-15],[-17,-5],[-50,0],[-8,-4],[-7,-9],[-3,-8],[-1,-7],[0,-6],[0,-7],[3,-12],[-6,-10],[-8,-8],[-27,-16],[-4,-7],[1,-6],[3,-6],[6,-8],[6,-12],[1,-8],[-1,-7],[-1,-4],[-5,-15],[0,-5],[-7,-12],[-15,-7],[-16,-4],[-10,1],[-12,10],[-6,3],[-7,-3],[-5,-5],[-6,-3],[-18,-3],[-3,-4],[-1,-6],[2,-15],[1,0],[7,-4],[5,-3],[3,-2],[9,-5],[11,-3],[9,-8],[3,-20],[2,-13],[-2,-6],[-5,-3],[-5,0],[-4,5],[-3,6],[-3,14],[-3,5],[-4,1],[-3,-3],[0,-6],[2,-7],[4,-11],[-63,-17],[7,-4],[15,0],[6,-8],[-5,-3],[3,-17],[-3,-13],[-4,-3],[-10,-4],[-4,-6],[-3,-5],[-4,-7],[-3,-5],[-6,-8],[-15,-5],[-7,-5],[-3,-9],[-5,-18],[-5,-8],[-7,0],[-19,14],[-8,4],[-8,-3],[-13,-11],[-8,-2],[-7,5],[-19,24],[-9,4],[-9,0],[-9,-5],[-8,-7],[36,-16],[6,-13],[-17,0],[8,-6],[27,-10],[-5,-6],[-3,-6],[-1,-8],[-1,-10],[3,-10],[5,-6],[7,-5],[4,-6],[-8,-11],[7,-9],[11,-10],[1,-14],[2,-6],[-2,-5],[-9,-6],[4,-9],[2,-3],[-13,-8],[-20,-4],[-19,2],[-11,10],[4,9],[3,4],[2,4],[-7,-5],[-11,-20],[-6,-4],[-9,0],[-19,6],[-9,6],[5,-7],[10,-7],[4,-6],[-41,4],[-4,-1],[-4,-3],[-3,-5],[-1,-7],[4,-4],[19,-8],[-12,-9],[-13,1],[-26,8],[15,-17],[-4,-5],[0,-2],[0,-5],[-81,-12],[-76,28],[-27,18],[-6,27],[5,7],[7,2],[15,-1],[5,3],[10,11],[5,2],[30,5],[7,3],[3,3],[2,2],[0,7],[2,3],[3,2],[4,-1],[3,-2],[3,-1],[3,1],[15,19],[2,6],[-5,2],[-28,2],[-13,-3],[-12,-11],[23,0],[-42,-12],[5,-4],[16,-4],[0,-4],[-63,-13],[-8,2],[-31,15],[-5,5],[-1,7],[7,8],[-23,6],[-8,5],[-20,23],[-7,12],[-4,14],[-5,12],[-11,5],[-4,-6],[0,-7],[1,-7],[-6,-9],[-8,-4],[-27,-4],[-9,3],[-19,13],[-10,1],[-7,-5],[3,-5],[8,-7],[6,-7],[-11,-5],[-56,25],[-5,0],[-16,-8],[-5,0],[-48,8],[-46,-13],[5,-8],[4,-5],[5,-2],[19,-3],[6,-4],[3,-10],[1,-13],[-3,-26],[-1,-12],[0,-19],[2,-11],[6,-8],[20,-21],[50,-33],[29,-9],[38,0],[13,-8],[16,0],[25,-18],[10,-12],[13,-11],[102,-32],[25,-16],[69,3],[68,11],[81,4],[50,-4],[29,-1],[26,-12],[43,-8],[10,-7],[8,-9],[13,-26],[12,-10],[24,10],[11,-4],[5,-6],[4,-2],[3,0],[5,2],[1,1],[3,5],[2,1],[1,-1],[1,-2],[4,-1],[2,-1],[1,-2],[3,2],[3,6],[46,28],[12,-4],[12,10],[8,21],[4,26],[2,17],[0,3],[-2,5],[-5,8],[-1,5],[0,6],[-1,3],[0,4],[1,6],[3,5],[6,6],[3,5],[-8,5],[-9,-2],[-17,-7],[8,15],[25,13],[11,11],[3,6],[2,14],[2,6],[5,4],[87,12],[13,5],[5,5],[13,-1],[7,2],[3,7],[2,8],[3,5],[4,5],[3,5],[-1,1],[-1,3],[0,4],[0,4],[2,5],[2,2],[32,7],[17,15],[87,27],[10,9],[3,6],[5,14],[12,17],[6,14],[10,11],[27,6],[11,7],[16,19],[5,3],[0,3],[-1,20],[2,7],[10,8],[3,7],[-1,6],[-7,18],[12,42],[4,13],[1,12],[-5,15],[-10,23],[55,81],[88,75],[88,75],[5,12],[8,29],[4,25],[4,53],[5,24],[-2,4],[2,4],[-8,37],[-11,32],[-3,19],[-2,19],[-4,19],[-6,16],[-34,48],[-58,53],[-11,21],[3,10],[16,26],[16,35],[3,17],[-4,18],[-7,17],[-4,15],[5,9],[2,10],[1,12],[3,13],[7,16],[10,9],[31,23],[83,26],[74,33],[84,16],[35,-1],[55,26],[56,9],[26,11],[13,3],[60,7],[57,-11],[8,-6],[5,-12],[4,-15],[5,-12],[8,-16],[2,-9],[-5,-7],[-11,-10],[-6,-14],[4,-14],[8,-11],[57,-36],[15,-18],[24,-11],[10,-14],[5,-16],[7,-14],[8,-7],[9,7],[-6,6],[-4,1],[-3,1],[8,8],[13,-6],[39,-39],[3,-4],[-2,-8],[-5,-6],[-6,-5],[-5,-5],[-4,-15],[4,-9],[6,-8],[4,-15],[0,-8],[-1,-5],[-10,-19],[-4,-6],[-4,-3],[-10,-3],[-4,-5],[-4,-7],[-1,-9],[2,-7],[3,-5],[4,-4],[11,-5],[27,-7],[5,-3],[2,-5],[-2,-9],[-6,-11],[-4,-7],[1,-4],[0,-3],[-3,-7],[-3,-8],[-3,-4],[-16,-16],[-3,-7],[0,-7],[3,-5],[3,-3],[2,-5],[-1,-16],[-5,-15],[-6,-13],[-2,-7],[7,-14],[9,-12],[9,-5],[4,-4],[2,-9],[-3,-12],[-7,-15],[-8,-12],[-7,-8],[-7,-1],[-5,4],[-4,6],[-5,3],[-4,-2],[-6,-3],[-6,-6],[-3,-5],[2,-20],[12,-13],[86,-53],[24,-8],[44,-28],[7,-12],[-1,-5],[-2,-8],[-2,-7],[0,-6],[3,-5],[6,3],[13,8],[27,8],[3,-1],[2,-3],[5,-6],[2,-1],[15,6],[2,-1],[5,-8],[2,-2],[10,-2],[3,-1],[3,-1],[3,2],[4,2],[7,3],[10,2],[20,13],[8,2],[6,-2],[7,-4],[10,-3],[10,-7],[4,-1],[36,1],[6,1],[17,14],[7,2],[20,-1],[18,5],[19,-5],[27,-13],[15,-3],[6,1],[13,6],[6,1],[-9,16],[-4,4],[-7,4],[-36,1],[-8,2],[-4,5],[2,5],[11,7],[4,5],[-32,0],[-8,-3],[-5,-4],[-10,-14],[-13,-8],[-16,0],[-16,6],[-12,11],[7,4],[23,-4],[8,4],[4,6],[-2,7],[-8,7],[-7,0],[-13,-6],[-7,2],[-4,6],[-4,9],[-4,6],[-5,-1],[1,-7],[-1,-6],[-3,-8],[-1,-9],[-2,-7],[-5,4],[-9,15],[-6,6],[-7,-3],[-14,-9],[-7,1],[-6,3],[-6,1],[-6,-3],[-14,-4],[-28,22],[-14,1],[-6,-2],[-18,-4],[-4,3],[3,8],[8,7],[14,7],[-8,-1],[-19,3],[-7,4],[-5,8],[-5,9],[-4,7],[-5,-1],[-6,-22],[-33,-3],[-35,10],[-9,21],[3,14],[1,14],[-1,14],[0,13],[1,9],[1,7],[3,6],[4,6],[6,2],[7,1],[6,2],[4,7],[-6,0],[-6,-1],[-5,0],[-6,5],[-3,6],[-2,6],[-4,12],[3,5],[1,2],[5,13],[1,10],[-1,10],[0,14],[3,12],[6,13],[14,21],[22,25],[12,10],[12,4],[42,0],[27,10],[29,1],[14,6],[5,10],[-7,10],[-10,12],[-5,13],[0,11],[-1,4],[-15,10],[-12,3],[-6,5],[-4,5],[-1,6],[-3,12],[-8,17],[-1,7],[4,1],[3,3],[3,5],[3,7],[-8,14],[-9,5],[-10,0],[-10,-6],[-10,-2],[-4,12],[0,14],[-1,7],[-6,5],[-6,11],[-3,14],[1,13],[5,11],[2,9],[1,10],[-1,13],[-2,13],[-3,14],[-3,13],[-5,10],[-2,10],[0,29],[-2,12],[-10,15],[-13,6],[-53,3],[-14,6],[-20,25],[-15,7],[-85,11],[-4,3],[-5,6],[-9,13],[-9,23],[-5,3],[-16,20],[-6,4],[-20,5],[-4,3],[-3,3],[-4,3],[-4,0],[-2,-2],[-5,-8],[-3,-3],[-6,-1],[-34,8],[-53,27],[-21,5],[-19,18],[-14,6],[-67,-3],[-81,16],[-15,-6],[-40,-31],[-38,-15],[-12,-9],[-11,-15],[13,-5],[4,-3],[-13,-9],[-46,1],[-46,-14],[-17,2],[-57,28],[-54,8],[-18,-2],[-61,-30],[-19,-5],[-18,6],[-17,14],[-16,22],[-5,9],[-2,8],[1,9],[6,17],[3,11],[1,4],[9,18],[7,19],[14,59],[0,4],[-11,36],[-29,49],[-34,40],[-19,30],[-10,20],[-4,18],[6,17],[25,32],[9,18],[-2,9],[1,10],[3,11],[11,26],[1,8],[0,23],[1,7],[11,25],[4,11],[0,9],[-3,9],[-15,10],[-3,6],[5,14],[7,12],[76,73],[6,9],[6,11],[2,8],[0,7],[2,6],[3,6],[33,30],[20,27],[14,24],[3,10],[2,12],[1,14],[0,8],[-4,19],[-1,19],[-1,5],[-6,17],[-10,12],[-85,71],[-7,11],[-4,19],[-1,13],[1,13],[-1,12],[-4,13],[-9,12],[-22,16],[-10,10],[-12,20],[-6,13],[-3,10],[-1,13],[-4,13],[-20,47],[-7,13],[-7,5],[-6,4],[-12,13],[-11,6],[-18,17],[-7,5],[-28,10],[-18,14],[-26,7],[-13,8],[-3,14],[4,7],[91,84],[5,6],[8,14],[5,6],[15,15],[5,8],[5,13],[2,11],[-2,11],[-4,11],[-8,12],[-1,6],[2,9],[3,7],[5,7],[5,6],[67,30],[48,24],[86,27],[23,-2],[21,11],[72,36],[73,37],[9,10],[9,14],[23,43],[4,18],[5,62],[-1,13],[1,21],[-8,41],[-4,31],[-2,12],[-1,12],[2,10],[-1,8],[-3,12],[-6,21],[-8,13],[-69,80],[-2,3],[3,4],[6,5],[58,28],[15,3],[15,-4],[6,-4],[15,-16],[7,-4],[35,-9],[39,-27],[12,-3],[6,-5],[2,-11],[-3,-2],[-18,-16],[-5,2],[-4,4],[-4,2],[-9,-12],[-8,-7],[-2,-5],[5,1],[12,6],[6,1],[3,-3],[3,-5],[4,-11],[8,-12],[9,-8],[37,-19],[10,-8],[5,-12],[-1,-11],[-10,-1],[-11,2],[-9,-1],[-9,-13],[-2,-16],[5,-18],[14,-33],[0,-4],[0,-10],[1,-4],[11,-16],[4,-9],[-4,-4],[6,-8],[18,-7],[0,-11],[-1,-4],[-2,-10],[-2,-4],[-4,-5],[-27,-14],[-8,-7],[-2,-2],[-20,-34],[-2,-9],[1,-6],[3,-8],[0,-4],[0,-6],[-1,-9],[-1,-4],[-4,-8],[-19,-10],[-5,-8],[1,-3],[5,-15],[2,-6],[-1,-4],[-14,-12],[-10,-4],[-19,1],[0,1],[-5,-5],[-4,-6],[0,-6],[5,-11],[2,-5],[1,-7],[-6,-6],[-6,-12],[-4,-12],[3,-10],[-4,-9],[-1,-11],[3,-9],[6,-3],[2,-2],[1,-5],[0,-6],[1,-4],[3,-5],[3,-3],[4,-3],[13,-4],[40,-31],[4,-8],[-4,-7],[-19,-7],[-8,-6],[2,-9],[25,-17],[7,-9],[3,-6],[2,-4],[-1,-3],[-5,-5],[-12,-5],[-4,-4],[-6,-7],[-2,-7],[1,-7],[3,-9],[-10,-6],[-38,6],[-4,-2],[-3,-3],[-2,-6],[2,-12],[-1,-5],[-2,-4],[-1,-3],[10,-23],[22,-18],[108,-41],[79,-17],[26,-19],[5,-1],[-4,5],[2,5],[3,4],[5,2],[89,-10],[69,-5],[47,-8],[7,-5],[-6,-6],[-3,-7],[1,-9],[3,-11],[2,-3],[2,-2],[2,-3],[1,-6],[0,-5],[-2,-3],[0,-4],[0,-6],[4,3],[5,5],[3,8],[2,8],[-1,7],[-9,21],[22,14],[104,-15],[49,9],[63,-19],[15,-10],[8,-9],[5,-12],[3,-18],[0,-16],[1,-13],[4,-11],[10,-9],[14,-8],[77,-12],[23,-21],[14,-7],[12,0],[12,5],[14,9],[14,5],[48,-8],[31,5],[5,3],[4,7],[4,5],[6,-3],[-1,-7],[5,-1],[21,5],[4,3],[1,6],[-1,5],[-3,4],[-4,1],[-3,-1],[15,7],[8,7],[4,7],[-4,10],[-8,2],[-8,-3],[-21,-19],[-34,16],[-17,-14],[8,1],[9,-2],[15,-7],[-40,-25],[-13,4],[-13,8],[-14,5],[-13,0],[-13,-8],[-10,-15],[-6,-6],[-5,0],[-3,5],[0,6],[0,6],[1,4],[12,25],[3,12],[-7,7],[6,4],[15,3],[5,6],[-3,7],[-4,6],[-10,6],[4,7],[1,1],[3,1],[-8,13],[-15,0],[-27,-9],[8,-14],[27,-9],[7,-9],[-18,-1],[-19,8],[-18,13],[-17,18],[-1,8],[5,9],[10,15],[3,9],[2,8],[1,9],[1,11],[-10,19],[-21,7],[-50,5],[-18,-15],[-8,2],[-2,15],[-1,4],[-1,4],[-2,7],[-2,3],[8,10],[17,10],[6,12],[-6,5],[-6,-1],[-11,-8],[-13,-3],[-4,-3],[2,-6],[-27,-9],[-12,-8],[5,-11],[-11,-6],[-11,2],[-22,16],[-22,10],[-22,2],[5,-7],[20,-9],[-9,-3],[-72,36],[-15,14],[-12,16],[-9,7],[-8,3],[-35,1],[-66,19],[-6,4],[-5,5],[-13,19],[-12,11],[-15,8],[-56,10],[-15,8],[-6,14],[1,7],[4,13],[1,7],[-2,7],[-23,36],[-6,12],[-4,24],[-18,52],[-7,12],[-7,9],[-9,6],[8,9],[19,4],[72,41],[73,15],[72,15],[19,-4],[5,-11],[18,-2],[99,-68],[18,-21],[38,-24],[39,-2],[106,31],[13,9],[12,16],[5,11],[3,13],[0,12],[-6,11],[-48,55],[-13,9],[-13,5],[-63,-2],[-41,-26],[-15,-5],[-13,3],[-21,15],[-3,10],[10,17],[21,22],[0,8],[-4,5],[-9,7],[9,8],[9,0],[29,-17],[11,-3],[5,2],[8,8],[12,6],[38,50],[18,15],[40,20],[3,2],[3,4],[5,9],[3,0],[15,-9],[11,-3],[32,14],[22,3],[11,-2],[11,-5],[0,4],[-1,8],[-1,4],[72,-9],[73,-10],[53,8],[50,-3],[34,-13],[76,-58],[62,-34],[129,-33],[100,-41],[5,-8],[-1,-6],[-1,-7],[-2,-8],[-4,-5],[-6,0],[-19,12],[5,7],[12,6],[6,7],[-24,2],[-12,-2],[-10,-8],[-5,-12],[4,-7],[84,-51],[84,-52],[2,-3],[2,-4],[1,-5],[-1,-3],[-1,-2],[-1,-3],[6,-18],[8,-11],[9,-8],[57,-13],[53,-25],[127,5],[31,13],[31,4],[23,11],[102,19],[16,-9],[2,-3],[2,-4],[4,-8],[3,-3],[2,-2],[2,0],[11,-5],[37,6],[14,-2],[14,-6],[12,-14],[4,-6],[3,-5],[-1,-6],[-3,-9],[-5,-6],[-13,-13],[-20,-24],[-10,-8],[-23,-7],[-7,-6],[-4,-13],[-3,-19],[-3,-13],[-1,-7],[1,-6],[4,-6],[5,-3],[4,-5],[3,-8],[-18,-3],[-12,-7],[-33,-4],[-73,-31],[-73,-31],[-6,-5],[-4,-9],[0,-6],[2,-6],[2,-6],[2,-6],[0,-7],[0,-14],[1,-5],[3,-6],[7,-9],[3,-6],[5,-15],[1,-13],[-3,-12],[-8,-10],[-22,-14],[-9,-11],[2,-18],[27,-47],[-1,-7],[3,-6],[5,-7],[0,-6],[-2,-10],[3,-5],[4,-4],[0,-8],[16,-16],[3,-8],[-2,-7],[-11,-14],[-38,-27],[-9,-15],[-3,-8],[1,-4],[2,-3],[-1,-7],[-3,-7],[-5,-5],[-19,-14],[-4,-6],[-1,-8],[3,-7],[14,-14],[3,-7],[0,-6],[-1,-5],[0,-8],[1,-6],[4,-12],[2,-19],[5,-24],[2,-21],[3,-6],[3,-5],[3,-7],[0,-6],[0,-12],[2,-6],[3,-6],[12,-14],[11,-20],[4,-5],[-1,14],[-5,15],[-11,24],[2,4],[-12,46],[-3,30],[-3,17],[-1,15],[4,10],[-5,12],[-13,20],[-5,12],[6,9],[8,3],[9,1],[16,6],[41,2],[5,4],[2,10],[-2,9],[-5,6],[-3,6],[1,9],[-1,2],[-1,2],[0,2],[0,2],[5,0],[5,3],[4,5],[4,7],[1,6],[0,8],[1,6],[3,2],[7,1],[4,2],[0,3],[-6,6],[-9,4],[-3,4],[-3,8],[7,10],[18,19],[4,10],[-1,6],[-1,6],[-1,7],[2,5],[4,5],[11,6],[15,19],[13,2],[30,-7],[3,-6],[1,-7],[3,-8],[3,0],[3,5],[2,8],[-1,8],[-4,20],[-1,6],[4,6],[3,-3],[4,-9],[1,-8],[4,-11],[10,-12],[18,-17],[20,-6],[8,-8],[3,-21],[-1,-11],[-2,-12],[-1,-12],[2,-14],[-7,-8],[-7,-16],[-6,-18],[-3,-15],[0,-7],[3,-18],[1,-7],[-3,-10],[-6,-7],[-12,-8],[3,-2],[3,-4],[1,-5],[1,-13],[2,-3],[2,-3],[2,-4],[2,-8],[-2,-5],[-3,-6],[-6,-33],[-12,-12],[-26,-19],[-58,-67],[-4,-7],[0,-11],[3,-10],[3,-8],[0,-7],[-8,-4],[8,-9],[29,-14],[29,-32],[10,-5],[23,2],[20,-8],[11,0],[10,4],[8,4],[2,5],[-7,4],[6,7],[2,7],[-1,10],[-15,41],[-5,5],[-8,2],[-5,8],[-9,22],[-5,10],[-12,14],[-6,8],[17,6],[54,-13],[37,0],[40,13],[10,-3],[4,1],[0,2],[0,9],[0,2],[1,0],[3,0],[1,2],[4,6],[13,13],[9,6],[36,46],[-8,16],[1,13],[4,13],[-2,12],[-17,25],[-3,7],[-3,15],[-3,8],[-3,6],[-10,11],[-4,8],[-1,8],[1,7],[1,7],[1,8],[-2,10],[-5,6],[-7,5],[-5,1],[-1,4],[-7,25],[2,4],[-3,10],[-6,22],[-3,10],[-6,10],[-14,15],[-6,10],[5,16],[-5,17],[-10,14],[-8,6],[-41,9],[-5,4],[-5,6],[-5,9],[35,-1],[4,3],[-5,14],[-8,29],[-15,25],[-2,8],[3,3],[4,3],[10,11],[16,7],[8,12],[15,28],[7,10],[3,7],[-3,15],[0,8],[0,15],[2,11],[4,6],[6,1],[7,0],[14,4],[13,8],[6,8],[16,28],[3,11],[-1,21],[-2,12],[-6,8],[-8,10],[-6,4],[-1,3],[-1,7],[0,4],[-2,3],[-2,3],[-19,22],[-11,5],[-2,2],[-1,4],[1,5],[1,4],[1,3],[0,7],[0,5],[-1,5],[-3,7],[-12,13],[-28,10],[-27,16],[-31,0],[-23,8],[-50,4],[-8,-2],[-6,-5],[-4,-6],[-5,-4],[-8,2],[-3,2],[-4,5],[-3,6],[-1,8],[-4,16],[-8,12],[-34,34],[-11,4],[-14,8],[-17,15],[-12,8],[-26,8],[11,13],[12,3],[9,9],[2,28],[-1,13],[-1,10],[-3,7],[-6,7],[-10,5],[-3,3],[-2,3],[-2,7],[-2,4],[-4,3],[-5,-1],[-8,-4],[-2,-1],[-51,10],[-23,14],[-77,20],[-105,2],[-15,7],[-69,53],[-13,6],[-7,5],[-12,17],[-24,25],[4,8],[17,12],[0,2],[0,5],[1,4],[3,2],[3,1],[3,3],[5,8],[-10,9],[-31,6],[-6,13],[-2,9],[-6,12],[-2,8],[1,10],[3,5],[14,11],[19,21],[3,5],[0,2],[0,9],[1,2],[1,0],[1,-1],[1,1],[5,13],[4,14],[6,29],[-3,10],[-4,21],[-4,10],[-3,3],[-4,3],[-3,4],[-2,4],[0,9],[-2,5],[-17,12],[-10,4],[-41,8],[-10,4],[-9,9],[9,5],[12,3],[23,0],[-8,16],[-13,9],[-33,5],[-21,11],[-7,0],[-13,-4],[-6,0],[12,11],[13,4],[40,1],[7,2],[12,7],[5,-1],[3,3],[1,9],[-11,26],[-24,8],[-28,2],[-19,7],[-5,12],[8,7],[11,7],[5,10],[3,7],[5,2],[6,-1],[4,-4],[4,-4],[3,1],[15,28],[3,2],[20,3],[6,5],[4,3],[2,4],[1,6],[0,9],[3,7],[5,4],[6,3],[4,4],[-12,6],[-26,-16],[-10,6],[2,11],[-1,22],[1,8],[6,8],[11,2],[72,-7],[23,9],[94,11],[18,11],[58,14],[119,9],[96,-1],[75,0],[136,-4],[117,1],[68,23],[89,5],[88,4],[57,25],[62,7],[37,-19],[23,-13],[6,-1],[18,5],[92,-3],[13,5],[6,10],[-2,4],[-3,5],[-1,4],[2,6],[11,10],[14,16],[4,3],[5,2],[74,1],[41,25],[106,11],[107,11],[82,-19],[5,-6],[2,-9],[-3,-6],[-8,-9],[-4,-7],[-3,-8],[-4,-7],[-4,-3],[-41,-8],[-11,-8],[-21,-22],[-7,-5],[-15,-5],[-14,-8],[-27,-7],[-35,-28],[-33,-14],[-45,-8],[-39,-32],[-23,-9],[-16,-14],[-5,-2],[-8,-6],[-1,-15],[5,-31],[0,-8],[-1,-7],[0,-8],[2,-8],[4,-6],[4,-5],[4,-4],[18,-11],[89,-31],[4,-10],[2,-4],[-2,-4],[22,-26],[54,-10],[25,-15],[5,-4],[9,-5],[5,-5],[3,-5],[6,-13],[2,-6],[1,-6],[2,-12],[1,-6],[3,-7],[4,-6],[4,-4],[3,-2],[-1,27],[-1,11],[-3,11],[-7,12],[-23,28],[-10,9],[-11,6],[-20,2],[-6,3],[-8,7],[-14,20],[-9,8],[-35,20],[-88,27],[-11,9],[-9,15],[-3,7],[-1,3],[1,13],[0,2],[1,6],[1,4],[-1,2],[-3,5],[0,3],[10,33],[25,14],[29,5],[36,18],[79,7],[79,8],[20,13],[74,0],[15,3],[11,12],[9,13],[21,18],[9,12],[-6,3],[-14,-11],[-7,0],[9,24],[13,13],[64,29],[16,13],[10,22],[-2,4],[5,14],[-5,9],[-9,4],[-9,2],[-10,-1],[-4,-4],[0,-9],[0,-17],[-3,-8],[-9,-9],[-9,-6],[-7,-3],[-18,4],[-19,9],[-15,11],[-15,17],[-6,4],[-3,4],[-1,6],[0,7],[-2,3],[-7,10],[-8,5],[-3,3],[-10,19],[-22,15],[-7,9],[16,10],[72,-6],[31,-17],[15,1],[-16,21],[-20,9],[-110,4],[-13,11],[2,2],[1,3],[1,7],[-5,4],[-31,8],[-3,2],[2,7],[20,24],[-12,14],[-13,9],[-14,7],[-43,12],[-135,4],[-13,8],[-7,10],[0,4],[3,4],[0,8],[-3,5],[-5,3],[-5,4],[-2,9],[9,8],[61,-7],[23,-14],[13,-12],[3,0],[2,3],[1,6],[0,6],[-2,2],[-3,0],[-3,4],[-5,19],[-2,5],[-6,5],[-9,2],[-29,2],[-7,2],[-6,5],[5,4],[7,1],[13,-1],[17,5],[15,-7],[8,4],[9,7],[44,12],[27,-9],[5,-4],[3,-4],[3,-6],[3,-4],[5,-2],[-9,-5],[-3,-3],[7,-5],[8,0],[15,5],[6,-1],[16,-7],[5,0],[13,8],[8,0],[14,-4],[7,0],[-7,-14],[-12,-9],[-29,-12],[-18,-3],[-4,-3],[-1,-8],[5,-3],[6,0],[12,3],[15,-3],[7,3],[13,17],[6,3],[6,1],[3,-2],[7,-19],[1,-6],[-1,-5],[-5,-5],[7,-5],[8,1],[6,8],[2,12],[-3,9],[-8,14],[-2,6],[3,7],[10,-1],[19,-6],[40,0],[-8,5],[-30,7],[-5,3],[-8,5],[-5,8],[1,6],[6,8],[2,6],[-4,3],[-8,2],[-71,-13],[-2,2],[-3,7],[-2,4],[-4,1],[-10,0],[-4,3],[-1,3],[-2,9],[-2,4],[-4,2],[-9,0],[-4,1],[-7,10],[-3,3],[-11,1],[-4,3],[8,7],[54,14],[7,8],[-81,3],[-3,1],[-7,6],[-5,2],[-14,0],[-5,2],[-13,11],[-4,2],[-9,0],[-23,9],[-126,8],[7,10],[9,6],[19,5],[-9,9],[2,9],[16,13],[11,3],[22,-8],[11,2],[5,3],[7,7],[6,10],[1,12],[-4,9],[-23,16],[4,3],[4,1],[9,0],[4,-2],[1,-2],[2,-3],[2,-1],[21,2],[7,-2],[16,-15],[6,-2],[13,1],[5,-3],[3,-10],[-46,4],[5,-6],[15,-12],[10,-16],[5,-2],[5,1],[2,3],[3,4],[5,4],[5,1],[18,-1],[46,-16],[-2,-6],[-7,-8],[-1,-7],[4,-4],[7,-1],[12,1],[-2,-1],[-4,-7],[7,-12],[7,-3],[16,7],[10,2],[9,-1],[10,-3],[17,-10],[5,0],[3,4],[-1,6],[-3,3],[-7,3],[-7,11],[2,5],[6,5],[6,7],[-13,5],[-31,-4],[-9,12],[4,2],[7,3],[4,3],[-2,4],[14,12],[15,7],[15,-1],[12,-12],[3,-4],[4,-3],[4,-1],[4,2],[0,3],[0,11],[1,4],[4,10],[-3,5],[-5,4],[-5,7],[7,24],[10,13],[47,31],[12,3],[16,9],[5,6],[-6,8],[-8,2],[-17,-2],[-7,2],[-21,14],[11,10],[16,6],[16,0],[16,-4],[7,1],[4,-1],[3,-2],[5,-5],[7,-4],[-2,-5],[-6,-6],[-5,-2],[4,-7],[6,-3],[11,-2],[12,-8],[6,-1],[7,4],[-11,15],[2,2],[20,4],[8,4],[8,8],[3,8],[-7,4],[15,1],[8,2],[7,5],[-16,8],[-77,0],[-8,3],[-4,1],[-8,-4],[-5,0],[-3,3],[-8,10],[-16,7],[-64,12],[-8,-2],[-19,-9],[-5,1],[-6,7],[5,14],[5,9],[15,16],[10,6],[49,3],[94,-17],[13,1],[90,-25],[12,0],[11,4],[25,22],[9,1],[6,-10],[9,13],[11,5],[12,2],[10,5],[5,3],[2,3],[1,5],[0,17],[1,5],[1,5],[4,4],[9,8],[31,14],[10,2],[30,-9],[-4,9],[-6,8],[-11,11],[17,18],[39,3],[18,7],[-13,8],[20,14],[23,8],[23,1],[21,-7],[-8,14],[-14,5],[-75,-15],[6,5],[54,14],[18,6],[32,1],[6,2],[5,4],[5,5],[11,18],[5,3],[4,-2],[14,-15],[17,-5],[6,-3],[0,-9],[41,-1],[5,-4],[14,5],[6,0],[6,-3],[7,-2],[7,1],[5,5],[-7,6],[-20,10],[-3,8],[6,8],[61,6],[56,3],[-6,13],[-11,4],[-13,1],[-9,6],[11,10],[101,14],[78,6],[43,24],[17,4],[13,6],[7,1],[5,-2],[2,-4],[0,-6],[0,-4],[8,-11],[10,-3],[10,3],[10,6],[16,16],[6,2],[18,-1],[-2,-13],[8,-6],[21,-2],[44,13],[36,-8],[11,4],[6,6],[2,9],[-2,9],[-6,8],[11,15],[12,8],[11,0],[12,-8],[8,-4],[24,10],[30,-4],[21,5],[39,11],[41,-8],[40,20],[96,12],[90,19],[101,16],[70,18],[70,19],[25,15],[6,2],[-6,6],[-8,-3],[-9,-7],[-8,-4],[-87,-18],[-21,1],[-19,9],[2,13],[-6,7],[-10,1],[-7,-3],[-16,-16],[-4,-7],[7,-3],[6,-5],[-9,-9],[-12,-4],[-6,7],[-3,7],[-20,20],[2,4],[-5,3],[-9,2],[-4,3],[5,5],[13,8],[-12,5],[-13,-2],[-25,-12],[-38,-8],[-11,-8],[10,-1],[20,-10],[10,-1],[-11,-13],[-17,-1],[-33,6],[0,4],[3,5],[-5,13],[-8,12],[-8,6],[7,7],[22,10],[-3,7],[-2,8],[1,6],[4,3],[-2,12],[8,8],[12,4],[8,1],[5,-3],[3,-3],[12,-23],[2,-2],[7,0],[23,12],[6,6],[-3,10],[-21,9],[-7,6],[39,0],[15,6],[32,0],[0,-4],[-21,-11],[-6,-8],[5,-6],[7,-4],[13,-2],[-2,-5],[-8,-11],[11,-5],[10,5],[19,16],[7,2],[20,-2],[16,7],[5,1],[5,-1],[7,-8],[5,-3],[6,1],[11,6],[6,1],[31,-3],[11,3],[-12,12],[-6,4],[-15,-4],[-7,2],[-13,13],[-7,2],[-26,-4],[-4,2],[-6,10],[-5,4],[14,5],[116,-5],[27,-11],[14,3],[7,4],[15,4],[12,-1],[5,-3],[1,-5],[-3,-7],[6,0],[6,-3],[7,-4],[5,-5],[-9,-9],[6,-5],[6,0],[13,5],[13,0],[6,2],[5,7],[-8,5],[0,5],[5,4],[15,8],[22,1],[-7,15],[-17,5],[-31,1],[9,6],[73,-6],[6,-5],[10,-11],[5,-5],[6,-2],[35,0],[27,12],[28,-5],[24,19],[13,5],[135,-15],[28,-14],[14,-4],[24,2],[7,-3],[11,-6],[5,-5],[-1,-5],[-13,-2],[-30,3],[-12,-12],[13,2],[6,-3],[4,-7],[-7,0],[-20,-8],[8,-14],[1,-4],[-2,-6],[-5,-1],[-10,1],[-9,-2],[-18,-9],[-39,-40],[-9,-5],[-21,0],[-8,-6],[29,-16],[17,-3],[7,10],[2,6],[5,8],[8,12],[6,4],[13,6],[13,9],[16,1],[23,6],[8,0],[7,-4],[12,-3],[38,6],[9,8],[-5,0],[-6,3],[-6,4],[-4,5],[10,4],[20,-3],[10,3],[8,6],[11,3],[11,0],[8,-5],[-4,-3],[-3,-3],[-4,-5],[-2,-6],[25,5],[13,-1],[7,-12],[-8,-2],[-17,-14],[-30,-34],[-7,-2],[6,-3],[29,8],[20,11],[14,2],[27,-10],[14,-1],[-1,16],[9,7],[20,5],[4,3],[8,11],[3,6],[3,3],[17,7],[40,28],[12,6],[41,2],[-55,-32],[-2,-7],[2,-3],[13,-11],[-9,-5],[-4,-4],[-4,-7],[10,-1],[25,3],[9,6],[-8,6],[1,6],[13,11],[8,3],[17,-3],[18,5],[33,-1],[13,-6],[6,-1],[33,6],[5,2],[-2,10],[-4,6],[-34,19],[-8,2],[-25,-4],[-9,4],[22,16],[23,9],[25,-1],[21,-11],[-2,-5],[12,-5],[13,2],[38,15],[13,0],[5,2],[11,6],[6,1],[-56,1],[-28,11],[15,12],[15,8],[7,0],[12,-6],[6,1],[3,3],[4,9],[2,3],[4,3],[50,-1],[17,4],[47,28],[67,21],[-4,-5],[-2,-5],[-1,-6],[-2,-5],[-5,-5],[-10,-6],[-5,-5],[9,-4],[26,0],[7,3],[14,11],[6,2],[66,-7],[-2,3],[8,4],[12,-1],[10,-4],[6,-7],[-14,-3],[-7,-5],[-5,-8],[9,-8],[-40,0],[23,-16],[12,-4],[13,-1],[39,11],[33,0],[11,6],[4,-1],[6,-9],[1,-6],[-5,-4],[-32,-9],[6,-8],[8,-5],[9,-3],[7,0],[-5,-8],[4,-2],[5,1],[6,2],[5,5],[4,4],[5,-1],[6,-3],[20,-17],[2,-8],[-5,-15],[-4,-6],[-8,-9],[-3,-6],[-2,-5],[0,-4],[0,-5],[1,-11],[1,-6],[0,-5],[0,-4],[-4,-9],[0,-4],[1,-5],[-18,-23],[-19,-12],[-34,-14],[41,-8],[11,5],[9,14],[9,16],[10,13],[41,22],[12,17],[3,15],[-4,14],[-7,10],[-7,7],[-7,11],[5,13],[8,14],[2,16],[-3,7],[-12,7],[-4,5],[-2,9],[0,4],[-1,3],[-6,5],[-25,10],[-12,9],[-5,15],[-3,20],[-7,10],[-9,4],[-45,1],[-3,2],[-3,7],[-5,14],[-11,13],[-14,7],[-55,0],[-13,6],[2,16],[-2,6],[-3,3],[-6,5],[-13,17],[-5,4],[-22,11],[-5,3],[-2,3],[-1,3],[1,7],[1,2],[1,1],[2,4],[4,6],[7,2],[92,-15],[84,-15],[76,3],[31,9],[94,1],[9,-11],[12,-7],[108,27],[28,15],[15,5],[11,-6],[11,-12],[25,-4],[11,-10],[-3,-5],[-6,-6],[-3,-5],[69,7],[10,6],[5,2],[28,-12],[89,-8],[11,-7],[5,-11],[5,-8],[13,-4],[108,-10],[-15,15],[-6,4],[-6,2],[-13,0],[-40,10],[-12,7],[-46,13],[-53,2],[-11,8],[6,3],[2,1],[-49,12],[-94,4],[-33,19],[-11,2],[9,5],[27,6],[8,4],[19,21],[-1,2],[-2,4],[-1,2],[5,6],[2,7],[0,8],[3,7],[-4,4],[4,6],[3,6],[0,8],[-3,9],[7,0],[10,3],[8,6],[5,11],[-17,6],[-36,0],[-17,6],[-19,15],[-5,8],[-7,4],[-2,3],[2,5],[2,3],[2,3],[1,3],[1,5],[-10,2],[4,16],[17,31],[-4,14],[11,7],[26,3],[28,-5],[15,1],[8,12],[0,6],[2,2],[-3,6],[1,5],[1,4],[0,3],[-4,3],[-13,2],[-3,2],[2,12],[9,10],[63,35],[42,38],[57,27],[69,56],[2,11],[9,6],[22,6],[10,-1],[4,-2],[2,-2],[2,-4],[2,-4],[4,-2],[8,3],[6,5],[5,7],[6,6],[21,11],[17,20],[28,22],[88,27],[9,5],[-2,4],[-4,12],[14,4],[69,41],[17,3],[11,-8],[-1,-6],[7,-6],[10,-6],[66,7],[38,22],[17,5],[17,14],[48,19],[10,2],[31,-5],[33,6],[10,-5],[-1,-4],[-14,-13],[-4,-9],[8,-7],[10,-3],[98,24],[21,-2],[11,-20],[0,-8],[4,-14],[17,-13],[32,-14],[70,-11],[28,-17],[75,8],[75,8],[-2,-5],[-3,-4],[-7,-8],[5,-3],[8,-2],[4,-2],[2,-3],[4,-10],[2,-4],[-3,-14],[4,-10],[16,-12],[-1,-2],[-1,-6],[6,-2],[23,-4],[10,-5],[15,-3],[25,-11],[9,-8],[-20,-8],[-118,10],[-11,-2],[-4,-8],[-5,-9],[-30,-23],[-13,-5],[-25,-3],[-12,-8],[23,-1],[5,-4],[-10,-9],[-13,-6],[-37,-6],[-6,-3],[-17,-12],[-12,-4],[-51,-4],[-37,-15],[-26,4],[-49,-8],[-23,-14],[-12,-4],[-38,3],[-50,-16],[-13,-7],[7,-4],[6,0],[14,4],[23,-4],[132,19],[1,-7],[13,-7],[13,-4],[54,-1],[6,2],[17,10],[13,1],[41,-13],[75,15],[51,-1],[12,2],[12,8],[1,3],[0,2],[1,3],[2,1],[9,0],[2,-1],[1,-1],[1,-3],[0,-4],[-2,-2],[-13,-18],[-11,-6],[-23,-5],[-8,-9],[7,-5],[3,-3],[3,-5],[-21,-4],[-62,1],[-14,-21],[4,-10],[11,1],[13,4],[9,0],[13,-6],[13,0],[38,9],[27,-1],[13,3],[61,33],[12,4],[24,0],[27,-12],[21,-1],[7,-4],[3,-7],[10,-4],[21,-1],[5,-1],[9,-6],[25,0],[7,3],[-8,6],[-9,4],[-19,2],[0,4],[23,-2],[7,2],[14,11],[6,2],[45,-13],[6,-4],[-12,-8],[9,-6],[22,8],[10,0],[12,-2],[35,4],[-3,-3],[-4,-3],[-3,-2],[-3,0],[5,-8],[7,-6],[16,-6],[-4,-4],[6,-6],[7,-6],[28,-8],[7,-5],[0,-5],[-8,-5],[-57,-9],[6,-5],[13,-5],[6,-3],[-11,-4],[-25,-3],[-10,-9],[21,0],[6,-4],[-20,-17],[-7,-3],[-7,0],[-16,6],[-7,-2],[-5,-6],[-1,-6],[0,-15],[-4,-5],[-8,-4],[-11,-5],[-6,-11],[-8,-5],[-24,1],[-10,5],[-5,1],[-17,-3],[18,-20],[3,-7],[-3,-8],[-14,-18],[-3,-6],[-4,-4],[-9,-6],[0,-2],[0,-3],[0,-2],[-2,-1],[-5,-1],[-3,-2],[-6,-10],[-3,-5],[-4,-2],[-5,0],[-5,1],[-5,3],[-1,6],[3,10],[-11,6],[-17,6],[-15,-3],[-8,-18],[3,0],[-1,-12],[7,-11],[-3,-9],[7,-6],[9,-4],[72,-3],[8,-3],[16,-13],[7,-1],[8,2],[8,8],[0,10],[10,3],[35,-1],[64,17],[90,-18],[70,18],[10,7],[4,5],[22,34],[3,6],[2,15],[-7,7],[-18,6],[10,17],[1,8],[-7,4],[8,11],[16,1],[30,-4],[32,4],[26,-9],[-5,-5],[-4,-6],[59,12],[51,-6],[102,14],[41,-5],[37,16],[18,1],[2,-2],[1,-4],[2,-3],[3,-2],[2,-1],[48,0],[3,-1],[2,-3],[2,-3],[2,-3],[32,-6],[23,4],[6,-2],[7,-6],[21,0],[21,-8],[8,0],[82,38],[58,5],[15,-4],[3,-11],[9,-6],[12,-2],[32,5],[23,-3],[11,6],[-3,0],[-4,2],[-3,3],[-3,3],[13,7],[21,2],[20,-4],[13,-9],[-6,-1],[-5,-3],[-5,-5],[-3,-7],[6,-6],[4,-10],[4,-6],[6,3],[10,9],[9,4],[96,-15],[-5,-2],[-10,-2],[-4,-4],[4,-3],[8,-3],[3,-6],[-6,0],[-8,-2],[-7,-4],[-6,-6],[12,-12],[49,7],[45,-15],[92,-63],[12,-11],[-91,-65],[-12,-12],[9,6],[28,16],[10,0],[5,2],[13,12],[32,17],[15,12],[7,2],[8,-2],[107,-52],[13,-15],[8,-1],[0,-5],[-25,-3],[15,-12],[6,-8],[2,-13],[-14,-8],[-5,-4],[2,-2],[2,-5],[2,-2],[-7,-3],[-15,-2],[-7,1],[-12,11],[-5,2],[-8,-4],[13,-8],[12,-12],[12,-8],[28,5],[13,-5],[11,-13],[11,-16],[-20,-34],[-7,-6],[-27,-13],[-20,0],[-6,-4],[8,-4],[101,15],[15,9],[3,3],[2,6],[2,11],[-4,5],[-8,6],[-3,6],[20,12],[24,-1],[24,-10],[19,-18],[-4,9],[-7,9],[-2,8],[9,7],[-15,3],[-28,14],[-30,6],[-15,8],[-3,4],[-4,12],[-4,6],[55,-4],[24,8],[12,0],[10,-12],[-4,-5],[-15,-8],[4,-6],[2,-1],[-2,-5],[22,6],[11,-2],[28,-37],[1,-9],[-4,-10],[-2,-8],[-1,-9],[0,-14],[4,-14],[8,-4],[10,-2],[9,-6],[-11,-15],[-3,-5],[4,0],[4,-2],[4,-3],[3,-3],[-6,-11],[-8,-2],[-9,0],[-9,-4],[6,-3],[11,-2],[6,-3],[3,-5],[2,-6],[2,-6],[4,-3],[-2,-4],[-1,-2],[0,-2],[1,-4],[-10,-7],[-5,-2],[-5,0],[0,-4],[11,0],[26,5],[10,8],[-4,4],[-3,6],[-2,18],[5,0],[18,4],[10,-6],[6,-1],[6,12],[8,-2],[8,-6],[5,-9],[-8,-9],[17,-24],[-5,-18],[-9,-16],[0,-11],[0,-3],[-5,-9],[-15,-21],[-2,-6],[0,-4],[0,-4],[0,-3],[-3,-3],[-6,-7],[-2,-4],[0,-6],[0,-24],[-8,-16],[-33,-16],[-5,-15],[-36,0],[6,10],[25,22],[13,16],[5,9],[5,11],[-99,22],[-54,-5],[9,3],[8,3],[2,10],[-4,6],[-78,38],[-78,39],[-54,3],[-8,-5],[5,-1],[10,-6],[10,-2],[5,-2],[4,-4],[4,-5],[2,-5],[3,-11],[2,-4],[5,-4],[23,-4],[12,4],[6,-1],[26,-15],[12,-2],[6,-3],[3,-4],[3,-5],[3,-5],[4,-2],[-3,-4],[1,0],[0,-1],[0,-3],[-3,-1],[-7,-6],[-5,1],[-4,5],[-7,4],[-6,-3],[3,-1],[4,0],[4,-3],[6,-4],[4,-8],[11,-8],[4,-6],[0,-11],[-5,-8],[-16,-6],[-4,-10],[7,-18],[19,-7],[34,1],[9,3],[-2,8],[-10,13],[0,13],[7,5],[53,19],[16,0],[8,-3],[0,-10],[2,-3],[2,-4],[-5,-4],[-3,-6],[-3,-8],[-4,-7],[10,-14],[13,-9],[55,-17],[15,0],[13,8],[0,2],[9,-10],[3,-5],[1,-3],[1,-6],[2,-5],[2,-2],[2,-5],[3,-23],[0,-9],[-10,6],[-14,1],[-13,-2],[-10,-7],[-4,-9],[10,-3],[23,-1],[4,-9],[-2,-11],[-11,-19],[-2,-5],[0,-5],[0,-5],[-3,-4],[-15,-10],[-52,-49],[-60,-40],[-9,-12],[-8,-7],[-21,-11],[1,-8],[-6,-9],[-31,-27],[-102,-43],[-21,0],[-81,-25],[-15,-13],[1,-17],[-11,-23],[-5,-5],[-16,-2],[-8,-3],[-2,-8],[-6,-5],[-2,-3],[-1,-4],[5,-1],[6,-3],[-6,-7],[-17,-12],[-15,-5],[-12,-14],[-8,-3],[-77,21],[-18,-4],[-79,-49],[-9,-3],[-19,0],[-8,-6],[13,-5],[5,-3],[-3,-7],[-23,-12],[-40,-5],[-19,-14],[-52,-21],[-16,-1],[-31,10],[-16,0],[-14,-10],[20,-4],[1,-2],[6,-8],[3,-2],[-8,-20],[-13,-11],[-28,-16],[-59,1],[-10,-13],[-4,-9],[-9,-4],[-23,-3],[-4,-1],[-4,-4],[-2,-1],[-2,2],[-1,3],[-2,3],[-23,-6],[-15,5],[-15,-7],[-8,-1],[22,-14],[24,-2],[60,13],[7,-2],[3,-5],[-1,-5],[-13,-36],[-4,-9],[-7,-9],[-26,-21],[-55,-25],[-32,-25],[-84,-11],[-51,-25],[-12,-11],[-9,-14],[-6,-5],[-21,-6],[-16,-12],[-23,-25],[-16,-12],[-5,-5],[-5,-8],[-7,-18],[-4,-5],[-7,-3],[-6,0],[-18,8],[5,-6],[6,-15],[4,-7],[-9,-2],[-17,-9],[-92,-70],[1,4],[2,5],[2,3],[2,4],[-16,8],[-20,-4],[-52,-31],[-8,-3],[-24,8],[-80,6],[-4,-2],[-7,-5],[-4,-2],[-41,0],[-7,-2],[-4,-6],[-8,-20],[5,0],[5,-3],[4,-4],[5,-5],[-10,-14],[-55,-35],[-7,-9],[-6,-4],[-2,-3],[-2,-3],[-1,-6],[-11,-32],[-6,-12],[-7,-8],[-38,-20],[-14,0],[-21,10],[-7,2],[-29,-8],[-45,6],[-47,-30],[-5,-11],[1,-6],[1,-12],[0,-6],[-1,-7],[-6,-12],[-5,-16],[-37,-24],[-6,-12],[-1,-11],[0,-13],[-3,-12],[2,-11],[-4,-7],[-22,-16],[-21,-24],[-7,-14],[-7,-6],[-22,-12],[-6,-6],[-48,-23],[-18,-19],[-62,-9],[2,-12],[13,6],[101,-4],[10,5],[18,14],[11,5],[11,2],[4,2],[21,25],[10,7],[10,5],[29,6],[6,4],[2,4],[4,14],[8,13],[10,3],[22,-7],[6,-17],[26,-10],[16,-2],[33,-12],[42,-2],[16,-7],[11,-14],[46,-4],[51,11],[27,7],[-14,12],[-23,4],[-30,-3],[-29,6],[-38,5],[-34,19],[-48,16],[-20,7],[-8,6],[-2,5],[-1,9],[-5,12],[-2,10],[-1,11],[1,10],[-3,5],[-1,7],[2,9],[2,7],[4,9],[4,5],[5,2],[7,0],[6,3],[5,7],[4,8],[5,7],[8,2],[115,-31],[16,4],[19,-2],[37,22],[81,-14],[46,9],[64,-3],[31,9],[37,28],[35,9],[8,-1],[36,-14],[18,1],[16,6],[6,15],[-8,11],[-35,-1],[-12,3],[12,12],[42,10],[41,-4],[40,18],[67,6],[40,14],[42,8],[9,9],[1,10],[-4,5],[-6,4],[-4,5],[-2,10],[3,5],[5,1],[34,-20],[8,-10],[5,-4],[6,1],[5,7],[1,8],[-2,7],[-6,3],[-6,2],[-15,14],[-13,9],[-14,3],[-12,0],[-4,3],[1,10],[-1,1],[-3,7],[7,7],[7,-4],[8,-7],[8,-4],[8,-2],[16,-10],[24,-21],[17,-8],[18,-3],[38,0],[40,12],[43,22],[26,4],[7,6],[7,12],[-4,6],[-4,2],[-10,0],[9,12],[12,4],[24,0],[48,12],[-8,4],[7,15],[13,6],[26,0],[93,22],[8,10],[-2,7],[-10,6],[-2,5],[2,7],[3,5],[4,5],[3,2],[-11,1],[-44,5],[-8,5],[-8,2],[-105,-49],[-135,0],[-13,-13],[3,0],[2,-2],[3,-2],[2,-5],[-14,-4],[-18,10],[-17,18],[-16,28],[-4,5],[-2,6],[-2,13],[3,15],[6,7],[45,12],[28,14],[6,9],[4,13],[4,14],[4,13],[10,14],[14,11],[14,7],[77,3],[78,-17],[37,-20],[21,-1],[7,-3],[25,-20],[15,-5],[14,3],[13,8],[13,14],[-5,8],[-3,5],[-2,5],[3,11],[5,11],[9,8],[9,4],[105,8],[9,-5],[3,-10],[-6,-10],[-11,-3],[-21,1],[-17,-10],[-9,-1],[-18,9],[-9,-1],[-8,-5],[-7,-9],[27,-64],[39,-33],[102,-41],[95,-21],[63,-2],[31,11],[34,-2],[31,11],[28,5],[28,19],[7,6],[4,10],[-1,4],[-3,20],[-1,3],[-2,3],[-1,3],[1,6],[1,3],[-1,3],[-1,2],[-5,4],[-8,12],[-2,4],[-2,8],[-5,6],[-5,4],[-3,4],[-1,5],[0,8],[0,7],[1,5],[7,-3],[27,-32],[46,-28],[6,-6],[2,-4],[2,-6],[2,-7],[1,-6],[2,1],[31,-54],[10,-8],[23,-33],[3,-5],[3,-11],[3,-14],[1,-14],[-3,-12],[-5,-6],[-9,-3],[-16,-1],[-6,-2],[-5,-6],[-13,-21],[-9,-24],[-4,-5],[-10,-9],[-3,-6],[5,-5],[10,-5],[5,-4],[4,-5],[2,-4],[4,-10],[9,-11],[10,-6],[29,-4],[12,-4],[10,-7],[1,-3],[0,-4],[-1,-23],[0,-6],[1,-5],[3,-11],[0,-5],[-1,-12],[-3,-9],[-2,-10],[0,-13],[2,-9],[7,-19],[1,-11],[-5,-21],[-9,-23],[-4,-22],[8,-17],[-48,-42],[-14,-5],[-27,-5],[-13,-9],[-6,-12],[2,-11],[7,-10],[8,-10],[3,-5],[1,-5],[0,-14],[1,-9],[4,-6],[20,-20],[29,-14],[21,-4],[15,-8],[83,-13],[82,-13],[-13,12],[-91,17],[-90,18],[-43,33],[-3,5],[-3,18],[-3,5],[-3,3],[-3,4],[-7,16],[0,9],[6,7],[22,18],[26,7],[46,36],[7,15],[-7,23],[4,19],[19,33],[-1,14],[-19,33],[1,18],[1,4],[2,9],[2,5],[3,5],[31,24],[6,10],[4,4],[4,2],[36,-4],[21,10],[20,2],[10,8],[-13,8],[-41,-8],[-12,2],[-7,3],[-22,18],[-15,5],[-10,8],[-19,19],[-6,10],[-8,22],[-5,6],[7,4],[53,6],[64,9],[54,37],[79,-2],[78,-2],[16,7],[34,3],[72,39],[83,21],[129,-12],[82,-8],[120,-1],[127,-35],[106,-16],[81,-4],[50,8],[74,-2],[75,-2],[95,-19],[29,-16],[28,-23],[-14,-15],[-18,-8],[-19,-1],[-15,5],[-6,1],[-9,-10],[-6,1],[-13,5],[-3,2],[-2,3],[-4,8],[-2,3],[-6,3],[-24,-1],[-6,-4],[-10,-16],[-6,-4],[-5,-2],[-6,-5],[-5,-8],[-2,-9],[4,-9],[6,-5],[8,-2],[5,-1],[-3,-8],[-12,-12],[-1,-6],[2,-10],[-2,-5],[-3,-6],[-2,-7],[2,-3],[9,-24],[4,-2],[7,-3],[4,-5],[2,-4],[2,-3],[127,-53],[47,-8],[46,-19],[32,3],[25,-9],[11,-1],[10,-4],[9,-13],[5,-14],[2,-4],[6,-3],[13,1],[7,-3],[3,-8],[7,-13],[113,-25],[113,-25],[11,8],[-9,8],[-97,16],[-98,17],[-9,6],[-8,10],[-4,14],[5,6],[125,-19],[53,1],[65,-6],[47,-18],[63,-9],[23,9],[32,2],[38,15],[78,-3],[18,-7],[4,1],[12,10],[48,-8],[-3,-7],[-7,-8],[-1,-8],[3,-1],[30,-19],[106,-10],[30,-21],[25,-7],[30,0],[-116,63],[-1,5],[3,5],[11,0],[134,-46],[8,0],[23,11],[-72,26],[-72,25],[0,2],[0,2],[0,1],[-1,-1],[5,3],[5,1],[10,0],[-9,11],[-2,6],[42,7],[40,-16],[28,-4],[2,-3],[1,-7],[1,-8],[4,-5],[69,-24],[15,2],[6,3],[6,5],[5,6],[5,9],[5,5],[14,7],[3,4],[-2,7],[-7,8],[-1,8],[2,5],[14,18],[3,8],[5,9],[6,3],[5,-5],[1,-4],[1,-3],[1,-2],[2,-1],[2,1],[1,2],[1,4],[-2,7],[1,3],[0,2],[-3,4],[-4,1],[-8,-1],[-3,1],[-2,4],[-6,20],[7,12],[14,7],[27,6],[-10,-12],[9,-9],[11,-1],[22,6],[-15,8],[3,6],[5,2],[5,1],[4,3],[-5,7],[-7,2],[-20,-1],[-5,2],[-4,4],[-5,6],[2,0],[-3,2],[-2,2],[-2,3],[-2,5],[6,0],[2,5],[-2,5],[-24,7],[-5,4],[-5,7],[-11,21],[-2,6],[18,17],[5,7],[-11,2],[-23,-3],[-12,2],[-9,9],[6,5],[16,3],[3,3],[-1,6],[-4,6],[-4,3],[-4,3],[6,4],[7,1],[7,-1],[7,-4],[4,-6],[3,-7],[4,-2],[6,7],[-6,13],[-10,11],[-21,12],[1,2],[0,2],[1,2],[0,2],[-6,10],[-7,7],[6,10],[9,2],[20,-4],[-4,7],[-9,6],[-3,7],[23,-7],[8,-1],[-3,10],[-3,4],[-4,3],[-4,7],[3,7],[1,6],[-2,6],[-3,6],[39,14],[10,14],[6,3],[6,1],[6,-3],[5,-9],[-12,-8],[-4,-4],[2,-1],[2,-3],[2,-1],[-2,-7],[-3,-5],[-4,-3],[19,-1],[7,-3],[-3,-4],[-8,-5],[-4,-4],[12,-7],[13,1],[25,10],[29,2],[1,7],[16,-6],[7,1],[7,8],[-6,8],[-8,3],[-7,5],[-3,11],[-1,4],[-1,4],[0,5],[0,5],[1,5],[7,12],[-5,2],[-4,4],[-3,4],[-4,6],[8,1],[8,0],[7,-3],[8,-6],[8,-14],[5,-5],[6,-2],[-3,-9],[-11,-4],[-3,-7],[18,-3],[10,2],[4,11],[6,7],[24,3],[6,6],[-1,9],[0,4],[1,2],[19,9],[3,5],[3,10],[2,3],[5,1],[8,0],[4,-2],[2,-6],[-5,-1],[-5,-3],[17,0],[16,-5],[2,-2],[5,-7],[2,-2],[3,-2],[11,-3],[11,-8],[6,-1],[8,4],[5,2],[5,-2],[2,-6],[-3,-9],[9,-5],[36,9],[-2,-7],[-1,-2],[-2,-3],[4,-3],[5,-3],[11,-2],[1,-2],[3,-9],[2,-3],[6,-1],[5,3],[3,4],[-1,-6],[4,-13],[-1,-10],[7,1],[8,7],[5,11],[-3,14],[7,3],[8,-1],[7,1],[3,9],[0,-7],[2,-5],[2,-5],[3,-4],[-1,-1],[-3,-6],[4,-3],[5,-1],[8,0],[-4,-9],[-5,-8],[3,-3],[3,-1],[4,1],[-1,0],[-5,-8],[-4,-8],[-2,-7],[2,-11],[5,-4],[6,1],[4,8],[4,-13],[11,-3],[13,7],[9,18],[-1,-4],[1,-4],[2,-2],[3,-3],[4,-3],[3,1],[3,2],[3,4],[1,2],[1,2],[7,-1],[4,-7],[-1,-7],[-6,-1],[6,-3],[23,3],[20,-7],[6,-5],[-2,-3],[-5,-10],[5,0],[0,-4],[-29,-14],[-5,-10],[3,-10],[12,-10],[-3,-9],[9,1],[7,6],[2,8],[-7,10],[10,5],[34,7],[7,-6],[4,-5],[9,1],[12,4],[-2,8],[-5,3],[-5,2],[-5,5],[19,12],[6,4],[0,3],[0,5],[1,3],[3,2],[8,1],[4,-1],[3,-4],[0,-5],[-2,-24],[-3,-9],[-4,-7],[-8,-12],[8,-5],[9,5],[8,10],[5,14],[-1,3],[-2,5],[-1,5],[2,6],[5,3],[20,2],[34,22],[12,3],[5,-2],[5,-3],[13,-14],[15,-9],[-4,-6],[-3,-7],[0,-8],[3,-8],[-4,-7],[-4,-5],[-9,-8],[-4,8],[-6,5],[-6,2],[-5,-3],[-4,-5],[-10,8],[-9,2],[-6,-13],[8,-1],[8,-3],[7,-7],[6,-9],[-6,-8],[-14,0],[-7,-5],[34,3],[30,15],[9,-1],[9,-9],[-2,-2],[-2,-3],[-2,-7],[17,-2],[8,-4],[8,-10],[11,-30],[-1,-8],[-7,-8],[-1,-9],[0,-7],[2,-5],[13,24],[11,10],[2,7],[-4,8],[-22,38],[13,-1],[8,1],[5,5],[1,5],[-1,6],[0,6],[2,5],[8,6],[10,4],[9,-3],[6,-28],[6,-5],[6,3],[4,12],[-1,7],[-2,7],[1,5],[5,2],[22,-8],[-6,13],[-1,3],[0,5],[3,8],[0,3],[1,6],[0,3],[-1,3],[-4,4],[-4,2],[-6,2],[-10,0],[8,9],[10,4],[43,5],[36,-5],[75,-29],[17,3],[132,-15],[-4,-9],[-7,-5],[-7,-2],[-6,-4],[42,-12],[7,-6],[-5,-9],[-21,-16],[-6,-10],[62,8],[6,-2],[11,-6],[6,1],[13,7],[7,0],[7,-4],[-13,-14],[-4,-9],[2,-10],[-21,-20],[25,2],[13,-4],[10,-12],[9,-3],[36,17],[12,1],[13,-3],[32,-20],[10,-4],[23,-2],[-3,-6],[-3,-4],[-8,-6],[7,-2],[19,5],[7,-3],[2,-8],[-1,-7],[-3,-7],[-7,4],[-22,-3],[3,-11],[1,-1],[0,-4],[0,-4],[0,-3],[-2,-3],[-3,-2],[-8,-4],[-5,-5],[-5,-6],[-1,-7],[5,-3],[13,6],[25,22],[13,5],[24,4],[13,-4],[31,-14],[35,-21],[26,-20],[9,-19],[1,-10],[-11,-18],[-23,-5],[-33,12],[-35,7],[-52,5],[-43,-5],[-27,-16],[-107,-22],[-14,-11],[-7,-17],[8,-14],[-4,-11],[-27,-19],[62,4],[133,-22],[132,-23],[14,-9],[-24,-3],[-12,-6],[-10,-11],[2,0],[6,-4],[-6,-4],[-92,14],[-19,8],[-20,3],[-14,7],[-4,1],[-40,-4],[-4,3],[1,5],[-8,4],[-5,-5],[-5,-10],[-5,-9],[-8,-6],[-121,-7],[-16,3],[25,-25],[31,-14],[23,-20],[7,-3],[15,-4],[96,-43],[63,-10],[77,9],[39,-10],[5,-10],[-9,-19],[17,-3],[18,-8],[33,-25],[-2,-1],[-4,-4],[4,-1],[3,-3],[3,-4],[-1,-6],[-4,-3],[-33,-1],[-7,-6],[-2,-12],[2,-1],[5,-3],[0,-9],[8,-4],[22,-4],[10,1],[5,-1],[12,-11],[-5,-8],[-7,-1],[-8,1],[-7,0],[-30,-25],[-8,-10],[-7,-3],[-6,-1],[-6,-3],[-5,-7],[4,-1],[10,-3],[4,1],[13,6],[29,1],[8,-4],[0,-4],[-8,-1],[-35,-21],[-32,-3],[-5,1],[-15,8],[-5,0],[-4,-2],[-8,-7],[-10,-5],[-32,-3],[-11,7],[-22,31],[-11,7],[-10,2],[-68,30],[0,10],[6,7],[15,7],[-11,10],[-106,34],[-80,66],[-19,6],[-35,-5],[14,-12],[5,-8],[10,-6],[19,-26],[7,-6],[-5,-6],[-10,-1],[-18,3],[10,-11],[36,-9],[33,-16],[9,-7],[11,-11],[9,-4],[16,0],[16,-14],[10,-17],[7,-14],[2,-2],[5,-2],[13,-14],[16,-12],[4,-5],[0,-10],[-2,-10],[-1,-10],[3,-11],[2,-1],[4,1],[3,-1],[2,-4],[2,-10],[2,-5],[3,-3],[2,-3],[4,-2],[18,-4],[5,-4],[2,-4],[3,-8],[3,-4],[0,-9],[3,-8],[2,-8],[-3,-9],[1,-9],[8,-7],[15,-7],[10,-7],[21,-31],[19,-22],[4,0],[4,1],[9,11],[42,15],[13,15],[1,14],[-6,14],[-14,19],[-6,12],[-2,11],[-2,11],[-4,12],[-10,17],[-2,6],[1,8],[4,0],[5,-4],[5,-4],[29,-43],[29,-29],[5,-11],[-1,-7],[-1,-6],[-1,-6],[1,-8],[4,-9],[5,-4],[11,-4],[49,-40],[-8,-3],[-8,1],[-51,25],[-4,-2],[-12,-9],[-20,-6],[-22,-12],[-36,2],[-16,-5],[-12,-8],[-10,-9],[-2,-12],[6,-22],[9,-15],[14,-3],[53,14],[8,-1],[5,-4],[6,-12],[4,-6],[9,-9],[5,-6],[1,-7],[0,-8],[-5,-10],[0,-7],[3,-6],[14,-7],[5,-5],[2,-6],[3,-13],[6,-17],[7,-24],[3,-11],[9,-13],[11,-10],[12,-8],[34,-14],[7,-6],[3,-4],[7,-11],[3,-5],[3,-5],[1,-7],[0,-6],[1,-6],[0,-3],[0,-3],[0,-3],[2,-3],[5,-5],[5,-6],[-7,-12],[-8,-10],[-6,-4],[-11,-4],[-6,-6],[67,14],[21,-10],[-3,-1],[-1,-4],[-1,-5],[-1,-6],[10,2],[17,8],[9,2],[5,0],[4,-2],[7,-6],[7,-9],[3,-3],[5,0],[-2,-12],[2,-6],[11,-7],[6,-10],[-2,-8],[-6,-6],[-7,-1],[37,-17],[46,-8],[3,-2],[3,-5],[1,-4],[1,-9],[0,-3],[6,-5],[28,-7],[8,1],[8,4],[7,8],[4,11],[0,7],[0,9],[0,10],[2,7],[6,7],[7,2],[5,-4],[3,-11],[1,-6],[3,-5],[4,-7],[1,-11],[3,-14],[14,-21],[2,-16],[-1,-7],[-4,-12],[0,-7],[2,-7],[6,-4],[37,-10],[25,0],[26,7],[47,34],[42,47],[17,31],[32,75],[13,20],[-4,13],[2,8],[5,5],[9,2],[10,-1],[5,2],[2,7],[-2,7],[-3,4],[-5,2],[-3,0],[6,15],[14,9],[25,4],[55,-8],[-4,5],[-5,4],[-53,14],[-6,7],[2,15],[5,13],[17,37],[3,7],[0,5],[0,5],[1,7],[1,8],[6,16],[6,24],[4,11],[26,51],[13,35],[5,12],[77,119],[25,25],[24,12],[26,4],[29,-3],[22,11],[20,3],[31,-8],[22,-22],[23,-20],[4,-31],[-14,27],[-21,17],[-20,19],[-15,9],[-20,0],[-25,-13],[-2,-13],[-18,4],[-20,-5],[-6,-12],[0,-6],[2,-9],[7,-11],[2,-9],[-19,-3],[-5,-4],[-4,-5],[-1,-9],[1,-11],[4,-5],[49,-21],[22,-8],[9,-20],[15,-22],[3,-4],[2,-7],[2,-8],[1,-6],[4,-5],[11,-11],[76,-53],[62,-32],[43,-7],[29,-15],[72,-17],[89,4],[20,15],[7,2],[7,-1],[36,-21],[1,-4],[-2,-9],[-8,-11],[-10,-8],[-6,-10],[5,-20],[2,13],[6,14],[7,12],[6,8],[7,14],[-5,9],[-9,9],[-6,14],[17,2],[6,3],[0,19],[8,12],[12,7],[11,2],[12,6],[27,19],[12,-2],[8,-11],[4,-1],[7,6],[8,11],[4,3],[6,2],[8,-1],[23,-12],[29,0],[-4,10],[-6,5],[-13,6],[10,10],[12,6],[35,7],[21,11],[101,7],[88,-31],[39,-4],[20,-10],[1,-25],[-2,0],[8,-1],[4,-4],[1,-6],[-3,-13],[7,1],[4,6],[4,8],[4,7],[6,6],[7,3],[7,2],[8,-1],[16,-4],[7,-5],[8,-7],[17,-24],[8,-5],[18,-4],[8,-5],[8,-7],[7,-4],[40,-8],[16,-9],[2,-4],[-3,-5],[-7,-6],[13,-4],[19,8],[10,-9],[4,-3],[12,-3],[12,-1],[-2,-5],[-2,-4],[-7,-5],[-2,-6],[3,-5],[5,-3],[3,0],[-5,-7],[-11,3],[-6,-4],[8,-6],[26,-11],[2,-7],[7,-2],[9,0],[7,3],[24,23],[-1,-7],[-2,-5],[-3,-5],[-3,-4],[4,-3],[5,0],[5,3],[5,0],[-5,-11],[-8,-6],[-9,-3],[-8,0],[-5,1],[-10,6],[-4,1],[-8,-3],[-2,-3],[2,-4],[8,-5],[17,-3],[33,-17],[7,-2],[-1,-15],[5,-9],[9,-4],[8,0],[4,2],[3,3],[2,4],[4,5],[5,3],[6,0],[12,-5],[-2,-1],[-6,-7],[9,-5],[8,3],[9,5],[10,1],[-3,10],[-5,7],[-5,5],[-6,2],[4,5],[-7,5],[-8,2],[-15,1],[2,4],[-5,-1],[-16,-11],[3,8],[-2,5],[-5,2],[-10,2],[-5,2],[-5,4],[-5,5],[9,4],[8,6],[9,4],[38,-17],[27,0],[6,3],[1,3],[1,5],[2,3],[13,-4],[10,2],[8,7],[7,12],[-8,6],[-61,3],[1,6],[43,18],[6,-1],[11,-6],[16,-5],[15,-1],[11,5],[0,4],[-4,0],[-8,6],[-4,2],[-82,0],[-6,2],[-10,10],[-6,0],[2,4],[2,3],[6,5],[-6,3],[-5,-3],[-5,-5],[-6,-3],[-4,2],[-8,9],[-4,1],[0,4],[11,2],[10,9],[17,22],[14,14],[3,7],[1,5],[0,13],[1,6],[1,20],[17,13],[33,11],[78,8],[-14,-6],[-7,-5],[-5,-9],[-1,-7],[3,-5],[7,-12],[39,8],[3,8],[2,10],[-2,7],[-4,4],[-5,3],[34,22],[10,3],[11,-3],[34,-26],[11,-4],[26,-4],[10,-10],[3,-10],[6,-24],[5,-9],[-2,-4],[4,-7],[10,-11],[5,-6],[-11,-12],[5,-1],[16,-7],[30,0],[12,4],[5,4],[2,4],[1,9],[2,5],[11,17],[6,4],[40,0],[10,-4],[17,-14],[10,-4],[12,10],[21,10],[5,1],[9,-5],[18,0],[10,-4],[3,-2],[5,-2],[4,0],[1,8],[-3,4],[-13,7],[2,3],[3,7],[1,3],[-46,38],[-5,8],[-15,29],[-6,8],[-2,4],[0,11],[-4,17],[-2,22],[-4,5],[3,3],[0,4],[-2,5],[-3,4],[4,6],[7,9],[1,7],[3,9],[6,6],[7,3],[5,1],[-8,5],[-19,1],[-8,8],[-5,9],[-5,6],[-11,9],[-9,4],[-66,6],[0,4],[25,8],[43,-8],[14,3],[14,9],[8,17],[0,11],[-2,12],[-1,13],[4,14],[32,33],[5,12],[7,12],[16,-3],[27,-15],[11,0],[18,3],[17,8],[7,11],[-6,17],[-15,6],[-81,2],[-81,3],[-12,-8],[-24,-22],[8,-6],[27,2],[-7,-7],[-40,-1],[-16,4],[-15,7],[-5,-1],[1,-10],[5,-6],[15,-2],[4,-8],[-15,1],[-14,5],[-15,10],[-16,22],[-10,16],[-2,6],[1,7],[7,10],[1,6],[4,17],[9,14],[18,20],[15,21],[5,3],[2,2],[3,8],[2,2],[3,2],[8,0],[4,2],[32,35],[12,6],[84,3],[63,-14],[76,6],[64,4],[61,21],[23,4],[7,10],[8,7],[38,6],[12,6],[-32,0],[-12,4],[-6,4],[5,4],[4,5],[6,11],[-2,4],[9,16],[0,13],[-6,11],[-10,9],[-13,3],[-6,3],[-10,15],[-51,29],[-2,2],[0,3],[0,7],[0,3],[-5,5],[-12,10],[-4,5],[-1,10],[4,5],[37,3],[15,-5],[15,1],[15,-6],[33,-1],[16,-6],[58,-2],[32,-13],[6,-6],[14,-17],[25,-18],[29,-5],[21,-11],[69,-14],[70,-13],[86,9],[46,-3],[91,-7],[16,-7],[110,7],[32,-7],[29,-13],[101,-11],[65,-4],[73,-19],[75,-8],[80,-12],[79,-12],[84,-35],[68,-14],[46,-2],[41,-17],[39,-8],[20,-15],[88,-28],[15,0],[-3,-5],[-3,-3],[2,3],[-13,-9],[-95,6],[-95,7],[-14,-5],[-103,12],[-61,-3],[-27,-8],[-5,0],[-6,5],[-4,5],[-7,14],[-4,5],[-7,4],[-13,0],[-7,4],[2,4],[-5,3],[-6,0],[-6,-3],[-5,-6],[-4,-3],[-6,4],[-10,12],[-13,5],[-13,2],[-13,-3],[-13,-6],[-39,-29],[-8,-10],[-4,-7],[-1,-5],[-10,-12],[-22,-35],[-3,-10],[-4,-10],[-11,7],[-17,21],[-10,8],[-12,5],[-12,2],[-10,-3],[-5,-5],[-5,-6],[-5,-3],[-6,1],[-5,2],[-18,3],[19,-18],[6,-2],[0,-10],[5,-4],[6,-1],[6,-4],[7,-5],[38,-17],[17,-3],[34,3],[6,3],[14,19],[7,6],[15,6],[55,6],[33,13],[91,5],[85,5],[86,6],[70,2],[92,5],[93,5],[-10,-24],[-33,-26],[-13,-17],[-14,-22],[-51,-57],[-70,-47],[-75,-77],[-9,1],[0,18],[3,7],[8,10],[4,5],[1,8],[-1,7],[-2,5],[0,4],[3,6],[1,4],[0,5],[1,8],[-1,8],[-2,4],[0,3],[4,5],[7,3],[13,-3],[7,0],[7,4],[18,16],[12,5],[6,4],[3,10],[3,5],[18,9],[-6,8],[-24,8],[-1,10],[-8,2],[-16,-4],[-19,1],[-6,-3],[-3,-5],[0,-4],[2,-4],[1,-8],[1,-2],[1,-2],[-2,-3],[-14,-12],[-4,-4],[-1,-5],[-2,-8],[-4,1],[-5,7],[-4,11],[5,7],[2,8],[-1,9],[-5,8],[-8,3],[-10,-1],[-7,2],[-3,12],[4,5],[10,3],[5,5],[-8,9],[-10,6],[-42,16],[-11,-1],[-11,-6],[25,-16],[4,0],[4,3],[3,-1],[2,-7],[0,-2],[-3,-9],[-4,-17],[-25,-41],[-1,-1],[-1,1],[-1,0],[-1,-4],[0,-3],[1,-2],[2,0],[1,-3],[2,-7],[3,-7],[6,-9],[6,-1],[15,4],[12,-6],[2,-13],[1,-14],[4,-12],[-1,-6],[-1,-10],[-1,-4],[-5,-5],[-5,-4],[-6,-2],[-51,-3],[-66,-20],[-6,4],[-14,17],[-26,16],[-23,4],[-16,8],[-9,12],[-5,3],[-3,-8],[0,-7],[-1,-6],[0,-6],[1,-7],[4,-5],[10,-8],[4,-5],[10,-7],[35,-14],[8,-8],[-6,-18],[-12,-5],[-14,-2],[-20,-18],[-28,7],[-12,-6],[10,-17],[-6,-6],[2,-20],[-4,-14],[8,10],[9,5],[9,0],[7,-11],[-2,-4],[5,0],[10,10],[6,2],[7,-2],[14,-9],[7,-1],[7,2],[6,3],[7,2],[7,-3],[1,-2],[3,-7],[2,-2],[3,-2],[3,0],[3,0],[3,2],[63,46],[45,-7],[27,11],[26,17],[8,3],[16,0],[8,3],[17,13],[16,7],[28,35],[21,11],[6,2],[3,2],[2,6],[1,8],[2,6],[5,6],[19,12],[33,43],[9,19],[3,3],[11,5],[120,129],[13,9],[13,5],[13,2],[24,-5],[29,9],[64,-8],[23,8],[105,-9],[77,-8],[78,-17],[78,-18],[112,-39],[68,-22],[17,-13],[10,-1],[4,-2],[2,-3],[2,-7],[2,-2],[57,-60],[26,-35],[6,-11],[2,-17],[-5,-16],[-10,-11],[-86,-44],[-11,-1],[-11,6],[-21,24],[-21,17],[-20,27],[-11,4],[-11,-4],[-11,-9],[2,-2],[3,-2],[3,0],[3,0],[-7,-12],[-18,-10],[-7,-7],[-5,-8],[-8,-18],[-5,-6],[-12,-3],[-35,15],[-17,2],[-14,9],[-5,1],[-4,0],[0,-4],[16,-18],[6,-2],[35,-4],[0,-4],[-4,-5],[-4,-9],[-2,-10],[0,-9],[-26,-1],[-12,-3],[-11,-12],[49,-5],[6,2],[6,4],[10,12],[5,3],[5,0],[18,-8],[36,-1],[13,-6],[115,-17],[19,10],[7,2],[5,-2],[6,-4],[5,-1],[8,8],[3,-5],[6,-12],[5,-6],[18,-10],[9,-12],[-4,-8],[-12,-4],[-11,-1],[1,4],[1,8],[0,4],[-9,1],[-8,-6],[-3,-10],[4,-15],[4,-8],[-1,-4],[-9,-3],[-18,-16],[1,-5],[1,-5],[-1,-5],[-1,-5],[7,5],[62,26],[45,4],[7,-2],[7,-5],[-2,0],[-4,-4],[6,-3],[6,1],[19,10],[5,0],[12,-4],[28,5],[15,-2],[10,-15],[0,-14],[-5,-12],[-7,-10],[-7,-6],[-9,-5],[-4,-5],[-2,-7],[-2,-7],[-4,-8],[2,-3],[-5,-8],[-6,-2],[-5,-1],[-7,-2],[-17,-10],[-10,-3],[-4,-3],[-9,-9],[-7,-4],[-13,-3],[-7,-2],[-32,-27],[-16,-4],[-3,-3],[1,-4],[5,-4],[6,-1],[7,2],[14,6],[27,28],[11,5],[35,5],[42,32],[16,24],[11,6],[23,2],[-16,-13],[-6,-9],[-5,-14],[-4,-20],[-4,-9],[-5,-4],[10,5],[17,19],[19,9],[18,20],[9,4],[49,12],[10,-3],[21,-14],[96,-19],[17,-10],[11,-3],[5,-3],[3,-5],[5,-10],[3,-4],[5,-4],[9,-5],[5,-5],[10,-13],[4,-3],[-4,-8],[13,-17],[29,-23],[12,-19],[11,-13],[32,-22],[9,-20],[0,-11],[-6,-5],[-15,-4],[-112,4],[7,-8],[80,-19],[67,-38],[82,-19],[12,-12],[-2,-22],[10,17],[10,9],[51,0],[53,0],[89,14],[5,2],[-3,7],[9,5],[31,-1],[-2,-4],[46,6],[12,-13],[75,19],[68,29],[17,13],[70,12],[69,11],[81,18],[125,16],[8,-2],[4,-7],[-1,-7],[-6,-12],[-1,-6],[2,-6],[4,-8],[4,-2],[2,6],[0,5],[1,8],[1,6],[2,3],[4,3],[7,16],[4,6],[7,4],[85,16],[97,-8],[111,4],[83,-6],[84,-5],[83,0],[15,-6],[15,2],[22,-8],[60,-4],[53,-22],[28,-3],[25,-15],[42,-7],[100,-41],[99,-41],[125,-94],[43,-53],[50,-96],[8,-28],[8,-23],[4,-14],[2,-15],[1,-12],[-5,-15],[-19,-17],[-7,-11],[-10,-30],[-6,-7],[-10,-1],[-45,11],[-14,-7],[8,-1],[7,-4],[15,-12],[8,-1],[18,2],[7,-5],[-13,-16],[-5,-10],[-1,-14],[1,-5],[3,-5],[2,-5],[-2,-8],[-4,-4],[-17,-8],[-7,-6],[-7,-9],[-12,-21],[-1,-12],[6,-11],[15,-20],[-10,0],[5,-4],[8,-6],[4,-4],[3,-5],[1,-3],[-1,-3],[-1,-5],[-2,-8],[-6,-7],[18,13],[8,3],[7,-1],[70,-41],[9,-9],[5,-1],[-10,11],[-3,5],[32,-6],[10,-6],[5,-5],[3,-6],[0,-8],[-1,-13],[18,12],[18,6],[19,1],[56,-13],[36,-17],[5,-1],[9,7],[5,0],[3,-2],[2,-5],[2,-4],[2,-5],[13,-15],[3,-10],[-4,-9],[-9,-13],[-4,-13],[-2,-16],[-5,-17],[5,-13],[1,-5],[0,-8],[1,-9],[3,-5],[4,-4],[4,-9],[1,-6],[1,-14],[2,-6],[3,-6],[2,-6],[2,-7],[0,-8],[-1,-7],[-2,-7],[-2,-4],[-1,-4],[2,-7],[6,-15],[2,-8],[-1,-19],[-6,-10],[-8,-8],[-6,-16],[27,-21],[63,-16],[15,-9],[14,-13],[7,-14],[-2,-11],[-4,-12],[-14,-26],[-9,-10],[-4,-6],[-2,-6],[-2,-13],[-1,-5],[-3,-6],[-8,-10],[-4,-7],[-1,0],[-1,-1],[-1,-4],[0,-3],[1,-7],[-1,-30],[-1,-15],[-3,-6],[-8,-5],[-7,-12],[-11,-28],[-21,-27],[-25,-4],[-51,6],[6,-14],[12,-7],[24,-3],[38,7],[14,11],[7,2],[4,3],[4,5],[30,57],[4,4],[16,11],[5,6],[-12,19],[-4,12],[4,7],[3,10],[1,4],[2,4],[29,29],[13,20],[15,9],[7,7],[5,9],[0,7],[-1,8],[-1,13],[0,19],[-1,8],[-2,9],[-5,11],[-11,14],[-4,12],[-1,5],[1,9],[-1,4],[-9,19],[5,8],[0,8],[-4,7],[-5,7],[-10,10],[18,38],[-2,9],[-8,11],[-3,7],[11,-1],[5,3],[3,6],[-2,6],[-8,9],[-4,5],[11,11],[35,18],[8,9],[13,23],[7,8],[7,3],[6,0],[6,3],[10,14],[5,3],[6,1],[17,-6],[11,1],[22,14],[-3,13],[4,6],[16,5],[11,11],[3,1],[5,1],[4,2],[8,5],[-5,1],[-2,4],[1,4],[4,6],[5,3],[6,-1],[6,-3],[6,-2],[7,3],[5,7],[3,10],[0,13],[4,0],[13,-12],[5,-3],[60,3],[10,-2],[20,-12],[11,-2],[70,18],[19,14],[21,7],[38,0],[14,-8],[12,2],[5,-1],[13,-10],[5,-2],[29,-2],[53,6],[33,26],[25,15],[12,6],[13,-3],[10,-6],[3,-4],[1,-4],[2,-9],[1,-3],[28,-25],[22,-9],[35,-28],[27,-10],[82,-22],[121,19],[113,-2],[16,-7],[16,1],[43,-16],[24,-17],[12,-4],[77,3],[77,4],[18,-12],[1,-4],[-5,-7],[59,0],[13,4],[79,57],[79,57],[8,11],[14,16],[24,19],[12,3],[24,-1],[7,-3],[6,-4],[12,-15],[13,-10],[6,-3],[7,-1],[14,3],[6,0],[7,-7],[-19,-11],[-7,-1],[-3,-3],[-15,-17],[11,-12],[38,-17],[33,-22],[6,-6],[3,-8],[1,-8],[-1,-5],[-2,-4],[-2,-8],[0,-6],[1,-12],[-1,-6],[-2,-12],[-11,-37],[8,-16],[3,-9],[2,-11],[-2,-12],[3,-13],[7,-12],[6,-8],[11,-8],[12,-5],[79,-4],[54,-15],[32,-22],[20,-6],[21,-16],[11,-5],[42,-5],[19,-12],[13,-32],[4,-29],[0,-52],[6,-24],[8,-14],[11,-10],[28,-16],[101,15],[101,15],[7,-4],[6,-6],[7,-3],[19,-4],[16,-17],[10,-5],[7,-6],[4,-2],[-21,26],[-4,11],[3,0],[2,2],[3,6],[-29,4],[-5,8],[2,11],[7,6],[15,7],[18,14],[11,5],[8,-3],[0,-4],[-2,-8],[0,-4],[2,-5],[9,-11],[0,-7],[1,-6],[3,-5],[4,-2],[1,-2],[0,11],[-3,11],[-2,10],[0,6],[1,9],[1,5],[-2,5],[-6,8],[-2,5],[22,8],[38,23],[7,8],[5,10],[5,13],[1,3],[5,4],[4,-2],[6,-9],[10,-6],[30,6],[0,4],[-24,0],[-12,6],[-5,16],[-1,14],[-3,12],[-4,11],[-6,7],[-11,5],[-6,4],[-2,8],[1,5],[6,12],[3,5],[1,7],[-1,5],[0,4],[0,6],[-4,27],[-7,13],[-8,12],[-17,17],[-10,5],[-4,4],[-2,8],[1,17],[-1,5],[-2,9],[-4,3],[-5,3],[-4,5],[-2,8],[-1,5],[1,6],[0,8],[-3,12],[-8,15],[-9,14],[-6,6],[-21,1],[-12,-4],[-50,-10],[-30,4],[-5,17],[8,16],[12,28],[19,14],[15,7],[22,8],[18,2],[17,8],[9,6],[-6,12],[-1,4],[-1,2],[-3,2],[-1,4],[-1,10],[0,2],[1,3],[2,9],[0,21],[1,6],[-1,4],[-8,16],[-2,8],[2,15],[2,13],[1,13],[-3,14],[4,6],[3,10],[2,11],[-1,9],[-8,8],[-34,5],[7,12],[14,5],[15,-2],[21,-13],[119,-21],[77,-5],[64,-20],[111,-20],[13,-7],[91,-7],[91,-6],[15,7],[6,-2],[12,-8],[6,-2],[3,-21],[17,-14],[88,-35],[16,-16],[-4,-1],[-6,-4],[-5,-5],[-1,-4],[6,-7],[6,0],[13,5],[28,-1],[14,5],[12,12],[4,7],[1,3],[-2,4],[-9,11],[-11,10],[-16,7],[-12,10],[-13,8],[-13,-5],[-3,-6],[-3,-7],[-3,-5],[-3,4],[-1,7],[2,5],[2,4],[4,4],[12,8],[13,4],[51,4],[67,-36],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[15,-11],[3,-5],[11,1],[-5,6],[-5,6],[12,6],[14,-8],[13,-11],[12,-4],[6,4],[10,12],[5,4],[7,3],[12,2],[51,-5],[21,5],[12,-7],[115,-12],[84,-6],[26,2],[65,11],[23,4],[60,4],[2,-6],[-28,-4],[-26,-4],[20,-8],[26,-5],[21,-9],[16,-16],[10,-2],[17,-8],[20,-4],[21,0],[20,8],[4,12],[0,11],[-4,11],[-12,11],[-26,0],[-24,-2],[-21,4],[-15,7],[-3,7],[24,0],[21,-3],[26,3],[13,5],[12,0],[4,-4],[6,-10],[4,-5],[21,-19],[5,-7],[3,-10],[-4,-1],[-7,0],[-3,-7],[3,-8],[7,-1],[13,3],[53,-14],[12,-10],[21,-9],[4,-4],[15,-16],[12,-8],[26,-4],[41,-20],[52,-11],[54,1],[79,-28],[11,-11],[-11,4],[-6,-1],[-3,-7],[19,-8],[20,1],[6,-1],[35,-19],[72,-22],[15,-11],[6,-1],[4,1],[15,11],[-3,7],[-4,4],[7,4],[18,0],[113,-43],[11,-12],[17,-4],[6,-3],[7,-5],[20,-9],[16,-13],[5,-3],[0,-4],[-40,-4],[-7,2],[-3,5],[-2,7],[-5,8],[-7,6],[-7,3],[-16,1],[-15,-4],[-4,2],[-2,5],[-2,3],[-1,0],[-3,-2],[2,-3],[1,-5],[1,-5],[-5,-24],[6,-11],[10,-6],[10,-3],[32,9],[27,-9],[7,0],[23,9],[54,-15],[12,-9],[15,-20],[83,-68],[83,-67],[-16,2],[-14,6],[-48,43],[-13,5],[-15,12],[-8,1],[7,-12],[15,-9],[7,-7],[3,-9],[4,-11],[4,-9],[11,-6],[8,-8],[4,-2],[-99936,-5],[0,-2318]],[[56324,82660],[-19,-8],[-53,4],[-64,4],[-78,5],[-77,5],[-120,8],[-100,7],[-80,5],[-80,5],[-108,8],[-57,3],[-22,2],[-14,6],[-5,6]],[[55447,82720],[4,2],[0,5],[30,34],[27,42],[15,35],[1,2],[1,1],[1,0],[1,3],[1,3],[-1,7],[0,2],[2,5],[2,4],[5,10],[7,23],[1,9],[0,14],[-2,12],[-8,30],[-1,5],[0,8],[4,16],[2,11],[4,10],[6,7],[5,3],[7,-10],[3,-2],[12,3],[19,-1],[17,4],[45,-7],[11,3],[21,14],[42,43],[49,76],[3,3],[29,60]],[[55830,83203],[0,-1],[-11,-10],[-3,-3],[1,-2],[0,-1],[-2,-4],[-6,-2],[-3,-5],[1,-4],[-3,-1],[-2,-3],[0,-4],[-1,-4],[-2,-4],[-5,-6],[-2,-4],[-5,-13],[-3,-6],[-14,-17],[-24,-38],[-36,-40],[-3,-3],[-2,0],[-2,-2],[-1,-5],[1,-3],[2,-5],[3,-4],[2,-3],[5,-1],[52,5],[12,-4],[15,-17],[30,-7],[20,3],[3,3],[1,3],[3,-3],[3,-4],[1,-2],[3,1],[2,2],[1,3],[1,2],[24,8],[11,7],[3,14],[-2,11],[-4,19],[-7,73],[-1,4],[0,3],[-2,12],[-1,2],[0,13],[1,5],[1,4],[4,3],[2,-1],[2,-4],[2,-2],[4,-1],[3,1],[3,2],[2,4],[1,5],[1,7],[-1,7],[-1,3]],[[59722,77551],[12,-35],[80,-177],[41,-43],[10,-2],[50,21],[6,6],[7,12],[1,6],[1,5],[1,4],[4,2],[1,2],[5,9],[1,2],[0,11],[3,11],[4,9],[4,4],[7,-1],[1,-6],[-3,-9],[-1,-10],[2,-7],[5,-6],[21,-19],[11,-6],[10,3],[8,16],[4,18],[1,3],[7,7],[6,9],[6,3],[32,0],[4,3],[4,6],[5,-2],[2,-8],[-3,-10],[4,0],[3,3],[2,3],[3,2],[5,-2],[9,-8],[6,-2],[16,5],[6,-1],[7,-14],[4,-7],[5,2],[5,8],[4,1],[5,-3],[4,-8],[5,-20],[2,-14],[-2,-6],[-9,-4],[-4,0],[-3,1],[-8,7],[-7,2],[-5,-2],[-4,-6],[-1,-12],[1,-4],[2,-3],[1,-3],[-2,-5],[-3,-2],[-6,0],[-2,-2],[-4,-8],[-3,-12],[-2,-13],[-3,-34],[0,-13],[2,-13],[7,-13],[4,-8],[-1,-9],[-3,-6],[-20,-11],[-25,-2],[-3,-1],[-3,-3],[-1,-3],[-2,-10],[-1,-3],[-5,-2],[-25,8],[-16,15],[0,-5],[-8,6],[-7,-9],[-4,-14],[-4,-7],[-22,2],[-19,-5],[-5,4],[-3,13],[-2,6],[-8,15],[-3,5],[-18,17],[-20,12],[-12,3],[-12,0],[-12,-3],[-10,-8],[-15,-18],[-2,-5],[-1,-6],[-1,-5],[-1,-5],[1,-6],[2,-3],[8,-5],[0,-4],[-4,-2],[-9,0],[-4,-2],[-4,-7],[0,-7],[2,-18],[-14,16],[-1,-3],[-3,-3],[-2,-3],[-6,7],[-5,-5],[-7,-20],[-5,-6],[-12,-5],[-5,-3],[-6,-19],[-6,-26],[-8,-19],[-12,3],[-3,6],[-2,9],[-4,7],[-5,3],[-10,0],[-2,0],[-4,-3],[-2,-3],[-2,-3],[-2,-3],[-5,-1],[-9,3],[-4,-4],[-5,-3],[-19,5],[-10,-6],[-19,-20],[-11,-7],[-22,-7],[-9,-6],[-7,-11],[0,1],[0,2],[-1,1],[-1,-1],[-11,-23],[-1,-5],[-3,-5],[-10,-25],[-10,-43],[-3,-8],[-2,-1],[-7,1],[-4,0],[-3,1],[-1,-1],[-1,-2],[0,-2],[0,-2],[-1,-2],[-6,-14],[-3,-5],[-13,-4],[-4,-7],[-2,-9],[-4,-9],[-3,-5],[-10,-10],[-4,-2],[-6,-1],[-30,-22],[-5,-1],[-7,1],[-17,11],[-4,0],[-6,-3],[-3,-1],[-18,1],[-6,2],[-21,15],[-3,5],[-2,11],[-2,6],[-8,16],[-3,4],[-5,0],[-6,-3],[-6,0],[-5,6],[-4,5],[-29,32],[-3,8],[0,6],[0,1],[1,-2],[9,3],[2,1],[6,8],[3,1],[6,-1],[3,0],[2,3],[4,2],[14,0],[6,4],[-4,2],[-9,3],[-3,3],[0,9],[3,7],[3,6],[2,6],[1,10],[0,6],[-3,12],[-2,17],[-1,9],[-3,7],[3,3],[1,2],[0,3],[2,12],[3,11],[4,7],[10,6],[3,7],[2,11],[1,11],[0,14],[-3,23],[-1,10],[0,3],[-5,15],[-1,6],[-1,15],[-5,24],[-7,14],[-19,18],[-15,22],[-5,3],[-11,-3],[-11,-6],[-9,-9],[-7,-2],[-3,5],[-2,9],[-6,4],[-13,6],[-4,6],[-10,18],[-7,6],[-2,5],[-3,9],[-3,3],[-5,3],[-2,2],[-18,24],[-10,10],[-12,7],[-41,6],[-6,-2],[-5,-5],[-10,-16],[-4,-3],[-19,0],[-6,3],[-10,8],[-6,1],[-8,32],[-1,8],[4,16],[8,14],[33,37],[5,3],[7,0],[5,3],[4,4],[4,4],[3,5],[2,4],[2,3],[4,1],[3,-1],[5,-3],[3,-1],[4,2],[1,5],[-1,5],[-1,5],[1,5],[1,3],[2,4],[8,13],[20,20],[62,43],[4,4],[1,8],[-1,2],[-3,2],[-2,3],[1,7],[2,3],[3,-3],[4,-9],[10,-8],[10,2],[20,19],[10,6],[2,4],[8,14],[4,2],[12,12],[4,2],[2,-1],[5,-5],[3,-2],[3,1],[7,3],[7,12],[5,6],[4,2],[2,1],[3,-2],[3,-2],[3,-3],[1,-4],[1,-3],[3,0],[6,1],[1,7],[-1,14],[1,11],[4,-3],[5,4],[9,4],[5,4],[-5,7],[-5,4],[-16,6],[-7,-1],[-4,-2],[-1,-4],[-2,-1],[-4,3],[5,11],[3,7],[-1,3],[-3,2],[-1,4],[2,6],[2,5],[-1,5],[-3,20],[0,7],[3,6],[2,7],[-1,9],[-4,12]],[[0,89003],[0,2319],[80,-38],[37,-6],[10,1],[8,7],[-6,6],[-2,5],[-1,5],[2,9],[5,0],[5,-3],[5,-4],[4,-7],[6,-16],[3,-6],[6,-4],[9,-10],[8,-5],[6,-7],[-4,-1],[-4,-1],[2,-7],[0,-4],[0,-5],[8,-2],[2,-8],[16,-5],[16,4],[9,-1],[1,-5],[11,-7],[15,1],[39,-11],[25,-11],[46,-43],[22,-22],[23,-24],[9,-6],[-8,-3],[-9,3],[-25,27],[-5,4],[-9,10],[-11,8],[-3,-3],[3,-6],[2,-8],[-1,-8],[3,-6],[-2,-9],[1,-7],[-1,-7],[2,-9],[3,-10],[0,-5],[8,-4],[15,-7],[44,-9],[9,-5],[16,-13],[9,-2],[17,2],[8,-2],[16,-13],[41,-15],[6,-7],[4,-27],[4,-11],[6,-7],[5,-2],[-4,-4],[-9,-16],[-17,-16],[-4,-6],[0,-4],[4,-2],[17,0],[5,2],[4,6],[-1,4],[0,5],[1,3],[3,3],[13,5],[5,0],[4,1],[5,5],[10,8],[25,-1],[8,11],[-70,46],[-70,46],[-11,3],[-14,8],[-6,8],[-7,2],[-3,1],[-2,6],[-2,4],[-2,2],[93,-57],[92,-58],[12,-16],[47,-25],[2,-1],[-31,10],[-9,-3],[0,-3],[1,-6],[1,-3],[-38,-12],[4,-6],[11,-3],[9,-11],[11,-2],[4,-7],[-3,-5],[-1,-4],[1,-2],[3,-1],[4,2],[41,29],[19,2],[15,-3],[38,-23],[8,-4],[-5,-1],[-13,6],[-6,2],[-1,-5],[3,-7],[8,-10],[-4,-3],[-2,-1],[8,-16],[14,-1],[28,9],[-9,5],[-3,3],[9,-1],[39,-26],[32,-20],[56,-36],[15,-10],[-8,-2],[-36,19],[2,-7],[-10,-7],[-7,-8],[1,-5],[-4,-8],[2,-7],[22,-11],[11,-9],[25,-7],[5,-3],[4,-13],[11,-4],[26,4],[7,-1],[40,3],[8,2],[-22,12],[-19,12],[-19,14],[-18,8],[-11,7],[-1,7],[37,-21],[35,-23],[52,-26],[29,-14],[17,-6],[-2,-3],[-21,5],[-12,-1],[-10,-12],[-9,-15],[-6,-18],[10,-10],[10,-7],[5,-7],[-6,-5],[-7,1],[-23,0],[-16,-2],[-18,-1],[-8,-9],[-4,-8],[16,-2],[5,-14],[17,-14],[23,-11],[28,3],[13,4],[14,0],[12,-5],[-1,-10],[-7,-6],[-1,-9],[13,-2],[27,-3],[9,2],[3,-8],[4,6],[8,6],[4,9],[-1,8],[-10,4],[-5,9],[-11,7],[-18,0],[-12,-4],[-6,3],[2,9],[4,10],[7,13],[-11,9],[-17,4],[-16,-2],[-1,3],[25,12],[19,12],[5,6],[4,11],[-1,9],[86,-53],[37,-21],[26,-12],[6,-5],[1,-7],[-9,-1],[-5,-6],[4,-8],[2,-9],[10,-12],[4,-7],[-2,-9],[6,-8],[28,-27],[-5,1],[-21,19],[-2,-1],[3,-7],[3,-9],[4,-6],[-2,-8],[3,-5],[-1,-10],[0,-7],[5,-5],[-3,-3],[-8,-1],[-6,-1],[-2,-6],[0,-7],[-2,-6],[-28,-7],[-5,-15],[15,-8],[6,0],[9,-1],[9,-1],[11,-1],[8,-1],[7,3],[8,4],[8,4],[7,5],[7,6],[3,7],[1,4],[5,7],[0,6],[7,6],[-5,8],[-10,8],[-10,5],[-6,12],[32,-21],[10,-11],[4,-8],[-2,-9],[2,-10],[9,3],[9,-1],[12,-12],[8,-21],[6,-15],[-12,-3],[-5,-2],[-7,-3],[1,-5],[-6,-4],[0,-7],[1,-3],[0,-3],[-6,-5],[4,-6],[-5,-3],[0,-5],[-3,-6],[4,-9],[-2,-9],[0,-15],[-1,-11],[-1,-9],[-4,-10],[-2,-10],[3,-12],[1,-8],[-2,-10],[5,-7],[8,-8],[-3,-7],[5,-13],[12,-7],[5,-16],[25,-13],[-7,-2],[-9,-3],[-1,-6],[2,-6],[6,-7],[1,-8],[2,-12],[4,-12],[0,-14],[3,-12],[3,-10],[0,-17],[-6,-9],[-1,17],[-14,4],[-3,-4],[-7,-4],[-4,-5],[-3,-5],[-3,-9],[-6,-5],[-10,-2],[-4,-6],[-10,1],[-9,-3],[1,-10],[12,-8],[7,-5],[8,-9],[4,-4],[0,-7],[15,-10],[29,4],[26,-15],[22,-17],[17,-3],[9,-5],[1,-18],[10,-16],[-6,0],[-12,-9],[-1,-8],[1,-16],[-2,-10],[3,-18],[6,-9],[12,-1],[0,-10],[-7,6],[-6,-3],[-5,-11],[5,-8],[-7,-18],[14,-6],[16,4],[14,15],[2,14],[0,10],[-20,-3],[20,10],[7,10],[10,10],[20,6],[0,10],[3,9],[-3,10],[-16,-2],[-1,5],[6,12],[11,-8],[9,-1],[14,6],[18,2],[13,-5],[5,-10],[-6,-12],[-1,-12],[4,-7],[3,-6],[5,-10],[0,-8],[1,-7],[-6,-2],[-7,-5],[-7,-6],[-5,-8],[-3,-12],[3,-10],[-3,-10],[0,-9],[4,-10],[5,0],[8,5],[4,11],[7,10],[13,11],[19,7],[5,8],[-14,6],[-11,0],[-2,11],[10,5],[10,-1],[14,1],[9,5],[10,10],[-4,17],[1,7],[6,8],[0,9],[-6,3],[-4,7],[-23,9],[1,10],[-7,11],[-12,5],[-11,2],[-9,0],[-8,6],[-14,0],[-9,0],[-11,5],[-7,5],[-9,-8],[-16,17],[-14,3],[19,14],[32,15],[15,7],[16,13],[11,11],[2,12],[-3,11],[-1,11],[1,9],[1,7],[-1,8],[0,9],[-4,7],[1,11],[-3,10],[-3,11],[-4,11],[-7,12],[-5,9],[2,8],[0,9],[0,11],[-3,8],[-9,9],[-14,0],[-14,3],[-8,-1],[-14,-5],[-3,3],[13,9],[5,10],[-1,11],[-12,5],[-14,7],[-35,-12],[-18,-5],[-6,2],[39,23],[-12,1],[-44,-16],[-17,3],[2,12],[10,10],[105,2],[81,0],[43,-4],[27,8],[2,17],[11,-6],[16,-9],[19,-7],[9,-3],[-2,-3],[-7,0],[-4,-4],[0,-11],[9,-8],[9,2],[1,8],[-1,9],[5,8],[6,2],[29,-7],[40,-9],[20,-5],[-3,-3],[-5,-2],[-14,-1],[-16,3],[-8,7],[-3,1],[-7,0],[-1,-4],[3,-4],[1,-5],[1,-5],[8,-3],[9,-1],[14,-6],[1,-3],[-1,-8],[-7,-2],[-8,3],[-11,0],[-8,0],[-8,-4],[-2,-9],[-2,-9],[3,-9],[3,-3],[-2,-6],[-3,-4],[0,-6],[5,-6],[6,-9],[-8,-4],[-7,-6],[1,-10],[0,-8],[4,-5],[17,3],[17,-1],[11,-1],[11,8],[4,5],[-3,4],[-7,3],[-10,4],[-5,4],[1,7],[0,6],[0,5],[-11,1],[-3,4],[5,5],[13,-2],[2,11],[-2,10],[-1,6],[3,5],[9,2],[10,6],[3,6],[3,-2],[-2,-8],[-2,-5],[3,-9],[4,-11],[16,-10],[30,-8],[29,-6],[32,-5],[14,4],[3,9],[-3,9],[13,-1],[5,-7],[13,-3],[26,8],[14,9],[-38,27],[-44,8],[-53,11],[-23,7],[-8,-2],[-10,-5],[-8,2],[-3,6],[2,7],[11,2],[55,-4],[15,-5],[26,-6],[65,-16],[59,-15],[39,-6],[20,5],[15,4],[-4,4],[3,4],[10,-5],[2,-6],[19,-6],[10,1],[18,-1],[22,-13],[3,-12],[-11,-7],[-7,-10],[7,-18],[11,-12],[19,-12],[38,-20],[9,2],[11,-4],[6,-16],[-12,-6],[-4,-12],[7,-24],[25,-20],[54,-43],[26,-15],[21,-16],[9,0],[5,-3],[9,-11],[9,-5],[10,-11],[5,-3],[3,-3],[7,-14],[11,-8],[9,-11],[14,-22],[5,-5],[19,-5],[31,-17],[-5,-5],[-8,-3],[-15,-5],[-8,-6],[-2,-8],[0,-9],[-5,-12],[-14,1],[-18,7],[8,-8],[8,-6],[24,0],[6,11],[8,9],[8,8],[11,8],[11,4],[10,0],[12,-1],[16,-9],[9,-6],[8,-10],[3,-15],[10,-18],[-6,-7],[-9,-2],[-12,-2],[-8,7],[-8,-4],[-7,0],[-14,4],[32,-22],[24,-6],[6,6],[8,12],[11,0],[20,-14],[7,0],[7,3],[2,8],[-5,4],[-10,6],[-12,5],[-8,2],[14,-2],[11,-3],[13,-9],[26,-7],[26,-15],[3,0],[2,-2],[0,-4],[0,-4],[6,-8],[7,-10],[3,-10],[-4,-7],[-6,-11],[-5,-9],[-6,-10],[-16,1],[-14,-2],[-11,11],[-7,12],[-25,-2],[-20,-11],[-25,-10],[-26,-29],[-29,-11],[-9,-6],[-15,-11],[-23,-22],[-27,-5],[-5,-7],[7,-2],[10,4],[9,0],[4,-14],[-1,-8],[-14,-33],[10,-17],[1,-7],[-2,-9],[-1,-3],[0,-3],[2,-2],[1,-3],[0,-4],[12,-5],[-9,-17],[-4,-14],[-15,-8],[-22,-3],[-57,14],[-5,3],[-2,12],[-42,22],[-27,5],[-6,11],[-11,22],[-16,13],[-33,27],[-22,9],[1,-8],[7,-14],[5,-12],[5,-11],[3,-7],[20,-7],[-4,-3],[-3,-1],[-8,1],[3,-11],[5,-6],[11,-8],[11,-18],[5,-3],[22,-2],[5,-3],[18,-5],[10,-7],[4,-14],[2,-9],[12,5],[3,-24],[-1,-24],[-10,-13],[-8,-13],[-33,8],[-9,10],[-17,15],[-42,-1],[-42,-6],[-97,-30],[-36,9],[62,8],[18,7],[-9,7],[-23,4],[-27,-1],[-9,12],[-10,6],[-11,6],[-2,3],[-6,3],[-5,-13],[-9,-5],[-7,-6],[-8,6],[-17,5],[-1,6],[8,7],[8,8],[-6,9],[-11,8],[-15,7],[7,8],[7,7],[-5,11],[-14,-7],[-4,11],[-3,2],[-10,3],[-8,-1],[-10,4],[-61,11],[-20,-9],[-9,-1],[-10,2],[-10,5],[10,-17],[16,-4],[30,5],[-3,-6],[-4,-6],[3,-17],[9,-3],[17,-4],[27,-3],[26,-15],[3,-11],[-3,-11],[-2,-10],[14,-15],[6,-9],[1,-13],[-18,8],[-8,-1],[-4,-4],[1,-4],[8,-4],[2,-7],[0,-7],[9,-6],[26,-3],[26,16],[13,23],[8,0],[-19,-37],[-8,-41],[-3,-16],[5,-16],[1,-20],[-2,-13],[-8,-2],[-9,-3],[-8,12],[-8,8],[-10,4],[-9,1],[-7,-2],[-13,-5],[-18,-2],[-5,-2],[-6,-4],[-7,-2],[-17,13],[-8,4],[-4,-1],[-3,-3],[-2,-6],[-1,-7],[2,-7],[3,-3],[5,-1],[32,-13],[26,8],[26,-7],[15,7],[8,-6],[22,4],[10,-23],[-1,-15],[-9,-12],[-7,0],[-8,3],[1,-1],[3,-7],[4,-14],[3,-6],[6,-4],[4,4],[3,5],[4,3],[19,-6],[2,-10],[-4,-16],[-22,-19],[-13,-20],[-29,-21],[-41,-16],[-7,-2],[-11,5],[-6,-1],[-13,-13],[-6,-2],[-9,-5],[-11,-8],[-6,-9],[-12,-14],[-12,5],[-26,7],[-28,-2],[-15,-10],[-2,-17],[-5,-17],[-23,-10],[1,-3],[28,6],[15,16],[8,10],[15,5],[16,-3],[16,-8],[8,-6],[8,-18],[-2,-17],[-15,-5],[-6,-9],[-7,-7],[-10,-3],[-15,-3],[-17,-8],[-9,-9],[0,-8],[18,5],[23,6],[9,-1],[5,-8],[-8,-13],[-11,-19],[-15,-14],[0,-6],[18,1],[10,9],[5,9],[9,11],[9,-4],[10,-2],[7,-3],[14,-2],[5,-2],[8,-8],[44,-11],[3,-6],[1,-9],[3,-11],[8,-15],[53,-48],[-29,1],[-17,-1],[-15,-5],[-13,-7],[-16,-7],[-13,-3],[-14,12],[-3,1],[-8,6],[-8,-2],[-1,11],[0,15],[-6,4],[-9,5],[1,6],[-2,7],[-4,5],[-5,4],[-3,5],[-8,-4],[-11,-2],[-14,-6],[-22,-13],[9,-14],[18,7],[22,2],[13,-9],[0,-13],[-7,-11],[-1,-21],[0,-13],[-1,-12],[-8,-9],[-7,-2],[-3,1],[-9,21],[-9,0],[0,-16],[6,-13],[2,-15],[-24,-3],[-27,-11],[-32,17],[-14,11],[-27,-2],[-3,18],[4,16],[0,14],[16,14],[9,25],[3,9],[-3,3],[-7,-1],[-3,1],[2,10],[0,10],[1,10],[4,11],[-4,10],[-2,4],[-3,2],[-5,2],[-1,4],[0,5],[-3,11],[-1,4],[-2,2],[-8,2],[-2,3],[-5,8],[0,-12],[5,-19],[8,-19],[4,-15],[-1,-16],[-5,-12],[3,-22],[-6,-17],[-19,-18],[-14,-12],[-26,-8],[-10,1],[-14,10],[-41,19],[-10,8],[-33,11],[-10,18],[-1,16],[-3,15],[-1,19],[-8,13],[-21,12],[-9,9],[-17,6],[-12,7],[-12,11],[-6,11],[13,4],[5,0],[-6,9],[-12,2],[-22,-2],[-11,2],[-52,33],[-1,9],[2,8],[3,18],[13,19],[-4,24],[-13,24],[-8,2],[-6,-18],[4,-21],[-9,-17],[-20,-2],[-15,-1],[-14,-2],[-4,19],[-2,15],[-9,4],[-5,-9],[1,-13],[0,-13],[-3,-12],[-3,-10],[-19,-4],[-29,4],[-39,5],[-17,8],[-13,-10],[-13,16],[12,5],[17,12],[-4,12],[-10,-3],[-10,-5],[-12,6],[0,11],[-4,8],[-12,0],[-2,5],[-4,5],[-6,7],[-11,6],[-2,4],[-20,6],[-20,5],[0,11],[-4,8],[-17,11],[-4,5],[5,9],[22,14],[-2,15],[-11,8],[1,6],[8,10],[11,12],[2,14],[-4,14],[-13,7],[-24,45],[3,15],[2,9],[-7,22],[-1,23],[-5,16],[-13,12],[-6,7],[-18,10],[-12,3],[-27,4],[-46,22],[-77,25],[-97,39],[-26,-11],[-26,-13],[-23,-17],[-17,-30],[-30,-28],[-93,0],[-75,0],[-73,2],[-50,17],[-12,13],[-6,9],[-1,7],[3,8],[2,5],[5,10],[-2,10],[2,15],[10,10],[-1,13],[5,12],[9,11],[-3,19],[-14,21],[-11,8],[-21,-19],[-11,0],[-6,23],[4,4],[-3,3],[-3,1],[-7,0],[-3,1],[-2,3],[-1,4],[-13,24],[-4,6],[-30,28],[-8,15],[9,11],[-7,23],[-23,43],[6,-1],[6,-4],[11,-11],[17,-10],[5,-5],[5,-2],[20,-1],[11,12],[5,21],[-9,17],[5,15],[18,3],[16,-2],[9,9],[9,13],[-5,9],[-4,9],[6,12],[4,12],[-3,5],[-7,3],[2,13],[-5,13],[2,3],[3,5],[5,10],[1,6],[-1,4],[-2,5],[-1,6],[14,20],[-4,9],[-7,-2],[-5,-4],[-6,-7],[1,-6],[-7,2],[-11,3],[0,-8],[-1,-7],[-1,-6],[0,-8],[-3,-9],[-12,-22],[-16,-29],[-8,-11],[-10,-14],[-30,-11],[-24,6],[-18,24],[-5,8],[-15,18],[-3,5],[2,11],[9,13],[2,8],[-4,24],[-8,25],[-11,15],[-9,-9],[5,-15],[1,-17],[-1,-17],[2,-16],[-21,2],[-12,4],[-9,15],[-28,12],[9,-29],[5,-4],[10,-4],[3,-4],[5,-14],[5,-13],[20,-28],[-9,-22],[-16,-12],[-31,-4],[-43,-4],[-24,9],[-5,5],[-3,4],[3,2],[25,-1],[3,3],[-1,6],[-13,6],[-15,11],[-3,-2],[-4,-13],[-17,-35],[-3,-16],[-2,-26],[-1,-7],[-3,-5],[-3,-5],[-1,-4],[0,-8],[-3,-22],[0,-7],[17,-68],[4,-12],[8,-11],[74,-63],[18,-9],[32,-17],[-9,-14],[2,-14],[-5,-5],[16,-25],[-10,-19],[-18,-19],[-11,-10],[-3,-8],[-14,-12],[-10,-13],[3,-18],[1,-9],[-10,-12],[2,-13],[-2,-18],[-1,-25],[-18,-20],[-10,-20],[-10,-16],[-8,1],[-14,0],[-10,-9],[-8,-11],[-7,-10],[-13,-7],[-6,-4],[-10,-4],[-18,0]],[[0,92512],[99964,-19],[-2,-10],[-17,-18],[-39,-22],[-59,-1],[-41,3],[-24,1],[-24,-1],[-83,-41],[-11,-3],[-1,5],[-1,13],[-1,5],[-10,23],[-2,7],[-7,21],[-4,8],[-2,8],[-3,7],[-4,6],[-3,5],[-10,30],[0,8],[1,6],[3,5],[9,18],[8,9],[35,32],[7,9],[6,15],[-2,3],[-1,0],[-1,-1],[-2,-2],[2,2],[14,14],[77,40],[58,47],[14,5],[16,24],[18,11],[38,4],[18,7],[-2,6],[-2,3],[6,3],[5,1],[12,-1],[5,2],[4,3],[0,5],[-5,6],[42,12],[-99999,-323]],[[0,92512],[0,323],[38,1],[-14,10],[4,2],[28,6],[11,8],[6,2],[6,-2],[5,-3],[5,-2],[19,6],[66,-9],[13,-8],[6,1],[5,3],[12,4],[11,8],[36,10],[94,-17],[95,-18],[20,-13],[17,-5],[-12,2],[-5,1],[-5,1],[5,-7],[30,-16],[6,-1],[13,5],[6,-2],[33,-19],[-3,-5],[-11,-7],[2,-2],[4,-5],[2,-1],[-1,-1],[-3,-4],[20,-6],[53,-38],[17,-16],[3,-1],[7,0],[3,-1],[4,-5],[19,-5],[11,6],[5,0],[5,-1],[4,-5],[-2,-10],[5,-6],[8,-5],[4,-8],[-1,-8],[-3,-8],[-14,-21],[-20,-16],[-16,-18],[-13,-3],[-19,-11],[-18,-5],[-16,-19],[-15,-7],[-77,-1],[-29,-15],[-78,-10],[-79,-9],[-29,-18],[-100,-26],[1,2],[4,7],[-11,5],[-26,-9],[-12,2],[-46,27],[-52,9],[-10,8],[-5,2],[-26,-3]],[[86644,75946],[0,-6],[1,-2],[-1,-5],[-2,-7],[-9,-14],[-12,0],[-13,8],[-10,9],[10,4],[-5,5],[-1,6],[1,3],[3,-2],[2,0],[-1,10],[-1,4],[-2,2],[6,5],[6,-2],[5,-4],[6,-3],[0,4],[-9,12],[8,-2],[5,-6],[5,-9],[8,-7],[0,-3]],[[89591,82625],[2,0],[-2,-2],[-3,-5],[0,-5],[2,-6],[1,-8],[3,-9],[8,-2],[5,8],[-5,17],[5,2],[6,-3],[5,-4],[2,-1],[4,10],[-1,4],[-3,4],[-3,8],[0,10],[3,4],[5,3],[5,6],[2,6],[2,6],[0,6],[-3,7],[0,8],[2,7],[2,4],[4,2],[5,-1],[3,-2],[5,-11],[2,-5],[2,-14],[2,-5],[6,-9],[3,-5],[4,-22],[7,-13],[14,-20],[18,-45],[12,-21],[3,-9],[-1,-17],[-3,-14],[-3,-12],[-4,-11],[-10,-22],[-3,-9],[-6,-38],[-1,-6],[-3,-5],[-1,0],[-2,1],[-2,0],[-2,-1],[-1,-3],[-1,-3],[-2,-7],[13,3],[5,-1],[5,-10],[0,-5],[2,-15],[2,-8],[7,-33],[6,-22],[2,-10],[-13,48],[-8,28],[-8,-3],[-2,-6],[3,-14],[1,-14],[2,-3],[8,-7],[6,-30],[7,-3],[-6,-16],[10,0],[4,-4],[3,-8],[-2,-2],[-2,-3],[-3,-4],[-2,-3],[5,-5],[11,-6],[5,-6],[-3,-5],[-4,-2],[-4,0],[-4,3],[-1,-5],[-2,-4],[-2,-2],[-3,-1],[0,-5],[4,-3],[8,-10],[3,-2],[4,1],[10,13],[2,-4],[3,-10],[3,-11],[1,-8],[1,-5],[1,-6],[0,-5],[-2,-6],[-3,-1],[-4,4],[-5,1],[-3,-8],[0,-7],[2,-4],[3,-2],[2,-3],[2,-4],[1,-1],[1,-3],[0,-8],[-1,-4],[-2,-4],[-2,-3],[0,-4],[2,-2],[3,0],[2,1],[11,9],[3,2],[4,0],[4,-6],[4,-15],[10,-63],[2,-24],[7,-26],[3,-12],[1,-40],[2,-10],[3,-11],[1,-12],[1,-28],[2,-27],[3,-13],[3,-11],[3,-14],[-2,-13],[-7,-24],[2,-14],[1,-15],[0,-33],[-3,-49],[1,-11],[-1,-9],[-6,-69],[-2,-10],[-6,-20],[-7,-18],[-7,-17],[-9,-15],[3,27],[1,8],[-1,6],[-1,6],[-1,6],[3,8],[5,5],[4,0],[4,0],[3,1],[2,8],[-3,5],[-7,6],[2,4],[12,46],[1,7],[0,5],[1,3],[-1,2],[-4,2],[-2,0],[-2,0],[-2,-2],[-1,-2],[0,-2],[0,-15],[-1,-2],[-1,-1],[-2,0],[0,-3],[0,-3],[1,-2],[0,-1],[-3,-14],[-10,-27],[-4,-16],[-4,-25],[-1,-7],[-9,-20],[-3,-12],[3,-7],[5,1],[4,10],[2,0],[0,-7],[3,-11],[-1,-5],[-2,-7],[0,-6],[1,-5],[0,-4],[-4,-39],[-2,-49],[-1,0],[-6,15],[-3,4],[-1,-2],[0,-8],[-1,-6],[-1,-7],[-2,-5],[12,-9],[-2,-6],[0,-7],[2,-11],[0,-7],[-1,-4],[1,-4],[3,-7],[3,-10],[0,-10],[-3,-6],[-7,-1],[2,-6],[3,-19],[2,-3],[4,-3],[0,-7],[-1,-9],[1,-8],[3,-4],[5,-5],[6,-2],[2,3],[1,8],[2,8],[2,3],[4,-33],[16,-49],[2,-28],[-6,4],[-6,-8],[-4,-13],[-3,-21],[-3,-12],[-1,-5],[0,-7],[1,-12],[0,-7],[-1,-7],[-3,-12],[-1,-4],[1,-5],[2,-6],[2,-3],[9,8],[7,-2],[6,-5],[5,0],[3,9],[-1,15],[-3,14],[-2,6],[0,6],[2,13],[4,12],[5,6],[2,-5],[2,-12],[1,-22],[3,-9],[15,-33],[4,-23],[3,-75],[-9,14],[-4,2],[-3,-1],[-10,-11],[2,-4],[4,-4],[3,-4],[6,-5],[0,-3],[0,-2],[0,-2],[3,-3],[3,-2],[3,-3],[2,-4],[1,-5],[0,-10],[2,-6],[-2,-2],[0,-2],[-1,-4],[2,-1],[2,-2],[2,-1],[-1,-3],[-2,-9],[9,4],[1,16],[-3,20],[-4,17],[7,-15],[5,-26],[13,-136],[26,-162],[6,-78],[25,-175],[5,-22],[28,-72],[26,-82],[11,-68],[10,-36],[3,-19],[8,-22],[2,-12],[2,-51],[1,-13],[4,-10],[4,-10],[16,-43],[2,-10],[-3,-32],[1,-14],[17,-112],[28,-105],[7,-20],[9,-15],[62,-73],[5,-10],[2,-5],[1,-5],[0,-12],[1,-6],[2,-13],[1,-6],[-1,-7],[-4,-8],[-1,-7],[2,-24],[2,-16],[6,-10],[5,-8],[4,-9],[-7,-3],[-9,3],[-6,8],[1,13],[-5,13],[-1,14],[-1,15],[-2,18],[-4,17],[-36,83],[-7,6],[-2,3],[-7,16],[-3,5],[-5,4],[-10,4],[-4,4],[-11,21],[-3,1],[-4,3],[-3,4],[-3,6],[-2,6],[-3,14],[-2,6],[-3,5],[-40,59],[-12,13],[-14,10],[-85,21],[-3,4],[-1,6],[12,8],[-64,8],[-5,2],[-5,6],[-5,10],[-5,8],[-7,4],[-28,3],[-7,-2],[-5,-5],[-2,-12],[4,-8],[13,-10],[2,-1],[2,1],[1,-1],[0,-5],[0,-2],[-2,-1],[-1,-2],[1,-3],[2,-3],[4,1],[3,3],[3,1],[70,1],[14,-5],[-8,-6],[-75,-4],[-54,-31],[-8,-8],[-21,-28],[-9,-17],[-8,-20],[-7,-24],[-3,-22],[1,-23],[3,-28],[0,-25],[-5,-23],[-14,-42],[-9,-42],[-26,-103],[-20,-91],[-18,-82],[-12,-47],[-18,-101],[-1,-4],[-1,-1],[-1,-1],[-1,-5],[1,-1],[1,-2],[2,-1],[0,-4],[0,-24],[-3,-16],[-1,-6],[0,-12],[3,-73],[13,-74],[11,-36],[32,-81],[-2,1],[-7,-1],[0,-4],[2,-4],[4,-4],[7,4],[7,-2],[8,-5],[18,-18],[9,-14],[29,-66],[2,-11],[0,-14],[5,-37],[0,-12],[-3,-27],[0,-7],[11,-31],[9,-42],[1,-12],[1,-13],[3,-11],[0,-7],[-7,0],[3,-6],[4,-5],[5,-1],[3,11],[4,-1],[3,-6],[-1,-8],[-6,-5],[-9,1],[-8,-2],[-1,-15],[2,-6],[4,-6],[4,-5],[4,-3],[1,-3],[6,-21],[2,-13],[1,-5],[4,-2],[5,1],[6,5],[4,1],[4,-1],[8,-5],[4,-1],[3,-2],[6,-9],[3,-2],[7,2],[4,5],[3,8],[-2,10],[-4,8],[-6,6],[-7,4],[-10,4],[-9,8],[-4,2],[-3,1],[-7,-2],[-3,1],[-4,8],[-2,12],[2,12],[5,4],[6,-3],[22,-20],[6,-3],[21,-1],[7,3],[2,9],[3,10],[5,10],[6,-12],[6,-16],[3,-18],[2,-17],[0,-37],[1,-18],[4,-19],[0,-6],[-1,-5],[-1,-4],[-1,-4],[1,-4],[2,-7],[4,-36],[7,-34],[1,-18],[-6,-13],[5,-4],[10,-3],[4,-6],[-9,-12],[-3,-5],[-1,-6],[-1,-15],[-1,-6],[-2,-3],[-3,-3],[-3,-3],[-2,-5],[0,-6],[-3,-16],[-4,-10],[-9,-19],[-2,-10],[2,-39],[-1,-12],[-2,-4],[-2,-2],[-2,-4],[-2,-14],[-1,-6],[-1,-5],[-2,-2],[-3,7],[-1,14],[-1,15],[0,10],[3,8],[1,7],[-2,12],[0,7],[1,6],[1,6],[0,14],[-2,12],[-10,55],[-1,12],[-12,43],[4,14],[-1,12],[-3,10],[-2,11],[2,5],[3,-1],[4,-2],[3,0],[2,4],[4,20],[-7,14],[-7,4],[-19,-2],[10,-20],[-2,-7],[-4,2],[-9,15],[-6,14],[-4,4],[-7,6],[-4,5],[-6,4],[-26,-6],[-19,3],[-10,5],[-8,8],[-8,-6],[-22,-7],[-8,1],[-7,9],[-5,17],[-5,35],[-2,18],[-1,7],[-4,3],[-3,-2],[-3,-8],[-2,-2],[-8,0],[-10,-4],[-24,-21],[-20,-31],[-15,-46],[-22,-97],[-12,-37],[-2,-10],[0,-6],[-4,-20],[-3,-44],[0,-7],[-1,-7],[-3,-11],[0,-6],[-2,-13],[-4,-11],[-3,-11],[1,-12],[-1,-5],[0,-12],[-2,-6],[-2,-1],[-15,-8],[-4,-8],[-3,-25],[-4,-28],[-3,-1],[-3,5],[-6,4],[-3,5],[-11,32],[-17,27],[-2,7],[1,37],[-10,107],[-4,23],[-14,58],[-2,20],[-4,52],[1,25],[1,13],[1,5],[4,9],[3,11],[4,16],[6,36],[47,191],[1,16],[1,16],[0,18],[-2,18],[-3,21],[-5,16],[-12,30],[-2,9],[0,8],[3,18],[1,9],[0,8],[-1,6],[-3,7],[-4,14],[-2,18],[-1,21],[3,65],[1,12],[10,31],[1,7],[0,6],[0,7],[2,6],[4,9],[2,6],[1,6],[1,4],[6,18],[8,44],[4,12],[9,9],[11,24],[3,8],[1,13],[-6,78],[-1,10],[2,22],[-10,98],[-1,10],[-11,37],[-49,126],[-13,47],[-4,27],[0,23],[18,37],[2,2],[8,10],[2,4],[1,6],[-1,7],[-1,7],[0,4],[1,7],[2,4],[5,7],[2,5],[1,14],[2,11],[2,21],[2,13],[4,12],[-4,22],[4,21],[6,19],[5,19],[1,10],[-1,10],[-4,49],[7,36],[2,20],[7,22],[1,9],[1,23],[4,40],[2,32],[2,22],[1,11],[-2,33],[0,33],[0,21],[-3,21],[-5,22],[2,0],[1,4],[2,6],[1,4],[0,3],[-2,6],[0,3],[1,7],[4,9],[1,4],[-1,23],[1,8],[2,12],[2,23],[-5,90],[-6,31],[3,10],[1,11],[0,11],[-1,11],[-2,9],[-6,23],[-5,9],[-15,56],[-1,14],[3,12],[1,6],[1,8],[-1,13],[2,24],[8,33],[4,40],[-1,5],[-1,6],[-1,6],[0,7],[2,5],[6,13],[1,3],[0,2],[-1,14],[1,6],[20,39],[7,18],[7,24],[5,26],[0,22],[0,14],[-4,14],[-22,59],[-2,11],[0,5],[3,7],[1,5],[-1,5],[-1,2],[-1,1],[-1,2],[-2,5],[-13,24],[-10,28],[6,14],[-6,17],[-37,52],[-3,6],[0,3],[1,3],[1,11],[0,4],[0,4],[-4,3],[-11,-4],[-5,1],[-5,15],[-9,21],[-32,30],[-4,14],[18,-11],[9,-2],[3,-2],[3,0],[3,3],[1,6],[0,4],[-1,4],[-2,3],[0,30],[-14,18],[-18,12],[-16,16],[10,17],[1,24],[-7,47],[-1,12],[-1,9],[0,10],[2,12],[2,4],[5,9],[2,2],[1,3],[3,18],[-11,30],[3,26],[1,9],[-3,10],[-3,8],[-3,7],[3,13],[0,6],[0,11],[1,4],[1,4],[27,37],[7,14],[3,9],[3,21],[3,8],[1,5],[0,6],[0,5],[2,2],[1,2],[4,15],[-2,0],[-7,4],[0,3],[7,18],[2,21],[0,43],[2,12],[5,19],[1,14],[0,3],[-2,10],[0,7],[0,5],[2,11],[0,6],[1,4],[4,10],[1,6],[-1,13],[1,7],[1,5],[6,20],[3,13],[-2,11],[-1,4],[-1,7],[-1,10],[-1,3],[-5,11],[-3,13],[-9,16],[-3,7],[-1,6],[1,5],[0,5],[0,7],[0,7],[-1,5],[-8,32],[0,8],[4,10],[-3,6],[0,6],[1,5],[0,4],[-3,6],[-9,14],[8,9],[25,15],[16,23],[4,3],[14,3],[24,20],[41,21],[-4,-6],[2,-5],[3,-7],[2,-7],[0,-8],[-3,-6],[0,-6],[3,-8],[-3,-5],[-2,-7],[1,-8],[3,-8],[4,-8],[6,-5],[6,-3],[5,-1],[6,1],[13,7],[11,0],[6,1],[18,24],[4,15],[8,25],[4,7],[13,16],[5,0],[5,-3],[4,-2],[3,7],[-5,13],[-11,10],[-12,4],[-10,-3],[-6,-12],[-4,-3],[-1,9],[0,2],[0,16],[1,2],[-4,13],[-2,13],[2,12],[5,8],[5,3],[4,-2],[5,-3],[6,-1],[4,2],[6,4],[5,3],[4,-3],[6,-15],[5,-8],[6,1],[23,34],[1,6],[0,6],[-2,7],[0,5],[-2,27],[-1,13],[-3,11],[-10,13],[-7,-22],[-6,-33],[-5,-23],[-4,-3],[-13,-8],[-3,1],[1,7],[4,11],[3,17],[13,36],[8,28],[3,25],[-3,25],[-11,24],[-22,33],[-12,26],[-22,34],[-4,12],[-7,26],[-5,12],[-7,13],[-10,11],[-18,15],[0,4],[6,-1],[11,-12],[6,-3],[22,-4],[6,2],[18,14]],[[57953,86359],[-9,-15],[-7,2],[-4,9],[-1,10],[1,10],[4,8],[4,2],[4,0],[4,-4],[1,-6],[2,-7],[1,-9]],[[2155,88855],[36,-15],[19,-24],[-38,-7],[-27,-15],[-30,-9],[-32,3],[-13,-11],[-24,0],[7,27],[9,17],[15,17],[11,16],[6,8],[17,5],[20,-3],[24,-9]],[[69480,89885],[-7,1],[-6,3],[-6,0],[-6,-7],[7,1],[6,-2],[3,-6],[-2,-10],[-2,-1],[-8,-9],[-3,-2],[-26,-1],[-15,-3],[-2,-3],[-1,-5],[-2,-3],[-2,1],[-3,2],[-7,4],[-3,3],[-22,21],[-56,37],[-2,6],[2,2],[3,-1],[3,1],[3,4],[-1,12],[1,4],[-8,12],[-12,29],[-22,36],[-6,4],[-8,2],[-26,-10],[3,-6],[1,-2],[-11,-1],[-15,6],[-14,11],[-6,13],[5,7],[8,1],[29,-10],[6,0],[34,8],[13,-6],[8,-27],[5,-8],[16,-17],[8,-6],[9,-3],[8,0],[-6,7],[-19,15],[-4,5],[-5,7],[-1,7],[6,3],[30,-4],[16,2],[8,-2],[7,-8],[-5,-4],[-3,0],[6,-4],[22,-4],[7,1],[4,-1],[2,-3],[4,-7],[3,-2],[11,-1],[12,3],[12,-1],[10,-11],[0,-5],[-3,-18],[0,-2],[1,-2],[0,-4],[-1,-4],[-3,-1],[-4,1],[-4,0],[-3,-4],[4,-10],[20,-23],[5,-8]],[[64249,91034],[55,-4],[-10,-9],[-80,-10],[-21,-19],[-27,0],[-17,-17],[-13,-1],[-6,-2],[-6,-4],[-5,-2],[-11,-1],[3,6],[3,5],[3,4],[13,14],[84,43],[35,-3]],[[65380,91302],[20,-5],[11,-6],[7,-10],[-39,8],[-30,-8],[-9,0],[4,8],[2,0],[25,12],[9,1]],[[65178,91338],[5,0],[5,-2],[4,-5],[1,-9],[-3,-8],[-6,-5],[-7,-2],[-10,-1],[-6,1],[-3,4],[5,7],[2,0],[6,13],[3,5],[4,2]],[[94857,91348],[8,-27],[-1,-27],[-9,-19],[-16,-6],[-4,0],[4,13],[11,23],[4,13],[-6,15],[-10,12],[-10,10],[-22,13],[-45,16],[-2,3],[0,3],[0,4],[1,3],[1,3],[-1,11],[0,3],[-3,10],[-2,8],[0,4],[3,25],[0,5],[-1,6],[0,2],[1,1],[1,1],[1,16],[7,21],[1,12],[-5,17],[-19,23],[-4,15],[2,16],[5,12],[7,8],[38,27],[2,2],[2,4],[3,2],[7,0],[4,1],[5,4],[6,2],[4,-2],[4,-23],[1,-7],[-3,-10],[1,-3],[1,-4],[0,-3],[-2,-3],[-18,-12],[-5,-5],[-1,-8],[3,-8],[13,-12],[2,-11],[0,-7],[-2,-6],[0,-5],[6,-21],[-2,-10],[-13,-22],[4,-11],[11,-12],[4,-9],[-2,-5],[2,-10],[-1,-26],[2,-10],[6,-12],[21,-33]],[[94897,91665],[-2,-5],[-3,-8],[-1,-3],[-1,-10],[3,-11],[2,-10],[-5,-8],[2,-11],[-7,-8],[-11,-6],[-39,-6],[-10,-5],[0,4],[-4,0],[4,7],[10,9],[4,8],[1,6],[0,28],[0,5],[-3,14],[-4,21],[-2,7],[16,6],[3,4],[0,7],[1,6],[2,4],[4,2],[10,-1],[10,-4],[8,-8],[8,-14],[4,-9],[1,-6],[-1,-5]],[[69820,93929],[-6,-7],[-1,-3],[1,-4],[4,-5],[1,-3],[-2,-9],[-3,-3],[-5,0],[-5,-1],[-9,-6],[-4,-4],[-4,-7],[-6,-7],[-7,1],[-7,3],[-7,1],[3,5],[0,6],[-1,17],[-1,4],[6,10],[15,13],[3,8],[6,11],[13,-1],[13,-8],[3,-11]],[[64280,92994],[-2,38],[10,43],[17,37],[17,24],[-2,4],[15,23],[39,19],[26,21],[7,0],[25,-26],[4,-3],[5,-1],[18,0],[-2,-14],[5,-6],[7,1],[7,19],[10,8],[10,5],[6,-1],[-3,-10],[-2,-6],[-1,-5],[3,-6],[5,2],[6,3],[6,-1],[10,-9],[10,-2],[10,3],[12,6],[-6,4],[-2,7],[2,8],[6,6],[-4,4],[-3,5],[-4,5],[-1,6],[4,6],[9,-2],[14,-8],[5,1],[2,4],[-2,6],[-23,29],[7,5],[5,-2],[11,-11],[-1,3],[-4,10],[2,1],[3,5],[2,2],[-3,6],[-4,4],[-5,1],[-5,1],[-4,3],[-1,6],[1,5],[4,0],[10,-8],[23,-6],[11,0],[-1,1],[-3,5],[-2,2],[8,7],[21,10],[4,9],[-4,14],[-20,6],[-5,11],[19,-12],[21,-5],[40,0],[-6,5],[-19,0],[-18,7],[-7,1],[4,11],[-3,8],[-5,8],[-3,9],[6,11],[28,-1],[10,3],[-17,14],[-9,3],[-13,-5],[0,5],[2,6],[3,5],[4,5],[5,3],[4,0],[3,-4],[21,4],[10,4],[0,12],[4,6],[13,6],[-1,2],[-5,7],[13,2],[12,6],[22,4],[7,4],[-52,-2],[-42,-22],[-11,-1],[3,11],[5,9],[5,6],[10,4],[1,3],[0,3],[-3,4],[-4,0],[-13,-3],[4,10],[7,6],[56,16],[9,-1],[27,-14],[30,-1],[-6,5],[-30,5],[-23,11],[-59,-1],[-13,-6],[-47,-1],[-8,3],[-5,6],[-8,11],[-6,4],[-15,1],[-8,3],[-6,8],[5,12],[7,2],[8,-1],[6,5],[1,5],[2,12],[1,5],[5,6],[15,9],[11,17],[6,6],[114,37],[78,-28],[11,0],[10,6],[-13,4],[-12,8],[7,4],[20,-4],[-2,5],[0,2],[3,6],[-9,6],[-36,-2],[-17,7],[-8,8],[-1,11],[1,5],[-1,4],[0,4],[1,5],[3,2],[11,2],[53,-4],[-6,4],[-12,5],[-5,4],[-3,5],[-3,7],[-3,5],[-3,2],[-20,3],[-9,6],[-9,12],[9,3],[2,4],[1,7],[-1,10],[-1,3],[0,3],[4,6],[5,7],[37,28],[13,4],[12,8],[6,2],[28,-9],[7,3],[27,24],[27,14],[30,2],[60,-17],[31,0],[38,21],[20,4],[4,4],[9,11],[24,21],[15,6],[30,3],[21,12],[13,1],[15,7],[18,0],[53,-18],[50,-33],[51,-11],[75,5],[14,-9],[0,-2],[-1,-8],[1,-2],[2,-2],[86,-18],[86,-17],[5,-4],[3,-4],[4,-8],[2,-4],[20,-18],[6,-9],[1,-13],[-10,-5],[-103,-16],[-102,-17],[10,-5],[75,3],[75,4],[22,-10],[-10,-15],[-14,-12],[-16,-6],[-26,8],[-84,-12],[-13,-6],[-65,-4],[-8,-5],[6,-1],[13,-6],[6,-1],[31,4],[43,-10],[40,17],[27,5],[11,-3],[1,-8],[-10,-30],[5,-6],[0,-9],[-5,-18],[0,-3],[0,-11],[0,-1],[-3,-3],[-9,-3],[-1,-5],[-10,-16],[-21,-2],[-54,14],[-36,-10],[-18,0],[-47,14],[-6,-2],[-14,-12],[48,0],[31,-19],[26,3],[14,-13],[24,-40],[-51,4],[-32,17],[-9,-4],[29,-27],[1,-8],[-9,-6],[-19,-4],[3,-8],[4,-8],[10,-12],[-4,-7],[-14,-12],[-6,-2],[-13,2],[-6,5],[-11,15],[-9,4],[-53,3],[51,-14],[4,-15],[11,-2],[11,-5],[3,-4],[0,-4],[-4,-9],[0,-6],[0,-6],[-1,-3],[-4,-1],[-24,0],[-16,-7],[-5,1],[-6,2],[-52,-1],[-10,-7],[57,-4],[9,-4],[7,-1],[18,5],[6,-5],[1,-5],[0,-8],[1,-7],[4,-4],[-1,-6],[-2,-8],[-2,-8],[-2,-4],[-20,-22],[-3,-7],[7,-10],[30,-15],[3,-14],[13,-16],[2,-6],[-3,-10],[-6,-6],[-14,-8],[-18,-23],[-7,-3],[-4,-4],[-7,-18],[-6,-7],[24,-1],[7,-3],[-5,-7],[-10,-10],[-4,-7],[-2,-6],[-2,-7],[-2,-6],[-4,-6],[4,-2],[3,-5],[3,-6],[2,-7],[-10,0],[-30,8],[3,-8],[-5,-3],[-3,-2],[-1,-3],[48,-4],[4,-1],[8,-6],[15,-5],[3,-2],[1,-3],[0,-3],[1,-3],[4,-12],[0,-5],[-2,-5],[0,-8],[2,-28],[6,-22],[20,-39],[14,-42],[22,-32],[16,-16],[6,-9],[16,-37],[8,-12],[19,-16],[8,-11],[3,-10],[7,-29],[1,-11],[5,-13],[9,-13],[66,-60],[66,-60],[19,-25],[39,-27],[14,-5],[7,-4],[4,-5],[11,-18],[5,-4],[11,-6],[17,-16],[7,-5],[19,-3],[27,-11],[11,-10],[12,-7],[43,5],[4,-17],[44,-35],[-23,-2],[-8,2],[-13,9],[-6,2],[-7,-3],[7,-11],[13,-5],[9,-7],[-3,-14],[-11,-8],[0,-1],[-4,-11],[-4,-6],[-5,-4],[-6,-2],[-6,0],[0,-4],[4,0],[4,-1],[4,-3],[3,-4],[-53,13],[-53,26],[-7,2],[-6,-1],[-3,-1],[-7,-7],[-5,-1],[-18,5],[-23,19],[-12,7],[-10,-5],[3,-6],[4,-4],[8,-7],[12,-14],[4,-2],[51,-12],[6,1],[15,7],[8,0],[3,-1],[3,-3],[1,-2],[0,-3],[0,-4],[1,-3],[12,-8],[25,-8],[11,-9],[-6,-4],[-7,0],[-80,23],[-80,22],[-22,17],[-12,3],[4,-9],[8,-7],[16,-8],[-13,-2],[-19,7],[-16,14],[-9,17],[3,6],[3,12],[2,3],[11,2],[5,3],[-1,5],[-7,4],[-21,-2],[-5,-3],[-2,-6],[-2,-7],[-3,-5],[-6,-1],[-27,8],[-12,8],[-6,2],[-7,-1],[-2,-3],[1,-4],[5,-5],[6,-2],[7,-1],[6,-2],[4,-6],[-34,4],[4,-8],[8,-5],[17,-4],[-5,-6],[-6,-2],[-12,0],[5,-9],[9,-3],[25,0],[5,2],[1,6],[-2,3],[-9,5],[-4,4],[29,-3],[14,-7],[12,-14],[-11,1],[-6,-2],[-3,-7],[36,-8],[16,-9],[4,-5],[0,-5],[-3,-4],[-12,-4],[-16,-11],[-8,-3],[-11,2],[-21,10],[28,-4],[-10,8],[0,5],[7,-4],[7,-2],[7,1],[6,5],[-8,10],[-9,2],[-20,-4],[-21,3],[-20,9],[-34,26],[-19,7],[-14,-13],[33,-11],[5,-11],[-3,-9],[-10,1],[-25,16],[-21,22],[-10,6],[-23,8],[-10,6],[12,-26],[39,-19],[15,-20],[-7,-7],[-7,4],[-7,7],[-7,5],[-4,-2],[-8,-7],[-5,0],[-4,3],[-2,3],[-1,4],[-3,3],[-9,4],[-18,-3],[-9,2],[-26,13],[-6,8],[7,-5],[10,-6],[9,-5],[8,4],[-8,12],[13,-6],[13,-2],[2,6],[-4,15],[-7,15],[-6,8],[-19,5],[-11,12],[-6,-3],[-2,-6],[4,-4],[11,-2],[11,-8],[9,-12],[6,-18],[-10,16],[-14,9],[-46,14],[-7,6],[-7,12],[-5,4],[-6,0],[0,-8],[-12,-11],[-4,-9],[10,0],[10,-4],[9,-9],[5,-16],[-5,3],[-9,13],[-4,5],[-3,-1],[-13,-4],[-16,5],[-5,-2],[-6,-4],[-5,-8],[1,-9],[14,-18],[2,-8],[-5,3],[-1,-3],[0,-7],[-2,-6],[-11,0],[-5,-2],[1,-9],[-14,-8],[-14,11],[-15,16],[-17,11],[-2,3],[0,5],[-1,2],[-5,2],[-10,0],[-5,2],[-3,3],[-6,6],[-3,3],[-19,4],[-6,3],[-5,5],[-5,6],[-5,7],[-5,11],[0,7],[2,6],[-1,8],[-6,6],[-28,7],[-11,14],[-5,6],[-5,8],[5,-10],[8,-10],[2,-9],[-17,6],[-4,-2],[0,-11],[-1,-10],[-3,-7],[48,-25],[-4,0],[-2,-1],[-2,-2],[11,-6],[10,-2],[10,-4],[10,-13],[-37,8],[-18,8],[-7,7],[0,10],[-6,4],[-13,2],[-7,3],[-40,33],[-6,2],[-5,-3],[0,-5],[3,-6],[4,-6],[-9,-8],[-10,0],[-10,5],[-9,9],[-4,2],[-16,-8],[-11,3],[-11,5],[-42,39],[-4,0],[-2,-5],[2,-4],[14,-14],[-5,1],[-5,2],[-9,8],[-7,2],[-15,-4],[-7,0],[-4,2],[-11,11],[-7,5],[-15,1],[-7,5],[1,2],[1,6],[-6,1],[-2,-6],[0,-10],[3,-9],[-3,-5],[-5,9],[-17,2],[-14,16],[-11,6],[-19,4],[53,4],[5,-2],[3,0],[3,3],[3,4],[3,3],[7,1],[5,-4],[14,-20],[7,-6],[5,-2],[4,7],[-5,6],[-3,10],[0,10],[3,10],[6,11],[6,6],[3,7],[-4,12],[-15,22],[-34,24],[-16,16],[1,3],[2,10],[10,-5],[13,-4],[26,-1],[-4,9],[4,4],[5,-1],[8,-6],[5,-2],[11,1],[5,0],[29,-19],[9,3],[-29,30],[-7,14],[37,6],[19,-2],[16,-12],[-24,7],[-12,-1],[-6,-14],[6,-3],[17,3],[22,-4],[43,12],[3,2],[-1,4],[-4,4],[-4,2],[-5,-1],[-10,-5],[-5,-2],[-21,6],[-12,6],[-8,8],[4,1],[3,4],[2,5],[3,5],[4,2],[13,0],[-11,12],[7,1],[13,-2],[10,1],[-7,2],[-13,11],[-8,3],[-6,-2],[-5,-5],[-9,-15],[-6,-8],[-7,-6],[-8,-1],[-6,7],[-6,8],[-6,4],[-14,2],[4,-6],[4,-8],[1,-9],[-3,-8],[-7,-1],[-18,10],[-8,1],[4,7],[2,2],[-5,4],[-11,3],[-5,3],[-6,1],[-14,-5],[-6,4],[-4,6],[-9,5],[-13,18],[-3,5],[34,18],[6,5],[3,12],[13,15],[3,13],[5,17],[12,7],[45,7],[11,8],[7,16],[-9,4],[-5,1],[-6,-4],[-14,-17],[-70,-27],[-7,-7],[-4,-11],[2,-25],[-16,-8],[-21,5],[-14,12],[-1,4],[-2,12],[-1,4],[-9,16],[-18,37],[5,1],[11,6],[4,3],[2,4],[0,3],[0,3],[1,4],[7,11],[24,18],[-22,14],[-5,-1],[-39,-34],[-9,-13],[-9,-15],[2,-13],[-4,-9],[-6,-2],[-3,6],[-1,12],[-4,7],[-10,12],[2,8],[-2,2],[-5,-1],[-5,-4],[-1,-6],[3,-6],[5,-6],[3,-4],[-3,-8],[-6,0],[-7,2],[-5,-2],[-1,-8],[1,-9],[-1,-5],[-7,2],[-4,1],[-7,-11],[-6,1],[-4,5],[-2,7],[-1,8],[2,7],[-3,11],[-9,7],[-7,-3],[7,-21],[-16,2],[-7,6],[-2,14],[-4,14],[-8,-2],[-15,-14],[-7,3],[2,11],[6,13],[3,10],[-1,12],[-6,8],[-14,10],[-3,10],[0,21],[-4,4],[-8,-4],[-2,-10],[0,-13],[-4,-14],[-8,-6],[-23,-4],[-5,-8],[2,-13],[4,-8],[4,-6],[3,-8],[-10,3],[-14,7],[-13,12],[-6,15],[3,20],[-1,9],[-6,-3],[-14,-15],[-6,-5],[-9,-2],[6,-16],[11,-10],[12,-6],[9,-9],[-38,5],[-24,-5],[-26,2],[-13,-8],[-15,-6],[-6,0],[-5,3],[-3,5],[-3,5],[-4,5],[-21,18],[-7,5],[-23,7],[-14,14],[-5,3],[1,6],[4,11],[1,5],[-1,6],[-4,6],[-1,5],[-2,9],[-16,27],[-1,6],[1,2],[1,3],[-4,7],[-4,4],[-3,2],[-2,2],[-2,9],[-2,8],[-1,10],[1,14]],[[85389,94008],[-3,5],[10,7],[25,4],[48,-1],[81,-29],[22,-2],[-8,-4],[-72,5],[-21,8],[-22,-3],[-22,9],[-38,1]],[[74136,94114],[-3,-4],[-20,-19],[-5,-8],[-1,-4],[3,-7],[-1,-7],[-3,-3],[-6,-3],[-101,-6],[18,15],[7,1],[6,12],[18,8],[33,5],[44,21],[15,3],[-4,-4]],[[76988,95530],[37,5],[12,7],[0,-3],[-9,-12],[-35,-17],[-36,-28],[-83,-15],[-14,8],[4,16],[10,5],[114,34]],[[76437,95579],[4,-3],[2,-1],[-12,-6],[-15,1],[-15,5],[-11,8],[12,8],[5,6],[4,10],[5,4],[16,-14],[7,-9],[-2,-9]],[[76388,95640],[-10,-6],[-21,-7],[-9,-7],[3,-6],[7,-6],[3,-4],[-15,-16],[-19,-3],[-46,8],[-8,5],[-8,1],[-9,-6],[-7,-3],[-9,3],[-9,5],[-7,6],[17,13],[6,3],[80,-17],[6,4],[-4,8],[-5,7],[-4,5],[-5,1],[4,4],[-2,0],[22,3],[20,9],[2,2],[2,3],[1,2],[2,0],[7,-7],[7,-3],[8,-1]],[[76826,95680],[41,3],[12,-6],[-3,-5],[-7,-1],[-3,-2],[-3,-5],[-1,-5],[-2,-5],[-4,-2],[-6,3],[-9,10],[-5,4],[-50,-1],[-14,9],[13,6],[41,-3]],[[76915,95630],[9,3],[31,-13],[-8,-6],[-20,-2],[-9,-3],[-41,-27],[-5,0],[-4,3],[-1,4],[-1,8],[-1,5],[0,8],[4,9],[3,8],[-4,5],[4,6],[11,6],[9,14],[17,11],[-3,4],[-10,7],[7,9],[9,-1],[16,-9],[17,2],[7,-1],[1,-8],[3,-4],[2,-4],[7,-4],[-13,-10],[-12,-5],[-27,-1],[-8,-5],[-7,-11],[-6,-13],[-7,-11],[8,1],[8,7],[14,18]],[[76156,95831],[42,-4],[13,-9],[-137,9],[5,6],[16,10],[61,-12]],[[76462,95875],[13,-1],[4,-3],[-12,-13],[-16,-1],[-30,6],[-75,-7],[-7,3],[-2,6],[6,9],[8,3],[42,6],[8,-3],[5,1],[6,7],[10,16],[2,-4],[0,-3],[2,-1],[4,0],[3,0],[10,-11],[19,-10]],[[65829,94702],[-4,0],[-8,10],[-14,4],[-15,-2],[-17,-10],[-7,0],[-13,3],[-22,-3],[-7,3],[-4,4],[-6,13],[-5,7],[-5,5],[-5,3],[-7,1],[-10,-3],[-6,0],[-3,3],[2,5],[21,18],[-10,4],[-73,-6],[-73,-5],[-15,4],[-15,7],[-4,5],[0,6],[5,8],[14,9],[91,23],[92,23],[14,11],[6,1],[13,0],[4,2],[-1,6],[-5,6],[-5,2],[-14,-3],[-13,-8],[-7,-3],[-23,6],[-6,-2],[-12,-9],[-3,1],[7,14],[-24,0],[6,2],[20,15],[15,6],[6,5],[0,6],[-6,6],[-6,3],[-7,-1],[-16,-6],[-44,-3],[-32,-14],[-45,-3],[-9,3],[-2,4],[8,11],[0,6],[15,25],[-3,1],[-6,6],[-3,1],[-19,0],[-24,-8],[-6,4],[3,3],[1,5],[1,4],[1,4],[3,3],[7,5],[3,4],[1,4],[1,9],[2,4],[4,3],[9,0],[4,1],[3,3],[7,13],[3,4],[33,12],[10,0],[9,-4],[-2,-2],[-3,-4],[-1,-2],[9,-6],[12,-1],[12,2],[9,5],[-5,-10],[-16,-8],[-6,-6],[10,-4],[11,1],[21,11],[14,11],[5,1],[4,-2],[2,-2],[1,-4],[20,-35],[5,-18],[-7,-12],[23,6],[23,17],[50,54],[25,15],[4,4],[3,6],[1,9],[-5,15],[-13,5],[-24,-1],[-7,5],[6,13],[22,22],[59,26],[7,-2],[21,-10],[77,-2],[-1,-8],[3,-3],[11,-2],[23,-11],[52,-4],[-2,2],[-4,6],[1,2],[1,4],[1,2],[-3,2],[-11,8],[-3,4],[-1,19],[0,4],[-7,13],[-9,3],[-10,-1],[-9,5],[1,9],[-3,7],[-9,12],[17,13],[136,34],[25,-2],[6,2],[6,6],[3,9],[-5,10],[-9,5],[-53,-3],[-8,3],[5,16],[10,10],[11,5],[66,7],[14,6],[26,4],[16,11],[40,3],[-3,5],[-16,11],[11,8],[10,5],[31,6],[1,7],[0,9],[7,8],[50,21],[57,-2],[26,13],[5,1],[16,0],[8,2],[7,7],[-1,0],[0,4],[0,4],[1,4],[2,2],[7,5],[2,1],[97,-4],[8,2],[14,8],[21,6],[27,17],[13,4],[77,3],[7,4],[-1,7],[-5,4],[-8,3],[-60,5],[-6,3],[-5,7],[11,9],[51,24],[80,4],[79,4],[-6,-7],[-7,-3],[-7,-1],[-79,-46],[-4,-8],[19,4],[6,0],[-2,-4],[15,-9],[18,-1],[18,5],[14,13],[1,3],[2,9],[2,4],[4,4],[22,5],[19,-2],[34,11],[7,7],[9,12],[3,7],[-2,9],[-8,5],[-48,-7],[-7,2],[-6,8],[8,11],[18,14],[8,11],[-8,8],[1,9],[5,9],[8,7],[9,4],[29,0],[84,8],[21,-6],[7,2],[6,5],[4,6],[5,4],[10,2],[8,-1],[4,-2],[8,-9],[3,-1],[41,0],[6,2],[15,-20],[32,-6],[80,11],[6,-5],[0,-7],[-3,-6],[-4,-6],[-2,-6],[5,-14],[10,-6],[12,-2],[9,-4],[1,7],[2,5],[7,7],[5,6],[1,0],[3,-1],[15,-6],[7,1],[-1,13],[8,6],[29,17],[9,0],[9,-5],[6,-9],[-4,-7],[-1,-2],[20,0],[-5,-8],[15,-6],[60,21],[14,12],[67,14],[6,3],[12,15],[8,3],[18,1],[7,5],[7,5],[6,4],[7,1],[39,-5],[21,13],[6,0],[4,-3],[5,-6],[7,-13],[6,-6],[7,-2],[8,0],[21,7],[27,18],[14,5],[26,-2],[8,2],[4,5],[5,12],[2,4],[14,2],[28,-16],[14,5],[-6,6],[0,7],[4,8],[6,7],[8,9],[7,2],[17,1],[-4,10],[-2,2],[12,8],[44,10],[13,0],[10,-4],[1,-10],[8,-5],[9,0],[10,3],[16,11],[31,12],[4,5],[8,15],[6,7],[23,9],[35,4],[105,-28],[2,0],[10,8],[-5,6],[-5,5],[-6,4],[-5,1],[-5,3],[-2,6],[-2,8],[-2,6],[-8,14],[-10,9],[-23,12],[-5,6],[2,7],[6,5],[12,4],[18,18],[15,6],[46,2],[12,6],[23,19],[12,4],[14,-1],[6,3],[6,8],[4,10],[2,4],[4,4],[15,7],[30,2],[15,7],[2,3],[2,7],[1,2],[3,2],[63,14],[11,12],[7,3],[74,2],[37,20],[15,0],[22,11],[31,5],[124,-9],[34,-18],[38,-5],[47,4],[14,-8],[-8,-7],[-2,-5],[3,-4],[22,0],[7,-3],[9,-12],[13,-12],[5,-2],[17,2],[9,-1],[7,-5],[-7,-8],[-6,-8],[-1,-9],[8,-9],[31,-8],[9,-7],[-9,-15],[-2,-8],[3,-9],[8,-8],[20,-2],[8,-2],[-38,-20],[-11,-13],[-2,-4],[-1,-10],[-2,-4],[-14,-22],[32,-6],[10,-7],[-10,-9],[-43,-25],[-35,-34],[-20,-14],[-10,-3],[-21,0],[-6,-4],[-3,-6],[1,-4],[3,-2],[5,0],[-13,-18],[-13,-10],[-38,-11],[-7,-5],[-1,-5],[9,-4],[25,-2],[7,-6],[-11,-7],[-104,-14],[-86,-36],[-17,1],[-49,-19],[-61,-37],[-46,-6],[-48,-19],[-34,-1],[-22,-15],[-23,-7],[-26,-15],[-38,-1],[-18,-14],[-14,-7],[-133,-31],[-134,-32],[-26,-21],[-12,-7],[-14,-3],[-39,4],[-80,-26],[-81,-25],[-57,-2],[-7,-3],[-13,-11],[-49,-16],[-26,-16],[-15,-4],[3,8],[2,6],[0,5],[-3,6],[-4,2],[-7,1],[-4,3],[4,10],[-8,9],[-8,0],[-18,-5],[11,-2],[6,-3],[2,-7],[-3,-6],[-25,-29],[-11,-4],[-11,-2],[-38,-20],[-23,0],[-14,-5],[-33,6],[-6,-1],[-82,-41],[-32,-2],[-97,-45],[-13,-2],[-20,11],[-16,-6],[-7,1],[-6,2],[-5,0],[-5,-5],[-5,-8],[-39,-28],[-2,-11],[-10,-3],[-22,14],[-10,-3],[5,-9],[-3,-7],[-12,-12],[2,-2],[6,-6],[-4,-3],[-8,-3],[-3,-3],[2,-2],[1,-3],[2,-7],[-13,0],[-7,-2],[-6,-5],[-3,-6],[-2,-6],[-2,-5],[-4,-5],[-10,-4],[-12,1],[-10,7],[-7,14],[2,6],[0,6],[1,6],[-1,5],[-2,6],[-3,3],[0,5],[3,7],[-28,-4],[5,-16],[-1,-13],[-6,-9],[-45,-39],[-20,-6],[-19,-10],[-38,-11],[-5,-4],[-4,-15],[-4,-3],[-10,-4],[7,-9],[6,-1],[2,-3],[-4,-13],[-6,-12],[-5,-7],[-7,-3],[-26,0],[-11,4],[-6,7],[0,9],[3,10],[4,8],[5,6],[-5,7],[-6,3],[-18,-3],[-4,-2],[-1,-4],[4,-5],[-17,-16],[1,-2],[1,-4],[1,-2],[-4,-4],[-1,-1],[9,-8],[-6,-8],[-8,-5],[-42,-11],[-9,0],[6,6],[2,2],[-8,8],[-34,-16],[-51,8],[8,-9],[15,-6],[85,-4],[85,-3],[18,-26],[-7,-7],[-20,-22],[-8,-5],[-66,-7],[-28,5],[-8,-5],[4,-7],[6,-6],[7,-5],[5,-2],[7,-1],[7,-3],[8,-6],[5,-7],[-11,-15],[-15,-10],[-95,-15],[-9,2],[-16,8],[-8,2],[-26,-2],[-8,3],[-18,17],[-19,6],[-14,8],[8,-7],[17,-20],[6,-11],[6,-5],[35,-1],[3,-2],[1,-3],[1,-3],[1,-2],[2,-2],[11,-5],[6,-3],[4,-9],[0,-5],[0,-12],[1,-5],[-1,-6],[-6,-4],[-12,-3],[-4,-4],[-7,-9],[-4,-5],[-13,-3],[-30,9],[-23,15],[-24,20],[-16,6],[-16,14],[-25,13],[-19,16],[-10,5],[-9,-5],[7,-10],[31,-24],[12,-14],[6,-9],[-16,-1],[-8,3],[-6,8],[-6,5],[-8,-1],[-8,-5],[-6,-5],[31,-11],[8,-9],[-4,-6],[-7,-16],[-5,-7],[-9,-9],[-1,-6],[5,-9],[-11,-10],[-4,-8],[0,-8],[5,-4],[5,-2],[4,-5],[-1,-7],[2,-4],[-78,7],[-34,13],[-1,1],[0,8],[-1,2],[-5,4],[-74,23],[-74,23],[-1,-3],[-1,-6],[-1,-3],[26,-17],[42,-11],[2,-1],[0,-2],[0,-5],[0,-2],[13,-14],[46,-30],[-4,-6],[-15,-14],[17,-17],[7,-12],[-1,-16],[5,-2],[11,-2],[5,-4],[-6,-8],[9,-8],[-4,-3],[-9,-4],[-4,-5],[4,0],[3,-1],[4,-3],[3,-4],[-54,0],[27,-7],[8,-6],[-42,0],[5,-9],[6,-4],[6,-2],[6,-4],[-9,-6],[-8,-2],[-9,1],[-9,2],[-7,5],[-12,11],[-6,0],[-10,-8],[-2,2],[-1,12],[-3,8],[-7,-3],[-8,-9],[-5,-10],[15,-17],[21,-7],[40,0],[-10,-10],[-28,5],[-11,-7],[-1,-4],[0,-13],[-1,-4],[-4,-3],[-4,-1],[-2,4],[1,9],[-10,10],[-15,10],[-15,5],[-6,-7],[2,-6],[3,-3],[4,-5],[1,-8],[-4,-7],[-17,-18],[18,-2],[10,-6],[4,-10],[0,-8],[0,-4],[-3,-2],[-6,0],[-4,-2],[-12,-9],[-4,-1],[-22,11],[-28,2],[-32,20],[-17,3],[-4,3],[-4,3],[-28,38],[-18,35],[-8,7],[-12,1],[-21,-5],[20,-23],[8,-13],[6,-18],[-16,-12],[-41,11],[-19,-7],[74,-9],[6,-2],[6,-5],[11,-14],[75,-56],[9,-11],[-15,-3],[-7,-3],[-6,-6],[6,-5],[14,-2],[6,-5],[0,-6],[0,-7],[1,-6],[7,-1],[-2,-6],[1,-6],[2,-5],[2,-4],[-54,-48],[-10,-1],[-9,3],[-15,10],[-2,3],[-4,11],[-4,6],[-16,10],[-13,14],[-26,15],[-116,13],[-117,13],[22,-15],[83,-6],[45,-14],[24,0],[11,-3],[36,1],[6,-10],[3,-9],[30,-24],[2,-4],[1,-8],[2,-4],[20,-11],[3,-3],[-1,-6],[0,-5],[2,-5],[4,-3],[2,-2],[-4,-9],[-2,-5],[-1,-5],[4,-3],[-1,-5],[-5,-5],[-4,-4],[-67,-20],[2,-3],[4,-9],[-92,18],[-64,55],[-10,4],[-5,-2],[-4,-7],[7,-12],[20,-11],[9,-9],[-6,-4],[-8,-1],[-15,1],[12,-7],[25,3],[12,-3],[44,-35],[36,-11],[8,-5],[2,-4],[2,-7],[0,-4],[-2,-4],[-1,-5],[3,-7],[-6,0],[-9,-2],[-6,-7],[0,-11],[-61,-49],[-14,-15],[-5,-1],[-2,2],[-5,10],[-2,4],[-12,10],[-7,4],[-6,1],[-5,-3],[-2,-8],[1,-8],[4,-4],[10,-4],[-16,-16],[-4,-6],[-1,-6],[3,-4],[5,-4],[3,-5],[-8,-4],[-12,-1],[-12,3],[-18,8],[-128,17],[-11,8],[-9,16],[-4,24],[-5,25],[-12,15],[-15,6],[-13,-7],[18,-11],[10,-9],[4,-11],[0,-5],[-4,-17],[1,-9],[2,-1],[-1,0],[-5,-6],[-10,-5],[-9,3],[-20,14],[-13,4],[-94,-9],[-115,66],[-34,3],[-33,-7],[-33,-18],[-26,1],[-26,-10],[-50,-34],[-12,-3],[-60,27],[9,14],[18,7],[40,3],[5,2],[2,5],[0,4],[1,4],[1,3],[2,3],[6,6],[22,10],[-28,-5],[-10,1],[-26,12],[5,8],[94,63],[19,3],[19,8],[9,7],[20,11],[44,3],[29,20],[12,4],[72,7],[-9,5],[-9,0],[-9,-3],[-80,-2],[-9,-4],[-14,-13],[-7,-3],[-8,4],[10,17],[2,8],[-6,-1],[-10,-6],[-6,-2],[-18,0],[-17,-7],[-37,-1],[-11,-4],[-8,-10],[-8,-12],[-9,-11],[-9,-5],[-21,-5],[-9,-6],[4,-6],[1,-2],[-44,10],[-13,-5],[-6,1],[-13,6],[-11,3],[-5,3],[-5,6],[2,1],[6,4],[-5,3],[-10,2],[-4,3],[-3,3],[-7,9],[-26,22],[-8,4],[-18,5],[-7,6],[-3,8],[0,6],[2,7],[1,9],[3,9],[7,-2],[13,-13],[9,-4],[11,-2],[20,1],[59,33],[-5,9],[4,8],[8,6],[15,5],[26,21],[17,9],[38,10],[49,2],[27,15],[17,-6],[4,2],[0,9],[-9,6],[-18,6],[-18,-2],[-9,2],[-5,8],[4,0],[2,2],[19,27],[4,3],[6,2],[84,57],[38,9],[8,-1],[5,-3],[14,-12],[8,-4],[31,-8],[26,5],[91,-29],[8,0],[6,3],[2,9],[-4,5],[-21,11],[-27,3],[-14,6],[-3,16],[-107,33],[-25,-2],[-5,2],[-4,2],[-7,7],[-4,3],[5,3],[9,0],[5,1],[0,1],[0,3],[1,3],[1,1],[10,4],[6,5],[6,4],[5,-2],[5,-7],[-1,-2],[-1,-4],[-1,-2],[9,-3],[32,7],[35,-2],[11,3],[16,10],[9,0],[7,-19],[7,-1],[7,5],[4,10],[-5,5],[-19,15],[-7,2],[-5,-1],[-3,-3],[-4,-1],[-5,2],[-13,11],[-22,4],[-42,1],[-10,3],[-8,9],[32,34],[11,7],[33,0],[31,12],[12,-3],[67,0],[13,5],[6,2],[19,-4],[18,7],[44,2],[5,3],[2,4],[-3,5],[-6,3],[-6,0],[-12,-5],[-49,-3],[4,6],[5,5],[5,4],[5,1],[-30,16],[-30,4],[-15,-3],[-29,-15],[-14,-2],[11,14],[2,4],[-2,3],[-8,10],[-3,2],[-44,-5],[17,28],[-2,5],[-3,1],[-3,4],[-3,5],[0,6],[2,3],[23,13],[20,2],[20,7],[32,-5],[-1,-5],[-1,-2],[9,-6],[136,36],[9,-1],[0,-9],[10,-1],[28,-12],[120,4]],[[76074,96750],[-17,-3],[-12,2],[-19,4],[-19,2],[-10,10],[2,9],[13,5],[14,4],[15,0],[12,0],[7,-6],[12,-4],[6,-5],[9,-6],[1,-7],[-14,-5]],[[75682,97320],[56,-11],[18,-9],[-58,2],[-76,21],[-18,9],[1,0],[9,5],[68,-17]],[[75830,97503],[-12,-9],[-12,-4],[-25,1],[2,-4],[-8,-5],[-34,2],[-13,8],[-6,3],[-2,0],[-2,3],[0,2],[0,3],[14,0],[43,12],[28,-2],[27,-10]],[[75640,97523],[46,-12],[-7,-4],[-22,0],[-21,-8],[-8,0],[2,-5],[3,-3],[7,-4],[-17,-6],[-128,22],[46,2],[22,-6],[11,1],[12,4],[19,16],[12,3],[23,0]],[[75380,97542],[45,-21],[-19,6],[-22,1],[-7,3],[1,3],[0,4],[-8,4],[-39,18],[-104,24],[-7,4],[97,-15],[63,-31]],[[77833,97657],[15,1],[9,-2],[6,-7],[-34,-4],[-33,-12],[-23,-22],[-12,-7],[-10,8],[3,6],[3,5],[2,6],[1,8],[0,6],[-1,5],[0,6],[3,7],[10,7],[11,2],[21,0],[-4,-9],[33,-4]],[[76201,97864],[-9,-7],[-12,-4],[-23,-1],[1,-2],[1,-2],[1,-2],[1,-2],[-8,-7],[-44,-11],[-10,0],[-8,6],[7,14],[3,6],[5,4],[39,2],[35,13],[11,-1],[10,-6]],[[90603,76254],[8,0],[5,-1],[2,-3],[0,-7],[-4,-5],[-2,-6],[1,-11],[-16,-12],[-5,0],[-1,3],[-1,11],[-1,2],[-3,2],[-3,4],[-6,10],[14,14],[7,3],[5,-4]],[[90800,76444],[3,-5],[4,-4],[5,-1],[4,2],[-2,-10],[-2,-9],[-3,-7],[-5,-2],[-5,-1],[-4,-3],[-7,-8],[-2,0],[-2,2],[-2,0],[-3,-4],[-1,-5],[-3,-4],[-3,-4],[-2,-1],[-5,-2],[-4,-3],[-4,-2],[-5,2],[2,-8],[-7,-8],[-3,-3],[-4,-1],[-5,2],[-7,8],[-4,2],[-2,4],[0,8],[3,17],[-1,6],[-2,7],[1,5],[12,3],[7,5],[26,23],[8,3],[6,-4],[4,7],[4,4],[4,-1],[4,-6],[2,-4]],[[90685,76781],[23,13],[6,0],[-5,-25],[-2,-6],[-1,-3],[-2,-6],[-1,-3],[-1,-3],[-3,-3],[-2,-2],[-3,-1],[-8,8],[-4,3],[-3,-2],[-9,-6],[-2,-2],[-2,-1],[-8,-22],[-2,-5],[-11,-15],[-6,-6],[-8,-5],[-9,-2],[-5,5],[-6,-5],[-18,-3],[-6,-6],[-1,-4],[-2,-3],[-3,-2],[-2,-2],[-1,-1],[-1,-9],[-1,-3],[-3,-8],[-3,-4],[-2,-3],[-5,-4],[-27,-36],[-3,-5],[-8,-20],[-2,-6],[0,-18],[-1,-7],[-3,-5],[-5,4],[-6,-3],[-5,-8],[-2,-11],[-1,-12],[-3,-11],[-4,-10],[-4,-6],[-5,-5],[-5,-4],[-18,-5],[-4,-5],[-8,-14],[-9,-11],[-2,-8],[-2,-62],[-4,-42],[-1,-4],[-1,3],[-1,6],[-1,4],[0,8],[1,9],[-1,4],[2,4],[-10,12],[-11,-6],[-9,-1],[-4,27],[0,16],[0,5],[-2,4],[-2,5],[-1,5],[0,4],[3,4],[6,4],[2,4],[6,17],[3,6],[16,14],[3,4],[3,7],[28,32],[5,17],[1,3],[6,3],[6,8],[5,10],[3,11],[2,23],[1,4],[6,9],[1,7],[2,5],[13,12],[4,5],[0,5],[1,13],[1,5],[8,16],[5,7],[11,6],[4,5],[2,4],[1,5],[1,5],[0,4],[1,5],[5,7],[1,4],[1,14],[2,10],[3,8],[4,7],[13,41],[8,17],[11,3],[7,0],[3,-3],[14,-23],[2,-2],[7,-4],[15,-17],[9,-4],[29,4]],[[91332,77365],[2,-6],[11,-20],[-1,-11],[-7,-11],[-10,-9],[-6,-3],[-8,-1],[-24,5],[-16,-3],[-8,-5],[-25,-28],[-8,-6],[-26,-6],[-19,-10],[-17,-16],[-24,-38],[-17,-31],[-12,-24],[-9,-19],[-8,-4],[-14,-22],[-13,1],[-9,1],[-7,-1],[-3,-2],[-5,-8],[-3,-2],[-8,14],[-4,15],[-7,9],[-13,-8],[-8,-15],[-1,-11],[2,-11],[6,-6],[-1,-8],[-5,-4],[-3,-6],[-9,-14],[-2,-6],[-4,-14],[-2,-6],[-20,-27],[-27,-25],[-16,-28],[-11,-17],[-5,-11],[-13,-36],[-20,-13],[-11,7],[-16,-20],[-10,-20],[-7,-13],[-5,-14],[-2,-12],[-3,-10],[-6,1],[-7,6],[-10,1],[-4,7],[-1,10],[2,8],[2,8],[6,9],[4,10],[8,9],[3,7],[-3,12],[-2,10],[0,13],[2,10],[4,-1],[2,-12],[1,-11],[6,-7],[5,-4],[5,10],[5,10],[-3,13],[-5,8],[-3,17],[9,3],[10,-13],[7,-5],[10,5],[7,16],[12,24],[1,10],[1,14],[-12,9],[-11,4],[-7,11],[4,19],[12,4],[10,-15],[8,-6],[9,13],[-3,18],[7,10],[27,20],[13,21],[12,13],[4,5],[5,11],[3,11],[2,13],[0,16],[0,8],[0,4],[0,3],[2,5],[5,4],[4,-1],[4,-4],[3,-5],[7,-8],[8,1],[7,6],[6,11],[18,42],[7,12],[6,7],[30,13],[2,3],[0,8],[-3,6],[-3,6],[-2,6],[2,25],[0,6],[-3,13],[0,7],[3,16],[5,9],[7,8],[7,10],[3,3],[2,-5],[1,-8],[1,-15],[1,-6],[8,-24],[1,-5],[1,-7],[0,-9],[-1,-5],[0,-5],[3,-8],[7,-8],[9,-2],[67,14],[13,15],[11,23],[7,12],[6,5],[1,3],[5,15],[3,4],[8,9],[7,10],[5,12],[3,4],[2,1],[6,1],[3,2],[2,4],[3,10],[1,2],[2,2],[5,1],[22,13],[10,2],[10,-6],[15,-22],[1,-10],[-8,-12],[-7,-5],[-1,-3],[0,-9]],[[91759,77836],[17,12],[23,-12],[25,13],[-15,-25],[-12,-17],[-8,-11],[-14,-25],[-8,-11],[-12,-7],[-10,-14],[-11,-6],[-5,-16],[-10,-15],[-3,-21],[5,-11],[-2,-2],[-10,-3],[-3,-6],[-1,-8],[-8,-11],[-7,-5],[-14,-16],[-4,-12],[-7,-3],[-7,1],[-7,1],[-7,-7],[0,-10],[-14,-9],[-8,-10],[-24,-46],[-15,-21],[-18,-22],[-9,-3],[-6,16],[-2,3],[0,-8],[-1,-9],[-1,-3],[-2,-2],[-3,-6],[-6,-4],[-26,2],[2,4],[3,4],[3,14],[5,27],[8,2],[5,12],[2,3],[3,4],[2,3],[3,13],[8,19],[1,4],[-1,7],[1,4],[2,2],[4,0],[2,2],[7,16],[4,18],[8,4],[16,0],[16,11],[11,22],[10,26],[10,22],[27,45],[21,13],[4,0],[7,-1],[4,1],[9,6],[4,5],[3,6],[1,6],[-8,15],[8,12],[10,7],[12,3],[13,8]],[[92278,78380],[7,6],[7,9],[6,5],[5,-12],[-30,-42],[-4,-9],[-4,-22],[-5,-9],[-15,-16],[-3,-5],[-1,-7],[-2,-5],[-2,-3],[-3,-4],[-7,-20],[-6,-7],[-4,-7],[-9,-11],[-9,-3],[-3,-12],[-6,-11],[-10,-15],[-14,-15],[-10,8],[-4,2],[-4,4],[-4,5],[-3,5],[0,5],[1,6],[0,7],[-3,7],[12,8],[25,-3],[10,9],[14,33],[7,14],[28,38],[30,70],[19,25],[0,-4],[-3,-4],[-3,-5],[-1,-7],[0,-8],[1,0]],[[92361,78531],[5,-7],[4,-14],[1,-14],[-4,-15],[-12,1],[-14,11],[-5,13],[0,15],[4,10],[6,2],[15,-2]],[[92505,78777],[8,5],[3,-8],[1,-8],[1,-11],[0,-11],[-2,-13],[-4,-9],[-5,-5],[-5,0],[-5,0],[-4,-8],[-3,7],[0,12],[1,11],[0,10],[3,11],[6,9],[5,8]],[[92579,78942],[1,-8],[2,-6],[-1,-7],[-5,-6],[-7,5],[-5,0],[-9,7],[-5,10],[-7,14],[2,17],[14,2],[7,-7],[5,-5],[8,-16]],[[92836,79439],[5,-12],[-3,-14],[-6,-13],[-6,-9],[-25,-25],[-7,-12],[-1,-7],[1,-8],[-1,-6],[-5,-3],[-9,0],[-3,1],[-5,3],[-2,0],[1,13],[5,11],[20,16],[4,6],[6,13],[1,7],[-1,7],[0,6],[4,2],[1,14],[8,9],[10,4],[8,-3]],[[92773,79468],[4,-4],[3,-4],[1,-5],[-4,-6],[-5,-3],[-6,-1],[-6,0],[-4,2],[-2,0],[-3,8],[-1,7],[0,8],[3,8],[4,-1],[16,-9]],[[92933,79581],[6,-5],[4,-11],[1,-11],[-6,-5],[-8,-3],[-6,-7],[-5,-3],[-7,4],[-4,10],[-5,22],[-4,9],[1,5],[2,3],[2,1],[10,-1],[12,-6],[7,-2]],[[92901,79972],[9,-4],[3,-16],[-5,-12],[-3,-11],[-4,-9],[-10,2],[-5,10],[-4,9],[-1,8],[2,7],[4,8],[7,7],[7,1]],[[93367,80458],[3,-8],[6,-9],[1,-7],[-1,-5],[-3,-15],[0,-7],[2,-13],[0,-6],[-5,-5],[-4,-8],[-3,-2],[-2,-1],[-3,1],[-2,0],[-5,-2],[-3,-3],[-2,-4],[-2,-7],[-1,-8],[0,-6],[1,-5],[0,-8],[-1,-7],[-3,-5],[-5,-3],[-3,-5],[-3,-6],[-13,-35],[-12,-26],[-2,-6],[-2,-6],[-4,-3],[-9,-3],[-4,-5],[-3,-5],[-8,-22],[-3,-2],[-41,-4],[-17,-8],[-17,-17],[-6,-11],[-16,-50],[-3,-14],[-4,-9],[-9,2],[4,14],[1,9],[-2,5],[-7,5],[-16,6],[-8,-1],[-6,-5],[-4,0],[-3,7],[-1,8],[0,9],[2,8],[2,7],[3,6],[3,6],[1,8],[0,7],[-3,16],[1,5],[1,8],[-3,7],[-13,16],[-1,4],[0,8],[4,11],[8,7],[10,1],[15,-11],[7,8],[11,24],[7,11],[8,6],[10,3],[18,0],[2,1],[2,2],[2,8],[2,2],[5,0],[8,-6],[4,-2],[8,3],[8,8],[8,12],[14,27],[2,6],[1,6],[2,13],[1,5],[8,26],[10,22],[2,8],[3,27],[2,11],[3,8],[24,33],[9,5],[9,10],[9,5],[8,-8],[4,-11],[2,-12],[0,-28],[0,-6],[-1,-6],[0,-6],[1,-8]],[[93460,80598],[7,-10],[2,-11],[2,-15],[0,-10],[1,-9],[2,-9],[-3,-10],[-5,-10],[-3,-8],[-4,-10],[-7,-18],[-7,-10],[0,-14],[-6,0],[-8,3],[-9,1],[-5,-1],[-9,-1],[-4,10],[-6,6],[-8,6],[-8,10],[-3,15],[0,14],[4,14],[5,12],[6,4],[9,3],[7,8],[14,22],[8,7],[10,8],[11,4],[7,-1]],[[93211,80559],[-11,3],[-9,9],[-6,14],[-6,19],[7,22],[20,5],[24,-10],[12,-25],[-1,-35],[-7,-3],[-13,2],[-10,-1]],[[89596,82628],[5,5],[6,2],[4,-2],[-4,-4],[-13,-3],[2,2]],[[88283,82720],[3,20],[7,6],[9,2],[8,3],[2,-12],[0,-9],[-1,-6],[-5,-5],[-11,-5],[-5,-6],[-3,-22],[-5,-9],[-5,-5],[-19,-7],[-5,2],[1,11],[0,3],[1,1],[5,-1],[3,2],[15,22],[3,7],[2,8]],[[88228,82787],[1,-9],[1,-11],[1,-9],[4,-7],[-1,-5],[-1,-3],[1,-4],[1,-4],[-3,-4],[-4,-5],[-3,-7],[-1,-9],[1,-7],[6,-10],[2,-7],[-8,5],[-7,-5],[-6,-2],[-5,10],[6,8],[1,13],[-3,28],[-1,3],[-2,2],[-1,3],[0,4],[1,3],[6,9],[6,13],[4,4],[4,3]],[[96682,82773],[3,-4],[9,-9],[2,-5],[0,-8],[-3,-1],[-4,2],[-11,10],[-16,20],[-14,23],[-32,32],[-4,2],[-10,2],[-5,2],[-5,3],[-3,4],[-7,12],[-55,56],[-14,21],[-3,27],[9,1],[13,-7],[11,-10],[2,-10],[-1,-9],[4,-5],[6,-4],[12,-2],[5,-2],[9,-9],[12,-4],[2,-4],[3,-16],[4,-10],[5,-6],[5,-4],[6,-1],[6,-4],[8,-16],[5,-4],[5,-1],[4,-4],[3,-6],[4,-9],[8,-12],[16,-19],[6,-12]],[[88102,83112],[4,-8],[-1,-7],[-19,-41],[-5,-6],[-7,-3],[-1,-5],[2,-12],[3,-12],[1,-4],[-4,-12],[-7,-6],[-8,-2],[-21,2],[-4,3],[0,3],[0,5],[0,5],[-2,4],[-7,2],[-15,-13],[-5,0],[-3,3],[-3,-3],[-3,-4],[-2,-2],[-7,3],[-3,-1],[-3,-7],[2,-4],[4,-12],[-6,-5],[-6,4],[-7,7],[-6,3],[0,3],[4,5],[1,6],[0,6],[1,7],[3,7],[2,2],[8,4],[5,4],[10,16],[5,5],[4,3],[9,4],[34,34],[18,11],[12,-12],[4,13],[6,8],[6,3],[7,-4]],[[88345,83076],[26,3],[12,-3],[8,-13],[-6,-9],[-16,-3],[-5,-6],[-18,-39],[-4,-2],[-4,0],[-3,-2],[-2,-17],[-2,-5],[-1,-5],[-1,-3],[1,-14],[3,-12],[1,-11],[-5,-13],[-30,-23],[-5,-12],[-1,-8],[-4,-6],[-15,-18],[-6,-11],[-2,-1],[-5,-3],[-1,-2],[0,-6],[0,-3],[-1,-3],[-5,-7],[-3,0],[-8,11],[-7,7],[-2,4],[-17,53],[-3,5],[-3,4],[-3,5],[-2,6],[-3,17],[-4,15],[-5,14],[-5,10],[-15,-8],[-10,-9],[-28,-32],[-9,-8],[-10,-3],[5,12],[2,6],[1,10],[1,21],[1,7],[4,15],[6,15],[7,12],[10,15],[5,16],[4,6],[5,3],[10,3],[5,6],[4,11],[4,15],[2,16],[-2,13],[7,10],[8,25],[6,10],[11,3],[9,-5],[18,-14],[0,-10],[5,-3],[7,0],[6,-2],[5,-3],[19,-3],[7,3],[7,6],[7,3],[6,-4],[3,-7],[1,-9],[2,-8],[4,-4],[-6,-16],[-19,-27],[-4,-14],[39,31],[6,2]],[[96295,82897],[0,-13],[-2,-10],[-1,-9],[3,-13],[-4,4],[-7,14],[-4,3],[-5,1],[-4,5],[-7,14],[-14,18],[-5,13],[4,14],[-7,4],[-8,1],[-13,-1],[-7,1],[-5,3],[-16,27],[-2,5],[-1,6],[-2,3],[-7,6],[-6,8],[-8,3],[-3,5],[-1,5],[-2,11],[-1,6],[-5,10],[-22,36],[-1,6],[2,6],[1,13],[-2,11],[-16,34],[-12,9],[-3,7],[6,10],[-8,5],[-18,16],[-27,9],[-10,6],[-5,8],[20,3],[11,4],[9,8],[3,5],[4,12],[2,5],[5,4],[4,-1],[62,-26],[17,7],[4,0],[1,-6],[2,-5],[3,-3],[3,-3],[-13,-20],[-4,-11],[4,-21],[0,-24],[1,-7],[2,-6],[4,-12],[4,-6],[7,-10],[4,-6],[9,-24],[3,-5],[4,-4],[3,-5],[2,-15],[3,-4],[3,-4],[9,-19],[8,-10],[17,-14],[9,-4],[4,-5],[1,-9],[17,-27],[-1,-6],[-2,-6],[-1,-7],[1,-9],[5,-15],[2,-9]],[[91867,85486],[15,-11],[1,-11],[-9,-6],[-8,-4],[-3,-11],[-16,-16],[-12,-13],[-15,-4],[-21,0],[-2,3],[4,13],[6,7],[11,14],[14,11],[8,4],[10,5],[6,7],[1,10],[3,10],[3,-1],[4,-7]],[[95751,85397],[-4,-13],[-1,-9],[-2,-9],[1,-6],[-1,-6],[-14,-23],[-18,-2],[-29,3],[-15,-2],[-16,-11],[-13,-11],[-4,-11],[-9,-6],[-7,8],[-3,1],[-3,1],[-5,5],[-3,1],[-3,-1],[-3,-1],[-7,-12],[-4,-13],[-9,-9],[-13,-10],[-15,-11],[-9,-13],[-11,-4],[-9,1],[-10,-7],[-16,-28],[-33,-28],[-24,-22],[-9,-22],[-10,-14],[-7,-32],[-5,10],[-7,9],[-1,17],[-8,18],[0,9],[8,7],[31,6],[15,21],[8,26],[5,23],[5,15],[14,20],[6,16],[9,20],[-2,15],[-1,22],[4,12],[11,19],[11,22],[14,19],[-5,9],[-4,0],[-9,-3],[-3,1],[-9,6],[-4,1],[-9,-6],[-7,-7],[-10,-2],[6,8],[9,8],[15,7],[45,-2],[88,51],[10,10],[6,12],[15,19],[17,15],[29,18],[6,-3],[-1,-25],[1,-5],[2,-1],[6,2],[2,-1],[0,-3],[0,-7],[0,-3],[3,-30],[3,-7],[10,-9],[4,-4],[5,-17],[8,-15],[-7,-10],[-1,-17]],[[93196,85605],[7,5],[9,2],[9,-3],[0,-10],[-8,1],[-10,-1],[-7,1],[0,5]],[[58275,85999],[2,-2],[0,-3],[-1,-1],[-1,-3],[-1,-2],[-15,12],[-2,3],[-3,3],[-5,3],[-11,9],[3,1],[12,-4],[21,-14],[1,-2]],[[57745,86009],[2,-4],[0,-5],[-5,-1],[-15,-7],[-4,4],[-1,6],[2,6],[0,7],[3,6],[6,-3],[8,-7],[4,-2]],[[57506,86028],[0,-3],[1,-7],[-2,-5],[-3,-2],[-4,0],[-3,2],[-2,5],[-3,10],[0,2],[-1,8],[-5,19],[2,4],[3,0],[4,-6],[3,-7],[3,-6],[3,-5],[2,-6],[2,-3]],[[57975,86177],[1,-1],[2,-3],[-2,-2],[-3,-3],[-2,-4],[0,-5],[-1,-2],[-6,2],[-4,0],[-3,1],[-6,3],[-16,13],[-5,6],[-2,8],[0,6],[1,4],[0,5],[-1,3],[1,1],[3,-2],[3,-1],[2,3],[1,0],[2,-5],[2,-1],[3,1],[2,-2],[3,-4],[17,-18],[8,-3]],[[57921,86203],[1,-3],[1,-1],[0,-4],[-2,-7],[-4,-1],[-6,6],[-3,5],[-1,3],[-2,2],[-2,1],[-3,2],[-5,10],[1,3],[7,1],[3,-1],[6,-2],[5,-5],[3,-4],[0,-3],[1,-2]],[[59984,88611],[6,-6],[18,-13],[4,-7],[-3,-11],[-8,-5],[-9,-1],[-6,5],[-15,20],[-8,4],[-3,4],[-1,9],[8,6],[10,0],[7,-5]],[[59962,88982],[0,-11],[-2,-5],[-3,-3],[-3,-5],[-4,-4],[-6,-3],[-10,-9],[-6,-1],[-4,7],[0,7],[-1,9],[-1,8],[1,7],[-4,1],[-6,4],[-10,0],[-14,2],[-11,8],[-10,13],[-6,13],[0,15],[5,14],[10,3],[12,3],[13,0],[4,8],[6,2],[13,1],[15,-5],[8,-6],[4,-18],[9,-26],[1,-2],[-3,-7],[-3,2],[-7,13],[0,3],[-3,8],[-3,3],[-1,-8],[-2,-12],[-1,-4],[0,-3],[6,-5],[10,-5],[5,-4],[2,-8]],[[3032,89447],[6,7],[6,0],[13,-7],[-4,-12],[-5,-13],[-7,-10],[-7,-1],[-5,4],[-1,10],[2,12],[2,10]],[[61845,89995],[6,-11],[1,-13],[3,-11],[-3,-9],[-7,-1],[-17,8],[-28,17],[-11,13],[-4,13],[7,13],[14,3],[9,-2],[13,-3],[13,-9],[4,-8]],[[58996,90226],[6,-7],[-1,-8],[-3,-4],[-8,7],[-3,1],[-3,2],[-2,5],[1,7],[4,1],[5,-1],[4,-3]],[[66455,91438],[0,-11],[0,-4],[1,-4],[-4,5],[-4,4],[-5,2],[-7,3],[-3,3],[-6,9],[-4,4],[-12,19],[-6,8],[-77,50],[-6,7],[7,3],[8,-2],[93,-51],[14,-15],[-2,-2],[-2,-4],[-2,-2],[4,-6],[11,-9],[2,-7]],[[59452,91566],[26,7],[26,1],[53,-33],[-7,-6],[-99,7],[-11,5],[-3,4],[2,7],[4,4],[9,4]],[[63978,91422],[-3,-24],[-18,-32],[-22,-27],[-15,-9],[2,7],[1,3],[2,2],[-3,14],[5,14],[14,25],[8,23],[1,6],[-4,2],[-8,-3],[-13,-7],[-30,-29],[-11,-4],[-8,-6],[-23,-29],[-5,-10],[11,2],[5,-2],[-1,-8],[-5,-7],[-18,-11],[-30,-45],[-9,-6],[-12,-3],[-12,-5],[-17,-18],[-32,-14],[-25,2],[-8,-2],[2,-5],[-17,-14],[-126,-30],[-5,2],[-3,3],[-2,3],[-3,4],[-4,3],[-4,2],[-4,-2],[-2,-7],[-4,-5],[-26,-2],[-8,8],[-15,19],[-26,22],[-8,2],[-3,3],[-7,11],[-3,3],[-3,1],[-11,11],[9,8],[3,4],[-4,0],[-7,6],[-2,2],[-4,-2],[-7,-8],[-3,0],[-4,8],[-1,8],[2,9],[1,11],[3,12],[5,6],[3,5],[-5,8],[-2,0],[-2,-2],[-3,-1],[-2,3],[-2,3],[1,2],[0,2],[1,3],[1,4],[10,15],[-10,3],[-1,2],[0,7],[0,2],[1,3],[5,14],[7,13],[2,8],[-1,4],[0,19],[0,4],[-1,11],[2,18],[5,17],[4,12],[9,14],[18,23],[8,14],[5,6],[17,10],[16,18],[67,44],[27,8],[50,6],[52,-6],[117,-65],[92,-58],[39,-23],[16,-19],[15,-22],[13,-24]],[[97067,91835],[1,-9],[1,-4],[0,-5],[-3,-8],[-4,-4],[-3,-3],[-2,-5],[1,-8],[0,-4],[-30,4],[-5,-2],[-2,-5],[1,-5],[6,-5],[-7,-13],[1,-10],[5,-9],[3,-14],[-3,-11],[-6,-13],[-12,-19],[-13,-10],[-14,-2],[-28,4],[-45,-6],[-98,37],[-97,38],[-11,11],[-10,15],[-11,15],[-25,7],[-24,13],[-25,6],[-11,14],[9,16],[10,13],[47,45],[57,31],[8,1],[3,1],[5,6],[3,1],[104,-23],[13,-9],[23,-4],[17,-14],[111,-19],[13,-7],[27,-7],[14,-7],[6,-14]],[[66816,91817],[2,-2],[0,-4],[-2,-4],[-3,-2],[-4,-1],[-5,-2],[-8,-7],[-5,-9],[-2,-9],[3,-9],[6,-8],[-28,5],[-6,-5],[2,-4],[-29,-15],[-15,-3],[-30,18],[-17,4],[-8,-1],[-8,-5],[-15,-14],[1,-3],[3,-9],[-6,1],[-4,5],[-2,5],[-3,5],[-8,2],[-23,-2],[-57,12],[4,9],[-3,7],[-6,5],[-3,5],[3,12],[7,2],[9,0],[5,3],[0,10],[-5,8],[-35,27],[-13,15],[-9,4],[-9,-1],[-17,-6],[-10,3],[-9,6],[-8,7],[-8,5],[-27,1],[-40,12],[4,-6],[7,-7],[8,-5],[13,-5],[22,-17],[-6,-8],[-9,-2],[-17,2],[1,8],[-5,0],[-7,3],[-6,5],[-1,4],[-3,7],[-12,13],[-56,44],[-35,45],[9,21],[-4,3],[-8,3],[-3,6],[4,0],[13,4],[-2,3],[-2,3],[-3,1],[-2,1],[1,3],[2,10],[1,3],[-5,2],[-5,-1],[-4,-3],[-6,-2],[-1,1],[-1,6],[-1,2],[-4,2],[-12,1],[3,7],[8,7],[3,7],[-6,2],[-9,0],[-7,4],[-3,12],[5,6],[10,0],[99,-32],[-2,6],[-6,10],[-1,6],[-4,3],[-22,12],[-7,9],[-3,3],[-38,19],[-8,0],[7,10],[11,-1],[22,-9],[-2,8],[5,5],[7,4],[13,4],[2,1],[3,3],[4,8],[2,6],[-2,1],[-2,1],[-2,4],[-1,5],[-1,0],[-1,1],[3,6],[2,2],[8,2],[27,0],[8,3],[22,18],[12,6],[5,-8],[1,-7],[4,-6],[5,-4],[12,-4],[54,-35],[10,-11],[24,-39],[8,-6],[12,-3],[6,-4],[3,-7],[-2,-22],[0,-5],[5,-5],[24,1],[18,-14],[7,-2],[6,0],[4,-2],[2,-5],[1,-11],[2,-7],[4,-3],[11,0],[25,-17],[8,0],[15,3],[7,-3],[6,-12],[3,-3],[8,-5],[63,-56],[1,-8],[24,4],[4,-5],[13,-20],[-4,-6],[-2,-8],[0,-10],[2,-9],[3,-4],[9,-4],[3,-4],[1,-3],[2,-6],[1,-5],[3,-2]],[[65865,92255],[21,-10],[8,-9],[-4,-9],[-5,0],[-24,14],[-13,3],[-5,3],[6,-9],[17,-8],[5,-11],[-21,3],[-37,18],[-9,15],[5,4],[2,1],[3,0],[-5,7],[-15,4],[-5,13],[30,-14],[17,-4],[4,-3],[8,-8],[5,-2],[12,2]],[[95105,92328],[7,0],[8,-5],[14,-11],[-10,0],[-28,-8],[-31,8],[0,4],[7,1],[3,-1],[2,0],[3,3],[2,0],[2,-3],[11,1],[5,2],[2,2],[2,6],[1,1]],[[94905,92393],[2,-6],[6,-12],[1,-6],[-8,1],[-7,3],[-19,18],[-5,2],[-9,0],[-4,2],[-8,5],[-4,1],[4,3],[3,5],[0,6],[-1,7],[13,1],[4,-1],[3,-3],[5,-7],[3,-3],[7,-1],[6,0],[7,-2],[5,-8],[-4,-5]],[[94644,92421],[6,-7],[6,-13],[-23,-1],[-24,-6],[-25,7],[1,17],[10,11],[2,20],[-14,3],[-6,-8],[-8,-3],[-12,25],[5,8],[8,4],[17,1],[7,-3],[37,-10],[5,-11],[1,-5],[3,-6],[4,-23]],[[64786,92645],[-7,-11],[-1,-3],[1,-4],[3,-11],[-4,-9],[-11,-8],[-4,-7],[0,-4],[3,-7],[0,-3],[-2,-5],[-3,-2],[-2,-2],[-4,-1],[-6,0],[-5,3],[-5,-2],[-4,-9],[-2,-23],[8,-10],[11,-6],[8,-8],[-5,-10],[-16,-6],[-15,1],[1,13],[1,8],[-12,15],[0,10],[-5,7],[-6,4],[-37,17],[1,8],[-2,5],[-6,9],[0,3],[0,13],[-1,6],[-4,6],[-20,7],[-4,4],[-3,10],[-5,6],[-10,9],[-13,6],[-13,1],[-17,-8],[-27,5],[-27,17],[-8,8],[-4,12],[1,15],[4,6],[7,4],[32,8],[5,4],[6,4],[14,-2],[6,2],[7,5],[6,2],[32,-5],[7,-4],[9,-11],[5,-3],[5,2],[-10,11],[-4,7],[0,8],[6,6],[9,-1],[39,-16],[7,-7],[4,-6],[6,-14],[4,-8],[5,-4],[5,-4],[5,-5],[2,-9],[-4,-2],[-25,18],[-3,6],[-7,14],[-5,6],[-16,11],[-9,4],[-7,-3],[8,-2],[20,-14],[8,-8],[-6,-5],[-7,-1],[-14,2],[0,-4],[79,-48],[14,-3],[12,6],[-5,4],[-5,1],[-11,-1],[0,4],[5,2],[8,5],[4,1],[5,-1],[9,-5],[5,-2],[-3,-9],[-1,-9],[3,-6],[7,0]],[[88309,92848],[2,-4],[12,-25],[-7,-9],[-48,-38],[-14,-6],[-7,-1],[-29,11],[-18,22],[-11,6],[-25,-2],[-13,8],[-8,3],[-8,-1],[-6,-5],[9,-6],[21,-7],[10,-7],[-5,-4],[-2,0],[-3,0],[4,-8],[-13,-5],[-83,50],[-15,3],[9,10],[29,8],[25,17],[71,6],[30,-5],[8,1],[17,8],[10,2],[41,-7],[4,-3],[10,-11],[3,-1]],[[71743,93436],[25,-24],[8,-12],[-11,-11],[-25,-11],[-24,-19],[-29,-14],[-26,-5],[-12,-9],[-35,-35],[-12,-6],[-51,-12],[-107,3],[-21,-7],[-58,9],[-13,8],[-5,15],[1,2],[8,14],[8,8],[88,52],[5,5],[3,7],[5,22],[10,16],[12,9],[25,10],[34,30],[12,4],[51,-4],[64,-23],[29,-2],[28,-10],[13,-10]],[[85786,93497],[10,-2],[12,-7],[9,-11],[8,-16],[-28,-1],[-8,-6],[-7,-14],[-4,-1],[-6,0],[-4,-3],[1,-1],[3,-3],[-36,-10],[-12,2],[-12,7],[-25,6],[-26,0],[-12,4],[-63,44],[-2,0],[8,5],[72,10],[72,9],[50,-12]],[[85643,93590],[1,10],[27,24],[28,5],[60,4],[30,15],[42,13],[62,-3],[50,-36],[5,-32],[-23,-23],[-35,-7],[-61,6],[-93,12],[-93,12]],[[72100,93564],[3,-16],[-10,-9],[-39,-13],[-110,24],[-25,-2],[-8,3],[-25,19],[-23,7],[-11,8],[-4,16],[-1,9],[-4,2],[-3,-2],[-3,-3],[-1,-6],[0,-9],[-1,-5],[-3,5],[-4,16],[2,12],[6,9],[8,8],[6,2],[66,60],[67,59],[9,3],[9,-2],[8,-6],[24,-24],[13,-7],[4,-5],[2,-5],[1,-4],[0,-4],[1,-6],[1,-4],[12,-14],[27,-23],[5,-10],[-5,1],[-5,2],[-4,1],[-5,-4],[5,-6],[3,-9],[2,-10],[-2,-11],[3,-4],[2,-4],[1,-6],[1,-7],[0,-2],[-2,-3],[-1,-3],[0,-4],[1,-4],[2,-4],[3,-2],[2,-4]],[[70756,93765],[34,-8],[32,-17],[0,-3],[-25,12],[-22,4],[-7,3],[-9,0],[-9,-8],[-5,-14],[3,-17],[-14,-31],[-2,-8],[2,-14],[5,-9],[13,-12],[-3,-5],[-3,-13],[-2,-4],[-7,-3],[-20,9],[2,3],[2,9],[-37,3],[-34,17],[-2,3],[-1,5],[-2,3],[-25,6],[-9,5],[-23,20],[-6,7],[-1,10],[18,36],[7,11],[8,4],[73,12],[69,-16]],[[83410,93761],[-5,-8],[-10,-12],[-4,-9],[4,-6],[1,-1],[-118,0],[-16,-4],[-7,0],[-5,8],[17,16],[-7,12],[-22,9],[-7,11],[10,2],[34,18],[64,4],[62,-29],[9,-11]],[[71303,93812],[8,-7],[3,-5],[1,-7],[-2,-6],[-5,-2],[-5,0],[-17,-6],[-87,10],[-41,20],[-8,9],[-3,7],[4,4],[11,1],[95,-16],[36,4],[10,-6]],[[69907,93836],[2,-7],[1,-7],[0,-6],[8,-35],[12,-55],[-6,-4],[-31,33],[-34,35],[-33,17],[-10,-1],[-6,-6],[-5,-9],[-6,-5],[-86,-12],[-85,-12],[-56,-30],[-57,-8],[-15,5],[-11,14],[-6,12],[-4,4],[-5,2],[-7,-2],[-19,-15],[-4,-7],[4,-4],[13,-4],[6,-5],[5,-7],[0,-5],[-25,9],[-8,0],[-14,-5],[-6,0],[-6,3],[-4,5],[1,12],[4,17],[2,8],[3,8],[6,10],[25,31],[4,8],[4,11],[4,13],[1,12],[-3,13],[-10,18],[-3,12],[-2,8],[-10,19],[-3,14],[7,5],[135,54],[11,-5],[4,-6],[11,0],[24,12],[83,10],[78,-31],[11,-13],[-8,-4],[-25,8],[-11,-2],[0,-4],[4,-8],[4,-11],[-1,-9],[-3,-7],[-5,-6],[-5,-8],[-2,-7],[1,-8],[1,-7],[2,-4],[-8,-9],[-19,-6],[-5,-14],[6,1],[17,8],[6,0],[17,-4],[18,1],[6,-1],[4,-3],[8,-8],[4,-2],[-4,16],[6,10],[9,7],[20,7],[5,5],[2,10],[3,5],[6,-2],[41,-44],[5,-8],[2,-6],[10,-14]],[[71321,93968],[-1,-12],[-9,3],[-19,17],[-25,13],[-80,19],[-44,-3],[-13,8],[25,21],[25,-4],[48,-22],[26,-3],[60,-25],[7,-12]],[[71089,94011],[-9,-4],[-5,-4],[-2,-5],[1,-5],[7,-7],[2,-6],[-27,-10],[-85,-2],[3,2],[5,4],[2,5],[-1,5],[1,3],[3,9],[-5,-2],[-15,-12],[-20,-9],[-6,-5],[-5,-9],[1,-6],[2,-4],[0,-6],[-3,-7],[-6,-2],[-5,3],[-5,6],[1,6],[0,2],[1,1],[1,3],[6,13],[7,11],[17,17],[55,33],[115,15],[12,-11],[-10,-9],[-33,-13]],[[89853,93891],[12,-25],[6,-16],[7,-12],[-10,-14],[-34,-11],[-64,-7],[-116,26],[-61,-4],[-54,13],[-35,3],[-105,17],[-91,18],[-56,18],[-73,24],[-72,23],[-79,-3],[-60,-13],[-36,-21],[-54,-12],[-41,7],[-8,18],[-6,29],[39,31],[48,-7],[43,-4],[72,20],[37,45],[9,11],[9,14],[6,17],[5,12],[17,28],[5,10],[8,22],[8,15],[9,13],[10,11],[53,36],[11,1],[-1,-2],[2,-1],[3,-1],[7,-4],[45,-3],[63,25],[125,6],[64,-30],[57,-11],[28,-13],[84,-68],[12,-4],[5,-2],[18,-20],[6,-4],[34,-10],[70,-59],[9,-13],[13,-24],[14,-22],[-19,-18],[-7,-3],[2,-7],[1,-7],[0,-7],[1,-7],[1,-2],[2,0],[1,-2],[1,-6],[0,-4],[0,-3],[0,-3],[0,-4]],[[84606,94244],[14,-4],[6,-4],[1,-6],[-9,-12],[-32,-18],[-2,0],[-5,6],[-7,3],[-7,-1],[-6,-4],[-7,-1],[-6,4],[-5,6],[-6,2],[-5,1],[-4,2],[-2,5],[1,9],[5,5],[13,0],[5,7],[-4,-1],[-4,1],[-3,2],[-4,2],[16,10],[55,6],[-25,-9],[-8,-7],[35,-4]],[[73431,94305],[-7,-4],[6,-9],[19,-16],[-11,-8],[-13,-1],[-29,7],[-14,11],[-74,5],[-4,3],[-3,4],[0,8],[3,2],[19,2],[4,4],[10,1],[39,-9],[25,3],[37,14],[8,0],[3,-5],[-2,-7],[-5,-4],[-11,-1]],[[73197,94365],[8,-1],[8,-3],[8,-5],[6,-9],[-2,-6],[-8,-4],[-16,-4],[2,9],[-8,2],[-30,-6],[2,-8],[8,-7],[9,-2],[-9,-6],[-11,0],[-87,30],[-70,-4],[0,5],[-4,3],[13,15],[16,7],[39,4],[34,10],[92,-20]],[[72935,94390],[48,-36],[-8,-10],[-13,-10],[-13,-8],[-7,1],[-12,10],[-55,4],[-5,3],[-4,10],[-1,9],[2,6],[3,4],[4,4],[14,7],[15,5],[32,1]],[[87849,94268],[3,-15],[-6,-12],[-10,-7],[-11,-4],[-2,-2],[-1,-3],[-2,-3],[-2,-1],[-4,1],[-15,11],[-4,6],[-1,7],[-6,11],[-85,61],[-8,9],[-5,11],[-3,13],[-4,8],[-30,24],[-11,2],[-11,0],[-10,4],[-8,14],[-5,29],[-3,6],[-8,9],[9,0],[4,-1],[15,-9],[38,-4],[43,-39],[34,-18],[13,-4],[12,-10],[15,-7],[4,-4],[25,-30],[28,-19],[13,-15],[-1,-19]],[[89193,94382],[-3,-6],[-3,-4],[-1,-4],[2,-8],[1,-4],[-2,-2],[-1,-2],[-1,-3],[1,-2],[2,-5],[1,-3],[-1,-7],[-1,-3],[-3,-2],[-2,-6],[-1,-5],[-1,-10],[-1,-5],[-3,-5],[-14,-11],[-13,-5],[-27,0],[-13,-4],[-14,-11],[-6,-1],[-14,0],[-13,-4],[-18,-14],[-5,-2],[-29,-5],[-31,18],[-36,52],[-9,26],[2,20],[1,30],[5,21],[8,18],[35,20],[75,7],[76,6],[24,-8],[22,-17],[13,-29],[1,-9],[1,-2],[-4,-10]],[[82249,94504],[5,-9],[2,-10],[-2,-9],[-7,-9],[-11,-5],[-13,0],[-13,3],[-11,6],[-6,1],[-2,1],[0,2],[-1,10],[3,11],[6,10],[6,6],[11,5],[12,1],[11,-5],[10,-9]],[[73575,94593],[10,-2],[7,-6],[0,-6],[-10,-6],[-13,-2],[-49,5],[-27,-5],[-10,-7],[63,-28],[-10,-8],[-81,18],[-12,8],[-3,11],[9,6],[48,18],[78,4]],[[81501,94557],[2,-6],[2,-11],[2,-6],[0,-7],[-5,-3],[-13,-4],[1,-18],[-11,-15],[-24,-16],[9,-7],[2,-5],[-16,-9],[-4,-7],[3,-4],[-17,-12],[-36,-8],[-17,-11],[-5,-6],[-9,-17],[-20,-27],[-19,-12],[-30,11],[-25,-3],[-28,12],[-87,10],[-12,7],[-22,21],[-29,18],[-99,26],[-27,19],[-7,12],[3,19],[11,9],[38,12],[16,-2],[29,-13],[12,-3],[14,3],[14,9],[10,15],[-4,8],[0,7],[3,6],[4,5],[1,5],[-6,10],[-2,8],[9,35],[29,8],[84,-11],[94,-22],[82,0],[74,-9],[15,-8],[11,-13]],[[73760,94634],[7,-3],[14,-12],[8,-2],[-3,-21],[-38,-7],[2,-20],[-53,0],[-18,7],[-11,8],[-11,13],[-5,15],[8,14],[16,8],[84,0]],[[73910,94622],[23,-6],[11,-6],[2,-13],[-17,-11],[-9,-4],[-5,5],[-5,8],[-11,4],[-12,0],[-8,-2],[2,-6],[3,-4],[3,-2],[4,0],[-5,-9],[-4,-4],[-17,-5],[-16,-10],[-15,-2],[-27,14],[-14,4],[5,7],[14,11],[2,3],[5,12],[11,24],[3,4],[7,2],[13,-1],[18,3],[14,-3],[25,-13]],[[72114,94650],[-7,-9],[-11,-10],[-7,-12],[3,-14],[-12,-5],[-17,3],[-66,39],[-12,12],[4,0],[11,-4],[11,-8],[11,-5],[10,6],[-2,11],[-12,7],[-24,5],[6,13],[12,5],[21,-2],[-1,-4],[-2,-3],[-2,-3],[-3,-2],[11,-6],[64,-8],[10,-5],[4,-1]],[[73673,94735],[-31,0],[-5,6],[5,6],[65,7],[17,7],[16,15],[8,0],[12,-7],[6,-2],[14,3],[7,-1],[6,-6],[-2,-13],[3,-10],[6,-8],[7,-5],[-8,-5],[-7,1],[-14,8],[-27,-13],[-6,3],[-6,8],[-10,6],[-17,4],[-39,-4]],[[74174,94881],[26,-24],[4,-9],[-4,-2],[-13,-20],[-6,-5],[-17,-4],[-13,0],[-6,3],[-19,14],[-36,2],[-7,-3],[-4,-9],[2,-5],[13,-9],[11,-4],[13,-8],[33,-7],[-7,-12],[-14,0],[-38,18],[-45,-6],[-8,1],[-14,6],[-7,2],[-29,-4],[-12,1],[-6,4],[-3,9],[-2,6],[-14,8],[-5,5],[6,6],[5,3],[5,-2],[7,-6],[7,-3],[53,-6],[15,4],[9,12],[-7,0],[-20,8],[8,11],[-4,9],[-5,8],[8,5],[32,-9],[-4,-10],[-2,-3],[28,3],[55,20],[31,2]],[[72815,94970],[3,-5],[1,-7],[0,-8],[0,-8],[-26,14],[-9,6],[7,10],[9,7],[9,1],[6,-10]],[[72844,95108],[3,-6],[8,-12],[4,-6],[-14,-1],[-47,8],[-10,-5],[1,-5],[0,-5],[2,-8],[1,-6],[-4,-5],[-2,-5],[3,-10],[1,-5],[-4,-2],[-3,-1],[-3,-2],[-3,-3],[-2,-6],[3,-6],[2,-7],[1,-8],[-2,-8],[2,-3],[-8,0],[-8,3],[-7,5],[-7,10],[-3,9],[0,8],[1,7],[-1,11],[-7,29],[-7,3],[-8,1],[-4,-4],[3,-14],[-15,0],[-8,4],[-5,9],[1,-10],[1,-3],[2,-3],[-10,-6],[-14,6],[-24,20],[6,12],[2,4],[-13,-1],[-7,2],[-5,7],[9,12],[52,42],[11,6],[12,1],[-6,-12],[-9,-12],[-2,-10],[11,-6],[-10,-9],[9,-1],[47,8],[7,5],[-5,10],[-7,8],[-7,5],[-7,2],[5,6],[12,3],[5,3],[0,8],[-4,3],[-7,1],[-4,4],[18,11],[58,6],[0,-5],[-1,-1],[-4,-2],[0,-5],[-6,-24],[1,-10],[9,-2],[-9,-8],[-33,12],[11,-15],[14,-2],[15,2],[13,-3],[4,-4],[2,-5],[1,-7],[3,-7]],[[91896,94983],[9,-1],[18,-6],[9,-6],[-13,-2],[-15,-8],[-13,-13],[-9,-17],[2,-4],[-4,-9],[-18,-12],[0,-6],[-1,-3],[-2,0],[-2,1],[-1,0],[-9,-7],[-2,-3],[2,-7],[6,-8],[5,-10],[-3,-15],[-10,-17],[-10,-7],[-113,-26],[-113,-27],[-6,-5],[-13,-16],[-3,-2],[-117,4],[-24,-9],[-96,9],[-96,9],[-96,9],[-89,50],[-14,13],[-15,4],[-7,5],[2,4],[-18,13],[-41,11],[-56,1],[-63,19],[-37,29],[-85,44],[-120,28],[-27,17],[-5,5],[-6,8],[-2,8],[10,7],[9,13],[5,3],[4,7],[2,15],[1,16],[-1,11],[-4,14],[0,6],[6,0],[7,-3],[7,-2],[7,3],[6,6],[-8,7],[-2,7],[4,6],[8,9],[7,5],[17,2],[8,5],[-9,8],[-7,9],[-2,13],[3,19],[10,18],[13,7],[14,-1],[49,-23],[2,-4],[4,-10],[2,-4],[22,-11],[-5,-7],[-7,-4],[-7,-2],[-6,0],[1,-6],[1,-2],[-13,-14],[-2,-6],[2,-9],[6,-4],[13,-4],[5,-4],[12,-16],[7,-5],[99,-18],[18,6],[30,2],[6,3],[-10,12],[-14,0],[-26,-8],[7,11],[10,9],[12,6],[22,2],[3,0],[0,-3],[-1,-2],[1,-2],[4,-3],[17,-2],[-4,10],[-9,7],[-16,8],[11,6],[87,1],[42,-14],[79,1],[79,0],[39,-21],[9,-2],[-7,-21],[-3,-3],[-5,-2],[-19,-16],[-3,-14],[9,-13],[23,-16],[-2,-7],[1,-3],[15,-4],[17,6],[9,0],[22,-4],[32,3],[13,9],[50,18],[93,-9],[93,-8],[93,-9],[12,-7],[6,-6],[5,-9],[0,-6],[-4,-5],[-6,-4],[-4,-3],[14,6],[15,-1],[42,-19],[40,-3],[-7,-6],[-13,-5],[-5,-5],[8,-4],[9,0],[28,13],[4,4],[3,5],[2,6],[-1,4],[1,4],[2,3],[10,4],[33,-2]],[[88048,95236],[-2,3],[0,3],[0,3],[0,1],[0,-1],[0,-2],[1,-1],[5,-8],[18,-6],[7,-6],[-7,0],[-8,2],[-8,5],[-6,7]],[[88094,95272],[-8,-6],[-37,-15],[-3,-4],[4,7],[8,5],[13,6],[3,2],[4,0],[13,5],[3,0]],[[87775,95198],[-9,-15],[2,-13],[8,-12],[10,-9],[-5,-9],[-9,-7],[-38,-21],[-110,-4],[0,11],[2,8],[1,8],[-2,8],[-1,8],[3,8],[5,7],[10,6],[4,8],[5,18],[13,24],[-1,18],[-10,30],[-4,17],[4,2],[3,4],[6,10],[-1,3],[-1,6],[-2,4],[4,2],[2,4],[4,9],[-1,4],[0,3],[0,4],[2,3],[1,1],[2,0],[10,9],[4,6],[1,5],[0,5],[0,4],[1,2],[1,3],[-1,15],[4,6],[4,-3],[-1,-10],[9,-13],[12,-12],[10,-15],[1,-21],[5,-3],[2,-8],[2,-9],[3,-4],[6,-3],[13,-14],[7,-3],[8,-1],[19,-8],[14,-10],[15,-5],[7,-8],[-4,-9],[-49,-44]],[[72807,95412],[33,-1],[9,-6],[-10,-10],[-128,20],[-23,12],[-24,2],[-11,8],[7,3],[7,1],[7,0],[2,-2],[0,-2],[14,0],[117,-25]],[[73132,95452],[5,-8],[-5,-7],[-18,-8],[-11,0],[-31,8],[-10,0],[-30,-8],[-15,0],[-6,4],[4,12],[-9,6],[-32,-6],[-49,8],[-40,-8],[-20,2],[-11,5],[-5,10],[43,-5],[14,5],[20,13],[7,2],[27,0],[10,-5],[76,-8],[77,-8],[9,-4]],[[88094,95272],[3,5],[2,5],[1,6],[-2,7],[-5,5],[-16,9],[-4,7],[23,22],[3,3],[4,8],[3,3],[4,1],[37,1],[23,-10],[48,0],[29,-17],[7,-1],[4,1],[3,2],[0,3],[-1,3],[-1,3],[-1,4],[-6,11],[-30,12],[-11,9],[-8,13],[-20,13],[-8,11],[-3,14],[-2,17],[0,1],[5,7],[77,36],[59,2],[29,9],[25,26],[-2,3],[-2,2],[-3,1],[-3,0],[-1,-1],[-18,-9],[-11,-9],[2,5],[4,3],[14,10],[6,2],[6,2],[14,16],[66,23],[-7,-4],[-4,-3],[-2,-5],[4,-8],[5,-5],[5,-5],[3,-19],[5,-6],[6,0],[6,2],[-2,6],[2,7],[4,6],[4,5],[-2,2],[-3,5],[-1,2],[9,22],[5,9],[6,6],[72,16],[72,16],[-12,-7],[-22,-4],[-8,-1],[6,-2],[11,-5],[2,-4],[-1,-4],[-1,-5],[0,-5],[4,-12],[6,-7],[32,-29],[123,-50],[20,-15],[47,-5],[9,-5],[15,-14],[8,-5],[-4,-7],[-5,0],[-6,3],[-6,0],[-2,-4],[1,-6],[-1,-4],[-2,-2],[-6,-2],[-2,-4],[2,-4],[5,-5],[21,-8],[3,-3],[10,-11],[5,-3],[54,-21],[30,18],[11,-3],[12,-6],[39,-9],[8,-6],[7,-10],[3,-11],[-22,-27],[-3,-3],[-1,-2],[-2,-12],[-1,-4],[-2,-6],[-1,-4],[2,-4],[4,-3],[6,-3],[56,-10],[25,5],[38,-9],[23,2],[12,6],[9,12],[-6,5],[-12,6],[-6,5],[4,5],[2,2],[3,1],[-9,9],[-31,19],[8,18],[3,24],[0,23],[-7,29],[2,9],[3,10],[2,11],[1,12],[0,10],[3,8],[4,9],[9,13],[10,7],[10,3],[54,3],[98,-30],[11,4],[-5,10],[-25,14],[-8,11],[-8,16],[-3,3],[-14,12],[-2,2],[0,3],[0,3],[0,2],[0,1],[-5,6],[-13,11],[-4,7],[16,-2],[63,-30],[30,-5],[58,-36],[65,-29],[78,-58],[12,-18],[5,-4],[16,-8],[107,-18],[36,-15],[60,5],[30,-5],[-7,16],[7,7],[56,14],[28,-4],[27,-13],[1,-2],[2,-3],[2,-2],[4,0],[9,7],[3,0],[24,-4],[68,-40],[65,-18],[51,-23],[27,0],[5,-2],[4,-5],[7,-13],[13,-12],[101,-21],[29,-15],[25,-25],[5,-9],[1,-5],[-2,-3],[-32,5],[-54,-12],[-29,-16],[-52,-16],[-14,-9],[-5,-6],[-4,-10],[-1,-3],[1,-3],[1,-9],[-1,-6],[-7,-11],[-2,-5],[3,-8],[6,-4],[54,-17],[14,-11],[-15,-9],[-33,1],[-14,-9],[2,-11],[-2,-15],[-4,-15],[-5,-9],[-7,-6],[-24,-8],[-22,-15],[-22,-25],[-11,-10],[-13,-4],[-49,0],[-43,-12],[-8,1],[-7,4],[-28,9],[-19,16],[-7,3],[-65,3],[-28,-12],[-16,3],[-29,14],[-48,9],[-9,11],[-4,-2],[-13,6],[-12,-1],[-13,5],[-4,3],[-3,6],[0,3],[0,4],[0,3],[-4,6],[-4,19],[-2,5],[-8,5],[-19,-2],[-9,5],[1,10],[-10,7],[-2,10],[-2,15],[-5,6],[-14,5],[-16,10],[-8,9],[-3,9],[2,6],[8,15],[1,10],[-1,7],[-3,4],[-3,3],[2,8],[5,7],[24,8],[1,3],[1,7],[1,3],[2,2],[24,21],[34,6],[46,25],[6,9],[2,17],[-11,36],[-27,10],[-53,-8],[-3,2],[-5,7],[-3,3],[-4,1],[-12,0],[-28,-8],[-50,4],[-13,-9],[10,0],[11,-3],[12,-6],[7,-11],[-6,-7],[-9,-2],[-89,3],[-14,-2],[6,-5],[28,-5],[14,-6],[7,-1],[-7,-4],[-48,-3],[7,-6],[10,-4],[17,-3],[2,-4],[-3,-8],[-11,-22],[-2,-6],[1,-5],[4,-5],[25,-27],[-7,-29],[-2,-14],[2,-12],[10,-18],[58,-48],[5,-9],[1,-8],[-1,-8],[0,-7],[4,-6],[27,-14],[12,-12],[8,-22],[-2,-4],[7,-11],[11,-5],[46,-10],[50,-4],[64,-22],[57,-13],[31,6],[15,-3],[15,-15],[11,-22],[-3,-6],[-8,-5],[-57,-17],[-128,-11],[-22,7],[-7,-2],[-15,-8],[-6,0],[-12,9],[-6,2],[-12,0],[-10,-3],[-8,-9],[-7,-16],[19,3],[6,-3],[-10,-9],[-46,-9],[-44,4],[-106,65],[0,6],[10,6],[20,6],[10,-1],[21,-6],[29,-18],[10,-1],[9,6],[-5,7],[-6,5],[-23,14],[-2,9],[-10,8],[-99,-3],[-47,-20],[-84,-27],[-72,-2],[-132,-24],[-24,1],[-55,-22],[-79,-7],[-17,20],[-3,7],[-3,12],[-3,6],[-7,4],[-16,1],[-6,7],[-2,6],[-2,13],[-2,5],[-7,4],[-29,-4],[-6,2],[-13,7],[-7,-1],[-36,-19],[-10,-9],[6,-5],[0,-10],[-2,-11],[2,-11],[10,-8],[13,2],[13,7],[9,11],[-3,-7],[-4,-4],[-8,-5],[-8,-10],[-5,-12],[-4,-14],[-7,-15],[-1,-2],[-1,-3],[-42,-47],[-30,-15],[-30,-6],[-31,3],[-56,33],[-90,19],[-91,18],[-14,9],[-14,3],[-47,30],[-7,8],[-6,13],[-5,15],[-4,14],[-1,8],[0,7],[-1,6],[-4,5],[-39,28],[-61,17],[-79,49],[-4,5],[-9,17],[-5,6],[-14,14],[-26,35],[-8,6],[3,14],[1,7],[0,7],[-4,5],[-10,12],[-4,7],[34,16],[16,0],[21,-27],[10,-4],[28,0],[34,8],[7,4],[6,8],[2,11],[-3,11],[-6,6],[-13,4],[-21,1],[-19,-5],[-13,-7],[-5,3],[-3,12],[4,3],[0,9],[1,8],[6,4],[36,0],[-4,8],[-7,12],[-4,4],[-11,9],[-6,7],[-1,7],[1,4],[1,2],[0,2],[1,2],[0,4],[-1,1],[1,2],[4,5],[6,3],[14,-1],[4,6],[-8,4],[-11,17],[-6,4],[-5,1],[-8,4],[-4,0]],[[76845,95636],[0,-11],[-4,-8],[-7,-7],[-4,-6],[-3,-11],[0,-6],[3,-6],[1,-10],[-8,1],[-4,3],[-4,6],[-5,10],[2,7],[3,7],[7,10],[-26,21],[-6,3],[-6,1],[-6,0],[-11,-5],[-5,-6],[3,-7],[14,-13],[5,-5],[-12,-4],[-29,10],[-9,-11],[9,0],[26,-9],[7,-7],[1,-13],[-6,-6],[-9,-2],[-7,-3],[7,-8],[3,-3],[4,-2],[-7,-6],[-12,4],[-34,26],[-80,-1],[-52,13],[-12,9],[2,4],[-100,2],[-12,10],[12,8],[3,5],[-3,5],[0,5],[1,5],[0,7],[3,5],[7,2],[34,-2],[6,-3],[13,-16],[-2,-4],[11,-5],[12,4],[31,27],[12,6],[12,1],[10,-5],[6,-8],[42,4],[13,-4],[1,-11],[-1,-9],[1,-6],[9,-3],[6,2],[5,6],[8,19],[13,14],[18,5],[92,-25],[8,0]],[[81469,95693],[-43,4],[-5,4],[10,17],[15,16],[16,7],[12,-12],[-10,-11],[-3,-5],[12,-6],[29,0],[10,-10],[-9,-6],[-34,2]],[[81099,95835],[4,3],[4,1],[9,0],[-2,4],[-5,0],[-3,1],[-3,3],[-2,4],[50,4],[35,-12],[10,4],[2,4],[2,12],[2,4],[4,2],[6,-1],[6,-3],[8,-10],[23,-4],[8,-4],[-3,-4],[-2,-4],[-7,-4],[5,-4],[13,-9],[-2,-1],[-4,-5],[-2,-2],[3,-2],[7,-3],[4,-2],[-5,-4],[-8,-2],[-5,-3],[11,-8],[30,3],[13,-2],[4,-5],[-3,-4],[-5,-3],[-4,-1],[-20,0],[-7,-4],[3,-4],[4,-6],[4,-7],[1,-7],[-5,-9],[-9,0],[-29,6],[-11,7],[-10,10],[-9,14],[-13,16],[-14,7],[-39,2],[-5,3],[-5,6],[-4,8],[-6,6],[-24,9]],[[76797,95888],[-22,-7],[-9,-9],[3,-13],[-7,-7],[-9,-5],[-17,-4],[-27,4],[-18,-5],[-26,5],[-4,-1],[-7,-6],[-4,-1],[-15,4],[2,6],[0,5],[0,5],[-2,4],[10,9],[11,7],[11,1],[21,-6],[32,15],[6,9],[4,2],[18,-4],[11,2],[13,-2],[23,4],[1,-3],[1,-9]],[[76569,95879],[5,2],[12,8],[6,3],[28,-4],[-4,-8],[-8,-6],[-30,-10],[-43,-2],[-14,3],[-11,10],[1,6],[-1,5],[-6,10],[19,6],[10,0],[9,-6],[12,-17],[6,-4],[9,4]],[[77076,95863],[2,-12],[11,-7],[20,-9],[-8,-10],[-11,-2],[-12,2],[-18,8],[-21,0],[-8,6],[16,9],[5,6],[-1,11],[-2,6],[-1,3],[-1,2],[-4,3],[-15,4],[-4,5],[10,2],[16,11],[10,3],[8,-3],[6,-10],[3,-15],[-1,-13]],[[91492,95915],[-16,-8],[-15,-8],[-4,-11],[-3,-14],[7,-14],[-2,-7],[-15,-4],[-43,1],[-73,1],[-53,-4],[-39,0],[-6,4],[2,7],[8,9],[26,9],[16,5],[29,10],[18,12],[22,10],[32,3],[116,18],[15,-1],[-3,-11],[-19,-7]],[[76812,96192],[5,-7],[6,-22],[7,-7],[-32,-37],[-10,-8],[-22,-5],[-11,-9],[-15,-7],[2,-5],[2,-3],[4,-2],[3,-2],[-8,-8],[-12,-5],[-12,-2],[-20,11],[-10,-2],[-21,-10],[-90,-20],[4,2],[8,8],[9,4],[8,8],[3,2],[33,6],[9,6],[-9,10],[-13,0],[-25,-10],[-73,-6],[-72,-7],[-7,9],[5,2],[9,9],[22,7],[16,11],[44,14],[35,-2],[83,25],[83,25],[39,28],[5,2],[18,-3]],[[79384,96236],[33,14],[18,1],[12,-11],[-9,-4],[-19,-2],[-14,-13],[-8,1],[-8,6],[-5,8]],[[74913,96236],[11,-21],[24,-20],[-19,-27],[-71,-14],[-53,3],[-32,29],[-14,13],[8,19],[14,17],[14,12],[11,6],[83,2],[14,-6],[10,-13]],[[79544,96261],[6,4],[7,1],[7,-2],[6,-3],[-7,-7],[-11,-3],[-10,1],[-6,9],[8,0]],[[79928,96265],[0,-9],[-4,-5],[-4,-2],[-3,-5],[1,-5],[3,-5],[1,-4],[-7,-2],[-20,1],[-78,-21],[-20,5],[-7,-1],[-6,-4],[-6,1],[1,4],[4,4],[5,3],[51,10],[9,6],[-12,6],[-26,-2],[-11,9],[21,26],[11,9],[13,-4],[8,-4],[16,-2],[14,-7],[8,-2],[8,0],[4,0],[5,3],[9,2],[8,0],[4,-5]],[[79683,96334],[6,-7],[-1,-5],[-4,-4],[-7,0],[-14,4],[-7,1],[-6,-5],[3,-4],[-15,-17],[-16,-2],[-33,6],[1,9],[10,10],[-1,10],[7,4],[15,-1],[7,3],[5,5],[14,8],[27,1],[13,-4],[14,1],[5,-5],[-5,-4],[-13,-4],[-5,0]],[[79917,96744],[0,-8],[-23,-25],[-13,-9],[-34,-8],[-6,5],[-2,7],[0,7],[3,3],[-12,7],[-52,-12],[-112,15],[-113,14],[15,14],[8,5],[118,9],[8,3],[2,-1],[0,-6],[77,0],[3,-1],[6,-3],[3,0],[4,2],[2,2],[1,3],[3,3],[5,4],[7,1],[63,-2],[12,-5],[10,-8],[-4,-4],[6,-3],[10,-3],[5,-6]],[[79591,96813],[-8,-8],[-86,-28],[-9,0],[-19,9],[-19,2],[-9,4],[6,8],[4,15],[4,5],[8,3],[58,-6],[17,3],[14,13],[-3,4],[11,20],[14,8],[38,0],[13,-5],[13,-8],[13,-2],[5,-5],[-4,-6],[-1,-13],[-4,-6],[-5,-2],[-8,-2],[-7,3],[-3,8],[-8,5],[-47,-15],[5,-4],[6,-1],[11,1]],[[79281,97008],[-2,-10],[-11,-14],[3,-5],[-6,-17],[-14,-10],[-27,-9],[-52,-39],[-65,-42],[-9,-2],[-8,2],[-21,11],[-6,1],[-14,-6],[-63,-3],[-15,-6],[-31,-3],[-14,-8],[-15,-3],[-28,-15],[-75,-16],[-110,-2],[-54,-5],[-29,7],[-15,-4],[-27,-18],[2,-1],[4,-5],[2,-1],[-7,-7],[-9,-6],[-49,-12],[2,7],[3,7],[2,7],[-1,7],[-4,4],[-17,4],[-102,-3],[-19,-10],[-22,-3],[-12,-7],[-6,-1],[-7,4],[0,10],[-7,2],[-101,-13],[-112,2],[-15,-6],[-40,-31],[-119,-41],[-28,-19],[-32,-4],[-92,-36],[-46,-6],[-59,8],[-26,-11],[-14,-2],[-11,10],[-29,0],[3,6],[9,4],[4,6],[-5,6],[-6,3],[-12,3],[2,8],[-18,8],[-5,4],[10,8],[23,6],[11,6],[15,18],[15,23],[-4,12],[6,9],[17,7],[-2,4],[44,39],[13,4],[46,37],[19,3],[4,3],[-2,9],[-7,7],[-6,8],[5,12],[-4,8],[9,6],[12,6],[6,6],[4,9],[7,7],[4,7],[-6,8],[4,6],[3,1],[3,1],[4,4],[2,3],[2,7],[2,3],[21,22],[3,7],[-2,7],[-4,5],[-3,7],[0,6],[1,6],[1,5],[-2,7],[21,17],[6,10],[1,2],[2,14],[2,4],[4,5],[5,3],[45,22],[10,2],[10,-1],[27,-12],[72,-7],[4,-2],[3,-4],[2,-4],[1,-2],[13,4],[18,1],[7,5],[-10,10],[-13,5],[-50,1],[-13,4],[-9,8],[2,14],[-2,6],[-6,4],[-6,9],[2,4],[-1,14],[8,11],[10,9],[8,11],[2,7],[0,6],[2,5],[4,5],[18,11],[4,6],[11,10],[12,2],[73,-17],[72,-17],[10,6],[-12,0],[-57,12],[-42,21],[-67,12],[6,11],[3,6],[3,19],[4,5],[5,3],[37,6],[-10,3],[-9,7],[2,4],[3,2],[3,1],[3,2],[2,3],[3,8],[3,3],[32,21],[17,4],[35,-3],[17,8],[-5,6],[0,6],[6,13],[-4,3],[-3,1],[-2,0],[1,5],[1,4],[1,4],[3,3],[-2,6],[9,7],[19,7],[48,4],[7,-4],[13,-22],[6,-7],[8,-4],[3,-3],[4,-6],[0,-5],[-2,-10],[1,-4],[4,-2],[21,2],[54,-11],[5,7],[-3,3],[-22,16],[-2,4],[-2,6],[-2,8],[-2,17],[-2,7],[2,6],[3,2],[2,0],[3,4],[0,3],[0,3],[1,4],[1,3],[4,5],[12,8],[18,7],[27,-1],[27,-8],[30,0],[40,-17],[40,-5],[5,-4],[4,-15],[5,-4],[54,-10],[4,-9],[-4,-6],[-8,-5],[-13,-6],[-26,0],[-11,-3],[-29,-29],[7,-4],[2,0],[-7,-10],[-18,-15],[-7,-11],[4,-2],[4,-3],[7,-7],[-7,-13],[-19,-14],[-8,-10],[2,-6],[3,-4],[2,-5],[0,-6],[-2,-5],[-15,-11],[0,-2],[0,-6],[-1,-2],[-1,-2],[-5,-3],[-5,-9],[-13,-10],[-30,-42],[-10,-19],[-2,-5],[0,-5],[-2,-5],[-3,-4],[10,6],[32,7],[37,29],[2,3],[2,8],[3,4],[14,9],[14,14],[12,18],[12,28],[3,6],[9,8],[11,3],[51,-3],[37,15],[8,8],[-2,4],[14,8],[32,-2],[15,8],[2,3],[0,3],[-2,3],[0,3],[1,4],[3,3],[12,6],[7,2],[7,-1],[6,-4],[-3,-5],[-6,-5],[-2,-5],[15,-1],[41,10],[-1,-5],[51,-9],[3,-2],[4,-5],[2,-6],[1,-7],[-2,-7],[-4,-6],[-7,-7],[19,-10],[8,-8],[-2,-13],[2,-4],[86,-9],[20,-13],[13,-25],[-6,-20],[6,-3],[6,0],[-7,-13],[-13,-2],[-13,1],[-11,-3],[74,-8],[3,-3],[3,-5],[1,-6],[-1,-2],[-1,-2],[-1,-5],[-3,-8],[-5,-5],[-11,-5],[8,-2],[33,12],[4,4],[3,6],[1,7],[-1,2],[-6,8],[-2,4],[10,6],[36,2],[47,-8],[33,-20],[3,-4],[15,-32],[4,-5],[-5,-9],[3,-7],[7,-7],[6,-7],[9,-18],[4,-10],[0,-9],[-2,-13],[6,-3],[10,-1],[6,-9]],[[71559,97564],[0,-8],[-4,-5],[-5,-3],[-123,-5],[-123,-6],[-16,6],[4,5],[11,9],[1,5],[-4,5],[-17,12],[-4,0],[-4,-1],[-8,-5],[-3,-1],[-105,20],[-23,20],[-11,15],[0,12],[14,8],[17,1],[17,-4],[14,-7],[-28,-5],[-10,1],[17,-18],[19,-2],[38,7],[5,12],[16,4],[103,-22],[103,-22],[103,-22],[6,-6]],[[76007,97807],[27,-3],[13,-6],[12,-11],[-9,-15],[-10,-10],[-21,-15],[-58,-18],[-28,-15],[-23,-5],[-63,-31],[-119,-25],[-97,2],[-98,2],[4,0],[3,2],[3,3],[4,3],[-12,8],[-4,0],[8,6],[57,10],[16,-2],[21,-11],[7,2],[7,4],[6,7],[-9,14],[-11,8],[-51,23],[-95,8],[-95,8],[-95,9],[-4,5],[2,10],[5,4],[23,8],[27,3],[10,10],[-18,13],[-41,7],[-19,8],[9,0],[29,8],[8,9],[-1,9],[-5,10],[-7,8],[-6,5],[-8,-1],[-27,5],[-26,-1],[-8,5],[10,6],[96,-10],[97,-11],[51,16],[72,-16],[107,-4],[62,-28],[136,-15],[136,-15]],[[64262,97819],[10,1],[25,-6],[9,-7],[-11,-7],[-12,-3],[-128,12],[-127,11],[-127,12],[1,1],[2,1],[48,10],[90,-4],[8,4],[12,20],[8,9],[11,6],[45,8],[30,20],[10,1],[8,-8],[7,-9],[9,-7],[50,-4],[-5,-4],[-10,-4],[-3,-6],[-1,-6],[1,-7],[2,-6],[2,-3],[11,-7],[25,-4],[12,-6],[-6,-3],[-6,-5]],[[60164,97941],[17,9],[56,-13],[-8,-6],[-11,-1],[-22,3],[-17,0],[-8,3],[-7,5]],[[77745,97279],[-6,-10],[7,-14],[16,-18],[-6,-14],[-13,-9],[-53,-20],[-16,-18],[-20,-6],[-27,-17],[-15,-4],[-76,3],[-57,-11],[-90,5],[-13,-8],[9,-3],[4,-3],[-1,-4],[-6,-2],[-70,1],[-24,14],[-42,0],[8,5],[-10,5],[-38,-10],[-51,0],[-1,5],[-5,3],[-18,4],[-64,-7],[-11,8],[13,5],[30,-5],[12,8],[-12,7],[-82,-1],[-12,6],[2,4],[-7,5],[-22,4],[-57,33],[-14,-1],[-7,4],[2,2],[5,10],[-19,13],[-72,2],[-72,1],[6,3],[8,1],[6,4],[5,8],[-122,-17],[-21,5],[-44,-1],[-7,1],[-5,6],[-1,5],[0,6],[0,5],[-2,7],[5,9],[2,3],[-6,4],[-14,1],[-6,3],[-4,8],[-2,3],[-8,4],[-16,2],[-13,-3],[-37,-20],[-19,-4],[-11,-8],[-31,-9],[-14,0],[-11,10],[4,5],[-10,4],[-29,-4],[-7,2],[-54,36],[-3,6],[2,8],[4,9],[2,8],[-9,13],[-70,21],[-9,7],[-4,9],[1,11],[2,7],[7,13],[-2,6],[-3,5],[-7,9],[3,7],[0,7],[-1,5],[0,6],[3,7],[6,13],[3,8],[-14,23],[-25,5],[-47,-8],[3,-8],[5,-8],[-11,-10],[-15,-1],[-69,12],[-12,7],[20,7],[43,-1],[19,14],[-9,7],[-37,5],[-9,4],[-5,4],[-4,7],[-3,3],[-17,-1],[23,8],[8,4],[17,20],[6,4],[-33,0],[-5,-1],[-7,-4],[-5,-5],[0,-6],[-5,-8],[-7,-3],[-21,-2],[-7,-3],[-7,-5],[-6,-5],[-12,-6],[-6,-5],[-1,-7],[4,-4],[22,-5],[-7,0],[-21,-8],[-14,0],[-6,-2],[-1,-6],[-16,-9],[-19,-3],[-18,3],[-16,13],[14,10],[30,2],[14,9],[-12,10],[-28,6],[-23,-6],[-11,0],[-10,6],[6,3],[-52,13],[14,11],[18,-1],[52,-18],[34,6],[76,33],[16,3],[7,3],[14,11],[21,8],[7,5],[2,17],[15,13],[89,39],[73,12],[72,12],[-6,7],[-8,3],[-21,4],[-13,8],[-31,4],[-13,5],[-3,10],[-7,5],[-10,3],[-17,0],[8,10],[12,6],[24,4],[-4,8],[-4,5],[-10,7],[9,6],[9,0],[19,-6],[83,24],[14,13],[-1,2],[-1,6],[12,1],[17,6],[10,10],[-7,15],[12,5],[11,-2],[32,-17],[0,-8],[0,-2],[5,-3],[22,-7],[6,-8],[4,-2],[26,4],[4,2],[2,6],[0,16],[2,6],[5,4],[6,4],[28,11],[84,0],[84,0],[0,-3],[-1,-7],[-1,-3],[20,1],[7,2],[15,12],[5,2],[5,-1],[15,-9],[5,-2],[39,5],[7,5],[11,10],[6,3],[6,1],[8,-2],[14,-9],[8,-1],[51,9],[71,12],[121,12],[41,-15],[6,-7],[4,-3],[3,-1],[8,1],[4,0],[5,-3],[11,-10],[4,-6],[12,-13],[27,-4],[13,-9],[-8,-14],[-15,-11],[-15,-6],[-25,-2],[-4,-2],[-1,-3],[1,-3],[1,-3],[2,-3],[-4,-4],[-21,-14],[4,-3],[13,-5],[-4,-10],[-8,-10],[-9,-8],[-38,-17],[-10,0],[17,-10],[5,-6],[-10,-4],[-20,0],[-9,-8],[7,-5],[16,-2],[8,-5],[-6,-7],[-9,-6],[-23,-6],[-14,-7],[-64,-15],[-6,-8],[7,-3],[8,-1],[9,2],[14,9],[105,27],[4,5],[0,14],[1,6],[2,2],[7,1],[26,15],[7,2],[6,3],[6,7],[-10,12],[3,9],[9,6],[45,2],[46,-19],[24,-1],[10,4],[10,6],[11,10],[-2,4],[-2,2],[-3,2],[-2,0],[4,5],[10,4],[5,3],[-4,4],[4,6],[22,8],[4,4],[-1,4],[-31,10],[-8,9],[11,13],[11,9],[11,4],[56,-13],[122,7],[14,-8],[-6,-5],[-13,-3],[-6,-4],[10,-3],[10,0],[20,6],[8,0],[9,-5],[4,-7],[-7,-7],[7,-5],[52,-8],[-4,-4],[-5,-2],[-4,-2],[-4,0],[9,-10],[36,-2],[19,-6],[19,-10],[1,-2],[2,-3],[1,-3],[0,-2],[1,-2],[1,-1],[2,0],[2,-1],[8,-10],[4,-4],[13,-3],[10,-4],[16,-14],[-6,-10],[5,-7],[16,-7],[-6,-9],[-11,-6],[-21,-6],[-27,1],[-7,-4],[12,-10],[6,-8],[1,-11],[-5,-9],[-20,-12],[-7,-7],[3,-7],[-1,-5],[-4,-8],[-6,-16],[-4,-6],[-5,-3],[5,-10],[12,-10],[5,-8],[-6,-7],[-18,-12],[-4,-10],[1,-10],[3,-9],[9,-13],[-7,-8],[-3,-6],[0,-5],[3,-4],[11,-10],[-5,-5],[-12,-19],[-6,-6],[-17,-10],[-2,-3],[-2,-7],[-2,-3],[-3,-1],[-23,-2],[-5,-2],[-3,-7],[0,-4],[-13,10],[-74,28],[-16,-1],[-15,-8],[8,-10],[72,-31],[72,-32],[8,-8],[-8,-6],[-9,-3],[-17,1],[11,-13],[81,-13],[6,-6],[4,-1],[0,-4],[5,-18],[3,-7]],[[63911,97887],[-11,-5],[-12,-2],[-32,8],[-26,16],[-16,4],[-29,17],[-15,3],[-7,4],[-5,9],[8,8],[78,25],[11,9],[5,2],[92,-4],[25,-18],[4,-9],[-5,-8],[-53,-15],[-15,-18],[4,-5],[-2,-2],[-3,-3],[-2,-3],[-2,-4],[3,0],[4,-2],[2,-3],[-1,-4]],[[65498,98227],[-13,5],[-29,-1],[-11,10],[21,13],[7,7],[-58,1],[-18,8],[3,3],[16,5],[13,5],[17,3],[32,-5],[10,5],[1,8],[5,4],[104,7],[104,8],[13,-7],[-5,-7],[3,-4],[31,-1],[46,-16],[28,-20],[-3,-3],[-1,-3],[1,-4],[1,-5],[-3,-4],[-84,-11],[-83,-11],[4,6],[2,2],[-10,10],[-132,-14],[-12,6]],[[62968,98160],[-5,-7],[-7,-1],[-13,4],[-14,1],[-8,-3],[-6,-6],[7,-15],[2,-5],[-13,-9],[-111,-12],[-8,5],[-6,10],[-3,14],[2,16],[4,6],[10,12],[1,6],[-3,7],[-8,3],[-13,3],[-44,-16],[-15,-1],[-2,2],[-2,3],[-3,3],[-2,-1],[-11,-6],[-11,-2],[-14,-8],[-29,-8],[-8,2],[-4,5],[-8,11],[-5,4],[-14,9],[-29,10],[-105,9],[-10,7],[6,5],[8,3],[27,2],[25,9],[131,14],[132,15],[132,14],[0,4],[-8,-1],[-25,5],[5,4],[7,2],[133,2],[28,7],[25,17],[19,6],[6,6],[-23,7],[-8,6],[13,7],[111,8],[91,-26],[48,-3],[66,14],[62,-20],[44,-25],[-14,-6],[-29,3],[-13,-13],[45,-18],[5,-10],[9,-2],[27,-11],[-2,-6],[-1,-7],[0,-7],[-1,-5],[-6,-3],[-9,1],[-15,7],[-37,6],[-14,8],[-7,2],[-103,6],[-20,11],[5,12],[-2,5],[-14,-1],[-8,2],[-39,32],[-9,3],[-9,-1],[-22,-9],[-22,-3],[4,-3],[7,-8],[4,-1],[-23,0],[-10,4],[-5,0],[4,-10],[16,-14],[7,-8],[-18,-5],[-21,8],[-20,1],[-16,-21],[36,-25],[3,-5],[-3,-4],[-10,-2],[-55,20],[-16,-6],[-8,-5],[-14,-6],[-7,-7],[-1,-4],[-4,-9],[-2,-4],[-5,-2],[-91,8],[-9,-6],[15,-16]],[[67283,98328],[3,-8],[7,-4],[5,-5],[1,-13],[-5,-12],[-8,-8],[-16,-8],[-38,-29],[15,-10],[15,-6],[-8,-10],[-12,-4],[-102,-10],[-2,-2],[-1,-2],[-2,-7],[0,-1],[-22,-6],[-6,-7],[5,-16],[-82,-11],[-9,-5],[27,-5],[2,-2],[-1,-3],[-4,-6],[-10,-10],[-13,-6],[-35,-8],[-20,-14],[-11,-3],[-134,24],[-71,29],[-35,-4],[2,-4],[-8,-7],[-9,-4],[-27,-3],[-18,-9],[-77,-9],[-14,2],[-39,31],[-71,27],[4,6],[5,2],[11,0],[14,10],[3,7],[-11,1],[-13,5],[-7,10],[8,11],[-17,16],[-2,5],[3,5],[16,10],[5,6],[-2,1],[-5,6],[5,5],[12,4],[6,4],[-2,4],[13,13],[36,8],[10,16],[-17,8],[13,2],[38,18],[7,0],[19,-4],[7,1],[11,6],[88,7],[15,-4],[9,-10],[-60,-4],[-20,-9],[96,1],[11,-4],[0,-2],[-1,-3],[0,-2],[4,-1],[3,0],[53,19],[136,13],[136,12],[-2,6],[-2,2],[9,8],[11,2],[129,-9],[39,-34],[4,-6]],[[66147,98309],[-12,4],[-57,0],[-11,5],[-8,8],[8,9],[20,3],[8,5],[20,2],[39,18],[82,9],[82,9],[50,-12],[9,-6],[5,-8],[8,-13],[6,-7],[-4,-1],[-2,-3],[-5,-8],[-15,-14],[-11,-4],[-33,5],[-22,-2],[-43,-14],[-34,-4],[-80,19]],[[65490,98311],[-124,-19],[-123,-18],[-59,12],[1,8],[4,4],[2,4],[-3,8],[-6,4],[-19,0],[-13,-5],[-74,5],[-73,4],[-6,4],[-3,8],[1,7],[32,14],[62,8],[23,-8],[88,12],[6,-1],[6,-3],[2,-5],[-5,-7],[19,-5],[10,2],[9,7],[17,18],[8,6],[11,4],[21,2],[45,-7],[31,-17],[85,-17],[86,-17],[-15,-8],[-46,-4]],[[64357,98278],[9,-1],[4,-2],[3,-5],[-1,-3],[-3,-2],[-1,-3],[1,-4],[-8,-10],[-73,-18],[-73,-17],[-15,-9],[-35,-33],[-13,-6],[-115,-3],[-115,-3],[-10,-7],[-11,-10],[-88,-2],[-15,-8],[9,-7],[14,-4],[11,-6],[0,-15],[3,-1],[4,-2],[2,-4],[0,-4],[-4,-5],[-90,-22],[-91,7],[-90,8],[-13,-14],[1,-2],[6,-7],[-46,-19],[-7,-13],[15,-5],[60,-3],[13,-5],[26,-19],[-4,-7],[-9,-5],[-4,-5],[26,-8],[10,-6],[-6,-10],[-6,-2],[-15,0],[-5,-2],[-1,-2],[0,-3],[-1,-2],[-4,-1],[-65,4],[-42,26],[-16,4],[-8,-10],[12,-14],[3,-6],[-11,-21],[-19,-13],[-20,-6],[-15,5],[-8,8],[-18,13],[-9,2],[-21,-1],[-11,-4],[-9,-7],[0,-4],[1,-3],[0,-4],[-3,-5],[-5,-1],[-99,-12],[-10,2],[-6,3],[0,6],[9,9],[-1,9],[29,26],[14,8],[72,8],[10,11],[-51,-4],[-15,7],[7,7],[19,0],[8,6],[-11,7],[-70,1],[-21,-6],[-42,1],[-31,-16],[10,-11],[3,-5],[-48,2],[-31,-11],[-57,12],[-1,8],[3,8],[1,6],[-5,5],[-64,22],[-11,13],[9,11],[122,34],[8,-2],[12,-6],[8,-9],[-5,-12],[14,-8],[57,8],[35,-11],[23,7],[105,-4],[-12,7],[45,3],[15,7],[-11,3],[-23,2],[-43,13],[-62,3],[-7,3],[-7,6],[-5,10],[81,3],[81,3],[9,7],[-9,4],[-20,1],[-9,6],[3,4],[9,9],[-11,5],[-37,-5],[-41,5],[-110,-20],[-13,6],[10,8],[83,24],[83,24],[42,-8],[9,1],[29,15],[21,6],[11,0],[31,-16],[11,-1],[-2,-3],[-5,-8],[-3,-5],[11,-6],[37,6],[23,-10],[12,0],[12,6],[12,10],[5,2],[8,1],[48,-8],[15,3],[11,9],[-11,6],[-4,5],[5,3],[10,2],[5,3],[2,2],[2,3],[3,3],[23,3],[10,5],[5,12],[-9,0],[-10,2],[-9,5],[-6,10],[40,6],[56,-9],[10,7],[-2,2],[-7,6],[1,2],[4,7],[-2,2],[-3,2],[-3,0],[-3,0],[19,20],[-15,6],[-118,-22],[6,12],[11,8],[11,4],[10,0],[-11,7],[-16,-1],[-55,-18],[-13,3],[-12,9],[10,8],[23,6],[11,7],[-7,3],[-24,0],[94,23],[94,23],[22,19],[12,5],[121,24],[18,-7],[27,-1],[12,-5],[0,-4],[-86,-9],[-15,-8],[-15,-2],[-7,-5],[7,-4],[97,11],[97,11],[29,14],[8,0],[6,-4],[12,-14],[35,-22],[-8,-8],[-10,-4],[-52,0],[-29,-10],[-61,-3],[0,-3],[16,-5],[5,-3],[-10,-8],[-55,-7],[-10,-5],[-7,-9],[8,0],[5,-5],[6,-5],[6,-5],[9,-2],[78,31],[7,-1],[15,-10],[9,-3],[8,1],[14,15],[11,3],[34,2],[9,-1],[4,-6],[4,-8],[9,-2],[17,4],[-5,7],[3,5],[44,9],[-1,-6],[-1,-3],[8,-4],[17,-5],[15,-11],[9,-3],[57,-5]],[[72168,98424],[87,-10],[88,-10],[-7,-24],[-3,-9],[-8,-7],[-13,-8],[-111,-10],[-111,-11],[-111,-10],[-32,10],[-10,11],[3,11],[25,23],[12,18],[6,5],[13,8],[6,5],[2,0],[6,-5],[136,16],[22,-3]],[[66292,98465],[12,-11],[-25,-18],[-1,-12],[-12,-10],[-54,-7],[-31,5],[-103,45],[-12,10],[1,7],[6,4],[38,11],[-3,8],[6,5],[16,3],[81,-20],[81,-20]],[[65926,98375],[-29,9],[-9,-1],[5,8],[5,9],[-9,12],[-16,4],[-36,0],[-16,4],[-7,4],[-5,4],[-5,7],[-1,6],[7,3],[-6,5],[-14,-2],[-7,3],[-6,5],[-91,20],[-91,19],[-14,-1],[2,6],[1,2],[5,8],[7,3],[6,-1],[15,-8],[133,3],[21,-9],[15,-3],[31,-12],[64,-9],[23,4],[108,-24],[3,-2],[3,-9],[3,-4],[20,-16],[74,-13],[74,-13],[-10,-6],[-78,-17],[-26,-17],[-10,-4],[-84,6],[-26,12],[-29,5]],[[65156,98436],[-32,2],[-9,6],[3,9],[1,3],[7,12],[9,3],[9,1],[9,5],[-5,6],[3,6],[28,22],[7,2],[13,-3],[40,-21],[127,-20],[56,-25],[15,-1],[123,22],[84,-18],[84,-19],[8,-22],[95,-25],[96,-25],[95,-25],[5,-5],[5,-9],[-3,-7],[-6,-3],[-14,-3],[-20,-14],[-70,-17],[-70,-16],[-14,4],[-46,37],[-35,10],[-3,2],[-3,3],[0,1],[0,2],[-2,5],[-5,5],[-121,13],[-121,14],[-7,4],[-3,6],[0,6],[-2,4],[-5,2],[-53,3],[-47,22],[7,11],[1,3],[-2,4],[-5,2],[-18,4],[-30,-12],[-58,-2],[-19,7],[-13,9],[-1,5],[-2,4],[-2,4],[-2,1],[-82,-4]],[[64021,98480],[-36,13],[11,8],[-1,3],[-3,7],[-2,2],[36,0],[6,2],[6,6],[-3,5],[-10,7],[10,5],[69,2],[12,-3],[26,-13],[10,-11],[8,-11],[-3,-6],[-8,-3],[-48,-2],[-6,-6],[2,-6],[8,-3],[1,-5],[-3,-6],[-6,-2],[-49,4],[-34,-18],[-12,-2],[-10,6],[1,2],[1,2],[3,4],[6,2],[8,5],[6,6],[4,6]],[[75429,98530],[7,-6],[0,-5],[-4,-3],[-52,-15],[-7,-5],[-4,-9],[-40,-14],[-110,9],[-111,10],[-110,9],[-6,3],[-11,12],[-5,2],[2,9],[0,6],[-3,4],[-5,5],[12,4],[24,15],[11,1],[2,4],[128,-4],[128,-5],[128,-4],[26,-23]],[[77151,98286],[15,-5],[35,5],[13,-12],[-8,-13],[-13,-4],[-26,1],[-7,-2],[-3,-3],[-8,-10],[-6,-3],[-6,1],[-13,4],[-26,1],[-51,-13],[-12,1],[-11,7],[1,3],[-45,-3],[4,-5],[8,-4],[5,-3],[-9,-13],[-22,-12],[-9,-11],[3,-7],[-1,-3],[-4,-2],[-3,-3],[-3,-7],[0,-3],[0,-3],[0,-7],[33,-18],[3,-5],[-1,-10],[1,-9],[7,-5],[4,-1],[3,-3],[3,-5],[1,-7],[-1,-5],[-4,-7],[-1,-4],[0,-13],[4,-9],[5,-5],[7,-2],[24,0],[24,-10],[0,-4],[-2,-5],[-3,-5],[-4,-4],[-13,-4],[-26,-14],[-8,-2],[2,-6],[1,-2],[-12,-9],[-120,-11],[-119,-11],[-120,-12],[-120,-11],[-119,-11],[-48,8],[-15,-5],[-18,-13],[-7,-2],[-52,7],[-7,-3],[-5,-6],[-4,-7],[-4,-5],[-80,-32],[-89,-12],[-28,-14],[-16,1],[-98,29],[-99,29],[2,4],[-7,5],[-128,27],[-27,-3],[-95,12],[7,6],[14,1],[7,2],[2,3],[2,4],[0,3],[0,2],[4,0],[3,-1],[3,-2],[86,-13],[86,-12],[15,7],[-9,9],[-23,1],[-21,8],[-72,4],[-22,10],[-22,2],[-10,7],[2,4],[-10,10],[-24,6],[-6,8],[81,3],[81,3],[11,-1],[18,-1],[11,-2],[126,-15],[9,5],[-5,7],[-6,6],[-11,7],[-14,4],[-110,-4],[-17,1],[-111,-4],[-112,-4],[-111,-5],[7,4],[17,5],[6,8],[-38,-7],[-23,2],[14,24],[21,6],[22,0],[17,7],[-2,2],[-5,6],[91,10],[14,-7],[8,-1],[9,1],[5,5],[-2,2],[-3,1],[128,-14],[18,7],[-74,8],[-73,8],[-24,13],[-23,4],[-11,7],[8,5],[100,25],[128,2],[8,2],[7,7],[1,4],[-1,3],[0,4],[3,6],[3,11],[2,5],[-3,4],[-2,3],[-4,1],[-3,-1],[2,5],[2,3],[6,4],[3,20],[18,18],[97,53],[9,7],[0,9],[-104,-21],[-39,8],[-6,-2],[-9,-8],[-6,-2],[-41,-1],[-9,3],[-1,10],[6,10],[11,6],[19,4],[1,3],[12,12],[3,5],[4,3],[5,2],[4,0],[-2,8],[-4,5],[-5,2],[-4,1],[11,6],[24,2],[24,11],[60,6],[12,6],[4,10],[-6,6],[-18,9],[-1,9],[-4,4],[-2,0],[117,29],[51,-7],[3,1],[2,2],[1,3],[1,3],[0,2],[5,2],[100,9],[28,14],[63,13],[47,-6],[92,24],[41,25],[20,5],[22,13],[100,2],[-8,5],[-127,7],[-7,4],[19,14],[93,5],[94,5],[16,-8],[18,-14],[27,-5],[7,-5],[-16,-7],[-2,-5],[3,-6],[5,-2],[41,1],[10,-5],[-3,-8],[7,-5],[17,-3],[8,-4],[2,-2],[2,-8],[2,-3],[72,-36],[-6,-8],[-1,-11],[4,-9],[7,-4],[45,-9],[-6,-4],[-12,-3],[-6,-5],[5,-4],[6,-3],[6,-1],[6,0],[-2,-4],[13,-11],[27,-4],[13,-5],[12,-14],[5,-3],[126,-32],[-2,-2],[-2,-6],[41,2],[26,-7],[28,0],[10,-8],[-9,-8],[-3,-4],[10,0],[9,-4],[19,-11],[-9,-9],[-19,-3],[-10,-5]],[[65907,98692],[-71,7],[-71,6],[-4,3],[5,7],[9,4],[40,6],[13,6],[7,9],[-5,1],[-4,2],[-8,5],[18,9],[131,-2],[9,6],[-3,2],[-3,2],[-3,1],[8,5],[75,3],[11,-9],[-5,-7],[-2,-1],[5,-5],[9,-4],[5,-3],[-2,-3],[-3,-7],[-1,-3],[13,-5],[71,-4],[71,-3],[40,-26],[7,-10],[-15,-6],[-29,-4],[-30,-12],[-70,1],[-71,0],[-38,13],[-16,-3],[-7,2],[-3,10],[-1,3],[-5,2],[-29,8],[-48,-6]],[[67361,98826],[4,4],[-114,8],[0,4],[18,8],[6,0],[9,5],[66,8],[21,-6],[30,9],[44,0],[-5,-5],[-6,-3],[127,-4],[127,-3],[35,-21],[-7,-13],[-9,-9],[-10,-5],[-68,-15],[-47,6],[-24,-4],[-72,6],[-73,7],[-22,9],[-21,5],[-9,9]],[[66193,98862],[-85,-14],[-28,10],[1,5],[1,4],[2,4],[2,3],[4,-1],[2,4],[1,5],[2,4],[5,3],[51,10],[-14,5],[-30,1],[-13,10],[10,8],[26,0],[24,8],[98,5],[98,6],[98,6],[25,-10],[27,-4],[10,-11],[-7,0],[-8,-4],[-15,-12],[9,-6],[3,-4],[0,-6],[-5,-6],[-98,-8],[-98,-7],[-98,-8]],[[91900,77977],[1,-4],[-4,0],[-7,3],[-8,6],[2,4],[1,2],[3,8],[2,4],[3,-5],[2,-8],[4,-6],[1,-4]],[[93009,79873],[5,-3],[4,-7],[4,-5],[6,4],[-1,-11],[-3,-21],[-1,-11],[-3,-9],[-12,-16],[-5,-10],[2,-4],[-5,-8],[-2,-13],[1,-14],[3,-13],[1,-4],[4,-7],[0,-4],[0,-3],[-1,-3],[-1,-2],[4,-12],[-1,-5],[-5,-9],[0,-4],[0,-4],[0,-3],[-1,-3],[-7,-6],[-2,-3],[-2,-2],[-6,1],[-2,-1],[-2,-2],[-4,-8],[0,-2],[-6,-1],[-5,2],[-19,13],[-2,2],[-1,3],[0,3],[1,7],[1,6],[-1,20],[1,9],[5,11],[3,18],[4,8],[10,13],[2,7],[2,7],[3,14],[3,8],[8,17],[2,6],[0,5],[-3,7],[-1,4],[1,6],[3,3],[3,1],[2,2],[12,23],[4,3]],[[66398,95454],[9,5],[20,5],[17,8],[9,0],[7,-3],[1,-12],[-7,-10],[-11,-2],[-11,0],[-18,-6],[-20,-1],[-19,-8],[-20,-3],[-19,-7],[-24,-3],[-9,4],[11,8],[72,18],[12,7]],[[66389,97835],[-58,18],[-7,6],[3,10],[5,4],[101,23],[102,22],[17,-7],[55,-8],[6,-3],[6,-6],[3,-5],[0,-6],[-1,-5],[1,-4],[1,-5],[-2,-3],[-1,-3],[5,-7],[5,-4],[11,-2],[5,-6],[-18,-4],[-35,-17],[-54,-12],[-18,5],[-10,0],[-2,-9],[-9,-6],[-8,-2],[-46,6],[-10,6],[3,2],[5,6],[-14,1],[-41,15]],[[65475,97908],[85,47],[8,10],[-11,8],[-4,0],[3,10],[1,3],[-4,5],[-8,5],[-3,6],[7,10],[3,7],[1,7],[-1,3],[-4,7],[-1,2],[2,6],[3,2],[39,9],[71,-8],[71,-8],[14,11],[0,10],[6,5],[86,-3],[21,-11],[9,-23],[-1,-6],[-11,-14],[-1,-8],[1,-12],[3,-10],[3,-5],[6,-1],[5,-2],[1,-5],[-4,-8],[-5,-4],[-18,-7],[-2,-8],[7,-10],[10,-8],[8,-3],[-6,-13],[-11,-8],[-33,-10],[-94,2],[-93,3],[-93,2],[-53,16],[-13,-1]],[[64617,97955],[-6,10],[-68,5],[-15,9],[-33,31],[6,4],[14,1],[14,5],[73,-2],[7,4],[-2,8],[4,3],[29,2],[7,3],[0,4],[-4,1],[-5,3],[-4,5],[0,8],[4,6],[20,7],[25,15],[12,4],[13,0],[20,-7],[7,-1],[28,8],[40,-2],[13,-6],[-5,-12],[7,-11],[51,-30],[92,-20],[2,-3],[-4,-6],[-9,-11],[-16,-11],[-9,-3],[-8,2],[-4,4],[-3,5],[-4,5],[-6,2],[-7,-1],[-8,-3],[-7,-5],[-7,-7],[-2,-6],[-3,-13],[-2,-6],[-6,-4],[-118,0],[-117,0],[-6,6]],[[65980,97925],[-29,-3],[-8,5],[-5,5],[-25,15],[-3,5],[1,8],[6,10],[-5,7],[-13,7],[-5,6],[7,6],[5,10],[1,10],[-8,6],[4,12],[2,6],[-2,4],[-13,12],[-4,7],[23,16],[-9,12],[-10,7],[-72,34],[104,-2],[105,-2],[105,-2],[104,-2],[31,-10],[32,-3],[26,-11],[35,0],[82,-29],[5,-3],[8,-8],[7,-10],[3,-8],[-95,3],[-95,2],[-1,-10],[-9,-3],[-36,4],[-10,-2],[-19,-9],[-35,-8],[-11,-4],[-5,-1],[-5,-2],[-8,-9],[-4,-1],[4,-8],[9,-4],[85,0],[8,-4],[4,-7],[-2,-8],[-11,-14],[2,0],[4,-4],[-12,-8],[-43,12],[-30,-3],[-16,1],[-3,2],[-1,1],[-1,1],[-4,8],[-2,1],[-1,1],[-24,-5],[-6,-3],[-6,-5],[-2,-7],[3,-5],[11,-6],[4,-3],[2,-8],[2,-6],[2,-5],[7,-3],[-13,-8],[-71,0],[-41,18],[-10,2]],[[64943,98127],[16,5],[-5,14],[3,3],[3,1],[7,-1],[25,11],[-8,6],[-24,9],[-5,12],[4,15],[8,7],[107,-14],[13,-6],[-26,0],[-14,-3],[-10,-10],[8,-5],[68,-3],[-6,-10],[4,-6],[16,-8],[-1,-7],[1,-2],[2,-3],[-5,-6],[-5,-4],[-6,-2],[-5,-1],[-6,-2],[-3,-5],[-3,-7],[-4,-4],[-13,-5],[-13,0],[-123,31]],[[66737,98461],[14,8],[56,11],[29,14],[99,4],[99,4],[99,4],[6,-5],[-7,-1],[-7,-3],[-7,-5],[-6,-7],[4,-2],[2,-5],[0,-6],[-2,-8],[-6,-6],[-85,-33],[-85,-32],[-89,8],[-90,8],[-24,14],[-52,4],[-13,9],[11,8],[41,9],[13,8]],[[67436,98371],[31,8],[15,7],[27,23],[30,13],[124,5],[124,4],[37,14],[5,5],[2,8],[1,7],[1,6],[4,2],[-5,8],[-6,3],[-12,4],[-3,6],[3,7],[6,6],[10,4],[4,5],[9,13],[5,6],[5,4],[42,15],[78,7],[22,-9],[23,2],[101,-34],[8,-8],[32,-37],[12,-9],[5,-5],[4,-8],[-40,-17],[12,-1],[11,-4],[9,-8],[9,-13],[3,-10],[-1,-5],[-4,-4],[-81,-41],[-21,-5],[-5,-5],[-4,-5],[-6,-6],[-7,-3],[-92,-19],[-23,-13],[-23,0],[-22,-8],[-90,-8],[-90,-9],[-25,9],[-77,-14],[-77,-13],[-72,34],[-71,34],[-24,4],[-6,4],[-2,8],[2,6],[3,3],[3,3],[67,24]],[[65926,98561],[17,6],[60,4],[16,5],[35,2],[25,6],[20,0],[19,-6],[16,-12],[-65,-14],[-22,-25],[-20,-7],[-86,-8],[-110,25],[9,8],[12,3],[48,3],[26,10]],[[65457,98558],[-10,1],[-10,6],[-4,6],[2,6],[3,4],[3,1],[-2,7],[1,6],[3,5],[3,2],[-49,0],[0,5],[8,3],[15,0],[7,5],[-5,6],[-10,5],[-6,5],[34,-4],[35,8],[-2,-4],[8,-4],[8,-1],[20,5],[10,0],[4,-1],[2,-3],[2,-3],[-1,-1],[16,-6],[34,1],[39,-15],[91,-13],[16,4],[0,4],[-8,1],[-28,12],[-16,17],[-6,3],[7,8],[-3,4],[-7,3],[-2,3],[-4,12],[-3,3],[-4,0],[0,3],[109,7],[15,-7],[-6,-3],[8,-7],[11,1],[19,6],[71,-12],[71,-11],[4,-3],[7,-8],[3,-3],[11,-3],[33,11],[20,0],[60,-20],[-26,-13],[-106,-7],[-106,-6],[-94,-29],[-26,-15],[-51,-3],[-14,4],[2,14],[-13,8],[-28,6],[-116,-25],[-23,9],[-26,0]],[[66267,98631],[-15,-2],[-8,2],[-5,6],[2,8],[6,2],[12,0],[37,18],[97,13],[26,-4],[8,-3],[5,-3],[25,-6],[15,-7],[15,-12],[8,-8],[-12,-16],[-16,-2],[-16,2],[-48,-10],[-111,12],[-17,8],[-8,2]],[[67195,98797],[30,-1],[17,-8],[19,-2],[9,-5],[6,-7],[-3,-4],[-33,-7],[-66,10],[-32,20],[-17,4],[9,4],[61,-4]],[[61237,88716],[1,-2],[1,-3],[-1,-3],[-7,-2],[-27,5],[-39,0],[-14,11],[-4,13],[-6,10],[-11,10],[-4,3],[-9,3],[-24,3],[-5,3],[-13,9],[-5,0],[-4,-1],[-4,-1],[2,6],[6,5],[14,7],[22,5],[5,0],[4,-5],[8,-6],[10,0],[19,6],[11,-1],[11,-5],[7,-7],[3,-6],[1,-13],[9,-12],[14,-9],[13,-1],[9,-4],[5,-7],[1,-6],[1,-5]],[[61111,88808],[-6,-5],[-10,0],[2,8],[10,1],[4,-4]],[[61151,88806],[-20,14],[-11,2],[4,5],[17,7],[31,2],[31,-7],[8,-9],[7,-13],[4,-14],[0,-29],[1,-7],[0,-5],[-2,-8],[-8,-1],[-12,6],[-6,8],[-5,13],[-9,15],[-14,13],[-8,5],[-8,3]],[[60003,88994],[3,-3],[1,-6],[-3,-4],[-3,-2],[-14,0],[-10,-3],[-4,1],[-1,2],[-1,4],[-2,5],[3,4],[7,4],[8,0],[2,0],[3,1],[6,-1],[3,-1],[2,-1]],[[60058,89057],[11,1],[3,-3],[-7,-5],[-10,-4],[-18,-1],[-10,-4],[-7,0],[0,-2],[-2,-1],[-6,1],[-4,2],[-2,1],[-20,8],[-3,5],[1,8],[1,8],[5,4],[7,2],[0,-1],[0,-4],[2,1],[3,-1],[4,-3],[4,-5],[3,-2],[2,-2],[1,-2],[3,-1],[34,-1],[5,1]],[[65091,90925],[3,-3],[1,-8],[-2,-10],[-3,-8],[-3,-2],[-26,-9],[-5,3],[-1,4],[-1,4],[1,1],[0,3],[0,5],[3,8],[8,7],[17,14],[8,2],[2,-2],[-3,-3],[-7,-3],[-1,-2],[3,0],[3,-1],[3,0]],[[64975,90955],[15,-3],[7,-7],[-2,-13],[-7,-18],[-11,-3],[-9,5],[-6,6],[-2,7],[-1,6],[0,5],[1,5],[4,4],[3,1],[8,5]],[[63624,91142],[7,-1],[14,-5],[-1,-3],[-99,16],[0,4],[13,0],[66,-11]],[[63771,91225],[5,1],[1,-3],[-2,-4],[-12,-8],[-14,-6],[-2,5],[17,11],[5,3],[2,1]],[[65073,91224],[30,-15],[6,-5],[-2,-3],[-44,11],[-5,3],[-4,4],[-1,3],[3,3],[3,1],[2,0],[12,-2]],[[63837,91273],[2,2],[5,2],[0,-3],[-16,-12],[-5,-2],[-4,0],[1,2],[9,5],[8,6]],[[65270,91297],[11,-3],[2,-4],[0,-8],[-9,-2],[-11,4],[-7,4],[-3,4],[0,3],[4,2],[13,0]],[[63911,91309],[3,2],[4,0],[-3,-6],[-7,-6],[-19,-8],[-1,1],[14,8],[6,6],[3,3]],[[68671,91582],[19,10],[6,0],[0,-6],[-17,-14],[-17,-9],[-7,-8],[-3,-5],[-5,-2],[-10,1],[-5,4],[-23,10],[-11,13],[-5,17],[4,10],[5,2],[1,-4],[1,-2],[2,-2],[3,-3],[5,-3],[42,-9],[-2,0],[2,-1],[15,1]],[[68702,91672],[2,-8],[2,-7],[0,-15],[-7,-21],[-8,-13],[-3,-9],[-6,-7],[-8,-3],[-4,0],[-43,10],[-5,4],[-6,12],[5,12],[32,37],[10,7],[31,8],[5,-1],[3,-6]],[[68565,92157],[8,-5],[1,-2],[-5,2],[-24,11],[-44,35],[-4,7],[1,10],[12,21],[8,7],[2,-1],[-2,-9],[1,-8],[2,-4],[3,-4],[3,-2],[1,-3],[-1,-5],[2,-3],[4,-2],[3,-3],[1,-4],[1,-4],[2,-2],[1,-2],[0,-2],[1,-2],[2,-2],[13,-19],[3,-3],[5,-2]],[[68488,92247],[4,-17],[2,-8],[-4,-2],[-11,5],[-14,17],[-10,19],[-7,17],[-5,20],[-2,22],[-1,16],[1,10],[2,14],[1,9],[1,11],[3,11],[4,7],[3,-1],[6,-12],[2,-3],[3,-5],[1,-6],[-2,-6],[-3,-6],[-1,-8],[-2,-9],[0,-12],[5,-11],[5,-6],[2,-5],[1,-5],[0,-4],[2,-4],[5,-6],[4,-4],[1,-3],[2,-10],[2,-25]],[[68499,92466],[-1,-4],[-3,-4],[-3,-4],[-4,-5],[-2,-4],[-3,-13],[-3,-9],[-6,-8],[-10,-5],[-7,0],[-4,5],[3,11],[12,30],[9,17],[0,3],[-1,2],[1,4],[1,1],[21,36],[2,0],[2,-5],[0,-7],[-3,-7],[-3,-5],[-2,-5],[0,-5],[1,-2],[1,-3],[0,-5],[1,-4],[1,-5]],[[64824,92690],[3,-5],[4,-2],[-1,-1],[-5,0],[-5,1],[-31,17],[-3,4],[-6,11],[-3,4],[-8,5],[-3,3],[3,2],[4,-1],[4,-1],[4,2],[7,-2],[36,-37]],[[92464,95568],[3,-4],[2,-6],[-2,-11],[-8,-9],[-9,-7],[-14,-4],[-19,7],[-33,19],[-9,7],[5,8],[14,10],[24,11],[34,5],[5,0],[8,-3],[-1,-6],[-3,-9],[3,-8]],[[93516,96134],[1,-2],[2,-5],[0,-5],[-3,-2],[-2,0],[-38,2],[-7,6],[4,8],[6,6],[6,3],[11,0],[14,-6],[6,-5]],[[75572,96443],[5,-1],[8,-4],[0,-6],[-4,-3],[-17,-11],[-13,0],[-21,8],[-8,7],[-4,9],[7,8],[14,2],[33,-9]],[[66337,97797],[13,-3],[2,-6],[-14,-8],[-2,-1],[-14,-1],[-30,5],[-5,4],[-4,8],[-10,8],[-15,4],[-79,0],[1,4],[101,24],[4,-1],[5,-2],[0,-2],[-3,-4],[0,-3],[22,-18],[14,-6],[7,-2],[7,0]],[[66712,97947],[9,-7],[3,-5],[-2,-4],[-8,-2],[-50,5],[-25,12],[-3,5],[2,4],[43,3],[13,-2],[18,-9]],[[65113,98016],[3,-4],[2,-4],[-1,-4],[-4,-3],[-3,-1],[0,-4],[2,-9],[0,-9],[-7,-7],[-18,-5],[-30,0],[-3,-2],[-2,-3],[-3,-2],[-6,0],[-4,2],[-1,2],[0,3],[2,3],[1,3],[0,3],[2,3],[3,4],[0,5],[-4,4],[-9,3],[-3,2],[-2,5],[-1,7],[3,9],[6,4],[17,8],[14,1],[16,-3],[26,-9],[4,-2]],[[65416,98034],[4,-2],[3,-4],[-3,-4],[-3,-3],[1,-5],[-2,-5],[-12,-6],[-9,-4],[-35,-8],[-11,-8],[-7,-3],[-44,-5],[-8,2],[-14,9],[-4,0],[-2,0],[-6,0],[-3,1],[-3,2],[0,2],[3,1],[0,3],[-2,2],[-1,2],[2,2],[7,0],[4,-1],[9,-1],[5,1],[5,2],[30,6],[1,2],[-5,3],[-4,1],[-10,0],[-6,4],[1,5],[62,19],[16,0],[6,-2],[3,-1],[32,-7]],[[65274,98092],[21,4],[7,0],[6,0],[24,10],[13,0],[5,-4],[1,-4],[1,-3],[0,-6],[-2,-3],[-1,-4],[1,-4],[-11,-6],[-26,-3],[-12,1],[0,3],[0,2],[-2,2],[-2,1],[-23,6],[-4,2],[-1,2],[3,3],[2,1]],[[65233,98102],[1,-1],[2,-2],[0,-3],[-2,-2],[-2,-2],[-9,-5],[-3,-3],[-3,-3],[-3,-1],[-69,-11],[-35,5],[-2,2],[1,1],[4,1],[7,3],[7,4],[4,6],[5,13],[6,7],[17,10],[7,5],[7,3],[23,0],[5,-3],[4,-3],[17,-10],[4,-5],[7,-6]],[[65228,98122],[-53,22],[-3,6],[6,3],[18,5],[50,5],[47,-18],[3,-3],[1,-4],[0,-3],[0,-1],[-2,-4],[-5,-6],[-7,-6],[-11,-5],[-44,9]],[[66593,98551],[5,-2],[1,-4],[-1,-5],[-3,-2],[-4,-1],[-99,8],[-100,8],[-5,3],[2,4],[26,5],[89,-7],[89,-7]],[[66822,98601],[1,-1],[2,-2],[-6,-5],[-21,-8],[-12,-1],[-82,12],[-82,13],[0,3],[2,3],[51,8],[134,-12],[6,-4],[7,-6]],[[66213,98782],[-20,3],[-6,5],[1,4],[3,3],[21,4],[8,6],[5,2],[47,3],[8,2],[10,0],[8,-4],[3,-2],[3,-2],[2,-4],[-4,-6],[-7,-4],[-48,-10],[-34,0]],[[86791,75833],[5,-10],[2,-4],[0,-2],[-2,-2],[-3,0],[-1,2],[-2,4],[-2,6],[-3,5],[-3,2],[-3,-1],[-2,2],[0,6],[0,6],[1,4],[3,4],[1,9],[3,9],[3,-2],[2,-9],[2,-9],[-1,-10],[0,-10]],[[63291,76527],[3,-3],[2,-2],[0,-4],[-29,-33],[-5,-1],[-10,5],[-4,1],[-3,1],[-1,7],[-2,0],[-5,-5],[-4,1],[-2,5],[-2,6],[3,11],[8,9],[32,-1],[9,3],[7,0],[3,0]],[[63332,77396],[0,-8],[0,-1],[0,-2],[-2,0],[-2,3],[-1,1],[-5,12],[-5,14],[-4,21],[-3,21],[0,5],[-1,10],[1,8],[-1,8],[1,6],[3,2],[2,0],[3,5],[3,4],[1,-7],[0,-9],[1,-11],[4,-13],[1,-12],[0,-8],[2,-8],[2,-9],[0,-32]],[[88673,82798],[4,0],[6,6],[2,7],[2,1],[0,-3],[-4,-9],[-5,-7],[-7,0],[-1,3],[3,2]],[[88385,82873],[10,0],[4,-1],[-2,-4],[-6,-4],[-4,0],[-4,4],[0,5],[2,0]],[[91397,85524],[2,7],[3,0],[6,-4],[5,4],[8,3],[6,-1],[-1,-6],[-5,-4],[-6,-9],[2,-8],[-7,0],[-12,5],[-1,8],[0,5]],[[2090,88752],[3,-3],[3,-8],[-1,-8],[-17,-10],[-7,-1],[-6,2],[-29,3],[-2,2],[-1,3],[-1,4],[-3,2],[-3,1],[-5,3],[1,11],[7,5],[5,-4],[6,-3],[50,1]],[[68716,91209],[8,-9],[-1,-5],[-1,-4],[-2,-2],[-12,5],[-4,-1],[-1,-2],[2,-1],[-2,-1],[-35,26],[-4,0],[-10,-8],[-5,0],[-5,3],[-1,3],[1,4],[32,9],[28,-7],[12,-10]],[[1226,92742],[2,-1],[1,-3],[0,-5],[-4,-4],[-5,-2],[-6,-2],[-6,3],[-4,6],[-4,5],[-4,3],[-12,2],[-6,4],[-14,13],[3,0],[50,-18],[6,0],[3,-1]],[[94970,91720],[3,-4],[-1,-9],[-5,-8],[2,-14],[2,-13],[-9,-11],[-11,-3],[-13,-1],[-8,3],[-5,7],[-6,13],[-10,9],[-3,11],[1,10],[10,1],[14,1],[17,10],[22,-2]],[[97256,91790],[42,0],[-1,-5],[-7,0],[-7,-15],[-17,-18],[-17,-13],[-9,4],[1,9],[-11,4],[-15,3],[-6,4],[5,9],[22,13],[20,5]],[[73140,92402],[18,-10],[27,-30],[-7,-28],[-19,-16],[-20,-12],[0,-23],[-12,-33],[1,-23],[13,-18],[0,-22],[-14,-14],[-18,-24],[-29,-10],[-7,2],[9,16],[10,25],[-4,27],[2,26],[3,25],[-2,25],[5,25],[16,21],[5,24],[2,25],[7,19],[14,3]],[[77123,95926],[0,-2],[1,-3],[-3,-4],[-4,-2],[-12,8],[-4,1],[-13,-5],[-17,-16],[-1,2],[-1,4],[-1,3],[1,2],[0,2],[-1,2],[-78,2],[-2,4],[97,8],[2,3],[34,1],[1,-3],[0,-3],[1,-3],[0,-1]],[[74735,96154],[24,-9],[-10,-16],[-15,-13],[-21,-22],[14,-16],[-9,-14],[-19,-7],[-29,5],[-32,32],[-10,24],[34,25],[73,11]],[[54113,80589],[6,0],[10,3],[32,-3],[1,5],[-1,21],[0,2],[0,2],[0,3],[1,2],[3,4],[1,3],[-1,17],[-4,9],[-5,5],[-1,6],[2,2],[1,2],[2,1],[1,0],[4,4],[1,3],[1,5],[6,-7],[14,-4],[2,-6],[3,-4],[4,-3],[3,1],[1,6],[3,8],[3,3],[3,-2],[2,-9],[2,-8],[16,-1],[8,-5],[4,-9],[0,-6],[-3,-6],[-2,-11],[1,-9],[3,-10],[3,-10],[3,-6],[6,-6],[5,-3],[4,-5],[3,-11],[0,-6],[-1,-6],[0,-5],[2,-5],[4,-2],[3,4],[3,7],[2,4],[12,1],[55,-26],[4,-3],[3,-7],[2,-3],[3,-1],[23,7],[7,-1],[1,-4],[1,-3],[14,-33],[2,-1],[7,1],[17,8],[4,-1],[4,-5],[4,-9],[2,-8],[2,-8],[-1,-7],[-4,-5],[-1,-2],[0,-1],[0,-2],[1,-2],[12,3],[17,22],[12,-1],[8,-9],[5,-3],[4,1],[4,6],[2,8],[2,6],[3,1],[10,0],[9,-4],[9,-6],[24,-34],[2,-11],[-9,-5],[2,-5],[0,-2],[-1,-1],[-1,-4],[-1,-3],[0,-4],[0,-4],[1,0],[-3,-4],[-6,-8],[-2,-5],[-5,-1],[-9,3],[-4,-2],[-2,-7],[-4,-5],[-5,-4],[-5,-5],[-1,-1],[-3,-2],[-1,0],[1,-7],[0,-2],[-5,2],[-2,-9],[2,-11],[9,-2],[4,-15],[1,-4],[4,-4],[2,1],[2,2],[3,2],[13,0],[2,-2],[2,-5],[1,-6],[-1,-5],[1,-5],[5,-9],[12,-6],[7,-6],[3,-8],[8,-17],[4,-8],[3,-9],[9,-12],[3,-11],[3,-20],[2,-7],[5,-9],[10,-12],[11,-9],[12,2],[8,16],[6,6],[4,6],[3,8],[5,11],[6,7],[6,1],[5,0],[3,1],[4,1],[2,3],[5,9],[3,3],[3,0],[5,-2],[2,0],[1,2],[0,7],[1,2],[4,0],[1,-2],[2,-3],[3,-7],[3,-1],[2,5],[-1,8],[-3,6],[-1,15],[-3,10],[-5,8],[-7,5],[-5,7],[-2,12],[-3,13],[-3,10],[-9,18],[0,9],[8,6],[6,-1],[8,-7],[4,-3],[7,1],[28,-11],[3,-2],[7,-8],[3,-2],[4,-1],[9,3],[3,-1],[-1,-2],[1,-7],[2,-7],[2,-5],[2,-4],[10,-9],[7,-2],[13,0],[5,-3],[-5,-3],[1,-2],[1,-2],[1,-2],[1,-1],[0,-8],[1,-8],[2,-6],[3,-4],[3,11],[6,1],[7,-7],[2,-11],[2,-1],[1,-1],[1,1],[2,1],[8,14],[13,1],[25,-6],[7,3],[4,5],[9,16],[1,4],[1,4],[2,2],[4,-2],[2,-2],[5,-10],[1,-1],[0,-2],[0,-2],[-1,-1],[-3,-11],[-1,-6],[1,-6],[3,-4],[4,-11],[-2,-9],[-6,-6],[-12,-10],[-7,-4],[-14,-1],[-3,-2],[-2,-6],[1,-4],[13,-24],[5,-2],[3,0],[2,2],[3,1],[4,-1],[7,-5],[4,-1],[0,-1],[0,-1],[-3,-3],[0,-4],[0,-3],[3,-4],[3,-5],[2,-6],[2,-8],[2,-7],[3,-6],[18,-24],[10,-3],[10,4],[8,10],[5,2],[11,0],[9,4],[2,3],[-1,6],[-2,4],[-2,0],[-2,-1],[-2,1],[-1,13],[5,-1],[4,-2],[16,-14],[-2,-11],[4,-6],[17,-5],[5,-3],[8,-10],[4,-2],[6,-2],[4,-4],[1,-3],[2,-9],[1,-4],[6,-6],[4,1],[7,9],[0,1],[0,1],[-1,0],[11,2],[11,-5],[20,-16],[7,0],[11,10],[4,-4],[2,-10],[-1,-9],[1,-8],[7,-5],[-7,-12],[0,-16],[5,-18],[6,-19],[3,-17],[2,-4],[3,-4],[9,-1],[4,-2],[4,-4],[5,-9],[4,-3],[4,1],[4,2],[4,1],[4,-4],[2,-4],[1,-21],[2,-6],[3,-10],[1,-5],[4,-26],[1,-12],[-1,-10]],[[55231,79790],[-11,0],[-6,-3],[-11,-14],[-8,-1],[-8,3],[-9,7],[-2,0],[-2,0],[-8,-6],[-12,2],[-6,-5],[-1,-4],[-1,-11],[-1,-6],[-3,-3],[-9,-7],[-12,-20],[-6,-6],[-8,3],[-1,-28],[-6,-7],[-10,-11],[-38,-21],[-8,-11],[-7,-15],[-5,-18],[-3,-19],[-1,-16],[0,-4],[0,-26],[-2,-13],[-6,-14],[-8,-11],[-9,-5],[-15,1],[-7,-1],[-5,-6],[-4,-10],[-2,-9],[-2,-18],[-2,-8],[-5,-7],[-6,-1],[-6,2],[-6,-2],[-5,-5],[-9,-23],[-5,-6],[-54,-30],[-10,3],[-8,12],[-4,3],[-7,-3],[-5,-4],[-6,-5],[-4,-2],[-32,23],[-13,5],[-13,-4],[-15,-15],[-2,-6],[-2,-11],[-4,-7],[-9,-12],[-7,-16],[-14,-57],[-4,-8],[-4,-8],[-1,-11]],[[54706,79254],[-9,16],[-4,39],[-7,13],[-4,0],[-11,-5],[-5,-1],[-5,3],[-10,9],[-5,2],[-10,0],[-5,1],[-3,3],[-2,7],[-1,9],[-2,7],[-6,3],[-5,1],[-16,7],[-5,4],[-3,1],[-2,0],[-5,-3],[-3,-1],[-8,2],[-5,-4],[-14,-35],[-3,-4],[-5,-1],[-1,0],[-4,5],[-6,-2],[-39,8],[-25,-2],[-15,9],[-28,29],[0,2],[0,5],[-2,2],[-5,-2],[0,7],[-2,2],[-3,1],[-4,-2],[3,6],[-2,-1],[-2,2],[-3,3],[-6,0],[-1,2],[-2,3],[-1,7],[-2,2],[-8,0],[-2,-1],[-10,-8],[-5,-2],[-6,0],[-7,2],[-21,17],[-17,10],[-6,3],[-14,17],[-6,5],[-12,5],[-13,10],[-7,2],[-13,1],[-1,1],[-1,3],[-2,2],[-2,0],[-1,-2],[-1,-8],[0,-3],[-4,-7],[-2,-1],[-21,-8],[-5,0],[1,9],[1,8],[-2,8],[-2,8],[-21,3],[-16,7],[-6,-1],[-1,-1],[0,-2],[0,-3],[0,-3],[-4,-13],[0,-16],[1,-19],[0,-16],[-6,-37],[-2,-7],[0,-5],[0,-3],[2,-5],[1,-4],[1,-1],[-4,-10],[-5,-1],[-15,8],[-14,3],[-4,-2],[-2,-6],[-1,-7],[-3,-7],[-1,-11],[-15,-18],[-5,-12],[-1,-16],[0,-19],[-1,-15],[-2,-2],[-4,-6],[-5,1],[-2,4],[-1,5],[-3,6],[-2,0],[-4,-2],[-3,0],[0,3],[0,4],[-1,4],[-2,2],[-4,-1],[-8,-5],[-4,-2],[-4,2],[-11,8],[-6,11],[-4,-4],[-7,-23],[-4,-7],[-14,-9],[-6,-6],[-2,-1],[-3,-1],[-28,14],[-39,6],[-9,6],[-3,3],[-4,8],[-2,4],[-1,8],[1,1],[1,1],[2,6],[1,1],[1,-1],[1,1],[1,4],[-1,3],[-1,2],[-2,1],[-2,2],[-1,5],[-5,10],[-3,3],[-18,15],[-6,7],[-5,6],[-6,4],[-11,4]],[[53837,79350],[-5,8],[-14,37],[-6,15],[-4,3],[-10,2],[-6,3],[-4,7],[-5,9],[-3,11],[0,11],[-5,0],[-5,3],[-5,5],[-5,5],[-4,1],[-2,1],[-4,-3],[-3,-6],[-2,-11],[-7,5],[-9,8],[-8,11],[-4,9],[0,17],[-3,10],[-12,17],[-8,16],[-4,4],[-5,3],[-17,1],[-8,6],[-4,10],[-4,12],[-26,49],[-3,3],[-9,15],[-2,5],[0,6],[-1,5],[-5,3],[-8,11],[-4,5],[-5,3],[-10,4],[-4,-1],[1,-8],[-5,-1],[-17,3],[-5,3],[-5,6],[-9,29],[-5,8],[-13,8],[-5,7],[-4,8],[-1,10],[-1,19],[0,10],[-2,2],[-3,0],[-3,1],[-3,5],[-2,4],[-2,5],[-2,7],[-1,7],[-1,13],[-2,7],[-3,4],[-7,5],[-3,5],[0,2],[2,4],[-2,2],[-1,1],[2,7],[0,8],[-2,6],[-4,3],[-9,6],[-5,4],[-4,5],[-5,11],[-3,8],[-2,6],[4,9],[11,7],[5,6],[0,10],[1,12],[1,8],[6,-2],[2,9],[6,17],[3,9],[0,11],[-1,4],[-4,3],[-12,9],[1,6],[2,8],[-1,9],[-5,6],[-10,1],[-4,6],[-1,0],[-42,31],[-1,4],[0,5],[0,6],[-3,6],[-4,5],[-4,3],[-4,5],[-2,9],[-1,9],[2,14],[0,9],[-3,7],[-3,6],[-7,10],[-13,12],[-3,7],[3,7],[3,3],[2,3],[1,7],[-1,9],[-3,5],[-6,9],[7,-1],[13,-1],[6,-5],[1,-6],[0,-10],[1,-4],[3,-4],[4,-2],[8,0],[2,-2],[1,-2],[0,-3],[-1,-3],[-1,0],[-1,-1],[0,-1],[-1,-1],[1,-2],[0,-1],[5,-7],[1,-2],[2,-4],[0,-3],[0,-3],[4,-17],[3,-6],[4,0],[4,3],[0,6],[-1,6],[-1,7],[1,11],[1,6],[6,9],[0,10],[3,4],[3,3],[3,5],[8,21],[3,4],[9,6],[3,4],[1,1],[2,0],[1,1],[1,2],[0,2],[0,2],[-1,2],[1,2],[1,3],[1,3],[2,3],[8,9],[11,4],[21,2],[14,-3],[4,0],[3,4],[6,13],[4,5],[4,2],[5,1],[5,-1],[1,1],[4,3],[3,1],[2,-1],[26,-22],[9,0],[3,3],[6,8],[4,6],[1,11],[2,24],[3,2],[2,1],[2,-1],[2,-2],[3,-1],[2,0],[3,0],[2,1],[1,0],[7,4],[15,-1],[7,7],[4,10],[9,33],[6,-1],[4,-4],[5,-3],[5,4],[3,12],[2,4],[10,10],[2,3],[0,2],[1,1],[3,-2],[2,-2],[4,-9],[2,-4],[6,-4],[5,2],[5,6],[5,8],[2,2],[2,3],[0,4],[-1,4],[4,5],[4,7],[1,8],[-3,9],[11,9],[13,3],[25,0],[5,1],[11,6],[6,1],[12,-2],[5,1],[8,7],[2,0],[2,1],[2,3],[0,3],[-1,5],[0,5],[1,5],[2,5],[3,0],[3,-1],[3,0],[3,3],[4,8],[3,2],[6,2],[10,-2],[5,1],[43,27],[4,4],[5,10],[3,4],[10,3],[22,-2],[8,9],[1,15],[-7,6],[-10,4],[-7,9],[0,6],[2,2],[1,2],[-6,3],[-9,1],[-3,3],[3,6],[4,17],[6,9],[9,2],[10,-4],[2,-3],[2,-3],[2,-3],[3,-3],[3,0],[8,5],[10,-1],[3,2],[2,9],[2,-5],[0,-4],[1,-3],[3,-5],[3,-4],[8,-2],[3,-4],[4,-5],[2,-5],[1,-6],[-1,-9],[-2,-7],[-3,-8],[-2,-7],[3,-4],[16,9],[3,0],[2,-7],[-2,-8],[-5,-15],[-1,-10],[2,-5],[9,-4],[4,-2],[11,-11],[10,-3],[6,-1],[5,2],[2,4],[3,7],[4,16]],[[53837,79350],[-8,-25],[-1,-5],[2,0],[3,-8],[1,-2],[3,-2],[-3,-5],[-1,-7],[2,-19],[-1,-10],[-1,-9],[-1,-8],[-5,-14],[-1,-3],[-3,-3],[-2,-2],[-6,-1],[-1,0],[-2,-6],[-2,-16],[-1,1],[-11,7],[-5,9],[-4,5],[-5,4],[-29,11],[-9,-2],[-9,-4],[-3,-4],[-1,-4],[0,-2],[1,-3],[1,-10],[3,-6],[0,-5],[-1,-6],[-3,-11],[-2,-6],[0,-5],[0,-17],[0,-6],[-2,-4],[-1,-3],[0,-3],[-2,-13],[-4,-9],[-27,-34],[-9,-7],[-39,-10],[-28,-16],[-5,-4],[-10,-15],[-9,-7],[-4,-5],[0,-1],[-15,-4],[-5,-4],[-2,-4],[-5,-11],[-4,-6],[-11,-11],[-1,-2],[-4,-9],[-2,-1],[-1,0],[-2,-1],[-2,-4],[0,-8],[1,-8],[2,-7],[3,-6],[20,-29],[4,-13],[0,-6],[1,-1],[1,-7],[2,-4],[7,-6],[6,-8],[2,-2],[4,-7],[10,-31],[6,-13],[1,-2],[-18,-41],[-1,-5],[-1,-3],[0,-4],[0,-4],[-2,-4],[-5,-12],[4,-6],[16,-5],[4,2],[7,4],[4,-1],[4,-4],[3,-6],[5,-13],[3,-9],[0,-7],[0,-7],[0,-8],[-1,-1],[-3,-12],[-1,-1],[-4,-9],[-1,1],[0,-14],[1,1],[0,-1],[-3,-10],[-1,-1],[0,-11],[1,-3],[0,-4],[1,-3],[1,-3],[0,-5],[-8,-14],[-2,-2],[-3,0],[-2,1],[-1,2],[-3,2],[-3,0],[-2,-1],[-2,-2],[-3,2],[-14,15],[-13,20],[-2,3],[-3,1],[-4,1],[-7,8],[-1,15],[3,14],[8,5],[-6,8],[-7,7],[-4,7],[2,11],[-4,-1],[-16,6],[-10,0],[-10,-4],[-5,-4],[-10,-12],[-2,-4],[-5,-2],[-6,-2],[-5,0],[-4,3],[-8,10],[-3,3],[-1,5],[-3,13],[-1,3],[-5,2],[-11,-6],[-5,-2],[-16,5],[-6,-1],[-6,-5],[-3,0],[-3,3],[-1,7],[1,4],[2,4],[1,4],[0,7],[1,2],[-1,0],[-4,-2],[-2,-3],[-7,-8],[-4,-2],[0,-5],[1,-3],[2,-4],[3,-3],[1,-2],[1,-3],[0,-16],[0,-5],[-1,-4],[-8,-15],[-2,-1],[-64,4],[-23,-6],[-3,-3],[-3,-10],[-3,-2],[-16,5],[-22,0],[-12,4],[-6,0],[-1,-2],[-7,-9],[-2,-7],[-2,-13],[-2,-6],[-5,-8],[-6,-3],[-13,-4],[-6,3],[-7,2],[-6,-3],[-13,-21],[3,-2],[3,-3],[1,-4],[-2,-6],[-5,-3],[-12,0],[-5,-2],[-5,-8],[-4,-7],[-4,-6],[-6,-4],[-7,1],[1,16],[-6,4],[-7,-3],[-18,-18],[-6,-3],[-29,1],[-4,3],[-2,8],[1,3],[1,4],[0,4],[-1,3],[-14,21],[-14,10],[-2,5],[9,9],[2,4],[-6,7],[-3,2],[-4,0],[-4,-1],[-11,-8],[-8,-1],[-3,1],[-1,3],[-1,3],[-1,2],[-37,20],[-7,0],[-3,-4],[-6,-11],[-4,-4],[-3,-1],[-12,2],[-4,3],[-2,3],[-2,2],[0,5],[1,4],[1,3],[0,2],[-1,6],[-1,1],[-2,-1],[-5,-2],[-4,-2],[1,-5],[2,-7],[2,-6],[0,-6],[-3,-23],[4,-3],[2,-4],[2,-5],[1,-8],[0,-12],[-3,-14],[-4,-12],[-4,-9],[-3,-2],[-6,-3],[-3,-3],[-1,-3],[-6,-18],[-5,-10],[-6,-7],[-12,-11],[-6,-4],[-18,-3],[-4,-1],[-2,1],[2,4],[2,7],[1,1],[4,1],[1,2],[1,4],[0,4],[-1,4],[5,22],[0,10],[-5,4],[-12,-3],[-3,-5],[-1,-1],[-2,0],[-3,2],[-1,0],[-4,-2],[-2,-2],[-2,-1],[-2,4],[-2,6],[0,6],[-1,6],[-3,6],[6,7],[2,6],[-3,7],[-13,29],[-4,-2],[-2,-3],[-3,-2],[-3,3],[0,3],[0,2],[0,2],[-3,8],[-3,5],[-3,5],[-1,10],[-3,-4],[-4,-1],[-9,1],[-8,4],[-1,0],[-4,-3],[-2,-1],[-6,5],[-1,6],[1,7],[-1,7],[-3,5],[-4,2],[-4,0],[-4,-4],[-7,-10],[-3,-10],[-4,-10],[-8,-5],[-17,0],[-17,6],[-1,1]],[[52652,78620],[-77,69],[-10,3],[-11,0],[-4,9],[-15,0],[-31,5],[-5,-3],[-5,-7],[-10,-5],[-11,-1],[-6,2],[-8,9],[-1,0],[-4,6],[0,4],[5,2],[-7,10],[-9,7],[-7,1],[-3,-12],[3,-4],[-15,0],[-1,4],[0,4],[-3,4],[-1,5],[1,4],[4,8],[1,2],[-2,6],[-3,1],[-3,-1],[-3,1],[-2,5],[-2,7],[-3,5],[-3,2],[-3,-4],[-1,-13],[-4,-3],[-3,3],[0,7],[-1,8],[0,4],[-5,4],[-7,0],[-5,-3],[3,-10],[-4,-3],[-15,-4],[-3,0],[-3,-2],[-3,-8],[-2,-4],[-2,-12],[-3,-4],[-7,-5],[-2,-5],[-1,-4],[1,-5],[1,-5],[-2,-6],[5,-2],[1,-1],[7,-8],[6,-4],[5,0],[4,3],[4,4],[4,3],[14,3],[3,-1],[4,-1],[1,-1],[2,-1],[-1,-14],[-2,2],[0,3],[0,1],[-2,0],[-1,-1],[-1,-1],[-1,-3],[1,-3],[0,-2],[1,-2],[-1,-4],[0,-4],[0,-5],[-1,-3],[-1,-1],[-4,-2],[-2,4],[-1,1],[-3,8],[-4,6],[-9,-1],[-8,-8],[-3,-10],[-1,-3],[-7,-2],[-1,0],[-18,0],[-10,4],[-3,2],[-2,6],[-2,6],[-1,2],[-3,1],[-8,3],[-5,0],[-15,-4],[-1,-1],[-1,-3],[-2,-3],[-5,-2],[-6,-5],[-3,-2],[-2,-4],[-1,-3],[-1,-3],[-3,-2],[-13,-4],[-36,0],[0,2],[-1,6],[-1,5],[-2,3],[-17,1],[-4,3],[-5,-11],[-5,-8],[-5,-4],[-11,-3],[-12,-4],[-6,1],[-4,3],[-11,8],[1,0],[7,0],[3,4],[3,15],[-6,-1],[-14,-6]],[[51762,79758],[0,4],[-1,18],[2,19],[1,6],[0,19],[1,6],[4,9],[8,13],[2,8],[2,4],[1,3],[0,4],[-2,2],[-1,2],[-1,2],[4,8],[21,18],[-1,1],[-2,4],[1,2],[2,1],[2,-1],[-2,4],[-1,4],[-1,5],[0,5],[3,3],[0,3],[-1,2],[0,4],[2,13],[0,1],[0,5],[1,1],[0,-1],[-2,3],[-1,0],[-8,3],[-14,0],[-5,2],[-4,4],[-8,11],[-5,4],[-2,0],[-5,-4],[-2,1],[0,2],[-2,6],[-1,4],[-1,3],[-4,4],[-10,5],[-4,7],[-9,30],[-5,10],[-3,-8],[-2,6],[-4,16],[-5,10],[-1,5],[0,7],[-1,12],[-2,5],[-3,2],[3,7],[1,2],[-1,0],[-2,0],[2,17],[1,8],[2,9]],[[51699,80152],[2,4],[1,4],[-1,3],[-3,4],[1,2],[1,7],[0,2],[3,2],[5,1],[2,2],[2,5],[0,7],[-1,7],[-4,5],[3,5],[6,6],[3,6],[6,4],[12,4],[5,7],[-2,5],[1,6],[2,6],[3,4],[3,3],[3,0],[4,-2],[3,-1],[8,2],[3,5],[0,5],[0,3],[-10,23],[0,7],[2,8],[1,14],[1,10],[-1,2],[-2,1],[-3,5],[-1,6],[-1,5],[1,5],[3,4],[-5,1],[-12,3],[-5,3],[0,1],[-1,0],[-1,0],[0,-1],[-10,-4],[-2,0],[-3,3],[-2,7],[-2,2],[2,6],[-3,0],[-2,1],[-1,3],[2,4],[-4,8],[5,11],[9,10],[6,5],[0,2],[3,5],[2,6],[-1,3],[-19,1],[-6,4],[-3,8],[4,4],[-17,35],[-5,7],[-5,1],[-11,-5],[-4,1],[-1,5],[1,6],[0,6],[-4,3],[-1,1],[0,1],[0,1],[1,2]],[[51665,80525],[0,7],[-1,4],[-3,2],[-2,5],[-2,8],[5,-1],[4,5],[1,7],[0,5],[-1,5],[3,6],[4,3],[6,-1],[3,5],[2,6],[0,5],[-3,12],[1,4],[1,3],[1,3],[-9,4],[-7,6],[-2,3],[-1,5],[0,8],[1,5],[2,5],[-1,3],[-10,-2],[-7,4],[-4,0],[-4,-1],[-7,-5],[-4,-1],[0,15],[-4,17],[-2,14],[8,5],[4,-2],[3,-6],[4,-5],[5,1],[3,5],[6,15],[3,6],[26,27],[16,11],[4,8],[-6,7],[7,7],[2,2],[-7,3],[-13,-13],[-7,5],[-2,11],[1,13],[2,12],[3,6],[6,10],[14,35],[3,4],[7,6],[3,6],[1,7],[1,13],[2,5],[-4,7],[0,11],[2,12],[1,12],[-1,11],[-2,19],[-11,17],[-19,34],[-1,8],[1,8],[4,13],[-19,11],[-6,11],[3,17],[-2,4],[-7,6],[-3,2],[-8,0],[-3,1],[1,6],[1,3],[5,6],[0,11],[-4,12],[-6,6],[1,6],[5,4],[11,3],[5,3],[6,5],[4,3],[11,4],[9,-3],[7,-2],[5,-2],[-4,8],[-11,14],[-3,4],[9,7],[9,-6],[9,-9],[10,-6],[8,3],[3,0],[2,-3],[3,-7],[1,-2],[11,-2],[4,-4],[1,-9],[10,4],[2,6],[-3,13],[18,-7],[6,0],[4,3],[14,14],[28,12],[24,1],[8,6],[6,10],[7,15],[2,3],[2,1],[1,1],[1,8],[-1,4],[-2,3],[-7,10],[-18,13],[-6,2],[-4,4],[-1,9],[2,7],[3,1],[2,0],[4,3],[2,3],[2,8],[2,3],[4,7],[5,3],[1,0],[17,3],[3,4],[7,16],[5,8],[12,7],[5,6],[7,14],[3,5],[12,9],[1,3],[-1,2],[-1,4],[-3,13],[0,11],[2,9],[6,16],[2,22],[-4,15],[-16,36],[-2,-1],[-2,-4],[-3,-3],[-6,-3],[-8,0],[-8,1],[-14,7],[-22,4],[-7,5],[-6,8],[-1,9],[-1,11],[-1,10],[-3,10],[4,0],[16,10],[-9,10],[-2,4],[0,5],[1,5],[0,5],[-2,6],[5,5],[5,5],[9,3],[27,1],[14,-6],[14,3],[4,-2],[10,-4],[5,12],[2,21],[3,64],[2,20],[3,10],[2,8],[23,46],[6,20],[2,19],[1,21],[-3,42],[-1,6],[-1,3],[-1,4],[0,7],[0,4],[4,13],[2,11],[1,9],[0,9],[-1,17]],[[51998,82002],[3,2],[3,4],[2,5],[3,6],[1,7],[-2,7],[7,13],[3,3],[7,0],[6,-2],[9,-8],[6,-3],[-7,13],[-11,5],[-63,3],[-10,6],[-5,17],[0,44],[2,10],[5,18],[1,9],[3,5],[5,0],[11,-3],[2,5],[2,1],[2,6],[0,8],[-3,4],[-8,5],[-3,5],[-1,8],[4,6],[9,8],[10,14],[5,5],[11,14],[22,11],[42,6],[3,-3],[3,-5],[7,-2],[41,11],[83,15],[22,-9],[0,-4],[-1,-17],[7,-21],[12,-19],[9,-8],[0,-4],[-2,-7],[4,-3],[6,-2],[3,-6],[0,-11],[-3,-5],[-6,-6],[-5,-3],[-11,-2],[-5,-4],[5,-19],[3,-8],[3,-5],[4,2],[3,2],[5,0],[3,-3],[5,-7],[2,-2],[3,-3],[2,-5],[3,-6],[4,-2],[4,0],[4,1],[3,2],[3,4],[6,13],[6,20],[2,21],[-8,12],[-11,-4],[-6,1],[0,9],[3,9],[2,21],[2,8],[4,5],[5,2],[11,1],[5,-3],[5,-7],[3,-8],[3,-6],[12,-7],[23,-6],[11,-7],[0,-4],[-7,-8],[-6,-9],[-4,-13],[-2,-17],[0,-33],[2,-15],[4,-11],[1,15],[-3,37],[0,17],[4,13],[7,6],[5,7],[3,17],[-2,3],[-7,23],[-2,3],[-3,8],[-2,9],[-2,12],[-4,13],[-1,10],[1,10],[1,9],[11,32],[7,36],[5,16],[4,8],[5,6],[6,5],[7,2],[6,-1],[3,-2],[7,-10],[10,-10],[10,-7],[22,-7],[12,1],[20,6],[11,-1],[5,8],[22,6],[22,0],[5,4],[4,-3],[4,-1],[10,0],[2,-2],[6,-10],[27,-60],[11,-17],[8,-8],[4,-6],[4,-18],[19,-36],[4,-5],[5,-3],[7,-1],[3,-2],[17,-14],[19,-6],[15,-4],[4,2],[-4,8],[-10,7],[-25,4],[-10,5],[-20,17],[-10,13],[-3,19],[-1,16],[-1,10],[-2,3],[-14,10],[-4,2],[-6,7],[-7,18],[-4,19],[-1,12],[-10,5],[-17,19],[-11,8],[-10,4],[-36,1],[-10,6],[-7,2],[-3,-2],[-3,-6],[-7,2],[-10,10],[-9,14],[-23,59],[11,6],[5,1],[7,-3],[11,-9],[6,-2],[6,3],[2,7],[2,11],[2,13],[0,9],[-4,6],[-5,6],[-4,6],[1,7],[0,4],[-7,2],[-9,-2],[-9,-6],[-5,-7],[-2,0],[-8,17],[-5,13],[-1,3],[3,12],[4,10],[3,10],[-2,9],[0,4],[3,3],[12,4],[5,1],[3,3],[4,7],[4,9],[3,9],[-6,-1],[-11,-12],[-6,-3],[1,2],[1,4],[0,2],[-8,-1],[-15,-6],[-8,-1],[-10,2],[-4,-2],[-10,-11],[-3,-1],[-7,3],[-8,9],[-6,13],[-1,15],[4,7],[8,4],[8,2],[7,0],[0,4],[-5,1],[-4,5],[-4,1],[-4,-7],[-2,6],[0,7],[3,6],[3,5],[6,-3],[22,7],[31,0],[7,3],[6,4],[11,13],[11,7],[5,4],[2,10],[0,14],[-7,14],[-23,30],[-3,6],[-2,7],[-2,2],[-6,0],[-6,-2],[-3,-3],[-2,5],[10,8],[-10,32],[-4,8],[-8,7],[-15,16],[-9,6],[0,4],[2,10],[-4,13],[-5,11],[-4,11],[-2,15],[1,14],[4,17]],[[52405,82980],[10,-4],[10,0],[19,9],[7,1],[22,-5],[22,-11],[59,-17],[4,-5],[1,-6],[1,-8],[2,-7],[5,-3],[21,0],[4,1],[2,3],[4,2],[3,3],[5,2],[6,-7],[5,-1],[4,2]],[[52621,82929],[4,0],[16,11],[6,8],[6,3],[4,8],[4,3],[0,-21],[14,-6],[17,-1],[12,-7],[4,-4],[8,-4],[6,-6],[3,-10],[3,-6],[8,2],[12,6],[-1,12],[7,1],[9,-7],[6,-10],[4,-20],[2,-5],[2,-5],[5,-6],[-3,-4],[-4,1],[-3,2],[-3,1],[0,-2],[-7,-7],[-1,0],[-1,-1],[-2,0],[0,-1],[0,-6],[4,0],[7,3],[7,0],[4,-7],[3,3],[4,1],[1,-4],[-2,-8],[2,-8],[0,-12],[-2,-25],[-1,-10],[-2,-8],[-3,-7],[-3,-7],[-9,-10],[-11,-8],[-13,-5],[-11,-1],[0,-4],[12,-8],[67,20],[5,-2],[17,-19],[-6,-7],[0,-6],[3,-7],[1,-10],[-2,-8],[-4,-7],[-5,-5],[-4,-2],[0,-2],[1,-1],[0,-1],[-1,-4],[3,-4],[0,-5],[-1,-6],[-2,-6],[6,3],[4,7],[7,19],[4,19],[2,5],[2,3],[11,1],[4,3],[1,3],[2,3],[2,3],[4,2],[11,-2],[7,-3],[16,-17],[44,-24],[25,-29],[11,-4],[13,3],[9,7],[16,19],[9,7],[10,5],[23,4],[0,-4],[-5,-1],[-7,0],[5,-2],[5,2],[6,-6],[20,15],[9,-4],[-11,-15],[-3,-5],[-1,1],[-4,3],[3,-10],[2,-24],[2,-11],[-2,-7],[0,-10],[2,-17],[-1,-11],[-3,-5],[-2,-4],[-1,-5],[-33,-26],[-11,-18],[-5,-4],[-11,-5],[-2,0],[-2,-2],[-2,1],[-2,3],[-3,0],[-2,-2],[-1,-1],[-11,-21],[-3,-4],[0,-4],[4,-11],[4,-9],[5,-5],[8,-3],[11,1],[2,-1],[2,-7],[1,-7],[1,-5],[4,-2],[1,0],[3,0],[2,0],[3,4],[8,11],[5,2],[5,1],[15,10],[34,6],[2,-1],[2,-4],[2,-8],[2,-4],[10,-4],[1,-3],[-1,-13],[1,-6],[3,-3],[8,0],[3,0],[11,12],[2,-1],[3,-9],[2,-2],[11,0],[0,-2],[11,-17],[2,-1],[3,0],[1,6],[2,9],[2,12],[-1,10],[2,4],[3,3],[2,0],[0,3],[-1,7],[0,3],[9,12],[0,4],[-2,0],[0,4],[7,-4],[3,0],[5,5],[5,16],[4,3],[2,1],[2,3],[2,4],[1,4],[0,3],[-2,2],[0,3],[1,3],[1,2],[1,2],[7,15],[9,8],[10,2],[24,-5],[66,18],[10,8],[2,-17],[-1,-16],[0,-14],[7,-10],[-3,7],[-1,16],[-2,6],[3,6],[8,6],[2,8],[-3,1],[-3,-1],[-2,-2],[-3,-2],[2,6],[9,15],[6,6],[7,14],[4,4],[3,1],[21,14],[11,11],[4,6],[10,25],[17,30],[1,5],[12,25],[4,16],[3,5],[6,3],[0,-3],[-2,0],[6,-12],[12,-6],[63,0],[11,-7],[6,5],[8,-2],[4,-7],[-7,-8],[-7,-2],[-30,3],[-12,6],[-7,1],[-2,-1],[-3,-6],[-2,-1],[-6,0],[-7,2],[-3,-2],[-1,-8],[-2,4],[-1,-1],[-3,-2],[-2,-1],[1,-5],[1,-2],[2,-1],[2,-1],[-1,0],[-1,0],[0,-1],[0,-2],[-5,3],[-6,0],[-5,-4],[-3,-7],[-4,7],[-6,3],[-10,1],[-4,-2],[-4,-7],[-2,-9],[2,-9],[-4,1],[-2,0],[-2,3],[-2,-4],[2,-8],[-1,-7],[-4,-5],[-4,-1],[1,-8],[3,-6],[0,-6],[-3,-4],[12,-11],[7,-2],[6,5],[-4,-1],[-4,2],[-5,7],[2,7],[2,5],[7,8],[2,2],[3,1],[1,1],[1,3],[0,7],[1,3],[4,5],[19,11],[-4,3],[-2,1],[0,4],[5,2],[2,0],[2,-2],[0,4],[6,-6],[8,3],[15,10],[-1,2],[0,5],[-1,2],[3,3],[3,1],[4,1],[3,-1],[0,-4],[-4,-1],[-3,-5],[-1,-7],[-1,-7],[3,7],[2,4],[1,5],[2,-6],[3,-5],[3,-2],[3,5],[3,-4],[3,0],[3,3],[2,4],[1,-4],[2,-4],[1,-4],[5,-8],[1,-1],[1,1],[3,1],[5,-1],[3,1],[3,4],[3,4],[2,10],[3,6],[7,9],[11,9],[11,5],[7,-3],[-3,-4],[-1,-7],[3,-8],[3,-6],[12,-7],[3,-4],[-5,-12],[1,-9],[8,-16],[1,-6],[0,-7],[0,-5],[4,-2],[12,0],[0,-4],[-3,0],[-1,-1],[-4,-3],[9,1],[15,-10],[10,-3],[7,-5],[9,-24],[7,-8],[-4,-4],[-3,-4],[7,0],[10,7],[6,-3],[-3,-7],[-1,-3],[-2,-2],[3,-3],[2,2],[2,2],[3,-1],[1,-3],[4,-14],[4,-8],[4,-7],[5,-5],[6,0],[0,4],[-2,3],[-3,7],[-2,2],[0,4],[34,9],[8,5],[14,12],[8,3],[2,-3],[-1,-3],[-2,-1],[-2,-1],[0,-4],[8,-6],[22,-23],[0,-4],[-4,-8],[-2,-12],[-4,-10],[-7,-6],[3,-3],[8,-13],[3,-6],[2,-2],[8,-4],[2,-2],[1,-4],[1,-4],[0,-3],[1,-2],[-1,-3],[0,-2],[1,-1],[4,0],[1,0],[2,-2],[1,-1],[2,-1],[2,0],[3,-2],[1,-6],[-2,-7],[-3,-5],[-20,-21],[-3,-8],[3,-7],[5,-3],[5,-2],[2,-2],[2,-6],[4,-8],[5,-5],[3,1],[20,-22],[9,-2],[5,-7],[1,-2],[6,1],[2,-1],[7,-5],[4,-2],[22,-2],[8,3],[3,8],[2,2],[5,-1],[4,-5],[1,-9],[-3,-5],[-13,-12],[4,-2],[4,-2],[5,-1],[2,1]],[[53962,82272],[0,-17],[-1,-9],[4,-12],[6,-23],[0,-6],[0,-21],[0,-14],[2,-12],[7,-13],[2,-12],[6,-13],[3,-31],[6,-34],[2,-11],[0,-5],[1,-11],[0,-6],[2,-4],[4,-4],[1,-4],[4,-4],[-7,-18],[-2,-4],[-3,-2],[-3,-5],[-2,-8],[-1,-7],[1,-10],[2,-8],[1,-9],[-9,-34],[-1,-4],[-3,-11],[-9,-12],[-16,-16],[-17,-12],[-14,-13],[0,-3],[2,-6],[4,-21],[0,-8],[-1,-11],[-3,-7],[-7,-8],[3,-9],[5,-5],[6,-2],[6,-1],[5,-3],[9,-14],[8,-5],[30,-28],[4,-7],[9,-24],[3,-3],[6,-4],[7,-14],[17,-8],[16,-24],[2,-2],[8,-10],[-7,-21],[-2,-14],[5,-6],[1,-6],[-5,-14],[-6,-14],[-15,-16],[2,-24],[6,-26],[6,-17],[-1,-11],[6,-9],[9,-6],[8,-3],[8,-4],[4,-10],[0,-13],[-5,-9],[0,-4],[4,-8],[-1,-8],[-3,-11],[-2,-15],[3,-9],[18,-18],[-5,-8],[-2,-5],[-1,-5],[-1,-6],[-1,-6],[-6,-14],[-1,-6],[-1,-36],[-3,-11],[-4,-11],[-5,-9],[-16,-21],[-4,-11],[1,-12],[5,-10],[5,-4],[4,-7],[1,-16],[2,-15],[7,-9],[13,-15],[4,-11],[3,-15],[0,-15],[-3,-12],[-6,-11],[-2,-12],[1,-4],[1,-6],[6,-9],[18,-8],[6,-6],[6,-5],[13,-5],[6,-4],[5,-4],[5,-7],[3,-9],[-3,-7],[1,-16],[2,-25],[1,-11],[1,-4],[5,-12],[6,-10],[5,-11],[-2,-18],[1,-2],[1,-1],[-5,-13],[-3,-15],[-3,-17],[0,-15],[0,-8],[-2,-4],[-2,-2],[-2,-4],[0,-6],[0,-12],[-1,-6],[-13,-43],[-14,-45],[-10,-14],[-4,-9],[0,-11]],[[53947,82413],[-5,-16],[-2,-2],[-3,-1],[5,-8],[2,-9]],[[53944,82377],[-31,-4],[-7,1],[-4,4],[-7,-9],[-8,-6],[-16,-6],[-17,0],[-10,4],[-5,8],[3,2],[6,6],[9,2],[10,7],[2,4],[2,17],[-10,24],[1,16],[14,-2],[5,-2],[-2,-5],[1,-3],[-3,-11],[0,-10],[4,10],[4,2],[11,0],[-1,-1],[-1,-2],[-1,-2],[-1,-3],[10,-4],[-2,8],[3,14],[0,16],[-4,10],[-7,-3],[-2,9],[-3,8],[-4,7],[-4,4],[-6,2],[-5,-2],[-3,-4],[2,-8],[0,-4],[-2,-2],[-2,-3],[-2,-5],[-1,-4],[-2,-2],[-10,-4],[1,8],[2,5],[2,3],[1,4],[-1,7],[-3,1],[-2,-2],[-9,-5],[-4,-7],[-4,-5],[-5,3],[2,11],[7,20],[2,15],[-2,9],[-12,15],[-3,7],[2,7],[5,5],[5,3],[5,-3],[2,-6],[6,-19],[3,-8],[8,-9],[18,-13],[11,-6],[8,-6],[49,-68],[5,-4]],[[51888,82215],[-6,-1],[-10,-6],[-5,-1],[0,-4],[3,-1],[2,-2],[2,-4],[2,-6],[-2,2],[-4,6],[-2,1],[-3,-1],[-4,-3],[-2,0],[-5,3],[-4,7],[-1,7],[4,3],[21,8],[10,1],[4,-9]],[[51909,82255],[10,7],[38,6],[11,-4],[-59,-9]],[[51981,82276],[13,10],[15,3],[31,-1],[0,-3],[-1,0],[-13,-7],[-34,-6],[-11,4]],[[52046,82288],[4,4],[6,1],[5,-1],[4,-4],[-1,-2],[-1,-1],[-2,-1],[-11,4],[-4,0]],[[52255,82284],[4,8],[5,3],[6,-1],[6,-6],[-4,0],[-3,-1],[-4,-6],[-1,-1],[-3,1],[-1,1],[-2,1],[-3,-3],[0,4]],[[52088,82308],[24,1],[6,-5],[0,-2],[0,-1],[-1,0],[-1,0],[-20,0],[-9,-2],[-1,-11],[-8,0],[-3,2],[-1,8],[2,7],[3,3],[9,0]],[[52128,82308],[7,12],[11,3],[24,-2],[0,-4],[-4,0],[-6,-5],[-8,-4],[-8,-1],[-7,6],[-3,-5],[-2,-2],[-2,0],[-2,2]],[[52187,82317],[-6,5],[2,3],[4,3],[6,1],[5,-1],[4,-2],[7,-5],[-2,0],[-3,0],[-12,3],[-5,0],[0,-7]],[[53159,82438],[4,14],[11,11],[11,5],[8,-5],[-8,-31],[-3,-6],[-3,0],[-1,4],[2,11],[-1,7],[-2,0],[-2,-5],[2,-9],[-4,-4],[-5,0],[-4,4],[-5,4]],[[53202,82494],[0,1],[1,5],[19,11],[4,5],[-5,-9],[-12,-14],[-4,-10],[-2,0],[-1,11]],[[52489,82759],[-1,0],[-1,-2],[0,-3],[0,-3],[-5,-6],[-3,-7],[-4,-7],[-7,-4],[-12,-1],[-5,2],[-4,7],[4,2],[0,3],[-1,4],[-3,3],[9,10],[10,6],[11,0],[12,-4]],[[53126,82733],[16,-39],[-35,8],[-5,-4],[2,-2],[1,-1],[-11,-1],[-8,1],[-3,5],[1,12],[-2,5],[-4,2],[-7,0],[-3,-1],[-2,-4],[-2,0],[-1,5],[-1,2],[-1,0],[-4,-2],[0,8],[7,24],[11,13],[14,3],[23,-13],[7,-8],[3,-3],[4,-10]],[[53650,82803],[-6,-6],[-2,-10],[0,-12],[-3,-12],[-2,-3],[-4,-4],[-2,-5],[-1,-6],[0,-6],[0,-12],[-2,0],[0,8],[0,13],[9,39],[2,15],[2,4],[5,2],[3,0],[4,0],[1,-4],[0,-7],[0,1],[-1,1],[-1,0],[0,-8],[-2,0],[0,12]],[[53805,82681],[7,-16],[5,-8],[6,-3],[-3,-4],[-4,-5],[-3,-8],[-1,-10],[0,-9],[-1,-4],[-2,0],[-7,3],[4,0],[2,2],[1,4],[-1,6],[-2,0],[-2,-4],[-5,-2],[-4,0],[-4,2],[0,4],[11,6],[4,4],[2,7],[-14,-1],[-7,-3],[-5,-5],[15,14],[5,3],[0,4],[-7,0],[-4,0],[-3,-2],[-3,-6],[-3,1],[-2,4],[-3,3],[-28,-4],[-5,-4],[-14,-17],[-3,-6],[-4,-9],[-6,-2],[-7,-4],[-1,-15],[4,4],[0,3],[-1,0],[-1,1],[14,3],[2,-1],[2,-14],[-1,-6],[-4,-3],[-8,2],[-9,4],[-10,8],[2,3],[2,7],[3,9],[-4,-3],[-2,-2],[-2,-3],[1,-2],[1,-2],[-6,1],[-2,-1],[-3,-2],[-2,-2],[-3,2],[-2,4],[-2,2],[-4,1],[-5,3],[-3,5],[1,7],[-4,2],[-8,-5],[-3,-1],[-2,5],[2,4],[4,1],[4,-2],[0,4],[-17,16],[3,13],[6,11],[7,4],[8,-7],[2,4],[4,-4],[3,1],[9,7],[-5,0],[-3,4],[-1,6],[1,6],[0,4],[-4,0],[-2,3],[-2,4],[-2,1],[-13,-4],[5,12],[2,4],[8,2],[8,5],[6,2],[0,4],[2,1],[1,3],[-7,3],[-4,3],[-2,6],[1,1],[1,1],[0,2],[0,4],[-8,-4],[-5,-1],[-2,3],[-1,2],[-1,0],[-1,2],[-1,4],[0,5],[-1,3],[-2,2],[-3,0],[7,4],[21,4],[5,-2],[1,-3],[3,-2],[4,-3],[1,-8],[1,-4],[2,2],[1,7],[-2,9],[4,7],[5,7],[6,5],[4,2],[-3,-12],[-2,-5],[-2,-4],[1,0],[2,0],[1,-1],[1,-3],[-1,-3],[-3,-9],[4,0],[4,2],[2,3],[2,7],[-2,1],[-3,2],[-3,1],[0,4],[4,5],[3,-8],[5,-8],[3,-8],[-1,-9],[5,-10],[7,-3],[14,0],[-2,5],[3,8],[1,2],[2,2],[0,4],[-2,9],[-1,4],[-3,3],[0,4],[2,2],[1,1],[1,1],[2,1],[0,3],[-3,0],[-2,-3],[-2,-3],[-2,-2],[-3,0],[-10,0],[-1,2],[-2,4],[-2,5],[-2,1],[-5,1],[-1,3],[-1,4],[-2,4],[-3,6],[-1,3],[-4,-4],[-2,-3],[-4,-8],[-7,-5],[-4,-6],[-6,-5],[-5,3],[-1,7],[2,11],[4,10],[3,4],[1,3],[1,5],[1,6],[-1,2],[-12,-4],[-4,-3],[-2,0],[0,7],[2,4],[3,4],[3,3],[38,14],[8,0],[7,-5],[0,-4],[-4,-4],[-6,-4],[-5,-5],[-2,-9],[1,-10],[2,-9],[4,-6],[5,-5],[11,-5],[36,8],[12,-3],[9,-11],[2,-16],[-8,-14],[-12,-10],[-6,-8],[-3,-8],[1,-10],[3,-11],[3,-8],[3,-6],[6,-3],[13,-4],[6,-6]],[[52314,82860],[14,-32],[5,-4],[-4,-4],[-9,-4],[-7,7],[-5,12],[-5,9],[8,19],[5,7],[6,3],[0,-3],[-1,-1],[-1,0],[-3,-4],[-3,-5]],[[52360,82897],[15,-1],[7,-5],[5,-10],[0,-4],[-3,-5],[-3,-12],[-2,-4],[-4,-1],[-5,1],[-4,2],[-2,2],[-8,-3],[-9,3],[-16,13],[6,12],[6,8],[8,3],[9,1]],[[52322,83011],[-2,-21],[10,-11],[13,-4],[60,3],[-6,-6],[-35,2],[-5,-3],[-7,-7],[-4,-2],[-20,0],[-1,1],[-3,6],[-2,1],[-3,0],[-2,-1],[-8,-7],[-1,-2],[-1,-4],[-1,-12],[0,-2],[1,-33],[-1,-10],[-2,-8],[-1,-2],[-2,8],[0,16],[3,64],[2,13],[22,72],[11,18],[13,-9],[-17,-1],[-2,-3],[8,-1],[2,-7],[-2,-8],[-12,-8],[-5,-9],[-3,-12],[3,-11]],[[52398,82771],[18,9],[0,-6],[-2,-15],[-6,-13],[-8,-5],[-6,0],[-4,4],[-3,8],[2,10],[5,5],[2,1],[2,2]],[[52195,82556],[-1,-1],[-1,2],[-1,1],[-1,2],[-1,2],[-2,2],[4,1],[2,-3],[1,-6]],[[52197,82563],[5,2],[1,-3],[-4,-2],[-2,3]],[[56751,84740],[3,5],[2,6],[1,7],[1,7],[1,7],[13,37],[5,23],[13,18],[5,11],[0,29],[2,12],[0,8],[-1,6],[-2,5],[-1,7],[-1,6],[4,13],[0,7],[0,6],[1,7],[6,8],[8,7],[7,7],[4,14],[-3,13],[-6,10],[-24,21],[-11,5],[-11,1],[-10,-5],[-3,-5],[-3,-7],[-3,-8],[-1,-7],[0,-9],[-1,-5],[-9,-17],[-3,-6],[-4,-4],[-5,-1],[-11,3],[-5,0],[-4,-5],[-5,-14],[-3,-2],[-5,2],[-3,4],[-8,16],[-13,13],[-7,11],[-19,9],[-11,1],[-5,2],[-2,2],[-3,5],[-1,2],[-3,0],[-1,-2],[-2,-2],[-2,-1],[-2,2],[-3,2],[-3,1],[-2,-2],[-2,-4],[-2,-3],[-2,0],[-2,2],[-2,5],[-1,7],[-1,7],[-1,6],[-1,9],[-3,4],[-4,4],[-3,5],[-2,8],[1,6],[1,14],[0,18],[-1,15],[-4,7],[-8,-5],[-4,0],[-5,5],[-5,5],[-3,4],[-2,8],[-1,7],[-1,3],[-4,-1],[-4,-6],[-2,-7],[-2,-2],[-4,4],[-1,6],[1,6],[3,7],[1,6],[-1,11],[-4,14],[-2,16],[2,14],[2,5],[2,1],[6,-3],[2,2],[1,2],[0,3],[-4,5],[-1,8],[1,7],[4,0],[11,-6],[10,2],[10,5],[11,1],[5,-2],[11,-8],[5,-2],[8,0],[1,2],[0,4],[0,4],[-2,2],[-4,3],[-1,6],[2,7],[3,4],[5,0],[11,-7],[5,-1],[-7,10],[-9,7],[-9,0],[-7,-9],[-5,8],[-6,0],[-12,-4],[-20,2],[-6,-2],[-6,-4],[-3,-2],[-2,-4],[-2,0],[-8,3],[-6,-2],[-15,-7],[10,21],[5,6],[9,1],[2,5],[-17,26],[-2,11],[-9,15],[0,12],[6,9],[18,-1],[6,9],[5,-4],[5,0],[5,2],[9,8],[2,3],[1,4],[0,7],[-2,14],[-4,11],[-7,7],[-6,5],[3,-8],[9,-9],[3,-8],[-2,-2],[-5,0],[-2,-2],[-6,-8],[-1,-2],[0,-3],[-1,-7],[-3,-1],[-1,3],[-2,4],[-2,2],[-18,5],[-7,7],[-7,12],[2,0],[4,1],[2,-1],[-2,11],[1,8],[13,16],[3,3],[3,-2],[4,-7],[1,30],[-10,29],[-4,23],[15,11],[3,-1],[6,-2],[4,-1],[2,1],[4,6],[6,4],[4,4],[4,5],[5,0],[15,-15],[1,-1],[3,0],[3,5],[1,6],[-2,6],[-4,3],[3,8],[7,3],[24,1],[12,-4],[13,1],[15,7],[14,1],[11,-13],[6,14],[-2,10],[-18,27],[-3,6],[1,6],[4,6],[3,4],[5,2],[4,-1],[8,-7],[16,-18],[8,-4],[8,5],[-3,10],[-7,11],[-7,7],[6,3],[24,2],[10,5],[3,7],[4,19],[1,4],[18,5],[6,-1],[6,-4],[10,-13],[6,-3],[5,3],[4,5],[4,3],[6,-1],[16,-13],[5,-1],[5,2],[-2,6],[-4,5],[-5,3],[0,4],[7,-1],[3,2],[1,5],[1,7],[3,2],[3,0],[3,-3],[5,-9],[3,-10],[5,-7],[8,2],[3,3],[2,2],[6,15],[1,3],[-3,9],[-2,4],[-2,2],[-2,3],[-1,6],[0,5],[-1,4],[0,4],[-1,5],[8,6],[11,-9],[19,-26],[7,-2],[21,6],[7,-2],[11,-8],[6,-2],[5,3],[-2,16],[4,6],[6,0],[14,-10],[59,-19],[1,0],[-2,14],[3,7],[7,3],[26,0],[3,2],[0,4],[-2,5],[-3,2],[-8,10],[-4,24],[-1,24],[2,11],[4,-4],[10,-20],[5,-5],[6,-2],[4,-7],[9,-15],[6,-5],[9,-3],[8,1],[3,11],[-2,10],[-4,7],[-3,8],[2,12],[-2,0],[-3,3],[-1,1],[7,9],[8,-3],[16,-18],[-2,-5],[3,-7],[2,-15],[4,-6],[5,-3],[3,1],[2,0],[5,5],[4,9],[-2,4],[4,14],[6,-4],[6,-11],[5,-6],[6,1],[0,4],[-1,5],[1,5],[3,6],[3,2],[4,-1],[10,-6],[10,-11],[1,-2],[1,-3],[0,-5],[3,-1],[52,1],[6,-2],[11,-8],[17,-4],[16,-10],[11,-4],[6,0],[5,2],[9,8],[4,2],[12,-1],[10,-4],[11,-6],[10,-9],[12,-14],[12,-15],[14,-6],[12,-8],[5,-2],[50,-5],[44,3],[37,3],[43,-12],[43,-3],[43,-11],[12,4],[10,8],[9,11],[9,21]],[[57597,84538],[-9,-6],[-43,18],[-22,1],[-6,4],[-6,8],[-10,18],[-7,6],[-9,3],[-5,0],[-5,-1],[-4,1],[-4,4],[-3,3],[-5,-2],[-4,-8],[-3,-9],[-4,-8],[-5,-6],[-5,-1],[-22,1],[-9,-4],[-9,-6],[-8,-8],[-2,-4],[-1,-4],[-1,-4],[-3,-1],[-3,1],[-5,4],[-3,1],[-3,-3],[-4,-4],[-5,-1],[-5,7],[-9,15],[-5,6],[-22,11],[-3,1],[-12,10],[-9,13],[-27,49],[-9,12],[-30,29],[-3,8],[-1,12],[1,5],[2,4],[1,3],[-1,6],[-2,3],[-4,2],[-58,6],[-7,7],[-3,12],[-3,12],[-4,9],[-5,0],[-3,-1],[-15,-6],[-6,-1],[-7,1],[-6,4],[-6,9],[-2,5],[0,4],[0,4],[-3,4],[-2,2],[-10,3],[-11,8],[-17,23],[-11,7],[-3,0],[-2,-2],[-1,0],[-3,2],[-2,3],[-3,11],[-2,4],[-5,5],[-5,1],[-3,-4],[-1,-11],[8,-16],[2,-9],[-6,-8],[-9,-6],[-4,0],[-4,4],[-3,13],[-3,15],[-4,12],[-7,5],[-13,0],[-7,-2],[-6,-5],[-3,-4],[-17,-20],[-7,-5],[-22,-4],[-6,-5],[-6,-6],[-3,-3],[-7,2],[-7,5],[-9,2],[-4,-6],[-5,-16],[-5,-4],[-17,-2],[-19,2],[-6,-1],[-14,-16],[-11,-6],[-4,-5],[-4,-14],[-3,-6],[-7,-4],[-8,-1],[-12,6]],[[56650,84885],[-1,14],[5,9],[8,3],[8,-2],[2,-14],[-5,-13],[-9,-5],[-8,8]],[[56452,85117],[7,-3],[9,-7],[9,-9],[4,-10],[-2,-8],[-18,14],[-7,-6],[4,-1],[3,-1],[3,-4],[2,-5],[-12,2],[-6,3],[-5,6],[-1,3],[-1,4],[-2,4],[-3,2],[-4,0],[-1,-1],[-1,-4],[-1,-2],[-1,-8],[-1,-4],[-2,-4],[-2,-2],[-4,-4],[-2,1],[-3,1],[-2,-1],[-1,-7],[0,-4],[0,-3],[1,-4],[0,-3],[-6,-6],[-6,-8],[-6,-5],[-12,11],[-6,0],[-2,-5],[6,-8],[-19,-28],[-4,-3],[-5,-1],[-4,-4],[-8,-12],[-4,-3],[-6,-1],[-13,1],[-6,-2],[-3,-7],[13,-9],[-10,-10],[-15,-3],[-4,14],[-4,3],[-5,2],[-5,-1],[-5,-2],[-4,-5],[-2,-3],[-1,2],[-3,6],[-4,4],[-2,-4],[-3,-10],[-2,-2],[-1,-2],[0,-1],[-2,0],[0,2],[-2,9],[0,2],[-4,0],[-5,-2],[-4,-4],[-3,-5],[-3,-3],[-4,2],[-3,2],[-3,-1],[-2,-2],[-5,-3],[-2,-1],[-9,-6],[-7,-8],[-4,-6],[-2,-2],[-1,-3],[0,-22],[-2,-13],[-2,-13],[-8,-24],[-2,-5],[-3,-5],[-3,-5],[0,-6],[1,-13],[-4,-6],[-39,-41],[-9,-1],[-7,13],[1,7],[-1,6],[-3,5],[-4,2],[0,1],[-1,2],[0,3],[0,3],[8,-1],[2,1],[2,4],[3,12],[1,6],[11,18],[5,13],[2,5],[3,2],[4,-1],[4,-3],[3,-1],[4,1],[1,4],[2,13],[1,5],[11,19],[-6,7],[-11,5],[-19,4],[-6,7],[-10,28],[-6,6],[-18,0],[-9,4],[-8,8],[-5,10],[-2,7],[0,5],[3,3],[15,-5],[-3,9],[-5,9],[-2,7],[6,3],[5,-4],[5,-7],[4,-5],[5,5],[-2,10],[4,6],[6,2],[6,-2],[-3,7],[-3,12],[-12,27],[-6,9],[-7,13],[-4,5],[-8,8],[-7,12],[15,-8],[4,0],[4,2],[1,2],[0,3],[3,5],[10,0],[8,-3],[7,-8],[12,-25],[2,-6],[1,-9],[0,-3],[1,-2],[2,-1],[1,0],[3,2],[0,6],[-2,8],[2,16],[1,7],[3,6],[4,4],[9,5],[3,5],[3,8],[2,5],[2,1],[5,1],[0,-2],[1,-3],[1,-3],[1,-3],[0,-7],[1,-4],[4,-3],[8,-2],[3,12],[0,17],[2,11],[9,9],[39,5],[24,22],[10,3],[3,-3],[5,-14],[3,-3],[2,-2],[3,-5],[2,-1],[2,1],[5,5],[2,2],[6,-2],[4,-4],[5,-2],[6,3],[9,13],[6,5],[10,-6],[14,4],[7,-1],[6,-5],[12,-5],[13,-10],[16,-8],[5,-9],[4,-12],[2,-4],[5,-4],[11,-7],[11,-3]],[[56494,85162],[5,-10],[1,-5],[-6,-5],[-2,-5],[-3,-4],[-4,2],[-5,4],[-5,2],[-9,1],[-4,-2],[-8,-5],[-4,0],[-24,27],[-15,6],[-6,7],[1,13],[3,3],[9,-3],[4,2],[1,3],[2,13],[1,4],[5,8],[6,3],[6,0],[25,-8],[12,-8],[4,-5],[1,-6],[0,-6],[-1,-5],[1,-5],[2,-6],[5,-7],[2,-3]],[[56489,85427],[8,-12],[1,-7],[-3,-9],[-3,-3],[-3,1],[-3,3],[-3,1],[-3,-1],[-9,-7],[-5,0],[-10,6],[-6,2],[-1,-1],[-1,-3],[-1,-3],[-10,-2],[-3,0],[-4,3],[-9,25],[-1,3],[1,7],[4,4],[4,3],[7,1],[10,-2],[20,-6],[12,3],[6,1],[5,-7]],[[56192,85348],[-18,-5],[-9,1],[-37,22],[-5,7],[3,9],[11,2],[20,-3],[82,12],[-5,4],[-1,4],[4,2],[6,-4],[3,0],[0,21],[5,5],[6,1],[5,2],[4,5],[4,9],[1,5],[0,5],[0,5],[3,5],[3,1],[11,-1],[1,0],[7,-1],[8,-4],[5,-5],[-6,-17],[2,-10],[6,-8],[4,-4],[28,2],[27,-14],[4,-8],[1,-6],[-1,-9],[0,-5],[3,-6],[6,-5],[2,-4],[2,-3],[4,-5],[2,-4],[0,-2],[1,-4],[-1,-6],[1,-4],[2,-1],[2,0],[1,-1],[1,-12],[-2,-6],[-4,-1],[-12,9],[-3,1],[-3,1],[-2,-2],[0,-4],[-2,-2],[-3,4],[-5,-3],[-5,0],[-4,-2],[-4,-7],[3,0],[2,-2],[1,-3],[0,-5],[0,-8],[-1,-1],[-3,0],[-3,-4],[-5,-3],[-8,0],[-7,3],[-3,6],[3,6],[6,5],[4,5],[-2,6],[-5,1],[-6,-4],[-7,-5],[-5,-5],[-6,-15],[-9,-34],[-8,-13],[-12,-7],[-15,-2],[-15,5],[-11,12],[3,2],[2,3],[5,8],[-4,6],[-5,11],[-5,12],[-1,10],[0,14],[-1,8],[-3,7],[-13,18],[-8,5],[-8,3],[-9,-1]],[[56809,85765],[5,-9],[5,-15],[-2,-6],[-7,-2],[-8,9],[-1,11],[4,10],[4,2]],[[56461,84708],[3,-4],[1,-5],[-2,-8],[-5,-1],[-6,5],[-3,5],[0,5],[1,5],[1,4],[4,-1],[6,-5]],[[55848,83677],[-1,3],[-2,22],[-4,19],[-13,37],[-3,13],[-1,13],[1,3],[2,12],[1,7],[0,6],[0,6],[-3,23],[-1,12],[1,11],[2,9],[4,8],[1,5],[2,5],[0,7],[0,11],[2,6],[-2,10],[-1,11],[2,6],[5,-6],[1,-6],[2,-16],[2,-7],[-4,-8],[2,-2],[2,-1],[0,-9],[0,-4],[-4,-8],[7,-10],[2,-2],[2,1],[2,4],[1,4],[-3,13],[-1,10],[1,10],[1,7],[-1,4],[-2,10],[-1,6],[-2,4],[-1,3],[-5,5],[-3,2],[-2,0],[-2,2],[-2,4],[-1,7],[0,2],[2,3],[3,24],[10,34],[3,20],[2,50],[-1,12],[-2,11],[-1,10],[4,10],[23,18],[2,5],[19,13],[5,7],[10,18],[3,4],[3,2],[8,8],[9,10],[6,11],[5,17],[4,21],[0,24],[-1,7],[-3,16],[1,6],[2,8],[1,5],[-1,39],[1,12],[2,11],[3,10],[5,8],[4,4],[4,4],[11,32],[19,31],[31,69],[8,11],[12,7],[51,4],[12,4],[55,34],[80,51],[12,4],[6,0],[3,2],[4,2],[3,2],[4,-1],[3,-2],[0,-1],[-1,-1],[-2,-5],[-2,-22],[-1,-24],[1,-12],[2,-9],[16,-26],[62,-62],[20,-29],[22,-22],[14,-10],[10,-3],[3,-2],[1,-4],[0,-6],[2,-6],[6,-14],[1,-3],[3,-10],[2,-12],[2,-20],[3,-11],[4,-5],[2,-6],[8,-54],[3,-10],[4,-3],[5,-2],[13,-18],[23,-11],[24,-6],[3,-3],[14,-23],[2,-3],[2,-1],[13,-5],[17,-2],[48,13],[17,10],[7,4],[11,10],[5,9],[3,8],[4,6],[11,3],[11,8],[27,21],[2,9],[5,6],[7,5],[4,2],[1,7],[2,4],[7,5],[18,25],[6,17],[3,23],[-1,28],[-7,74],[0,22],[-2,13],[-3,6],[-1,7],[1,15],[3,22],[-3,35],[-2,8],[-12,23],[-4,11],[0,11],[-3,28],[0,14],[0,7],[2,8],[3,6]],[[55728,91354],[-72,-4],[-73,-4],[67,-67],[2,-10],[2,-52],[-1,-11],[-4,-12],[-28,-63],[-24,-31],[-52,-39],[78,-38],[-65,-67],[-11,-8],[-11,0],[-125,43],[-123,49],[-94,-6],[-16,3],[-45,36],[-12,7],[-69,-21],[-5,-1],[-3,-4],[-1,-7],[-6,-54],[0,-18],[15,-117],[-6,-24],[-52,-84],[-8,-15],[-8,-11],[-8,-2],[-79,40],[-80,41],[-6,-5],[-22,-34],[-115,-77],[-7,-8],[-5,-11],[-43,-137],[-6,-12],[-29,-41],[-15,-14],[-17,-7],[-47,-8],[-5,-7],[-15,-44],[87,-131],[1,-11],[-8,-77],[-4,-10],[-8,-7],[-17,-8],[-51,-45],[-24,-28],[-103,-170],[-67,-64],[1,-17],[12,-64],[2,-8],[2,-19],[1,-13],[-3,-7],[-119,-72],[-71,-9],[-72,-8],[29,-167],[2,-24],[-4,-13],[-18,-38],[-3,-9],[-14,-140],[0,-28],[2,-32],[-1,-27],[-9,-17],[-22,-20],[-6,-9],[-4,-15],[-8,-55],[-1,-4],[0,-1],[-6,-18],[-39,-54],[-73,-121],[-74,-121],[83,-55],[11,-4],[22,-4],[10,-7],[5,-14],[13,-140],[0,-11],[-4,-11],[-46,-88],[-5,-6],[-6,0],[-98,24],[-98,24],[-70,-19],[-63,-40],[-21,-20],[-55,-87],[-53,-91],[-34,-35],[14,-60],[0,-13],[-4,-12],[-59,-98],[18,-50],[46,-120],[-33,-46],[-3,-10],[1,-12],[16,-91],[0,-13],[-5,-17],[-10,-29],[-3,-16],[0,-12],[52,-143],[2,-5],[8,-30],[0,-8],[1,-22],[-22,-151],[-21,-151],[4,-8],[32,-36],[13,-10],[21,-30],[8,-6],[11,-2],[19,-2],[9,-3],[8,-8],[73,-105],[3,-5],[1,-7],[-10,-56],[-4,-17],[-6,-13],[-20,-32],[-2,-5],[-2,-8],[-5,-40],[-1,-2],[-2,-7],[-6,-3],[-31,6],[-16,-1],[-64,-20],[-8,-8],[1,-12],[11,-28],[5,-19],[6,-44],[4,-21],[8,-23],[29,-57],[31,-85],[4,-16],[1,-19],[-2,-21],[-3,-15],[-5,-11],[-5,-9],[-15,-21],[-4,-8],[-1,-9],[2,-20],[8,-38],[1,-22],[-4,-26],[-8,-21],[-10,-18],[-43,-55],[-41,-36],[-12,-2],[-44,5],[-15,-6],[-4,-5],[-7,-7],[-2,-20],[3,-9],[9,-11],[1,-2],[4,-10],[0,-9],[-2,-22],[0,-11],[-1,-5],[-11,-19],[-7,-8],[-37,-22],[-5,-9],[-2,-16],[2,-13],[30,-117],[6,-40],[1,-13],[0,-13],[-2,-9],[-5,-9],[-3,-10],[-7,-37],[-1,-28],[-3,-16],[-7,-26],[-2,-13],[-2,-15],[-8,-32],[-15,-16],[-18,-5],[-18,1],[-8,6],[0,38],[-4,18]],[[53177,85405],[0,4],[-10,24],[-1,6],[-2,13],[-1,6],[-5,12],[-7,6],[-9,3],[-27,-3],[-9,3],[-4,11],[2,4],[2,1],[5,0],[1,2],[-1,4],[-2,3],[-1,-2],[-2,3],[-1,3],[-1,4],[0,5],[1,2],[0,3],[-1,5],[-3,-3],[-8,-5],[4,-5],[1,-7],[-2,-8],[-3,-4],[-5,0],[-3,5],[-6,14],[3,-16],[1,-8],[-3,-4],[-16,0],[2,9],[-4,5],[-5,5],[-2,7],[-3,2],[-11,5],[-4,0],[3,-11],[-1,-9],[-2,-6],[-5,2],[-3,4],[-2,8],[0,10],[1,10],[-6,-6],[-2,-1],[-3,-1],[-4,-2],[0,-4],[0,-4],[-2,-3],[-5,1],[-6,15],[-6,0],[1,10],[-5,16],[2,12],[-3,-5],[-4,-12],[-3,-4],[-1,14],[3,16],[5,15],[5,12],[-5,1],[-3,4],[-2,5],[-3,2],[-3,-2],[-4,-12],[-2,-2],[-8,5],[-2,13],[-1,13],[-5,9],[3,9],[1,6],[-1,5],[-5,5],[-11,4],[-1,4],[2,12],[8,17],[4,8],[4,3],[1,-5],[0,-9],[-3,-18],[3,-3],[4,1],[3,6],[1,8],[0,10],[-2,5],[-3,4],[-3,5],[-3,13],[-1,14],[0,13],[3,14],[-5,12],[-4,13],[-2,15],[-1,20],[-5,-7],[-6,9],[-4,15],[1,14],[4,10],[6,28],[4,12],[11,14],[7,-18],[5,-29],[6,-24],[3,23],[5,23],[3,21],[-4,19],[2,4],[-3,3],[-8,4],[-6,6],[-3,-4],[-1,-6],[-3,-3],[-12,4],[-2,-1],[-3,-5],[-3,-2],[-11,1],[-7,-1],[-6,-7],[-9,-12],[0,-5],[7,-5],[-3,-10],[-1,-8],[0,-9],[0,-18],[2,-16],[3,-13],[4,-12],[6,-8],[7,-3],[5,-5],[5,-10],[3,-13],[1,-9],[-6,-22],[-14,-21],[-16,-12],[-13,2],[-4,9],[0,12],[1,26],[0,6],[-3,20],[-1,13],[-1,5],[-2,7],[-1,3],[-7,9],[-1,2],[-3,2],[-1,0],[-1,0],[-1,0],[-4,1],[-10,12],[-9,4],[-7,0],[-4,-9],[3,-3],[6,-10],[3,-3],[4,-1],[4,-2],[17,-11],[6,-9],[3,-12],[1,-16],[0,-14],[-1,-17],[-3,-14],[-5,-5],[-8,4],[-18,15],[-9,1],[3,-10],[6,-11],[6,-8],[5,-4],[6,-5],[11,-24],[25,-9],[5,-6],[1,-11],[-3,-10],[-7,-18],[0,-9],[4,-8],[11,-9],[4,-10],[-3,-6],[-4,-5],[-3,-10],[-2,-12],[-5,1],[-10,9],[-13,5],[-3,-1],[0,-4],[1,-11],[-1,-5],[2,-7],[-1,-4],[-8,-2],[-1,-4],[-1,-4],[-3,-13],[-1,-12],[0,-12],[0,-7],[-6,4],[-1,-12],[2,-18],[3,-14],[-3,6],[-2,8],[-1,9],[-3,9],[-1,-12],[0,-27],[-2,-6],[-1,7],[-8,38],[-1,0],[-1,-8],[-3,-13],[0,-7],[1,-5],[3,-5],[2,-6],[-1,-7],[-6,-7],[-9,-7],[-10,-3],[-7,3],[3,6],[10,8],[2,4],[-1,10],[-4,0],[-9,-8],[-4,-2],[-7,-8],[-5,-2],[-2,3],[-5,5],[-5,1],[5,-24],[-6,-12],[-8,-7],[-8,-2],[-30,-1],[-10,5],[7,5],[2,10],[-2,12],[-5,9],[-10,16],[-5,0],[-2,-11],[-3,3],[-6,13],[-2,1],[-2,0],[-1,1],[-1,4],[0,8],[0,2],[-4,2],[-1,-6],[0,-11],[-1,-9],[-4,3],[-2,3],[-3,10],[-1,6],[0,6],[-1,5],[-4,3],[3,6],[0,6],[-2,2],[-9,-9],[-17,3],[6,-11],[17,-16],[4,-15],[5,-8],[11,-4],[9,-9],[0,-18],[-2,0],[-1,3],[-2,2],[-1,3],[-2,-6],[-3,-2],[-8,0],[0,-4],[3,-1],[3,-2],[2,-4],[1,-5],[-7,1],[-19,-9],[0,-4],[1,-1],[2,-4],[-9,-4],[-29,4],[11,-10],[4,-7],[-3,-3],[-12,4],[-4,-2],[-1,-10],[-7,7],[-8,3],[-7,-2],[-3,-8],[5,4],[4,1],[2,-1],[1,-4],[-2,-4],[-2,-3],[-2,-1],[-12,-3],[-6,2],[-6,9],[-1,-8],[-6,-20],[3,-1],[6,-3],[2,-1],[3,2],[9,7],[7,2],[6,0],[7,-2],[7,-4],[-4,-8],[-14,-10],[-6,-7],[6,2],[6,3],[0,-5],[-5,-3],[-5,-5],[-6,-8],[-3,-8],[-9,-7],[-16,-3],[-47,6],[-3,-2],[-2,-4],[-1,-4],[1,-2],[22,-9],[7,4],[-15,9],[-4,4],[32,-10],[1,-11],[-9,-6],[-25,-1],[-10,-4],[8,0],[19,3],[7,-1],[5,-9],[-3,-4],[-10,-13],[-18,-17],[-15,-12],[-12,4],[-2,-2],[-1,-3],[-1,-2],[-2,-1],[-2,1],[-2,5],[-2,2],[-6,4],[-4,0],[2,-7],[6,-5],[2,-5],[0,-6],[1,-13],[-2,-12],[-5,-8],[-5,-7],[-17,-20],[-7,-9],[-8,-7],[-4,-4],[-7,-4],[-4,-7],[-2,-7],[-5,-7],[-2,-7],[-7,-5],[-4,-2],[-4,-1],[-3,-1],[-2,-5],[-2,-5],[-2,-5],[-4,-4],[-3,-1],[-2,2],[0,4],[-2,4],[-10,-21],[-9,-11],[-2,-6],[4,-7],[-5,-9],[-6,2],[-7,2],[-5,-3],[-4,7],[-4,1],[-2,-3],[1,-7],[1,-6],[-5,-2],[-10,2],[-2,-2],[-8,-9],[-3,-4],[-3,-4],[-10,-3],[-5,-3],[3,0],[3,-2],[2,-2],[-4,-10],[-2,-4],[-6,-5],[-1,-4],[0,-3],[-1,-7],[1,-3],[-6,-7],[-5,6],[-3,8],[-4,-1],[-6,-18],[-4,-7],[-4,0],[-3,3],[-9,1],[-4,2],[-1,2],[-3,8],[-3,7],[8,4],[3,3],[4,5],[-6,9],[-4,16],[-4,12],[-7,-1],[5,-12],[1,-11],[-1,-12],[-4,-11],[-15,-12],[-6,-9],[7,-10],[-12,-6],[-44,-7],[-11,-6],[-6,-1],[-9,5],[-3,-2],[3,-11],[-6,0],[-2,1],[-2,3],[1,-12],[-4,-6],[-6,3],[-4,11],[-1,-8],[0,-3],[1,-6],[-53,0],[-34,11],[-4,5],[-1,9],[-16,-10],[-4,-6],[-3,8],[-3,3],[-20,-8],[-1,-3],[0,-2],[0,-2],[-1,-3],[0,-4],[0,-4],[-2,-2],[-2,0],[-11,-5],[-4,-1],[-3,2],[2,9],[-1,11],[6,8],[9,5],[6,6],[3,5],[3,-1],[2,-4],[3,-2],[3,3],[4,13],[2,4],[0,4],[-6,-1],[-17,-12],[-4,-5],[-4,-4],[-22,-10],[-6,0],[5,8],[7,18],[5,6],[-5,4],[-15,-24],[-7,-8],[2,7],[2,7],[0,6],[-2,8],[-3,-2],[-5,-7],[-3,-3],[-4,1],[-6,2],[-5,4],[-2,5],[12,9],[6,3],[22,1],[7,3],[4,9],[-8,-1],[-16,-5],[-8,2],[-7,7],[-13,19],[-7,2],[10,-32],[-1,-4],[-14,-3],[-8,2],[-4,9],[3,6],[0,7],[-1,9],[0,10],[-7,-31],[-3,-9],[5,-1],[2,-3],[1,-4],[2,-5],[3,-3],[5,-5],[6,-7],[3,-3],[0,-2],[-6,-4],[-2,0],[-6,3],[-3,1],[-29,2],[-6,4],[-15,19],[-3,8],[5,1],[5,5],[4,9],[1,11],[3,7],[16,0],[6,3],[-4,4],[-2,0],[6,11],[14,8],[11,15],[22,15],[-5,2],[-7,-3],[-13,-9],[-16,-18],[-5,-1],[-3,5],[-8,20],[-2,6],[2,11],[4,5],[6,0],[5,-6],[4,12],[-6,9],[-6,-2],[-7,-5],[-6,2],[0,-32],[2,-12],[-18,-1],[-17,12],[-28,5],[-14,8],[-16,14],[-3,2],[-4,1],[-5,2],[-5,3],[-3,4],[-4,4],[-18,2],[-15,12],[-7,9],[-3,3],[-8,1],[-3,2],[-2,3],[-5,10],[-2,5],[-1,5],[-1,8],[-1,7],[0,6],[-1,5],[-2,6],[-8,4],[-25,-2],[-11,5],[-5,19],[-11,3],[-10,-3],[-16,16],[2,8],[-11,18],[-12,21],[-6,23],[-6,16],[-3,12],[-3,9],[-8,15],[5,7],[9,10],[2,9],[1,10],[0,11],[0,12],[-2,9],[2,3],[4,2],[3,2],[2,8],[0,3],[-2,3],[-4,6],[0,3],[-2,9],[-2,6],[1,6],[2,0],[3,-5],[3,-2],[8,-17],[6,-5],[2,11],[-2,6],[-7,9],[-12,12],[3,4],[3,3],[3,0],[3,-3],[-4,7],[-10,-3],[-5,4],[3,5],[2,6],[2,17],[46,-36],[-2,-15],[-2,-20],[1,-18],[3,-12],[6,36],[5,3],[13,-1],[5,3],[0,3],[-1,11],[2,2],[8,1],[4,-1],[5,-3],[10,-8],[4,-5],[6,-14],[4,-6],[34,-33],[12,-5],[26,1],[-7,5],[-24,3],[-4,3],[-6,7],[-5,8],[-2,10],[2,7],[4,9],[7,13],[6,7],[19,13],[120,41],[0,4],[-76,-16],[-15,-11],[-38,-10],[-10,-8],[-25,-47],[-15,28],[-2,7],[3,12],[6,4],[7,1],[5,3],[-3,3],[-5,10],[-3,3],[-5,0],[-11,-5],[-5,1],[-6,6],[-6,10],[-4,13],[-1,12],[5,10],[9,6],[27,7],[8,5],[16,5],[5,3],[-10,3],[-14,-3],[-8,1],[6,15],[9,19],[4,6],[13,10],[13,16],[22,10],[20,22],[13,4],[25,-1],[0,4],[-34,0],[-7,-2],[-31,-28],[-13,-5],[-12,4],[-7,19],[42,4],[0,4],[-3,6],[-4,6],[-4,7],[1,-5],[-1,-5],[-2,-5],[-5,-3],[-2,3],[-2,6],[-3,2],[-1,-2],[-4,-8],[-2,-2],[-3,-1],[-3,0],[-2,1],[-4,3],[-3,4],[-1,6],[-2,7],[-1,-12],[-4,-4],[-7,1],[-5,3],[0,4],[3,3],[2,6],[2,6],[3,5],[3,6],[3,4],[7,7],[14,8],[7,6],[6,10],[0,-2],[3,-4],[1,-2],[1,5],[1,4],[4,9],[1,5],[1,12],[1,5],[6,8],[51,24],[32,5],[-11,7],[-46,-11],[-18,-15],[-10,-1],[3,9],[5,8],[4,10],[1,11],[0,12],[1,11],[3,9],[4,7],[-7,-4],[-6,-14],[-3,-18],[-2,-15],[-1,-5],[-2,-7],[-5,-12],[-6,-11],[-10,-25],[-2,-6],[-4,-5],[-11,-10],[-6,-8],[-10,-9],[-4,-1],[-5,3],[-3,12],[-5,1],[2,-8],[-2,-1],[-2,-3],[-1,-1],[0,-3],[2,-2],[2,-2],[2,-4],[1,-5],[-13,-12],[-7,-3],[-3,9],[-1,7],[-2,4],[-3,3],[-1,5],[-1,7],[0,6],[0,6],[1,7],[10,0],[64,18],[-6,8],[-8,1],[-8,-2],[-14,-9],[-34,3],[-4,2],[-4,3],[-3,4],[-4,9],[-2,1],[-2,3],[-3,11],[-1,3],[-3,0],[-5,-7],[-4,-1],[8,-19],[1,-8],[-3,-10],[-6,-8],[-8,-3],[-7,4],[-4,11],[2,-14],[-5,-10],[-14,-13],[5,-1],[20,14],[7,1],[6,-1],[5,-6],[14,-21],[2,-6],[0,-14],[-4,-2],[-17,-2],[-6,2],[-3,-7],[-4,0],[-9,3],[-2,-1],[0,-4],[0,-4],[-1,-3],[-3,-4],[-1,-2],[-3,-3],[-12,-8],[-4,1],[0,7],[2,7],[4,5],[4,1],[0,4],[-6,12],[-5,21],[-6,16],[-7,-4],[3,-1],[2,-3],[2,-4],[-2,-12],[-1,-25],[-2,-10],[-5,-10],[-6,-8],[-6,-5],[-9,0],[-5,6],[-6,12],[-3,13],[2,12],[3,11],[0,14],[-2,7],[-6,-5],[-2,-10],[-1,-12],[1,-25],[0,-7],[-2,-5],[-2,-1],[-3,3],[-2,4],[-1,7],[-1,13],[-3,9],[-1,6],[2,13],[0,7],[-1,7],[-2,3],[-3,-1],[-1,-2],[-1,-32],[0,-2],[-9,-6],[-18,48],[-9,3],[-1,8],[-1,12],[-1,20],[-1,3],[-1,2],[0,3],[2,4],[3,4],[4,1],[8,0],[0,3],[-12,5],[0,4],[6,3],[4,5],[15,24],[4,16],[5,6],[6,6],[6,3],[6,-2],[2,-7],[2,-19],[3,-6],[1,9],[3,8],[0,7],[-3,8],[-4,7],[-1,5],[4,11],[7,12],[14,17],[-1,-6],[-1,-2],[3,-3],[2,-3],[1,-2],[1,-10],[0,-13],[-2,-12],[-4,-11],[-1,-7],[0,-6],[2,-7],[0,-7],[0,-7],[-1,-3],[-6,-6],[-1,-2],[-2,-5],[0,-1],[-5,0],[-3,0],[-2,-2],[-1,-5],[-1,-8],[0,-3],[0,-4],[2,-3],[2,1],[3,5],[2,2],[18,9],[3,4],[3,8],[0,3],[3,11],[0,13],[-3,5],[-1,6],[3,14],[4,14],[4,7],[5,1],[7,-4],[5,-1],[19,0],[8,-4],[2,-9],[-1,-12],[-3,-12],[8,0],[3,1],[2,3],[1,4],[0,10],[0,5],[7,6],[8,2],[17,-2],[0,12],[-26,-10],[-7,2],[-4,7],[2,8],[12,13],[2,4],[1,4],[2,3],[16,4],[4,1],[1,5],[0,5],[1,4],[2,2],[3,-1],[2,-4],[2,-4],[2,-3],[14,-5],[15,6],[34,30],[3,4],[1,1],[4,1],[2,2],[4,9],[1,1],[21,8],[6,8],[-19,-6],[-34,-23],[-24,-24],[-4,-2],[-5,-1],[-11,0],[-5,4],[-3,8],[0,9],[3,4],[3,3],[1,6],[-1,15],[1,5],[3,6],[-7,-3],[-3,-8],[-2,-12],[0,-11],[-4,-7],[-8,-6],[-9,-4],[-6,-1],[-6,3],[-5,7],[-9,16],[-6,7],[-6,2],[-2,4],[4,13],[-5,-6],[-6,-5],[-6,-1],[-4,8],[7,1],[7,4],[13,12],[-1,16],[9,13],[13,8],[11,4],[29,3],[2,2],[2,4],[1,5],[0,3],[-1,3],[-8,7],[17,36],[24,20],[54,18],[0,4],[-7,-1],[-1,6],[0,9],[-2,6],[-2,-1],[-4,-4],[-4,-5],[-1,-4],[-4,-8],[-10,-6],[-10,-4],[-7,-1],[1,16],[-6,20],[-3,18],[19,10],[3,7],[3,9],[4,10],[8,10],[1,6],[-3,8],[16,5],[5,3],[3,4],[6,11],[3,2],[4,0],[0,2],[0,3],[1,3],[1,2],[1,3],[2,3],[9,5],[9,3],[7,4],[10,18],[7,7],[10,2],[10,-2],[18,-9],[-13,-31],[-6,-20],[2,-14],[-3,-7],[-9,-13],[-1,-6],[-3,-45],[-2,-20],[-1,-10],[0,-15],[2,-18],[2,0],[0,33],[1,17],[5,11],[9,25],[1,8],[0,6],[-3,14],[7,13],[9,37],[7,15],[5,5],[8,5],[4,6],[9,22],[4,6],[6,6],[5,4],[39,11],[25,-8],[13,0],[7,16],[-57,0],[0,4],[2,0],[3,1],[2,2],[1,3],[1,6],[3,2],[3,1],[3,1],[15,29],[-8,1],[-11,-9],[-10,-13],[-7,-12],[-9,-17],[-5,-5],[-18,-6],[-10,-8],[-17,-21],[-6,-2],[-7,-1],[-7,1],[-3,6],[2,13],[20,21],[6,11],[-13,-4],[-24,-29],[-13,-8],[-9,-1],[-15,-8],[-9,-2],[-7,-4],[-14,-17],[-6,-4],[-8,0],[-6,5],[-6,9],[-5,11],[-4,20],[-1,4],[-4,-1],[0,-5],[1,-7],[1,-6],[3,-4],[5,-16],[6,-6],[2,-5],[0,-5],[-4,-3],[-9,6],[-8,-6],[-9,0],[-4,-3],[4,-4],[16,-4],[-3,-9],[-8,-11],[-3,-9],[2,-6],[2,-3],[2,-3],[-3,-11],[-3,-8],[-4,-4],[-6,-1],[-6,3],[-13,11],[-5,2],[-6,-5],[-3,-8],[-2,-10],[-2,-10],[-10,-16],[-6,-12],[-2,-4],[-4,-2],[-5,2],[-4,0],[-2,-8],[0,-7],[6,-30],[0,-21],[-5,-16],[-9,-10],[-11,-2],[1,5],[1,4],[-5,2],[-5,-19],[-4,2],[-9,9],[-2,4],[0,5],[-2,4],[-1,3],[-2,2],[2,13],[3,3],[10,-4],[6,0],[5,3],[4,7],[2,10],[-11,0],[-2,-1],[-1,-3],[-1,-2],[-3,-2],[-3,2],[-2,4],[-1,5],[-3,3],[2,4],[5,5],[1,8],[-7,16],[1,10],[5,6],[18,11],[0,4],[-9,-1],[-11,-5],[-10,-7],[-8,-8],[-1,-3],[0,-9],[-1,-4],[-3,-1],[-5,1],[-7,-6],[-6,1],[-5,6],[-3,7],[5,2],[4,6],[1,7],[-4,5],[0,5],[10,1],[20,12],[10,3],[0,4],[-23,-1],[-7,-3],[8,12],[3,7],[-2,5],[-5,0],[-4,-7],[-3,-8],[-5,-5],[1,10],[3,5],[4,3],[2,4],[1,5],[7,17],[3,5],[0,3],[2,6],[2,7],[2,4],[4,4],[10,5],[4,5],[1,8],[-5,-2],[-6,-5],[-2,-3],[-5,-2],[-3,-3],[-3,-6],[-3,-6],[0,4],[-1,5],[-1,4],[-4,-9],[-5,-12],[-4,-14],[-2,-12],[-3,-5],[-10,-30],[-1,-8],[-3,-2],[-12,-16],[-10,-9],[-3,-5],[-1,-6],[-2,-8],[-2,-5],[-6,8],[-10,7],[4,3],[2,1],[0,4],[-15,7],[-4,5],[2,6],[4,3],[7,4],[0,3],[-9,3],[-19,-9],[-8,3],[21,22],[4,10],[-10,-1],[-29,9],[-3,3],[0,6],[1,8],[2,5],[3,3],[4,1],[9,-1],[-5,7],[-3,3],[-12,2],[-3,1],[-1,5],[1,10],[9,12],[24,-1],[9,5],[-4,3],[-9,18],[2,9],[1,2],[-7,14],[1,9],[11,20],[7,3],[9,-8],[8,-11],[6,-6],[3,-2],[14,-21],[8,-7],[14,-8],[13,-4],[12,2],[10,8],[-1,10],[5,5],[6,3],[5,6],[2,7],[0,9],[-2,20],[0,18],[1,24],[3,21],[6,10],[-6,7],[1,11],[4,11],[3,8],[-6,-7],[-6,-2],[-12,0],[-1,5],[3,9],[4,10],[2,5],[-5,3],[-4,-7],[-4,-11],[-5,-5],[-2,-2],[-6,-8],[-2,-2],[-4,-1],[-12,1],[-3,-7],[3,-28],[-2,-6],[-6,-1],[-18,-7],[-19,-21],[-20,-11],[-7,-1],[-7,2],[-8,7],[-9,11],[-8,13],[-17,20],[-4,8],[11,-1],[9,-7],[18,-20],[2,3],[-19,29],[-21,25],[5,0],[12,-5],[-6,13],[-8,2],[-10,1],[-7,7],[-14,22],[-7,9],[-9,3],[7,5],[8,1],[8,-5],[13,-13],[15,-3],[11,-14],[7,-5],[29,-12],[7,-6],[0,-8],[2,-13],[4,-12],[6,-9],[7,-3],[-3,2],[-1,4],[-2,4],[0,6],[6,-5],[11,-13],[6,-2],[-4,8],[-8,10],[-6,9],[3,6],[4,-2],[9,-11],[2,0],[-1,7],[-3,4],[-3,4],[1,9],[-9,6],[-2,3],[-1,4],[-1,5],[-1,5],[-2,2],[-13,0],[-7,1],[-7,8],[-3,0],[-2,2],[-1,7],[1,2],[6,8],[6,4],[13,4],[6,4],[-4,16],[5,8],[21,9],[5,-1],[4,-2],[5,-1],[4,1],[4,2],[8,5],[-9,1],[-7,4],[-3,7],[7,8],[-7,-1],[-20,-15],[-14,-3],[-6,-5],[-2,-14],[-7,-13],[-15,-4],[-14,7],[-6,16],[-1,-14],[-4,-10],[-5,-2],[-4,10],[4,4],[-5,2],[-13,-2],[-6,6],[-2,7],[-3,17],[-2,8],[-2,4],[-1,2],[0,4],[0,6],[-1,3],[-5,7],[-2,5],[3,7],[6,1],[7,-2],[5,-2],[6,-5],[1,-5],[-1,-21],[1,-10],[3,-7],[2,0],[1,9],[-2,28],[1,7],[4,6],[5,2],[3,4],[-1,12],[-1,-2],[-1,-1],[0,-1],[-3,-1],[-8,-6],[-4,-1],[-15,4],[-3,2],[-2,9],[-1,11],[2,11],[2,7],[14,16],[19,2],[19,-7],[22,-15],[8,-4],[18,-3],[12,1],[4,-1],[1,-6],[1,-8],[2,-5],[4,2],[1,5],[-1,5],[-2,6],[0,6],[1,8],[4,4],[4,2],[11,9],[11,-2],[11,-5],[9,-2],[0,5],[-8,6],[-4,4],[2,2],[10,3],[5,1],[5,-4],[6,6],[11,7],[10,3],[5,-6],[-3,-17],[0,-7],[4,4],[3,5],[3,4],[4,3],[4,2],[-3,6],[-1,2],[9,6],[8,2],[24,-1],[9,-3],[6,0],[19,4],[9,-2],[17,-8],[10,-2],[8,-5],[3,-10],[-1,-10],[-6,-8],[8,1],[4,3],[4,7],[3,2],[5,1],[5,0],[3,-1],[3,-7],[-2,-7],[-4,-8],[-3,-11],[5,-1],[5,1],[-1,9],[1,6],[3,5],[8,13],[7,8],[7,5],[16,4],[7,4],[5,9],[6,14],[2,14],[2,6],[3,-1],[7,-7],[3,-3],[39,-4],[14,-7],[3,-2],[2,-4],[1,-6],[0,-7],[1,-6],[1,-4],[4,-1],[16,2],[5,-2],[2,-5],[5,-20],[5,-10],[2,-6],[1,-6],[-2,-5],[-4,-6],[-5,-5],[-9,-5],[-18,-21],[25,16],[13,4],[11,-4],[18,-15],[4,-8],[0,-8],[-7,-30],[7,8],[8,13],[4,16],[-3,16],[-3,1],[-14,4],[-2,2],[-3,7],[-11,31],[-3,5],[-3,4],[-2,5],[-2,17],[-2,4],[0,4],[5,5],[12,3],[29,2],[8,11],[4,6],[4,1],[22,-6],[4,-3],[6,-8],[8,-4],[19,-2],[0,4],[-5,1],[-4,1],[-3,3],[-10,12],[-3,3],[4,6],[13,9],[2,4],[4,7],[7,4],[42,3],[14,5],[11,15],[-10,-1],[-7,-3],[-9,-7],[-42,-9],[-17,0],[-8,5],[-4,9],[0,7],[-1,11],[-1,6],[-1,7],[-2,3],[-3,2],[-1,3],[0,12],[12,11],[3,11],[1,13],[3,7],[11,10],[4,8],[4,9],[5,8],[5,4],[7,2],[7,5],[6,8],[4,9],[-23,-15],[-40,-42],[-6,-2],[-11,5],[-6,1],[5,-7],[5,-6],[3,-6],[-1,-9],[-17,-24],[-1,-6],[5,-8],[6,-6],[5,-8],[3,-25],[4,-8],[4,-4],[6,-4],[-11,-14],[-4,-3],[-4,0],[-3,1],[-7,3],[-2,2],[-4,5],[-1,2],[-5,0],[-10,-5],[-4,-4],[-1,-2],[-1,-3],[0,-4],[-2,-3],[-3,-2],[-35,-10],[-10,-8],[-6,-2],[-5,2],[-5,12],[7,10],[10,9],[7,10],[-15,-10],[-8,-3],[-7,0],[-24,11],[-40,8],[-30,18],[3,9],[11,10],[4,7],[11,31],[2,3],[6,8],[1,3],[1,4],[1,12],[1,2],[1,3],[2,6],[0,6],[-4,1],[-1,-2],[-17,-53],[-9,-18],[-11,-8],[-3,2],[-5,9],[-2,2],[-3,-2],[-2,-5],[-3,-4],[0,-4],[4,-9],[3,-9],[0,-3],[0,-4],[0,-4],[3,-5],[-18,4],[-2,-2],[3,-4],[4,-2],[3,-3],[1,-7],[0,-8],[1,-7],[0,-5],[-3,-6],[-3,-4],[-14,-9],[-17,-1],[-25,7],[-22,14],[-8,21],[-13,-15],[-15,-7],[-17,1],[-15,8],[13,9],[6,6],[2,10],[-26,-21],[-19,-6],[-19,-2],[-6,5],[0,11],[0,8],[-4,-3],[-2,-6],[-1,-10],[-2,-5],[-4,-1],[-5,1],[-5,0],[-2,-6],[-5,-2],[-33,-3],[-5,-3],[-18,-22],[-14,-9],[-13,0],[-12,10],[-10,19],[-5,-7],[-5,-4],[-16,-2],[-1,-1],[-2,0],[-2,4],[-3,6],[-2,2],[-2,2],[3,7],[5,0],[6,-1],[5,2],[-7,3],[-6,4],[-6,1],[-5,-6],[-5,0],[-18,7],[-4,3],[4,15],[16,-1],[29,-14],[0,3],[-1,7],[-1,3],[10,0],[-15,16],[-8,6],[-8,2],[-33,-5],[-9,5],[6,3],[6,0],[6,2],[3,7],[-9,-4],[-5,-1],[-4,3],[-3,6],[-1,3],[-3,0],[-5,-3],[2,8],[5,6],[10,7],[6,3],[7,1],[3,1],[4,5],[2,2],[12,-1],[6,3],[5,17],[6,2],[8,-2],[6,-3],[4,-4],[4,-4],[3,-5],[2,-7],[4,-20],[2,-9],[4,2],[1,8],[-1,11],[-2,11],[-2,7],[-4,6],[-9,6],[-4,6],[51,11],[53,-3],[-9,8],[-13,2],[-108,-13],[-4,-3],[-6,-7],[-10,-7],[-9,-3],[-6,3],[-3,7],[-6,5],[-3,8],[1,9],[4,9],[4,6],[5,0],[3,-6],[0,-7],[2,-3],[4,5],[0,3],[0,9],[0,4],[2,2],[9,1],[0,3],[0,2],[-1,2],[-1,2],[-5,-6],[-6,-2],[-12,-1],[-11,-3],[-11,0],[0,3],[30,17],[30,4],[7,8],[-2,4],[10,-2],[13,-8],[13,-3],[7,9],[41,-20],[10,-1],[6,5],[-1,4],[5,3],[12,2],[5,3],[3,4],[3,5],[3,5],[5,2],[12,1],[7,-1],[4,-6],[5,-12],[4,-2],[6,0],[0,4],[-6,5],[-10,16],[-7,3],[-16,0],[-7,-2],[-8,-6],[-8,-10],[-2,-2],[-14,0],[-9,-6],[-9,-1],[-6,4],[1,12],[-12,4],[-30,-4],[-10,9],[-21,9],[-11,8],[2,10],[-2,4],[0,4],[5,0],[12,-4],[4,0],[9,4],[31,0],[0,4],[-8,0],[-44,15],[-7,5],[53,0],[-5,-3],[-2,0],[0,-4],[25,-2],[7,6],[-21,10],[-23,5],[14,8],[6,9],[-16,-1],[-11,-7],[-4,-1],[-66,1],[-6,3],[-2,4],[-5,15],[-1,6],[1,6],[4,4],[3,2],[-3,5],[1,6],[3,5],[4,0],[-1,3],[0,2],[-1,1],[-2,2],[4,5],[4,3],[10,0],[4,-1],[5,-2],[1,-2],[1,-3],[0,-2],[0,-2],[2,0],[4,1],[1,-1],[5,-7],[1,-1],[4,-1],[2,1],[6,4],[-9,11],[-3,5],[7,4],[11,6],[-35,-5],[4,8],[7,7],[8,5],[31,14],[7,6],[-1,1],[-1,1],[-1,2],[11,4],[11,0],[-5,4],[-4,0],[-4,2],[0,6],[2,4],[18,22],[9,3],[26,-2],[9,-5],[5,-1],[12,2],[5,-1],[10,-6],[11,-1],[4,-4],[7,-11],[8,-8],[-9,-4],[-10,-1],[-10,-3],[-6,-12],[8,1],[25,11],[52,9],[5,-3],[1,-4],[-1,-7],[-1,-6],[-3,-20],[-8,-19],[0,-7],[5,8],[4,4],[3,6],[4,11],[2,19],[3,7],[5,2],[5,-2],[14,-14],[11,-17],[6,-5],[16,-2],[-2,8],[-5,3],[-5,2],[-4,5],[-3,6],[-5,6],[-5,4],[-5,2],[0,4],[65,0],[6,-2],[13,-11],[7,-3],[25,-2],[8,2],[5,4],[3,6],[5,14],[5,8],[6,5],[7,3],[7,1],[8,-2],[14,-8],[7,-2],[3,-2],[3,-4],[3,-3],[3,2],[4,9],[2,3],[3,3],[0,4],[-5,0],[-9,-4],[-4,2],[-4,2],[-13,4],[-1,2],[-2,5],[-2,1],[-1,-1],[-3,-3],[-1,-1],[-29,-6],[-4,-7],[-4,-9],[-4,-10],[-10,-5],[-60,18],[-45,-5],[-4,2],[-13,11],[-5,1],[-16,-1],[-15,7],[-5,1],[-4,-1],[-8,-6],[-4,-1],[-2,-2],[-4,-5],[-1,-1],[-2,1],[-19,18],[0,5],[57,4],[7,4],[0,4],[-87,4],[-36,8],[-19,-7],[-1,2],[-2,3],[-3,2],[-22,-6],[-13,-8],[-7,-2],[-15,2],[-8,-1],[-6,-7],[-4,-3],[-6,4],[-10,9],[4,8],[3,8],[4,14],[0,2],[5,3],[1,-3],[1,-5],[3,-3],[2,1],[2,3],[2,3],[1,1],[3,-2],[3,-5],[2,-1],[3,2],[0,2],[0,4],[3,4],[11,9],[3,6],[3,14],[8,-5],[10,-2],[7,3],[-4,8],[-4,2],[-9,0],[-4,4],[-4,8],[-4,6],[-25,21],[-27,4],[-5,8],[3,0],[2,1],[4,3],[-4,6],[-8,7],[-3,7],[2,1],[2,2],[2,1],[-1,2],[-2,4],[-1,2],[1,0],[1,0],[0,4],[3,2],[8,-2],[2,0],[3,0],[1,0],[0,1],[0,6],[0,1],[7,6],[3,-1],[8,-11],[8,-7],[4,-5],[2,-2],[2,0],[2,-1],[0,-5],[0,-4],[-2,-8],[0,-3],[14,-17],[20,-11],[17,-15],[3,-33],[1,1],[4,3],[4,8],[9,25],[1,3],[1,3],[4,1],[3,-1],[6,-5],[3,-2],[-8,13],[-40,12],[-5,4],[-3,4],[0,6],[6,17],[2,8],[3,6],[7,3],[6,-1],[13,-9],[27,-5],[5,-5],[2,-6],[2,-8],[2,-7],[9,-5],[16,-15],[-6,10],[-9,10],[-8,13],[0,16],[5,5],[8,1],[15,-2],[5,2],[14,12],[6,2],[6,-2],[7,-6],[4,-8],[1,-8],[0,-8],[-1,-18],[-4,-16],[-15,-25],[-2,-18],[18,24],[8,16],[5,31],[4,-1],[20,-23],[3,-8],[-1,-11],[11,6],[10,3],[23,-1],[44,-12],[0,4],[-77,25],[-4,3],[-7,14],[-3,3],[-3,3],[-13,21],[-15,9],[-2,5],[2,11],[3,2],[5,-3],[11,-8],[6,-2],[13,-2],[-4,4],[-6,2],[-10,2],[-3,3],[-2,7],[-3,6],[-4,0],[8,21],[14,15],[15,10],[14,3],[32,20],[17,6],[8,-11],[1,-4],[9,-19],[5,-20],[6,-8],[13,-11],[6,-10],[19,-36],[3,-11],[-1,-8],[-7,-17],[17,15],[-3,15],[-24,55],[-22,34],[-5,15],[-3,17],[3,13],[10,6],[12,2],[6,-1],[7,-5],[2,-4],[9,-16],[-1,9],[0,9],[-1,7],[-4,3],[0,4],[6,4],[23,11],[12,8],[5,1],[4,-2],[7,-8],[36,-10],[1,-9],[-2,-13],[0,-14],[3,-9],[26,-34],[3,-6],[2,-7],[1,-5],[2,-26],[-1,-9],[-2,-7],[-15,-27],[-1,-9],[5,-11],[9,-8],[9,1],[22,8],[7,6],[4,1],[3,-1],[10,-7],[-11,16],[-33,-18],[-14,8],[-1,10],[3,7],[11,15],[3,10],[0,11],[-3,34],[1,4],[2,4],[4,1],[17,3],[27,-17],[7,3],[5,8],[8,6],[8,1],[7,-7],[5,-8],[6,-7],[6,-6],[5,-2],[0,5],[-11,20],[-12,7],[-3,3],[-8,4],[-36,-6],[-39,10],[-18,13],[-12,26],[9,0],[4,1],[4,3],[-34,46],[-4,3],[-5,1],[-12,-1],[-6,3],[5,4],[5,4],[-28,0],[-58,-28],[-23,-3],[-11,3],[-5,5],[-6,9],[-4,3],[-6,-1],[-6,-3],[-5,-1],[-6,5],[8,5],[24,3],[21,10],[5,4],[6,3],[22,0],[11,-5],[29,0],[0,4],[-7,2],[-10,10],[-13,-6],[-26,2],[0,4],[19,5],[6,-1],[-9,6],[-75,-6],[1,5],[1,1],[-1,0],[-1,2],[2,9],[-1,4],[-3,3],[-2,4],[2,6],[3,5],[7,6],[8,3],[60,5],[7,-3],[6,-7],[5,-10],[1,-13],[2,0],[3,17],[0,7],[-3,5],[3,6],[3,2],[2,-2],[2,-6],[11,14],[12,10],[7,3],[6,-3],[29,-29],[5,-8],[1,-3],[-1,-3],[0,-1],[5,-1],[2,3],[-1,5],[-2,6],[-2,3],[2,2],[4,10],[-3,1],[-3,2],[-3,4],[-2,5],[12,7],[45,-3],[-3,-7],[-4,-5],[-4,-3],[-5,-1],[4,-8],[13,2],[2,-8],[1,-10],[5,-17],[0,-12],[2,0],[1,6],[4,14],[1,4],[-1,5],[-4,7],[-1,3],[7,18],[4,-1],[10,-7],[30,-7],[13,-7],[18,-26],[17,0],[8,-5],[2,-8],[2,-9],[3,-5],[5,8],[1,6],[1,8],[1,6],[4,2],[53,12],[-9,7],[-67,-12],[-12,5],[-5,6],[-6,8],[-2,10],[1,11],[7,7],[10,-3],[6,-12],[-1,-19],[6,-2],[4,6],[0,11],[-6,22],[0,8],[3,6],[14,5],[12,11],[61,19],[31,-1],[13,3],[7,-2],[6,-3],[24,-20],[6,-1],[-5,15],[-18,13],[-6,12],[3,1],[2,3],[2,3],[1,5],[-7,-1],[-13,-5],[-26,-4],[-12,-8],[-61,-13],[-33,-21],[-10,-3],[-29,0],[-7,6],[9,4],[3,5],[-3,5],[-7,7],[10,3],[19,17],[58,16],[-7,0],[-13,1],[-44,-14],[-10,-7],[-5,-2],[-12,-1],[-11,-6],[-95,-11],[-6,4],[3,0],[3,2],[2,4],[1,6],[-1,4],[-5,3],[-1,3],[1,8],[4,8],[10,11],[13,6],[44,-6],[-7,4],[-10,12],[-6,4],[-32,-5],[-4,4],[-13,23],[-3,11],[-5,4],[-13,0],[3,6],[5,4],[25,13],[21,19],[9,5],[18,4],[18,10],[9,0],[8,-6],[12,-16],[8,-3],[14,-13],[1,-3],[5,-16],[16,-5],[16,13],[16,17],[15,11],[6,1],[23,-2],[2,-3],[-1,-5],[-3,-5],[-5,-8],[-22,-14],[7,-4],[38,22],[4,1],[10,1],[5,2],[11,13],[9,0],[29,-16],[3,-3],[2,-5],[0,-5],[2,-4],[3,-2],[0,-12],[3,-18],[4,-19],[5,-12],[9,-10],[25,-7],[11,-6],[27,-30],[9,-4],[9,-2],[9,-5],[7,-11],[2,-19],[6,15],[0,13],[-6,10],[-25,21],[-22,12],[-12,14],[-24,9],[-17,19],[-4,6],[-1,11],[1,9],[2,6],[4,4],[5,2],[-3,2],[-4,1],[-3,2],[-2,5],[-2,4],[-2,6],[-1,3],[-5,5],[-12,5],[-24,23],[-1,2],[-3,8],[-1,2],[-3,1],[-3,0],[-3,-2],[-2,-3],[3,0],[2,-1],[1,-2],[1,-5],[-6,-2],[-9,-1],[-8,2],[-2,3],[4,8],[11,9],[5,5],[9,20],[4,7],[5,5],[7,4],[7,2],[6,-1],[4,-3],[5,-6],[4,-8],[-2,-18],[4,-8],[5,-6],[4,-4],[20,-7],[6,-7],[5,-8],[3,-2],[5,0],[2,-1],[2,-3],[2,-3],[1,-5],[-8,-9],[2,-8],[5,-11],[-2,-15],[0,-3],[4,1],[9,4],[4,0],[4,-2],[23,-20],[10,-5],[4,5],[-4,11],[-19,7],[-7,8],[6,-1],[34,-12],[6,-3],[3,-4],[5,-9],[3,-4],[5,-3],[9,-4],[5,-4],[-23,33],[-7,4],[-21,4],[-6,4],[-5,5],[-16,24],[-2,7],[64,5],[6,7],[-8,6],[-17,-6],[-9,0],[-6,6],[3,6],[15,12],[-9,2],[-19,-17],[-26,-13],[-5,0],[-2,2],[-3,6],[-1,2],[-2,2],[-8,4],[10,5],[23,1],[9,6],[-9,7],[-37,-7],[-11,1],[-7,2],[-4,5],[-1,3],[0,5],[1,4],[1,6],[-1,1],[-1,2],[-1,2],[-4,12],[-7,7],[-3,6],[6,9],[9,3],[6,-7],[6,-9],[8,-7],[-1,-3],[-1,-6],[0,-3],[6,2],[3,2],[2,4],[0,3],[-2,2],[-1,3],[1,4],[-4,9],[-6,5],[-13,6],[0,4],[86,-10],[27,-14],[-5,11],[-13,10],[-3,10],[3,8],[9,3],[67,14],[26,5],[-21,-1],[-61,-3],[-7,-2],[-3,1],[-3,12],[-3,7],[-5,10],[-13,15],[-7,6],[-7,3],[11,7],[52,11],[10,6],[7,9],[-10,0],[-5,1],[-4,3],[-2,4],[-2,5],[-2,5],[-10,7],[2,10],[7,8],[13,-8],[7,3],[6,7],[6,3],[2,1],[8,-2],[6,-5],[4,-7],[6,-6],[3,14],[10,1],[11,-3],[9,0],[0,4],[-7,0],[-2,5],[2,8],[8,11],[1,1],[4,-1],[9,-8],[17,-20],[3,-7],[1,-7],[2,-6],[4,-5],[-6,-8],[-7,-12],[-4,-13],[1,-16],[9,16],[5,6],[14,5],[20,14],[47,10],[12,14],[-8,-1],[-15,-9],[-37,-3],[-9,-5],[-3,-1],[-4,3],[-3,4],[-7,11],[0,12],[4,8],[83,22],[1,2],[0,4],[-1,3],[-2,-1],[-5,-4],[-25,-8],[-9,0],[-9,7],[-4,1],[-2,2],[-3,8],[-3,2],[1,-8],[2,-7],[3,-6],[4,-3],[-23,0],[-12,5],[-5,11],[3,13],[9,3],[14,0],[-2,13],[6,0],[7,-3],[5,1],[5,7],[7,7],[7,5],[5,-1],[-3,-5],[0,-7],[1,-7],[2,-5],[5,-2],[3,4],[12,22],[5,6],[5,3],[7,-1],[4,-5],[7,-13],[4,-2],[-4,14],[-4,9],[-6,4],[-9,1],[7,9],[8,4],[17,3],[17,13],[9,4],[7,-5],[-1,-9],[5,-11],[13,-16],[4,-7],[3,-9],[1,-10],[-3,-11],[26,-21],[14,-17],[3,-13],[-5,-19],[-4,-10],[-26,-29],[6,-2],[11,3],[10,7],[13,12],[10,-1],[9,-5],[15,-16],[11,-2],[20,4],[9,-2],[3,-7],[1,-28],[3,4],[1,5],[0,14],[0,1],[1,1],[1,2],[0,4],[-1,3],[-1,2],[-1,1],[-1,2],[-6,7],[-44,10],[-5,3],[-3,4],[-2,5],[-2,8],[0,7],[2,3],[3,2],[6,10],[3,4],[18,8],[40,8],[4,-1],[11,-11],[5,-2],[4,1],[8,5],[8,3],[10,-2],[10,-4],[8,-7],[9,-3],[31,13],[2,-3],[17,-5],[7,-9],[4,-4],[3,3],[6,11],[3,2],[10,1],[4,2],[4,4],[3,6],[-26,6],[-13,7],[-5,18],[6,12],[14,7],[26,3],[0,4],[-13,1],[-6,3],[2,6],[4,3],[5,0],[5,3],[3,8],[-20,-3],[-10,-4],[-8,-7],[-5,-3],[-11,-1],[-4,-4],[-4,-5],[-4,-3],[-4,-2],[-4,0],[0,4],[4,2],[2,5],[2,6],[3,3],[2,1],[1,2],[1,4],[1,3],[1,3],[3,3],[1,2],[6,7],[9,6],[16,6],[5,4],[12,20],[35,20],[7,-2],[7,-7],[10,0],[11,4],[7,5],[6,9],[10,18],[7,6],[20,6],[29,1],[4,2],[2,7],[-1,6],[-3,4],[-4,2],[-3,0],[1,2],[2,4],[1,2],[-7,9],[-16,-2],[-8,3],[-7,6],[-7,3],[-7,0],[-39,-11],[-3,2],[-1,3],[-1,6],[0,5],[1,8],[1,2],[3,1],[18,9],[7,6],[3,9],[3,6],[21,12],[38,10],[8,6],[6,8],[3,9],[-12,-2],[-3,5],[-5,1],[-16,0],[-29,5],[-2,1],[-4,8],[0,6],[3,4],[8,4],[18,18],[5,7],[-10,-2],[-8,-4],[-20,-21],[-6,-26],[-2,-4],[-6,-8],[-59,-35],[-8,-7],[-7,-9],[-5,-8],[-6,-6],[-9,-6],[-33,-11],[-8,-5],[-12,-16],[-14,-8],[-6,-7],[5,0],[6,2],[5,3],[16,14],[3,1],[19,5],[36,26],[10,2],[18,-12],[8,-3],[8,-7],[5,-15],[-6,-2],[-7,-5],[-6,-6],[-4,-7],[-2,-4],[-1,-11],[-1,-5],[-2,-3],[-5,-4],[-2,-4],[-10,-11],[-27,-6],[-20,-18],[-19,-2],[-8,-6],[-3,-4],[-6,-18],[-2,-2],[-10,-7],[-11,-3],[-31,-24],[-4,-1],[-10,-2],[-9,-6],[-4,-1],[-22,0],[-3,-2],[-7,-8],[-3,-2],[-8,-3],[-23,-17],[-11,-4],[-12,-1],[-2,-1],[-2,-2],[-1,-1],[-2,2],[-1,2],[-2,3],[-2,1],[-10,5],[-3,10],[-1,14],[-5,12],[3,6],[1,2],[-5,4],[-9,1],[-5,3],[-4,7],[-2,8],[1,6],[5,4],[-2,5],[-3,3],[-6,4],[0,2],[1,2],[1,2],[1,1],[0,3],[-2,6],[13,3],[22,11],[21,5],[10,6],[10,9],[8,11],[-7,-1],[-12,-11],[-7,-1],[1,7],[2,5],[3,3],[3,2],[-3,5],[-4,-2],[-6,-5],[-5,-2],[-5,-1],[-14,-5],[-13,-16],[-22,-5],[-14,-12],[-22,-2],[-1,-1],[-1,-3],[0,-3],[0,-1],[-2,-1],[-3,1],[-1,0],[-10,-8],[-11,-4],[2,11],[4,14],[-4,7],[0,4],[46,22],[17,3],[0,4],[-55,-9],[-10,9],[33,26],[46,25],[12,1],[0,4],[-12,1],[-5,2],[-5,6],[27,11],[6,-1],[1,-6],[-2,-3],[-1,-1],[6,0],[3,1],[9,11],[27,8],[13,14],[16,-5],[7,3],[-7,11],[-4,4],[-4,1],[-5,-2],[-8,-8],[-9,-3],[-9,-6],[-10,-2],[-9,-7],[-6,0],[9,14],[31,15],[12,12],[-4,0],[-3,-3],[-3,-4],[-3,-2],[-3,2],[-2,4],[-1,3],[-19,-14],[-8,-2],[-7,-1],[2,8],[8,7],[3,6],[1,9],[1,10],[2,6],[5,-1],[-1,6],[0,3],[3,7],[-3,5],[-3,7],[-2,8],[1,8],[4,6],[6,-2],[14,-9],[4,-5],[2,-1],[24,6],[4,5],[3,9],[-8,-4],[-23,0],[3,8],[4,4],[6,2],[4,-3],[-2,7],[-1,2],[0,4],[11,0],[-3,2],[-2,3],[-1,5],[2,6],[-1,2],[-1,2],[-1,2],[-1,2],[5,0],[5,-3],[5,-1],[4,4],[-1,1],[0,1],[-1,2],[7,0],[12,3],[6,-3],[13,-12],[2,0],[-2,13],[-12,9],[-22,7],[4,7],[7,4],[14,5],[-1,2],[-1,6],[7,0],[13,-6],[-2,8],[0,6],[4,1],[8,-3],[4,3],[4,3],[4,1],[4,-1],[0,4],[-10,0],[-2,7],[1,10],[-1,12],[6,0],[2,0],[-2,4],[6,-1],[7,-3],[12,-13],[-2,9],[-4,6],[-10,6],[0,4],[12,-1],[6,-3],[8,-11],[5,1],[10,6],[0,4],[-8,-1],[-4,2],[-2,5],[-1,5],[-1,3],[-3,2],[-3,0],[-1,1],[-1,3],[-1,3],[-2,1],[-25,0],[2,7],[3,4],[4,4],[4,1],[9,-3],[16,-14],[8,-3],[-2,7],[-2,7],[-3,3],[-3,-1],[0,3],[-2,2],[0,1],[2,4],[2,4],[1,2],[3,-1],[5,-6],[2,-1],[2,-2],[3,-8],[2,-2],[16,0],[3,-1],[1,-4],[1,-4],[1,-3],[3,-3],[17,-13],[5,-1],[6,5],[-16,14],[-3,6],[5,6],[-2,6],[-7,6],[-6,3],[-20,-5],[-6,5],[0,3],[3,1],[7,9],[3,2],[3,0],[7,-3],[3,-1],[0,2],[1,3],[1,2],[1,2],[8,0],[4,-2],[6,-6],[4,-1],[-1,10],[-3,6],[-3,3],[-4,6],[6,2],[7,-4],[6,-7],[4,-9],[2,-1],[2,3],[3,5],[2,2],[3,0],[2,-3],[3,-2],[3,2],[-8,9],[-1,3],[1,3],[3,0],[7,-3],[0,4],[-4,4],[0,5],[1,6],[1,7],[-1,4],[-4,5],[-3,3],[-3,2],[0,4],[3,0],[2,1],[4,4],[1,1],[1,3],[0,3],[0,1],[4,-1],[7,-6],[15,-7],[3,-3],[1,-5],[-1,-11],[1,-6],[3,-9],[2,-1],[5,0],[18,-19],[3,-6],[0,-8],[-4,-11],[6,-3],[17,6],[7,0],[7,-2],[6,-4],[7,-6],[-3,-12],[-3,-8],[-14,-18],[-13,-27],[7,2],[5,8],[9,19],[22,16],[3,4],[-5,4],[-2,0],[2,5],[7,15],[4,4],[2,-1],[5,-5],[2,-2],[3,1],[7,7],[12,6],[25,4],[12,7],[-60,-9],[2,7],[1,11],[3,9],[4,4],[13,0],[5,2],[0,4],[-3,1],[-3,2],[-2,4],[-1,5],[18,5],[-5,-7],[-2,-2],[6,-2],[24,19],[26,9],[9,7],[-34,-2],[-6,-7],[-3,6],[0,6],[2,6],[-1,7],[-5,3],[-6,-4],[-6,-6],[-4,-5],[2,-3],[3,-1],[3,-1],[3,1],[-5,-13],[-8,-4],[-8,3],[-7,8],[-2,5],[-6,9],[-3,6],[-3,4],[-4,2],[-2,3],[1,5],[0,4],[-3,3],[-3,4],[-2,6],[0,7],[2,2],[2,-1],[3,0],[1,6],[-1,2],[-2,2],[-3,1],[-2,1],[7,4],[16,4],[15,14],[8,-1],[8,-3],[7,2],[-2,1],[-4,3],[0,7],[-3,2],[-4,0],[-4,3],[66,9],[9,6],[5,1],[0,5],[-29,0],[2,4],[-8,1],[-13,5],[-7,2],[9,5],[31,2],[0,3],[-1,2],[-1,4],[2,4],[-19,-9],[-10,-3],[-10,4],[17,9],[5,11],[5,4],[6,3],[13,3],[29,18],[21,3],[4,4],[3,4],[9,8],[4,2],[44,-12],[-10,12],[-12,6],[-25,2],[-6,-2],[-10,-8],[-4,-2],[-20,-2],[-48,-35],[-34,-13],[-2,-4],[4,-7],[0,-4],[-21,-14],[-7,-2],[-7,-1],[-5,-3],[-4,-5],[-5,-10],[-5,-8],[-7,-7],[-7,-4],[-32,-11],[-7,4],[4,3],[16,6],[8,6],[4,1],[2,2],[17,22],[2,5],[-23,-7],[-12,10],[-13,-3],[-7,4],[6,9],[8,4],[68,10],[39,18],[9,12],[-7,0],[-20,-13],[-99,-20],[6,8],[38,31],[6,1],[7,-1],[17,-14],[6,-2],[6,2],[6,4],[5,7],[0,4],[-4,-1],[-8,-9],[-5,-2],[-3,2],[-12,15],[5,5],[18,7],[5,0],[12,-5],[4,0],[-2,2],[-2,5],[-2,2],[4,3],[3,-1],[3,-4],[3,-2],[13,2],[16,8],[3,4],[12,2],[4,4],[-5,3],[-3,4],[-1,5],[3,6],[16,14],[10,5],[10,8],[10,3],[9,-8],[-1,-5],[1,-6],[1,-4],[3,1],[2,3],[2,9],[1,5],[3,3],[2,-3],[0,-5],[1,-3],[3,-4],[4,1],[4,3],[3,2],[6,-2],[4,-4],[4,-7],[3,-8],[0,-2],[0,-1],[-1,-3],[0,-4],[3,-2],[3,1],[2,2],[1,4],[1,5],[-2,3],[-3,4],[-1,5],[-1,7],[2,3],[25,5],[16,13],[8,5],[19,-3],[10,3],[4,14],[6,4],[27,3],[9,3],[-5,4],[-2,0],[-3,0],[4,7],[6,3],[6,0],[5,3],[11,15],[16,16],[4,1],[2,3],[1,7],[2,7],[3,3],[6,4],[25,35],[3,9],[-2,3],[-10,-13],[-11,-9],[-3,-4],[-6,-9],[-44,-46],[-27,-18],[-4,0],[-4,-2],[-7,-9],[-4,-2],[-20,-3],[-11,2],[-6,5],[4,16],[25,3],[7,10],[-3,0],[-7,2],[-3,2],[-3,4],[-1,2],[1,5],[0,1],[-6,2],[-11,-5],[-7,-1],[0,4],[10,9],[5,3],[6,0],[14,-4],[8,0],[3,6],[44,-1],[10,3],[-9,5],[-26,-1],[-20,4],[-4,-1],[-7,-6],[-5,-1],[1,6],[1,2],[-8,3],[-25,-3],[-7,-4],[-6,-9],[-6,-8],[-9,1],[3,7],[12,13],[3,5],[6,11],[3,5],[10,4],[10,-1],[10,3],[8,14],[-5,0],[-14,-8],[2,7],[4,6],[16,14],[2,1],[2,-1],[2,-3],[0,-3],[1,-1],[24,-1],[7,-5],[3,-7],[5,-5],[5,-2],[5,4],[-8,15],[-11,1],[-11,1],[-10,3],[-3,5],[-1,12],[-2,8],[-3,7],[-7,9],[-3,8],[13,1],[6,-1],[5,-4],[1,-3],[0,-3],[0,-4],[1,-2],[3,-1],[2,7],[3,2],[8,-7],[14,-24],[9,-6],[-20,27],[-3,10],[5,10],[37,6],[-11,5],[-37,-5],[0,4],[3,2],[7,5],[3,1],[-6,5],[-10,0],[-6,6],[-3,9],[2,3],[6,2],[6,4],[-6,3],[-4,9],[-2,12],[0,12],[-6,-13],[-4,-20],[-7,-13],[-13,6],[6,9],[6,7],[5,7],[2,13],[-7,-6],[-12,-21],[-7,-5],[-10,3],[-2,10],[2,14],[4,13],[-6,0],[-4,-3],[-4,1],[-4,6],[1,3],[1,5],[-1,7],[-2,6],[4,8],[9,11],[5,7],[4,10],[3,4],[2,2],[5,4],[3,4],[5,6],[9,1],[8,-3],[5,-6],[2,-4],[1,-4],[1,-4],[0,-6],[2,-2],[12,0],[-3,-3],[-3,-5],[-2,-6],[0,-7],[2,1],[11,-8],[10,3],[6,0],[8,-8],[4,0],[5,2],[3,3],[-2,6],[-6,4],[-5,1],[-12,1],[-3,1],[-3,4],[-3,7],[-1,6],[-1,7],[-2,5],[-7,3],[-10,8],[-4,3],[-4,12],[2,8],[14,13],[5,8],[3,3],[4,1],[4,-2],[3,-5],[4,-4],[5,-1],[-3,8],[1,14],[-5,5],[-7,0],[-11,-4],[-3,0],[-1,4],[1,9],[1,3],[3,3],[2,2],[0,5],[1,8],[0,4],[5,12],[6,8],[30,23],[8,2],[8,-1],[20,-8],[3,-4],[6,-9],[4,-3],[6,0],[10,2],[5,-2],[2,-4],[3,-8],[3,-4],[2,-2],[5,-1],[2,-1],[2,-1],[1,1],[2,0],[1,-2],[0,-6],[9,-17],[5,3],[-2,10],[-4,12],[-1,12],[-4,7],[-2,5],[-1,6],[-3,2],[-18,0],[-19,8],[-10,8],[-5,12],[5,4],[5,6],[2,7],[-5,8],[5,10],[15,9],[5,9],[-11,0],[-21,-13],[-59,-11],[1,3],[0,2],[1,1],[1,2],[-3,3],[-4,1],[-8,0],[5,7],[18,18],[6,4],[9,2],[17,11],[50,11],[8,-4],[3,0],[2,6],[2,4],[15,4],[5,4],[14,6],[23,19],[61,13],[10,-3],[4,-10],[-6,-8],[-9,-5],[-9,-2],[0,-4],[25,0],[-3,-8],[-7,-12],[-3,-8],[-1,-11],[1,-6],[4,-1],[4,2],[3,4],[7,15],[5,5],[6,3],[20,1],[10,4],[4,0],[3,-2],[5,-4],[9,-5],[2,1],[1,6],[0,6],[-3,2],[-13,2],[-20,-2],[-26,8],[9,20],[15,11],[17,2],[14,-4],[-2,-7],[-8,-8],[-3,-6],[8,1],[13,12],[38,10],[4,2],[2,5],[2,6],[2,6],[7,4],[5,6],[9,3],[8,6],[6,8],[2,11],[-3,5],[-9,-4],[-14,-12],[-24,-7],[-7,-5],[-6,-14],[-2,-2],[-29,5],[-7,3],[-4,7],[-3,1],[-4,-4],[0,-7],[-4,-8],[-7,-6],[-22,-7],[-8,1],[-5,11],[14,8],[-3,3],[-4,3],[-3,2],[-4,0],[-3,-2],[-17,-16],[-10,-2],[-14,-7],[-25,1],[-11,-2],[-23,-22],[-37,-18],[-8,3],[-3,11],[7,8],[9,6],[7,6],[6,9],[8,7],[44,25],[48,-1],[11,6],[-8,6],[-28,-2],[2,7],[3,3],[8,3],[-5,3],[-5,0],[-10,-3],[-4,0],[-2,2],[-2,4],[-2,5],[-6,8],[-3,3],[-1,-4],[2,-11],[4,-8],[2,-5],[-1,-3],[-4,-1],[-25,-14],[-5,-1],[-15,5],[-5,-1],[2,4],[3,5],[1,5],[-3,2],[-4,0],[-11,-8],[-9,-1],[-7,3],[-6,9],[-4,13],[39,18],[8,15],[-1,2],[-2,4],[0,4],[-1,4],[-2,5],[-13,6],[4,3],[4,1],[9,-1],[0,4],[-4,2],[-9,1],[-4,2],[-3,4],[-1,5],[-2,5],[-3,2],[-8,0],[-7,2],[-6,4],[-6,6],[36,12],[3,-1],[6,-6],[14,-5],[7,-5],[2,-5],[1,-9],[2,-7],[1,-6],[-2,-5],[0,-3],[38,1],[10,6],[-30,-4],[-6,4],[1,10],[4,9],[1,7],[-8,3],[0,4],[7,1],[12,9],[7,2],[24,-1],[7,3],[7,3],[7,-4],[15,-9],[14,-6],[14,-2],[-6,9],[-7,5],[-40,10],[-6,5],[13,12],[27,13],[34,-1],[-10,7],[-52,-6],[-8,-5],[-14,-21],[-7,-3],[-17,-1],[-18,-5],[-9,1],[-10,4],[2,11],[2,5],[8,9],[-2,2],[-2,2],[5,5],[11,2],[12,6],[14,-5],[6,4],[-9,5],[-34,0],[-22,11],[6,9],[6,-3],[6,-5],[7,1],[6,3],[7,-2],[6,-4],[5,-3],[8,2],[14,6],[7,0],[19,-11],[8,-1],[-7,13],[-12,9],[-59,15],[-12,8],[9,6],[66,-6],[2,-2],[4,-9],[3,-1],[46,-2],[7,6],[-5,4],[0,4],[28,-2],[14,4],[11,10],[-50,0],[-9,-2],[-19,-10],[-10,0],[-7,6],[-2,9],[5,8],[8,5],[36,-7],[10,7],[-9,5],[-44,4],[-3,-3],[-3,0],[-10,6],[10,13],[20,3],[20,-1],[23,-9],[62,-1],[-12,6],[-41,5],[-4,3],[-8,11],[-5,3],[-10,-3],[-4,1],[-3,10],[2,0],[2,3],[2,1],[-4,2],[-8,1],[-4,3],[-1,4],[-1,10],[-1,5],[-7,4],[-16,-4],[-8,3],[7,10],[6,6],[6,3],[43,0],[10,5],[-2,3],[-1,3],[-2,7],[22,-2],[6,2],[2,2],[4,7],[2,3],[3,2],[3,1],[7,1],[10,0],[-4,-12],[-6,-5],[-7,-2],[-6,-5],[7,-15],[5,-4],[7,3],[-2,0],[-6,3],[14,13],[0,1],[1,3],[0,3],[2,1],[8,-1],[2,1],[5,8],[-1,8],[-3,9],[-5,7],[3,5],[2,11],[3,4],[5,3],[3,-4],[2,-7],[2,-3],[0,-4],[4,-16],[3,-7],[11,-12],[4,5],[4,0],[3,-2],[3,1],[3,1],[3,1],[1,1],[0,6],[1,1],[6,5],[5,12],[1,12],[-7,4],[7,6],[41,2],[5,-2],[10,-9],[5,-2],[10,4],[5,-2],[3,-10],[-1,-6],[4,0],[6,5],[2,9],[-4,10],[-8,3],[-16,0],[-33,8],[-24,-1],[-6,5],[5,3],[5,7],[4,7],[5,7],[-4,7],[1,6],[5,5],[5,3],[25,3],[-3,-4],[-4,-8],[-3,-9],[-1,-7],[3,-5],[5,3],[5,8],[4,6],[-2,2],[-1,2],[0,2],[-1,3],[60,4],[9,-6],[7,-15],[3,-4],[2,3],[0,7],[-1,6],[-3,6],[-4,4],[-20,9],[-38,2],[6,6],[10,5],[9,3],[7,-4],[6,-7],[8,1],[7,5],[11,4],[6,6],[4,1],[29,-5],[26,5],[0,-4],[-11,-2],[-4,-2],[2,-12],[-3,-5],[-5,-4],[-3,-7],[2,-7],[12,-11],[9,-11],[5,-3],[4,2],[-1,7],[-5,8],[-10,8],[-5,7],[4,2],[17,24],[4,4],[15,5],[5,0],[10,-10],[6,-2],[19,0],[6,-3],[11,-8],[6,-3],[15,-2],[8,-5],[3,-9],[-1,-12],[-4,-14],[7,-8],[9,-5],[9,-3],[9,0],[-2,6],[-11,5],[-4,5],[1,6],[-1,6],[9,15],[3,6],[-3,0],[-4,11],[-16,9],[-6,8],[9,7],[13,1],[72,-24],[7,0],[-2,8],[-4,4],[-4,2],[-3,6],[3,4],[-27,-7],[-16,10],[-40,10],[-6,-1],[-8,-4],[-12,-11],[-7,-2],[-7,5],[6,4],[7,0],[6,3],[3,9],[-16,3],[-4,-1],[-4,-3],[-4,-2],[-8,-1],[-42,8],[5,7],[5,2],[6,1],[5,3],[3,5],[5,19],[-8,0],[-23,-9],[-7,-1],[-4,-1],[-2,-3],[-1,-5],[-1,-3],[-3,-2],[-2,0],[-20,3],[-37,-3],[4,-4],[8,-1],[4,-4],[-6,-6],[-38,-17],[-16,-1],[15,11],[6,9],[0,13],[2,3],[-5,2],[-6,-2],[-10,-8],[-14,-6],[-46,-2],[-5,-2],[-6,-4],[-6,-2],[-5,4],[17,11],[6,6],[-2,5],[3,4],[10,6],[11,16],[30,33],[3,6],[-2,3],[-8,-1],[0,4],[3,0],[3,1],[6,4],[1,8],[9,4],[25,-4],[8,2],[8,-1],[6,-9],[-2,-2],[-2,-3],[-4,-8],[8,-4],[9,6],[8,10],[8,5],[9,1],[10,5],[19,14],[-31,-4],[-32,4],[1,2],[4,6],[-5,3],[-11,-2],[-4,3],[3,4],[-3,4],[-4,2],[-4,2],[-4,0],[4,8],[7,8],[8,6],[54,27],[19,4],[7,-2],[9,-6],[8,-8],[4,-9],[-3,-2],[-4,-1],[-7,0],[-3,1],[-5,6],[-8,4],[-6,7],[-6,2],[-6,-9],[6,-5],[8,-13],[5,-1],[-12,-18],[-35,0],[-15,-7],[7,-3],[37,-2],[8,2],[6,5],[5,6],[6,5],[7,3],[6,0],[5,3],[4,5],[5,4],[5,-3],[-2,-5],[1,-4],[3,-3],[3,-1],[0,-4],[-4,-2],[-4,-2],[-9,0],[0,-4],[2,0],[4,-4],[-2,-7],[-3,-6],[-3,-5],[-2,-10],[5,2],[10,11],[5,3],[2,1],[2,4],[1,5],[0,4],[1,3],[3,2],[36,5],[16,-3],[12,-13],[2,-5],[4,-12],[14,-31],[0,-4],[1,-9],[1,-4],[0,-1],[7,-11],[9,-9],[10,-7],[0,-5],[-11,-3],[0,-6],[6,-5],[9,2],[12,17],[-3,5],[-15,7],[-4,6],[-1,3],[0,4],[0,7],[-5,11],[-1,4],[-3,7],[-7,9],[-13,10],[4,7],[10,7],[5,6],[-8,0],[-4,1],[-3,3],[8,15],[11,10],[53,24],[31,4],[-9,10],[-55,-13],[-31,-21],[-16,-4],[-65,9],[-7,2],[-4,7],[1,11],[1,5],[8,6],[-2,1],[-4,3],[10,6],[9,0],[19,-6],[9,0],[4,-3],[3,-11],[3,1],[3,4],[3,5],[-14,16],[2,1],[4,4],[-4,6],[-5,5],[-5,1],[-5,-5],[3,-6],[1,-1],[-7,-5],[-8,4],[-8,6],[-8,2],[-14,-8],[-8,-1],[-4,5],[5,16],[39,25],[-9,0],[-4,1],[-5,3],[5,12],[3,4],[4,1],[4,-1],[11,-6],[12,-13],[36,-9],[-6,9],[-2,3],[40,-8],[-20,14],[-11,4],[-17,-7],[-8,5],[-15,16],[0,4],[54,5],[17,-9],[39,-33],[6,-1],[5,10],[-5,0],[-4,1],[-3,3],[-4,4],[1,4],[0,5],[1,3],[-33,20],[-11,1],[3,7],[5,4],[5,4],[5,5],[-5,0],[-5,-2],[-13,-10],[-5,-2],[-51,14],[3,10],[7,11],[0,7],[-4,10],[-3,-3],[-3,-8],[-2,-11],[-5,19],[-4,5],[-4,-8],[1,-4],[5,-17],[2,-7],[-21,-16],[-13,-14],[-11,-6],[-8,-14],[-3,-3],[-6,-1],[-34,-21],[-24,-8],[-5,-4],[-5,-3],[-22,-5],[-8,3],[-16,0],[-7,7],[42,24],[0,4],[-27,4],[4,9],[5,0],[7,-3],[5,0],[6,4],[67,6],[-9,4],[-10,-2],[-10,1],[-6,14],[6,3],[6,5],[-44,-6],[-13,-6],[3,2],[1,2],[-1,2],[-3,2],[0,9],[-3,3],[-5,-2],[-4,-6],[-2,1],[-3,3],[-2,4],[-2,4],[5,7],[5,4],[5,2],[18,-2],[24,9],[29,1],[11,7],[-8,6],[-63,-10],[0,4],[3,0],[2,1],[5,3],[4,9],[13,8],[15,5],[10,0],[14,-4],[29,-1],[12,-8],[-5,-3],[-4,-5],[-2,-7],[1,-10],[29,35],[10,6],[0,-5],[6,0],[34,16],[15,1],[2,-2],[-7,-16],[-2,-4],[-2,-2],[0,-3],[1,-5],[2,-6],[3,-3],[2,1],[3,3],[-5,5],[0,7],[3,7],[4,6],[4,4],[5,2],[4,4],[2,8],[41,13],[10,-1],[9,-8],[3,-6],[2,-10],[1,-5],[2,-2],[3,1],[1,2],[2,14],[4,7],[13,11],[4,5],[2,5],[4,12],[-4,0],[4,8],[9,3],[17,-2],[0,4],[-45,4],[-14,8],[0,4],[11,9],[3,5],[-6,2],[-4,-2],[-11,-9],[-2,-3],[-8,-7],[-52,2],[-2,3],[-2,5],[-3,7],[-5,6],[-3,0],[-4,-2],[-3,-4],[-38,-24],[2,-7],[4,-1],[5,1],[4,-1],[-11,-9],[-12,1],[-11,8],[-10,16],[4,6],[4,3],[5,1],[4,2],[4,14],[13,14],[17,12],[12,5],[-1,-9],[0,-7],[3,-6],[4,-3],[1,2],[1,9],[1,1],[12,0],[3,3],[10,11],[2,5],[0,13],[2,2],[6,-1],[-1,-2],[0,-2],[0,-2],[-1,-2],[5,-3],[11,-2],[5,-3],[-4,-5],[-5,-3],[3,-3],[4,-5],[3,-6],[-1,-7],[-7,-4],[-18,7],[-7,-3],[2,-4],[1,-4],[-1,-6],[-2,-6],[3,-2],[3,-2],[3,0],[4,0],[-2,10],[3,3],[18,0],[8,3],[0,2],[0,3],[1,2],[3,1],[13,1],[6,2],[5,5],[8,13],[4,4],[5,0],[-10,13],[-5,9],[0,10],[5,3],[8,-3],[7,-1],[3,11],[-1,6],[-1,5],[0,5],[1,5],[4,5],[4,1],[10,0],[6,-4],[3,-9],[1,-9],[3,-7],[-1,-5],[-3,-4],[-2,-2],[-3,-1],[4,-11],[5,1],[6,5],[4,1],[2,-8],[-1,-11],[-3,-9],[-6,-8],[2,-8],[4,-15],[-2,-10],[-4,-5],[-4,-4],[-3,-7],[32,-18],[9,-11],[5,-13],[1,-14],[0,-14],[2,-11],[5,-6],[12,-3],[5,-5],[3,-5],[35,-32],[14,-5],[8,3],[-7,3],[-8,5],[-5,8],[3,12],[-40,14],[-11,9],[-4,6],[0,5],[3,5],[2,6],[0,8],[-1,14],[1,7],[-4,6],[-5,5],[-10,5],[11,4],[8,-2],[8,-8],[29,-43],[2,-8],[11,-5],[3,1],[-1,5],[-1,4],[-3,7],[1,2],[3,4],[1,2],[-4,4],[-12,4],[-3,3],[-7,10],[-10,11],[0,5],[6,4],[7,0],[4,-5],[8,-15],[7,-8],[9,-3],[8,0],[9,2],[-6,4],[-11,1],[-5,5],[0,6],[3,6],[7,11],[-38,8],[3,10],[4,7],[5,5],[5,2],[5,3],[2,7],[4,4],[6,-2],[18,-15],[31,-9],[7,4],[-2,1],[-4,3],[3,3],[3,1],[-31,9],[-6,4],[-9,12],[-6,3],[-15,-1],[-28,-20],[-16,5],[2,3],[2,9],[-9,3],[-5,3],[-3,7],[14,-4],[8,0],[11,11],[12,-5],[3,6],[-2,1],[-2,3],[5,3],[5,-1],[5,-2],[5,0],[-2,7],[-5,5],[-9,4],[0,4],[36,-13],[13,1],[-5,4],[-11,3],[-16,12],[-2,1],[-2,3],[0,11],[-2,3],[-4,-2],[-6,-9],[-3,-2],[-65,-2],[-3,4],[6,6],[8,3],[37,2],[3,2],[0,4],[-2,4],[-3,2],[-41,5],[-20,9],[-4,6],[5,4],[7,14],[7,2],[5,-1],[10,-5],[6,-2],[3,1],[3,1],[3,0],[4,-2],[2,-2],[2,-8],[2,-2],[6,-2],[14,3],[3,-5],[30,-12],[14,-14],[1,-23],[49,-32],[9,-4],[9,0],[-15,15],[-2,7],[-3,4],[-24,15],[-9,10],[-5,12],[3,10],[-10,12],[-13,7],[-31,6],[-15,8],[-5,5],[-6,5],[-15,-3],[-6,5],[11,7],[-4,2],[-9,-1],[-4,3],[12,7],[26,5],[18,11],[76,9],[7,-2],[23,-13],[13,-1],[6,-3],[2,-10],[-2,-3],[-10,-11],[-3,-5],[6,0],[41,12],[10,8],[5,3],[22,6],[5,-2],[8,-16],[3,-3],[2,-17],[1,-5],[8,-9],[30,-17],[-6,-12],[0,-2],[1,-6],[2,-3],[1,-2],[2,-4],[-1,-9],[-2,-8],[-1,-5],[4,-2],[6,3],[3,7],[0,9],[-3,7],[-1,9],[7,4],[12,2],[-8,18],[-10,11],[-24,15],[-4,5],[-5,6],[-3,6],[-3,7],[-2,13],[3,3],[5,1],[6,8],[-1,2],[-1,6],[22,1],[46,-26],[23,-3],[-9,10],[-50,22],[8,6],[41,3],[47,-10],[30,-16],[15,5],[-16,3],[-56,31],[-40,-2],[21,42],[0,7],[-6,0],[-12,-6],[-12,-8],[-20,-2],[-10,-7],[-19,-21],[-59,-13],[-13,8],[6,3],[16,4],[5,6],[-2,7],[-5,5],[-7,3],[-5,1],[-3,1],[-6,6],[-3,1],[-3,-1],[-21,-20],[-3,-5],[-11,-10],[-31,2],[-19,-8],[-38,0],[-6,2],[-3,5],[0,9],[-1,5],[-3,9],[-3,5],[-2,3],[-1,4],[2,8],[4,4],[15,8],[11,-5],[7,-4],[4,3],[3,8],[-1,2],[-3,2],[-5,2],[-4,4],[-3,3],[-2,5],[-1,9],[3,12],[7,10],[9,7],[18,6],[32,18],[32,7],[10,6],[9,3],[7,-9],[7,-11],[10,-7],[1,-3],[-1,-4],[1,-3],[2,-2],[11,-5],[5,-1],[5,1],[5,3],[-1,5],[-3,2],[-7,1],[-3,1],[-4,6],[-3,1],[-2,2],[-1,4],[0,4],[1,4],[2,4],[2,1],[25,8],[12,7],[6,-2],[11,-8],[6,1],[5,2],[6,-1],[9,-15],[5,-6],[5,-3],[6,-2],[8,0],[24,4],[22,-9],[6,1],[-16,13],[-35,5],[-13,15],[-5,9],[-7,8],[-8,4],[-8,-7],[-6,-4],[-10,2],[-15,12],[8,7],[19,11],[18,6],[8,7],[10,4],[29,-16],[43,-6],[17,-17],[0,17],[-12,8],[-26,3],[-49,21],[21,9],[18,14],[6,4],[9,2],[9,6],[3,1],[3,-1],[7,-7],[7,-4],[8,-3],[7,0],[8,3],[-7,13],[-33,11],[1,3],[3,10],[-55,-11],[-18,-10],[-9,0],[3,8],[12,21],[4,4],[8,0],[3,3],[1,9],[-2,7],[-3,2],[-9,-1],[0,4],[20,21],[12,17],[15,11],[6,8],[-3,2],[-6,3],[-4,3],[8,7],[58,2],[25,16],[18,5],[36,-1],[-20,9],[-3,5],[1,11],[2,6],[3,5],[4,8],[-8,5],[-17,-5],[-8,4],[5,9],[-1,21],[4,11],[8,7],[19,10],[7,11],[-2,10],[3,8],[6,7],[5,8],[-2,3],[-1,3],[-1,2],[1,7],[-2,3],[-2,2],[-1,4],[1,5],[0,2],[2,0],[8,5],[14,4],[2,3],[1,2],[3,3],[3,0],[7,-1],[6,-5],[5,-7],[12,-21],[1,-6],[-1,-4],[-2,-4],[-2,-9],[-1,-1],[1,1],[22,1],[5,-2],[6,-5],[4,-7],[2,-9],[-1,-10],[-2,-19],[-1,-10],[4,-4],[2,-4],[-1,-6],[-2,-4],[-2,-4],[0,-5],[1,-5],[6,16],[3,9],[1,10],[-1,20],[1,12],[2,6],[5,3],[4,-7],[3,-11],[1,-11],[3,-9],[6,-4],[7,-3],[6,-5],[2,-4],[4,-5],[3,-1],[1,8],[-1,7],[-3,3],[-3,2],[-2,5],[4,8],[13,3],[24,1],[11,-3],[19,-14],[21,-6],[2,0],[1,5],[-1,3],[-2,2],[-2,1],[-3,1],[-9,13],[-6,3],[-75,21],[-9,8],[-5,2],[-2,3],[-2,6],[-1,7],[-1,5],[-4,6],[-4,3],[-9,3],[-11,0],[-7,2],[-3,6],[0,6],[3,5],[3,3],[3,2],[-5,13],[1,7],[7,4],[18,2],[19,9],[61,7],[3,-4],[1,-9],[0,-5],[-2,-5],[-2,-4],[-2,-3],[4,1],[5,-1],[5,-3],[3,-5],[2,-4],[0,-10],[1,-4],[5,-7],[21,-11],[-2,-12],[3,-6],[12,-7],[18,-16],[7,-4],[56,-5],[9,-13],[-3,-13],[-5,-6],[-19,-8],[-15,4],[-4,-1],[-7,-5],[-6,-3],[0,-4],[3,-4],[2,-3],[3,1],[8,7],[2,2],[5,5],[5,-5],[1,-8],[-7,-6],[4,-4],[11,-7],[4,-1],[6,2],[8,7],[4,3],[9,-1],[18,-12],[9,5],[-6,7],[-6,5],[-5,7],[-2,13],[0,6],[2,3],[2,5],[0,7],[-2,4],[-5,10],[-23,22],[-7,3],[-7,1],[-39,-5],[-11,5],[-2,4],[-7,13],[-1,2],[0,3],[0,4],[-1,3],[-2,2],[-8,2],[-6,5],[-5,8],[-3,12],[4,13],[7,9],[10,7],[30,11],[5,-1],[8,-9],[4,-4],[4,-2],[3,-1],[-2,7],[-3,6],[-3,5],[-1,9],[-23,-2],[-12,-5],[-14,-3],[-5,-6],[-5,-4],[-6,3],[-6,6],[-4,7],[-4,32],[39,46],[4,25],[5,5],[6,2],[12,2],[5,2],[9,10],[4,4],[13,3],[42,-3],[10,2],[21,11],[50,8],[13,-5],[-2,-8],[-2,-4],[-11,-16],[1,-2],[1,-9],[-2,-9],[-5,-11],[-6,-9],[-4,-5],[5,-10],[6,-6],[3,-7],[-3,-18],[-4,-11],[-16,-31],[-2,-6],[-2,-6],[-1,-8],[0,-7],[2,-6],[3,-8],[2,-7],[-2,-3],[-8,-3],[-9,-7],[-8,-11],[-6,-11],[43,26],[3,12],[5,16],[3,14],[-5,9],[13,41],[-1,1],[-1,2],[0,2],[-1,2],[5,0],[11,1],[35,-5],[18,-10],[19,-6],[14,4],[-10,0],[-12,2],[-12,5],[-10,7],[-8,4],[-10,2],[-9,5],[-3,14],[-1,5],[-3,8],[-2,5],[0,4],[0,14],[4,7],[6,6],[5,6],[-1,12],[4,6],[11,6],[5,6],[9,21],[3,5],[5,3],[1,-5],[-2,-8],[-6,-15],[-4,-19],[11,3],[7,13],[13,32],[10,20],[8,26],[3,7],[4,4],[0,-6],[0,-3],[0,-3],[0,-15],[0,-9],[2,-4],[5,-4],[2,-5],[2,0],[0,12],[-2,27],[2,4],[8,9],[9,13],[6,2],[6,-5],[29,-43],[2,-8],[-1,-6],[-3,-6],[-3,-7],[-1,-7],[0,-12],[-1,-5],[-2,-4],[-3,-5],[-3,-6],[-1,-7],[-1,-6],[-2,-7],[-2,-7],[-2,-5],[-4,-23],[0,-3],[1,-7],[2,-4],[12,-12],[2,-5],[1,-7],[0,-7],[-1,-7],[-1,-6],[-3,-2],[-10,-2],[-11,-5],[-5,-8],[9,-9],[-5,-4],[-3,-5],[-2,-7],[-2,-9],[4,-10],[-3,-10],[-7,-5],[-7,5],[-3,-17],[-4,-16],[-6,-11],[-15,-7],[-16,-14],[-16,-6],[-5,-6],[1,-2],[3,-4],[2,-2],[-18,-22],[-6,-11],[9,-4],[6,4],[8,10],[8,11],[5,10],[7,8],[43,29],[11,2],[3,3],[21,45],[6,8],[13,15],[6,9],[2,15],[1,5],[2,5],[3,5],[3,3],[4,0],[4,-4],[4,-4],[13,-12],[21,-14],[40,-7],[5,-4],[4,-5],[4,-2],[4,3],[-11,9],[-26,10],[-10,12],[-7,17],[-3,5],[-6,6],[-24,9],[-13,10],[-3,6],[2,6],[10,18],[4,16],[-1,15],[-6,11],[-9,4],[0,5],[8,3],[37,2],[39,17],[5,6],[5,10],[1,8],[-3,7],[-4,8],[-2,7],[10,2],[62,37],[11,2],[0,-4],[-30,-22],[-18,-22],[-7,-4],[0,-4],[6,-3],[6,0],[5,-1],[4,-9],[-3,0],[-2,-1],[-1,-3],[-2,-4],[15,-15],[7,-3],[9,6],[-4,4],[-9,6],[-2,6],[6,1],[8,3],[6,7],[-3,10],[7,3],[24,6],[5,-4],[-2,-8],[-11,-18],[-4,-8],[6,1],[9,4],[7,6],[5,9],[0,7],[-4,30],[32,0],[-6,8],[-9,5],[-9,3],[-8,0],[4,24],[8,16],[10,11],[12,6],[17,-1],[46,-24],[-1,-8],[4,-6],[10,-6],[-7,-16],[8,-9],[10,-8],[11,-5],[20,-5],[41,-34],[7,-10],[4,-12],[4,-6],[26,-16],[-5,-4],[-5,0],[-11,4],[7,-6],[8,-4],[9,0],[7,3],[3,7],[-2,4],[-9,8],[-1,13],[-13,12],[-26,15],[6,2],[18,-4],[5,6],[-2,8],[-6,6],[-13,3],[-4,3],[0,9],[0,10],[-1,8],[-3,8],[0,4],[4,11],[0,2],[-2,3],[0,3],[2,4],[3,1],[12,-1],[7,1],[4,0],[3,-3],[0,-4],[-3,-11],[8,-10],[3,11],[-1,20],[-2,16],[4,0],[9,4],[4,0],[0,4],[-45,-11],[-24,0],[-18,15],[11,10],[40,2],[6,2],[4,4],[9,10],[9,7],[3,5],[1,9],[-22,-10],[-3,-1],[-6,-8],[-8,-2],[-33,4],[-3,-2],[-3,-8],[-4,-2],[-23,-6],[-9,2],[-16,18],[-5,2],[-28,-4],[-8,4],[-4,5],[-8,18],[-1,7],[5,6],[7,4],[5,5],[-39,-6],[-12,2],[-5,2],[-4,3],[-3,4],[-3,5],[-4,5],[-9,4],[-1,1],[7,10],[10,8],[10,5],[9,2],[19,10],[9,1],[-1,-11],[2,-7],[13,-18],[1,5],[0,3],[-1,2],[0,5],[1,4],[3,6],[2,4],[0,8],[0,7],[0,6],[2,7],[4,7],[5,3],[6,-1],[4,-4],[0,-3],[0,-9],[0,-3],[7,-10],[6,-5],[14,-4],[7,-3],[24,-26],[2,-5],[1,-6],[3,-8],[3,-4],[13,-12],[1,8],[-1,5],[-1,5],[-1,6],[-1,2],[-1,0],[-1,2],[1,4],[1,4],[3,1],[3,0],[2,-1],[-6,5],[-12,6],[-6,8],[0,10],[4,7],[46,32],[6,1],[6,-4],[-3,-5],[-8,-8],[-2,-7],[7,1],[18,11],[6,2],[3,-2],[0,-6],[0,-29],[3,-7],[7,2],[3,6],[0,7],[-3,15],[35,6],[11,-4],[2,-9],[-4,-10],[-7,-10],[-5,-5],[4,-7],[2,-9],[1,-11],[3,-10],[-4,-6],[-8,-4],[-4,-6],[11,-3],[36,7],[33,-14],[10,2],[-6,7],[-9,5],[-50,12],[2,7],[8,22],[4,18],[-1,2],[8,5],[9,1],[10,0],[12,-4],[11,-9],[4,-1],[3,2],[3,1],[3,-3],[-1,-9],[2,-2],[20,3],[81,-9],[3,-6],[-2,-5],[-31,-38],[-6,-3],[-9,-2],[-19,-9],[-51,-10],[-21,4],[-12,-2],[-11,-12],[-30,-14],[5,-3],[8,1],[7,3],[10,9],[70,9],[19,11],[42,6],[31,24],[11,1],[-4,-20],[-1,-8],[0,-11],[1,-9],[2,-9],[3,-8],[3,-4],[6,1],[9,4],[8,2],[4,-5],[-1,-13],[-1,-8],[1,-6],[7,-8],[-4,-5],[-3,-3],[-4,-3],[-4,-1],[8,-6],[10,4],[34,25],[4,1],[5,1],[0,-2],[2,-4],[3,-3],[2,-3],[-1,-3],[-8,-11],[0,-2],[6,-1],[25,18],[13,4],[3,4],[2,8],[5,3],[6,3],[4,5],[-14,6],[-53,3],[-7,4],[-27,27],[5,3],[10,1],[4,2],[4,4],[5,2],[23,2],[6,5],[6,10],[-6,5],[-16,6],[-7,5],[8,5],[21,3],[6,8],[-26,-1],[-14,3],[-10,11],[9,5],[31,3],[8,2],[20,1],[4,1],[1,4],[7,0],[-8,6],[-9,1],[-49,-7],[5,8],[24,13],[48,7],[12,8],[-28,-4],[1,5],[8,11],[-6,0],[-12,-5],[-5,1],[5,7],[9,21],[6,5],[7,2],[8,6],[15,14],[30,22],[18,23],[7,6],[21,7],[75,-9],[31,-11],[4,-3],[6,-6],[4,-2],[2,4],[0,5],[-3,3],[-8,4],[-16,18],[-8,6],[-32,8],[-3,2],[2,5],[28,21],[7,9],[3,1],[2,1],[3,2],[2,4],[1,6],[0,14],[1,6],[4,5],[11,11],[5,4],[5,-1],[11,-5],[19,1],[6,-3],[32,-30],[9,-5],[11,-3],[10,4],[4,14],[-4,13],[-17,13],[-5,9],[1,1],[2,3],[-19,7],[-5,5],[-7,10],[-3,2],[-5,1],[-14,-1],[-32,8],[-16,0],[-7,4],[-6,8],[7,10],[-1,12],[1,10],[26,15],[9,2],[6,-8],[-2,-4],[11,-3],[4,-4],[0,-10],[16,-4],[15,-7],[11,-12],[6,0],[4,12],[-3,6],[-3,4],[-8,6],[3,9],[0,6],[0,5],[5,4],[7,-1],[8,-3],[7,-1],[4,9],[-24,12],[-8,0],[4,7],[2,1],[-10,6],[-3,4],[-2,7],[4,4],[6,3],[7,1],[5,0],[-4,3],[-10,1],[-5,4],[6,4],[8,3],[8,2],[30,-6],[3,-1],[1,-3],[2,-5],[3,-3],[8,-3],[3,-2],[4,-7],[-2,-3],[-4,-4],[-5,-5],[46,4],[-5,9],[3,10],[3,7],[-5,3],[6,5],[11,0],[8,-8],[-2,-18],[-8,-11],[-10,-10],[-11,-8],[-9,-3],[4,-3],[11,5],[5,-4],[4,-5],[12,-2],[6,-3],[0,12],[2,6],[10,15],[6,6],[2,2],[4,-2],[1,-3],[1,-2],[1,-2],[4,-2],[14,-18],[3,-7],[7,-21],[-6,-21],[3,0],[3,2],[2,4],[3,5],[3,2],[4,1],[9,-1],[2,4],[12,38],[1,10],[-3,4],[-3,3],[-4,8],[-4,9],[-1,7],[6,14],[15,-7],[33,-25],[0,-7],[-3,-8],[-4,-6],[-5,-5],[-14,-9],[-6,-2],[6,-11],[6,2],[13,15],[3,-1],[5,-8],[4,-1],[2,2],[7,14],[8,5],[13,4],[12,0],[5,-7],[1,-4],[2,-4],[3,-5],[3,-1],[3,2],[3,4],[2,4],[1,2],[10,3],[8,5],[8,1],[8,-9],[2,-4],[2,-6],[0,-4],[-8,-4],[-8,-9],[-12,-4],[-7,-7],[-13,-19],[-7,-5],[-27,-7],[1,-5],[2,-4],[4,-7],[-4,-8],[-6,-6],[-6,-5],[-11,-3],[-13,-17],[-18,-5],[-5,-12],[-21,-21],[-13,-4],[-5,-4],[-9,-12],[-5,-5],[-38,-25],[-8,-11],[48,14],[12,-10],[-13,-14],[-50,2],[10,-11],[40,4],[13,-13],[-6,0],[-4,-5],[-2,-8],[5,-17],[0,-8],[-2,-3],[-16,8],[-12,-4],[-21,-21],[4,-2],[4,-1],[8,0],[-5,-4],[-4,-6],[0,-7],[5,-4],[5,3],[6,6],[7,4],[5,-5],[1,-9],[-2,-5],[-40,-32],[-9,-3],[-3,-2],[-3,-4],[-3,-3],[-1,-2],[-3,0],[0,-3],[0,-4],[0,-2],[-2,-5],[-2,-5],[0,-4],[2,-9],[-2,-4],[-5,-7],[0,-5],[-1,-28],[6,-13],[11,-9],[9,0],[-1,16],[-3,5],[-3,5],[-1,6],[1,9],[5,5],[18,7],[-2,-4],[-4,-12],[5,0],[5,2],[4,1],[4,-3],[-9,-3],[-4,-3],[-3,-7],[4,-3],[2,-5],[3,-5],[7,-3],[6,2],[13,5],[6,1],[7,6],[6,12],[10,29],[4,7],[5,4],[5,3],[6,0],[4,3],[5,6],[4,7],[2,7],[4,9],[19,17],[6,12],[-6,8],[-27,8],[5,10],[60,59],[59,73],[8,4],[8,3],[10,7],[8,11],[6,12],[12,39],[4,12],[4,2],[10,1],[5,3],[2,5],[3,11],[2,4],[8,10],[18,14],[14,21],[19,21],[66,48],[22,4],[-1,-2],[-3,-6],[13,-9],[-2,-7],[1,-3],[2,-2],[1,-6],[-1,-5],[-1,-5],[-5,-6],[-3,-3],[-4,-1],[-3,-2],[-2,-6],[1,-7],[1,-4],[3,-3],[3,0],[3,2],[5,3],[4,2],[3,-3],[-1,-6],[-2,-4],[-5,-7],[-4,-8],[-3,-11],[-2,-10],[2,-11],[-14,-18],[-83,-35],[9,-5],[34,13],[11,1],[24,-6],[9,-7],[-15,-49],[1,-8],[-4,-5],[-5,-4],[-4,-7],[0,-8],[1,-4],[3,-4],[2,-8],[-11,-9],[-6,-8],[-2,-10],[1,-4],[3,-6],[0,-4],[-1,-4],[-2,-8],[-1,-4],[-1,-2],[-1,-4],[0,-4],[3,-3],[11,-3],[3,2],[2,3],[1,4],[2,3],[3,4],[4,0],[7,-2],[4,2],[-5,12],[-1,4],[2,3],[6,7],[2,1],[8,-3],[9,0],[8,4],[7,6],[6,10],[1,9],[2,6],[37,2],[-4,-10],[5,-2],[29,8],[7,-1],[7,-3],[-3,3],[-10,5],[-3,3],[-5,9],[-14,14],[-3,6],[7,4],[3,3],[1,5],[-7,4],[-2,1],[5,10],[8,9],[9,7],[8,2],[2,-2],[5,-5],[3,-1],[3,-1],[12,1],[20,-9],[6,0],[-8,10],[-29,15],[-9,8],[2,9],[14,15],[-5,5],[-11,4],[-5,4],[8,15],[8,7],[41,2],[8,-3],[4,3],[4,8],[-7,1],[-7,3],[-4,6],[3,13],[6,13],[3,3],[7,2],[78,-13],[-41,13],[0,4],[4,-1],[4,3],[3,3],[4,3],[-3,3],[-4,6],[-3,3],[-2,0],[-6,0],[-2,2],[-1,3],[-1,2],[-1,0],[-2,1],[-10,-2],[-5,0],[-2,4],[1,5],[5,8],[1,5],[-4,-3],[-7,-9],[-4,-4],[-5,-2],[-41,7],[-10,6],[-9,10],[4,16],[4,8],[6,2],[49,-14],[-2,6],[-3,5],[-6,7],[-5,4],[-12,5],[-4,5],[-3,13],[9,4],[62,-11],[6,-8],[3,-15],[5,-7],[7,-1],[6,8],[-2,8],[-1,8],[2,7],[3,6],[-10,3],[-4,4],[-1,7],[0,10],[-1,5],[0,5],[3,7],[9,6],[12,-2],[9,1],[2,19],[18,-13],[3,-9],[-8,-14],[7,-4],[18,0],[7,-2],[12,-9],[6,-2],[24,6],[6,5],[4,6],[6,3],[6,0],[5,-3],[1,-3],[0,-3],[0,-4],[1,-2],[4,-3],[1,1],[17,19],[6,5],[6,2],[5,-1],[7,-4],[5,-6],[3,-7],[-3,-10],[-5,-4],[-6,-3],[-4,-6],[6,0],[-3,-1],[-2,-2],[-2,-4],[-2,-5],[4,1],[11,7],[-2,-6],[-2,-4],[-3,-4],[-3,-2],[8,-4],[31,16],[41,-2],[11,-10],[2,0],[2,-2],[1,-4],[-1,-4],[-3,-5],[-2,-11],[-6,-12],[-2,-5],[-5,-13],[-11,-3],[-20,2],[4,-7],[5,-2],[6,0],[6,-3],[-6,-8],[-7,-4],[-15,0],[0,-4],[2,-2],[1,-1],[1,-2],[1,-3],[-38,4],[5,-5],[5,-3],[11,-4],[-10,-11],[-12,-5],[-12,-2],[-12,1],[-15,8],[-6,1],[-10,-4],[-4,2],[1,10],[-4,2],[-4,-2],[-3,-3],[-4,-2],[-2,-4],[-36,-4],[-4,3],[-3,0],[-7,-2],[-3,-1],[4,-6],[10,-2],[5,-4],[-5,-3],[-4,-3],[-4,-3],[-3,-7],[24,12],[11,3],[25,-7],[1,-2],[1,-5],[3,-1],[21,1],[7,-1],[6,-4],[-16,-20],[-38,-9],[-18,-12],[1,-1],[1,-3],[-23,-14],[-11,-3],[-9,-6],[-13,-4],[-7,-5],[40,4],[100,38],[28,23],[8,1],[5,-9],[-4,-29],[-15,-23],[-19,-16],[-30,-19],[-6,-9],[-11,-9],[-23,-8],[-11,-8],[-7,-9],[4,-8],[2,-7],[4,-18],[3,7],[5,20],[4,6],[5,3],[10,5],[-6,-7],[-6,-9],[33,14],[36,6],[-30,-16],[-7,-10],[-3,-9],[2,-1],[11,5],[7,7],[4,4],[-5,-5],[-2,-4],[1,-5],[6,-3],[2,3],[12,18],[10,11],[10,9],[12,4],[11,0],[-3,-12],[-6,-6],[-5,-5],[-5,-7],[-5,-11],[-10,-16],[-11,-15],[-3,-8],[-1,-8],[3,-11],[1,-10],[-1,-11],[-3,-18],[0,-22],[6,-38],[0,-17],[-3,-11],[-5,-7],[-4,-6],[-10,-15],[-8,-6],[-9,-4],[-7,0],[15,-5],[17,11],[15,20],[10,23],[2,12],[-2,7],[-3,7],[-3,11],[0,6],[2,11],[-1,5],[-1,4],[-2,14],[2,10],[5,17],[3,9],[1,12],[0,11],[1,9],[4,9],[3,4],[9,7],[8,4],[1,5],[1,7],[1,6],[6,8],[11,6],[10,1],[9,-3],[-1,-11],[4,-10],[5,-6],[5,2],[1,6],[-1,5],[-2,5],[0,5],[3,5],[4,4],[8,3],[0,4],[-20,1],[-6,3],[-15,16],[-2,2],[1,7],[21,40],[2,5],[2,13],[2,6],[5,6],[4,1],[12,-3],[11,0],[2,2],[-3,7],[-10,7],[-10,5],[-4,7],[8,17],[25,23],[14,24],[9,11],[10,9],[9,6],[73,6],[7,-2],[6,-4],[-1,-3],[-11,-1],[0,-4],[44,-3],[12,-9],[0,-3],[0,-8],[1,-4],[2,-3],[2,-3],[6,-3],[22,-4],[6,-5],[-6,-9],[-24,-15],[7,-5],[27,1],[-5,-5],[-8,-3],[-14,0],[2,-6],[3,-3],[3,0],[4,1],[-3,-9],[-7,-3],[-7,-1],[-6,-4],[1,-1],[1,-1],[2,-2],[-4,-8],[7,-5],[6,5],[12,17],[6,5],[35,5],[50,22],[13,0],[9,-10],[1,-22],[-5,-15],[-17,-15],[-6,-11],[40,8],[4,3],[3,5],[2,5],[4,5],[24,24],[10,5],[21,1],[10,-2],[28,-18],[-6,-10],[-8,-5],[-16,-5],[9,-5],[31,-3],[26,-16],[3,-6],[-5,-7],[-18,-9],[-31,-7],[-8,-4],[0,-4],[4,1],[3,0],[3,-3],[2,-6],[-12,1],[-23,7],[-11,0],[0,-4],[45,-8],[82,22],[12,-2],[22,-9],[5,-8],[-10,-7],[47,-29],[3,-16],[12,-12],[7,-4],[4,6],[3,4],[25,15],[6,-4],[7,-17],[4,-4],[5,-3],[16,-25],[-4,-6],[-5,-5],[-3,-5],[1,-9],[3,-6],[5,-3],[4,-5],[3,-10],[-10,0],[-30,-12],[-107,-9],[-9,-6],[0,-13],[-7,-8],[-26,-5],[-6,-5],[-5,-8],[0,-7],[7,-4],[-8,-14],[-10,-8],[-48,-15],[-7,-4],[0,-4],[4,-3],[7,-1],[-130,14],[-131,15],[2,0],[-80,18],[-79,19],[-11,-4],[-5,-9],[44,4],[-6,-11],[-12,-9],[-13,-6],[-9,-2],[5,-8],[10,-4],[19,-1],[11,8],[4,0],[13,-7],[4,-1],[0,-4],[-25,1],[-7,-5],[53,-7],[19,-10],[40,1],[-2,-6],[-2,-2],[11,0],[6,-1],[2,-3],[-2,-3],[-15,-9],[8,-5],[51,5],[13,-7],[82,-21],[-6,-2],[-24,-18],[-13,-7],[-12,-8],[-13,-6],[-5,-6],[-2,-4],[-1,-3],[-1,-2],[-2,-4],[-3,-2],[-7,-3],[14,-2],[6,3],[10,15],[12,13],[6,3],[4,0],[4,-1],[3,-2],[4,-3],[4,-2],[7,4],[10,-4],[13,8],[8,-4],[-3,-8],[2,-5],[2,-5],[-1,-7],[9,-16],[-5,-6],[-5,-15],[-11,-6],[-14,-12],[-1,-5],[0,-5],[-5,-1],[-4,-5],[-3,-7],[-3,-7],[-6,-3],[-11,-2],[-6,-3],[10,0],[-3,-8],[-7,-11],[-6,-9],[10,4],[4,4],[9,12],[31,24],[10,3],[29,2],[22,-4],[2,0],[24,18],[10,5],[9,-3],[-5,-6],[-7,-14],[-5,-7],[-13,-6],[-5,-6],[1,-10],[4,10],[7,5],[14,5],[12,11],[2,-1],[6,-13],[4,-6],[16,-12],[3,1],[1,4],[-2,4],[-5,6],[-11,19],[-4,7],[6,3],[16,1],[5,5],[1,8],[-4,5],[-6,5],[-4,6],[2,7],[0,14],[0,13],[0,6],[21,0],[13,4],[4,-1],[6,-10],[-2,-5],[-14,-8],[9,-4],[20,5],[7,-5],[2,-4],[0,-5],[0,-6],[0,-5],[2,-13],[0,-1],[1,-26],[-1,-21],[-6,-13],[-15,-3],[7,-4],[19,4],[4,2],[1,6],[1,16],[-1,7],[0,4],[4,2],[1,3],[0,3],[0,3],[-1,7],[-2,5],[-1,5],[3,6],[-3,11],[9,5],[60,-6],[6,-6],[-4,-3],[-2,-6],[1,-5],[4,-2],[4,1],[5,3],[9,8],[2,0],[14,9]],[[58042,91349],[-32,31],[-3,6],[0,10],[5,44],[2,13],[3,8],[102,95],[32,51],[-40,73],[-15,46],[-5,6],[-90,33],[-90,33],[-11,3],[-10,7],[-7,11],[0,21],[-53,17],[-6,5],[-52,68],[-15,26],[-8,11],[-9,2],[-21,-9],[-35,5],[-14,-4],[-12,-12],[-2,-10],[-33,-12],[-18,-18],[-4,-1],[-5,0],[-4,-2],[-3,-5],[2,-2],[4,-3],[2,-2],[-11,-11],[-59,-16],[-5,0],[-20,12],[-8,0],[-8,-2],[-16,9],[-8,2],[-26,-6],[-18,4],[-48,-6],[-9,-4],[-6,-11],[-9,-10],[-3,-5],[3,-11],[-8,-12],[-28,-24],[-14,-21],[-12,-16],[-4,-5],[-3,-5],[-5,-2],[-41,-9],[-8,-4],[-7,-9],[-3,-7],[-2,-6],[1,-6],[4,-5],[7,-14],[0,-14],[-5,-13],[-7,-10],[-17,-9],[-4,-7],[1,-4],[3,-3],[2,-4],[-4,-7],[-2,-7],[0,-14],[-2,-5],[-4,-3],[-6,-14],[8,-23],[2,-5],[-26,-34],[-3,-9],[-10,-47],[-1,-16],[4,-16],[2,-3],[3,-10],[1,-5],[0,-4],[-1,-3],[-1,-2],[-1,-2],[0,-20],[-1,-4],[-2,-6],[0,-3],[4,-10],[1,-2],[-1,-3],[1,-2],[2,-3],[5,-5],[2,-3],[1,-4],[-2,-7],[-12,-9],[-3,-8],[-1,-8],[-3,-6],[-9,-10],[-5,-7],[-3,-9],[-4,-9],[-7,-5],[-7,-1],[-33,9],[-14,-2],[-13,-6],[-51,-36],[-11,-17],[-4,-12],[-1,-13],[0,-28],[-2,-4],[-1,-3],[0,-4],[3,-5],[-3,-12],[-4,-6],[-6,-2],[-7,-2],[-18,-10],[-7,1],[-9,-6],[-3,-10],[-3,-11],[-6,-8],[-8,-1],[-5,5],[-8,18],[-21,26],[-26,17],[-50,13],[-42,12],[-40,21],[-6,6],[-9,13],[-57,24],[-21,0],[-18,-10],[-5,-26],[-10,-24],[-25,-12],[-45,-6],[-79,-40],[-6,2],[-21,29],[-8,6],[-14,4],[-47,-7],[-71,29],[-7,2],[-8,-1],[-31,-9],[-6,1],[-3,12],[-7,53],[-4,6],[-22,15],[-22,30],[-3,6],[-4,15],[-4,7],[-38,34],[-21,31],[-79,117],[-7,5],[-90,12],[-60,-31],[-5,-5],[-5,-9],[-8,-20],[34,-56],[-16,-26],[-7,-4],[-11,3],[-80,37],[-8,-3],[-26,-37]],[[54131,90872],[-8,2],[-9,4],[-5,8],[6,13],[20,19],[14,1],[4,-14],[-15,-21],[-7,-12]],[[53944,90927],[11,-1],[8,-18],[-7,-16],[-12,-4],[-10,8],[-6,6],[-1,7],[2,6],[-11,0],[-13,1],[-5,9],[10,2],[-3,10],[14,3],[8,-2],[6,-7],[9,-4]],[[53896,90896],[17,12],[10,-5],[9,-12],[-13,-28],[-13,-4],[-3,-6],[-3,-4],[-2,-2],[-24,-2],[-3,-1],[-4,-3],[-4,-1],[-2,2],[-3,4],[-4,1],[-2,-2],[-1,-4],[-3,-4],[-4,-2],[-18,0],[3,-8],[11,-2],[5,-6],[1,-7],[-2,-5],[-4,-4],[-14,-2],[-4,1],[-2,3],[-1,8],[-2,2],[-6,-2],[-2,-4],[-2,-6],[-2,-5],[2,-7],[1,-3],[2,-2],[-5,-4],[-5,0],[-5,1],[-6,-1],[2,4],[-2,1],[-3,3],[-2,1],[0,13],[-8,8],[-10,-1],[-5,-11],[0,-3],[2,-3],[1,-2],[2,-1],[1,-2],[-1,-4],[-3,-3],[-3,-9],[-3,-7],[-4,-2],[-16,18],[8,22],[29,31],[-7,3],[-15,-17],[-8,-2],[0,4],[3,1],[3,2],[2,3],[1,6],[-3,0],[-2,0],[-4,4],[13,4],[-3,3],[-10,5],[10,13],[15,5],[13,5],[-6,3],[-4,3],[-4,1],[-19,3],[38,31],[8,-3],[4,0],[2,-1],[4,-6],[4,-2],[6,2],[4,3],[6,-2],[5,-7],[3,1],[2,3],[3,8],[3,1],[5,7],[7,14],[13,9],[18,-2],[7,-25],[-12,-15],[8,-7],[9,3]],[[54100,91033],[-12,-2],[-4,13],[-13,10],[-9,8],[-6,9],[5,7],[13,10],[13,-6],[20,-2],[22,-3],[18,-4],[19,-4],[0,-12],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-11,-7],[-36,0]],[[51465,85588],[1,-4],[4,-6],[6,-6],[1,-10],[0,-16],[-5,-14],[-1,-22],[-10,-10],[-7,-6],[-8,1],[-5,8],[-3,8],[-3,15],[-1,13],[2,14],[0,10],[0,6],[-2,3],[4,11],[14,-4],[-13,21],[-2,8],[0,9],[3,4],[4,4],[2,7],[-5,6],[-3,10],[2,8],[6,1],[10,-28],[3,-13],[2,-4],[3,-3],[2,-3],[2,-6],[-1,-3],[-1,-3],[-1,-6]],[[51474,85860],[3,-4],[4,-18],[3,-7],[-10,-12],[-5,-4],[-6,0],[0,4],[3,1],[9,7],[-3,9],[-1,10],[-2,8],[-6,2],[1,-10],[-3,-1],[-6,5],[-4,8],[-1,0],[-3,-2],[-3,-2],[-2,-3],[-1,-5],[0,-3],[1,-4],[0,-6],[-1,-7],[-8,-12],[-2,-7],[2,-9],[4,4],[5,9],[4,4],[-4,-12],[-1,-4],[0,-5],[2,-4],[1,-5],[-2,-7],[2,-4],[-2,-4],[-2,-3],[-2,-3],[-7,-3],[0,1],[-2,4],[-3,5],[-3,7],[-3,9],[-1,10],[2,19],[4,16],[7,14],[9,14],[-12,-1],[-6,3],[-2,10],[-3,-7],[-5,-3],[-3,2],[-2,10],[2,7],[3,4],[2,5],[1,10],[1,-1],[3,-2],[1,-1],[1,5],[2,2],[2,-1],[3,-2],[-2,8],[-10,17],[4,2],[3,2],[7,-1],[2,-8],[2,-6],[7,-10],[3,-2],[3,0],[2,-2],[0,-6],[1,-6],[3,-1],[4,0],[3,-1],[5,-15],[4,-8],[4,-3]],[[51524,85920],[1,-5],[0,-17],[2,-12],[-5,-9],[-16,-17],[-9,0],[-8,3],[-1,5],[3,1],[5,-1],[3,-1],[2,5],[-1,5],[-3,2],[-4,1],[-1,-2],[-2,-5],[-4,-2],[-4,1],[-3,2],[-3,4],[-1,3],[-2,11],[-6,21],[-3,8],[-4,7],[1,7],[0,5],[-1,5],[-2,4],[10,17],[3,8],[-5,3],[-1,2],[2,4],[3,4],[3,2],[3,1],[3,-1],[3,-3],[2,-5],[12,-3],[9,-12],[7,-16],[6,-17],[6,-13]],[[51560,86046],[8,4],[3,-1],[1,-7],[0,-29],[-2,-10],[-14,-23],[1,-7],[4,-7],[5,-13],[-5,-3],[-8,7],[-6,0],[-12,-13],[-5,-1],[-6,10],[-2,22],[-1,6],[-3,-2],[-3,-3],[0,-2],[-6,0],[-7,3],[-6,6],[-4,6],[-3,11],[4,4],[20,2],[1,2],[-2,8],[-1,6],[1,5],[2,4],[3,3],[1,0],[3,-3],[2,-1],[2,2],[1,2],[4,3],[1,1],[18,4],[1,-1],[2,-2],[2,-1],[2,2],[1,3],[0,2],[1,1],[2,0]],[[51419,86121],[-2,-5],[-5,-2],[-5,2],[-3,1],[-1,9],[-2,10],[-3,7],[-3,5],[-2,-15],[-7,3],[-7,11],[-5,9],[-3,9],[0,7],[1,3],[14,3],[4,0],[5,-6],[4,16],[-5,-3],[-4,3],[-3,5],[-5,3],[-2,4],[-1,15],[-2,6],[4,9],[-1,5],[-3,3],[-1,5],[-3,14],[1,6],[6,2],[2,-1],[1,-3],[6,-22],[19,-31],[6,-16],[2,-13],[-5,-7],[-9,0],[3,-6],[7,-9],[4,-6],[1,-5],[1,-8],[1,-8],[0,-9]],[[51382,86313],[-5,21],[3,-3],[2,0],[1,-1],[13,-18],[34,-13],[12,-17],[3,-13],[0,-11],[-3,-7],[-15,-10],[-4,0],[-2,6],[0,9],[1,4],[3,5],[-15,7],[-4,6],[2,2],[1,1],[1,1],[0,4],[-4,-1],[-1,3],[0,6],[-2,6],[-2,2],[-4,-1],[-4,-2],[-3,-1],[-4,4],[-4,11]],[[51579,86403],[0,-38],[0,-10],[-3,-29],[0,-10],[2,-28],[-2,-5],[-3,-2],[-8,1],[-3,-3],[-2,-6],[-2,-5],[0,-3],[-23,-5],[-7,1],[-5,5],[-7,13],[-4,3],[-3,3],[-12,21],[-19,20],[4,3],[14,1],[6,3],[2,2],[2,6],[3,4],[11,9],[13,8],[6,6],[8,5],[3,4],[2,6],[0,14],[1,6],[4,7],[8,3],[8,-3],[6,-7]],[[51377,86700],[8,-34],[-1,-9],[-5,-8],[-11,-9],[-5,-7],[-4,-5],[-3,8],[-2,12],[-5,7],[-1,-3],[-8,-10],[-1,-1],[-2,-5],[0,-5],[-1,-4],[-2,-5],[-2,10],[0,12],[0,21],[0,4],[-2,7],[0,5],[1,5],[7,1],[3,4],[6,-20],[3,-4],[3,9],[-1,8],[-7,28],[5,3],[3,-5],[4,-19],[1,-10],[1,-5],[2,1],[1,4],[0,6],[0,5],[-1,3],[2,0],[3,1],[2,1],[2,3],[-1,2],[-2,3],[-1,3],[4,1],[3,-2],[2,-3],[2,-4]],[[51351,87121],[12,6],[12,-1],[75,-29],[-5,-8],[-8,-5],[-16,-3],[4,4],[2,6],[0,6],[-4,5],[-9,-17],[-11,-11],[-11,-8],[-27,-9],[-7,3],[-5,9],[-1,7],[3,1],[6,-4],[2,2],[2,3],[3,7],[-8,0],[-19,4],[-7,4],[5,7],[7,6],[5,6],[0,9]],[[51593,87353],[12,0],[6,-2],[1,-6],[-3,-2],[-1,-3],[-1,-4],[-1,-5],[1,-3],[1,-3],[1,-1],[1,0],[-2,-7],[0,-3],[-3,-4],[-22,-10],[-43,1],[-2,1],[-2,2],[-2,4],[-2,5],[-1,4],[-3,4],[22,-5],[7,5],[-5,3],[-6,3],[-10,2],[-4,2],[2,5],[4,4],[5,1],[-1,2],[0,2],[-1,2],[-2,2],[6,11],[10,3],[20,-2],[2,1],[2,3],[3,1],[2,-3],[2,-4],[2,-3],[2,-2],[3,-1]],[[51663,87422],[1,-6],[1,-7],[1,-5],[4,-2],[4,-2],[11,-7],[3,-4],[-3,1],[-3,-1],[-6,-4],[-45,-47],[-17,-6],[2,7],[6,8],[3,6],[-2,1],[-2,2],[-2,1],[3,15],[-3,10],[-5,8],[-2,12],[3,13],[6,11],[7,7],[7,5],[8,4],[8,-2],[6,-6],[6,-12]],[[51739,87438],[11,1],[5,-2],[4,-7],[-2,0],[-1,-1],[0,-1],[-1,-2],[-43,-4],[-21,3],[-18,21],[49,4],[4,-2],[13,-10]],[[51903,87629],[7,-2],[7,-6],[5,-9],[-2,-12],[-46,-12],[-18,-12],[-3,-1],[-1,3],[-1,6],[-1,3],[-2,1],[-2,1],[0,3],[2,1],[3,2],[2,2],[2,3],[-1,12],[2,7],[5,4],[6,-2],[-2,-4],[8,-2],[30,14]],[[51897,87685],[8,2],[9,6],[9,1],[5,-9],[0,-9],[-13,-4],[-4,-7],[2,-1],[3,-4],[1,-5],[-1,-6],[-4,-3],[-5,3],[-8,8],[-15,8],[-4,6],[1,3],[3,1],[6,-1],[-6,6],[-2,4],[0,6],[4,5],[4,-2],[7,-8]],[[52160,87828],[20,9],[10,1],[8,-10],[-4,-12],[-7,-10],[-9,-8],[-10,-4],[-5,-3],[-3,0],[-2,2],[-4,5],[-1,1],[-5,2],[-15,11],[0,3],[5,1],[2,6],[1,6],[1,4],[2,1],[2,2],[2,1],[12,-8]],[[52122,87812],[3,-2],[3,-6],[5,-13],[5,-6],[2,-2],[-7,-6],[-5,-2],[-11,-2],[-4,-4],[-3,-5],[-20,-17],[-5,-2],[-5,2],[0,1],[-5,9],[-2,2],[-20,8],[-5,5],[-2,5],[2,6],[6,4],[11,4],[-4,5],[-1,5],[1,4],[4,2],[-5,4],[-2,1],[-3,0],[0,3],[7,0],[18,4],[-4,-7],[8,-1],[6,-4],[11,-16],[2,4],[1,6],[0,4],[-4,4],[3,4],[5,3],[1,1],[3,9],[0,6],[-6,16],[10,1],[5,-1],[3,-4],[0,-10],[1,-7],[-1,-7],[-2,-8]],[[52253,87921],[6,-6],[6,-11],[4,-11],[-1,-8],[4,-7],[2,-1],[0,-5],[-47,-11],[-12,3],[-13,21],[2,4],[15,8],[16,19],[8,6],[10,-1]],[[52356,87925],[18,-16],[7,-12],[-2,-12],[-40,-10],[-13,2],[-8,7],[-15,23],[-8,10],[2,6],[1,15],[1,4],[3,1],[3,-1],[2,-3],[2,-4],[3,-2],[3,2],[3,2],[2,0],[4,-7],[4,-11],[4,-5],[3,7],[-2,10],[0,9],[3,7],[5,3],[5,-3],[3,-6],[7,-16]],[[52198,87982],[5,2],[18,-2],[-9,6],[-44,11],[-6,7],[2,12],[-1,1],[-3,4],[9,7],[8,3],[16,2],[8,3],[14,17],[8,4],[18,0],[9,-5],[6,-23],[13,-11],[3,-10],[-8,-18],[-4,-5],[-3,-2],[-8,-3],[-1,-2],[-1,-5],[-1,-1],[-14,0],[-4,-2],[-8,-6],[-5,0],[-1,6],[-11,5],[-5,5]],[[52538,88115],[10,0],[0,-3],[-9,-4],[-10,-13],[-69,-27],[-39,-2],[-15,-9],[-25,-6],[-19,-15],[-8,-1],[-19,0],[-5,1],[-12,11],[-1,1],[0,1],[-1,2],[-2,0],[-2,-1],[-1,-3],[-1,-3],[-1,-1],[-4,0],[-3,2],[-2,4],[1,6],[-2,0],[3,12],[3,9],[5,7],[27,27],[6,2],[50,5],[21,-4],[5,0],[4,2],[-12,7],[-27,5],[-11,9],[6,6],[5,1],[10,-3],[47,18],[11,0],[1,-14],[4,0],[2,2],[1,5],[1,7],[2,4],[5,2],[9,1],[9,4],[4,-1],[3,-7],[-1,0],[-2,-3],[-2,-3],[-1,-2],[2,-4],[3,-2],[4,-17],[8,3],[9,6],[9,-1],[11,-14],[1,-3],[0,-3],[1,-2],[3,-1]],[[52322,88177],[-7,-2],[-6,0],[-6,3],[-6,7],[17,10],[52,10],[62,33],[-4,3],[-5,0],[-6,-3],[-4,-4],[2,7],[15,17],[5,-4],[4,2],[5,4],[5,2],[0,-2],[-1,-2],[-1,-2],[-1,-2],[0,-4],[3,-2],[2,-6],[0,-12],[2,-7],[1,-4],[1,-5],[0,-9],[-9,-12],[-14,-6],[-55,-7],[-19,-7],[-6,4],[20,12],[-16,-4],[-4,-5],[-4,5],[-7,-1],[-15,-7]],[[53135,88702],[7,-11],[31,0],[7,-15],[-3,-4],[-2,-6],[-4,-15],[-7,6],[-21,3],[-5,6],[-4,9],[-10,2],[-19,-5],[-14,29],[3,9],[8,1],[15,-2],[-9,15],[-30,-4],[-11,7],[-2,8],[2,10],[3,8],[4,4],[5,1],[5,-4],[11,-9],[24,-12],[11,-11],[5,-20]],[[53080,88905],[-2,-2],[-21,1],[-19,-15],[-9,-10],[-8,-3],[-8,-2],[-6,1],[0,4],[73,55],[3,2],[4,-1],[7,-6],[7,-3],[4,-3],[4,-4],[1,-6],[2,-3],[17,-6],[0,-3],[0,-1],[-1,0],[-1,-1],[-12,-15],[-11,-10],[-12,-6],[-15,-2],[2,6],[0,3],[-2,2],[-3,1],[-3,-1],[-3,-2],[0,4],[4,3],[5,8],[4,8],[-1,7]],[[53011,88891],[-7,-5],[-22,-11],[1,6],[1,2],[-9,0],[5,5],[3,9],[3,10],[4,8],[5,4],[19,0],[5,2],[15,8],[11,9],[19,10],[0,9],[8,1],[9,-4],[6,-6],[-1,-2],[-1,-1],[-1,-1],[-39,-29],[-18,-6],[-16,-18]],[[53395,89037],[7,-3],[10,-1],[7,-4],[-3,-8],[-8,-10],[-11,-7],[-21,-8],[-6,1],[-12,6],[-6,2],[-6,0],[-13,3],[-6,5],[4,2],[11,-2],[4,1],[0,4],[-1,5],[0,4],[5,6],[11,4],[6,4],[-4,-1],[-3,1],[-1,3],[-2,5],[1,3],[1,7],[1,8],[-1,2],[5,9],[8,6],[7,5],[7,1],[5,-4],[9,-17],[8,-8],[-3,-10],[-10,-14]],[[53458,89216],[3,-8],[4,-6],[4,-3],[5,0],[-5,-6],[-9,-3],[-4,-7],[-14,-6],[-4,-4],[-3,-6],[-4,-4],[-5,-3],[-27,-5],[-8,1],[-1,-3],[1,-10],[3,-1],[4,-6],[4,-6],[-4,-3],[-4,-3],[-7,-11],[-3,-3],[-29,-19],[-7,3],[6,8],[5,13],[8,28],[-3,-1],[-3,1],[-3,1],[-3,2],[5,10],[3,11],[4,8],[5,4],[4,-1],[4,-5],[3,-2],[2,3],[4,10],[2,3],[0,5],[-7,-1],[-2,1],[-1,0],[-2,3],[-2,3],[4,4],[10,14],[16,14],[17,10],[-2,5],[-1,3],[-1,4],[0,5],[-15,-13],[-9,-3],[-8,3],[9,8],[-7,0],[7,15],[3,8],[1,9],[-2,1],[-2,3],[-2,1],[6,6],[4,9],[4,4],[6,-9],[6,-15],[2,-5],[3,-3],[14,-8],[3,-4],[13,-24],[1,-5],[0,-12],[1,-7]],[[53334,89372],[-1,-7],[-4,-3],[-8,-5],[4,-9],[1,-4],[-1,-6],[-4,-6],[-9,-15],[-2,-4],[-3,0],[-1,3],[-1,4],[-3,1],[-3,-1],[-3,-2],[-2,0],[-3,3],[5,4],[-6,2],[-18,-4],[-6,7],[2,10],[5,15],[7,13],[4,6],[19,8],[9,1],[8,-7],[3,0],[5,2],[4,0],[2,-6]],[[53527,89554],[12,10],[16,7],[17,1],[12,-7],[-4,-8],[-9,-1],[-34,-15],[-17,-13],[-14,-6],[-36,-37],[-8,-4],[-10,-2],[4,5],[4,2],[4,3],[2,7],[-31,-4],[4,8],[13,16],[4,7],[5,15],[3,7],[5,5],[31,19],[7,0],[6,-4],[-8,-13],[-3,-8],[2,-3],[5,1],[7,3],[6,4],[5,5]],[[53492,89601],[-11,-9],[-66,-27],[11,16],[4,3],[4,2],[4,3],[4,6],[8,8],[2,4],[-3,2],[-6,-1],[-10,-7],[-5,0],[0,4],[4,3],[8,8],[4,1],[16,2],[4,3],[1,4],[1,5],[2,5],[10,3],[14,11],[-9,7],[-10,3],[-11,-1],[-10,-5],[0,4],[26,15],[3,1],[3,1],[2,11],[3,1],[5,-5],[4,-5],[2,-6],[1,-8],[2,-7],[0,-7],[-6,-6],[-12,-5],[0,-4],[21,0],[-5,-5],[-5,-4],[0,-3],[11,2],[5,-1],[3,-6],[-2,-5],[-2,-3],[-11,-1],[-3,-2],[-5,-5]],[[53964,90246],[-4,-16],[-5,-14],[-6,-10],[-7,-8],[5,-21],[1,-10],[-5,-6],[1,-2],[1,-4],[1,-2],[-4,-3],[-5,-2],[-5,1],[-2,6],[0,9],[-1,3],[-2,2],[-11,16],[-9,4],[-21,5],[0,4],[6,3],[5,5],[9,12],[-2,9],[3,1],[19,-15],[5,-2],[5,3],[6,11],[7,15],[8,11],[7,-5]],[[53626,90798],[0,4],[7,0],[21,-11],[0,-5],[-4,0],[-2,-5],[-4,-4],[-3,-2],[-4,-1],[0,-4],[12,0],[-5,-7],[-5,-1],[-6,0],[-5,-2],[-3,-5],[0,-5],[2,-3],[4,-1],[4,3],[3,6],[3,2],[2,-14],[3,-10],[1,-14],[0,-7],[-2,-5],[-5,-2],[-14,-1],[-4,1],[-13,14],[-5,3],[3,-13],[-5,1],[-2,-1],[0,-4],[3,-4],[5,-2],[9,-1],[5,-3],[2,-5],[-2,-6],[-2,-5],[-4,-3],[-1,-3],[0,-3],[-1,-1],[-5,-4],[-27,-10],[-4,-9],[-3,-9],[-8,-6],[-16,-3],[2,6],[11,15],[4,4],[0,1],[0,4],[-1,8],[0,3],[2,6],[2,5],[6,11],[3,7],[1,12],[2,5],[2,2],[4,0],[2,2],[0,4],[0,8],[0,3],[14,28],[3,5],[6,7],[10,5],[4,3],[3,9],[-1,2],[-3,4],[-1,1]],[[53688,90817],[5,13],[9,2],[20,-5],[2,-2],[5,-8],[3,-2],[-6,-26],[-5,-13],[-5,-6],[0,-3],[-2,-14],[-2,-5],[-2,-1],[-7,9],[-3,2],[-15,-19],[-8,-7],[-4,8],[0,13],[-1,6],[-2,3],[-5,-2],[-1,-4],[0,-6],[-2,-4],[-3,0],[-2,3],[-1,6],[0,7],[1,8],[3,5],[17,20],[5,2],[5,-5],[6,-13],[4,-4],[5,3],[3,13],[-5,11],[-8,8],[-4,7]],[[54166,90956],[-15,-8],[5,-3],[4,-5],[-12,-6],[-48,-40],[-7,-3],[-5,5],[1,10],[5,9],[10,13],[-5,0],[-3,4],[-2,5],[-2,3],[-4,0],[-3,-3],[-4,-13],[3,-8],[-3,-6],[-5,-4],[-7,-2],[-3,-2],[-3,-3],[-1,-3],[1,-3],[12,-5],[-4,-5],[-12,-10],[-12,-3],[-4,-2],[-10,-9],[-6,-2],[-22,-2],[-4,-1],[-4,-5],[-2,-2],[-4,0],[-9,4],[-4,0],[1,-6],[1,-2],[-5,-3],[-10,0],[-8,-6],[-10,-3],[-4,0],[3,9],[1,3],[1,0],[1,1],[0,3],[-2,3],[-1,2],[-2,4],[-1,3],[11,12],[23,7],[10,6],[-15,-4],[-7,1],[-6,7],[4,5],[6,2],[11,1],[-7,7],[-2,11],[2,11],[7,7],[8,-2],[10,-20],[8,-2],[0,4],[-3,4],[2,3],[3,2],[2,5],[1,3],[3,-2],[6,-7],[6,2],[0,6],[-3,8],[-5,8],[-3,-4],[-3,0],[-3,4],[1,9],[-12,5],[-3,3],[30,8],[8,-2],[12,-9],[7,-2],[-2,10],[-8,8],[-3,7],[31,13],[5,-7],[0,-8],[2,-4],[5,-8],[3,-3],[0,7],[-1,14],[3,6],[3,4],[5,2],[5,0],[10,-4],[5,-4],[2,-6],[1,-9],[-1,-3],[-19,-18],[0,-5],[8,2],[16,12],[8,3],[3,4],[1,20],[4,8],[9,2],[22,-5],[15,12],[10,3],[20,0],[-5,-9],[-33,-44],[-6,-3],[1,3],[0,4],[0,3],[-1,2],[-3,-1],[0,-3],[0,-3],[-1,-2]],[[54561,91032],[3,-4],[6,-6],[3,-4],[-6,-4],[-14,-4],[-6,-5],[4,-4],[5,-6],[3,-7],[-4,-3],[-47,-2],[-14,-6],[-11,-9],[-5,-3],[-1,4],[-7,7],[6,7],[16,11],[-4,-1],[-4,1],[-7,3],[5,21],[9,18],[6,9],[8,5],[34,8],[5,-1],[8,-6],[4,-1],[2,-2],[2,-5],[0,-7],[1,-4]],[[54736,91224],[6,-3],[16,-17],[4,-8],[-11,-7],[-73,-19],[-7,6],[2,2],[2,5],[1,5],[0,6],[2,4],[10,9],[9,5],[18,29],[7,8],[4,1],[2,-7],[1,-1],[7,-18]],[[54779,91269],[0,12],[5,5],[26,-2],[13,-5],[11,-10],[10,-16],[-25,-18],[-14,-19],[-10,-6],[-11,0],[-9,6],[-4,7],[-1,19],[-4,11],[-14,12],[-6,7],[-1,9],[6,7],[7,-6],[12,-17],[6,-8],[8,-7],[9,-3],[7,2],[-5,6],[-12,8],[-4,6]],[[54591,91168],[13,-9],[-3,-5],[-9,-10],[8,-6],[-1,-10],[-4,-10],[-5,-9],[-4,-3],[-3,-3],[-3,-4],[-1,-7],[2,-7],[1,-2],[1,-2],[1,-4],[-2,-9],[-4,-3],[-7,0],[-11,5],[-20,2],[-34,-8],[-19,-13],[-4,-1],[-3,2],[-3,5],[-4,2],[-3,-3],[-3,-10],[-4,-16],[-4,-14],[-12,-11],[-4,-10],[-8,-22],[-8,-8],[-10,-6],[-7,0],[0,10],[-2,8],[1,9],[2,8],[1,9],[-1,8],[-2,6],[-1,7],[0,10],[-3,-6],[0,-5],[1,-6],[0,-8],[-2,-8],[-2,-3],[-7,-7],[-3,2],[-5,4],[-4,3],[-2,-5],[2,-7],[7,-9],[3,-6],[-7,0],[-3,5],[-2,7],[-3,6],[-4,1],[-2,-6],[-2,-8],[-4,-5],[1,-3],[0,-7],[1,-2],[-10,0],[-5,-1],[-4,-4],[3,-2],[3,-1],[4,-1],[3,1],[-4,-10],[-14,-15],[-1,-8],[-3,-2],[-8,3],[-4,-1],[2,3],[2,1],[0,4],[-6,1],[-9,9],[-4,2],[-42,-6],[-11,3],[-4,11],[5,-2],[5,4],[8,17],[5,5],[18,9],[10,10],[17,23],[12,8],[-9,7],[-1,3],[-1,6],[-2,4],[-3,1],[-3,-1],[3,-13],[0,-7],[-3,-6],[-29,-28],[-7,-3],[-2,1],[-6,3],[-2,-2],[-2,-2],[-2,-4],[-13,-7],[-10,-13],[-19,-4],[-7,-9],[8,1],[3,-2],[2,-7],[-5,-1],[-20,-13],[-3,-3],[-5,-13],[-8,-9],[-13,-9],[-11,-2],[-4,10],[2,1],[2,2],[1,2],[1,3],[-3,9],[4,9],[7,8],[6,3],[3,4],[10,23],[5,9],[20,25],[8,5],[8,8],[5,2],[24,0],[-7,2],[-20,2],[-5,5],[2,6],[9,2],[16,0],[-16,4],[-2,1],[0,5],[1,4],[-1,2],[-26,4],[5,12],[5,8],[6,4],[9,0],[12,-3],[3,3],[-4,9],[24,4],[3,-3],[8,-11],[5,-3],[-4,10],[-13,19],[4,-1],[8,-3],[5,-1],[-3,7],[-1,2],[0,4],[31,4],[2,-1],[3,-6],[2,-2],[4,-3],[4,0],[3,1],[4,3],[-4,0],[-3,4],[-3,4],[-3,4],[-6,1],[-13,1],[-5,4],[-5,8],[-6,6],[-4,9],[-1,15],[1,10],[2,3],[33,0],[4,1],[3,2],[3,1],[4,-2],[7,-5],[5,-3],[14,-10],[-7,5],[-2,3],[-1,2],[-2,8],[-1,2],[-7,4],[-39,0],[-7,3],[-4,5],[-1,8],[1,16],[-2,9],[3,-1],[6,-3],[3,-1],[3,2],[2,4],[2,4],[2,3],[8,1],[16,-5],[6,4],[-5,3],[-8,2],[-7,3],[-4,8],[1,12],[6,6],[14,2],[-2,5],[-1,4],[-3,2],[-2,1],[3,8],[6,15],[4,6],[9,4],[28,-4],[22,9],[8,-1],[6,-6],[0,-1],[1,-4],[-2,-8],[-1,-11],[1,-8],[4,-5],[2,-6],[-3,-10],[-10,-31],[-1,-4],[0,-7],[-1,-5],[-2,-4],[-4,-6],[-2,-4],[-5,-6],[-17,-12],[12,2],[13,5],[13,9],[10,14],[6,3],[5,-6],[4,-11],[-2,-10],[-3,-8],[-5,-16],[-3,-9],[-3,-4],[-2,-1],[-3,0],[-3,-2],[-2,-4],[-5,-8],[-2,-3],[-6,-3],[-16,-3],[-5,-6],[-2,-10],[1,-8],[2,-6],[1,-8],[-1,-10],[-3,-5],[-4,-5],[-3,-9],[11,7],[6,6],[4,7],[1,12],[-1,8],[0,8],[6,9],[6,5],[20,11],[13,11],[7,4],[7,-3],[5,-18],[4,-7],[6,5],[2,10],[-3,10],[-7,12],[-1,1],[-3,5],[-2,5],[4,2],[6,9],[2,3],[9,3],[29,-3],[-3,15],[-6,6],[-16,8],[-4,4],[-4,6],[-1,8],[2,10],[3,2],[23,13],[4,1],[5,-2],[8,-8],[4,-2],[5,1],[3,4],[0,5],[-9,7],[-4,10],[-1,9],[3,2],[16,-19],[21,-10],[11,-1],[3,-2],[0,-4],[0,-8],[4,-8],[21,6],[7,0],[-4,-6],[-10,-7],[-3,-8],[5,1],[5,-1],[5,-4],[2,-8],[-8,-5],[0,-5],[2,-7],[-1,-11]],[[54601,91314],[5,-4],[4,-9],[1,-9],[-5,-6],[1,-14],[-6,-6],[-25,-1],[-11,3],[-11,6],[-15,19],[-16,11],[-6,10],[12,16],[15,-3],[15,-11],[15,-6],[14,0],[13,4]],[[53999,91131],[-3,2],[-2,4],[-3,10],[3,6],[4,3],[8,0],[1,7],[10,6],[22,7],[0,4],[-7,0],[-22,8],[5,12],[9,11],[10,7],[7,-2],[1,-5],[1,-14],[1,-9],[3,-6],[4,-4],[5,-2],[6,0],[-2,3],[-3,2],[-2,2],[-3,1],[2,11],[3,6],[5,4],[5,3],[-7,5],[-3,5],[2,9],[4,5],[6,2],[5,-2],[5,-3],[-2,-5],[4,-3],[-4,-26],[2,-6],[9,3],[23,16],[12,4],[11,-4],[-3,-6],[0,-6],[2,-6],[4,-2],[3,2],[6,12],[5,3],[-1,5],[0,5],[1,5],[2,4],[-13,17],[10,8],[3,4],[6,-11],[5,-3],[0,-5],[0,-5],[0,-5],[2,-10],[2,-4],[3,4],[2,5],[1,4],[0,3],[-2,3],[8,16],[10,-4],[10,-12],[10,-5],[-3,15],[-7,8],[-8,6],[-7,8],[2,12],[-3,8],[-10,13],[-2,6],[-3,11],[-1,10],[22,18],[5,2],[6,1],[3,-2],[5,-6],[4,-8],[1,-9],[-6,-7],[12,-11],[4,-2],[-3,-3],[-1,0],[0,-5],[3,1],[4,-2],[6,-7],[-9,-6],[-4,-4],[-2,-6],[8,-3],[16,23],[6,-8],[-4,-24],[-2,-7],[-9,-17],[17,10],[5,8],[2,2],[2,0],[1,-2],[1,-4],[2,-1],[10,3],[-4,-10],[-2,-11],[-3,-8],[-6,-4],[-9,4],[-4,0],[-3,-4],[1,-3],[7,-9],[-5,-6],[-3,-2],[11,-6],[13,-4],[10,-9],[1,-22],[-7,-14],[-10,-10],[-76,-44],[-53,3],[-9,5],[2,1],[3,5],[1,2],[-15,5],[-1,1],[1,2],[2,11],[5,4],[12,1],[20,11],[7,1],[17,0],[2,2],[2,3],[2,4],[1,3],[8,5],[14,0],[7,4],[-3,7],[-2,7],[-1,8],[2,10],[-35,9],[-9,-5],[6,0],[15,-8],[-5,-12],[-8,-10],[-10,-6],[-7,3],[1,5],[0,2],[-1,2],[0,4],[-4,-9],[-6,-11],[-6,-8],[-6,1],[-5,4],[-10,-10],[-5,5],[3,7],[1,8],[-2,5],[-3,-2],[-2,-7],[-4,-10],[-2,-6],[-7,-3],[-8,3],[-7,8],[-5,12],[-1,-12],[-4,-8],[-8,-12],[-2,-5],[-1,-9],[-1,-2],[-17,1],[-3,-3],[-7,-8],[-8,-1],[-16,3],[-5,4],[-1,10],[2,11],[3,7],[-3,4],[-2,-3],[-1,-4],[-3,-1]],[[54313,91281],[-8,-10],[-10,-8],[-9,1],[-4,17],[3,7],[0,6],[0,7],[-1,9],[2,9],[6,14],[2,7],[16,24],[7,16],[7,15],[12,12],[13,7],[28,6],[9,8],[14,35],[8,5],[-1,3],[0,7],[-1,2],[5,3],[10,3],[4,2],[12,15],[35,16],[8,-2],[6,-12],[-1,-13],[-5,-12],[-4,-10],[-5,-13],[-2,-23],[-4,-10],[-4,-6],[-13,-7],[-12,-14],[-4,-2],[-3,-2],[-3,-5],[-6,-11],[-1,-1],[-5,-4],[-4,-3],[-1,-3],[0,-4],[-1,-3],[-4,-6],[-2,-3],[-9,-4],[-16,-10],[-35,-11],[-10,5],[-8,10],[-5,2],[-6,-4],[5,-5],[4,-6],[2,-8],[0,-9],[-1,-6],[-10,-23]],[[55019,91592],[2,-8],[1,-22],[2,-5],[3,-2],[0,-5],[-2,-5],[-2,-4],[-4,-2],[-15,2],[-17,-6],[-9,-6],[-5,-8],[4,-4],[1,-4],[0,-6],[1,-7],[3,-3],[6,-6],[2,-3],[-4,-7],[-7,-2],[-13,1],[0,-4],[9,-5],[6,-4],[2,-5],[2,-8],[6,-2],[6,1],[5,-1],[-6,-9],[-8,-4],[-38,-6],[-32,2],[-27,-11],[-25,2],[-9,-2],[2,8],[3,7],[7,13],[-9,1],[-7,-2],[-7,-4],[-8,-8],[-11,-15],[-40,-29],[-13,-13],[-8,-20],[4,-3],[7,2],[4,-2],[-8,-12],[-15,-8],[-16,-2],[-9,5],[1,9],[4,5],[6,2],[5,1],[-3,2],[-1,1],[2,7],[4,3],[5,1],[4,2],[-8,8],[-79,-18],[-4,6],[-9,3],[-1,11],[3,12],[9,6],[15,-9],[7,0],[-1,13],[26,8],[13,-4],[6,0],[4,9],[-1,1],[-1,2],[-1,2],[-1,2],[25,14],[8,11],[-25,-12],[-10,-1],[-20,9],[-21,0],[0,4],[2,1],[1,1],[1,3],[1,3],[-5,3],[-3,1],[-3,0],[18,9],[40,-5],[16,16],[-6,-3],[-2,-1],[-2,2],[-1,2],[1,3],[0,1],[0,3],[-3,8],[-3,5],[-1,-6],[-4,-7],[-8,0],[-17,5],[0,4],[3,1],[2,2],[3,6],[-23,-3],[-5,3],[-3,8],[5,4],[60,-4],[-2,1],[-5,7],[3,4],[-11,-1],[-5,2],[-5,7],[5,3],[5,1],[9,0],[-7,6],[-8,1],[-23,-4],[-26,1],[0,4],[4,0],[4,2],[7,6],[-1,3],[-1,6],[4,2],[3,0],[8,-3],[3,-3],[2,-1],[2,1],[3,6],[2,2],[5,-2],[6,-5],[4,-2],[5,1],[8,6],[5,2],[37,-4],[26,-16],[9,-1],[-3,9],[-5,4],[-11,4],[-10,10],[-4,2],[46,0],[13,8],[-47,7],[-23,9],[-16,28],[11,-1],[6,-3],[5,-10],[5,-5],[6,-4],[4,-1],[-3,9],[-1,3],[19,-3],[6,3],[-7,5],[-12,16],[-6,3],[4,7],[7,2],[8,-2],[9,-7],[5,-2],[8,-1],[3,-2],[4,-9],[3,-2],[7,-1],[5,-2],[15,-13],[5,-3],[12,-1],[0,4],[-8,4],[-4,4],[-3,4],[-2,5],[-4,13],[-1,2],[-20,11],[-5,7],[-2,4],[-2,7],[2,5],[1,4],[0,4],[-1,4],[13,-2],[11,-13],[17,-34],[4,-3],[7,-2],[7,0],[3,7],[-1,5],[-5,2],[-1,5],[-1,6],[-1,11],[0,5],[-1,4],[-1,3],[0,2],[2,4],[4,2],[4,-2],[3,-5],[2,-4],[8,-20],[5,-6],[5,4],[8,16],[5,7],[5,3],[6,-3],[4,-8],[6,-22],[-3,-5],[-6,-7],[-3,-4],[-2,-4],[0,-3],[-1,-3],[-1,-6],[-3,-10],[-1,-5],[2,-5],[4,-2],[4,4],[5,12],[2,10],[2,6],[8,4],[4,8],[3,2],[8,-2],[21,-14],[-3,-6],[-5,-3],[-10,1],[3,-11],[-3,-8],[-12,-13],[12,-9],[5,-2],[4,7],[-2,7],[4,5],[7,1],[6,-3]],[[55277,91823],[6,-8],[7,-7],[4,-9],[-1,-14],[-6,-12],[-18,-6],[-16,-21],[-10,-4],[-11,-1],[-9,-5],[-3,-3],[-3,-6],[-3,-7],[-1,-5],[2,-6],[5,-2],[5,-2],[4,-4],[3,-11],[-4,-8],[-15,-11],[-10,-4],[-30,8],[-3,-2],[-10,-8],[-5,-2],[-21,0],[-62,-16],[-19,0],[-7,6],[-11,14],[-6,4],[-16,0],[-8,3],[-7,9],[3,5],[6,8],[3,3],[-1,3],[-1,5],[3,0],[2,-1],[6,-4],[3,-1],[3,2],[6,4],[6,3],[28,-5],[7,-4],[2,-3],[4,-7],[-1,0],[-1,-3],[1,-3],[3,-2],[2,2],[5,8],[3,2],[-1,4],[6,0],[3,2],[3,4],[7,3],[3,4],[-21,-5],[-6,1],[-4,3],[-29,41],[8,3],[28,-3],[-1,0],[12,-2],[34,2],[37,-9],[6,5],[-11,5],[-56,6],[-11,6],[-2,12],[-5,9],[2,9],[7,7],[7,3],[3,-1],[2,-3],[5,-6],[5,-3],[8,2],[4,-1],[1,-5],[-1,-6],[1,-5],[5,0],[3,2],[2,5],[4,11],[6,9],[8,4],[19,1],[-3,-29],[6,-25],[12,-16],[15,1],[-5,4],[-2,7],[1,8],[5,19],[9,19],[-4,7],[-24,23],[-4,7],[-2,8],[3,15],[11,-2],[13,-7],[9,2],[-4,3],[5,5],[6,-1],[5,-5],[5,-7],[-3,-2],[-1,-3],[-2,-7],[6,0],[11,2],[24,-9],[4,-3]],[[56018,91894],[5,3],[5,1],[5,-1],[4,-3],[-2,-6],[-2,-2],[-4,-2],[-3,-2],[-3,1],[-2,3],[-2,3],[-1,5]],[[55527,91935],[6,4],[8,2],[7,-2],[6,-4],[-13,-5],[-9,1],[-2,2],[-3,2]],[[55821,91927],[39,4],[-33,-17],[-1,-11],[-10,-10],[-13,-5],[-14,0],[-10,6],[-9,14],[-3,9],[-1,7],[7,15],[5,8],[6,3],[10,1],[7,-4],[14,-17],[6,-3]],[[55844,91961],[2,-13],[-8,-7],[-18,-2],[3,6],[8,10],[7,7],[6,-1]],[[55449,91935],[5,2],[5,0],[4,-2],[4,-6],[0,-13],[-10,-9],[-30,-11],[-2,-3],[-2,-7],[-1,-2],[-1,-7],[0,-3],[-2,-4],[-5,-3],[-2,-3],[-3,-6],[-11,-11],[-3,-4],[-2,-5],[-1,-5],[-2,-4],[-9,-9],[-11,-6],[-59,-15],[-9,8],[-9,18],[-4,4],[-55,38],[-22,7],[-9,10],[-1,10],[11,4],[27,-8],[5,2],[8,10],[6,5],[-16,2],[-9,5],[-4,10],[4,10],[9,5],[16,4],[14,-4],[4,1],[5,5],[4,2],[3,-2],[2,-4],[1,-4],[1,-2],[5,-1],[12,9],[-4,6],[-6,6],[-4,6],[-1,10],[6,-4],[5,-1],[4,2],[25,15],[5,-3],[0,-5],[-1,-7],[3,-5],[6,2],[6,6],[6,5],[7,-5],[-4,-7],[-4,-11],[-1,-10],[14,-8],[14,-15],[8,-2],[0,15],[5,11],[8,8],[19,7],[6,-1],[5,-5],[2,-8],[-1,-6],[-2,-6],[0,-6],[3,-6],[3,2],[4,7],[3,5]],[[55775,91979],[1,-9],[0,-5],[-2,-3],[-5,-3],[-6,-1],[-7,3],[-5,4],[-5,2],[-3,-2],[-5,-8],[-3,-2],[-3,-1],[-6,-3],[-4,0],[-4,1],[1,3],[1,4],[1,4],[1,13],[0,6],[-2,5],[-5,3],[-3,-3],[-2,-7],[2,-9],[-13,0],[1,-9],[-4,-3],[-11,4],[-5,0],[-5,2],[-5,4],[-4,6],[-2,7],[-1,4],[1,4],[0,8],[2,16],[4,12],[7,9],[6,5],[18,5],[5,3],[0,2],[1,4],[0,4],[1,3],[3,2],[7,2],[41,0],[12,-4],[9,-6],[4,-6],[0,-9],[-4,-14],[-6,-11],[-2,-6],[-2,-11],[0,-2],[-1,-3],[1,-3],[4,-10],[1,-1]],[[55550,92012],[36,-16],[12,0],[0,-4],[-28,-7],[-8,-6],[3,-5],[-1,-5],[-4,-3],[-11,-6],[-44,0],[-12,5],[-8,10],[0,5],[0,18],[0,7],[-2,3],[-2,2],[-2,4],[-7,18],[-3,4],[-5,6],[-2,4],[-9,9],[-20,7],[-7,11],[4,4],[4,-1],[8,-3],[0,4],[-1,7],[7,6],[17,7],[4,-3],[1,-7],[1,-8],[1,-6],[4,-7],[5,-5],[5,-4],[5,-1],[6,-7],[3,-13],[4,-11],[8,3],[2,6],[4,15],[2,4],[5,-2],[14,-11],[-3,-11],[2,-7],[5,-6],[7,-4]],[[56367,92105],[6,-3],[6,-1],[6,-3],[6,-7],[3,-9],[-1,-7],[-4,-3],[-75,5],[-80,20],[-18,21],[-2,3],[2,9],[5,7],[7,2],[5,-3],[3,-7],[5,-5],[10,-7],[-8,14],[-2,3],[0,9],[1,7],[3,2],[13,-12],[12,11],[7,-9],[2,8],[3,4],[4,-1],[3,-7],[2,0],[0,7],[3,6],[4,2],[4,-3],[1,-5],[0,-13],[1,-6],[5,-10],[4,5],[2,12],[-2,13],[8,5],[6,-6],[5,-11],[2,-15],[7,-5],[35,-5],[-3,-1],[-2,-3],[-2,-3],[-2,-5]],[[56571,92223],[-2,-2],[-4,-5],[-2,-1],[2,-4],[5,-6],[2,-2],[-8,-19],[-11,-13],[-51,-37],[-25,-7],[-7,-6],[5,1],[8,-1],[6,-3],[5,-5],[-46,-21],[-17,-3],[-14,3],[-6,11],[2,16],[7,18],[4,7],[2,9],[1,9],[-1,8],[-17,-32],[-10,-11],[-8,5],[-4,4],[-4,1],[-5,0],[-4,0],[-3,3],[-18,23],[-5,3],[7,4],[17,-4],[6,8],[-12,6],[-3,2],[-4,7],[1,3],[7,3],[4,3],[2,1],[2,0],[2,1],[1,3],[0,4],[3,0],[5,0],[2,0],[1,2],[3,8],[1,2],[30,14],[5,-4],[2,-9],[7,2],[7,7],[6,2],[0,4],[-6,3],[-5,6],[-2,5],[6,2],[5,0],[7,-3],[6,-6],[3,-9],[-1,-9],[-2,-8],[0,-7],[5,-2],[3,4],[6,21],[4,7],[-6,3],[-2,4],[3,5],[7,0],[5,-2],[10,-9],[6,-1],[-4,7],[-2,1],[7,10],[25,-10],[10,0],[-6,9],[-8,7],[-14,8],[1,3],[3,7],[1,3],[-16,4],[-2,3],[20,4],[6,0],[5,-5],[4,-4],[11,5],[5,-3],[-4,-4],[2,-5],[9,-11],[-2,-8],[-2,-7],[-1,-7],[0,-7],[3,-8],[5,-3],[6,-1],[7,-4]],[[56685,92316],[-1,-9],[5,-6],[13,-9],[-8,-19],[-25,-12],[-23,-26],[-17,-7],[-17,1],[-15,6],[-4,8],[-8,12],[-3,8],[-1,4],[0,6],[0,5],[-2,2],[-12,0],[6,8],[4,7],[0,7],[-6,6],[5,4],[2,3],[2,5],[-13,10],[-2,5],[1,6],[3,4],[7,8],[6,12],[3,3],[30,2],[7,-5],[-3,-4],[-1,-4],[2,-3],[4,-1],[-2,-4],[-2,-2],[-1,-1],[-3,-1],[3,-4],[4,1],[3,2],[3,1],[27,0],[4,-2],[15,-10],[3,-4],[3,-3],[2,-5],[2,-5]],[[56228,92227],[-4,2],[-3,0],[-7,-6],[-8,-3],[-10,3],[-4,6],[5,10],[-7,6],[-5,-7],[-7,-23],[-6,-6],[-10,-4],[-9,-1],[-3,7],[3,10],[2,7],[7,13],[5,6],[12,7],[5,9],[-2,1],[-6,4],[21,13],[6,7],[-65,-4],[-2,-2],[-4,-5],[-2,-1],[-8,0],[-8,4],[4,7],[8,8],[5,5],[-18,0],[-9,2],[-7,6],[10,9],[16,-2],[42,-16],[7,0],[6,5],[2,5],[0,6],[-2,6],[-4,3],[10,0],[16,-8],[26,-20],[0,4],[-4,8],[-5,15],[-3,15],[3,7],[6,0],[3,-1],[2,-3],[3,-6],[4,-6],[6,-4],[6,0],[6,3],[-4,5],[-1,6],[2,5],[4,4],[7,2],[7,-3],[24,-15],[1,-4],[-4,-6],[-10,-6],[-3,-5],[3,-7],[7,-3],[6,6],[5,7],[5,2],[4,-5],[1,-9],[0,-9],[2,-7],[3,-4],[2,5],[1,8],[0,7],[3,6],[7,2],[15,-2],[-5,9],[-6,7],[2,11],[-4,7],[-7,5],[-7,10],[-1,4],[-1,4],[0,3],[9,2],[14,7],[-2,-6],[-1,-2],[5,-4],[11,-1],[4,-7],[-3,0],[0,-4],[5,0],[9,3],[5,-2],[2,-5],[-2,-5],[-8,-8],[6,-6],[8,-8],[7,-6],[6,4],[-4,8],[6,4],[6,3],[3,5],[-2,13],[7,0],[13,-8],[7,0],[-3,3],[-3,5],[-2,5],[2,3],[18,-4],[5,4],[-3,2],[-2,2],[-5,0],[-3,1],[-1,3],[0,3],[-1,1],[-16,6],[-5,4],[-6,10],[5,4],[14,1],[-2,0],[-3,2],[-2,2],[-2,4],[7,1],[13,-11],[6,-3],[6,2],[1,5],[-2,5],[-5,4],[0,5],[8,-6],[15,-17],[8,-6],[4,-1],[12,2],[3,3],[0,9],[-6,11],[1,7],[0,5],[-2,7],[-1,7],[4,3],[4,0],[5,-2],[4,-3],[3,-5],[3,-4],[11,-8],[2,0],[1,-10],[3,-5],[3,-2],[5,-1],[-7,-5],[-13,1],[-7,-5],[4,-4],[5,-2],[10,-2],[-3,-2],[-6,0],[-2,-2],[-2,-3],[-1,-7],[-1,-2],[-5,0],[-10,6],[-4,-2],[-2,-5],[-1,-13],[-1,-6],[-1,-1],[-2,1],[-3,0],[-4,-5],[-9,-4],[4,-6],[2,-2],[-25,5],[-4,3],[-3,0],[-1,-10],[-2,-3],[-1,-2],[-2,-1],[2,-5],[3,-2],[8,-1],[-4,-3],[-4,-10],[-3,-3],[-6,-2],[-12,4],[-5,-2],[15,-8],[-7,-16],[-9,3],[-11,7],[-9,-2],[6,-2],[1,-7],[-3,-7],[-6,-4],[-7,0],[-13,7],[-7,1],[0,-5],[16,-8],[-3,-5],[-4,-3],[-3,-3],[-4,-1],[-5,1],[-7,6],[-3,1],[-3,-2],[-6,-12],[-3,-2],[-5,1],[-2,3],[1,5],[3,7],[-25,7],[-13,1],[-2,-8],[-2,-4],[2,-7],[-1,-4],[-3,-1],[-3,0],[-2,1],[-2,2],[-2,0],[-1,-8],[-2,-4],[-2,-2],[-1,-1],[-14,14],[-8,3],[-3,-15],[-2,-7],[-6,1],[-5,5],[-2,3]],[[56686,92495],[38,2],[10,-6],[-9,0],[0,-6],[-3,-3],[-5,0],[-4,1],[2,-4],[-4,-5],[-5,2],[-5,2],[-5,1],[-3,-4],[-2,-5],[-3,-4],[-10,0],[-6,2],[-4,3],[-2,5],[-4,7],[-21,8],[8,5],[19,1],[9,6],[-9,4],[-18,-3],[-9,3],[-7,8],[3,3],[15,1],[-3,5],[-2,2],[-2,1],[10,7],[35,-3],[-2,-6],[-2,-2],[10,-5],[22,2],[10,-5],[-10,-4],[-22,2],[-10,-6],[2,-2],[1,-2],[0,-2],[1,-3],[-4,-3]],[[57259,92539],[14,7],[7,0],[2,-10],[-3,-11],[-7,-7],[-19,-4],[-2,-2],[-5,-7],[-4,-3],[-29,2],[-6,-2],[-7,-5],[-6,-3],[-28,1],[-13,8],[-6,-1],[-4,-11],[8,-4],[2,0],[0,-4],[-24,2],[-18,-8],[-13,-3],[-6,3],[-4,5],[-7,11],[-10,8],[-11,6],[33,12],[7,8],[-20,3],[-5,3],[-5,2],[-36,-14],[-5,2],[-3,6],[-1,5],[1,4],[-1,6],[16,12],[-10,4],[5,4],[7,2],[12,2],[5,-2],[6,-4],[5,-2],[6,3],[-2,3],[-2,4],[-2,2],[4,6],[5,-1],[10,-5],[8,0],[2,-2],[3,-4],[5,-3],[12,2],[21,-11],[2,-6],[-1,11],[-3,8],[-5,5],[-36,28],[3,7],[12,-4],[5,3],[3,5],[4,3],[4,1],[3,-3],[2,-9],[34,5],[-1,-7],[-5,-18],[0,-5],[6,-4],[15,10],[6,0],[-1,-10],[5,1],[7,5],[4,2],[7,-1],[12,10],[7,-5],[1,-17],[-12,-12],[-16,-7],[-12,-2],[5,-5],[5,-3],[5,-1],[6,0],[0,-12],[-7,-4],[-3,0],[8,-5],[9,-2],[10,1],[8,2],[5,5],[12,13],[5,2]],[[53576,89725],[2,-5],[1,-12],[-2,-8],[-3,-2],[-3,-4],[-3,-4],[-6,-6],[-4,4],[-7,-3],[-7,2],[-3,7],[-2,5],[-6,1],[-4,-1],[-2,1],[2,4],[2,5],[7,7],[5,4],[10,11],[0,3],[1,3],[-1,3],[2,1],[2,-5],[1,-4],[4,1],[1,-2],[2,-1],[1,-1],[6,0],[2,0],[1,-2],[1,-2]],[[53594,89828],[6,0],[1,-4],[-3,-12],[-2,-14],[-3,-9],[-2,-3],[-4,4],[-2,2],[-2,4],[0,6],[-3,-4],[-1,-4],[-1,-7],[0,-8],[3,-10],[2,-3],[-7,2],[-2,3],[-2,2],[-4,3],[-2,-1],[-2,2],[-1,2],[-3,3],[-5,2],[3,2],[9,6],[2,6],[-4,9],[-3,7],[-2,1],[0,3],[3,3],[16,5],[3,0],[1,-2],[0,-4],[2,-2],[1,-3],[0,-4],[2,0],[3,7],[0,6],[0,3],[3,1]],[[54248,90708],[3,0],[0,-5],[-5,-7],[-9,-5],[-2,1],[-2,1],[-22,-6],[-4,0],[-8,3],[-27,2],[-11,-2],[-3,1],[0,5],[-3,10],[1,6],[4,4],[0,3],[-2,4],[2,1],[11,-1],[6,-2],[4,0],[2,4],[2,4],[8,8],[2,4],[2,-1],[1,-3],[-1,-4],[-1,-4],[0,-3],[9,-10],[6,-3],[14,-2],[4,-2],[1,-3],[5,0],[3,-1],[1,-5],[5,5],[0,1],[4,2]],[[54425,90745],[0,-2],[0,-5],[-2,-2],[-11,-5],[-12,0],[-16,5],[-15,11],[-7,1],[-7,-12],[-5,-2],[-3,-1],[-9,-1],[-26,2],[-4,2],[-2,1],[-2,2],[-4,3],[0,2],[4,0],[3,1],[4,5],[4,3],[11,2],[79,2],[9,-6],[7,-2],[4,-4]],[[54212,90732],[-1,4],[-1,2],[1,3],[3,2],[1,4],[4,5],[6,3],[3,4],[0,3],[2,0],[3,-5],[5,-11],[5,-8],[3,-11],[-5,-6],[-24,0],[-3,4],[-2,7]],[[54165,91274],[-2,-10],[-8,-5],[-16,-2],[-3,0],[-9,6],[-4,2],[-1,3],[4,9],[0,4],[-1,3],[1,3],[5,4],[7,1],[17,-3],[6,-5],[4,-10]],[[55750,91859],[-1,-3],[0,-4],[2,-10],[4,-14],[-4,-12],[-12,-8],[-16,-5],[-14,4],[-6,7],[-2,5],[-1,11],[2,8],[5,12],[2,5],[1,5],[1,3],[4,3],[6,2],[32,3],[3,-3],[0,-4],[-2,-2],[-1,-1],[-3,-2]],[[58339,91825],[21,2],[3,-4],[-6,-7],[-8,-4],[-23,-6],[-13,-10],[-7,-3],[-5,2],[-6,6],[-5,3],[-4,-3],[4,-7],[-4,-6],[-10,-8],[-23,5],[6,15],[19,19],[8,10],[-6,16],[2,15],[7,11],[10,3],[26,-7],[6,-5],[1,-4],[0,-8],[1,-5],[1,-2],[7,-5],[-1,-3],[-1,-7],[0,-3]],[[55503,91926],[6,-4],[6,-13],[-6,-14],[-12,-15],[-9,-19],[-11,-16],[-12,-6],[-53,-10],[-14,1],[2,11],[19,21],[6,15],[4,4],[14,5],[27,17],[9,9],[6,10],[7,6],[8,-1],[3,-1]],[[55185,91941],[-2,4],[-1,8],[5,10],[7,7],[3,4],[-1,2],[1,5],[-2,4],[0,6],[5,2],[9,-2],[7,-6],[4,-10],[1,-11],[2,-4],[4,3],[3,5],[17,20],[5,-1],[3,-5],[14,-7],[1,-7],[-4,-5],[-6,-7],[-8,-4],[-20,-5],[-20,-11],[-10,-11],[-3,-6],[-1,-1],[-2,-1],[-2,-1],[-3,2],[-5,6],[0,8],[4,6],[1,2],[-6,1]],[[55803,91972],[-9,-6],[-10,2],[-5,4],[-2,8],[-2,15],[4,13],[7,6],[7,-3],[16,-22],[0,-8],[-6,-9]],[[55427,91980],[-14,0],[-20,6],[-16,6],[-4,3],[-3,5],[2,8],[7,8],[12,5],[10,-4],[30,-21],[5,-5],[-1,-6],[-5,-4],[-3,-1]],[[55345,92044],[1,-5],[1,-4],[0,-7],[-6,-9],[-1,-3],[0,-3],[0,-3],[1,-2],[-1,-3],[-14,-12],[-10,-3],[-10,4],[-20,14],[-6,3],[-4,4],[2,3],[12,7],[5,1],[3,-3],[4,-5],[3,0],[-1,17],[5,4],[6,2],[1,3],[-6,4],[-2,5],[1,2],[-1,3],[-4,3],[-2,2],[1,3],[3,2],[9,-1],[3,-1],[1,-1],[1,1],[0,3],[2,3],[2,4],[3,0],[2,-1],[1,0],[2,2],[2,-2],[2,-2],[5,-10],[0,-8],[-1,-5],[5,-6]],[[56038,92149],[15,-12],[2,-7],[-2,-14],[-8,-21],[-4,-8],[-5,-5],[-5,-3],[-3,1],[-4,5],[-3,8],[0,14],[3,16],[0,12],[-1,5],[1,3],[1,1],[2,0],[1,4],[0,6],[3,1],[4,-4],[3,-2]],[[47788,92620],[6,-10],[0,-12],[-5,-10],[-8,-4],[-6,-5],[1,-11],[5,-14],[1,-10],[-6,-8],[-110,-41],[-7,1],[-13,6],[-7,1],[-34,-11],[-11,-8],[-10,-4],[-46,-44],[-4,-3],[-10,-4],[-5,-3],[-2,-4],[-5,-9],[-2,-4],[-7,-4],[-9,-3],[-10,1],[-7,3],[2,4],[1,5],[1,3],[-12,17],[-2,8],[8,3],[8,0],[4,1],[4,3],[10,11],[8,3],[3,3],[3,4],[2,3],[6,3],[23,3],[12,5],[12,10],[2,2],[1,2],[1,3],[0,1],[11,6],[33,6],[2,2],[1,3],[1,2],[3,1],[6,1],[3,1],[2,4],[9,19],[2,3],[5,5],[2,4],[13,24],[6,8],[14,12],[38,4],[4,2],[6,9],[1,1],[7,2],[22,-2],[11,4],[6,0],[6,-4]],[[55322,94605],[25,-22],[10,-3],[3,-2],[-1,-4],[-4,-8],[0,-2],[1,-5],[0,-2],[-2,-3],[-4,-3],[-7,-10],[0,-3],[-1,-8],[-13,-14],[2,-4],[-7,-5],[-26,-8],[-8,3],[-3,8],[-2,4],[-3,2],[-4,1],[-11,5],[-3,4],[-6,8],[-18,14],[-15,23],[-6,6],[8,15],[15,7],[30,2],[13,-4],[24,9],[13,-1]],[[57077,95900],[7,1],[21,-1],[0,-8],[-5,-2],[-47,-45],[-29,-15],[-13,-12],[-7,-4],[1,-2],[0,-1],[0,-2],[1,-2],[-12,-13],[-37,-21],[-8,-17],[1,-7],[2,-4],[1,-3],[-4,-4],[-4,-1],[-7,-1],[-6,2],[-4,4],[1,9],[6,10],[7,9],[11,7],[17,23],[72,55],[19,28],[-1,5],[4,1],[8,8],[5,3]],[[56784,96559],[-25,-16],[-24,-24],[-5,-24],[-21,-20],[-17,-20],[-5,-5],[-3,-6],[-5,-6],[-6,-5],[-8,-4],[-4,-7],[-5,-15],[-13,-26],[-7,-10],[-44,-31],[-54,-18],[-41,-27],[-10,-2],[-24,-29],[6,-22],[-16,-16],[-86,-4],[-61,-11],[-26,6],[-37,8],[-8,0],[-5,1],[-3,3],[-2,5],[-3,4],[-3,12],[10,9],[22,10],[-4,17],[0,5],[-2,5],[-9,8],[-7,9],[-3,3],[-1,3],[3,7],[4,4],[36,17],[10,11],[20,4],[16,15],[8,11],[5,11],[-31,-2],[-16,-7],[-9,-16],[-7,3],[2,7],[6,7],[7,4],[-11,11],[-17,6],[-16,0],[-43,-13],[-3,-3],[-11,-18],[-14,-9],[-115,-10],[-115,-10],[-13,-8],[-63,-11],[-15,3],[-32,-1],[-8,2],[-8,6],[0,7],[4,6],[14,14],[-3,5],[-8,3],[-8,8],[6,4],[-3,3],[-4,1],[-7,-1],[4,4],[4,1],[7,0],[-2,9],[-1,3],[87,20],[8,4],[5,8],[1,6],[-2,6],[-1,9],[2,2],[3,3],[1,3],[0,4],[0,2],[-1,1],[-1,3],[1,7],[1,8],[2,8],[1,3],[19,15],[10,10],[13,6],[7,6],[0,15],[12,10],[22,12],[2,9],[-3,4],[-4,4],[-1,7],[5,5],[30,7],[-3,6],[-4,6],[-4,4],[-4,-1],[-7,-2],[-60,15],[-14,10],[-21,6],[-101,55],[0,8],[6,7],[26,16],[97,22],[98,21],[97,-3],[98,-3],[26,9],[12,9],[120,15],[26,-12],[20,-2],[54,-19],[26,-19],[14,-6],[0,-4],[-21,-7],[-6,-5],[1,-11],[-7,-4],[-58,-5],[-10,-5],[-10,-13],[-4,-18],[5,-17],[13,-13],[69,-17],[7,-5],[21,-18],[27,-12],[12,-14],[5,-2],[87,-11],[15,4],[11,12],[10,9],[46,2],[6,2],[7,5],[6,1],[5,-6],[3,-6],[4,-5],[9,-7],[7,-3],[5,-24]],[[55840,96792],[-63,5],[-9,-3],[-8,-6],[-2,-2],[-1,-2],[-1,-4],[-7,-3],[-7,-2],[-7,2],[-6,8],[13,4],[4,3],[-6,0],[0,5],[14,4],[-1,11],[7,5],[8,2],[7,6],[-3,3],[-5,8],[-4,3],[-7,4],[-71,6],[4,7],[7,6],[8,3],[6,1],[25,-2],[7,4],[3,6],[-1,8],[-2,7],[-3,5],[-7,5],[-15,3],[-35,21],[-84,21],[2,4],[3,5],[3,3],[95,18],[96,18],[23,-6],[18,-1],[18,7],[12,16],[-1,1],[-3,2],[-2,1],[0,4],[20,15],[35,3],[33,-8],[15,-16],[6,-11],[15,3],[26,14],[8,2],[33,-1],[4,-1],[1,-3],[1,-4],[1,-3],[2,-2],[6,1],[4,4],[5,0],[10,-14],[7,-1],[12,5],[17,15],[6,2],[5,-1],[2,-4],[1,-5],[1,-7],[9,-24],[7,-9],[14,-5],[5,-3],[3,-7],[0,-8],[-1,-6],[-7,-9],[-3,-6],[2,-6],[3,-4],[3,-4],[1,-8],[-1,-12],[1,-4],[4,-4],[0,-7],[-3,-13],[-1,-15],[4,-12],[-2,-4],[10,-8],[-112,-13],[-112,-14],[-112,-13],[-14,4],[1,2],[3,5]],[[57505,97076],[-14,-5],[-6,-7],[1,-12],[-12,-5],[-37,-5],[-8,-4],[-2,-5],[-6,3],[-7,8],[0,1],[1,4],[1,4],[0,3],[-4,3],[-14,1],[-47,23],[-2,13],[-5,10],[-12,15],[12,20],[16,4],[33,-4],[5,-9],[4,-6],[27,-21],[8,-12],[16,-9],[52,-8]],[[53372,96803],[2,-6],[3,-5],[1,-5],[-2,-4],[-4,-3],[-6,0],[-6,3],[-13,11],[-35,3],[-9,4],[-8,7],[-14,17],[10,11],[2,3],[-2,6],[-5,2],[-8,2],[-50,30],[-6,10],[-4,4],[-3,3],[-33,13],[-13,11],[-18,8],[-11,2],[-39,-9],[-12,1],[-10,10],[-13,18],[-10,20],[-1,17],[-9,4],[-5,9],[-4,12],[-5,12],[-9,11],[-8,9],[-19,12],[4,10],[1,3],[-7,1],[-36,25],[-4,6],[-17,10],[-7,8],[-7,10],[6,9],[5,5],[3,5],[-2,14],[-4,10],[-6,8],[-13,10],[9,9],[12,2],[79,-18],[43,-27],[1,-7],[-3,-15],[11,-8],[19,-2],[4,-3],[5,-4],[14,-20],[-34,-24],[17,-10],[9,-8],[1,-9],[1,-9],[23,-7],[8,-6],[-5,-7],[0,-8],[3,-7],[6,-3],[3,-3],[-3,-7],[-8,-14],[27,11],[25,1],[5,-3],[2,-5],[3,-11],[3,-5],[4,-3],[10,-2],[7,-9],[53,-23],[31,2],[8,-8],[0,-3],[-5,-7],[-2,-4],[2,-5],[2,-5],[45,-50],[14,-9],[-1,-13],[4,-7],[6,-5],[2,-9]],[[58177,97198],[40,10],[23,0],[11,-14],[-105,-20],[1,-6],[1,-2],[-27,2],[-86,25],[-11,8],[-5,1],[-70,-10],[-69,-10],[-74,-33],[-5,0],[-68,13],[5,4],[48,14],[11,8],[10,4],[8,12],[4,2],[59,2],[11,5],[7,9],[-3,13],[103,-2],[57,-19],[12,-12],[8,-4],[104,0]],[[58352,97259],[67,0],[2,-1],[2,-2],[3,-5],[-7,-5],[-10,-3],[-19,0],[4,-4],[-10,-4],[-13,1],[-13,8],[-6,15]],[[55582,97328],[25,5],[8,-5],[-2,-1],[-4,-3],[76,5],[8,-5],[5,0],[16,-8],[53,-11],[12,-6],[7,-12],[-36,-17],[-57,-5],[-25,-13],[-13,-1],[-13,5],[-12,9],[-7,4],[-34,-1],[-15,6],[-7,5],[17,6],[9,6],[-1,7],[-6,9],[1,4],[4,4],[3,9],[-3,0],[-3,1],[-3,1],[-3,2]],[[55571,97478],[27,-8],[6,-6],[-1,-6],[-8,-4],[-9,-1],[-6,3],[-7,8],[-8,2],[-93,-12],[-8,2],[-3,4],[0,7],[5,11],[-11,8],[-4,1],[12,7],[12,2],[26,-1],[17,-9],[53,-8]],[[53064,97673],[-3,-7],[-1,-3],[-3,-2],[11,0],[5,-3],[3,-9],[-20,4],[-5,-2],[-6,-5],[-5,-3],[-6,-2],[-29,-1],[-11,3],[-8,10],[-4,8],[31,4],[-9,5],[-21,3],[-8,9],[44,3],[34,-11],[11,-1]],[[52977,97694],[-10,1],[-8,4],[-2,6],[8,9],[10,4],[44,-2],[39,-22],[-7,-6],[-74,6]],[[55613,97040],[-8,-4],[-15,4],[-8,0],[-13,-5],[-5,-6],[-1,-9],[-74,12],[-24,-8],[-26,-17],[-1,-4],[2,-8],[5,-9],[15,-11],[6,-8],[-95,-14],[-96,-14],[-8,-9],[13,-14],[6,-10],[10,-20],[-1,-8],[-4,-12],[-5,-5],[-10,-4],[-4,-8],[4,0],[-3,-4],[-4,-4],[-4,-4],[0,-8],[3,-4],[18,-12],[9,-3],[4,-4],[2,-7],[-2,-6],[-5,-6],[-5,-5],[-3,-2],[-23,-2],[-6,-4],[-2,-6],[4,-6],[17,-17],[20,-8],[9,-14],[-10,-9],[-70,-35],[-64,16],[-25,-4],[-24,-16],[6,-9],[21,-15],[-7,-12],[-10,-5],[-10,-3],[-9,-5],[1,-8],[-3,-6],[-5,-4],[-5,-2],[10,-16],[4,-4],[5,-3],[6,-2],[5,-3],[3,-9],[-3,-11],[4,-19],[1,-10],[-3,-11],[-25,-44],[-2,-9],[4,-15],[-2,-7],[-20,-28],[8,-16],[-3,-21],[-17,-15],[-13,-3],[-27,7],[-18,-5],[-5,0],[-6,2],[-9,10],[-5,0],[-35,-12],[-19,4],[-5,-4],[2,-15],[-9,-9],[-22,-4],[1,-6],[2,-4],[3,-2],[4,0],[-2,-6],[-3,-3],[-3,-3],[-4,-5],[-6,-18],[-7,-8],[-16,-9],[-7,-9],[2,-4],[-3,-6],[1,-5],[3,-7],[1,-8],[0,-10],[-2,-4],[-9,-9],[-8,-11],[-3,-12],[2,-12],[5,-13],[-5,-9],[-11,-7],[-5,-5],[-2,-3],[0,-3],[0,-8],[-7,-7],[-2,-3],[3,-3],[1,-4],[0,-4],[-3,-6],[-4,-2],[-62,7],[4,-10],[26,-13],[16,-13],[17,-9],[-10,-16],[-56,-46],[-9,-12],[2,-11],[-23,-6],[-12,-7],[-5,-12],[7,-8],[38,-9],[15,-8],[7,-8],[9,-8],[2,-3],[-2,-13],[-9,-8],[-19,-8],[2,-9],[2,-3],[-8,-5],[-18,-4],[-5,-11],[3,-6],[-3,-4],[-24,-5],[-12,-9],[-15,-5],[-61,6],[-7,3],[-2,6],[1,8],[-4,3],[-13,-1],[-13,6],[-6,2],[-7,-4],[-1,-3],[-1,-4],[0,-3],[-2,-2],[-3,-1],[-2,-1],[-2,-3],[-1,-4],[0,-4],[-6,-1],[-7,4],[-6,10],[3,4],[8,8],[-3,5],[0,6],[1,6],[2,7],[-3,1],[-4,1],[-6,6],[3,12],[0,7],[-4,3],[-30,9],[-16,9],[-33,6],[-16,7],[-17,20],[-56,34],[-50,15],[8,18],[14,8],[41,6],[4,3],[9,10],[8,1],[17,-3],[8,2],[14,7],[29,8],[39,-2],[8,-4],[4,-4],[2,-4],[-1,-4],[-4,-5],[6,-4],[25,8],[-4,15],[3,7],[8,2],[31,-2],[11,2],[6,8],[-13,4],[-46,-1],[-10,-6],[-7,-1],[-4,1],[-12,11],[-10,4],[-10,1],[-10,3],[-8,12],[0,3],[1,7],[-1,3],[-1,2],[-2,2],[-1,2],[-5,4],[-7,0],[-7,-3],[-5,-3],[-1,-8],[-20,5],[-8,-1],[-1,-9],[4,-8],[12,-12],[-7,-3],[-21,-1],[-19,-7],[-6,0],[-8,3],[-96,1],[-13,6],[-17,3],[-12,6],[-11,9],[-9,12],[4,2],[2,4],[-1,4],[-4,2],[-11,-1],[-5,1],[-5,4],[3,7],[2,3],[2,2],[-10,11],[-119,30],[-38,-4],[-7,2],[-14,8],[-7,2],[-14,24],[-2,2],[-1,1],[-1,1],[0,6],[0,3],[4,11],[-46,8],[-5,5],[0,10],[3,11],[4,7],[-46,30],[-7,6],[-4,9],[2,2],[4,6],[-2,1],[-1,2],[-1,1],[-2,0],[0,4],[20,-3],[6,3],[-8,13],[-20,8],[-9,7],[1,6],[-1,5],[-1,5],[-1,5],[11,2],[34,18],[102,10],[22,-7],[21,-23],[-4,-7],[-5,-5],[-5,-3],[-5,-1],[5,-9],[10,-1],[19,5],[17,-3],[8,2],[6,9],[0,15],[1,4],[2,2],[37,0],[25,9],[13,2],[28,-13],[98,-4],[99,-4],[7,-5],[5,-4],[13,-8],[16,-5],[10,-7],[19,-20],[6,-4],[20,-2],[6,1],[0,4],[-8,11],[8,5],[25,-5],[-11,13],[-48,7],[-19,9],[-11,10],[-11,6],[-4,6],[-10,11],[-15,5],[-122,13],[-122,13],[-16,-4],[-7,1],[-5,3],[-9,9],[-5,4],[-12,2],[-5,3],[-4,7],[33,11],[48,1],[23,11],[104,13],[104,14],[105,14],[25,15],[75,4],[75,4],[23,-11],[16,2],[6,-3],[6,-5],[7,-4],[7,-1],[5,4],[-12,9],[-15,7],[-30,4],[-10,4],[-10,10],[-16,23],[7,7],[8,-2],[8,-5],[8,0],[19,13],[7,3],[-3,2],[-2,2],[-3,4],[-1,4],[3,0],[4,2],[3,2],[3,4],[-69,-16],[-9,-5],[-4,-15],[-8,-7],[-125,-9],[-125,-9],[-52,25],[-12,1],[-68,-13],[-61,-39],[-89,-6],[-14,-7],[-13,0],[-29,14],[-13,-7],[31,-8],[-9,-5],[-39,-1],[-29,6],[-17,-5],[-9,0],[-14,13],[-10,2],[-18,-6],[-27,-24],[-16,-8],[-11,5],[-8,9],[-8,0],[-17,-7],[-7,1],[-5,3],[-5,6],[-5,11],[16,4],[7,6],[6,10],[-10,15],[-12,6],[-13,2],[-13,5],[4,7],[2,9],[0,11],[-3,8],[-2,6],[-6,19],[0,6],[4,12],[5,4],[2,4],[-4,12],[-4,8],[-10,9],[-5,7],[7,5],[24,-1],[24,11],[12,3],[6,5],[4,2],[26,-1],[14,-4],[18,-11],[46,-39],[5,-2],[1,-3],[2,-8],[2,-7],[3,-3],[12,-1],[5,3],[3,7],[-1,5],[-2,10],[-1,8],[-6,11],[-20,14],[-8,10],[3,9],[111,7],[112,6],[-3,5],[-9,8],[8,6],[18,8],[8,2],[7,3],[14,14],[14,6],[15,11],[34,10],[39,0],[16,-10],[22,-4],[7,2],[3,9],[-6,6],[-21,8],[-4,5],[-8,13],[6,9],[8,6],[43,17],[9,0],[10,-3],[10,-1],[46,10],[7,5],[4,2],[10,0],[43,-14],[89,3],[89,4],[45,21],[13,4],[15,8],[20,4],[6,3],[1,8],[-10,7],[-17,-2],[-97,-34],[-62,13],[-6,3],[-5,6],[-1,2],[-2,8],[0,2],[-2,2],[-12,0],[-32,-7],[-6,2],[-10,8],[-6,1],[0,4],[4,0],[5,2],[10,6],[8,7],[2,4],[3,6],[3,11],[3,6],[3,5],[4,4],[43,27],[8,10],[3,6],[4,5],[5,5],[4,2],[21,1],[5,5],[0,15],[-11,4],[-44,-5],[-4,2],[0,8],[-1,5],[-3,2],[-13,11],[-9,0],[-8,-8],[-11,-16],[-11,-9],[-9,-3],[-4,-4],[-3,-8],[5,-3],[-1,-7],[-3,-8],[-5,-5],[-1,-2],[-2,-10],[-1,-4],[-3,-2],[-76,-28],[1,-16],[-13,-7],[-78,-7],[-78,-7],[-27,15],[-22,35],[-2,13],[-4,8],[-5,4],[-8,3],[3,4],[3,3],[3,1],[2,4],[47,4],[6,3],[6,8],[5,11],[4,21],[4,11],[2,11],[-7,6],[-1,6],[0,6],[-1,4],[-7,6],[-3,3],[-2,5],[5,2],[4,3],[8,7],[-5,7],[-13,8],[-5,8],[-6,3],[-8,-4],[-14,-11],[-19,-25],[-3,-7],[-1,-9],[-1,-7],[-5,-3],[1,-5],[2,-4],[2,-2],[3,-1],[-5,-8],[3,-2],[2,-3],[0,-5],[-2,-7],[3,1],[3,-2],[3,-2],[3,-5],[-15,-5],[-42,-5],[-10,-18],[2,-1],[4,-3],[-17,-8],[-17,6],[-33,22],[4,6],[4,4],[4,5],[1,10],[-2,8],[-7,12],[0,8],[-24,1],[-14,-3],[-14,-8],[-15,-16],[-24,-2],[-12,-5],[0,-4],[22,-4],[5,-4],[1,-6],[-1,-5],[-1,-4],[-1,-7],[0,-2],[2,-1],[1,-2],[1,-3],[-1,-3],[-1,-6],[0,-3],[1,-7],[4,-4],[5,-3],[3,-5],[-7,-6],[-17,1],[-8,-2],[-25,-25],[10,-15],[17,-7],[33,-3],[11,-3],[10,-9],[9,-13],[7,-15],[-19,-6],[-59,2],[2,-4],[-7,-5],[-9,3],[-16,10],[-9,1],[-7,-3],[-6,-6],[-5,-8],[3,-6],[8,-6],[4,-4],[2,-4],[4,-13],[-11,-2],[-44,-25],[-6,-7],[-8,-5],[-9,3],[2,8],[4,6],[5,4],[4,6],[-21,-4],[-4,1],[-3,2],[-4,0],[-4,-3],[-4,-6],[-2,-6],[0,-20],[-6,6],[-7,6],[-28,14],[-7,0],[-7,-2],[7,-10],[19,-10],[4,-13],[-98,5],[-98,5],[-19,-6],[-13,-9],[-7,0],[-13,10],[-10,9],[-4,7],[10,8],[3,4],[-1,3],[-3,6],[-1,3],[3,4],[-26,17],[13,0],[-5,14],[-8,7],[-56,11],[-24,16],[-18,18],[-8,4],[-13,14],[-14,7],[-4,6],[46,12],[131,0],[55,21],[-15,7],[-17,-2],[-31,-10],[-76,3],[-75,3],[-11,4],[-6,15],[2,4],[-8,7],[-91,11],[-21,12],[-11,2],[-6,4],[-6,8],[-3,9],[5,8],[-7,10],[-10,4],[-20,1],[-6,2],[-9,6],[-7,6],[-3,7],[6,8],[18,31],[14,7],[30,-5],[13,3],[-10,13],[-12,7],[-81,19],[-16,10],[-18,7],[-20,15],[-7,7],[-3,12],[65,7],[94,-25],[95,-25],[63,1],[9,5],[-2,5],[-6,12],[-5,7],[-1,3],[0,8],[-1,3],[-1,3],[-7,10],[-10,3],[-90,-17],[-24,8],[8,5],[10,3],[18,0],[-7,6],[-7,2],[-16,0],[-64,26],[-16,2],[-8,5],[15,5],[6,4],[13,18],[14,4],[7,5],[-2,4],[-2,3],[-2,1],[-3,1],[12,9],[4,4],[5,12],[3,4],[4,3],[13,4],[26,0],[13,4],[-5,7],[-12,2],[-4,7],[11,11],[4,1],[-2,4],[-2,4],[-2,8],[2,2],[4,7],[-10,0],[-26,-9],[-42,5],[20,-27],[3,-6],[-6,-9],[-12,0],[-13,6],[-7,7],[2,4],[-4,2],[-14,12],[-2,5],[-1,5],[-2,5],[-4,4],[0,7],[-27,-7],[2,-4],[-3,-5],[-3,-3],[-7,-5],[11,-5],[27,-33],[9,-17],[-6,-12],[-117,-40],[-15,0],[-12,14],[6,3],[-1,5],[-7,8],[-1,5],[-1,17],[-2,17],[-6,12],[-8,8],[-12,4],[-5,5],[-3,5],[-8,18],[-3,3],[-4,4],[-20,8],[-20,24],[16,5],[5,3],[-13,7],[-2,2],[-2,7],[1,2],[3,1],[3,2],[7,7],[3,5],[-1,6],[-1,4],[-1,4],[-2,4],[-2,2],[-3,2],[-11,10],[-15,8],[-13,1],[-7,2],[-6,6],[-5,12],[9,11],[132,1],[-11,7],[-80,13],[3,7],[6,6],[35,19],[116,-14],[7,3],[0,8],[-8,5],[-21,5],[-33,21],[-6,6],[-4,8],[1,0],[3,3],[2,0],[-1,2],[-1,5],[0,2],[2,2],[5,9],[-13,9],[10,7],[16,1],[53,-13],[14,0],[10,13],[-10,12],[7,2],[15,-4],[6,4],[3,6],[5,5],[4,3],[30,6],[12,-1],[11,-11],[4,-6],[14,-9],[5,-6],[0,-4],[-1,-3],[-1,-2],[7,-8],[19,-16],[1,-8],[5,-4],[2,-1],[2,0],[-1,-2],[-4,-10],[17,-9],[9,-2],[8,3],[-2,2],[-2,3],[-4,8],[8,5],[8,-3],[23,-22],[4,-2],[10,2],[1,1],[3,8],[1,21],[-13,11],[-27,11],[3,4],[-5,4],[2,4],[-5,1],[-4,3],[-3,7],[0,9],[3,4],[9,12],[51,-1],[17,-7],[11,-8],[2,-2],[2,-5],[6,-3],[2,-2],[2,-9],[-2,-5],[-11,-6],[12,-5],[41,17],[23,-1],[41,14],[12,8],[28,10],[53,5],[29,13],[64,-1],[59,15],[12,-2],[13,-7],[18,-17],[1,-5],[1,-8],[0,-7],[0,-6],[0,-5],[4,-6],[-21,-22],[-44,-19],[-133,-8],[-6,5],[-13,-5],[-50,0],[4,-8],[-5,-4],[-101,-46],[-23,-3],[-17,3],[-9,-3],[-5,-12],[9,-2],[17,-8],[9,-3],[9,2],[27,11],[54,1],[37,15],[41,-3],[30,6],[30,-7],[15,1],[7,-3],[4,-10],[-17,-21],[-5,-3],[-5,-1],[-10,-6],[-4,-2],[-6,1],[-10,3],[-5,1],[3,-8],[2,-9],[-3,0],[-2,-2],[-1,-4],[-1,-6],[11,-1],[44,-19],[6,1],[2,7],[-2,4],[-12,12],[11,7],[14,1],[14,-2],[11,-6],[1,-2],[1,-7],[2,-3],[4,-2],[8,-1],[23,-9],[6,-4],[2,-8],[6,-5],[18,-10],[2,-2],[5,-14],[2,-2],[4,0],[-3,-14],[-1,-7],[2,-7],[-6,-6],[2,-7],[6,-6],[7,0],[9,2],[6,-3],[12,-10],[9,2],[8,12],[15,32],[-4,3],[-11,17],[-6,6],[-13,6],[-6,5],[2,4],[3,3],[2,3],[3,2],[-5,6],[-3,8],[-3,7],[-12,6],[-6,7],[-3,7],[5,4],[-15,16],[-4,8],[5,4],[14,16],[34,18],[50,2],[7,4],[-9,1],[-19,8],[-10,0],[9,11],[26,7],[11,6],[-9,-1],[-4,1],[-4,4],[8,8],[35,27],[25,29],[6,9],[4,4],[6,1],[86,-22],[18,-13],[46,-53],[10,-7],[13,-5],[10,-9],[15,-5],[5,-4],[4,-5],[-6,-9],[0,-4],[2,-7],[3,-5],[2,-3],[1,-5],[-2,-7],[4,-8],[6,-6],[11,-6],[-3,-11],[2,-7],[9,-11],[3,-7],[6,-15],[4,-6],[-2,-11],[4,-8],[5,-7],[3,-9],[4,-10],[11,-6],[19,-5],[7,-6],[9,-17],[7,-7],[16,-5],[8,-6],[4,-13],[-2,0],[-2,0],[-8,-12],[-19,-17],[-5,-12],[1,-15],[6,-8],[8,0],[26,32],[21,-3],[21,-17],[18,-19],[5,-4],[18,-10],[4,-5],[2,-6],[1,-13],[0,-9],[0,-6],[1,-5],[5,-7],[6,-5],[11,-6],[6,-5],[4,-2],[9,-1],[4,-3],[1,-3],[2,-8],[1,-2],[5,-6],[6,-3],[24,-3],[11,4],[4,8],[-10,13],[1,2],[0,2],[0,2],[1,2],[-16,4],[-6,6],[-5,22],[-4,6],[-4,3],[-4,5],[-10,28],[-5,7],[-16,13],[-5,8],[-3,7],[-4,15],[-3,7],[-1,8],[0,10],[0,9],[-3,4],[-4,3],[-32,30],[-14,8],[2,17],[-4,21],[-7,21],[-4,30],[-3,11],[-6,19],[-3,5],[-3,2],[-2,4],[1,8],[3,3],[14,9],[-6,3],[-12,1],[-5,6],[-2,5],[-2,9],[-2,7],[-6,7],[-14,16],[-4,7],[5,4],[-3,6],[-13,11],[1,2],[4,7],[0,3],[-1,4],[-1,1],[-1,1],[0,1],[-3,7],[-3,6],[-4,5],[-4,3],[6,9],[2,3],[-5,7],[-3,8],[-1,10],[3,11],[8,11],[10,5],[107,-10],[10,6],[-10,14],[-26,9],[-10,12],[-3,6],[-1,3],[1,5],[4,8],[4,7],[18,10],[-3,1],[-2,2],[-3,4],[-1,5],[5,1],[11,6],[17,3],[32,17],[11,4],[9,-2],[11,-5],[48,-5],[4,-3],[2,-4],[2,-10],[1,-4],[6,-9],[6,-7],[14,-11],[8,-4],[5,-3],[2,-5],[-1,-4],[-5,-6],[-2,-4],[4,-6],[32,-22],[9,-3],[9,2],[7,11],[-2,2],[-9,10],[-2,4],[2,8],[4,5],[22,13],[85,-10],[36,-19],[45,-10],[9,-10],[11,-8],[16,-4],[58,-38],[11,-14],[15,-5],[10,-5],[19,-17],[-9,-19],[-14,-10],[-29,-7],[-12,-6],[-5,-5],[-10,-14],[-18,-12],[5,-4],[-9,-18],[-13,-4],[-14,0],[-13,-7],[23,-3],[16,4],[5,-1],[4,-5],[1,-17],[4,-10],[-5,-10],[-2,-5],[-1,-7],[1,-4],[3,-4],[2,-4],[0,-6],[-6,-10],[-34,-10],[6,-14],[11,1],[21,13],[21,2],[10,3],[16,17],[10,6],[8,10],[4,16],[1,6],[2,8],[4,13],[6,11],[4,13],[8,11],[9,9],[11,7],[18,8],[29,1],[15,-11],[14,-7],[30,-8],[46,-25],[8,-13],[2,-7],[2,-15],[2,-5],[6,-5],[11,-5],[6,-4],[6,-7],[-1,-1],[-4,-2],[-3,-8],[2,-8],[5,-3],[6,-2],[4,-5],[-6,-2],[-6,-4],[-6,-6],[-3,-9],[0,-10],[3,-6],[9,-8],[-27,-22],[-43,-4],[-10,-7],[17,-7],[53,3],[24,-16],[5,-4],[-2,-8],[-7,-15],[0,-8],[8,-6],[31,0],[10,-4],[29,0],[8,3],[6,5],[5,7],[7,5],[9,3],[23,-3],[4,-1],[53,-18],[16,-1],[33,8],[14,-8],[-2,-4],[-3,-2],[-2,-1],[-3,-3],[-2,-4],[1,-2],[2,-2],[1,-2],[2,-6],[3,-7],[4,-5],[23,-13],[3,-3],[-1,-8],[-5,-11],[-2,-8],[22,0],[7,3],[6,1],[12,-7],[34,-5],[70,-32],[131,-24],[130,-23],[14,-7],[7,-1],[16,0],[5,-4],[1,-8],[-3,-5],[-4,-5],[-2,-5],[-1,-8],[3,-4],[4,-3],[5,-5],[-5,-8],[-7,-8],[-7,-6],[-13,-4],[-8,-5],[-8,-7],[-5,-7],[2,-2],[6,-11],[1,-3],[-3,-8],[-6,-1],[-7,1],[-19,10],[-39,-6],[0,-11],[-8,-4],[-17,3],[0,3],[-13,5],[-14,0],[-3,1],[-3,2],[-3,4],[-6,8],[-2,0],[-2,-1],[-3,-2],[-47,9],[-14,-13],[-4,-9],[-2,-8],[-4,-5],[-7,-2],[-21,0],[-12,7],[-4,1],[-63,1],[-3,-5]],[[59193,97982],[56,12],[95,-16],[-12,-11],[-15,-5],[-71,-7],[-71,-7],[-56,-22],[-113,-12],[-113,-12],[-113,-12],[-32,14],[-5,4],[1,4],[4,3],[134,18],[134,18],[133,18],[16,7],[7,2],[15,-1],[6,5]],[[55082,98010],[-38,2],[-12,6],[6,12],[5,5],[9,2],[5,3],[9,10],[17,12],[4,1],[75,-14],[24,-13],[4,-4],[4,-2],[4,1],[4,1],[3,0],[4,-6],[-15,-7],[-6,-1],[-4,-2],[-7,-12],[-4,-2],[-37,-14],[-12,3],[-42,19]],[[56713,98111],[7,7],[7,1],[7,-3],[6,-5],[7,-9],[20,-14],[5,-9],[-59,-5],[-11,13],[4,2],[3,6],[2,9],[2,7]],[[56747,98136],[-9,-9],[-12,-2],[-57,8],[-9,7],[5,4],[6,3],[6,1],[6,0],[15,2],[17,0],[16,-5],[16,-9]],[[57547,97890],[-2,-4],[-4,-10],[-4,-4],[3,-3],[2,-3],[2,-1],[3,-1],[-4,-11],[-10,-13],[-5,-8],[9,-12],[25,-18],[4,-11],[-9,-19],[-16,-11],[-64,-7],[-17,-7],[-19,-21],[-9,-3],[-30,-2],[-5,-4],[1,-7],[-6,-5],[-7,-3],[-15,0],[-2,-12],[-9,-7],[-55,-16],[-21,-16],[-110,-26],[-4,-3],[0,-6],[4,-5],[8,-5],[3,-4],[8,-3],[4,-5],[2,-5],[14,-23],[1,-6],[-3,-5],[-8,-7],[-21,-10],[-8,-8],[5,-7],[-4,-7],[-6,-3],[-7,-2],[-38,-21],[-65,-14],[-12,-8],[-51,-14],[-58,-1],[-3,1],[-1,3],[-2,6],[-1,3],[-1,3],[0,2],[0,3],[-3,3],[-4,2],[-42,-5],[-58,-27],[-76,-9],[-8,-13],[0,-5],[4,-9],[0,-6],[-4,-8],[-6,-6],[-51,-25],[-105,7],[-104,7],[-104,7],[-53,26],[-15,12],[-8,11],[-2,2],[-1,5],[3,27],[67,33],[-106,-15],[-27,9],[-98,-11],[-98,-11],[-58,15],[-95,-6],[-95,-5],[-7,8],[4,1],[9,5],[4,2],[-25,16],[-4,10],[-5,5],[-74,3],[-74,3],[-34,13],[-16,13],[-92,25],[-7,8],[-4,12],[-4,14],[51,14],[109,6],[5,-2],[14,-15],[38,-15],[103,-7],[103,-6],[-8,11],[-133,23],[-42,27],[-6,8],[127,4],[128,4],[127,4],[4,3],[0,5],[-3,5],[-4,3],[15,11],[108,13],[18,9],[-17,10],[-20,0],[-115,-22],[0,4],[2,0],[7,4],[-27,0],[9,13],[24,2],[9,9],[-119,-5],[-119,-6],[-119,-6],[-119,-5],[-49,-22],[-51,0],[-22,-13],[-69,-5],[-20,12],[-5,1],[-24,0],[-18,-7],[-81,5],[-47,-8],[-11,2],[1,2],[4,7],[-6,1],[-6,2],[-3,5],[4,8],[-11,11],[-13,4],[-43,-5],[-6,2],[-3,4],[-8,16],[-6,5],[-21,6],[-4,4],[-11,16],[-10,9],[-11,6],[-22,3],[9,6],[41,17],[33,1],[30,10],[18,-5],[11,1],[10,5],[5,9],[-34,0],[6,2],[11,8],[14,8],[5,-1],[-2,-8],[8,-2],[16,-10],[7,0],[4,5],[1,6],[-2,5],[-5,4],[11,6],[11,3],[10,6],[10,13],[-27,-15],[-128,5],[-19,12],[-20,-6],[-6,2],[-11,12],[-6,2],[0,4],[13,-7],[17,-3],[16,2],[13,8],[-60,8],[-10,7],[-13,12],[-12,6],[-8,-12],[-3,1],[-7,4],[-7,2],[-37,-1],[-5,6],[10,1],[19,12],[18,6],[16,12],[8,1],[6,-6],[3,-2],[5,0],[14,4],[56,-4],[15,-4],[5,1],[8,5],[36,1],[21,-11],[10,-2],[8,2],[16,12],[-19,13],[43,-6],[15,-6],[14,-15],[62,-25],[17,-18],[8,-3],[8,1],[8,3],[17,13],[4,5],[-2,6],[0,4],[26,0],[26,8],[-11,12],[-17,3],[-30,-3],[-28,7],[-14,8],[-9,16],[-12,8],[-4,4],[-2,3],[-4,3],[-3,2],[-1,3],[0,3],[0,4],[0,4],[-2,7],[-1,4],[-2,5],[-5,5],[-18,8],[-5,7],[4,2],[7,5],[4,2],[69,-11],[15,-7],[76,-59],[17,-6],[50,2],[-8,7],[-24,1],[-6,8],[4,5],[30,19],[-3,2],[-6,6],[3,0],[2,1],[4,3],[-5,4],[-14,4],[6,3],[8,0],[6,2],[5,7],[-19,1],[-6,3],[11,2],[19,12],[10,3],[0,4],[-107,2],[-11,3],[-6,9],[-1,16],[0,10],[1,7],[9,4],[12,1],[21,-8],[12,-12],[4,0],[3,5],[-1,4],[-8,6],[-5,10],[1,9],[5,5],[40,-7],[10,-7],[-2,-4],[51,-2],[6,-2],[-4,-10],[-1,-3],[8,-5],[9,-3],[-1,-6],[-1,-2],[5,-3],[2,-1],[-3,-7],[-1,-7],[1,-4],[5,-2],[7,1],[3,3],[6,12],[8,9],[12,4],[43,-2],[10,-6],[1,-13],[16,-12],[16,-8],[-2,-9],[-2,-4],[-2,-4],[10,-10],[9,-6],[10,-2],[48,10],[11,-4],[-5,-4],[-13,-7],[-5,-5],[-2,-8],[2,-5],[8,-7],[8,-13],[3,-3],[8,-4],[8,-2],[86,13],[25,15],[12,2],[-2,-3],[-2,-2],[-2,-4],[-1,-3],[3,-2],[2,-2],[4,-8],[-4,0],[0,-5],[8,1],[6,2],[7,4],[6,6],[1,3],[0,4],[0,3],[4,1],[3,1],[3,1],[3,2],[3,3],[15,5],[33,-21],[15,2],[-10,7],[-3,0],[6,13],[13,3],[34,-5],[5,-6],[9,-22],[0,-7],[-5,-4],[-11,-4],[-18,-10],[-16,-5],[-33,-29],[7,-6],[7,1],[32,18],[17,3],[8,-3],[14,-10],[45,-11],[-2,-5],[6,-5],[11,-7],[10,-13],[11,-6],[6,-5],[-3,-4],[-9,-8],[14,-8],[-6,-10],[-2,-2],[11,-4],[13,1],[13,5],[11,10],[-7,9],[-7,7],[13,5],[20,-20],[11,3],[-11,14],[-4,3],[-12,3],[-6,4],[-3,8],[28,-2],[4,2],[-4,7],[-21,18],[5,8],[5,12],[0,3],[-2,6],[0,3],[2,3],[8,9],[5,11],[3,10],[-1,11],[-4,13],[8,8],[20,5],[8,9],[-4,7],[-51,16],[-2,1],[-9,9],[-2,6],[1,11],[6,11],[6,8],[2,7],[20,8],[62,-8],[0,-5],[-4,-9],[-9,-19],[-6,-8],[6,-10],[11,-5],[21,-2],[-4,4],[-5,3],[-3,4],[-3,6],[5,1],[16,10],[6,1],[2,2],[1,4],[1,5],[2,4],[2,3],[3,2],[-2,2],[-4,7],[5,4],[-5,6],[-6,9],[4,13],[-3,1],[-5,3],[-5,4],[-2,6],[3,5],[6,2],[12,-1],[42,-24],[81,-12],[25,-13],[-4,-3],[-6,-3],[-10,-2],[4,-3],[2,-1],[3,0],[-7,-4],[-29,-1],[-13,-6],[-6,-1],[6,-6],[7,-3],[14,1],[-1,-5],[-2,-4],[-2,-2],[-3,-1],[6,0],[17,-5],[12,1],[6,-2],[5,-6],[-17,-6],[0,-3],[1,-4],[0,-4],[0,-3],[2,-5],[0,-4],[-2,-5],[-5,-2],[-5,-1],[-10,-7],[-39,-5],[-8,-4],[-9,-33],[-5,-14],[0,-4],[3,-6],[12,-12],[17,-9],[18,-2],[12,7],[-10,4],[-6,5],[-8,9],[-11,4],[-5,6],[44,-4],[-3,6],[-2,1],[-2,1],[2,7],[4,2],[10,-1],[6,1],[3,-1],[2,-2],[1,-2],[0,-6],[0,-2],[7,-10],[7,-7],[8,-1],[9,10],[-10,14],[-2,4],[3,9],[7,4],[13,1],[-4,-3],[3,0],[4,-1],[3,-2],[2,-6],[-1,-5],[-3,-3],[-6,-4],[2,-2],[6,-6],[3,-1],[10,1],[0,-3],[-1,-7],[-1,-2],[10,-3],[9,5],[17,18],[40,7],[8,9],[-17,5],[-4,1],[-2,5],[-3,5],[-3,5],[5,2],[8,3],[5,3],[-16,4],[-6,4],[3,4],[3,3],[3,1],[3,0],[-2,7],[-2,3],[-2,2],[8,8],[9,-3],[19,-13],[26,0],[5,-2],[5,-3],[5,-2],[5,3],[-29,13],[-9,7],[51,-4],[31,-16],[9,4],[-4,6],[-1,2],[36,-6],[11,6],[-4,4],[-5,3],[-5,2],[-5,-1],[0,5],[21,-1],[6,4],[-7,6],[-46,1],[-18,9],[11,13],[20,2],[62,-12],[8,-4],[25,-18],[-8,0],[-11,-2],[-9,-5],[-8,-6],[1,-2],[3,-4],[2,-2],[-2,-2],[-4,-4],[-2,-2],[7,-4],[9,-4],[9,0],[6,6],[7,8],[35,9],[3,2],[3,5],[1,4],[0,5],[1,4],[8,5],[6,8],[7,4],[11,-13],[5,-7],[-3,-5],[-3,-3],[-4,-3],[-3,-1],[2,-10],[-5,-8],[-14,-14],[10,4],[21,4],[43,-5],[19,9],[67,8],[-9,-8],[-28,-9],[13,-12],[13,-4],[38,3],[17,6],[9,0],[5,-3],[6,-5],[5,-7],[3,-10],[23,14],[13,1],[10,-7],[-5,-8],[-16,-16],[39,0],[26,8],[120,-4],[121,-3],[27,-13],[28,-22],[10,-2],[42,-1],[13,-8],[-19,-14]],[[55529,98136],[-7,1],[-6,4],[-2,5],[5,7],[25,14],[18,1],[11,-3],[10,-5],[9,-8],[-8,-5],[-17,-3],[-16,-7],[-22,-1]],[[55765,98217],[-9,2],[-16,8],[-38,10],[-9,0],[6,4],[76,-4],[-2,-6],[-2,-4],[-4,-2],[-4,0],[1,-2],[1,-6]],[[55881,98237],[-10,-2],[-13,1],[-13,6],[-5,16],[10,-1],[42,11],[33,-2],[0,-3],[0,-1],[-1,0],[-1,-1],[3,-1],[3,-3],[3,-3],[3,-4],[-54,-13]],[[55731,98282],[-20,3],[-9,4],[-3,14],[29,0],[9,-5],[11,-10],[7,-4],[33,-9],[37,-1],[9,-4],[-3,-7],[-4,-3],[-23,-2],[-2,-1],[-4,-6],[-2,-1],[-13,0],[-2,1],[-1,2],[0,3],[-1,2],[-1,2],[1,2],[0,3],[-2,1],[-6,0],[-6,3],[-5,0],[-12,-4],[-6,1],[-3,3],[-4,9],[-4,4]],[[50960,18259],[6,-4],[2,-3],[-1,-5],[-1,-5],[-2,-10],[-1,-3],[-7,-4],[-17,-1],[-5,-8],[-1,3],[-1,0],[-1,1],[-1,0],[-1,22],[9,16],[12,7],[10,-6]],[[53075,85457],[1,1],[2,-2],[0,-5],[-2,-6],[-3,-4],[-4,-3],[0,-3],[1,-3],[-2,-6],[-4,-3],[-4,-1],[-1,1],[-1,2],[0,3],[-3,0],[-2,2],[0,8],[0,9],[0,9],[3,6],[5,2],[4,-1],[1,-5],[0,-4],[2,0],[7,1],[-1,1],[1,1]],[[53030,85479],[1,-3],[0,-6],[-2,-6],[-6,-11],[-2,0],[-1,2],[-1,1],[-4,-2],[-3,1],[-1,3],[-1,4],[-2,7],[1,3],[2,3],[4,4],[3,0],[0,-2],[0,-2],[-2,-2],[-1,-2],[0,-2],[4,4],[8,6],[3,0]],[[51469,86047],[2,-9],[1,-5],[-1,-3],[0,-5],[0,-6],[-5,-9],[-1,-5],[-2,-6],[-4,-1],[-2,4],[0,3],[-2,1],[-2,0],[-4,2],[-4,4],[-1,5],[0,3],[-1,3],[-6,7],[-1,2],[0,3],[2,8],[5,8],[2,4],[1,-1],[0,-4],[1,-5],[2,-6],[0,-6],[2,-5],[2,-1],[2,2],[1,1],[-1,2],[1,1],[1,0],[-2,2],[-3,7],[-2,7],[0,4],[-1,2],[-1,0],[-3,11],[0,6],[4,1],[1,-1],[2,-3],[5,-8],[2,-5],[-1,-1],[0,-2],[2,-6],[1,0],[1,4],[2,1],[2,-1],[3,-4]],[[51367,86516],[1,-2],[1,-1],[0,-2],[-1,-2],[-2,0],[-6,2],[-5,4],[-2,6],[0,5],[-1,2],[-1,-1],[-1,-1],[-5,4],[-3,3],[-1,4],[1,4],[-1,3],[-1,4],[-1,-1],[-1,-5],[-3,1],[-2,3],[-3,0],[-2,0],[0,2],[0,2],[-2,3],[2,3],[3,3],[12,2],[2,-2],[-2,-4],[-3,-2],[8,2],[4,0],[4,-2],[0,-2],[-2,0],[-1,-1],[0,-4],[4,-2],[3,-4],[7,-17],[0,-5],[-1,-1],[1,-1]],[[51311,86619],[3,-3],[2,-5],[0,-8],[-2,-8],[-4,-6],[-3,-1],[-1,3],[-1,5],[2,5],[0,5],[-3,-7],[-1,-3],[-1,-2],[-2,-1],[-3,4],[-1,6],[-1,3],[-2,0],[-2,4],[-1,6],[0,6],[1,4],[0,1],[-2,2],[1,1],[4,4],[1,1],[1,0],[2,3],[1,4],[3,2],[3,-1],[2,-3],[1,-5],[1,-5],[-1,-3],[0,-4],[3,-4]],[[51422,87202],[3,-3],[6,-13],[-1,-6],[-3,-5],[-3,-10],[0,-3],[-1,-5],[-3,-7],[-5,-6],[-6,0],[-9,4],[-2,1],[-4,2],[-1,2],[0,6],[2,4],[4,1],[2,-3],[1,-2],[2,4],[-1,8],[-15,14],[-3,5],[-1,3],[0,5],[0,5],[0,4],[2,1],[5,-3],[16,-13],[4,-1],[1,2],[1,3],[4,4],[5,2]],[[51565,87376],[-6,3],[-3,3],[2,3],[5,4],[7,2],[5,0],[2,1],[0,5],[2,4],[3,2],[5,0],[1,-1],[1,-2],[2,1],[3,0],[1,-7],[-3,-7],[0,-3],[2,0],[-3,-4],[-8,-3],[-7,1],[-2,3],[0,1],[-2,-1],[-2,-2],[-1,-3],[-4,0]],[[51553,87388],[-4,-2],[-10,-3],[-6,2],[-1,4],[-1,3],[1,2],[-2,9],[4,3],[6,-1],[5,-4],[5,-2],[4,-2],[0,-6],[-1,-3]],[[52309,87887],[1,-3],[2,-3],[-5,-3],[-21,-4],[-6,1],[-4,3],[-1,5],[-3,15],[-2,5],[-2,3],[1,4],[5,3],[6,1],[7,-3],[12,-13],[3,-2],[5,-5],[2,-4]],[[52544,88163],[2,-1],[1,-3],[-2,-4],[-9,-4],[-6,-4],[-9,-5],[-13,3],[-5,5],[4,2],[1,2],[0,3],[2,4],[1,3],[0,3],[2,3],[3,1],[7,0],[6,-1],[3,-3],[1,-2],[1,-1],[6,2],[1,-1],[2,-2],[1,0]],[[52758,88388],[3,-3],[1,-7],[-5,-5],[-5,-3],[-5,0],[-3,3],[-4,2],[-3,2],[0,2],[5,2],[2,2],[-1,2],[-3,0],[-3,0],[-2,2],[-1,4],[2,3],[7,0],[1,3],[2,3],[4,-2],[4,-5],[1,-3],[0,-2],[3,0]],[[53184,88720],[2,-11],[3,-4],[-1,-4],[-4,-3],[-7,-1],[-1,-1],[1,-3],[-2,0],[-5,2],[-8,4],[-9,7],[-2,5],[1,5],[1,3],[4,2],[0,8],[-2,14],[2,4],[7,-14],[-1,6],[1,3],[3,-2],[11,-16],[3,-1],[3,-3]],[[53152,88757],[-1,-7],[-1,-6],[0,-4],[-1,-1],[-1,-2],[-2,-2],[0,-3],[-2,-3],[-2,-2],[-4,2],[-5,5],[-4,6],[-3,7],[-3,3],[-2,0],[-2,-2],[0,-1],[-3,0],[-13,2],[-1,4],[4,5],[-1,3],[-3,1],[1,2],[0,4],[4,2],[32,11],[4,-1],[0,-5],[7,-2],[4,-6],[-2,-10]],[[53267,89034],[4,0],[0,-5],[-3,-5],[-6,-4],[-10,-8],[-6,-3],[-4,-3],[0,-2],[4,0],[4,-2],[-1,-4],[-4,-4],[-4,-4],[-3,-1],[-2,2],[1,3],[-1,4],[0,1],[2,3],[-2,0],[-7,-4],[-6,-6],[-7,-3],[-6,0],[-11,7],[0,2],[2,2],[1,1],[-1,1],[1,6],[1,6],[2,4],[4,3],[3,4],[4,4],[23,5],[7,-1],[5,-2],[4,-3],[2,-1],[1,1],[1,2],[2,2],[6,2]],[[54874,91387],[3,0],[4,-1],[-2,-3],[-4,-2],[-2,-4],[1,-5],[-1,-4],[-2,-3],[-4,-4],[-6,-5],[-6,-3],[-6,-4],[-4,-7],[-7,-12],[-5,-4],[-7,0],[-7,4],[-2,4],[2,4],[0,4],[0,5],[1,6],[3,7],[6,10],[9,9],[9,4],[27,4]],[[56899,92573],[-6,-5],[-1,-4],[4,-2],[-2,-1],[-9,-4],[-3,-5],[3,-4],[0,-3],[-5,-13],[-4,0],[-9,1],[-5,3],[-5,3],[-5,3],[-10,4],[-5,4],[1,8],[8,8],[7,3],[6,-2],[3,-4],[-1,-3],[1,-2],[4,-1],[4,1],[1,2],[-2,6],[-6,9],[1,6],[9,0],[5,-2],[1,-3],[2,-2],[2,-2],[2,0],[5,3],[3,0],[5,1],[1,-3]],[[51601,85480],[3,-3],[1,-7],[-1,-12],[-7,-5],[-23,17],[-19,9],[-7,5],[3,2],[2,3],[4,1],[5,-2],[3,0],[3,0],[9,-5],[5,-1],[7,3],[5,-1],[7,-4]],[[51517,85535],[1,-4],[0,-4],[-1,-8],[-3,-12],[-3,-3],[-2,2],[-1,2],[1,1],[-1,2],[-1,3],[-1,2],[-8,6],[-3,4],[-2,7],[0,7],[0,5],[2,4],[3,4],[3,1],[2,-1],[4,-3],[1,-2],[2,-2],[4,-4],[3,-7]],[[51671,85583],[15,-4],[8,-5],[-2,-9],[-10,-12],[-15,-6],[-12,-2],[-8,10],[0,15],[6,8],[10,5],[8,0]],[[51346,86375],[1,-5],[0,-4],[-2,-1],[-1,-3],[1,-10],[-2,-2],[-4,-1],[-6,1],[-5,4],[-1,3],[3,-1],[0,2],[-1,7],[0,2],[1,-1],[1,0],[0,1],[0,1],[-1,8],[0,4],[-1,4],[0,3],[0,4],[1,6],[3,1],[3,-4],[3,-3],[0,-3],[0,-3],[1,-1],[1,-2],[0,-3],[-1,-3],[1,-1],[2,1],[3,-1]],[[51343,86994],[-1,4],[-1,5],[1,4],[2,2],[2,1],[3,1],[1,3],[2,4],[3,-2],[-1,-6],[2,-3],[2,-5],[1,-2],[3,-5],[0,-9],[-1,-5],[0,1],[-1,3],[-2,2],[-2,1],[-5,-3],[-2,2],[-1,1],[-2,1],[-2,2],[-1,3]],[[54002,90400],[1,0],[2,-1],[-2,-6],[-6,-9],[-7,-4],[-23,-7],[-2,-2],[-6,-2],[-4,1],[-4,2],[1,4],[5,2],[-1,3],[1,1],[3,0],[3,3],[3,5],[8,9],[18,10],[5,0],[3,-2],[0,-4],[-1,-4],[0,-1],[3,2]],[[55728,91354],[15,-11],[33,-4],[19,-15],[13,-3],[7,-8],[0,-11],[-5,-9],[-8,-4],[-1,-12],[6,-7],[46,-15],[22,-16],[18,-15],[16,-24],[4,-4],[1,-1],[2,-5],[2,-2],[2,-1],[20,0],[6,-3],[2,-6],[2,-7],[8,-18],[4,-6],[8,-7],[22,-5],[25,-20],[15,-8],[6,-19],[50,-11],[13,-13],[1,-3],[8,-9],[4,-6],[3,-3],[2,-1],[2,-2],[0,-4],[0,-4],[0,-3],[10,-6],[64,-1],[19,-4],[1,-2],[-1,-5],[2,-2],[21,-1],[18,-8],[13,-1],[11,-7],[5,0],[5,1],[5,0],[8,-6],[8,-11],[8,-7],[17,5],[7,-6],[12,-20],[8,-8],[41,-23],[4,-5],[2,-5],[1,-5],[1,-5],[4,-5],[12,-13],[4,-10],[-1,-14],[2,-4],[1,-5],[-2,-15],[-1,-5],[0,-3],[0,-6],[1,-1],[1,0],[2,-3],[6,0],[24,13],[9,0],[4,-4],[3,-6],[11,-35],[1,-5],[3,-5],[20,-16],[8,-5],[25,-26],[19,-6],[5,-7],[0,-11],[-7,-11],[-9,-6],[-20,-6],[-9,-7],[-5,-10],[-1,-14],[1,-14],[1,-12],[0,-35],[1,-8],[3,-9],[3,-24],[2,-9],[7,-16],[2,-9],[1,-14],[-5,-6],[-10,-7],[-7,-6],[3,-7],[-5,-13],[-6,-10],[-4,-11],[4,-15],[9,-10],[10,0],[11,5],[11,1],[19,-11],[19,-2],[6,-3],[4,-4],[-1,-14],[-3,-16],[0,-14],[10,-5],[-7,-18],[-7,-10],[-32,-13],[-5,-5],[-3,-9],[0,-12],[1,-4],[5,-2],[-2,-8],[-3,-6],[-3,-6],[-3,-4],[2,-12],[5,-8],[6,-6],[7,-13],[3,-2],[2,-4],[1,-6],[1,-8],[0,-5],[1,-4],[2,-6],[10,-19],[7,-9],[5,-4],[8,-4],[7,-7],[16,-31],[11,-12],[6,-9],[7,-16],[11,-29],[1,-4],[-1,-6],[-4,-2],[-7,1],[-6,-2],[-4,-10],[-9,-13],[0,-5],[3,-22],[0,-12],[-1,-12],[-2,-10],[-3,-10],[2,-11],[1,-10],[0,-10],[-3,-9],[-5,-6],[-15,-9],[-1,-6],[-5,-6],[-9,-4],[-7,-5],[0,-10],[-7,-2],[-8,-5],[-6,-9],[-3,-14],[1,-7],[5,-11],[1,-6],[1,-8],[1,-11],[0,-8],[-1,-6],[-2,-8],[-1,-6],[1,-6],[4,-14],[3,-15],[9,-30],[8,-10],[10,-8],[28,-9],[7,-7],[15,-40],[2,-5],[3,-4],[7,-6],[3,-4],[2,-8],[7,-30],[1,-9],[-1,-13],[6,-12],[8,-11],[6,-24],[10,-16],[0,-11]],[[56711,89451],[-6,-11],[-10,-2],[-20,5],[2,-3],[0,-2],[1,-1],[3,-2],[-7,-3],[-13,2],[-7,-3],[-1,-4],[-2,-9],[-3,-4],[-2,0],[-3,2],[-2,2],[-4,2],[-3,2],[-2,3],[-1,4],[-1,5],[-1,0],[-3,-3],[-14,0],[-7,2],[-2,8],[-3,10],[-6,4],[-14,0],[-4,-3],[-7,-13],[-4,-4],[-4,0],[-2,3],[-1,3],[-1,2],[-22,0],[-12,4],[2,8],[-2,3],[-4,-1],[-4,-2],[1,-1],[-3,-7],[-2,-2],[-2,-1],[-2,-1],[-1,-4],[3,-3],[1,-3],[0,-5],[0,-5],[-1,-5],[-2,-1],[-2,1],[-5,1],[-5,4],[-3,9],[-1,10],[1,9],[-6,-1],[-4,-5],[-3,-6],[-4,-4],[-6,0],[-6,4],[-11,12],[-4,2],[-5,0],[-4,-4],[0,-10],[2,-8],[4,-5],[9,-7],[-4,-3],[-18,-8],[-3,-3],[-5,-7],[0,-11],[-7,-6],[-7,1],[2,13],[-8,16],[-3,3],[-16,2],[-12,7],[-2,2],[-6,10],[-4,2],[-7,-3],[-5,1],[-6,7],[-9,24],[-5,9],[-32,25],[-5,2],[-5,-2],[3,-6],[7,-8],[3,-7],[1,-5],[1,-15],[1,-7],[1,-6],[1,-6],[-1,-9],[-2,-8],[-3,-7],[-4,-4],[-4,-1],[1,13],[-7,8],[-16,3],[-4,-2],[-9,-10],[-3,0],[-2,5],[2,6],[3,6],[2,3],[-3,8],[-5,5],[-9,7],[1,2],[1,6],[-20,4],[-10,-1],[0,-11],[-12,-4],[12,-16],[-1,-7],[-4,-1],[-9,4],[3,-6],[5,-13],[4,-6],[-10,-15],[-11,5],[-11,10],[-10,0],[6,-9],[5,-6],[6,-3],[19,-4],[6,-4],[4,-10],[3,-16],[-3,0],[-4,0],[-3,-1],[-3,-4],[-3,15],[-6,7],[-7,0],[-7,-5],[2,-3],[1,-4],[-1,-5],[-2,-5],[2,-3],[2,-5],[4,-11],[-7,-4],[-20,-1],[21,-7],[10,0],[5,12],[-1,6],[-7,8],[-1,5],[2,6],[4,-3],[5,-6],[2,-5],[-2,-3],[15,-7],[1,-4],[-12,-8],[-2,-6],[3,-5],[6,-4],[11,-3],[2,-2],[2,-6],[3,-12],[-7,-4],[-5,4],[-5,8],[-5,4],[-8,1],[-7,3],[-6,7],[-3,1],[-4,-4],[2,-8],[-8,1],[-28,19],[-21,8],[-9,11],[-4,4],[-11,3],[-10,9],[-17,6],[-4,3],[-3,4],[-6,11],[-3,4],[-9,6],[-4,5],[7,-25],[16,-15],[34,-17],[23,-20],[19,-9],[3,-3],[5,-5],[6,-10],[3,-3],[6,1],[-7,-6],[-16,0],[-8,-2],[-2,-2],[-1,-2],[0,-2],[-1,-5],[-3,-2],[-3,3],[-2,4],[-3,0],[-7,-5],[-38,12],[-6,-1],[13,-21],[8,-7],[6,4],[-6,6],[-2,1],[7,1],[16,-19],[7,-6],[-2,-8],[-1,-7],[-2,-6],[-4,-3],[-5,0],[-4,4],[-6,12],[-3,-7],[1,-6],[2,-6],[0,-6],[-5,-4],[-5,-1],[-5,3],[-3,7],[-8,-7],[-8,-4],[-9,0],[-23,8],[-5,-1],[4,-9],[-13,0],[-7,2],[-6,11],[-6,-1],[-12,-4],[0,-3],[11,-5],[4,0],[0,-3],[-20,3],[-10,-2],[-6,-10],[2,0],[3,-3],[1,-1],[-12,-8],[6,-1],[6,-4],[6,-6],[4,-7],[5,-5],[6,-1],[5,3],[1,9],[5,-2],[5,-4],[9,-11],[9,-7],[4,-6],[-1,-9],[-9,-11],[-12,-7],[-13,-1],[-9,5],[-3,6],[-5,15],[-3,8],[-4,6],[-4,5],[-5,3],[-6,2],[-8,6],[-8,13],[-9,10],[-9,-1],[1,-1],[3,-2],[1,-1],[-3,-7],[-12,-1],[-4,-8],[35,-9],[9,-8],[17,-28],[15,-18],[20,-36],[3,-13],[-6,-5],[-15,-1],[4,-4],[1,-5],[0,-6],[-5,-17],[1,-3],[5,-2],[6,-3],[-7,-5],[-23,1],[-3,-5],[2,-8],[5,-9],[3,-3],[-9,-7],[-3,-1],[-2,1],[-6,3],[-3,0],[0,-1],[0,-2],[-1,-3],[-1,-2],[-5,-4],[-4,-4],[-1,-6],[4,-6],[-4,-4],[-34,-2],[-4,-2],[0,-5],[1,-3],[2,-4],[-2,-7],[-2,-4],[-3,-5],[-3,-3],[-4,-1],[3,-16],[-6,-7],[-5,-4],[2,-11],[-4,-3],[-10,-4],[-5,0],[-4,2],[-2,7],[0,7],[-2,4],[-4,2],[-4,-2],[-4,-6],[-1,-8],[2,-8],[3,-3],[8,-3],[-1,-7],[0,-2],[5,-6],[5,-2],[11,0],[17,5],[18,-8],[7,-5],[2,-8],[-4,-3],[-14,1],[-6,-2],[5,-10],[6,-8],[13,-10],[0,-5],[-5,0],[-2,-3],[1,-4],[3,-5],[0,-3],[-7,3],[-13,13],[-7,4],[-6,4],[-5,9],[-6,6],[-7,-1],[-3,-8],[1,-10],[3,-10],[5,-7],[8,-2],[9,-1],[8,-3],[5,-10],[-5,-1],[0,-6],[4,-6],[5,-3],[6,-1],[3,-1],[2,-2],[2,-3],[2,-8],[1,-1],[3,-2],[3,-8],[3,-2],[3,1],[0,3],[0,3],[-1,0],[2,8],[0,5],[2,2],[5,-2],[6,-8],[6,-11],[5,-5],[4,14],[2,0],[3,-2],[1,-3],[0,-13],[3,-7],[4,-5],[5,-1],[5,0],[-3,-4],[-4,-3],[-4,-1],[-4,2],[-7,12],[-3,2],[-13,-11],[-8,-5],[-3,6],[-1,4],[-2,2],[-2,0],[-2,-2],[-1,-4],[2,-1],[4,-1],[5,-10],[4,-3],[3,3],[3,2],[11,2],[4,-2],[1,-2],[2,-10],[1,-4],[-4,-9],[1,-7],[3,-4],[6,-1],[2,2],[3,8],[2,2],[6,-1],[6,-3],[-2,9],[4,0],[3,-3],[2,-6],[0,-8],[-2,-6],[-3,0],[-3,0],[-4,-4],[-3,-4],[-7,-4],[-3,-4],[-16,-26],[-11,-10],[-6,-8],[-7,-6],[-5,6],[-6,9],[-4,5],[1,-5],[1,-5],[-1,-5],[-1,-6],[2,-1],[1,-2],[0,-3],[1,-2],[-4,-2],[-8,-6],[-5,0],[-4,2],[-2,2],[-1,-1],[-36,-51],[-1,-1],[-8,4],[-1,1],[-3,-3],[-7,-18],[-22,-25],[-5,-12],[4,-10],[-2,-10],[-11,-23],[-1,-2],[0,-3],[-1,-8],[1,1],[0,-2],[1,-3],[0,-2],[-1,-2],[-1,0],[-1,-1],[-1,-3],[0,-12],[-1,-6],[-2,-3],[-3,-1],[-2,-3],[-1,-3],[-1,-1],[-6,-4],[-5,-8],[-5,-20],[-6,-19],[-2,-6],[-13,-12],[-13,0],[-3,-4],[-1,-8],[2,-4],[4,-1],[5,1],[-6,-14],[-4,-5],[-2,1],[-6,14],[-4,3],[-5,1],[-13,-14],[-1,-8],[-2,-5],[-3,-1],[-4,4],[3,6],[0,5],[-3,5],[-6,7],[-1,1],[-13,-30],[-6,-6],[-6,4],[1,-5],[0,-3],[-1,-3],[0,-5],[2,-13],[0,-4],[-2,-7],[-2,-6],[-3,-5],[-4,-3],[-5,2],[-2,5],[-1,8],[3,8],[-1,6],[-2,8],[-4,6],[-4,3],[-2,-9],[0,-36],[-2,-14],[-4,-2],[-4,5],[-4,6],[0,7],[2,6],[2,9],[2,8],[-1,7],[-5,-8],[-6,-12],[-2,-15],[1,-13],[-6,1],[-18,-1],[-3,-2],[-3,-2],[-4,-1],[-3,3],[-2,5],[-1,3],[-1,2],[-6,1],[-5,-2],[-5,-4],[-4,-5],[-3,-8],[1,-7],[4,-12],[-21,10],[-4,0],[-4,-4],[-10,-6],[-2,-2],[-5,-15],[-10,-11],[-11,-8],[-10,-10],[0,-6],[4,-16],[2,-14],[-1,-2],[-7,-2],[-2,-3],[-4,-4],[-6,-7],[-4,-1],[-13,8],[-1,8],[1,6],[-1,5],[-7,5],[1,2],[1,4],[0,2],[-4,3],[-7,10],[-15,5],[-3,5],[-6,9],[-6,5],[-7,-1],[-7,-7],[3,-3],[3,-3],[7,-2],[-3,-15],[3,-5],[7,-2],[9,-7],[-8,-5],[-4,-2],[-5,-1],[-1,-2],[3,-5],[11,-16],[1,-4],[1,-7],[-3,-2],[-5,3],[-9,9],[-23,28],[-8,4],[0,-5],[8,-19],[-6,-3],[-6,5],[-5,7],[-5,3],[-4,-4],[-1,-10],[0,-20],[0,-6],[-2,-10],[0,-5],[0,-18],[-3,-8],[-4,-4],[-3,2],[-1,10],[-6,-10],[-14,-4],[-7,-6],[2,-2],[4,-7],[-3,-4],[-6,-13],[-3,-7],[6,0],[-4,-10],[-6,1],[-11,13],[-5,-12],[5,-8],[8,-3],[7,-1],[-2,-7],[-3,0],[-4,0],[-3,-3],[-2,-6],[0,-5],[-2,-3],[-5,0],[-1,2],[-8,10],[-1,2],[-2,4],[-6,5],[-2,5],[1,8],[-3,4],[-5,3],[-4,3],[-5,6],[-5,4],[-4,-2],[2,-10],[-4,-2],[-15,6],[-12,1],[-5,-1],[-4,-4],[5,-6],[44,-18],[-5,-9],[-9,-3],[-18,0],[1,-6],[1,-2],[-5,-6],[-4,0],[-3,5],[-2,9],[0,9],[6,3],[13,0],[0,4],[-26,8],[-8,-4],[4,-4],[1,-5],[1,-5],[2,-6],[6,-15],[1,-6],[-40,13],[-13,0],[0,-4],[6,-1],[7,-3],[5,-5],[4,-6],[2,-6],[2,-8],[-1,-5],[-4,-3],[-6,3],[-5,4],[-6,2],[-6,-5],[-2,-5],[-1,-7],[-2,-7],[-4,-5],[9,0],[-12,-11],[-4,-1],[-2,-3],[-1,-15],[-3,-3],[-3,2],[-9,14],[-4,4],[-4,1],[-5,-1],[-4,-4],[9,-7],[5,-5],[3,-7],[-18,3],[-1,1],[-2,7],[-2,2],[-2,2],[-1,-2],[0,-4],[-1,-2],[1,-1],[-4,-6],[-7,-5],[-16,-4],[6,-6],[72,1],[8,-3],[5,-8],[2,-8],[-3,-3],[-4,3],[-2,8],[-2,0],[-3,-11],[-6,-3],[-8,2],[-16,10],[-5,-3],[-2,-11],[13,-10],[4,-2],[10,3],[5,1],[4,-4],[-3,-13],[-11,-1],[-20,6],[4,-9],[13,-5],[3,-7],[-1,-5],[-2,-4],[-3,-2],[-7,-2],[-2,-3],[-3,-2],[-2,-3],[-7,-3],[-3,0],[-5,2],[-5,0],[-1,1],[-1,2],[-1,3],[-1,4],[-9,12],[-4,4],[-6,0],[1,-2],[1,-6],[-13,0],[0,-4],[3,-2],[1,-4],[-2,-5],[-2,-5],[6,-4],[9,11],[6,-4],[-7,-18],[-4,-7],[-5,-3],[-3,-2],[-2,-5],[-3,-3],[-4,4],[0,4],[2,4],[2,4],[1,2],[-4,3],[-2,-5],[-3,-7],[-2,-7],[-6,-5],[-5,-1],[-12,2],[1,6],[1,2],[-5,4],[-5,1],[-11,-1],[7,11],[24,-4],[7,10],[-12,5],[-5,4],[-4,7],[1,1],[0,1],[1,2],[-6,-2],[-10,-7],[-9,-9],[-4,-8],[-1,-3],[-5,2],[-5,4],[-2,3],[-1,5],[1,21],[-1,2],[-2,5],[-1,3],[1,3],[2,5],[1,2],[-1,9],[-4,0],[-4,-3],[-4,1],[-2,4],[-5,22],[-2,5],[-3,4],[-4,3],[-3,2],[2,3],[3,9],[-6,-1],[-8,-9],[-5,-2],[-5,2],[-4,6],[-5,3],[-5,-3],[35,-30],[8,-12],[5,-12],[7,-19],[3,-18],[-4,-10],[0,-4],[12,-9],[3,-4],[3,-5],[1,-2],[0,-11],[2,-7],[9,-14],[2,-11],[-1,-7],[-2,-10],[0,-4],[2,-5],[-1,-3],[-3,-1],[-3,-1],[-1,1],[-7,6],[-3,1],[-17,0],[5,-7],[42,-19],[1,-7],[1,-5],[2,-4],[2,-2],[-6,-2],[-20,-19],[-2,2],[0,7],[-3,18],[1,3],[-1,2],[-4,1],[-2,-2],[-1,-5],[-3,-19],[-1,-4],[0,-5],[-1,-5],[-2,-2],[-6,-3],[4,-8],[-9,-15],[-5,-7],[-6,-2],[-3,2],[-4,8],[-3,1],[-14,0],[-12,-4],[-6,-5],[-3,-7],[0,-10],[4,-3],[6,-3],[3,-8],[-36,2],[-4,2],[-4,2],[-5,9],[-1,1],[-13,24],[-12,19],[-3,2],[-6,-3],[-2,-14],[-5,-4],[-6,-1],[-4,-3],[-3,-6],[0,-9],[12,-21],[1,-2],[0,-5],[0,-5],[0,-4],[-2,-2],[-3,-2],[-4,0],[-3,0],[4,-3],[3,-5],[1,-7],[-1,-7],[0,-6],[2,-8],[3,-6],[4,-3],[8,2],[4,0],[5,-6],[2,-5],[2,-6],[2,-6],[3,-3],[0,-4],[-2,0],[-2,-1],[-3,-3],[23,-15],[6,3],[9,-2],[9,-6],[6,-5],[-23,-16],[-7,-2],[-1,3],[8,15],[-5,3],[-5,-1],[-4,-4],[-3,-6],[-1,-8],[0,-10],[1,-9],[0,-5],[-2,-8],[-1,-2],[-5,-10],[-2,-8],[0,-12],[0,-7],[-1,-5],[-6,-5],[6,-3],[-3,-8],[-9,-13],[3,-3],[4,-6],[3,-5],[-3,-2],[-13,-3],[-3,-2],[-2,-6],[1,-6],[-1,-6],[-6,-2],[-3,-1],[-2,-5],[-1,-7],[0,-7],[1,-7],[4,-11],[1,-4],[-1,-4],[-4,-3],[-1,-3],[0,1],[0,-5],[0,-5],[0,1],[1,-1],[1,-1],[1,-3],[-2,-6],[-1,-2],[-1,-3],[-1,-3],[1,-4],[4,-2],[14,4],[-1,-6],[-2,-3],[-3,-2],[-3,-1],[0,-5],[5,-2],[0,-7],[-1,-9],[0,-9],[1,-11],[3,-3],[13,3],[5,3],[5,1],[5,-6],[3,-7],[2,-6],[0,-7],[-2,-6],[-2,-8],[-1,-10],[-1,-9],[-5,-4],[-5,1],[-4,2],[-4,3],[-4,7],[-10,25],[-6,10],[-8,5],[0,-8],[1,-6],[4,-10],[-10,3],[-4,4],[1,9],[-10,10],[-12,3],[-24,-1],[3,-6],[5,-3],[9,1],[19,-12],[-2,-10],[-9,-7],[-10,-3],[-7,0],[0,-4],[2,-1],[5,-4],[-8,-3],[-12,5],[-6,-6],[35,-8],[7,-8],[-7,-3],[-4,1],[-10,6],[-6,2],[-19,-2],[0,-4],[10,1],[4,-2],[3,-7],[-12,-6],[-13,-1],[8,-7],[28,-6],[0,-4],[-26,1],[-3,-3],[2,-3],[7,-3],[5,-5],[7,-2],[3,-1],[0,-5],[-12,0],[0,-3],[11,-6],[3,-3],[1,-7],[-2,-4],[-3,-3],[-2,-6],[1,-5],[2,-5],[2,-4],[3,-2],[3,0],[2,3],[1,3],[3,2],[2,-2],[0,-4],[-1,-4],[-3,-2],[-3,-1],[-3,-1],[-3,-3],[-2,-4],[-2,5],[-3,6],[-3,2],[-3,-12],[-5,-5],[-1,-6],[1,-3],[8,-15],[8,-8],[9,-4],[1,-7],[20,-13],[-8,-2],[-9,1],[-17,9],[4,-12],[7,-5],[9,-3],[7,-4],[-12,1],[-5,1],[-15,15],[-4,2],[-6,1],[0,-4],[6,-4],[9,-8],[8,-11],[5,-10],[4,-14],[-5,-5],[-7,-4],[-5,-9],[9,-8],[-1,-15],[-2,-5],[-4,-5],[5,-8],[1,-7],[-3,-5],[-7,0],[3,-2],[8,0],[2,-2],[2,-3],[0,-4],[0,-4],[-3,-1],[-2,-3],[-2,-6],[-1,-8],[-1,-8],[1,-2],[2,-3],[2,-3],[-5,-6],[-2,-1],[14,2],[7,-1],[4,-6],[-17,-5],[-6,-7],[-2,-16],[-1,-7],[1,-3],[6,-6],[5,-1],[2,-1],[-1,-8],[1,-4],[2,-7],[1,-2],[4,3],[3,-1],[1,-3],[10,-33],[-2,-1],[-3,-2],[-2,-2],[0,-3],[1,-7],[2,-1],[2,2],[2,-3],[1,-8],[-1,-6],[0,-5],[4,-5],[5,-2],[5,1],[1,-2],[-3,-9],[-4,-4],[-9,-5],[-7,-10],[-11,-8],[-6,-3],[-2,-3],[1,-2],[1,-2],[4,1],[6,3],[3,1],[5,-2],[6,-9],[9,-4],[15,-14],[-11,-8],[0,-4],[4,-4],[6,0],[4,1],[1,0],[5,5],[5,3],[37,7],[7,-1],[6,-5],[4,-5],[10,-7],[4,-6],[-4,-5],[-10,-7],[-2,-3],[1,-8],[4,-13],[1,-7],[4,-12],[9,-7],[20,-3],[0,4],[-4,17],[9,17],[15,13],[29,9],[8,-1],[7,-6],[6,-21],[0,-7],[-2,-6],[-2,-5],[-4,-2],[0,-4],[8,-1],[7,-5],[12,-14],[10,-8],[1,-4],[2,-9],[1,-4],[8,-14],[10,-8],[23,-10],[-4,-3],[-7,-8],[-4,-5],[0,-5],[4,-5],[2,-3],[2,-4],[4,4],[8,9],[5,4],[5,1],[3,-1],[9,-5],[19,1],[6,-4],[0,-2],[-1,-5],[0,-6],[1,-4],[1,-2],[6,-6],[0,-4],[-3,-1],[-4,1],[-3,0],[-3,-4],[39,-16],[10,-12],[-11,-7],[-45,19],[-9,12],[-15,25],[4,-21],[11,-16],[13,-14],[9,-14],[-5,-1],[-4,3],[-6,10],[1,-14],[6,-9],[14,-10],[6,-9],[4,-3],[5,0],[3,2],[3,3],[1,5],[0,1],[0,-18],[0,-9],[1,-5],[6,-19],[1,-9],[2,0],[1,9],[1,12],[-1,11],[-3,9],[6,3],[7,2],[7,-2],[10,-10],[10,-3],[4,-6],[1,-10],[0,-20],[1,-9],[13,-19],[2,-8],[-4,16],[-6,15],[-2,15],[3,17],[11,7],[3,-3],[1,-2],[0,-10],[0,-9],[1,-8],[13,-44],[9,-28],[6,-7],[12,-5],[6,-4],[5,-5],[1,-1],[0,-2],[0,-4],[0,-2],[4,-7],[2,-2],[3,1],[0,3],[-1,6],[-1,3],[5,-1],[5,-3],[-1,-8],[0,-24],[0,-5],[-9,1],[-4,3],[-20,35],[-9,13],[-8,5],[2,-8],[10,-18],[1,-10],[-3,-10],[-17,-29],[-5,-5],[-7,-1],[-12,0],[-6,-1],[-4,-5],[-2,-8],[5,0],[11,6],[70,3],[12,-7],[-3,-14],[-5,-8],[-6,-4],[-17,-6],[-5,0],[-4,3],[-3,4],[-3,9],[-2,4],[-3,-11],[-6,-7],[-7,-5],[-21,-7],[-6,-6],[-1,-9],[-10,0],[-1,-2],[-1,-5],[-1,-4],[-2,-3],[-2,-2],[14,0],[-2,-5],[-3,-5],[-4,-5],[-3,-2],[-3,2],[-2,3],[-3,4],[-3,0],[5,-11],[2,-7],[-2,-3],[-4,-2],[-7,-8],[-12,-6],[-15,-16],[-16,-7],[-7,-8],[-13,-18],[-9,-9],[-10,-2],[-21,3],[0,-4],[10,-8],[-4,-4],[-8,1],[-4,-1],[6,-3],[4,-5],[-2,-8],[5,-5],[7,-3],[5,-1],[-8,-7],[-17,1],[-16,6],[-8,8],[3,3],[3,1],[4,-1],[3,-3],[-1,5],[-1,12],[-2,4],[-3,1],[-6,-7],[-4,-2],[-2,1],[-3,6],[-3,1],[-1,-1],[-3,-6],[-2,-1],[-3,-3],[0,-6],[2,-7],[2,-5],[-9,-6],[-4,-1],[-3,1],[-6,5],[-3,1],[38,-40],[-10,-3],[-4,2],[0,-7],[21,0],[7,4],[3,-1],[2,-7],[2,0],[9,25],[18,8],[20,-4],[16,-9],[-2,-2],[-3,-4],[-1,-2],[8,-3],[4,1],[3,6],[-7,20],[-2,9],[13,0],[-11,8],[-5,6],[-3,10],[16,-2],[7,-3],[8,-7],[0,-2],[1,-8],[1,-2],[19,-13],[-4,-7],[-4,0],[-6,3],[-5,0],[6,-4],[9,-3],[9,-5],[4,-10],[-2,-9],[-5,-4],[-15,-1],[-4,-1],[-5,-3],[-4,-1],[-5,3],[-3,3],[-8,2],[-4,1],[-23,-4],[-8,4],[1,2],[1,7],[0,3],[-5,0],[-5,-2],[-5,-5],[-4,-5],[4,-3],[3,-4],[2,-5],[2,-5],[0,-4],[-9,1],[-3,-3],[2,-8],[16,-10],[7,-2],[7,-6],[7,-9],[4,-11],[-25,23],[-6,-1],[0,-7],[4,-5],[6,-2],[4,0],[2,-4],[1,-7],[3,-5],[5,3],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-4],[7,4],[3,0],[1,-6],[-1,-7],[-2,-5],[-2,-3],[-4,3],[-6,2],[-10,-4],[-10,-6],[-5,-6],[3,1],[3,-1],[2,-3],[2,-5],[-27,-14],[-8,-2],[4,4],[8,5],[3,3],[-3,4],[1,2],[2,2],[0,4],[-4,0],[-4,-1],[-4,-3],[-4,-6],[-3,-3],[-9,-1],[-4,-2],[-2,-4],[-6,-14],[-4,-3],[-15,1],[1,-3],[1,-7],[0,-3],[-6,4],[-4,0],[-3,-4],[5,-9],[-5,-10],[-7,-12],[-4,-13],[0,-7],[2,-5],[0,-5],[-2,-8],[-4,-4],[-5,-3],[-5,0],[-3,3],[-2,-7],[0,-8],[0,-17],[-4,4],[-3,5],[-1,7],[2,8],[-2,8],[-1,2],[-3,4],[-2,0],[-2,-2],[-2,0],[-4,4],[-3,3],[-5,12],[-3,4],[0,-8],[3,-13],[5,-10],[-3,-10],[-2,-4],[-2,-2],[-1,3],[0,6],[1,7],[1,4],[-9,5],[-1,11],[2,14],[-3,11],[0,4],[4,9],[1,18],[0,18],[-1,8],[0,3],[3,14],[0,7],[-3,3],[-3,-2],[-4,-5],[-1,-6],[-1,-18],[-1,-9],[-3,-3],[-3,2],[-9,14],[0,9],[6,13],[1,8],[-1,7],[-2,6],[-3,5],[-3,4],[4,-20],[-4,-9],[-3,-7],[-5,-5],[-6,-3],[3,-13],[-1,-12],[-1,-12],[5,-8],[-3,-9],[-2,-13],[-2,-9],[-2,3],[-3,-3],[-2,-3],[-1,-2],[2,-4],[2,-2],[3,-2],[2,0],[0,-4],[-2,-5],[3,-3],[4,-3],[-3,-10],[-5,-4],[-6,0],[-6,3],[-5,1],[2,-7],[4,-6],[9,-7],[0,-4],[-6,0],[2,-3],[2,-1],[-8,0],[-21,19],[-9,5],[0,-4],[5,-4],[1,-6],[-2,-18],[-3,-10],[0,-5],[2,-2],[2,-1],[6,-6],[-8,-5],[-34,9],[10,-17],[1,-8],[-5,-8],[-15,1],[-8,-2],[0,-11],[-31,1],[-9,3],[-3,4],[-5,10],[-4,2],[-3,-1],[-9,-6],[-5,-1],[4,-2],[9,-2],[3,-4],[0,-5],[-2,-5],[-2,-4],[-2,-2],[6,-5],[11,2],[6,-2],[0,-3],[-6,-8],[-4,-8],[-4,-6],[-7,1],[-16,12],[-10,2],[-6,-10],[13,0],[5,-5],[5,-11],[-7,0],[-24,-9],[-96,12],[-96,13],[0,-4],[3,-2],[3,-4],[2,-5],[-2,-5],[-4,-1],[-12,3],[-5,-2],[0,-4],[3,2],[4,2],[2,-2],[2,-6],[6,4],[12,-7],[6,5],[4,7],[4,2],[3,-2],[6,-9],[1,0],[0,-2],[0,-8],[1,-5],[4,-3],[3,1],[3,2],[1,8],[2,9],[2,9],[3,5],[4,-1],[14,-9],[4,-4],[33,1],[6,-2],[5,-7],[3,-3],[12,-2],[5,-6],[-1,3],[-1,7],[0,3],[10,-4],[3,0],[-3,-11],[2,-10],[5,-6],[8,-2],[-3,-3],[-1,-1],[0,-3],[7,0],[0,-5],[-2,-5],[3,-3],[11,-4],[15,-16],[-7,-5],[-14,0],[-6,-3],[3,-9],[-6,-6],[-10,-4],[-7,-2],[-1,-1],[-4,-5],[-1,-2],[-2,1],[-4,3],[-2,1],[-34,7],[-16,11],[-27,11],[-8,-5],[9,-2],[59,-35],[9,-1],[4,-3],[2,-8],[1,-5],[-1,-5],[-1,-5],[1,-6],[3,1],[4,2],[4,3],[1,2],[3,-3],[1,-3],[1,-14],[-40,9],[5,-7],[10,-9],[4,-5],[-1,-6],[1,-4],[3,-2],[3,1],[2,2],[0,4],[-2,5],[16,4],[6,-1],[-3,-11],[-1,-1],[-5,1],[-2,0],[0,-2],[0,-3],[0,-4],[-1,-3],[-4,-2],[-10,-2],[0,-4],[7,-2],[20,-14],[-3,-3],[-1,-1],[4,-4],[3,-6],[2,-8],[1,-9],[-1,-8],[-1,-1],[-3,2],[-3,1],[-2,-2],[1,-3],[2,-5],[3,-2],[-9,-19],[-16,12],[-16,21],[-13,10],[4,-10],[12,-12],[4,-10],[-2,0],[-4,-1],[-2,1],[6,-12],[10,-14],[5,-12],[-6,-3],[1,-7],[-1,-5],[-3,-1],[-4,1],[5,-5],[5,-3],[5,-3],[4,-9],[-3,-5],[-2,-1],[-3,1],[-2,5],[-8,-6],[-1,-4],[3,-6],[-5,4],[-6,18],[-4,2],[-4,-6],[2,-8],[6,-15],[3,1],[5,-1],[3,-11],[2,-5],[3,2],[3,5],[2,-2],[1,-5],[1,-10],[1,-3],[8,-10],[2,-5],[-4,0],[-11,8],[2,-9],[9,-9],[0,-6],[-3,-7],[-4,0],[-5,4],[-4,5],[-5,14],[-2,2],[-1,-12],[-3,-4],[-5,-1],[-11,3],[0,5],[0,5],[-1,5],[-1,5],[3,0],[3,0],[2,-2],[3,-2],[-36,45],[-3,0],[-2,-3],[-1,-5],[1,-4],[2,-5],[8,-11],[16,-9],[-2,-2],[-2,-5],[-2,-1],[2,-6],[0,-6],[-1,-5],[-3,-3],[-5,6],[-5,5],[-13,5],[4,-8],[-2,-4],[-2,2],[-5,2],[0,-4],[60,-77],[8,-9],[-2,-4],[-4,2],[-14,11],[-4,5],[-22,39],[-34,33],[3,-11],[3,-7],[9,-11],[16,-12],[12,-18],[2,-5],[2,-5],[2,-3],[4,-2],[3,-2],[9,-12],[4,-6],[-4,-4],[6,0],[5,-2],[4,-6],[2,-8],[-6,0],[0,-4],[4,0],[0,-4],[-19,2],[-8,4],[-9,6],[2,-5],[5,-7],[3,-4],[2,-9],[-1,-5],[-3,-1],[-6,3],[2,-6],[3,-2],[4,0],[2,-4],[2,-8],[-1,-2],[-3,-2],[-2,-3],[-3,-4],[-8,-8],[-2,-2],[-1,2],[-1,6],[0,7],[0,5],[-2,-3],[-2,-1],[-3,1],[-3,3],[3,-7],[2,-2],[2,-2],[-5,-7],[-2,-2],[0,-4],[7,-4],[0,-4],[-8,0],[0,-4],[21,-1],[11,-4],[8,-25],[6,-15],[2,-11],[-8,3],[4,-10],[-2,-2],[-4,-1],[-4,-3],[-1,-7],[1,-6],[4,-5],[6,-2],[-5,-4],[-5,-2],[-3,-4],[1,-11],[-16,4],[-7,-3],[-4,-13],[10,-8],[-2,-5],[-3,-3],[-1,-2],[4,-6],[-21,-15],[-5,-11],[7,-19],[-8,-9],[-2,-14],[2,-16],[4,-13],[8,-17],[3,-4],[3,-2],[2,1],[2,0],[2,-5],[5,-14],[-4,-3],[2,-7],[3,-8],[3,-7],[-4,0],[-10,5],[0,1],[1,3],[-1,2],[-2,2],[-1,-1],[-1,-1],[-1,-2],[-1,-2],[-1,-3],[0,-3],[-1,-3],[-1,-1],[-1,1],[-1,2],[-5,1],[-6,3],[-4,1],[2,-5],[2,-3],[3,-3],[2,-2],[0,-4],[-5,0],[-4,-6],[-1,-9],[1,-13],[3,-7],[3,-5],[2,-4],[-1,-7],[-8,-16],[0,-3],[1,-16],[0,-7],[-1,-6],[-8,-29],[0,-5],[2,-7],[4,-3],[3,3],[4,4],[3,2],[2,-2],[1,-5],[-1,-5],[-2,-4],[-3,-1],[-7,4],[-4,1],[-5,-1],[-6,-6],[-4,-1],[-1,-3],[2,-7],[4,-12],[1,-19],[-1,-11],[-2,-9],[-3,-4],[-5,-2],[-5,1],[-6,6],[-4,-1],[-4,-2],[-3,-2],[-2,-2],[-3,-5],[-6,-17],[-1,-3],[0,-3],[0,-6],[-1,-13],[-1,-14],[-2,-5],[-7,-1],[-2,-6],[-2,-11],[-13,-32],[-7,-21],[-8,-49],[-7,-48],[-2,-3],[-3,-2],[-2,-5],[-1,-6],[-2,-5],[-4,-7],[-11,-12],[-5,-8],[-16,-42],[-6,-10],[-5,1],[-5,6],[-8,5],[9,20],[2,11],[-6,5],[-14,-7],[-7,1],[-5,10],[-3,-3],[-1,2],[-2,3],[-2,2],[-4,1],[-4,6],[-2,1],[-4,-5],[-6,-10],[-5,-5],[-5,8],[2,4],[3,7],[1,6],[-3,3],[-4,-1],[-10,-11],[-12,-7],[-2,-3],[0,-9],[-2,-2],[-5,5],[-2,3],[-3,4],[-3,4],[-4,1],[-4,-1],[-3,-3],[-4,-8],[-2,-6],[0,-3],[-1,-3],[-13,-1],[-4,2],[-3,3],[6,4],[2,0],[-2,5],[-6,15],[-6,-10],[-11,-8],[-11,-3],[-9,7],[-2,3],[-2,-1],[-2,-3],[-3,-1],[-10,0],[-2,2],[-1,11],[-2,3],[-2,0],[-7,-3],[-2,-1],[1,-3],[2,-10],[1,-3],[-17,9],[-10,2],[-7,-5],[-6,-2],[-9,2],[-7,0],[0,-10],[-5,-3],[-5,5],[-5,6],[-5,4],[-14,0],[-7,-4],[-4,-8],[-1,-5],[0,-7],[0,-6],[2,-3],[4,-2],[2,-4],[1,-5],[1,-5],[8,-14],[3,-8],[3,-10],[-4,-2],[-3,-4],[-3,-4],[-3,-4],[-2,-3],[-1,3],[-2,6],[-5,0],[-2,-5],[-2,-2],[-2,1],[-2,1],[-2,1],[-8,0],[-3,0],[0,3],[4,5],[-3,4],[-2,4],[-1,5],[0,7],[-6,-8],[-3,4],[-1,3],[0,1],[-3,-2],[-6,-5],[-3,-1],[-7,-2],[-6,-6],[-9,-17],[-10,-15],[-7,-6],[-5,-3],[-5,-5],[-4,-11],[-3,-11],[-3,-5],[-11,-8],[-10,-19],[-8,-24],[-3,-25],[-1,-22],[1,-10],[3,-10],[4,-7],[11,-10],[3,-7],[1,-7],[0,-6],[0,-6],[2,-8],[3,-4],[6,-8],[12,-23],[2,-11],[-1,-12],[-4,-8],[-15,-21],[-5,-4],[-3,-4],[-13,-28],[-5,-9],[-5,-5],[-7,-2],[-18,0],[-8,2],[-8,4],[-22,17],[-7,4],[-9,1],[-4,-1],[-7,-5],[-4,-2],[-4,0],[-14,4],[-37,-4],[-5,-2],[-3,-4],[-2,-6],[-4,-5],[-4,-2],[-12,2],[-10,-3],[-25,-21],[-8,-4],[-20,-2],[-9,2],[-45,21],[-15,0],[-6,3],[-3,0],[-2,1],[-4,6],[-2,1],[-6,2],[-6,-2],[-3,-2],[-4,-5],[-3,-1],[-3,1],[-4,3],[-3,0],[-5,-2],[-6,-4],[-4,0],[-1,10],[9,21],[1,0],[2,0],[2,-2],[2,-4],[5,-4],[7,0],[6,4],[4,6],[-2,8],[1,3],[3,0],[4,-3],[-3,16],[-13,26],[-3,17],[3,18],[8,12],[19,17],[3,5],[3,7],[3,8],[1,8],[-2,11],[-4,7],[-4,4],[-4,10],[-5,-2],[-6,1],[-2,11],[-7,0],[-5,2],[-3,9],[3,1],[3,2],[1,5],[1,8],[-4,25],[-10,12],[-11,7],[-8,13],[-3,9],[-1,4],[0,9],[-1,3],[-1,3],[-3,3],[-2,1],[-3,4],[-2,10],[-1,11],[-2,8],[-5,5],[-4,4],[-3,5],[-1,12],[-2,6],[-25,39],[-2,4],[-10,28],[-3,6],[-3,19],[-1,5],[-7,18],[-3,14],[-11,9],[-4,8],[54,-28],[2,-2],[4,-9],[2,-1],[2,-2],[4,-5],[3,-2],[2,1],[4,3],[2,0],[12,-1],[5,1],[5,5],[4,8],[1,9],[-1,8],[-13,8],[-5,13],[-9,27],[-24,21],[-7,14],[10,21],[16,7],[33,-14],[16,7],[4,7],[4,11],[4,13],[2,12],[-2,12],[-8,27],[-5,26],[-4,7],[-8,3],[-7,-1],[-11,-5],[-4,0],[-5,0],[-4,2],[-14,19],[-3,8],[-2,13],[-4,6],[-5,5],[-4,10],[-6,22],[2,13],[-1,7],[-18,15],[-1,2],[0,2],[0,2],[-1,2],[-2,1],[-4,2],[-2,1],[-5,12],[-3,3],[-9,2],[-7,6],[-10,4],[-5,7],[-3,10],[-1,13],[0,3],[3,5],[0,2],[0,3],[-1,6],[0,3],[-1,4],[-1,4],[-3,4],[-8,5],[-9,8],[-6,11],[-1,11],[-2,1],[-5,7],[5,9],[-1,8],[-8,16],[-1,4],[-1,12],[0,5],[-2,1],[-8,-1],[-4,2],[9,10],[3,5],[-3,2],[-6,0],[-6,2],[-5,4],[-5,6],[8,0],[3,1],[4,3],[-4,3],[-4,1],[-9,0],[0,4],[3,4],[2,4],[2,3],[6,3],[2,3],[0,4],[-2,3],[1,8],[-2,5],[-3,4],[-3,4],[-1,1],[-1,3],[-1,3],[-2,1],[-2,-1],[-5,-3],[-2,0],[-4,7],[4,7],[7,9],[5,9],[-13,0],[6,5],[2,6],[0,6],[-9,22],[-1,2],[-3,-1],[-2,-2],[-2,-4],[-2,-1],[-4,-9],[-4,-40],[-4,-12],[-2,11],[-6,-2],[-5,0],[3,15],[-3,0],[-3,0],[-2,2],[-3,2],[3,6],[0,8],[-2,9],[-1,10],[1,9],[3,7],[3,4],[4,4],[-4,5],[-5,3],[2,1],[4,4],[-6,6],[-2,1],[4,9],[-2,33],[2,16],[-1,1],[-3,2],[-2,0],[-1,-8],[-4,-4],[-3,1],[-2,5],[-1,10],[-2,6],[-2,5],[-2,6],[3,12],[18,3],[4,9],[-6,-4],[-8,-2],[-8,0],[-7,2],[-14,10],[-6,1],[1,-11],[-4,-2],[-5,1],[-4,3],[0,6],[0,7],[27,31],[2,5],[-1,4],[-5,1],[-6,-1],[-4,-2],[-7,10],[-5,12],[-6,9],[-9,1],[6,8],[4,3],[4,1],[-3,13],[3,6],[15,6],[0,4],[-4,0],[0,4],[3,1],[1,1],[2,6],[-8,6],[2,10],[12,25],[3,14],[1,9],[-2,7],[-2,6],[-1,6],[0,6],[5,4],[-1,3],[-1,1],[-1,4],[7,2],[3,11],[3,39],[1,4],[3,1],[3,1],[3,1],[3,4],[1,6],[-4,0],[-4,1],[-2,5],[-2,16],[-3,5],[-3,4],[-3,6],[-1,14],[4,9],[16,9],[-3,8],[-6,-2],[-12,-9],[-15,1],[-7,-1],[0,-9],[-4,-3],[-9,0],[-14,-15],[-3,-2],[-2,-2],[-6,-11],[-3,-3],[-3,-1],[-5,0],[-4,2],[-3,3],[1,-3],[3,-9],[-9,3],[-3,9],[2,13],[4,15],[7,17],[7,12],[15,20],[-4,4],[4,7],[4,4],[9,5],[-5,9],[-6,-3],[-7,-10],[-4,-8],[-3,7],[-6,21],[-1,8],[-2,0],[2,-17],[-1,-20],[-3,-21],[-5,-17],[-7,-14],[-9,-11],[-19,-17],[3,8],[3,7],[3,5],[4,4],[0,4],[-4,0],[-8,-5],[-3,1],[-1,8],[1,6],[3,5],[4,1],[10,1],[-2,5],[-6,9],[1,14],[-5,0],[-2,-6],[-2,-7],[-3,-7],[-3,-4],[-4,-2],[-3,1],[2,7],[9,24],[6,12],[2,6],[3,8],[-3,-6],[-12,-19],[-4,-4],[-2,-3],[-1,-3],[-2,-7],[-1,-2],[-8,-5],[-7,4],[-8,0],[-6,-16],[-3,4],[0,4],[1,5],[0,6],[0,5],[-5,13],[1,10],[4,4],[10,-2],[-2,12],[3,6],[4,4],[5,6],[-10,8],[-2,3],[-1,3],[-2,6],[-1,3],[1,3],[1,2],[1,1],[1,0],[0,18],[1,4],[3,4],[2,2],[2,3],[2,6],[-6,0],[1,7],[-1,3],[-3,1],[-1,5],[0,5],[2,6],[0,5],[-3,8],[-10,18],[1,12],[1,5],[-2,2],[-7,0],[-3,5],[1,10],[3,10],[6,3],[-2,8],[2,5],[3,5],[2,7],[1,5],[-1,21],[-1,3],[-3,1],[-4,2],[-1,6],[0,14],[-1,6],[-1,6],[1,2],[0,2],[1,4],[-14,6],[-8,5],[-3,8],[3,9],[6,5],[12,8],[-12,-1],[-5,3],[-2,8],[1,8],[3,6],[18,29],[7,6],[28,5],[10,-4],[3,-17],[3,-13],[4,-13],[6,-11],[4,-6],[3,0]],[[54756,84415],[-7,-1],[-6,-7],[-10,-21],[7,-17],[0,-9],[-4,-15],[0,-5],[-1,-3],[-1,-1],[-3,-2],[-2,-1],[-1,-5],[-1,-9],[-1,-5],[-12,-26],[-1,-9],[-2,-16],[-5,-6],[-6,-4],[-6,-5],[1,-5],[2,-3],[3,-2],[3,-2],[-5,-6],[-4,-6],[-8,-16],[2,-8],[2,-12],[-1,-12],[-4,-5],[-3,-6],[-4,-31],[-3,-11],[-1,0],[-13,-9],[-2,-3],[-2,-5],[-1,-6],[0,-6],[-1,-6],[-1,-12],[-16,-60],[-3,-12],[0,-14],[-1,-5],[-3,-6],[-3,-5],[-2,-2],[-3,-2],[-2,-5],[-2,-13],[0,-3],[2,-2],[0,-3],[-1,-3],[-2,-6],[-1,-3],[0,-10],[-1,-7],[-2,-5],[-4,-11],[-3,-13],[-3,-12],[-2,-11],[0,-5],[0,-13],[-1,-6],[-4,-9],[-1,-6],[-2,-9],[-14,-39],[-5,-8],[-6,-5],[-6,0],[-4,6],[-1,6],[1,13],[0,6],[-4,16],[2,13],[0,15],[0,25],[2,9],[-2,11],[-3,11],[-1,11],[2,51],[1,6],[4,19],[7,13],[1,5],[2,12],[46,139],[5,6],[6,3],[8,0],[8,3],[4,7],[5,22],[12,37],[15,33],[12,35],[5,44],[1,6],[2,3],[6,3],[4,5],[1,6],[1,33],[1,10],[6,8],[9,16],[5,5],[5,3],[3,0],[2,-9],[2,-1],[3,2],[2,5],[2,0],[0,-3],[0,-1],[1,-2],[0,-2],[2,-3],[1,-2],[1,-4],[0,-3]],[[55288,84740],[3,-3],[8,-17],[2,-5],[-20,-2],[-8,-9],[-1,-22],[-3,6],[-4,3],[-2,-2],[0,-7],[-3,-4],[-2,-7],[0,-6],[3,-7],[-11,-3],[-10,-1],[-4,2],[-5,5],[-4,1],[-3,-1],[-1,-4],[1,-5],[1,-6],[-4,-20],[-5,-15],[-2,-6],[-1,-3],[-1,-5],[-1,-6],[2,-1],[12,-4],[-3,-10],[-2,-8],[-1,-8],[0,-9],[-2,-8],[-4,-9],[-2,-7],[4,-6],[-2,-10],[1,-5],[4,-3],[5,1],[-2,-3],[-2,-9],[11,-6],[11,-2],[1,2],[0,4],[2,2],[3,-2],[5,-4],[1,-2],[2,-4],[2,-6],[1,-9],[-1,-7],[-5,-3],[-8,0],[-1,1],[-4,3],[-1,0],[-2,-1],[-3,-5],[-2,-2],[-9,-2],[-9,-7],[-8,-10],[-6,-11],[-11,-11],[-3,-8],[2,-12],[2,-1],[6,1],[2,-2],[1,-18],[-10,-6],[0,-2],[-24,-7],[-8,-5],[0,-4],[4,0],[0,-4],[-6,-2],[-35,-23],[-7,-6],[-5,-10],[19,0],[-7,-6],[-20,-12],[-4,-8],[-2,-31],[3,-7],[5,-4],[10,-5],[-16,0],[0,-4],[4,-4],[-7,-8],[-3,-4],[-3,-13],[-4,-4],[-26,-15],[-9,-2],[-9,6],[18,38],[1,5],[-1,6],[-1,7],[4,5],[10,5],[4,4],[2,8],[3,16],[2,7],[-7,-5],[-6,-9],[-6,-5],[-6,3],[0,4],[4,5],[3,8],[1,8],[-4,3],[1,3],[2,6],[1,3],[-12,7],[-7,50],[-17,17],[1,12],[4,11],[10,10],[4,10],[1,12],[-1,9],[3,8],[0,3],[-3,2],[-2,3],[-1,3],[-3,6],[0,3],[0,7],[-1,4],[-3,8],[-3,11],[-2,14],[0,14],[4,22],[9,17],[46,56],[38,78],[10,13],[14,8],[4,-1],[4,-3],[5,-1],[4,3],[1,4],[2,9],[1,6],[4,11],[5,9],[6,7],[6,5],[7,1],[5,-3],[4,-7],[3,-11],[0,-3],[0,-3],[-1,-2],[-1,-2],[1,-4],[1,-1],[1,-2],[1,-2],[1,-5],[1,-5],[6,-8],[2,15],[4,7],[5,6],[2,11],[-1,3],[-2,5],[-1,4],[4,2],[17,4],[0,-4],[-4,-10],[5,-6],[7,0],[0,8],[4,4],[6,2],[5,0],[4,-2],[-2,-4],[1,-5],[2,-7],[3,-6],[4,-2]],[[55353,84804],[9,0],[4,-2],[5,-5],[-1,-3],[-2,-2],[-2,0],[-3,0],[-4,-7],[-13,5],[-6,-4],[-6,-6],[-12,-6],[-6,-10],[4,-4],[2,-3],[0,-4],[0,-6],[-8,-16],[-1,-4],[-4,1],[-4,3],[-4,4],[-4,5],[-10,22],[1,7],[2,4],[6,9],[2,6],[1,6],[2,5],[4,5],[4,2],[10,0],[4,4],[2,1],[4,-2],[5,-1],[5,4],[1,-9],[4,-2],[9,3]],[[53260,84853],[0,-10],[1,-4],[1,-2],[-3,-17],[-1,-3],[-3,-4],[-3,1],[-1,4],[2,7],[-5,2],[-4,-5],[-4,-10],[-2,-16],[-2,-4],[-3,-3],[-6,2],[-2,-3],[-2,-5],[-3,-3],[-4,0],[-2,3],[-2,3],[-1,2],[-8,1],[-1,2],[-1,7],[-1,5],[-2,6],[-1,5],[1,5],[3,2],[8,-1],[4,0],[-6,4],[-6,0],[-6,2],[-2,9],[3,10],[5,3],[12,-3],[25,0],[6,3],[5,5],[5,3],[6,-3]],[[53279,84955],[2,-12],[0,-13],[0,-26],[-2,-11],[-7,-4],[-7,-1],[-13,-12],[-15,6],[-7,-5],[-5,11],[-7,3],[-8,-3],[-7,-7],[-3,-6],[-1,-4],[-1,-2],[-2,0],[-3,2],[-9,10],[0,-20],[-2,0],[-2,15],[-1,3],[-8,12],[-3,5],[1,8],[5,9],[28,31],[9,4],[7,8],[4,3],[5,0],[8,-2],[4,2],[-1,6],[0,6],[2,5],[3,3],[-1,6],[-1,2],[5,4],[4,0],[10,-4],[3,-13],[6,-6],[5,-4],[5,-9]],[[55369,85036],[-11,-10],[-11,-5],[-10,7],[-8,24],[10,0],[7,-5],[16,-4],[7,-7]],[[55119,85563],[-1,2],[-2,7],[-2,3],[-4,5],[-15,8],[33,-1],[17,-6],[25,-18],[-15,0],[-6,1],[-6,7],[0,-13],[4,-4],[13,1],[-7,-11],[-9,2],[-14,14],[-11,3]],[[55152,86196],[2,-1],[1,-1],[2,-1],[1,-3],[-1,-5],[-3,-1],[-12,9],[-15,19],[-16,10],[-3,12],[-2,16],[1,29],[0,7],[-3,13],[1,4],[3,2],[4,-3],[2,-3],[3,-6],[1,-3],[0,-2],[-1,-3],[0,-3],[1,-4],[3,-6],[8,-7],[2,-7],[-4,0],[-7,6],[-4,1],[3,-8],[12,-28],[3,-9],[3,-6],[4,-1],[6,8],[0,-9],[2,-5],[3,-11]],[[55788,88234],[7,17],[11,-2],[5,-12],[-13,-11],[2,4],[-2,6],[-3,1],[-3,-1],[-4,-2]],[[55134,85468],[1,-1],[1,-4],[-1,-2],[-1,-2],[-8,-15],[-5,-4],[-1,-4],[-1,-3],[0,-4],[-1,-3],[-1,-3],[-1,-3],[-2,-3],[-2,-2],[-3,2],[-1,0],[-1,-2],[-3,-1],[-3,2],[-3,4],[-3,6],[-1,4],[2,2],[2,0],[2,2],[-1,3],[-2,5],[0,2],[2,-1],[2,2],[3,3],[1,4],[-2,2],[1,3],[11,8],[5,7],[5,5],[4,3],[4,-1],[1,-6],[0,-5]],[[55198,85534],[8,-1],[2,-1],[-4,-5],[-19,-13],[-2,1],[1,7],[4,6],[3,6],[4,2],[3,-2]],[[55221,85585],[2,-1],[2,-2],[-1,-4],[-3,-3],[-2,-3],[-3,-8],[-1,-1],[1,-2],[-1,-1],[-2,-1],[-1,0],[-3,3],[-3,2],[-2,0],[-1,-1],[-3,3],[1,6],[4,7],[5,6],[5,2],[4,-1],[2,-1]],[[55187,85612],[-3,4],[-3,4],[-1,3],[-3,5],[2,3],[12,-1],[0,2],[2,0],[3,-2],[2,-2],[5,-8],[1,-1],[1,-1],[1,-3],[1,-8],[-2,-7],[-4,-5],[-12,-7],[-1,0],[-2,2],[1,5],[2,1],[1,2],[-1,3],[0,5],[-2,6]],[[55029,85638],[5,3],[31,-10],[4,-4],[-5,-1],[-2,1],[-6,0],[2,-2],[3,-6],[-3,-6],[-6,-2],[-7,1],[-7,5],[-4,5],[-2,4],[-1,5],[-2,3],[0,4]],[[55237,85649],[3,-2],[1,-4],[-1,-2],[-3,-2],[-2,2],[0,4],[2,4]],[[55261,85643],[1,-2],[1,-6],[-3,-4],[-5,4],[-3,5],[-1,2],[-2,2],[0,4],[3,3],[3,0],[4,-4],[2,-4]],[[55257,85667],[-5,-9],[-4,-7],[-6,1],[-3,10],[3,9],[7,3],[4,1],[1,0],[2,-3],[1,-5]],[[55182,85710],[-3,-1],[-2,-3],[-2,-6],[-2,-1],[-5,4],[-1,-1],[0,-3],[-1,-1],[-1,1],[3,-12],[-1,-7],[-3,-2],[-3,2],[-1,5],[1,-20],[-2,1],[-3,-2],[-2,-4],[-2,1],[-1,3],[-1,5],[-2,6],[-2,5],[-2,5],[-1,6],[-1,3],[-1,2],[1,5],[3,3],[4,0],[3,-2],[2,-6],[0,3],[1,2],[1,1],[2,1],[2,1],[-2,0],[-2,0],[-1,1],[-1,1],[-2,0],[-1,2],[2,4],[2,5],[6,7],[3,5],[5,4],[6,3],[6,0],[6,-3],[3,-3],[0,-3],[1,-1],[1,0],[13,4],[-1,-3],[-15,-8],[-7,-9]],[[55271,85786],[1,-1],[1,-2],[0,-3],[-1,0],[-2,-1],[-2,-2],[-3,-1],[-5,1],[-3,2],[-4,-18],[-2,-5],[-3,-1],[-3,-2],[-6,3],[-1,7],[3,6],[19,26],[4,2],[3,-3],[4,-8]],[[55237,85766],[-7,-5],[-1,-2],[0,-2],[-1,-1],[-2,0],[-2,-1],[-7,-5],[-4,-1],[-3,0],[0,2],[5,3],[6,5],[5,8],[3,4],[11,14],[16,14],[0,-5],[-5,-8],[-13,-18],[-1,-2]],[[55276,85890],[1,-1],[1,-2],[0,-3],[-1,-3],[-3,-3],[-5,-2],[-4,0],[-4,2],[-2,2],[-1,-2],[-1,-2],[-3,1],[-7,-1],[-2,5],[4,9],[12,23],[3,7],[2,2],[3,-1],[2,-3],[3,-4],[2,-7],[0,-7],[-1,-8],[0,-3],[1,0],[0,1]],[[55201,86119],[1,0],[0,2],[-5,7],[2,3],[6,-1],[4,-4],[2,-3],[1,-4],[2,-3],[3,-1],[1,-3],[0,-4],[-1,-1],[0,-1],[2,1],[1,1],[2,-1],[1,-5],[1,-4],[-7,-5],[-6,-2],[-7,2],[-3,2],[-1,3],[-2,7],[0,6],[0,3],[1,4],[2,1]],[[54362,83703],[4,0],[2,1],[0,-3],[-3,-4],[-4,-1],[-1,-3],[1,-6],[1,-6],[-1,-2],[-1,-1],[-3,0],[-1,0],[-9,9],[-2,9],[3,8],[4,3],[2,-2],[2,-2],[3,0],[3,0]],[[54685,84998],[3,-2],[1,-4],[-1,-8],[-3,-4],[-3,-1],[-3,2],[-3,9],[-1,8],[4,4],[6,-4]],[[54692,85016],[5,2],[2,-1],[-1,0],[0,-1],[-2,-3],[-1,-2],[-2,-3],[-4,-2],[-5,0],[-5,2],[-5,4],[-4,7],[-1,5],[-2,3],[-1,3],[1,4],[-2,4],[-3,5],[1,6],[5,3],[3,0],[3,3],[2,0],[1,-1],[4,2],[2,-1],[1,-1],[-1,-4],[-3,-5],[-3,-2],[-3,1],[5,-6],[0,-1],[-3,0],[-2,-4],[1,-4],[4,-6],[7,-8],[6,1]],[[55089,85392],[8,6],[2,-1],[-1,-6],[-4,-6],[-6,-3],[-3,-3],[-2,-1],[-2,1],[-1,-3],[3,-5],[4,-2],[0,-2],[-7,-2],[-5,-3],[-9,-3],[-6,-5],[-3,0],[-2,2],[-2,2],[1,5],[4,9],[4,6],[10,8],[4,1],[4,0],[3,1],[1,2],[5,2]],[[55055,85416],[-1,-7],[-2,-2],[-2,3],[-2,1],[-2,-2],[-2,0],[-3,4],[-1,0],[1,-6],[0,-5],[0,-5],[-1,-5],[-4,-3],[-4,2],[-5,7],[-1,-1],[-2,-1],[-5,-6],[-4,-4],[-1,1],[-1,4],[1,2],[2,8],[2,4],[3,1],[1,2],[0,4],[0,4],[3,5],[3,3],[6,-1],[7,2],[6,2],[13,-2],[-1,-3],[-10,-5],[1,-1],[1,1],[2,0],[2,-1]],[[54918,85406],[-1,-5],[-1,-4],[1,-7],[0,-6],[-1,-6],[-1,-6],[0,-4],[-2,-2],[-2,-2],[0,-4],[3,-8],[-2,0],[-8,13],[0,-3],[-2,0],[-3,7],[1,10],[-2,5],[-2,1],[-1,4],[1,10],[2,10],[3,7],[1,5],[-1,3],[0,6],[0,17],[2,6],[3,0],[1,-4],[0,-4],[2,-1],[1,0],[2,-4],[2,-7],[2,-8],[2,-10],[0,-9]],[[55034,87594],[-13,-4],[-14,2],[-6,13],[3,10],[2,7],[1,6],[4,6],[6,2],[5,-2],[3,-4],[3,-2],[7,4],[6,-1],[3,-2],[0,-4],[-1,-8],[-2,-6],[-1,-4],[-1,-2],[-3,1],[-3,-1],[-1,-2],[2,-2],[2,-3],[-2,-4]],[[55797,88176],[-2,-6],[-2,-5],[-4,-4],[-5,-1],[1,6],[10,14],[1,-1],[1,-3]],[[55804,88226],[3,1],[3,5],[6,5],[2,1],[0,-1],[-1,-2],[-1,-2],[1,-3],[0,-3],[-2,-2],[-1,-4],[1,-5],[0,-6],[-1,-7],[-3,-7],[-4,-5],[-4,-3],[-2,0],[-2,0],[-4,-4],[-1,6],[6,29],[2,4],[2,3]],[[56224,89233],[3,-3],[-2,-5],[-7,-5],[-3,-1],[-23,-2],[-2,2],[0,7],[2,6],[4,1],[3,-2],[1,-3],[3,-2],[5,4],[6,6],[5,0],[5,-3]],[[56153,89218],[-1,3],[-2,7],[1,5],[0,2],[0,6],[3,4],[5,0],[10,-6],[1,-3],[-2,-2],[0,-4],[3,-5],[3,-3],[1,-3],[0,-4],[0,-4],[-3,1],[-3,2],[-2,2],[-14,2]],[[56276,89276],[4,-2],[2,-4],[-1,-3],[-2,-1],[-5,1],[-6,3],[-4,8],[2,4],[5,-3],[2,-2],[3,-1]],[[56171,89264],[-7,11],[-2,7],[4,3],[3,1],[4,0],[22,-13],[2,0],[2,1],[2,-2],[3,-5],[6,-5],[0,-5],[-4,-3],[-3,1],[-3,5],[-4,4],[-4,2],[-4,2],[-2,-2],[1,-6],[-1,0],[0,-2],[0,-4],[3,-4],[1,-3],[-2,0],[-4,2],[-13,15]],[[56271,89309],[13,6],[5,-3],[-1,-5],[-5,-2],[-2,-3],[0,-5],[-2,-3],[-3,-2],[-2,0],[-4,2],[-1,0],[2,-2],[-2,0],[-9,5],[-1,3],[-1,5],[1,3],[3,0],[4,0],[5,1]],[[56269,89316],[-3,4],[-1,2],[3,4],[8,1],[2,-8],[-4,-4],[-5,1]],[[56378,89388],[4,-4],[2,-6],[-1,-4],[-3,2],[-2,0],[-1,-4],[1,-5],[3,-8],[-5,2],[-8,8],[-8,10],[-4,11],[1,10],[5,3],[7,0],[7,-5],[1,-5],[-4,0],[0,-2],[5,-3]],[[56610,89410],[1,-2],[0,-4],[-1,-5],[-1,-4],[-2,-2],[-1,-2],[0,-2],[-3,-4],[-10,-9],[-10,7],[-5,8],[0,13],[2,3],[2,-5],[2,-3],[2,3],[1,7],[1,-1],[3,-3],[3,-2],[4,0],[3,1],[3,4],[1,-1],[2,-3],[1,2],[1,4],[1,0]],[[56316,89386],[-2,3],[-2,3],[0,4],[1,5],[1,8],[1,8],[3,3],[12,-12],[3,-9],[3,-12],[-2,-6],[-12,2],[-6,3]],[[57724,86330],[-5,5],[-4,7],[-4,4],[-6,-3],[1,-2],[2,-5],[1,-2],[-5,-2],[-1,-7],[2,-8],[4,-7],[-5,-3],[-1,-1],[4,-4],[2,0],[-10,-10],[-4,-2],[-19,4],[3,7],[8,4],[5,5],[-12,2],[-5,-1],[-4,-5],[-3,-7],[1,-5],[2,-5],[3,-7],[-10,3],[-23,22],[-10,-5],[2,-1],[2,-1],[1,-6],[-1,-2],[-3,-4],[-1,-2],[3,-2],[2,-3],[3,-3],[1,-5],[-14,4],[-24,20],[-12,5],[-21,1],[-5,3],[0,8],[7,2],[14,-2],[-6,6],[-21,14],[5,12],[-4,3],[-6,-3],[-4,-7],[1,-9],[4,-9],[1,-9],[-6,-6],[-1,8],[-1,2],[-6,-2],[-3,2],[-4,8],[-3,2],[-2,-2],[-3,-8],[-2,-2],[-3,2],[-4,8],[-2,2],[-3,0],[-3,-3],[-3,-3],[0,-4],[1,-6],[-2,-3],[-2,-3],[-4,-12],[-6,-3],[-13,1],[7,-10],[3,-6],[-1,-7],[-2,2],[-9,10],[-2,5],[-26,-10],[-8,-1],[2,4],[2,4],[2,9],[-5,0],[-6,-2],[-5,-3],[-4,-5],[-1,-5],[0,-10],[0,-4],[-2,-2],[-6,-4],[-3,-4],[-3,-1],[-5,6],[-6,8],[-4,5],[-5,2],[-6,-1],[-5,-3],[-1,-6],[-6,-2],[-7,4],[-7,8],[-5,9],[-2,11],[4,7],[7,4],[6,6],[7,16],[1,4],[-1,14],[1,5],[4,6],[12,11],[12,-2],[24,-19],[-6,22],[-9,17],[-11,7],[-12,-6],[-7,-8],[-11,-22],[-24,-50],[-3,-19],[9,-19],[-5,-9],[-2,-4],[-3,-3],[-8,0],[-2,-3],[2,-9],[-3,1],[-3,3],[-5,8],[0,-7],[0,-3],[-2,-2],[-4,0],[-3,-2],[0,-4],[-1,-4],[-1,-2],[-5,4],[-4,10],[-3,10],[-3,4],[-3,4],[-4,7],[-5,6],[-4,-1],[-1,-7],[4,-8],[9,-13],[-27,5],[-2,-1],[-5,-6],[-3,-2],[-2,4],[-11,12],[-9,6],[-4,3],[-10,14],[-9,8],[-9,5],[-8,1],[0,-4],[15,-8],[3,-4],[6,-11],[7,-4],[2,-5],[1,-6],[0,-5],[-2,-3],[-5,0],[-2,0],[1,-7],[3,-5],[10,-7],[6,-11],[2,-4],[4,-1],[2,-4],[-1,-7],[-2,-7],[-2,-3],[-14,-4],[-1,14],[-11,19],[2,8],[-3,-1],[-3,-2],[-2,-4],[-2,-1],[-3,0],[-3,2],[-16,18],[-6,5],[-7,3],[10,-15],[6,-6],[5,-4],[-3,-12],[-6,-12],[-1,-8],[3,-9],[8,-15],[2,-12],[-6,0],[-4,2],[-3,4],[-4,6],[2,4],[-4,7],[-5,2],[-6,1],[-6,2],[-8,13],[-5,3],[-4,-4],[2,-10],[10,-8],[19,-10],[-19,-9],[0,-3],[-5,-3],[-8,4],[-22,27],[-2,4],[1,8],[2,6],[3,2],[-6,4],[0,5],[16,0],[-4,12],[-6,1],[-7,-4],[-4,-6],[-8,-5],[-21,-7],[0,-3],[4,-3],[2,-6],[-1,-8],[-1,-8],[-1,-2],[-2,-1],[-2,-2],[-2,-10],[-1,-3],[-2,-2],[-40,0],[1,9],[-4,4],[-10,3],[1,-3],[1,-7],[0,-3],[-8,-3],[-26,0],[-2,-1],[0,-2],[0,-7],[0,-1],[-2,-2],[-3,1],[-5,4],[0,-5],[10,-7],[4,-4],[-3,-3],[-4,0],[5,-6],[-6,-4],[-17,-4],[-6,0],[1,4],[0,2],[1,2],[-12,-7],[-3,-5],[6,-4],[-2,-4],[-5,0],[-4,-5],[-5,2],[-4,7],[4,4],[3,9],[1,9],[-2,7],[-5,1],[-4,-8],[-7,-29],[-3,-4],[-23,-2],[-6,2],[-3,7],[10,3],[-1,11],[-7,9],[-10,-3],[6,-16],[-4,-3],[-8,-7],[-3,-2],[-15,-2],[-9,-4],[-2,-1],[-2,-3],[0,-4],[1,-8],[-2,-3],[-4,0],[-1,5],[-1,7],[-1,5],[-4,4],[-17,11],[-4,1],[-1,-2],[3,-6],[4,-4],[4,-2],[2,-3],[-3,-7],[-3,-5],[-4,-2],[-4,-2],[-2,-8],[19,8],[-1,-5],[-3,-4],[-5,-7],[5,-4],[0,-4],[-19,-15],[-10,-17],[-6,-6],[-6,-2],[-8,-1],[2,9],[8,19],[3,5],[-5,1],[-7,-7],[-13,-19],[-2,11],[-5,-4],[-5,-7],[-5,-4],[2,10],[3,4],[4,3],[3,6],[1,4],[0,5],[0,6],[2,7],[-13,1],[-7,-2],[-5,-7],[4,-4],[-8,-7],[-3,-1],[-4,0],[-9,4],[-8,1],[-5,-3],[0,-5],[7,-5],[-5,-4],[-5,2],[-4,3],[-5,3],[-2,-1],[-11,-6],[-3,0],[-3,3],[-5,-10],[-5,1],[-2,6],[4,7],[0,4],[-5,-1],[-3,-4],[-2,-5],[-3,-6],[-4,-5],[-4,-3],[-19,-4],[-21,-21],[-7,7],[-46,-7],[-4,3],[-3,7],[-2,2],[-4,0],[-18,-5],[-12,-7],[-6,0],[3,9],[12,23],[4,5],[8,3],[4,3],[0,4],[-2,5],[0,5],[1,6],[2,6],[-10,-4],[-3,-2],[-2,-5],[-2,-6],[-2,-5],[-4,-2],[-3,-3],[-1,-6],[-1,-7],[-2,-7],[-2,-3],[-6,-5],[-3,-4],[-9,-17],[-11,-13],[-25,-15],[-4,-7],[0,-11],[3,-9],[5,-2],[0,-5],[-47,-8],[-4,-4],[-17,4],[-6,-2],[-5,-3],[-17,-4],[-5,1],[5,4],[7,13],[4,4],[12,2],[39,20],[11,2],[-2,12],[1,5],[4,0],[3,-1],[9,0],[7,4],[6,8],[7,13],[4,12],[5,18],[2,12],[-5,-4],[-18,-44],[-8,-11],[-5,0],[0,2],[1,4],[1,2],[-3,3],[-3,1],[-3,-1],[-3,-3],[1,-4],[-11,4],[-3,-6],[-1,-6],[-2,0],[-2,4],[-1,6],[3,18],[0,2],[5,6],[21,8],[4,6],[6,15],[5,4],[-15,6],[-27,-6],[-13,0],[-7,3],[-6,4],[-5,6],[-1,9],[2,8],[4,7],[9,12],[-6,8],[-1,-4],[-3,-10],[-1,-3],[-3,-2],[-5,-3],[-2,-3],[0,10],[-3,7],[-5,3],[-9,3],[-6,7],[-3,3],[2,6],[1,6],[-2,5],[-4,3],[16,28],[5,9],[18,19],[5,9],[2,6],[2,10],[2,4],[7,7],[3,4],[0,6],[-6,1],[-7,-8],[-7,-12],[-3,-10],[-16,6],[-18,-9],[-39,-37],[-35,-11],[-16,-9],[-8,0],[4,5],[15,11],[-5,2],[-1,4],[6,12],[3,3],[13,7],[-14,-2],[-7,-3],[-13,-11],[-7,-3],[-15,-1],[3,4],[0,4],[0,3],[1,5],[2,3],[5,4],[6,10],[9,10],[1,9],[14,18],[9,7],[1,8],[-2,6],[-12,-14],[-10,-2],[-23,2],[6,16],[-44,-12],[-9,0],[-4,2],[-8,11],[-19,15],[-6,3],[-12,1],[-2,5],[0,7],[-2,3],[-5,-9],[-6,-6],[-4,1],[-8,11],[-1,2],[1,5],[0,2],[-2,0],[-3,-1],[-1,1],[-2,2],[-2,1],[-1,2],[1,7],[-13,0],[1,4],[1,8],[2,4],[-5,3],[-8,3],[-8,0],[-6,-2],[-3,-6],[1,-7],[8,-15],[-13,4],[-6,0],[-6,-4],[1,10],[4,18],[1,12],[-1,9],[1,8],[3,6],[8,2],[-4,5],[-1,6],[1,6],[2,7],[-18,-15],[-6,-7],[-6,-6],[-15,-3],[-4,-5],[-1,-5],[3,-9],[-2,-5],[-1,-3],[-1,-3],[0,-4],[0,-6],[-4,-8],[-8,-4],[-9,-1],[-6,3],[7,8],[-4,12],[-14,25],[4,0],[13,-5],[0,5],[-7,2],[-19,2],[-9,-4],[-3,0],[-3,1],[-4,5],[-3,1],[0,5],[2,0],[1,1],[3,2],[-4,9],[8,-4],[5,0],[2,4],[-13,12],[-6,3],[-6,8],[-4,9],[-3,8],[0,3],[1,1],[0,1],[-1,3],[20,-6],[4,0],[2,8],[-2,6],[-2,6],[-3,7],[13,0],[0,4],[-6,0],[-6,3],[-5,4],[-6,5],[5,4],[2,0],[3,0],[-6,9],[-4,3],[-3,0],[2,8],[-2,9],[-4,5],[-4,-2],[-2,2],[-2,3],[-1,4],[-1,4],[3,6],[-5,12],[4,2],[14,-3],[7,1],[6,6],[-3,3],[-3,1],[-7,0],[-2,1],[-6,11],[3,1],[5,6],[2,1],[3,-1],[2,-4],[2,-3],[4,0],[-2,6],[-1,7],[-2,5],[-2,3],[-3,1],[-1,2],[-1,4],[-2,5],[-12,27],[-5,5],[4,7],[2,2],[-8,6],[-2,5],[-1,8],[6,0],[12,-9],[6,-2],[6,1],[0,3],[0,2],[-5,4],[-6,1],[8,6],[16,-9],[8,3],[-4,4],[-4,7],[-1,8],[3,6],[-3,14],[-1,6],[-3,4],[2,0],[7,4],[-2,0],[-2,1],[-1,1],[-2,2],[4,8],[-4,0],[3,4],[5,1],[9,0],[-2,6],[0,2],[8,5],[9,3],[-4,12],[-6,6],[-13,6],[3,6],[3,3],[3,4],[-1,7],[11,0],[0,5],[-1,3],[1,11],[0,6],[-1,3],[-2,2],[-1,3],[0,3],[0,6],[0,3],[-2,12],[-1,4],[-4,4],[-4,3],[-8,3],[-4,2],[9,5],[17,-1],[9,4],[-4,9],[-5,7],[-8,9],[-19,10],[-6,6],[37,-6],[10,6],[-6,17],[-1,3],[-4,2],[-8,-3],[-3,1],[-12,17],[-2,6],[0,3],[1,1],[5,2],[7,1],[32,-14],[18,-13],[8,-3],[0,5],[-19,20],[-10,14],[-6,26],[-5,4],[-6,3],[-4,6],[0,4],[2,9],[-1,5],[-6,14],[0,4],[5,-2],[9,-8],[5,2],[-8,9],[-19,14],[-6,14],[1,7],[3,8],[2,8],[-1,7],[-4,4],[-5,1],[-3,4],[1,9],[-8,13],[-4,8],[-3,7],[3,3],[2,4],[1,4],[-6,4],[-1,4],[-1,6],[-2,4],[-2,1],[-13,-1],[-2,1],[-1,0],[-7,6],[-3,1],[5,12],[-4,5],[-13,3],[12,39],[2,14],[1,28],[2,5],[5,-12],[4,17],[1,8],[-2,7],[4,7],[9,6],[3,5],[2,8],[-2,6],[-8,8],[6,21],[-6,0],[-4,-7],[-3,-8],[-4,-6],[1,10],[3,17],[1,10],[0,28],[2,9],[-15,-7],[-4,3],[-2,6],[-1,7],[1,8],[4,7],[-2,8],[-18,-30],[-1,-6],[4,-9],[-6,2],[-2,9],[2,12],[2,10],[-2,1],[-2,2],[-2,1],[2,7],[2,3],[2,2],[-5,4],[-5,-2],[-5,-4],[-4,-6],[-1,8],[5,18],[2,10],[-5,-4],[-4,-2],[-2,3],[-1,11],[1,11],[2,8],[4,6],[5,4],[-2,5],[-6,11],[6,5],[5,8],[6,5],[6,-1],[-4,11],[-20,5],[-5,8],[-3,-2],[-3,-4],[-5,-10],[1,14],[4,23],[-1,12],[5,1],[8,6],[6,8],[3,9],[0,6],[-1,1],[-2,0],[-2,1],[-5,6],[-2,4],[-2,10],[1,9],[5,5],[6,2],[5,-5],[4,-2],[1,5],[1,2],[5,8],[2,5],[1,9],[1,9],[1,7],[4,7],[7,0],[19,-8],[6,2],[2,3],[5,6],[2,3],[2,4],[1,8],[2,8],[3,13],[1,4],[2,1],[9,4],[-4,21],[-1,11],[0,13],[-1,5],[0,2],[1,1],[4,4],[3,1],[2,-3],[1,0],[1,9],[3,8],[8,-5],[12,-14],[8,-3],[9,-7],[8,-3],[9,5],[-12,17],[-18,17],[-6,7],[-2,7],[6,9],[-4,-2],[-4,-1],[-3,1],[-4,4],[-1,7],[1,6],[-1,4],[-3,1],[2,7],[3,2],[8,0],[0,4],[-11,4],[-3,4],[-1,10],[2,5],[5,5],[6,3],[4,1],[16,-17],[9,-4],[5,13],[6,-5],[7,-5],[8,-2],[6,4],[-4,3],[-9,3],[-4,2],[0,4],[11,8],[4,1],[12,-1],[6,3],[13,9],[7,0],[-3,-8],[0,-6],[2,-23],[0,-5],[-3,-6],[7,-2],[22,-19],[-3,13],[-5,12],[8,3],[3,4],[3,5],[1,6],[1,5],[1,5],[2,4],[6,4],[2,-3],[3,-5],[3,-4],[4,0],[7,6],[4,2],[3,-1],[6,-4],[4,1],[2,2],[0,2],[0,3],[0,1],[2,0],[2,-1],[2,-2],[0,-1],[12,16],[6,11],[3,10],[2,0],[6,-15],[6,4],[6,13],[6,9],[-2,4],[-2,4],[-3,9],[-4,6],[-8,8],[-14,20],[-1,3],[-5,0],[-4,2],[-3,3],[-3,7],[-1,16],[6,7],[9,-1],[8,-8],[8,-12],[9,-3],[8,-1],[10,-6],[-23,25],[-11,16],[-2,15],[3,8],[3,2],[7,-1],[5,-3],[0,-6],[-1,-6],[0,-6],[6,-3],[7,-1],[5,-5],[-1,-15],[4,3],[4,6],[4,3],[0,4],[-2,6],[0,5],[2,5],[2,7],[5,22],[3,4],[3,3],[3,4],[1,7],[1,1],[12,-7],[-2,7],[-11,21],[4,8],[3,3],[2,2],[0,4],[-1,1],[-1,3],[12,-3],[5,2],[2,11],[0,11],[-1,6],[2,0],[5,-3],[4,-7],[3,-2],[1,3],[1,6],[2,3],[3,1],[3,-2],[4,-5],[4,-6],[1,-7],[-1,-8],[3,-5],[5,-13],[2,-3],[4,1],[5,2],[5,3],[3,4],[3,2],[2,1],[3,1],[1,5],[0,4],[0,3],[1,3],[1,3],[4,6],[9,5],[4,6],[-5,4],[-14,8],[19,0],[-5,10],[-2,2],[7,-4],[4,0],[3,2],[0,4],[1,4],[0,5],[-1,2],[-5,3],[-3,6],[1,7],[6,4],[5,-1],[4,-4],[5,-13],[5,-6],[3,1],[0,6],[-3,9],[1,7],[0,4],[-1,5],[16,15],[4,7],[3,3],[13,-5],[3,2],[3,4],[3,3],[-1,0],[-2,3],[0,4],[3,5],[4,1],[8,3],[22,-1],[8,3],[6,10],[7,-8],[6,2],[6,6],[6,8],[-9,8],[-4,5],[0,5],[3,8],[-1,6],[-2,5],[-1,6],[1,3],[3,27],[4,5],[6,0],[9,-5],[2,-2],[3,-4],[3,-2],[3,1],[2,2],[3,1],[9,-6],[18,-2],[4,6],[-3,14],[-7,14],[-4,7],[2,6],[3,1],[8,-3],[2,2],[6,10],[4,3],[1,8],[5,7],[7,7],[1,1],[4,6],[-2,0],[1,9],[2,9],[3,4],[6,-4],[4,0],[13,7],[4,4],[2,5],[6,19],[5,-1],[12,-7],[5,-4],[-2,6],[-2,8],[-1,8],[1,10],[4,9],[8,11],[4,9],[3,17],[2,6],[6,5],[12,5],[5,5],[-2,10],[4,-1],[3,1],[3,2],[3,4],[1,-1],[11,7],[10,0],[2,2],[0,11],[0,4],[2,4],[3,1],[8,-2],[3,3],[2,4],[1,8],[2,2],[5,5],[6,1],[5,4],[4,10],[0,4],[-1,6],[0,4],[5,5],[0,5],[-1,4],[-1,1],[2,12],[2,7],[8,13],[1,5],[1,5],[2,5],[1,1],[4,2],[8,11],[11,6],[5,5],[5,9],[-3,6],[-1,2],[0,4],[3,6],[4,4],[8,6],[-10,9],[-3,5],[5,3],[6,-1],[22,-12],[3,1],[2,3],[0,3],[-3,4],[-1,4],[2,10],[6,3],[11,0],[2,12],[10,6],[34,4],[49,26],[6,1],[5,-2],[3,-6],[2,-6],[4,-6],[2,0],[2,2],[2,1],[3,-3],[1,-2],[1,-9],[1,-3],[4,-7],[4,-4],[5,-3],[7,-1],[0,-3],[-3,0],[-2,-1],[-5,-3],[10,-4],[26,8],[2,2],[-3,11],[1,5],[4,19],[0,4],[-2,7],[-4,0],[-3,-3],[-4,-1],[-4,3],[-7,8],[-11,4],[-5,5],[-9,17],[1,2],[3,4],[2,2],[-2,4],[4,2],[28,-4],[5,-4],[10,-10],[7,-5],[6,-2],[5,3],[1,8],[-2,8],[-3,5],[-2,6],[1,9],[-2,3],[0,3],[0,3],[1,3],[-7,8],[-3,5],[-2,6],[0,6],[-1,5],[-2,3],[-2,4],[-9,8],[-31,8],[2,13],[2,6],[9,10],[4,4],[2,7],[1,8],[-1,9],[3,-1],[3,1],[4,1],[3,3],[-2,1],[-4,2],[-2,1],[3,9],[1,3],[-5,3],[-2,1],[-2,0],[4,6],[3,19],[4,8],[-1,2],[-2,4],[-1,2],[3,1],[1,1],[4,6],[-19,20],[4,2],[7,1],[4,2],[3,3],[4,9],[3,3],[-3,10],[3,22],[-1,11],[-8,14],[-9,11],[-20,19],[-6,3],[-8,0],[-6,-2],[-6,1],[-7,9],[-1,5],[-1,4],[-1,2],[-1,6],[-4,5],[-3,2],[-7,-2],[-4,4],[-5,4],[-13,-3],[-6,1],[-3,4],[-5,9],[-3,3],[-10,5],[-11,2],[-11,-2],[-10,-5],[-7,-8],[-4,-2],[-5,-1],[-3,2],[-1,6],[-1,22],[0,5],[-3,2],[-17,9],[-4,4],[-4,8],[-4,9],[-1,11],[3,15],[4,11],[16,31],[3,11],[3,4],[4,4],[8,1],[3,3],[0,8],[-4,-5],[-14,-7],[-3,-1],[-2,0],[-2,-1],[-1,-4],[0,-7],[0,-2],[-1,-2],[-7,-5],[-12,-27],[-7,-8],[-7,0],[-5,1],[-6,0],[-6,-5],[-1,-2],[-1,-2],[0,-3],[-2,-3],[-3,-2],[-14,6],[-8,11],[-3,3],[-11,4],[-11,8],[3,-8],[1,-9],[-2,-8],[-6,-3],[-5,2],[-5,7],[-4,8],[-3,7],[0,4]],[[56224,86034],[-2,13],[3,6],[5,-2],[5,-9],[0,-22],[0,-10],[-1,-9],[-2,0],[-3,6],[-5,1],[-4,-2],[-2,-7],[-1,-1],[-3,7],[-4,10],[-1,7],[-1,9],[-1,9],[2,7],[4,3],[4,-3],[0,-8],[1,-6],[6,1]],[[55971,86083],[9,14],[11,6],[12,0],[12,-8],[-2,-7],[-3,-3],[-7,-6],[5,0],[2,-3],[-1,-5],[-2,-5],[-4,-3],[-4,0],[-7,3],[-3,0],[-8,-3],[-3,-3],[-2,0],[-3,4],[-3,4],[-3,3],[4,3],[6,1],[11,0],[-3,7],[-4,2],[-10,-1]],[[56039,86115],[16,4],[15,0],[9,-8],[0,-4],[-3,0],[-3,0],[-3,-1],[-2,-3],[2,-1],[4,-7],[-21,0],[9,-4],[-2,-2],[-3,-2],[-3,-1],[1,-1],[2,-2],[-7,-7],[-8,-5],[-9,-1],[-7,5],[2,3],[1,1],[-1,8],[4,3],[1,1],[0,4],[-4,3],[0,6],[5,7],[5,4]],[[55931,86128],[4,-9],[7,-3],[15,-1],[0,-4],[-11,1],[-4,-4],[-2,-9],[-2,0],[-2,4],[-4,3],[-9,1],[-4,2],[-3,4],[-3,3],[-5,-1],[4,8],[6,4],[13,1]],[[56127,86128],[4,-9],[-17,-16],[1,-1],[4,-6],[2,-1],[-8,-11],[-9,-1],[-7,8],[-4,16],[4,3],[13,5],[8,9],[4,4],[5,0]],[[57170,86126],[2,5],[5,1],[10,-1],[-3,-7],[-3,-3],[-5,-2],[-4,0],[-2,7]],[[56169,86124],[3,11],[7,11],[7,6],[6,-4],[1,-14],[-8,-15],[-10,-7],[-6,12]],[[57117,86144],[-9,2],[-6,9],[-1,12],[4,11],[5,-3],[24,-27],[-2,-4],[-5,-3],[-4,-3],[-3,-6],[1,-8],[-7,4],[-3,2],[2,4],[4,10]],[[56345,86146],[6,14],[7,12],[8,6],[10,-2],[-2,-13],[-5,-8],[-7,-6],[-6,-7],[-2,-6],[-1,-6],[-2,-5],[-7,-3],[-2,-5],[0,-7],[2,-7],[-2,0],[-1,-1],[-1,-2],[-2,-1],[2,-1],[4,-3],[-1,-6],[-1,-2],[4,-19],[-10,-17],[-23,-21],[0,-4],[3,0],[2,-1],[3,-3],[-3,-4],[-3,-10],[-2,-3],[-7,2],[-2,-1],[-4,-5],[-4,11],[-4,10],[-2,-6],[-9,-12],[-1,-1],[-1,-3],[0,-7],[-2,0],[1,9],[-1,5],[-2,2],[-4,-4],[-1,8],[2,4],[2,5],[1,8],[-3,-5],[-10,-10],[-4,-8],[-12,-3],[-5,-3],[0,16],[1,7],[1,6],[-1,7],[0,8],[1,6],[-1,5],[-3,4],[-8,5],[-3,6],[6,2],[10,8],[6,2],[27,0],[0,4],[-51,4],[3,13],[2,17],[4,13],[8,2],[-6,-15],[-1,-7],[4,-3],[28,6],[10,8],[5,3],[54,9],[8,9]],[[56140,86188],[7,1],[33,-2],[20,-9],[5,-6],[-1,-7],[-1,-3],[-6,-2],[-2,1],[-2,2],[-2,1],[-2,-2],[-1,-2],[-4,-3],[-1,-1],[-13,-4],[-4,1],[5,7],[-4,6],[-6,3],[-7,0],[-4,-1],[11,0],[-5,-12],[-7,2],[-8,5],[-6,-1],[-2,0],[-1,8],[2,11],[6,7]],[[56218,86193],[-5,-4],[-5,-1],[-11,5],[5,9],[6,7],[6,3],[7,1],[1,-1],[0,-3],[0,-3],[0,-1],[8,-5],[4,0],[4,0],[3,-1],[2,-6],[-6,-8],[-8,-5],[-9,-4],[-7,0],[2,4],[1,4],[2,9]],[[56110,86200],[-5,-3],[-5,0],[-6,1],[-5,2],[-1,0],[-1,-2],[-2,-2],[-2,0],[0,2],[0,5],[0,2],[-6,5],[-3,2],[-9,2],[-6,4],[-6,6],[-2,7],[2,7],[4,5],[6,2],[5,0],[0,4],[-13,16],[1,8],[1,6],[3,3],[4,0],[4,-5],[13,-8],[2,-6],[1,-5],[2,-3],[3,-1],[3,-1],[5,-12],[0,-4],[-8,3],[-4,0],[-4,-3],[4,-3],[8,-5],[4,-4],[-2,-4],[9,0],[3,-2],[3,-6],[-7,-4],[-3,-1],[5,-3],[2,0],[3,0],[0,-5]],[[56034,86288],[-3,-7],[-4,-6],[-3,-3],[-2,6],[3,11],[6,15],[8,10],[6,0],[-1,-8],[-3,-6],[-7,-12]],[[55921,86288],[-5,3],[-9,2],[-5,5],[3,12],[-2,7],[-4,6],[-3,11],[6,0],[8,-10],[7,-14],[1,-6],[5,-16],[-2,0]],[[55942,86334],[5,-10],[14,-2],[6,-8],[-2,0],[0,-1],[-1,0],[-3,1],[-1,-6],[0,-5],[0,-5],[1,-4],[-4,1],[-4,-3],[-1,-5],[4,-5],[-7,3],[-7,8],[-6,11],[-3,14],[-4,-6],[-3,-2],[-2,4],[-1,10],[3,9],[5,2],[11,-1]],[[55916,86339],[-5,-1],[-2,4],[-1,5],[-2,4],[-5,1],[-3,2],[-3,5],[-3,9],[2,3],[6,4],[2,4],[1,5],[2,2],[3,-3],[0,-5],[1,-4],[2,-4],[3,-3],[-3,-9],[-1,-8],[1,-7],[5,0],[0,-4]],[[55906,86525],[-9,0],[-4,1],[-4,3],[7,6],[14,-6],[6,4],[-1,2],[-1,2],[0,2],[0,2],[1,2],[3,4],[2,2],[-9,12],[-5,4],[-6,1],[8,10],[4,2],[5,0],[5,-9],[4,-6],[11,-9],[-6,-7],[-4,-2],[-3,-3],[-1,-13],[-2,-5],[-6,-1],[-6,3],[-3,-1]],[[55950,87925],[-2,-8],[0,-7],[1,-7],[3,-6],[-7,-4],[-7,-1],[-4,2],[4,7],[-4,0],[-20,-16],[0,-4],[2,-1],[5,-3],[-4,-5],[-5,-3],[-12,-1],[-3,5],[-3,7],[-4,8],[-5,5],[-3,-2],[-4,-4],[-4,0],[-4,10],[6,0],[0,4],[-4,3],[-8,10],[-3,5],[-1,6],[-5,18],[0,7],[11,-10],[11,1],[11,4],[12,1],[0,-4],[-4,-2],[-3,-5],[-6,-14],[1,-5],[0,-1],[-1,-2],[4,-3],[15,-1],[2,-1],[2,-3],[2,-1],[3,3],[1,4],[-1,4],[-2,3],[1,3],[6,7],[12,6],[11,0],[7,-9]],[[55921,87950],[-1,9],[-2,1],[-4,-2],[-4,0],[-14,16],[2,2],[1,1],[3,1],[8,3],[9,9],[10,5],[8,-9],[0,-9],[-5,-11],[-11,-16]],[[56942,88996],[11,2],[8,-9],[-9,-5],[-19,0],[-23,6],[-16,-1],[-5,-11],[-22,-12],[8,-17],[17,2],[4,-3],[-3,-3],[-3,-1],[-4,0],[-3,0],[-3,-2],[-2,-4],[-3,-2],[-5,-1],[-6,0],[-3,4],[2,9],[-1,2],[-2,6],[-4,6],[-7,-15],[-7,-2],[-10,14],[-5,10],[-3,8],[-2,9],[7,7],[19,18],[24,2],[26,7],[13,-5],[4,-8],[-6,-4],[2,-4],[7,0],[8,0],[16,-3]],[[56643,85987],[2,-3],[-1,-1],[0,-4],[-3,-4],[-4,0],[0,-1],[0,-1],[-3,-1],[-4,-1],[-4,4],[-1,-1],[-1,2],[2,5],[4,5],[6,3],[7,-2]],[[56357,86043],[8,0],[3,-2],[-2,-4],[-1,-5],[-1,-5],[-2,-2],[-1,0],[-2,-3],[-3,-8],[-1,-5],[-2,-3],[-4,3],[-2,10],[1,8],[8,1],[0,3],[-2,2],[-4,0],[-2,2],[2,5],[7,3]],[[56377,86068],[1,-4],[0,-4],[-2,-5],[-2,-2],[-3,-1],[-2,1],[1,3],[-2,0],[-3,-3],[-5,-2],[-8,0],[-2,0],[-5,0],[0,2],[3,4],[3,5],[2,6],[2,2],[3,3],[7,4],[6,-1],[3,-3],[3,-5]],[[56108,86080],[2,-1],[4,-4],[-1,-4],[-6,-2],[-4,0],[-8,1],[-1,1],[-3,5],[2,4],[4,3],[3,1],[4,-4],[4,0]],[[56198,86116],[17,7],[3,-5],[-5,-10],[-7,-5],[-7,-3],[0,-3],[4,-3],[1,-4],[-4,0],[-6,0],[-3,1],[1,2],[0,2],[-1,5],[1,3],[1,2],[1,2],[0,3],[1,4],[3,2]],[[56106,86171],[-2,0],[-1,1],[2,2],[5,4],[3,1],[-1,-3],[-3,-3],[-3,-2]],[[56099,86169],[-4,-2],[-5,0],[-5,1],[-3,6],[-3,0],[-3,9],[1,3],[4,0],[4,0],[5,2],[9,-1],[4,-1],[1,-4],[-5,-13]],[[56194,86220],[-3,-5],[-24,-9],[-3,-1],[-6,1],[-4,5],[0,4],[2,2],[26,7],[8,1],[4,-5]],[[56168,86229],[0,-4],[-26,-13],[-2,0],[4,11],[5,4],[2,1],[17,1]],[[55927,86230],[4,-8],[1,-7],[-1,-4],[-2,1],[-2,0],[-2,1],[1,5],[-1,1],[-2,1],[-6,-2],[-2,4],[0,4],[2,4],[1,3],[4,1],[5,-4]],[[57389,86267],[12,-9],[2,-3],[-1,-3],[-4,-4],[-17,-5],[-4,-5],[-3,-11],[-3,-1],[-3,5],[-5,10],[1,5],[13,3],[4,3],[2,4],[0,4],[1,4],[2,3],[3,0]],[[56118,87970],[2,0],[7,-12],[0,-4],[-3,-8],[-5,-3],[-5,1],[-1,2],[0,4],[-1,2],[-2,-2],[-1,-2],[0,-3],[-1,-1],[-2,-1],[-1,2],[-2,4],[1,7],[4,7],[3,2],[6,-4],[2,1],[-1,3],[-4,4],[-1,3],[1,0],[2,0],[1,-1],[1,-1]],[[56151,87928],[-3,0],[-14,6],[-1,3],[1,2],[-2,3],[-3,2],[1,3],[2,2],[2,1],[1,4],[-1,5],[-3,5],[-1,4],[2,2],[4,1],[5,3],[4,-2],[2,0],[2,-2],[3,-4],[2,-3],[2,1],[0,3],[2,1],[2,-1],[2,-1],[1,-3],[2,0],[2,1],[1,3],[1,5],[1,4],[2,4],[1,1],[2,-1],[1,-5],[0,-3],[1,-7],[2,-4],[-1,-3],[-2,-5],[-4,-8],[-3,-4],[-6,0],[-9,9],[-12,-3],[0,-1],[7,-2],[6,-3],[1,-6],[-2,-4],[-2,0],[-1,-1],[0,-2]],[[56099,87976],[-3,1],[0,2],[0,2],[1,2],[1,3],[2,3],[1,3],[2,3],[1,3],[2,2],[1,3],[3,4],[5,0],[4,-1],[4,3],[4,0],[2,-1],[1,-1],[3,-1],[2,1],[2,-1],[0,-2],[-2,-1],[-2,-1],[0,-2],[1,-3],[-2,-5],[-5,-1],[-9,5],[-4,-1],[-3,-6],[-1,-3],[-4,-5],[-5,-5],[-2,0]],[[56335,88241],[4,0],[2,-2],[-1,-2],[-1,-1],[-1,-1],[0,-4],[-1,-4],[-1,-2],[-1,-3],[-2,-6],[-2,2],[-3,2],[-2,-2],[1,-4],[-1,-4],[-3,0],[-2,-3],[-5,-1],[-6,4],[-4,5],[-3,9],[-2,2],[-1,2],[0,3],[6,4],[2,2],[2,3],[5,4],[8,4],[5,-1],[2,-4],[2,-3],[1,-1],[1,1],[1,1]],[[56249,85930],[3,-1],[1,-1],[-2,-3],[-17,-10],[-5,-2],[-3,2],[0,5],[2,3],[1,0],[2,1],[7,3],[6,1],[2,1],[3,1]],[[56000,86153],[4,1],[3,-2],[-2,-5],[-3,-5],[-1,-4],[-1,-4],[-3,0],[-1,0],[-3,0],[-4,3],[0,8],[2,9],[5,8],[5,0],[0,-5],[-2,-2],[1,-2]],[[55905,86508],[2,-1],[0,-8],[-1,-5],[-4,2],[-11,7],[-1,-1],[-1,1],[0,2],[-2,2],[-2,3],[0,2],[5,2],[4,-3],[1,-5],[1,-2],[2,1],[2,0],[1,-1],[2,0],[2,4]],[[55950,86699],[2,-2],[1,-1],[-3,1],[-9,5],[-6,-3],[-4,0],[-2,1],[1,0],[-1,2],[-1,6],[1,3],[2,1],[1,1],[0,2],[2,3],[4,4],[3,-3],[-1,-5],[1,-5],[9,-10]],[[55978,86970],[1,-3],[-1,-2],[-2,0],[-1,-2],[-1,-2],[-2,0],[-6,1],[-5,4],[0,1],[3,1],[3,6],[11,-4]],[[55891,87747],[-5,5],[-2,-2],[-5,-3],[-5,5],[-3,5],[0,3],[1,0],[2,-1],[1,-1],[1,2],[1,5],[-2,2],[-3,3],[-3,5],[0,5],[2,3],[2,2],[2,0],[1,-2],[1,-1],[7,-3],[3,-3],[3,-5],[3,-7],[1,-8],[0,-6],[-1,-2],[-2,-1]],[[79866,59178],[0,8],[-2,6],[-2,5],[-2,5],[3,8],[-1,9],[-3,9],[-1,9],[2,8],[12,23],[4,12],[0,6],[-2,5],[-17,27],[-4,4],[-3,5],[-2,7],[-2,8],[1,8],[-2,10],[0,8],[3,5],[5,1],[8,5],[5,3],[4,1],[8,-3],[4,1],[3,6],[0,7],[-2,10],[0,6],[1,5],[4,6],[2,3],[2,9],[2,11],[1,20],[1,5],[2,5],[2,-1],[1,-3],[2,1],[1,4],[2,28],[0,9],[-2,8],[-4,9],[-12,20],[-4,7],[-2,11],[0,23],[0,2],[-1,4],[-5,3],[-12,-4],[-5,7],[-2,10],[1,14],[-1,12],[-4,4],[-2,-2],[-2,0],[-1,2],[-1,5],[-1,7],[-2,0],[-1,-2],[-2,-1],[-5,3],[-2,0],[-3,-4],[-2,-5],[-2,-3],[-3,5],[-15,55],[-3,6],[-11,11],[-4,8],[-3,8],[-1,9],[-2,25],[-1,8],[-3,7],[-15,18],[-3,9],[0,12],[7,32],[3,7],[4,1],[2,-1],[3,-3],[3,-1],[2,2],[19,25],[5,4],[11,4],[4,4],[4,10],[8,28],[4,8],[3,8],[0,5],[-2,5],[-2,7],[1,10],[0,1],[0,7],[-1,3],[-5,-1],[-16,-8],[-8,-2],[-8,5],[-6,12],[-10,27],[-7,10],[-5,3],[-4,1],[-3,2],[-5,5],[-3,7],[-2,5],[-1,2],[-1,7],[-3,32],[-2,8],[-6,8],[-5,5],[-1,0],[-4,3],[-11,2],[-9,0],[-4,1],[-3,4],[0,4],[-1,13],[-2,6],[-1,3],[-7,8],[-5,8],[-3,8],[-3,16],[-1,-1],[-2,-2],[-2,-1],[-1,2],[0,3],[1,3],[1,2],[0,1],[1,20],[0,24],[-5,15],[-7,1],[-6,-21],[-1,-10],[-3,-6],[-7,-10],[-2,-5],[0,-4],[0,-5],[-1,0],[-2,-4],[-3,-3],[-2,0],[-1,3],[0,6],[-8,-2],[-6,9],[-4,16],[-4,23],[-1,7],[2,32],[-2,7],[-4,4],[-3,0],[-6,5],[-5,6],[-7,15],[-2,12],[-2,15],[0,158],[0,13],[-3,10],[-7,-15],[-7,4],[-5,2],[-5,4],[-5,5],[-2,4],[-1,5],[-1,6],[-5,19],[0,3],[2,6],[0,4],[-3,10],[-13,25],[-8,29],[-2,9],[0,6],[3,9],[0,6],[-1,3],[-4,9],[-1,4],[-1,7],[0,6],[0,5],[-4,3],[-3,0],[-2,-4],[0,-5],[-1,-5],[-5,-8],[-3,-5],[-4,1],[-6,7],[-46,81],[-24,60],[-6,12],[-18,48],[-7,14],[-9,13],[-15,13],[-3,5],[-3,10],[-3,22],[-3,10],[-6,17],[-7,28],[-11,20],[-3,20],[3,45],[-1,3],[-3,16],[-7,7],[-2,5],[-1,5],[-1,14],[-1,6],[-3,5],[-4,5],[-3,5],[-4,20],[-1,2],[-4,2],[-1,2],[0,1],[1,3],[1,3],[-1,3],[-2,16],[-1,6],[-5,7],[-5,4],[-6,1],[-5,-4],[-2,-6],[-1,-13],[-1,-4],[-3,-4],[-1,1],[0,2],[-2,3],[-5,2],[-5,4],[-4,7],[-3,8],[0,7],[1,14],[0,7],[-2,6],[-1,1],[-1,-2],[-8,-2],[-3,-1],[-3,2],[-1,4],[-3,9],[-1,4],[-14,17],[-3,8],[0,12],[2,8],[0,7],[-5,10],[-8,13],[-7,13],[-3,17],[2,24],[4,33],[3,18],[4,10],[4,1],[3,-2],[3,1],[2,10],[0,2],[0,7],[-2,5],[-6,8],[-8,27],[-3,2],[-3,-1],[-4,-1],[-3,-1],[-7,5],[-14,17],[-4,1],[-5,-2],[-6,0],[-4,2],[-3,6],[-3,15],[-7,4],[-16,-2],[-4,1],[-11,6],[-11,4],[-4,2],[-2,4],[-3,10],[-1,3],[-3,2],[-6,1],[-2,2],[-5,5],[-7,16],[-4,6],[-9,10],[-4,7],[-9,29],[-4,7],[-4,6],[-6,2],[-8,-1],[-5,2],[-4,5],[-8,25],[-4,8],[-5,4],[-4,4],[-6,4],[-4,7],[-4,8],[-4,6],[-5,3],[-8,-5],[-3,5],[0,11],[-1,12],[-3,5],[-11,16],[-31,28],[-5,3],[-6,-1],[-6,-5],[-9,12],[-7,8],[-2,3],[-1,4],[-4,14],[-4,1],[-5,0],[-3,2],[2,11],[4,5],[10,9],[4,7],[6,17],[3,5],[6,3],[6,7],[7,5],[4,1],[1,-3],[0,1],[2,8],[1,6],[1,14],[2,6],[3,3],[3,2],[2,2],[1,7],[-3,8],[-1,10],[0,10],[-2,10],[-3,5],[-9,11],[-3,8],[-6,31],[0,8],[1,9],[3,2],[3,-2],[13,-14],[6,-3],[5,2],[3,3],[2,9],[2,4],[1,3],[6,0],[12,6],[8,5],[3,-7],[10,-6],[5,-17],[13,16],[5,3],[6,-1],[3,-5],[3,-8],[3,-8],[3,-3],[7,-6],[16,-19],[4,-2],[7,1],[2,2],[4,6],[3,2],[2,-1],[5,-6],[3,0],[2,7],[9,47],[2,8],[4,8],[4,6],[4,2],[3,1],[6,3],[6,13],[7,6],[6,8],[3,19],[0,10],[0,5],[-2,3],[-5,4],[-9,1],[-1,3],[2,11],[5,14],[15,18],[6,9],[3,9],[0,5],[2,3],[5,1],[8,-2],[4,2],[3,4],[1,2],[1,8],[-1,8],[0,7],[-1,11],[-1,5],[0,4],[1,1],[4,2],[1,2],[-2,9],[-11,14],[-4,12],[0,13],[2,6],[-1,5],[-24,27],[-12,-1],[-12,-9],[-12,-5],[-9,10],[-2,8],[0,12],[1,12],[1,8],[2,3],[2,0],[3,1],[1,8],[1,6],[-1,6],[-1,7],[-1,5],[-4,6],[-10,9],[-5,6],[-6,18],[-4,4],[-40,-2],[-11,6],[-9,11],[2,11],[16,22],[6,24],[7,-11],[7,-3],[7,4],[6,10],[18,50],[2,14],[0,2],[-4,8],[-16,11],[-14,14],[-5,9],[-2,19],[-4,8],[-6,1],[-6,0],[-6,4],[-2,4],[-2,10],[-2,5],[-2,3],[-4,3],[-2,3],[-4,9],[-5,18],[-3,9],[-2,4],[-2,3],[-3,3],[-3,1],[-2,0],[-7,-4],[-1,0],[-1,3],[-3,12],[-2,5],[-2,3],[-8,5],[-3,1],[-6,1],[-3,1],[-2,2],[-4,6],[-2,2],[-10,-1],[-13,-30],[-10,-4],[-3,1],[-3,-2],[-6,-5],[-20,-13],[-2,-3],[-5,-7],[-2,-3],[-3,0],[-5,1],[-4,-2],[-2,-7],[-3,-11],[-2,-12],[-2,-9],[1,-12],[1,-6],[-1,-4],[-6,-7],[-3,-3],[-2,0],[-2,-3],[-2,-7],[1,-6],[3,-11],[0,-5],[-2,-3],[-3,-3],[-3,-3],[-3,0],[-3,1],[-1,1],[-1,3],[-6,10],[-11,24],[-5,6],[-17,7],[-3,1],[-3,1],[-2,3],[-2,3],[-3,7],[-5,20],[-3,7],[-4,3],[-2,-2],[0,-3],[-2,-4],[-6,-6],[-1,-1],[-7,-4],[-1,0],[-3,1],[-8,5],[-16,17],[-4,3],[-3,-1],[-3,-2],[-2,-1],[-3,0],[-3,2],[-4,6],[-2,2],[-3,2],[-5,1],[-3,3],[-2,2],[-4,8],[-8,20],[-5,17],[-8,38],[-7,27],[-4,10],[-7,6],[-4,-1],[-2,2],[-1,4],[-2,5],[-2,11],[-2,22],[0,1],[-3,10],[-3,3],[-3,1],[-1,1],[-2,6],[0,5],[2,12],[1,6],[-2,7],[-3,6],[-3,5],[-4,3],[-6,1],[-6,-1],[-2,2],[3,11],[5,7],[9,5],[4,7],[1,10],[0,27],[1,12],[9,30],[1,7],[-4,1],[-6,-5],[-5,-7],[-4,-4],[12,41],[6,11],[11,26],[5,11],[0,2],[0,1],[0,2],[0,2],[-3,13],[-1,14],[1,41],[-1,6],[-1,7],[-2,8],[-2,1],[-1,-3],[-20,-17],[-5,-1],[-3,7],[-1,12],[0,24],[-2,27],[-5,8],[-5,-9],[-1,-48],[-3,-19],[-7,-16],[-8,-11],[-3,-1],[-15,-1],[-1,-1],[-1,1],[-2,6],[-2,9],[-1,13],[-1,14],[2,35],[-3,24],[-9,43],[-9,14],[-12,8],[-11,11],[-3,23],[0,2],[1,2],[0,2],[1,2],[3,7],[-5,8],[-7,7],[-5,9],[-2,7],[-3,15],[-2,6],[-2,5],[-9,10],[-20,39],[-17,17],[-5,10],[-2,12],[-4,7],[-5,7],[-4,9],[0,3],[1,7],[0,4],[-1,2],[-2,4],[-1,2],[-3,19],[-2,6],[-1,8]],[[79997,63194],[-6,-6],[-6,-12],[-5,-8],[-4,10],[0,5],[1,4],[2,3],[1,2],[-1,5],[0,3],[-1,2],[0,2],[-1,9],[-3,5],[-3,3],[-5,1],[1,-4],[0,-2],[-2,-6],[-2,0],[-2,10],[-2,-5],[-2,-17],[-3,-3],[-2,4],[-1,9],[0,10],[-2,0],[-2,-4],[0,-4],[1,-2],[1,-2],[0,-8],[-2,0],[-1,8],[-2,-4],[-1,12],[-4,3],[-5,-3],[-4,-4],[0,-4],[5,0],[3,-2],[2,-5],[2,-8],[-4,3],[0,-4],[1,-8],[1,-4],[-3,0],[-2,-2],[-2,-3],[-1,-3],[2,-4],[-5,-16],[-5,0],[-2,0],[-1,-3],[-2,-5],[-4,0],[-4,3],[-2,5],[-2,0],[-1,-3],[0,-2],[0,-3],[1,-8],[-1,-4],[-4,-1],[-4,4],[0,-3],[0,-1],[1,-1],[1,-3],[0,-4],[-2,-2],[-1,-3],[1,-3],[2,-4],[-2,-1],[-4,-3],[1,-1],[1,0],[0,-1],[0,-2],[-1,1],[-5,3],[-1,-15],[-1,-7],[-3,-3],[-4,1],[-3,2],[-3,4],[-2,6],[-1,7],[0,6],[-2,5],[-3,2],[-1,-3],[2,-6],[0,-6],[-1,-5],[0,-5],[4,-3],[-3,-2],[-6,0],[-6,2],[-1,0],[-2,1],[-3,3],[-2,6],[-1,1],[-10,5],[-2,-8],[2,-4],[8,-9],[0,-3],[-6,-5],[-9,0],[-7,-4],[0,-4],[2,-4],[-1,-4],[-1,-3],[-1,-5],[-1,-22],[-1,-6],[2,-4],[2,-2],[3,-1],[2,3],[-1,-27],[-2,-14],[-4,-8],[1,-5],[0,-4],[-1,-2],[-2,-1],[1,-9],[1,-9],[1,-7],[2,-4],[0,-3],[-4,-8],[-3,-3],[-4,-2],[-6,-1],[-5,0],[-4,-3],[-4,3],[-5,-1],[-6,-3],[-4,-3],[2,-2],[0,-1],[2,-1],[2,0],[0,-4],[-5,-2],[-6,-14],[1,-9],[-4,0],[-3,-2],[-3,-1],[-3,3],[0,-4],[-4,8],[-14,4],[-5,5],[0,3],[8,21],[15,20],[0,4],[-4,0],[-3,-2],[-4,-2],[-2,-3],[-2,-4],[0,-4],[-1,-4],[-2,-1],[-1,2],[0,4],[1,4],[1,3],[-2,1],[0,1],[0,1],[-2,-10],[-3,-4],[-2,2],[1,12],[-2,0],[0,-6],[0,-6],[-1,-4],[-1,-4],[0,8],[0,7],[-2,4],[-3,1],[0,-3],[1,-2],[1,-4],[1,-3],[-1,0],[-2,0],[3,-8],[-4,0],[-2,3],[-5,9],[-1,-8],[7,-12],[2,-8],[-3,-9],[-4,-4],[-6,0],[-5,0],[-4,2],[-4,3],[-4,4],[-3,4],[-7,12],[-3,2],[-1,-6],[-1,3],[-1,1],[-2,0],[8,-19],[3,-6],[6,-6],[2,-2],[1,-4],[0,-5],[2,-4],[3,-3],[0,-4],[-8,0],[-4,3],[-3,6],[-2,11],[-2,0],[0,-5],[1,-4],[1,-4],[1,-3],[-5,-16],[-2,4],[-3,12],[-5,8],[1,3],[0,1],[-1,4],[-2,0],[-5,-3],[-7,6],[-3,9],[5,4],[5,1],[3,2],[1,4],[-1,6],[-2,3],[-2,2],[-1,4],[3,7],[-2,4],[-2,3],[-2,1],[-3,1],[1,-3],[0,-4],[1,-2],[-7,1],[-4,6],[-4,3],[-6,-6],[0,-4],[2,0],[0,-4],[-10,8],[-6,3],[-5,-3],[2,-1],[1,0],[8,-7],[0,-4],[-1,1],[-6,3],[0,-4],[3,-5],[1,-7],[0,-6],[2,-6],[2,-4],[7,-1],[6,-5],[4,0],[2,-2],[1,-11],[0,-7],[-3,-8],[-1,-7],[-1,0],[-6,12],[-5,-12],[2,-7],[6,-6],[4,-7],[3,-14],[-1,-13],[-4,-5],[-5,7],[2,-10],[4,-12],[5,-11],[4,-7],[2,4],[3,-9],[5,-32],[-6,9],[-3,5],[-1,4],[-1,3],[-3,-2],[-3,-4],[-1,-3],[-3,-1],[-2,-1],[-2,-2],[-4,0],[-8,5],[-3,-1],[0,-4],[7,-6],[4,-5],[0,-7],[-6,-10],[-3,-4],[-5,-3],[-4,-2],[-5,1],[-2,3],[-4,12],[-3,5],[1,-9],[1,-1],[1,-5],[4,-10],[2,-2],[1,0],[1,-1],[0,-6],[0,-4],[-1,-3],[-1,-2],[-4,-4],[-7,-11],[-17,-15],[5,-5],[4,0],[8,9],[0,-4],[-4,-9],[2,-9],[3,-8],[-1,-11],[-2,0],[-8,-6],[-1,-1],[-1,-2],[-2,-5],[-2,-5],[-1,-5],[1,0],[4,5],[7,5],[6,2],[3,-6],[-1,-25],[-2,-14],[-3,-8],[-2,6],[0,3],[0,-3],[0,-1],[-1,-1],[-1,1],[5,-10],[1,-6],[1,-7],[0,-9],[1,-11],[1,-17],[-3,-7],[-6,14],[-3,7],[-3,6],[-4,3],[-5,-3],[-2,0],[1,-5],[1,-2],[2,-2],[2,3],[1,6],[7,-10],[1,-3],[1,-6],[3,-9],[2,-9],[-1,-9],[-4,-4],[-4,1],[-3,-2],[-7,-4],[-9,-1],[-4,-2],[-18,-4],[0,4],[2,0],[0,4],[-2,0],[-1,-1],[-3,-3],[0,-4],[2,-4],[-1,-3],[-6,-5],[-2,-4],[-4,-16],[-9,-25],[-7,-8],[-6,-20],[-7,-8],[-6,-15],[-5,-5],[3,13],[1,3],[-2,4],[-2,-8],[-3,-18],[-2,-7],[-5,-4],[-10,-6],[-5,-6],[-1,9],[1,10],[1,10],[1,12],[-2,0],[0,-10],[-5,-26],[-1,-5],[-4,2],[-5,6],[-3,6],[-2,6],[-2,0],[-2,-7],[-3,-8],[-12,-22],[-3,-6],[-1,-9],[0,-6],[2,-9],[0,-6],[-6,-16],[-1,-9],[0,-16],[-1,-7],[-1,2],[-3,6],[-2,-6],[-4,-6],[-7,-8],[2,-5],[3,4],[8,1],[4,4],[-2,-8],[-5,-14],[-1,-9],[-1,-4],[-4,0],[-4,0],[-2,-8],[-1,-10],[-7,-19],[-2,-10],[0,-9],[0,-17],[-2,-6],[0,13],[-4,2],[-3,-6],[0,-9],[1,4],[2,5],[1,3],[1,-5],[1,-6],[0,-6],[0,-3],[1,0],[0,-22],[-3,-45],[2,-23],[-4,5],[-4,-16],[-4,3],[0,-3],[3,-6],[1,-6],[2,-17],[5,-20],[1,-8],[-6,8],[0,-6],[2,-7],[2,2],[1,-2],[0,-11],[-1,-4],[0,-1],[-3,-3],[-2,0],[-2,-1],[-3,-17],[-3,-1],[-4,1],[-1,-3],[-3,-36],[0,-22],[2,-15],[-7,-7],[-3,-4],[-2,-5],[-7,5],[-7,-15],[-6,-21],[-2,-18],[-1,-8],[2,-5],[0,-5],[1,-8],[2,-19],[1,-8],[4,-10],[6,-10],[7,-9],[6,-3],[0,-4],[-4,-8],[-1,5],[-2,4],[-2,2],[-3,1],[3,-14],[1,-3],[2,-1],[5,1],[2,-2],[6,-13],[3,-9],[1,-8],[-4,-25],[1,-4],[3,-4],[0,-12],[0,-12],[-2,-8],[6,5],[0,14],[-1,36],[-1,2],[6,-7],[1,-17],[1,-17],[1,-8],[2,-6],[6,-43],[15,-49],[10,-22],[10,-2],[0,-11],[2,-11],[3,-11],[2,-7],[7,-10],[2,-4],[10,-28],[15,-25],[3,-8],[1,-8],[-5,-2],[2,-5],[5,2],[6,5],[7,2],[4,-4],[15,-23],[1,-2],[6,-4],[3,-4],[8,-20],[9,-14],[4,-8],[2,-11],[-2,0],[-3,4],[-3,-2],[-4,-4],[-1,-6],[3,-4],[2,2],[1,1],[3,1],[-1,-7],[0,-6],[3,-11],[0,7],[1,7],[1,6],[2,4],[3,3],[1,-1],[2,-2],[3,0],[3,3],[5,14],[3,-3],[0,-6],[-3,-12],[1,-12],[4,-13],[22,-56],[1,-4],[0,-4],[-5,-8],[-6,-9],[-3,-7],[-2,-7],[-3,-5],[-5,0],[0,-5],[3,-1],[1,-4],[0,-5],[-2,-6],[2,-11],[3,-17],[2,-31],[2,-6],[5,-11],[1,-5],[-2,-5],[-3,1],[-9,7],[-3,14],[-3,3],[-4,2],[-10,11],[-19,3],[-4,4],[-2,-3],[4,-6],[6,-5],[7,-4],[9,-2],[14,-8],[0,-4],[-2,0],[-6,5],[-5,-8],[-1,-12],[8,-9],[-1,7],[-1,2],[-2,3],[7,6],[9,-3],[9,-7],[6,-8],[3,-8],[6,-25],[8,-18],[13,-46],[4,-19],[2,-10],[1,-1],[5,-9],[1,-2],[1,-2],[4,-10],[24,-56],[51,-77],[17,-26],[28,-43],[5,-17],[-2,-25],[3,-5],[15,-45],[4,-4],[1,-5],[-1,-2],[-2,-2],[-2,-3],[-1,-5],[-1,-2],[-10,-12],[0,-4],[7,0],[3,1],[3,3],[1,3],[-1,4],[0,4],[5,7],[3,2],[1,-4],[2,-6],[2,-2],[4,-5],[36,-63],[9,-14],[24,-36],[29,-55],[9,-5],[0,-5],[-11,7],[-34,37],[-8,-3],[21,-25],[7,-3],[3,-3],[2,-8],[3,-1],[3,1],[2,3],[3,-6],[2,-5],[7,-6],[0,-4],[-3,3],[-1,1],[-2,0],[0,-2],[-1,-2],[-1,-4],[4,0],[4,0],[8,4],[-2,-4],[-1,-4],[-1,-4],[0,-6],[1,1],[2,-6],[1,-7],[0,-2],[2,0],[2,2],[1,4],[1,4],[3,3],[2,-3],[1,-6],[1,-4],[11,-15],[2,-6],[7,-21],[5,-7],[6,-16],[5,-5],[-1,-2],[-1,-1],[-2,-1],[-2,2],[-1,3],[-2,2],[-3,2],[-1,-5],[4,-34],[1,-5],[3,-5],[7,-8],[2,0],[2,3],[3,-1],[2,-4],[0,-6],[3,3],[1,-3],[11,16],[1,4],[-2,18],[0,6],[4,2],[13,-19],[6,-3],[2,4],[1,5],[2,5],[3,2],[0,-4],[3,-20],[2,-10],[9,-31],[-7,12],[-4,3],[-2,-8],[2,-7],[5,-4],[5,-2],[3,2],[2,0],[5,-4],[7,-3],[8,-2],[7,1],[-1,-3],[-3,-7],[-10,-17],[-3,-13],[0,-17],[5,-9],[6,-8],[4,-11],[4,9],[3,2],[2,-1],[2,-20],[0,-2],[-1,-9],[-3,-8],[-3,-7],[-4,-5],[5,4],[5,6],[5,2],[2,-8],[-3,31],[-2,8],[0,9],[2,10],[0,9],[-6,2],[0,5],[2,3],[1,4],[2,4],[0,5],[2,-2],[1,-1],[1,3],[2,0],[2,-5],[4,-5],[4,-4],[4,-2],[1,3],[1,5],[2,4],[1,-2],[1,-2],[3,-8],[-3,-6],[-3,-3],[-3,-5],[-1,-7],[-2,5],[-7,-3],[-4,3],[-2,-22],[2,-23],[4,-21],[1,-4],[3,-12],[3,-8],[15,-24],[4,-4],[4,-6],[2,-10],[-3,-2],[-2,-2],[-1,-3],[2,-2],[2,2],[2,4],[2,3],[2,0],[1,-8],[3,-37],[9,-35],[45,-129],[8,-9],[10,3],[-2,-17],[-2,-4],[-4,8],[-3,-2],[-4,-4],[-2,-7],[2,-11],[6,-10],[5,5],[6,25],[2,0],[1,-12],[1,-14],[1,-5],[7,-12],[1,-4],[2,-2],[5,-6],[1,-2],[2,-4],[0,-7],[0,-7],[0,-7],[2,-7],[-1,-3],[-1,-2],[0,-3],[2,0],[0,3],[2,9],[2,-1],[2,0],[5,1],[0,4],[-7,2],[-2,10],[2,13],[5,7],[0,5],[-1,1],[-1,2],[-2,5],[3,-2],[2,-1],[1,0],[2,3],[2,-9],[1,-23],[2,-5],[2,-2],[7,-11],[1,-5],[0,-22],[1,-8],[8,-13],[3,-4],[2,-2],[4,0],[2,-2],[-3,-8],[-3,-6],[-3,-3],[-5,1],[0,-5],[3,1],[2,-1],[1,-2],[0,-6],[-4,5],[-1,-7],[-1,-17],[-1,-9],[-5,4],[-4,-1],[-1,-4],[2,-7],[2,0],[2,2],[2,-1],[1,-5],[1,-8],[1,0],[0,5],[1,3],[1,8],[3,-53],[6,-46],[18,-84],[-6,-1],[1,-3],[6,-6],[2,-5],[5,-17],[2,-4],[10,-28],[2,-9],[2,-28],[-2,2],[-2,4],[-1,5],[0,-8],[2,-39],[1,-6],[0,-4],[0,-3],[-3,1],[-1,-7],[-2,-3],[-1,-3],[2,-8],[1,12],[1,4],[9,-53],[5,-14],[1,-8],[0,-32],[0,-8],[2,-10],[4,-17],[8,-20],[3,-8],[1,-8],[2,-25],[-3,-9],[4,-20],[9,-32],[-5,2],[-2,5],[-1,8],[-3,6],[-7,3],[0,-10],[3,-12],[9,-10],[3,-9],[7,-42],[4,-66],[2,-9],[8,-12],[1,-6],[-2,-46],[1,-23],[-2,-2],[-7,0],[-1,6],[2,35],[-4,29],[-2,10],[-4,-7],[0,-6],[-2,-22],[-2,-11],[-1,-4],[3,3],[3,-14],[1,-5],[4,-1],[-3,-7],[-4,-6],[-2,-7],[-1,-13],[4,-13],[0,-1],[0,-4],[0,-16],[1,-12],[2,-13],[2,-10],[4,-4],[0,-3],[3,-5],[4,-4],[1,0],[1,-6],[0,-4],[-1,-2],[-3,0],[0,-4],[1,-3],[0,-2],[1,-7],[-3,5],[-6,22],[-3,15],[-7,18],[-2,9],[-2,0],[-1,-10],[2,-4],[2,-3],[2,-4],[2,-6],[1,-12],[1,-6],[4,-7],[2,-3],[0,-4],[-1,-2],[-1,0],[2,-6],[6,-15],[2,0],[1,3],[1,2],[3,3],[-1,-6],[-2,-7],[-1,-5],[1,-7],[3,-5],[3,-1],[3,3],[1,-6],[-2,-8],[1,-6],[-3,-11],[-2,-6],[-3,-4],[-2,7],[-6,2],[-1,6],[1,4],[3,2],[3,4],[0,8],[-1,4],[-9,12],[-3,0],[-2,-2],[-2,-5],[-2,-9],[2,-5],[-1,-5],[0,-5],[3,-6],[-2,-4],[-1,-6],[-1,-10],[5,-5],[5,-13],[4,-6],[3,6],[2,1],[2,-7],[1,-6],[-1,-5],[-2,-2],[-3,1],[0,-4],[1,-3],[1,-3],[0,-5],[0,-5],[-2,2],[-3,3],[-1,2],[-1,-5],[-1,0],[-2,-2],[4,-21],[2,-8],[4,-8],[-1,18],[1,8],[3,3],[0,3],[-1,5],[0,3],[2,0],[1,-3],[1,-5],[1,-6],[0,-12],[0,-5],[-4,-13],[0,-6],[2,-12],[0,-10],[-2,-9],[-1,-9],[1,-11],[3,-8],[2,-7],[2,-8],[-1,-5],[4,-5],[2,-5],[6,-22],[7,-17],[6,-18],[11,-29],[2,-6],[1,-9],[0,-11],[-1,-10],[-2,-6],[-1,-1],[-5,-3],[-1,0],[-1,4],[1,3],[2,2],[1,2],[1,3],[1,2],[0,2],[-3,2],[-6,-9],[-1,-3],[-2,-9],[-1,-3],[-2,-2],[-3,-1],[-2,-1],[-3,-4],[2,-5],[1,-7],[-1,-9],[0,-8],[13,-50],[4,-10],[4,-1],[5,-8],[1,-2],[0,-5],[-2,-1],[-2,-1],[-2,-3],[0,-9],[1,-24],[-1,-8],[-3,-3],[-3,6],[-3,18],[-1,3],[-1,1],[-1,3],[-1,7],[1,1],[5,9],[0,4],[-6,20],[0,-5],[-2,-3],[-2,-1],[-4,1],[2,-5],[0,-5],[0,-5],[-2,-5],[-1,6],[-2,4],[-3,2],[-3,0],[5,15],[1,3],[1,2],[2,2],[3,3],[1,6],[-1,9],[-5,14],[-1,7],[0,18],[-1,2],[-3,-1],[-1,-4],[-1,-4],[-1,-5],[-10,-13],[-2,-5],[-7,-18],[-4,-8],[-4,-3],[-2,-4],[-8,-24],[0,-6],[1,-23],[-2,-4],[0,-9],[1,-9],[0,-6],[1,0],[1,-1],[0,-3],[2,0],[1,6],[0,7],[1,5],[3,2],[0,4],[-2,0],[0,4],[5,-3],[0,-8],[-3,-10],[-2,-9],[2,-10],[3,-8],[14,-19],[1,-5],[-3,-12],[1,-6],[1,-5],[1,-2],[5,-3],[4,-7],[3,-8],[-3,-6],[2,-4],[-2,-4],[-3,8],[-2,-6],[-2,-10],[-3,-5],[-5,3],[-2,7],[-4,15],[-12,28],[-9,11],[-8,-3],[2,-3],[1,-6],[1,-3],[-3,3],[-1,1],[-1,0],[1,-8],[4,-10],[2,-6],[6,2],[2,-9],[1,-15],[1,-13],[0,-5],[2,-6],[3,-5],[3,-5],[0,-5],[-1,-3],[-4,3],[-1,0],[-1,-4],[-3,-16],[-6,6],[-2,2],[2,-5],[2,-5],[6,-7],[-2,-9],[1,-6],[2,-7],[2,-6],[-7,4],[-3,-1],[-1,-7],[2,4],[4,-4],[1,-5],[1,-7],[0,-4],[0,-2],[0,-3],[3,-5],[1,-7],[-1,-5],[-3,-7],[-1,-5],[1,-24],[2,-11],[8,-31],[3,-7],[8,-11],[0,-4],[-1,-10],[0,-2],[-5,-8],[0,-10],[1,-9],[3,-6],[4,-4],[0,-4],[-5,-4],[-4,1],[-4,4],[-3,7],[-1,-1],[-2,-1],[-1,-2],[-2,18],[2,43],[-3,21],[2,0],[-7,35],[-2,25],[-3,7],[-4,-10],[4,-14],[1,-3],[1,-2],[-2,-16],[2,-6],[6,-13],[2,-9],[-1,-18],[-3,-16],[-5,-16],[-7,-14],[-5,-1],[-3,-20],[2,-19],[8,-4],[2,5],[4,12],[4,10],[2,-1],[-1,-8],[-2,-8],[0,-8],[3,-10],[0,-13],[0,-2],[10,-29],[-3,-13],[-2,4],[-2,-4],[-2,-12],[-5,-13],[-1,-5],[0,-6],[-1,-9],[-1,-4],[-5,-9],[-2,-5],[0,-6],[-2,-7],[-3,-9],[-2,0],[-3,6],[-5,0],[-4,-1],[-5,3],[-4,7],[-2,21],[-1,4],[-6,-3],[0,-8],[3,-7],[2,-4],[0,-8],[-1,-8],[-1,-9],[2,-9],[-6,-1],[-2,1],[5,-16],[0,-25],[-3,-40],[1,-23],[-1,-7],[-3,-7],[-7,-12],[-4,-6],[-4,-2],[-6,0],[-12,12],[-4,2],[-5,0],[-5,-2],[-5,-4],[-9,-14],[-3,-7],[-3,-8],[-2,-10],[-4,-30],[-2,-11],[-2,-4],[-4,-2],[-4,0],[-3,1],[-6,6],[-4,1],[-2,-1],[-6,-5],[-3,-2],[-10,0],[-2,-2],[-3,-8],[-8,-5],[-5,-9],[-4,-10],[-2,-10],[-3,-24],[-3,-6],[-7,-3],[-2,-1],[-10,-11],[-3,-1],[-4,0],[-2,-2],[-2,-8],[-4,-27],[-1,-6],[-5,-2],[-3,-4],[-4,-19],[-2,0],[-3,18],[-7,5],[-34,-14],[-8,-5],[-4,-10],[-1,-6],[-7,-14],[-1,-8],[-1,-7],[-4,-17],[-2,-25],[-10,-43],[-2,0],[-3,4],[-12,7],[-5,2],[-6,-1],[-4,-2],[-17,-14],[-11,-21],[-4,-4],[-10,-7],[-19,-21],[-6,-1],[-6,-5],[-10,-12],[-1,-1],[-3,-5],[-7,-16],[-2,-6],[-2,-7],[-6,-7],[-17,-17],[-5,-3],[-13,-3],[-11,-7],[-3,1],[-2,-6],[-8,-16],[-7,-22],[-5,0],[-10,14],[-8,2],[2,5],[2,2],[2,1],[2,4],[0,5],[-2,5],[-2,5],[-1,1],[-1,2],[-6,13],[-1,-1],[-3,0],[-3,1],[-2,2],[0,-9],[-2,0],[-3,8],[-6,6],[-6,1],[-4,-6],[-2,0],[1,5],[0,3],[-1,8],[-3,-12],[-2,-5],[-3,-3],[-1,11],[0,5],[-5,-5],[-2,-3],[-1,-4],[-2,0],[1,9],[3,5],[2,2],[1,1],[3,3],[2,6],[0,6],[-1,43],[-1,3],[-3,9],[-1,6],[0,-2],[4,-2],[-1,2],[0,12],[-3,10],[-8,16],[-1,-9],[3,-6],[4,-6],[2,-5],[-3,-15],[0,-8],[4,-3],[2,-5],[0,-9],[-3,-15],[0,-4],[2,-3],[2,-4],[0,-5],[-2,-1],[-3,3],[-3,6],[2,4],[-4,9],[0,3],[1,5],[1,8],[0,16],[-2,0],[-2,-17],[0,-17],[2,-16],[6,-11],[-3,-3],[-2,-2],[-6,-23],[-3,-5],[-1,3],[0,5],[1,7],[0,6],[-1,6],[-1,3],[-2,2],[-1,5],[-2,12],[0,10],[2,21],[-15,26],[-2,4],[-4,-4],[-6,-6],[-5,-3],[-3,7],[-1,6],[-4,9],[-2,4],[-2,4],[-4,3],[-1,-1],[-6,-6],[-1,-3],[-2,-6],[2,-4],[3,-3],[1,-3],[1,-6],[3,-17],[-1,-6],[-1,-4],[-2,-2],[-1,-4],[-2,-9],[-1,-5],[-1,-7],[-2,-11],[-3,-4],[-9,-7],[-5,0],[-2,11],[-2,0],[1,-9],[1,-3],[1,-4],[-3,-2],[-3,-3],[-2,-5],[-2,-12],[-3,-3],[-4,-3],[-3,-5],[0,10],[-1,7],[-1,6],[-2,6],[0,-21],[2,-8],[3,-4],[5,2],[4,6],[3,8],[2,9],[2,0],[1,-9],[1,-9],[2,-7],[5,0],[3,5],[4,16],[3,4],[4,-4],[3,-9],[3,-10],[2,-8],[4,-9],[2,-8],[2,-51],[-2,-13],[-4,-6],[-5,1],[-15,7],[-29,0],[-20,8],[-11,0],[-5,3],[-5,5],[-4,3],[-4,-2],[16,-22],[67,-48],[1,-2],[5,-8],[2,-2],[1,-1],[1,-3],[2,-3],[3,-1],[3,-1],[2,-1],[1,-3],[1,-5],[-1,-14],[-2,-9],[-15,-33],[-4,-6],[-5,3],[2,4],[0,6],[-1,5],[-1,5],[-2,0],[-1,-10],[-1,-2],[-3,-8],[-2,-5],[-1,-5],[1,-2],[2,-5],[2,-5],[-2,-2],[-4,-2],[-1,-2],[0,-4],[-2,-6],[0,-4],[-1,-2],[-1,-1],[-11,1],[-4,3],[-4,7],[-4,7],[-4,7],[-14,12],[-8,14],[-7,18],[-23,78],[-8,17],[-11,7],[1,-4],[2,-1],[1,-1],[9,-14],[3,-8],[2,-23],[3,-12],[26,-71],[6,-12],[22,-22],[14,-23],[16,-18],[4,-2],[3,-5],[-1,-12],[-3,-13],[-4,-7],[0,4],[2,4],[1,6],[-1,5],[-2,5],[-1,0],[-2,-21],[-5,-13],[-8,-6],[-6,4],[-7,11],[-16,38],[-7,11],[-24,30],[-69,150],[-2,4],[-3,3],[-2,0],[-1,-1],[-1,-2],[1,-3],[3,-3],[2,-3],[7,-14],[2,-9],[2,-20],[2,-8],[3,-8],[6,-12],[9,-13],[10,-16],[3,-5],[1,-5],[3,-10],[1,-5],[15,-29],[1,-2],[6,-14],[24,-42],[7,-16],[5,-20],[2,-23],[3,-7],[7,-2],[3,-5],[2,-11],[0,-12],[-1,-30],[-4,-21],[-5,-17],[-7,-13],[-6,-8],[-4,-1],[-3,2],[-2,2],[-3,-2],[-4,-6],[-12,1],[-3,3],[-14,22],[-24,27],[-51,103],[-27,69],[-10,20],[-8,13],[-10,5],[-8,12],[-6,2],[6,-17],[17,-38],[48,-99],[2,-11],[1,-10],[2,-12],[29,-90],[2,-8],[1,-10],[1,-24],[-1,-8],[-10,-23],[2,-6],[3,-2],[2,-3],[0,-9],[-1,-9],[-2,-4],[-8,-3],[-38,-25],[-42,-36],[-30,-25],[-61,-49],[-7,-12],[-13,-28],[-7,-12],[-3,-8],[-1,-10],[-1,-2],[-3,-2],[-2,-2],[0,-3],[0,-6],[0,-3],[-20,-83],[-6,-17],[-6,-14],[-9,-16],[-12,-4],[-9,-8],[-8,-21],[-8,-27],[-7,-15],[-18,-11],[-50,-30],[-7,2],[-1,3],[-2,2],[-2,3],[-17,5],[-7,5],[-1,2],[-1,7],[2,1],[4,-2],[5,2],[14,19],[3,4],[2,1],[2,3],[1,6],[-1,6],[-3,3],[-1,3],[3,4],[4,0],[18,-8],[4,2],[5,5],[4,6],[2,7],[-7,-6],[-9,-5],[-9,-1],[-6,8],[-1,7],[1,3],[3,2],[5,1],[6,0],[2,1],[5,7],[0,4],[-3,10],[0,12],[1,11],[-18,-17],[-11,-6],[-7,8],[-5,20],[3,22],[3,21],[5,27],[-1,23],[-1,42],[1,51],[3,36],[1,87],[1,36],[1,67],[1,25],[6,108],[4,32],[6,35],[13,-1],[9,2],[1,11],[5,10],[17,26],[6,6],[3,-4],[1,-10],[6,-37],[0,8],[-1,23],[0,26],[-2,12],[-4,14],[-12,34],[-11,22],[-6,7],[-5,2],[-11,-6],[-7,0],[-9,12],[-6,18],[-6,20],[-5,15],[-9,12],[-10,3],[-8,-6],[-8,-13],[-1,-6],[0,-5],[0,-4],[-3,-1],[-2,-3],[-1,-11],[-1,-3],[-10,2],[-1,-2],[-1,6],[0,4],[2,4],[-1,7],[-1,4],[-3,9],[-1,5],[0,16],[-1,14],[-3,9],[-8,12],[-1,-4],[0,-1],[0,-3],[-3,0],[0,16],[-3,12],[-6,16],[-1,8],[1,2],[2,0],[2,3],[2,7],[1,5],[0,6],[-1,6],[-2,0],[-2,-9],[-3,-7],[-4,-5],[-4,-3],[-5,1],[0,6],[1,10],[-2,7]],[[79013,56640],[6,-2],[3,1],[3,6],[12,36],[2,9],[3,9],[4,6],[4,2],[12,1],[21,-6],[6,-1],[14,-4],[13,1],[9,8],[7,15],[12,37],[3,7],[3,7],[28,29],[6,14],[0,19],[-10,38],[-4,23],[-1,20],[2,10],[3,8],[3,5],[1,2],[3,6],[7,7],[1,-3],[1,-8],[3,-9],[4,-3],[27,-10],[12,-5],[5,-6],[9,-17],[4,-3],[3,5],[8,36],[11,27],[4,5],[1,-1],[8,-5],[6,-6],[2,-1],[14,6],[26,12],[4,2],[7,6],[5,7],[7,8],[8,5],[7,-2],[5,-11],[5,-18],[9,-28],[2,-9],[3,-20],[2,-9],[4,-9],[5,-7],[6,0],[2,6],[4,12],[2,13],[1,10],[9,-16],[2,-7],[6,-12],[7,-11],[7,-8],[8,-5],[15,-4],[8,-3],[6,-11],[-7,57],[-7,27],[-2,10],[1,1],[0,15],[0,2],[1,6],[1,2],[5,1],[6,0],[3,-1],[2,4],[-3,12],[-5,34],[-3,10],[-5,8],[-5,2],[-4,-6],[-3,-13],[-3,13],[-4,9],[-10,18],[-4,10],[-6,22],[-5,8],[-14,7],[-6,9],[-3,17],[-1,13],[-3,4],[-5,3],[-4,6],[0,8],[5,45],[3,20],[1,9],[-1,9],[-4,31],[0,15],[0,8],[-1,7],[-3,5],[-8,3],[-3,3],[-3,10],[-1,3],[1,12],[3,10],[4,8],[1,2],[5,10],[5,2],[13,-10],[8,-1],[4,8],[2,13],[8,17],[2,7],[0,8],[0,8],[7,14],[13,-4],[14,-10],[12,0],[19,-13],[5,-6],[2,-5],[4,-13],[3,-4],[3,-1],[16,8],[3,1],[3,-1],[4,-3],[6,-9],[3,-4],[4,0],[2,9],[0,1],[-2,13],[-8,27],[0,9],[2,9],[2,7],[2,9],[0,5],[0,11],[1,4],[4,14],[1,2],[-2,14],[-8,32],[-3,14],[0,2],[7,4],[3,1],[3,-2],[3,-3],[1,-6],[2,-4],[3,0],[9,12],[13,0],[24,-7],[-2,9],[14,-6],[6,3],[5,15],[3,19],[5,14],[6,8],[5,1],[4,1],[21,-4],[10,3],[10,8],[7,10],[19,40],[9,22],[7,11],[4,7],[2,8],[8,18],[16,17],[5,3],[13,9],[12,2],[7,-8],[8,-27],[6,-10],[6,1],[9,26],[7,10],[7,6],[4,11],[2,13],[2,15],[8,48],[0,14],[-2,8],[1,6],[1,7],[2,7],[1,18],[-1,19],[-7,66],[0,17],[0,16],[-1,16],[-3,16],[-8,19],[-2,7],[-1,9],[-1,18],[-3,15],[-1,6],[0,7],[2,5],[1,3],[1,3],[0,4],[-1,4],[-4,7],[-1,8],[28,143],[4,18],[9,45],[1,19],[-2,58],[-2,21],[-23,94],[-5,14],[-6,15],[-1,2],[-2,9],[-5,13],[-2,9],[0,7],[2,12],[0,6],[-3,18],[2,9],[1,7],[1,7],[-1,7],[0,3],[-4,18],[0,5],[0,6],[0,5],[-2,6],[-4,4],[-10,-3],[-5,4],[-3,11],[0,12],[1,12],[-1,12],[-3,10],[-3,6],[-1,7],[2,14],[9,56],[1,21],[0,5],[0,6],[-3,12],[0,5],[0,12],[2,11],[6,21],[1,5],[0,6],[1,5],[2,4],[4,2],[1,-2],[1,-4],[2,-2],[6,3],[3,6],[3,9],[3,15],[1,8],[0,4],[1,8],[4,12],[2,7],[0,9],[-1,18],[0,9],[7,30],[1,15],[-3,16]],[[79502,56167],[4,-7],[15,-8],[4,-5],[-1,-15],[-1,-10],[-4,-6],[-8,0],[0,4],[2,11],[-4,13],[-6,11],[-5,6],[-2,-4],[4,-11],[5,-7],[2,-5],[-6,-1],[-3,5],[-9,31],[-7,18],[-3,11],[-2,10],[-1,13],[-2,9],[-6,17],[2,3],[0,-3],[1,-2],[2,-3],[14,-40],[13,-28],[2,-7]],[[79645,56551],[6,-3],[3,-4],[0,-7],[-1,-5],[-4,-4],[-4,-2],[-2,3],[-2,7],[-6,5],[-36,14],[-13,12],[4,1],[9,-9],[8,-3],[32,-1],[6,-4]],[[79769,56667],[9,-16],[2,-7],[-1,1],[-1,1],[-1,0],[-1,2],[-2,0],[0,-7],[-2,-3],[-2,-3],[-3,-12],[-2,-3],[-6,-4],[-4,-7],[-6,-19],[-3,-7],[-4,29],[1,11],[12,6],[8,10],[2,3],[0,6],[1,8],[1,7],[2,4]],[[79704,56652],[6,-8],[3,-6],[2,-6],[-13,-7],[-6,-5],[-4,-8],[-2,0],[0,10],[-1,8],[-2,7],[0,7],[0,11],[5,12],[0,10],[-2,0],[0,-9],[-2,14],[2,9],[6,5],[5,4],[6,-8],[-1,-18],[-6,-30],[2,0],[2,8]],[[79696,56707],[-1,-6],[-4,2],[-4,6],[-2,4],[-1,2],[-3,9],[0,1],[0,5],[3,5],[1,4],[1,13],[-1,5],[-4,5],[0,4],[3,1],[3,1],[3,0],[1,-5],[6,-9],[2,-5],[1,-1],[1,-1],[1,-1],[0,-5],[-1,-2],[-1,-2],[0,-2],[0,-6],[2,-7],[0,-5],[-2,-4],[-2,2],[-1,6],[-3,12],[-2,0],[1,-7],[3,-11],[0,-8]],[[80368,57707],[2,-2],[2,-2],[1,-4],[1,-4],[-1,-2],[-3,-4],[-2,-2],[-1,4],[-2,2],[-2,0],[-3,-2],[1,-1],[1,0],[0,-3],[-5,1],[-5,6],[-4,7],[-3,6],[0,4],[2,-1],[4,-1],[2,-2],[0,2],[0,7],[5,-5],[10,-4]],[[79628,55646],[-7,-2],[0,-6],[3,-9],[2,-8],[-4,3],[-3,0],[-2,-2],[-4,-1],[-2,-2],[-1,-6],[1,-7],[-1,-5],[1,-3],[0,-2],[-1,-2],[-4,-1],[-2,3],[-4,12],[-1,3],[3,14],[8,16],[9,13],[8,7],[1,-1],[1,-1],[0,-2],[0,-3],[0,-1],[-3,1],[1,-4],[0,-2],[1,-2]],[[79582,56327],[9,-19],[4,-12],[-3,-5],[-4,5],[-6,22],[-8,9],[-13,25],[0,4],[1,-2],[5,-2],[12,-18],[3,-7]],[[78911,56612],[1,-11],[0,-62],[-11,-58],[-4,-32],[5,-16],[-2,-13],[0,-7],[1,-6],[1,-10],[-4,5],[-1,3],[-6,5],[-4,26],[-3,50],[-8,44],[-5,19],[-8,14],[-11,11],[-4,8],[-2,23],[-1,7],[2,1],[17,-5],[6,1],[2,5],[1,3],[3,9],[1,2],[2,2],[1,6],[1,7],[1,5],[1,6],[3,4],[3,1],[4,-7],[-2,4],[20,-44]],[[79687,56664],[-5,3],[-4,3],[-3,2],[-4,-4],[2,-1],[0,-1],[1,1],[1,1],[4,-8],[3,-12],[0,-12],[-5,-4],[-7,5],[-6,14],[-6,16],[-4,14],[-1,9],[0,7],[1,16],[0,1],[-1,4],[0,9],[0,2],[5,2],[2,2],[2,15],[-2,14],[-7,24],[6,0],[2,-2],[3,-5],[2,-8],[2,-4],[8,-4],[3,-8],[2,-9],[0,-8],[-2,-4],[-1,-4],[-1,-7],[1,-2],[3,-10],[1,-2],[3,-4],[1,-8],[-2,-7],[-7,-1],[0,-4],[4,-1],[3,-4],[3,-12],[0,-4]],[[79744,62788],[1,-2],[1,-2],[2,-4],[-4,1],[-2,4],[-2,11],[-1,-5],[0,-4],[1,-4],[2,-3],[0,-4],[-4,-3],[-3,0],[-2,3],[-3,4],[2,-12],[8,-10],[2,-10],[-2,0],[0,4],[-2,0],[-1,-11],[-3,-10],[0,13],[-2,-2],[-1,-1],[-1,-2],[0,5],[-1,-5],[-2,3],[-1,2],[0,4],[6,0],[0,4],[-1,1],[0,1],[-1,2],[-1,0],[0,-4],[-3,0],[0,2],[-2,3],[-1,3],[-2,0],[1,-6],[1,-2],[0,-4],[-6,7],[-6,18],[-3,7],[-8,10],[-4,9],[1,11],[7,4],[2,3],[1,4],[0,4],[0,4],[3,4],[-2,-4],[3,-8],[9,-3],[3,-5],[2,0],[0,10],[3,2],[3,-3],[3,-5],[0,-4],[-1,-7],[4,-4],[4,-2],[3,0],[2,0],[1,-4],[1,-3],[1,-3],[2,-2],[-5,3],[-2,1],[0,-4]],[[79677,62835],[2,-8],[10,-27],[1,-15],[-4,-3],[-5,2],[-2,2],[-1,10],[-6,23],[-1,14],[-1,-5],[-1,-5],[1,-5],[1,-5],[-2,0],[-3,4],[-5,2],[-3,3],[-2,11],[3,17],[3,15],[11,-9],[3,-8],[1,-13]],[[79867,62853],[7,27],[1,10],[1,-2],[0,-2],[1,-4],[-2,-14],[-2,-10],[-13,-39],[-2,-6],[-2,-12],[-2,-5],[-4,0],[5,21],[0,9],[-3,7],[0,4],[6,0],[4,2],[3,5],[2,9]],[[79928,62918],[4,-2],[10,-14],[0,-4],[-3,2],[-1,2],[-2,0],[2,-12],[-2,-9],[-5,-7],[-4,-5],[5,20],[0,7],[-1,3],[-3,4],[-2,5],[2,10]],[[79869,62918],[4,9],[2,2],[2,-2],[-2,-8],[-4,-21],[-3,-21],[-2,-8],[-2,-8],[-4,-4],[-5,-3],[-7,-1],[-12,-6],[-5,-2],[0,4],[8,7],[8,9],[6,10],[5,10],[-1,7],[1,9],[4,17],[1,-2],[3,-2],[1,5],[2,11],[0,-12]],[[79894,62975],[2,2],[1,0],[0,-5],[-10,-43],[-2,-18],[-3,-15],[-5,2],[3,2],[0,4],[-1,5],[0,7],[1,6],[4,8],[1,6],[0,14],[1,5],[0,4],[2,3],[6,13]],[[79883,63032],[6,4],[1,-1],[-1,-7],[-4,-7],[-9,-13],[-3,-9],[-2,0],[-4,2],[-6,-12],[-9,-26],[-3,-3],[-7,-6],[-3,-4],[-10,-16],[-4,7],[2,14],[4,14],[2,12],[1,7],[2,17],[2,18],[1,0],[3,-5],[1,5],[1,4],[2,1],[-1,4],[0,9],[0,15],[1,7],[1,4],[1,2],[1,1],[1,0],[1,0],[1,-1],[3,-5],[7,-16],[1,-3],[2,0],[2,-2],[0,-5],[0,-5],[1,-4],[0,-2],[1,-3],[2,0],[2,2],[10,6]],[[79947,63120],[1,-2],[1,-2],[0,-2],[-1,-1],[-2,-1],[-27,-24],[1,2],[3,8],[16,19],[5,4],[3,-1]],[[79963,63137],[36,8],[0,-3],[-11,-14],[-4,-4],[-3,5],[-1,0],[-2,-2],[-19,-13],[-4,-1],[1,6],[1,6],[2,-5],[0,-3],[1,5],[2,3],[2,3],[-6,0],[-7,-3],[0,4],[9,6],[3,2]],[[80261,56719],[5,-9],[2,-12],[-2,-8],[-6,0],[-2,7],[-2,9],[1,8],[4,5]],[[80386,57933],[2,-12],[1,-7],[-1,-7],[-4,3],[-11,15],[-1,4],[-2,5],[-3,1],[-3,5],[2,8],[7,2],[6,-2],[4,-2],[2,-6],[1,-7]],[[79824,62803],[3,-4],[1,-4],[0,-8],[-1,-1],[-1,4],[-2,2],[-2,-1],[-3,3],[-3,11],[0,8],[1,0],[4,-8],[3,-2]],[[79828,62840],[2,-2],[1,-4],[0,-2],[-1,-2],[0,-1],[0,-1],[-1,-2],[-4,-3],[-1,-1],[-2,1],[-2,3],[-3,8],[-1,-2],[-1,1],[-1,4],[0,3],[2,1],[2,-1],[1,-1],[1,0],[3,1],[5,0]],[[79951,62921],[4,6],[4,-1],[-1,-8],[-2,-5],[-5,-13],[-2,-1],[-1,11],[3,11]],[[79013,56640],[0,4],[-5,12],[-3,4],[-4,-4],[-9,21],[-3,4],[-9,0],[-4,-4],[-3,-2],[-2,2],[-2,9],[-1,26],[-4,5],[-1,2],[-4,8],[-1,3],[-2,-1],[-2,-3],[-2,-1],[-2,5],[-4,-12],[-8,-1],[-14,8],[-4,-1],[-7,-4],[-5,1],[-27,16],[-4,1],[-4,2],[-8,14],[0,4],[-6,24],[-1,0],[-4,0],[-1,1],[0,2],[0,3],[0,2],[-1,4],[0,9],[-1,3],[-2,-12],[0,-12],[2,-22],[-1,-11],[-2,-10],[-6,-18],[-4,-7],[-3,-4],[-5,-1],[-7,0],[-3,1],[-2,3],[-1,4],[-2,4],[-3,2],[-5,0],[-2,2],[0,-4],[6,-7],[5,-11],[2,-10],[-6,-4],[-9,1],[-11,-5],[-5,0],[-3,3],[-2,9],[-1,8],[0,4],[0,2],[-1,7],[-1,3],[-2,0],[-2,-1],[-1,-2],[-1,-1],[-2,1],[-2,3],[-3,4],[-2,14],[-3,6],[-5,9],[-5,-4],[-1,7],[1,11],[4,6],[2,4],[3,10],[2,12],[1,8],[5,14],[11,7],[21,2],[1,0],[1,0],[0,1],[0,3],[-4,2],[-1,4],[2,25],[1,5],[2,4],[3,4],[3,5],[3,8],[1,7],[-1,23],[-4,21],[-8,29],[-5,30],[4,20],[-6,8],[-2,3],[-9,2],[-3,3],[-2,4],[-4,21],[-6,11],[-8,6],[-8,2],[1,-2],[1,-2],[-4,-12],[-2,0],[-1,4],[-1,2],[-4,2],[0,-4],[2,-7],[-2,-9],[-5,-16],[5,5],[1,-6],[-2,-11],[-7,-27],[-2,-11],[-1,-13],[-3,-16],[-1,-7],[1,-5],[1,-10],[0,-7],[-1,-9],[-4,-5],[-4,-2],[-4,2],[-1,-3],[-2,-2],[-3,-3],[-2,14],[-6,8],[-7,7],[-6,7],[-11,-14],[-5,-10],[1,-8],[-4,0],[-3,-1],[-3,-3],[-1,-4],[-6,5],[-6,2],[-3,3],[3,10],[-8,14],[-2,2],[-2,5],[1,10],[2,10],[2,2],[-1,18],[-3,30],[0,17],[1,5],[2,6],[2,8],[0,11],[0,10],[-1,7],[-4,16],[-1,4],[0,5],[-1,5],[-1,4],[-2,1],[-5,0],[-2,1],[1,6],[3,4],[2,4],[-2,6],[0,4],[2,7],[8,15],[8,10],[3,-8],[2,0],[0,9],[-3,15],[-1,9],[-4,-3],[-2,-2],[-1,-3],[-4,7],[-1,6],[0,8],[-1,11],[-2,9],[-4,12],[-2,8],[3,-2],[1,-1],[0,-6],[2,0],[2,7],[3,5],[3,3],[4,2],[4,-4],[5,-14],[4,-3],[-9,35],[-3,6],[2,6],[0,2],[-2,0],[0,-2],[-2,-6],[2,-5],[-1,-5],[-2,-5],[-2,-1],[-3,3],[-3,11],[-8,7],[-2,13],[0,15],[0,12],[-2,-4],[1,12],[1,4],[-2,0],[-2,2],[-1,6],[0,-20],[-1,-10],[-1,-6],[-2,0],[-3,2],[-4,-2],[-4,-4],[-3,-5],[-5,17],[5,8],[2,-4],[4,-8],[2,0],[-1,5],[-3,8],[-2,7],[0,24],[4,7],[3,-3],[5,-5],[5,1],[0,4],[-3,0],[-3,1],[-2,4],[-1,4],[0,4],[2,0],[0,4],[-3,-3],[-1,-1],[-2,0],[0,4],[-2,8],[-2,0],[0,-12],[-2,4],[0,-13],[-1,0],[0,17],[2,12],[3,9],[4,7],[3,3],[2,1],[3,-1],[3,-5],[3,-3],[4,1],[3,5],[2,7],[-2,0],[-2,-7],[-4,0],[-4,5],[-3,6],[-2,0],[-12,-12],[-1,4],[-2,7],[-2,8],[0,7],[-2,5],[-6,7],[-10,31],[-1,0],[4,-20],[13,-30],[4,-19],[-1,-10],[-3,-17],[0,-9],[3,-26],[-1,-10],[-2,-13],[-1,7],[-2,11],[-1,8],[-1,4],[-5,10],[-2,5]],[[78586,57367],[5,13],[-1,34],[-4,23],[-8,25],[-11,35],[-13,51],[-3,30],[-4,20],[-2,5],[-4,9],[-14,46],[-2,24],[6,97],[2,11],[3,11],[7,13],[2,9],[0,5],[-1,7],[-3,7],[-9,10],[-4,9],[0,4],[-1,10],[-1,5],[-2,4],[-7,9],[-21,44],[-8,13],[-16,11],[-2,3],[-2,4],[-2,9],[-1,13],[0,12],[2,10],[3,6],[3,19],[0,6],[0,7],[-1,4],[-2,4],[-1,6],[-2,12],[-1,23],[-2,13],[-1,7],[-1,7],[0,6],[3,7],[1,2],[-1,2],[-2,5],[-1,2],[1,3],[1,2],[2,2],[2,2],[1,4],[0,3],[-5,6],[-3,8],[-4,19],[-13,30],[-5,20],[-15,81],[0,1],[-1,42],[2,36],[-1,45],[0,1],[0,7],[0,5],[-1,6],[-3,10],[0,6],[5,14],[11,2],[22,-4],[17,3],[5,4],[14,16],[5,3],[-10,13],[-6,13],[0,12],[9,14],[28,29],[7,12],[1,5],[0,12],[1,6],[1,5],[5,13],[2,11],[5,32],[5,19],[7,14],[16,26],[4,10],[1,7],[0,9],[1,14],[2,9],[6,17],[2,10],[0,12],[0,7],[0,3],[2,10],[4,9],[5,4],[10,6],[5,6],[3,6],[19,34],[9,10],[6,4],[16,5],[13,8],[8,6],[19,-1],[6,2],[5,5],[8,11],[4,3],[1,-2],[1,-3],[2,-3],[3,0],[2,1],[11,16],[10,11],[5,2],[5,-4],[4,-5],[4,-2],[6,6],[1,5],[1,5],[1,4],[2,3],[3,1],[3,-2],[2,-3],[2,-4],[1,-6],[-1,-14],[1,-5],[2,-2],[9,-1],[17,-9],[5,-1],[4,0],[2,2],[2,0],[4,-3],[3,-4],[3,-4],[3,-4],[4,-2],[5,1],[2,4],[0,5],[3,5],[15,1],[7,-13],[10,4],[3,3],[8,8],[10,6],[1,-2],[2,-3],[2,-3],[3,-1],[2,3],[7,15],[1,3],[0,2],[3,0],[-1,-2],[0,-6],[2,-5],[3,-2],[5,2],[4,6],[4,5],[6,-1],[15,-13],[32,-9],[2,-2],[2,-1],[1,0],[1,0],[2,2],[2,3],[2,4],[3,1],[5,-2],[4,-4],[5,-2],[5,5],[4,7],[2,9],[3,8],[5,6],[4,0],[7,-6],[5,0],[2,3],[2,10],[3,2],[2,-3],[1,-10],[2,-3],[4,1],[9,14],[3,4],[5,-1],[4,-5],[4,-6],[4,-4],[2,-1],[5,2],[3,0],[2,-2],[4,-6],[3,-3],[4,-1],[11,-5],[6,-3],[1,-7],[0,-8],[-1,-27],[0,-5],[9,-34],[5,-11],[6,-7],[15,10],[9,30],[6,29],[8,9]],[[79217,58965],[0,-18],[1,-14],[3,-12],[16,-52],[5,-11],[2,-2],[4,-2],[2,-3],[7,-21],[3,-4],[3,-3],[4,-1],[8,0],[8,3],[8,5],[6,9],[5,3],[4,5],[8,11],[2,-3],[2,-4],[2,-4],[2,-5],[4,4],[5,-5],[4,-9],[2,-10],[5,6],[3,0],[2,-4],[5,-4],[4,-1],[6,2],[3,0],[8,-9],[4,-14],[3,-17],[5,-14],[23,-44],[7,-7],[1,-1],[7,-3],[7,1],[6,6],[7,-1],[14,-7],[6,0],[4,11],[-1,27],[4,9],[4,9],[5,7],[4,7],[2,11],[-1,12],[-4,8],[-4,8],[-4,9],[-7,35],[-5,10],[-9,13],[-4,7],[-2,12],[1,15],[-1,11],[-3,10],[-6,9],[-1,6],[0,7],[0,7],[1,6],[6,-2],[12,-8],[5,0],[1,3],[0,9],[1,3],[2,0],[3,-1],[4,1],[7,-2],[9,-2],[6,2],[4,5],[4,12],[2,13],[3,31],[3,10],[1,-3],[17,-22],[3,-2],[4,0],[3,2],[2,1],[15,4],[7,6],[3,11],[1,1],[2,3],[1,4],[-3,4],[0,4],[0,4],[1,3],[2,3],[4,-1],[3,-2],[4,0],[0,4],[-2,1],[-1,3],[-1,4],[0,6],[1,6],[1,1],[2,1],[2,2],[6,11],[2,-3],[3,-11],[1,-8],[2,-18],[1,-6],[2,-3],[6,-3],[3,-4],[6,-17],[4,-5],[4,-4],[20,-13],[1,-2],[2,-5],[2,-4],[2,-8],[10,-29],[7,-15],[4,-6],[4,-3],[4,0],[11,12],[1,3],[2,1],[2,1],[3,-2],[5,-7],[3,-1],[3,2],[1,3],[1,4],[3,15],[3,2],[1,1],[6,18],[8,20],[0,3],[1,1],[3,-3],[5,-8],[2,-7],[3,-3],[6,4],[9,12],[8,14],[2,9],[1,10],[3,8],[4,-1],[4,-1],[2,3],[3,12],[1,11],[0,4],[2,3],[3,4],[1,3],[5,14],[4,8],[5,-1],[8,-11],[5,-10],[3,-2],[5,-2],[6,-6],[4,-1],[3,7],[1,4],[0,5],[0,5],[0,5],[1,5],[2,5],[1,4],[2,13],[2,4],[4,4],[9,28],[4,7]],[[78828,56697],[4,-6],[2,-12],[0,-13],[-3,-6],[-4,1],[-4,1],[-4,5],[-2,10],[2,1],[1,2],[3,5],[-2,7],[1,4],[2,2],[4,-1]],[[78693,56825],[1,-3],[2,0],[3,-3],[0,-9],[-4,-2],[-3,-4],[-3,-5],[-2,-9],[-2,4],[-1,7],[-1,7],[0,2],[0,2],[-9,7],[-4,7],[-4,9],[-1,8],[3,8],[6,4],[4,-2],[4,-7],[3,-7],[1,-2],[1,-4],[0,-2],[2,-1],[2,0],[1,-1],[1,-4]],[[78621,57196],[1,-7],[1,-5],[1,-4],[-2,-4],[2,-8],[0,-11],[-2,-11],[-1,-7],[-4,-4],[-5,0],[-2,3],[1,5],[-3,7],[-1,12],[0,22],[-2,25],[0,15],[2,12],[1,-2],[1,-3],[0,-3],[3,6],[3,1],[2,-4],[4,-15],[0,-6],[-1,-6],[1,-8]],[[78619,57281],[1,-5],[3,-10],[1,-5],[0,-4],[-1,-5],[-3,-12],[-1,-4],[-3,1],[0,6],[1,14],[-3,9],[-3,11],[-2,11],[4,9],[5,-6],[1,-2],[0,-3],[0,-3],[0,-2]],[[78703,56738],[1,-1],[0,-2],[0,-4],[-1,-5],[-1,-6],[-2,-5],[-3,4],[-6,18],[-1,10],[1,8],[3,3],[3,1],[2,-2],[1,-4],[-3,-8],[0,-3],[0,-3],[0,-4],[2,-3],[2,0],[1,3],[1,3]],[[51608,79807],[7,4],[6,9],[3,10],[-5,3],[3,4],[2,6],[4,14],[2,4],[3,3],[1,5],[-1,9],[-2,2],[-6,1],[-2,2],[-1,4],[1,2],[1,2],[0,4],[0,3],[1,3],[2,2],[-1,3],[0,2],[-1,3],[-2,0],[-2,-1],[-2,1],[-1,1],[-4,2],[-2,2],[0,1],[0,8],[-1,3],[-6,18],[-2,4],[-4,3],[-3,0],[-3,2],[-2,7],[-2,8],[-1,7],[2,5],[3,3],[-3,4],[1,2],[0,1],[1,2],[0,3],[7,-1],[-3,6],[-6,6],[-3,2],[1,6],[10,23],[1,4],[0,3],[2,3],[2,4],[2,2],[4,1],[2,3],[3,8],[-1,3],[-2,4],[0,8],[2,3],[6,3],[2,3],[0,5],[0,6],[0,6],[2,4],[4,5],[1,3],[1,4],[1,10],[1,4],[4,6],[11,6],[4,6],[2,9],[1,8],[2,5],[6,1],[5,5],[1,-3],[1,-5],[2,-5],[3,-1],[1,-1],[3,-1],[6,2],[3,2],[1,2],[3,1],[3,-5],[1,-5],[0,-6],[1,-5],[4,-2]],[[65632,65647],[6,-7],[7,-5],[4,-2],[3,-7],[6,-40],[-2,-54],[0,-6],[1,-16],[0,-5],[-2,-7],[0,-5],[3,-10],[1,-6],[1,-4],[1,-4],[0,-4],[0,-4],[0,-7],[-1,-12],[-1,-17],[-2,-26],[-1,-84],[-1,-6],[6,-47]],[[65329,63915],[-18,-47],[-5,-2],[-38,10],[-38,10],[-39,10],[-39,10],[-38,11],[-39,10],[-38,10],[-39,10],[-39,10],[-38,10],[-39,10],[-38,10],[-39,11],[-39,10],[-38,10],[-39,10],[-39,10],[-44,12],[-7,4],[-6,10],[-15,37],[-14,37],[-15,37],[-14,37],[-14,36],[-15,37],[-14,37],[-15,37],[-14,36],[-15,37],[-14,37],[-15,36],[-14,37],[-15,37],[-14,37],[-15,36],[-14,37],[-16,40],[-4,14],[-2,16],[1,37],[0,16],[-2,23]],[[64324,64835],[6,16],[0,26],[-5,22],[6,12],[2,-10],[6,-17],[1,-12],[0,-34],[2,-21],[4,-5],[4,9],[3,26],[2,-7],[2,-18],[2,-6],[2,-2],[2,0],[3,1],[1,3],[0,3],[-1,1],[6,25],[5,8],[6,-17],[0,-13],[-3,-38],[1,-13],[3,-30],[1,-6],[-1,-20],[1,-6],[2,-12],[1,-6],[3,-11],[6,-3],[14,-1],[3,-2],[3,-3],[4,-9],[3,-3],[2,0],[1,3],[-2,4],[0,7],[6,1],[16,-1],[2,1],[1,-1],[4,-7],[9,-8],[2,0],[12,5],[4,-3],[3,3],[3,-3],[4,4],[5,1],[5,-1],[5,0],[5,4],[10,13],[5,1],[9,0],[4,2],[3,5],[3,7],[4,6],[4,3],[4,2],[6,4],[4,6],[2,6],[2,7],[8,7],[4,6],[4,8],[5,7],[5,5],[3,3],[3,4],[1,10],[0,11],[1,7],[6,6],[5,-4],[4,-8],[10,-26],[3,-3],[1,2],[1,3],[3,2],[6,0],[11,-7],[6,-2],[4,2],[6,5],[3,2],[3,0],[2,-2],[2,-1],[2,-1],[24,-5],[3,2],[9,7],[2,2],[0,3],[1,3],[1,0],[2,-2],[1,-2],[0,-3],[1,-1],[8,-13],[5,-5],[11,9],[6,-4],[5,-5],[5,2],[-4,4],[-1,6],[0,6],[-1,8],[6,3],[8,-7],[6,-10],[5,-10],[4,-13],[2,-3],[15,-1],[36,14],[2,0],[3,-3],[4,-9],[3,-4],[4,-2],[4,1],[3,3],[5,-7],[3,-4],[2,-1],[2,-2],[3,-11],[2,-3],[2,-1],[4,0],[3,1],[4,5],[3,-2],[3,-2],[2,-1],[9,8],[2,2],[2,3],[2,-1],[3,-3],[3,-1],[34,0],[7,1],[3,5],[17,18],[17,6],[6,6],[6,2],[7,6],[8,3],[3,2],[4,4],[5,8],[5,9],[2,9],[2,4],[19,11],[14,21],[3,1],[2,7],[5,0],[12,-9],[2,6],[10,16],[5,14],[11,43],[-1,15],[1,7],[4,4],[-3,3],[-1,1],[0,5],[5,-1],[6,-6],[4,-2],[-1,8],[-5,10],[-1,7],[4,-4],[5,-3],[4,-3],[2,-6],[2,0],[-1,15],[-5,5],[-8,1],[-7,3],[-16,21],[-7,3],[0,4],[4,2],[3,4],[3,6],[0,-3],[1,-5],[3,-4],[-1,6],[1,5],[3,9],[2,0],[2,-16],[6,-16],[7,-10],[6,2],[-1,2],[-5,6],[4,0],[6,-4],[2,0],[1,2],[2,8],[2,2],[10,41],[-4,4],[-3,5],[1,5],[5,2],[3,3],[1,8],[1,9],[6,4],[0,4],[-3,3],[-1,6],[-1,8],[-1,8],[1,4],[-2,2],[-2,5],[1,9],[3,6],[10,14],[2,4],[1,6],[2,3],[8,-8],[1,-1],[4,2],[4,5],[1,8],[-4,10],[31,34],[13,19],[9,15],[5,8],[7,4],[1,0],[1,1],[1,1],[1,0],[1,2],[1,1],[1,0],[0,1],[1,1],[8,9],[-1,12],[9,4],[1,-2],[21,47],[28,71],[2,9],[-1,8],[6,9],[4,-1],[4,-11],[2,-9],[-2,-7],[-3,-11],[7,4],[2,11],[-2,13],[-6,20],[-1,5],[2,5],[8,17],[3,2],[4,0],[-1,7],[0,7],[2,6],[3,4],[3,-4],[5,9],[9,23],[2,0],[1,-7],[2,0],[1,4],[1,8],[2,-5],[4,22],[3,10],[3,5],[-4,4],[2,7],[4,9],[2,10],[1,10],[3,12],[4,10],[5,3],[-2,-9],[-3,-8],[-2,-8],[1,-7],[5,-4],[5,2],[6,4],[6,2],[2,4],[4,23],[3,9],[7,15],[4,7],[10,7],[7,20],[3,4],[3,1],[3,2],[3,3],[2,4],[1,1],[8,5],[10,15],[15,37],[8,13],[-2,-6],[-2,-12],[-3,-10],[2,-4],[2,-1],[1,2],[0,9],[3,17],[0,11],[2,5],[12,22],[2,6],[2,7],[2,8],[1,11],[-2,0],[-1,-6],[-1,-4],[-2,-4],[-3,-2],[7,24],[6,25],[5,37],[1,5]],[[64904,64777],[-5,1],[-3,2],[0,5],[4,8],[3,4],[1,0],[7,5],[3,3],[5,9],[1,2],[2,3],[2,1],[3,2],[2,0],[5,-4],[2,-1],[1,2],[7,11],[8,6],[3,3],[2,7],[2,-8],[-1,-1],[-1,-3],[3,-10],[1,-2],[7,-9],[1,-1],[10,-4],[2,-2],[6,-4],[3,-17],[-4,-14],[-9,-5],[-10,0],[-8,7],[1,5],[-2,8],[-4,2],[-3,-11],[2,-4],[-7,-10],[-9,-3],[-9,2],[-9,7],[-5,5],[-2,2],[-8,1]],[[65052,64817],[-2,11],[-6,5],[-7,4],[-6,7],[-3,15],[3,12],[6,5],[2,-2],[2,-4],[7,-15],[4,-8],[3,-14],[-3,-16]],[[64603,64887],[4,9],[7,8],[6,-4],[3,-9],[2,-16],[-1,-9],[-6,-15],[-5,-9],[-5,-9],[-3,8],[-3,9],[-4,15],[1,11],[4,11]],[[64811,64838],[-4,10],[-4,0],[-5,6],[-2,-9],[-11,3],[-4,1],[-6,-2],[-1,-1],[-1,0],[0,3],[0,4],[1,4],[1,4],[1,1],[10,-4],[3,1],[7,6],[1,3],[2,2],[9,7],[5,5],[3,0],[2,-10],[3,-3],[2,3],[1,6],[0,7],[-2,6],[10,30],[5,6],[1,-3],[1,-6],[0,-3],[7,-7],[-2,-23],[-4,-7],[-11,-10],[-5,-7],[-6,-2],[-4,-5],[0,-7],[-3,-9]],[[65106,64943],[-14,8],[0,10],[12,20],[4,11],[1,0],[-1,-12],[2,-11],[4,-7],[11,-11],[5,-10],[0,-6],[-4,-3],[-7,3],[-13,8]],[[65073,64857],[-2,-4],[-3,-2],[-2,-2],[-3,0],[-2,2],[-5,11],[-3,5],[-3,2],[-1,4],[2,9],[2,6],[3,4],[4,3],[4,0],[2,-10],[3,-9],[6,-14],[-2,-5]],[[65090,64904],[2,-6],[1,-8],[-3,-17],[-5,-4],[-7,26],[-1,4],[2,0],[3,-1],[3,-4],[1,-1],[0,3],[-1,3],[-4,6],[-1,6],[4,0],[6,-7]],[[64530,65002],[6,-8],[2,-14],[-4,-13],[-3,-2],[-4,4],[-1,3],[-2,2],[-2,3],[0,8],[3,7],[2,7],[3,3]],[[50700,80724],[6,6],[10,5],[38,38],[58,46],[56,49],[62,27]],[[50930,80895],[2,-23],[-1,-15],[0,-13],[4,-15],[7,-10],[2,-1],[6,-4],[9,-2],[13,3],[1,6],[-1,7],[1,7],[3,4],[4,1],[4,1],[11,3],[7,1],[7,-2],[34,-15],[5,-5],[2,-7],[-1,-7],[1,-6],[4,-7],[3,-2],[33,1],[7,2],[12,14],[35,23],[13,14],[11,20],[2,6],[2,14],[0,3]],[[51172,80891],[0,-1],[6,-6],[2,-6],[2,-11],[4,-7],[5,-6],[4,-6],[1,-4],[0,-3],[-1,-5],[-1,-4],[-1,-1],[3,2],[2,4],[4,11],[-9,5],[-2,3],[-1,5],[0,13],[-1,6],[-2,5],[-4,6]],[[51183,80891],[6,0],[2,0],[10,-7],[6,-3],[13,-1],[5,4],[1,10],[-1,6],[-7,10],[-2,5],[0,6],[2,5],[1,4],[-4,5],[15,11],[15,8],[8,1],[3,-1],[3,-4],[-1,-10],[-2,-8],[-1,-6],[6,-5],[3,0],[8,2],[9,-3],[5,0],[3,2],[3,3],[22,35],[9,6],[4,0],[5,-3],[5,-4],[2,-5],[1,-9],[-2,-8],[-1,-9],[2,-10],[-12,7],[-3,0],[-2,-8],[6,-3],[20,-1],[5,-2],[10,-6],[6,2],[7,9],[7,12],[4,9],[2,7],[1,6],[2,4],[4,1],[1,-1],[8,-8],[6,-14],[-1,-10],[-3,-9],[-1,-13],[1,-6],[10,-14],[1,-5],[3,-13],[2,-4],[4,-3],[11,1],[5,-1],[5,-8],[0,-21],[5,-2],[2,1],[9,3],[32,-2],[6,3],[12,11],[5,3],[6,-1],[7,-5],[5,-9],[2,-12],[1,-13],[2,-2],[4,-5],[16,-7],[4,-3],[2,-4],[3,-3],[5,0],[12,3],[3,-1],[5,-3],[6,-11],[3,-4],[9,3],[5,-1],[2,-7],[1,-3],[-4,-5],[-1,-7],[6,-9],[-2,-2],[-3,-2],[-3,-1],[-3,1],[1,-4],[0,-2],[1,-3],[-2,-8],[-2,-4],[-2,-4],[-3,4],[-2,-2],[-2,-6],[0,-8],[3,-6],[-4,-15],[-11,-23],[6,2],[3,0],[3,-2],[-4,-8],[-4,-13],[-4,-8],[-1,-1],[-4,-2],[-3,-1],[-20,-31],[1,-13],[4,-9],[5,-4],[2,-2],[6,-4],[4,-1],[-1,-7],[-2,-14],[5,-4],[3,-1],[3,1],[1,3],[3,6],[2,2],[3,-1],[6,-8],[3,-3],[24,1],[3,-2],[3,-1],[20,-1],[6,2]],[[62897,75278],[-11,-35],[-6,-15],[-12,-24],[-4,-5],[-4,-4],[-6,-1],[-13,5],[-6,-1],[-5,-9],[-3,-21],[0,-30],[4,-26],[7,-10],[3,3],[1,6],[2,4],[4,0],[0,-3],[6,-19],[1,-4],[2,-23],[3,-13],[4,-10],[15,-16],[3,-3],[6,-2],[13,-19],[27,-19],[13,-13],[5,-16],[4,3],[2,-3],[2,-5],[6,-10],[8,-21],[2,-9],[-1,0],[-2,0],[-2,-5],[-1,-4],[0,-11],[-1,-3],[-2,-4],[-3,-6],[-2,-3],[-3,-16],[-1,-21],[-2,-19],[-2,-3],[-4,-9],[-5,-1],[-5,2],[-6,1],[-6,-6],[-3,-9],[-1,-10],[-3,-6],[-6,0],[-5,5],[-8,16],[-4,7],[-17,9],[-6,5],[-16,24],[-8,16],[-4,7],[-5,3],[-21,0],[-6,-2],[-8,-8],[-7,-7],[-5,-4],[-7,-1],[-13,3],[-42,24],[-14,14],[-5,5],[-11,16],[-7,17],[6,12],[6,4],[4,3],[0,4],[-6,4],[-19,6],[-39,25],[-9,14],[-5,7],[-4,1],[-9,-4],[-5,-1],[-5,2],[-13,11],[-5,4],[-9,1],[-9,-5],[-42,-56],[-27,-36]],[[62500,74922],[-3,-3],[-7,-9],[-3,-4],[-11,-1],[-26,7],[-6,-8],[2,-9],[11,-8],[2,-4],[1,-3],[-3,-6],[-7,-1],[-41,1],[-12,7],[-5,2],[-6,-5],[-4,-7],[-3,-10],[-4,-6],[-6,3],[-1,4],[-1,6],[-2,5],[-3,0],[-2,-2],[-5,-10],[-7,-4],[-6,1],[-6,4],[-15,14],[-4,1],[-3,-2],[-2,-3],[-2,-4],[-3,-3],[-6,-1],[-5,3],[-14,15],[-7,5],[-3,0],[-4,-4],[0,-5],[-1,-5],[-1,-5],[-4,-7],[-6,-5],[-6,-2],[-11,6],[-6,-1],[-11,-9],[-6,-2],[-1,0],[-6,-2],[-25,-1],[-12,-8],[-13,-19],[-6,-3],[-6,-1],[-46,10],[-12,-1],[-15,-10],[-2,-1],[-3,0],[-3,2]],[[62066,74814],[3,15],[-4,14],[-7,11],[-8,7],[-8,4],[-9,-1],[-25,-11],[-4,4],[-7,27],[-5,10],[-6,1],[-6,-1],[-8,4],[16,12],[4,6],[3,8],[0,4],[-8,1],[-9,7],[-13,19],[-21,22],[-4,7],[-8,25],[-2,4],[-3,2],[-1,2],[-1,3],[-2,2],[-8,5],[-2,2],[-2,6],[-2,8],[-2,4],[-4,-4],[-6,-13],[-6,3],[-5,9],[-7,7],[2,6],[6,7],[2,5],[1,5],[1,6],[1,6],[2,5],[-5,4],[-39,6],[-14,-2],[-6,-3],[-1,-1],[-6,-7],[-3,-10],[-2,-24],[-3,-9],[-6,-11],[-9,-20],[-5,-6],[-4,0],[-3,0],[-49,30],[-14,-1],[-6,1],[-5,7],[-4,4],[-4,0],[-9,-4],[-4,3],[-4,1],[-4,-1],[-4,-3],[-10,-5],[-19,12],[-12,-7],[-3,-5],[-9,-20],[-11,-15],[-3,-3],[-3,3],[-11,16],[-4,2],[-8,2],[-3,2],[-2,3],[0,5],[1,5],[-1,2],[-2,0],[-7,-5],[-8,-1],[-3,1],[-30,20]],[[61533,75055],[18,52],[8,18],[17,18],[5,17],[13,35],[0,7],[1,5],[0,5],[2,5],[4,10],[2,5],[0,5],[0,48],[0,3],[-3,37],[-1,13],[-1,8],[-11,32],[-8,23],[-3,4],[-3,5],[-2,11],[0,21],[-2,26],[-15,82],[-1,3],[-2,5],[-8,11],[-1,5],[-1,9],[-14,139],[-5,24],[-7,19],[-9,16],[-11,10],[-21,6],[-5,4],[-4,7],[-7,6],[-7,4],[-6,1],[-3,-1],[-6,-6],[-3,-1],[-3,3],[-13,30],[-6,36],[-12,32],[-4,17],[-7,0],[-11,-8],[-7,4],[-8,20],[-5,4],[0,3],[-7,18],[-2,2],[-20,13],[-28,6],[-13,-1],[-9,-4],[-3,0],[-3,1],[-6,9],[-3,2],[-1,1],[-5,8],[-2,3],[-3,2],[-9,2],[-22,17],[-10,2],[-7,-15],[-3,5],[-4,16],[-3,8],[-6,10],[-3,6],[1,19],[-4,17],[-6,16],[-5,9],[-8,6],[-15,7],[-9,14],[-4,3],[-13,3],[-9,6],[-6,2]],[[55713,75268],[6,-11],[3,-3],[5,0],[2,3],[3,9],[2,2],[2,-3],[6,-12],[2,-3],[6,4],[3,5],[3,5],[5,12],[2,11],[1,3],[1,12],[-1,5],[-3,18],[0,14],[4,29],[3,13],[5,10],[7,7],[26,14],[20,10],[8,5],[7,5],[3,5],[9,15],[7,7],[2,0],[2,-1],[4,-3],[10,-13],[10,-16],[5,-12],[2,-8],[1,-2],[3,-4],[2,0],[12,-4],[3,1],[0,4],[0,1],[0,12],[0,5],[-1,4],[-1,3],[1,5],[16,40],[2,2],[2,2],[5,1],[9,-6],[3,1],[0,3],[-2,6],[-1,5],[5,4],[3,-2],[3,-4],[3,-1],[1,2],[3,5],[4,-5],[6,0],[12,5]],[[55989,75489],[4,-3],[13,0],[10,-4],[5,0],[4,4],[4,8],[4,3],[27,26],[5,2],[11,0],[2,1],[10,13],[3,2],[3,-1],[15,-12],[9,-5],[5,-1],[4,-1],[10,3],[38,25],[8,12],[2,1],[1,-3],[1,-10],[0,-4],[5,-8],[4,-5],[5,-3],[5,-1]],[[56206,75528],[28,-58],[10,-13],[4,-17],[3,-9],[1,-3],[6,-9],[24,-27],[3,-2],[13,-11],[9,-3],[1,-2],[1,-3],[1,-2],[2,-1],[13,1],[2,-1],[2,-2],[0,-4],[1,-4],[2,-3],[2,0],[5,3],[1,0],[3,-4],[2,-3],[0,-4],[1,-8],[2,-7],[1,-6],[0,-14],[2,-14],[3,-13],[1,-4],[-1,-9],[1,-5],[1,0],[0,-2],[4,-3],[1,-2],[2,-7],[3,-20],[6,-23],[1,-4],[3,-2],[7,-1],[3,-2],[5,-12],[0,-14],[-3,-14],[-4,-9],[-2,-7],[-2,-8],[-1,-3],[-1,-2],[-5,-2],[-1,-2],[-1,-7],[-1,-8],[-1,-8],[1,-8],[1,-4],[2,-6],[1,-4],[0,-4],[-2,-10],[1,-9],[0,-41],[1,-3],[1,-6],[1,-3],[-1,-3],[-3,-7],[-1,-3],[0,-13],[2,-12],[-1,-11],[-7,-9]],[[56365,74949],[-25,3],[-8,-2],[-5,-1],[-5,-8],[-3,-4],[-2,-17],[-1,-2],[-1,-46],[-2,-23],[-4,-12],[-3,-4],[-3,3],[-5,7],[-2,5],[-2,4],[-1,3],[0,1],[-3,1],[-5,-2],[-1,-4],[1,-5],[-1,-5],[-5,-10],[-5,-6],[0,-1],[-5,-3],[-6,0],[-9,2],[-4,0],[-6,-3],[-4,-1],[-4,-1],[-8,0],[-3,2],[-6,6],[-3,2],[-3,1],[-7,-2],[-6,0],[-2,-3],[-2,0],[0,3],[-1,7],[0,3],[-3,1],[-8,2],[-11,5],[-3,1],[-2,0],[-7,-1],[-6,-5],[-10,-14],[-6,-4],[-2,2],[-9,8],[-1,1],[0,3],[-1,3],[-2,1],[-1,-1],[-3,-5],[-1,-1],[-18,-9],[-9,-7],[-2,-3],[-5,-6],[-2,-4],[-1,-5],[0,-10],[0,-2],[-1,-5],[-4,-9],[-10,-15],[-3,-11],[-11,-12],[-3,-6],[0,-5],[0,-6],[-1,-7],[-4,-6],[-2,0],[-6,-2],[-14,5],[-8,-6],[0,-2],[-1,-8],[-1,-3],[-1,-1],[-4,0],[-2,0],[-3,-4],[-6,-10],[-3,-3],[-7,3],[-13,18],[-1,0],[-21,5],[-7,-1],[-6,-4],[-10,-17],[-5,-4],[-9,-3],[-10,0],[-4,1],[-10,4],[-7,1],[-20,-10],[-41,-3]],[[55823,74661],[0,16],[-2,11],[-5,7],[-14,7],[-14,3],[-1,0],[-5,-2],[-9,-12],[-5,-3],[-7,2],[-3,4],[-4,5],[-4,14],[-5,34],[-6,38],[-2,10],[-3,4],[-3,0],[-1,1],[-3,-1],[-4,1],[-2,2],[-6,4],[-2,8],[0,10],[-1,14],[-4,14],[-11,23],[-3,15],[-5,32],[-1,18],[0,1],[1,12],[4,-2],[4,3],[3,8],[3,8],[2,10],[0,8],[0,1],[-2,6],[-3,8],[-2,2],[-5,1],[-2,3],[0,3],[-1,10],[-1,4],[0,2],[-3,9],[-2,4],[-3,2],[-2,9],[0,16],[-1,8],[14,5],[4,2],[4,4],[2,4],[2,6],[0,1],[-1,4],[-5,28],[-2,12],[-2,43],[1,6],[2,8],[3,6],[6,10],[2,5],[0,4],[-1,9],[-2,15],[0,3],[0,10],[8,7]],[[55823,74661],[1,-28],[-2,-12],[-5,-10],[3,-3],[1,-5],[0,-4],[2,-5],[8,-12],[7,-15],[3,-8],[2,-10],[0,-12],[-1,-11],[-3,-20],[0,-7],[-1,-5],[0,-5],[-1,-6],[-2,-3],[-3,-2],[-2,-4],[-2,-6],[-4,-1],[-3,-4],[-2,-5],[1,-7],[-1,-4],[-1,-3],[-3,-6],[-7,-8],[-6,3],[-6,5],[-8,0],[-3,-4],[-2,-5],[-1,-6],[-2,-6],[-3,-2],[-5,-3],[-3,-4],[0,-5],[1,-17],[0,-6],[-1,-7],[-1,-5],[-3,-9],[-5,-18],[0,-3],[-3,-3],[-3,-3],[-3,-3],[-2,-6],[-1,-13],[1,-12],[-1,-12],[-3,-15],[-1,-2],[-4,-2],[-2,-3],[0,-3],[1,-7],[0,-3],[2,-11],[-1,-3],[-4,-19],[-1,-4],[-2,-2],[-7,-6],[-11,-8],[-6,-1],[-15,4],[-5,-3],[-5,-4],[-9,2],[-5,-4],[-4,-7],[-3,-9],[-2,-11],[-1,-10],[-5,-2],[-14,-1],[-3,-1],[1,-5],[4,-36],[2,-4],[6,-10],[13,-35],[1,-10],[-2,-12],[-5,-8],[-5,0],[-4,5],[-11,7],[-3,1],[-2,-2],[-2,-4],[1,-3],[1,-2],[1,-5],[0,-3],[-2,-7],[0,-2],[0,-2],[2,-4],[1,-2],[1,-5],[1,-3],[1,-3],[-1,-6],[-3,-8],[-6,-5],[-4,-6],[-1,-13],[-2,2],[-3,1],[-2,0],[-2,-1],[-2,-4],[-1,-4],[1,-5],[-1,-3],[-5,-2],[-6,5],[-7,11],[-13,11],[-11,6],[-10,5],[-4,-4]],[[55555,73977],[-1,-1],[0,-3],[-2,0],[-2,8],[1,10],[5,18],[-5,3],[-1,3],[4,15],[5,29],[1,7],[-2,13],[-3,3],[-5,1],[-6,3],[0,2],[0,2],[0,3],[-2,2],[-3,3],[-3,2],[-5,0],[-2,3],[0,4],[4,8],[3,4],[3,4],[-5,7],[-13,41],[-2,8],[-2,6],[-2,3],[-9,0],[-5,2],[-3,2],[3,4],[-8,8],[-1,-4],[0,-1],[-1,-3],[-1,5],[-1,3],[-2,2],[-2,2],[0,3],[-2,7],[-2,6],[-1,-2],[-3,5],[-18,10],[-16,15],[-9,13],[-15,8],[-9,12],[-27,48],[-3,8],[-1,5],[-4,27],[-2,7],[-10,16],[-3,7],[-1,3],[-1,1],[0,4],[7,7],[5,0],[4,-5],[10,-19],[2,-7],[4,-14],[2,-9],[0,-8],[3,-2],[6,2],[6,4],[2,5],[2,53],[-1,9],[-7,7],[-9,16],[-8,17],[-1,13],[1,-4],[1,-4],[1,-5],[2,1],[2,0],[6,-10],[3,3],[2,11],[1,14],[-4,12],[-7,6],[-7,-3],[-1,-17],[-2,10],[-20,46],[-1,5],[1,7],[4,6],[4,5],[4,6],[2,10],[1,9],[1,36],[1,9],[2,7],[5,2],[3,2],[-1,5],[-2,6],[-1,4],[2,4],[2,5],[1,4],[1,1],[-2,7],[-4,8],[-3,8],[3,3],[4,3],[5,13],[5,5],[-4,-7],[2,-14],[-2,-12],[0,-12],[2,0],[1,8],[0,-2],[0,-2],[1,-4],[3,8],[15,11],[5,9],[0,15],[-3,12],[-3,10],[-2,12],[-1,-15],[-4,-14],[-7,-18],[0,3],[-1,4],[3,4],[3,9],[2,11],[-1,12],[-1,3],[-5,3],[-1,2],[-2,7],[0,3],[1,3],[3,45],[-1,9],[-2,4],[-1,5],[0,4],[6,4],[1,7],[0,8],[0,7],[12,29],[2,11],[-1,12],[-3,11],[-4,7],[-5,3],[-6,0],[-5,1],[-3,6],[-2,11],[0,24],[-1,5],[-4,7],[-1,6],[4,-7],[6,0],[5,8],[-1,16],[6,5],[7,10],[6,12],[2,16],[-1,9],[-2,4],[-3,2],[-4,3],[-4,6],[-4,12],[-3,6],[24,-5],[8,4],[2,1],[6,20],[2,0],[0,-6],[1,-4],[2,0],[2,2],[-2,16],[-1,4],[-2,-4],[-2,5],[-8,12],[6,16],[-1,18],[-1,20],[0,11],[5,-3],[3,8],[0,12],[-2,11],[-2,0],[-33,22],[-4,4],[-6,4],[-18,-10]],[[55379,75255],[-1,6],[1,16],[-3,6],[-2,4],[-1,3],[0,2],[0,4],[1,3],[1,3],[0,4],[-2,14],[2,2],[2,1],[2,2],[1,10],[-2,4],[-2,9],[-1,11],[0,12],[1,10],[5,18],[0,5],[-1,2],[-4,8],[-16,18],[-4,8],[-3,10],[1,6],[8,14],[26,66],[1,3],[0,8],[0,4],[3,10],[1,3],[14,26],[4,10],[6,6],[4,8],[4,10],[3,11],[2,9],[3,4],[4,4],[4,6],[1,7],[2,16],[1,8],[5,12],[7,13],[3,5],[5,7],[6,4],[7,-5],[4,-13],[2,-15],[1,-6],[0,-5],[-1,0],[-1,-3],[-2,-7],[0,-4],[-1,-9],[0,-4],[1,-6],[5,-18],[9,-11],[5,-4],[5,-1],[3,1],[1,1],[11,10],[2,4],[7,8],[14,-1],[7,3],[10,21],[6,7],[7,-7]],[[55573,75666],[6,-9],[14,-13],[4,-9],[8,-30],[2,-3],[3,-6],[2,-5],[0,-4],[-3,-7],[0,-4],[1,-4],[4,-6],[2,-3],[0,-5],[0,-8],[0,-4],[3,-10],[2,-4],[3,-1],[19,1],[5,-1],[34,-40],[5,-8],[2,-4],[5,-11],[11,-36],[3,-16],[0,-11],[0,-19],[2,-11],[9,-36],[1,-12],[1,-8],[0,-7],[-2,-11],[-3,-5],[-2,-2],[-1,-3],[-2,-7],[0,-5],[2,-7],[0,-4]],[[62494,74799],[11,-4],[3,-17],[-4,-14],[-10,6],[-4,7],[-2,9],[1,8],[5,5]],[[63494,75251],[2,-4],[9,-8],[10,-14],[24,-55],[10,-15],[4,-9],[1,-15],[19,-34],[11,-37],[5,-3],[5,-8],[4,-9],[2,-8],[6,-15],[2,-3],[1,-3],[7,-3],[2,-2],[4,-10],[10,-34],[9,-28],[4,-10],[3,-11],[2,-13],[3,-51],[2,-11],[3,-4],[2,-7],[5,-43],[13,-35],[33,-61],[3,-7],[3,-10],[5,-8],[13,-12],[6,2],[6,-7],[5,-10],[5,-5],[3,-6],[-1,-13],[-5,-22],[-2,-12],[0,-6],[0,-6],[2,-4],[3,-8],[1,-3],[2,-5],[5,-8],[6,-7],[3,-3],[12,-1],[6,-2],[4,-4],[10,-14],[6,-5],[13,-3],[12,-6],[7,-1],[5,2],[15,10],[7,2],[32,-2],[2,-3],[1,-5],[1,-4],[1,-4],[5,-10],[6,-8],[5,-5],[25,-8],[5,-5],[3,-9],[4,-13],[4,-13],[5,-6],[6,-3],[6,-9],[4,-12],[2,-12],[3,-49],[2,-5],[2,-11],[2,-13],[-1,-8],[-5,17],[-6,15],[-7,13],[-14,18],[-6,5],[-6,4],[-12,3],[-11,6],[-5,1],[-3,-1],[-4,-2],[-3,-2],[-10,0],[-5,-3],[-10,-13],[-5,0],[-2,3],[-4,9],[-2,4],[-3,2],[-7,2],[-7,7],[-6,-5],[-9,-14],[2,-14],[-8,-13],[-11,-9],[-19,-7],[-16,-16],[-21,-12],[-5,-6],[-11,-20],[-5,-5],[-3,-7],[0,-12],[1,-16],[0,-7],[-15,-9],[-2,-9],[0,-12],[4,-12],[3,-5],[4,-5],[2,-4],[1,-6],[-2,-4],[-2,-3],[-5,-8],[-3,-1],[-2,-3],[-2,-6],[-1,-7],[0,-5],[1,-12],[4,-13],[1,-7],[-2,-7],[-2,-4],[-2,-3],[-2,-3],[0,-6],[0,-3],[1,-3],[1,-4],[0,-4],[-2,-3],[-4,-5],[-2,-9],[0,-3],[2,-4],[-1,-8],[1,-8],[6,-15],[0,-5],[-4,-5],[-7,-6],[-7,-14],[-6,-12],[-5,-15],[0,-10],[-3,-10],[-3,-13],[-2,-14],[-1,-12],[0,-16],[3,-11],[25,-39],[4,-6],[2,-8],[0,-3],[-1,-2],[-2,-20],[0,-5],[3,-7],[-4,3],[-2,3],[-2,5],[-2,5],[-2,0],[1,-9],[3,-10],[3,-8],[5,-5],[0,-5],[-7,3],[-4,7],[-3,9],[-14,15],[-10,-6],[-7,-15],[-3,-19],[1,-65],[-1,-7],[-2,-11],[-4,-19],[-1,-9],[-1,-21],[-1,-13],[-3,-10],[-21,-25],[-11,-7],[-7,11],[1,7],[0,5],[0,3],[3,5],[12,4],[4,4],[4,9],[2,12],[1,11],[-4,12],[-5,4],[-13,1],[0,5],[-2,25],[-1,6],[-5,7],[-5,3],[-12,-1],[-4,-2],[-1,-5],[-1,-6],[-3,-8],[0,-3],[0,-7],[0,-4],[-2,-2],[-1,0],[-1,0],[0,-28],[1,-15],[4,-12],[-1,-15],[-7,-42],[-1,-4],[-6,-21],[0,-2],[-8,-16],[-10,5],[0,-21],[1,-10],[1,-9],[6,-28],[2,-91],[2,-100]],[[63576,73231],[-18,6],[-9,0],[-6,-5],[-6,-10],[-7,-7],[-8,-5],[-6,-4],[-13,2],[-1,0],[-9,15],[-8,21],[-4,8],[-6,14],[-5,10],[-4,9],[-5,12],[-4,6],[-4,8],[-2,16],[-3,13],[-6,0],[-15,-11],[-8,0],[-5,8],[-4,11],[-14,18],[0,10],[1,12],[-2,8],[0,5],[-4,5],[-37,30],[-18,24],[-5,17],[-1,25],[3,6],[14,15],[1,4],[0,5],[1,3],[51,16],[12,11],[2,7],[2,7],[0,1],[2,8],[0,8],[-2,7],[-8,30],[-4,7],[-16,11],[-16,25],[-7,16],[-3,16],[0,20],[5,17],[8,13],[10,8],[17,6],[15,16],[7,4],[3,1],[-6,22],[-8,18],[-19,29],[-47,92],[-17,26],[-5,6],[-4,2],[-3,-8],[-3,-4],[-4,-2],[-21,1],[-6,-3],[-6,-6],[-4,-7],[-12,-21],[-33,-31],[-5,-4],[-15,-25],[-4,-4],[-6,-1],[-19,-11],[-12,-11],[-9,-12],[-14,-30],[-9,-15],[-8,-8],[-4,-3],[-27,-18],[-14,-13],[-2,-5],[-1,-6],[-10,-27],[-5,-22],[-1,-5],[-3,-5],[-2,-2],[-17,-16],[-3,-1],[-4,2],[-8,6],[-5,0],[-4,-4],[-4,-6],[-4,-7],[-7,-21],[-2,-3],[-2,-3],[-5,-4],[-2,-3],[-3,-9],[-5,-18],[-5,-7],[-16,-14],[-5,-7],[-3,-8],[-8,-27],[-3,-9],[-4,-7],[-5,-6],[-4,-4],[-6,-4],[-5,-1]],[[62920,73496],[-10,34],[-1,7],[0,7],[0,8],[1,7],[1,1],[0,2],[4,19],[0,17],[-1,17],[-4,19],[-6,9],[-10,9],[-7,11],[0,19],[6,10],[10,-3],[17,-14],[3,1],[13,15],[6,1],[3,2],[-1,4],[-1,1],[-2,4],[-1,3],[-12,13],[-7,12],[-3,9],[-1,9],[-2,9],[-5,6],[-20,15],[-9,11],[-4,19],[4,15],[9,9],[20,7],[4,2],[2,5],[0,5],[-2,6],[0,10],[3,5],[4,4],[3,8],[-1,10],[-4,7],[-4,5],[-5,2],[-17,-3],[-6,2],[-4,4],[-6,15],[-4,5],[-10,2],[-19,-16],[-10,-4],[-6,3],[-4,7],[-6,20],[-4,8],[-5,5],[-11,5],[-8,11],[-11,36],[-8,12],[-17,9],[-9,8],[-6,5],[-13,20],[-2,7],[-12,42],[-6,11],[-8,6],[-29,5],[-9,7],[0,8],[-1,6],[18,18],[46,-12],[19,3],[4,5],[2,6],[3,28],[1,4],[6,9],[5,12],[4,14],[5,38],[0,4],[0,3],[-1,4],[-7,15],[-4,6],[-4,4],[-6,-1],[-4,-2],[-2,-1],[-5,1],[-12,21],[0,1],[-65,59],[-16,25],[-9,32],[-3,6],[-6,7],[-2,4],[-1,7],[-1,13],[-1,6],[-5,9],[-6,8],[-5,8],[-4,14],[0,11],[0,14],[7,20],[11,15],[11,8],[22,17],[7,14],[5,24],[0,13],[-5,4],[-7,1],[-5,3],[-5,7],[-11,25],[-8,10],[-3,1],[-4,2],[-3,6],[2,19],[-1,14],[-8,-2],[-3,-2],[-12,-10],[-7,1],[-12,9],[-13,2],[-5,6],[-4,8],[-6,5],[-9,16],[-4,4],[-1,-11],[-2,-7],[-5,1],[-6,6],[-4,10],[3,19],[28,-2],[9,12],[0,9],[-4,8],[-14,19],[-5,2],[-18,0],[-5,4],[-1,7],[2,12],[-10,35]],[[62642,74515],[9,11],[4,16],[-7,6],[-4,1],[-4,0],[-4,-2],[-3,-4],[-2,-6],[-1,-6],[1,-6],[2,-6],[9,-4]],[[62815,73485],[-3,0],[-16,6],[-18,14],[-59,21],[-6,4],[-14,9],[-25,1],[-16,6],[-8,1],[-2,0],[-1,1],[-6,5],[-4,2],[-4,2],[-6,5],[-6,7],[-3,6],[0,6],[0,5],[1,5],[1,6],[-1,4],[-7,5],[-3,3],[-1,5],[-2,13],[-1,5],[-3,4],[-2,3],[-3,3],[-2,6],[3,9],[-2,6],[-4,4],[-3,1],[-3,2],[0,6],[1,5],[-1,4],[-3,0],[-2,-1],[-2,-3],[-1,-1],[-29,16],[-7,-4],[-2,9],[-3,30],[-2,6],[-2,6],[-2,6],[-5,19],[-2,6],[-3,2],[-3,6],[-2,6],[-1,4],[-1,3],[-10,11],[-1,3],[-1,2],[-1,3],[-2,1],[-3,-1],[-1,1],[-8,8],[-1,5],[3,7],[-6,8],[-4,12],[-8,57],[-3,13],[-6,7],[1,2],[1,2],[-7,1],[-5,1],[-2,1],[-4,4],[0,2]],[[62446,73945],[-3,7],[-4,23],[-2,7]],[[62437,73982],[8,6],[13,4],[12,-1],[9,4],[7,7],[2,1],[10,13],[11,6],[9,-8],[2,-4],[19,-39],[2,-10],[2,-10],[-1,-14],[-3,-22],[2,-8],[5,-6],[10,4],[8,12],[8,4],[1,-4],[7,-16],[4,-12],[2,-7],[4,-3],[14,-2],[4,-4],[9,-15],[3,-2],[3,-1],[3,1],[4,2],[3,2],[22,24],[7,5],[34,14],[2,0],[6,0],[8,-4],[6,-8],[3,-7],[0,-10],[-1,-15],[2,-28],[-1,-9],[-9,-25],[-2,-12],[2,-6],[0,-3],[16,-7],[6,-7],[5,-10],[7,-8],[4,-4],[16,-13],[5,-9],[2,-4],[1,-5],[-1,-4],[-2,-4],[-6,-15],[-2,-15],[3,-15],[5,-16],[8,-17],[5,-19],[15,-67],[16,-52]],[[62558,74732],[-7,1],[-2,14],[0,1],[1,1],[2,1],[1,-1],[8,-11],[-3,-6]],[[64060,74336],[-5,2],[-4,-2],[-4,6],[-2,9],[0,7],[4,-4],[3,1],[2,3],[3,0],[4,-7],[1,-9],[-2,-6]],[[63996,74396],[-4,-1],[-6,0],[2,14],[-9,21],[0,14],[3,-3],[4,2],[2,-4],[1,-12],[3,-7],[3,-5],[3,-8],[0,-7],[-2,-4]],[[55573,75666],[3,8],[1,8],[-1,8],[0,10],[1,5],[3,9],[4,15],[-1,3],[-2,6],[-16,24],[-3,9],[0,12],[3,5],[5,7],[3,3],[3,3],[10,-4],[11,-10],[9,-5],[7,13],[0,5],[0,6],[0,6],[2,6],[3,2],[10,7],[23,6]],[[55651,75833],[23,8],[13,8],[7,14],[-2,5],[-1,7],[-6,6],[-5,8],[3,16],[4,10],[5,2],[5,0],[5,3],[3,3],[1,4],[3,9],[2,5],[3,-1],[3,-1],[4,0],[5,9],[8,18],[6,19],[1,15],[-2,4],[-3,0],[-3,-1],[-2,1],[-2,4],[-2,6],[-2,13],[-3,11],[-1,6],[2,8],[2,3],[9,0],[6,4],[22,26],[7,4],[7,2],[4,-2],[3,-2],[5,-7],[3,-4],[2,-4],[2,-8],[-1,0],[-2,1],[-4,-5],[1,-3],[-1,-8],[-1,-8],[-1,0],[2,-5],[20,-19],[23,-20],[3,-3],[6,-4],[18,-1],[5,-6],[4,-14],[4,-31],[3,-7],[5,-5],[4,3],[3,5],[5,-2],[4,-13],[1,-18],[1,-19],[8,-14],[3,-2],[7,0],[3,-1],[3,-3],[5,-7],[3,-3],[9,-3],[6,0],[2,-5],[0,-3],[0,-12],[-1,-10],[-4,-20],[-1,-9],[-1,-3],[-1,-2],[0,-2],[3,-3],[4,-2],[4,0],[7,1],[27,-6],[7,-4],[4,-6],[9,-17],[5,-5],[4,0],[12,8],[6,1],[8,-3],[2,-2],[5,-6],[2,-13],[-1,-5],[-3,-3],[-3,-2],[-3,-4],[0,-1],[-1,-12],[-1,-2],[0,-1],[-2,-2],[-1,-1],[1,-3],[2,-5],[0,-2],[-3,-14],[-14,-36],[-11,-18],[-2,-6],[-1,-9],[2,-19],[-2,-9],[-5,-9],[-17,-8],[-6,-10],[0,-14],[11,-26],[2,-16]],[[62066,74814],[-1,-14],[2,-19],[5,-17],[5,-8],[12,-3],[12,-10],[11,-14],[9,-18],[3,-12],[1,-11],[1,-12],[1,-13],[3,-12],[11,-30],[3,-11],[1,-10],[1,-41],[0,-5],[-6,-16],[-2,-4],[2,-13],[-12,-23],[-3,-12],[0,-14],[-2,2],[-1,1],[-1,0],[-2,1],[1,-2],[1,-2],[0,-4],[-6,-2],[-6,-6],[-10,-19],[1,-8],[6,-10],[12,-16],[0,-4],[-1,-1],[-4,-23],[-2,-6],[-2,-10],[3,-9],[7,-12],[13,-26],[4,-15],[0,-1],[-5,-7],[3,-10],[8,-18],[2,-6],[-3,-8],[-12,-5],[-4,-5],[4,-18],[12,-11],[26,-12],[30,-27],[34,-10],[4,3],[10,11],[6,3],[2,-2],[4,-5],[2,-2],[3,1],[6,3],[8,1],[17,8],[9,0],[10,-5],[15,-15],[24,-22],[16,-23],[7,-13],[3,-9],[1,-9],[1,-5],[3,-4],[4,-5],[1,-6],[0,-6],[1,-4],[3,4],[11,-19],[5,-5],[1,-1],[3,1],[1,0],[2,-2],[1,-5],[17,-37],[5,-12]],[[62446,73945],[-23,27],[-5,7],[-17,13],[-4,7],[-7,19],[-4,5],[-7,-3],[-30,-40],[-1,-7],[1,-19],[0,-7],[0,-3],[-2,-7],[-9,-31],[-1,-8],[-1,-10],[1,-8],[1,-8],[-1,-7],[-2,-7],[-2,-13],[1,-11],[0,-11],[-5,-11],[-5,-7],[-14,-11],[-6,-2],[-8,1],[-19,16],[-6,1],[-15,-7],[-7,-1],[-6,1],[-4,0],[-5,-2],[-5,-6],[-3,-7],[1,-8],[8,-14],[1,-6],[2,-12],[3,-12],[0,-4],[-1,-4],[0,-6],[1,-5],[4,-11],[0,-6],[-2,-10],[0,-5],[7,-10],[13,-10],[10,-13],[3,-15],[-6,-18],[-1,-9],[2,-23],[-2,-7],[-5,-7],[-4,-11],[2,-4],[1,-4],[1,-9],[1,-4],[3,-3],[2,-4],[0,-5],[0,-5],[1,-5],[1,-4],[3,-14],[4,-9],[4,-7],[15,-12],[1,-17],[-7,-43],[-1,-12],[0,-7],[2,-7],[1,-11],[-1,-4],[-3,-4],[-1,-4],[4,-3],[5,-3],[2,-2],[2,-4],[2,-10],[0,-12],[-1,-23],[2,-30],[0,-11],[-4,-23],[0,-7],[1,-15],[0,-6],[-1,-10],[1,-5],[3,-3],[4,-3],[14,-4],[9,9],[3,1],[5,-3],[3,-6],[4,-8],[2,-9],[0,-9],[-6,-15],[-10,-14],[-8,-14],[1,-29],[-1,-11],[-1,-12],[-2,-9],[-2,-4],[-5,-4],[-3,-3],[0,-5],[2,-11],[-1,-4],[-6,-5],[-3,-4],[-3,-8],[-2,-12],[-3,-9],[-6,-13],[-3,-9],[-2,-7],[-2,-8],[0,-7],[1,-9],[0,-7],[-2,-6],[-3,-6],[0,-3],[-1,-4],[5,-13],[9,-3],[18,4],[4,-2],[10,-8],[3,-4],[1,-5],[1,-7],[2,-7],[3,-7],[2,-1],[2,1],[2,1],[2,-3],[0,-3],[-1,-9],[0,-4],[2,-7],[4,0],[4,2],[4,4],[7,1],[8,-6],[7,-10],[10,-21],[1,-6],[-3,-7],[-10,-14],[-2,-5],[-1,-18],[5,-10],[7,-8],[1,-11],[-3,-11],[-2,-15],[0,-15],[1,-12],[2,-10],[-4,-18],[2,-9],[3,-4],[11,-2],[4,-5],[4,-17],[2,-5],[10,3],[3,-6],[2,-8],[2,-8],[16,-18],[6,-12],[-1,-19],[-3,-7],[-4,-4],[-3,-5],[-2,-11],[1,-12],[2,-10],[2,-10],[-2,-11]],[[62434,72466],[-3,10],[-6,5],[-29,7],[-5,-1],[-9,-7],[-11,-13],[-10,-16],[-6,-15],[-7,-9],[-7,-7],[-24,-13],[-2,-7],[-1,-9],[-5,-13],[-2,-10],[-3,-4],[-3,-1],[-12,5],[-2,4],[-2,6],[-11,43],[-2,12],[0,13],[2,12],[5,10],[3,4],[4,1],[2,2],[3,7],[0,6],[0,7],[-2,13],[-2,14],[-3,10],[-5,8],[-6,7],[-27,19],[-5,1],[-10,3],[-12,-3],[-10,-15],[-8,-21],[-9,-16],[-15,-5],[-5,-9],[-3,-1],[-2,2],[-6,10],[-3,3],[-7,3],[-7,1],[-28,-3],[-7,1],[-7,5],[-5,7],[-2,2],[-4,1],[-4,-1],[-6,-4],[-4,-1],[-4,3],[-13,18],[-12,10],[-3,5],[-8,9],[-3,1],[-5,-1],[-3,-2],[-2,-4],[-3,-1],[-2,0],[-2,2],[-37,33],[-4,2],[-9,-1],[-11,-5],[-11,-8],[-7,-9],[-12,-7],[-11,3],[-23,13],[-2,3],[-1,10],[-3,3],[-3,1],[-3,0],[-13,-10],[-2,-2],[-2,-5],[0,-4],[-1,-4],[-1,-5],[-35,-86],[-3,-16],[-1,-4],[-4,-3],[-24,-7],[-16,-9],[-13,-2]],[[59975,71741],[3,8],[12,37],[3,4],[0,10],[-8,41],[-19,56],[-4,9],[-4,10],[-3,18],[-4,8],[-4,7],[-4,7],[-3,14],[1,9],[7,19],[3,5],[2,3],[3,2],[4,0],[1,3],[3,14],[3,4],[4,5],[3,3],[1,5],[2,13],[3,4],[1,2],[2,3],[11,7],[3,2],[13,29],[2,6],[3,0],[30,33],[4,2],[3,4],[3,11],[3,12],[1,9],[0,7],[-1,6],[-1,5],[-1,7],[-1,4],[1,37],[-1,9],[-3,10],[-17,40],[-9,17],[-10,12],[-11,5],[-10,-6],[-9,-15],[-16,-33],[-4,-5],[-4,-3],[-3,-3],[-9,-19],[-5,-6],[-10,-4],[-23,-2],[-10,-6],[-4,-6],[-3,-11],[-3,-3],[1,4],[0,3],[-1,2],[-2,3],[-3,-9],[-4,-7],[-2,-8],[2,-9],[4,10],[6,-3],[1,9],[1,-1],[1,-1],[1,-2],[1,-3],[1,4],[1,4],[-1,4],[-1,4],[4,4],[1,-4],[1,-6],[2,-3],[3,2],[3,3],[3,2],[4,-2],[-17,-13],[-7,-10],[-5,-14],[1,-7],[3,5],[13,25],[4,4],[4,2],[-11,-19],[-1,-5],[-3,-10],[-1,-5],[-2,-6],[0,-8],[0,-6],[-2,-3],[-3,-1],[-4,-5],[-3,-1],[-9,-2],[-3,2],[-9,13],[-2,3],[-4,-2],[-3,-4],[0,-5],[2,-1],[3,-2],[9,-7],[-12,6],[-12,3],[-2,-2],[-7,-6],[-1,-3],[-1,-4],[-3,-2],[-5,-4],[-8,-10],[0,-2],[-3,3],[-4,11],[-4,2],[-4,2],[-70,73],[-7,5],[-9,10],[-6,4],[-4,1],[-4,-1],[-1,0],[-4,-1],[-4,-3],[1,2],[1,10],[-4,3],[-11,21],[-23,21],[-2,-5],[-8,8],[-12,-5],[-18,-14],[-8,-3],[-4,-2],[-8,-8],[-2,-3],[-2,-11],[-2,-2],[-8,-8],[-25,-38],[-30,-32],[-8,-13],[-24,-52],[-3,-9],[-1,-6],[-2,-4],[-6,-5],[-10,-17],[-10,-9],[0,-16],[1,-19],[-1,-16],[-5,-8],[-9,-3],[-7,-4],[-3,-13],[1,1],[1,2],[0,-4],[-6,-12],[-2,-7],[-1,-9],[0,-7],[-2,-4],[-4,0],[0,3],[2,11],[-1,16],[-4,15],[-6,7],[-4,2],[-4,4],[-3,2],[-4,-6],[-5,-15],[-3,-5],[-5,-2],[2,-1],[1,-1],[1,-3],[-3,-5],[-4,-12],[-3,-3],[-3,0],[-10,-7],[-2,-3],[-8,-16],[-1,-6],[-2,-16],[-2,-4],[-1,3],[-7,19],[-1,8],[-2,2],[-4,-1],[-4,-3],[-6,-10],[-6,-14],[-7,-10],[-6,2],[4,4],[0,4],[-6,1],[-12,6],[-6,1],[-6,-2],[-10,-9],[-4,-1],[-10,6],[-6,1],[-5,-10],[-6,-2],[-13,1],[-8,-4],[-3,-1],[-4,2],[-5,5],[-3,2],[-7,-4],[-3,-7],[-3,-9],[-4,-9],[-3,-4],[-1,0],[-1,2],[-2,2],[-4,1],[-8,-1],[-19,8],[-5,1],[-18,-17],[-3,-2],[-3,-6],[-14,-21],[-12,2],[-25,10],[-11,9],[-17,19],[-1,1],[-10,2],[-5,2],[-21,22],[-3,5],[-2,7],[-5,3],[-6,3],[-4,5],[-13,30],[-3,0],[-1,3],[-5,6],[-1,4],[-1,17],[-1,5],[-7,16],[-16,26],[-4,17],[0,5],[-1,4],[-3,7],[-4,9],[0,2],[-4,3],[-1,0],[-5,19],[-3,9],[-4,5],[-17,29],[-2,2],[-3,1],[-3,0],[-3,1],[-2,3],[-2,2],[-2,2],[-11,-1],[-5,2],[-3,5],[-3,6],[-7,4],[-8,2],[-5,-1],[-2,4],[-11,8],[-5,13],[-4,6],[-3,-1],[-6,2],[-21,16],[-5,6],[-4,8],[-52,40],[-8,3],[-1,14],[-10,10],[-111,29],[-46,-4],[-7,3],[-6,6],[-12,15],[-16,-19],[-7,-12],[-4,-19],[-4,-10],[-1,-5],[0,-18],[-1,-19],[0,-11],[3,-9],[0,-4],[-2,-4],[-2,-5],[-1,-6],[-1,-9],[1,-11],[1,-6],[2,-5],[2,-6],[2,4],[-1,-13],[-4,-21],[1,-7],[-9,-13],[-5,-10],[-3,-21],[-6,-16],[0,-5],[-3,-10],[0,-10],[3,-8],[4,-4],[-2,-9],[7,-4],[-4,-9],[-7,-11],[-4,-12],[2,0],[2,2],[0,-1],[2,-1],[-3,-5],[-3,-5],[-4,-6],[-3,-13],[-4,-8],[-8,-12],[1,25],[-1,11],[-4,5],[-6,-4],[-30,24],[-5,0],[-21,-6],[-3,-5],[-1,-9],[0,-12],[-2,0],[0,4],[-2,8],[-2,-12],[0,-4],[-4,4],[1,-4],[-1,-4],[-10,4],[-2,1],[-2,4],[-3,2],[-4,-3],[6,0],[0,-4],[-18,-18],[-5,1],[-3,-3],[-3,0],[-3,2],[-4,1],[-2,0],[-2,-1],[-4,-7],[-4,-4],[-11,-4],[-3,-4],[1,0],[1,-1],[-1,-3],[-2,0],[-7,-4],[0,-4],[6,0],[-4,-6],[-4,-6],[-4,-3],[-5,-1],[0,4],[1,2],[1,2],[0,2],[1,2],[-3,-1],[-1,-1],[-1,-2],[-4,6],[-3,2],[-3,-1],[-4,-3],[-1,-2],[0,-3],[-1,-2],[-3,-1],[0,-2],[-4,-11],[-1,13],[-10,7],[-3,13],[4,-3],[2,3],[-1,5],[-2,3],[-14,-4],[0,4],[3,2],[2,2],[3,1],[3,-1],[-6,5],[-22,-1],[-8,3],[-17,18],[-3,-6],[-2,5],[-1,17],[-1,-5],[-1,1],[-1,3],[-2,1],[-3,-2],[-1,-2],[-1,-1],[-1,-3],[-2,-4],[-1,-4],[-1,-3],[-2,-2],[-2,3],[-2,6],[-2,4],[-2,-4],[-16,27],[-2,2],[-2,9],[-4,7],[-16,10],[-5,10],[-4,-5],[-1,8],[0,2],[1,2],[0,5],[-8,0],[2,3],[-3,4],[-2,1],[-2,0],[1,5],[2,4],[3,2],[3,1],[0,3],[-1,0],[-1,1],[2,11],[-2,10],[-3,8],[-4,4],[0,3],[3,6],[2,1],[2,2],[0,4],[-1,21],[-1,10],[-3,-3],[-2,0],[-4,7],[-13,-9],[-6,2],[5,2],[1,6],[-1,8],[-3,9],[1,4],[3,10],[2,6],[3,-6],[4,6],[3,9],[5,3],[0,-4],[-2,-6],[2,-2],[4,1],[1,5],[0,5],[-2,6],[-2,4],[-1,3],[-18,22],[-21,15],[-3,6],[-2,8],[-4,-6],[-6,-10],[-3,-7],[0,-3],[2,0],[0,-4],[-6,-1],[-2,-1],[-2,-2],[-1,-5],[1,-6],[0,-4],[-4,-2],[2,-5],[1,-1],[1,-2],[-2,-4],[3,-6],[1,-2],[2,0],[1,6],[2,4],[0,6],[-1,8],[5,-8],[-2,-10],[-5,-9],[-4,-5],[2,-6],[-3,-4],[-5,0],[-4,1],[-2,6],[0,5],[2,4],[4,2],[0,4],[-5,4],[-2,4],[-3,2],[-5,-2],[-1,16],[-10,12],[-13,4],[-8,-7],[-2,0],[-1,10],[-3,5],[-4,-2],[-4,-9],[-2,3],[-3,17],[2,8],[2,12],[-1,10],[-3,6],[0,3],[0,1],[1,0],[1,0],[-1,2],[0,1],[0,2],[1,4],[-2,0],[-1,-6],[-1,-2],[0,-5],[-2,3],[0,5],[-4,7],[-8,2],[-6,-6],[1,-14],[-3,4],[-3,1],[-2,0],[-4,2],[4,4],[0,5],[-6,0],[-4,1],[-2,6],[-1,13],[2,-1],[1,1],[1,2],[-1,3],[0,2],[-1,1],[0,2],[-1,6],[-1,4],[-2,-1],[0,-5],[-3,-5],[-5,-3],[-8,-2],[-3,-2],[0,-3],[2,-4],[2,-4],[1,0],[3,1],[2,0],[3,-5],[-3,-8],[-2,-9],[-3,-6],[-5,0],[-15,12],[-2,4],[-2,0],[1,-10],[1,-3],[-8,-1],[-3,2],[-1,5],[2,6],[2,2],[8,2],[0,4],[-4,4],[-4,6],[-4,4],[-4,-3],[-4,-10],[-2,-10],[1,-9],[4,-5],[-2,-13],[11,-15],[2,-13],[-3,4],[-5,2],[-3,-2],[-2,-9],[-2,2],[-2,3],[0,-3],[0,-2],[-1,-2],[-1,-1],[1,-1],[1,0],[0,-3],[-14,-9],[-6,-7],[-5,-13],[-3,-13],[-6,-15],[-6,-9],[-8,5],[-1,-4],[-1,-2],[-1,-1],[-2,-2],[0,-1],[1,-5],[1,-2],[-4,-2],[-3,-1],[-2,2],[-1,5],[-3,-8],[-3,-1],[-4,3],[-3,6],[0,2],[1,5],[1,2],[-2,1],[-1,2],[-1,4],[21,0],[5,4],[3,6],[3,7],[4,8],[-4,8],[-5,-9],[-2,-3],[0,4],[2,5],[1,7],[-1,7],[-2,5],[-3,3],[-1,-1],[0,-8],[-2,-3],[-3,1],[-3,2],[-2,2],[-2,-1],[-3,0],[-3,2],[-1,5],[1,3],[10,4],[-2,4],[6,-1],[2,1],[1,1],[2,3],[1,3],[0,1],[10,1],[3,3],[-1,-10],[4,0],[5,5],[0,9],[-3,3],[-5,1],[-2,4],[1,4],[2,3],[3,5],[2,4],[1,-4],[1,-2],[3,-6],[-1,10],[0,12],[-2,6],[-3,1],[-3,-1],[-3,-3],[-5,-13],[-6,-7],[-2,1],[-1,6],[-4,-7],[-11,-5],[-4,-4],[-2,0],[-2,7],[-2,-2],[-4,-5],[-4,-4],[-1,8],[-2,-1],[-2,-4],[-2,-3],[-2,2],[-2,4],[-2,1],[-2,-7],[-2,0],[-3,5],[-5,5],[-6,2],[-5,-4],[0,4],[-3,-3],[-3,0],[-4,2],[-4,1],[-5,-3],[-6,-13],[-4,-4],[0,-4],[1,-5],[-4,-19],[0,-13],[-9,8],[-5,3],[-5,1],[-5,-1],[-4,-2],[-3,1],[-2,6],[-18,-12],[-2,-4],[-1,-3],[-1,-1],[-2,1],[-3,6],[-2,1],[-6,2],[-3,1],[-3,-3],[-1,8],[-2,4],[-3,0],[-4,-4],[0,3],[0,1],[-1,0],[-1,0],[2,4],[0,3],[-1,3],[-3,3],[0,3],[4,-2],[4,-2],[5,0],[4,2],[2,7],[1,9],[3,7],[3,4],[3,1],[7,-1],[20,5],[10,-1],[5,3],[2,6],[0,8],[2,7],[6,3],[12,-13],[4,3],[5,-5],[4,1],[3,1],[4,-2],[7,12],[3,3],[25,1],[3,2],[1,-3],[5,-4],[6,-2],[5,-1],[10,2],[4,-2],[5,-8],[1,6],[1,4],[6,6],[-2,7],[-3,4],[-4,1],[-5,0],[2,4],[3,-1],[0,3],[-2,6],[-3,5],[1,0],[1,1],[1,1],[1,2],[2,-2],[2,1],[3,3],[3,2],[0,4],[-6,9],[-2,6],[-2,5],[4,-4],[2,4],[-2,2],[-1,2],[0,2],[-1,3],[2,-1],[5,1],[2,0],[0,3],[-5,0],[0,4],[6,1],[3,-1],[2,-4],[2,3],[1,1],[1,-1],[2,-3],[2,0],[3,4],[6,-6],[2,2],[2,0],[0,-4],[2,-8],[1,3],[0,2],[0,1],[-1,3],[1,2],[0,2],[-1,2],[-2,1],[0,5],[2,0],[3,0],[1,-2],[2,-3],[5,17],[2,4],[0,4],[-4,0],[3,6],[1,6],[5,-6],[4,-1],[3,3],[-2,8],[15,10],[8,4],[0,3],[-2,5],[-2,3],[-3,1],[-36,-10],[-14,1],[-5,-2],[1,-7],[0,-4],[-5,4],[-30,8],[-3,-1],[-3,-5],[-3,-2],[-3,1],[-8,3],[-7,-1],[-23,-13],[-3,2],[-2,0],[0,-2],[-2,-6],[-2,1],[-3,1],[-3,0],[-3,-2],[-6,7],[-9,0],[-8,-5],[-6,-10],[-5,5],[-8,6],[-6,-1],[-1,-14],[-7,8],[-3,2],[-4,2],[-8,-2],[-3,2],[-3,4],[-5,13],[-2,3],[-4,0],[-4,-6],[-2,4],[1,2],[-2,0],[-1,-6],[-3,-14],[-1,3],[0,1],[0,1],[1,3],[-1,1],[-1,1],[0,2],[1,2],[0,1],[0,1],[-1,4],[-3,-3],[-7,-2],[-3,-3],[0,-4],[1,-6],[-2,-7],[-3,-5],[-4,-2],[1,-6],[1,-2],[-3,1],[-1,0],[-2,-1],[-2,4],[-4,-2],[-3,9],[-2,13],[0,10],[-2,10],[-2,8],[-1,8],[3,13],[2,0],[5,3],[5,6],[3,7],[-2,3],[-2,1],[-3,-1],[-2,-3],[-1,2],[-1,2],[0,4],[2,-4],[3,7],[9,-6],[5,3],[0,4],[0,5],[1,5],[-1,7],[3,-2],[2,-3],[1,-5],[0,-7],[1,0],[2,6],[2,5],[2,1],[2,-4],[1,1],[0,1],[0,1],[1,2],[0,-11],[1,-2],[2,0],[3,0],[2,-3],[2,-3],[2,-1],[3,3],[0,-2],[-1,0],[0,-1],[-1,-1],[4,-12],[4,-4],[4,1],[8,9],[5,5],[3,3],[3,3],[6,0],[3,3],[0,4],[-3,-1],[-1,-1],[-2,-2],[-2,18],[-2,10],[-3,4],[0,5],[13,5],[4,-2],[-4,-12],[3,2],[3,3],[4,8],[-5,3],[-1,4],[0,11],[1,3],[3,4],[2,3],[1,4],[0,8],[1,4],[-4,4],[0,1],[-2,1],[-1,-2],[0,-2],[-1,-2],[-7,1],[-3,-2],[-1,-5],[-2,-8],[-3,-8],[-5,-5],[-4,3],[5,7],[1,8],[-3,5],[-6,0],[-1,-2],[-3,-5],[-3,-2],[-1,3],[1,6],[1,6],[6,10],[-1,5],[2,6],[0,8],[-3,10],[-2,0],[-1,-16],[-7,-6],[-7,2],[-6,8],[-3,13],[3,12],[5,10],[6,5],[-3,9],[-5,4],[-1,0],[-5,0],[-5,-4],[-2,-8],[-2,-8],[-2,-5],[-7,0],[0,-4],[4,-5],[-2,-2],[-16,-2],[-4,-2],[-3,-5],[-2,4],[-2,3],[-2,0],[-2,-3],[0,4],[-1,2],[-1,2],[-2,-2],[-1,-1],[0,1],[-3,2],[3,6],[2,6],[1,6],[-2,6],[5,4],[1,1],[0,4],[-2,11],[1,27],[-5,-2],[-1,3],[-2,0],[-2,-3],[-2,-4],[1,10],[2,9],[0,8],[-1,9],[1,4],[-1,3],[-1,3],[1,7],[4,-5],[3,9],[0,13],[-1,7],[-4,3],[-16,17],[-24,12],[-10,9],[2,12],[5,2],[19,-2],[6,1],[24,15],[3,5],[7,13],[2,9],[1,14],[0,12],[0,8],[-2,5],[-3,5],[-2,7],[1,12],[1,2],[3,5],[2,4],[1,6],[0,5],[0,4],[-1,6],[4,6],[-3,13],[-7,22],[-7,-4],[-10,0],[-10,3],[-7,4],[-2,4],[-1,4],[-1,3],[-3,2],[-2,0],[-2,1],[-2,2],[-1,3],[-1,9],[-2,3],[-8,2],[-14,9],[-8,2],[-8,-3],[-5,-4],[-2,0],[-2,-2],[0,-4],[-1,-4],[-3,-2],[-2,3],[-6,21],[1,7],[0,9],[-2,9],[-1,8],[-3,8],[-6,10],[-3,6],[-5,-4],[-1,7],[1,17],[-4,6],[-5,0],[-4,-4],[-6,-2],[-17,0],[-3,-2],[-3,-38],[-2,2],[0,2],[-2,0],[1,-9],[0,-7],[-2,-6],[-3,-3],[-2,3],[-3,14],[-3,8],[0,-13],[-3,-1],[-3,5],[-6,10],[-2,5],[0,6],[1,8],[-8,-3],[-7,10],[-7,12],[-6,5],[1,-9],[0,-3],[-1,0],[-2,4],[-6,10],[0,6],[1,6],[0,5],[-1,6],[-2,0],[-2,-16],[-6,-4],[-7,4],[-9,13],[-3,2],[-14,8],[-1,4],[2,9],[7,-5],[3,8],[3,11],[6,2],[0,5],[-5,6],[-1,10],[2,7],[4,-7],[1,5],[0,3],[1,1],[2,2],[1,-7],[0,-6],[-1,-6],[-2,-5],[1,-2],[2,-1],[1,0],[3,0],[2,-1],[0,-3],[1,-3],[2,-2],[4,0],[4,1],[1,4],[-2,7],[0,4],[4,-4],[2,-1],[4,1],[3,3],[7,8],[2,2],[4,5],[0,12],[-2,12],[-5,7],[0,4],[7,-5],[4,-7],[2,1],[4,15],[-4,4],[-7,11],[-5,3],[-4,6],[-3,0],[-2,-2],[-2,-8],[-2,-2],[-6,1],[0,2],[3,6],[2,12],[-1,7],[-9,21],[2,-4],[-1,7],[-3,18],[-1,4],[1,3],[-4,23],[1,8],[0,9],[2,7],[2,2],[4,2],[7,5],[3,1],[7,-1],[7,-3],[6,-5],[5,-7],[10,-17],[4,-11],[1,-9],[7,-17],[7,-15],[2,-4],[2,-2],[2,-4],[1,-6],[1,-7],[0,-6],[0,-5],[1,-6],[-1,-3],[-1,-1],[-2,0],[-2,3],[-3,1],[-3,-1],[-3,-3],[5,-4],[0,-6],[-3,-7],[-2,-8],[7,-2],[2,-6],[2,-9],[3,-9],[5,-27],[5,-13],[6,3],[1,8],[-2,5],[-4,5],[-2,25],[1,10],[4,10],[4,7],[4,-3],[0,4],[2,0],[3,-6],[3,-11],[6,-24],[1,2],[3,2],[1,1],[3,-8],[4,1],[5,4],[5,3],[21,3],[14,11],[5,2],[1,1],[4,5],[1,2],[3,0],[3,-2],[2,-1],[4,3],[0,-2],[1,2],[8,-6],[6,7],[7,12],[8,7],[0,4],[-3,4],[-1,-1],[-2,-3],[-2,5],[-5,-4],[-9,1],[-3,-2],[-7,6],[-7,0],[-18,-12],[-6,-5],[-1,0],[3,7],[-5,6],[-8,23],[-4,4],[-7,3],[-2,3],[-7,8],[-3,10],[4,-7],[5,-6],[7,-8],[5,1],[0,4],[-4,7],[-3,5],[-4,4],[-4,4],[1,7],[1,15],[1,7],[-4,6],[-2,-2],[-3,-4],[-6,0],[1,6],[1,2],[-6,4],[-3,0],[-4,0],[0,3],[1,6],[1,3],[-4,0],[-3,2],[-5,6],[2,4],[2,3],[3,1],[3,0],[-6,14],[-2,8],[-2,11],[6,6],[14,5],[8,9],[1,-1],[2,-2],[0,-1],[0,-1],[3,0],[3,-1],[7,-4],[3,-2],[5,0],[-2,8],[3,3],[2,4],[2,1],[2,-4],[1,5],[0,4],[0,5],[-1,6],[-2,-4],[-5,16],[-2,4],[11,8],[2,-12],[5,-2],[2,8],[-3,15],[5,2],[4,4],[4,5],[2,5],[6,-7],[6,7],[2,9],[-6,3],[5,16],[-1,6],[-4,7],[-5,-8],[-3,-3],[-3,-1],[-5,-1],[-2,2],[-3,9],[-1,2],[-3,-2],[-3,-3],[-2,-1],[-3,6],[-3,-5],[-9,-10],[-4,-1],[-3,2],[-4,11],[-4,3],[-5,6],[-3,13],[1,15],[4,10],[0,4],[-1,0],[-5,0],[4,7],[6,8],[7,7],[5,2],[3,5],[-2,12],[-7,18],[-8,16],[-3,5],[-9,8],[-2,2],[-6,6],[-3,8],[0,6],[-2,12],[-2,12],[-2,9],[-5,3],[-13,-1],[-7,1],[-5,4],[3,5],[1,12],[2,6],[4,2],[3,-2],[-1,-4],[-5,-2],[0,-4],[3,0],[3,-2],[2,-3],[2,-4],[-2,10],[2,4],[3,3],[3,3],[5,13],[29,37],[-3,3],[-1,1],[0,3],[1,4],[0,4],[-1,5],[10,1],[4,2],[3,5],[-3,9],[5,5],[16,9],[1,1],[0,2],[0,6],[4,23],[0,12],[-2,8],[-4,5],[-8,1],[-7,-4],[-5,-8],[-5,-4],[-7,8],[-39,-12],[-58,-17],[-7,-5],[-3,-5],[-2,0],[-13,-11],[-2,-3],[-3,0],[-15,4],[-3,0],[-3,-3],[-3,-1],[-3,-5],[0,-1],[-1,-3],[-2,1],[-3,4],[-22,-9],[-11,0],[-11,9],[-1,13],[7,31],[4,29],[11,17],[2,14],[2,32],[-1,6],[-5,17],[-1,8],[0,5],[1,2],[1,1],[1,4],[0,14],[2,15],[-1,6],[-4,1],[1,7],[4,29],[0,4],[-2,12],[0,5],[1,5],[3,8],[0,5],[1,6],[6,16],[3,4],[14,-8],[5,5],[9,7],[3,3],[12,19],[2,7],[1,5],[0,7],[1,4],[1,2],[-1,3],[0,2],[1,1],[3,0],[2,1],[1,1],[2,8],[1,11],[0,11],[-2,9],[2,8],[1,4],[2,1],[3,-1],[4,2],[8,5],[9,4],[5,8],[12,26],[3,3],[2,1],[4,4],[3,4],[30,60],[6,7],[11,1],[24,-3],[10,4],[3,-2],[7,-6],[16,-3],[6,3],[8,10],[7,14],[8,11],[13,1],[10,-3],[10,-1],[6,3],[10,9],[4,1],[5,-6],[3,-9],[4,-18],[-4,-4],[-2,0],[-1,2],[0,1],[-1,-2],[-2,-1],[12,-21],[16,-17],[16,-12],[20,-8],[8,0],[3,1],[9,11],[5,1],[7,-3],[7,-5],[7,-2],[6,6],[6,-4],[8,-1],[8,3],[6,16],[15,13],[5,10],[-5,0],[-14,8],[-4,-4],[-3,0],[-1,6],[0,6],[-2,1],[-2,1],[-1,2],[-2,5],[-1,2],[-1,4],[0,7],[-1,4],[-2,1],[-3,0],[-2,1],[-9,15],[-3,6],[0,4],[4,2],[3,3],[4,9],[3,2],[3,-2],[2,-1],[3,7],[5,-11],[0,-2],[3,0],[0,1],[1,3],[3,1],[46,-12],[12,-7],[6,-10],[-5,-14],[-24,-20],[-7,-10],[1,-15],[10,-5],[23,4],[23,14],[66,5],[14,-4],[24,1],[-3,-1],[-2,-2],[-2,-4],[0,-5],[11,7],[13,0],[13,-6],[12,-9],[2,3],[1,-1],[1,-2],[2,0],[2,1],[3,5],[3,2],[15,4],[5,6],[4,4],[5,-2],[9,-4],[9,-1],[8,-3],[4,-3],[6,-7],[5,-2],[5,-2],[21,1],[5,2],[4,5],[3,7],[2,16],[2,7],[4,-2],[4,0],[5,3],[4,3],[-5,10],[-6,9],[-7,7],[-6,3],[-15,0],[-2,-2],[-6,-9],[-3,-2],[-15,6],[-25,25],[-15,6],[5,18],[10,10],[20,13],[8,8],[12,20],[4,3],[82,13],[12,6],[11,10],[6,8],[2,0],[2,-3],[2,-5],[3,-4],[3,2],[3,3],[3,2],[3,3],[1,5],[2,4],[2,3],[3,2],[3,1],[3,-1],[5,-3],[4,-7],[1,-12],[4,1],[53,19],[32,3],[10,-8],[6,1],[4,11],[-3,13],[-11,3],[-22,-4],[-2,-1],[-2,-2],[-3,-1],[-3,0],[-3,2],[-5,8],[-2,2],[-5,1],[-9,6],[-6,1],[-66,-4],[-5,-3],[-4,-5],[-5,-4],[-6,4],[-2,5],[-1,5],[-2,5],[-3,1],[1,2],[1,1],[1,1],[1,1],[-1,6],[-1,4],[-3,3],[-2,3],[-2,-4],[-2,4],[-3,-4],[-3,-2],[-7,-3],[0,4],[2,1],[2,2],[1,4],[0,6],[3,-3],[1,-1],[0,2],[0,1],[1,1],[1,0],[-3,8],[-6,10],[-3,4],[-3,4],[-6,-2],[-5,9],[-16,12],[-6,7],[-5,12],[-6,8],[-15,13],[1,1],[0,1],[1,2],[-4,3],[-1,6],[-1,8],[-2,8],[5,4],[6,10],[4,13],[4,22],[3,9],[1,7],[-6,7],[7,16],[10,19],[11,13],[9,-3],[1,0],[3,6],[4,1],[53,-16],[55,-21],[74,-17],[70,-3],[8,1],[4,3],[6,8],[4,1],[3,4],[2,7],[2,4],[2,-2],[3,4],[3,10],[3,2],[4,-5],[11,-4],[10,-11],[91,-36],[9,-13],[5,-4],[23,-7],[72,3],[7,6],[2,2],[4,-1],[6,-2],[3,-1],[11,4],[2,-1],[2,-2],[2,-1],[2,1],[0,2],[1,3],[2,2],[11,7],[9,10],[16,24],[4,8],[2,8],[1,10],[0,12],[1,6],[2,11],[1,7],[-1,4],[-5,5],[-1,5],[3,8],[6,4],[12,1],[2,2],[4,11],[2,3],[3,1],[42,26],[59,63],[33,27],[11,13],[2,2],[27,14],[7,8],[5,15],[18,33],[1,3],[4,13],[10,4],[15,1],[1,4],[2,1],[3,3],[0,4],[1,3],[2,1],[1,-1],[2,-6],[1,-1],[5,4],[6,11],[4,6],[20,16],[3,4],[4,3],[4,0],[4,-3],[3,9],[6,8],[8,2],[6,-5],[5,1],[17,10],[4,3],[4,0],[8,1],[8,3],[5,4],[3,-2],[20,8],[9,7],[13,14],[44,23],[44,37],[10,1],[21,-6],[29,0],[7,-2],[13,-8],[60,-10],[5,3],[8,-4],[36,4],[91,-20],[32,15],[10,1],[4,-2],[8,-7],[10,-5],[37,-3],[14,2],[15,7],[4,4],[11,14],[10,9],[8,17],[6,20],[2,17],[4,-2],[8,-2],[4,-4],[0,4],[1,1],[2,-1],[2,0],[2,-7],[3,-5],[2,-4],[-1,-4],[0,-4],[10,-13],[7,-4],[8,1],[3,3],[4,7],[3,2],[4,-1],[3,-3],[6,-8],[0,-4],[-15,3],[-7,-2],[-6,-7],[-3,-9],[-2,-13],[-2,-14],[0,-11],[2,-9],[8,-22],[8,-18],[15,-20],[0,-4],[-4,0],[2,-8],[2,-9],[4,-8],[8,-7],[8,-16],[4,-5],[17,-11],[12,-3],[5,-5],[8,-13],[11,-10],[12,-6],[13,-3],[12,2],[6,4],[10,11],[17,4],[30,20],[6,2],[7,3],[11,15],[6,2],[0,-4],[-1,-3],[-1,-4],[-3,-3],[-2,-2],[0,-9],[-5,-18],[1,-10],[2,0],[1,14],[2,13],[4,11],[4,7],[3,4],[1,1],[17,-25],[0,8],[2,0],[21,-44],[4,-17],[0,-24],[-1,-6],[-3,-10],[0,-2],[0,-20],[1,-9],[3,-10],[12,-25],[7,-8],[9,-28],[5,-6],[14,-12],[8,-3],[1,-3],[1,-4],[0,-7],[1,-7],[2,-3],[3,-1],[3,-2],[2,-3],[3,-7],[1,-3],[3,-1],[5,-1],[3,-4],[5,-3],[7,3],[11,10],[15,21],[2,5],[1,6],[4,11],[1,4],[1,1],[1,13],[4,6],[3,-1],[5,-3],[6,-2],[24,0],[22,-9],[41,-33],[8,-12],[5,-19],[1,-26],[1,-10],[5,-4],[6,-2],[10,-11],[6,-4],[35,1],[10,-4],[7,-10],[3,-3],[6,-3],[6,-1],[5,-2],[7,-13],[4,-6],[12,-5],[1,-4],[6,-11],[6,-4],[11,2],[4,-2],[2,3],[4,3],[2,2],[2,5],[4,16],[3,10],[4,9],[5,8],[5,6],[2,-10],[5,-6],[5,0],[5,7],[2,-4],[7,2],[0,-37],[5,-10],[14,-12],[4,-4],[3,-6],[5,-14],[11,8],[13,-3],[33,-18],[17,-5],[11,-6],[6,0],[12,5],[6,-2],[12,-17],[6,0],[10,5],[10,-5],[8,-1],[3,4],[21,2],[4,5],[10,16],[4,4],[9,4],[3,0],[2,-3],[4,-9],[2,-4],[3,2],[5,1],[3,1],[2,2],[3,4],[2,4],[4,2],[5,11],[1,3],[2,2],[6,3],[19,7],[5,5],[4,6],[6,3],[31,0],[23,8],[2,3],[7,9],[3,2],[10,-2],[5,-2],[8,-12],[7,-2],[4,3],[8,8],[5,1],[4,2],[15,15],[1,2],[1,3],[2,2],[3,1],[18,-7],[4,-6],[7,-15],[16,-24],[11,-10],[11,-3],[5,3],[6,4],[5,2],[8,-9],[3,-1],[6,1],[3,-1],[16,-22],[5,-4],[6,-1],[4,5],[18,10],[6,1],[16,-24],[8,-9],[11,-4],[5,2],[8,5],[7,3],[10,6],[6,7],[13,6],[46,48],[9,-7],[8,-1],[8,4],[9,8],[10,15],[4,2],[9,2],[4,2],[3,4],[17,35],[19,24],[4,2],[4,-2],[12,-6],[7,1],[10,12],[5,3],[5,1],[7,4],[6,5],[5,6],[11,19],[6,7],[7,2],[7,1],[5,3],[26,34],[7,4],[6,5],[3,2],[10,2],[4,2],[5,7],[4,10],[3,13],[1,13],[3,3],[16,23],[4,11]],[[57782,75326],[4,-28],[0,-6],[1,-2],[2,-4],[1,-4],[0,-4],[-3,-3],[-3,1],[-5,3],[-4,0],[-4,-3],[-2,-8],[-1,-15],[1,-16],[5,-10],[5,-10],[4,-10],[5,-27],[4,-8],[5,-7],[2,-5],[1,-6],[1,-1],[1,-2],[0,-3],[-1,-2],[-1,0],[-2,-1],[0,-3],[2,-10],[4,-10],[5,-9],[8,-8],[4,-8],[6,-16],[15,-23],[42,-43],[60,-41],[86,-66],[27,-10],[2,-1],[0,-1],[1,-1],[2,-1],[2,2],[2,5],[2,1],[6,-1],[7,-5],[4,-6],[-2,-15],[-4,-11],[-5,-10],[-5,-5],[-3,-1],[1,-4],[2,-5],[2,-5],[2,-4],[0,-1],[2,-1],[-1,-4],[-1,-3],[-1,0],[-1,-12],[-2,-10],[-2,-9],[-3,-8],[-3,-3],[-4,-2],[-3,-3],[-2,-5],[0,-3],[0,-3],[0,-2],[1,-2],[0,-4],[-2,-3],[-1,-1],[-6,1],[-2,4],[-2,0],[-2,-1],[-2,-6],[-1,-1],[-3,-1],[-5,-6],[-11,-4],[-3,-1],[-1,-2],[-1,-3],[-2,-2],[-3,-1],[-7,0],[-3,2],[-2,4],[-3,4],[-7,1],[-33,-7],[-8,5],[2,19],[-3,6],[-2,2],[-3,0],[2,14],[-3,12],[-5,8],[-7,3],[1,-9],[6,-10],[2,-10],[1,-6],[-1,-8],[-2,-9],[-3,-5],[-8,2],[-15,24],[-7,6],[-9,2],[-19,12],[-10,2],[-9,0],[-3,2],[-3,6],[-2,1],[-10,-4],[-5,-1],[-2,2],[-3,3],[-13,-8],[-2,-2],[-3,0],[-15,-11],[-4,-1],[-5,-4],[-5,-6],[-3,-5],[-6,-16],[-2,-7],[1,-5],[-5,-3],[-22,5],[-5,4],[-4,6],[-4,4],[-11,5],[-11,1],[-59,-14],[-9,-8],[-6,-20],[-7,-47],[-6,-18],[-26,-42],[-12,-34],[-25,-30],[-1,-3],[-3,-7],[-1,-2],[-3,-2],[-7,-1],[-8,-8],[-13,0],[-5,-1],[-5,-7],[-8,-18],[-3,-4],[-8,-2],[-3,0],[-11,-6],[-16,-16],[-4,-6],[-5,-6],[-17,-4],[-6,-5],[-9,-13],[-3,-3],[-4,-3],[-2,-18],[-3,-7],[-9,-8],[-2,-4],[0,-10],[-2,-10],[-4,-8],[-15,-23],[-2,-2],[-9,-3],[-3,-5],[-6,-10],[0,-2],[-2,-2],[-7,-15],[-5,-6],[-6,-7],[-7,-5],[-6,-1],[-3,-5],[1,-11],[3,-11],[4,-6],[-13,-20],[-4,-6],[-11,-10],[-9,-13],[-3,-3],[-15,-9],[-3,0],[-3,3],[1,7],[2,7],[2,3],[4,6],[4,13],[2,12],[1,6],[13,28],[3,22],[-1,16],[-5,13],[-9,10],[3,4],[1,4],[-1,3],[-4,1],[-1,3],[3,6],[3,5],[2,1],[3,4],[14,9],[6,1],[4,11],[14,15],[13,18],[16,10],[13,17],[7,8],[9,7],[8,2],[13,-2],[4,2],[3,7],[6,15],[4,7],[7,-5],[9,5],[7,10],[4,13],[-9,29],[-2,5],[-3,0],[-18,-5],[-6,-5],[-4,-2],[-19,0],[-8,-4],[-21,-20],[-8,8],[-4,3],[-5,1],[-4,-2],[-4,-5],[-4,-2],[-8,6],[-4,-1],[-15,-7],[-52,1],[-7,2],[-4,4],[-2,9],[-2,10],[-2,9],[2,9],[-1,13],[-3,13],[-4,10],[2,1],[1,1]],[[57234,74596],[10,-2],[9,7],[6,12],[2,15],[5,11],[15,21],[-2,7],[0,4],[1,2],[2,2],[-1,0],[-1,1],[1,3],[2,1],[1,2],[1,3],[-1,6],[2,-6],[0,-2],[2,0],[2,3],[2,6],[2,11],[2,0],[1,-3],[1,-3],[2,-1],[2,-1],[4,2],[0,3],[-2,5],[-1,2],[4,6],[8,6],[4,5],[2,6],[0,2],[-3,2],[-3,6],[-1,5],[1,4],[2,2],[5,1],[2,3],[2,7],[0,7],[-8,6],[-2,6],[-4,13],[-1,9],[5,15],[-2,3],[-4,2],[0,5],[5,13],[-3,10],[-1,11],[1,11],[3,13],[-4,10],[3,5],[17,3],[5,4],[7,10],[8,8],[2,3],[0,3],[2,2],[3,1],[14,24],[3,-6],[5,-5],[6,-3],[5,1],[4,6],[2,10],[1,13],[0,12],[-1,12],[-4,29],[-2,22],[-1,10],[-3,9],[2,6],[-1,15],[1,7],[-1,3],[-1,4],[0,5],[0,4],[-5,-13],[-3,5],[-13,11],[-15,19],[2,7],[1,9],[-4,1],[-5,4],[-11,4],[-8,11],[-4,3],[-8,-1]],[[57314,75173],[-3,6],[-1,12],[1,13],[3,14],[12,16],[29,-2],[13,7],[4,8],[2,11],[1,10],[0,5],[0,3],[1,3],[1,5],[0,4],[-1,2],[-3,3],[-1,3],[2,3],[1,3],[2,3],[8,13],[5,5],[5,1],[26,-7],[5,1],[3,4],[6,9],[3,2],[3,-2],[5,-7],[3,-2],[3,2],[2,4],[4,5],[3,3],[3,0],[2,-2],[3,0],[3,5],[3,2],[5,-2],[2,1],[4,6],[2,7],[2,7],[4,2],[6,6],[6,18],[6,6],[1,0],[5,0],[5,-3],[4,-4],[5,-6],[3,1],[6,-1],[7,-3],[1,1],[0,2],[1,3],[6,13],[4,4],[6,2],[9,-4],[9,-8],[8,-12],[12,-29],[6,-12],[6,-9],[21,-18],[4,-6],[7,-15],[3,-4],[5,3],[-4,3],[1,1],[1,2],[1,1],[-1,1],[0,1],[-1,0],[-1,2],[6,3],[3,3],[2,5],[3,-3],[1,0],[1,3],[1,6],[21,9],[11,-1],[14,-12],[4,-2],[3,0],[4,2],[1,4],[-5,4],[1,6],[0,8],[1,6],[1,1],[1,0],[1,0],[1,-1],[6,1],[2,0],[7,-3],[7,-6],[4,-1],[14,2],[4,-2],[10,-4]],[[57238,74062],[5,4],[2,-5],[-1,-21],[-2,-9],[-4,1],[-9,10],[-8,6],[-4,5],[-1,7],[2,5],[5,2],[10,-1],[1,0],[2,0],[1,-1],[1,-3]],[[57225,74257],[0,-12],[-6,-6],[-6,-3],[-19,-5],[-12,-9],[-25,-6],[-6,0],[-7,4],[-3,3],[-1,4],[-12,6],[0,4],[6,16],[10,16],[11,12],[19,6],[24,14],[3,1],[3,-1],[2,-2],[2,-5],[2,-4],[4,-1],[0,-4],[-1,-5],[0,-7],[0,-8],[1,-4],[-3,-10],[3,-2],[5,2],[4,6],[2,0]],[[57682,74545],[4,2],[9,-2],[7,-6],[1,-11],[-5,-6],[-11,-2],[-5,-3],[-9,-13],[-6,-4],[-6,4],[-3,0],[-5,4],[-5,7],[1,12],[-2,5],[-1,5],[1,6],[2,4],[2,2],[2,-1],[0,-7],[7,6],[8,4],[7,0],[7,-6]],[[57679,74431],[2,0],[1,-2],[0,-5],[-3,-1],[-4,4],[-5,2],[-5,0],[-4,5],[0,6],[3,5],[2,7],[2,6],[9,-7],[1,-4],[-2,-5],[0,-7],[3,-4]],[[48500,71745],[4,1],[5,-1],[6,-6],[5,-6],[5,-2],[7,6],[-2,-12],[-13,-17],[-1,-9]],[[49181,71392],[7,-24],[2,-7]],[[50397,75695],[-2,-3],[-1,-6],[-1,-6],[3,-2],[0,-3],[-5,-12],[-1,-7],[6,1],[5,-6],[1,-10],[-5,-6],[-2,-1],[-5,-3],[9,-20],[0,-7],[3,-4],[17,-3],[2,0],[3,3],[2,3],[1,4],[2,2],[17,4],[9,6],[3,16],[1,2],[1,0],[1,0],[0,-2],[4,-2],[3,0],[3,3],[3,4]],[[50883,75598],[-1,-8],[-2,-12],[1,-10],[0,-10],[4,-8],[5,-6],[6,2],[6,0],[4,-8],[2,0],[3,4],[3,-1],[7,-7],[-6,-21],[-2,-6],[0,-9],[-3,-4],[-2,-3],[-2,-6],[-5,3],[-10,-3],[-9,6],[-2,5],[-5,-1],[-6,-10],[-3,-13],[-1,-21],[0,-14],[2,-11],[4,-8],[10,-9],[5,-11],[6,-15],[0,-7],[-4,-6],[-1,-8],[2,-9],[1,-12],[1,-4],[1,-3],[5,-7],[1,-5],[-1,-11],[-7,-19],[-3,-15],[-5,-8],[-7,-18],[-10,1],[-10,-12],[-3,-16],[-8,-8],[-25,-31],[-5,-13],[-9,-3],[-6,-3],[-8,-3],[-3,-1],[-1,-1],[-4,-7],[-1,-2],[-1,-5],[-3,-1],[-3,1],[-4,-14],[-35,-24],[-56,-42],[-6,-9],[-16,-18],[-21,-14],[-8,-10],[-7,-16],[-14,-38],[-8,-18],[-9,-14],[-19,-17],[-11,-5],[-19,-3],[-19,-8],[-6,-6],[-3,-1],[-9,1],[-54,-27],[-24,-3],[-70,-42],[-19,-7],[-2,-2],[-5,-15],[-1,-4],[-2,-3],[-3,-3],[-6,7],[-2,1],[-13,-1],[-11,-3],[-11,-8],[-7,-7],[-32,-50],[-15,-33],[-30,-50],[-5,-17],[7,-7],[8,-5],[3,0],[2,3],[-1,4],[-4,5],[5,-1],[3,-3],[3,-5],[7,-14],[7,-9],[4,0],[5,-3],[0,-12],[-4,-12],[-3,-7],[-18,-8],[-7,-11],[-14,-35],[-8,-11],[-9,-5],[-8,-2],[-7,17],[13,3],[7,-7],[9,9],[10,26],[-6,1],[-8,-1],[-23,-12],[-5,-6],[-5,-8],[-4,-11],[-9,-34],[-4,-18],[-5,-11],[-5,-9],[-4,-10],[-2,-15],[-7,-12],[-19,-61],[-3,-6],[-8,-10],[-3,-7],[-10,-22],[-16,-22],[-17,-55],[-8,-13],[-14,-15],[-7,-17],[-12,-42],[-7,-18],[-18,-32],[-29,-78],[-1,-6],[-1,-15],[-2,-10],[-3,-7],[-6,-12],[-4,-9],[-3,-10],[-2,-10],[-2,-8],[-8,-21],[-3,-10],[-2,-21],[1,-30],[1,-25],[6,-39],[17,-63],[3,-10],[4,-10],[-4,-4],[-4,-5],[2,-11],[3,-22],[4,-19],[7,-22],[8,-24],[10,-30],[4,-9],[10,-13],[11,-18],[6,-8],[7,-3],[13,-2],[13,-7],[12,-11],[9,-16],[-1,-1],[-3,-4],[3,-2],[2,-4],[8,-10],[3,1],[2,-7],[0,-10],[-2,-4],[-5,-1],[-5,-2],[-4,-3],[-4,-7],[-4,-12],[0,-2],[-1,-2],[-6,0],[-2,-2],[-3,-6],[-3,-3],[-3,-4],[-3,-9],[2,-8],[-6,2],[-4,-2],[-3,-3],[-5,-1],[-9,0],[-3,-3],[-4,-5],[-4,-10],[0,-8],[1,-8],[-2,-9],[-4,-7],[-5,-3],[-11,0],[-13,-5],[-7,-4],[-8,-11],[-27,-19],[-4,-5],[-2,-7],[-2,-2],[-10,-19],[-3,-9],[-1,-12],[0,-6],[-1,-2],[-9,-1],[-4,-2],[-3,-5],[-1,-9],[-10,1],[-3,-23],[4,-54],[-3,-7],[-5,-2],[-10,1],[-6,-3],[-5,-7],[-4,-9],[-3,-10],[-1,-8],[-2,-9],[-1,-25],[-1,-40],[0,-10],[-3,-6],[-7,-5],[-5,-9],[-3,-8],[-11,-47],[-1,-10],[1,-24],[-1,-6],[-7,16],[-7,-31],[-4,-5],[-6,-4],[-2,-8],[1,-11],[9,-28],[3,-5],[8,-10],[7,-6],[5,-1],[3,7],[5,-5],[2,-7],[-1,-6],[-4,-6],[-3,-4],[-2,-2],[-3,0],[-2,2],[-3,-2],[-7,-5],[-5,-2],[-8,-7],[-10,0],[-4,-1],[-4,-3],[-6,-8],[-3,3],[-11,9],[-9,3],[-18,1],[-5,-1],[-4,-3],[-3,-5],[-2,-5],[1,-6],[3,-10],[-8,3],[-9,4],[-1,6],[-2,6],[-6,1],[-8,6],[-4,2],[-4,-8],[-1,-5],[-8,0],[-9,2],[-8,-7],[-5,-5],[-12,-20],[-5,-5],[-5,-2],[-2,-2],[-2,-2],[-2,-4],[-1,-3],[-1,-2],[-3,-20],[0,-4],[-2,-3],[-2,1],[-1,2],[-2,0],[-3,-3],[-5,-8],[-3,-1],[-4,-2],[-14,-10],[-7,-7],[-1,-7],[-2,-4],[-5,1],[-2,-5],[-2,-11],[-3,-12],[-9,-20],[-16,-28],[-7,-17],[-5,-24],[-2,-20],[-3,-17],[-2,-16],[-8,-36],[-6,-17],[0,-7],[1,-5],[1,-5],[0,-5],[0,-5],[-2,-3],[-2,-2],[-6,-1],[-2,-1],[-3,-6],[-10,-11],[-4,-8],[-3,-25],[-3,-7],[-4,-5],[-5,-9],[-1,-4],[-1,-12],[-2,-4],[-2,-3],[-3,-2],[-3,-1],[-3,-12],[-4,-6],[-6,-3],[-5,-2],[-11,6],[-7,14],[-7,16],[-8,13],[-9,11],[-6,3],[-7,2],[-5,-2],[-9,-8],[-5,-2],[-3,1],[-7,6],[-4,1],[-22,-7],[-4,-4],[-6,-23],[-5,-26],[-8,-13],[-1,-2],[-3,-5],[-7,-5],[-10,-3],[-5,3],[-5,-4],[-8,9],[-5,7],[-5,4],[-3,-1],[-2,-6],[-3,-1],[-3,3],[-7,17],[-8,10],[-5,1],[-15,-9],[-25,7],[-22,-3],[-20,6],[-28,-5],[-4,-5],[-4,-7],[-6,-7],[-10,-11],[-17,1],[-11,14],[-6,-1],[-4,-4],[-10,9],[-4,9],[-8,-1],[-10,-1],[-4,-6],[-14,-3],[-20,11],[-10,6],[-14,-5],[-20,-10],[-26,12],[-7,-2],[-8,-11],[-24,-6],[-8,-2],[-50,7],[-4,-2],[-4,-6],[-8,-23],[-1,-5],[-4,-7],[-3,-9],[-1,-9],[-8,-24],[-18,-4],[-7,-25],[-10,-11],[-3,-3],[-6,-4],[-11,-5],[-12,1],[-32,7],[-6,0],[-3,-1],[-3,-4],[-20,-24],[-19,-3],[-13,-14],[-3,-2],[-10,-2],[-5,-2],[-3,-4],[-4,-8],[-7,-24],[-1,-5],[-4,-22],[-3,-9],[-1,-2],[-2,-4],[-3,-2],[-4,-3],[0,-5],[1,-5],[-3,-8],[-9,-29],[-1,-6],[-1,-28]],[[48517,71873],[-6,0]],[[48511,71873],[-2,13],[-5,5],[-6,5],[-6,0],[0,-6],[-3,-5],[-1,-7],[0,-9],[2,-8],[-2,-4],[1,-9],[2,-6],[1,-5],[-1,-6],[-2,-4],[-2,-4],[-6,-4],[-28,-17],[-4,-4],[-8,-5],[-5,18],[-12,12],[-5,6],[-6,-4],[-6,3],[-6,6],[-11,6],[-5,7],[-6,15],[-18,30],[-5,6],[-6,0],[-13,-4],[-14,8],[-8,16],[-5,20],[-6,18],[-15,14],[-2,8],[-1,10],[-2,11],[-2,10],[-10,19],[-6,26],[-5,18],[-6,20],[-6,9],[-2,5],[3,2],[2,0],[9,-14],[3,-6],[-2,-5],[2,-5],[5,-9],[3,2],[2,3],[3,8],[6,12],[-2,0],[-6,-3],[-4,1],[-3,9],[2,18],[-2,11],[-14,22],[-3,3],[-19,2],[-5,2],[-4,8],[-3,23],[-3,12],[-4,11],[-2,11],[1,10],[6,10],[5,4],[10,7],[4,5],[3,14],[-3,25],[2,14],[9,14],[23,-3],[8,17],[-6,-6],[-7,-5],[-7,0],[-5,8],[-12,-8],[-5,-7],[-2,-12],[2,-36],[-2,-7],[-10,0],[-8,18],[-9,39],[-6,18],[-8,15],[-68,84],[-7,6],[-7,3],[-5,4],[-11,16],[-6,5],[-5,4],[-5,14],[-2,15],[2,7],[3,5],[10,25],[3,10],[-14,-27],[-8,-9],[-9,0],[0,-4],[7,-16],[2,-10],[1,-6],[-4,-1],[-24,20],[-9,5],[-11,6],[-7,-5],[8,-2],[3,-3],[-67,-3],[-4,-3],[-6,-9],[-5,-1],[-5,3],[-4,5]],[[47940,72496],[-4,26],[-2,13],[2,9],[-2,20],[-3,47],[-4,18],[0,7],[-1,13],[-1,14],[-2,11],[-2,4],[-4,7],[-3,3],[-2,6],[0,1],[-1,4],[0,4],[-1,8],[-1,0],[-1,0],[0,6],[1,3],[3,6],[0,3],[1,2],[0,3],[-1,4],[3,3],[7,13],[2,5],[2,9],[2,28],[4,18],[5,12],[25,36],[8,23],[3,21],[6,27],[1,11],[0,6],[-1,5],[0,5],[2,4],[9,3],[3,3],[4,0],[3,-2],[4,-1],[3,3],[4,2],[2,2],[3,7],[2,12],[3,5],[5,-1],[15,-11],[7,1],[3,15],[2,7],[3,18],[5,18],[4,20],[2,8],[3,17],[-1,1],[-4,5],[-8,-1],[-7,-4],[-1,0],[-1,1],[-4,-8],[-6,-5],[-7,-2],[-5,0],[-3,6],[-3,4],[-11,48],[-2,3],[-5,6],[-1,3],[-2,4],[-1,7],[-2,4],[-29,63],[-8,10],[-4,3],[4,7],[3,7],[0,7],[-3,7],[3,7],[5,30],[11,28],[2,9],[-1,4],[-2,2],[-1,2],[-2,4],[0,4],[0,6],[0,14],[2,20],[1,4],[2,8],[1,3],[12,17],[4,5],[5,3],[4,6],[4,8],[1,5],[3,4],[13,5],[4,3],[4,6],[3,5],[2,2],[0,9],[2,9],[-4,12],[6,8],[6,14],[9,30],[3,6],[1,6],[0,6],[-3,4],[2,10],[-2,12],[-4,10],[-4,7],[-7,8],[-7,3],[-7,-1],[-7,-7],[-3,-2],[-5,1],[-4,3],[-2,5],[-1,5],[3,12],[1,6],[-4,11],[-6,5],[-8,4],[-7,6],[-4,9],[-2,12],[1,12],[3,11],[-13,28],[-6,7],[-2,7],[-1,13],[0,13],[1,8],[3,9],[1,13],[0,13],[-2,6],[-12,5],[-6,5],[-4,5],[-3,13],[-2,5],[-9,9],[-5,7],[-8,18],[-5,8],[-9,41],[-2,8],[-1,2],[60,-5],[4,2],[5,3],[5,2],[11,-1],[5,3],[6,-7],[8,0],[41,8],[4,3],[3,13],[0,4],[-1,4],[0,6],[2,5],[3,10],[1,6],[0,4],[-2,6],[0,6],[2,8],[2,3],[7,5],[2,2],[7,17],[1,6],[0,10],[1,5],[0,3],[-1,6],[0,4],[1,2],[2,4],[1,2],[2,15],[1,5],[-1,6],[2,7],[4,13],[-11,33],[-6,12],[-4,10],[-3,5],[-3,1],[-7,2],[-3,2],[-4,8],[-2,20],[-2,9],[2,7],[3,13],[3,6],[5,3],[12,13],[3,1],[2,1],[5,-1],[6,1],[5,5],[1,4],[0,5],[0,5],[1,4],[2,3],[12,15],[2,4],[5,14],[-9,15],[-7,17],[-1,19],[5,21],[6,15],[1,7],[-1,10],[-3,8],[-3,6],[-3,6],[0,10],[1,9],[7,19],[2,11],[0,7],[-1,10],[-2,20],[-4,19],[0,9],[0,11],[0,6],[1,3],[0,4],[-1,6],[0,4],[0,15],[5,2],[1,8],[-1,8],[-3,3],[-4,2],[-3,5],[-2,12],[-6,24],[-4,11],[-9,15],[-2,6],[-1,8],[3,8],[1,11],[6,5],[17,-3],[8,2],[3,6],[11,26],[3,11],[-1,14],[1,5],[4,7],[9,14],[2,4],[2,9],[10,24],[3,6],[5,1],[18,1],[3,3],[16,11],[9,11],[9,15],[9,23],[1,1],[3,-2],[2,1],[0,3],[1,5],[-1,3],[0,1],[3,4],[4,3],[9,1],[0,5],[10,27],[0,4],[0,4],[-1,5],[2,6],[7,12],[14,31],[-3,6],[-4,9],[-12,20],[-12,12],[-14,8],[-22,8],[-4,0],[-2,-3],[-2,-3],[-4,-4],[-4,-4],[-3,-1],[-8,5],[-3,9],[-2,12],[-1,11],[-1,5],[-2,5],[-1,6],[2,5],[2,5],[1,6],[7,48],[3,11],[-7,4],[-5,1],[-2,4],[2,26],[-1,10],[-4,7],[-6,4],[-4,-12],[-10,-5],[-19,-1],[-9,4],[-10,25],[-8,2],[-2,-18],[-7,-6],[-17,-2],[-8,2],[-6,9],[-4,3],[-3,2],[-6,-8],[-10,-7],[-9,7],[-8,11],[-9,9],[-4,-1],[-5,-4],[-4,-5],[-2,-4],[-1,-8],[2,-19],[-1,-10],[-3,-7],[-3,-6],[-9,-9],[-19,-11],[-6,-1],[-10,0],[-4,-1],[-4,-4],[-6,-12],[-4,-5],[-1,9],[-3,10],[-3,8],[-4,3],[-3,0],[-4,5],[-2,0],[-2,-3],[-1,-4],[0,-4],[-2,-4],[-4,-5],[-5,-3],[-6,-1],[-5,0],[-5,4],[0,6],[4,19],[-15,1],[-4,3],[-8,9],[-4,2],[-8,-6],[-18,-7],[-7,1],[-3,-2],[-1,-3],[-1,-4],[-2,-3],[-9,0],[-2,17],[-1,16],[-5,-4],[-1,-7],[-2,-9],[-2,-8],[-6,0],[-4,1],[-4,-3],[-3,-6],[-3,-7],[-9,-15],[-1,0],[-12,-6],[-24,3],[1,1],[1,14],[-1,8],[-2,4],[-10,7],[-3,10],[0,11],[3,11],[11,25],[8,13],[8,8],[4,6],[3,8],[1,10],[-2,9],[-5,6],[-5,4],[-6,-1],[-5,-4],[-4,-2],[-3,5],[-1,9],[1,26],[-3,9],[-2,6],[-9,-10],[-5,-3],[-5,0],[-2,-1],[-2,-3],[-7,-10],[-5,-4],[-43,-11],[-5,-3],[-10,-11],[-5,-3],[-10,-1],[-5,-1],[-5,-6],[-2,-6],[-3,-12],[-2,-6],[-6,-6],[-7,-4],[-6,-5],[-3,-4]],[[47569,75324],[-3,-9],[-5,-10],[-5,-6],[-5,-3],[-5,-4],[-4,-9],[-5,-6],[-4,2],[0,9],[-5,115],[1,10],[3,4],[11,1],[5,2],[2,5],[-2,5],[-5,4],[-1,4],[1,2],[8,6],[0,3],[1,5],[1,6],[3,2],[2,2],[5,10],[14,18],[4,3],[1,1],[9,13],[5,3],[6,6],[2,3],[1,5],[0,19],[-1,3],[-1,1],[-2,-1],[-4,-7],[-3,-11],[-4,-10],[-7,-5],[-6,-2],[-15,-11],[-3,-5],[-3,-1],[-14,1],[-6,-2],[1,7],[3,13],[0,8],[2,0],[4,-9],[2,4],[0,20],[-1,4],[0,3],[1,1],[4,2],[9,-4],[2,2],[2,7],[10,20],[5,7],[9,9],[4,7],[2,8],[-2,-2],[-3,0],[-2,2],[-3,0],[-1,-1],[0,-1],[-6,-6],[-7,-9],[-4,-3],[-6,-3],[-9,-1],[-9,2],[-7,6],[-2,7],[-1,11],[-2,7],[-4,3],[-10,2],[-2,3],[3,5],[5,5],[5,4],[5,2],[3,-2],[2,-5],[0,-6],[-4,-3],[3,-3],[4,-2],[4,-2],[3,2],[1,6],[-1,7],[0,7],[4,4],[-4,21],[0,10],[1,9],[2,7],[4,5],[3,1],[4,8],[10,36],[2,13],[-1,0],[-2,-9],[-3,-9],[-4,-7],[-5,-3],[-5,3],[-3,8],[-3,9],[-4,5],[-4,-13],[-1,-7],[3,-5],[-6,-14],[-3,-3],[-4,5],[1,6],[-4,-3],[-9,-11],[4,-8],[-3,-4],[-10,-4],[-1,-3],[-2,-14],[-2,-1],[-3,-4],[-4,-7],[-4,7],[0,11],[-2,10],[-6,4],[-4,7],[1,14],[4,15],[4,9],[0,7],[0,9],[2,12],[3,7],[2,4],[2,4],[3,2],[1,1],[8,8],[7,15],[4,6],[7,3],[2,4],[1,9],[0,10],[-6,5],[-1,-14],[-5,-8],[-6,-4],[-7,-2],[-14,3],[-6,-2],[1,-10],[-7,-10],[-3,-3],[-5,1],[-4,5],[-2,8],[-1,9],[-3,11],[3,0],[3,2],[2,4],[2,6],[-3,7],[-3,4],[-6,3],[0,5],[-1,8],[-1,3],[1,3],[2,4],[1,4],[0,5],[0,4],[-2,2],[-5,1],[-2,3],[-4,10],[-4,3],[0,-4],[2,-6],[-2,-4],[-2,-1],[-2,1],[-1,8],[-3,0],[-3,-3],[-2,-3],[-2,-5],[-3,-12],[-2,-5],[-1,1],[-3,14],[-3,3],[0,4],[2,5],[6,25],[0,4],[1,5],[1,4],[1,4],[1,5],[-2,4],[-4,4],[-2,14],[2,4],[4,0],[2,5],[1,11],[4,5],[3,4],[1,7],[4,-6],[4,-2],[3,2],[4,6],[2,3],[1,3],[1,3],[2,3],[3,2],[2,1],[5,0],[0,5],[-5,-4],[-6,-2],[-5,1],[0,5],[-8,-7],[-4,1],[-3,10],[13,20],[9,7],[11,-7],[4,0],[5,2],[4,2],[3,5],[4,3],[3,8],[1,9],[2,0],[5,-7],[8,1],[7,4],[5,6],[-6,-1],[-3,4],[-4,13],[-1,0],[-4,3],[-2,4],[2,1],[3,1],[11,7],[12,13],[8,3],[2,5],[3,3],[3,1],[3,-3],[9,-14],[5,-3],[5,-2],[11,-5],[5,-1],[7,4],[10,9],[11,5],[9,-7],[15,11],[2,4],[1,5],[2,5],[3,3],[6,2],[1,2],[1,3],[1,2],[15,6],[1,-7],[3,-6],[6,-9],[4,7],[1,5],[-1,14],[2,8],[6,-1],[8,-8],[4,-3],[2,-5],[1,-7],[2,-6],[6,-10],[3,-6],[2,-9],[2,10],[0,9],[-2,18],[0,9],[1,6],[3,4],[6,5],[-6,5],[-5,1],[-9,-2],[-5,3],[-7,11],[-4,3],[5,6],[28,6],[2,1],[2,3],[1,4],[-1,4],[-1,1],[-6,-5],[-17,-4],[1,2],[1,1],[2,1],[-1,2],[-3,2],[-3,-7],[-6,-4],[-12,-1],[2,9],[1,13],[1,9],[4,-3],[3,9],[-2,3],[-2,4],[-2,6],[0,7],[2,0],[4,-2],[2,2],[7,-2],[8,7],[40,48],[1,-7],[3,-3],[3,-1],[3,3],[-3,-1],[-1,1],[0,3],[1,1],[2,2],[1,2],[-5,6],[-1,7],[1,6],[1,7],[2,5],[4,2],[9,-1],[9,4],[7,7],[7,10],[6,12],[7,-2],[4,-9],[2,-10],[4,-8],[0,-4],[-2,2],[-2,1],[-2,1],[-2,-5],[-1,-5],[0,-5],[1,-5],[-3,-3],[-3,3],[-1,-3],[-1,0],[-1,-1],[0,-4],[14,-1],[2,4],[-5,13],[3,3],[4,1],[7,-4],[-1,2],[-1,4],[0,2],[4,7],[5,7],[5,5],[11,4],[6,6],[5,9],[2,9],[1,2],[2,-2],[2,-4],[0,-7],[-1,-3],[-6,-12],[0,-9],[1,-2],[2,0],[3,2],[0,2],[0,3],[0,2],[2,2],[2,0],[5,4],[1,-8],[7,-21],[-1,-9],[2,1],[4,8],[2,8],[4,-2],[2,3],[3,5],[4,2],[11,-2],[3,-2],[23,-20],[11,-6],[18,-49],[13,-10],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[0,-5],[3,-2],[3,1],[2,3],[3,3],[4,0],[6,-3],[10,-3],[17,1],[5,5],[5,-5],[5,-1],[3,-4],[0,-11],[-1,-7],[-3,-7],[-2,-8],[3,-10],[1,0],[2,9],[1,10],[1,8],[4,5],[3,14],[16,5],[27,2],[4,-2],[17,2],[11,-6],[7,-1],[16,13],[14,-2],[14,-8],[10,-9],[3,3],[3,2],[7,0],[0,2],[-1,7],[0,3],[3,-2],[7,-5],[4,-2],[14,5],[14,0],[5,1],[7,5],[6,3],[2,3],[2,3],[4,1],[9,-10],[3,-2],[22,-4],[4,4],[5,-4],[4,3],[4,5],[4,3],[33,0],[1,6],[-2,4],[-1,5],[3,6],[0,2],[-1,4],[0,2],[9,0],[3,3],[1,7],[2,6],[4,-1],[9,-7],[6,-8],[16,-28],[5,-12],[2,0],[1,8],[2,-2],[3,-11],[15,-3],[56,3],[8,-3],[1,-9],[-3,-9],[-5,-7],[2,-4],[2,3],[6,3],[3,2],[2,4],[1,4],[2,3],[4,1],[11,-2],[5,-2],[20,-21],[9,-5],[24,-2],[7,-3],[3,-8],[3,4],[20,-9],[2,1],[4,5],[3,1],[3,-1],[6,-5],[20,-7],[23,-16],[5,-3],[62,-9],[1,0],[8,-11],[5,9],[8,2],[8,-3],[5,-8],[2,0],[3,8],[3,2],[13,-3],[34,6],[8,9],[17,9],[7,1],[12,0],[2,2],[0,3],[1,3],[2,1],[2,-1],[7,-8],[1,3],[1,1],[2,0],[1,0],[-1,2],[-3,3],[0,4],[10,10],[5,4],[4,-2],[4,3],[1,-1],[1,-2],[8,7],[9,3],[8,-2],[8,-8],[-13,-9],[-5,-5],[-3,-7],[3,-5],[1,-2],[1,-1],[-1,0],[-1,-1],[0,-3],[3,0],[3,1],[4,3],[2,3],[4,8],[1,2],[2,-1],[3,-6],[2,-2],[1,3],[0,5],[-2,6],[-2,3],[0,3],[4,-1],[2,0],[2,-2],[0,3],[1,0],[1,0],[-2,5],[3,2],[8,1],[3,3],[3,4],[3,2],[21,11],[7,-1],[0,-10],[4,-1],[4,-4],[3,-5],[3,-2],[19,-5],[1,-3],[1,-3],[1,-3],[-1,-5],[-1,-1],[-2,0],[-2,-1],[-1,2],[-3,3],[-2,1],[-2,-3],[-1,-4],[-2,-3],[-4,-4],[5,-2],[3,-6],[3,-3],[4,11],[3,-7],[4,-1],[8,4],[4,-1],[13,-7],[17,-4],[13,-7],[4,-1],[3,-3],[6,-11],[7,-4],[6,-2],[5,-1],[6,7],[9,-8],[14,-19],[0,4],[-3,15],[-1,7],[-2,4],[0,3],[1,2],[4,2],[3,6],[12,12],[5,2],[0,4],[-2,0],[0,4],[5,4],[6,1],[15,-1],[13,2],[6,4],[4,3],[4,-1],[6,-7],[5,-9],[3,-6],[3,-15],[1,-12],[1,2],[2,11],[0,3],[0,3],[1,3],[1,3],[3,1],[4,-2],[3,-2],[8,-2],[16,-11],[12,-4],[7,-4],[5,-12],[27,-20],[11,-5],[12,-2],[12,2],[9,4],[3,0],[2,-2],[2,-4],[2,-4],[4,-2],[1,1],[1,1],[1,2],[2,0],[1,-1],[1,-3],[0,-3],[2,-1],[8,10],[4,2],[6,1],[19,11],[7,7],[3,2],[4,0],[3,-4],[2,-6],[3,-3],[3,4],[-1,2],[-3,4],[-1,3],[11,8],[10,14],[10,9],[5,-6]],[[45018,66964],[5,-1],[5,-6],[4,-7],[1,-8],[-2,-10],[-11,-33],[0,-3],[0,-4],[0,-4],[-1,-3],[-1,-2],[-2,-1],[-1,-2],[-1,-3],[-1,-3],[-2,-4],[-2,-4],[-1,-5],[0,-14],[-3,-7],[-4,0],[-6,6],[-4,9],[-3,8],[-3,6],[-21,5],[-5,5],[-4,8],[-2,21],[8,7],[11,-2],[12,-6],[4,6],[11,20],[2,5],[0,6],[1,3],[6,5],[10,12]],[[45724,67070],[2,-4],[5,-5],[1,-4],[-1,-9],[-2,-11],[-1,-10],[4,-10],[0,-4],[-3,-3],[-2,-5],[-3,-13],[3,-8],[1,-11],[0,-9],[-5,-4],[-3,-4],[-9,-21],[-4,-7],[-20,-12],[-3,-3],[-1,0],[-7,-16],[-4,-3],[-3,3],[-2,4],[-3,3],[-12,1],[-5,3],[-5,4],[-15,24],[-2,6],[-1,4],[-6,6],[-2,4],[-1,3],[-9,34],[-1,12],[1,12],[-1,7],[0,9],[0,9],[1,7],[3,6],[11,11],[5,7],[6,12],[5,15],[-1,14],[3,6],[1,10],[-1,12],[-1,9],[3,0],[3,0],[3,-1],[2,-3],[4,2],[15,-10],[21,0],[17,-8],[7,4],[-1,20],[8,3],[1,-1],[2,-8],[0,-4],[-3,-2],[-2,-8],[1,-16],[1,-23],[1,-4],[1,-7],[1,-8],[2,-7]],[[45191,67174],[14,7],[13,-8],[12,-14],[15,-21],[3,-13],[2,-14],[-4,-11],[-6,-7],[-8,-15],[-6,-8],[-6,-3],[-7,-4],[-7,3],[-15,17],[-9,27],[0,21],[1,22],[8,21]],[[45436,67140],[-3,-10],[-5,-10],[-18,-34],[-4,-13],[-3,-7],[-9,4],[-15,-11],[-7,-5],[-5,-4],[-4,2],[-3,8],[-1,5],[1,7],[-3,2],[-2,4],[-1,5],[-1,11],[0,4],[-4,9],[-11,20],[-2,10],[-2,13],[-4,9],[-5,9],[-2,7],[-2,27],[-1,5],[-4,12],[-4,13],[-9,18],[-2,12],[6,8],[15,13],[6,-4],[6,-9],[4,-2],[3,1],[8,4],[6,6],[9,5],[7,5],[5,-3],[11,2],[6,1],[5,9],[7,1],[3,3],[6,1],[6,8],[13,22],[5,9],[2,5],[1,9],[1,4],[5,5],[2,3],[5,5],[6,2],[5,4],[2,11],[5,-3],[27,-1],[17,11],[6,-7],[-2,-16],[-9,-12],[-20,-21],[-5,-16],[-6,-11],[-7,-15],[-8,-12],[-5,-4],[-4,-6],[-3,-11],[0,-12],[2,-10],[1,-6],[-1,-6],[-3,-4],[-2,-6],[-2,-13],[-9,-32],[-3,-26],[0,-11]],[[46118,67487],[11,9],[10,2],[9,-6],[8,-17],[3,-20],[1,-26],[-2,-51],[-2,-12],[-4,-23],[-2,-8],[0,-19],[0,-7],[1,-4],[3,-8],[0,-4],[-1,-6],[-5,-9],[-1,-3],[0,-6],[-1,-5],[-1,-6],[-4,-12],[-3,-10],[-3,-20],[-6,-20],[-9,-9],[-30,-9],[-12,-8],[-10,-12],[-11,-5],[-5,-6],[-9,-19],[-8,-19],[-8,-17],[-12,-10],[-7,0],[-11,9],[-5,3],[-19,-2],[-3,2],[1,2],[1,7],[1,7],[0,2],[2,1],[9,-3],[6,1],[10,7],[16,13],[20,25],[8,15],[4,10],[3,10],[2,11],[2,30],[2,10],[6,18],[7,42],[2,7],[3,5],[8,26],[7,29],[11,31],[3,29],[4,18],[1,21],[2,8],[3,6],[4,5]],[[45067,67536],[0,-11],[2,-14],[2,-10],[6,-6],[0,-11],[-8,-18],[-4,-13],[2,-12],[3,-21],[-2,-11],[-2,-16],[-6,-16],[-6,-24],[-5,-20],[-2,-12],[-2,0],[-2,6],[-6,6],[-2,11],[-2,30],[-3,7],[-2,9],[-6,15],[-2,13],[-10,31],[-1,15],[-2,10],[-1,9],[-4,6],[-3,7],[1,18],[8,19],[9,16],[7,9],[6,-7],[7,-1],[7,-4],[11,9],[5,-5],[5,-7],[2,-7]],[[46254,67786],[5,2],[5,-6],[8,-14],[-2,-12],[-1,-10],[-2,-8],[-6,-7],[-1,-9],[1,-8],[1,-8],[1,-11],[-1,-4],[-2,-8],[-1,-5],[0,-5],[0,-10],[0,-5],[-4,-14],[-8,-13],[-9,-10],[-13,-6],[-3,-5],[-2,-6],[-4,-3],[-4,0],[-6,-3],[-5,-1],[-10,-4],[-7,-10],[-6,-16],[-5,-18],[-1,0],[-3,8],[-6,3],[-13,1],[-2,3],[-2,7],[-1,7],[1,3],[3,2],[2,5],[3,9],[1,10],[1,29],[1,8],[10,28],[5,10],[3,6],[5,4],[5,2],[7,1],[5,3],[9,15],[6,6],[5,3],[4,1],[14,0],[4,3],[3,7],[4,14],[3,20],[2,10],[3,9]],[[46253,67812],[3,-10],[-4,-14],[-7,-10],[-7,2],[0,4],[4,9],[3,13],[2,9],[6,-3]],[[49796,72824],[-3,-13],[1,-13],[4,-22],[-6,11],[-1,17],[0,19],[-1,17],[1,1],[1,-2],[0,-1],[0,-1],[1,-3],[2,-6],[1,-4]],[[50423,73375],[11,8],[5,-9],[0,-13],[-7,-3],[-9,0],[-14,15],[-4,4],[-6,-6],[-3,-3],[-4,-11],[-4,-5],[-4,2],[1,12],[-1,5],[0,6],[1,4],[2,5],[0,5],[-2,2],[-1,2],[1,5],[4,6],[2,-3],[2,2],[3,7],[1,9],[1,0],[1,-1],[0,-1],[0,-1],[13,-33],[11,-10]],[[50446,73620],[-2,-5],[2,-12],[4,-20],[-4,0],[-4,-5],[-2,-8],[-1,-9],[-2,-3],[-9,-11],[-9,-22],[-4,-5],[-7,-7],[-3,-6],[-1,2],[-2,3],[-1,3],[-5,-10],[-4,-4],[-2,-20],[-1,-14],[-9,-1],[-2,12],[-5,7],[-4,-3],[-2,0],[-1,1],[-3,-1],[-2,7],[-5,3],[-5,-3],[-2,-7],[-8,10],[-4,6],[-1,11],[4,14],[0,9],[-2,7],[2,3],[3,3],[3,1],[3,-3],[3,3],[2,1],[7,0],[-3,25],[1,14],[3,6],[3,2],[5,6],[6,12],[2,0],[3,-4],[5,7],[3,-3],[6,8],[7,6],[8,4],[6,-2],[3,6],[3,2],[4,0],[5,-6],[2,-1],[5,-1],[3,-1],[2,-3],[3,-4]],[[50931,74031],[8,-4],[16,-16],[10,-1],[-2,-6],[0,-5],[1,-4],[1,-5],[-1,-3],[-2,-3],[-1,-3],[2,-8],[-4,-16],[-3,-9],[-4,-3],[-4,-3],[-4,-7],[0,-9],[2,-9],[-12,-18],[-11,-23],[-9,-28],[-3,-33],[-2,3],[-2,1],[-4,-24],[-9,-16],[-25,-26],[-11,-15],[-2,-6],[-1,-2],[-3,-3],[-2,-2],[-1,3],[-8,18],[-2,3],[-4,3],[-2,2],[-1,6],[-1,6],[-1,6],[-2,2],[-2,1],[-5,6],[-2,1],[-3,0],[-5,-3],[-2,-1],[-25,3],[-10,8],[-7,14],[-3,32],[-4,5],[0,9],[5,15],[-3,12],[-8,12],[-10,9],[-7,3],[-6,-3],[-18,-16],[-4,-7],[-3,-16],[-6,-12],[-8,-1],[-5,15],[-1,1],[-1,5],[1,3],[3,3],[-8,12],[-2,-5],[-2,-2],[-2,2],[-2,5],[-7,-7],[-2,-1],[-3,3],[-2,11],[-5,7],[-2,10],[1,12],[1,9],[20,21],[6,2],[5,6],[14,24],[4,3],[5,2],[5,2],[5,7],[9,15],[1,3],[2,7],[0,2],[2,1],[3,-1],[1,0],[7,11],[1,3],[1,2],[6,10],[1,3],[2,1],[9,7],[4,5],[3,5],[3,4],[4,2],[1,1],[2,6],[1,1],[6,-1],[2,1],[9,6],[16,19],[9,3],[15,3],[16,6],[29,20],[3,-8],[2,2],[1,1],[3,-3],[-3,-4],[-9,-7],[-4,-2],[-4,-3],[-4,-7],[-3,-5],[-3,3],[-2,0],[-1,-19],[10,-3],[21,10],[0,-4],[-3,-3],[0,-4],[0,-4],[-1,-5],[-1,-3],[-2,-2],[-4,-3],[-9,-4],[-2,-4],[0,-13],[3,-13],[7,-11],[9,-9],[8,-3],[19,0],[5,3],[8,14],[4,4]],[[51195,74114],[1,-9],[6,-16],[2,-9],[-2,0],[-1,3],[-2,4],[-2,3],[-2,2],[-1,-39],[-14,-3],[-20,15],[-45,49],[-10,6],[-11,1],[-20,-7],[-10,6],[1,7],[0,9],[1,8],[3,5],[-2,3],[-6,3],[-2,4],[-3,7],[0,3],[1,3],[1,7],[3,7],[19,8],[7,-5],[27,5],[11,-1],[3,1],[4,2],[5,7],[3,2],[1,-7],[2,-4],[6,-9],[0,-1],[-1,-5],[0,-4],[2,-2],[2,2],[2,4],[3,6],[-1,9],[2,3],[2,-4],[-1,-8],[1,-4],[8,-8],[2,-5],[1,-2],[3,-5],[1,-1],[4,-2],[2,-1],[3,-7],[3,-10],[-1,-8],[-5,-4],[5,-3],[4,0],[3,-1],[2,-10]],[[50829,73664],[-1,-16],[-6,-13],[-8,1],[-5,20],[7,12],[11,8],[2,-12]],[[48805,71299],[1,0],[-1,0],[0,1],[0,-1]],[[48915,71324],[0,1],[1,0],[-1,-1]],[[48916,71326],[0,0]],[[49323,71307],[2,0],[0,-2],[-1,-2],[-1,1],[0,3]],[[48494,71739],[1,-1],[0,-1],[-1,0],[0,2]],[[79217,58965],[4,0],[14,7],[5,4],[2,5],[4,13],[2,3],[3,-1],[4,-7],[4,0],[2,3],[5,10],[2,4],[3,2],[8,3],[2,3],[2,4],[2,14],[1,6],[2,4],[7,12],[8,25],[4,16],[1,17],[-4,39],[0,19],[2,27],[-1,5],[-3,11],[0,13],[1,14],[2,11],[1,1],[4,2],[2,2],[-1,4],[-2,8],[0,9],[1,3],[1,1],[4,0],[2,1],[2,13],[-5,19],[3,11],[11,15],[3,7],[-8,3],[-3,6],[-8,24],[-1,3],[0,6],[0,3],[-2,1],[-3,-2],[-2,1],[-7,15],[-6,2],[-2,10],[0,13],[1,13],[2,12],[3,8],[11,25],[8,13],[7,10],[2,1],[0,16],[-1,13],[-1,2],[-6,-2],[-5,0],[-6,2],[-4,6],[-1,11],[2,13],[5,7],[13,9],[10,13],[1,2],[4,7],[1,11],[1,25],[1,13],[7,36],[3,31],[-3,28],[-8,23],[-12,17],[-12,8],[-6,2],[-12,-2],[-4,1],[-3,4],[-4,7],[-3,10],[-11,48],[-3,22],[1,21],[6,16],[6,5],[3,3],[2,4],[-1,2],[0,3],[-2,3],[-3,2],[-32,17],[-11,1],[-3,1],[-36,27],[-8,6],[-6,9],[-4,12],[-3,14],[-1,15],[0,27],[-1,13],[-3,11],[-2,4],[-5,6],[-3,3],[-2,3],[-5,12],[-3,4],[-7,9],[-3,4],[-1,6],[-2,6],[-2,18],[-3,11],[-3,10],[-3,9],[-5,8],[-15,17],[-5,9],[-3,10],[-2,12],[0,14],[1,25],[3,25],[4,22],[0,7],[0,6],[-6,49],[0,7],[1,5],[0,2],[2,13],[0,7],[0,7],[-1,7],[-3,12],[-1,6],[-1,20],[-1,35],[1,13],[18,87],[1,13],[1,28],[0,35],[1,29],[0,7],[-1,7],[-7,30],[-1,3],[-2,4],[-5,6],[-2,3],[-2,5],[-4,17],[-5,16],[-4,8],[-13,17],[-5,3],[-43,47],[-8,15],[-9,20],[-1,4],[-2,12],[0,4],[-1,4],[-4,10],[-7,25],[-4,12],[-18,22],[-2,3],[-1,1],[-2,6],[-1,6],[-3,18],[-12,56],[-2,6],[-2,4],[-17,32],[-4,9],[-3,11],[-12,60],[-14,50],[-5,11],[-7,7],[-6,2],[-7,-3],[-5,-8],[-4,-10],[-2,-4],[-1,-3],[-1,-1],[-2,-1],[-4,2],[-3,6],[-2,8],[-3,6],[-4,6],[-4,5],[-5,3],[-5,2],[-16,2],[-3,2],[-16,14],[-3,3],[-2,5],[-4,6],[-16,9],[-7,1],[-7,3],[-3,1],[-4,-1],[-1,-1],[-5,2],[-15,10],[-3,0],[-22,-9],[-7,-6],[-6,-9],[-5,-12],[-3,-15],[0,-4],[1,-2],[0,-2],[1,-3],[2,-2],[12,-17],[2,-5],[-1,-5],[-2,-4],[-4,-3],[-10,-4],[-6,-4],[-8,-3],[-3,-2],[-2,-3],[-3,-7],[-2,-9],[-1,-20],[-2,-13],[-3,-9],[-5,-5],[-6,-5],[0,1],[0,1],[1,2],[-1,-1],[-2,-3],[-3,-5],[-1,-8],[-1,-11],[3,-34],[-2,-6],[-2,-4],[-3,-9],[-3,-8],[-5,-4],[-5,3],[-8,11],[-5,3],[-5,-2],[-24,-22],[-4,-5],[-1,-6],[-16,-18],[-11,-19],[-4,-5],[-10,-5],[-4,-5],[-1,-9],[2,-11],[2,-9],[0,-4],[-6,2],[-14,14],[-4,2],[0,6],[5,38],[-4,24],[-9,9],[-24,0],[-10,4],[-9,10],[-7,13],[-6,14],[-8,-2],[-8,9],[-14,25],[-7,18],[-2,2],[-1,2],[-8,13],[-3,10],[-1,10],[-2,8],[-5,6],[-13,1],[-8,1],[-2,-3],[-4,-10],[-42,-91],[-6,-4],[-10,12],[-11,6],[-3,7],[-2,0],[-4,-9],[-3,-11],[-2,-25],[-7,-39],[-1,-11],[-26,-11],[-4,-6],[-2,-11],[-3,-7],[-7,8],[0,-9],[0,-7],[-2,-7],[-2,-5],[-5,-4],[-3,-2],[6,-11],[-5,-7],[-10,-8],[-5,-12],[-1,-5],[-2,-4],[-1,-5],[0,-1],[-3,11],[0,4],[-1,3],[-1,-1],[-2,-2],[-3,-7],[-4,-1],[-5,1],[-3,-3],[-2,-5],[2,-2],[3,0],[1,-1],[0,-4],[-1,-1],[-5,-13],[-1,-1],[-2,0],[-4,-3],[-31,-51],[-5,-14],[-5,-22],[-2,-5],[-3,-2],[-4,-2],[-3,-3],[-1,-9],[-4,-14],[-2,-3],[-2,-3],[-1,-1],[-2,2],[-8,7],[-8,10],[-5,2],[-3,10],[-5,8],[-5,7],[-5,6],[-13,4],[-9,4],[-5,7],[0,13],[4,13],[9,22],[6,27],[1,4],[1,11],[-1,12],[0,6],[0,5],[2,4],[3,3],[0,1],[0,1],[0,1],[0,2],[-2,4],[-1,4],[1,3],[2,4],[5,5],[2,7],[-1,20],[1,12],[2,6],[9,10],[7,13],[5,15],[3,15],[5,16],[4,6],[9,11],[2,8],[-1,8],[-5,23],[-1,11],[1,11],[4,22],[1,9],[-1,5],[-2,3],[-2,3],[-1,3],[-3,12],[-1,4],[0,21],[1,6],[1,4],[5,11],[1,4],[-3,8],[-17,16],[-3,5],[-6,12],[-4,11],[-2,10],[2,12],[8,17],[2,11],[0,6],[1,3],[18,20],[4,7],[1,7],[0,13],[0,6],[2,4],[5,3],[3,3],[7,15],[4,9],[1,9],[-1,10],[-7,13],[-1,11],[1,10],[4,19],[1,10],[-1,35],[0,12],[2,10],[7,16],[3,9],[3,19],[2,9],[11,23],[-2,17],[-7,18],[-12,21],[-4,8],[-2,9],[0,14],[1,34],[-6,50],[0,4],[0,3],[0,3],[-1,5],[-1,2],[-5,2],[-2,3],[-1,18],[1,24],[4,21],[7,8],[6,3],[4,14],[1,16],[0,15],[-1,8],[-2,5],[-2,5],[-4,4],[-4,3],[-3,-2],[-3,-3],[-3,-4],[-7,-4],[-8,-2],[-8,2],[-7,6],[-12,15],[-7,4],[-7,2],[-25,-1],[-2,1],[-1,0],[-3,-4],[-1,-2],[-3,-12],[-11,-28],[-13,-24],[-3,-8],[-2,2],[-2,6],[-2,6],[-4,4],[-23,18],[-7,-1],[-6,-9],[-3,-10],[-3,-8],[-4,0],[-8,4],[-8,7],[-5,7],[-4,7],[-1,9],[0,9],[0,10],[-3,8],[-5,14],[-3,7],[-1,11],[-1,19],[-1,9],[-2,7],[-3,8],[-1,4],[-2,8],[2,11],[6,18],[4,10],[3,16],[2,5],[2,3],[5,5],[3,3],[2,9],[2,10],[1,20],[7,38],[7,42],[2,24],[-1,31],[0,5],[-1,0],[-2,-8],[-2,-2],[-5,3],[-4,6],[-2,5],[-1,3],[-5,4],[-2,3],[-1,3],[-1,8],[-2,5],[-7,19],[-16,70],[-5,13],[-11,6],[-10,-5],[-8,-11],[-6,-14],[-3,-22],[0,-1],[-2,0],[-6,-5],[-1,-1],[-3,-5],[1,-23],[-5,-8],[-5,0],[-5,5],[-3,9],[-2,12],[1,20]],[[77805,62502],[-1,10],[0,8],[1,8],[3,8],[3,8],[1,11],[0,12],[3,19],[3,53],[3,20],[4,16],[0,7],[2,10],[6,18],[2,7],[1,10],[3,7],[7,13],[7,18],[5,8],[11,6],[3,8],[3,10],[3,7],[6,3],[24,-8],[12,-7],[6,0],[9,6],[8,10],[3,3],[5,8],[7,14],[0,4],[-8,3],[-25,-8],[-5,7],[1,12],[2,24],[1,12],[1,3],[5,7],[2,4],[-1,5],[-3,16],[5,5],[13,5],[5,6],[3,9],[14,54],[9,71],[1,8],[0,6],[0,5],[4,2],[3,-1],[2,-1],[2,-2],[3,-3],[5,-4],[6,2],[10,9],[4,5],[9,19],[4,2],[26,28],[39,63],[3,4],[2,9],[-1,10]],[[62920,73496],[-5,3],[-29,21],[-4,1],[-3,0],[-6,-4],[-11,-1],[-4,-1],[-5,-4],[-15,-18],[-5,-4],[-18,-4]],[[52405,82980],[2,10],[-2,4],[4,17],[-2,15],[-5,14],[-2,15],[1,19],[3,16],[4,15],[3,15],[-29,7],[-4,-1],[-1,-5],[0,-22],[-2,-3],[-3,-1],[-3,-5],[-4,-7],[-5,-3],[-4,2],[-4,6],[-3,15],[1,14],[1,14],[1,16],[6,11],[11,2],[12,-4],[6,-7],[-4,-2],[-3,-3],[-5,-7],[1,-7],[16,-3],[16,-4],[5,2],[0,12],[-6,20],[-3,25],[-2,25],[0,7],[3,9],[0,5],[0,7],[-3,15],[-3,27],[-2,12],[-4,12],[-7,7],[-10,3],[-18,0],[-14,5],[-11,13],[-25,46],[0,4],[6,1],[0,4],[-5,3],[-7,0],[-6,-2],[-5,-5],[-3,-8],[1,-6],[8,-10],[-2,-1],[-2,-2],[-4,-5],[7,-2],[7,-6],[7,-9],[2,-10],[-3,-2],[-34,34],[-6,5],[-17,3],[-4,6],[0,8],[15,51],[6,23],[3,24],[1,24],[-14,117],[-1,6],[-1,1],[0,3],[0,2],[1,2],[2,-1],[0,-2],[1,-1],[1,-1],[2,-3],[6,-45],[5,-16],[1,-7],[-1,-5],[-2,-8],[-1,-7],[1,-8],[2,-2],[13,9],[13,12],[6,3],[11,10],[11,14],[2,10],[-2,10],[-4,10],[-4,9],[-11,16],[0,19],[-3,21],[-7,14],[-9,8],[-22,12],[-6,1],[-2,-5],[0,-26],[0,-12],[-2,-13],[1,-10],[-1,-4],[-4,2],[-1,3],[-1,6],[-1,7],[-2,43],[1,13],[7,37],[1,14],[-3,205],[1,10],[2,11],[12,51],[6,16],[4,7],[2,-1],[1,-6],[2,-2],[0,-5],[-6,-19],[-2,-5],[0,-4],[2,-2],[1,-1],[5,-1],[1,-2],[2,-6],[1,-6],[2,-2],[12,-3],[3,-2],[-4,-3],[1,-6],[-1,-9],[2,-6],[2,-2],[2,1],[1,4],[-2,5],[0,4],[9,4],[14,0],[12,-3],[5,-7],[3,-1],[14,-13],[4,2],[3,5],[3,7],[2,6],[2,0],[8,-27],[0,-5],[-1,-2],[1,-6],[2,-6],[4,-4],[6,-8],[3,-3],[5,1],[17,4],[1,1],[2,3],[1,4],[0,6],[0,9],[1,5],[1,13],[1,3],[2,1],[1,2],[-2,5],[-8,9],[-3,0],[-2,1],[-2,3],[0,5],[-1,6],[-5,3],[0,6],[4,4],[13,1],[17,36],[5,2],[11,5],[15,0],[1,2],[-7,3],[-12,0],[-3,3],[3,11],[4,9],[3,5],[9,8],[13,15],[5,2],[3,-1],[5,-3],[4,-1],[3,1],[2,3],[1,3],[2,2],[5,0],[6,-3],[6,-4],[2,-8],[2,-14],[4,-8],[4,-6],[4,-6],[3,-13],[-7,-2],[-9,-15],[-7,-3],[0,-4],[2,-5],[-3,-6],[-8,-9],[-3,-8],[0,-8],[1,-19],[2,-5],[5,1],[4,6],[4,19],[4,2],[5,-1],[5,1],[-2,5],[-2,2],[-3,0],[-3,-3],[2,7],[2,4],[2,5],[2,8],[2,0],[-2,-13],[7,-2],[10,2],[6,-1],[4,-3],[4,1],[4,0],[3,-8],[-1,-6],[-6,-11],[-3,-8],[3,-1],[1,-3],[0,-3],[2,-5],[2,-3],[7,-5],[2,-2],[0,-3],[1,-3],[3,0],[4,10],[2,3],[4,-5],[3,5],[0,8],[-6,3],[-9,-6],[0,-1],[-2,-1],[-3,0],[-2,2],[0,3],[1,3],[1,22],[5,19],[2,17],[-6,16],[-2,3],[-2,2],[-5,-1],[-11,-6],[-3,-5],[-6,-5],[-6,0],[-3,8],[4,7],[12,9],[3,10],[2,8],[-1,4],[-7,3],[-3,3],[-2,4],[-2,4],[-1,4],[-2,6],[-1,7],[0,7],[2,2],[6,12],[1,3],[1,3],[0,7],[-1,7],[-2,3],[-3,1],[-3,2],[-4,5],[5,15],[5,12],[6,9],[8,11],[2,1],[2,1],[3,0],[1,2],[2,8],[1,2],[41,16],[9,0],[32,-16],[0,-4],[-3,-3],[0,-4],[2,-3],[4,-2],[3,0],[3,3],[10,19],[5,11],[5,8],[11,5],[9,7],[13,-4],[30,4],[-17,17],[-8,4],[-6,6],[-3,1],[-2,-2],[-10,-15],[-5,-7],[-6,-3],[-5,5],[-5,6],[-5,-2],[-10,-10],[-11,-6],[-24,0],[-64,-27],[-5,-1],[-6,3],[-31,31],[2,-8],[-2,-4],[-9,-5],[-7,-6],[-4,-2],[-4,0],[1,4],[-5,4],[-4,-1],[-5,-5],[-5,-6],[-4,1],[-6,-7],[-5,-7],[-2,-1],[-2,8],[-6,3],[-6,-1],[-5,-4],[4,-5],[-10,-11],[-14,-8],[-10,3],[-6,-2],[-7,-3],[-3,-4],[-1,-12],[-4,-7],[-4,-5],[-4,-7],[-1,-17],[-1,-1],[0,-5],[-1,-3],[-2,-3],[-9,-16],[-6,0],[-3,-2],[-2,-3],[-2,-3],[-4,-2],[-5,-4],[-2,-8],[2,-20],[0,-9],[-4,-6],[0,-3],[11,1],[3,-1],[2,-8],[-2,-5],[-4,-3],[-3,0],[-3,1],[-7,5],[-3,2],[-4,-2],[-5,-5],[-4,-1],[0,-5],[13,5],[4,-2],[6,-5],[3,-2],[19,10],[5,-1],[0,-5],[0,-11],[0,-5],[4,-8],[2,-6],[-5,-8],[-2,-4],[-4,-2],[-4,-1],[-2,-2],[0,-2],[3,-3],[-5,0],[-8,8],[-7,11],[-3,7],[-2,9],[-7,7],[-8,5],[-7,1],[-5,4],[-5,7],[-6,9],[-4,8],[-3,22],[-1,3],[-4,2],[-8,6],[-5,0],[4,-22],[2,-13],[-1,-8],[-4,0],[-2,12],[-1,27],[4,25],[6,18],[50,95],[15,18],[23,43],[8,10],[10,-1],[23,-9],[13,-1],[26,7],[11,6],[13,18],[5,2],[70,-12],[25,4],[25,11],[24,19],[21,27],[59,128],[11,18],[19,25],[10,21],[3,3],[7,11],[14,3],[25,-2],[25,5],[23,12],[20,16],[33,41],[19,15],[7,4],[9,1],[8,-2],[7,-7],[-16,-6],[-14,-16],[-23,-41],[-8,-35],[8,-27],[14,-24],[10,-29],[-8,-26],[0,-31],[6,-61],[-5,-9],[-14,-12],[-7,-10],[-9,-24],[-5,-16],[-3,-25],[-7,-29],[-3,-9],[-3,-4],[-2,-2],[-3,-2],[-13,1],[-4,-2],[-5,-1],[-23,18],[-18,22],[-11,5],[-9,11],[-7,3],[-6,-4],[-8,-15],[-5,-1],[5,-1],[6,9],[5,4],[5,3],[6,-3],[27,-34],[9,-5],[11,-12],[6,-2],[22,-1],[5,-3],[-7,-12],[-2,-4],[-1,-8],[-2,-16],[-1,-5],[2,-9],[3,-31],[1,-23],[2,-13],[7,-25],[2,-4],[3,-4],[1,-3],[-4,-6],[-2,0],[-7,4],[-3,1],[-13,0],[-4,-3],[-5,-5],[-5,5],[-5,5],[-6,1],[-7,-3],[-6,-6],[-3,-1],[-4,-1],[-5,-3],[-8,-8],[-10,-4],[-13,-12],[-39,-6],[0,-4],[13,-3],[42,15],[9,7],[4,1],[1,2],[0,2],[1,3],[2,2],[2,-1],[4,-3],[1,-1],[3,1],[4,2],[3,4],[1,4],[2,8],[4,1],[9,-4],[-1,-2],[-1,-5],[5,-2],[13,-3],[12,1],[7,6],[7,3],[5,-14],[2,-19],[-5,-17],[-19,-17],[-14,-18],[-2,-2],[-2,-19],[-1,-5],[2,-7],[-1,-9],[-3,-7],[-4,-5],[9,0],[3,3],[0,23],[0,16],[3,8],[12,10],[9,15],[5,4],[6,-4],[1,-4],[1,-13],[0,-4],[2,-2],[8,-8],[21,-14],[22,-3],[66,12],[10,-1],[9,-6],[4,-5],[9,-19],[17,-21],[0,-3],[-6,-8],[-4,-14],[-1,-15],[0,-14],[-4,-13],[-25,-44],[-13,-10],[-5,-9],[-1,-7],[0,-19],[-4,-18],[-8,-2],[-10,9],[-6,13],[7,2],[3,3],[1,7],[-1,8],[-3,3],[-3,0],[-3,4],[-7,2],[-7,-9],[-6,-13],[-9,-13],[2,-14],[3,-15],[2,-10],[-3,-4],[-5,-2],[-4,-1],[-4,2],[-3,4],[-2,12],[-2,6],[2,2],[5,4],[2,2],[-2,6],[-2,3],[-12,5],[-2,-1],[-6,-5],[-8,-2],[-5,5],[-4,8],[-6,9],[6,1],[9,9],[5,2],[4,-3],[5,-6],[5,-2],[4,8],[-5,9],[0,8],[8,19],[-3,0],[-4,2],[-4,4],[-3,4],[-3,3],[-7,-4],[-4,3],[-1,-8],[-1,-5],[-3,-2],[-4,-1],[-2,-3],[-7,-19],[-7,-11],[-15,-15],[-7,-11],[-4,-14],[2,-8],[5,-9],[4,-12],[2,-15],[-1,-11],[-4,-10],[-5,-12],[7,4],[5,0],[1,-4],[-7,-18],[0,-8],[0,-15],[0,-10],[-1,-5],[-1,-5],[-6,-10],[-1,-5],[-2,0],[-3,-2],[-3,-4],[-2,-3],[2,-2],[2,-5],[1,-7],[-3,-4],[-1,-3],[-1,-3],[-3,-1],[-3,1],[-3,3],[-4,8],[-1,4],[-1,4],[-1,5],[-3,4],[-3,1],[-27,-1],[-4,-2],[-2,-3],[-2,-5],[-2,-3],[-7,-3],[-15,1],[-7,-2],[7,-9],[40,-11],[3,-2],[-1,-7],[-5,-12],[-2,-10],[1,-5],[4,-1],[7,0],[0,-4],[-12,-7],[-3,-7],[3,-10],[-1,-1],[-2,-3],[-7,5],[-30,-11],[-14,-9],[-8,-1],[-17,8],[-10,10],[-3,2],[-29,0],[-6,4],[-1,-2],[0,-2],[-1,-2],[0,-2],[6,-4],[20,0],[3,-3],[15,-18],[3,-7],[2,-6],[3,-5],[5,-1],[27,0],[-5,-7],[-14,-14],[-8,-12],[-4,-3],[-6,-1],[-3,-3],[0,-5],[0,-6],[-1,-2],[-18,-6],[-6,-5],[-4,-1],[-3,0],[-6,4],[-4,0],[1,-3],[1,-1],[-4,-7],[-10,-4],[-5,-6],[5,-3],[5,0],[14,4],[2,2],[3,1],[16,-10],[1,-7],[-1,-8],[-3,-7],[-4,-3],[-9,-3],[-5,-2],[2,-7],[3,-9],[1,-5],[0,-6],[-2,-5],[0,-5],[6,-4],[3,-4],[4,-6],[1,-5],[-4,-5],[0,-4],[3,-4],[10,-22],[3,-2],[4,-4],[1,-9],[-1,-7],[-2,-4],[-2,-6],[-1,-9],[-1,-5],[-4,-3],[-4,-1],[-4,-1],[-16,4],[-4,-2],[-3,-3],[-1,-4],[-3,-3],[-7,-6],[-4,-2],[-3,0],[-2,-3],[0,-5],[2,-5],[5,0],[0,-4],[-9,1],[-3,-1],[-4,-4],[3,-3],[4,-1],[8,0],[3,-2],[4,-5],[7,-13],[-7,-12],[-5,-5],[-5,-4],[-13,-3],[-5,-4],[2,-9],[4,0],[16,8],[7,-1],[2,1],[2,2],[2,3],[2,2],[4,1],[6,-3],[11,-15],[6,-6],[15,-5],[4,-3],[2,-9],[6,-45],[0,-2],[0,-2],[-3,-3],[-4,0],[-4,3],[-3,0],[-2,-7],[3,-1],[4,-3],[2,-3],[2,-5],[1,-5],[1,-7],[-1,-6],[-4,-2],[-4,2],[-4,11],[-2,3],[-12,-1],[-3,1],[-5,4],[0,2],[2,2],[1,4],[-5,9],[-2,5],[2,3],[7,3],[-1,7],[-7,5],[-8,-3],[-1,-4],[-4,-12],[-3,-6],[-2,-5],[-1,-2],[-2,-1],[-4,1],[-2,-2],[-5,-7],[-12,-12],[-4,-7],[-1,-13]],[[53290,82883],[-3,-5],[-3,-1],[-3,-2],[-2,-6],[11,-6],[-1,-13],[-9,-13],[-12,-5],[-43,12],[-14,-4],[-14,-8],[-10,-12],[-6,1],[-26,19],[-17,19],[-31,24],[-14,4],[-14,8],[-15,5],[-6,6],[-3,9],[2,10],[7,5],[8,-1],[8,0],[5,13],[-4,2],[-4,3],[-15,23],[-2,4],[0,10],[4,10],[12,17],[4,-3],[39,11],[7,-4],[13,-14],[5,-2],[5,-5],[8,-23],[7,-5],[7,-2],[49,-34],[-2,10],[-4,6],[0,5],[6,7],[8,0],[7,4],[2,0],[-2,7],[-1,7],[1,8],[0,6],[22,-24],[1,-8],[7,-11],[4,-4],[5,-1],[-3,-4],[-1,0],[4,-11],[14,-14],[3,-6],[1,-10],[1,-4],[0,-3],[-3,-7]],[[52902,82982],[5,-5],[5,-4],[4,-6],[0,-9],[2,-2],[3,-2],[-21,-6],[-6,-8],[-4,-2],[-6,3],[-48,65],[-5,13],[-1,9],[4,-5],[23,-17],[7,-7],[7,-13],[3,-6],[4,-2],[5,0],[3,2],[1,4],[-2,10],[4,-7],[4,-17],[3,-4],[5,0],[4,1],[1,5],[-4,10]],[[53449,83059],[24,-6],[9,-10],[5,-20],[-1,-7],[-2,-3],[-5,-2],[-7,0],[-32,9],[-10,-2],[-10,-6],[-9,-9],[-15,-25],[-5,-4],[-9,2],[-17,11],[0,3],[4,0],[-2,6],[2,5],[2,3],[3,2],[-1,2],[-3,5],[-1,1],[6,9],[3,2],[4,-2],[2,4],[-2,8],[4,0],[7,-6],[4,-2],[3,1],[9,4],[3,3],[-1,6],[0,5],[1,3],[3,2],[0,4],[-10,8],[-2,4],[-1,6],[1,4],[3,3],[5,0],[6,-14],[9,-5],[23,-2]],[[52780,83027],[4,-9],[11,-41],[0,-6],[-4,-1],[-8,0],[-4,-3],[-5,-5],[-6,-4],[-4,2],[-4,5],[-13,5],[-5,4],[0,4],[8,5],[8,-5],[9,-8],[8,-4],[0,4],[-13,14],[-13,6],[-3,0],[-3,-1],[-4,-5],[-2,-2],[-11,1],[-10,9],[-5,16],[1,19],[-2,0],[0,4],[6,-6],[7,-9],[6,-7],[6,2],[-1,2],[-2,4],[-1,4],[1,2],[1,1],[-2,3],[-11,10],[-2,5],[3,5],[0,4],[-21,-2],[-4,0],[-3,3],[-3,0],[-3,2],[-2,5],[1,3],[5,5],[2,4],[-5,0],[-5,-2],[-4,-1],[-5,3],[0,5],[25,14],[9,2],[12,-3],[16,-24],[9,-6],[13,-2],[8,-7],[8,-10],[6,-13]],[[53015,83067],[2,17],[9,29],[11,23],[6,-3],[-13,-74],[-6,-19],[-14,-36],[-27,-109],[-3,-7],[-3,-3],[-7,0],[-3,5],[-7,35],[-3,7],[-4,5],[-9,9],[7,0],[4,3],[4,5],[4,8],[3,10],[1,3],[3,-3],[1,-1],[7,3],[0,6],[-1,7],[-3,-3],[-2,-1],[-3,1],[-2,3],[4,14],[6,10],[15,23],[7,5],[16,28]],[[54208,83120],[-1,-3],[-1,-2],[0,-1],[-2,-2],[2,-8],[1,-6],[-1,-5],[-3,-7],[-6,-12],[-1,-6],[1,-5],[0,-4],[1,-7],[-5,-6],[-3,-5],[-4,-4],[-13,4],[-12,1],[-15,8],[-19,14],[-22,8],[-22,22],[-5,7],[4,13],[1,25],[1,36],[1,6],[3,7],[5,11],[2,9],[2,10],[3,7],[4,-4],[11,-19],[4,-6],[6,-8],[10,-8],[11,-11],[7,2],[6,-2],[4,-11],[3,-5],[4,-3],[20,-17],[13,-5],[5,-8]],[[52354,83246],[-7,-3],[-7,9],[-7,15],[-8,28],[-2,12],[3,9],[9,3],[1,-18],[5,-3],[5,1],[4,-4],[0,-7],[-3,-14],[1,-5],[2,-7],[2,-11],[2,-5]],[[52962,83080],[-12,0],[-5,-1],[-5,-3],[-5,-5],[-3,-6],[-5,-6],[-6,1],[-11,7],[-19,2],[-6,2],[-2,3],[-3,2],[-2,3],[-3,1],[-7,-1],[-4,0],[-22,17],[-8,1],[-2,-5],[0,-12],[-4,3],[-7,10],[-4,3],[-6,0],[-11,-3],[-4,3],[21,20],[4,8],[-5,9],[-4,10],[-3,7],[-6,3],[-4,-1],[-3,-3],[-3,-1],[-5,1],[-6,8],[-4,1],[-3,-5],[1,-9],[9,-18],[-1,-10],[-1,-1],[-10,2],[0,2],[0,2],[0,3],[1,0],[0,2],[0,5],[-4,14],[-1,6],[1,6],[2,6],[0,5],[-5,3],[-11,3],[-3,3],[-3,3],[-2,3],[0,3],[-3,6],[-1,3],[1,4],[3,5],[0,3],[0,7],[-3,10],[-1,4],[1,20],[-3,3],[-4,0],[-8,-1],[-4,2],[-4,4],[-6,11],[4,2],[5,1],[5,2],[3,6],[-15,9],[2,-1],[7,1],[-3,6],[-5,4],[-11,2],[-4,2],[-9,14],[0,4],[7,-4],[8,-9],[8,-6],[7,3],[-27,29],[-11,3],[2,6],[3,3],[3,1],[4,3],[10,16],[15,3],[5,-1],[1,-3],[0,-5],[3,-6],[13,-9],[15,6],[27,23],[36,14],[12,11],[7,3],[8,1],[2,-1],[0,-2],[2,-8],[0,-2],[4,2],[1,4],[-1,12],[4,2],[8,-5],[19,-16],[5,-7],[3,-7],[3,-4],[2,-2],[5,0],[5,-2],[8,-8],[-4,3],[-5,0],[-3,-3],[-1,-7],[1,-3],[4,-4],[1,-4],[-2,-5],[-2,-1],[-3,0],[-3,-2],[-10,-18],[4,-10],[10,1],[6,13],[3,-1],[18,11],[10,4],[1,2],[0,4],[-1,4],[-2,2],[-2,1],[-3,2],[-2,3],[-1,3],[1,5],[3,-2],[4,-5],[1,-2],[4,6],[-1,9],[-3,11],[-2,10],[2,-3],[4,-5],[0,10],[-2,15],[0,3],[6,1],[8,-11],[13,-27],[0,-3],[1,-6],[0,-4],[2,-2],[0,-2],[6,-7],[2,-8],[-1,-5],[-2,-3],[-8,-7],[-13,-6],[-19,2],[-5,-1],[-3,-4],[-2,-7],[3,-4],[4,0],[4,3],[-1,3],[0,2],[2,6],[5,-2],[19,-5],[4,-5],[28,-48],[1,-5],[7,-26],[2,-10],[-2,0],[-3,7],[-5,4],[-5,-2],[-2,-11],[2,-7],[7,-14],[2,-9],[1,-13],[-1,-11],[-2,-10],[-4,-13],[-1,-4],[0,-12],[-1,-3],[-7,-11],[-3,-7],[-1,-7],[-3,-6],[-4,-4],[-4,-1],[-11,1]],[[53504,83449],[16,-49],[0,-2],[-10,-14],[-4,-2],[-5,-3],[-5,-5],[-3,-4],[-6,-3],[-6,12],[-4,16],[0,13],[3,8],[4,5],[3,4],[3,4],[3,7],[5,15],[4,6],[1,-4],[0,-1],[1,-3]],[[52933,83554],[3,8],[3,9],[-1,10],[-3,10],[-5,5],[-6,3],[-4,6],[1,15],[3,7],[4,5],[4,-1],[2,-25],[4,-10],[7,-7],[7,-2],[-3,-6],[-1,-6],[0,-7],[2,-5],[5,-9],[3,3],[2,6],[2,4],[1,-4],[-4,-9],[-7,-12],[-2,-10],[1,-20],[-3,-10],[-9,-11],[-10,4],[-7,13],[-3,22],[2,12],[3,5],[4,3],[5,4]],[[53344,82978],[5,1],[6,2],[5,0],[4,-5],[8,-15],[8,-12],[0,-3],[-25,-25],[-4,-6],[-10,-25],[-2,-5],[-3,-3],[-7,-11],[-3,-2],[-4,-9],[0,-18],[3,-34],[-1,-21],[-5,-1],[-6,9],[-1,8],[-4,7],[-9,22],[-3,8],[1,12],[3,10],[8,15],[-6,1],[-4,3],[-1,6],[3,10],[-3,3],[-2,3],[-2,6],[-13,17],[-1,3],[-1,5],[-1,4],[0,4],[0,3],[-2,4],[-4,7],[-5,4],[-3,6],[-1,12],[0,11],[-1,8],[-3,6],[-5,3],[0,5],[10,10],[3,2],[4,-2],[5,-8],[3,-2],[3,2],[7,8],[1,0],[2,-4],[4,3],[5,7],[0,4],[-3,4],[-5,18],[-3,6],[-19,11],[-5,1],[-2,2],[-3,5],[-3,2],[-17,1],[-5,3],[-5,6],[-4,6],[15,-4],[29,-17],[15,-4],[-6,14],[-17,16],[-8,15],[24,5],[2,3],[-1,4],[-6,7],[-16,-2],[-4,8],[4,5],[2,7],[0,7],[-5,5],[-6,0],[-5,-5],[-4,-7],[-4,-4],[-3,0],[-10,6],[-21,6],[-5,4],[-4,-3],[-19,11],[-4,-1],[-8,-5],[-4,-2],[-19,0],[0,-4],[6,-4],[-10,0],[-6,3],[-5,9],[-2,16],[4,-4],[4,0],[4,4],[2,8],[-3,-3],[-3,-1],[-7,0],[-1,3],[1,14],[-2,4],[-5,3],[-15,17],[-3,6],[3,1],[4,1],[3,2],[1,6],[-2,3],[-4,1],[-5,1],[-2,-1],[-2,-3],[-2,-5],[-2,-4],[-4,0],[-2,3],[-4,13],[0,4],[8,-1],[4,1],[3,2],[2,4],[3,3],[4,3],[3,0],[6,4],[3,7],[-1,7],[-3,3],[1,6],[-2,13],[-6,21],[-3,8],[-4,5],[-4,3],[-6,1],[-5,-5],[-3,-1],[-2,3],[1,8],[2,5],[2,1],[4,1],[7,3],[3,9],[-1,11],[-3,11],[-13,19],[-13,10],[-30,9],[0,5],[43,-5],[-4,10],[-18,9],[-6,6],[-3,5],[-2,5],[-2,3],[-5,3],[-14,2],[-5,3],[0,3],[44,-8],[9,2],[18,8],[9,2],[0,-4],[-3,1],[-3,0],[-3,-2],[-2,-2],[4,-11],[7,-8],[9,-3],[7,5],[-12,12],[4,5],[2,-4],[5,-1],[10,0],[5,2],[9,9],[10,2],[4,3],[3,6],[1,8],[1,5],[1,8],[0,4],[-1,5],[-4,8],[-2,5],[7,-6],[7,-1],[6,3],[6,8],[10,-2],[7,16],[2,23],[-9,20],[-8,4],[-18,2],[-22,10],[-7,6],[-2,11],[35,-21],[8,2],[42,-8],[6,-6],[11,1],[20,7],[10,8],[5,1],[4,-5],[-2,-6],[-7,-11],[-3,-7],[3,-6],[-1,-4],[-5,-1],[-4,3],[0,2],[1,6],[-8,-1],[-4,-2],[-3,-5],[14,-29],[5,-17],[-4,-11],[-4,-1],[-9,3],[-4,-2],[-5,-9],[-3,-3],[-5,0],[0,-5],[4,-2],[14,2],[4,2],[4,4],[5,3],[5,0],[2,-5],[3,-10],[2,-9],[0,-5],[-22,-5],[-5,-2],[-2,-4],[3,-4],[4,-1],[13,1],[2,1],[2,3],[5,-5],[7,-12],[2,-8],[0,-3],[-2,-4],[-2,-10],[5,6],[3,6],[12,30],[0,1],[1,0],[-1,5],[-3,7],[0,2],[1,7],[2,9],[4,13],[5,5],[9,4],[5,3],[5,17],[-6,19],[-6,18],[2,11],[5,-1],[9,-12],[6,-3],[2,-3],[0,-6],[-1,-6],[0,-5],[1,-8],[1,-2],[1,-2],[2,-5],[5,-17],[5,-24],[1,-23],[-7,-13],[-10,5],[-5,-1],[-2,-10],[-2,-7],[-10,-11],[-3,-9],[5,-1],[8,4],[7,9],[1,9],[4,2],[5,-2],[4,-5],[2,-7],[-9,3],[-1,-1],[2,-5],[4,-4],[10,-5],[2,12],[6,19],[1,13],[-11,65],[0,21],[-1,8],[-7,32],[-4,8],[-5,3],[-6,0],[-22,-10],[-8,-2],[-4,5],[4,15],[15,14],[26,20],[43,43],[22,15],[23,-1],[24,-17],[20,0],[5,-3],[10,-11],[8,-4],[15,-14],[-4,-10],[-12,-18],[-4,-10],[-7,-24],[-4,-7],[0,-4],[8,-14],[4,-9],[2,-7],[1,-11],[3,-13],[4,-12],[3,-7],[-1,-6],[-1,-8],[0,-13],[-2,-10],[0,-4],[0,-3],[1,-3],[3,-6],[-6,-9],[-11,-26],[-10,-9],[-2,-7],[-3,-7],[-6,-3],[-5,2],[-3,3],[-4,3],[-5,0],[-20,-14],[-6,-7],[-17,-22],[-14,-35],[7,-31],[14,-15],[5,-2],[17,-1],[4,-3],[12,-12],[7,-9],[2,-9],[1,-10],[1,-9],[4,-16],[-4,-6],[-2,-2],[-14,-12],[-58,-17],[-5,-6],[-7,-5],[-6,-10],[-3,-12],[2,-10],[-2,-6],[-3,-2],[-2,1],[-3,2],[2,13],[-3,8],[-6,2],[-5,-4],[-2,-3],[-3,-1],[-1,-2],[-1,-6],[2,-3],[8,-8],[23,-2],[11,-4],[2,-14],[-2,-6],[-1,-2],[-2,-2],[-3,-2],[-6,-4],[-2,-3],[2,-1],[10,-29],[0,-11],[-4,-6],[-6,-2],[-6,-1],[-4,-2],[-10,-9],[-6,-1],[-10,5],[-15,17],[-9,2],[0,-3],[1,0],[1,-1],[-2,-1],[-1,-1],[-1,-2],[-2,0],[1,-12],[-2,-6],[-2,-6],[-1,-9],[2,-6],[4,-4],[4,-1],[4,4],[-1,2],[-1,5],[2,1],[7,4],[2,-4],[4,-10],[1,-3],[2,-2],[9,-11],[5,-3]],[[53197,84046],[0,8],[3,3],[23,3],[12,6],[0,-5],[-1,0],[-1,-1],[-1,-2],[-5,-3],[-4,-6],[-3,-7],[-4,-5],[-4,-2],[-6,1],[-5,3],[-4,7]],[[52451,84074],[-4,-5],[-11,-11],[-1,-11],[-23,-7],[-7,-5],[-3,2],[-8,19],[-3,5],[-6,9],[-7,4],[-2,0],[-8,-4],[-3,1],[1,7],[1,3],[2,2],[2,2],[3,1],[1,3],[0,5],[-1,6],[-1,2],[8,7],[20,3],[6,11],[-3,-1],[-3,1],[-4,1],[-3,2],[2,6],[5,9],[3,6],[-1,0],[-1,4],[0,10],[1,2],[2,0],[2,0],[2,0],[8,4],[16,3],[9,5],[6,-2],[5,8],[10,23],[6,-5],[4,7],[3,8],[4,-2],[-2,-5],[-3,-7],[-1,-4],[1,-3],[2,-8],[1,-5],[-1,-2],[-3,-19],[-2,-7],[-2,-3],[-2,-2],[0,7],[-1,5],[-2,2],[-2,2],[-7,-6],[-1,-2],[-1,-7],[1,-3],[1,-3],[1,-3],[2,-20],[3,-6],[4,-2],[-1,-3],[-2,-2],[-2,0],[-2,0],[2,-2],[2,-2],[-4,-6],[-4,-14],[-4,-8]],[[53095,84423],[7,0],[3,-1],[3,-3],[2,-8],[0,-6],[-2,-5],[-7,2],[-6,2],[-21,-6],[4,-4],[3,-9],[-1,-9],[-6,-9],[-4,-7],[-2,-8],[-5,-7],[-9,-2],[-5,5],[-7,16],[-10,2],[-8,5],[-5,6],[-4,6],[0,3],[9,3],[9,10],[7,7],[11,1],[7,2],[5,7],[20,0],[12,7]],[[53195,70120],[6,-2],[10,-7],[4,-5],[3,-15],[5,-6],[9,-8],[33,-9],[10,-7],[-5,11],[-18,10],[-5,11],[13,-13],[30,-18],[65,-74],[12,-22],[10,-6],[18,-21],[22,-19],[13,-6],[106,-21],[26,4],[69,37],[12,9],[9,13],[4,5],[7,2],[19,2],[26,-9],[3,-3],[3,-4],[55,-53],[13,-6],[47,4],[12,-3],[24,-13],[21,-17],[51,-15],[3,-2],[5,-9],[1,-2],[5,-3],[10,-18],[15,-18],[25,-38],[12,-24],[6,-4],[45,-14],[4,-4],[4,-7],[13,-12],[5,-4],[51,-4],[57,-18],[13,-8],[6,-2],[4,-4],[10,-25],[10,-11],[4,-7],[2,-21],[3,-12],[6,-22],[11,-29],[2,-9],[0,-13],[-3,-21],[-1,-24],[0,-14],[1,-43],[3,-21],[33,-157],[7,-22],[30,-77],[18,-35],[21,-30],[78,-67],[88,-28],[102,-2],[60,-24],[60,-38],[48,-19],[9,0],[3,-2],[2,-3],[10,-10],[8,-14],[3,-3],[2,-2],[41,-22],[22,-20],[23,-14],[20,-7],[4,-6],[8,-21],[5,-9],[5,-4],[25,-11],[44,-30],[9,-10],[8,-14],[25,-53],[67,-93],[16,-32],[8,-14],[18,-18],[12,-4],[5,-5],[41,-49],[11,-9],[25,-7],[25,-1],[26,5],[14,8],[13,7],[23,20],[31,38],[5,5],[13,4],[5,6],[37,53],[46,102],[12,39],[7,17],[10,15],[5,9],[18,69],[13,65],[1,26],[-1,76],[-5,15],[-7,39],[-6,17],[-12,23],[-5,12],[-19,97],[-1,24],[0,26],[-1,10],[-5,22],[-2,11],[-1,25],[1,27],[4,49],[4,23],[-1,6],[-1,6],[-1,7],[2,5],[3,9],[25,97],[7,18],[53,97],[4,12],[13,29],[6,6],[11,9],[5,7],[4,8],[40,58],[65,50],[38,47],[33,30],[13,5],[52,-6],[13,2],[23,11],[11,12],[43,70],[4,3],[13,2],[13,6],[7,-11],[13,-9],[13,-6],[12,-2],[60,12],[2,2],[3,9],[1,2],[6,2],[3,0],[3,-2],[3,-4],[0,-3],[0,-4],[1,-6],[9,-17],[11,-4],[26,1],[11,-7],[27,-38],[6,-5],[4,-4],[5,-2],[13,-2],[65,-35],[15,-18],[5,-3],[3,-1],[10,-7],[3,-1],[10,1],[6,-3],[12,-11],[12,-4],[6,-4],[3,-6],[1,-8],[-2,-6],[-4,-11],[-1,-6],[2,-36],[3,-9],[4,-7],[6,-6],[-3,-12],[-3,-37],[-5,4],[0,5],[0,5],[-2,5],[-2,5],[-5,-49],[1,-12],[4,-6],[17,-12],[6,-2],[5,-5],[5,-11],[4,-13],[4,-18],[4,-4],[4,-2],[4,-4],[2,-7],[2,-12],[3,-5],[0,10],[-4,26],[6,-3],[12,-1],[2,-2],[8,-12],[2,-2],[35,-5],[38,1],[48,-20],[44,-33],[-7,-12],[-1,-4],[2,-3],[7,-5],[18,-25],[6,-3],[53,1],[74,-10],[25,14],[6,8],[3,3],[11,-4],[3,1],[2,2],[2,1],[2,-2],[1,-2],[4,-4],[4,-2],[5,-5],[9,-3],[11,-8],[33,-12],[10,-12],[4,-19],[-2,-24],[-1,-13],[2,-10],[10,-19],[14,-40],[2,-10],[4,-17],[5,-17],[-1,-2],[0,-2]],[[56986,69217],[-18,-25],[-7,-21],[-11,-50],[-45,-67],[-3,-19],[0,-22],[3,-50],[0,-48],[6,-64],[2,-12],[10,-36],[4,-30],[12,-48],[3,-24],[-1,-20],[-4,-21],[-4,-23],[-3,-33],[-8,-41],[-1,-12],[-3,-20],[-5,-20],[-16,-45],[-9,-16],[-7,-18],[-3,-8],[-5,-20],[-11,-39],[-5,-21],[0,-23],[3,-12],[8,-26],[24,-112],[1,-13],[-1,-12],[-4,-30],[2,-25],[14,-45],[4,-24],[0,-14],[-3,-43],[1,-23],[3,-21],[23,-104],[5,-32],[2,-34],[0,-73],[0,-99],[0,-236],[0,-234],[0,-46],[0,-209],[0,-23],[0,-90],[0,-200],[0,-52],[0,-112],[0,-116],[0,-173],[0,-173],[0,-173],[0,-172],[0,-173],[0,-173],[0,-173],[0,-173],[0,-173],[0,-172],[0,-173],[0,-173],[0,-173],[0,-173],[0,-173],[0,-172]],[[56939,63496],[0,-74],[0,-74],[0,-74],[0,-73],[0,-74],[0,-74],[0,-74],[0,-74],[0,-73],[0,-74],[0,-74],[0,-74],[0,-56],[-1,-56],[0,-57],[0,-56],[0,-66],[0,-4],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-28,0],[-41,0],[-33,0],[-35,0],[-37,0],[-32,0],[-23,0],[-45,0],[0,-74],[0,-74],[0,-73],[0,-74]],[[56661,62016],[-34,36],[-35,36],[-34,36],[-34,36],[-35,36],[-34,36],[-34,36],[-35,37],[-34,36],[-34,36],[-34,36],[-35,36],[-34,36],[-34,36],[-35,36],[-34,37],[-34,36],[-35,36],[-34,36],[-34,36],[-35,36],[-34,36],[-34,36],[-35,36],[-34,37],[-34,36],[-34,36],[-35,36],[-34,36],[-34,36],[-35,36],[-34,36],[-34,37],[-35,36],[-34,36],[-34,36],[-35,36],[-34,36],[-28,30],[-6,6],[-34,36],[-35,37],[-34,36],[-34,36],[-35,36],[-34,36],[-34,36],[-35,36],[-34,36],[-34,36],[-35,37],[-34,36],[-34,36],[-35,36],[-34,36],[-34,36],[-34,36],[-35,36],[-34,37],[-34,36],[-35,36],[-34,36],[-34,36],[-35,36],[-34,36],[-25,27],[-6,-2],[-12,-11],[-16,-16],[-16,-15],[-16,-16],[-16,-15],[-16,-16],[-16,-15],[-16,-16],[-16,-15],[-16,-16],[-16,-15],[-16,-16],[-17,-15],[-16,-16],[-16,-15],[-16,-16],[-16,-15],[-4,-5]],[[54161,64088],[-1,0],[-47,-51],[-48,-51],[-47,-52],[-48,-51],[-17,-19],[-5,-1],[-4,4],[-12,23],[-35,61],[-35,61],[-35,61],[-34,61],[-16,27],[-32,36],[-29,13],[-24,12],[-25,12],[-24,11],[-25,12],[-24,12],[-25,11],[-24,12],[-25,12],[-24,11],[-25,12],[-24,12],[-25,11],[-24,12],[-25,12],[-24,11],[-25,12]],[[53324,64397],[-21,84],[-20,78],[-31,124],[0,2],[-20,79],[-19,77],[-8,18],[-9,10],[-11,7],[-88,57],[-67,43],[-53,34],[-6,2],[-6,-1],[-30,-22],[-33,-24],[-11,-2],[-5,4],[-36,57],[-5,11],[-4,21],[-5,55],[-5,16],[-41,47],[-4,16],[0,82],[-2,84],[-1,78],[-4,37],[-10,38],[-43,115],[-34,91],[-42,115],[-39,104],[-7,33],[7,28],[4,10],[5,23],[10,18],[2,8],[1,10],[1,12],[98,90],[5,12],[11,76],[0,12],[-3,17],[0,20],[7,64],[-1,8],[-4,7],[-13,13],[-3,6],[-2,11],[-6,62],[-23,158],[0,10],[1,10],[5,23],[4,35],[4,13],[11,25],[3,11],[-3,12],[-4,14],[-1,12],[7,9],[8,8],[4,12],[19,118],[1,5],[0,24],[-40,203],[-4,34],[14,208],[7,99],[-1,113],[-6,90],[-22,142],[-22,142],[-33,115],[-35,99],[-15,32],[-16,36],[-7,19],[65,67]],[[52644,68372],[62,60],[8,4],[20,3],[8,7],[34,83],[29,87],[26,53],[17,66],[4,24],[0,19],[-7,42],[-1,21],[2,23],[-1,11],[-9,33],[-8,63],[-21,101],[0,10],[3,39],[4,14],[18,36],[19,60],[14,21],[31,0],[15,10],[5,7],[4,8],[3,9],[5,20],[12,20],[3,20],[3,47],[6,12],[5,-1],[5,-5],[5,-4],[6,3],[9,14],[10,11],[9,17],[11,47],[8,14],[86,75],[72,63],[20,23],[3,6],[6,10],[5,18],[-1,25],[-7,21],[-18,33],[-6,23],[0,33],[4,62],[-2,62],[5,40],[0,33],[1,9],[8,57],[-1,26]],[[52644,68372],[-8,65],[-8,65],[-8,65],[-8,65],[-8,66],[-7,65],[-8,65],[-8,65],[-8,65],[-8,65],[-8,66],[-8,65],[-8,65],[-7,65],[-8,65],[-8,65],[-1,7],[-5,42],[-3,11],[-4,9],[-47,61],[-58,76],[-44,58],[-34,39],[-8,15],[0,1],[-4,20],[-2,61],[-4,83],[-4,19],[-28,79],[-26,74],[-6,6],[-6,-2],[-6,1],[-6,3],[-5,5],[-31,40],[-10,6],[-13,2],[-11,6],[-7,14],[-4,27],[0,79],[0,2],[-5,24],[-21,66],[-17,55],[-3,15],[-3,31],[-8,27],[-2,11],[-3,32],[-2,23],[6,60],[1,43],[4,16],[6,11],[11,21],[7,16],[7,14],[11,9],[18,5],[5,5],[4,8],[2,10],[10,70],[6,20],[11,14],[24,19],[11,15],[27,21],[2,4],[12,18],[6,7],[2,4],[2,4],[2,10],[1,5],[10,11],[2,7],[-7,19],[1,10],[3,8],[9,17],[1,1],[2,5],[1,8],[-6,60],[0,22],[3,23],[6,32],[5,43],[4,21],[13,26],[17,45],[3,11],[-10,13],[-12,7],[-10,9],[-7,21],[-1,24],[0,22],[3,20],[10,42],[0,18],[-2,49],[-1,18],[-5,20],[-14,39],[-3,20],[-1,25],[1,48],[6,37],[1,7],[1,32],[6,44],[3,10],[3,11],[-1,10],[-2,11],[-1,12],[1,25],[13,63],[0,3],[1,8],[1,25],[-1,11],[-2,11],[-5,5],[-5,2],[-5,5],[-24,5],[-12,8],[0,1],[1,20],[6,14],[8,8],[18,12],[34,35],[6,12],[7,21],[2,20],[-6,12],[-9,9],[1,10],[9,7],[11,2],[10,-1],[10,3],[19,14],[5,6],[0,7],[-9,25],[-1,6],[0,7],[-1,16]],[[52389,72346],[5,4],[20,13],[7,3],[23,0],[7,3],[11,17],[9,7],[2,1],[6,11],[8,18],[9,28],[4,4],[2,2],[8,15],[3,3],[9,5],[22,16],[3,3],[6,17],[5,4],[37,1],[10,7],[7,13],[4,4],[4,-3],[2,-3],[4,1],[3,3],[8,3],[6,5],[6,7],[4,7],[6,-6],[5,2],[10,12],[6,5],[5,2],[12,1],[6,4],[3,1],[3,-3],[2,-4],[3,-2],[24,-1],[0,-1],[1,-6],[0,-27],[-9,-12],[-10,-7],[-6,-15],[1,-5],[4,-16],[1,-3],[2,-2],[2,-9],[2,-1],[12,-3],[6,1],[6,9],[3,8],[4,11],[-1,10],[-17,12],[-3,0],[-6,-4],[-3,0],[0,4],[7,8],[3,1],[1,3],[1,3],[1,2],[5,1],[27,-11],[5,1],[14,11],[3,-1],[4,-11],[20,-5],[9,-14],[21,-13],[5,-8],[-9,-4],[-4,-3],[-4,-4],[-2,9],[-7,2],[-9,-4],[-5,-7],[2,-10],[7,-5],[9,0],[5,2],[2,-5],[2,-7],[1,-5],[-1,-8],[-2,9],[-12,-20],[2,-29],[10,-30],[13,-23],[10,-8],[3,-4],[7,-15],[3,-7],[-2,-7],[-6,-11],[-3,-12],[-3,-5],[-4,-1],[-3,5],[2,9],[-3,3],[-4,-1],[-10,-5],[-2,-4],[-5,-12],[-1,-8],[4,-3],[8,-1],[4,-3],[2,3],[1,2],[4,13],[6,-23],[7,-17],[10,-11],[13,-2],[4,1],[6,0],[14,12],[8,4],[6,10],[2,16],[2,14],[4,24],[5,7],[6,2],[13,-1],[11,4],[11,7],[14,17],[8,15],[3,2],[1,6],[1,3],[16,22],[2,5],[1,7],[-1,4],[-1,3],[3,7],[6,4],[14,3],[11,14],[5,1],[5,-4],[3,-10],[-1,-5],[-2,-8],[-1,-6],[0,-6],[3,-9],[1,-5],[1,-4],[5,-13],[1,-5],[1,-6],[1,-13],[0,-6],[2,-4],[1,-6],[2,-4],[2,-2],[2,-3],[3,-9],[-2,-10],[-4,-9],[-11,-8],[-15,-22],[-8,-26],[-12,-30],[-19,-62],[-15,-64],[-8,-17],[-23,-10],[-26,-26],[-10,4],[-10,-12],[-9,-24],[-4,-22],[-3,-25],[-4,-24],[0,-31],[-1,-31],[1,-20],[4,-20],[2,-10],[1,-4],[2,-6],[1,-13],[1,-5],[6,-17],[5,-8],[4,-4],[3,-6],[7,-39],[4,-8],[19,-31],[1,-1],[5,-5],[9,-6],[17,10],[2,-1],[3,-3],[5,-8],[-3,-8],[-2,-11],[2,-13],[3,-8],[11,-9],[25,-17],[11,2],[8,-12],[4,-14],[-10,-7],[-2,-14],[1,-9],[0,-5],[3,-13],[4,-9],[13,-7],[-8,-12],[-2,-16],[-1,-14],[1,-26],[-4,-12],[2,-22],[6,-18],[10,-22],[6,-8],[7,-5],[4,-4],[-1,-11],[-7,-1],[-6,-7],[-5,-19],[-8,-12],[-4,-13],[-4,-14],[-6,-9],[2,-17],[-1,-18],[-9,-20],[-11,-10],[-8,-15],[2,-14],[-2,-12],[0,-24],[-12,-14],[-2,-5],[-2,-2],[-1,-4],[3,-12],[1,-8],[-10,-8],[-6,-9],[-9,-17],[-5,-16],[-5,-8],[-3,-11],[-5,-9],[-4,-6],[-19,-10],[-2,-3],[-1,-4],[-1,-6],[-1,-8],[-2,-6],[0,-11],[-2,-7],[-1,-10],[-4,-8],[-6,-5],[-26,-7],[-10,-9],[-15,-43],[-13,-7],[-3,1],[-2,2],[-3,0],[-4,-2],[-1,-3],[-2,-4],[-5,-14],[-3,-4],[-4,-1],[-13,-11],[-5,-7],[-12,-8],[-6,-13],[-4,-18],[-10,-36],[-6,-17],[-4,-2],[-2,-4],[0,-1],[-1,-1],[2,-10],[1,-12],[0,-25],[1,-11],[4,-23],[1,-11],[3,-19],[6,-22],[26,-65],[2,-5],[4,-4],[40,-70],[10,-11],[22,-17],[4,-2],[8,-3],[19,5],[21,11],[18,17],[5,2],[7,-21],[-1,-40],[-8,-13],[-5,-3],[-3,-8],[-2,-10],[2,-9],[7,-20],[3,-8],[6,-3],[12,4],[21,23],[10,6],[5,3],[4,9],[2,12],[-1,10],[-5,10],[-1,5],[8,12],[4,-4],[3,-2],[3,3],[2,7],[2,0],[4,-6],[12,-9],[5,-6],[3,-8],[10,-27],[1,-5],[1,-30],[-7,-21],[6,-37],[-3,-17],[8,5],[6,-11],[5,-13],[7,-6],[7,-3],[14,-13],[7,-4],[-2,-3],[-1,-1],[-1,0],[-27,15],[-14,3],[-3,-18],[3,-8],[4,-6],[4,-9],[2,-12],[3,-6],[6,0],[12,4],[12,-5],[23,-15],[13,0],[4,5],[-1,8],[-5,7],[-5,3],[-3,4],[-4,9],[-4,8],[25,-32],[15,-13],[2,-1]],[[53053,70511],[5,-6],[6,-4],[5,-6],[3,-8],[-19,-30],[-4,-4],[-2,-3],[-1,-5],[-3,-19],[-2,0],[1,16],[1,5],[-4,-3],[-4,-19],[-5,-13],[-4,-9],[-2,-11],[-5,8],[0,11],[2,9],[-5,14],[-5,4],[-4,7],[-5,3],[-5,-10],[-3,-9],[-5,-2],[-6,9],[-2,9],[-2,17],[1,15],[5,17],[-3,24],[0,19],[10,7],[23,-9],[12,-1],[9,10],[8,-18],[9,-15]],[[53045,70994],[3,4],[3,5],[32,-1],[3,-6],[-4,-8],[-12,-15],[-5,2],[-5,5],[-10,7],[-5,7]],[[53129,71063],[2,-2],[2,-4],[7,-12],[-2,-8],[-28,-21],[-14,-15],[-5,-3],[-2,10],[4,8],[4,8],[5,12],[1,9],[0,3],[0,6],[2,2],[1,-6],[4,-4],[7,2],[0,13],[-2,7],[3,8],[3,5],[2,7],[3,6],[4,-5],[8,-2],[2,-5],[-8,-5],[-1,-3],[-1,-4],[-1,-7]],[[57393,79049],[14,9],[6,1],[6,-8],[3,-1],[3,6],[3,-9],[6,-1],[11,3],[5,-3],[6,-12],[3,3],[12,-17],[2,-5],[1,-10],[3,2],[3,7],[2,3],[4,-4],[1,-7],[2,-6],[10,-5],[0,-5],[-3,-5],[-6,0],[0,-4],[8,-7],[5,-2],[3,4],[3,-2],[2,-3],[2,-3],[0,-3],[-3,-5],[-1,-4],[2,-14],[5,-12],[7,-8],[7,-6],[0,-5],[-6,-3],[0,-3],[1,-2],[0,-2],[1,-2],[7,5],[4,-8],[2,-8],[4,3],[3,-5],[1,-6],[-2,-5],[-4,-4],[6,-7],[2,-1],[0,-1],[0,-3],[-5,-9],[3,-6],[6,-5],[5,-8],[0,-3],[1,-18],[-1,-4],[3,-3],[4,-2],[3,-2],[2,-5],[-10,-8],[4,-4],[3,-9],[4,-9],[1,-5],[1,-2],[5,-6],[1,-2],[0,-1],[1,-5],[0,-6],[1,-4],[0,-4],[-6,-2],[3,-13],[6,-16],[18,-34],[8,-11],[8,-5],[1,-2],[0,-3],[1,-8],[1,-3],[1,-2],[0,-6],[0,-2],[1,-1],[3,-1],[1,0],[2,-16],[2,-9],[3,-4],[2,0],[2,-2],[1,-1],[1,-1],[7,-1],[1,1],[4,-2],[4,-4],[3,-5],[2,-5],[-2,-3],[-1,-5],[-1,-6],[-1,-7],[5,-6],[-3,-18],[4,-4],[1,-1],[3,-4],[7,-23],[3,-9],[3,-1],[7,-3],[3,-2],[2,-3],[2,-2],[7,-2],[3,-5],[6,-14],[-1,-8],[3,-7],[7,-13],[4,-16],[0,-1],[1,-4],[1,-4],[-1,-3],[-3,-1],[3,-7],[12,-9],[0,-4],[-1,-5],[1,-1],[3,-2],[2,-2],[9,-14],[8,-8],[3,-4],[0,-9],[7,-2],[6,-6],[7,-4],[5,4],[2,-9],[1,-1],[8,-16],[4,-10],[6,-22],[0,-9],[0,-1],[-2,-9],[5,-5],[0,-6],[0,-7],[3,-6],[0,-5],[-1,-7],[0,-4],[4,-17],[12,-28],[0,-11],[15,-46],[3,-16],[0,-3],[1,-6],[0,-8],[-2,-6],[-3,-8],[-1,-8],[2,-10],[-2,-2],[-1,-5],[-1,-22],[1,-5],[3,-10],[1,-2],[2,1],[0,-1],[1,-5],[0,-18],[0,-5],[-2,-5],[-4,-2],[2,-9],[-1,-3],[-1,0],[-2,-2],[-2,-2],[-1,-18],[-2,-3],[-3,-2],[-1,-4],[2,-12],[0,-7],[-1,-2],[-3,-12],[-4,-5],[-2,-2],[-4,-2],[-2,-2],[-1,-4],[1,-10],[-1,-3],[-3,-2],[-4,-2],[1,-5],[5,-12],[2,-4],[2,-4],[0,-5],[-3,-14],[-1,-14],[-5,-20],[-1,-4],[-2,-8],[-2,-2],[-1,-3],[0,-3],[2,-2],[0,-3],[-3,-21],[-1,-6],[1,-8],[7,-30],[0,-6],[1,-4],[2,-4],[1,-5],[-1,-4],[-1,-5],[0,-5],[1,-4],[2,-7],[1,-3],[-1,-3],[-4,-4],[-1,-3],[1,-17],[4,-18],[5,-14],[2,-6],[3,-59],[-1,-9],[2,-8],[-4,-3],[-9,0],[-4,-2],[-4,-5],[-5,-6],[-4,-7],[16,-13],[6,-7],[5,-13],[1,-3],[1,-1],[0,-2],[0,-20],[2,-6],[8,-13]],[[58238,77247],[-2,1],[-8,0],[0,-4],[4,-9],[3,-10],[5,-8],[9,-2],[-6,-10],[-3,-16],[-3,-53],[-1,-10],[-4,-16],[-1,-9],[0,-9],[-1,-9],[-2,-6],[2,-12],[-7,-17],[4,-11],[-2,-7],[-2,-2],[-3,-1],[-3,-2],[-4,-9],[-2,-3],[-5,4],[-3,-1],[-3,-2],[-3,-1],[-54,-13],[-35,-3],[-10,-5],[-28,-30],[-8,-12],[-7,-15],[-2,5],[1,8],[-4,11],[-2,9],[6,4],[7,2],[10,8],[11,4],[6,7],[5,10],[2,14],[-1,7],[-4,8],[-8,13],[1,-9],[1,-5],[0,-6],[-5,1],[-4,-4],[-3,-2],[-4,9],[-1,11],[0,35],[2,12],[13,7],[4,8],[-3,6],[-12,12],[-3,2],[-9,0],[-9,5],[-3,-1],[-1,-3],[0,-6],[-2,-5],[-3,-2],[-6,-1],[-3,-2],[-10,-14],[-3,-7],[-2,-13],[0,-3],[3,-3],[1,-4],[-1,-3],[-1,-2],[-1,-1],[-1,-2],[1,-5],[2,-5],[2,-3],[6,-4],[14,-21],[-4,-6],[-1,-2],[-3,0],[3,-4],[1,0],[0,-5],[-4,-3],[0,-6],[2,-6],[4,-5],[-3,-3],[-3,-1],[-13,-1],[-2,-2],[-17,-15],[-3,-4],[-3,-9],[0,-7],[2,-4],[4,6],[-1,-8],[-6,-2],[-1,-9],[1,-9],[2,-3],[15,4],[7,6],[6,9],[6,12],[-4,12],[19,-10],[4,-5],[2,-10],[-3,-12],[-5,-9],[-6,-3],[5,10],[4,11],[1,10],[-6,6],[0,-5],[2,-4],[-1,-2],[-5,-2],[-4,4],[-2,0],[-1,-1],[-1,-3],[-2,-4],[-5,-6],[-9,-14],[-5,-4],[-13,-11],[-4,-5],[5,14],[1,6],[-4,1],[-4,-2],[-2,-4],[-1,-7],[3,0],[-2,-6],[2,-5],[2,-3],[4,-3],[-11,-5],[-4,-6],[0,-9],[1,3],[2,3],[1,2],[4,-3],[3,-5],[-2,-8],[-4,-15],[-2,-16],[2,-12],[2,0],[2,4],[2,7],[1,14],[3,4],[6,6],[8,17],[5,8],[5,4],[5,2],[4,6],[2,8],[3,12],[-2,-12],[-2,-10],[-18,-54],[-13,-15],[-26,-51],[-2,-14],[-1,-7],[-4,4],[-4,-3],[-4,-5],[-3,-6],[-1,-8],[-1,-8],[-1,-22],[2,-8],[4,-12],[4,-19],[1,-9],[-1,-5],[2,-4],[-4,3],[-3,-1],[-3,-5],[-2,-5],[2,-11],[5,-48],[5,-31],[0,-3],[-1,-5],[-2,-6],[-2,-11],[-4,-17],[-1,-8],[-6,-20],[-2,-6],[-4,-33],[-2,-5],[0,-6],[1,-5],[-1,-6],[-1,-6],[0,-6],[0,-6],[-1,-6]],[[57938,76374],[-40,-4],[-59,16],[-58,40],[-9,12],[-13,68],[-6,17],[-16,-3],[-19,-16],[-18,-7],[-11,23],[-2,3],[-5,18],[-7,4],[-16,-8],[-53,-1],[-3,3],[-5,15],[-4,5],[-15,11],[-6,10],[1,14],[-4,5],[-1,1],[-7,-1],[-5,5],[-30,9],[-20,19],[-7,-7],[-33,-5],[-26,-24],[-10,-5],[-12,0],[-4,-1],[-5,-5],[-3,-2],[-5,-1],[-10,-5],[-55,-12],[-23,-5],[-6,-2],[-22,-15],[-22,-9],[-10,-8],[-10,-17],[-5,-12],[-2,-9],[-34,-38],[-2,-7],[-3,-8],[-13,-26],[-8,-7],[-9,-15],[-1,-2],[-6,-17],[-12,-7],[-2,0],[-17,-1],[-5,-6],[-4,-6],[-6,-6],[-6,-4],[-5,-2],[-6,-4],[-6,-1],[-12,1],[-2,0],[-4,-2],[-12,-8],[-6,-2],[-12,2],[-10,10],[-10,11],[-1,1],[-9,8],[-11,4],[-36,5],[-33,18],[-59,-7],[-13,3],[-12,7],[-45,26],[-9,2],[-10,-5],[-16,-18],[-4,-2],[-6,0],[-50,-4],[-2,1],[-97,38],[-16,14],[-6,2],[-24,-8],[-4,1],[-8,2],[-30,25],[-44,4],[-26,-6],[-10,-8],[-10,-3],[-8,-6],[-22,-3],[-37,-5],[-9,3],[-7,9],[-3,12],[0,13],[7,45],[3,13],[5,5],[6,2],[11,5],[6,2],[10,8],[4,18],[-2,18],[-6,5],[-6,3],[-13,3],[-10,7],[-59,62]],[[56303,76662],[-1,1],[-1,8],[1,29],[-2,8],[-5,4],[-12,2],[-11,8],[-9,12],[-7,15],[-5,17],[0,5],[0,9],[0,5],[-1,4],[-6,8],[-1,5],[0,8],[1,8],[1,5],[2,3],[3,1],[9,1],[4,2],[2,6],[1,10],[2,10],[4,6],[5,3],[6,-1],[6,-3],[10,-11],[6,-2],[5,1],[7,5],[4,8],[2,10],[-14,24],[-4,5],[-22,4],[-9,7],[-10,11],[-19,33],[-4,4],[-5,1],[-7,1],[-3,-4],[-10,-16],[-5,-5],[-12,-4],[-4,-5],[-1,-9],[-32,-87],[-4,-6],[-6,-2],[-6,1],[-6,4],[-5,7],[-3,17],[-3,4],[-3,3],[-3,4],[-1,5],[-1,7],[-1,4],[-1,4],[-7,29],[-3,4],[-9,2],[-25,20],[-5,2],[-4,-2],[-11,-7],[-12,-4],[-14,0],[-14,6],[-10,16],[-3,11],[-1,10],[-3,10],[-5,7],[-5,2],[-17,-2],[-24,4],[-4,3],[-5,16],[-5,6],[-5,3],[1,8],[3,6],[3,5],[8,4],[16,-1],[8,2],[11,5],[4,5],[1,11],[-3,10],[-4,5],[-9,6],[-7,5],[-14,4],[-6,6],[0,3],[0,4],[-1,3],[-4,1],[-4,1],[-1,5],[2,6],[2,5],[2,2],[8,1],[2,2],[4,4],[1,3],[0,4],[1,8],[1,3],[2,4],[1,3],[0,2],[0,5],[0,3],[0,1],[2,5],[2,4],[3,2],[4,0],[3,5],[1,7],[-1,8],[-3,5],[-7,12],[-7,9],[-8,7],[-29,13],[-12,1],[-5,3],[-9,10],[-5,8],[-9,21],[-4,5],[-3,-1],[-5,-7],[-3,-2],[-3,1],[-2,3],[-3,4],[-2,4],[-14,9],[-9,6],[-5,6],[-10,21],[-18,24],[-9,20],[-4,6],[-5,4],[-5,2],[-4,4],[-2,8],[7,8],[4,6],[0,8],[-3,14],[-8,21],[-1,10],[2,15],[3,11],[1,5],[1,8],[-1,31],[1,6],[1,6],[0,5],[-2,6],[-3,2],[-4,-1],[-2,-6],[-2,-6],[-3,-5],[-4,-1],[-4,1],[-3,4],[-3,8],[-6,13],[-3,6],[0,4],[-1,2],[0,12],[-1,5],[-2,4],[-5,5],[-2,2],[-9,25],[-4,6],[-6,4],[-10,1],[-5,4],[-15,20],[-5,5],[-11,7],[-5,6],[-4,9],[-6,27],[-3,9],[-18,33]],[[55622,77776],[12,21],[44,2],[7,16],[11,-4],[11,-7],[9,-11],[2,-3],[4,-2],[2,0],[15,5],[6,4],[4,7],[2,6],[0,1],[0,8],[1,4],[2,1],[3,-1],[3,-1],[2,3],[0,5],[-3,13],[0,6],[1,3],[11,14],[3,2],[3,2],[6,2],[5,0],[3,-2],[5,-6],[2,-2],[3,1],[4,3],[2,1],[5,-2],[10,-6],[6,0],[2,2],[3,0],[2,-2],[2,-4],[5,-6],[5,2],[13,24],[2,2],[8,-1],[3,4],[3,9],[2,11],[2,26],[2,13],[5,8],[6,3],[11,1],[7,7],[-2,13],[-8,23],[1,12],[3,10],[5,8],[4,11],[1,23],[1,11],[5,8],[6,2],[10,-1],[6,4],[6,12],[1,7],[1,3],[3,7],[8,1],[5,5],[5,11],[1,12],[-7,7],[-1,2],[-1,1],[-1,2],[1,3],[0,4],[1,3],[2,3],[5,23],[4,10],[6,8],[10,4],[3,4],[2,7],[0,7],[-1,6],[0,7],[0,7],[1,2],[1,0],[13,16],[2,4],[5,29],[1,1],[-2,7],[-2,3],[-3,0],[-2,2],[-1,3],[0,2],[10,19],[7,9],[13,13],[6,8],[2,5],[1,11],[1,5],[3,6],[6,8],[3,5],[1,7],[0,6],[-1,5],[1,7],[1,7],[3,8],[1,6],[4,21],[1,7],[11,23],[5,8],[5,4],[12,6],[6,16],[0,20],[-3,20],[-1,19],[6,14],[8,13],[17,19],[14,5],[1,2],[3,2],[1,4],[0,1],[1,4],[0,4],[1,4],[6,14],[1,5],[1,11],[1,5],[2,3],[5,5],[2,3],[6,14],[3,4],[6,4],[4,3],[4,1],[13,-3],[4,0],[4,2],[3,5],[4,23],[9,3],[20,-16],[10,-2],[11,2],[10,7],[8,10],[7,13],[3,4],[6,3],[6,1],[1,2],[3,7],[-1,4],[-1,4],[0,5],[3,8],[4,4],[11,6],[5,6],[7,19],[4,7]],[[55622,77776],[-15,19],[-5,3],[-7,-5],[-2,-1],[-2,2],[-3,6],[-1,2],[-5,1],[-2,0],[-7,-5],[-8,-2],[-12,10],[-18,2],[-11,-3],[-4,-3],[-23,-14],[-5,1],[-17,17],[-6,5],[-6,3],[-6,1],[-16,-5],[-6,0],[-5,-1],[-7,-5],[-6,-6],[-4,-7],[0,-5],[2,-5],[1,-5],[-7,-6],[-2,-4],[-2,-4],[-2,-5],[-4,-5],[-3,-2],[-3,0],[-3,-3],[-3,-5],[-2,-6],[-3,-5],[-4,-2],[-10,0],[-6,-2],[-2,-2],[-3,-4],[-2,-7],[-1,-7],[-4,-6],[-7,-3],[-25,4],[-6,5],[0,1],[-4,11],[-6,4],[-7,-4],[-4,-12],[0,-17],[-5,-2],[-7,1],[-7,-7],[-1,-2],[0,-2],[0,-2],[2,-5],[1,-3],[0,-2],[-2,-1],[-5,4],[-17,2]],[[55250,77671],[-4,-1],[-3,-4],[-3,-3],[-6,-2],[-4,-5],[-2,0],[-1,0],[-4,4],[-3,-6],[-1,-5],[-1,-4],[-3,-3],[-4,1],[-10,8],[-14,7],[-5,-1],[-7,-9],[-1,-3],[-1,-8],[0,-3],[-1,0],[-4,-7],[-6,-18],[-3,-6],[-12,-15],[-7,-4],[-7,4],[-4,-5],[-10,-17],[-5,-7],[-2,0],[-2,-1],[-2,1],[-2,0],[-5,9],[-4,0],[-5,-3],[-4,-3],[-5,3],[-5,7],[-6,0],[-9,10],[-5,2],[-23,0],[-2,-1],[-5,-5],[-3,-2],[-3,0],[-29,12],[-20,0],[-4,0],[-3,-2],[-1,-4],[-2,-5],[-3,-1],[0,3],[-5,14],[-9,9],[-33,15],[-7,1],[-2,2],[0,4],[-1,3],[0,7],[-2,9],[0,4],[-2,6],[-13,21],[-10,7],[-12,3],[-24,2],[-2,-2],[-1,-2],[-1,-2],[-1,-2],[-2,10],[-3,2],[-7,-4],[-5,-1],[-1,2],[0,5],[-1,10],[-3,-7],[-3,1],[-3,4],[-1,0],[-4,2],[0,4],[2,1],[4,3],[2,0],[-3,5],[-4,1],[-5,3],[-2,10],[0,6],[-4,18],[-1,6],[-11,22],[-4,2],[-22,1],[-4,3],[-14,15],[-3,6],[-1,6],[-3,4],[-14,18],[-3,6],[-7,18],[-10,19],[-2,2],[-2,4],[-3,11],[-2,9],[1,10],[-3,9],[-1,4],[-3,4],[-3,6],[-2,0],[0,-3],[-1,-2],[-2,2],[-1,3],[-1,2],[-2,1],[-1,1],[-7,2],[-2,2],[-2,-8],[-2,0],[-4,10],[-8,8],[-5,10],[-5,11],[-5,9],[-6,7],[-7,2],[-3,2],[-2,1],[-2,-2],[-1,-6],[-2,0],[-3,6],[-12,11],[-2,2]],[[54587,78009],[-4,25],[-9,12],[-11,23],[-9,9],[-6,6],[-1,4],[-1,4],[3,6],[5,4],[2,2],[2,3],[-2,12],[-4,4],[-5,0],[-1,1],[-1,0],[-2,2],[0,9],[-4,-1],[-2,5],[-3,7],[-3,6],[-4,17],[0,2],[0,2],[1,5],[2,6],[1,2],[2,7],[2,7],[1,6],[-2,3],[-4,0],[-2,2],[-1,2],[-5,8],[-3,2],[-25,-3],[-12,-2],[-2,1],[-10,3]],[[54470,78222],[4,4],[4,5],[10,20],[3,5],[7,7],[6,4],[2,2],[2,4],[0,4],[0,3],[1,4],[2,3],[3,1],[2,3],[2,9],[2,6],[4,1],[10,-3],[12,2],[6,-1],[4,-5],[2,-2],[1,-1],[2,1],[1,2],[5,1],[7,0],[5,2],[-1,6],[-4,6],[-4,2],[-8,1],[3,5],[13,7],[3,3],[1,3],[-1,3],[-3,3],[-6,2],[-2,8],[2,9],[6,5],[6,12],[1,7],[-3,7],[-5,1],[-9,-7],[-4,4],[0,3],[3,10],[0,6],[-2,3],[-3,1],[-2,0],[-1,2],[-1,9],[4,13],[-1,11],[9,7],[4,5],[1,8],[-1,9],[-8,26],[-1,1],[-1,1],[-1,1],[-1,2],[0,4],[1,1],[2,1],[0,2],[-1,23],[3,7],[4,2],[3,-4],[4,-8],[30,20],[10,12],[4,4],[-1,24],[3,5],[8,5],[3,7],[0,9],[-2,8],[-4,5],[-4,4],[1,12],[-2,12],[-5,9],[-6,4],[-9,-2],[-19,11],[-7,-3],[-16,9],[-5,4],[3,5],[4,10],[2,3],[1,-3],[2,-2],[1,0],[2,1],[3,4],[11,9],[3,3],[1,5],[0,8],[1,6],[11,6],[11,-2],[23,-12],[3,-4],[2,-5],[1,-6],[2,-6],[3,-5],[3,-3],[15,-3],[3,1],[3,4],[5,12],[4,5],[4,-16],[11,-2],[22,8],[20,4],[6,3],[-4,3],[-2,5],[-1,6],[-1,19],[-2,12],[0,10],[4,7],[-2,4],[-2,11],[-3,2],[-5,4],[-2,3],[0,6],[3,3],[10,3],[4,5],[3,6],[2,8],[1,10],[-1,1],[-1,1],[-1,1],[-1,3],[1,1],[3,3],[0,1],[1,5],[1,4],[0,3],[-3,5],[18,21]],[[54763,78899],[10,9],[10,-3],[12,-5],[2,-1],[19,-4],[8,-10],[29,-55],[3,-3],[2,-2],[7,-2],[3,-3],[9,-20],[4,-5],[3,0],[2,2],[4,1],[4,-3],[5,-6],[6,-7],[2,-6],[3,-5],[11,-9],[7,-5],[23,-9],[16,1],[64,6],[34,-5],[10,2],[21,12],[57,9],[12,-1],[11,-6],[8,-3],[8,1],[7,6],[9,16],[5,5],[6,2],[7,4],[-10,11],[-9,11],[-1,12],[0,12],[3,24],[-1,7],[-2,3],[0,2],[4,6],[2,2],[5,2],[3,3],[8,22],[4,6],[27,8],[13,4],[4,3],[7,0],[5,-1],[17,4],[34,-6],[3,1],[17,15],[37,-1],[15,15],[0,3],[1,3],[-1,3],[0,4],[0,1],[3,9],[3,23],[3,9],[5,4],[25,9],[3,0],[3,-1],[3,-4],[6,-10],[3,-2],[13,3],[6,-1],[5,-9],[0,-6],[-1,-5],[-1,-5],[3,-5],[2,-1],[10,5],[7,-3],[11,-13],[6,-3],[6,3],[13,17],[6,5],[11,5],[1,1],[11,10],[5,2],[2,3],[2,5],[2,11],[1,4],[3,6],[3,1],[3,-2],[4,-1],[5,3],[9,11],[3,2],[5,-4],[3,-4],[4,-3],[6,5],[8,12],[7,15],[6,17],[11,47],[3,9],[4,8],[8,13],[1,1],[4,7],[0,3],[0,2],[0,2],[0,2],[-1,10],[0,5],[1,5],[8,4],[17,2],[59,19],[4,0],[5,-3],[8,-11],[4,-1],[9,-2],[15,-13],[10,-1],[7,1],[8,-2],[8,-5],[5,-8],[7,-2],[22,14],[9,3],[5,-3],[3,-4],[3,-2],[5,3],[3,7],[1,6],[3,6],[5,4],[5,2],[9,0],[15,6],[4,-1],[9,-8],[5,-3],[2,-3],[2,-5],[3,-12],[2,-4],[4,-3],[10,0],[5,-1],[3,-7],[3,-24],[2,-7],[16,-34],[7,-10],[7,-8],[9,-4],[8,1],[14,10],[12,3],[9,7],[4,2],[14,1],[6,2],[5,1],[16,-2],[5,2],[5,5],[5,10]],[[54763,78899],[-7,9],[-9,4],[-6,5],[2,10],[-4,4],[-1,1],[2,11],[1,6],[3,5],[-4,5],[-1,4],[-4,11],[-3,2],[-5,1],[-3,4],[-7,10],[-2,10],[0,13],[-2,10],[-4,22],[0,2],[0,7],[0,3],[-1,2],[-2,1],[-3,4],[-2,1],[-2,2],[-1,4],[-1,2],[-1,4],[-1,3],[0,1],[-2,1],[1,3],[1,4],[1,2],[-2,5],[-2,4],[-3,4],[-2,1],[-6,1],[-2,2],[-1,3],[1,7],[0,3],[1,1],[1,4],[2,32],[1,8],[3,8],[7,15],[2,8],[2,6],[4,5],[5,7],[1,3],[1,7],[-3,28]],[[55231,79790],[27,-3],[8,-7],[-2,-10],[0,-8],[2,-8],[0,-9],[-1,-20],[2,-6],[5,-2],[7,1],[11,9],[6,2],[3,-2],[5,-5],[3,-2],[3,0],[7,2],[8,4],[2,5],[1,8],[2,11],[1,0],[3,0],[1,2],[1,4],[-1,2],[0,2],[-1,1],[4,19],[4,9],[4,5],[5,3],[5,2],[9,-1],[3,1],[4,2],[2,3],[24,37],[1,3],[1,1],[2,-1],[2,-2],[5,-11],[2,-3],[7,-6],[3,-12],[5,-30],[4,-19],[2,-4],[5,-5],[5,-2],[12,0],[-2,-4],[0,-3],[0,-10],[-1,-7],[16,-7],[6,-1],[6,0],[9,6],[3,-3],[2,-11],[2,-10],[2,-29],[-1,-2],[-2,-5],[0,-2],[1,-2],[4,-4],[0,-1],[0,-1],[2,-3],[1,-2],[-1,-4],[-1,-1],[-2,-1],[-1,-1],[-11,-24],[-1,-8],[4,-7],[7,-3],[12,-2],[7,3],[3,6],[6,8],[5,5],[9,1],[7,-5],[15,-19],[9,-6],[5,6],[3,14],[2,21],[3,6],[2,7],[2,7],[5,16],[2,3],[0,-1],[7,-1],[2,4],[6,10],[5,3],[21,3],[1,2],[2,9],[2,8],[0,5],[1,4],[3,3],[4,0],[11,-6],[14,1],[0,10],[5,2],[23,-17],[6,-2],[7,3],[3,4],[4,8],[3,2],[3,0],[6,-1],[10,2],[5,-1],[24,-41],[5,-4],[6,-1],[5,0],[4,-1],[5,-5],[5,-7],[4,-5],[5,-1],[7,3],[6,8],[9,18],[6,8],[4,1],[6,0],[5,2],[2,5],[-3,9],[-7,5],[-3,6],[6,9],[4,2],[11,4],[4,-1],[6,-5],[3,-6],[5,-4],[6,1],[4,7],[9,18],[5,4],[4,-1],[16,-11],[27,-11],[4,0],[11,3],[4,-2],[5,3],[4,3],[20,3],[5,-2],[3,-3],[5,-7],[3,-2],[2,-1],[4,1],[3,-1],[5,-6],[9,-20],[4,-5],[3,3],[4,6],[5,6],[5,2],[6,-4],[10,-14],[15,-10],[10,-13],[8,-18],[3,-21],[2,-19],[8,-8],[20,-5],[9,-8],[3,-2],[3,0],[6,1],[3,-1],[3,-5],[0,-4],[-1,-4],[0,-3],[3,-3],[13,-5],[15,0],[6,-3],[14,-20],[10,-4],[22,-1],[9,-7]],[[53962,82272],[2,0],[5,3],[4,4],[0,5],[-4,4],[2,2],[1,2],[-1,2],[-2,2],[1,5],[3,-3],[4,-3],[3,-3],[3,-12],[4,-3],[8,-5],[5,-8],[4,-3],[12,-3],[15,-6],[5,-5],[4,-8],[9,-22],[3,-6],[2,2],[0,10],[1,5],[3,4],[4,4],[-1,2],[0,2],[1,4],[-3,1],[-7,1],[-4,2],[-8,26],[2,13],[6,26],[4,-4],[2,1],[3,2],[5,1],[-2,15],[1,12],[2,10],[1,11],[-2,0],[-1,-7],[-2,-4],[-7,-9],[2,-4],[-3,1],[-2,2],[-1,2],[-2,3],[2,2],[2,4],[2,2],[-4,10],[-6,5],[-31,4],[-4,6],[3,12],[-1,1],[-1,3],[-2,-6],[-3,-1],[-2,1],[-3,2],[-3,-2],[-2,-3],[-1,-3],[-3,-4],[8,-2],[5,-3],[2,-4],[0,-7],[-3,-5],[-4,-2],[-2,2],[-8,-6],[-3,-1],[-4,-1],[0,-4],[3,-2],[0,-1],[-3,-1],[-3,1],[-4,2],[-4,1],[-4,4],[-14,24],[-6,4],[-1,0]],[[53947,82413],[4,-3],[3,-3],[9,-4],[27,-3],[11,3],[11,7],[20,19],[74,41],[63,21],[77,40],[50,17],[55,19],[54,30],[45,7],[30,13],[-3,-4],[-14,-8],[6,-5],[25,5],[0,4],[-2,0],[0,4],[13,0],[0,3],[-1,0],[-1,1],[1,10],[-7,0],[-15,-6],[10,6],[11,9],[17,26],[-3,-9],[-6,-8],[-3,-5],[3,1],[5,2],[4,2],[4,6],[10,5],[3,6],[-3,8],[-5,0],[-3,-3],[-4,-5],[12,25],[32,51],[0,-3],[-1,-6],[2,-1],[5,2],[3,5],[2,8],[-1,2],[-4,-2],[-4,-5],[5,15],[10,12],[19,14],[58,11],[23,11],[12,2],[10,5],[27,36],[83,49],[105,24],[48,20],[74,9],[45,0],[7,-3],[10,-11],[4,-2],[5,-2],[95,-70],[18,-28],[2,-6],[3,-10],[0,-8],[-4,-3],[-2,3],[-1,4],[-2,4],[-5,5],[-3,11],[-5,7],[-13,28],[-3,1],[-9,3],[-3,1],[-2,5],[-8,4],[-17,14],[-16,10],[-3,4],[-9,9],[-2,1],[-4,-2],[-1,-3],[-4,-17],[-1,-4],[0,-8],[2,-2],[6,-4],[2,-2],[3,-8],[4,-11],[0,-4],[-1,-4],[0,-4],[3,-4],[-1,-12],[3,-5],[5,2],[5,7],[-2,-10],[2,-8],[4,-6],[7,-27],[2,-6],[-1,-13],[0,-24],[2,-22],[4,-10],[4,-2],[9,-8],[4,-2],[4,0],[4,-2],[4,-3],[2,-5],[5,-9],[47,-18],[10,-1],[9,6],[2,-3],[3,-3],[8,-2],[104,19],[23,14],[11,3],[9,5],[17,22],[5,3]],[[47986,83083],[-5,-3],[-2,-4],[-3,-4],[-2,-3],[-18,-3],[-3,-3],[-3,-4],[-7,-15],[1,-6],[-1,-1],[-2,0],[-1,-4],[2,-16],[0,-4],[-2,-4],[-1,-1],[-5,-3],[-3,-4],[-1,-7],[2,-15],[0,-6],[-3,-13],[-5,-10],[-20,-31],[-2,-8],[0,-15],[1,-4],[1,-2],[0,-2],[-3,-1],[-3,0],[-6,3],[-8,-3],[-9,3],[-5,-3],[-10,-12],[-10,-7],[-9,-1],[-9,6],[-8,9],[-4,0],[-9,-12],[-14,-8],[4,-5],[2,-1],[-2,-9],[2,-6],[5,-4],[5,-1],[2,-2],[3,-8],[2,-3],[2,0],[5,4],[2,1],[4,-3],[8,-10],[5,-2],[4,3],[5,4],[3,-1],[0,-12],[-11,-5],[-28,-32],[-10,-6],[-11,1],[-21,6],[-6,-8],[-6,-10],[-3,-9],[-2,-3],[-3,-3],[-7,-5],[-14,-6],[-5,-3],[-2,-1],[4,-4],[0,-5],[1,-5],[3,-5],[6,-9],[12,-21],[7,-8],[7,-5],[8,0],[6,-18],[3,-9],[5,-7],[2,-1],[3,-1],[10,-2],[5,-4],[1,-9],[2,-26],[3,-10],[6,-4],[15,-2],[16,1],[5,-1],[20,-19],[2,-4],[1,-5],[1,-5],[3,-3],[30,-9],[6,2],[11,11],[7,0],[-3,-6],[1,-1],[3,1],[2,-1],[2,-5],[0,-3],[2,0],[4,1],[13,-5],[3,0],[2,0],[-6,17],[0,4],[2,3],[8,6],[1,-1],[-1,-5],[0,-5],[0,-7],[-1,-5],[1,-2],[4,2],[3,4],[2,5],[1,6],[-2,6],[6,3],[-1,3],[-2,3],[-1,2],[1,6],[2,4],[2,3],[3,3],[16,5],[5,5],[-1,10],[4,7],[-10,10],[1,8],[-9,6],[-1,6],[2,1],[2,-1],[1,2],[1,0],[2,6],[-1,1],[-1,3],[-1,4],[1,2],[0,1],[2,1],[4,-1],[3,0],[9,8],[13,27],[8,10],[9,1],[9,-6],[18,-18],[2,-4],[2,-10],[2,-2],[4,0],[1,-2],[3,-10],[3,-11],[1,-8],[-2,-6],[-5,-4],[10,-6],[2,-3],[1,-5],[1,-6],[2,-6],[5,-10],[5,-8],[6,-6],[6,-5],[3,0],[3,3],[2,4],[3,2],[3,0],[3,-3],[6,-6],[4,-6],[2,-3],[2,-11],[-3,-11],[-6,-10],[3,-7],[-1,-6],[-4,-14],[4,-5],[8,-11],[4,-3],[1,1],[2,4],[1,2],[2,2],[2,1],[4,-2],[2,-1],[24,11],[8,1],[0,-1],[1,-3],[2,-2],[1,-2],[2,0],[7,3],[7,2],[2,2],[1,5],[0,5],[-1,4],[1,4],[3,8],[3,-1],[2,-4],[3,-3],[4,1],[4,3],[4,1],[4,-5]],[[48258,82507],[17,-21],[5,-3],[2,-2],[4,-8],[1,-2],[6,-1],[3,-1],[2,-2],[5,-10],[-1,-7],[-9,-14],[-5,-2],[-7,3],[-6,5],[-4,5],[-4,-1],[-19,10],[-15,3],[0,-5],[3,-3],[-1,-5],[-4,-8],[-2,-10],[-1,-17],[0,-11],[1,-10],[6,-11],[10,-6],[20,-4],[0,-4],[-3,-11],[0,-10],[3,-9],[6,-6],[-6,-9],[-1,-15],[1,-16],[1,-26],[1,-9],[2,-8],[2,-6],[3,-4],[4,-3],[3,-3],[5,-14],[7,-7],[9,-5],[5,-5],[2,-6],[2,-7],[1,-9],[-2,-8],[-5,-10],[-1,-4],[0,-5],[-2,-5],[-4,-10],[-2,-5],[-2,6],[-5,1],[-6,-2],[-4,-5],[18,-11],[1,-6],[1,-7],[2,-5],[0,-1],[-2,-5],[-1,-2],[4,-3],[12,-1],[5,-4],[-3,-10],[-4,-1],[-4,5],[-4,2],[-1,2],[-3,5],[-1,2],[-3,-1],[-5,-3],[-2,-1],[-16,-16],[-1,-6],[2,-5],[7,-9],[5,-11],[4,-4],[8,-2],[2,-3],[3,-1],[3,-2],[0,-5],[-2,-4],[0,-3],[-1,-13],[1,-8],[1,-9],[3,-6],[3,-5],[2,-7],[-2,-11],[4,-7],[9,-25],[0,-2],[0,-1],[-1,0],[0,-1],[1,-10],[-1,-14],[-1,-14],[-2,-9],[-1,-9],[3,-10],[12,-17],[1,-4],[-4,-2],[-1,-3],[-3,-11],[-2,-2],[-3,-5],[-9,-28],[2,-4],[-12,-15],[-3,-5],[-3,-9],[-7,-28],[2,-13],[-1,-3],[-5,-15],[-13,-30],[-1,-11],[0,-9],[3,-17],[1,-9],[-1,-25],[-4,-10],[-17,-37],[-5,-7],[-4,-4],[-5,-8],[-6,-15],[-3,-9],[0,-11],[1,-10],[-1,-8],[-2,4],[-2,3],[-2,1],[-17,-1],[-5,2],[1,11],[-2,-2],[-3,-1],[-2,-3],[-2,-2],[0,-4],[4,-2],[4,-5],[3,-6],[2,-8],[-2,-6],[9,-3],[3,-5],[1,-6],[4,5],[6,15],[0,-4],[-4,-12],[5,-14],[14,-19],[-8,-25],[-3,-7],[-3,-4],[-2,-1],[-3,1],[-3,4],[0,3],[3,2],[2,8],[0,2],[-4,1],[-1,-1],[-3,-5],[-3,-4],[-1,-1],[-12,-1],[0,4],[5,0],[-4,5],[-2,-1],[-5,-4],[-13,-4],[-12,-9],[-5,1],[-7,10],[-5,4],[-21,8],[-20,-4],[-5,2],[0,4],[4,3],[4,5],[3,7],[1,10],[-4,-7],[-4,-6],[-6,-3],[-5,3],[-2,-3],[0,-5],[0,-2],[1,-2],[-1,-4],[3,3],[1,1],[1,0],[0,-8],[-1,-4],[-2,-4],[2,0],[1,0],[0,-4],[-2,0],[-1,0],[2,-4],[-20,-16],[-3,-4],[-3,-7],[-4,-5],[-5,3],[3,8],[3,4],[4,3],[3,4],[0,6],[-5,24],[-2,4],[-2,5],[-4,5],[-2,2],[-4,4],[-4,19],[-3,6],[1,-7],[0,-6],[1,-3],[0,-6],[1,-3],[4,-10],[1,-6],[-4,-14],[1,-6],[7,0],[0,-4],[-5,-5],[-8,-14],[-5,-5],[-6,-2],[-12,-1],[-6,-2],[1,7],[8,14],[-6,4],[-3,0],[-4,0],[0,-4],[1,-2],[1,-2],[1,-2],[1,-2],[-3,1],[-4,2],[-2,1],[-3,-2],[-2,-3],[-2,-4],[-1,-3],[-6,-4],[-5,0],[-11,4],[-53,-8],[-19,-13],[-10,-3],[-2,-2],[-1,-3],[-1,-3],[-3,-1],[-2,3],[-1,4],[-1,4],[-1,2],[-5,-2],[-5,-6],[-3,-7],[1,-10],[3,4],[4,1],[5,-2],[8,-4],[2,-1],[1,-3],[-2,-7],[-9,-8],[-1,-18],[-1,-4],[-2,-2],[-3,0],[-2,-3],[-5,-4],[-15,2],[-6,-4],[-2,-8],[0,-6],[-2,-3],[-29,5],[-1,3],[-1,5],[-1,6],[-3,2],[-1,-2],[0,-1],[0,-14],[-1,-5],[-4,-8],[-4,-6],[-4,-4],[-6,0],[8,-10],[3,-2],[-3,-6],[-6,-4],[-11,-3],[-15,-9],[-4,-7],[5,-8],[-4,-3],[-21,-6],[-11,-6],[-17,-2],[-8,1],[-3,0],[-3,0],[-1,2],[0,4],[2,3],[3,2],[2,1],[0,3],[-2,5],[4,1],[4,2],[4,4],[4,5],[-2,2],[-2,1],[-1,1],[-3,0],[2,8],[1,2],[3,2],[-2,6],[-2,1],[-2,-2],[-2,-5],[-4,4],[-5,1],[-12,0],[0,4],[-2,3],[-5,-2],[-5,-3],[-5,-2],[-12,1],[-5,-1],[-6,-5],[9,-4],[12,-2],[7,-7],[-5,-19],[10,1],[3,-1],[0,-4],[-1,0],[0,-4],[2,-3],[1,-1],[-4,-1],[-2,-1],[-1,-2],[9,0],[-5,-10],[0,-2],[0,-3],[1,-3],[1,-4],[-2,-4],[-9,-14],[-3,-6],[-7,-6],[-11,-3],[-3,-3],[-4,-7],[-1,6],[-4,5],[-5,3],[-3,-2],[4,-4],[1,-7],[-1,-6],[-4,-4],[-2,12],[-6,5],[-13,0],[0,-4],[3,-2],[6,-1],[3,-1],[2,4],[2,0],[1,-4],[0,-4],[-2,-2],[-3,-2],[-1,-1],[-5,-14],[0,-3],[0,-7],[1,-9],[1,-7],[-4,5],[-4,11],[-4,5],[-4,0],[-14,-5],[-33,5],[4,-6],[4,-3],[11,0],[0,-4],[-2,-2],[-2,-2],[6,-4],[-3,-3],[-2,-5],[0,-5],[1,-7],[-11,2],[-2,-2],[-2,2],[-2,4],[-2,2],[-10,0],[-3,1],[-3,2],[-1,0],[-2,-3],[-6,4],[-4,-7],[-3,-10],[-2,-7],[-10,-5],[-2,-1],[-1,-6],[-2,1],[-3,4],[0,3],[-2,1],[-6,6],[-3,1],[-3,0],[-4,-4],[-16,-4],[-3,2],[-7,5],[-3,1],[0,-4],[1,-1],[3,-3],[-3,-7],[-3,-5],[-4,-3],[-5,-1],[-7,2],[-2,-1],[1,-6],[0,-3],[-4,-1],[-2,-3],[-1,-5],[-3,-4],[-3,0],[-2,1],[-3,1],[-3,-2],[0,4],[-1,3],[0,2],[-1,4],[-8,-7],[0,-5],[-2,-1],[-2,0],[-2,-2],[-4,-4],[-3,-2],[-9,0],[3,3],[2,3],[2,4],[2,6],[-4,-3],[-3,-2],[-1,2],[2,8],[3,5],[7,6],[4,4],[-1,2],[-1,0],[0,1],[0,2],[-3,-3],[-9,-7],[-1,-4],[-2,-4],[-6,-7],[-3,6],[0,6],[2,7],[1,8],[-2,4],[-5,3],[-5,1],[-3,-2],[2,-7],[-8,-6],[-20,-5],[-1,-3],[0,-5],[-1,-2],[-5,0],[-2,0],[-5,-7],[-3,-2],[-5,0],[0,6],[-4,7],[-4,3],[-2,-5],[-15,-19],[2,-3],[1,0],[1,-1],[-19,-12],[1,7],[-3,-2],[-8,-9],[-1,4],[-2,-4],[0,7],[1,3],[1,2],[0,4],[-3,1],[-1,2],[-2,5],[6,3],[5,5],[10,13],[5,4],[10,4],[6,4],[5,5],[12,19],[5,5],[10,6],[6,5],[-13,2],[-54,-36],[-17,-2],[12,10],[2,2],[3,2],[2,6],[3,5],[10,5],[35,25],[3,8],[9,1],[11,8],[10,3],[8,5],[1,9],[1,3],[1,4],[1,1],[0,4],[-3,3],[-5,-4],[-5,-2],[-6,6],[-2,0],[-1,1],[-1,2],[1,8],[0,2],[-2,3],[-3,2],[-2,2],[-3,2],[1,-8],[0,-5],[0,-6],[3,-6],[-6,-2],[-3,-4],[-8,-10],[-6,-5],[-5,-2],[-19,-3],[-9,-5],[-35,-7],[-12,-7],[-4,-4],[0,-2],[0,-2],[-1,-2],[-1,-2],[-1,-1],[-18,-8],[-6,-7],[-3,1],[-6,3],[-3,0],[-13,-2],[-6,-4],[-5,-6],[-1,4],[2,2],[0,4],[0,3],[1,3],[2,2],[19,7],[4,3],[0,3],[0,1],[-1,0],[-1,0],[1,7],[-2,5],[-4,1],[-4,0],[3,7],[6,2],[12,-1],[6,3],[13,17],[0,4],[-12,0],[5,11],[9,9],[9,6],[8,3],[-1,-3],[-2,-6],[-1,-3],[5,1],[4,3],[4,6],[0,10],[4,-4],[5,-1],[10,1],[0,4],[-2,0],[-5,4],[0,3],[3,4],[7,11],[6,4],[3,8],[2,2],[2,1],[7,-1],[9,4],[16,12],[9,4],[0,4],[-20,-3],[-29,-15],[-5,-4],[-3,-4],[-1,-4],[-10,0],[-4,-2],[2,-4],[-8,-7],[-3,-1],[0,3],[1,6],[0,3],[-4,0],[-2,-2],[-1,-3],[-2,-3],[-3,-1],[-7,-2],[-3,-1],[-12,-13],[-7,-4],[-6,5],[-6,-8],[-7,-8],[-7,-6],[-7,-2],[2,7],[-27,17],[11,4],[3,14],[-5,16],[-11,7],[-4,-4],[-7,-14],[-3,-3],[-3,-2],[-9,-11],[-4,-4],[-2,8],[4,17],[-2,8],[-4,1],[-6,0],[-3,1],[2,6],[0,3],[-1,1],[-1,0],[0,3],[1,1],[0,2],[1,2],[-1,1],[-2,-1],[-1,0],[0,4],[9,2],[23,11],[5,0],[2,2],[1,4],[0,4],[-1,2],[-4,3],[-2,6],[-3,6],[-5,1],[0,4],[3,3],[7,3],[3,2],[-2,9],[6,4],[7,2],[7,7],[18,11],[27,7],[11,9],[6,20],[2,0],[0,-11],[2,-4],[4,-1],[4,0],[-1,5],[6,35],[9,-6],[8,-1],[21,4],[-2,2],[-2,4],[-2,2],[10,8],[-55,-4],[3,-12],[-1,-7],[-2,-3],[-1,10],[-3,4],[-4,2],[-4,2],[-8,1],[-37,-13],[-7,-5],[-3,3],[-3,6],[-3,3],[-3,-1],[-1,-4],[-2,-1],[-8,9],[-3,1],[-7,-4],[0,-3],[2,0],[3,-1],[4,-3],[0,-4],[-7,2],[-13,6],[-7,0],[1,-4],[1,-2],[2,-2],[-6,0],[-11,-7],[-6,-1],[-6,3],[-2,7],[-1,10],[-2,12],[2,2],[5,6],[0,4],[-2,4],[3,6],[6,4],[5,2],[-2,-8],[6,-7],[4,-1],[2,2],[1,5],[-1,4],[0,4],[3,5],[-2,3],[-2,1],[3,9],[3,2],[4,0],[6,2],[3,4],[6,13],[3,3],[29,11],[4,-5],[-3,-23],[1,-3],[18,3],[8,7],[7,10],[3,13],[-7,11],[10,0],[3,-2],[-1,-6],[1,-8],[0,-10],[1,-7],[4,-3],[5,-1],[8,-5],[10,-3],[11,0],[4,3],[6,9],[3,3],[4,-2],[-2,-2],[-2,-2],[5,-4],[20,4],[-5,6],[-4,1],[-8,1],[-10,6],[-4,2],[-4,-4],[-2,3],[-2,3],[-1,5],[0,5],[3,-4],[3,-3],[3,0],[4,3],[-4,3],[-2,1],[-2,0],[0,5],[3,0],[7,3],[-3,10],[1,29],[-5,6],[-15,4],[-7,5],[-5,7],[4,5],[5,3],[19,2],[27,16],[4,4],[4,8],[5,4],[7,0],[8,-3],[4,-3],[-1,8],[-3,4],[-5,1],[-4,0],[1,3],[1,3],[-1,3],[-1,3],[0,4],[2,4],[1,3],[-1,7],[1,4],[6,11],[2,-2],[2,1],[2,3],[3,2],[11,-4],[22,0],[3,-2],[2,-2],[3,-1],[3,2],[2,4],[1,2],[3,1],[21,-1],[1,0],[2,-1],[4,2],[18,0],[10,2],[4,3],[4,5],[4,3],[34,14],[5,5],[2,-7],[5,-1],[6,1],[4,3],[2,3],[1,6],[3,5],[3,2],[48,8],[10,4],[-5,0],[-18,10],[-10,2],[-18,-3],[-5,1],[-3,3],[0,3],[4,4],[0,5],[-2,5],[1,7],[-1,6],[-4,2],[2,5],[3,8],[2,3],[-7,-3],[-9,-6],[-6,-8],[-1,-7],[-9,-23],[-24,-43],[-6,-3],[-24,-4],[-2,-2],[-4,-8],[-3,-2],[-3,-1],[-4,1],[-3,1],[-3,3],[4,5],[7,5],[4,6],[0,8],[-9,-7],[-20,-8],[-14,-1],[-6,2],[-6,3],[-2,5],[-2,3],[-9,2],[-4,5],[1,9],[-3,4],[-10,-1],[0,-4],[3,-1],[2,-2],[2,-4],[1,-5],[-21,-12],[-12,-4],[-6,-4],[-3,-6],[-1,-9],[-2,-1],[-2,3],[-2,1],[-8,-7],[-50,-9],[0,3],[5,3],[12,11],[15,5],[56,71],[-1,2],[-1,6],[3,2],[4,4],[3,2],[3,1],[9,-1],[3,0],[5,3],[3,1],[3,2],[1,6],[1,7],[2,5],[-1,3],[0,1],[1,4],[-2,4],[3,3],[3,3],[3,5],[2,6],[2,5],[1,5],[1,3],[2,3],[0,4],[1,8],[17,21],[3,12],[-5,2],[-22,-2],[-7,4],[8,10],[3,5],[8,18],[3,4],[3,3],[-2,4],[15,37],[6,8],[4,10],[4,13],[5,10],[6,3],[6,-5],[13,-16],[6,-3],[6,2],[5,5],[7,2],[6,-5],[1,10],[-4,5],[-12,5],[0,4],[16,4],[5,-2],[8,-9],[5,-1],[0,4],[-11,8],[0,5],[6,-4],[4,-1],[3,5],[3,2],[2,-1],[-1,-6],[3,-4],[3,-4],[3,-2],[4,-2],[-2,12],[-2,5],[-1,4],[3,9],[4,6],[10,9],[-3,0],[-5,-3],[-3,-1],[-27,1],[-4,3],[5,4],[12,4],[6,0],[0,4],[-8,0],[0,4],[3,3],[7,3],[3,2],[0,4],[-22,4],[-5,-1],[-10,-6],[-90,-9],[-9,-6],[-4,-4],[-6,-2],[-12,0],[-6,4],[-3,5],[-2,6],[-4,5],[6,10],[-3,7],[-4,0],[-3,-11],[-1,-13],[-3,-7],[-5,-1],[-4,7],[0,4],[5,13],[-2,26],[6,6],[0,-1],[3,-3],[2,0],[1,1],[2,6],[1,1],[1,2],[-11,14],[3,5],[10,7],[-10,1],[-5,-1],[-4,-4],[3,-7],[1,-10],[-2,-9],[-6,-2],[-5,6],[2,11],[2,11],[0,4],[-1,1],[-2,3],[-1,1],[-1,-3],[-4,-6],[-4,-2],[-2,-4],[-3,-10],[-7,-15],[-4,-7],[-13,-7],[-5,0],[-4,7],[-6,6],[-12,-4],[-4,4],[1,2],[2,8],[0,6],[1,5],[2,2],[2,1],[4,0],[5,2],[11,10],[4,5],[0,3],[-9,0],[0,5],[6,3],[0,4],[-5,0],[-3,-1],[-6,-6],[0,-4],[-3,-3],[-5,0],[-1,7],[1,5],[6,5],[2,6],[-3,-1],[-3,-3],[-2,-3],[-2,-2],[-3,2],[-2,2],[-3,0],[-3,-4],[-1,-5],[1,-7],[0,-5],[-3,-3],[-3,0],[-5,-3],[-11,0],[-3,1],[-3,2],[-3,5],[-2,5],[-2,5],[-4,1],[-11,-2],[-7,1],[-4,5],[-2,-2],[-2,-1],[-5,-1],[2,10],[3,6],[4,4],[6,1],[11,-3],[4,1],[4,6],[0,4],[-3,1],[-3,2],[-2,4],[-1,5],[6,-1],[6,-4],[6,-1],[2,6],[-5,-1],[-11,3],[-10,6],[-6,8],[0,4],[-2,7],[-2,7],[-3,3],[-8,-3],[-3,0],[-3,3],[7,7],[6,0],[7,-3],[7,0],[-1,2],[-1,7],[0,3],[12,0],[13,-5],[1,-2],[4,-9],[3,2],[4,7],[3,2],[-17,15],[-4,7],[10,3],[22,-3],[8,3],[9,8],[4,0],[3,-1],[6,-6],[13,-3],[22,-2],[0,4],[-5,3],[-19,-2],[-12,6],[-23,18],[-4,26],[2,13],[3,9],[2,10],[-3,10],[3,3],[10,2],[8,4],[6,1],[3,1],[3,4],[2,0],[6,-4],[3,-2],[51,12],[0,4],[-4,1],[-11,7],[1,1],[1,2],[2,1],[2,0],[0,4],[-2,5],[3,5],[10,10],[-2,1],[-6,3],[3,3],[1,4],[2,4],[0,6],[-2,-1],[-1,0],[-1,-1],[-2,-2],[-7,3],[-40,1],[-27,-20],[-15,-4],[-10,12],[4,3],[2,17],[4,4],[-1,6],[0,2],[1,4],[0,4],[-2,0],[0,4],[13,4],[3,-1],[6,-6],[4,-1],[3,-3],[1,-14],[3,-3],[3,2],[0,4],[-1,7],[1,7],[-2,3],[-3,5],[-2,3],[-4,1],[0,-4],[2,-4],[-3,1],[-2,5],[-4,14],[1,3],[0,3],[-2,3],[-2,0],[-4,-1],[-1,2],[-1,4],[-2,3],[-2,5],[-1,9],[1,9],[3,3],[4,1],[3,5],[-4,3],[0,3],[3,4],[3,2],[-2,4],[8,9],[-3,3],[-3,0],[-7,-3],[0,-5],[0,-2],[-1,-1],[-3,-1],[0,-4],[2,0],[-8,-12],[-8,-3],[-7,8],[-6,15],[6,0],[12,5],[5,3],[-8,8],[-4,6],[-1,7],[2,-1],[3,-2],[2,-1],[-3,7],[-10,13],[4,-3],[3,0],[3,2],[1,5],[-14,15],[-6,4],[-4,-7],[4,-6],[-2,-5],[-5,-2],[-5,1],[3,-6],[1,-2],[0,-4],[-4,1],[-4,-1],[-5,-4],[0,-4],[3,-2],[2,-3],[0,-12],[-2,0],[-6,-4],[4,-3],[4,-5],[0,-6],[-5,-2],[-5,1],[-4,2],[-2,6],[-1,11],[2,7],[6,17],[1,7],[1,11],[3,5],[3,3],[3,8],[-9,0],[-3,2],[-3,5],[5,1],[3,5],[1,8],[2,7],[3,3],[13,9],[1,3],[0,3],[2,2],[2,0],[2,-2],[1,-3],[0,-4],[1,-3],[4,-4],[4,-3],[5,0],[4,3],[2,-5],[3,-2],[2,0],[3,3],[0,-2],[0,-1],[0,-1],[2,0],[-6,-15],[-7,-6],[-7,1],[-7,8],[-2,-12],[5,-3],[6,-1],[5,-3],[5,-4],[4,5],[3,6],[4,3],[-3,8],[1,9],[5,8],[4,4],[6,-2],[10,-9],[6,-1],[-2,5],[-2,3],[-5,4],[0,4],[2,2],[3,0],[6,-2],[-5,4],[-15,4],[-3,6],[-1,9],[0,4],[16,5],[6,-1],[11,-9],[5,-2],[48,-4],[3,1],[5,3],[3,0],[3,-1],[3,-5],[3,-2],[22,-4],[2,1],[4,3],[3,3],[2,3],[3,3],[3,-1],[13,-7],[2,-1],[2,-2],[2,-11],[2,-3],[5,1],[3,1],[0,2],[2,-5],[0,-4],[0,-5],[-2,-2],[0,-4],[6,-4],[0,-5],[-5,-4],[1,-6],[14,-15],[3,-7],[2,-9],[0,-11],[2,0],[0,10],[1,9],[1,9],[-2,8],[6,4],[6,7],[5,12],[2,16],[4,10],[10,1],[17,-5],[1,1],[2,2],[1,1],[4,-3],[4,-4],[5,-2],[6,-6],[4,-1],[14,0],[6,2],[6,6],[7,-7],[17,4],[8,-5],[2,-6],[1,-6],[1,-6],[8,-4],[3,-4],[6,-11],[4,4],[4,1],[9,-1],[0,4],[-4,3],[-5,2],[-4,3],[-2,7],[-2,4],[-4,4],[-5,2],[-4,0],[0,4],[2,3],[3,7],[2,2],[7,-4],[3,-1],[2,3],[3,3],[20,-5],[-5,7],[-5,5],[-5,3],[-5,1],[-6,0],[-2,1],[-1,5],[2,6],[3,-1],[7,-7],[5,4],[-2,6],[-6,4],[-6,2],[-27,0],[-2,2],[0,7],[1,4],[3,4],[3,3],[8,3],[32,28],[5,2],[2,2],[0,5],[1,11],[1,11],[2,-2],[2,-7],[1,-3],[1,-1],[0,-4],[8,7],[9,6],[23,5],[3,1],[13,11],[9,3],[0,4],[-9,0],[-4,3],[-4,5],[15,16],[0,12],[12,14],[0,15],[3,-2],[2,-3],[2,-2],[3,-1],[3,19],[2,5],[-1,1],[0,1],[-1,0],[0,2],[-5,-6],[-6,-4],[-19,-4],[-10,-10],[-6,-4],[0,4],[3,5],[0,5],[-1,4],[-5,2],[-4,-2],[-7,-12],[-7,-4],[-13,-18],[-4,-4],[-3,-3],[-5,-1],[0,3],[7,10],[4,5],[6,1],[3,5],[0,8],[-4,6],[-4,-6],[-2,0],[1,13],[-4,0],[-4,-8],[-3,-11],[-1,-4],[-3,3],[-3,5],[-1,4],[1,3],[-1,2],[-2,1],[-2,0],[-3,-3],[-1,-1],[-7,0],[-3,-2],[-3,-8],[-4,1],[-6,5],[-21,0],[-4,4],[2,6],[-3,3],[-23,11],[-5,0],[1,2],[1,2],[1,2],[1,2],[0,4],[-3,3],[-2,4],[0,4],[4,2],[4,0],[4,2],[2,5],[0,7],[4,4],[19,18],[7,3],[28,-1],[15,-6],[7,0],[0,4],[-19,6],[-5,6],[4,3],[13,1],[3,-2],[3,-7],[5,-7],[5,-3],[5,3],[-15,18],[-10,5],[-10,9],[-7,1],[1,5],[2,2],[3,0],[3,1],[3,2],[4,7],[3,3],[5,-7],[7,-1],[13,3],[15,-7],[6,0],[0,4],[-5,1],[-6,3],[-5,6],[1,10],[3,5],[11,-2],[4,1],[-3,4],[-3,10],[-4,3],[-5,0],[-2,0],[-1,-3],[0,-4],[0,-4],[0,-2],[-8,1],[-7,8],[-5,12],[-3,11],[3,4],[3,-2],[2,-3],[4,-2],[4,0],[4,2],[6,6],[-8,4],[-6,8],[-11,16],[0,4],[3,3],[3,1],[3,0],[3,-4],[3,6],[1,2],[-2,0],[1,9],[3,1],[2,0],[3,2],[6,14],[2,3],[2,-4],[1,-14],[3,-3],[1,3],[2,11],[3,3],[-4,17],[-1,11],[2,4],[3,4],[4,18],[3,7],[4,0],[16,-9],[5,2],[9,5],[4,2],[-2,-6],[-2,-4],[-1,-3],[-1,-6],[2,-3],[3,4],[8,14],[17,13],[6,3],[3,4],[3,10],[3,9],[7,1],[7,-7],[-2,-7],[-13,-10],[0,-4],[12,7],[2,-1],[1,-3],[5,0],[4,3],[3,2],[3,-8],[0,-4],[-1,-7],[3,1],[4,4],[4,2],[-1,-6],[-2,-4],[-3,-2],[-4,-1],[0,-4],[6,1],[3,-2],[2,1],[3,4],[3,11],[-1,7],[-6,11],[-2,12],[5,7],[7,7],[7,10],[1,-3],[1,-1],[-6,-28],[-1,-4],[1,-1],[1,-3],[1,-2],[2,-2],[3,0],[2,3],[3,1],[4,-2],[5,-5],[6,-6],[2,-5],[1,-3],[2,-7],[1,-5],[0,-4],[-2,-10],[0,-6],[2,5],[5,16],[1,3],[1,5],[-1,9],[-3,9],[-1,4],[-1,6],[-1,7],[-2,7],[-4,2],[-2,-4],[1,-9],[1,-9],[2,-6],[-4,1],[-2,3],[-3,4],[-2,4],[-8,3],[-4,3],[1,8],[8,19],[0,3],[10,-2],[4,2],[10,11],[3,1],[5,-2],[3,-6],[2,-6],[3,-2],[1,-5],[0,-9],[-1,-9],[-1,-3],[1,-5],[4,-4],[8,-5],[0,-7],[2,-8],[4,-7],[3,-3],[3,-4],[1,-10],[-2,-10],[-2,-4],[-4,-1],[-4,-4],[-5,-7],[-15,-13],[0,-4],[17,4],[5,-3],[-3,-13],[-3,-4],[-14,-12],[-9,-16],[-4,-4],[0,-5],[5,3],[5,4],[27,31],[3,1],[2,7],[6,3],[6,2],[5,2],[3,8],[2,9],[-1,9],[-5,3],[-2,3],[2,5],[2,8],[0,14],[-1,1],[-12,22],[-6,6],[-2,4],[-1,4],[-2,6],[0,6],[7,7],[3,10],[0,12],[-3,9],[5,0],[4,-3],[4,0],[4,3],[0,2],[0,2],[-1,1],[0,3],[5,-5],[6,-5],[6,0],[11,14],[6,3],[5,-4],[4,-11],[-5,0],[-2,0],[5,-4],[6,-4],[6,0],[6,5],[-18,17],[-8,13],[-1,14],[-7,5],[-4,4],[-2,4],[4,3],[5,-1],[10,-7],[19,-8],[4,-1],[11,-7],[4,-4],[14,-27],[4,-4],[14,-8],[10,-2],[13,-7],[6,-5],[6,3],[4,-9],[-1,-12],[-8,-6],[-8,-2],[-9,-5],[-9,-7],[-10,-12],[-9,-5],[-7,-3],[-4,-5],[-12,-20],[-4,-10],[-4,-11],[-1,-2]],[[47315,82020],[7,-14],[-5,-11],[-10,-4],[-5,7],[-1,9],[-1,4],[0,4],[2,5],[3,3],[4,1],[4,-1],[2,-3]],[[47232,82422],[3,2],[3,2],[3,-1],[2,-3],[0,-4],[-2,-5],[-2,-9],[-1,-10],[1,-8],[-6,-7],[-5,3],[-5,9],[-6,7],[-4,0],[-4,-1],[-3,1],[-1,6],[1,9],[1,6],[-1,6],[-3,5],[-5,2],[-21,-6],[-8,2],[-14,6],[-7,0],[0,4],[7,1],[6,2],[5,6],[3,12],[2,-4],[3,-1],[2,1],[2,4],[6,-10],[8,3],[6,7],[6,4],[24,-1],[6,-3],[5,-16],[-5,0],[0,-5],[0,-5],[-1,-4],[-1,-3],[0,-4]],[[47631,83047],[5,-2],[3,-3],[3,-5],[1,-10],[-12,-5],[-6,1],[-5,4],[0,4],[1,2],[0,1],[-1,5],[4,3],[2,1],[-1,2],[-1,1],[0,1],[2,4],[2,0],[2,-1],[1,-3]],[[47273,81051],[2,1],[2,-2],[-2,-4],[-1,-2],[-22,-9],[-3,1],[-4,3],[0,6],[4,5],[6,2],[6,1],[10,-2],[2,0]],[[47135,81221],[3,-1],[1,-3],[-2,-5],[-5,-4],[-11,-7],[-9,-1],[-3,-4],[-6,-1],[0,5],[4,8],[14,13],[3,3],[5,0],[2,-1],[2,-3],[2,1]],[[47319,81917],[1,1],[1,-1],[0,-4],[-5,-2],[-33,19],[-9,9],[3,5],[7,0],[7,-7],[3,0],[7,2],[5,-1],[7,-4],[2,-4],[-2,-4],[0,-4],[6,-5]],[[47986,83083],[-2,-12],[4,0],[13,5],[5,-1],[12,-8],[9,-1],[10,1],[3,3],[6,10],[4,4],[0,7],[2,11],[4,10],[3,4],[3,6],[2,26],[1,9],[5,0],[12,-10],[5,-2],[36,2],[32,18],[19,2],[5,4],[4,7],[5,6],[6,4],[7,1],[10,-8],[6,-2],[11,8],[7,-2],[27,-19],[4,-1],[6,1],[11,6],[5,1],[11,-3],[6,-3],[2,-4],[2,-2],[11,-14],[3,-6],[-1,-33],[-2,-10],[-4,-13],[2,-5],[5,-1],[5,1],[4,-1],[4,-2],[4,-4],[2,-6],[-1,-10],[-5,-22],[1,-4],[8,-2],[7,-5],[7,-7],[5,-11],[2,-4],[2,-9],[1,-5],[2,-2],[4,-5],[3,-3],[2,-5],[3,-6],[2,-7],[0,-8],[3,-17],[7,-5],[9,-4],[6,-13],[2,0],[-5,13],[-18,23],[4,11],[9,-3],[8,-10],[6,-9],[3,-19],[-1,-17],[-4,-13],[-6,-8],[-8,-5],[-17,-6],[-7,-5],[-7,-9],[-6,-9],[-6,-15],[-4,-8],[3,-3],[2,-5],[0,-5],[1,-3],[3,-1],[2,3],[2,4],[3,4],[6,12],[3,4],[9,6],[10,9],[6,3],[4,-2],[5,-4],[6,-1],[33,7],[2,-2],[3,-8],[3,-2],[3,-1],[0,-4],[1,-5],[0,-6],[5,-21],[3,-8],[5,-4],[2,-4],[1,-24],[1,-8],[9,-17],[2,-1],[-2,-6],[0,-3],[1,-3],[0,-3],[-1,-3],[-6,-11],[-1,-7],[2,-10],[-1,-10],[-3,-4],[-4,-4],[-1,-5],[4,-6],[-4,-3],[-4,-9],[-4,-1],[-3,5],[-3,8],[-2,12],[-4,2],[-3,5],[-2,7],[0,6],[2,7],[6,10],[2,9],[-1,19],[-3,13],[-5,11],[-20,22],[-7,6],[-8,0],[0,-4],[2,-5],[-1,-6],[-2,-5],[-3,-4],[4,0],[3,-3],[2,-3],[2,-2],[11,-1],[3,-3],[-5,-2],[-6,-2],[-2,-2],[9,-6],[-1,-7],[0,-7],[1,-5],[4,-2],[0,-2],[-1,-2],[-1,-4],[2,-4],[-8,-30],[-2,-6],[-10,-10],[-3,-6],[11,5],[13,9],[12,4],[8,-10],[2,-23],[-3,-17],[-7,-13],[-10,-12],[-1,-1],[-3,1],[-1,0],[-2,-13],[-2,-1],[-3,-2],[-2,1],[-1,5],[-3,4],[-16,2],[-12,-2],[-12,-5],[-5,-2],[-6,-2],[-1,-7],[0,-21],[0,-2],[-1,-11],[-1,-13],[-3,-11],[-3,-10],[-5,-8],[-11,-7],[-9,-12],[-12,-11],[-3,-2],[-11,-1],[-5,1],[-5,4],[0,4],[6,3],[2,1],[-21,10],[-4,0],[-3,11],[-7,4],[-9,0],[-5,3],[-2,-4]],[[49259,81038],[-8,-12],[-5,-6],[-13,-4],[-11,-10],[-5,-4],[-12,-6],[-23,-2],[-4,2],[-2,4],[-1,4],[-2,2],[-2,-3],[-8,-12],[-1,-4],[-16,-13],[-1,-1],[-4,-1],[-4,-5],[-7,-10],[-1,-2],[-2,-7],[-1,-3],[-2,-2],[-4,0],[-2,-2],[4,-13],[-2,-12],[-5,-8],[-5,2],[-5,1],[-19,-11],[-70,9],[-5,4],[-5,9],[-8,15],[-16,18],[-4,0],[-5,-3],[-6,4],[-6,7],[-3,6],[0,3],[0,1],[1,0],[1,1],[-2,11],[-1,3],[-2,8],[-3,10],[-3,8],[-2,3],[-5,5],[-3,4],[-4,11],[-3,4],[-3,1],[-9,-1],[-21,-4],[-4,-2],[-4,-3],[-2,-4],[-1,-5],[3,-6],[2,-6],[2,-5],[-11,0],[0,-2],[-1,-2],[-2,-1],[-1,3],[0,2],[-2,2],[-3,1],[-1,1],[-1,-2],[-3,-5],[-1,-1],[-2,0],[-3,3],[-7,3],[-2,0],[-3,-2],[-3,-4],[-4,-6],[-3,-2],[-3,1],[-3,3],[-2,0],[-1,-6],[-4,0],[-16,9],[-5,1],[-1,2],[-1,1],[0,5],[5,5],[-1,6],[-2,8],[0,9],[9,4],[1,2],[3,7],[2,4],[2,-5],[-2,0],[0,-4],[2,-1],[2,-3],[9,4],[14,1],[13,5],[6,13],[0,4],[0,3],[0,1],[-2,1],[-3,-5],[-2,-3],[-3,0],[-11,2],[-15,11],[-4,-4],[-22,-4],[-6,3],[-8,8],[-6,10],[-4,11],[12,-2],[5,1],[2,5],[-5,0],[-5,1],[-4,5],[-3,7],[1,1],[2,4],[1,5],[0,6],[-2,4],[-2,-2],[-2,-6],[-2,-2],[-2,-5],[-1,-1],[-3,1],[-3,2],[-2,5],[-5,-1],[-1,-5],[2,-5],[4,-6],[-10,-7],[-10,0],[-21,4],[-8,-2],[-10,-3],[-2,-1],[-9,-9],[-1,-14],[-2,-1],[-1,-1],[0,-2],[0,-5],[-5,-16],[-3,1],[-4,4],[-2,-2],[-4,-6],[-25,0],[-4,-1],[-5,-4],[-2,-4],[-2,-6],[-3,-4],[-5,-3],[-2,-6],[-3,-1],[-1,1],[-3,3],[-18,7],[-7,7],[2,6],[-4,12],[-13,4],[-6,8],[2,4],[21,-4],[0,2],[-1,5],[0,2],[4,0],[7,-3],[4,-1],[4,1],[9,7],[13,4],[7,6],[3,1],[4,-3],[0,4],[-8,11],[-2,14],[5,12],[10,3],[0,5],[-3,-3],[-8,-5],[-16,-1],[-3,-3],[5,0],[3,-3],[1,-5],[-1,-9],[4,-5],[-1,-6],[-5,-6],[-21,-7],[-6,0],[-39,7],[-5,-3],[3,-9],[-3,-5],[-4,0],[0,6],[0,4],[-13,14],[-6,2],[6,0],[4,1],[3,3],[4,6],[4,5],[9,3],[5,3],[4,6],[1,5],[-2,15],[0,9],[-1,9],[-2,8],[-4,4],[-2,-4],[-5,6],[-11,2],[-5,4],[-4,-4],[-15,-4],[-6,0],[2,2],[2,2],[0,4],[-1,3],[0,2],[0,2],[3,2],[0,4],[-2,7],[2,4],[10,1],[6,2],[8,12],[4,2],[8,2],[11,6],[9,10],[1,15],[4,0],[0,4],[-3,3],[0,4],[3,3],[5,2],[7,-1],[3,-1],[15,-11],[6,0],[8,5],[-2,8],[5,-2],[11,-5],[6,-1],[2,2],[0,6],[-1,7],[0,5],[2,2],[9,2],[5,5],[4,7],[7,15],[5,7],[4,0],[9,-9],[0,17],[10,7],[35,-2],[3,2],[2,3],[1,4],[2,3],[8,4],[6,5],[5,6],[8,13],[4,4],[5,1],[6,1],[5,2],[33,37],[16,30],[8,21],[4,14],[2,25],[2,13],[4,12],[3,9],[-2,5],[0,7],[0,7],[2,5],[2,1],[6,-4],[3,-1],[5,2],[14,14],[0,5],[-8,-1],[-14,-6],[-7,-2],[-5,5],[-12,22],[-3,9],[0,15],[5,15],[6,11],[5,5],[1,1],[1,8],[1,3],[1,1],[3,1],[11,12],[4,6],[-8,-1],[-4,-5],[-5,-2],[-21,34],[-6,14],[-1,6],[1,5],[5,2],[3,4],[-1,9],[-2,9],[-1,4],[0,8],[0,4],[2,3],[17,15],[-2,1],[-1,1],[-1,3],[-3,-5],[-4,-3],[-2,1],[-3,7],[-7,-7],[-7,-1],[-16,3],[-20,-8],[-5,-4],[-5,-4],[-20,0],[-5,-3],[-6,-6],[-9,-15],[1,-2],[0,-2],[-4,-4],[-3,-7],[0,-7],[4,-7],[-4,-4],[-2,-2],[-2,-2],[-3,1],[-4,6],[-6,3],[-6,5],[-3,2],[-3,-1],[-2,-3],[-2,-3],[-2,-2],[-6,-2],[-15,2],[-4,-3],[-4,-6],[-4,-2],[-4,3],[2,6],[1,2],[-1,4],[1,3],[4,10],[39,58],[4,3],[5,0],[5,2],[6,4],[22,22],[6,13],[18,15],[2,8],[1,10],[1,25],[1,7],[2,2],[1,-1],[1,-4],[1,-4],[3,5],[2,7],[0,2],[11,18],[3,2],[5,3],[4,7],[6,15],[6,10],[7,6],[8,3],[9,1],[3,-1],[2,-1],[2,-1],[3,3],[6,4],[7,2],[9,10],[31,16],[9,0],[-3,11],[-8,11],[-2,7],[5,-1],[6,-2],[5,-4],[3,-5],[6,4],[6,-3],[5,-7],[5,-9],[4,-3],[32,1],[11,3],[53,34],[11,0],[11,-6],[6,-6],[2,-6],[4,-5],[35,-30],[4,-6],[4,-7],[2,-3],[1,2],[0,12],[0,10],[-3,7],[-5,9],[-6,19],[-10,17],[-4,8],[-1,10],[3,6],[5,3],[12,2],[6,3],[10,11],[6,-1],[7,-10],[16,-55],[5,-9],[7,-7],[8,-5],[9,0],[0,1],[0,3],[1,3],[2,1],[3,0],[4,-3],[2,0],[5,0],[4,2],[7,5],[-1,8],[0,5],[3,5],[2,3],[2,-1],[3,0],[2,2],[3,3],[-4,1],[-14,-5],[-3,-2],[-2,-9],[-5,-3],[-3,1],[-9,1],[-12,6],[-11,9],[-9,12],[-6,14],[-33,89],[-1,9],[1,8],[3,9],[18,39],[15,24],[2,2],[3,6],[11,10],[3,7],[-24,0],[-10,6],[-7,14],[-2,20],[3,44],[-4,17],[5,10],[6,5],[26,12],[4,1],[4,-4],[2,-1],[1,3],[1,4],[2,3],[3,2],[2,1],[-4,7],[10,12],[1,10],[-4,-5],[-5,-2],[-9,-1],[-1,1],[-5,13],[0,5],[2,3],[3,3],[2,3],[6,13],[3,5],[9,5],[4,6],[5,15],[-5,9],[-6,17],[-4,10],[-1,5],[6,3],[6,8],[4,10],[0,12],[-2,0],[-1,-9],[-4,-7],[-8,-9],[-10,-7],[-5,-5],[-3,-6],[-2,-9],[-5,-4],[-12,-1],[-4,4],[-4,8],[-2,10],[3,6],[-2,7],[-3,5],[-3,3],[-3,-2],[1,-8],[-1,-9],[-2,-7],[-1,-7],[-1,-5],[-8,-13],[-5,-13],[-3,-5],[-7,-5],[-1,-7],[1,-8],[0,-7],[-10,17],[-3,3],[-4,1],[-4,1],[-3,3],[-3,4],[1,9],[2,10],[-1,9],[-4,4],[0,4],[9,4],[3,17],[-1,20],[1,12],[-5,-3],[-2,-6],[-3,-15],[3,-12],[-4,-3],[-7,1],[-4,-1],[-6,-3],[-6,8],[-10,22],[-8,13],[-4,8],[-2,9],[1,5],[1,5],[1,5],[-2,8],[-1,6],[0,2],[-7,4],[-10,24],[-6,8],[-26,45],[-5,3],[-1,2],[-3,9],[-3,4],[2,4],[3,5],[1,1],[6,21],[8,46],[9,27],[4,14],[2,6],[2,2],[6,3],[3,3],[4,5],[4,10],[2,11],[-2,11],[9,34],[5,16],[7,10],[5,2],[4,-3],[3,-5],[4,-2],[3,0],[11,8],[-3,4],[-14,8],[7,10],[4,4],[18,6],[3,-1],[2,-2],[2,-2],[2,-3],[11,-4],[5,0],[23,8],[5,4],[-19,0],[0,5],[5,1],[5,3],[4,2],[5,-2],[0,4],[-7,4],[-1,0],[-23,-8],[-89,8],[-5,1],[-4,3],[-4,2],[-4,-2],[1,-1],[0,-1],[1,-2],[-5,-3],[-4,2],[-8,9],[-4,-16],[2,-7],[2,-12],[0,-12],[0,-10],[-3,-9],[-5,-4],[-26,3],[-7,-1],[-6,-13],[-20,4],[1,-3],[1,-1],[-2,-2],[-3,0],[-1,3],[-2,3],[3,8],[2,-1],[1,-3],[0,4],[-1,2],[-1,2],[-3,-7],[-4,-5],[1,-6],[1,-2],[-2,-1],[-4,-4],[9,-11],[-2,-3],[-15,-8],[-22,-21],[-13,-2],[-9,1],[0,4],[-1,1],[-1,0],[0,1],[-1,2],[1,1],[0,3],[1,0],[-1,6],[1,8],[0,6],[-4,2],[0,3],[-4,-5],[-4,-8],[-1,-10],[3,-10],[-11,-2],[-14,11],[-10,21],[3,23],[-4,-3],[-7,-11],[-5,-2],[-4,0],[-21,13],[-3,3],[-2,4],[-3,8],[-1,7],[-2,4],[-5,2],[-1,-3],[-2,-6],[-2,-7],[-1,-7],[3,-14],[2,-8],[1,-4],[5,-1],[4,-1],[4,-3],[3,-6],[1,-7],[-3,-7],[-1,-7],[4,-9],[-4,-8],[1,-13],[2,-11],[-2,-5],[-2,-1],[-1,-3],[-2,-3],[-3,-1],[-6,1],[-6,3],[-7,7],[-3,2],[-10,-1],[-2,3],[-16,30],[-9,11],[-33,26],[-13,4],[-6,5],[-5,16],[-6,3],[-10,0],[-7,-3],[-6,-6],[-6,-8],[-4,-7],[-2,-6],[-2,-3],[0,-3],[0,-4],[1,-6],[1,-6],[2,-6],[3,-3],[2,-6],[3,-14],[5,-15],[7,-8],[1,-5],[-2,-11],[0,-5],[0,-3],[4,-10],[-6,2],[-12,8],[-6,2],[-3,4],[-1,9],[0,10],[3,6],[-2,3],[-1,4],[0,4],[1,5],[-5,0],[-2,2],[-2,2],[-1,5],[-2,8],[-1,8],[-3,3],[-6,4],[-26,39],[-8,18],[-5,21],[-2,23],[1,22],[2,11],[4,4],[6,0],[3,0],[1,2],[2,7],[2,-3],[3,-7],[1,-3],[4,-8],[2,-6],[2,-6],[0,-7],[-1,-14],[2,-5],[3,-7],[5,-5],[5,-1],[5,6],[1,3],[1,2],[0,4],[-10,24],[-2,6],[0,5],[-1,1],[-3,11],[-1,7],[0,13],[0,4],[2,6],[4,14],[2,8],[1,12],[2,11],[6,7],[11,9],[18,30],[2,1],[2,1],[1,2],[0,6],[0,3],[7,20],[1,6],[0,5],[-1,13],[1,6],[1,4],[9,14],[5,5],[3,3],[1,6],[3,14],[2,7],[9,9],[19,11],[6,12],[3,16],[-3,14],[-6,11],[-10,4],[5,10],[0,1],[-1,13],[-6,12],[-8,8],[-15,8],[-9,1],[-3,2],[2,5],[0,5],[-16,13],[-9,9],[-5,10],[12,16],[4,13],[-1,20],[-2,7],[-1,5],[-2,6],[-1,25],[0,1],[-2,16],[2,16],[4,10],[6,7],[9,4],[5,2],[4,-1],[18,-10],[4,-1],[4,2],[6,-5],[46,-8],[7,5],[-31,8],[-11,3],[-12,9],[-14,22],[-11,5],[-5,6],[-5,8],[-3,8],[-3,17],[-1,3],[-4,1],[-1,-4],[0,-6],[2,-7],[13,-24],[3,-11],[-2,-5],[-5,-1],[-7,0],[-6,4],[-3,8],[-1,11],[0,22],[0,5],[11,34],[20,38],[1,9],[-1,2],[-3,-3],[-4,-6],[-16,-40],[-4,-7],[-6,0],[-2,5],[0,18],[-1,8],[-3,6],[-4,2],[-3,-6],[3,-11],[4,-20],[2,-21],[-1,-9],[-3,-2],[-1,-4],[1,-12],[0,-12],[1,-8],[1,-6],[-3,-3],[-5,2],[-4,3],[-5,2],[0,-4],[4,-2],[3,-3],[3,-5],[2,-7],[-1,-8],[-3,-6],[-3,-5],[-3,-5],[-1,-7],[-1,-6],[-1,-5],[-3,-6],[-4,-6],[-3,0],[-9,2],[-4,6],[-4,16],[-3,16],[-1,12],[-11,18],[-2,8],[-2,5],[-4,-5],[4,-9],[11,-33],[2,-12],[-2,-6],[-6,2],[-18,19],[-3,7],[0,13],[-2,-5],[-3,-8],[-2,-8],[0,-6],[-1,-4],[-9,-15],[7,-16],[3,-10],[2,-10],[-5,0],[-12,8],[-10,4],[-3,5],[-1,15],[-2,2],[-2,1],[-2,3],[-1,5],[-1,5],[1,11],[0,5],[3,6],[1,5],[-1,5],[-3,18],[7,9],[30,63],[16,9],[12,10],[2,4],[10,27],[5,8],[8,6],[11,6],[9,9],[6,15],[-5,-4],[-10,-13],[-5,-3],[-11,-1],[-5,-3],[-4,-5],[-3,-7],[-7,-21],[-3,-4],[-33,-27],[-23,-42],[-2,-2],[-5,0],[-2,-2],[0,-3],[-2,-8],[-1,-8],[-1,1],[-3,-7],[-6,-2],[-7,1],[-5,2],[0,3],[0,5],[-1,3],[-2,-1],[-1,-3],[0,-4],[0,-4],[-2,-32],[1,-1],[4,-3],[2,0],[3,-12],[1,-7],[0,-5],[1,-5],[3,-4],[0,-3],[-1,0],[0,-4],[1,-1],[2,-3],[-1,-1],[-1,-2],[-1,-2],[15,-20],[7,-14],[2,-15],[-2,-8],[-3,-4],[-10,-4],[-4,-3],[-13,-18],[-3,-5],[-2,-7],[-2,-7],[-1,-5],[-1,-10],[-1,-5],[-6,-6],[1,-2],[1,-3],[1,-2],[-1,-13],[3,-4],[3,-1],[2,-6],[-1,-8],[-5,-2],[-3,-4],[2,-11],[-6,-14],[-2,-5],[0,-4],[0,-11],[0,-5],[-1,0],[-1,1],[-2,-2],[-6,-20],[-4,-8],[-7,-4],[0,-4],[4,1],[2,-2],[3,-3],[3,-5],[4,-13],[0,-2],[4,-4],[-3,-9],[-9,-16],[-5,-6],[-5,-5],[-7,-4],[-6,-2],[-3,1],[-5,4],[-4,0],[-2,-2],[-7,-5],[-3,-2],[-8,1],[-5,2],[-3,7],[-3,26],[-1,13],[2,12],[8,7],[10,16],[3,6],[0,12],[-1,14],[-1,13],[4,17],[-1,5],[-2,4],[-1,4],[1,6],[7,18],[6,21],[1,12],[-4,8],[16,15],[2,7],[1,8],[4,10],[5,9],[4,4],[8,4],[9,11],[9,16],[5,17],[-27,-36],[-10,-10],[-3,-2],[-4,0],[2,8],[-7,3],[-4,3],[-4,6],[-2,8],[0,16],[-2,4],[12,22],[2,4],[2,8],[4,7],[5,5],[4,7],[-6,-4],[-10,-13],[-7,-5],[-5,-6],[-3,0],[-1,4],[-2,6],[-1,7],[31,57],[2,7],[-1,3],[1,2],[2,3],[-4,2],[-3,-3],[-4,-4],[-4,-3],[-2,-11],[-12,-17],[0,-13],[-4,-10],[-1,-2],[-3,1],[-1,4],[1,4],[1,3],[1,16],[10,24],[21,37],[1,2],[0,3],[1,2],[2,1],[2,0],[2,-2],[2,-1],[0,-1],[0,-1],[3,-2],[2,0],[0,3],[-1,4],[-2,2],[-1,2],[-1,1],[-2,9],[-1,5],[2,4],[8,17],[2,5],[2,8],[-8,-3],[-7,-9],[-5,-10],[-7,-6],[2,12],[4,12],[4,11],[6,10],[-3,8],[4,6],[6,4],[5,2],[3,2],[1,4],[-2,4],[-4,2],[-11,-4],[-3,-2],[-2,-4],[-3,-3],[-3,1],[-1,5],[0,7],[3,12],[4,22],[2,8],[6,7],[5,-4],[7,1],[14,7],[0,3],[-7,0],[-12,-5],[-6,2],[6,19],[2,5],[3,2],[4,2],[2,3],[-1,5],[7,12],[9,5],[28,3],[22,-7],[10,2],[7,8],[18,28],[9,25],[6,9],[-6,-4],[-4,-8],[-3,-11],[-4,-9],[-12,-12],[-6,-13],[-3,-4],[-12,-1],[-30,8],[-7,-9],[-5,4],[-4,23],[-4,-2],[-3,-5],[-6,-13],[-4,3],[10,29],[2,8],[6,-8],[7,-3],[7,0],[5,3],[13,12],[7,4],[3,3],[3,5],[-9,-6],[-3,-1],[-6,0],[-1,0],[-4,-5],[-3,-1],[-6,-6],[-4,-1],[-3,2],[-5,6],[-3,0],[0,5],[1,2],[2,1],[1,2],[2,3],[0,5],[1,2],[7,17],[3,4],[11,12],[2,4],[2,4],[-6,4],[0,4],[3,2],[6,6],[7,-1],[4,1],[8,9],[6,0],[12,-5],[6,2],[11,9],[22,6],[5,4],[-46,-12],[-22,12],[0,4],[3,8],[2,3],[19,24],[5,10],[4,11],[-16,-17],[-2,-5],[-2,-4],[-3,-3],[-3,-2],[-3,-1],[-2,-2],[-1,-4],[-1,-5],[-1,-5],[-3,-9],[-4,-5],[-4,-2],[-5,-1],[-2,-1],[-3,-5],[-6,-3],[-2,-3],[-3,-8],[-8,-11],[-5,-4],[-5,-1],[-3,-3],[-4,-10],[-3,-3],[-3,-1],[-3,-3],[-3,-4],[-12,-20],[-18,-26],[-19,-18],[-2,-1],[-2,2],[-3,8],[-3,2],[-5,1],[-5,3],[-5,4],[-3,4],[4,10],[1,5],[1,5],[-3,0],[-10,-17],[-17,5],[-41,40],[-2,5],[1,9],[2,5],[4,1],[14,1],[10,-2],[9,-5],[8,-9],[2,4],[-7,6],[-3,4],[0,6],[30,24],[6,1],[18,-11],[7,-2],[15,1],[8,3],[6,5],[-26,-4],[-6,1],[-14,10],[-12,4],[-30,-20],[-10,-4],[-3,0],[-4,2],[-6,5],[-4,2],[-19,-2],[-21,6],[-7,0],[-5,-7],[-5,-4],[-7,2],[-6,4],[-4,5],[-2,3],[-1,3],[-1,4],[0,4],[1,5],[1,0],[2,-1],[2,2],[6,11],[4,4],[42,5],[4,2],[9,9],[5,1],[4,-1],[3,-3],[3,-4],[4,-4],[14,-8],[3,-2],[0,7],[-2,6],[-3,4],[-5,1],[0,4],[4,1],[3,0],[3,-2],[4,-3],[4,6],[6,3],[7,-3],[5,-2],[-20,13],[-6,7],[0,7],[4,4],[29,5],[11,6],[9,11],[-3,2],[-6,-1],[-4,-3],[-5,-10],[-5,1],[-11,3],[2,6],[11,14],[-12,3],[-26,-7],[-13,4],[9,3],[10,1],[0,4],[-2,2],[-6,7],[5,7],[3,12],[3,14],[3,11],[4,8],[8,6],[9,4],[7,-2],[3,-4],[5,-11],[3,-5],[4,-4],[5,-2],[9,-2],[15,4],[13,8],[0,4],[-4,-1],[-5,-3],[-4,-2],[-4,2],[-6,-5],[-6,2],[-6,5],[-6,2],[-4,4],[1,7],[1,8],[-6,5],[-3,0],[-6,-3],[-3,-1],[-2,2],[-5,5],[-3,2],[-3,4],[4,10],[12,17],[3,7],[2,2],[3,0],[8,-1],[3,3],[5,4],[7,-4],[12,-10],[6,-4],[27,0],[1,2],[2,4],[5,0],[5,-1],[2,-1],[1,0],[0,4],[-5,4],[-23,-4],[-7,-3],[-4,-1],[-2,2],[-7,11],[-3,3],[-23,8],[-4,6],[2,11],[10,16],[4,8],[-5,10],[6,11],[12,9],[10,2],[9,-8],[8,-12],[10,-8],[11,4],[0,4],[-12,3],[-3,3],[-4,9],[-3,4],[-2,1],[-3,4],[4,9],[7,8],[6,4],[0,4],[-7,3],[-4,-5],[-4,-7],[-3,-4],[-5,-1],[-10,-8],[-5,-3],[-6,1],[-10,6],[-6,1],[-12,-4],[-6,0],[-2,8],[1,2],[7,19],[2,3],[6,4],[2,3],[3,3],[2,-3],[1,-4],[2,-2],[6,1],[31,18],[13,13],[2,17],[-5,1],[-7,-9],[-13,-21],[-7,-6],[-6,1],[-7,4],[-8,1],[7,5],[2,4],[-1,5],[-2,8],[0,4],[-2,0],[-4,-5],[-19,-29],[-7,-4],[-14,-3],[-7,4],[-5,23],[1,0],[2,1],[1,2],[0,1],[0,2],[-3,5],[-1,2],[0,8],[1,4],[3,4],[-3,2],[-8,3],[-2,1],[-1,6],[-2,11],[-1,7],[1,5],[4,10],[1,3],[0,9],[0,7],[1,5],[5,0],[-1,3],[-1,6],[0,3],[4,2],[5,-1],[5,-3],[15,-18],[5,-4],[2,2],[5,-8],[2,-3],[9,-7],[3,0],[-2,3],[0,3],[-1,3],[-1,3],[20,4],[12,-3],[6,1],[1,4],[-8,8],[-13,3],[-12,-2],[-8,-8],[-9,13],[1,2],[2,6],[-9,2],[-5,9],[-3,12],[-5,9],[-5,2],[-4,1],[-3,2],[-2,8],[2,7],[6,7],[-2,6],[0,4],[10,7],[6,0],[8,-10],[3,0],[3,5],[2,6],[-3,1],[-2,3],[-1,4],[-3,4],[-4,2],[-23,6],[-1,7],[2,15],[-1,7],[1,5],[-2,12],[-1,7],[1,7],[2,5],[3,5],[4,4],[7,3],[7,0],[8,-2],[6,-6],[-1,-8],[1,-11],[2,-12],[2,-9],[3,-6],[4,-5],[4,-2],[4,0],[-2,3],[-1,3],[-2,7],[3,0],[3,-1],[5,-3],[-2,11],[2,9],[0,7],[-4,9],[-10,12],[-4,7],[3,6],[-2,0],[-1,1],[-1,3],[3,5],[6,10],[2,5],[4,-6],[3,-2],[11,0],[-2,-16],[8,-12],[11,-7],[9,-2],[-1,4],[3,6],[3,17],[3,6],[3,0],[13,-7],[4,-3],[8,-11],[9,-7],[20,-9],[-4,9],[-3,3],[-8,5],[-12,14],[-18,9],[-3,3],[0,3],[-1,1],[0,2],[1,4],[2,0],[2,-2],[2,-1],[2,7],[5,-3],[8,-13],[6,-4],[3,0],[5,3],[3,1],[4,-1],[6,-6],[3,-1],[3,-2],[11,-12],[11,-6],[8,-16],[6,-5],[-2,3],[-2,6],[-1,6],[-1,4],[-1,4],[-28,27],[-7,3],[0,4],[6,0],[2,4],[-1,7],[-2,8],[-4,3],[-9,2],[-3,4],[-9,3],[-11,16],[-7,2],[0,1],[1,1],[1,1],[-4,7],[-6,2],[-11,0],[1,2],[0,2],[1,2],[2,2],[0,4],[-10,19],[6,8],[10,-3],[7,-16],[6,6],[6,-2],[6,-1],[7,9],[-2,0],[1,6],[0,6],[-1,4],[-2,5],[4,0],[0,4],[-6,4],[4,3],[8,2],[3,3],[0,4],[-9,0],[-4,1],[-4,3],[2,4],[-2,3],[-2,2],[-3,2],[-2,1],[0,3],[1,7],[1,2],[-4,0],[-3,3],[-13,22],[1,10],[4,2],[7,-4],[11,-9],[5,-1],[5,1],[11,9],[6,2],[6,-1],[6,-5],[2,4],[3,4],[4,3],[3,1],[5,-2],[8,-8],[4,-2],[14,1],[4,-1],[19,-17],[-3,6],[-3,4],[-7,7],[3,3],[8,2],[4,3],[-18,4],[-5,0],[-2,-2],[-4,-5],[-2,-1],[-3,1],[-6,6],[-3,1],[-4,3],[-8,14],[-3,3],[-1,2],[-5,9],[-1,2],[-2,7],[-1,4],[0,5],[5,0],[-3,6],[0,6],[2,6],[3,6],[0,3],[0,4],[0,3],[1,2],[2,-1],[4,-2],[1,-1],[17,-13],[11,1],[-8,7],[-2,4],[1,5],[-2,4],[-3,-3],[-3,-1],[-2,-1],[-4,1],[0,4],[3,0],[1,0],[0,4],[-2,1],[-1,1],[-3,3],[16,10],[7,-4],[8,-6],[-31,30],[0,11],[1,5],[2,2],[15,10],[4,5],[3,9],[-2,0],[2,13],[1,12],[2,10],[5,6],[36,-9],[6,-5],[5,-7],[0,-3],[2,-9],[1,-8],[1,0],[0,-6],[-1,-5],[-1,-5],[-2,-4],[5,4],[2,6],[1,6],[0,6],[1,9],[3,4],[1,4],[-1,10],[5,-5],[8,-13],[5,-3],[8,-6],[3,-2],[3,-2],[0,-5],[-1,-5],[-1,-4],[-3,-5],[-10,-10],[-5,-15],[-5,-12],[-3,-8],[5,1],[17,21],[2,2],[2,9],[5,4],[5,3],[5,6],[3,10],[2,11],[3,8],[7,4],[12,-3],[11,-6],[14,-11],[0,-5],[0,-2],[-1,0],[1,-6],[-7,-9],[-4,-11],[-3,-12],[-5,-13],[5,3],[4,5],[8,13],[0,2],[0,3],[0,2],[1,1],[1,1],[11,13],[1,2],[11,8],[7,4],[3,1],[6,-2],[8,-9],[6,-2],[-4,4],[3,3],[2,3],[1,4],[2,2],[3,1],[5,-3],[4,-1],[3,1],[2,8],[3,2],[11,0],[5,-2],[3,0],[3,2],[2,4],[4,10],[2,2],[3,1],[0,1],[1,-2],[5,-11],[1,-2],[7,1],[23,-4],[24,4],[12,7],[19,16],[11,6],[17,4],[9,-1],[6,-3],[-2,-3],[-1,-1],[6,-7],[8,0],[16,7],[15,-8],[8,0],[4,12],[-5,2],[-5,4],[-5,6],[-3,8],[7,10],[4,3],[5,-1],[1,-3],[0,-6],[2,-5],[2,-2],[8,0],[18,6],[11,2],[15,-12],[9,0],[18,4],[10,-5],[-2,-10],[-5,-13],[-1,-8],[-4,-5],[-4,-11],[-2,-5],[-8,-8],[-2,-4],[-3,-11],[0,-10],[3,-7],[6,-4],[4,0],[3,2],[2,1],[2,-3],[1,-7],[-1,-5],[-2,-4],[-3,-1],[-3,-21],[-12,-26],[-15,-24],[-10,-14],[-12,-8],[-24,-9],[-10,-7],[-15,-17],[-2,-6],[-2,-9],[-5,-10],[-12,-15],[-61,-57],[-21,-12],[-5,-6],[-2,-6],[-3,-12],[-1,-5],[-3,-3],[-7,-4],[-9,-2],[-17,-14],[-3,-2],[-2,-4],[-1,-5],[0,-6],[-5,3],[-1,1],[2,4],[-4,2],[-7,1],[-8,6],[-1,-2],[0,-5],[3,-6],[4,-3],[9,-1],[4,-2],[2,-3],[6,-11],[-6,-11],[-1,-6],[1,-7],[-5,0],[-8,4],[-4,0],[-3,-3],[-5,-7],[-2,-3],[-8,1],[-15,9],[-8,3],[-23,-7],[-6,5],[-9,14],[-5,6],[-6,2],[15,-25],[9,-9],[11,-3],[11,7],[6,1],[4,-6],[5,-6],[7,-6],[4,1],[-1,9],[18,-14],[9,-3],[16,15],[9,-3],[5,-7],[-4,-8],[9,-3],[10,6],[10,10],[8,13],[4,6],[4,-1],[2,-5],[-1,-10],[-2,-5],[-38,-57],[-6,-6],[-8,-13],[-3,-4],[-6,-1],[-4,2],[-2,6],[4,9],[-8,9],[-9,-5],[-22,-22],[-3,-2],[-7,0],[-19,-6],[-5,1],[-4,0],[-3,-7],[-1,-8],[-5,-4],[-4,-2],[-18,-21],[-2,-4],[-2,-6],[-3,-9],[2,-1],[4,4],[8,4],[4,5],[4,6],[3,5],[3,6],[13,9],[10,13],[12,7],[3,0],[3,-2],[3,-5],[14,-4],[7,1],[4,4],[3,4],[13,9],[4,1],[1,-8],[-6,-12],[-8,-12],[-8,-7],[-10,-18],[1,-3],[1,-2],[1,-2],[1,-1],[-13,-1],[-5,-4],[-5,-7],[3,-6],[-2,0],[-6,2],[-16,0],[0,-5],[8,1],[4,-1],[4,-3],[-5,-14],[-4,-6],[-3,-4],[10,-4],[5,0],[6,4],[5,6],[2,4],[0,2],[6,0],[3,2],[5,9],[4,4],[5,4],[4,1],[5,3],[-4,6],[-10,11],[8,-1],[25,5],[27,-3],[9,3],[42,36],[17,5],[-3,-7],[-1,-2],[-2,-3],[3,-4],[4,1],[4,2],[4,1],[-6,16],[11,-5],[5,0],[5,1],[4,3],[5,7],[2,7],[-1,7],[3,6],[2,1],[3,-2],[3,-1],[4,2],[7,5],[4,1],[34,-1],[21,-16],[36,-15],[12,0],[12,4],[17,14],[4,2],[44,0],[2,-1],[3,-6],[3,-1],[3,1],[2,2],[3,0],[2,-3],[10,5],[24,-10],[8,1],[5,-8],[2,1],[2,4],[4,3],[5,-1],[13,-7],[2,4],[2,-1],[2,-3],[3,0],[4,2],[4,5],[3,1],[5,-4],[4,-1],[1,3],[1,3],[2,3],[2,3],[3,1],[6,-1],[12,-9],[6,-2],[7,2],[16,14],[5,1],[31,-1],[0,-2],[1,-5],[3,-6],[2,-3],[4,-1],[4,5],[4,0],[2,-2],[3,-8],[23,-31],[3,-10],[1,-11],[1,-10],[5,-10],[0,-3],[-2,-8],[3,-6],[8,-10],[-4,-1],[-2,-5],[1,-5],[2,-2],[4,-2],[-2,-3],[-6,-7],[-12,-18],[-5,-10],[0,-9],[-29,-31],[-8,-13],[-17,-55],[-7,-31],[-2,-12],[1,-11],[5,-5],[1,-5],[-4,-11],[-25,-47],[-9,-21],[-4,-21],[1,-5],[2,-4],[1,-4],[0,-8],[-1,-3],[-5,-8],[-1,-3],[-2,-11],[-4,-6],[-10,-9],[-7,-13],[-7,-14],[-4,-6],[-16,-12],[-5,-5],[-4,-6],[-3,-7],[-1,-3],[-4,-26],[-3,-7],[-4,-6],[-2,-9],[0,-5],[1,-8],[0,-3],[-1,-4],[-5,-7],[-3,-10],[-4,-6],[-26,-23],[-5,-12],[-6,-5],[-10,-6],[-3,-5],[-5,-15],[-3,-2],[-2,2],[-2,2],[-3,1],[-16,-2],[-65,-12],[-2,0],[-10,-6],[-10,-8],[-29,-36],[-12,-5],[-12,4],[4,-5],[5,-2],[11,0],[6,2],[12,8],[11,3],[55,33],[3,4],[2,6],[6,5],[7,1],[5,-4],[5,-6],[10,0],[3,-8],[0,-11],[-2,-11],[-3,-9],[-5,-6],[7,0],[1,-1],[1,-9],[1,-2],[3,-1],[3,-1],[2,-1],[1,-4],[26,-3],[6,-4],[9,-10],[3,-2],[10,-10],[0,-4],[-15,-17],[-5,-12],[-7,-4],[-13,-3],[-18,-15],[-6,-2],[-7,2],[-17,10],[-13,1],[-7,-3],[-3,-4],[-2,-5],[-15,-13],[-15,-21],[-5,-3],[-5,-3],[-3,-6],[-4,-20],[-3,-8],[-4,-4],[-20,-1],[-5,-3],[-10,-8],[-11,-6],[-11,-2],[-11,0],[-45,16],[-24,0],[-11,4],[-10,8],[0,1],[-10,11],[-6,9],[-4,3],[-5,0],[0,-3],[16,-14],[3,-5],[2,-1],[9,-21],[2,-4],[2,-1],[6,1],[1,0],[2,-3],[2,-4],[2,-4],[3,-1],[16,4],[6,0],[48,-16],[13,0],[4,2],[3,0],[3,-5],[5,-5],[50,-4],[2,-2],[5,-9],[2,-2],[3,-1],[18,2],[21,12],[6,6],[5,9],[5,8],[7,1],[-2,7],[-1,3],[-1,2],[5,5],[8,12],[6,3],[47,-4],[5,-3],[8,-13],[5,-4],[-3,-10],[-1,-3],[4,-1],[7,1],[4,-3],[1,2],[3,3],[2,3],[4,-5],[11,-10],[11,-4],[17,-18],[12,-8],[45,-10],[3,-2],[1,-5],[1,-5],[0,-5],[2,-1],[6,-3],[6,-8],[16,-38],[3,-8],[37,-57],[4,-14],[3,-7],[6,-5],[1,-4],[1,-5],[2,-2],[3,1],[1,3],[2,3],[1,1],[3,0],[3,-2],[4,-5],[2,-9],[-6,0],[0,-4],[4,-2],[9,3],[7,-1],[18,-16],[0,-4],[-1,-4],[0,-4],[2,-5],[3,-4],[-4,-3],[0,-4],[3,-2],[5,-6],[0,-4],[-2,-6],[1,-3],[3,-1],[2,-3],[1,-7],[1,-40],[0,-6],[-2,-9],[0,-3],[0,-6],[2,-12],[7,-16],[0,-10],[0,-3],[-1,-3],[0,-2],[-1,-3],[-2,-4],[1,-4],[1,-4],[1,-4],[1,-6],[4,-7],[6,-9],[-2,-7],[1,-4],[3,-3],[2,-6],[-1,-6],[-2,-5],[-1,-5],[1,-6],[5,-10],[1,-4],[1,-13],[2,-12],[1,-4],[1,-1],[4,-2],[1,-1],[0,-2],[1,-5],[5,-14],[3,-6],[1,-5],[1,-8],[2,-6],[3,-3],[1,-2],[8,-10],[2,-6],[0,-4],[0,-3],[0,-3],[0,-13],[1,-6],[2,-2],[-1,-5],[16,-74],[6,-19],[10,-15],[4,-4],[15,-8],[0,-5],[-6,0],[0,-3],[1,-1],[1,-4],[1,-5],[1,-4],[2,-4],[2,-3],[-2,-5],[-3,-3],[-7,-4],[1,-4],[1,-3],[2,-1],[3,0],[1,1],[0,2],[1,1],[1,0],[1,-1],[1,-3],[0,-3],[0,-1],[3,0],[2,4],[2,16],[5,-8],[5,-5],[5,-2],[12,-2],[14,-12],[57,-22],[62,-49],[8,-10],[3,-8],[1,-5],[-1,-5],[1,-6],[3,-5],[9,-9],[4,-4],[4,-10],[5,-14],[3,-15],[0,-12],[1,-4],[2,-4],[2,-3],[3,-1],[-1,-6],[-1,-2],[2,-3],[6,-10],[2,-3],[11,-4],[3,-3],[3,-4],[7,-4],[2,-6],[2,-15],[0,-3],[8,-10],[34,-17],[10,-11],[-25,-17],[-9,-13],[-6,-23],[6,-17],[8,-39],[5,-17],[29,-58],[50,-94],[4,-20],[-3,-19],[-2,-2],[-6,-7],[6,19],[1,10],[-4,4],[-6,3],[-12,11],[-6,3],[-5,-2],[-11,-9],[-6,-1],[-7,0],[-6,3],[-6,4],[-5,5],[-26,43],[-10,10],[-10,2],[-2,0],[-35,-15],[-5,0],[-17,0],[-10,-3],[-2,1],[-7,9],[0,1],[-16,3],[-6,-3],[-19,-16],[2,-1],[3,-2],[2,-2],[2,-3],[4,9],[8,5],[8,1],[7,-3],[11,-10],[3,-4],[4,-4],[5,3],[7,7],[50,12],[8,-4],[5,-12],[20,-40],[12,-8],[9,-13],[5,-4],[10,-2],[4,-2],[13,-21],[26,-28],[5,-3],[6,-1],[5,-3],[4,-7],[1,-4],[1,-6],[0,-6],[2,-2],[2,-1],[8,-8],[-2,-4],[5,-4],[5,-8],[3,-10],[1,-8],[23,-80],[3,-22],[1,-26],[-6,-31],[-2,-4],[-3,-1],[-5,-2],[-5,-4],[-25,-32],[-5,-3],[-4,-4],[-22,-41],[-6,-8],[-6,-4],[-4,-4],[-4,-8],[0,-7],[9,-1],[14,4],[4,-1],[8,-9],[3,-2],[7,-6],[14,-28],[7,-11],[5,5],[6,1],[11,-2],[4,-3],[8,-14],[4,-3],[0,4],[-1,9],[5,11],[8,11],[3,8],[2,14],[3,16],[5,15],[3,10],[10,13],[14,8],[15,4],[13,-1],[-2,4],[6,3],[6,-2],[6,-3],[6,-2],[24,0],[11,-4],[12,-8],[14,-4],[12,7],[-3,3],[-3,2],[-4,0],[-3,0],[0,4],[86,-27],[33,-22],[69,-69],[8,-12],[7,-14],[5,-28],[5,-18],[4,-17],[-2,-13],[2,-9],[0,-11],[0,-22],[6,-27],[-1,-6],[-3,-5],[-7,-31],[0,-6],[-1,-5],[-12,-43],[-9,-21],[-3,-4],[-3,-7],[0,-15],[1,-27],[-2,-11],[-5,-21],[-1,-10],[-4,-16],[-1,-9],[-1,-3],[-22,-12],[-4,-7],[-5,4],[-1,-5],[-1,-7],[-2,-4],[-2,-2],[-7,-14],[-19,-28],[-3,-7],[-3,-2],[-19,32],[-8,4],[-14,15],[-8,2],[0,-4],[10,-13],[6,-5],[13,-4],[2,-2],[2,-3],[0,-9],[-1,-3],[-6,2],[-3,-1],[-6,-2],[-4,-1],[-3,1],[-8,7],[-6,0],[-13,-6],[-8,-2],[8,-4],[46,-4],[6,4],[-1,-11],[-22,-30],[3,-3],[5,-3],[10,-2],[3,4],[2,6],[1,1],[0,-13],[-3,-9],[-16,-20],[-14,-12],[-9,-5],[-20,-4],[-5,1],[-2,3],[-5,12],[-9,16],[-2,8],[-1,-11],[-4,-6],[-11,-7],[-8,-11],[-2,-1],[0,-3],[-1,-8],[-1,-7],[-2,-3],[-3,-1],[-5,-5],[-2,-2],[-4,0],[-6,4],[-3,1],[-6,-1],[-13,-7],[-6,-5],[4,-3],[5,-1],[5,-3],[3,-9],[8,10],[17,5],[9,5],[8,9],[5,1],[4,-6],[1,-5],[-1,-6],[-1,-4],[-1,-1],[1,-5],[1,-4],[2,-8],[-3,-3],[-1,-5],[0,-14],[-1,-3],[-2,-3],[-4,-4],[7,1],[3,-2],[1,-3],[-8,-17],[-14,-17],[-12,-10],[-4,-3],[-12,-6],[-22,5],[-8,-1],[0,1],[-4,0],[-1,0],[-1,-1],[-5,-7],[-4,-2],[-4,0],[-4,-1],[-3,-5],[-5,5],[-1,0],[-7,0],[-19,-7],[-1,-4],[-1,-6],[-2,-7],[-3,-6],[-4,-3],[-5,-2],[-4,-3],[18,4],[2,2],[2,4],[1,4],[1,2],[18,7],[45,-9],[4,-4],[3,-8],[0,-6],[-2,-3],[-6,-1],[-10,3],[-4,0],[-9,-12],[-10,-3],[-5,-4],[2,-4],[2,-4],[2,-3],[2,-2],[24,0],[12,-4],[-3,7],[-1,8],[1,6],[6,0],[1,-8],[3,-11],[4,-9],[3,-5],[59,-9],[34,15],[90,11],[7,-6],[-3,-19],[-1,-4],[-1,-3],[-2,-3],[-1,-2],[-10,0],[-2,-2],[1,-13],[2,-10],[5,-16],[2,-23],[-2,-23],[-6,-19],[-8,-12],[-18,-8],[-8,-8],[-3,-1],[-6,1],[-3,-2],[-3,-3],[-2,-5],[-2,-2],[-6,-4],[-18,0],[-6,-2],[-5,-5],[-11,-14],[-14,-28],[-3,-7],[1,-15],[3,-23],[-10,-5],[-21,9],[-19,9],[-11,-5],[-27,-36],[-11,-7],[-60,-17],[-11,-7],[-1,0],[-3,-5],[-3,-6],[0,-3],[-10,-8],[-10,-20],[-11,0],[-5,1],[-13,6],[-3,1],[-10,0],[-2,2],[-5,6],[-5,3],[-12,1],[-5,2],[-53,26],[-9,2],[-1,-1],[-6,-5],[-10,6],[-36,-18],[-48,0],[-45,-20],[-2,1],[-3,3],[-2,2],[-3,-2],[-1,-5],[2,-11],[-2,-6],[-5,-4],[-6,3],[-26,22],[-2,3],[2,6],[4,4],[8,4],[0,4],[-3,3],[-6,7],[-3,3],[-1,-2],[-4,-3],[-2,1],[3,8],[-3,2],[-2,2],[-9,2],[-7,0],[-2,0],[-5,-2],[-4,-10],[-2,-15],[-4,-11],[-7,-1],[-6,8],[3,11],[5,10],[2,8],[-6,4],[-17,-2],[-4,-2],[10,-11],[1,-4],[1,-11],[-1,-7],[-4,-4],[-3,0],[-5,3],[-5,4],[-2,3],[-2,6],[-9,6],[-6,8],[-9,4],[-4,3],[-5,8],[-5,9],[-31,24],[-5,3],[0,-4],[3,-1],[5,-5],[4,-1],[6,-11],[22,-33],[2,-8],[0,-7],[-7,-3],[-17,-2],[-5,-2],[2,-2],[2,-2],[0,-4],[-12,-3],[-8,-3],[-3,-4],[-1,0],[-9,2],[-9,-22],[-1,-3],[-6,2],[-6,6],[-19,5],[-6,0],[-6,-3],[-11,-8],[-5,-1],[-7,2],[-10,2],[-6,0],[-6,-3],[-5,-3],[0,-1],[-5,-5],[-4,-6],[-3,-3],[-2,4],[0,6],[-1,3],[-11,4],[-7,-1],[-2,1],[-1,2],[0,1],[-2,7],[-2,2],[-2,-3],[-10,-22],[4,1],[3,2],[3,2],[3,4],[6,-15],[3,-4],[5,-2],[5,0],[4,-1],[2,-5],[-2,-10],[4,-3],[2,-1],[-10,-16],[1,-9],[-6,-3],[-22,-1],[-5,1],[-21,14],[-51,8],[-10,8],[-6,-1],[-10,-5],[-3,-6],[-4,-12],[-1,-13],[2,-6],[7,-3],[1,-7],[-3,-10],[-4,-8],[-2,0],[0,22],[-6,15],[-59,61],[-47,24],[-7,0],[-16,-5],[-4,-1],[-10,-9],[-7,-1],[-10,4],[-4,-2],[-6,-7],[-1,-1],[-5,-5],[-3,-2],[-3,1],[-5,3],[-3,1],[-5,-2],[-10,-5],[-11,-4],[-3,-6],[-3,-8],[-4,-8],[-20,-12],[-6,0],[-5,2],[-4,5],[-3,9],[-4,14],[-1,3],[-1,0],[0,1],[-1,2],[-2,0],[-1,-1],[0,-3],[0,-3],[4,-5],[3,-20],[3,-8],[-5,-7],[-5,-8],[-4,-10],[-3,-12],[-3,-16],[0,-12],[5,-25],[-6,0],[-7,-2],[-4,-5],[-2,-9],[2,-9],[4,-4],[13,1],[0,-4],[-3,-10],[0,-2],[-3,-1],[-2,-2],[-1,-3],[-2,-14],[-4,-4],[-4,2],[-4,5],[-2,-13],[-6,-5],[-6,-2],[-3,-6],[-2,-10],[-3,-12],[-1,-14],[2,-15],[-4,-3],[-12,-4],[-4,-1],[-6,2],[-6,4],[-4,0],[-4,-6],[-10,13],[-16,27],[-19,23],[-3,2],[-2,-1],[-7,-5],[-3,-1],[-2,-2],[-3,-6],[-3,-1],[-3,1],[-3,2],[-4,6],[1,2],[1,5],[-6,3],[-7,6],[-3,9],[4,11],[-10,-1],[-3,1],[-4,3],[-1,4],[-1,5],[-3,6],[-2,10],[2,8],[4,8],[3,8],[-5,-3],[-3,0],[-3,3],[-1,-4],[0,-2],[-3,-4],[-2,-2],[-4,0],[0,-4],[4,-3],[1,-6],[-1,-7],[-2,-4],[-4,-2],[-13,2],[5,-9],[15,3],[7,-6],[-10,-4],[0,-4],[2,1],[6,-1],[-2,-5],[7,0],[0,-3],[-3,-2],[-2,-3],[0,-4],[2,-4],[0,-4],[-6,1],[-3,7],[-3,8],[-5,4],[-23,9],[-13,-2],[-20,-17],[-11,-6],[-46,-4],[0,-1],[-1,-1],[-1,-2],[-2,0],[-3,16],[-2,1],[-2,-2],[-2,-2],[-1,-1],[-6,0],[-6,-3],[-3,-5],[3,-7],[0,-5],[-2,-2],[-3,-4],[-2,-4],[-1,-4],[0,-4],[2,-4],[0,-2],[-4,-11],[0,-4],[-3,-4],[-14,3],[-5,-3],[-5,-8],[-5,-4],[-12,-6],[-3,-5],[-12,-27],[-3,7],[-2,21],[-4,4],[-5,-2],[0,-5],[0,-7],[-3,-6],[0,-4],[1,-2],[5,-6],[-3,0],[-2,-1],[-3,-3],[-3,-3],[0,-4],[0,-5],[-1,-5],[-2,-2],[-9,-6],[3,1],[2,-1],[4,-4],[1,0],[4,1],[1,-1],[1,-2],[1,-8],[1,-2],[1,-5],[-4,-11],[-8,-16],[-2,-1],[-6,2],[-3,-1],[-2,-2],[-8,-14],[-4,-14],[0,-3],[-3,2],[-3,3],[-8,12],[-1,3],[-2,4],[-1,8],[1,5],[-1,4],[-2,6],[-7,17],[-5,8],[-5,5],[-17,11],[-11,3],[-10,8],[-4,3],[-6,-1],[-7,-3],[-6,-6],[0,-9],[2,-10],[-3,-8],[-5,-5],[-4,-3],[-11,-5],[-14,-2],[-10,5],[-3,18],[3,1],[2,1],[1,2],[0,4],[-1,3],[-1,2],[0,-1],[-2,12],[0,6],[1,3],[0,2],[5,12],[3,2],[8,4],[18,14],[9,5],[11,9],[6,1],[8,-12],[6,-4],[6,5],[4,9],[2,6],[0,5],[2,3],[10,0],[10,8],[32,45],[10,10],[4,2],[1,3],[0,7],[0,7],[-2,12],[3,3],[4,0],[2,0],[20,14],[0,4],[3,8],[2,23],[1,12],[1,10],[2,8],[6,6],[6,0],[2,2],[3,6],[2,0],[2,-3],[1,-7],[1,-8],[0,-7],[2,2],[1,1],[1,2],[5,-4],[11,-1],[5,-3],[-3,8],[-5,4],[-9,4],[-5,8],[1,5],[1,5],[-1,7],[0,3],[7,-2],[20,2],[8,4],[5,9],[3,10],[4,10],[-1,9],[1,6],[2,3],[4,-1],[20,23],[3,7],[2,10],[5,8],[12,12],[8,21],[-2,52],[3,25],[2,5],[4,14],[-1,5],[-1,8],[0,9],[1,3],[25,0],[3,-1],[6,-6],[2,-1],[17,-2],[5,2],[4,4],[19,28],[2,4],[1,3],[2,4],[3,2],[-2,6],[-3,16],[-1,4],[-1,4],[-5,9],[-2,5],[10,-1],[2,1],[2,7],[-1,6],[-2,5],[-3,3],[0,4],[21,11],[51,6],[10,6],[6,1],[20,0],[6,1],[9,7],[5,0],[35,-12],[23,1],[35,-11],[8,-11],[5,-3],[32,2],[20,8],[10,2],[18,-1],[11,2],[8,7],[2,-4],[-4,-8],[4,-4],[5,12],[1,4],[0,8],[0,4],[-1,3],[-1,5],[0,23],[-1,11],[-3,7],[5,-2],[3,1],[1,6],[1,9],[2,5],[4,6],[1,5],[-4,6],[6,9],[9,-3],[10,14],[19,33],[5,5],[5,4],[6,2],[6,1],[6,3],[6,8],[24,56],[2,3],[3,1],[3,3],[1,5],[0,5],[2,6],[2,5],[1,3],[16,22],[10,17],[5,4],[11,6],[5,5],[2,7],[-1,7],[-4,5],[-1,-11],[-5,-6],[-6,-3],[-6,-1],[-5,-2],[-4,-7],[-3,-8],[-4,-7],[-17,-15],[-2,-3],[-3,-6],[-18,-29]],[[49699,80503],[5,-12],[0,-5],[-1,0],[-1,-1],[0,-1],[-1,-2],[-11,-4],[-4,-3],[-8,-9],[-1,-3],[-1,-3],[0,-13],[0,-6],[-1,-3],[-31,-13],[-10,4],[-36,35],[-2,4],[-9,9],[-3,2],[-11,-2],[-4,-3],[-5,-4],[6,17],[11,13],[24,15],[0,-2],[-1,-4],[0,-2],[6,1],[7,7],[9,16],[7,7],[7,0],[42,-23],[7,0],[2,-1],[4,-3],[0,-2],[0,-5],[0,-1],[1,-1],[2,1],[1,0]],[[49733,80559],[0,-4],[1,-2],[3,-4],[2,-2],[0,-4],[-23,4],[0,4],[6,4],[7,17],[4,0],[3,-4],[0,-3],[-1,-3],[-2,-3]],[[50253,80917],[6,-9],[2,-9],[-1,-7],[-7,-4],[-33,4],[-5,3],[-5,6],[-4,9],[-3,7],[4,16],[2,4],[4,1],[34,-16],[3,-2],[3,-3]],[[48728,82018],[1,-3],[3,-4],[1,-4],[-1,-7],[-2,-1],[-3,1],[-6,7],[-6,13],[-2,5],[-3,0],[-8,0],[-2,1],[-4,10],[0,4],[7,9],[3,-3],[3,0],[5,1],[2,-2],[5,-5],[3,-7],[3,-7],[1,-8]],[[48861,82040],[8,1],[4,-1],[3,-4],[-5,-8],[-10,-23],[-6,-5],[-7,-1],[-7,-5],[-7,-7],[-5,-7],[-1,-2],[-1,-2],[0,-2],[0,-4],[0,-5],[-1,-1],[-1,1],[-10,-9],[-4,-7],[-18,-14],[-3,-1],[-3,1],[-8,4],[0,-1],[-1,-2],[-3,-2],[-1,1],[-1,4],[0,5],[1,5],[1,2],[2,3],[3,6],[1,5],[-3,3],[-4,-3],[-6,-11],[-4,-3],[0,2],[-9,11],[-1,0],[-2,-1],[-1,1],[0,1],[0,5],[0,2],[0,1],[0,5],[-1,4],[-6,7],[-9,23],[-5,8],[0,5],[1,6],[1,9],[0,13],[1,19],[0,9],[-3,9],[5,4],[35,16],[4,0],[19,-4],[5,-1],[11,-7],[3,-3],[1,-8],[1,-7],[1,-3],[-1,-1],[4,-4],[4,-3],[1,0],[0,-3],[0,-4],[0,-4],[1,-1],[0,-1],[5,-7],[1,-7],[1,-5],[1,-3],[3,-1],[4,0],[6,3],[4,0],[1,2],[3,5],[2,2],[1,-1],[4,-3],[1,-1]],[[48267,83226],[15,-3],[2,-2],[1,-6],[-2,-7],[-2,-7],[-2,-4],[0,5],[0,3],[1,2],[1,3],[-7,6],[-7,1],[-7,-1],[-6,1],[3,4],[3,3],[4,1],[3,1]],[[48591,83343],[-6,-5],[0,-8],[3,-9],[1,-10],[-4,-5],[-7,-4],[-13,-3],[-15,2],[-12,5],[-12,9],[-11,12],[0,4],[-1,4],[-2,16],[-1,5],[0,4],[1,1],[1,2],[0,2],[2,2],[-7,12],[-5,12],[-3,14],[1,19],[4,13],[7,13],[9,9],[9,2],[-1,2],[0,5],[-1,2],[7,0],[3,0],[18,-11],[4,-6],[6,-11],[4,-13],[6,-29],[-4,-8],[12,-15],[1,-13],[-3,-2],[-4,0],[-2,-3],[1,-7],[3,-3],[11,-6]],[[48602,83485],[3,-2],[2,-5],[1,-5],[-2,-3],[-3,0],[-3,5],[-3,10],[-18,21],[-3,10],[-4,16],[0,8],[-10,8],[-2,4],[-2,10],[-3,10],[0,9],[9,6],[9,-9],[8,-11],[3,-2],[2,-1],[2,-2],[2,-13],[2,-3],[2,-1],[3,-3],[3,-8],[3,-7],[2,-8],[2,-19],[0,-3],[-2,-4],[-3,-8]],[[48324,83473],[0,-7],[0,-6],[1,-6],[1,-5],[0,-4],[-3,-2],[-3,-2],[-2,-4],[-1,-5],[-2,5],[-5,-9],[-6,-7],[-8,-5],[-8,-3],[-11,2],[-4,-2],[-2,-13],[-1,-2],[-3,-4],[-7,-7],[-7,-3],[-7,3],[-3,13],[1,14],[6,8],[15,10],[-6,21],[-3,5],[-11,7],[-2,0],[1,11],[7,11],[12,15],[-6,3],[-8,2],[-7,-2],[-6,-5],[-7,-21],[-4,-10],[-8,-7],[-9,-16],[-4,-5],[-8,-2],[-3,6],[0,10],[4,10],[-2,1],[-1,3],[-1,1],[3,9],[12,23],[-9,8],[4,3],[2,4],[1,6],[0,9],[1,7],[2,5],[10,9],[15,8],[4,5],[3,3],[3,-2],[-2,-4],[-3,-17],[0,-4],[2,-10],[2,-5],[3,-1],[0,4],[-2,12],[6,13],[9,11],[10,7],[7,11],[4,3],[4,1],[4,3],[3,4],[3,4],[3,-1],[1,-3],[1,-3],[2,-25],[3,-33],[1,-18],[2,-6],[4,-6],[4,-5],[3,-2],[1,-2],[-1,-5],[-1,-5],[0,-4],[1,-3],[2,-2],[4,-3]],[[48276,83695],[2,2],[4,-3],[2,3],[0,2],[-1,2],[-1,3],[5,1],[4,3],[4,0],[1,-8],[-9,-18],[-3,-12],[0,-10],[-5,-5],[-8,-3],[-7,0],[-6,4],[4,4],[2,7],[2,8],[2,7],[6,9],[2,4]],[[48389,83700],[14,18],[9,6],[6,-3],[1,-6],[1,-8],[-1,-7],[-4,-5],[-4,-9],[-6,-7],[-11,-33],[-24,-56],[-6,-23],[-2,1],[-7,-11],[-5,-3],[-2,-4],[-3,-23],[-2,-9],[-7,-6],[-11,1],[-9,8],[-5,15],[-2,28],[0,11],[3,9],[4,4],[5,3],[4,6],[9,8],[21,5],[9,10],[-6,0],[-10,-4],[-10,0],[-4,9],[3,14],[8,15],[9,13],[6,5],[8,3],[21,25]],[[48419,83753],[2,-4],[3,-9],[-6,-6],[-9,-4],[-6,-1],[3,10],[4,5],[9,9]],[[48435,83790],[1,-2],[2,-2],[1,1],[1,3],[1,-9],[-2,-8],[-3,-9],[-2,-18],[-3,3],[-6,16],[3,6],[3,14],[4,5]],[[48435,83822],[3,4],[7,-2],[3,3],[-1,-8],[-3,-4],[-2,-5],[2,-8],[-6,-5],[-5,4],[-2,10],[4,11]],[[48456,83879],[8,0],[4,1],[3,3],[-4,-10],[-5,-7],[-6,-3],[-8,0],[2,5],[1,4],[5,7]],[[48288,83912],[-14,-1],[-7,1],[-7,8],[3,6],[3,4],[3,2],[4,0],[4,-5],[8,-8],[3,-7]],[[48105,83952],[15,7],[7,-1],[3,-10],[-4,-8],[-16,-2],[-1,-10],[-5,-6],[-7,-1],[-6,-3],[-5,-11],[2,-10],[-6,-1],[-17,10],[-3,7],[-1,9],[-3,10],[6,4],[19,4],[6,2],[10,8],[6,2]],[[48419,83891],[3,-4],[4,-8],[2,-8],[-4,-4],[-9,0],[-4,2],[1,6],[-2,3],[-2,1],[-1,0],[-3,0],[1,-8],[-3,-7],[-9,-9],[0,-5],[4,4],[5,3],[11,2],[4,-3],[-2,-6],[-4,-7],[-25,-20],[-11,-4],[-9,8],[2,1],[3,4],[3,5],[0,6],[-2,3],[-4,0],[-7,-3],[-1,-2],[-2,-4],[-1,-5],[-3,-1],[-9,-3],[-23,-14],[-4,-6],[-3,-3],[-4,1],[-3,3],[-4,1],[-2,-1],[-7,-5],[-3,-2],[-26,0],[-1,-2],[-2,-4],[-1,-4],[-3,-2],[-4,0],[-5,2],[-8,6],[-5,6],[-4,9],[-2,11],[3,9],[6,5],[7,1],[5,-1],[5,-6],[3,-9],[4,-5],[5,4],[0,5],[-2,0],[-1,1],[-1,1],[-2,2],[5,2],[13,-3],[4,3],[5,5],[19,5],[13,10],[5,7],[-2,3],[-5,-2],[-16,-11],[-14,-4],[-7,1],[-5,6],[-2,6],[2,6],[2,4],[3,2],[4,1],[2,3],[4,12],[1,4],[1,5],[3,3],[2,1],[10,-1],[17,10],[3,3],[2,6],[0,6],[-1,4],[-3,4],[-18,-11],[-6,-1],[-2,-2],[-2,-2],[-3,-1],[-2,3],[-5,12],[-2,5],[-4,5],[-5,4],[-26,5],[-6,3],[-4,4],[-4,5],[13,11],[-2,6],[-6,7],[-1,8],[10,1],[4,2],[5,5],[2,-5],[3,-2],[2,0],[2,3],[1,11],[8,8],[11,4],[9,1],[4,-3],[13,-5],[-1,-3],[-1,-6],[0,-3],[9,-1],[6,-12],[12,-32],[1,-4],[0,-4],[0,-3],[3,-1],[28,0],[2,-2],[2,-4],[2,-2],[5,4],[2,0],[3,0],[2,-2],[6,-12],[2,-2],[3,-1],[5,1],[2,0],[3,-3],[4,-6],[3,-6],[1,-8],[3,-1],[4,1],[3,-2],[-2,-12],[-2,2],[-2,1],[-6,1]],[[48205,84035],[-2,-6],[-4,-12],[-2,-4],[-2,-4],[-2,-2],[-3,-2],[-4,0],[-10,-17],[-14,-14],[-5,-2],[-7,4],[-3,0],[-1,-6],[-1,-6],[-3,4],[-3,7],[-1,6],[7,1],[8,9],[12,24],[4,5],[9,8],[6,3],[8,9],[5,2],[7,1],[3,-2],[-2,-6]],[[47946,84232],[1,-4],[1,-5],[1,-4],[2,-3],[-8,0],[-2,-2],[-2,-4],[-3,-3],[-2,-2],[-2,-1],[2,-6],[-3,-3],[-4,-3],[-4,-1],[-18,5],[-5,2],[1,6],[3,6],[4,2],[4,3],[1,6],[-1,7],[-3,4],[7,6],[7,2],[5,5],[2,16],[2,0],[0,-1],[2,-3],[2,-1],[2,0],[1,-2],[1,-2],[-4,-10],[-2,-2],[9,-5],[3,-3]],[[48243,84261],[14,-11],[6,-8],[-5,-6],[0,-4],[7,0],[-3,-22],[-6,-12],[-7,-5],[-11,-2],[-5,4],[-5,14],[-4,3],[-4,2],[-8,11],[-6,3],[17,23],[9,8],[11,2]],[[48164,84257],[5,4],[9,6],[6,2],[3,-3],[7,-2],[3,-3],[-7,-5],[-9,-2],[-9,1],[-8,2]],[[48344,84394],[-7,4],[-6,8],[-2,8],[7,5],[9,-3],[7,-8],[2,-9],[-10,-5]],[[47987,84419],[4,-4],[2,-5],[3,-4],[5,1],[-2,-9],[-2,-3],[-3,-2],[-4,-5],[-1,-5],[-3,-12],[-2,-5],[-6,-3],[-21,7],[0,-4],[18,-6],[5,-6],[2,-9],[1,-13],[0,-11],[-3,-7],[-5,3],[-5,1],[-11,0],[0,-4],[5,-2],[10,2],[4,0],[5,-5],[3,-6],[4,-5],[5,-1],[0,-4],[-6,-8],[-23,6],[-9,-6],[-8,11],[-2,6],[-8,31],[-1,10],[2,7],[0,4],[-5,8],[-3,3],[-3,1],[3,5],[2,4],[4,11],[1,7],[1,5],[1,3],[4,1],[2,9],[-3,18],[-8,26],[6,5],[12,7],[3,1],[25,-21],[-3,-2],[-1,0],[-6,2],[0,-4],[6,-1],[9,-10],[6,-1],[0,-4],[-7,-5],[-6,4],[-6,6],[-11,8],[-6,9],[-5,6],[-6,-4],[1,-2],[2,-2],[2,-3],[0,-3],[1,-5],[2,-1],[3,0],[2,0],[7,-4],[1,-1],[3,-7],[4,-3],[9,0],[4,-1]],[[47982,84512],[-1,-3],[-1,-1],[2,-3],[2,1],[3,1],[2,1],[2,-1],[8,-7],[-2,-4],[-4,3],[-6,-7],[-5,0],[1,-6],[3,-2],[6,0],[4,-2],[2,-4],[0,-4],[-24,-8],[-7,2],[-22,15],[-3,7],[1,11],[4,9],[5,6],[7,0],[3,-3],[4,-1],[3,1],[3,3],[2,-3],[2,-1],[3,-1],[3,1]],[[48315,84431],[-3,5],[-1,10],[3,38],[2,10],[4,5],[8,1],[0,4],[-2,3],[-1,3],[-2,6],[3,4],[2,0],[6,-4],[0,5],[-4,8],[3,-1],[2,-2],[1,-2],[2,-3],[-1,-10],[-5,-17],[-4,-20],[0,-19],[2,-4],[4,-10],[2,-9],[-5,-5],[-4,-2],[-5,-4],[-4,-2],[-5,4],[1,4],[0,2],[1,2]],[[48342,84533],[-5,2],[-1,7],[0,7],[4,8],[-2,1],[0,1],[0,2],[2,4],[2,2],[1,1],[2,-3],[-3,-23],[0,-9]],[[48019,84613],[4,-1],[6,0],[5,-3],[3,-8],[-3,-3],[-5,-10],[-1,-2],[-4,0],[-3,5],[-2,4],[-2,2],[-3,2],[-6,7],[-13,0],[0,-5],[3,0],[2,-1],[1,-3],[-2,-3],[0,-5],[8,1],[2,-3],[1,-8],[2,-5],[5,0],[9,3],[-6,-13],[-7,-5],[-16,-2],[-2,-1],[-4,-3],[-2,0],[-2,2],[-2,8],[-1,2],[-4,-1],[-12,-11],[0,-5],[20,0],[17,6],[5,-1],[5,-2],[2,-2],[1,-4],[-1,-4],[-6,-12],[-11,1],[-6,-2],[-5,-4],[-4,4],[-10,-1],[-5,2],[-2,2],[-1,1],[-4,7],[-1,3],[-1,4],[-2,2],[2,1],[6,4],[-9,1],[-17,13],[-9,2],[-2,-4],[-2,-2],[-2,-2],[-2,1],[-3,2],[-5,2],[-12,11],[0,4],[6,5],[4,10],[4,12],[5,10],[6,-4],[19,4],[0,-4],[-3,-1],[-5,-3],[5,-8],[8,10],[9,14],[6,8],[0,-4],[-1,-2],[-2,-3],[-2,-7],[15,-7],[6,-1],[0,4],[-2,0],[-4,4],[6,3],[13,11],[8,2],[3,-6],[1,-5],[-2,-5],[-4,-4],[4,-3],[8,5],[4,-3]],[[48176,84431],[-4,-4],[-26,10],[-6,5],[-6,7],[-2,8],[-2,16],[-12,10],[-3,13],[17,0],[-4,5],[-2,7],[-1,7],[2,7],[4,7],[3,1],[3,-2],[14,-25],[2,-5],[3,-4],[5,-4],[3,-1],[-1,7],[0,4],[1,1],[1,2],[1,1],[-4,7],[-1,1],[-1,2],[-2,4],[-1,3],[1,2],[2,1],[1,2],[2,3],[5,0],[8,-5],[-3,11],[-7,9],[-8,7],[-7,2],[4,6],[3,8],[0,9],[-3,5],[0,5],[6,-1],[4,-4],[3,-5],[6,-5],[1,-5],[0,-5],[1,-4],[3,-4],[2,-2],[13,-8],[3,-3],[3,-6],[4,-5],[3,1],[4,2],[5,1],[-6,-18],[2,-1],[6,9],[4,11],[3,-2],[21,-32],[0,4],[-1,2],[-1,4],[-1,2],[0,8],[-4,8],[-10,13],[-4,12],[1,6],[3,6],[4,12],[-3,-1],[-4,1],[-2,2],[-2,2],[1,8],[-2,5],[-2,3],[-1,4],[-1,7],[1,2],[2,1],[11,8],[2,3],[2,7],[2,7],[2,4],[4,-2],[2,1],[1,1],[0,2],[3,-6],[2,-4],[7,-6],[2,-4],[7,-13],[1,-3],[13,-12],[5,-8],[3,-6],[1,-5],[3,-41],[2,-18],[1,-8],[-1,-9],[-2,-13],[-1,-8],[-2,-5],[-7,-8],[-2,-6],[3,4],[5,4],[5,2],[4,-1],[2,-7],[-1,-5],[-3,-5],[-2,-4],[1,-9],[4,-7],[4,-4],[2,-4],[-2,-6],[-9,-6],[-4,-4],[24,4],[6,-3],[1,-4],[-3,-6],[-7,-4],[0,-4],[8,1],[6,4],[6,1],[6,-8],[2,-2],[4,-1],[7,1],[4,-2],[3,-5],[2,-6],[1,-3],[4,-1],[3,3],[2,4],[1,2],[12,0],[8,9],[7,3],[8,0],[5,-7],[21,0],[-5,-15],[0,-4],[2,-6],[-2,-6],[-2,-5],[-5,-9],[-10,-10],[-5,-2],[-11,-2],[-2,-4],[0,-13],[-3,-8],[-6,-5],[-5,-4],[-3,-3],[-2,-5],[-17,-26],[-4,-6],[-5,-4],[-15,-3],[-4,2],[-3,7],[1,11],[8,13],[-1,5],[0,4],[2,1],[0,2],[2,5],[0,3],[2,3],[5,11],[3,4],[3,4],[27,15],[0,4],[-8,-5],[-8,-2],[-23,-1],[-2,2],[0,3],[0,5],[-1,3],[-7,13],[-3,5],[-3,2],[1,-6],[1,-5],[3,-9],[-3,-9],[-1,-4],[-3,-3],[2,-5],[-4,-5],[-2,-6],[-3,-6],[-4,-3],[-3,5],[-2,11],[-1,12],[-1,8],[-2,4],[-1,1],[-2,-2],[-2,-3],[-2,4],[-2,3],[-3,1],[-3,1],[0,-4],[4,-5],[-4,-4],[-40,-12],[0,5],[4,3],[8,13],[0,4],[-5,0],[-5,-2],[-5,-3],[-4,-4],[-5,10],[-5,11],[3,2],[3,2],[2,3],[2,5],[-13,-2],[-5,2],[-13,20],[0,2],[-2,6],[-1,2],[-1,3],[-1,1],[-1,2],[-1,5],[13,10],[5,3],[6,-1],[5,-5],[5,-7],[6,-7],[7,-2],[-3,8],[-18,17],[-3,5],[-2,2],[-3,1],[-3,-1],[-6,-3],[-4,0],[4,4],[0,4],[-2,1],[-5,3],[2,1],[0,1],[1,2],[-2,2],[-2,3],[-1,5],[2,6],[-4,-1],[-6,-8],[-4,-3],[2,6],[0,5],[-1,5],[-3,5],[-2,-8],[-3,-2],[-3,-2],[-3,-5],[0,-6],[3,-11],[-1,-7]],[[47993,84646],[12,15],[5,1],[3,-6],[-5,-7],[-8,-4],[-7,1]],[[47605,84719],[4,-4],[10,-1],[5,-3],[-5,-7],[-6,-2],[-5,5],[-3,12]],[[48043,84760],[-1,-7],[-2,-3],[-3,-2],[-4,-1],[1,5],[0,1],[-1,1],[0,2],[12,13],[6,3],[5,-4],[0,-13],[-3,-2],[-10,7]],[[48090,84946],[3,0],[1,0],[0,4],[-3,2],[-3,6],[-1,7],[1,6],[6,-3],[9,-11],[2,2],[3,-3],[2,-4],[2,-4],[1,-6],[-23,0],[0,4]],[[48068,84666],[-6,-6],[-2,1],[-14,19],[-2,2],[-17,24],[-3,3],[-2,4],[-2,5],[0,4],[5,1],[3,-1],[2,-3],[2,-4],[1,-8],[23,24],[3,7],[7,2],[13,0],[-14,12],[0,4],[15,9],[8,2],[8,-2],[6,-5],[-3,3],[-3,3],[-2,2],[-1,2],[-1,2],[6,3],[2,1],[0,4],[-16,0],[-4,2],[-7,9],[-5,1],[-16,0],[-7,3],[-2,9],[-4,-3],[-2,0],[-13,11],[4,5],[4,5],[3,3],[6,0],[0,3],[-1,2],[-1,1],[0,2],[8,1],[9,4],[17,11],[-26,-8],[-8,0],[1,5],[2,3],[3,1],[3,-1],[0,4],[-7,0],[2,2],[2,2],[2,4],[1,4],[-12,-10],[-2,0],[-8,19],[-2,3],[1,7],[-1,3],[-3,1],[-1,4],[1,7],[3,5],[0,6],[2,1],[1,2],[1,2],[1,3],[-2,1],[-2,2],[-1,1],[0,4],[21,1],[5,3],[-7,4],[-3,3],[-1,7],[1,8],[1,4],[5,7],[5,-4],[10,-6],[3,-1],[2,2],[15,-8],[0,-4],[-8,1],[1,-8],[6,-10],[4,-5],[-1,-9],[3,-12],[4,-12],[4,-6],[0,6],[-1,3],[1,8],[-2,4],[-4,10],[-2,6],[3,2],[1,4],[0,4],[1,2],[13,4],[2,2],[5,2],[7,-4],[7,-8],[3,-8],[8,12],[-7,5],[-3,3],[-1,4],[-1,9],[-1,4],[-2,0],[-4,-1],[-2,1],[0,1],[-1,5],[-1,2],[-3,5],[-2,3],[-1,4],[2,1],[1,1],[1,2],[2,0],[-1,4],[-2,3],[-2,1],[-3,0],[23,23],[6,9],[3,-2],[3,2],[1,2],[3,2],[9,0],[7,3],[18,10],[2,3],[7,11],[50,42],[14,21],[8,8],[6,0],[6,-7],[5,-11],[3,-11],[2,-10],[5,-9],[1,-6],[-6,-3],[-2,-4],[-6,-24],[2,-4],[4,-3],[3,-1],[4,0],[0,-5],[-6,-3],[-12,-11],[-5,-6],[2,-5],[-1,-4],[-2,-2],[-3,-1],[-4,-2],[-2,-8],[-8,-4],[-1,-4],[1,-6],[-1,-4],[-2,-3],[-3,-1],[-8,0],[5,-10],[11,-4],[11,1],[7,4],[14,17],[4,2],[5,2],[3,0],[-3,-4],[0,-4],[2,0],[-1,-3],[-2,-4],[-1,-1],[1,-3],[1,-6],[-7,-4],[-2,-2],[-2,-2],[-3,-6],[-1,-2],[-5,-3],[-4,1],[-8,6],[-5,2],[-12,-2],[-5,2],[-8,6],[-4,0],[6,-21],[3,-7],[-2,-3],[-1,-2],[0,-3],[1,-4],[-5,-5],[-14,-3],[-9,-14],[-4,-3],[-3,1],[-4,3],[-3,0],[-7,-8],[-15,-4],[-4,0],[0,-4],[10,0],[36,10],[9,6],[4,0],[3,-3],[3,-6],[2,-7],[-1,-8],[1,-1],[3,-3],[-2,-4],[-2,-2],[-3,-1],[-2,-1],[3,-2],[3,-2],[3,0],[4,0],[-5,-7],[-4,-6],[-5,-6],[-6,-2],[-26,6],[-6,2],[-2,0],[-1,-4],[2,-3],[6,-2],[5,-5],[9,-4],[4,-6],[0,-4],[-2,-2],[-5,-10],[-2,-4],[-5,-4],[-4,1],[-3,2],[-5,1],[0,-4],[1,-1],[1,-2],[2,-1],[0,-4],[-7,-4],[-5,1],[-4,5],[-4,6],[-2,8],[-2,3],[-2,1],[-2,-3],[2,-6],[3,-7],[2,-4],[-2,-4],[-9,5],[-3,3],[-1,3],[-2,7],[-8,18],[-2,8],[0,8],[4,16],[8,9],[10,3],[10,1],[0,4],[-26,0],[0,-4],[-2,-7],[-6,-9],[-8,-9],[-5,-4],[3,-6],[6,-18],[3,-4],[4,-2],[3,-4],[3,-6],[3,-4],[-2,-1],[-1,-2],[-1,-1],[-2,0],[1,-4],[3,-2],[2,-1],[1,-1],[1,-4],[1,-13],[-23,7],[-9,6],[-3,-2],[-1,-3],[-2,-4],[-2,-4],[3,-2],[6,-3],[3,-2],[6,-14],[1,-3],[-1,-5],[-4,-3],[-5,-1],[-5,1],[0,-4],[2,0],[0,-4],[-6,1],[-13,11],[-2,-4],[2,-1],[2,-5],[2,-2],[-3,-6],[-3,-4],[-8,-6],[2,-1],[1,-2],[1,-1],[-5,-7],[-17,-14]],[[49179,85316],[13,-2],[6,-3],[0,-7],[-8,-6],[-1,-2],[-1,-6],[2,-4],[0,-3],[-3,-3],[3,-11],[1,-8],[-2,-6],[-6,-4],[-13,16],[0,4],[3,4],[-3,9],[-8,15],[3,-2],[4,-1],[3,1],[3,2],[0,5],[-19,0],[0,3],[11,6],[12,3]],[[49097,85287],[8,1],[17,9],[8,-1],[-7,-12],[-14,-5],[-26,1],[-1,2],[-6,16],[-1,5],[-3,3],[-3,3],[-2,3],[-6,12],[0,3],[1,3],[0,2],[-1,4],[-2,1],[-3,-4],[-2,1],[-2,2],[-3,0],[-2,0],[-1,6],[4,12],[1,2],[6,7],[12,5],[4,0],[4,-3],[9,-10],[6,-3],[6,-3],[15,-25],[-4,-4],[0,-4],[3,-1],[2,-2],[4,-6],[0,-3],[-5,-1],[-7,-3],[-6,-5],[-3,-8]],[[49242,85393],[4,-2],[1,-5],[1,-7],[0,-9],[-3,-4],[-5,-3],[-10,-3],[-4,-3],[-6,-13],[-5,-4],[-4,1],[-21,10],[-3,3],[-3,5],[-10,24],[-3,4],[-3,-1],[-4,-6],[-4,-5],[-6,2],[-2,-3],[-3,0],[-3,2],[-3,1],[4,-9],[-9,1],[-3,-2],[-2,-7],[-6,4],[-17,-3],[-7,7],[-3,13],[1,13],[3,11],[5,8],[0,4],[-2,4],[-2,4],[-1,4],[-1,4],[-3,-2],[-2,-3],[0,-3],[1,-4],[0,-4],[-2,2],[-3,1],[-2,-1],[-2,-2],[2,-2],[1,-4],[0,-5],[0,-1],[2,-8],[-3,-5],[-6,-7],[0,-4],[-10,4],[-8,15],[-4,20],[5,18],[2,4],[-2,26],[7,18],[13,9],[13,3],[13,-1],[8,-2],[9,-11],[4,0],[4,2],[3,0],[3,-2],[4,-7],[3,-3],[-4,-3],[-2,-1],[5,-6],[16,-10],[-2,-1],[-1,-1],[-1,-2],[1,-2],[1,-1],[2,-1],[-17,-8],[-2,2],[-3,-10],[-5,-9],[-6,-6],[-5,-2],[4,-4],[5,-2],[11,-2],[4,4],[4,7],[5,5],[10,-11],[4,1],[4,4],[4,2],[4,-3],[3,-6],[3,-3],[5,4],[-1,-2],[0,-7],[-1,-3],[6,-2],[4,4],[5,4],[5,2],[6,1],[3,-1],[2,-4],[-2,-6],[-12,-9],[-4,-5],[3,-8],[4,-5],[5,-1],[6,1],[-4,13],[-2,4],[5,0],[9,7],[5,1]],[[49293,85482],[-1,-7],[1,-4],[8,-5],[-5,-6],[-12,-2],[-6,-4],[-1,13],[-4,7],[-5,1],[-5,-5],[1,-9],[-6,-2],[-5,4],[6,11],[4,3],[5,0],[3,2],[1,7],[-1,4],[-9,10],[-3,2],[11,5],[4,-1],[0,-4],[-1,-2],[-1,-2],[8,0],[3,0],[3,-3],[-4,1],[-3,-4],[0,-5],[3,-5],[3,-1],[4,1],[6,4],[0,-3],[0,-1],[-1,0],[-1,0]],[[49165,85486],[-9,1],[-8,2],[-7,6],[-7,9],[-1,11],[5,8],[8,4],[7,0],[0,-1],[0,-3],[1,-2],[2,-2],[2,-1],[2,0],[12,3],[3,0],[4,-2],[0,-3],[0,-1],[-1,0],[-1,-1],[-4,-7],[0,-9],[0,-8],[-8,-4]],[[49213,85527],[4,-3],[3,0],[2,2],[4,1],[0,2],[-2,10],[1,4],[-1,8],[1,6],[3,3],[5,0],[0,-5],[-3,0],[0,-4],[4,1],[3,-1],[3,-2],[2,-6],[-2,-5],[-6,-10],[-1,-3],[0,-10],[0,-7],[2,-5],[5,-1],[0,-4],[-8,-3],[-5,-1],[-2,2],[-1,8],[-3,6],[-3,3],[-5,1],[0,13]],[[49320,85584],[6,10],[4,5],[1,-1],[3,-13],[1,-6],[-13,0],[-6,-3],[-2,-7],[-3,-3],[-5,-14],[-2,-3],[-3,-2],[0,13],[-5,-1],[-12,-16],[1,6],[1,2],[0,4],[-6,-3],[-2,0],[-2,3],[-10,-16],[-6,-6],[-5,2],[0,-8],[-2,-4],[-1,1],[-1,7],[2,8],[2,3],[2,2],[4,3],[2,4],[5,9],[2,3],[4,2],[3,0],[2,2],[1,8],[-2,2],[-4,7],[7,0],[11,7],[7,1],[0,-4],[-4,-3],[-4,-4],[-7,-10],[2,-1],[1,0],[1,-3],[3,4],[9,2],[7,9],[4,1],[5,-1],[4,2]],[[49153,85600],[-3,2],[-2,-1],[-2,2],[-1,5],[6,0],[8,-2],[5,2],[8,13],[4,3],[5,-4],[0,-3],[-1,0],[-1,-1],[-3,-4],[0,-3],[1,-5],[-6,-1],[-1,1],[0,-4],[21,-8],[4,-2],[5,-16],[2,-3],[3,-2],[3,-1],[3,-1],[2,-4],[0,-3],[-5,0],[-4,-3],[-6,-10],[0,5],[1,4],[1,4],[2,3],[-14,15],[-7,5],[-8,1],[0,-5],[2,-2],[2,-6],[-4,4],[-2,-5],[-2,-2],[-2,1],[-3,2],[-2,2],[-1,3],[-4,13],[-1,3],[-1,3],[-2,5]],[[49541,85724],[2,9],[5,6],[6,3],[6,0],[0,-3],[0,-1],[-1,0],[-1,0],[-4,-1],[-1,-3],[-1,-4],[4,0],[0,-5],[-5,-3],[-5,-6],[-4,-1],[-1,9]],[[49782,86367],[4,-1],[3,-4],[1,-5],[-2,-6],[-7,-7],[-7,2],[-8,5],[-8,0],[0,-5],[1,-2],[1,-1],[1,-2],[1,-2],[-8,1],[-6,10],[-9,20],[0,5],[32,0],[3,-2],[0,-4],[0,-4],[1,-2],[2,0],[2,1],[2,2],[1,1]],[[49695,86249],[2,10],[5,7],[5,3],[5,0],[-4,-10],[-19,-25],[-2,-4],[0,-5],[2,-1],[2,3],[3,6],[1,1],[4,3],[4,0],[1,-6],[0,-3],[0,-7],[-2,-6],[-2,-2],[-22,-3],[-4,-2],[6,-6],[14,-3],[7,-6],[-13,-15],[-4,-2],[-1,-1],[0,-3],[1,-4],[0,-2],[2,-1],[2,3],[1,0],[2,-2],[4,-1],[2,-1],[-11,-12],[-5,-2],[-5,1],[-3,8],[-2,5],[-3,0],[-2,-3],[1,-4],[1,-3],[2,-3],[0,-3],[-2,0],[-3,-1],[-4,-3],[0,-4],[11,0],[-2,-4],[-1,-4],[-3,-8],[5,8],[3,2],[4,2],[-8,-20],[-2,-9],[5,7],[6,3],[3,-3],[-4,-11],[9,-8],[0,-4],[-7,0],[0,-4],[2,0],[0,-4],[-5,3],[-3,-3],[-3,-4],[-5,0],[4,-4],[-1,-5],[-1,-3],[-3,-1],[-2,0],[0,-4],[2,0],[5,-4],[-4,-6],[2,-8],[5,-6],[3,0],[-2,-8],[-4,-5],[-5,-1],[-4,2],[1,-8],[6,-17],[-2,-7],[-4,1],[-9,6],[1,-12],[0,-13],[-3,-11],[-4,-8],[-1,3],[-1,1],[3,-7],[1,-6],[-1,-7],[-3,-8],[3,-5],[1,-5],[-1,-4],[-3,-3],[-1,3],[-4,9],[-2,-6],[-3,1],[0,4],[3,6],[0,4],[-4,4],[-9,-2],[-4,2],[-4,7],[5,8],[-1,9],[2,5],[3,3],[3,1],[3,0],[0,3],[-5,6],[-2,2],[0,4],[7,0],[-2,11],[3,9],[5,10],[4,28],[4,12],[3,12],[-2,16],[-1,2],[-2,-1],[-1,1],[-2,6],[1,2],[0,3],[5,12],[-3,0],[-4,-3],[-1,-2],[-3,0],[-1,3],[1,4],[4,16],[2,6],[3,5],[2,3],[0,4],[-5,0],[-4,-6],[-8,-18],[-4,13],[-4,10],[-5,6],[-9,3],[0,-5],[5,-2],[4,-6],[4,-7],[4,-8],[-2,-9],[-6,6],[-2,2],[-4,1],[0,-11],[-2,-8],[-2,-2],[-2,8],[-3,-3],[-1,-6],[-1,-7],[-2,-4],[-3,0],[-11,8],[0,2],[-6,7],[-1,-1],[-2,6],[0,3],[2,4],[3,3],[9,2],[3,2],[-3,3],[-7,13],[-1,-5],[-2,-8],[-3,-6],[-3,-1],[-2,6],[-2,6],[-4,-2],[-8,-6],[-6,-1],[-3,1],[-1,2],[-1,3],[0,3],[-2,1],[-6,1],[-2,3],[-3,16],[-3,11],[1,4],[4,5],[4,4],[5,3],[6,2],[4,-1],[4,-4],[3,-5],[4,-3],[4,0],[-2,8],[10,-4],[0,4],[-2,0],[0,4],[13,2],[4,-5],[0,-17],[2,0],[3,3],[1,1],[-2,3],[-1,7],[-1,2],[6,0],[-1,3],[-1,6],[6,3],[8,-3],[6,-8],[3,-13],[4,7],[3,5],[-7,9],[5,15],[2,-2],[2,-1],[4,0],[-3,6],[5,2],[13,0],[-6,5],[-8,2],[-7,4],[-2,13],[-5,-7],[-3,-2],[-3,1],[-3,4],[-1,6],[1,6],[3,4],[0,4],[-9,0],[-3,1],[-3,4],[1,7],[-1,10],[-2,19],[-4,-11],[-3,-7],[-3,-3],[-4,2],[-1,5],[2,6],[3,4],[-5,0],[-5,-2],[-4,1],[-5,5],[-2,-7],[-4,-2],[-10,1],[-1,3],[2,7],[2,7],[3,3],[7,-1],[1,1],[2,4],[0,4],[0,4],[0,4],[3,6],[3,4],[4,1],[4,-7],[3,-12],[9,-10],[11,-4],[9,6],[-3,3],[-4,1],[-7,0],[-2,2],[-3,5],[-3,4],[-5,1],[3,4],[4,10],[1,3],[3,0],[9,7],[-3,4],[-1,1],[2,4],[1,3],[-1,2],[-1,3],[7,3],[8,-1],[7,-4],[7,-7],[1,3],[1,2],[-5,5],[1,6],[6,13],[3,-11],[0,-5],[-1,-4],[1,-5],[-1,-4],[-1,-2],[-3,-1],[2,-14],[-2,-6],[-4,-5],[-4,-8],[6,0],[-1,-3],[-2,-1],[-3,0],[2,-1],[1,-2],[1,-1],[2,0],[-6,-20],[3,1],[3,1],[2,2],[2,4],[2,-4],[-4,-9],[-1,-4],[1,-3],[0,-5],[-5,-2],[-7,-21],[-5,-5],[0,-4],[3,-1],[4,1],[3,1],[3,3],[0,11],[7,6],[18,3],[-13,11],[-4,6],[3,4],[3,3],[3,-1],[0,-10],[3,3],[6,11],[1,4],[2,1],[5,-3],[4,-6],[-2,-6],[4,-2],[3,-3],[2,-5],[1,-7],[-2,-2],[0,-2],[4,-3],[-4,-3],[-6,3],[-3,-3],[-2,-4],[-3,-3],[-3,-2],[1,-1],[4,1],[6,3],[-1,-1],[-3,-3],[0,-4],[10,6],[3,-3],[1,-11],[2,0],[1,6],[1,0],[1,-1],[2,3],[1,3],[1,5],[2,4],[2,5],[1,-2],[0,-2],[1,-5]],[[49725,86416],[-3,-7],[1,-6],[4,-12],[-1,-6],[-2,-6],[-9,11],[-5,4],[-6,1],[4,-4],[4,-8],[6,-16],[-4,-3],[-4,-1],[-4,0],[-3,4],[1,-7],[3,-4],[5,-1],[4,-1],[-1,-2],[-1,-1],[5,-6],[0,-8],[-4,-5],[-5,-2],[4,-10],[1,-5],[1,-7],[-1,-8],[-2,-1],[-7,3],[-7,0],[-3,1],[-1,5],[-1,0],[-2,-3],[0,-3],[3,-4],[0,-4],[-10,2],[-6,8],[-4,13],[-3,55],[2,13],[9,2],[0,-4],[0,-7],[3,-7],[4,-4],[3,2],[-1,3],[-4,15],[-1,8],[1,4],[3,9],[-1,2],[-1,2],[-1,5],[1,6],[1,5],[3,6],[3,6],[4,0],[3,-10],[3,7],[5,2],[13,-1],[0,-8],[-1,-3],[-2,-1],[0,-5],[2,0],[1,-2],[1,-1]],[[49748,86408],[-8,-1],[-4,1],[-5,3],[1,6],[1,6],[-1,5],[-1,4],[5,-4],[1,5],[0,8],[-2,7],[5,2],[2,8],[0,9],[-3,5],[0,4],[4,3],[5,6],[4,6],[0,6],[3,6],[3,0],[3,-4],[1,-8],[-1,-7],[-3,-4],[-3,-3],[-3,-5],[1,-2],[3,2],[4,3],[3,3],[5,22],[3,5],[2,-3],[2,-1],[4,0],[3,-2],[3,-3],[2,-5],[1,-7],[-2,0],[-5,-4],[5,-3],[2,-1],[-4,-5],[-6,-3],[-3,-4],[2,-7],[0,-5],[-6,0],[2,-1],[2,-1],[2,-2],[0,-4],[-12,-13],[-2,-3],[2,-7],[4,-7],[2,-6],[-4,-5],[-3,0],[-2,1],[-2,2],[-2,2],[-6,0],[-4,0]],[[48250,80042],[2,-2],[2,-5],[-1,-6],[-3,-2],[-3,2],[0,8],[3,5]],[[48240,80057],[2,-2],[0,-5],[-2,-4],[-2,2],[-2,6],[0,5],[2,0],[1,-2],[1,0]],[[48704,80781],[0,-4],[0,-7],[-2,-3],[-2,5],[0,8],[1,7],[1,1],[1,-4],[1,-3]],[[46197,84579],[-1,0],[0,1],[1,0],[0,-1]],[[49634,86058],[2,0],[1,-4],[-1,-6],[-3,-6],[-2,-9],[-2,-5],[-1,1],[0,4],[1,6],[0,7],[0,2],[-1,-4],[0,-4],[-5,-7],[-3,-4],[-1,3],[4,5],[1,7],[1,8],[3,6],[-1,4],[-2,2],[1,3],[5,2],[2,2],[1,0],[0,-5],[-2,-8],[0,-3],[2,3]],[[49429,86095],[1,-5],[1,-11],[-5,-7],[-6,4],[-5,5],[-2,3],[0,5],[2,2],[5,4],[6,1],[3,-1]],[[49704,86100],[4,3],[0,-4],[-1,-9],[-2,-6],[-2,-5],[-2,-13],[-3,-1],[-8,6],[-2,4],[1,20],[-5,7],[0,6],[6,1],[5,-2],[2,1],[1,5],[2,1],[1,-3],[0,-6],[1,-5],[2,0]],[[49744,86231],[2,1],[0,-3],[-1,-3],[-4,-5],[-5,-8],[-8,-9],[-10,-4],[-6,4],[2,3],[1,2],[1,3],[1,5],[3,4],[3,2],[3,0],[3,2],[2,3],[10,1],[2,1],[1,1]],[[56365,74949],[55,-13],[12,2],[6,3],[3,3],[3,4],[1,5],[1,11],[1,5],[4,6],[6,6],[6,5],[5,0],[5,-6],[3,-6],[3,-5],[6,1],[5,5],[8,10],[5,2],[28,-1],[18,-15],[9,-1],[4,4],[1,1],[7,11],[5,3],[9,0],[9,-3],[5,2],[6,17],[4,3],[5,-1],[6,1],[6,3],[4,3],[8,11],[2,0],[13,-15],[4,0],[5,7],[1,2],[2,1],[1,1],[1,4],[6,-6],[4,-1],[3,2],[2,5],[0,5],[-1,13],[-1,19],[8,6],[11,-2],[9,-4],[2,-2],[1,-4],[1,-2],[2,-1],[1,3],[1,9],[2,4],[4,5],[0,1],[5,5],[5,3],[5,1],[4,-8],[6,-6],[0,-5],[-1,-5],[1,-3],[2,-1],[2,1],[2,1],[2,1],[8,-2],[2,1],[10,4],[4,1],[6,-1],[4,1],[6,13],[6,2],[8,5],[6,-8],[3,-16],[1,-16],[1,-5],[1,-3],[1,-2],[2,-4],[1,-1],[2,-3],[2,-2],[0,-3],[-1,-6],[0,-3],[5,-6],[3,-2],[10,1],[-2,-6],[7,0],[5,-1],[5,-4],[6,-8],[9,-20],[6,-8],[6,-1],[2,9],[-1,10],[1,8],[11,1],[6,4],[3,0],[3,0],[9,-9],[45,-31],[5,2],[1,0],[1,-2],[2,-6],[1,-2],[11,-7],[1,-1],[5,-8],[12,-26],[5,-5],[7,-2],[6,1],[47,25],[7,2],[3,-1],[2,-1],[2,0],[3,1],[2,5],[2,7],[2,5],[4,2],[25,-2],[2,-2],[6,-5],[3,-2],[3,1],[2,2],[2,3],[3,4],[3,2],[10,1],[10,12],[3,1],[6,-3],[9,-15],[5,-3],[4,1],[7,6],[4,0],[3,-2],[3,1],[7,5],[7,8],[4,3],[23,9],[3,-1],[1,1],[3,8],[5,16],[3,14],[1,4],[2,1],[1,1],[1,5],[-1,4],[-4,5],[-1,3],[-3,11],[1,4],[3,5],[1,7],[0,7],[0,7],[-1,8],[-2,2],[-4,2],[-2,2],[0,4],[0,9],[0,5],[-3,15],[-1,5],[-3,4],[-3,3],[-4,1],[-4,3],[-2,5],[-1,3],[-1,7],[-1,8],[0,9],[2,7],[1,3],[2,1],[2,0],[2,2],[8,10],[7,3],[15,1],[6,9],[4,-1],[3,-2],[7,-13],[4,-5],[6,-3],[10,2]],[[57234,74596],[1,2],[-3,9],[-1,12],[-2,11],[-6,4],[0,4],[4,0],[5,1],[5,3],[1,2],[-1,6],[-5,1],[-4,-2],[-3,-2],[-1,4],[-1,4],[-2,0],[0,-4],[1,-4],[1,-5],[-2,0],[-4,8],[-9,9],[-9,4],[-6,-4],[-5,2],[-15,0],[-3,4],[-3,0],[-20,-2],[-11,3],[-12,7],[-12,4],[-11,-6],[-2,1],[-6,2],[-6,5],[-4,6],[-4,5],[-14,4],[-5,1],[-10,8],[-11,13],[-12,6],[-9,-15],[-2,0],[0,3],[-22,7],[-6,5],[-3,4],[-3,1],[-1,1],[1,8],[1,5],[2,4],[3,2],[3,1],[-5,6],[-4,2],[-22,0],[-5,-2],[0,-10],[-6,-8],[-3,-3],[-4,-1],[2,-11],[-3,-5],[-5,-1],[-5,1],[-4,-2],[-9,-9],[-4,-2],[-8,-9],[-8,-18],[-9,-12],[-10,7],[-11,-8],[-5,0],[-5,4],[1,1],[0,1],[1,2],[-10,8],[-6,-9],[-1,-3],[-2,0],[-3,9],[-3,8],[-3,8],[1,7],[-4,4],[-3,4],[-2,6],[0,9],[-14,4],[-4,2],[-2,-4],[-3,0],[-4,-2],[-2,-6],[-6,4],[-7,-2],[-7,-5],[-6,-13],[-12,-17],[-4,-4],[3,-4],[2,-6],[0,-4],[-6,-3],[-1,-2],[0,-3],[1,-4],[2,-2],[4,1],[3,-1],[-36,-35],[-28,-27],[-11,-4],[-12,2],[-12,5],[-31,27],[-5,2],[-4,1],[-9,-2],[-15,-10],[-6,-6],[-6,-9],[-4,-10],[-2,-15],[3,-13],[5,-9],[6,-3],[4,-4],[5,-11],[4,-13],[2,-11],[1,0],[10,-14],[4,-2],[4,-1],[4,1],[3,2],[2,-6],[5,-9],[1,-5],[-3,-3],[-19,-4],[-4,-7],[-1,-11],[2,-16],[11,-28],[3,-4],[9,-7],[2,-3],[10,-4],[3,-2],[3,2],[8,2],[2,4],[0,5],[-1,8],[-4,11],[2,4],[-2,4],[5,1],[5,-10],[7,-23],[3,-7],[6,-9],[6,-5],[6,5],[3,-3],[8,-5],[3,-1],[2,-2],[3,-14],[2,-4],[8,0],[9,-17],[15,-36],[18,-29],[2,-15],[-9,-12],[-11,-5],[-6,2],[-2,9],[-1,10],[-4,6],[-5,5],[-5,5],[-7,18],[-5,19],[-7,15],[-11,9],[-23,7],[-8,5],[-7,8],[-10,17],[-6,8],[-3,2],[-11,-2],[-10,4],[-4,0],[-14,-12],[-7,-2],[-8,6],[-1,-3],[-1,-6],[-2,1],[-4,-11],[-2,-11],[1,-9],[4,-19],[1,-4],[2,-3],[10,-11],[2,-9],[4,-8],[4,-4],[1,1],[19,-14],[4,2],[4,-3],[5,-6],[4,-7],[4,-5],[11,-6],[3,-7],[-1,-6],[-3,-5],[0,-6],[1,-3],[5,-6],[1,-5],[0,-5],[-2,-1],[-2,0],[-1,-2],[0,-7],[2,-3],[3,1],[2,3],[0,-6],[0,-4],[1,-3],[1,-3],[-7,-10],[-1,-6],[3,-5],[0,-4],[-6,0],[-2,-4],[1,-3],[5,-1],[0,-4],[-15,-1],[-5,2],[1,7],[0,4],[-2,0],[-3,-3],[-1,1],[-1,4],[1,6],[-10,10],[-2,1],[-1,6],[-3,5],[-4,1],[-2,-3],[0,-3],[1,-5],[-10,28],[-2,7],[2,10],[1,6],[-2,2],[-2,2],[-2,5],[-1,6],[-1,4],[-25,54],[-9,11],[-6,2],[-23,3],[-15,15],[-13,6],[-11,-1],[-9,-10],[-7,-20],[-1,-11],[2,-10],[3,-10],[1,-11],[1,-4],[2,-1],[6,-1],[3,-1],[1,-3],[3,-8],[15,-35],[8,-15],[29,-26],[19,-7],[0,-4],[0,-5],[1,-6],[3,-7],[3,-5],[4,-3],[6,-1],[4,-2],[-2,-4],[-5,-5],[-5,-1],[-24,6],[-41,28],[-7,2],[-20,-5],[-4,-3],[2,7],[4,11],[0,7],[-1,5],[-4,9],[-1,4],[-2,14],[-5,10],[-5,9],[-3,9],[4,19],[1,23],[-1,21],[-6,15],[-11,10],[-6,4],[-10,4],[-5,5],[-5,3],[-4,-2],[-15,18],[-3,0],[-3,4],[-6,3],[-7,4],[-5,15],[-13,17],[-5,4],[-5,1],[-11,-1],[3,9],[-2,10],[-9,17],[1,1],[1,0],[1,0],[-1,3],[-10,19],[-2,10],[6,4],[18,1],[9,4],[4,5],[2,5],[3,4],[3,7],[-2,10],[-7,7],[-2,1],[-1,2],[1,4],[1,7],[-4,15],[-7,8],[-7,2],[-8,-5],[2,-11],[-1,-9],[-2,-7],[-3,-6],[-4,-3],[-3,-3],[0,-2],[-5,0],[-3,2],[-2,3],[-6,-7],[-3,-7],[-1,-9],[2,-10],[-2,0],[-2,4],[0,-9],[-2,0],[0,5],[-2,0],[-1,-7],[-2,0],[-3,4],[-3,3],[0,3],[-4,-1],[-5,-6],[0,-7],[5,-5],[-2,0],[-2,-2],[-1,-3],[-1,-6],[-1,-3],[-2,1],[-4,5],[-7,-1],[-3,-2],[-4,-5],[4,-6],[3,-9],[2,-9],[-1,-9],[3,-5],[3,-7],[3,-6],[5,-2],[1,-6],[-4,-14],[-7,-21],[-8,-41],[0,-6],[-11,-38],[-1,-14],[2,-9],[3,-10],[2,-14],[-1,-13],[0,-7],[4,-2],[1,-3],[3,-17],[15,-20],[2,-3],[2,-2],[6,-4],[2,-2],[1,-2],[2,0],[1,-2],[-1,-11],[1,-2],[0,-1],[3,-21],[2,-8],[3,-6],[11,-15],[6,-5],[4,-7],[7,-15],[3,-8],[2,-10],[2,-12],[0,-13],[2,-9],[8,-34],[7,-35],[4,-11],[3,-6],[15,-16],[14,-10],[11,-13],[0,-2],[2,-2],[3,-18],[3,-8],[24,-44],[3,-13],[14,-21],[6,-32],[13,-45],[1,-8],[-3,-3],[-9,-13],[-5,-3],[-11,-3],[-5,-3],[-4,-3],[1,-1],[1,-2],[1,-1],[2,0],[0,-4],[-2,-1],[-2,-2],[-2,-3],[-1,-2],[-4,2],[-6,-1],[-6,-3],[-4,-4],[-5,-4],[-6,1],[-11,5],[2,8],[4,8],[-2,8],[4,5],[9,7],[0,-7],[-4,-25],[20,18],[3,7],[-2,5],[2,2],[2,0],[2,-2],[1,-2],[2,3],[2,7],[1,6],[-2,7],[-7,20],[-3,6],[1,10],[-3,10],[-5,10],[-4,7],[-6,6],[-4,3],[-22,3],[0,2],[0,3],[-1,3],[-1,3],[-3,10],[-1,3],[-2,0],[-8,0],[-6,2],[-1,0],[1,-6],[0,-4],[-2,-5],[-1,-7],[0,-7],[3,-5],[-6,-3],[-11,-2],[-10,-4],[-5,-10],[0,-23],[0,-7],[8,-37],[1,0],[3,7],[3,5],[-1,7],[2,0],[2,-4],[1,-7],[2,4],[3,-9],[1,-12],[1,-11],[5,-8],[0,3],[1,0],[0,1],[-1,4],[0,4],[7,-7],[3,-11],[2,-10],[5,-9],[-2,-7],[0,-2],[2,-3],[-9,-8],[-2,-6],[1,-10],[15,15],[7,4],[9,1],[0,-3],[-3,-5],[-9,-8],[-2,-4],[-1,-4],[-2,-12],[-2,-4],[-2,-5],[-1,-2],[-1,-2],[-2,-3],[-2,-1],[-4,2],[-2,-1],[-2,-3],[-1,-1],[-2,0],[1,-7],[0,-2],[-4,0],[-5,-6],[-3,-2],[-3,2],[-4,2],[-4,2],[-3,-2],[-2,-4],[-1,-13],[-2,-3],[-7,-1],[-2,-2],[-1,-5],[-4,0],[-7,-3],[-6,-1],[-3,6],[-1,5],[-3,-2],[-5,-5],[-2,1],[-5,6],[-2,1],[0,1],[-10,12],[-2,0],[-5,-7],[-2,-2],[-2,-3],[-3,-1],[-3,0],[-2,-2],[-2,-2],[-2,-4],[-1,1],[-3,3],[0,-16],[14,4],[0,-4],[-6,-6],[3,-7],[5,-2],[3,7],[2,0],[-2,-9],[4,1],[4,2],[3,0],[3,-3],[13,12],[4,1],[6,-19],[6,-12],[3,-3],[3,-5],[3,-2],[2,0],[5,3],[3,1],[4,-2],[4,-4],[4,-7],[2,-7],[6,10],[3,2],[5,0],[3,-2],[5,-8],[4,-2],[16,0],[7,-5],[5,-11],[8,-47],[4,-6],[6,-1],[2,2],[4,5],[3,3],[3,-1],[4,1],[4,7],[-6,7],[-2,1],[5,4],[5,-2],[9,-10],[5,-2],[9,-2],[5,-4],[4,-5],[3,-8],[2,-8],[-1,-7],[-3,-6],[-5,-3],[-3,-6],[-2,-14],[2,7],[4,1],[3,-4],[3,-6],[3,-4],[7,-3],[4,-3],[0,-4],[-2,-2],[-6,0],[-3,-2],[-3,-4],[0,-4],[1,-3],[5,-1],[19,1],[28,-8],[3,5],[3,8],[7,-6],[9,-17],[-5,-6],[-2,-1],[0,-5],[3,-1],[3,-3],[1,-3],[-2,-5],[0,-4],[9,-7],[13,-34],[11,-12],[4,0],[16,4],[6,-6],[3,-1],[27,-20],[5,-1],[5,-3],[5,-7],[7,-15],[13,-18],[2,-4],[1,-3],[5,-4],[1,-5],[0,-5],[-1,-4],[0,-4],[3,-5],[-2,-2],[-2,-4],[-1,-7],[0,-7],[-2,8],[-4,-1],[-14,-13],[0,-12],[4,-25],[2,-11],[2,-8],[3,-7],[1,-5],[-1,-5],[-3,-13],[-2,-6],[0,-5],[1,-6],[1,-6],[-2,-7],[3,0],[4,-2],[2,-4],[1,-6],[-1,-3],[-9,-5],[2,-4],[3,-3],[3,-2],[4,1],[-2,-5],[2,0],[4,-3],[-2,-6],[0,-4],[0,-3],[2,-4],[-2,-1],[-1,-2],[-1,-2],[0,-3],[6,-7],[3,-6],[0,-9],[0,-13],[-1,-7],[-6,-11],[3,-4],[0,-4],[-3,0],[0,-4],[1,0],[1,-2],[-1,-3],[1,-3],[-1,1],[0,2],[-1,-3],[3,-6],[-2,-7],[-5,-7],[-4,-9],[-3,4],[-11,8],[-4,1],[-5,3],[-2,7],[0,22],[-2,0],[-3,-3],[-3,11],[-3,25],[-1,-2],[-3,-3],[-2,10],[-4,10],[-5,6],[-4,-1],[-1,2],[-1,1],[-1,2],[-1,3],[-2,0],[-1,-13],[-3,0],[-3,3],[-2,-6],[-1,4],[0,3],[-1,1],[-2,0],[1,7],[-1,6],[-6,11],[-1,12],[-11,29],[-1,8],[-5,4],[-4,-2],[-5,-4],[-5,-2],[0,3],[0,1],[2,2],[1,2],[1,4],[-5,-3],[-2,3],[-2,5],[-4,3],[-4,0],[-3,1],[-3,3],[-2,4],[10,16],[2,8],[-2,11],[-2,4],[-2,1],[-2,-2],[-2,-1],[-11,0],[-3,-1],[-1,-3],[-2,-3],[-1,-1],[-7,-1],[-3,-1],[-3,-2],[-10,-17],[-5,-3],[10,-5],[-6,-3],[-22,3],[-29,-4],[-10,-9],[-8,-10],[-5,-7],[-14,-11],[-11,9],[-3,-2],[-2,0],[-2,1],[-3,1],[-1,-4],[0,-6],[-1,-7],[-2,-3],[-2,-6],[1,-11],[4,-9],[5,1],[5,-4],[7,-1],[6,1],[5,4],[9,-14],[5,-7],[5,-3],[-1,-6],[-1,-6],[1,-5],[1,-4],[-4,-1],[-5,-5],[-6,-2],[-1,-2],[0,-4],[-1,-6],[7,-9],[4,-3],[4,0],[-2,-14],[-1,-9],[1,-9],[2,-13],[-4,0],[1,-12],[1,-6],[6,-4],[11,-14],[2,4],[11,-17],[1,-1],[1,0],[3,-2],[5,-8],[3,-3],[4,-1],[6,7],[0,16],[-5,15],[-8,6],[0,4],[5,7],[5,3],[14,2],[3,-7],[-1,-15],[-4,-17],[-5,-9],[3,-5],[3,-4],[3,-2],[5,-1],[0,-5],[-6,-3],[-2,0],[0,-4],[2,0],[2,-2],[8,-2],[6,-8],[5,-3],[13,-18],[-1,-3],[-1,-1],[1,-1],[1,-3],[0,-4],[-5,-5],[-17,-10],[-1,0],[-33,-3],[-5,2],[1,-3],[0,-1],[0,-2],[1,-3],[-10,3],[-4,-1],[1,-6],[-10,-4],[0,-5],[2,-3],[3,-1],[3,1],[-2,-4],[0,-4],[2,0],[6,-4],[-5,-4],[-5,-1],[-10,1],[-6,-2],[0,-5],[2,-7],[3,-10],[-6,-2],[-4,0],[-3,2],[-4,4],[0,4],[5,0],[0,4],[-3,2],[-4,-2],[-3,1],[-3,7],[6,-4],[-2,5],[-2,4],[-6,7],[-2,-4],[-3,0],[-2,3],[0,1],[-1,19],[0,7],[4,-4],[3,-3],[3,5],[2,8],[0,9],[6,-6],[2,-2],[0,3],[-2,6],[0,3],[0,6],[-1,3],[-2,2],[-2,1],[-2,2],[-4,3],[-9,-4],[-5,3],[4,4],[-4,12],[-7,-7],[-3,-4],[-1,-5],[-4,21],[-3,8],[-5,8],[-1,0],[-3,-1],[-2,1],[-1,2],[0,2],[0,3],[0,1],[-4,3],[-3,0],[-3,0],[4,-1],[1,-2],[1,-5],[-6,4],[-5,-1],[-4,-4],[-4,-6],[-2,3],[-8,9],[1,2],[1,6],[-3,2],[-4,5],[-1,5],[0,4],[-2,7],[-3,5],[-6,-4],[-5,-5],[-4,-9],[-1,-15],[1,-3],[3,-7],[0,-3],[0,-4],[-1,-7],[-1,-4],[2,-6],[1,-4],[2,-2],[1,-4],[0,-3],[0,-11],[1,-2],[3,-5],[0,-6],[-2,-8],[0,-6],[15,-29],[2,-3],[-2,-8],[4,0],[0,-4],[-2,0],[0,-4],[3,-5],[7,-20],[2,-11],[9,-29],[1,-2],[2,-6],[2,-6],[-2,-3],[-1,-3],[-1,-8],[-1,-15],[2,-8],[6,-2],[5,2],[4,2],[0,-3],[1,-1],[1,-2],[0,-2],[-2,-2],[1,-1],[1,-1],[-2,-5],[5,-3],[2,-4],[0,-3],[-5,3],[3,-11],[7,-19],[0,-7],[2,-10],[2,-10],[-2,0],[-3,0],[-1,0],[0,-3],[3,-6],[1,-3],[0,2],[1,0],[1,2],[0,-6],[1,-5],[0,-5],[-1,-5],[2,-7],[6,-24],[2,-5],[-1,-5],[4,-10],[7,-14],[2,-6],[1,-7],[-1,-5],[-3,-2],[0,-3],[3,-1],[2,-1],[4,-3],[-1,-4],[-3,-5],[-1,-3],[-1,-3],[0,-2],[0,-2],[1,-3],[-2,-7],[-4,1],[-4,4],[-2,4],[-3,-7],[-3,-6],[-2,-6],[4,-5],[0,-2],[-1,-5],[-1,-1],[8,0],[-7,-11],[0,-15],[4,-16],[6,-15],[3,-11],[1,-1],[5,-4],[4,-5],[5,-4],[1,-3],[1,-2],[1,-3],[2,0],[-2,-3],[-1,-1],[0,-4],[1,-3],[0,-3],[-1,-3],[-2,-3],[5,-12],[8,-9],[6,-9],[-2,-14],[-10,8],[-2,-7],[-4,-1],[-12,6],[-3,6],[-2,7],[-3,5],[0,3],[1,8],[-2,10],[-3,8],[-5,3],[-12,-4],[-5,-1],[-3,7],[-1,10],[-6,23],[-2,6],[-4,5],[-11,15],[3,7],[-1,7],[-11,18],[-2,1],[-1,-5],[-4,-8],[-1,4],[0,5],[1,14],[0,9],[-3,12],[-2,22],[-4,10],[-6,7],[-8,2],[-14,1],[-18,-4],[-12,-12],[0,-25],[-9,-11],[-3,-9],[-3,-13],[5,0],[2,-4],[1,-7],[0,-9],[-2,0],[0,4],[-1,4],[-2,4],[-3,0],[-2,-3],[-1,-6],[-1,-5],[1,-2],[5,-7],[-1,-12],[-4,-6],[-2,13],[-4,-4],[-2,-6],[0,-35],[1,-14],[1,-11],[6,-23],[-2,-4],[2,-5],[-4,-4],[-1,-6],[1,-7],[2,-7],[0,-4],[-3,0],[-1,-1],[0,-3],[0,-4],[-3,6],[-1,11],[0,11],[-2,8],[-4,6],[-10,7],[-3,8],[-2,0],[-3,-5],[-3,1],[-2,5],[-2,5],[-3,9],[0,6],[2,6],[2,9],[4,-2],[1,7],[-1,9],[-3,6],[2,3],[2,9],[-5,0],[0,8],[0,9],[1,7],[4,1],[0,4],[-5,3],[0,10],[5,20],[-8,-3],[-5,15],[-5,18],[-5,10],[1,12],[-4,15],[-20,46],[-6,5],[-7,-9],[-7,10],[-3,6],[-1,8],[2,3],[1,6],[1,6],[0,6],[1,12],[1,16],[-1,4],[-19,7],[-10,1],[-5,-2],[-11,-11],[-10,-5],[-3,-6],[-2,-8],[-3,-57],[-1,-7],[0,-5],[1,-7],[2,-5],[0,-6],[-1,-7],[4,-7],[3,-4],[4,-1],[0,-4],[-3,0],[-4,-3],[-1,-4],[1,-5],[-2,-5],[-12,-18],[-1,-3],[-2,-2],[-2,0],[-5,17],[-1,1],[-9,30],[-5,0],[-4,-2],[-7,-6],[-3,6],[-7,5],[-2,5],[-1,0],[-3,-2],[-1,4],[-2,8],[-2,7],[1,5],[0,5],[-1,6],[0,8],[1,6],[4,10],[1,5],[0,10],[-2,8],[-4,5],[-6,-3],[3,2],[1,2],[0,4],[-2,0],[-2,-2],[-1,-6],[-2,20],[-7,16],[-9,15],[-5,18],[-3,23],[-1,24],[2,22],[5,16],[18,24],[7,14],[4,19],[-1,24],[-3,13],[-2,10],[-19,61],[-10,28],[-5,9],[-24,29],[-6,5],[-3,5],[-6,12],[-3,5],[-16,8],[-5,-3],[-2,-16],[-1,0],[-1,6],[0,6],[-1,5],[-2,4],[3,12],[1,10],[-1,10],[-4,27],[-3,8],[-4,4],[-12,11],[-29,16],[-3,3],[-1,7],[1,9],[-2,5],[8,40],[2,0],[6,-10],[12,10],[13,18],[7,14],[4,-2],[3,4],[3,6],[3,5],[0,4],[-1,1],[0,1],[-1,2],[-2,-2],[-3,-3],[-3,-4],[-1,-3],[12,32],[1,4],[10,27],[1,6],[1,7],[0,36],[0,9],[3,-5],[3,-11],[3,-4],[0,7],[-1,6],[-1,4],[2,-4],[4,-3],[5,-2],[5,0],[4,-2],[14,-18],[22,-8],[6,1],[5,5],[9,10],[8,15],[11,39],[6,15],[21,22],[3,5],[18,-6],[6,0],[3,1],[2,2],[3,-4],[3,-4],[4,-2],[5,-2],[3,-2],[2,-5],[1,-7],[2,-6],[3,-4],[8,-7],[3,-1],[3,0],[3,3],[1,0],[2,-4],[2,-2],[3,-2],[1,-3],[3,-15],[2,-6],[3,-2],[10,-6],[1,-1],[1,-3],[1,-3],[2,-1],[9,0],[12,-5],[3,-3],[6,4],[4,-5],[5,-7],[8,-6],[3,-4],[3,-3],[3,3],[2,1],[22,-9],[30,-27],[17,-10],[2,-4],[3,-2],[22,-33],[5,-14],[1,-2],[6,-2],[8,-13],[4,-5],[5,-1],[4,1],[7,4],[2,0],[2,0],[2,0],[2,2],[6,14],[0,3],[-2,7],[-4,7],[-3,3],[-5,3],[-7,9],[-5,1],[1,2],[1,1],[-9,1],[6,8],[2,3],[4,1],[4,2],[6,11],[2,3],[8,-1],[14,-10],[5,3],[8,-6],[9,2],[20,10],[5,9],[5,2],[3,3],[-2,7],[-5,7],[-5,3],[0,3],[0,5],[4,0],[6,3],[3,1],[0,4],[-2,1],[-20,4],[-4,3],[6,8],[-8,13],[-3,1],[-9,-14],[-3,-2],[-10,2],[0,4],[6,0],[-4,9],[-4,5],[-4,2],[-16,3],[-5,-2],[-3,-9],[4,3],[4,-1],[3,-3],[2,-7],[-5,0],[-8,3],[-4,-3],[-4,29],[-2,0],[-2,-9],[0,3],[-1,3],[0,3],[-6,-3],[-10,-2],[-4,-4],[-11,13],[2,6],[5,7],[2,7],[-5,4],[-10,5],[-7,8],[-4,2],[-2,1],[-1,4],[-5,12],[3,11],[-4,12],[-7,5],[-5,-11],[5,-1],[0,-5],[-3,-3],[-3,3],[-3,1],[-4,-5],[-2,-6],[-1,-5],[0,-3],[1,-2],[1,-1],[1,-1],[2,-1],[0,-4],[-2,-2],[0,-1],[0,-2],[0,-3],[-3,-6],[-3,-1],[-4,2],[-5,5],[0,2],[-3,10],[-1,0],[-1,4],[0,1],[0,2],[3,1],[-4,13],[-13,28],[-2,9],[-2,3],[-1,1],[-3,2],[-13,13],[0,-6],[2,-10],[0,-6],[-8,-10],[-2,-4],[2,-5],[2,-2],[1,0],[1,3],[1,-6],[0,-4],[-2,-4],[-3,-2],[2,-4],[-1,-5],[-4,-1],[-6,4],[-7,2],[-10,-2],[-2,3],[-3,3],[-4,2],[-3,-2],[-2,0],[-3,1],[-4,-4],[-4,-8],[-2,-10],[-2,4],[-2,8],[-2,5],[-2,1],[-3,0],[-1,0],[1,6],[-5,6],[-8,4],[-15,11],[-5,0],[-5,-4],[-7,11],[-8,1],[-8,-6],[-11,-13],[-3,-1],[-4,-1],[-2,2],[-2,5],[-1,4],[-2,2],[-2,-1],[-14,-20],[-2,-6],[-1,-12],[-2,-3],[-6,6],[-7,12],[-16,0],[-5,-2],[-4,-4],[-4,-2],[-4,4],[-18,-22],[-3,-11],[-1,0],[-3,4],[-4,1],[-3,1],[-2,0],[-2,4],[-11,11],[4,2],[5,-5],[4,-6],[4,-4],[0,4],[-1,3],[-1,2],[0,3],[2,4],[-3,3],[-1,1],[0,5],[1,1],[3,3],[-6,0],[2,8],[-3,-2],[-2,-1],[-2,0],[-2,3],[-2,-2],[-1,-1],[-3,-2],[2,12],[-4,6],[-5,3],[-5,0],[-2,6],[-3,35],[-6,12],[-3,4],[-2,1],[-1,-1],[-3,0],[1,-5],[12,-32],[-4,0],[1,-2],[1,-2],[-1,-6],[-1,-7],[-1,-5],[-2,-2],[-3,-1],[-5,-5],[-2,-3],[0,-2],[1,0],[1,-1],[-2,-5],[-4,4],[-2,-1],[-1,-4],[0,-2],[1,-2],[-2,-5],[-4,-6],[-3,-3],[-2,-1],[-5,1],[-2,2],[-2,3],[-3,1],[-2,-6],[2,-3],[1,-1],[2,-1],[-1,-1],[-3,-1],[-3,-4],[0,-6],[-5,1],[-2,6],[-1,8],[-1,5],[-4,2],[-8,1],[-4,1],[4,3],[2,3],[1,4],[-1,7],[-2,-3],[-2,-2],[3,10],[1,3],[-1,-4],[3,-3],[3,4],[3,5],[2,6],[-5,7],[-2,-1],[-3,-6],[-3,2],[-2,5],[-2,6],[0,7],[1,1],[0,1],[0,3],[3,-6],[3,-3],[3,1],[1,8],[-4,-5],[2,8],[-3,11],[1,5],[0,5],[-2,0],[-2,1],[-3,3],[2,2],[2,1],[1,1],[-1,1],[-1,2],[-2,1],[3,10],[1,4],[-1,4],[-2,3],[-2,-3],[-2,-4],[-3,-2],[-1,-2],[-3,-4],[-3,-3],[-2,3],[0,5],[-3,9],[-1,6],[3,24],[0,13],[-6,11],[-5,22],[-2,5],[-11,0],[-4,3],[-3,5],[-2,8],[-7,47],[-2,10],[-4,5],[-4,-3],[-4,-7],[-4,-8],[-2,-7],[-2,7],[-1,-1],[-2,-3],[-2,1],[-3,-5],[-1,3],[-1,5],[-1,5],[-9,13],[0,3],[2,8],[1,11],[2,9],[5,5],[6,-1],[3,1],[2,2],[-1,3],[-2,4],[-3,2],[-6,5],[-2,9],[-1,11],[1,9],[4,11],[1,-5],[2,-9],[5,-6],[5,-3],[5,5],[4,9],[3,10],[2,0],[1,-5],[0,-3],[0,-2],[-1,-2],[0,-1],[1,-2],[0,-2],[-1,-4],[5,0],[5,1],[3,5],[2,11],[2,0],[2,-6],[3,0],[4,1],[4,1],[4,-3],[2,-3],[3,-2],[5,-1],[1,-4],[-1,-8],[0,-8],[2,-4],[4,-2],[4,-4],[6,-10],[1,5],[0,3],[2,2],[1,2],[0,4],[-2,7],[3,4],[5,0],[5,-5],[6,-13],[0,-1],[2,-2],[2,-1],[1,2],[1,5],[-2,4],[-1,2],[-1,9],[-1,1],[-1,-1],[-1,2],[-4,10],[0,6],[2,8],[-2,5],[1,5],[2,3],[2,-1],[0,14],[-7,15],[-14,23],[-2,-3],[-1,-4],[0,-4],[2,-4],[-4,2],[-1,-1],[-2,-1],[-5,-9],[6,-8],[-15,4],[0,4],[-4,1],[-3,4],[-3,4],[-1,1],[-3,-3],[-3,3],[-2,5],[0,6],[1,2],[2,1],[0,4],[-2,0],[-2,-3],[-3,0],[-3,3],[-3,5],[-2,0],[-1,-6],[-5,-5],[-1,-4],[1,-5],[3,-2],[1,-2],[-11,0],[4,3],[-1,4],[0,6],[-1,4],[-2,-2],[0,3],[0,1],[0,1],[0,1],[0,3],[-2,0],[-2,0],[-1,-2],[-1,-3],[4,13],[-1,10],[-4,4],[-3,-6],[-1,4],[-1,-4],[-2,-4],[-2,-2],[-3,-2],[0,-5],[4,-1],[-1,-5],[0,-7],[-1,-7],[-2,-4],[-2,-3],[-2,-3],[-2,-6],[-4,4],[1,-6],[0,-2],[1,-1],[2,1],[13,-18],[6,-4],[1,-4],[1,-4],[-1,-2],[-2,1],[-5,5],[-8,4],[-2,0],[-3,-2],[0,-3],[-3,-7],[-3,-5],[-1,5],[-1,5],[-2,4],[-2,4],[-1,3],[0,3],[-1,2],[-1,2],[0,1],[1,4],[1,2],[1,2],[1,2],[-3,20],[-5,14],[-8,10],[-9,9],[-8,11],[-22,46],[-8,9],[-3,5],[1,6],[-1,5],[-1,7],[0,7],[2,5],[0,4],[-3,-2],[-3,-1],[-2,2],[-1,5],[-5,-3],[-4,0],[-3,3],[-4,5],[-7,-6],[-12,10],[-9,18],[0,18],[-4,6],[-2,7],[-3,6],[-6,2],[0,4],[1,0],[0,3],[-2,5],[-3,9],[-2,3],[5,2],[5,0],[4,2],[-1,8],[-2,5],[-11,11],[0,4],[5,0],[3,-2],[3,1],[2,5],[0,4],[-3,4],[-4,3],[-4,1],[0,-8],[-3,4],[-3,3],[-3,1],[3,5],[-5,2],[-5,1],[-4,-1],[-5,-2],[2,5],[1,5],[1,6],[0,8],[2,-4],[2,0],[2,3],[1,5],[1,2],[-1,7],[0,3],[1,1],[3,3],[-1,12],[-5,5],[-5,3],[-2,2],[-1,3],[-4,6],[-2,1],[-3,2],[-2,2],[-2,5],[-13,4],[-6,4],[-3,4],[-2,-1],[-1,1]],[[56702,71111],[-2,-5],[0,-6],[1,-5],[3,-3],[0,-4],[-8,1],[-6,5],[-11,14],[0,3],[3,1],[3,1],[2,3],[1,4],[4,0],[3,-1],[7,-3],[0,-5]],[[57493,71453],[7,3],[3,0],[0,-3],[-2,-3],[-2,-1],[2,-13],[0,-3],[-4,-1],[-6,-2],[-3,-2],[-4,-4],[-2,-4],[-3,-3],[-3,-1],[-3,-2],[-5,-8],[-3,-2],[-3,3],[-3,5],[-2,6],[1,2],[3,3],[5,11],[2,2],[1,2],[2,9],[1,2],[2,-1],[3,-3],[1,0],[11,7],[4,1]],[[57311,71384],[-3,-11],[-4,-7],[-4,-6],[-4,-9],[5,-30],[4,-14],[6,7],[-3,-9],[-4,-9],[-3,-10],[2,-8],[-2,-11],[-2,-11],[-3,-9],[-3,-7],[-2,-5],[-2,-15],[-2,-3],[-3,-1],[-3,-2],[-2,-3],[-16,-12],[-4,-2],[-8,0],[-1,1],[-4,8],[-2,3],[-6,2],[-6,-1],[-5,0],[-5,5],[-2,4],[-3,1],[-2,-1],[-2,-4],[-2,-1],[-10,3],[-12,-4],[-21,-12],[-57,4],[-18,-10],[-4,-4],[-5,-3],[-25,5],[-19,-1],[-5,-2],[-7,-2],[-2,-2],[-4,-5],[-16,-11],[-4,-2],[-16,3],[-6,-3],[-2,-2],[-2,-4],[-2,-2],[-3,0],[-2,2],[-1,2],[-3,0],[-5,0],[-4,-2],[-7,-5],[-4,3],[-6,1],[-68,-4],[0,3],[4,5],[1,7],[-1,23],[1,7],[1,11],[0,9],[-1,6],[-2,8],[-2,7],[-2,3],[-1,1],[-2,3],[-1,3],[-3,1],[-25,1],[-7,2],[-4,5],[-1,0],[-3,-2],[-3,5],[-6,13],[-4,5],[-5,4],[-5,3],[-5,-4],[-17,15],[0,6],[0,3],[-30,-5],[-21,5],[-2,2],[-1,3],[-1,3],[0,1],[-2,0],[-2,-2],[-1,-2],[-1,-1],[-20,0],[-5,4],[-2,0],[-2,-6],[-1,1],[-7,-3],[-5,4],[-8,17],[-4,4],[-24,-1],[-12,3],[-9,10],[-2,-3],[-2,-2],[-2,0],[-2,1],[-4,-7],[-20,1],[-8,-6],[-4,7],[-16,-2],[-7,3],[-1,3],[1,6],[-1,3],[-3,2],[-3,1],[-2,1],[-2,4],[-2,5],[-2,4],[-4,3],[2,4],[-1,1],[-1,1],[0,2],[4,4],[2,1],[2,0],[0,2],[0,1],[1,1],[1,0],[-2,4],[-1,4],[0,6],[1,6],[-2,11],[3,13],[4,13],[3,10],[-1,3],[-1,4],[-2,3],[0,4],[3,15],[2,5],[0,5],[-3,3],[0,4],[1,3],[0,1],[0,2],[-1,3],[4,14],[1,7],[-1,7],[5,16],[1,6],[1,-12],[0,-24],[2,-10],[2,-6],[1,-2],[2,0],[2,-1],[0,-3],[0,-2],[1,-3],[2,-2],[2,-1],[7,-1],[6,2],[4,6],[3,10],[0,14],[-1,12],[-3,11],[-1,9],[3,6],[-2,10],[-1,8],[1,8],[3,8],[4,7],[3,0],[2,-4],[6,-5],[0,-5],[-3,-6],[0,-7],[3,-19],[-1,-15],[1,-5],[5,-18],[5,-6],[24,-5],[7,-3],[5,2],[15,-3],[7,1],[3,1],[3,3],[1,4],[1,6],[1,5],[3,1],[7,-1],[-3,22],[9,6],[13,-2],[6,-7],[6,-26],[-1,-4],[-2,-2],[-2,-8],[-1,-3],[-3,-2],[-2,-1],[-6,-1],[-11,5],[-6,0],[-4,-5],[1,-5],[5,-5],[5,-4],[8,-5],[9,-11],[5,-2],[5,1],[5,4],[5,6],[3,5],[3,-27],[1,-11],[-1,-22],[1,-5],[2,-3],[6,0],[2,-3],[11,-7],[24,13],[10,-4],[6,6],[23,7],[7,4],[17,16],[6,3],[6,2],[6,0],[28,-8],[6,-6],[2,4],[5,4],[8,5],[17,-13],[2,4],[1,1],[0,2],[1,6],[13,-6],[3,-7],[5,1],[2,-1],[0,-3],[-1,-4],[-1,-3],[0,-4],[2,-14],[6,-7],[9,-1],[12,1],[8,4],[5,-1],[1,-1],[1,-3],[2,-3],[2,-1],[9,0],[15,4],[7,-3],[4,-1],[4,4],[2,-4],[2,4],[5,-8],[4,-10],[5,-7],[8,-4],[8,2],[43,29],[6,2],[3,-1],[6,-6],[4,-1],[17,0],[-2,-8],[-3,-7],[-7,-10],[2,-3],[-1,-6],[-1,-4],[1,-4],[3,-3],[0,10],[1,5],[2,-1],[3,-5],[-2,-4],[0,-2],[2,-3],[-2,-4],[-1,2],[-1,0],[-2,-1],[-2,-5],[1,-5],[-2,-7],[-2,-9],[1,-12],[-3,-5],[0,-5],[2,-6],[1,-6],[1,-12],[3,-1],[4,1],[5,-4],[3,-5],[4,-2],[6,1],[4,4],[4,16],[4,4],[2,0],[1,1],[3,4],[4,10],[0,2],[3,1],[9,1],[11,4],[2,1],[8,10],[3,5],[2,2],[3,1],[1,-1],[2,1],[1,3],[2,0],[4,-5],[11,-5],[-3,-6],[6,-6],[7,1],[6,6],[6,7],[-2,1],[0,1],[0,2],[7,13],[6,12],[6,10],[9,2],[-2,7],[3,0],[1,0],[0,2],[-1,5],[-1,2],[8,0]],[[57558,71506],[6,-10],[1,-7],[-1,-12],[-7,3],[-7,-5],[-6,-11],[-1,-15],[1,1],[0,2],[1,1],[2,0],[-2,-5],[-2,-5],[-2,-4],[-4,-3],[2,10],[-2,4],[-4,0],[-3,3],[-3,5],[-2,7],[1,6],[4,2],[0,4],[-2,0],[0,4],[4,2],[1,6],[-3,17],[0,8],[1,5],[0,4],[-1,7],[-3,3],[-7,8],[-2,5],[1,8],[2,8],[2,6],[2,3],[6,7],[3,15],[1,15],[7,14],[2,18],[1,18],[-2,10],[0,4],[4,4],[2,0],[0,-4],[2,0],[1,3],[4,9],[3,4],[2,0],[1,-1],[2,-3],[-1,-8],[-4,-11],[-1,-7],[0,-15],[1,-5],[1,-6],[0,-5],[-1,-4],[-4,-6],[-3,-7],[-1,-9],[-1,-5],[-3,-6],[-3,-7],[-1,-10],[0,-9],[0,-4],[8,-10],[6,-21],[2,-4],[2,-2],[-1,-4],[-3,-4],[-1,-1],[0,-4],[0,-1],[2,-3]],[[56466,71729],[5,-7],[5,-4],[4,-9],[1,-21],[-2,0],[-2,6],[-7,12],[-2,7],[-2,7],[-2,13],[1,0],[0,-1],[0,-1],[1,-2]],[[56392,71972],[18,-22],[5,-10],[2,-10],[-2,-3],[-4,0],[-4,-4],[-2,-5],[-2,-8],[0,-35],[-2,-1],[-4,1],[-5,2],[-3,-1],[-3,-5],[-1,8],[-3,4],[-8,4],[0,2],[0,2],[0,3],[-1,1],[-3,-1],[-1,1],[-2,4],[-2,9],[-2,3],[2,34],[0,13],[-2,14],[-2,7],[-1,5],[1,6],[9,25],[3,5],[3,-4],[11,-35],[5,-9]],[[57148,72016],[4,3],[3,5],[2,3],[10,-7],[9,-14],[5,-1],[-2,-8],[-2,1],[-3,4],[-3,3],[-4,-2],[-4,-2],[-3,-2],[-8,3],[-1,-1],[-1,1],[-1,4],[-2,4],[0,5],[1,1]],[[57844,72046],[-4,-9],[3,-27],[-6,-5],[-1,-4],[-2,-21],[-2,-6],[-6,-13],[-1,-7],[-1,-17],[-1,-7],[-3,-3],[-2,-4],[-3,-18],[-2,-6],[0,1],[-5,0],[-2,-1],[-1,-2],[0,-4],[-1,-4],[-3,-2],[-7,-29],[3,-3],[2,-2],[2,-1],[3,-1],[-1,-5],[-1,-4],[-2,-4],[-2,-4],[1,-2],[3,-10],[-14,8],[-6,0],[-7,-4],[-12,-14],[-5,-8],[-11,-31],[-8,-19],[-10,-16],[-13,-14],[-11,14],[-2,1],[-1,4],[-5,18],[4,9],[8,41],[2,15],[-1,13],[-3,7],[-4,5],[-7,14],[0,3],[2,4],[-1,3],[-2,3],[-2,0],[-2,0],[-2,5],[5,3],[11,13],[6,4],[3,4],[-1,4],[2,4],[1,3],[0,4],[0,5],[2,8],[2,5],[3,9],[1,3],[8,4],[1,2],[2,5],[10,17],[2,6],[2,5],[17,10],[31,28],[4,6],[9,8],[18,-2],[9,18],[2,0],[2,-3],[3,-7],[0,-3]],[[57050,72073],[10,-5],[10,-12],[7,-15],[3,-16],[0,-12],[-3,-12],[-4,-9],[-5,-3],[-6,1],[-13,6],[-5,5],[4,3],[6,-1],[4,2],[2,4],[3,9],[2,3],[-2,15],[-1,6],[-2,4],[0,3],[1,8],[-4,4],[-11,5],[0,4],[2,1],[1,1],[1,1]],[[57610,72049],[-3,-10],[3,-7],[6,-1],[5,6],[1,-2],[1,-2],[0,-4],[-2,-6],[-3,-5],[-3,-3],[-3,1],[-2,-2],[-2,2],[-4,0],[-3,6],[-2,10],[1,9],[-3,4],[-4,-2],[-2,-5],[-2,-5],[-2,0],[-2,5],[-3,5],[-1,4],[0,12],[1,6],[1,5],[3,-10],[4,3],[4,7],[4,3],[4,-4],[3,-17],[5,-3]],[[57322,72167],[9,-1],[10,-10],[8,-13],[2,-9],[-2,-2],[-1,-1],[-1,2],[-2,6],[-4,-7],[-4,-2],[-8,0],[-4,-2],[-3,-5],[-4,-13],[0,-8],[1,-7],[-2,-4],[-7,-1],[-5,3],[-5,16],[-4,5],[0,4],[1,2],[1,2],[-3,7],[-1,8],[2,5],[4,-3],[4,4],[4,-5],[5,-8],[4,-4],[2,3],[3,8],[1,2],[3,-1],[3,-2],[2,0],[3,3],[-4,3],[-1,6],[1,5],[0,1],[-3,2],[-3,3],[-2,4],[0,4]],[[57741,72139],[0,-7],[1,-5],[1,-5],[-3,-3],[-1,-1],[2,-1],[1,-2],[0,-2],[1,-3],[-6,-6],[-3,-2],[-4,0],[0,4],[1,1],[2,4],[2,3],[-12,7],[-3,4],[4,5],[-13,0],[1,6],[3,6],[3,6],[0,7],[2,0],[0,1],[2,3],[0,-4],[5,10],[6,6],[6,1],[0,-5],[-8,-4],[-3,-4],[-2,-8],[2,1],[2,0],[2,-6],[9,13],[1,-2],[0,-1],[1,-1],[-2,-2],[0,-3],[-1,-2],[-1,-2],[2,3],[1,-1],[0,-4],[-1,-5]],[[56907,72183],[22,-24],[5,-13],[0,-3],[-7,0],[-5,3],[-7,13],[-5,5],[-4,3],[-4,6],[-2,10],[5,1],[2,-1]],[[56984,72216],[11,-1],[0,-1],[0,-3],[0,-3],[-15,-28],[-10,-14],[-7,1],[10,37],[3,1],[6,9],[2,2]],[[56045,72236],[4,-4],[1,-7],[-1,-9],[0,-12],[-2,3],[-1,2],[0,2],[-1,5],[-4,-5],[2,17],[1,7],[1,1]],[[56798,72232],[11,10],[5,2],[4,-8],[-1,-7],[1,-32],[-3,-4],[-5,-5],[-9,-5],[-34,-1],[-10,-7],[-1,8],[2,13],[-1,8],[1,1],[1,4],[2,2],[-3,4],[-1,1],[3,4],[2,11],[3,5],[1,-3],[2,-4],[2,-3],[2,-2],[4,1],[3,-17],[6,-4],[9,0],[3,2],[-1,7],[-2,7],[-3,4],[-4,-4],[-2,4],[-3,7],[-2,5],[0,4],[3,6],[3,-4],[5,-6],[7,-4]],[[56845,72257],[3,-4],[3,-5],[1,-6],[-3,-8],[-4,-2],[-4,6],[-6,14],[4,8],[5,0],[1,-1],[0,-2]],[[57020,72216],[0,1],[1,0],[0,1],[1,2],[-3,-1],[-5,1],[1,5],[2,8],[0,8],[0,3],[12,16],[4,-8],[4,-14],[4,-6],[5,-5],[4,-2],[5,-4],[3,-10],[-4,-1],[-2,-4],[0,-5],[2,-6],[0,-4],[-6,-14],[-10,8],[-18,31]],[[56026,72228],[0,21],[1,9],[3,6],[1,-1],[1,-2],[2,-1],[1,0],[0,-3],[-1,-2],[-1,-2],[-1,-1],[0,-6],[-2,-6],[-2,-5],[-2,-7]],[[56835,72284],[0,-4],[-2,-4],[-8,-24],[-4,0],[-5,2],[-2,4],[-1,7],[-1,4],[-1,4],[1,7],[2,5],[4,3],[4,2],[4,-2],[1,-2],[2,-1],[2,0],[2,3],[0,-1],[0,-1],[1,-1],[1,-1]],[[57061,72282],[2,7],[5,8],[7,8],[2,0],[-2,-4],[1,-1],[1,-1],[0,-15],[-6,-6],[-6,-1],[-4,5]],[[57577,72327],[3,-9],[14,-6],[4,-11],[-9,-9],[-30,-15],[-7,-7],[-16,-30],[-6,-2],[-7,2],[-7,4],[-3,4],[-16,-12],[-4,-8],[3,-12],[-4,-2],[-2,-7],[0,-8],[2,-8],[-5,2],[-5,7],[-4,8],[-1,5],[0,21],[2,9],[3,-3],[1,3],[4,6],[1,3],[1,-2],[7,-6],[3,6],[3,6],[3,12],[10,15],[1,3],[29,31],[28,8],[4,2]],[[57113,72313],[2,6],[2,3],[4,2],[3,5],[3,-2],[7,-10],[-3,-7],[-5,0],[-7,2],[-6,1]],[[57223,72345],[4,-8],[4,-7],[6,-6],[5,-3],[0,-3],[-1,0],[-1,-1],[-4,4],[-5,-2],[-5,-3],[-3,1],[-4,-7],[-12,-15],[-4,-2],[-3,-6],[-8,-22],[-4,-5],[-22,-13],[-12,-2],[-5,15],[4,-3],[2,6],[4,4],[4,2],[3,-5],[2,0],[2,3],[2,1],[7,0],[1,2],[4,14],[-4,-2],[-1,3],[-1,5],[1,3],[3,0],[32,28],[0,4],[-2,1],[-1,2],[-1,1],[-2,0],[0,4],[8,4],[3,4],[2,4],[2,0]],[[56966,72354],[-4,1],[-5,8],[-5,12],[-1,11],[3,9],[5,7],[5,5],[4,-1],[-5,-31],[-2,-9],[1,-3],[2,-3],[2,-6]],[[56862,72402],[3,-8],[10,-21],[4,-17],[0,-4],[-1,-3],[-4,-3],[-1,-3],[-10,-18],[-4,11],[-4,17],[-3,16],[2,9],[0,4],[-3,4],[-3,10],[-3,2],[0,3],[0,2],[2,3],[-2,1],[0,1],[0,3],[3,0],[7,-10],[3,-2],[2,3],[2,0]],[[57475,72350],[2,7],[2,3],[1,2],[-1,9],[1,7],[2,6],[2,6],[1,1],[1,3],[1,4],[-1,4],[-2,4],[-3,-1],[-1,-2],[-2,-1],[-2,4],[-1,3],[-2,10],[-2,3],[-2,2],[-1,2],[1,9],[3,-8],[24,-16],[0,-5],[-4,0],[2,-7],[4,-4],[3,-4],[0,-9],[3,5],[2,2],[2,0],[3,-3],[1,-7],[-2,-10],[1,-7],[-1,-4],[-1,-2],[0,-2],[2,0],[0,4],[2,0],[-2,-9],[-5,0],[-8,5],[-2,-4],[0,-5],[-1,-5],[-2,-2],[-3,1],[-2,2],[-2,0],[-2,-3],[-2,5],[-2,5],[-2,2],[-3,0]],[[57168,72443],[0,-3],[-1,0],[-1,-2],[-5,17],[4,0],[4,2],[7,6],[-1,-4],[-1,-4],[2,-6],[2,-2],[-2,-5],[-2,-3],[-3,0],[-3,4]],[[57022,72411],[-3,-2],[-2,-4],[-1,-5],[-2,-6],[-2,-4],[-4,-5],[-7,-10],[-5,-2],[-10,1],[-2,2],[-6,8],[-3,2],[-2,3],[-1,7],[3,23],[4,7],[8,9],[-2,2],[-2,1],[-1,-1],[4,10],[7,11],[9,9],[8,5],[-4,-11],[2,-4],[8,-2],[4,8],[-1,2],[-1,7],[4,0],[3,0],[0,-5],[-1,-5],[-1,-4],[-1,-3],[-5,-20],[0,-9],[5,-3],[0,-4],[-4,0],[0,-5],[4,0],[0,-3]],[[57090,72498],[2,2],[5,-4],[6,-9],[4,-10],[1,-11],[1,-25],[0,-11],[-3,-25],[-1,-13],[-8,-29],[-1,-2],[-2,-1],[-4,-2],[-10,-17],[-3,-2],[-5,-2],[-3,-4],[-1,4],[-1,1],[-2,3],[-1,5],[-2,12],[-1,4],[-1,4],[-8,8],[1,3],[0,3],[0,4],[-2,4],[-1,5],[-1,5],[1,3],[0,1],[-4,15],[-3,7],[-4,3],[0,4],[1,2],[2,1],[1,0],[1,-3],[3,3],[11,21],[18,22],[1,4],[4,13],[2,1],[6,1],[1,2]],[[56789,72487],[-2,4],[9,10],[5,3],[4,-4],[1,0],[2,3],[1,1],[2,-2],[1,-2],[2,-8],[1,-11],[0,-12],[-1,-10],[-2,8],[-2,0],[0,-7],[-1,-6],[-2,-4],[-2,-3],[-1,2],[-1,1],[0,1],[-1,3],[1,1],[1,-1],[1,1],[-3,2],[-2,1],[-3,0],[-2,-3],[-1,6],[0,2],[-1,-1],[-2,-3],[-2,2],[-2,0],[-2,-2],[-2,-4],[0,7],[0,1],[3,4],[-2,3],[0,3],[1,3],[2,3],[-1,5],[1,2],[2,1]],[[56424,72552],[2,-2],[4,-4],[2,-4],[1,-4],[1,-6],[-1,-6],[-2,-2],[-6,2],[-4,5],[-2,7],[-4,6],[1,4],[3,3],[2,1],[3,0]],[[56551,72601],[-4,-7],[-7,-5],[-6,-2],[-5,2],[1,-12],[-4,-6],[-5,-2],[-7,0],[-16,-8],[-6,0],[0,4],[25,28],[7,4],[12,0],[6,4],[9,0]],[[56768,72626],[2,15],[6,11],[7,9],[4,9],[2,0],[0,-8],[0,-5],[-2,-8],[-1,-3],[10,-11],[4,-9],[-1,-13],[-4,2],[-3,-6],[-2,-11],[-1,-9],[-4,-7],[-5,-9],[-6,-5],[-6,-3],[3,21],[2,9],[5,6],[0,4],[-1,1],[-2,2],[-1,1],[0,4],[2,6],[0,6],[-3,3],[-5,-2]],[[57054,72629],[-4,1],[-21,-4],[1,4],[0,2],[-1,1],[0,2],[1,5],[1,1],[1,0],[1,1],[2,14],[-2,5],[-4,1],[2,9],[3,4],[4,2],[3,6],[8,-25],[1,2],[1,12],[3,2],[8,-4],[2,-1],[1,-3],[2,-3],[5,-3],[1,-4],[0,-5],[-2,-5],[-4,-3],[-5,0],[-5,-3],[-1,-11],[-2,0]],[[56928,72640],[1,-2],[2,-2],[2,-3],[1,-4],[0,-6],[0,-3],[-2,-3],[-17,-15],[-4,-5],[0,6],[0,4],[1,3],[1,3],[0,4],[-2,0],[-6,0],[1,6],[1,4],[2,4],[2,3],[-1,0],[-3,3],[5,2],[4,8],[1,10],[0,9],[-2,13],[0,5],[2,0],[7,-1],[3,-5],[2,-9],[2,-9],[1,-6],[-1,-4],[-2,-6],[-1,-4]],[[56521,72711],[1,0],[1,-1],[0,-1],[0,-2],[2,-6],[2,-4],[3,-2],[4,-1],[0,-3],[-5,-6],[-7,-2],[-7,2],[-5,6],[0,3],[7,4],[3,4],[1,9]],[[56969,72727],[-3,2],[-9,18],[-11,9],[-3,3],[-2,5],[-1,7],[-1,8],[1,5],[3,1],[16,-1],[1,-1],[3,-3],[0,-4],[-2,0],[0,-5],[2,0],[2,-2],[2,-2],[1,-4],[5,6],[5,-1],[5,-6],[2,-7],[5,9],[7,-3],[9,-6],[6,-4],[-2,-4],[3,-1],[1,-4],[1,-5],[1,-6],[-7,-16],[-2,-15],[-3,-3],[-13,4],[-8,8],[-4,2],[-3,2],[-3,11],[-4,3]],[[56770,72788],[8,-18],[-2,-18],[-7,-18],[-8,-15],[-8,-19],[-5,-7],[-5,3],[0,9],[1,29],[-1,5],[0,11],[3,14],[5,9],[4,-2],[2,4],[2,5],[-3,0],[-1,0],[0,4],[3,3],[2,1],[3,-1],[2,-3],[1,0],[1,3],[0,1],[2,-1],[1,1]],[[57322,72788],[-5,-16],[-7,-15],[-24,-37],[-5,-4],[-24,-5],[-5,-4],[-3,-4],[-6,-9],[-3,-3],[-2,-2],[-2,0],[-2,1],[-4,1],[-11,-5],[-4,1],[-1,12],[2,8],[9,15],[2,7],[2,8],[4,10],[5,8],[4,4],[7,1],[16,-4],[6,3],[5,-3],[9,4],[7,8],[8,14],[9,4],[13,2]],[[56540,72840],[5,-3],[-2,-7],[-3,-7],[0,-7],[-4,-5],[-1,-6],[1,-7],[-2,-6],[-2,-3],[-6,-3],[-3,-2],[-2,3],[-2,2],[-4,3],[0,4],[4,3],[-1,6],[-2,5],[-4,2],[-3,4],[-2,8],[-1,9],[1,4],[33,3]],[[57513,72812],[3,4],[2,-3],[0,-6],[-2,-7],[-6,4],[-10,-4],[-26,-17],[-2,-3],[-3,-4],[-2,-5],[0,-3],[-1,-2],[-3,-3],[-2,0],[-18,0],[-3,2],[-1,4],[0,4],[-1,5],[-5,12],[-3,4],[-6,3],[-3,6],[-3,1],[-2,0],[-4,-3],[-8,-2],[-4,-3],[-4,-5],[-1,-7],[-2,0],[0,4],[-2,0],[-3,-5],[-3,6],[-1,10],[-1,7],[0,14],[1,7],[3,6],[5,2],[5,1],[4,3],[1,8],[2,4],[32,13],[10,0],[10,-3],[3,-4],[8,-10],[9,-5],[11,-12],[3,-6],[1,7],[-2,5],[-2,5],[-3,8],[5,-3],[3,0],[3,3],[3,4],[0,-7],[7,-4],[13,-2],[-8,-6],[-1,-1],[-1,-5],[1,-5],[2,-4],[2,-7]],[[55805,72851],[5,-16],[19,-21],[3,-18],[-4,7],[-8,7],[-9,5],[-8,1],[-4,-3],[-2,-6],[-2,-5],[-2,-2],[-4,-3],[0,-7],[2,-7],[1,-3],[-1,-8],[-1,-3],[-3,-2],[-6,0],[-2,3],[-8,18],[-14,19],[-6,12],[-1,9],[-6,10],[-11,24],[-6,7],[2,7],[-1,10],[1,3],[-2,5],[11,27],[7,11],[7,-2],[0,-2],[0,-2],[1,-2],[0,-2],[6,-18],[2,-12],[3,-4],[7,-7],[9,4],[11,-8],[10,-13],[4,-13]],[[56942,72837],[0,-9],[-2,-11],[-4,-10],[-4,-7],[1,-2],[1,-10],[-2,0],[-2,6],[-6,8],[-3,6],[-6,25],[-1,4],[-4,0],[-4,3],[-2,4],[-3,7],[-5,15],[-3,4],[-5,-5],[-1,16],[-5,11],[-6,9],[-5,9],[-2,0],[-2,-6],[-2,-2],[-1,3],[2,9],[-3,4],[-4,11],[-3,5],[3,2],[1,2],[-2,4],[0,6],[1,6],[2,4],[15,14],[7,2],[4,-4],[-1,-6],[1,-4],[1,-1],[3,-1],[3,-2],[3,-4],[1,-4],[-1,-2],[0,-3],[2,-13],[1,-4],[2,-3],[7,-5],[22,0],[3,-5],[-1,-12],[-5,-20],[12,-16],[-2,-3],[-1,-1],[-1,0],[0,-8],[-2,-5],[-2,-4],[0,-4],[2,-3],[4,3],[4,-3]],[[56502,72914],[-2,4],[0,4],[2,6],[4,6],[4,4],[8,-4],[4,5],[3,9],[2,6],[-4,0],[-2,-3],[-2,-4],[-3,-1],[-2,1],[-5,3],[-3,0],[9,8],[-3,3],[-4,6],[3,0],[3,0],[3,-2],[2,-3],[1,5],[0,1],[-1,2],[2,3],[2,2],[3,0],[6,-2],[4,-2],[1,-4],[-1,-5],[0,-3],[1,-4],[2,-3],[1,-3],[0,-3],[8,0],[-10,-8],[1,-6],[-6,-9],[-1,-9],[-1,0],[-3,4],[-3,-3],[-3,-6],[-4,-4],[-4,1],[-9,4],[-3,4]],[[55759,73011],[-4,2],[-4,6],[-7,13],[-8,8],[-10,5],[-10,-3],[-4,-15],[-5,7],[-10,5],[-4,9],[-1,5],[-1,11],[0,4],[-5,14],[-1,6],[4,-2],[4,-7],[4,-3],[0,4],[-5,7],[-3,9],[-7,33],[-3,8],[-3,2],[-2,-10],[0,-10],[2,-19],[0,-12],[-3,-10],[-3,-5],[-4,-3],[-4,-6],[-1,0],[-2,10],[-8,8],[-2,10],[1,5],[2,6],[2,6],[0,5],[-1,5],[0,5],[2,3],[2,2],[3,7],[4,16],[2,19],[0,18],[2,-8],[0,-4],[2,0],[4,12],[2,-4],[2,-11],[3,-9],[3,5],[1,-3],[1,-7],[2,-3],[3,2],[5,9],[6,6],[3,10],[0,11],[-3,11],[6,-4],[-3,20],[-1,4],[1,8],[1,6],[0,6],[-2,5],[0,3],[10,0],[15,-72],[0,-5],[0,-9],[-2,-5],[-2,-4],[-4,-6],[3,-5],[6,-21],[4,-3],[3,5],[4,8],[3,4],[0,-2],[-1,-4],[-1,-3],[6,-1],[1,-7],[1,-8],[2,-8],[12,-18],[3,-15],[10,-23],[2,-10],[0,-9],[0,-10],[-3,-10],[-2,-1],[-7,3],[-2,0],[-3,-3],[-3,-1]],[[55754,73206],[3,-2],[3,-3],[5,-7],[-1,0],[-4,0],[2,-16],[1,-6],[4,-2],[0,-5],[-8,-2],[-4,-2],[-4,1],[-5,11],[2,4],[-4,8],[-4,9],[-5,20],[-1,5],[0,13],[-1,6],[-2,4],[-3,3],[-2,5],[1,9],[5,-5],[2,3],[3,14],[5,-3],[0,-7],[-1,-8],[-2,-6],[4,0],[3,-2],[3,-3],[3,-4],[-2,-12],[-2,-10],[-6,-19],[3,-2],[2,-1],[4,-1],[3,1],[0,3],[-4,5],[6,0],[-2,4]],[[55816,73332],[-6,-15],[-2,-10],[-1,-8],[-4,0],[0,4],[11,28],[2,1]],[[57267,73295],[-3,-7],[-1,-12],[-1,-10],[-6,-3],[2,-6],[1,-1],[2,-2],[-1,-3],[4,0],[1,-4],[-4,-9],[-1,-9],[0,-7],[3,-45],[4,-24],[-7,-2],[-7,-9],[-3,-13],[3,-15],[0,-8],[-7,-6],[-13,-8],[-2,-6],[-2,-13],[-2,-5],[-3,-1],[-5,4],[-4,1],[-3,4],[-6,13],[-2,1],[-1,0],[-2,4],[-3,7],[-1,7],[-2,-1],[-3,-1],[-1,-2],[0,5],[0,8],[0,4],[-5,-5],[-2,3],[1,9],[2,9],[3,4],[4,2],[5,2],[1,2],[3,6],[7,-1],[2,1],[2,7],[0,7],[1,7],[4,3],[-1,7],[1,14],[-1,8],[-1,-2],[0,-1],[-1,-1],[-2,4],[-1,4],[-3,2],[-2,2],[2,5],[-1,8],[-1,9],[-2,6],[-3,6],[-3,2],[-4,1],[-5,3],[-4,6],[-9,19],[-2,8],[-1,9],[2,7],[2,6],[1,9],[40,14],[6,-2],[13,-7],[1,-4],[12,-24],[0,3],[1,3],[1,2],[2,0],[0,3],[-1,1],[-1,0],[4,3],[4,-2],[3,-5],[2,-8]],[[57107,73336],[2,-5],[8,-11],[0,-3],[-1,-1],[-1,0],[-2,-22],[-1,-3],[-4,1],[-3,2],[-2,0],[-3,-3],[-1,5],[0,4],[1,4],[0,3],[-1,3],[-4,6],[-1,4],[-3,4],[-2,4],[1,4],[2,1],[2,-1],[1,-3],[1,-1],[1,4],[2,3],[3,0],[1,-3],[2,0],[0,4],[2,0]],[[55718,73340],[-3,-6],[-3,-9],[-4,-14],[-2,0],[0,15],[5,57],[5,20],[2,12],[4,22],[3,2],[2,6],[4,12],[3,7],[5,8],[7,5],[0,-2],[1,-3],[3,-3],[4,-8],[2,-9],[0,-8],[2,-7],[-2,-7],[0,-6],[1,-5],[1,-4],[0,-5],[-1,-3],[-1,-4],[-6,-16],[-1,-5],[0,-4],[2,-1],[1,4],[2,7],[2,5],[0,-9],[-1,-32],[-1,-7],[-2,-1],[-2,8],[-2,0],[1,-3],[1,-9],[-1,1],[-3,3],[0,-5],[-1,-2],[0,-2],[-1,-3],[-4,4],[-5,-2],[-2,-5],[2,-6],[0,-3],[-3,0],[-2,2],[0,4],[1,6],[-6,1],[-3,12],[-4,-5]],[[56854,73453],[1,-1],[0,-2],[1,-2],[0,-5],[0,-5],[-1,0],[-1,0],[-2,-1],[-1,-4],[-2,-4],[-2,0],[-2,4],[-2,0],[-3,-4],[-3,3],[-3,5],[-1,6],[-2,0],[-3,-3],[-4,-5],[0,-10],[-10,20],[12,8],[-3,17],[-2,5],[-3,-6],[-2,0],[-1,7],[-2,2],[-3,-1],[-4,-3],[0,6],[-6,5],[-1,9],[-1,-1],[-1,-3],[-2,5],[-3,3],[-2,-1],[-3,-3],[0,6],[1,5],[2,4],[2,1],[2,3],[1,7],[-2,11],[0,8],[1,8],[3,5],[6,3],[19,-22],[4,-7],[0,-6],[-1,-14],[1,-8],[1,-6],[1,-2],[5,-4],[12,-14],[5,-9],[4,-10]],[[56829,73068],[-2,-29],[0,-15],[4,-13],[-2,-9],[-3,-26],[-2,-9],[-5,-6],[-5,-5],[-6,-4],[-6,-2],[-3,2],[-2,3],[0,7],[-7,18],[-1,1],[-4,5],[-7,-5],[-5,-9],[5,-5],[0,-5],[-4,-6],[-5,1],[-4,5],[-5,10],[-1,4],[-2,7],[-2,5],[-2,3],[0,4],[4,4],[-3,13],[-3,4],[-4,-1],[-1,10],[-5,5],[-6,1],[-5,-4],[-3,4],[-2,0],[-2,-4],[0,3],[0,1],[1,0],[1,1],[0,16],[-3,3],[-4,-2],[-1,5],[1,4],[5,9],[2,5],[-1,8],[-4,8],[-2,15],[-4,5],[-4,2],[-4,-2],[1,-8],[-6,3],[2,10],[4,13],[4,6],[-2,8],[-2,0],[-3,-4],[-2,-4],[-1,-1],[0,-3],[0,-3],[-2,-1],[-3,2],[0,2],[1,3],[1,1],[0,5],[-4,0],[6,20],[-6,6],[-6,4],[-7,2],[-8,1],[7,3],[3,3],[2,6],[-2,5],[-1,5],[0,4],[1,1],[-3,10],[-2,5],[-1,-4],[-16,2],[-19,-4],[-6,1],[-9,6],[-4,1],[-6,-1],[-8,-3],[-4,0],[-19,8],[-5,-1],[-8,-4],[-4,1],[-3,6],[-7,27],[-1,-3],[-1,-1],[-1,-1],[-3,0],[3,9],[5,10],[4,9],[-2,9],[0,4],[2,0],[0,4],[-6,17],[-4,8],[-5,4],[-12,3],[-6,3],[-3,6],[-1,4],[-1,11],[0,5],[-7,8],[-1,2],[-1,2],[-2,1],[-2,3],[-1,6],[-1,5],[-2,3],[-9,9],[-7,6],[-8,14],[-2,2],[-2,2],[-3,12],[-1,2],[-6,6],[-27,34],[-10,9],[-7,4],[-3,0],[-5,0],[-8,-3],[-4,0],[-4,5],[-6,12],[-2,1],[-3,1],[-5,1],[-4,4],[-4,1],[-4,-2],[0,-4],[4,0],[4,-3],[2,-5],[0,-8],[-3,-4],[-4,-2],[-31,-5],[-6,-6],[0,7],[0,6],[1,6],[2,2],[2,2],[7,8],[2,2],[7,2],[12,12],[9,3],[8,7],[6,4],[1,2],[1,8],[1,3],[3,1],[6,1],[2,2],[2,5],[1,5],[0,6],[0,4],[4,2],[5,8],[3,2],[17,0],[6,4],[14,14],[7,2],[3,-2],[4,-8],[2,-2],[4,-1],[4,-2],[4,-4],[2,-5],[-2,-11],[3,-9],[6,-6],[6,-2],[0,-6],[4,-27],[2,-8],[1,-6],[3,-11],[5,-11],[12,-9],[12,-17],[7,-3],[0,-4],[0,-5],[0,-2],[2,0],[2,3],[4,-6],[7,-2],[4,-4],[3,3],[3,-3],[6,6],[5,-2],[4,-7],[2,-11],[3,-7],[5,-7],[11,-8],[13,-7],[13,-2],[6,-2],[6,-4],[5,1],[5,9],[6,-5],[6,0],[6,2],[6,-1],[18,-10],[5,-6],[-3,-1],[-2,-4],[-3,-5],[-1,-6],[0,-10],[1,-6],[25,-35],[4,-10],[-7,-9],[-5,-19],[-1,-21],[6,-12],[0,-4],[-5,-3],[0,-5],[7,-13],[0,-7],[0,-9],[1,-8],[6,-14],[1,-6],[1,-3],[2,-1],[0,-2],[0,-11],[0,-5],[2,-4],[-3,-8],[-1,-2],[2,-8],[4,-7],[7,-10],[10,-8],[1,-4],[1,-5],[1,-5],[2,-2],[9,3],[4,0],[8,-10],[11,-2],[5,-3],[5,4],[25,8]],[[56510,73653],[-4,1],[-3,1],[-2,-1],[-3,-1],[1,10],[3,4],[4,1],[2,2],[1,7],[3,7],[4,5],[3,4],[5,-5],[4,-7],[3,-9],[-2,-12],[-5,6],[-4,-7],[-4,-15],[-2,1],[-2,5],[-2,3]],[[56574,73636],[-3,3],[-8,14],[-2,5],[-1,8],[-9,23],[4,4],[1,-3],[0,-1],[2,0],[1,0],[7,-12],[7,-10],[9,-9],[9,-5],[-1,-9],[6,-2],[7,1],[6,-3],[0,-4],[-9,-16],[-6,-6],[-7,-2],[-2,1],[-4,6],[-8,2],[-2,3],[0,4],[3,4],[0,4]],[[55594,73709],[4,-8],[5,-6],[5,-9],[3,-14],[-6,1],[-3,1],[-3,4],[-6,12],[-2,8],[-1,8],[4,3]],[[56648,73697],[-4,-18],[-7,-17],[-9,-11],[-8,2],[4,8],[3,5],[4,7],[4,22],[14,37],[5,5],[0,-2],[0,-2],[-1,-2],[-1,-2],[6,-2],[-1,-12],[-5,-13],[-4,-5]],[[57392,73595],[0,-5],[-1,-10],[-3,-7],[-9,6],[-4,-4],[-4,2],[-2,6],[-3,5],[2,3],[-3,3],[0,3],[1,3],[0,3],[0,2],[2,7],[0,3],[-3,5],[-1,2],[-2,9],[-4,2],[-10,-1],[-5,-5],[4,-10],[11,-14],[11,-24],[5,-8],[0,-4],[-1,-3],[1,-5],[-8,-5],[-8,-4],[-19,-3],[-4,1],[-9,6],[-10,2],[-4,3],[-7,8],[-7,5],[-16,6],[-14,1],[-3,2],[-3,4],[-8,21],[-3,4],[-5,2],[0,3],[2,2],[2,3],[2,1],[1,0],[1,-1],[2,0],[10,4],[1,2],[5,12],[3,4],[3,0],[3,1],[3,1],[8,12],[8,11],[0,1],[3,3],[-1,6],[-3,5],[-2,3],[-9,4],[-4,0],[-6,-1],[-4,-2],[-4,-4],[-4,-7],[-4,-17],[-1,0],[-12,-29],[-4,-7],[-6,-2],[-5,1],[-24,15],[-4,4],[-4,5],[-3,2],[-3,1],[-5,4],[-10,16],[-5,4],[0,5],[3,2],[1,5],[0,7],[1,6],[-1,1],[0,1],[-1,1],[-1,1],[2,3],[1,2],[0,4],[0,5],[1,5],[3,2],[2,2],[2,1],[8,13],[2,4],[2,0],[3,-12],[9,1],[10,5],[8,-3],[1,4],[1,2],[1,3],[1,4],[1,-6],[1,-3],[1,0],[4,9],[6,4],[12,3],[7,5],[3,7],[-1,10],[-2,15],[50,3],[5,-3],[-2,-13],[5,-6],[8,-3],[5,-6],[-2,-6],[-9,-23],[1,-3],[11,-19],[10,-6],[2,-3],[1,-3],[10,-23],[4,-6],[6,-6],[-4,-4],[1,-5],[2,-4],[3,-5],[0,-6],[1,-3],[1,-2],[3,1],[0,-12],[4,-13],[5,-11],[4,-5]],[[56947,73900],[10,-11],[-2,-15],[-13,-31],[-2,0],[-3,28],[0,13],[6,8],[-1,5],[1,2],[2,1],[2,0]],[[55581,73823],[1,-7],[2,-18],[4,-8],[0,-4],[-4,-4],[-2,3],[-7,4],[-6,8],[-5,3],[-5,2],[-4,1],[-3,2],[-7,10],[-3,3],[-4,1],[-4,0],[-4,2],[-1,3],[2,-1],[2,2],[2,6],[-10,5],[-3,3],[-1,-2],[0,-2],[0,-1],[-3,10],[-3,12],[-2,12],[-2,25],[-4,12],[-5,10],[-7,9],[-6,5],[-4,4],[-7,28],[-1,4],[-5,0],[-3,0],[-3,4],[-1,8],[0,13],[-1,5],[-5,-6],[0,10],[-1,6],[-3,4],[-4,0],[3,5],[7,17],[2,5],[2,1],[26,2],[8,2],[7,6],[8,7],[4,-2],[2,-3],[2,-4],[3,-3],[7,-4],[3,-3],[2,-5],[2,0],[0,4],[2,0],[-1,-18],[-3,-11],[-6,-6],[-17,-12],[-3,-4],[-2,-7],[1,-7],[3,-6],[3,-2],[0,-5],[-4,0],[0,-3],[16,-14],[7,-3],[-1,-13],[-2,-2],[-5,3],[4,-12],[5,-62],[1,-4],[4,-3],[3,-3],[8,-2],[4,-3],[6,-8],[2,-1],[5,1],[4,2],[3,3],[2,-1],[3,-8]],[[57069,74180],[-3,-6],[-1,-2],[0,-4],[2,0],[0,-1],[0,-2],[1,-5],[0,-6],[1,-3],[-7,-6],[-7,-8],[-4,-12],[1,-14],[-4,0],[-3,-2],[-2,-3],[-2,-3],[3,-4],[2,-1],[-4,-3],[-3,-6],[-1,-5],[5,-5],[-4,-7],[2,-6],[3,-6],[2,-6],[1,-4],[-1,-1],[-1,0],[-2,-3],[-1,-4],[0,-6],[-1,-3],[-3,3],[-2,1],[-8,5],[-2,2],[-1,6],[0,5],[0,3],[-5,3],[-5,12],[-5,1],[7,8],[3,5],[2,6],[-2,8],[-3,6],[-3,3],[-4,1],[-11,-16],[2,0],[2,-1],[2,-1],[1,-3],[-5,-1],[-3,-6],[-3,-8],[-2,-9],[2,2],[1,1],[1,2],[3,-7],[3,-10],[2,-8],[-2,-4],[-6,0],[-4,2],[-9,6],[6,16],[1,3],[-1,6],[-3,-2],[-4,-6],[-1,-5],[-2,0],[0,5],[-1,2],[-1,2],[0,3],[-16,-8],[-3,-4],[-2,0],[1,4],[1,3],[1,3],[3,2],[-2,1],[-2,3],[-2,1],[0,5],[0,2],[2,3],[2,1],[0,5],[-2,0],[0,3],[1,1],[1,1],[2,3],[-2,0],[2,8],[-1,6],[-3,4],[-2,6],[0,9],[0,7],[-1,6],[-3,2],[0,4],[10,1],[18,7],[2,-1],[2,-2],[1,-3],[1,-2],[5,1],[14,7],[7,-3],[3,-7],[4,-9],[4,-9],[-1,-4],[6,4],[8,7],[4,5],[0,6],[5,14],[4,5],[1,-1],[8,1],[2,1],[8,7]],[[57136,74423],[1,-9],[-4,-5],[-25,-15],[-7,1],[-9,9],[-19,24],[-4,8],[-2,8],[5,-1],[16,16],[8,4],[8,0],[22,-11],[5,-5],[4,-7],[3,-9],[-2,-8]],[[56885,74594],[-6,-1],[-2,-6],[2,-7],[6,-3],[0,-11],[-5,-3],[-1,-8],[2,-18],[2,-7],[0,-4],[0,-5],[-2,-1],[-5,5],[-1,-2],[-2,-4],[-5,-4],[-9,-2],[-4,-2],[-6,-11],[-4,-4],[-2,6],[-2,4],[-4,7],[-1,0],[-2,-1],[-1,1],[0,1],[0,5],[0,2],[-4,6],[-2,1],[-7,4],[-6,0],[-4,5],[-2,16],[2,15],[4,16],[10,22],[21,28],[8,-7],[12,-2],[4,-3],[1,-3],[1,-6],[2,-5],[3,-2],[3,-1],[2,-3],[2,-4],[2,-4]],[[56634,72289],[1,-3],[0,-3],[-1,-1],[-2,3],[0,4],[2,0]],[[56516,72335],[1,-3],[1,-6],[-1,-1],[-2,1],[0,4],[0,1],[-1,1],[0,3],[-1,5],[2,-1],[1,-4]],[[57657,71934],[14,-1],[0,-3],[0,-6],[-1,-5],[-1,-1],[-2,0],[-6,-3],[-4,2],[-5,0],[-5,-2],[-3,3],[-1,8],[3,6],[2,1],[4,1],[5,0]],[[57551,72154],[3,-5],[3,-12],[-3,-11],[-6,-5],[-4,0],[-6,2],[-3,4],[-1,6],[4,12],[8,9],[5,0]],[[57464,72461],[2,-3],[2,-7],[0,-7],[-2,-1],[-1,0],[0,-2],[-2,-1],[-2,-1],[-3,1],[-4,4],[0,4],[3,3],[1,4],[-2,1],[-4,-4],[-3,1],[-2,5],[1,5],[1,5],[-3,3],[-3,3],[-2,4],[-4,4],[-1,8],[3,5],[4,-1],[1,2],[0,4],[2,0],[3,-3],[1,-1],[1,1],[1,-1],[2,-1],[1,-1],[3,-1],[1,-4],[-2,-6],[-1,-5],[3,-3],[3,-3],[1,-7],[1,-4]],[[57388,72592],[1,-3],[1,-6],[-1,-2],[-2,3],[-2,2],[-1,0],[-1,1],[-2,0],[-3,-3],[-1,-4],[0,-3],[-1,-2],[-2,0],[2,-4],[3,-7],[0,-20],[-3,-2],[-3,4],[1,4],[-1,2],[-3,2],[-2,6],[2,14],[1,4],[0,4],[-1,5],[0,8],[1,7],[2,1],[3,-1],[4,1],[3,-2],[3,-4],[1,-3],[1,-2]],[[56871,72745],[0,-3],[1,-8],[-6,-1],[-13,4],[-4,4],[5,2],[5,3],[3,6],[3,3],[5,1],[2,-4],[-1,-7]],[[55818,73360],[1,-2],[1,-6],[-3,-7],[-4,-4],[-4,-4],[-2,-2],[-3,-2],[-3,-6],[-2,-7],[-2,-1],[-1,6],[1,6],[5,15],[4,8],[5,4],[7,2]],[[55777,73368],[2,0],[0,-2],[-1,-3],[-2,-4],[-2,-3],[-7,-4],[-1,-7],[4,-5],[2,-4],[1,-1],[2,-3],[2,-6],[-3,3],[-10,16],[-4,15],[2,7],[5,1],[6,6],[1,-3],[1,-1],[2,1],[0,-1],[0,-2]],[[56689,73775],[2,-2],[1,-2],[0,-10],[-3,-14],[-5,-5],[-3,5],[0,4],[2,1],[-1,3],[-3,3],[-1,4],[1,6],[1,6],[2,6],[3,1],[0,-6],[0,-4],[2,2],[2,2]],[[59222,42170],[-20,-14],[-24,-17],[-35,-25],[-48,-34],[-46,-33],[-43,-30],[-29,-21],[-26,-18],[-22,-9],[-10,-6],[-21,-20],[-28,-20],[-37,-25],[-40,-27],[-19,-21],[-26,-28],[-23,-19],[-29,-14],[-36,-18],[-29,-15],[-5,0],[-39,-19],[-28,-13],[-38,-30],[-24,-18],[-29,-22],[-26,-27],[-21,-21],[-24,-6],[-5,-3],[0,-4],[2,-17],[0,-27],[1,-26],[11,-74],[7,-28],[9,-12],[4,-3],[3,-8],[3,-10],[2,-11],[1,-12],[1,-39],[1,-7],[4,-12],[1,-5],[-1,-6],[-5,-21],[-2,-13],[1,-8],[8,-17],[1,-5],[3,-17],[0,-2],[-4,-3]],[[58443,41210],[-11,-9],[-8,-1],[-9,8],[-4,4],[-7,2],[-3,-2],[-4,-7],[-2,-3],[-5,-2],[-3,2],[-7,10],[-11,5],[-11,-3],[-11,-7],[-11,-3],[-12,3],[-24,13],[-12,2],[-7,-3],[-11,-10],[-12,-4],[-16,-11],[-7,-2],[-6,1],[-5,4],[-6,1],[-7,-4],[-10,-18],[-5,-6],[-24,-5],[-4,-2],[-61,-58],[-10,-21],[-3,-4],[-5,-2],[-6,-7],[-4,-8],[-3,-7],[-6,-23],[-3,-7],[-7,-3],[-13,0],[-6,-2],[-1,-1],[-4,-4],[-9,-19],[-6,-16],[-1,-4],[-4,-12],[-1,-7],[1,-5],[1,-4],[1,-3],[1,-3],[-1,-21],[-4,-24],[-1,-24],[4,-17],[-6,-31],[-1,-13],[1,-10],[4,-25],[0,-14],[-6,-22],[-1,-5],[-2,-22],[-4,-9],[-11,-17],[-2,-10],[-6,-11],[-2,-4],[-4,-2],[-8,0],[-13,-5],[-101,-81],[-19,-25],[-27,-47],[-25,-22],[-43,-38],[-15,-18],[-11,-25],[-37,-117],[-5,-20],[-6,-47],[-7,-30],[-15,-31],[-28,-53],[-74,-157],[-3,-8],[0,-6],[0,-15],[1,-14],[-10,-23],[-10,-21],[-8,-16],[-8,-9],[-4,-2],[-13,-1],[-3,-3],[-10,-13],[-7,4],[-26,-25],[-7,-1],[-4,-3],[-4,-4],[-8,-15],[-3,-2],[-4,1],[-16,11],[-4,4],[-4,7],[-4,10],[-4,6],[-5,4],[-7,3],[-11,7],[-22,24],[-13,5],[-10,-3],[-2,1],[-2,3],[-2,4],[-3,2],[-12,3],[-3,2],[-1,4],[-2,5],[-2,5],[-2,2],[-3,-2],[-10,-16],[-2,-3],[-7,-2],[-4,-6],[-5,-2],[-2,-2],[0,-2],[0,-7],[0,-3],[-4,-2],[-5,0],[-4,-2],[-2,-7],[-2,4],[-15,-17],[-4,0],[-11,0],[-17,17],[-3,7],[-2,9],[0,9],[5,3],[-4,10],[-13,11],[-2,9],[-3,6],[-5,8],[-7,6],[-10,6],[-3,6],[-4,4],[-7,-1],[-14,-13],[-19,-8],[-2,-1],[-2,-5],[-2,-2],[-1,1],[-3,3],[-1,1],[-21,0],[-3,1],[-10,7],[-8,-1],[-3,1],[-5,5],[-9,14],[-5,5],[-2,4]],[[56494,40022],[-1,8],[0,8],[2,8],[-7,11],[-5,13],[-6,8],[-4,4],[-4,3],[-9,1],[-5,-1],[-4,-2],[-5,-1],[-5,2],[-3,8],[-1,8],[1,9],[-1,10],[-3,6],[-12,10],[-7,11],[-6,16],[-6,18],[-2,16],[-1,6],[-12,26],[-4,5],[-13,7],[-17,15],[-8,10],[-11,21],[-8,9],[-4,7],[-2,8],[-4,28],[-3,16],[-6,15],[-13,28],[-3,6],[-17,14],[-4,0],[-1,2],[-1,5],[0,11],[-1,4],[-3,8],[-9,6],[-4,5],[-3,7],[-3,17],[-20,65],[-2,6],[-2,3],[-5,1],[-1,2],[-2,4],[-2,7],[-4,12],[-2,8],[-3,5],[-7,3],[-1,1],[-2,5],[-2,2],[-1,-2],[-1,-1],[-2,-2],[-4,-3],[-3,-1],[-3,3],[-24,40],[-2,8],[-1,10],[-1,9],[-3,4],[-5,1],[-2,4],[1,7],[0,8],[-1,8],[-5,17],[-1,7],[0,10],[1,11],[3,11],[2,7],[1,8],[-5,4],[-9,4],[0,4],[-1,13],[0,6],[-1,2],[-3,6],[-2,4],[-1,9],[0,7],[-1,8],[-3,8],[2,-1],[7,1],[-10,32],[-7,19],[-1,13],[0,9],[0,36],[0,38],[0,2],[0,26],[0,61],[0,60],[0,61],[0,60],[0,26],[0,18],[0,13],[0,23],[0,89],[0,90],[0,89],[0,89],[0,89],[0,90],[0,89],[0,89],[0,89],[0,90],[0,89],[0,35],[0,54],[0,89],[0,90],[0,89],[0,89],[34,0],[35,0],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[35,0],[34,0],[9,0],[-3,22],[-5,18],[-6,17],[-15,33],[-6,16],[-2,19],[2,24],[5,27],[5,43],[5,42],[4,17],[12,38],[10,29],[2,10],[1,10],[-3,27],[-1,36],[-3,15],[-7,15],[-6,19],[-2,26],[2,83],[2,76],[6,29],[0,6],[-1,15],[-1,44],[-2,14],[-3,12],[-2,11],[0,15],[1,12],[5,23],[8,25],[1,7],[0,10],[-1,14],[0,8],[1,6],[3,9],[9,14],[2,8],[0,7],[-12,58],[-2,15],[1,84],[-5,2],[-2,8],[2,23],[-1,33],[1,10],[2,12],[-1,8],[-5,18],[-2,10],[-2,29]],[[47143,55494],[0,-30],[-8,-73],[-5,-22],[-1,-14],[2,-16],[2,-12],[0,-11],[-7,-14],[-6,-7],[-5,-3],[-6,-2],[-22,0],[-6,-2],[-6,-7],[-4,-11],[-7,-25],[-3,-6],[-7,-8],[-2,-5],[-1,-5],[-1,-7],[1,-143],[-7,-2],[-2,-2],[-13,-15],[-10,-19],[-37,-96],[-3,-7],[-3,-6],[-4,-3],[-11,-5],[-11,-14],[-41,-69],[-5,-13],[-18,-50],[-3,-4],[-22,-22],[-5,-2],[-10,-33],[-5,-9],[-1,-3],[1,-6],[4,-13],[1,-8],[-1,-5],[-1,-3],[-2,-2],[-6,-1],[-1,-4],[1,-12],[-1,-9],[-2,-11],[-2,-10],[-8,-9],[-1,-10],[1,-15],[-2,-3],[-9,-9]],[[46812,54567],[-5,8],[-11,6],[-6,6],[-5,8],[-4,8],[2,1],[1,1],[1,2],[1,4],[-7,0],[-4,-1],[-2,-3],[-2,0],[-2,13],[-4,9],[-15,26],[-39,48],[-65,51],[-67,56],[-54,36],[9,15],[10,1],[10,-7],[10,-9],[-1,5],[-1,4],[-2,2],[-3,1],[-2,1],[-2,8],[-3,3],[-5,5],[-3,0],[-5,-5],[-2,2],[-2,4],[-3,3],[-1,5],[3,11],[3,11],[6,10],[3,9],[3,6],[5,-3],[3,3],[3,1],[7,0],[2,0],[3,3],[2,0],[2,-1],[3,-5],[2,-1],[5,3],[5,6],[5,5],[8,1],[-1,2],[-1,4],[0,3],[5,3],[5,1],[4,4],[1,12],[-2,0],[-2,-1],[-2,0],[-1,-1],[-2,-2],[-2,5],[0,3],[-3,-1],[-3,0],[-3,-1],[-1,-4],[-1,-5],[-2,-3],[-4,-2],[-4,-4],[-5,0],[-3,-1],[-6,-6],[-6,-3],[-6,-5],[-3,-2],[-2,1],[-5,2],[-3,1],[-7,5],[-2,11],[-1,13],[-5,8],[0,4],[2,3],[0,3],[1,5],[-1,5],[-2,-4],[-2,-2],[-2,-1],[-1,4],[-2,0],[0,-9],[-7,14],[4,20],[10,31],[5,-5],[1,-3],[2,4],[-2,8],[0,8],[2,7],[4,2],[-6,8],[-5,-10],[-8,-27],[-14,-18],[-9,-7],[-4,7],[-2,0],[-18,7],[-2,0],[-2,1],[-2,2],[-11,16],[-5,4],[-3,6],[-2,11],[-1,10],[0,8],[3,5],[5,5],[-5,-2],[-14,-12],[-13,18],[-4,15],[-2,7],[-5,3],[-3,2],[-3,7],[-6,15],[5,2],[10,11],[5,3],[4,-1],[5,-3],[9,-9],[-6,13],[-7,10],[-6,12],[-4,29],[-1,2],[-1,2],[0,4],[2,8],[1,8],[2,9],[2,7],[3,6],[-9,3],[-4,7],[-2,12],[-4,15],[-3,4],[-4,4],[-3,5],[-2,9],[1,9],[0,7],[1,8],[2,7],[-2,-1],[-2,-3],[-1,-2],[-2,-2],[-2,-1],[-2,0],[-1,0],[-2,1],[-12,-4],[-7,-6],[-7,-9],[-7,-11],[-4,-11],[-2,0],[0,9],[0,25],[-1,13],[0,7],[1,7],[-3,5],[-10,33],[-1,0],[0,3],[-1,0],[-2,1],[0,5],[-2,6],[-7,20],[-2,2],[-1,6],[-2,6],[-3,2],[4,10],[1,5],[0,7],[0,6],[-4,11],[-1,6],[6,-2],[1,-2],[2,2],[1,-1],[1,-5],[5,4],[5,0],[5,-4],[4,-5],[4,-8],[5,-20],[10,-11],[7,-13],[7,-11],[5,2],[2,0],[0,5],[-3,1],[-3,3],[-2,5],[-1,7],[3,0],[0,4],[-8,4],[-7,5],[-4,9],[2,14],[3,6],[9,6],[3,5],[2,6],[2,6],[2,3],[4,-3],[0,7],[1,6],[1,6],[2,5],[3,-2],[18,-2],[5,-3],[3,-1],[2,2],[6,8],[3,2],[-5,3],[-6,-2],[-6,1],[0,7],[5,14],[10,46],[-7,-18],[-4,-16],[-6,-12],[-10,-6],[-5,0],[-4,2],[-4,0],[-7,-9],[-5,-1],[-4,3],[-3,8],[6,3],[3,7],[3,8],[5,7],[0,4],[-2,1],[-2,1],[-1,2],[-1,4],[-2,0],[-2,-18],[-2,-7],[-3,-3],[-5,3],[-4,7],[-5,14],[-3,-3],[-2,0],[-1,4],[-1,7],[-2,-10],[3,-7],[4,-4],[4,-3],[-4,-4],[8,-12],[1,-14],[-5,-12],[-5,-11],[1,-5],[0,-5],[-2,-4],[-2,-2],[-3,2],[-1,4],[-8,26],[-2,10],[-2,17],[-2,11],[-3,10],[-2,7],[-2,6],[0,10],[1,18],[1,1],[-1,62],[7,19],[4,2],[1,-2],[1,-4],[2,-4],[21,0],[5,2],[5,5],[8,2],[16,-1],[-11,7],[-2,-1],[-2,-4],[-5,0],[-5,2],[-3,4],[-3,-3],[-5,-2],[-4,1],[-2,6],[0,4],[-2,2],[-2,-1],[-1,1],[-1,5],[1,2],[1,1],[3,11],[5,6],[7,2],[7,1],[0,5],[-5,3],[-7,-3],[-11,-9],[-7,-1],[-7,3],[-5,9],[-2,14],[-1,-3],[-1,0],[0,-1],[0,-5],[-4,9],[-2,-1],[0,-2],[-1,-2],[-1,-4],[-6,11],[1,28],[-4,11],[0,3]],[[46305,55824],[6,10],[13,8],[7,3],[4,-2],[11,-14],[6,-5],[4,2],[9,13],[10,11],[5,6],[4,10],[4,19],[2,9],[3,8],[1,1],[5,1],[1,1],[-1,5],[-3,10],[-2,6],[2,17],[4,18],[6,9],[5,-12],[6,7],[6,0],[5,0],[6,2],[5,8],[6,23],[5,5],[4,2],[0,5],[-1,5],[0,5],[2,6],[2,3],[4,6],[2,-1],[1,-2],[1,0],[1,4],[1,3],[1,2],[2,4],[1,3],[10,65],[0,3],[-1,2],[0,3],[3,2],[1,1],[1,1],[1,2],[0,2],[3,20],[1,5],[3,2],[2,-1],[3,0],[1,5],[0,26],[1,1],[4,17],[3,6],[9,11],[1,0],[0,2],[0,8],[0,3],[2,0],[1,-1],[1,2],[0,3],[-1,6],[0,2],[4,44],[-1,6],[0,4],[0,4],[2,5],[10,12],[13,10],[41,19],[7,-1],[5,-6],[5,-10],[6,-9],[6,-4],[4,-2],[5,0],[9,4],[52,24],[2,5],[1,36],[118,2],[59,0],[7,-1],[10,-6],[4,-1],[3,-5],[2,-14],[3,-39],[2,-7],[21,-27],[11,-23],[10,-27],[7,-26],[3,-20],[2,-6],[1,-2],[5,-4],[2,-3],[1,-4],[2,-16],[2,-5],[7,-11],[3,-6],[1,-5],[1,-16],[2,-5],[3,-3],[2,-4],[0,-9],[-2,-14],[1,-11],[3,-9],[4,-9],[5,-6],[0,-4],[-3,-4],[-2,-5],[3,-3],[5,0],[2,1],[3,-1],[3,0],[2,-1],[3,-11],[4,-6],[3,-5],[3,-3],[12,-22],[1,-7],[-1,-7],[-2,-6],[-1,-8],[0,-5],[1,-10],[-1,-5],[-2,-7],[-3,-4],[-3,-3],[-3,-4],[-5,-19],[-3,-25],[2,-22],[10,-6],[12,1],[11,-3],[6,-4],[4,-5],[0,-4],[0,-4],[0,-1],[-4,-35],[-1,-21],[0,-43],[1,-6],[2,-17],[0,-2],[0,-7],[0,-2],[1,-2],[2,-3],[1,-1],[11,-32],[4,-7],[2,-6],[12,-33],[-2,-13],[-4,-12],[-5,-7],[-7,-1],[-5,-3],[-6,-9],[-4,-13],[-4,-17],[-5,-9],[-2,-7],[0,-8],[0,-7],[-1,-4],[-3,-1],[-4,-51],[-4,-15],[-5,-12],[-7,-20],[-2,-19],[5,-11],[2,20],[6,12],[7,6],[10,-1],[4,-4],[8,-11],[3,-1],[5,4],[10,14],[16,34],[3,9],[7,29],[3,8],[3,6],[3,5],[5,3],[8,3],[2,0],[8,-5],[2,-3],[2,-2],[3,1]],[[46529,54952],[-3,-5],[0,-6],[2,-18],[-1,-10],[-2,-7],[-3,-6],[-2,-9],[0,-10],[2,-19],[0,-8],[-4,-6],[-4,-2],[-5,3],[-2,9],[5,0],[-4,15],[-4,15],[-6,11],[-6,4],[-4,1],[-25,14],[-9,10],[-24,7],[-28,17],[0,4],[10,5],[1,8],[4,8],[4,3],[11,4],[30,0],[5,1],[10,6],[17,3],[5,-1],[6,-5],[-4,-10],[2,-3],[11,1],[5,-3],[4,-6],[3,-7],[3,-8]],[[46305,55824],[-3,4],[-3,5],[-1,7],[1,9],[1,0],[4,0],[1,1],[0,2],[-1,2],[1,3],[7,16],[6,18],[3,9],[5,6],[5,0],[8,-4],[6,4],[0,3],[-17,-1],[-8,2],[-4,6],[1,2],[2,5],[1,3],[0,8],[2,12],[2,12],[-6,-13],[-3,-15],[-2,-15],[-3,-18],[-6,7],[-3,3],[-2,7],[2,3],[1,5],[-1,16],[1,3],[1,4],[0,3],[-1,2],[-2,3],[-1,1],[-1,12],[0,18],[2,11],[5,-8],[-1,13],[0,5],[1,6],[-2,0],[-2,-4],[-2,-3],[-3,-1],[-4,0],[-2,-3],[-1,-6],[-3,-27],[-2,-6],[-6,7],[-3,2],[-1,3],[2,9],[-3,5],[-2,10],[-2,11],[-1,11],[2,11],[6,17],[2,13],[-2,0],[-7,-11],[-10,-2],[-9,7],[-4,12],[-2,18],[0,9],[3,9],[2,7],[2,7],[2,10],[0,11],[-2,0],[-6,-27],[-4,-11],[-5,-3],[-4,5],[-3,11],[-3,13],[-1,12],[-9,-8],[-6,-8],[-10,-12],[-8,-5],[0,-1],[-2,-3],[-2,-1],[-1,3],[0,5],[2,2],[2,1],[1,2],[9,27],[6,14],[3,16],[5,14],[0,9],[0,34],[0,4],[2,3],[3,3],[1,4],[2,7],[4,4],[4,5],[2,10],[-6,-6],[-4,-2],[-2,4],[-13,30],[0,7],[-2,-1],[0,-1],[-2,-2],[3,-19],[1,-16],[-3,-14],[-9,-8],[-10,2],[-5,14],[-1,19],[3,18],[11,30],[5,20],[-1,19],[-2,4],[-1,-7],[-1,-12],[-1,-5],[-3,-4],[-5,-17],[-4,-4],[0,-2],[-1,-2],[-10,-8],[-1,0],[-5,1],[-5,2],[-5,3],[-1,4],[-2,7],[-4,10],[-5,10],[-4,4],[-7,10],[-2,4],[-3,14],[-3,3],[-4,0],[-3,2],[-2,3],[-5,12],[-4,4],[-3,1],[-3,2],[-5,8],[-1,14],[5,18],[7,9],[7,-11],[-2,7],[-3,10],[-4,7],[-2,-2],[-2,-7],[-4,3],[-3,7],[0,4],[6,5],[5,12],[8,27],[-4,-4],[-3,-5],[-6,-13],[-3,-4],[-7,-8],[-2,-2],[-1,-8],[1,-27],[-1,-7],[-2,-6],[-4,-4],[-5,-1],[-6,4],[-5,9],[-2,11],[0,12],[4,10],[7,10],[4,11],[-4,10],[-1,-9],[-3,-5],[-4,-2],[-5,0],[1,-13],[-5,-10],[-6,-4],[-3,4],[-1,4],[-2,5],[-2,7],[-1,9],[1,4],[2,4],[1,4],[-1,4],[-2,1],[-1,-1],[-1,-2],[-1,-2],[-2,-10],[-6,8],[-17,32],[-3,3],[-4,2],[-4,-1],[-4,-2],[-4,-1],[-3,4],[-6,-12],[-3,6],[-1,15],[0,13],[2,19],[0,8],[-1,7],[-2,4],[-1,2],[-18,38],[-3,13],[0,12],[0,15],[1,14],[3,7],[0,1],[-5,-1],[-3,-4],[-2,-6],[-3,-5],[-4,-3],[-5,-2],[-4,2],[-2,7],[-2,0],[-2,-8],[-2,3],[-1,8],[-1,11],[0,10],[1,8],[3,17],[3,-3],[4,7],[4,9],[4,6],[-7,1],[-2,7],[0,11],[4,33],[2,9],[3,-4],[2,0],[0,9],[2,4],[3,3],[1,3],[3,26],[7,28],[4,4],[2,8],[0,9],[-1,8],[1,3],[3,9],[-6,-4],[-1,-4],[1,-7],[0,-9],[-9,-14],[-2,-3],[-4,-6],[-4,-15],[-4,-16],[-3,-19],[-4,-13],[-8,-20],[-8,-14],[-4,-3],[-1,7],[0,9],[2,7],[2,4],[3,2],[-2,1],[-2,0],[-1,-1],[-2,-4],[-4,8],[3,24],[2,10],[3,9],[2,3],[4,6],[2,3],[1,5],[1,4],[1,1],[-2,2],[-2,2],[-4,-10],[-12,-20],[-3,-10],[-4,-22],[-4,-7],[-2,12],[-4,7],[-3,8],[0,14],[4,-1],[3,6],[2,8],[2,7],[2,8],[0,9],[1,8],[-1,4],[1,3],[0,3],[1,6],[-5,-8],[-2,-5],[-1,-5],[-1,-3],[-8,-8],[-2,0],[0,7],[0,7],[1,5],[1,6],[-2,5],[0,5],[1,5],[3,5],[-5,1],[-2,7],[1,9],[2,7],[4,5],[4,4],[6,2],[4,1],[3,4],[2,9],[1,8],[2,4],[4,2],[6,13],[4,5],[-2,4],[-1,3],[-3,10],[0,-6],[-1,-5],[-1,-4],[-2,-2],[-2,-1],[-4,-3],[-1,-2],[-1,-12],[-3,-9],[-5,-5],[-5,4],[-1,-3],[-1,-1],[-2,-1],[-3,1],[2,11],[-2,7],[-3,2],[-1,-6],[-8,-22],[-8,3],[-6,34],[-7,-1],[5,-10],[1,-11],[-1,-10],[-2,-10],[-6,10],[-4,2],[-4,1],[9,-15],[4,-8],[1,-10],[-3,-11],[-5,-11],[-5,-7],[-3,-1],[0,2],[-2,0],[-1,0],[-1,-2],[1,-4],[1,-5],[0,-3],[0,-21],[1,-3],[3,-3],[3,-3],[1,-7],[-1,-3],[-3,-11],[-5,5],[-10,3],[-5,6],[-6,13],[-4,14],[-3,12],[-1,12],[2,11],[5,11],[2,2],[5,4],[1,2],[0,5],[1,4],[1,3],[2,3],[0,3],[-1,0],[-1,1],[0,2],[0,2]],[[45827,56965],[8,17],[9,23],[27,109],[5,46],[5,22],[27,85],[5,12],[7,7],[11,3],[23,-6],[12,5],[25,28],[25,30],[4,6],[2,5],[3,15],[2,5],[3,3],[2,0],[1,-2],[23,-3],[7,2],[3,-2],[2,-3],[3,-5],[2,-3],[5,-2],[4,0],[8,3],[4,0],[12,-4],[6,4],[12,16],[2,3],[6,-6],[5,0],[5,6],[4,11],[1,6],[0,14],[-1,6],[1,3],[4,0],[2,-3],[1,-12],[3,-3],[4,-3],[0,-3],[-1,-5],[2,-4],[5,-2],[8,3],[6,6],[5,6],[1,8],[2,26],[0,10],[-5,70],[1,25],[3,24],[-1,11],[-3,10],[-2,2],[-10,4],[-5,4],[-3,4],[-6,15],[-2,5],[0,5],[-2,3],[-7,6],[-3,4],[-5,11],[-6,7],[-5,4],[-8,2],[-2,2],[1,7],[0,12],[1,6],[6,15],[17,16],[7,12],[5,6],[8,4],[4,-3],[-3,-13],[19,0],[8,7],[4,15],[1,15],[3,12],[0,7],[-1,17],[0,7],[1,5],[5,25],[1,10],[-1,10],[-3,12],[-14,37],[-3,16],[0,13],[2,39]],[[46186,57975],[90,-7],[12,-7],[1,0],[2,-2],[2,-3],[1,-1],[2,0],[1,1],[0,2],[2,1],[8,4],[2,0],[3,-1],[3,-5],[3,-1],[2,1],[5,3],[2,0],[1,-1],[3,-6],[1,-2],[1,1],[4,2],[2,0],[2,1],[2,-1],[2,-3],[3,7],[5,-6],[5,1],[5,1],[4,-1],[4,-8],[1,-11],[0,-12],[-1,-10],[-5,-21],[-1,-9],[2,-12],[3,-9],[4,-5],[5,-1],[5,1],[5,-4],[5,1],[3,6],[1,11],[4,24],[11,0],[10,-12],[7,-13],[0,-2],[0,-4],[0,-5],[3,-6],[3,-2],[8,-1],[5,-4],[1,-6],[1,-5],[6,-2],[18,2],[6,-1],[5,-5],[5,-7],[8,-19],[1,-5],[0,-4],[1,-3],[4,0],[1,0],[2,2],[8,9],[5,4],[5,2],[5,0],[6,-3],[12,-9],[5,-8],[7,-25],[5,-5],[47,26],[10,12],[9,17],[5,5],[7,1],[17,-12],[6,-1],[4,2],[10,12],[3,4],[1,1],[2,0],[1,0],[0,-1],[17,-15],[6,-3],[22,-2],[11,4],[21,17],[12,4],[24,4],[9,-2],[18,-14],[8,-1]],[[46836,57815],[0,-11],[-5,-2],[-7,1],[-4,-5],[-1,-13],[1,-24],[0,-13],[-5,-24],[-8,-17],[-4,-17],[5,-24],[5,-10],[17,-16],[5,-8],[11,-32],[5,-8],[5,-8],[6,-6],[6,-4],[5,0],[9,8],[4,0],[5,3],[4,9],[3,11],[2,17],[2,2],[2,0],[2,3],[4,13],[1,3],[1,1],[9,13],[3,8],[3,25],[2,6],[4,2],[7,-1],[12,9],[5,0],[7,-4],[5,-7],[11,-37],[7,-10],[6,-6],[5,-9],[2,-16],[-1,-6],[-3,-10],[0,-5],[1,-6],[8,-16],[11,-45],[8,-18],[12,1],[4,4],[3,6],[3,10],[2,11],[1,8],[2,6],[5,7],[6,7],[4,2],[-2,13],[3,8],[6,5],[6,9],[0,4],[-1,6],[0,6],[3,2],[1,3],[-3,11],[1,6],[5,4],[13,-2],[3,8],[2,5],[9,17],[4,5],[2,-3],[1,-2],[5,-3],[-1,8],[2,3],[2,0],[3,3],[1,6],[1,1],[2,-3],[1,-4],[2,7],[11,9],[2,-2],[1,-4],[2,-4],[9,-4],[10,-9],[5,-2],[7,0],[2,0],[3,-3],[4,-7],[2,-3],[2,-1],[1,-1],[4,0],[3,-1],[3,-4],[6,-9],[3,-4],[6,-3],[9,-11],[6,-2],[5,-3],[10,-16],[5,-5],[2,0],[6,2],[2,0],[3,-3],[4,-7],[3,-4],[5,-3],[16,-1],[6,15],[4,11],[1,7],[0,12],[0,10],[2,10],[4,9],[9,12],[31,22],[6,10],[4,7],[12,11],[4,1],[17,-6],[7,14],[1,8],[-1,14],[4,2],[3,9],[1,12],[0,7],[-2,3],[-5,2],[-2,3],[-1,5],[0,6],[-1,4],[-8,9],[-5,10],[-4,10],[-1,6],[4,11],[13,6],[5,7],[2,1],[1,-1],[4,-4],[4,-3],[2,2],[2,4],[4,1],[21,-10],[12,-8],[33,-36],[9,-10],[5,-11],[3,-14],[1,-13],[-3,-13],[-3,-12],[-3,-12],[-1,-16],[1,-6],[3,-9],[1,-6],[2,-7],[3,1],[6,4],[4,-5],[3,-10],[3,-13],[-1,-14],[-4,-23],[-1,-13],[1,-11],[5,-9],[6,0],[7,1],[6,-2],[5,-9],[1,-10],[0,-11],[0,-13],[1,-7],[2,-5],[2,-6],[0,-7],[-14,-151],[5,0],[5,-4],[4,-6],[5,-3],[6,1],[5,5],[3,2],[4,-6],[6,-43],[1,-10],[3,-12],[3,-11],[3,-9],[15,-14],[8,-1],[7,11],[1,-7],[1,-13],[2,-11],[2,-8],[3,-3],[8,0],[16,-11],[9,-8],[6,-11],[-5,-3],[-6,-6],[-3,-7],[2,-9],[5,-2],[5,2],[3,-3],[-1,-15],[-4,-8],[-5,-4],[-5,-1],[-5,2],[-11,5],[-3,-4],[-2,-14],[0,-2],[1,-3],[0,-3],[0,-5],[-1,-1],[-3,-1],[-1,0],[-2,-3],[-6,-6],[-2,-2],[-3,-10],[-2,-22],[-2,-9],[-3,-3],[-5,0],[-3,-2],[-2,-7],[0,-6],[0,-5],[0,-7],[-3,-12],[-13,-27],[-2,-8],[-2,-9],[-1,-11],[1,-9],[4,-6],[5,3],[4,5],[6,1],[4,-2],[5,0],[5,1],[5,3],[5,7],[3,9],[7,32],[4,0],[6,-4],[6,1],[3,1],[2,0],[5,-4],[3,1],[5,6],[4,0],[6,-6],[6,-12],[4,-13],[2,-14],[0,-61],[-1,-11],[-1,-5],[-2,-5],[-6,-33],[-1,-12],[8,-6],[1,-11],[4,-117],[3,-15],[9,-25],[7,-27],[5,-6],[6,0],[6,2],[4,4],[3,3],[2,-1],[2,-9],[1,-8],[1,-15],[1,-8],[6,-8],[7,-3],[15,-1],[5,-7],[4,-12],[3,-15],[2,-14],[1,-15],[-2,-14],[-6,-28]],[[47780,56488],[-3,-7],[-2,-7],[-1,-8],[-1,-9],[-5,-14],[-7,-8],[-14,-11],[-5,-10],[-6,-16],[-3,-15],[3,-7],[3,-2],[-1,-6],[-3,-6],[-6,-5],[0,-5],[1,-6],[1,-5],[1,-1],[1,0],[2,-1],[1,-3],[0,-11],[1,-3],[-1,-1],[-1,-1],[-1,-2],[1,-5],[2,-1],[5,1],[1,-13],[-10,-154],[-1,-5],[1,-14],[1,-13],[1,-11],[2,-9],[16,-48],[5,-11],[4,-5],[6,-3],[7,0],[5,1],[5,4],[11,13],[6,3],[11,0],[2,-6],[-8,-47],[-1,-14],[-9,-51],[0,-21],[14,-12],[3,1],[3,2],[3,-1],[3,-15],[3,-6],[7,-10],[11,-14],[4,-9],[-1,-1],[-4,-7],[-7,-2],[-5,0],[-6,-1],[-25,-27],[-4,-9],[-2,-15],[-2,-14],[-1,-29],[-5,-51],[3,-19],[12,-8],[7,-1],[16,-11],[1,0],[3,4],[2,0],[2,-3],[2,-7],[1,-4],[6,-9],[2,-5],[6,-26],[3,-6],[8,-11],[2,-6],[1,-11],[-1,-22],[1,-13],[3,-24],[0,-11],[-2,-15],[0,-14],[1,-12],[6,-26],[-16,-3],[-8,2],[-6,8],[-9,37],[-6,17],[-6,-2],[-1,-9],[1,-9],[-1,-9],[-4,-4],[-5,0],[-5,3],[-3,5],[-4,5],[-2,8],[-1,9],[-2,7],[-4,6],[-4,2],[-4,-2],[-8,-4],[-3,1],[-4,-1],[-3,0],[-2,2],[-3,6],[-2,1],[-6,0],[-9,-8],[-6,-2],[-9,5],[-4,-1],[-14,-23],[-1,-4],[0,-7],[1,-7],[2,-6],[1,-8],[1,-12],[-3,-34],[0,-11],[0,-11],[-1,-7],[-4,-10],[-1,-6],[23,-32],[28,-18],[2,1],[17,12],[3,0],[1,-5],[-2,-9],[-2,-7],[-2,-18],[0,-9],[2,-8],[5,-7],[5,-11],[3,-13],[1,-6],[1,-7],[-5,1],[-4,5],[-2,5],[-3,1],[-12,-4],[-4,1],[1,-5],[-1,-15],[-3,-23],[-13,-44],[-1,-24],[2,-6],[6,-11],[2,-7],[-1,-6],[-2,-3],[-1,-2],[-2,-4],[-1,-9],[-1,-20],[-1,-9],[-9,-21],[0,-3],[1,-6],[-1,-2],[-1,-2],[-3,-4],[-1,-3],[-6,-15],[-1,-6],[0,-5],[1,-9],[0,-5],[-8,-18],[-10,9],[-11,17],[-9,5],[-10,-6],[-5,-1],[-7,16],[-7,-8],[-13,-24]],[[47642,54946],[-8,11],[-9,14],[-5,13],[-2,17],[2,22],[-33,3],[-3,-11],[-7,-19],[-2,-12],[0,-21],[-1,-3],[-2,-6],[0,-4],[0,-3],[1,-2],[2,0],[0,-3],[1,-14],[-1,-12],[-3,-10],[-5,-11],[-8,-10],[-1,-3],[-1,-5],[-1,-12],[-1,-6],[-2,-4],[-5,-3],[-2,-4],[-5,-13],[-3,-8],[-1,-6],[0,-10],[3,-11],[1,-11],[-2,-12],[-3,-4],[-12,-10],[-4,-1],[-5,18],[-4,5],[-1,-14],[-3,3],[-1,-1],[-1,-9],[-1,-1],[-7,-4],[-2,-2],[-5,0],[-3,-4],[-4,-7],[-4,-6],[-3,-2],[-4,-2],[-2,-1],[-2,-1],[-3,-6],[2,20],[-1,8],[-5,6],[-2,4],[0,10],[-2,2],[-6,0],[-2,0],[-7,14],[-4,37],[-4,12],[-4,1],[-9,-5],[-5,1],[-1,4],[-2,12],[-2,5],[-3,3],[-2,2],[-3,1],[-5,0],[-3,-2],[-1,-2],[0,-6],[-2,-2],[-1,-1],[-5,-13],[-3,6],[-5,20],[-3,-10],[-8,-17],[-3,-2],[-1,2],[3,5],[2,6],[1,7],[0,8],[1,8],[3,6],[5,9],[7,20],[2,12],[-1,9],[5,12],[2,7],[1,15],[2,9],[2,8],[3,5],[-6,14],[0,20],[3,21],[3,16],[-7,19],[-3,10],[-7,19],[-6,25],[-3,25],[1,25],[3,26],[1,1],[2,6],[0,6],[0,6],[-2,6],[-3,8],[-3,1],[-3,-5],[-3,-9],[0,7],[3,11],[1,6],[-5,43],[0,7],[-1,7],[-3,3],[-7,3],[-4,6],[0,16],[2,17],[2,9],[2,3],[0,3],[0,2],[-2,3],[-1,6],[-1,6],[-2,7],[-2,5],[3,6],[1,3],[2,2],[1,1],[4,5],[-2,1],[-2,5],[-4,7],[-14,13],[-4,10],[-2,4],[-2,-5],[-2,-4],[-2,-2],[-2,-1],[-2,1],[-5,0],[-4,-2],[-3,1],[1,11],[2,8],[4,5],[2,7],[-1,13],[-4,7],[-5,6],[-6,0],[-3,-8],[-1,-13],[0,-8],[-1,-2],[-4,9],[-3,11],[-1,10],[-2,28],[-1,10],[-3,8],[-5,1],[0,-7],[-1,-5],[-2,-4],[-2,-6],[0,-4],[1,-5],[-1,-4],[-6,-4],[-6,-6],[-2,-1],[-1,4],[-2,2],[-1,2],[-4,-2],[-1,-1],[-6,0],[-4,-1],[-5,-3],[-4,-6],[-11,-18],[-11,-14],[-6,-2],[-4,3],[-1,8],[3,28],[-2,8],[-5,5],[-15,9],[-5,0],[-5,-3],[-9,-19],[-5,-6],[-2,10],[-6,-5],[-3,-1],[-3,0]],[[47642,54946],[12,-13],[5,-21],[6,-41],[3,-58],[2,-11],[1,-7],[5,-15],[2,-7],[2,-19],[1,-5],[4,-8],[1,-5],[0,-4],[-1,-7],[1,-4],[1,-4],[4,-9],[1,-6],[1,-5],[1,-15],[4,-56],[0,-15],[-2,-5],[-6,-9],[-2,-6],[0,-10],[0,-10],[0,-9],[-3,-16],[1,-5],[2,-3],[2,-3],[0,-8],[-1,-9],[-2,-18],[-3,-17],[-4,-13],[-25,-59],[-6,-13],[-20,-34],[-4,-9],[-5,-6],[0,-1],[-1,-8],[-1,-3],[-1,-1],[-3,-2],[-2,-1],[-7,-18],[5,-1],[3,-1],[7,0],[3,-2],[3,-5],[8,-24],[5,-4],[4,6],[2,11],[1,11],[1,5],[2,-2],[3,-9],[9,-10],[4,-9],[-1,-3],[-2,-4],[-1,-10],[0,-5],[3,-11],[1,-5],[-2,-5],[-2,-3],[-1,-4],[3,-7],[3,6],[3,3],[4,0],[3,-3],[3,7],[3,-3],[3,-6],[3,-6],[1,1],[1,2],[1,2],[2,-2],[2,-5],[0,-5],[0,-4],[0,-2],[3,-2],[21,-11],[4,-2],[3,-4],[2,-3],[2,-2],[4,0],[4,2],[6,8],[4,2],[13,4],[7,1],[5,-3],[4,-6],[18,-9],[2,-1],[1,1],[1,1],[2,-1],[1,-2],[0,-7],[1,-3],[13,-21],[4,-11],[1,-8],[-4,-23],[-1,-12],[-1,-14],[1,-12],[3,-8],[0,3],[2,3],[4,2],[2,-1],[3,-5],[1,-5],[1,-14],[1,-2],[2,-1],[1,-1],[1,-4],[-1,-3],[-3,-3],[0,-3],[0,-17],[0,-4],[4,-10],[11,-12],[3,-7],[5,-15],[4,4],[3,12],[3,8],[2,-3],[3,-8],[4,-7],[5,-1],[0,-2],[6,-7],[1,0],[6,-6],[1,-4],[-2,-6],[2,-4],[4,-10],[2,-2],[3,3],[3,7],[2,1],[0,-10],[4,-1],[2,-8],[1,-8],[3,-4],[2,5],[1,9],[1,18],[9,-8],[1,-21],[-2,-25],[0,-22],[5,-46],[4,-15],[6,-26],[3,-9],[-5,2],[-2,-7],[1,-12],[4,-10],[-6,-1],[-2,1],[3,-6],[1,-1],[-2,-5],[-3,-6],[-2,-8],[0,-23],[-1,-6],[-4,5],[0,-10],[1,-10],[2,-11],[3,-8],[4,-5],[3,2],[2,-1],[1,-11],[1,-12],[0,-6],[-2,-7],[-3,-10],[-1,-4],[-1,-9],[-1,-4],[-3,-3],[-1,3],[0,4],[-1,4],[0,3],[2,3],[0,2],[-3,2],[-1,-2],[-7,-8],[-2,-6],[-1,-5],[-3,-20],[2,-28],[0,-10],[-2,-10],[-7,-29],[-4,3],[-5,1],[-4,-5],[-4,-11],[-1,-10],[3,-34],[-1,-13],[2,-8],[3,-8],[1,-11],[0,-9],[-1,0],[-2,3],[-4,1],[-8,-14],[0,-6],[2,-18],[-1,-7],[-1,-12],[0,-4],[0,-1],[1,-7],[2,-4],[2,-4],[2,-4],[1,-5],[1,-31],[-1,-127],[0,-5],[1,-6],[0,-6],[0,-15],[2,-12],[0,-5],[-1,-6],[-2,-11],[-1,-6],[2,-7],[9,-14]],[[47905,53047],[-15,-3],[-4,1],[-6,6],[-4,2],[-19,0],[-2,2],[-1,4],[-1,4],[-2,2],[-4,0],[-11,10],[-3,4],[-4,6],[-1,7],[-2,8],[-2,6],[-9,6],[-6,11],[-3,2],[-5,2],[-3,3],[-2,4],[-3,4],[-5,4],[-12,7],[-9,3],[-18,14],[-33,9],[-10,7],[-12,28],[-4,5],[-6,2],[-29,22],[-30,47],[-16,19],[-39,30],[-9,9],[-19,36],[-8,9],[-8,9],[-3,1],[-6,5],[-8,3],[-7,5],[-7,6],[-4,8],[1,1],[0,1],[0,2],[-12,7],[-10,12],[-16,30],[-4,6],[-10,9],[-8,14],[-5,4],[-5,5],[-4,11],[4,0],[-4,10],[-5,7],[-6,5],[-6,6],[-32,65],[-2,8],[-3,22],[-3,10],[-3,6],[-4,7],[-5,5],[-4,3],[-1,0],[-8,4],[-1,0],[-1,5],[4,9],[0,6],[-4,14],[-28,34],[-40,83],[-39,66],[-9,24],[-3,4],[-4,6],[-2,4],[-1,6],[1,8],[0,7],[-3,9],[-4,7],[-5,6],[-4,2],[-3,3],[-20,33],[-11,27],[-15,20],[-5,4],[-11,5],[-4,6],[-3,7],[0,8],[3,-3],[2,0],[2,2],[1,6],[-5,2],[-4,7],[-4,8],[-4,7],[-9,12],[-5,4],[-5,0],[0,-4],[14,-16],[7,-11],[2,-14],[-5,12],[-7,9],[-9,8],[-56,30],[-36,38],[-6,11],[2,10],[2,-5],[1,-3],[2,-2],[3,-2],[-4,16],[-1,15],[2,13],[7,13],[-4,0],[-3,-1],[-2,-3],[-3,-4],[-6,28],[-9,21],[-11,15],[-44,51],[-50,38],[-33,31],[-6,15],[0,24],[1,13],[1,6],[0,7],[-4,16],[-1,2],[-5,4],[-6,7],[-5,8],[-2,6],[-7,21]],[[56350,56936],[0,-16],[40,-121],[29,-43],[50,-104],[46,-157],[47,-158],[5,-26],[9,-103],[-2,-22],[-4,-18],[-10,-33],[-3,-17],[0,-7],[3,-14],[0,-8],[0,-19],[1,-5],[2,-8],[2,0],[1,-1],[2,-5],[0,-4],[-7,-46],[0,-10],[3,-18],[0,-9],[-3,-7],[-3,-6],[-11,-29],[-6,-13],[-3,-4],[-5,-2],[-9,1],[-4,-3],[-3,-10],[-2,-5],[-6,-75],[1,-15],[4,-12],[7,-9],[8,2],[10,21],[5,0],[2,-13],[0,-21],[-4,-34],[-5,-16],[-11,-27],[-4,-16],[0,-14],[2,-16],[5,-13],[5,-5],[4,2],[7,10],[4,5],[5,2],[5,-1],[4,-4],[4,-6],[4,-3],[9,0],[9,-5],[4,3],[9,9],[9,0],[18,-8],[16,3],[11,-10],[5,-2],[8,3],[29,-10],[15,5]],[[54499,51794],[-2,2],[-3,4],[0,6],[2,8],[0,5],[-1,2],[-4,5],[-1,3],[0,12],[-1,5],[-1,5],[-2,6],[-5,13],[-4,15],[-2,12],[0,5],[0,22],[-1,11],[-4,14],[-1,7],[0,14],[5,20],[1,11],[-1,12],[-4,21],[-1,12],[1,7],[2,8],[3,9],[-4,1],[-3,1],[-4,-2],[-3,1],[-1,5],[1,8],[-1,20],[1,16],[7,16],[2,14],[0,15],[-3,14],[-4,12],[-4,20],[-6,18],[-2,5],[-3,3],[-2,0],[-3,-2],[-4,-2],[-1,2],[-1,3],[-1,3],[-4,30],[-2,11],[-5,13],[-5,9],[-4,4],[-12,-3],[-2,1],[-2,4],[-2,1],[-2,-2],[-3,-3],[-1,-1],[-3,1],[-3,1],[-2,3],[-20,47],[-27,59],[-27,62],[-29,66],[-23,52],[-19,43],[-3,6],[-22,51],[-24,75],[-17,83],[5,0],[9,-5],[5,-1],[5,2],[11,11],[6,3],[5,5],[0,7],[-4,5],[-4,1],[-4,0],[-1,4],[-1,9],[-2,8],[-4,3],[-4,-1],[-4,6],[-1,16],[-1,33],[-3,36],[-2,16],[-4,17],[-10,25],[-2,8],[-2,15],[-2,6],[-3,5],[-12,9],[-44,64],[-10,21],[-7,25],[-4,28],[-2,45],[-2,10],[1,4],[1,6],[1,15],[0,6],[-4,56],[-1,7],[-2,6],[-1,6],[1,16],[-2,5],[-1,5],[-1,7],[0,9],[0,2],[2,22],[-1,23],[0,30],[-2,13],[-2,14],[-3,12],[-4,9],[-6,6],[-12,9],[-6,8],[-4,10],[-1,7],[2,1],[3,7],[3,10],[1,10],[1,8],[1,2],[3,9],[2,10],[0,5],[4,3],[1,6],[0,17],[1,10],[4,17],[1,6],[0,18],[0,7],[-2,10],[-4,14],[-1,8],[-1,10],[1,9],[5,27],[4,32],[2,9],[-2,12],[-2,63],[-4,11],[-2,12],[-3,12],[-4,0],[-7,-10],[-4,-1],[-9,2],[-5,0],[-4,7],[-2,9],[-2,11],[-2,9],[-4,9],[-4,7],[-3,8],[-2,5],[-2,7],[-1,5],[1,4],[2,5],[1,0],[3,-4],[2,0],[1,2],[1,5],[1,3],[1,6],[0,3],[-1,3],[0,2],[4,7],[6,14],[4,2],[8,17],[4,11],[3,10],[11,-1],[40,41],[4,7],[11,28],[3,11],[0,7],[0,6],[-1,14],[1,7],[7,20],[31,153],[3,15],[4,9],[5,6],[16,18],[4,6],[2,8],[5,27],[5,25],[10,51],[4,37],[2,11],[3,10],[2,3],[7,7],[2,6],[1,6],[-1,34],[0,6],[1,6],[4,14],[5,28],[7,11],[4,8],[21,25],[13,21],[1,4],[3,10],[1,3],[2,1],[5,0],[1,1],[1,8],[-5,10],[1,10],[15,43],[2,8]],[[54300,54925],[9,-6],[10,-2],[21,6],[12,-2],[14,-28],[11,-8],[10,1],[36,18],[5,4],[9,12],[4,9],[6,18],[4,9],[5,5],[6,4],[18,5],[9,7],[6,0],[6,2],[6,7],[10,15],[5,5],[25,7],[3,5],[1,9],[0,40],[2,12],[4,8],[3,-1],[3,-2],[2,-2],[4,2],[2,5],[3,15],[2,6],[4,8],[5,5],[11,7],[1,-5],[0,-5],[0,-5],[-2,-18],[1,-11],[3,-9],[5,-7],[3,-3],[3,-1],[2,-2],[2,-6],[2,-8],[-1,-6],[-1,-6],[-1,-7],[2,-13],[2,-7],[11,-6],[7,-7],[6,-11],[10,-24],[6,-22],[4,-5],[7,1],[2,3],[0,1],[6,10],[1,0],[3,-1],[1,1],[1,5],[-1,3],[-2,2],[0,5],[2,11],[3,8],[5,5],[10,7],[12,4],[6,-2],[2,7],[2,4],[3,1],[9,-3],[0,2],[0,5],[1,6],[4,7],[6,-4],[3,-4],[1,-3],[2,0],[4,5],[5,11],[10,25],[5,10],[2,0],[2,0],[2,2],[1,11],[2,7],[4,7],[0,1],[4,6],[38,29],[5,7],[4,9],[13,-8],[4,4],[2,14],[5,7],[5,3],[10,2],[6,3],[5,6],[6,17],[5,4],[7,0],[5,0],[38,-14],[11,-1],[11,4],[22,18],[26,13],[122,7],[22,10],[8,25],[0,28],[6,24],[9,17],[12,13],[16,12],[5,5],[6,11],[12,38],[9,18],[4,11],[2,14],[3,11],[28,67],[11,48],[3,4],[3,3],[3,9],[9,13],[-6,14],[-8,13],[-5,6],[-2,9],[-33,30],[-4,5],[-1,8],[-1,10],[-2,6],[-4,-6],[-5,8],[0,9],[6,20],[3,-2],[2,0],[2,3],[1,5],[1,6],[1,2],[3,1],[4,5],[5,4],[2,2],[0,5],[2,4],[4,8],[6,9],[11,11],[11,7],[7,-5],[2,0],[3,1],[7,-4],[2,1],[1,7],[4,3],[11,1],[6,3],[2,0],[4,-3],[3,-6],[2,-2],[3,7],[3,-5],[5,-4],[5,-2],[5,-1],[4,1],[10,9],[3,-3],[21,1],[1,-1],[2,-2],[1,0],[3,3],[6,-1],[8,8],[9,3],[7,-10],[5,4],[12,0],[2,2],[2,3],[6,6],[3,1],[3,0],[7,4],[6,2],[23,-3],[4,3],[3,11],[4,-4],[1,0],[3,2],[7,10],[2,0],[3,0],[2,1],[1,5],[0,3],[1,3],[1,3],[1,1],[2,-2],[1,-9],[2,-1],[1,2],[0,3],[0,4],[1,3],[8,14],[2,2],[2,0],[4,-4],[3,0],[0,2],[0,4],[0,4],[2,2],[3,-3],[2,-7],[3,-7],[5,-3],[4,2],[8,12],[4,2],[3,-1],[3,-5],[6,-10],[6,2],[23,-2],[5,2],[2,2],[5,8],[3,3],[3,0],[3,-3],[6,13],[3,15],[4,12],[7,5],[1,6],[-2,14],[-2,14],[5,6],[3,2],[2,3],[1,6],[1,7],[1,6],[2,-1],[6,-7],[0,1],[6,-1],[4,-3],[2,-1],[15,0],[-4,25],[11,12],[13,8],[2,4],[3,-4],[2,6],[1,6],[2,6],[3,3],[1,1],[2,5],[1,2],[1,-2],[2,-2],[2,-2],[1,1],[2,12],[1,14],[2,13],[6,6],[3,5],[11,25],[2,9],[1,6],[3,4],[6,8],[1,5],[0,5],[2,2],[4,-4],[0,8],[-1,2],[-1,2],[0,4],[4,3],[2,8],[0,20],[1,9],[4,16],[1,11],[0,3],[2,3],[2,3],[1,1],[1,1],[0,1],[1,2],[1,1],[1,-2],[3,-6],[1,-1],[2,2],[2,3],[4,7],[1,1],[1,-1],[1,0],[0,2],[0,9],[0,2],[5,21],[2,11],[16,21],[2,1],[1,9],[2,9],[14,34],[4,7],[4,-5],[11,-9],[4,-2],[10,8],[9,19],[7,24],[15,70],[7,22],[9,11],[3,-1],[3,-2],[4,-1],[3,2],[1,-1],[8,6],[2,2],[7,3],[4,9],[2,12],[3,12],[2,2],[4,1],[2,1],[2,6],[-1,5],[-1,9],[0,6],[1,12],[8,31],[-2,4],[0,4],[1,4],[0,4],[-2,5],[-5,12],[-1,5],[-1,10],[-2,23],[-1,12],[1,11],[2,18],[1,12],[2,9],[3,5],[5,3],[4,1],[2,2],[1,4],[2,4],[3,2],[2,1],[5,3],[3,0],[6,-5],[3,-2],[1,5],[1,1],[6,13],[9,12],[5,5],[17,9],[3,7],[-3,12],[2,8],[2,12],[3,12],[5,4],[23,-5],[5,2],[8,-9],[3,13],[3,18],[8,14],[3,8],[4,6],[4,-4],[2,0],[3,4],[6,10],[3,4],[6,5],[6,4],[1,0],[7,2],[5,3],[3,5],[5,12],[3,4],[3,2],[5,-2],[4,-3],[3,-1],[3,6],[6,-13],[6,0],[6,3],[6,2],[3,-2],[5,-5],[3,-1],[10,0],[2,0],[11,-6],[7,-12],[16,-12],[16,-3]],[[56350,56936],[11,84],[1,5],[5,11],[1,6],[0,12],[1,12],[1,10],[5,21],[1,11],[0,17],[-1,8],[-7,44],[-3,42],[-4,7],[-7,0],[-26,-6],[-3,3],[0,18],[-1,5],[-7,14],[-22,16],[-10,10],[-10,20],[-8,25],[-6,28],[-1,28],[15,183],[5,30],[1,10],[0,9],[-2,3],[-2,-8],[-4,5],[-11,-5],[-18,-12],[-3,-4],[-1,-2],[-2,-2],[7,65],[0,8],[0,7],[-1,7],[-20,132],[-9,30],[-1,8],[7,19],[13,68],[-3,8],[-29,22],[-35,48],[-7,-24],[-9,-18],[-11,-13],[-13,-8],[-11,-3],[-12,0],[-11,5],[-10,10],[-6,12],[-11,43],[-7,20],[-1,6],[0,4],[5,18],[7,45],[23,90],[8,24],[9,19],[5,6],[30,24],[4,7],[26,57],[10,27],[2,24],[-3,14],[-10,25],[-4,14],[-1,11],[0,34],[-4,23],[-18,35],[-5,23],[0,13],[1,9],[-1,9],[-4,11],[-7,13],[0,6],[7,23],[23,60],[2,7],[7,14],[8,11],[44,44],[6,7],[10,21],[6,7],[8,3],[6,5],[4,10],[1,18],[-2,19],[-3,11],[-5,7],[-15,5],[-5,6],[-3,8],[-3,13],[-1,7],[1,5],[2,10],[1,2],[4,4],[2,3],[0,4],[-1,4],[-2,3],[0,4],[-4,63],[-3,8],[-8,14],[-6,22],[5,21],[11,17],[12,12],[56,31],[2,5],[2,8],[-1,5],[-4,19],[-1,11],[-3,32],[0,15],[3,9],[10,15],[5,10],[2,10],[0,11],[2,15],[3,12],[25,54],[5,10],[7,7],[9,8],[2,5],[13,47],[2,13],[3,69],[0,20],[-3,19],[-6,16],[-6,14],[-5,15],[-2,17],[2,19],[6,13],[22,28],[17,45],[8,10],[6,2],[14,3],[42,-19],[21,5],[37,27],[18,8],[32,0],[34,-10],[32,-23],[7,-1],[4,18],[0,35],[0,137],[0,138],[0,137],[0,138],[0,137],[-1,138],[0,138],[0,137],[0,138],[0,137],[0,138],[0,137],[0,138],[0,137],[0,138],[0,138]],[[56939,63496],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,-1],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[28,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[28,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[27,0],[11,0],[3,4],[14,56],[1,4],[12,51],[8,15],[5,6],[5,2],[5,-2],[6,-5],[6,-12],[2,-13],[0,-15],[-7,-38],[-9,-52],[17,0],[7,0],[29,0],[28,0],[29,0],[28,0],[29,0],[28,0],[28,0],[29,0],[28,0],[23,0],[6,0],[28,0],[29,0],[28,0],[29,0],[28,0],[28,0],[6,0],[59,0],[65,0],[64,0],[63,0],[2,0],[65,0],[64,0],[65,0],[64,0],[65,0],[65,0],[64,0],[65,0],[65,0],[64,0],[65,0],[65,0]],[[60245,63496],[-1,-9],[-1,-3],[-1,-1],[-4,-1],[-5,-4],[6,-10],[3,-7],[0,-72],[7,-81],[-3,-17],[4,-5],[1,-7],[0,-7],[2,-7],[3,-6],[2,-6],[15,-71],[36,-111],[23,-45],[30,-76],[2,-10],[0,-11],[-2,-10],[-4,-5],[-5,4],[-6,-8],[-5,8],[-7,27],[-2,5],[-2,7],[-1,7],[2,3],[3,-2],[2,-5],[2,-6],[1,-5],[7,-10],[3,-3],[3,2],[-1,5],[-7,16],[-4,23],[-3,8],[-4,-3],[-8,12],[-2,-6],[-3,1],[-1,6],[-2,7],[1,8],[2,6],[0,7],[-3,8],[-7,3],[-5,-10],[-1,-16],[0,-14],[2,-3],[3,-1],[1,-4],[-1,-7],[-1,-5],[1,-15],[0,-7],[-1,-7],[-3,-5],[-3,-2],[-2,-3],[0,-10],[2,-5],[8,-19],[7,-35],[4,-37],[2,-78],[4,-37],[13,-70],[0,-39],[-1,-9],[-1,-10],[-3,-5],[-8,2],[-1,-8],[1,-17],[-2,-42],[2,-24],[0,-9],[6,-35],[3,-21],[1,-19],[2,-28],[-5,-23],[0,-4],[-1,-6],[-3,-9],[-1,-5],[0,-16],[2,-20],[17,-94],[2,-20],[0,-39],[-1,-10],[-1,-7],[-5,-13],[-1,-9],[2,-36],[0,-11],[0,-5],[1,-6],[5,-15],[6,-34],[11,-126],[2,-61],[1,-7],[2,-4],[3,-3],[1,-4],[0,-4],[-1,-8],[0,-4],[7,-19],[3,-30],[6,-38],[3,-24],[3,-31],[4,-11],[6,-22],[6,-23],[9,-17],[2,-7],[2,-7],[3,-3],[4,2],[3,4],[2,-1],[16,5],[10,8],[1,-11],[6,-6],[5,-2],[6,1],[2,-7],[0,-10],[5,-8],[-2,-23],[4,5],[3,2],[3,-5],[5,-10],[31,-18],[12,-23],[8,-26],[12,-24],[7,-11],[12,-9],[4,-9],[-4,-10],[-7,-8],[-2,-20],[8,-34],[13,-25],[15,-7],[11,4],[2,22],[5,3],[10,12],[2,-6],[-3,-5],[-4,-5],[-2,-4],[-1,-5],[0,-6],[0,-7],[-4,-7],[-4,-2],[-3,0],[-4,0],[-2,-6],[4,1],[10,3],[3,-1],[3,-3],[2,-4],[3,-4],[4,-2],[7,-1],[4,-3],[4,-2],[3,3],[1,5],[-4,4],[5,8],[5,-11],[9,-29],[-3,-8],[5,-6],[7,-1],[5,6],[2,-9],[1,-23],[2,-8],[6,-2],[2,9],[0,14],[-4,12],[5,-6],[11,-25],[2,-9],[0,-9],[1,-6],[3,-13],[-1,-6]],[[60722,61132],[-39,-67],[-8,-23],[-17,-91],[-8,-25],[-5,-9],[-14,-14],[-5,-9],[-1,-12],[0,-12],[-1,-12],[-4,-9],[-7,-2],[-5,6],[-4,9],[-4,5],[-10,-6],[-2,-1],[-1,-5],[0,-4],[1,-4],[0,-6],[-3,-11],[-5,-8],[-4,-1],[-1,13],[0,12],[0,10],[-3,6],[-6,0],[-7,-5],[-19,-26],[-9,-23],[-5,-9],[-7,-3],[-6,4],[-8,17],[-6,3],[-10,-11],[-12,-44],[-11,-12],[-11,-4],[-37,-23],[-3,-4],[-1,-7],[3,-27],[1,-10],[-2,-25],[-1,-12],[-6,-23],[-2,-13],[-2,-12],[-16,-38],[-26,15],[-8,-1],[-13,-17],[-8,-1],[-5,1],[-15,-5],[-2,1],[-11,14],[-3,2],[-7,2],[-5,4],[-4,6],[-5,4],[-5,-1],[-2,-5],[-1,-5],[1,-5],[5,-16],[1,-11],[-1,-11],[-7,-20],[1,-7],[3,-6],[3,-7],[0,-7],[0,-24],[0,-2],[2,-6],[0,-3],[0,-3],[-2,-4],[-1,-3],[-1,-35],[-7,-36],[-3,-8],[-9,-14],[-4,-8],[-3,-11],[0,-10],[0,-20],[-1,-11],[-3,-24],[0,-8],[2,-13],[3,-11],[5,-9],[4,-11],[0,-2],[2,-10],[0,-11],[-1,-10],[-1,-13],[2,-12],[5,-24],[0,-13],[-2,-15],[-12,-25],[-5,-15],[-9,-54],[-12,-74],[-14,-78],[-7,-25],[-14,-30],[-3,-13],[-15,-113],[-1,-25],[4,-26],[-9,-13],[-6,-18],[-14,-86],[-5,-17],[-20,-41],[-3,-10],[0,-13],[3,-56],[6,-99],[2,-33],[3,-58],[4,-74],[4,-73],[7,-109]],[[60351,62820],[3,-4],[1,-1],[1,-8],[-3,-39],[-2,-10],[-3,0],[-3,14],[0,18],[2,18],[4,12]],[[61771,57852],[15,32],[5,2],[7,-4],[13,-12],[43,-81],[4,12],[1,0],[9,6],[4,11],[2,5],[9,4],[3,3],[2,16],[-3,19],[-1,18],[12,23],[7,33],[4,8],[3,-1],[3,-5],[3,0],[61,54]],[[61977,57995],[4,-6],[3,-10],[2,-12],[3,-10],[27,-65],[6,-22],[4,-8],[5,-3],[4,7],[0,-21],[1,-10],[1,-10],[2,-8],[3,-7],[2,-7],[1,-10],[0,-23],[1,-12],[2,-8],[10,-31],[1,-10],[-1,-34],[2,-45],[-1,-19],[-4,-17],[-6,-15],[-8,-10],[-2,-1],[-7,-3],[-8,-8],[-6,-2],[-12,-1],[-5,-3],[-9,-13],[-21,-54],[-2,-2],[-1,-1],[-3,-3],[-2,-2],[-1,-4],[-1,-9],[-2,-3],[-4,-3],[-15,-2],[-4,-3],[-4,-6],[-4,-4],[-8,6],[-5,-2],[-26,-19],[-7,-9],[-6,-15],[-20,-74],[-2,-5],[-2,-3],[-9,-6],[-3,0],[-6,3],[-8,-1],[-2,1],[-1,2],[-3,8],[-2,2],[-6,-1],[-3,-5],[0,-4],[4,2],[1,-13],[0,-1],[0,-14],[2,-12],[9,-8],[5,-10],[4,-3],[4,2],[4,8],[3,2],[3,-1],[2,-3],[3,-1],[2,3],[2,7],[-2,5],[-3,3],[-1,3],[2,10],[6,8],[13,11],[18,4],[6,4],[3,4],[2,5],[3,2],[3,-5],[2,-2],[7,0],[39,1],[6,3],[6,-1],[6,-7],[5,2],[3,9],[2,7],[3,2],[2,-6],[4,-34],[0,-1],[3,-9],[3,-5],[9,-10],[4,-8]],[[60722,61132],[1,-6],[2,-6],[2,-19],[12,-34],[1,-6],[0,-12],[1,-6],[5,-14],[1,-4],[1,-10],[26,-82],[20,-92],[19,-69],[7,-50],[3,-12],[-3,-23],[5,-17],[7,-17],[4,-18],[2,-23],[2,-20],[8,-34],[1,-12],[1,-24],[2,-12],[4,-17],[2,-24],[1,-10],[9,-43],[6,-46],[-3,4],[5,-27],[2,-13],[0,-17],[-5,-11],[4,-27],[-1,-15],[-2,4],[1,-9],[2,-3],[3,0],[2,-2],[-1,-21],[1,-5],[1,-6],[1,-4],[1,-5],[1,-8],[-1,-23],[1,-7],[1,-6],[2,-9],[1,-8],[-1,-7],[-1,-15],[0,-8],[8,-77],[1,-27],[1,-9],[7,-29],[9,-77],[6,-21],[16,-21],[3,-9],[2,-4],[10,-9],[3,-5],[0,-8],[-1,-6],[-2,-6],[-1,-7],[1,-7],[4,-8],[1,-5],[0,-16],[2,-9],[7,-18],[-4,0],[-4,-6],[-1,-9],[2,-9],[1,5],[3,6],[3,2],[2,-5],[0,-11],[-6,-5],[-6,-2],[-3,0],[1,-6],[5,-16],[1,-20],[1,-4],[4,-3],[6,-2],[6,2],[3,5],[2,7],[5,1],[6,-2],[4,-4],[7,-19],[14,-97],[1,-2],[5,-4],[2,-2],[0,-11],[2,-10],[2,-8],[3,-6],[-4,-32],[-1,-51],[0,-2],[3,-4],[1,-2],[0,-9],[3,-5],[4,0],[4,4],[2,-11],[4,-2],[4,3],[6,2],[2,3],[2,7],[0,7],[0,5],[-2,5],[1,4],[4,5],[5,20],[1,11],[-6,20],[-3,24],[-2,8],[-4,1],[-2,-10],[-2,-5],[-2,13],[-1,11],[1,31],[-1,6],[-1,12],[0,6],[0,7],[2,3],[2,1],[1,4],[2,20],[2,6],[4,-6],[2,0],[0,4],[2,12],[2,0],[0,-2],[0,-6],[3,5],[3,13],[3,6],[4,-15],[6,-12],[26,-45],[4,-5],[6,-3],[3,-1],[2,-4],[4,-5],[2,-6],[1,-7],[-1,-6],[-2,-7],[-5,-8],[-2,-6],[-2,-5],[-4,-23],[3,1],[2,-1],[2,-4],[0,-6],[0,-2],[-3,-2],[0,-2],[0,-3],[1,-2],[1,-2],[1,-5],[7,-10],[1,-5],[1,-7],[3,-16],[2,-7],[0,-7],[-1,-8],[0,-7],[1,-7],[3,3],[4,-2],[3,-4],[1,-6],[1,-5],[1,-1],[1,-1],[1,-4],[0,-5],[-2,-9],[0,-4],[3,-11],[6,-6],[21,-16],[4,-4],[2,-3],[2,-11],[4,2],[7,11],[6,5],[4,12],[4,13],[4,10],[-1,-10],[1,-8],[3,-4],[5,2],[1,5],[-1,7],[1,5],[5,3],[3,0],[1,1],[3,-5],[-1,-2],[0,-4],[0,-4],[4,-2],[2,-2],[0,-3],[1,-3],[3,0],[2,1],[2,3],[1,4],[1,4],[-1,4],[-1,5],[0,11],[1,-3],[2,-6],[1,-3],[7,-4],[1,-5],[0,-5],[0,-5],[1,-6],[2,-2],[2,0],[1,2],[3,0],[5,-1],[3,-3],[1,-5],[1,-23],[1,-5],[8,-7],[-1,10],[2,3],[8,-1],[1,-3],[1,-5],[-1,-3],[-4,3],[-2,-4],[13,-29],[0,2],[1,1],[2,-1],[1,-5],[0,-5],[0,-16],[-2,-13],[0,-7],[2,-8],[7,-10],[2,-7],[0,-12],[3,4],[3,3],[3,0],[3,-2],[0,11],[6,-6],[15,2],[8,-9],[9,-13],[8,-5],[18,-1],[33,-15],[3,-3],[3,-9],[5,-22],[3,-10],[13,-18],[8,-12],[7,-17],[4,-20],[1,-22],[3,-9],[4,-6],[5,-4],[2,-5],[1,-5],[5,-13],[4,-24],[6,-14],[13,-23],[7,-18],[2,-8],[2,-11],[2,-19],[1,-7],[3,-7],[4,-6],[9,-11],[5,-9],[4,-11],[10,-39],[3,-25],[2,-9],[18,-11],[4,0],[9,7],[3,1],[2,-3],[6,-19],[4,-10],[2,-3],[4,-2],[3,1],[6,3],[2,0],[5,-3],[10,-14],[4,-3],[3,-4],[1,-11],[1,-12],[1,-9],[12,-19],[2,-8],[1,0],[6,-18],[2,-8],[1,-1],[2,-2],[1,-1],[1,-7],[2,-13],[2,-6],[3,-2],[3,3],[3,3],[1,0],[1,-4],[5,-7],[2,-3],[1,-6],[1,-14],[1,-5],[7,-10],[1,0],[1,-9],[2,1],[2,3],[0,2],[-2,3],[-4,10],[-1,4],[0,1],[-1,1],[-1,2],[0,4],[1,1],[4,-1],[1,0],[0,16],[-4,7],[-4,5],[-6,1],[-3,1],[1,4],[3,3],[3,0],[10,-16],[10,-29],[4,-4],[5,-6],[2,-15],[0,-24],[3,-20],[2,-9],[3,-3],[3,-7],[2,-15],[5,-68],[3,-15],[2,-28],[0,-3],[0,-2],[9,-10],[6,-4],[12,-2],[6,2],[3,5],[2,8],[2,9],[3,-2],[1,-4],[1,-5],[1,-5],[1,-3],[2,-2],[2,-3],[0,-7],[2,-7],[14,-25],[10,-34],[4,-5],[5,-1],[5,-5],[4,-5],[3,-7],[2,-9],[3,-33],[4,-22],[1,-11],[1,-17],[1,-9],[2,-6],[4,-2],[4,2],[3,4],[4,3],[4,-16],[5,-9],[8,-5],[10,-2],[-1,-3],[-3,-9],[3,0],[2,1],[3,3],[-1,1],[6,7],[4,8],[2,9],[1,5],[0,4],[0,3],[3,3],[-2,6],[0,6],[1,5],[1,4],[8,-12],[4,-8],[1,-6],[2,-6],[3,-5],[3,-5],[3,-5],[2,-7],[0,-18],[1,-9],[7,-28],[-1,-5]],[[61218,59733],[4,-1],[1,-1],[3,-24],[-2,-11],[-4,-4],[-6,6],[-2,1],[-2,1],[-14,-7],[-6,-1],[-6,4],[-9,10],[-7,2],[-13,-6],[-3,1],[-2,1],[-1,2],[-1,4],[-2,3],[0,1],[-1,2],[-3,-9],[-3,-5],[-5,-1],[-7,3],[-11,9],[-1,0],[-4,2],[-6,-3],[-3,7],[-2,5],[-7,45],[3,0],[2,-2],[0,-2],[1,0],[-2,-4],[2,-3],[2,-4],[0,-2],[1,-2],[1,-6],[2,0],[2,3],[4,-3],[4,-5],[3,-3],[3,1],[12,7],[-5,19],[-7,16],[-8,10],[-9,4],[-10,-4],[-3,2],[-2,10],[1,12],[2,7],[4,1],[6,-9],[2,-3],[4,0],[1,5],[-4,10],[-1,10],[0,2],[5,5],[7,2],[3,-1],[1,0],[1,7],[-2,10],[-3,8],[-3,3],[-10,-1],[-3,3],[-3,10],[10,-1],[11,-5],[10,-9],[6,-8],[2,-3],[3,-8],[1,-4],[-2,-9],[-2,-6],[-1,-7],[2,-4],[3,-1],[2,2],[3,3],[-1,2],[-1,4],[0,4],[2,2],[3,-4],[1,-7],[0,-1],[-2,-48],[1,-9],[2,-7],[0,-2],[5,-17],[1,-5],[3,0],[16,-10],[4,17],[2,3],[2,2],[-4,3],[-5,3],[-3,7],[2,6],[5,4],[7,1],[5,-1],[3,-2],[3,-1],[1,-1],[1,-1],[2,-3],[1,-5],[0,-5],[1,-5],[3,-2],[3,-1],[6,-9],[4,-1]],[[61137,59973],[-4,-8],[-1,-9],[2,-3],[2,-3],[2,-4],[3,-4],[1,-5],[-5,-3],[-8,5],[-7,8],[-11,3],[-3,6],[0,9],[2,9],[5,4],[6,1],[3,4],[-1,5],[-1,5],[0,7],[1,6],[2,3],[7,-12],[2,-2],[2,-1],[5,-5],[3,-7],[-2,-6],[-5,-3]],[[54470,78222],[-11,-9],[-6,-5],[-1,-1],[-12,-4],[-1,-1],[-3,-4],[0,-2],[2,-1],[0,-4],[-2,-19],[0,-1],[-1,-9],[1,-10],[3,-15],[6,-5],[3,-10],[1,-13],[-6,9],[-3,3],[-11,3],[-19,14],[-8,3],[-7,-1],[-11,-7],[-8,-5],[-7,0],[-22,4],[-4,4],[-1,-8],[0,-8],[-2,-5],[-1,-2],[-2,-1],[-3,-2],[-4,2],[-6,0],[-6,-3],[-4,-4],[-3,-9],[0,-1],[-1,-5],[-1,-4],[-1,-2],[-5,-6],[-8,-2],[-7,5],[-1,2],[-5,6],[-8,5],[-15,-1],[-36,-3],[-9,1],[-19,3],[-5,1],[-7,1],[-16,-7],[-10,-22],[-5,11],[-4,1],[-4,-3],[-6,-6],[-1,0],[-5,-1],[-4,1],[-3,-2],[-5,-10],[-3,-10],[-2,-10],[-2,-9],[-3,-10],[-3,-7],[-1,-2],[-6,-5],[-7,-1],[-3,2],[-5,-3],[-1,-3],[-2,-4],[-3,-5],[-2,-8],[-2,1],[-1,0],[-2,0],[-5,-9],[-3,-3],[-3,-1],[-6,-1],[-3,-1],[-4,-9],[-2,-11],[-2,-5],[-1,-5],[-5,-3],[-3,5],[-3,11],[-4,7],[-10,-3],[-4,1],[-4,3],[-5,3],[-2,3],[0,3],[-2,3],[-3,1],[-9,-3],[-33,1],[-26,1],[-1,0],[-3,2],[-15,19],[-4,3],[-5,2],[-5,1],[-5,-2],[-4,-1],[-5,1],[-25,18],[-8,2],[-18,-5],[-4,0],[-19,7],[-4,0]],[[53805,78019],[-4,-1],[-4,1],[-34,16],[-12,0],[-2,3],[-4,6],[-2,1],[-17,-2],[-12,4],[-28,-9],[-11,1],[-6,3],[-18,16],[-23,8],[-65,7],[-15,15],[-7,3],[-3,1],[-2,0],[-4,-3],[-3,0],[-2,2],[-6,5],[-2,2],[-14,2],[-16,-3],[-4,1],[-5,3],[-8,9],[-9,2],[-6,1],[-12,7],[-9,13],[-6,19],[-2,13],[-5,4],[-5,1],[-6,3],[-3,3],[-1,3],[-1,4],[0,7],[1,7],[1,4],[1,4],[-1,8],[-2,13],[-5,4],[-11,1],[-4,2],[-2,3],[-1,3],[-3,5],[-3,2],[-7,2],[-3,2],[4,6],[0,5],[-2,6],[-2,6],[-1,14],[-1,7],[-2,6],[3,10],[16,14],[6,11],[0,8],[1,8],[-7,3],[-13,-4],[-5,-1],[-28,-21],[-20,-2],[-12,-6],[-12,-9],[-10,-11],[-12,-3],[-3,-3],[-6,-7],[-3,-1],[-5,3],[-9,10],[-5,1],[-2,-1],[-3,1],[-14,4],[-7,-1],[-8,-3],[-3,-2],[-2,-1],[-3,1],[-2,2],[-2,2],[-1,3],[-2,1],[-5,2],[-3,-1],[-2,-3],[-2,-4],[-10,-14],[-8,1],[-9,6],[-10,3],[-19,-5],[-20,-9],[-4,-4],[-18,-26],[-3,-7],[-3,-21],[-5,-18],[0,-3],[0,-6],[0,-3],[-2,-2],[-3,-2],[-1,-1],[-6,-16],[-4,-6],[-4,-1],[-4,3],[-10,1],[-5,-1],[-9,-5],[-3,0],[-3,2],[-5,6],[-2,2],[-3,0],[-5,-3],[-3,1],[-8,6],[-3,2],[-6,-3],[-3,0],[-2,5],[2,3],[6,8],[1,4],[-2,6],[-22,18],[-4,2],[-5,-1],[-28,-11],[-12,2],[-9,10]],[[52903,78223],[0,13],[3,20],[-1,10],[-3,5],[-9,10],[-6,14],[-3,5],[-1,1],[-2,1],[-2,-1],[-8,-7],[-7,-11],[-4,-14],[-1,-11],[-7,-1],[-5,3],[-4,-2],[-5,-10],[-1,-8],[0,-5],[-1,-4],[-3,-6],[-12,-9],[-7,-3],[-2,0],[-4,0],[-12,6],[-6,5],[-11,15],[-30,14],[-6,8],[-4,7],[0,6],[0,6],[1,14],[1,6],[0,3],[-1,2],[-1,0],[-2,1],[1,7],[-53,24],[-4,1],[-15,-3],[-5,2]],[[52661,78337],[8,15],[2,15],[-3,15],[-7,13],[-8,8],[0,5],[3,9],[0,4],[-3,8],[-2,5],[-1,5],[1,9],[-4,6],[-3,5]],[[52644,78459],[9,22],[10,17],[1,4],[1,10],[1,6],[11,19],[3,9],[0,25],[-8,11],[-10,6],[-8,18],[-1,4],[-1,10]],[[62434,72466],[-3,-17],[0,-6],[2,-11],[2,-4],[1,-1],[3,-1],[2,-3],[1,-4],[1,-9],[1,-3],[3,-1],[5,3],[3,1],[2,-2],[3,-6],[6,-6],[2,-5],[0,-6],[-3,-7],[-2,-16],[2,-10],[2,-10],[1,-13],[-1,-14],[-4,-11],[-10,-21],[-3,-14],[2,-11],[6,-6],[7,-3],[9,1],[4,-1],[3,-5],[3,-6],[3,-3],[3,-2],[4,0],[4,-4],[4,-10],[7,-21],[3,-13],[0,-11],[-6,-21],[-3,-21],[0,-12],[-1,-1],[-3,-3],[-1,-1],[-1,-10],[4,-8],[1,-2],[4,-6],[4,-7],[0,-8],[2,-5],[2,-4],[3,-6],[1,-8],[0,-5],[1,-6],[4,-6],[7,-6],[8,1],[16,11],[7,-1],[5,-11],[3,-15],[1,-13],[1,-26],[2,-10],[5,-12],[-7,-7],[2,-7],[5,-7],[4,-7],[1,-12],[0,-27],[1,-12],[9,-20],[3,-12],[-1,-12],[-3,-9],[-4,-12],[-1,-12],[1,-10],[5,-9],[6,-1],[6,3],[6,7],[5,2],[9,8],[8,1],[6,-4],[10,-7],[11,-17],[3,-4],[8,-2],[8,-13],[13,-32],[7,-30],[3,-8],[5,-3],[11,6],[3,-1],[5,-6],[5,1],[6,5],[6,10],[3,0],[3,-2],[3,-1],[9,6],[18,-2],[5,4],[5,5],[5,3],[5,0],[8,-6],[2,-1],[1,-2],[2,-12],[1,-4],[2,-3],[2,-3],[6,-5],[6,1],[11,4],[6,4],[4,5],[5,5],[6,-1],[5,-6],[2,-8],[-1,-9],[-3,-10],[-4,-7],[-9,-9],[-3,-10],[-5,-7],[-6,-1],[-10,1],[-14,-13],[-6,-2],[-20,1],[-5,-4],[-4,-7],[-2,-9],[-1,-10],[0,-10],[3,-23],[-1,-8],[-9,5],[-1,0],[-1,-1],[2,-12],[3,-11],[1,-3],[1,-2],[-1,-3],[-1,-2],[-2,-3],[-1,-4],[-1,-5],[0,-5],[4,-17],[18,-50],[15,-24],[7,-13],[2,-18],[-1,-2],[-2,-6],[-3,-7],[-2,-8],[0,-9],[4,-5],[11,0],[4,-6],[-1,-15],[-6,-18],[-4,-17],[6,-12],[-2,-7],[-3,-3],[-4,-1],[-7,-4],[-5,2],[-2,0],[-8,-8],[-4,-7],[-4,-2],[-9,7],[-3,-1],[-3,2],[-6,7],[-4,2],[-2,-1],[-4,-11],[0,-3],[1,-7],[-1,-3],[-2,-2],[-3,0],[-2,-1],[-3,-5],[-2,-7],[0,-8],[1,-8],[3,-16],[-1,-11],[-2,-11],[-2,-14],[-5,-10],[-7,5],[-3,3],[-5,4],[-7,0],[-2,-12],[1,-15],[-2,-14],[-7,-9],[-8,-2],[-4,-2],[-2,-7],[-1,-7],[0,-12],[-1,-7],[-7,-16],[-2,-9],[4,-8],[2,-3],[3,-3],[2,-4],[1,-5],[0,-7],[2,-3],[1,-3],[1,-4],[1,-11],[0,-12],[1,-10],[3,-7],[1,-4],[0,-6],[-1,-7],[-1,-4],[-1,0],[-7,4],[-19,2],[-8,4],[-10,9],[-11,5],[-1,-16],[3,-24],[-1,-17],[-1,-5],[-2,-4],[-1,-4],[-2,-3],[-15,-6],[-3,-8],[9,-49],[3,-12],[6,-7],[5,8],[6,0],[6,-7],[4,-11],[2,-14],[-1,-14],[-3,-29],[-2,-5],[-4,-11],[0,-6],[1,-7],[2,-5],[2,-5],[0,-6],[-3,-7],[-11,-16],[-4,-8],[-7,-11],[-3,-13],[-3,-15],[-4,-16],[-2,-5],[-3,-3],[-6,-5],[6,-14],[6,-6],[7,-1],[9,2],[1,-1],[25,-80],[4,-8],[4,-6],[4,-7],[2,-10],[1,-12],[2,-10],[3,-10],[3,-10],[5,-7],[13,-17],[1,-4],[1,-5],[0,-21],[1,-4],[5,2],[5,6],[8,14],[5,3],[13,1],[6,2],[-1,-18],[5,-9],[6,-7],[2,-13],[-3,-9],[-13,-14],[-5,-10],[5,-8],[8,-3],[9,2],[5,8],[1,2],[2,0],[1,0],[0,-1],[1,-1],[1,0],[1,-2],[9,-20],[4,-11],[2,-11],[1,-12],[0,-10],[1,-8],[10,-16],[11,-28],[8,-13],[4,-7],[3,-10],[0,-6],[-2,-12],[0,-4],[1,-6],[3,-4],[1,-5],[-2,-8],[-4,-8],[-8,-13],[-6,-8],[-4,-2],[-5,1],[-6,-1],[-5,-6],[-1,-7],[4,-6],[12,-2],[6,-4],[4,-7],[1,-8],[-2,-10],[-4,-8],[-4,-6],[-4,-8],[6,-23],[16,-4],[33,7],[30,-17],[27,-23],[8,-14],[26,-27],[1,-1],[13,-19],[18,-20],[12,-23],[83,-132],[9,-11],[9,-8],[8,-4],[10,2],[5,3],[13,13],[4,0],[15,-10],[6,-6],[4,-7],[3,-9],[5,-11],[7,-10],[2,-5],[0,-7],[-1,-3],[-2,-4],[-2,-11],[-1,-2],[0,-3],[2,-8],[1,-3],[8,-15],[2,-3],[1,-3],[5,-12],[1,-4],[3,-2],[2,-8],[5,-7],[1,-8],[0,-8],[-2,-6],[-1,-5],[-1,-6],[-1,-9],[0,-4],[2,-3],[5,-2],[3,-4],[2,-7],[3,-5],[4,-1],[5,-4],[1,-1],[4,-11],[7,-26],[4,-9],[10,-8],[2,-11],[2,-10],[9,-32],[2,-5],[5,-6],[3,-4],[1,-5],[2,-10],[1,-5],[4,-9],[11,-15],[4,-11],[0,-12],[-1,-14],[-42,-209],[-1,-102],[-1,-143],[91,0],[3,-3],[1,-8],[-1,-285],[0,-18],[30,-8],[3,-2],[3,-3],[4,-9],[4,-12],[3,-13],[2,-26],[1,-6],[2,-4],[3,-3],[4,-1],[3,1],[10,3],[4,0],[3,-3],[3,-4],[5,-17],[9,-19],[11,-18],[2,-5],[1,-6],[1,-6],[-1,-7],[-2,-5],[-3,-4],[-2,-5],[0,-7],[0,-4],[4,-14],[5,-11],[2,-6],[0,-1],[6,-30],[0,-8],[3,-11],[1,-4],[2,-3],[4,-6],[4,-5],[8,-4],[2,-2]],[[63480,68213],[0,-3],[7,0],[1,-6],[-3,-7],[-8,-3],[-30,6],[-21,13],[-10,14],[-10,6],[-15,18],[-12,7],[-13,5],[-12,0],[-11,-5],[-19,-19],[-2,15],[-1,18],[-2,16],[-4,12],[3,-20],[0,-7],[0,-8],[-1,-7],[-1,-6],[2,-5],[0,-14]],[[63318,68233],[-60,56],[-16,5],[-72,0],[-16,-3],[-44,-35],[-15,-18],[-9,-25],[-24,-112],[-10,-35],[-2,-9],[-1,-17],[0,-6],[-6,-23],[-21,-64],[-8,-40],[-4,-11],[-18,-37],[-17,-54],[-42,-88],[-8,-16]],[[62925,67701],[-12,-5],[-12,-5],[-5,-2],[-7,-3],[-13,-5],[-29,5],[-21,4],[-21,3],[-21,4],[-21,4],[-29,4],[-28,5],[-29,5],[-28,5],[-29,5],[-28,4],[-29,5],[-28,5],[-22,4],[-22,3],[-23,4],[-22,4],[-25,4],[-2,2],[-2,1],[-1,1],[-2,1],[-22,33],[-26,39],[-27,40],[-26,40],[-26,40],[-32,48],[-32,48],[-32,47],[-18,28],[-14,20],[-32,48],[-31,48],[-32,48],[-32,48],[-25,36],[-24,37],[-24,37],[-25,37],[-29,44],[-21,33],[-6,9],[-26,42],[-26,42],[-27,42],[-23,38],[-24,37],[-23,37],[-24,37],[-18,30],[-25,27],[-24,26],[-25,26],[-24,27],[-24,26],[-25,27],[-24,26],[-24,27],[-25,26],[-24,27],[-24,26],[-25,27],[-24,26],[-25,27],[-24,26],[-24,27],[-25,26],[-28,31],[-16,16],[-15,11],[-94,33],[-23,7],[-55,17],[-55,17],[-55,17],[-54,17],[-1,0],[-1,-1],[-1,0],[-1,0]],[[60873,69491],[0,4],[34,52],[7,18],[-6,40],[-4,18],[-6,7],[-52,-27],[-3,3],[-2,9],[-14,85],[0,1],[0,1],[22,13],[-19,123],[-13,87],[-13,84],[-9,63],[-12,76],[-13,85]],[[51950,77667],[13,-20],[6,-6],[9,-3],[9,0],[8,3],[17,10],[8,7],[4,2],[20,-3],[9,5],[17,17],[8,6],[6,1],[3,6],[3,7],[4,3],[29,-10],[4,-4],[4,-6],[5,-11],[1,-2],[3,-1],[2,0],[3,2],[2,0],[14,-7],[7,0],[5,-2],[2,0],[3,3],[1,2],[0,3],[1,6],[0,1],[6,0],[0,11],[3,9],[4,5],[20,6],[3,2],[2,2],[3,7],[0,1],[3,9],[1,1],[1,17],[0,7],[1,6],[2,7],[3,3],[5,1],[3,1],[12,16],[6,19],[0,22],[-9,23],[-6,8],[-1,3],[1,5],[3,6],[5,8],[6,4],[12,4],[6,6],[14,26],[8,6],[3,4],[3,5],[1,5],[0,6],[-2,2],[-1,3],[3,7],[6,9],[7,6],[12,4],[4,1],[8,-2],[3,-8],[2,-13],[0,-18],[-1,-17],[-5,-31],[-1,-15],[1,-15],[3,-9],[6,-6],[7,-5],[7,-5],[8,-12],[18,-39],[3,-2],[5,-3],[13,-11],[5,0],[2,2],[4,5],[2,1],[1,0],[1,-1],[2,-5],[2,-3],[5,0],[8,0],[4,-2],[7,-14],[-4,-14],[-8,-14],[-4,-17],[-2,-3],[0,-1],[5,-1],[4,-2],[16,-13],[2,-2],[2,-4],[2,-9],[5,-13],[3,-8],[1,-8],[1,-10],[-2,-7],[-1,-7],[-1,-9],[11,5],[9,-6],[8,-3],[9,17],[7,20],[1,10],[-3,10],[-3,2],[-6,2],[-3,2],[-2,6],[-2,10],[-3,5],[-1,1],[0,2],[0,1],[1,2],[9,12],[-5,21],[1,7],[7,8],[6,3],[3,2],[2,6],[1,7],[-1,13],[1,8],[6,11],[20,21],[2,6],[1,7],[2,5],[3,4],[3,2],[3,4],[3,6],[4,22],[8,25],[2,13],[0,7],[-4,21],[0,9],[0,7],[0,6],[-4,4],[-2,8],[2,15],[5,14],[5,7],[13,3],[6,-3],[0,-7],[7,-10],[2,-1],[3,2],[2,3],[1,4],[2,4],[4,5],[2,1],[1,-4],[2,-57],[-1,-9],[1,-3],[2,-3],[6,-5],[3,-3],[5,-22],[4,-7],[5,-6],[7,-3],[32,-1],[5,3],[4,9],[0,5],[0,7],[0,6],[4,5],[2,0],[7,-6],[4,-1],[6,3],[18,14],[12,3],[6,-1],[5,-2],[7,-7],[2,-9],[0,-12],[2,-13],[4,-8],[11,-14],[3,-11],[0,-13],[9,0],[12,6],[8,8],[3,11],[-3,11],[-12,17],[-2,6],[-1,5],[0,6],[1,8],[2,6],[6,7],[2,4],[2,13],[-2,7],[-4,3],[-13,3],[-8,5],[-4,8],[4,12],[-2,3],[-1,3],[-1,4],[0,6],[1,6],[0,13],[0,4],[3,5],[6,9],[2,5],[3,19],[2,4],[2,3],[27,11],[7,0],[4,-5],[1,-7],[-2,-12],[1,-7],[12,-6],[2,-2],[2,-3],[1,-3],[3,-2],[4,-1],[10,1],[20,-7],[5,1],[2,5],[1,4],[3,15],[0,15],[-2,12],[-6,7],[-12,2],[-5,8],[-2,12],[1,5],[3,5],[3,7],[0,8],[0,7],[1,5],[5,5],[3,7],[0,8],[-2,9],[-1,9],[6,10],[2,4],[1,5],[1,19]],[[53805,78019],[0,-4],[0,-4],[-1,-4],[-2,-3],[0,-15],[-1,-3],[-2,-7],[-5,-4],[-7,0],[-10,-1],[-7,-10],[-5,-12],[-7,-10],[-13,-11],[-7,-7],[-3,-2],[-4,-1],[-3,-5],[-4,-13],[-4,-10],[-1,-3],[-7,-7],[2,-5],[2,-8],[1,-14],[4,-8],[1,-8],[2,-5],[8,1],[-4,11],[4,-2],[9,-1],[4,-3],[7,-3],[6,-5],[8,-12],[7,-2],[8,1],[4,-1],[3,-1],[1,-5],[1,-6],[-8,-21],[-26,-30],[-5,-5],[-6,-13],[2,-3],[0,-4],[0,-4],[-2,-5],[-2,-1],[-4,-6],[3,-6],[2,-2],[0,-1],[1,-1],[7,-13],[8,1],[9,7],[8,2],[2,1],[5,-11],[-3,-12],[-1,-12],[-3,-8],[-8,-29],[-1,-20],[2,-7],[2,-5],[8,-7],[9,-1],[5,-3],[11,-12],[3,-3],[19,-13],[22,-56],[3,-5],[4,-4],[3,0],[0,-1],[-2,-8],[-5,-10],[-6,-10],[-13,-2],[-11,8],[-14,-1]],[[53808,77471],[2,4],[3,7],[8,1],[8,-2],[6,2],[-3,2],[-3,4],[-3,7],[-10,8],[5,3],[-1,10],[-4,12],[-4,7],[-22,35],[-5,6],[-15,10],[-6,2],[-5,-7],[-3,-13],[1,-11],[8,-2],[-10,-7],[-2,-3],[-1,-4],[-8,-2],[-3,-2],[-5,-8],[-7,-7],[-7,-4],[-7,5],[4,1],[5,4],[5,4],[1,5],[-2,10],[-11,4],[-4,8],[-5,-2],[-27,9],[-2,2],[-7,10],[-2,2],[-3,-1],[-9,-5],[-4,-9],[-2,-2],[-3,2],[-2,9],[-3,1],[-3,-2],[0,-6],[1,-5],[3,-3],[0,-4],[-6,-1],[-6,-5],[-3,-8],[1,-10],[5,-5],[6,2],[10,7],[-3,-8],[-10,-12],[-2,-10],[-3,-7],[-7,-3],[-22,-1],[-10,-3],[-45,-45],[-47,-34],[-28,-15],[-4,-6],[-3,-2],[-10,-4],[-8,-7],[-3,-1],[2,8],[3,8],[2,7],[-2,5],[3,-1],[2,1],[1,3],[0,5],[2,0],[1,-5],[2,-2],[1,0],[2,3],[-4,8],[3,0],[3,0],[3,1],[0,-1],[1,1],[1,-2],[0,-2],[1,-1],[-1,0],[-3,0],[0,-4],[6,1],[1,7],[1,9],[2,4],[5,0],[4,3],[3,5],[2,8],[-3,-2],[-7,-8],[-2,0],[-5,8],[-2,5],[-1,9],[-6,-5],[-8,-10],[-4,-11],[2,-7],[0,-4],[-4,1],[-5,6],[-2,-3],[-2,0],[-2,13],[-3,-10],[1,-5],[10,-6],[0,-4],[-4,-3],[-5,-1],[-3,2],[0,6],[-9,0],[-11,-9],[-10,-15],[-6,-16],[0,-4],[2,0],[-3,-6],[-1,-5],[1,-5],[3,-5],[-3,-5],[0,-5],[0,-4],[-1,-6],[-2,-2],[-3,0],[-1,-2],[2,-8],[-3,-8],[-1,-6],[-2,-5],[-6,-1],[-4,2],[-3,4],[-2,-2],[-2,-13],[3,-5],[3,-12],[3,-3],[3,3],[2,7],[1,8],[-1,7],[5,-4],[1,-6],[0,-8],[1,-11],[-3,-2],[-1,-3],[2,-3],[2,-4],[-1,-9],[3,-7],[5,-4],[5,0],[-1,2],[-1,1],[4,5],[6,10],[3,2],[-2,-9],[1,-9],[3,-8],[2,-9],[0,-20],[2,-22],[-3,2],[-3,2],[0,4],[0,6],[0,2],[-3,-13],[0,-10],[3,-6],[6,1],[-1,2],[0,2],[-1,4],[5,-7],[4,-9],[3,-9],[3,-8],[0,-4],[-2,0],[-1,-1],[-1,-2],[-2,-1],[4,-8],[4,9],[1,7],[-1,7],[-4,9],[4,-5],[5,-4],[4,-4],[-1,-7],[4,-7],[2,-2],[3,-3],[6,-11],[6,-10],[3,5],[-2,-1],[-1,1],[0,4],[4,0],[4,-2],[3,-4],[2,-6],[0,-6],[-3,-6],[1,-4],[-2,-6],[-1,-3],[-1,-4],[-1,0],[-3,0],[-1,-7],[0,-19],[-2,-9],[-3,-10],[-9,-15],[0,3],[-1,6],[-2,6],[-2,5],[4,14],[1,7],[-1,7],[-4,2],[-3,-3],[-2,-5],[-1,-4],[-3,-10],[0,-5],[6,-5],[0,-4],[-2,-5],[-3,-1],[0,-4],[2,-1],[3,-2],[3,-1],[-3,-10],[-5,-6],[-6,-1],[-5,7],[-3,7],[-7,11],[-5,5],[-3,0],[-7,-9],[0,-4],[4,0],[-8,-41],[-2,-23],[2,-26],[4,-19],[2,-9],[3,-4],[0,-7],[-1,-42],[1,-26],[8,-60],[1,-15],[1,-4],[1,-4],[4,-8],[1,-3],[0,-12],[2,-12],[5,-22],[6,-17],[8,-16],[11,-17],[6,-16],[9,-15],[10,-13],[7,-4],[16,-33],[8,-13],[9,-10],[5,-5],[12,-6],[1,-1],[13,-3],[5,-4],[11,-14],[19,-12],[3,-6],[2,-5],[85,-115],[32,-31],[6,-3],[3,-6],[13,-7],[7,-7],[3,3],[2,4],[1,3],[1,0],[1,1],[1,2],[1,0],[2,-1],[1,-3],[0,-2],[1,-2],[5,-4],[5,-10],[3,-9],[2,-5],[6,-2],[5,-5],[2,-8],[-2,-9],[40,-159],[4,-12],[1,-4],[2,-21],[1,-5],[4,-9],[8,-30],[4,-21],[5,-50],[11,-62],[11,-62],[10,-40],[6,-19],[17,-43],[1,-9],[2,-7],[41,-76],[17,-25],[20,-21],[9,-11],[12,-31],[36,-57],[10,-10],[16,-10],[11,-4],[4,-5],[3,-10],[1,-24],[2,-12],[3,-8],[5,-4],[1,0],[5,-2],[6,-5],[9,-13],[10,-7],[23,-7],[11,-6],[4,-6],[8,-15],[3,-4],[5,-2],[11,-14],[5,-4],[6,-2],[6,-2],[32,0],[33,-12],[13,0],[46,12],[45,-4],[70,14],[24,-10],[0,-1],[8,-4],[6,-16],[5,0],[-1,-9],[2,-11],[2,-22],[1,-8],[-1,-10],[-2,-7],[-5,-9],[-6,-9],[-5,-4],[-5,-3],[-5,-7],[-8,-14],[-9,-13],[-29,-23],[-7,-16],[-2,-22],[1,-24],[4,-20],[6,-14],[8,-11],[17,-19],[18,-9],[4,-6],[4,-6],[52,-38],[44,-39],[17,-7],[5,-7],[4,-7],[11,-12],[66,-36],[5,-8],[2,0],[0,5],[2,0],[6,-10],[48,-25],[40,-36],[20,-24],[10,-15],[10,-26],[4,-3],[5,-2],[10,-13],[17,-30],[4,-3],[6,-3],[10,-11],[24,-10],[3,-3],[29,-19],[26,-32],[22,-6],[9,-8],[0,-14],[3,0],[7,4],[4,-1],[2,-4],[0,-6],[1,-6],[6,-10],[1,-3],[-1,-27],[23,-31],[25,-24],[6,-2],[2,-2],[5,-16],[4,-5],[9,-13],[7,-20],[4,-9],[5,-3],[2,-4],[19,-42],[17,-68],[2,-4],[1,-3],[2,-1],[-2,-7],[1,-4],[1,-4],[0,-6],[-2,-6],[-5,-6],[-2,-17],[-4,-7],[-10,-12],[-6,-26],[-1,-6],[-1,-13],[-3,-13],[0,-5],[1,-16],[1,-7],[-4,-31],[1,-5],[-2,-2],[-3,-8],[-1,-2],[-6,1],[-3,1],[-2,2],[-13,17],[-5,3],[-11,0],[-4,1],[-7,8],[-7,5],[-8,13],[-10,12],[-4,2],[-3,3],[-18,44],[-3,5],[0,5],[5,0],[2,4],[1,7],[-2,9],[-3,5],[-8,4],[-3,3],[10,10],[3,13],[-4,15],[-9,15],[-7,10],[-4,8],[-2,8],[0,12],[-1,10],[-1,8],[-3,5],[3,0],[0,3],[-14,18],[-4,3],[-93,8],[-5,2],[-15,14],[-3,1],[-6,-1],[-2,0],[-2,3],[-5,8],[-2,1],[-5,2],[-15,15],[-16,9],[-7,7],[-4,8],[7,5],[5,8],[2,9],[-6,10],[5,4],[14,-5],[6,6],[1,9],[-5,1],[-12,-6],[1,1],[1,3],[-6,4],[-5,-3],[-5,-6],[-6,-3],[-2,2],[-1,4],[-2,6],[-1,4],[-3,2],[-6,0],[-3,1],[-21,3],[-20,-16],[-18,-28],[-13,-32],[-23,-53],[-6,-19],[-6,-35],[-2,-6],[-4,-4],[-10,-28],[-11,-16],[-5,-7],[-5,-14],[-2,-22],[0,-8],[4,-22],[5,-18],[-2,-7],[-5,-7],[-4,-13],[-13,-21],[-10,-28],[-5,-19],[0,-18],[3,-17],[8,-15],[0,-4],[-4,-15],[9,-17],[12,-14],[9,-7],[35,-3],[9,-5],[5,-5],[5,-7],[4,-9],[1,-9],[3,-5],[17,-13],[13,-18],[5,-3],[6,-1],[5,-4],[3,-6],[4,-9],[6,-11],[8,-12],[10,-8],[10,-1],[-10,-41],[-2,-32],[-1,-8],[1,-8],[2,-7],[5,-13],[1,-7],[-1,-19],[-5,-34],[0,-18],[7,-22],[1,-5],[2,-3],[9,-6],[4,-1],[-5,-6],[-3,-4],[-1,-4],[-1,-23],[1,-3],[-10,-14],[-1,-3],[-2,-2],[-2,-6],[-4,-12],[-3,12],[-7,2],[-8,-4],[-5,-6],[-7,14],[-5,5],[-6,2],[-6,-1],[-27,-12],[-31,-24],[-11,-13],[-2,-5],[-3,-4],[-16,-15],[-7,-11],[-4,-7],[-3,-17],[-3,-9],[-3,-11],[-2,-14],[4,-4],[0,-2],[0,-10],[3,-45],[5,-40],[0,-15],[-2,-44],[-2,-8],[-11,-17],[-4,-9],[-3,-1],[-8,-13],[-9,-5],[-27,-23],[-9,-14],[-38,-79],[-5,-20],[-7,-62],[-4,-19],[-3,-8],[-3,-6],[-4,-6],[-4,-4],[-13,-5],[-4,-3],[-16,8],[-50,-4],[-8,3],[-7,6],[-7,7],[-5,8],[-6,13],[-2,12],[0,11],[6,9],[-7,19],[-3,10],[1,9],[4,11],[2,11],[0,11],[-3,14],[-1,20],[5,13],[9,7],[29,14],[2,5],[1,3],[4,6],[1,3],[4,27],[20,72],[4,26],[0,20],[-5,16],[-8,16],[-2,2],[-4,3],[-1,3],[-3,6],[0,3],[0,3],[1,6],[2,7],[5,5],[11,6],[18,20],[10,7],[12,2],[20,-4],[5,1],[4,5],[8,10],[6,17],[4,22],[1,25],[0,25],[-1,12],[-3,9],[-4,6],[-6,2],[-4,4],[-4,12],[-16,60],[-11,139],[-3,20],[-10,56],[-11,23],[-7,21],[-8,13],[-7,10],[-3,7],[-2,15],[-3,15],[-3,23],[-6,15],[-3,10],[-5,60],[0,-4],[-1,12],[-2,6],[-2,2],[0,4],[3,22],[-2,14],[-9,23],[-2,8],[-2,12],[-4,10],[-9,16],[-8,21],[-6,8],[-1,5],[0,7],[-4,-2],[-21,2],[-6,-6],[-5,-12],[-10,-10],[-9,-18],[-5,-3],[-14,3],[-5,3],[-8,17],[-3,2],[-2,-3],[-3,-1],[-3,-1],[-3,1],[0,4],[5,6],[-5,16],[-8,15],[-7,8],[-5,4],[-18,30],[-4,3],[-4,-1],[-9,-4],[-5,1],[-3,4],[-4,12],[-5,9],[-8,5],[-2,3],[-3,4],[-5,-2],[-5,6],[-3,2],[-1,10],[7,16],[2,13],[-2,10],[0,6],[3,2],[3,2],[3,3],[3,4],[6,4],[1,6],[0,17],[-7,20],[-24,84],[-7,20],[-8,15],[-7,12],[-7,10],[-9,4],[-9,-6],[-8,-10],[-3,-2],[-15,2],[-3,-2],[-12,-17],[-7,-2],[-8,3],[-8,8],[-5,-5],[-13,-5],[-6,-8],[-13,-11],[-3,-8],[-4,8],[-1,13],[3,11],[6,5],[6,1],[2,1],[3,5],[2,7],[11,18],[9,5],[1,10],[-2,10],[-4,9],[-5,6],[-6,-2],[-4,3],[-3,3],[-3,7],[-5,4],[-5,10],[-10,19],[-5,6],[-5,1],[-8,-2],[-7,-3],[-3,-7],[-2,-11],[-6,0],[-5,8],[-8,2],[-7,7],[-4,2],[-4,-1],[-1,-6],[0,-7],[1,-8],[0,-8],[-2,2],[-7,2],[-2,4],[3,24],[-2,22],[-7,28],[-15,44],[-10,11],[-3,5],[-1,6],[-1,13],[0,6],[-8,24],[-9,25],[-17,34],[-19,28],[-4,2],[-8,-3],[-4,0],[-2,5],[-17,-4],[-9,-9],[3,-17],[-8,-1],[-3,1],[-3,4],[-1,6],[-2,2],[-2,-4],[-2,0],[-5,10],[-43,33],[-11,1],[-23,-7],[-4,-4],[-10,-10],[-11,-6],[-6,-14],[-6,-3],[-7,3],[-2,8],[-1,10],[-3,9],[-3,8],[-5,17],[-4,9],[-16,29],[-8,12],[-9,8],[-5,3],[-22,2],[-4,1],[-20,21],[-7,4],[-3,-4],[-2,-7],[-4,7],[-21,51],[-27,51],[-29,42],[-4,6],[-8,3],[-4,6],[-2,1],[-9,3],[-2,1],[-4,9],[-2,10],[-1,12],[-1,12],[-1,11],[-3,12],[-7,19],[-6,15],[-27,33],[-3,3],[-3,5],[-1,7],[-2,5],[-7,1],[-3,3],[-4,6],[-4,7],[-5,5],[-5,4],[-22,-1],[-3,-1],[-2,7],[-3,12],[-5,11],[-3,4],[-3,9],[-6,12],[-1,6],[-1,9],[-1,10],[-15,49],[-7,16],[-33,41],[-14,6],[-19,17],[-7,3],[0,5],[-3,2],[-2,2],[-3,0],[-3,0],[2,-4],[-8,0],[-21,12],[-4,1],[-5,0],[-4,-2],[-2,-5],[-1,-9],[-4,-10],[-1,-7],[-2,1],[-3,0],[-2,-1],[-1,0],[-2,3],[-4,7],[-7,4],[-4,7],[-2,9],[0,7],[4,8],[3,2],[8,-4],[7,0],[4,10],[2,14],[1,15],[-1,9],[-6,15],[-2,11],[-3,-1],[-3,-2],[-2,-1],[-4,8],[-2,12],[-3,9],[-5,4],[0,11],[-7,9],[-13,12],[-2,7],[-1,10],[-2,8],[-2,4],[-3,2],[-8,14],[-14,12],[-45,24],[7,9],[3,9],[0,12],[0,13],[1,4],[1,3],[1,4],[-1,7],[-3,6],[-3,5],[-19,14],[-14,5],[-14,1],[-12,-6],[1,-6],[1,-3],[-8,-5],[-5,9],[-6,29],[7,9],[4,11],[6,33],[-1,7],[0,13],[1,12],[2,8],[-2,10],[-1,13],[-1,24],[-1,12],[-3,12],[-22,72],[-18,38],[-4,7],[-9,7],[-3,10],[-6,45],[-8,142],[-4,22],[-11,44],[-9,21],[-12,13],[-8,23],[-5,5],[-5,3],[-10,10],[-6,3],[-4,3],[-3,2],[-1,-3],[-1,-3],[-2,-3],[-3,0],[-3,2],[-4,7],[-9,11],[-5,8],[-3,-3],[-9,12],[-5,0],[2,-5],[-1,-1],[-2,-2],[-1,-1],[1,-5],[2,-3],[2,-3],[3,-1],[0,-4],[-2,-1],[-1,-2],[-1,-5],[4,-3],[-1,-4],[-3,1],[-2,8],[-2,5],[-13,9],[-14,20],[-3,3],[-8,11],[-3,3],[-8,0],[-3,2],[-3,2],[-10,17],[-1,1],[-2,8],[-5,5],[-13,9],[-3,3],[-2,6],[-2,8],[-3,-3],[-5,-1],[-5,1],[-2,5],[-2,5],[-13,9],[-2,13],[-30,25],[-8,11],[-3,-6],[-2,-6],[-1,-8],[0,-9],[-13,8],[-5,6],[1,6],[-5,14],[-8,7],[-28,7],[-14,8],[-8,7],[-2,-2],[-13,1],[-6,2],[-3,2],[-3,7],[-18,2],[-7,-2],[-3,-3],[-8,-10],[-3,-5],[-2,-2],[-2,0],[-2,0],[-2,0],[-17,-19],[-5,-1],[-3,-2],[-7,-11],[-21,-21],[-6,-12],[2,-11],[-3,-7],[-1,-3],[0,-5],[-1,-1],[-4,-4],[-2,-2],[-1,-8],[0,-6],[0,-6],[-4,-7],[-7,-5],[-15,-8],[-8,-7],[-4,-6],[-4,-6],[-7,-15],[0,-4],[0,-9],[0,-5],[-2,-9],[-2,-7],[-13,-23],[-5,-14],[4,-12],[0,-4],[-6,-2],[-8,-15],[-8,-4],[-2,-3],[-1,-3],[-1,-3],[-1,-5],[-4,-3],[-7,-3],[-19,-20],[-49,-18],[-13,-14],[-12,-5],[-34,1],[-8,-5],[-4,0],[-2,3],[-3,2],[-3,0]],[[53452,76463],[9,2],[5,13],[-1,2],[1,2],[0,1],[1,1],[0,1],[2,6],[1,10],[-1,10],[-2,6],[-8,-2],[-9,-7],[-3,-5],[-4,-6],[-3,-15],[4,-12],[8,-7]],[[53459,75285],[0,1],[0,-1]],[[53333,72284],[10,-17],[4,-10],[1,-13],[-7,-16],[-9,3],[-10,12],[-7,14],[-1,4],[-2,9],[-1,10],[4,4],[1,1],[2,3],[1,0],[2,-1],[3,-5],[1,-2],[2,-1],[2,-2],[2,1],[2,6]],[[53409,72938],[4,-1],[2,2],[3,2],[2,1],[2,-3],[4,-5],[5,-3],[4,-1],[-3,-7],[-4,-1],[-5,3],[-3,5],[-4,-4],[-3,1],[-3,5],[-1,6]],[[54313,73153],[8,-1],[16,-12],[10,-3],[-1,-5],[-1,-3],[-3,-1],[-2,1],[-12,-13],[-4,-8],[-1,-7],[-1,-9],[4,0],[-13,-37],[-8,-31],[-30,-64],[-25,-66],[-5,-19],[-5,-13],[-7,-9],[-8,-20],[-1,-9],[0,-6],[3,-11],[0,-7],[-1,-6],[-4,-7],[-1,-5],[0,-12],[-4,-18],[-1,-13],[-4,-21],[-14,-27],[-5,-17],[-1,-10],[-1,-10],[1,-59],[1,-10],[2,-8],[2,-5],[19,-18],[11,-4],[5,-6],[4,-10],[3,-14],[-5,7],[-2,-2],[-2,-7],[-3,-6],[1,10],[-2,5],[-3,0],[-3,-3],[1,-8],[-4,-12],[3,-18],[6,-12],[5,5],[4,-3],[0,-4],[-5,-2],[1,-8],[4,-10],[5,-5],[6,-1],[4,-4],[2,-9],[-2,-14],[-4,3],[-2,-4],[1,-8],[2,-4],[6,2],[2,-3],[3,-7],[0,-10],[-2,-1],[-3,2],[-1,3],[-2,-1],[-9,-9],[1,-4],[-2,-3],[-1,-1],[2,-4],[0,-4],[-7,-1],[-5,-4],[-4,-5],[-4,-2],[-6,-6],[-5,-11],[-14,-62],[0,-7],[-4,-5],[2,-12],[5,-19],[5,-35],[-1,-8],[-5,-9],[-6,-3],[-5,3],[-6,7],[-4,10],[-2,3],[-3,4],[-4,2],[-2,-1],[-2,-3],[-3,-5],[-7,6],[-10,13],[-11,6],[-9,-3],[-19,-15],[-1,5],[-1,1],[-3,-2],[-5,7],[-16,4],[-4,11],[-4,6],[-16,11],[-5,5],[-4,-2],[-22,9],[-3,7],[-23,83],[-7,17],[-25,42],[-20,22],[-23,18],[-10,3],[-31,-4],[-3,-1],[-5,-6],[-3,-2],[-12,3],[-17,23],[-11,8],[-12,4],[-10,7],[-9,11],[-23,40],[-8,10],[-10,5],[-13,3],[-10,7],[-8,9],[-14,19],[-12,12],[-5,8],[-3,3],[-3,2],[-3,3],[-7,22],[-2,3],[-6,6],[-3,7],[-2,3],[-3,2],[-2,2],[-3,8],[-1,2],[-34,8],[-4,-3],[-3,-1],[-3,2],[-2,6],[-1,12],[-1,5],[-8,13],[-8,6],[-23,5],[-22,-1],[-23,-7],[-11,1],[-6,10],[-12,33],[-5,9],[-4,3],[-11,0],[-5,5],[-4,10],[-4,12],[-3,10],[-1,9],[-1,7],[0,8],[-3,6],[-3,7],[-3,9],[1,7],[4,4],[1,-3],[4,5],[1,2],[-1,2],[2,16],[1,0],[1,11],[1,5],[-1,3],[-2,7],[-1,5],[0,4],[0,1],[1,1],[6,23],[2,15],[2,10],[0,8],[-3,7],[8,5],[7,14],[8,10],[9,-5],[8,10],[4,7],[1,9],[2,6],[4,-1],[4,-2],[4,-1],[5,9],[0,15],[-1,15],[3,10],[2,-7],[3,1],[3,-1],[2,-11],[6,-27],[8,-23],[3,-5],[8,-6],[3,-5],[0,-5],[9,-9],[12,3],[23,18],[10,12],[2,5],[0,2],[0,4],[0,7],[-1,6],[-3,5],[0,6],[9,14],[-1,5],[1,5],[4,4],[3,2],[3,-1],[9,-7],[6,-2],[8,0],[7,5],[2,13],[4,-2],[3,1],[4,3],[5,3],[4,3],[2,0],[1,-1],[1,-4],[0,-4],[1,-3],[10,-12],[2,-4],[0,-19],[1,-5],[4,-17],[34,4],[8,-9],[-1,-11],[1,-5],[2,-7],[2,-4],[9,-6],[9,-14],[8,-9],[13,-4],[4,-3],[-1,-2],[0,-1],[-1,-2],[6,1],[18,-5],[6,3],[13,11],[11,4],[4,5],[3,6],[4,4],[19,5],[4,7],[12,-11],[5,-4],[7,-1],[4,0],[8,4],[34,-8],[16,1],[15,7],[13,12],[9,-7],[13,4],[35,22],[9,11],[8,13],[10,21],[3,2],[9,-1],[6,1],[21,9],[4,4],[3,2],[2,1],[8,-1],[3,-3],[5,-10],[2,-3],[3,0],[7,-4],[9,1],[3,-1],[1,-2],[3,-8],[1,-2],[6,-2],[4,3],[5,4],[15,9],[8,16],[10,35],[-1,4],[0,1],[0,2],[1,5],[-1,2],[2,0],[1,-7],[-2,-14],[1,-8],[4,-4],[4,-1],[5,-1],[8,3],[22,13],[6,7],[4,5],[10,8],[12,18],[4,3]],[[54157,73230],[0,-8],[4,-4],[3,-6],[3,-6],[1,-9],[-2,-3],[-4,-5],[-6,11],[-4,9],[-1,9],[4,12],[2,0]],[[54140,73254],[-2,5],[1,10],[2,10],[4,4],[9,0],[3,-3],[-2,-9],[2,-3],[2,-4],[1,-1],[0,-4],[-7,0],[1,-7],[1,-3],[2,-2],[0,-5],[-5,-1],[-4,4],[-4,6],[-4,3]],[[54128,73299],[0,-6],[-11,8],[-8,11],[6,8],[10,0],[4,-2],[3,-7],[-1,-2],[-1,-3],[-2,-7]],[[52348,73610],[1,-4],[1,-1],[2,0],[2,2],[0,1],[1,1],[1,-2],[-5,-7],[-2,-4],[1,-5],[-2,-8],[-2,-20],[-3,-16],[-1,-3],[-3,-1],[-3,0],[-2,3],[0,5],[-1,4],[-10,28],[-4,20],[1,12],[0,5],[-2,0],[0,4],[4,12],[7,-8],[9,1],[7,-2],[3,-17]],[[52307,73681],[0,-20],[1,-24],[-1,-9],[-5,-3],[-5,0],[-5,4],[1,7],[0,4],[-7,11],[-2,8],[2,9],[4,5],[12,5],[5,3]],[[53873,74574],[-3,2],[-4,-1],[-4,-2],[-4,-4],[-2,4],[-7,4],[-3,5],[2,11],[2,6],[2,3],[-1,2],[-1,6],[6,0],[17,-10],[6,-6],[-1,-4],[0,-4],[1,-4],[-2,-2],[-4,-6]],[[52298,74784],[-7,-8],[0,-16],[-1,-13],[-10,1],[2,5],[1,6],[1,6],[0,5],[1,5],[4,6],[5,8],[4,3],[1,7],[-1,8],[1,6],[2,1],[5,-1],[1,2],[0,3],[2,3],[3,4],[0,-4],[1,-4],[1,-4],[3,-5],[0,-6],[0,-8],[-3,-5],[-16,-5]],[[52720,74488],[7,-12],[2,-4],[0,-6],[-3,-10],[-1,-6],[-1,-13],[-2,-9],[-6,-17],[-5,-21],[-3,-8],[-6,-3],[-5,-4],[-3,-8],[-5,-17],[-3,-7],[-7,-9],[-3,-8],[-3,-12],[0,-9],[1,-25],[1,-6],[6,-30],[3,-8],[4,-3],[3,-3],[6,-15],[6,-7],[-1,-9],[-10,-45],[-2,-19],[3,-16],[2,2],[2,2],[1,0],[1,-4],[-1,-5],[-2,-2],[-2,0],[-1,-1],[-2,-8],[-1,-7],[-1,-7],[2,-7],[-2,0],[0,-3],[2,-2],[1,-2],[1,-1],[0,-3],[-3,-8],[-3,-12],[-1,-15],[-1,-14],[1,-8],[1,-14],[0,-9],[0,-6],[-3,-10],[0,-8],[-1,-4],[-1,-4],[-2,-7],[0,-8],[2,-26],[-1,-16],[-7,-39],[5,-10],[-2,-19],[-7,-31],[-3,-26],[-1,-9],[1,-9],[2,-5],[7,-8],[0,-4],[-8,-5],[-7,-13],[-4,-17],[2,-14],[-2,-6],[0,-3],[2,-3],[2,-4],[-1,-5],[-3,-12],[0,-6],[-3,-5],[-5,-4],[-4,-5],[-1,-12],[-3,2],[-1,2],[0,3],[2,5],[-5,5],[-4,1],[-4,-2],[-4,-4],[-3,0],[-1,5],[-2,3],[-6,5],[-7,13],[-2,2],[-2,3],[-7,11],[-2,3],[-3,1],[-4,3],[-3,4],[-2,4],[-2,-4],[-4,4],[-5,2],[-10,2],[-6,-4],[-4,-8],[-3,-8],[-1,-4],[-8,4],[-7,10],[-11,22],[-3,-3],[-2,3],[-2,5],[-3,3],[-4,2],[-3,-1],[0,-2],[4,-2],[0,-5],[-2,-5],[2,-2],[2,-2],[1,-3],[3,-1],[7,2],[2,-3],[0,-5],[-1,-2],[-11,-20],[-3,-8],[-2,-11],[-1,-14],[1,-11],[1,-11],[2,-10],[2,-3],[2,-3],[0,-5],[-4,-12],[-3,-21],[2,0],[-3,-3],[-1,1],[-2,2],[-3,-7],[-28,-48],[-2,-1],[-3,-1],[-1,-2],[-3,-8],[-2,-2],[-4,1],[-3,5],[-7,10],[0,-12],[-4,11],[-6,10],[-8,6],[-6,1],[-6,-4],[-8,-9],[-4,-11],[1,-12],[-4,-4],[-2,4],[2,11],[-2,3],[-5,0],[-5,2],[0,4],[5,10],[0,15],[-4,10],[-6,-2],[-2,31],[-4,26],[-2,0],[-2,-4],[-7,6],[-4,1],[1,3],[3,9],[-4,5],[-6,-6],[0,2],[-2,4],[-1,10],[-2,7],[-3,3],[-3,-4],[-2,6],[1,15],[-1,7],[-2,5],[-3,2],[-2,-1],[1,-6],[-2,2],[-1,3],[-1,4],[0,6],[-1,6],[-1,2],[-2,0],[-2,2],[-2,9],[0,5],[1,4],[14,27],[2,11],[-5,13],[1,9],[-10,12],[-2,11],[1,6],[5,9],[1,5],[1,9],[0,5],[-4,16],[-1,2],[0,2],[2,7],[8,16],[4,10],[4,20],[3,11],[-2,4],[3,8],[-1,12],[-3,24],[-1,27],[-1,6],[0,4],[1,6],[-1,15],[1,4],[3,-2],[3,-3],[9,-23],[4,-8],[6,-4],[8,3],[-14,8],[-3,4],[0,10],[4,10],[4,10],[3,7],[-2,0],[-1,-4],[-1,-4],[-1,-2],[-2,-2],[3,6],[3,9],[2,11],[1,8],[1,19],[-1,7],[-2,8],[-6,12],[-8,8],[-9,1],[-7,-9],[2,-3],[0,3],[2,1],[1,-1],[2,0],[-3,-3],[-2,-6],[-2,-15],[-2,5],[2,6],[-2,5],[-3,4],[-4,7],[-1,0],[-1,1],[-1,5],[0,4],[1,4],[1,4],[0,4],[-2,22],[0,6],[4,13],[0,7],[-4,9],[-4,-4],[-1,2],[3,5],[4,5],[1,0],[8,0],[5,3],[2,1],[3,3],[3,7],[2,9],[1,9],[-2,8],[-4,16],[-2,11],[-1,31],[5,28],[0,17],[-4,14],[-6,10],[-7,8],[-2,-5],[-6,9],[-1,11],[3,31],[-1,11],[-3,16],[-4,14],[-4,6],[-5,5],[-2,12],[-2,14],[-2,14],[-5,10],[-7,-1],[-14,-14],[-6,5],[3,11],[3,9],[-7,3],[-4,-7],[-3,-11],[-1,-14],[-3,8],[-1,10],[-2,15],[0,3],[5,5],[4,5],[3,9],[1,14],[1,0],[1,3],[1,4],[-2,1],[-4,1],[-1,1],[-2,3],[-4,10],[-2,4],[-3,2],[21,81],[2,9],[0,11],[-2,9],[-5,3],[-4,5],[1,10],[3,11],[3,7],[2,0],[1,-7],[2,-1],[2,0],[2,-4],[0,-5],[-1,-7],[-1,-8],[1,-7],[13,-26],[9,-9],[31,-7],[15,-7],[7,-1],[5,1],[22,15],[5,8],[5,9],[2,9],[19,14],[7,1],[4,-1],[4,-4],[16,20],[5,9],[10,27],[3,5],[0,2],[0,1],[-2,1],[9,6],[3,2],[2,4],[3,11],[2,2],[3,3],[5,7],[4,9],[4,15],[5,4],[19,4],[4,2],[8,12],[2,-4],[4,9],[2,10],[0,24],[2,10],[5,5],[6,3],[6,4],[0,-5],[2,-3],[2,-1],[3,1],[3,-7],[0,-21],[3,-4],[-1,3],[-1,3],[1,4],[1,6],[2,0],[1,-8],[0,-2],[-1,-2],[0,-4],[4,1],[1,1],[2,2],[1,-3],[5,-5],[1,14],[4,-3],[10,-16],[0,5],[3,-3],[2,-1],[2,-1],[3,0],[0,-3],[-2,-2],[0,-2],[-1,-2],[-1,-3],[3,-2],[2,-4],[2,-5],[2,-5],[-1,-4],[0,-6],[1,-14],[4,12],[1,5],[3,3],[-1,3],[0,2],[-1,2],[-2,2],[4,3],[3,0],[4,-2],[4,-1],[1,1],[1,4],[2,0],[2,-5],[-2,-5],[3,-3],[2,-3],[1,-1],[2,3],[2,0],[0,-2],[1,-1],[1,-1],[-1,-7],[0,-6],[-2,-6],[-3,-6],[0,3],[-1,3],[-1,3],[-5,-36],[-2,-9],[5,0],[-2,9],[5,3],[3,-1],[1,-6],[-1,-9],[1,0],[1,1],[0,2],[0,1],[2,-3],[0,-1],[2,0],[4,7],[8,-1],[7,-5],[6,-5],[-4,-7],[-4,1],[-4,4],[-5,2],[-4,-4],[-2,-9],[-1,-11],[-3,-8],[1,-8],[-4,-2],[-12,2],[-1,-3],[1,-1],[-2,-1],[2,-7],[2,0],[2,3],[3,0],[3,-2],[5,-5],[2,-1],[5,2],[4,5],[4,3],[6,-2],[-2,-5],[-1,-4],[-2,-2],[-3,-1],[0,-4],[10,-8],[2,-2],[0,-7],[2,-3],[2,0],[3,4],[2,-6],[3,-3],[3,-2],[4,-1],[-10,-6],[-2,-3],[2,-8],[0,-4],[-4,2],[-4,-3],[-1,-5],[3,-6],[1,7],[1,-8],[8,-17],[2,-8],[1,-11],[8,-28],[1,-8],[2,-36],[1,-6],[1,-5],[2,-2],[4,-1],[1,-4],[0,-5],[2,-6]],[[53026,75572],[5,-7],[4,-13],[0,-8],[3,-5],[-4,-8],[-4,4],[-11,17],[-2,8],[4,4],[0,8],[2,3],[3,-3]],[[52900,75843],[-2,-4],[-1,-6],[0,-7],[2,-7],[-2,-10],[-3,-7],[-4,-4],[-5,-3],[6,-4],[4,-10],[2,-11],[-4,-8],[-2,6],[-2,0],[-3,0],[-3,3],[-1,3],[-3,10],[-1,3],[-3,3],[-4,6],[-3,0],[-4,-13],[-2,10],[-11,-9],[-6,7],[-1,-9],[-1,-4],[-2,0],[-23,1],[-6,4],[-5,8],[-2,16],[3,10],[6,7],[7,3],[6,1],[3,-2],[6,-5],[4,-2],[5,-1],[6,1],[0,3],[0,1],[-1,0],[-1,1],[4,4],[0,4],[0,1],[5,-1],[10,0],[-1,-9],[3,-3],[4,0],[2,1],[1,6],[2,3],[2,2],[2,4],[3,15],[2,6],[4,3],[2,-2],[3,-3],[2,-6],[1,-6]],[[52733,75973],[0,-1],[1,-1],[1,-1],[2,-9],[-4,-11],[-5,-10],[-6,0],[-5,12],[7,22],[5,5],[4,-6]],[[53431,77359],[5,12],[5,5],[5,-2],[6,-9],[-3,3],[-4,1],[-8,1],[-15,-45],[0,4],[2,11],[7,19]],[[53572,71714],[2,0],[2,-4],[0,-6],[-1,-2],[-4,0],[-2,2],[-1,4],[0,3],[2,2],[2,1]],[[53985,73291],[-1,7],[4,2],[1,-7],[-4,-2]],[[54048,73315],[1,-6],[2,-3],[0,-2],[-3,-1],[-6,3],[-3,8],[0,7],[1,1],[5,-2],[3,-5]],[[53658,73399],[4,0],[3,-4],[0,-2],[-5,-9],[-4,-1],[-3,2],[0,5],[1,4],[4,5]],[[54229,73454],[2,-2],[2,-2],[-1,-5],[-1,-4],[-1,-3],[-1,-4],[-2,-2],[-4,1],[-5,8],[0,2],[2,3],[3,3],[1,2],[1,3],[2,1],[2,-1]],[[53727,74629],[1,3],[3,1],[-2,-6],[-3,-3],[1,5]],[[53506,71499],[-1,-1],[1,-4],[-1,-5],[-2,-2],[-3,1],[-1,2],[-1,0],[-11,8],[-5,3],[-3,2],[2,3],[6,0],[3,-1],[13,-3],[2,-1],[1,-1],[0,-1]],[[53353,72955],[1,-5],[1,-6],[-4,1],[-5,6],[-3,7],[-2,7],[2,4],[5,0],[3,-3],[2,-11]],[[52631,74890],[1,-4],[1,-3],[0,-4],[-3,-16],[1,-3],[0,-3],[-1,-5],[-2,1],[-2,4],[-2,3],[-2,-1],[-1,2],[3,11],[-1,4],[0,5],[3,8],[1,5],[2,-1],[2,-3]],[[52619,74884],[1,-3],[0,-2],[-11,-4],[-5,2],[-1,5],[0,5],[1,2],[2,2],[2,2],[2,4],[0,5],[1,1],[2,0],[2,3],[2,-1],[1,-4],[1,-5],[0,-5],[0,-5],[0,-2]],[[52860,75547],[2,4],[3,-7],[-1,-9],[-5,2],[1,10]],[[52803,75696],[1,-3],[0,-2],[0,-3],[0,-4],[-3,-2],[-4,0],[-3,2],[-3,3],[1,5],[3,1],[2,5],[2,8],[2,1],[1,-7],[1,-4]],[[53424,77391],[5,0],[5,-5],[-1,-7],[-2,-3],[-5,-4],[-4,2],[-1,8],[3,9]],[[52644,78459],[-4,-11],[-5,-20],[-1,-20],[2,-10],[3,-8],[3,-10],[0,-12],[-3,-8],[-4,-7],[-3,-6],[0,-5],[6,-3],[17,-4],[6,2]],[[63576,73231],[0,-52],[-3,-18],[2,-12],[1,-31],[5,-22],[4,-73],[11,-69],[-2,-11],[0,-14],[1,-12],[2,-10],[10,-26],[0,-7],[-1,-5],[0,-4],[3,-23],[6,-23],[14,-35],[18,-33],[21,-25],[44,-39],[21,-12],[107,-25],[11,3],[10,7],[9,3],[10,-9],[-3,-1],[-3,2],[-2,0],[-2,-5],[23,-15],[37,-14],[13,-9],[8,-14],[-1,-21],[3,-9],[3,-21],[3,-9],[4,-10],[6,-32],[9,-24],[9,-15],[21,-26],[13,-29],[4,-4],[6,-3],[31,-35],[5,-2],[4,-3],[8,-16],[5,-6],[43,-40],[40,-49],[24,-18],[77,-26],[50,-25],[51,-16],[50,-25],[51,12],[46,29],[47,20],[50,16],[47,17],[48,24],[46,24],[92,36],[12,3],[110,11],[20,8],[13,20],[0,-23],[-16,-9],[-20,-5],[-13,-6],[-3,-3],[-4,1],[-8,4],[-4,-1],[-7,-5],[-5,-2],[-16,4],[-14,0],[2,-7],[4,-2],[9,1],[-6,-4],[-2,0],[7,-15],[11,-9],[43,-7],[5,-4],[5,-3],[34,17],[4,4],[2,10],[0,61],[-2,11],[-4,4],[-5,3],[1,9],[6,20],[-7,18],[-4,21],[-6,50],[-9,39],[-1,8],[-3,51]],[[64975,72585],[76,-12],[6,1],[5,3],[5,9],[5,6],[6,0],[6,-1],[7,0],[10,5],[46,47],[7,1],[17,-6],[6,0],[4,4],[7,12],[5,4],[4,5],[13,15],[7,10],[1,4],[1,9],[4,15],[1,9],[0,14],[0,4],[-1,4],[-4,5],[-1,3],[0,13],[5,18],[1,12],[1,9],[4,10],[8,15],[42,49],[13,24],[2,7],[2,8],[3,3],[4,1],[3,2],[2,4],[3,11],[2,5],[6,3],[16,5],[3,2],[3,9],[6,6],[12,7],[4,1],[5,8],[6,5],[21,27],[6,4],[18,2],[55,19],[8,0],[17,-6],[11,-11],[4,-2],[15,0],[4,-3],[8,-7],[4,-2],[4,0],[40,12],[11,-2],[1,-1],[9,-6],[4,-1],[24,6],[5,6],[2,9],[1,11],[-1,10],[-8,15],[2,8],[18,27],[9,11],[10,7],[26,1],[4,-2],[4,-4],[4,-4],[3,-3],[5,1],[22,17],[14,3],[2,-1],[11,-14],[10,-10],[4,-2],[42,-13],[11,-8],[5,-1],[5,4],[4,6],[9,10],[4,6],[5,17],[1,1],[2,5],[5,4],[3,0],[3,0],[6,-4],[3,-3],[1,-4],[0,-4],[1,-6],[7,-18],[5,-20],[3,-9],[9,-16],[3,-18],[6,-14],[2,-11],[-1,-9],[-5,-32],[7,-15],[40,-27],[4,1],[4,2],[5,1],[5,-1],[14,-7],[13,1],[4,2],[5,0],[3,-4],[4,-5],[3,-4],[2,0],[1,-1],[4,2],[3,-1],[2,-3],[2,-9],[2,-4],[4,-3],[4,1],[5,2],[5,0],[9,-4],[44,-35],[18,-8],[9,-1],[5,-2],[5,-4],[2,-4],[0,-4],[-1,-4],[0,-4],[5,-14],[1,-5],[1,-11],[0,-8],[1,-6],[5,-7],[4,-3],[22,-6],[4,-2],[7,-9],[4,-2],[25,4],[5,4],[3,10],[3,10],[3,8],[5,5],[5,1],[5,-4],[14,-21],[12,-8],[6,-2],[6,1],[2,3],[2,3],[2,3],[3,0],[6,-2],[3,1],[3,1],[4,8],[0,9],[2,4],[17,-16],[21,-8],[11,-9],[4,-4],[4,-2],[8,-3],[3,-2],[9,-16],[37,-46],[6,-1],[16,13],[6,-3],[6,-9],[5,-13],[1,-8],[-1,-13],[2,-6],[1,-5],[-1,-6],[-2,-5],[-1,-7],[1,-12],[5,-41],[3,-8],[18,-25],[5,-10],[2,-4],[-1,-3],[-1,-2],[0,-1],[0,-4],[-1,-5],[0,-4],[5,-2],[2,-4],[2,-3],[2,-2],[3,0],[9,6],[4,-1],[4,-9],[2,-9],[2,-11],[2,-10],[3,-5],[3,1],[2,3],[3,9],[3,3],[3,-1],[40,-22],[18,-26],[10,-10],[23,-7],[10,-8],[9,-19],[10,-38],[13,-33],[29,-62],[6,-16],[8,-36],[6,-17],[9,-9],[44,1],[39,1],[59,2],[33,1],[29,1],[14,-4],[11,-3],[2,-20],[2,-9],[1,-6],[1,-7],[-1,-7],[-1,-7],[-1,-6],[-2,-4],[-1,-6],[0,-7],[2,-9],[-6,-48],[-1,-29],[3,-17],[0,-2],[-1,-2],[-1,-4],[3,-2],[2,-3],[2,-4],[1,-3],[1,-6],[1,-7],[0,-13],[1,-6],[4,-12],[4,-36],[1,-18],[0,-3],[0,-4],[-3,-7],[-2,-4],[-1,-5],[0,-6],[0,-5],[-1,-7],[-3,-3],[-2,-1],[-2,-3],[-1,-7],[1,-12],[0,-6],[-3,-6],[-6,-8],[-3,-7],[4,-3],[6,-2],[6,-5],[5,-8],[4,-9],[3,-9],[3,-9],[1,-11],[2,-21],[1,-9],[0,-10],[-2,-13],[2,-4],[0,-6],[-2,-14],[0,-3],[0,-11],[-1,-4],[-3,-7],[-2,-3],[1,-16],[4,-13],[7,-19]],[[67019,71563],[2,-5],[3,-24],[0,-12],[-1,-13],[-4,-11],[-7,-14],[-3,-11],[-2,-19],[-2,-6],[-5,-13],[-2,-7],[-1,-12],[1,-30],[-2,-11],[-6,-5],[-6,-2],[-6,0],[-4,-6],[-2,-13],[0,-12],[0,-6],[2,-3],[1,-5],[0,-6],[-3,-3],[-1,-2],[1,-6],[10,-24],[1,-2],[-1,-7],[-1,-5],[1,-5],[3,-5],[-7,-17],[-2,-8],[-2,-25],[-4,-22],[-1,-12],[-1,-5],[-3,-11],[-1,-8],[0,-6],[1,-11],[0,-5],[-1,-21],[-2,-20],[-9,-5],[-1,-9],[-6,-17],[-8,-12],[-5,-11],[-1,-14],[1,-15],[-1,-14],[-3,-7],[-3,-2],[-4,1],[-4,-1],[-3,-4],[-2,-4],[-1,-5],[-13,-25],[-6,-6],[-6,-4],[-16,-3],[-7,-7],[-4,-12],[3,-1],[3,-2],[1,-4],[3,-15],[2,-4],[7,-5],[3,-6],[3,-6],[5,-16],[20,-47],[3,-11],[-20,-2],[-29,-3],[-19,-2],[2,-13],[-5,-8],[-13,-13],[-10,-18],[-8,-20],[-8,-28],[-2,-26],[1,-8],[3,-51],[8,-91],[-1,-23],[-9,-35],[-2,-19],[7,-43],[18,-30],[22,-17],[22,-3],[20,2],[11,-1],[9,-4],[5,-5],[4,-7],[3,-9],[-1,-1],[-2,-6],[-4,-3],[-13,-1],[-5,-6],[-1,-9],[1,-10],[1,-10],[-2,-12],[-3,-6],[-9,-11],[-8,-12],[-10,-26],[-14,-33],[-15,-36],[-13,-33],[-2,-8],[0,-47],[4,-38],[8,-48],[10,-58],[9,-59],[11,-62],[11,-69],[12,-82],[10,-63],[-1,-48],[-4,-47],[-1,-10],[-8,-17],[-2,-9],[1,-4],[3,-2],[1,-4],[-2,-13],[0,-6],[2,-6],[1,-6],[0,-13],[-2,-37],[1,-28],[4,-55],[-4,-44],[1,-14],[4,-28],[3,-56],[10,-7],[28,-7],[46,-13],[1,0],[47,-12],[54,-15],[32,-8],[15,-5],[8,-5],[5,-8],[10,-23],[2,-11],[-2,-25],[0,-12],[3,-12],[7,-22],[3,-14],[0,-17],[1,-6],[5,-19],[3,-19],[1,-12],[0,-12],[-2,-12],[-5,-20],[1,-6],[1,-41],[-1,-2],[-1,-4],[0,-10],[0,-1],[1,-3],[-5,-10],[-23,-50],[-35,-78],[-32,-71],[-23,-50],[-30,-66],[-15,-35],[-23,-51],[-43,-94],[-21,-46],[-16,-35]],[[67107,65395],[-2,8],[0,10],[-5,7],[-1,4],[-1,2],[-3,-4],[-1,-3],[0,-10],[-1,-3],[2,-3],[2,-7],[2,-2],[-6,1],[-5,4],[-4,0],[-6,-9],[6,-4],[3,-3],[2,-5],[-1,-6],[-4,-11],[-2,-6],[0,-3],[0,-3],[-2,-4],[-4,-4],[-15,-9],[4,-5],[-7,-17],[-47,31],[-16,7],[0,10],[-4,14],[-39,27],[-45,15],[-39,18],[-26,6],[-5,5],[5,7],[-7,19],[-1,8],[0,33],[-1,5],[-10,20],[-4,5],[-5,1],[-5,-1],[-19,-11],[-5,-5],[-3,-9],[-4,-10],[-2,-6],[0,-4],[1,-4],[1,-12],[1,-1],[2,-1],[3,-3],[2,0],[2,-1],[1,-4],[3,-6],[-3,1],[0,-1],[8,-8],[-1,-8],[-3,1],[-9,8],[-12,9],[-5,6],[-12,-1],[-8,13],[2,10],[1,2],[-4,3],[-5,2],[-10,-1],[-7,-3],[-2,-1],[-3,-6],[0,-3],[1,-3],[6,-8],[-2,-11],[-7,0],[-6,8],[-3,2],[-10,2],[-2,3],[-3,8],[-4,5],[-10,-1],[-15,-5],[-14,-1],[-11,-15],[-11,8],[-12,22],[-13,6],[-32,-4],[-12,0],[-21,10],[-14,26],[-10,10],[-15,-5],[-33,-11],[-8,-2],[-16,-5],[-15,-14],[-6,-3],[-3,1],[-2,4],[-2,3],[-2,-1],[-3,-3],[-2,-1],[-7,1],[-5,2],[-5,4],[-3,6],[-13,39],[-7,16],[-11,10],[-10,-1],[-2,3],[-2,5],[-1,6],[-1,5],[-4,2],[-23,0],[-51,18],[-17,-6],[-15,2],[-5,5],[2,9],[-8,-1],[-9,-3],[-4,-4],[-6,-10],[-5,-2],[-1,1],[-1,3],[-2,0],[-3,-6],[-2,-3],[-3,-2],[-3,1],[-1,4],[-1,-2],[-10,-13],[-10,-3],[-9,4],[-9,5],[-9,3],[-8,7],[-6,15],[-8,34],[-9,21],[-10,4],[-12,-5],[-11,-12],[-9,-14],[-7,-8],[-4,0],[1,27],[1,6],[1,3],[0,2],[0,5],[-3,14],[-4,7],[-6,3],[-7,0],[-6,-1],[-16,-7],[-3,1],[-6,6],[-3,1],[-3,0],[-6,-3],[-3,-1],[-7,1],[-19,12],[2,3],[-37,5],[-4,4],[-2,10],[-1,29],[-7,30],[-4,24],[-2,11],[-3,5],[0,2],[-6,14],[-2,1],[-3,-1],[-1,0],[-1,3],[0,7],[-4,21],[-1,10],[-3,11],[-1,7],[2,13],[9,18],[3,12],[-4,19],[-18,38],[1,16],[-2,4],[-2,27],[-1,13],[-4,11],[-5,10],[-1,4],[-1,5],[-1,14],[0,5],[5,74],[-1,28],[-18,137],[-4,11],[-10,15],[-3,10],[0,9],[-8,11],[-3,6],[4,-1],[3,3],[3,3],[3,3],[-2,4],[0,6],[1,5],[1,5],[-8,-7],[-3,-1],[-3,1],[-1,3],[-1,3],[-2,1],[-1,2],[-2,4],[-2,3],[-5,-6],[-2,2],[0,5],[0,6],[-4,-1],[-2,3],[0,4],[3,2],[1,3],[5,10],[3,3],[0,5],[-9,2],[-6,8],[-5,13],[-1,13],[-4,-6],[-3,-2],[-8,0],[-4,2],[-2,6],[-3,6],[-2,2],[-29,1],[-6,4],[-2,-5],[-7,7],[-8,4],[-18,1],[-8,3],[-14,11],[-9,3],[-17,-2],[-9,-4],[-6,-9],[-6,-5],[-18,-2],[-8,-2],[-2,-3],[-5,-9],[-1,-3],[0,-6],[-2,-2],[-2,-1],[-2,-3],[-5,-8],[-19,-21],[-6,-11],[0,-3],[-2,-1],[-5,-9],[-3,-2],[-12,-2],[-12,-6],[-3,0],[-9,0],[-3,-1],[-4,-6],[-3,-1],[-10,0],[-9,4],[-3,0],[-5,-4],[-9,-17],[-4,-3],[-3,-5],[-15,-32],[4,3],[2,1],[2,4],[1,-14],[-2,-18],[-3,-17],[-4,-12],[-9,-15],[-10,-10],[-12,-5],[-13,2],[-22,14],[-13,4],[-10,-10],[-3,-11],[-2,-11],[-3,-8],[-6,-3],[-6,-1],[-12,-7],[-4,-3],[-18,-31],[-3,-4],[-27,-42],[-30,-33],[-2,-3],[-2,-4],[-2,-4],[-3,-1],[-3,1],[-5,5],[-3,2],[-24,-4],[-12,3],[-5,14],[-4,17],[-8,14],[-12,5],[-25,-2],[-10,10],[-5,15],[-5,19],[-5,18],[-8,13],[-6,2],[-6,-2],[-5,-3],[-21,-3],[-6,2],[-19,10],[-5,2],[-3,2],[-5,8],[-2,2],[-3,0],[-6,-2],[-18,-17],[-13,-3],[-11,-6],[-6,0],[-13,7],[-7,1],[-6,-6],[-4,2],[-14,24],[-21,23],[-27,39],[-4,10],[-1,11],[-1,28],[-2,12],[-5,11],[-9,11],[-94,61],[-6,1],[-6,3],[-4,8],[-3,9],[-4,8],[-16,8],[-3,6],[-2,13],[-6,7],[-13,7],[-22,38],[-10,13],[-15,12],[-21,18],[-6,12],[0,12],[2,8],[5,3],[6,2],[5,-1],[6,1],[3,6],[-2,14],[-4,7],[-12,9],[-4,6],[-2,7],[-5,20],[-2,6],[-20,40],[-10,14],[-10,8],[-49,21],[-11,10],[-32,58],[-11,13],[-11,9],[-13,3],[-20,-4],[-4,2],[-5,6],[-10,-1],[-11,-5],[-17,-6],[-11,3],[-24,10],[-3,1],[-2,4],[0,6],[-1,4],[-2,3],[-8,3],[-12,6],[-6,12],[-6,21],[-7,8],[-2,-17],[-6,-1],[-5,36],[-6,14],[-4,22],[-11,32],[-4,9],[-6,11],[-1,12],[6,32],[-1,15],[-5,18],[-10,16],[-4,8],[-9,29],[-9,18],[-3,6],[-17,79],[-2,18],[0,76],[-4,25],[-6,22],[-7,16],[-9,10],[-12,5],[-11,2],[-5,2],[-3,7],[-2,11],[-13,31],[-2,12],[-2,16],[1,14],[6,7],[5,-4],[6,-8],[4,-11],[3,-10],[3,5],[0,4],[-2,5],[1,7],[2,4],[5,9],[2,7],[1,13],[0,13],[-3,9],[-5,-3],[-3,17],[-1,7],[-4,5],[-2,-1],[-2,-2],[-2,-2],[-1,3],[-1,10],[0,5],[-1,3],[-7,2],[-22,-2],[-5,-2],[-7,-8],[-8,2],[-6,10],[-2,16],[-1,15],[1,7],[2,7],[2,8],[2,10],[3,4],[4,-8],[1,24],[1,4],[-3,2],[-2,3],[-3,12],[2,14],[0,23],[-2,24],[-2,16],[-3,12],[-6,14],[-4,4],[0,-18],[-2,7],[-8,22],[-14,22],[-3,8],[-2,10],[-4,11],[-9,17],[-16,13],[-3,6],[-2,12],[-4,11],[-7,15],[-8,20],[-12,43],[-7,18],[-5,9],[-12,13],[-11,20],[0,3],[-1,7],[-1,11],[-1,6],[5,1],[1,4],[-2,4],[-4,4],[3,20],[-6,33],[2,16],[-4,5],[-5,11],[-3,12],[-2,10],[-1,6],[-4,5],[-3,2],[-7,5],[-10,2],[-10,-3],[-10,-6],[-88,-103],[-10,-8],[-9,4],[-8,21],[0,9],[0,27],[-2,10],[-2,6],[-1,3],[-1,3],[-3,3],[-3,2],[-3,1],[-6,1],[-3,-1],[-6,-2],[-3,-1],[-3,1],[-4,6],[-2,1],[-6,-2],[-10,-8],[-6,-2],[-7,1],[-3,5],[0,24],[-1,2],[-3,5],[-2,4],[0,3],[0,9],[1,4],[1,4],[0,4],[-3,4],[-2,-10],[-3,-10],[-4,-7],[-5,-1],[-5,5],[-2,8],[-3,6],[-5,1],[-6,4],[-19,20],[-4,6],[-1,19],[-5,12],[-7,7],[-9,5],[3,9],[4,3],[12,-4],[5,1],[10,5],[5,2],[5,-3],[12,-11],[4,-2],[6,-2],[4,-3],[4,-6],[4,-10],[1,8],[6,18],[8,19],[1,6],[1,10],[-6,-2],[-4,5],[-3,9],[-2,22],[-3,-3],[-4,-8],[-5,-6],[1,7],[0,2],[1,3],[-2,6],[-3,-1],[-2,-4],[-4,-1],[-2,2],[-3,8],[-2,2],[-2,-1],[-2,-3],[-2,0],[-5,1],[-5,3],[-5,1],[-5,-5],[-10,2],[-8,-9],[-2,-12],[8,-6],[9,-3],[7,-8],[2,-11],[-6,-10],[-4,0],[-15,4],[-4,-2],[-15,-26],[-1,-3],[-2,-7],[-2,-7],[3,-6],[-1,-4],[-2,-4],[-1,-4],[3,-12],[4,-9],[6,-8],[5,-10],[2,-10],[2,-13],[1,-27],[0,-8],[-3,-12],[-1,-6],[1,-7],[1,-11],[0,-7],[-1,-11],[-4,-11],[-5,-7],[-6,-3],[-19,4],[-4,-4],[-6,4],[-19,0],[-12,12],[-5,2],[0,-10],[1,-7],[4,-12],[0,-8],[0,-6],[-2,-5],[-3,-4],[-2,-3],[-7,-3],[-20,3],[0,4],[-2,-3],[0,-2]],[[65146,66051],[1,-2],[2,-2],[1,-4],[1,-4],[-5,-23],[-2,0],[-3,2],[-3,3],[-2,4],[0,7],[-1,6],[0,6],[1,7],[2,4],[2,2],[3,-1],[3,-5]],[[65010,66157],[-21,2],[-2,0],[-9,8],[-6,18],[3,8],[4,6],[5,3],[6,-1],[4,-3],[11,-2],[4,-3],[0,-2],[0,-2],[0,-5],[0,-1],[0,-4],[1,0],[1,-2],[2,-2],[0,-1],[1,-4],[0,-3],[-1,-4],[0,-3],[-3,-3]],[[64810,66341],[-5,-5],[-6,-1],[-16,6],[-4,4],[-1,0],[-4,5],[-8,14],[-3,5],[1,3],[2,1],[2,1],[3,1],[23,-14],[21,-3],[7,-5],[3,-6],[3,-4],[-4,-2],[-11,2],[-3,-2]],[[65644,66361],[2,16],[4,11],[7,6],[10,2],[2,-18],[-9,-14],[-10,-7],[-6,4]],[[65614,66461],[5,-2],[7,-6],[5,-7],[2,-2],[2,-11],[-5,-5],[-4,-5],[-17,-8],[-6,-11],[-7,-26],[-3,-11],[-11,-22],[-2,-8],[-3,-5],[-10,-10],[-3,-5],[-2,-3],[-14,-25],[-8,-9],[-6,5],[-6,12],[-7,10],[-19,-18],[-5,-8],[-5,-6],[-6,0],[-13,4],[-5,-3],[-6,-5],[-15,-21],[-16,-12],[-9,-13],[-5,-5],[-17,-4],[-13,-7],[-5,-6],[-2,-2],[-1,1],[-2,0],[-3,2],[-3,0],[-1,-5],[-1,-4],[-3,-3],[-3,-2],[-3,-1],[-1,2],[-1,1],[-2,7],[-1,14],[2,11],[0,7],[-1,3],[-3,18],[3,6],[13,-9],[3,3],[2,-1],[1,0],[15,15],[37,23],[5,2],[4,2],[1,1],[12,15],[6,9],[18,13],[3,0],[6,0],[3,0],[2,2],[2,4],[3,2],[-1,4],[-1,4],[4,10],[1,11],[-1,26],[-2,10],[-5,9],[-4,7],[-2,4],[7,8],[38,-28],[11,5],[29,36],[37,16],[11,0]],[[65686,66522],[3,-3],[3,-3],[3,-4],[0,-1],[1,-7],[-1,-8],[-3,-6],[-2,-1],[-1,-2],[-5,-2],[-8,7],[0,15],[5,13],[5,2]],[[63973,67805],[5,-5],[3,-3],[-1,-10],[1,-10],[-2,-9],[-3,-1],[-3,4],[-2,14],[-2,11],[-2,7],[3,4],[3,-2]],[[65151,65824],[2,-5],[0,-11],[-3,-4],[-4,2],[-4,4],[-1,6],[4,4],[6,4]],[[65526,66270],[2,-7],[0,-14],[-4,-12],[-5,-7],[-5,5],[1,14],[3,13],[5,7],[3,1]],[[64899,66275],[3,-3],[3,-9],[-4,-7],[-5,2],[-5,4],[-2,8],[2,6],[5,1],[3,-2]],[[65291,65800],[0,-6],[1,-7],[-2,-4],[-2,0],[-2,-2],[-2,5],[-2,-2],[0,4],[-1,3],[-1,6],[4,4],[5,3],[2,-4]],[[51183,80891],[-1,2],[-2,7],[-1,7],[0,6],[0,5],[-3,3],[-3,-6],[-7,-2],[-25,1],[-5,2],[-6,5],[-15,17],[-5,3],[-11,2],[-4,-4],[-8,-20],[-4,-7],[-4,-3],[-10,-1],[-3,-3],[-3,-1],[-3,2],[-8,11],[-17,11],[-11,14],[-4,0],[-11,-5],[-7,-1],[-15,5],[-5,4],[-5,8],[-3,9],[-4,7],[-9,11],[-3,6],[-1,10],[3,5],[28,24],[75,10],[6,-1],[4,-3],[5,-5],[4,-8],[2,-8],[-2,-2],[-5,-4],[-2,-2],[0,-4],[27,-4],[13,-7],[11,-13],[4,-10],[6,-20],[4,-7],[6,-3],[15,3],[5,-4],[6,2],[9,0],[3,1],[5,2],[4,13],[-2,13],[-6,10],[-8,6],[-2,0],[-10,3],[-12,6],[-4,1],[-9,-1],[-4,0],[-7,6],[-22,27],[15,10],[7,2],[25,-1],[8,-3],[6,-8],[-1,11],[-4,5],[-1,0],[-11,1],[-3,1],[-2,3],[-3,3],[-1,5],[-1,7],[0,7],[1,5],[4,5],[4,3],[10,1],[-3,4],[-7,6],[-20,8],[-4,8],[-1,20],[-5,12],[-7,8],[-8,7],[-5,-5],[-7,-3],[-7,0],[-5,-2],[-1,-2],[-2,-1],[-3,0],[-3,17],[8,7],[18,7],[2,4],[6,1],[9,-3],[8,-5],[1,-1],[2,1],[3,1],[3,4],[-2,6],[-7,13],[-2,2],[-1,2],[-1,4],[0,4],[2,4],[1,2],[1,2],[-1,9],[-6,23],[-3,10],[2,5],[2,3],[13,-3],[11,2],[9,8],[40,64],[34,65],[28,67],[17,65],[2,16],[0,5],[5,15],[12,115],[5,29],[1,9],[3,19],[11,39],[3,19],[0,11],[1,15],[2,12],[4,5],[17,-4],[3,4],[2,-5],[-5,-18],[7,-10],[11,-5],[11,1],[7,5],[11,13],[6,3],[11,2],[11,6],[56,64],[4,7],[5,5],[13,4],[6,5],[5,14],[8,41],[6,18],[9,14],[6,7],[11,6],[4,7],[5,8],[5,6],[5,3],[14,3],[9,11],[45,22],[10,10],[6,0],[19,13],[27,1],[30,1],[24,1],[3,-1],[5,-5],[3,-2],[2,1],[7,7],[41,16],[66,13],[27,-6],[6,-3],[5,-7],[9,-49],[2,0],[6,-7],[1,-1],[1,-1],[2,-3],[2,-3],[8,-4],[11,-8],[5,2],[3,-3],[3,-1],[3,1],[3,3],[2,0],[0,-4],[-3,-2],[-1,-2],[0,-2],[2,-5],[0,-10],[9,-6],[20,-7],[3,0]],[[50930,80895],[45,19],[4,5],[4,0],[18,-15],[27,-10],[9,-11],[6,-3],[11,0],[10,-4],[7,1],[27,16],[4,6],[2,11],[2,6],[6,-1],[7,-3],[4,-3],[2,-4],[3,-9],[2,-4],[3,-1],[7,-2],[3,-3],[1,-1],[10,-1],[5,10],[2,2],[5,-1],[6,-4]],[[31052,57711],[2,-3],[3,-5],[1,-5],[-3,-3],[-3,-6],[2,-31],[0,-12],[-3,-4],[-5,0],[-2,-4],[1,-5],[2,-15],[1,-6],[0,-6],[-2,-7],[-1,-7],[-2,-3],[-3,1],[-1,3],[-6,26],[-1,11],[-1,10],[1,19],[0,12],[-1,12],[-4,13],[-5,7],[-14,4],[-6,4],[-5,8],[-2,9],[4,12],[-2,4],[1,7],[2,6],[2,3],[4,0],[4,-5],[6,-16],[3,-3],[4,-3],[18,-17],[9,-3],[2,-2]],[[32500,60849],[4,-5],[2,-8],[3,-3],[6,-8],[-1,-8],[-3,-5],[-6,2],[-4,15],[-1,20]],[[51121,81079],[11,-5],[6,-4],[0,-10],[-3,-6],[-4,-4],[-5,-3],[-22,-5],[-4,0],[-11,5],[-6,6],[-2,8],[-2,7],[-5,5],[-10,6],[-2,2],[-2,3],[-2,3],[-4,0],[-7,-11],[-2,-2],[-12,-1],[-6,3],[-3,7],[0,19],[10,9],[24,4],[1,1],[5,-1],[3,-2],[27,-1],[6,-2],[4,-5],[11,-17],[1,-3],[2,-3],[3,-3]],[[51359,81923],[0,-4],[5,0],[-2,-8],[-3,-9],[-8,-15],[-13,-14],[-6,-16],[-10,-3],[-10,5],[-5,15],[2,15],[5,18],[7,14],[13,15],[7,18],[7,14],[9,0],[1,-4],[0,-3],[0,-3],[-1,-3],[4,-8],[2,-10],[0,-10],[-4,-4]],[[51355,81988],[11,19],[19,22],[19,14],[13,-3],[0,-4],[-7,0],[-3,-2],[-8,-4],[-22,-28],[-6,-11],[-8,-8],[-8,5]],[[51506,82112],[4,4],[41,10],[-7,-12],[-7,-3],[-17,-1],[1,-2],[1,-4],[0,-3],[-3,-2],[-12,-1],[-12,-7],[-10,-3],[-39,-22],[-8,0],[-3,9],[3,10],[15,7],[5,6],[6,0],[37,9],[5,5]],[[51576,82134],[66,4],[12,-8],[-28,-8],[-29,0],[-7,-2],[-13,-8],[-7,2],[-5,9],[2,8],[4,5],[5,-2]],[[51725,82158],[27,4],[8,-4],[0,-4],[-4,0],[-47,-19],[-6,-9],[-1,3],[-1,2],[2,3],[-3,8],[7,8],[11,6],[7,2]],[[51789,82187],[4,1],[15,-9],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-10,4],[-5,4],[0,4]],[[32433,60920],[3,-2],[2,-8],[-2,-7],[-3,-2],[-3,6],[1,10],[2,3]],[[47780,56488],[5,-4],[6,0],[6,3],[5,5],[5,9],[3,4],[7,2],[3,2],[2,3],[3,5],[6,18],[2,5],[0,6],[2,3],[2,3],[2,5],[0,8],[4,12],[-4,10],[6,3],[6,7],[3,10],[-3,9],[2,3],[1,1],[0,4],[4,6],[3,1],[3,0],[2,1],[2,6],[1,8],[2,5],[5,2],[10,-13],[7,-2],[3,1],[5,0],[2,2],[2,4],[7,18],[4,0],[3,-1],[3,-4],[2,-5],[2,-7],[0,-7],[0,-6],[0,-5],[1,-6],[5,-17],[0,-6],[-1,-6],[1,-3],[3,-1],[3,2],[7,6],[7,-1],[1,-9],[-1,-24],[0,-15],[2,-7],[5,-2],[17,-1],[22,-7],[28,-16],[4,-6],[5,-11],[4,-14],[5,-9],[7,0],[6,5],[6,9],[3,13],[0,15],[-3,6],[-4,5],[-3,6],[0,8],[7,47],[3,7],[6,2],[16,-4],[5,1],[17,16],[6,2],[6,-4],[10,-13],[6,-2],[7,5],[2,7],[0,2],[1,20],[2,4],[1,4],[2,6],[0,6],[-2,4],[-3,3],[-3,2],[-2,2],[-3,12],[-1,10],[3,19],[1,27],[-1,5],[-1,4],[0,5],[0,11],[2,11],[4,14],[0,2],[6,4],[4,-4],[5,-21],[5,-8],[5,-8],[12,-13],[4,-3],[15,-6],[6,-1],[7,2],[5,8],[1,14],[-2,5],[-4,4],[-3,4],[-1,8],[0,23],[2,11],[5,5],[6,1],[6,-2],[7,-1],[5,6],[6,7],[6,6],[7,2],[3,-3],[0,-9],[-1,-24],[0,-5],[6,-4],[3,-3],[2,-5],[1,-4],[-1,-7],[-3,-4],[-3,-3],[-2,-5],[1,-8],[1,-7],[0,-7],[-2,-5],[-5,-9],[-2,-5],[0,-9],[2,-1],[2,1],[3,-1],[1,-3],[1,-4],[2,-3],[2,-1],[3,1],[2,0],[2,-2],[1,-6],[0,-4],[-3,-10],[-1,-5],[1,-6],[5,-11],[-5,-19],[0,-11],[4,-7],[-7,-16],[0,-2],[1,-3],[0,-4],[0,-3],[-3,-2],[-2,2],[-1,2],[-1,1],[-3,-8],[-1,-8],[1,-22],[4,2],[3,-4],[6,-14],[4,-5],[21,-16],[24,0],[6,11],[3,11],[2,13],[1,15],[3,5],[13,-9],[3,5],[-1,32],[1,11],[3,10],[5,7],[20,22],[35,16],[16,3],[8,5],[2,0],[4,-3],[6,-8],[7,-6]],[[48465,56644],[5,-6],[5,-13],[4,-15],[0,-11],[4,-3],[2,0],[2,-1],[2,-2],[1,-5],[1,-5],[1,-4],[3,-5],[4,-4],[4,-3],[6,0],[1,2],[1,3],[1,2],[2,-1],[1,-2],[2,0],[3,0],[3,2],[2,3],[1,4],[2,3],[5,0],[13,-4],[4,2],[14,-17],[2,1],[2,8],[5,-1],[4,-6],[1,0],[2,-9],[0,-33],[-1,-3],[-1,-3],[0,-3],[3,-1],[2,2],[2,3],[1,4],[1,4],[1,-13],[-2,-10],[-1,-7],[8,1],[-2,-11],[2,-6],[7,-10],[0,-4],[-6,-5],[-3,-5],[2,0],[2,-1],[2,-2],[2,-1],[-4,-4],[2,-7],[3,-1],[4,3],[2,5],[2,-10],[3,-6],[3,-4],[4,-4],[3,-9],[2,-11],[-1,-8],[-6,-1],[1,-6],[3,-8],[3,-14],[1,-4],[-4,-24],[0,-7],[8,-16],[3,-2],[1,4],[2,6],[2,2],[3,-1],[1,-3],[1,-3],[2,-1],[7,-1],[5,-3],[4,-8],[2,-12],[6,4],[2,-9],[1,-14],[3,-10],[-5,-3],[-2,-1],[-3,1],[0,-5],[3,-4],[0,-3],[1,-5],[4,3],[4,-13],[4,2],[-2,3],[0,3],[1,2],[2,0],[3,0],[2,-2],[1,-4],[1,-4],[3,-6],[1,-4],[1,-6],[0,-5],[2,-2],[4,-3],[1,-4],[0,-2],[2,2],[3,3],[2,4],[1,3],[-1,2],[4,0],[4,1],[3,3],[4,8],[3,-5],[4,-13],[3,-2],[4,2],[1,6],[0,8],[2,8],[0,4],[1,3],[1,1],[5,0],[2,-1],[1,-2],[1,-3],[-1,-10],[-2,-15],[-1,-11],[4,-12],[9,-2],[10,1],[7,-4],[2,-8],[3,-20],[1,-6],[4,-4],[1,5],[0,10],[1,9],[4,-2],[8,-7],[2,5],[3,15],[1,7],[-1,14],[0,5],[2,6],[8,18],[-3,3],[-1,0],[3,7],[5,4],[11,3],[5,6],[8,23],[5,8],[4,1],[16,-9],[3,-4],[2,-1],[1,1],[1,3],[0,3],[0,1],[5,5],[2,1],[9,1],[2,8],[1,10],[4,4],[6,3],[10,15],[6,3],[18,1],[6,3],[2,4],[5,10],[2,4],[4,3],[14,3],[2,0],[4,-5],[1,0],[2,1],[2,7],[1,2],[4,-3],[2,-4],[2,-5],[3,-5],[5,-2],[16,5],[44,-8],[4,-2],[4,-10],[3,-3],[3,2],[3,4],[3,2],[1,-4],[0,-11],[1,-13],[2,-7],[7,1],[4,8],[9,28],[5,7],[3,-5],[0,-11],[-1,-14],[2,-12],[4,-6],[7,0],[6,-3],[6,-14],[3,-29],[3,-14],[5,-8],[5,-1],[9,6],[6,-3],[4,-9],[3,-14],[5,-27],[14,-57],[28,-78],[6,-10],[7,-1],[5,9],[7,31],[9,17]],[[49253,56089],[3,-10],[1,-8],[-2,-19],[1,-5],[1,-10],[0,-16],[-1,-10],[-4,-4],[-3,-4],[-3,-8],[-1,-11],[3,-9],[3,-6],[5,-3],[5,-5],[-1,-11],[-3,-11],[-9,-10],[-3,-11],[-5,-21],[-6,-13],[-1,-5],[-1,-29],[-1,-9],[-2,-9],[2,-3],[2,-4],[2,-3],[4,-2],[7,0],[7,-4],[7,-8],[2,-9],[0,-12],[5,-28],[1,-3],[2,0],[2,-2],[1,-5],[0,-10],[6,-41],[-1,-8],[-3,-4],[-2,-4],[0,-7],[1,-5],[2,2],[2,-9],[13,-166],[12,-166],[-2,-9],[-12,-15],[-4,-3],[-3,1],[-4,3],[-2,1],[-2,-4],[-2,-8],[-1,-9],[1,-8],[4,-17],[1,-14],[0,-10],[-3,-8],[-5,-6],[-17,-12],[-5,-8],[-13,-31],[-4,-8],[-1,2],[-1,4],[-2,2],[-2,0],[0,-5],[-2,-44],[-1,-6],[-2,-5],[-6,-8],[-2,-5],[-1,-3],[1,-8],[0,-3],[-1,-4],[-3,-7],[-1,-4],[-20,-91],[-4,-24],[-13,-182],[0,-6],[2,-9],[2,-5],[1,-4],[0,-9],[-3,-11],[-12,-34],[-2,-6],[-2,-29],[-2,-5],[-13,-9],[-1,-1],[-3,-4],[-32,-117],[-5,-23],[0,-21],[1,-6],[3,-10],[4,-15],[1,-4],[-6,-33],[-1,-3],[-5,-6],[-2,-7],[-1,-10],[22,-209],[3,-8],[1,-2],[8,-16],[6,-33],[9,-99],[4,-21],[11,-42],[3,-21],[1,-22],[-3,-67],[18,3],[-3,-37],[2,-15],[6,-8],[6,1],[9,12],[4,4],[20,-11],[4,-6],[2,-8],[1,-9],[0,-31],[5,-43],[8,-38],[1,-10],[-1,-11],[-2,-7],[-4,-1],[-9,3],[-2,-36],[1,-9],[3,-12],[2,-6],[0,-5],[-2,-13],[1,-5],[0,-2],[4,-7],[2,-4],[-3,-11],[-4,-6],[-6,-2],[-11,1]],[[49210,53519],[-1,17],[-9,2],[-12,-3],[-7,1],[2,-12],[-1,-12],[-4,-10],[-6,-3],[-4,3],[-15,14],[-4,8],[-6,-4],[-11,0],[-4,-5],[-3,11],[-4,14],[-5,11],[-5,5],[-2,4],[3,10],[5,8],[1,2],[2,8],[0,18],[2,7],[4,5],[3,1],[2,4],[0,12],[0,9],[-2,4],[-3,1],[-5,0],[-1,-1],[-2,-3],[-2,-3],[-3,-1],[-2,1],[-4,3],[-2,0],[-3,-2],[-5,-8],[-4,-2],[3,-14],[2,-12],[-2,-8],[-8,-2],[1,-5],[0,-4],[-1,-4],[-2,-4],[2,-3],[2,-1],[-2,0],[2,-2],[3,-2],[3,0],[3,0],[0,-4],[-2,-3],[-5,1],[-2,-2],[-3,-4],[-2,-5],[-2,-5],[-1,-7],[-3,5],[-2,-3],[1,-5],[4,-4],[-2,-8],[2,-5],[3,-3],[5,-1],[-11,-17],[-18,2],[-70,32],[-13,1],[-9,4],[-2,1],[-1,4],[0,5],[1,4],[-1,4],[-2,5],[2,8],[-3,-5],[-2,-8],[-2,-8],[-1,-8],[-2,0],[-3,4],[-5,2],[-12,-1],[-3,2],[-13,14],[-19,6],[-9,5],[-4,14],[5,-4],[6,1],[5,6],[3,9],[4,-11],[2,-4],[2,-2],[2,2],[1,3],[0,4],[-2,4],[0,4],[4,-2],[10,-9],[2,0],[2,2],[7,-5],[10,-11],[-1,4],[0,5],[-1,4],[4,-1],[8,-2],[3,3],[3,9],[-1,5],[-4,5],[-2,7],[-3,19],[-1,9],[-1,5],[-2,3],[-3,1],[-3,-3],[-2,3],[-2,1],[-3,-1],[-1,-5],[1,-3],[6,-9],[7,-20],[4,-10],[5,-4],[-2,-8],[-5,1],[-4,2],[-4,-4],[-2,0],[-4,9],[-2,2],[-3,0],[-4,1],[-3,3],[-4,4],[-2,5],[-1,8],[-1,-2],[-2,-3],[-1,-3],[-1,5],[0,5],[-1,5],[0,6],[-2,0],[0,-8],[-1,-7],[-3,-4],[-3,3],[-2,-4],[-3,-1],[-3,1],[-4,4],[-6,-3],[-3,-2],[3,-5],[4,-2],[4,1],[4,3],[4,-9],[-4,-6],[-5,-6],[-5,-2],[-4,4],[-4,5],[-6,5],[-6,4],[-2,-2],[-2,-5],[-6,3],[-7,9],[-4,-3],[-3,-4],[-3,-2],[-4,4],[-2,-3],[-1,0],[-2,3],[-2,5],[-8,-11],[-4,-3],[-4,2],[1,2],[1,7],[0,3],[-7,3],[-3,-1],[-3,-7],[-2,4],[-3,3],[-2,0],[-2,-9],[-4,-8],[-2,-6],[-2,5],[-4,5],[-3,5],[-3,1],[-3,-3],[-2,-5],[-3,-3],[-3,7],[1,2],[1,2],[-10,-1],[-4,-4],[-1,-11],[2,3],[3,-1],[1,-4],[1,-6],[-5,3],[-20,2],[-1,5],[-1,5],[-3,9],[-2,-5],[0,-5],[1,-4],[3,-2],[0,-3],[-5,-3],[-4,-3],[-7,-11],[-5,7],[-6,-1],[-5,-5],[-3,-5],[-1,0],[-2,2],[-3,3],[-2,4],[-1,3],[3,3],[3,-1],[3,-1],[4,-1],[-1,6],[0,3],[-2,2],[-2,1],[0,5],[2,2],[2,5],[1,5],[0,7],[-2,0],[-3,-13],[-5,-7],[-6,-3],[-7,-1],[8,-12],[-6,-10],[-10,-10],[-7,-8],[-2,-9],[1,-5],[2,-4],[5,-2],[5,-1],[5,2],[3,4],[-2,6],[0,5],[7,4],[4,4],[1,-3],[1,-4],[3,-1],[3,2],[6,5],[4,1],[8,0],[3,-1],[2,-3],[1,-3],[1,-1],[4,-1],[3,0],[6,5],[-2,-1],[-4,1],[-2,2],[-1,6],[1,3],[10,5],[0,-8],[2,0],[6,6],[17,-2],[8,8],[1,-9],[2,4],[2,8],[2,5],[5,0],[5,-5],[4,-2],[3,7],[5,-4],[6,2],[5,4],[12,4],[7,9],[4,2],[35,2],[8,-7],[-2,-2],[-3,-2],[-3,0],[-3,1],[21,-21],[-87,-15],[-87,-15],[-46,-22],[-25,-5],[-5,-4],[-3,3],[-3,2],[-15,0],[-3,-1],[0,4],[1,0],[1,0],[1,0],[0,4],[-8,0],[-1,7],[0,11],[-2,11],[3,9],[-3,2],[-15,-4],[-5,-4],[-5,-5],[-4,-7],[-4,9],[-8,8],[-10,5],[-8,-5],[-1,2],[-2,3],[0,2],[-1,1],[-2,0],[-3,-6],[-5,3],[-5,5],[-4,-2],[-2,0],[-3,3],[-1,-2],[-1,-6],[2,-7],[-1,0],[-3,4],[0,-6],[0,-2],[2,1],[0,-2],[2,-3],[0,-1],[2,3],[1,1],[4,1],[0,-5],[-2,-5],[-7,-7],[-2,-3],[0,11],[-4,-24],[-2,-8],[-10,29],[-2,0],[0,-2],[0,-6],[-3,4],[4,-17],[11,-11],[14,-3],[11,6],[-5,7],[-4,0],[-5,-2],[-5,3],[0,4],[2,0],[3,0],[2,2],[2,3],[1,2],[4,8],[1,2],[4,-2],[5,-5],[4,-3],[4,6],[3,-5],[4,-1],[3,2],[1,8],[-5,-2],[-2,5],[-2,6],[-4,3],[0,4],[4,-4],[9,3],[17,-21],[7,4],[4,6],[4,1],[9,-2],[2,-4],[1,-10],[2,-11],[4,-7],[-70,-5],[-11,-8],[-56,-7],[-8,3],[-7,9],[-8,-12],[6,-4],[2,0],[-22,-15],[-62,-20],[-2,-1],[-31,-21],[-5,-5],[-2,-5],[-3,0],[-15,-11],[-22,-24],[-76,-55],[-2,-4],[-2,-9],[-4,-4],[-29,-16],[-6,-1],[-4,-3],[-8,-15],[-4,-6],[-35,-22],[-28,-4],[-7,-8],[-7,-3],[-3,-4],[-8,-20],[-15,-27],[-17,-22],[-11,-8],[-21,-4],[-17,-15],[-3,-5],[-3,-12],[-3,-1],[-3,0],[-3,-2],[-5,-9],[-15,-17],[-22,-39],[-5,-4],[-6,2],[-13,5],[-4,-2]],[[49134,53495],[-1,-10]],[[49133,53485],[-12,6],[-28,5],[-4,5],[2,8],[5,10],[5,9],[8,-4],[2,-3],[0,-4],[1,-3],[1,-3],[2,-2],[6,-4],[1,0],[1,1],[3,-3],[4,-8],[3,-1],[1,1]],[[56303,76662],[-12,-8],[-3,-4],[-4,-11],[-4,-8],[-1,-1],[0,-3],[0,-3],[0,-2],[1,0],[-3,-18],[-1,-6],[1,-6],[2,-13],[0,-5],[-4,-9],[-5,-2],[-5,1],[-6,-3],[-3,-7],[-2,-9],[-4,-6],[-6,0],[-4,-1],[-9,-3],[-6,-4],[-3,-8],[-1,-7],[0,-17],[-1,-10],[-1,-2],[-2,-8],[-1,-3],[-1,-18],[-2,-18],[-4,-14],[-1,-13],[3,-16],[7,-13],[1,-5],[-1,-10],[0,-4],[1,-8],[2,-8],[2,-7],[3,-6],[3,-5],[8,-7],[3,-5],[2,-7],[0,-14],[2,-7],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-2],[1,-2],[1,-2],[0,-1],[0,-2],[-1,-1],[0,-3],[-1,-3],[0,-3],[4,-11],[5,-28],[3,-11],[3,-6],[10,-7],[2,-3],[4,-8],[2,-3],[3,-1],[6,1],[3,-2],[2,-3],[3,-10],[1,-1],[1,-3],[3,-2],[5,1],[3,-1],[4,-3],[2,-1],[2,-3],[20,-31],[4,-8],[1,-5],[0,-11],[1,-4],[2,-4],[7,-11],[7,-16],[4,-6],[5,-4],[14,-5],[4,-3],[1,-7],[0,-8],[-3,-19],[-5,-20],[-6,-13],[-2,-3],[-5,-4],[-2,-3],[-1,-4],[-2,-11],[-2,-4],[-11,-18],[-4,-8],[-4,-2],[-8,-3],[-3,-3],[-2,-5],[-1,-8],[-5,-28],[-2,-7],[0,-1],[-4,-6],[-8,-6],[-8,-3],[-21,9],[-8,-2],[-4,-4],[-1,-3],[-2,-2],[-5,1],[-4,0],[-2,-3],[-5,-11],[-3,-4],[-7,-6],[-2,-3],[-2,-4],[-1,-2],[0,-3],[1,-2],[6,-25],[4,-9],[4,-5],[1,-2],[0,-2],[0,-2],[-1,-1],[-3,-6],[-8,-22],[2,-8],[-1,-14],[-1,-7],[-3,-23],[-1,-12],[1,-1],[14,-21],[9,-10],[3,-7],[2,-8],[2,-9],[-1,-12],[-4,-22],[-3,-10],[-3,-3],[-4,-1],[-4,-3],[-4,-9],[-5,-22],[-4,-8],[-5,-3],[-11,0],[-6,-5]],[[55651,75833],[3,23],[-1,14],[-4,10],[-17,13],[-15,17],[-8,5],[-15,3],[-3,1],[-4,2],[-16,26],[-1,1],[-9,15],[-17,18],[-3,5],[-2,6],[-2,6],[-2,4],[-3,2],[-3,-2],[-6,-10],[-3,-4],[-10,-1],[-9,1],[-7,4],[-5,7],[-5,11],[-9,23],[-2,0],[-2,-3],[-4,-2],[-6,1],[-12,6],[-6,4],[-4,7],[-9,18],[-1,0],[-9,13],[-3,7],[-5,17],[-3,8],[-17,26],[-11,27],[-5,6],[-38,26],[-7,10],[-5,16],[0,17],[5,13]],[[55331,76250],[7,0],[3,10],[3,14],[3,9],[3,2],[8,-2],[3,0],[3,3],[7,8],[2,1],[5,-4],[5,-9],[4,-12],[2,-10],[2,-5],[3,5],[3,13],[4,1],[10,-7],[2,2],[1,3],[-1,2],[-2,3],[-1,7],[-1,8],[1,8],[1,7],[7,11],[0,16],[-7,33],[-6,19],[-28,48],[-15,37],[-8,17],[-10,11],[-3,3],[3,5],[1,4],[-2,7],[0,5],[2,5],[2,4],[6,2],[4,1],[4,-2],[7,-8],[7,-10],[4,-4],[4,1],[4,2],[14,1],[16,-2],[7,1],[7,3],[11,13],[5,9],[2,9],[-2,11],[-3,5],[-3,-1],[-2,-4],[-1,-1],[-2,3],[-5,8],[-9,8],[-1,4],[-5,11],[-5,7],[-1,3],[-1,11],[-2,5],[-2,0],[-3,-5],[-2,-1],[-2,2],[-3,4],[-12,14],[-5,8],[-2,8],[0,12],[-4,13],[-5,10],[-4,6],[-4,1],[-9,-3],[-3,0],[-3,2],[-6,4],[-12,4],[-5,4],[-5,9],[-6,21],[-3,11],[0,12],[2,12],[4,8],[4,8],[0,16],[-4,27],[0,9],[10,5],[2,3],[2,4],[2,5],[0,4],[0,9],[1,4],[1,3],[3,3],[1,2],[13,33],[4,18],[2,6],[3,5],[6,7],[3,6],[2,11],[10,71],[1,3],[2,1],[1,1],[0,6],[-1,5],[-1,3],[-2,3],[-2,3],[-1,2],[0,-1],[0,-1],[-3,0],[-3,1],[-6,8],[-2,0],[-2,-1],[-3,-1],[-12,4],[-3,-1],[-5,-3],[-3,0],[-1,3],[-1,5],[-2,3],[-3,-1],[-25,-27],[-5,-3],[-6,-1],[-8,-4]],[[55282,77040],[-6,17],[-1,12],[7,6],[4,-1],[6,-10],[4,-1],[3,4],[3,5],[4,11],[3,2],[3,2],[2,5],[-1,9],[-3,4],[-6,-3],[-3,4],[0,6],[1,7],[1,7],[1,6],[-1,6],[-2,17],[-1,15],[-1,5],[-2,8],[-2,4],[-3,4],[-2,4],[0,6],[4,5],[15,-2],[6,2],[2,9],[-4,12],[-2,8],[6,2],[3,-2],[6,-12],[3,-4],[5,-3],[6,-1],[12,3],[1,1],[1,3],[1,2],[2,2],[1,-1],[2,-6],[2,-1],[24,2],[1,1],[3,5],[1,14],[-3,12],[-6,3],[-4,11],[-56,22],[-10,8],[-7,13],[-1,5],[0,7],[-1,6],[-3,2],[-11,0],[-6,2],[-5,5],[-4,8],[-3,9],[14,10],[3,6],[-2,7],[-5,9],[-3,4],[-2,11],[4,15],[2,-1],[17,-4],[8,12],[-3,9],[-4,3],[-4,1],[-5,3],[-2,4],[-2,3],[0,3],[-2,5],[-3,2],[-2,-1],[-3,-2],[-4,-4],[-3,-5],[-4,-4],[-5,-1],[-3,4],[-5,14],[-3,3],[1,5],[1,11],[1,11],[3,5],[3,3],[8,16],[1,5],[-1,9],[-4,5],[-5,4],[-4,5],[-2,7],[-1,18],[-2,9],[-8,15],[-2,5],[-4,7],[-1,3],[1,3],[1,2],[0,4],[1,16],[9,1],[3,1],[2,4],[0,5],[-3,5],[-6,6],[2,5],[3,3],[4,5],[-1,9]],[[46593,59220],[5,-5],[6,-2],[6,1],[12,9],[6,2],[4,-4],[12,-22],[3,-3],[2,7],[1,9],[2,3],[6,-3],[5,0],[6,4],[4,7],[7,18],[4,7],[11,5],[5,6],[4,7],[3,8],[1,6],[1,4],[2,3],[0,3],[2,1],[2,1],[1,2],[0,3],[-2,6],[-1,3],[0,3],[2,22],[1,10],[2,9],[0,1],[1,10],[-1,9],[-2,6],[-3,6],[-2,0],[-2,-3],[-1,-1],[-3,4],[0,3],[1,18],[3,24],[0,6],[0,8],[-1,6],[1,12],[5,32],[2,28],[1,9],[9,42],[5,42],[3,19],[7,16],[1,6],[0,20],[7,-2],[1,0],[8,-5],[7,-1],[8,8],[10,22],[5,6],[7,4],[3,3],[3,6],[0,3],[1,3],[-1,3],[0,3],[-1,2],[-1,1],[-1,2],[-1,2],[1,1],[3,1],[16,-7],[6,-6],[7,-12],[26,-78],[5,-12],[70,-107],[9,-18],[8,-31],[10,-21],[10,-29],[2,10],[4,34],[3,9],[7,15],[3,10],[3,22],[2,9],[4,9],[3,3],[3,0],[3,1],[3,9],[4,5],[2,5],[3,12],[-1,25],[1,11],[3,6],[5,1],[17,-5],[11,-1],[6,2],[10,7],[4,1],[6,-2],[4,2],[28,-1],[8,-3],[13,2],[4,-1],[24,-20],[2,0],[5,2],[2,0],[6,-6],[10,-13],[7,-4],[11,-1],[32,10],[32,-6],[11,5],[16,19],[5,5],[14,6],[69,6],[-4,33],[-4,37],[0,17],[4,16],[17,42],[6,7],[6,-6],[1,-19],[-4,-41],[-1,-54],[48,0],[9,0],[34,0],[5,0],[25,0],[19,0],[21,0],[22,0],[24,0],[37,0],[39,0],[42,0],[44,0],[46,0],[46,0],[47,0],[48,0],[48,0],[47,0],[46,0],[46,0],[44,0],[42,0],[12,0],[27,0],[37,0],[22,0],[20,0],[19,0],[17,0],[38,0],[43,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,2],[0,3],[0,1],[0,2],[1,3],[5,58],[5,57],[5,58],[6,57],[5,56],[5,56],[5,56],[5,56],[1,18],[0,4],[0,3],[-1,3],[-2,3],[-11,16],[-11,16],[-11,16],[-13,18],[-10,14],[-11,16],[-2,9],[-3,10],[-1,24],[-2,53],[-3,53],[-3,54],[-3,53],[-3,54],[-2,53],[-3,54],[-3,53],[-3,53],[-2,54],[-3,53],[-3,54],[-3,53],[-2,54],[-3,53],[-3,53],[-3,55],[-2,55],[-3,55],[-3,55],[-3,55],[-3,55],[-3,55],[-2,55],[-3,55],[-3,55],[-3,55],[-3,55],[-1,34],[-2,35],[-2,34],[-2,35],[-4,81],[-4,74],[-4,74],[-4,74],[-4,74],[-4,74],[-4,74],[-4,74],[-4,74],[-3,64],[-2,35],[-5,76],[-4,77],[-2,34],[-4,72],[-3,71],[-4,72],[-4,71],[-4,72],[-4,71],[-4,71],[-4,72],[-4,71],[-4,72],[-4,71],[-4,72],[-4,71],[-4,72],[-3,71],[-4,72],[-4,71],[-3,56],[-1,16],[-4,71],[-4,72],[-4,71],[-4,71],[-4,72],[-4,71],[-2,37],[-4,81],[-5,80],[-2,37],[0,3],[-2,48],[-3,47],[-3,48],[-2,47],[-3,47],[-3,47],[-3,47],[-2,47],[-3,48],[62,0],[61,0],[62,0],[61,0],[62,0],[61,0],[62,0],[61,0]],[[48660,65272],[21,-28],[22,-29],[21,-28],[21,-28],[31,-43],[22,-31],[22,-31],[22,-31],[22,-31],[23,-30],[22,-31],[22,-31],[22,-31],[22,-31],[22,-31],[22,-31],[23,-30],[22,-31],[22,-31],[22,-31],[22,-31],[24,-33],[24,-34],[24,-33],[24,-34],[24,-34],[25,-33],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-33],[25,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-34],[25,-33],[24,-34],[4,-5],[20,-28],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-33],[24,-34],[24,-34],[24,-33],[24,-34],[24,-33],[33,-46],[4,-12],[5,-38],[0,-13],[-3,-64],[-6,-54],[-1,-11],[1,-15],[2,-8],[4,-3],[6,-1],[6,0],[11,5],[6,0],[7,-4],[4,-6],[5,-21],[5,-11],[4,-7],[12,-7],[12,-4],[5,-3],[5,-6],[10,-4],[11,-11],[18,-28],[5,-17],[2,-21],[0,-44],[2,-9],[33,-55],[6,-5],[6,-1],[5,1],[5,0],[4,-7],[3,-12],[1,-11],[2,-8],[6,0],[3,3],[5,9],[4,2],[3,-1],[2,-3],[2,-4],[3,-3],[18,-13],[4,-1],[7,7],[11,21],[7,9],[6,2],[5,-3],[5,-6],[17,-27],[10,-22],[9,-26],[11,-41],[3,-7],[5,-3],[6,-3],[6,-4],[10,-11],[5,-3],[3,0],[25,-10],[16,-1],[76,-33],[35,-31],[16,-26],[5,-4],[10,-6],[4,-4],[4,-8],[1,-8],[-5,-119],[0,-23],[4,-22],[1,-4],[2,-1],[1,-3],[1,-5],[0,-4],[-1,-11],[0,-6],[2,-11],[4,-9],[3,-9],[0,-13],[-2,-14],[-6,-8],[-5,-6],[-6,-9],[-2,-11],[-1,-23],[-2,-10],[-6,-13],[-3,-5],[-2,-5],[-2,-12],[-4,-13],[-3,-10],[1,-11],[4,-13],[5,-10],[6,-9],[6,-7],[13,-11],[16,-33],[6,-8],[3,-2],[4,-2],[7,1],[23,11],[29,12],[48,19],[20,8],[27,10],[48,19],[47,19]],[[51174,61806],[0,-73],[0,-73],[0,-74],[1,-73],[0,-1],[0,-72],[0,-73],[0,-74],[0,-73],[0,-73],[0,-32],[0,-41],[0,-74],[0,-73],[1,-73],[0,-73],[0,-73],[0,-74],[0,-37],[0,-62],[-4,-6],[-3,0],[-2,-2],[-1,-10],[-1,-11],[2,-58],[-2,-6],[-3,-12],[-1,-5],[0,-38],[0,-79],[1,-51],[0,-66],[-3,-13],[-3,-8],[-13,-13],[-6,-10],[-5,-12],[-5,-13],[-24,-126],[-2,-16],[2,-17],[3,-17],[0,-1],[0,-1],[0,-1],[0,-4],[0,-2],[0,-1],[-16,-34],[-4,-13],[-2,-11],[-3,-58],[-2,-23],[-3,-17],[-1,-4],[-7,-17],[-11,-12],[-22,-9],[-10,-11],[-22,-50],[-24,-30],[-3,-16],[-2,-68],[-5,2],[-2,1],[-29,10],[-52,18],[-33,12],[-11,-1],[-4,-2],[-2,-3],[-1,-6],[-1,-11],[0,-21],[-1,-8],[-14,-1],[-27,-2],[-27,-2],[-26,-2],[-27,-2],[-27,-2],[-27,-2],[-27,-2],[-27,-1],[-26,-2],[-27,-2],[-27,-2],[-27,-2],[-27,-2],[-27,-2],[-26,-2],[-27,-2],[-21,-1],[-9,-5],[-7,-9],[-19,-36],[-23,-43],[-18,-35],[-23,-45],[-7,-7],[-7,-4],[-43,-2],[-8,-7],[-8,-6],[-8,-4],[-3,-1],[-43,32],[-9,-1],[-18,-13],[-9,-4],[-9,0],[-37,19],[-2,-6],[0,-14],[1,-30]],[[50060,59300],[-70,50],[-37,32],[-19,10],[-18,-7],[-17,-22],[-10,-9],[-8,0],[-2,8],[-7,36],[-2,2],[-9,0],[-61,-1],[-10,-5],[-5,-8],[-3,-4],[-15,-31],[-57,-106],[-10,-13],[-11,-9],[-53,-27],[-12,-12],[-96,-130],[-19,-7],[-20,-2],[-23,3],[-13,-1],[-8,-8],[-2,-15],[-6,-146],[-1,-6],[-2,-4],[-14,-13],[-5,-5],[-4,-1],[-9,4],[-65,64],[-21,10],[-15,-8],[-23,-27],[-6,-11],[-16,-36],[-5,-11],[-41,-48],[-7,-25],[2,1],[0,-1],[1,-2],[0,-1],[-11,-76],[-4,-17],[-5,-23],[1,-32],[8,-56],[-10,-7],[-9,-8],[-2,-1],[-2,2],[-2,3],[-2,2],[-7,1],[-2,-1],[-4,-4],[-4,-11],[-4,-2],[-2,9],[0,9],[-2,5],[-5,10],[-7,9],[-5,-1],[-6,-3],[-8,2],[-13,20],[-7,5],[-6,-11],[6,-9],[2,-15],[-1,-33],[-2,-14],[-4,-21],[10,-148],[-4,-5],[-45,-6],[-6,-5],[-1,-17],[3,-20],[0,-11],[-3,-10],[-3,-1],[-3,1],[-12,3],[-6,0],[-2,1],[-3,3],[-4,10],[-2,1],[-4,-1],[-2,2],[-22,36],[-13,17],[-21,34],[-5,5],[-11,6],[-10,8],[-4,2],[-6,-1],[-5,0],[-7,4],[-3,5],[3,7],[3,3],[5,11],[2,2],[3,1],[2,2],[0,7],[-1,1],[-7,3],[-2,2],[-1,4],[-2,11],[0,1],[-1,4],[-1,2],[-1,1],[-1,-1],[-1,-2],[-4,-9],[2,-3],[3,0],[2,-3],[-1,-6],[-4,-7],[-4,-5],[-3,-2],[-3,-3],[-5,-10],[-2,-3],[-8,-4],[-2,-3],[-5,-9],[-2,-11],[-5,-24],[-4,-14],[-6,-13],[-3,-3],[-2,0],[-3,1],[-3,-1],[-4,-6],[-5,-9],[-4,-11],[-1,-9],[2,-5],[6,-7],[0,-5],[-2,-6],[-3,-1],[-18,1],[-4,-4],[-4,-19],[-2,-5],[-1,-5],[0,-8],[1,-5],[9,-16],[7,-34],[3,-10],[9,-14],[5,-14],[2,-16],[-1,-34],[4,-27],[-1,-7],[-6,-38],[-2,-7],[-1,-1],[-3,-5],[-5,-4],[-6,-1],[-4,2],[-8,10],[-8,4],[-9,-2],[-10,-4],[-8,-7],[-3,-1],[-1,1],[-1,-2],[-2,-30],[2,-10],[12,-20],[5,-9],[6,-28],[2,-7],[2,-3],[0,-2],[-2,-8],[-4,-11],[-5,-11],[-5,-12],[-2,-14],[10,-50],[3,-26],[-9,-3],[-2,4],[-2,7],[-3,5],[-4,-1],[-3,-4],[-1,-4],[0,-5],[-1,-9],[1,-7],[-1,-3],[-1,-3],[-24,-42],[7,-28],[-3,-6],[-8,-1],[-10,-12],[-3,-12],[-1,-9],[-1,-6],[0,-2],[-6,-5],[-3,-1],[-5,2],[-3,-2],[-3,-5],[-2,-8],[-2,-7],[-2,-6],[-4,-5],[-8,-3],[-5,-3],[-5,10],[-6,0],[-12,-9],[-6,0],[-6,3],[-6,1],[-6,-5],[-2,-5],[-3,-3],[-3,-1],[-3,0],[-5,-1],[-11,1],[-4,-1],[-4,-4],[-9,-12],[-9,-5],[-4,-8],[-8,-17],[-10,-18],[-6,-17],[-2,-3],[-2,-1],[-1,2],[-2,2],[-2,2],[-2,0],[-1,-2],[-1,-2],[-1,-1],[-10,-3],[-1,-2],[-2,-4],[-1,-1],[-2,1],[-3,5],[-1,1],[-4,-1],[-2,-1],[0,-3],[2,-7],[1,-1],[8,-9],[1,-2],[4,2],[3,-1],[3,-2],[5,-5],[5,-5],[3,-9],[2,-11],[0,-11],[0,-13],[-3,-23],[-1,-6],[-2,-6],[-2,-6],[0,-7],[2,-7],[3,-1],[3,1],[3,-1],[10,-17],[2,-21],[0,-49],[2,-13],[0,-8],[-2,-5],[-6,-6],[-5,-8],[-1,-11],[2,-61],[0,-10],[-4,-12],[-9,-19],[-2,-14],[-2,-24],[-3,-8],[-6,-9],[-5,-4],[-5,-3],[-27,-7],[-4,-6],[-1,-9],[0,-6],[3,-30],[-2,-16],[7,4],[3,-17],[5,-41],[4,-13],[1,-7],[-4,-34],[0,-5],[0,-6],[-2,-3],[-2,-2],[-2,-4],[-2,-9],[-2,-32],[0,-5],[1,-10],[0,-5],[5,-3],[-3,-6],[-2,-9],[0,-9],[2,-4],[1,-6],[-4,-31],[-7,-22],[-1,-4],[-2,-31],[-2,-8]],[[46836,57815],[1,16],[1,16],[1,14],[-3,10],[-1,-3],[-2,-8],[-1,6],[-2,9],[0,5],[-2,10],[-2,-2],[-2,-6],[1,-5],[-3,4],[-3,12],[-2,3],[-3,2],[2,4],[6,5],[0,7],[0,5],[-1,4],[0,6],[2,19],[0,6],[-2,6],[-2,3],[-2,2],[-1,1],[0,9],[1,4],[3,3],[2,16],[4,2],[4,2],[2,8],[0,5],[-3,11],[0,3],[2,4],[0,7],[0,7],[0,6],[-1,5],[-2,4],[-1,3],[-1,1],[-1,0],[-1,1],[0,4],[1,3],[0,3],[1,2],[-1,10],[1,6],[1,6],[2,6],[-1,3],[-2,3],[-1,4],[0,3],[2,2],[2,-1],[2,-2],[1,0],[2,4],[2,2],[1,4],[0,15],[-1,7],[-1,6],[-3,5],[0,-10],[-2,-7],[-4,-3],[-4,2],[1,6],[1,12],[0,5],[0,2],[2,3],[0,2],[-2,2],[-1,2],[-1,4],[-2,7],[-4,12],[1,3],[2,5],[0,4],[-3,2],[-5,3],[-3,4],[-3,5],[-4,5],[-5,3],[-1,9],[-1,21],[-2,8],[-4,6],[-2,7],[-1,11],[1,6],[4,11],[0,7],[-1,5],[-6,12],[-7,20],[-2,11],[0,13],[-2,-2],[-4,-2],[-3,1],[-1,6],[1,8],[-2,3],[-7,-1],[-5,-2],[-3,1],[-2,4],[-2,6],[-2,5],[-4,1],[-4,-5],[-3,-10],[-2,-12],[0,-11],[-12,-19],[-2,-3],[-1,0],[-3,6],[-2,4],[-1,12],[-1,4],[-3,3],[-7,8],[-2,1],[-1,7],[4,32],[1,10],[-2,7],[-3,2],[-2,1],[-3,3],[-2,3],[-2,9],[-2,4],[-16,25],[-5,12],[-6,20],[-4,21],[-5,23],[-4,12],[-4,7],[24,27],[9,20],[5,27],[1,24],[0,12],[-1,11],[-5,12],[-6,8],[-4,10],[-3,15],[0,25],[6,45],[2,24],[0,13],[-10,50],[-3,9],[-4,5],[-11,8],[-3,6],[-3,8],[-2,8],[4,3],[1,7],[-2,8],[-26,20],[-3,1],[0,26],[-1,12],[-3,26],[0,12],[1,11],[5,6],[2,4],[1,6],[1,8],[0,6],[2,6],[6,11],[1,5],[0,10],[-2,3],[-3,2],[-2,3],[0,7],[0,4],[2,4],[1,7],[-3,0],[-4,2],[-5,4],[-2,7],[-2,8],[-5,10],[-2,18]],[[46186,57975],[-98,1],[-73,1],[-26,0],[-98,1],[-23,0],[-76,0],[-13,1],[-8,-3],[-7,-7],[-17,-24],[-17,-16],[-14,-23],[-1,-1],[-70,-69],[-10,-4],[-48,6],[-2,0],[-22,-3],[-6,2],[-17,12],[-10,2],[-21,-7],[-2,-2],[-1,-2],[-1,-1],[-3,1],[-6,5],[-3,1],[-3,-2],[-19,-21],[-22,-25],[-8,-8],[-14,0],[-15,-7],[-5,-1],[-38,5],[-10,-5],[-6,-9]],[[45353,57773],[-2,8],[-1,7],[-2,13],[-1,4],[-5,6],[-6,13],[-3,7],[-1,8],[0,25],[1,5],[2,5],[1,6],[2,6],[14,17],[6,1],[9,-2],[9,12],[3,5],[1,5],[2,5],[1,6],[11,16],[5,-12],[4,-23],[4,-5],[0,9],[3,7],[5,3],[5,-2],[10,-11],[8,-5],[9,-9],[5,-1],[6,6],[6,17],[5,5],[7,0],[5,-4],[6,-2],[6,9],[3,2],[2,-5],[2,-7],[2,-5],[21,17],[5,3],[7,1],[4,2],[4,6],[4,4],[6,0],[5,-6],[7,-12],[5,-7],[2,-6],[3,-1],[18,-1],[2,-2],[3,-8],[2,-2],[2,1],[7,4],[3,4],[3,7],[4,5],[6,-5],[2,3],[1,1],[2,1],[4,-6],[2,0],[1,2],[2,-1],[2,-5],[2,-10],[1,-5],[2,-3],[2,-3],[2,-1],[4,-1],[3,2],[13,11],[5,11],[8,23],[3,5],[3,3],[2,4],[1,8],[-2,4],[-3,2],[-1,4],[2,4],[-3,14],[-2,18],[-1,18],[2,15],[4,4],[3,0],[5,0],[3,0],[4,4],[3,4],[2,6],[1,7],[6,-12],[5,-3],[3,6],[1,17],[-4,-10],[-4,1],[-4,3],[-5,2],[-4,-4],[-7,-11],[-5,-2],[-3,0],[-4,-1],[-4,-4],[-1,-9],[0,-34],[3,-23],[0,-6],[0,-9],[0,-5],[-1,-4],[-6,-12],[-3,-6],[-14,-27],[-3,-4],[-3,-1],[-3,3],[-3,4],[2,18],[-9,8],[-19,7],[-14,-18],[-5,-3],[-1,2],[-1,4],[-2,5],[-3,2],[-4,-2],[-4,-5],[-4,-2],[-3,2],[-4,5],[-7,10],[0,3],[0,4],[0,3],[-1,2],[-3,1],[-2,1],[-2,2],[-1,5],[-4,15],[-1,2],[-1,1],[-2,3],[-1,12],[-1,7],[-2,0],[0,-4],[0,-3],[-3,-12],[-1,-4],[-1,-20],[-8,-10],[-12,-4],[-3,-3],[-5,-8],[-2,-1],[-3,0],[-7,4],[-10,0],[-3,-2],[-6,-5],[-3,-1],[-3,0],[-9,4],[-3,-2],[-4,-5],[-2,-2],[-1,-2],[-2,-7],[-1,-6],[-3,-4],[-11,7],[-10,11],[-4,8],[-2,8],[-1,1],[-2,2],[-3,2],[-1,5],[0,6],[2,5],[3,4],[2,1],[0,4],[-4,0],[-3,5],[-1,7],[-1,8],[-2,-48],[-2,0],[-4,10],[-10,18],[-1,12],[-4,-5],[-2,-7],[-2,-6],[-5,-2],[-3,2],[-2,4],[-1,6],[0,8],[4,15],[5,12],[4,14],[-2,20],[-1,-16],[-1,-4],[-1,-5],[-1,-3],[-2,-2],[-5,-10],[-3,-6],[-1,-8],[0,-13],[2,-21],[-1,-9],[-8,-8],[-12,-21],[-10,-7],[-5,6],[-2,16],[0,20],[1,21],[5,21],[7,11],[10,-6],[0,8],[-4,7],[-6,2],[-5,-3],[-5,-15],[-4,-5],[-3,2],[2,5],[0,5],[0,5],[-2,5],[6,17],[1,9],[-1,10],[-2,0],[-2,-6],[-1,-3],[-2,2],[-1,9],[1,7],[1,8],[10,31],[1,7],[0,8],[-1,14],[-1,7],[1,12],[3,25],[0,15],[0,10],[-1,5]],[[45346,58207],[0,14],[1,6],[2,5],[4,9],[1,6],[4,14],[10,5],[12,0],[46,-1],[42,-1],[62,-1],[36,-1],[18,0],[7,0],[10,-1],[2,3],[1,42],[0,10],[0,42],[1,8],[4,4],[19,4],[13,8],[3,0],[19,-4],[4,1],[9,6],[6,7],[7,5],[8,0],[31,-14],[10,0],[9,4],[9,7],[8,11],[6,15],[1,17],[1,36],[4,13],[7,14],[5,13],[7,5],[7,-11],[13,-24],[14,-21],[18,-19],[9,-5],[11,-2],[4,-3],[9,-12],[5,-3],[6,-2],[3,-4],[6,-17],[7,-14],[10,-8],[10,-3],[10,3],[9,5],[3,-3],[8,-15],[3,-5],[4,-5],[4,-2],[8,-1],[4,-2],[3,-7],[2,-6],[3,-5],[3,-4],[10,-11],[7,-4],[8,-1],[16,3],[15,-6],[8,0],[6,7],[13,21],[4,4],[5,-1],[12,9],[11,1],[11,6],[21,4],[14,12],[8,25],[1,31],[-7,28],[-2,5],[-7,7],[-2,4],[0,1],[-2,5],[-2,11],[-1,5],[-5,8],[-6,7],[-7,5],[-6,2],[-4,-1],[-6,-7],[-3,-3],[-3,-1],[-5,1],[-3,0],[-5,-3],[-13,-14],[-16,-7],[-5,-5],[-16,-20],[-16,-12],[-5,-3],[-5,2],[-7,6],[-20,30],[-2,4],[-3,6],[-2,8],[-3,26],[-3,11],[-4,10],[-5,9],[-12,12],[-11,1],[-12,-6],[-17,-20],[-3,-2],[-4,3],[-11,14],[-2,5],[-6,38],[-2,11],[-4,10],[-4,8],[-6,9],[-10,7],[-28,2],[-16,13],[-6,1],[-21,-15],[-20,-28],[-6,-3],[-3,3],[-5,15],[-3,5],[-12,5],[-13,-11],[-11,-18],[-9,-19],[-3,-10],[-3,-13],[-2,-13],[0,-4],[-1,-8],[-1,-23],[-4,-3],[-14,0],[-17,0],[-17,0],[-17,0],[-18,0],[-17,1],[-17,0],[-17,0],[-18,0],[-6,0],[-11,0],[-17,0],[-17,0],[-18,0],[-17,1],[-17,0],[-17,0],[-18,0]],[[45399,58516],[-3,9],[-1,6],[0,17],[5,9],[7,7],[7,12],[-2,2],[-2,4],[-2,2],[4,7],[2,9],[0,7],[-6,1],[1,-9],[-2,-12],[-2,-8],[-4,1],[-2,-13],[-5,-8],[-5,-3],[-6,3],[-4,11],[-2,11],[3,23],[0,15],[1,6],[2,8],[10,24],[2,8],[2,-2],[4,-4],[2,-2],[-1,2],[-1,10],[9,4],[1,-12],[2,-11],[3,-7],[4,2],[-2,13],[-1,15],[-1,12],[-4,4],[1,8],[6,56],[1,9],[-6,-18],[-3,-12],[-2,-24],[-3,-15],[-4,-10],[-3,2],[-2,0],[-3,-8],[-5,-3],[-6,-1],[-5,-4],[-3,-5],[-1,-5],[-1,-5],[-1,-5],[-1,-3],[-4,-4],[-1,-3],[-3,-11],[-2,-4],[-3,3],[-1,5],[0,8],[-1,6],[-2,3],[-4,5],[-1,12],[0,12],[2,7],[-2,9],[-1,9],[-1,19],[1,10],[1,6],[1,4],[7,10],[3,3],[4,0],[8,-2],[4,-2],[2,-5],[0,-8],[4,7],[3,9],[4,5],[6,-5],[0,13],[2,6],[4,4],[3,6],[-3,-3],[-4,-1],[-3,1],[-3,6],[13,17],[4,8],[7,19],[4,7],[9,5],[4,11],[4,3],[2,-2],[2,-5],[3,-2],[2,3],[2,2],[5,5],[2,3],[-18,1],[-7,6],[0,13],[-4,-5],[-2,-8],[1,-9],[3,-6],[-3,-4],[-3,0],[-3,3],[-3,1],[-2,-2],[-1,-4],[-1,-6],[-1,-5],[-7,-26],[-2,-6],[-3,-3],[-6,-3],[-4,-4],[-2,-7],[-4,-14],[-2,-5],[-7,-5],[-6,3],[-6,4],[-6,1],[6,25],[1,4],[4,3],[8,18],[-4,-3],[-3,-11],[-3,-3],[-7,0],[-2,-2],[-2,-2],[3,-8],[0,-5],[-5,-12],[-1,-4],[0,-9],[-2,-5],[-5,-13],[-1,-5],[-2,-17],[2,-56],[-2,0],[-2,114],[-1,17],[-5,29],[-5,21],[-2,6],[-4,3],[-7,4],[-3,5],[-1,9],[-3,32],[-2,10],[-2,7],[-5,11],[-2,3],[-2,1],[-2,2],[0,8],[0,6],[2,12],[0,6],[-1,10],[-4,11],[-8,18],[-20,19],[-3,7],[-2,8],[-10,31],[-7,40],[-11,32],[-8,16],[-5,7],[-5,5],[-6,2],[-5,3],[-12,12],[-1,5],[-10,-1],[-8,3],[-7,-1],[-6,-10],[2,-5],[4,-2],[-2,-9],[-4,-4],[1,-1],[2,-5],[1,-2],[-2,-8],[-1,-1],[-1,-3],[-3,5],[-19,48],[-5,8],[46,26],[14,23],[41,36],[10,16],[44,109],[9,27],[19,45],[39,142],[19,53],[36,125],[2,6],[-1,6],[-2,9]],[[45404,59832],[7,22],[2,33],[1,64],[2,7],[4,26],[4,24],[2,40],[2,12],[4,7],[10,5],[4,6],[2,6],[1,7],[12,100],[1,24],[2,11],[4,11],[5,10],[6,8],[6,3],[10,-4],[3,-1],[3,2],[3,2],[8,12],[3,3],[3,2],[4,-2],[2,-3],[2,-4],[4,-11],[5,-10],[5,-5],[6,-2],[7,2],[2,3],[2,2],[2,1],[2,-1],[4,-3],[2,-1],[2,1],[11,10],[4,1],[9,-5],[3,0],[7,3],[4,-1],[13,-8],[9,-1],[2,-2],[7,-6],[4,-2],[4,0],[4,3],[4,5],[6,12],[4,4],[4,1],[12,-5],[4,1],[3,3],[3,6],[7,19],[3,7],[4,3],[4,0],[3,-5],[1,-6],[2,-5],[4,-3],[4,0],[4,2],[11,10],[5,2],[9,0],[13,-4],[4,1],[30,9],[6,5],[2,2],[1,4],[0,4],[-1,4],[-4,9],[-2,8],[1,7],[2,6],[4,2],[4,-2],[2,-6],[3,-7],[3,-5],[2,-2],[2,1],[2,1],[1,3],[2,4],[0,4],[1,8],[2,5],[3,4],[6,6],[3,-4],[4,-8],[0,-1],[2,-8],[3,-8],[5,-2],[9,5],[47,-7],[3,0],[10,5],[2,1],[3,-2],[8,-7],[3,-2],[3,1],[11,6],[3,1],[12,-5],[3,0],[3,0],[3,2],[2,3],[8,9],[2,2],[6,0],[17,-14],[2,-3],[2,-4],[-1,-7],[-1,-11],[1,-5],[2,-2],[11,2],[2,-3],[1,-4],[1,-11],[1,-4],[3,-3],[7,-1],[3,-1],[2,-3],[5,-13],[2,-4],[6,-9],[10,-23],[16,-31],[10,-11],[1,-3],[5,-12],[3,-3],[5,-5],[3,-3],[1,-4],[1,-4],[-2,-9],[-1,-5],[1,-4],[3,-7],[1,-6],[0,-5],[-1,-10],[1,-10],[4,-5],[11,-7],[3,-2],[4,-7],[2,-4],[1,-5],[2,-16],[2,-6],[2,-5],[2,-4],[2,-3],[3,-2],[2,1],[2,1],[5,6],[4,7],[2,4],[5,15],[2,4],[2,3],[3,1],[2,1],[3,-1],[-1,-8],[-1,-10],[-1,-7],[1,-7],[1,-1],[3,-3],[1,-1],[0,-2],[1,-2],[1,-1],[1,-2],[1,-1],[2,-3],[1,-1],[2,0],[1,1],[8,8],[2,1],[5,0],[1,0],[2,1],[8,8],[15,6],[4,4],[1,1],[2,0],[2,-1],[0,-8],[-4,-18],[-1,-10],[3,-4],[10,9],[4,-1],[2,-3],[2,-8],[1,-3],[8,-11],[1,-4],[1,-5],[0,-10],[1,-5],[4,-19],[1,-7],[3,-5],[2,-6],[7,-11],[2,-4],[0,-5],[0,-5],[-1,-10],[0,-5],[1,-4],[1,-3],[5,-13],[2,-9],[2,-10],[0,-11],[-1,-5],[-1,-5],[0,-5],[0,-5],[1,-4],[2,-4],[5,-5],[2,-3],[2,-4],[3,-10],[1,-5],[0,-4],[0,-5],[-4,-13],[-1,-5],[-1,-5],[1,-5],[2,-15],[5,0],[8,3],[4,0],[2,-2],[5,-7],[2,-2],[6,-4],[4,-4],[3,-6],[2,-7],[1,-8],[-2,-22],[0,-5],[1,-5],[1,-6],[1,-2],[9,-5],[4,1],[4,6],[3,6],[5,4],[4,2],[4,-5],[2,-4],[1,-5],[1,-16],[1,-5],[3,-7],[1,-5],[1,-4],[0,-20],[1,-10],[2,-9],[3,-7],[17,-24],[3,-7],[2,-10],[-1,-8],[-5,-2],[-9,2],[-3,-4],[1,-8],[7,-13],[2,-4],[3,-1],[2,-1],[6,3],[3,0],[3,-2],[3,-3],[1,-4],[1,-5],[0,-5],[-2,-15],[0,-4],[1,-6],[1,-1],[7,-5],[2,-4],[8,-17],[7,-6],[1,0],[3,0],[8,6],[5,1],[2,-2],[2,-4],[4,-9],[15,-19],[5,-8],[3,-3],[7,-3],[3,-4],[2,-6],[1,-5],[7,-48],[0,-6],[4,-5],[9,-23],[5,-8],[17,-17],[16,-25]],[[50998,57396],[15,18],[3,7],[2,13],[-1,12],[-4,11],[-6,14],[-1,2],[-1,2],[-2,6],[-1,6],[-1,33],[1,10],[3,9],[5,10],[4,19],[-1,21],[-7,43],[0,26],[8,78],[-3,147],[1,6],[61,96],[18,36],[44,145],[9,127],[1,14],[1,142],[18,1],[8,3],[8,8],[43,87],[13,19],[15,13],[33,17],[56,28],[9,2],[6,-6],[6,-13],[7,-5],[16,-2],[28,10],[40,-4],[9,4],[3,3],[9,13],[4,9],[4,22],[4,9],[7,8],[41,15],[9,-4],[79,-65],[79,-65],[2,-3],[2,-3],[2,-2],[3,2],[16,18],[5,3],[15,-7],[5,-2],[19,-23],[39,-77],[45,-103],[23,-87],[6,-26],[17,-40],[10,-19],[9,-14],[8,-7],[10,-2],[20,0],[5,2],[2,0],[6,6],[13,24],[17,42],[6,2],[29,-11],[10,0],[9,6],[101,127],[9,9],[10,2],[70,-21],[8,-6],[3,-5],[7,-13],[7,-10],[10,-15],[4,-4],[8,-5],[4,-4],[4,-7],[6,-17],[28,-53],[2,-3],[3,-2],[1,0],[1,2],[3,3],[4,2],[6,2],[4,0],[7,-4],[7,-6],[12,-19],[5,-13],[8,-27],[5,-12],[10,-13],[74,-45],[9,-2],[81,-20],[11,0],[14,9],[5,0],[59,-14],[6,1],[2,1],[3,5],[3,5],[2,5],[48,118],[9,18],[6,7],[3,3],[1,-1],[1,1],[2,4],[2,6],[1,15],[1,6],[5,10],[53,62],[11,10],[135,60],[8,4],[27,4],[50,-12],[135,1],[84,-44],[31,-26],[39,-50],[12,-21],[6,-5],[16,-9],[9,2],[4,1],[6,9],[5,2],[14,-11],[3,-3],[1,-4],[0,-3],[1,-3],[2,-1],[1,2],[1,3],[2,3],[2,1],[3,-4],[2,-5],[2,-3],[3,3],[4,-2],[10,-1],[8,-1],[6,-2],[6,-4],[4,-2],[4,4],[1,7],[3,32],[1,2],[6,3],[2,1],[3,5],[1,6],[2,14],[-5,3],[2,9],[4,11],[1,9],[10,20],[1,2],[1,-3],[2,1],[2,3],[2,4],[0,4],[1,9],[3,-4],[2,-6],[3,-4],[4,-2],[3,4],[1,13],[4,3],[6,3],[5,8],[7,18],[2,10],[1,2],[1,-2],[2,-4],[1,-2],[3,0],[0,3],[-1,4],[-1,7],[0,2],[4,3],[1,1],[1,1],[2,-1],[1,0],[0,2],[0,5],[0,1],[8,18],[4,7],[-2,4],[-2,4],[-2,2],[-2,2],[0,4],[4,-2],[4,-4],[2,1],[1,9],[8,-3],[8,3],[25,26],[7,5],[7,2],[0,-4],[-1,-6],[3,-2],[5,0],[5,3],[0,-2],[0,-6],[2,4],[2,10],[2,3],[2,-2],[1,-4],[-1,-6],[-1,-5],[8,7],[7,3],[7,5],[5,14],[-4,1],[0,3],[2,8],[1,1],[2,0],[2,0],[1,5],[-1,3],[-1,5],[0,2],[2,6],[2,5],[11,22],[4,6],[0,10],[2,5],[8,2],[1,1],[68,-7]],[[53779,58585],[64,-185],[63,-185]],[[53906,58215],[16,-158],[16,-158],[0,-45],[0,-3],[2,-10],[0,-11],[-2,-18],[0,-7],[3,-9],[4,-5],[4,-2],[57,-4],[18,-9],[7,-8],[1,-6],[-1,-9],[0,-5],[2,-5],[8,-13],[3,-2],[0,-5],[-1,-1],[-2,-3],[5,-8],[6,-6],[4,-8],[2,-12],[2,-3],[3,3],[4,4],[2,2],[4,-4],[1,-5],[0,-7],[-5,-11],[-1,-4],[-1,-3],[-2,-7],[-4,-43],[0,-6],[-5,-7],[1,-11],[5,-26],[0,-6],[1,-4],[-1,-20],[-4,-19],[-6,-60],[-2,-10],[-10,-28],[-1,-6],[0,-5],[3,-7],[1,-1],[5,0],[2,-2],[1,-4],[1,-4],[1,-4],[5,-10],[3,-10],[2,-12],[0,-15],[-1,-12],[-2,-15],[-3,-14],[-4,-11],[-4,-5],[-15,-11],[-6,-8],[-10,-19],[-6,-7],[-16,-11],[-5,-6],[-25,-48],[-2,-2],[-8,-2],[-3,-3],[-8,-17],[-5,-7],[-6,-7],[-6,-3],[-6,2],[-19,17],[-11,7],[-9,0],[-10,-18],[-11,-23],[-9,-24],[-7,-25],[-4,-24],[-4,-9],[-10,-13],[-5,-8],[-3,-10],[-1,-12],[2,-23],[-2,-9],[-2,-7],[-49,-149],[-8,-34],[-10,-74],[-10,-112],[-6,-37],[0,-8],[2,-12],[0,-6],[0,-8],[-5,-20],[-3,-9],[-6,-10],[-2,-3],[-4,-5],[-5,-5],[-22,-5],[-10,-7],[-4,-20],[0,-12],[3,-20],[1,-11],[-1,-14],[-7,-22],[-2,-12],[1,-13],[3,-10],[8,-17],[3,-14],[-1,-9],[-3,-10],[-2,-14],[-4,-40],[-1,-38],[-8,-42],[-18,-16],[-22,-7],[-19,-17],[-4,-7],[-8,-21],[-3,-7],[-2,-3],[-17,-17],[-2,-2],[-2,-11],[2,-2],[8,-3],[2,-12],[3,-18],[-1,-23],[-1,-11],[-1,-10],[-13,-49],[-6,-28],[0,-24],[2,-22],[-6,-111],[-3,-26],[-6,-17],[-4,-3],[-4,0],[-3,1],[-4,0],[-3,-3],[-2,-7],[-3,-17],[-4,-19],[-5,-11],[-28,-32],[-4,-2],[-5,2],[-9,8],[-3,2],[-5,-1],[-4,-4],[-3,-4],[-4,-4],[-4,-1],[-4,1],[-8,5],[3,-8],[6,-34],[1,-8],[0,-17],[-2,-5],[-9,-12],[-2,-6],[-2,-8],[-2,-6],[-3,-5],[-6,-2],[-11,4],[-6,-6],[-6,-19],[-2,-25],[0,-27],[5,-48],[0,-12],[-1,-5],[-2,-8],[-11,-34],[-1,-14],[0,-23],[1,-23],[2,-15],[1,-9],[-2,-9],[-10,-23],[-28,-82],[-10,-38],[-2,-12],[-1,-13],[1,-13],[4,-35],[-1,-12],[-4,-6],[-4,-7],[-8,-23],[-17,-36],[-16,-34],[-18,-54],[-5,-12],[-5,-8],[-2,-5],[1,-3],[7,-3],[4,-7],[14,-43],[10,-25],[4,-14],[-3,-14],[-2,-2],[-3,1],[-2,3],[-3,0],[-4,-2],[-3,-4],[-12,-23],[-4,-6],[-1,-5],[-1,-6],[-1,-4],[-2,-2],[-4,0],[-3,-2],[-3,1],[-2,-1],[-1,-3],[-1,-7],[-1,-3],[-16,-22],[-17,-33],[-5,-15],[-2,-16],[2,-9],[6,-15],[2,-10],[-1,-16],[-2,-16],[-8,-40],[-6,-19],[-8,-9],[-11,-3],[-7,-12],[-4,-20],[-2,-25],[-2,-13],[-5,-11],[-7,-8],[-7,-3],[-3,0],[-6,3],[-3,1],[-1,-1],[-3,-6],[-2,-1],[-2,0],[-3,4],[-2,1],[-8,-1],[-17,-4],[-7,2],[-5,9],[-5,28],[-5,46],[-1,23],[0,24],[0,28],[-6,24],[-9,15],[-26,10],[-9,19],[-6,26],[-2,27],[-5,24],[-9,13],[-23,18],[-19,22],[-7,5],[-5,9],[-2,29],[-5,14],[-4,-17],[-3,-22],[-3,-22],[-1,-45],[-2,-2],[-1,-1],[-2,-3],[-3,-9],[-3,-8],[-1,-10],[0,-13],[-72,-2],[-7,5],[-6,9],[-3,12],[-4,43],[-2,10],[-4,2],[-7,-8],[-68,-123],[-6,-5],[-5,3],[-6,6],[-6,1],[-6,-13],[-21,-142],[0,-1],[-3,-6],[-10,0],[-4,0],[-8,-4],[-4,-7],[-7,-26],[-4,-10],[-6,-6],[-11,-8],[-1,-2],[-9,-11],[-8,-34],[-8,-10],[-4,-1],[-4,1],[-3,-1],[-4,-4],[-4,-9],[-8,-36],[-7,-21],[-38,-65],[-25,-57],[-6,-18],[-4,-8],[-4,-5],[-2,-4],[0,-17],[-1,-8],[-5,-1],[-6,5],[-6,1],[-5,-9],[-4,-10],[-10,-14],[-3,-10],[1,-12],[3,-10],[2,-10],[-1,-15],[-5,-12],[-5,-8],[-2,-9],[4,-15],[6,-11],[6,-10],[5,-12],[3,-16],[-1,-14],[-5,-12],[-5,-10],[-4,-12],[-2,-13],[1,-11],[1,-12],[0,-12],[-2,-13],[-6,-26],[-2,-14],[0,-8],[3,-14],[0,-6],[-7,-81],[-2,-7],[-3,-3],[-4,-1],[-3,-3],[-2,-7],[-6,-17],[-2,-8],[-4,-26],[-2,-12],[-4,-12],[-11,-37],[-2,-11],[-8,-11],[-2,-10],[1,-12],[1,-8],[1,-9],[-5,-10]],[[52387,53321],[-1,3],[-2,3],[-2,1],[-2,-2],[-3,-5],[-3,-6],[-1,-5],[0,-5],[-3,-11],[-1,-6],[1,-6],[1,-9],[0,-5],[-2,-10],[-3,-3],[-4,2],[-4,3],[-1,-1],[-3,-1],[-2,2],[1,6],[1,4],[2,6],[0,6],[-1,2],[-2,-1],[-6,-6],[-3,-1],[-9,6],[0,17],[3,21],[1,20],[-2,0],[-2,-20],[-6,-10],[-8,1],[-7,14],[1,2],[1,6],[-2,1],[-6,6],[2,8],[-3,7],[-7,12],[-7,8],[0,1],[-2,9],[-3,13],[-2,5],[-3,2],[-3,3],[-4,7],[-2,6],[-2,5],[-2,0],[0,-4],[16,-31],[3,-10],[8,-28],[1,-14],[-5,-6],[2,-8],[3,-10],[3,-8],[3,-3],[2,-5],[5,-26],[3,-9],[-1,-4],[-2,-13],[-1,-6],[2,-8],[2,-4],[3,-2],[3,-4],[1,-14],[-5,-8],[-5,-7],[-3,-10],[-3,-18],[-3,-3],[-3,-1],[-12,0],[-16,4],[-23,0],[-12,4],[-5,-1],[-10,-10],[-5,-1],[-12,0],[-48,-12],[-2,3],[-4,1],[-3,-2],[-2,-6],[3,0],[2,-1],[2,-1],[2,-2],[-6,-4],[-9,-1],[-8,3],[-3,8],[-4,2],[-25,4],[1,2],[0,2],[1,2],[2,2],[-4,2],[-3,-1],[-2,0],[-1,7],[1,4],[2,2],[2,4],[1,6],[-1,3],[-5,14],[1,2],[1,6],[-4,10],[1,15],[5,28],[-2,0],[-3,-5],[-1,-3],[-2,-5],[-1,-6],[0,-9],[1,-6],[0,-6],[-2,-7],[0,-4],[4,-9],[0,-5],[0,-2],[-5,-11],[-3,-4],[-3,-4],[-3,-1],[-3,5],[-2,0],[-2,-12],[-6,1],[-10,11],[-7,1],[-7,3],[-6,6],[-3,11],[-2,-3],[-2,-1],[-5,0],[-1,-2],[0,-4],[-1,-5],[-3,-2],[0,-4],[2,-2],[2,-2],[-2,-4],[4,-3],[5,-8],[7,-3],[1,-4],[0,-5],[-2,-5],[-12,-4],[-1,3],[-7,19],[-17,41],[-3,12],[0,16],[0,6],[-2,0],[-4,-4],[-6,-1],[-1,1],[-2,6],[-5,8],[-3,6],[-4,27],[-3,10],[0,-6],[-2,-6],[-1,-4],[-1,-1],[1,-6],[1,-1],[2,0],[2,-4],[3,-21],[2,-9],[5,-3],[9,-9],[6,-21],[1,-19],[-7,-8],[3,-5],[5,-9],[2,-10],[-2,-11],[-7,-18],[-5,-4],[-6,5],[0,-9],[0,-3],[-5,5],[-4,6],[-1,9],[1,12],[-4,-8],[-1,-9],[2,-11],[3,-9],[-8,-4],[-2,0],[-3,14],[-2,15],[-1,30],[-4,16],[-1,10],[3,4],[1,5],[1,11],[1,13],[-1,8],[2,-2],[2,-1],[2,-1],[-2,7],[-5,13],[-1,6],[-2,13],[-1,6],[-5,-16],[-2,1],[-1,9],[-3,13],[-2,-9],[1,-14],[-1,-5],[3,-9],[6,-35],[-3,0],[-2,0],[-1,3],[-1,5],[-2,-2],[-2,-2],[-3,11],[-3,10],[-8,19],[1,-10],[1,-7],[4,-15],[2,-6],[1,-4],[1,-4],[-1,-6],[-2,-2],[-1,-4],[2,-7],[3,9],[5,3],[5,-2],[2,-8],[-2,-41],[0,-14],[10,-41],[4,-10],[-1,-5],[-2,-6],[-2,-3],[-4,1],[-3,3],[-5,5],[0,-2],[1,-3],[0,-4],[-6,4],[-6,6],[-6,3],[-6,-5],[-4,7],[-2,10],[0,10],[2,11],[-5,5],[-4,15],[-3,19],[-1,15],[0,11],[1,6],[2,4],[2,5],[2,6],[1,10],[-1,9],[-5,4],[-7,8],[-5,20],[-4,37],[-1,14],[1,8],[3,8],[2,7],[-1,5],[-2,1],[-4,-7],[-2,7],[-1,4],[-1,6],[-2,-3],[-2,-1],[-3,1],[-2,3],[1,-10],[1,-11],[1,-9],[4,-3],[2,-4],[2,-11],[2,-21],[1,-23],[2,-10],[2,-4],[4,-4],[3,-9],[5,-19],[-6,-12],[-1,-5],[-1,-8],[6,-58],[3,-18],[3,-9],[0,-14],[5,-10],[4,-9],[-7,-8],[-9,-3],[-11,-2],[-10,2],[-6,8],[-1,8],[1,35],[1,4],[1,3],[-1,3],[-2,5],[-1,2],[0,21],[1,9],[6,36],[1,6],[0,18],[-6,-14],[-4,-25],[-2,-27],[2,-20],[-1,-5],[0,-11],[-1,-8],[-2,13],[-1,8],[-1,37],[-1,7],[-2,-4],[-1,-3],[-1,-3],[-2,-2],[1,-9],[1,-27],[1,-10],[3,-13],[2,-11],[3,-21],[0,-7],[-2,-6],[-3,-2],[-8,0],[-8,-2],[-2,4],[-3,19],[-1,18],[1,27],[-1,22],[-5,15],[-8,-1],[8,-14],[3,-20],[-1,-24],[-4,-23],[-1,-20],[-13,-7],[-17,3],[-7,11],[-4,-1],[-4,-3],[3,-11],[-5,-3],[-7,-1],[-5,-3],[-5,-5],[-13,-1],[-6,-4],[-6,16],[5,25],[19,44],[-4,1],[-2,1],[-2,0],[-2,-2],[-10,-24],[-1,32],[-4,28],[-2,0],[-1,-11],[1,-15],[1,-15],[2,-11],[-2,6],[-3,6],[-3,6],[-5,2],[3,-14],[3,-9],[2,-10],[0,-15],[-2,-12],[-2,-9],[-2,-2],[-2,-2],[-2,-3],[0,-9],[2,3],[2,0],[4,-3],[-2,-5],[-7,-6],[-11,-1],[-7,4],[-1,-3],[-1,-3],[-2,-2],[-4,3],[-2,6],[-1,9],[0,10],[1,10],[4,14],[0,8],[-1,-1],[-3,-1],[-1,-1],[0,9],[1,16],[-3,1],[-3,1],[-3,3],[-4,-2],[-1,-6],[1,-9],[1,-8],[1,-5],[-1,-8],[2,-7],[2,-7],[1,-9],[-1,-13],[-2,1],[-3,6],[-4,4],[-6,1],[-3,3],[0,21],[2,1],[0,1],[-4,12],[0,2],[0,10],[0,10],[-2,0],[-2,-20],[-1,2],[-4,6],[4,-20],[1,-10],[-4,-7],[-4,1],[-4,6],[-4,6],[-2,4],[-5,4],[-7,11],[-3,14],[3,15],[-3,1],[-2,-2],[-1,-4],[0,-7],[-2,0],[-4,10],[-11,14],[-4,9],[2,-3],[4,-3],[2,-3],[-2,8],[-4,3],[-3,2],[-4,3],[-6,14],[-2,6],[-8,17],[-2,2],[-25,51],[-8,23],[-3,26],[1,-1],[1,-1],[2,-2],[0,11],[-12,16],[-3,11],[-2,9],[-7,26],[-3,7],[10,-12],[-2,14],[-9,22],[-8,46],[-3,27],[-1,9],[-4,16],[-1,9],[-1,10],[-1,4],[-2,5],[-1,6],[-1,9],[1,7],[3,3],[5,-1],[4,-3],[3,-5],[5,-15],[3,-4],[-4,23],[-1,9],[5,-1],[6,-3],[-2,7],[-8,18],[-2,3],[-1,-2],[0,-11],[-1,-2],[-3,-1],[-2,0],[-4,-3],[-3,3],[-7,-3],[-3,4],[-1,4],[1,22],[-1,27],[-6,53],[1,8],[7,3],[18,1],[6,3],[0,-5],[1,-4],[2,-7],[3,3],[2,9],[1,4],[2,3],[9,8],[5,1],[4,0],[3,-4],[2,0],[-2,7],[-7,13],[-2,9],[-2,8],[0,10],[1,9],[1,7],[4,5],[4,2],[10,-1],[3,4],[3,7],[4,14],[-4,-4],[-4,-7],[-4,-5],[-5,4],[-1,-3],[-2,-3],[-1,-3],[-6,3],[-7,-7],[-4,-13],[2,-15],[-3,-15],[-4,-9],[-4,-2],[-6,6],[-2,4],[0,3],[-2,3],[-3,1],[-1,-3],[0,-8],[2,-8],[2,-5],[-16,2],[-32,22],[-1,3],[-1,7],[-1,3],[-9,17],[-6,9],[-2,12],[0,13],[0,6],[2,2],[5,10],[2,4],[2,1],[28,-3],[10,-3],[6,-7],[1,0],[3,8],[5,21],[2,7],[4,3],[4,0],[4,-2],[3,-5],[1,-4],[1,-13],[1,-3],[3,0],[2,2],[0,4],[0,6],[-2,9],[-5,10],[-6,9],[-4,4],[-6,0],[-2,-6],[-4,-18],[-3,-5],[-4,-5],[-5,-3],[-5,1],[-5,6],[-2,9],[0,10],[5,32],[1,9],[-1,11],[-2,0],[-7,-44],[-3,-12],[-4,-8],[-5,-4],[-6,-1],[-3,-2],[-7,-8],[-7,-5],[-1,1],[-4,6],[-4,8],[-5,12],[-3,12],[-3,17],[-2,8],[-3,10],[-1,14],[1,12],[1,14],[3,10],[3,5],[4,-2],[5,-10],[2,-1],[2,4],[-1,5],[-1,6],[0,6],[9,16],[23,18],[6,23],[-6,-2],[-9,-19],[-11,-7],[-21,-23],[-4,-6],[-14,-28],[-3,0],[-11,49],[-33,93],[-6,11],[-11,10],[-5,12],[-7,24],[-10,21],[-8,15],[-21,28],[-9,12],[-17,34],[-11,15],[-4,4],[-25,22],[-17,7],[-60,24],[-71,13],[-119,-13],[-6,2],[-4,5],[-2,7],[-4,6],[2,3],[2,1],[2,-1],[2,-3],[4,9],[1,-4],[1,-8],[1,-9],[10,19],[1,-1],[1,-4],[3,-1],[3,3],[5,1],[5,1],[4,5],[4,9],[1,7],[-1,6],[0,6],[3,2],[11,0],[6,2],[13,8],[3,-2],[7,5],[5,7],[4,10],[2,12],[3,3],[23,8],[-2,3],[-2,2],[-1,0],[-2,-1],[-16,8],[-16,-13],[-15,-18],[-13,-10],[-5,0],[-3,-1],[-10,-11],[-3,-2],[-3,-1],[-4,-1],[-1,2],[-3,2],[-4,0],[-1,3],[-1,2],[-1,7],[-1,8],[2,12],[0,9],[-4,-6],[-4,-7],[-6,-14],[-2,-2],[-3,0],[-2,-1],[-1,-5],[0,-4],[1,-9],[1,-5],[-2,-7],[-3,-12],[-1,-7],[-1,-5],[-2,-3],[-1,-4],[1,-5],[1,-3],[1,-3],[1,-3],[1,-3],[-1,-14],[-17,-3],[-31,3],[-36,-9],[-43,4],[-62,-12]],[[50751,54241],[0,36],[2,27],[1,12],[1,6],[5,31],[0,13],[-2,25],[0,12],[3,13],[5,9],[4,5],[1,7],[-1,27],[0,6],[-2,3],[-3,0],[-3,2],[-2,4],[-3,6],[-1,12],[1,12],[3,25],[-2,25],[-3,23],[-1,21],[7,22],[3,3],[4,2],[3,3],[1,7],[-2,5],[-7,13],[-3,6],[-1,8],[1,4],[1,4],[2,11],[3,6],[0,6],[1,8],[-6,146],[1,6],[2,3],[3,0],[6,-3],[1,2],[0,3],[0,5],[1,25],[-6,22],[-8,21],[-6,22],[-1,23],[0,19],[3,80],[-1,8],[-2,9],[-7,16],[-3,17],[-2,7],[0,2],[-1,3],[1,4],[3,12],[1,5],[1,37],[3,38],[1,35],[1,11],[2,10],[3,10],[2,11],[0,13],[-2,12],[-5,25],[-2,13],[-1,14],[0,12],[2,24],[0,6],[-1,11],[1,5],[1,7],[6,14],[2,6],[2,20],[-1,18],[-5,144],[0,1],[0,6],[2,5],[4,4],[2,3],[0,5],[-1,10],[-1,5],[1,9],[4,17],[0,9],[-1,4],[-2,1],[-1,1],[0,5],[0,1],[4,10],[0,4],[2,16],[1,38],[-1,15],[21,-3],[4,1],[3,4],[2,5],[3,4],[3,1],[8,1],[3,-1],[3,-3],[3,-4],[3,-3],[3,0],[19,11],[7,10],[4,18],[9,61],[6,23],[2,13],[0,38],[-1,10],[-4,18],[-1,17],[1,16],[5,19],[2,3],[4,3],[3,4],[16,47],[1,3],[-2,7],[0,4],[2,15],[5,3],[5,-2],[5,-1],[9,11],[2,15],[-2,18],[-4,19],[-1,11],[1,14],[2,11],[5,7],[20,18],[11,6],[16,-4],[5,10],[8,28],[9,23],[2,11],[2,51],[2,9],[4,9],[4,4],[4,6],[2,13],[0,3],[1,11],[-1,9],[-2,7],[-19,41],[-4,14],[0,11],[6,27],[7,23],[1,7],[0,11],[1,4],[2,6],[5,11],[5,4],[6,-3],[18,-19],[4,1],[5,11],[1,11],[1,31],[2,16],[7,29],[2,16],[0,18],[0,15],[-1,17],[-3,11],[-3,5],[-4,1],[-4,2],[-2,7],[-3,19],[-1,7],[-2,5],[-3,4],[-2,5],[-1,7],[0,10],[6,32],[0,17],[-5,53],[-3,10],[-2,11],[-1,12],[0,13],[2,23],[-2,4],[-2,1],[-1,0],[-2,-1],[-2,0],[-7,14],[-50,147],[-4,16],[-1,14],[6,32],[2,9],[3,27],[19,69],[6,13]],[[52094,53125],[9,2],[3,-1],[-1,-8],[-3,-7],[-5,-3],[-10,1],[-4,-1],[-14,-11],[-5,-1],[-21,3],[-4,4],[-1,8],[2,11],[3,3],[13,8],[4,-2],[9,-11],[5,-2],[5,1],[10,5],[5,1]],[[52020,53130],[13,3],[3,-3],[-3,-7],[-2,-7],[0,-8],[0,-9],[-2,-9],[-2,-6],[-4,-5],[-4,-3],[-25,-11],[-9,2],[-3,7],[3,11],[9,20],[6,20],[5,14],[2,5],[1,10],[3,-5],[5,-16],[4,-3]],[[50751,54241],[-1,0],[-110,-22],[-22,-10],[-95,-23],[-74,-36]],[[50449,54150],[-2,12],[6,6],[36,18],[6,1],[-6,44],[-5,44],[-7,25],[-3,3],[-6,7],[-1,3],[-1,5],[1,13],[-1,6],[-1,5],[-5,8],[-1,4],[0,7],[-2,1],[-3,0],[-2,1],[-3,2],[-2,4],[-2,5],[-2,5],[-1,6],[0,5],[1,5],[0,5],[-3,12],[-4,6],[-1,7],[2,13],[4,12],[2,6],[1,9],[-1,14],[-3,12],[-1,11],[0,10],[2,25],[0,8],[-3,6],[-4,7],[-4,10],[-5,42],[21,0],[5,3],[0,87],[0,86],[0,89],[-1,58],[0,51],[0,10],[0,118],[0,93],[1,95],[0,68],[-3,50],[-1,6],[-2,1],[-1,2],[2,15],[0,10],[0,5],[9,32],[1,11],[-1,5],[-7,20],[-2,6],[0,7],[0,18],[-1,79],[0,55],[0,65],[-1,74],[-1,16],[-2,14],[-6,22],[-17,38],[-23,49],[-1,5],[-5,17],[-4,23],[-2,60],[-3,17],[-5,-5],[-4,9],[-3,15],[-1,12],[1,7],[5,16],[2,8],[0,6],[0,12],[1,6],[0,7],[-2,28],[0,46],[-1,64],[0,44],[0,5],[-4,20],[-29,41],[-40,56],[-24,33],[-16,23],[-26,37],[-21,29],[-2,9],[0,14],[3,61],[5,33],[0,23],[-2,53],[4,20],[15,30],[3,11],[1,6],[0,14],[1,6],[4,18],[0,6],[-2,12],[-1,6],[1,12],[7,37]],[[50250,56980],[8,-10],[4,-1],[5,0],[1,3],[1,7],[0,7],[-2,3],[-2,2],[-1,6],[0,6],[0,6],[1,2],[2,7],[2,7],[2,5],[1,1],[1,0],[6,-3],[2,-2],[2,-3],[1,-1],[1,-2],[2,-5],[0,-2],[2,0],[3,4],[1,0],[8,-2],[3,-2],[1,-3],[2,-6],[2,-4],[1,3],[0,10],[-3,6],[-2,7],[0,6],[0,7],[-1,7],[-3,2],[-1,2],[0,2],[1,8],[-1,2],[-2,1],[-2,-3],[-1,-1],[0,9],[1,1],[9,5],[2,2],[2,11],[1,3],[3,0],[5,-6],[3,-2],[-1,11],[-1,20],[-5,18],[1,7],[3,6],[3,9],[2,-4],[2,-7],[0,-3],[3,0],[1,1],[1,2],[3,1],[5,0],[5,-3],[9,-9],[3,14],[1,4],[-1,6],[-3,6],[0,4],[1,7],[3,-3],[4,-8],[1,-6],[2,5],[2,2],[2,-2],[2,-5],[5,9],[-1,7],[-2,8],[-2,11],[2,11],[6,7],[6,6],[5,6],[-3,13],[1,5],[2,7],[3,5],[4,3],[3,3],[1,9],[5,-6],[5,-2],[26,-5],[0,-3],[-1,-9],[0,-4],[5,1],[5,-23],[6,4],[5,5],[12,6],[6,5],[4,3],[12,-1],[6,0],[10,10],[6,2],[5,-3],[2,4],[4,-2],[7,-7],[12,-9],[9,-2],[8,8],[1,3],[37,78],[20,35],[15,17],[4,8],[1,6],[0,6],[0,10],[3,17],[11,25],[3,16],[10,57]],[[50663,57515],[0,6],[-3,10],[-1,7],[2,7],[2,2],[3,-1],[2,1],[2,5],[2,8],[2,5],[3,0],[3,-2],[2,1],[0,10],[0,7],[-2,3],[-3,1],[-3,3],[-3,5],[-2,5],[-1,6],[-10,55],[-2,33],[-1,14],[3,10],[7,7],[3,1],[7,-1],[3,1],[1,1],[2,7],[2,2],[2,-1],[1,-3],[2,-1],[1,6],[2,7],[2,2],[2,-1],[3,0],[1,-1],[1,-4],[1,-2],[2,0],[1,2],[3,5],[1,2],[10,5],[1,0],[2,-3],[2,0],[1,1],[4,6],[2,0],[9,-5],[3,3],[4,13],[1,4],[0,5],[1,4],[2,4],[3,2],[3,-4],[2,2],[3,4],[4,11],[4,4],[2,1],[6,0],[3,1],[6,1],[4,9],[13,-25],[6,-7],[2,-6],[2,-7],[2,-14],[3,-5],[3,-3],[3,-2],[9,-3],[2,-1],[1,-3],[3,-11],[11,-35],[48,-91],[1,-4],[4,-5],[1,-4],[0,-12],[2,-14],[2,-10],[6,-23],[4,-10],[2,-4],[4,-5],[4,-2],[3,4],[4,4],[4,-1],[3,-4],[3,-2],[12,-16],[10,-7],[3,-5],[3,-4],[9,-28],[2,-4],[1,-2],[2,-2],[1,-5],[1,-9],[1,-5],[1,-5],[1,-4],[2,-3],[3,-10],[1,-3]],[[53391,47056],[0,1],[-13,48],[-4,38],[6,37],[3,7],[4,1],[3,1],[4,3],[2,6],[1,8],[0,19],[-1,7],[-4,21],[-5,21],[-7,40],[1,16],[-11,41],[-3,28],[-15,39],[-13,43],[0,7],[4,-2],[5,-2],[4,-3],[1,-3],[2,-14],[6,-3],[4,6],[3,10],[1,8],[2,3],[0,12],[-1,5],[-3,2],[-3,0],[-2,-6],[-1,-9],[1,-12],[-2,-3],[-2,2],[-1,11],[-2,7],[-2,1],[-2,-5],[-2,-1],[-4,4],[-4,-1],[-6,2]],[[53268,40252],[0,5],[-2,3],[-2,6],[0,8],[0,7],[2,23],[0,78],[3,51],[3,46],[-4,42],[0,18],[5,3],[2,-25],[3,-11],[5,25],[-1,46],[2,15],[-3,56],[2,63],[-12,224],[1,12],[1,9],[6,27],[-6,27],[-13,43],[-1,26],[5,34],[3,6],[6,7],[6,5],[2,-4],[1,-10],[4,-3],[4,2],[14,28],[2,9],[1,8],[0,17],[1,8],[5,14],[18,21],[3,13],[1,18],[6,44],[3,16],[-3,16],[1,17],[4,34],[2,69],[2,9],[2,8],[10,19],[2,1],[4,-5],[3,0],[2,7],[1,9],[0,11],[-2,8],[-4,4],[-3,-2],[-1,1],[1,13],[2,19],[8,35],[1,21],[1,8],[3,7],[3,6],[3,6],[1,8],[3,32],[0,8],[1,4],[2,6],[1,0],[2,-1],[2,1],[3,8],[2,16],[6,19],[-1,11],[-1,10],[0,11],[0,8],[3,13],[4,44],[2,47],[1,8],[5,15],[3,21],[3,39],[1,38],[-1,20],[-3,19],[-2,10],[-1,4],[0,7],[0,3],[-2,5],[0,4],[0,4],[1,0],[2,-1],[2,2],[3,1],[2,2],[1,4],[0,6],[1,5],[-1,5],[-2,9],[-3,8],[-2,8],[5,15],[1,13],[6,14],[1,8],[1,9],[1,9],[5,15],[1,6],[0,21],[1,9],[2,8],[7,4],[1,3],[2,2],[2,-1],[4,-6],[2,-2],[2,0],[4,13],[2,22],[2,61],[-1,59],[1,7],[4,15],[1,8],[-3,8],[0,5],[0,2],[1,2],[0,19],[0,9],[-3,19],[-1,9],[1,10],[2,9],[3,7],[4,2],[6,2],[2,3],[1,7],[4,8],[5,5],[3,2],[3,4],[2,10],[0,6],[0,4],[-1,4],[0,4],[0,4],[3,6],[0,4],[2,9],[8,9],[2,7],[1,7],[1,0],[2,-2],[2,-1],[5,7],[0,1],[5,5],[3,5],[19,49],[7,12],[3,6],[5,16],[17,41],[4,16],[0,16],[-2,16],[-5,17],[-2,18],[4,15],[13,28],[6,8],[18,37],[8,8],[2,4],[5,17],[1,5],[8,15],[5,6],[6,1],[0,-2],[6,-2],[3,-4],[9,18],[3,3],[5,-2],[5,-8],[5,-3],[10,4],[8,13],[12,28],[6,10],[3,7],[1,9],[1,25],[1,11],[2,11],[5,17],[18,36],[1,0],[0,-4],[-2,-3],[-2,-3],[-1,-5],[2,-6],[4,9],[6,19],[9,21],[2,9],[7,47],[8,35],[3,19],[3,41],[2,9],[4,9],[4,10],[2,11],[2,13],[5,59],[3,18],[0,12],[-4,107],[1,64],[1,14],[2,10],[-2,6],[0,6],[2,8],[0,7],[0,32],[0,6],[2,6],[5,15],[1,7],[0,17],[7,84],[0,34],[0,44],[-1,21],[-4,19],[-25,78],[-2,11],[0,10],[2,10],[8,21],[1,10],[-2,9],[-3,10],[-12,20],[-2,6],[-1,7],[-26,66],[-18,31],[-4,12],[-1,11],[-1,40],[-1,13],[-2,12],[-15,45],[-3,13],[-4,29],[-4,12],[-11,24],[-16,56],[0,8],[3,9],[2,12],[-3,24],[-6,26],[-7,24],[-22,55],[-2,11],[1,10],[6,14],[2,11],[0,10],[-2,12],[-2,10],[-2,4],[0,7],[-9,55],[-1,11],[1,26],[-1,9],[-5,21],[-2,13],[-6,10],[-21,74],[-8,39],[-5,17],[-2,33],[11,47],[16,39],[14,13],[-7,-19],[-20,-35],[-10,-49],[-1,-16],[3,-7],[3,5],[16,56],[0,6],[2,7],[3,2],[4,0],[3,1],[4,8],[3,19],[3,12],[7,16],[2,6],[0,7],[0,14],[1,6],[8,19],[5,7],[5,4],[-14,-29],[-3,-12],[4,5],[9,9],[5,7],[2,1],[2,3],[0,6],[1,4],[0,3],[1,2],[2,1],[17,-5],[7,5],[4,30],[4,22],[1,9],[-2,9],[-8,24],[-3,17],[-4,40],[-2,19],[3,2],[3,-1],[2,1],[2,6],[1,6],[0,45],[-1,12],[-3,14],[-26,86],[-3,5],[-4,27],[-2,10],[-2,7],[-4,16],[-2,6],[-4,22],[-3,27],[-18,70],[-38,182],[-13,68],[-8,60],[-8,17],[-4,10],[-5,14],[1,20],[-1,16],[-5,118],[-2,18],[-1,9],[-1,3],[0,3],[-1,2],[1,2],[2,5],[1,3],[0,6],[1,2],[0,2],[-1,5],[-8,-11],[-6,5],[-20,59],[-24,47],[-19,61],[-26,99],[-10,50],[-7,33],[-8,22],[-6,20],[-8,20],[-11,43],[-1,19],[4,11],[7,4],[5,7],[-1,-9],[-1,-17],[6,1],[10,6],[14,1],[18,8],[8,12],[7,5],[8,2],[15,17],[3,3],[7,0],[6,-5],[7,-4],[7,-3],[8,5],[13,6],[12,9],[6,9],[12,12],[6,14],[5,15],[2,11],[4,7],[7,3],[5,2],[4,4],[5,-1],[11,-2],[3,0],[4,4],[12,13],[4,3]],[[53257,40628],[0,-23],[3,-21],[0,-8],[-6,13],[-4,17],[-9,58],[1,17],[2,7],[6,10],[5,-3],[0,-30],[2,-13],[0,-24]],[[55282,77040],[-3,-2],[-9,0],[-23,-1],[-9,4],[-5,5],[-6,7],[-10,15],[-3,17],[2,6],[6,7],[1,6],[0,2],[-2,3],[-1,1],[0,2],[0,3],[0,2],[-1,3],[0,3],[-2,1],[-1,1],[-8,2],[-3,2],[-4,6],[-10,32],[-2,3],[-1,1],[-2,0],[-2,-3],[0,-3],[-1,-4],[-1,-2],[-2,-3],[-3,2],[-2,4],[-1,5],[-2,7],[-1,3],[-2,2],[-2,-1],[-4,-3],[-2,-2],[-2,1],[-5,1],[-2,0],[-4,-2],[0,-1],[0,-4],[1,-8],[1,-8],[-7,0],[-7,5],[-3,2],[-4,4],[-4,7],[-6,10],[-5,6],[-5,4],[-20,2],[-4,3],[-13,14],[-6,4],[-7,-3],[-3,-5],[-1,-8],[0,-7],[-2,-6],[-5,-5],[-6,-2],[-3,0],[-3,0],[-5,2],[-6,4],[-16,21],[-4,4],[-5,0],[-4,-4],[-17,-30],[-4,-7],[-3,-2],[-7,-2],[-8,-5],[-3,-1],[-6,4],[-5,7],[-15,30],[-8,11],[-8,7],[-9,1],[-6,-4],[-11,-17],[-5,-5],[-3,-1],[-6,1],[-14,-3],[-2,-1],[1,4],[3,12],[-7,-5],[-3,-1],[-4,2],[2,4],[1,3],[0,3],[-2,4],[-2,2],[-1,-2],[-1,-4],[-1,-2],[-9,-4],[-5,-1],[-4,3],[-2,4],[-10,9],[-5,3],[-11,11],[-5,-18],[-1,-3],[-13,-1],[-3,-3],[-18,12],[-7,6],[-12,13],[-5,18],[-2,-2],[-4,-5],[-2,-2],[1,5],[0,4],[0,3],[-1,5],[-3,-8],[-3,3],[-3,7],[-4,2],[1,-4],[1,-4],[-6,-1],[-2,3],[1,5],[-1,5],[-2,12],[-2,4],[-8,-10],[-1,-3],[-2,-5],[-3,-4],[-2,-3],[-2,-6],[-2,-3],[-4,-2],[-2,-4],[-2,-7],[0,-5],[0,-5],[-4,-4],[-7,-2],[-55,25],[-16,1],[-13,-14],[-9,-30],[-4,-9],[-3,-3],[-7,-4],[-3,-2],[-2,-6],[0,-3],[1,-4],[-1,-7],[-1,-5],[-6,-16],[-3,-17],[-1,-8],[-7,-3],[-11,4],[-10,7],[-8,7],[-25,38],[-5,10],[-6,23],[-4,11],[-4,4],[-6,2],[-2,2],[0,3],[1,5],[0,5],[-2,5],[-4,3],[-3,0],[-6,-2],[-27,1],[-15,-4],[-6,-8],[-3,-4],[-3,-13],[0,-5],[1,-35],[-1,-9],[-7,-26],[0,-11],[3,-18],[-1,-10],[-7,-18],[-1,-7],[-1,-4],[1,-15],[4,-12],[4,-10],[3,-11],[-1,-11],[-5,-3],[-6,-3],[-4,-8],[0,-10],[3,-10],[7,-18],[2,-3],[7,-7],[2,-5],[2,-6],[2,-4],[4,1],[3,1],[5,1],[2,1],[2,4],[2,5],[2,3],[3,0],[2,-3],[1,-6],[1,-6],[1,-5],[2,-4],[2,1],[2,2],[2,0],[3,-6],[3,-15],[3,-8],[3,-3],[4,-2],[6,-1],[4,-3],[2,-5],[1,-8],[1,-8],[-2,-2],[-2,-8],[-4,-9],[-2,-10],[5,-9],[6,-1],[10,7],[6,-2],[3,-6],[2,-10],[2,-12],[6,-29],[2,-11],[0,-10],[-1,-4],[-3,-2],[-2,-3],[0,-4],[1,2],[3,-1],[5,-2],[6,-5],[3,-5],[1,-5],[0,-1],[-1,-10],[-1,-5],[-2,-9],[-1,-7],[0,-9],[3,-18],[5,-26],[4,-10],[12,-20],[4,-11],[7,-23],[4,-10],[5,-8],[3,-4],[3,-2],[3,-1],[7,1],[3,-2],[3,-9],[2,-9],[2,-7],[12,-6],[5,-6],[4,-8],[3,-7],[8,-18],[14,-21],[9,-20],[11,-16],[2,-9],[1,-10],[3,-12],[4,-10],[31,-38],[44,-70],[13,-24],[9,-13],[6,-8],[16,-14],[27,-7],[9,-9],[4,-15],[-5,-50],[6,-29],[11,-26],[11,-16],[6,-6],[3,-4],[2,-6],[2,-13],[3,-11],[4,-8],[3,-2],[38,-39],[3,-6],[8,-16],[9,-31],[1,-16],[-8,-9],[-15,-5]],[[54883,75901],[-9,7],[-4,-2],[-5,5],[-5,7],[-3,7],[-3,11],[-2,7],[3,5],[6,5],[-4,3],[-4,-3],[-5,-5],[-6,-3],[2,2],[6,6],[-3,0],[-3,1],[-2,2],[-2,5],[2,4],[-2,6],[0,2],[-6,-8],[-9,14],[-15,31],[-40,33],[-10,12],[-5,4],[-2,2],[-1,8],[-2,3],[-3,2],[-3,1],[-2,1],[-2,4],[-3,7],[0,3],[-1,7],[-1,3],[-1,1],[-3,1],[-2,1],[-26,53],[-7,8],[-3,5],[-2,3],[-2,3],[-36,8],[-16,11],[-19,7],[-26,28],[0,2],[0,3],[-1,2],[-1,1],[-2,0],[-3,-3],[-1,-1],[-11,4],[-20,0],[0,4],[5,1],[7,2],[6,4],[4,6],[-4,4],[-7,2],[-27,1],[-3,-1],[-5,-5],[-2,-1],[-5,-2],[-12,-5],[-33,-1],[0,-5],[9,-3],[4,-5],[2,-8],[-17,0],[0,-6],[-4,0],[-9,6],[-7,1],[-3,2],[-4,5],[-2,0],[0,-4],[-3,4],[-6,0],[-2,4],[-1,-1],[0,-1],[0,-2],[-1,0],[0,7],[2,1],[2,0],[2,2],[1,4],[0,3],[-1,3],[1,5],[-4,-1],[-2,-1],[-1,-2],[-1,5],[-3,3],[-6,4],[5,1],[0,4],[-2,3],[-5,0],[0,4],[1,1],[2,2],[1,1],[-3,3],[-1,1],[2,4],[-2,4],[2,4],[-2,9],[3,3],[11,0],[0,5],[-13,4],[-5,0],[4,3],[3,0],[2,-2],[2,-1],[3,1],[-1,4],[-2,4],[-3,3],[4,2],[2,4],[-1,6],[-3,4],[0,-11],[-2,0],[-7,8],[-4,6],[-2,0],[-2,0],[-2,1],[-2,3],[-4,10],[-1,3],[-12,10],[-3,5],[-6,3],[-18,2],[-3,7],[-3,13],[-7,5],[-7,3],[-4,9],[8,-6],[4,-2],[5,0],[0,4],[-2,1],[-1,0],[-1,-1],[-7,10],[-18,14],[-8,10],[0,1],[-6,13],[-4,6],[-4,3],[-4,1],[-2,1],[-2,2],[-3,3],[-2,4],[-1,4],[-2,5],[-15,29],[-7,16],[-6,8],[-5,4],[-12,22],[0,2],[-12,21],[-3,3],[-3,3],[-1,4],[1,6],[-4,5],[-15,23],[5,10],[-3,13],[-5,12],[-6,6],[3,6],[5,4],[5,-1],[2,-11],[3,-7],[6,4],[3,10],[-6,7],[2,1],[0,1],[1,-2],[3,0],[-2,7],[-1,3],[14,-14],[6,-12],[3,-4],[4,0],[-4,20],[3,1],[1,2],[1,2],[1,3],[-4,2],[-3,5],[-2,6],[-2,7],[5,-3],[8,-11],[8,-4],[20,-18],[4,-2],[22,-5],[6,0],[1,7],[-4,4],[-18,4],[-1,2],[-9,17],[-2,2],[-27,20],[-4,6],[-39,60],[-13,28],[-8,14],[-7,5],[-2,3],[-9,11],[-2,1],[-2,5],[-27,66],[-5,20],[3,7],[0,9],[-2,10],[-1,12],[-1,33],[1,10],[6,38],[2,9],[2,11],[-2,13],[-16,57],[-1,10],[-3,7],[-4,5],[-17,14],[-30,35],[-14,28],[-4,3],[-5,8],[-2,8],[4,5],[-3,5],[-10,12],[5,-9],[1,-1],[-1,-5],[-3,-3],[-3,0],[-2,3],[-4,7],[-30,23],[-11,3],[-5,5],[-4,1],[-5,-6],[-6,-14],[-5,-18],[-4,-20],[-3,-41],[-3,-19],[-1,-1],[0,-2],[-7,-14],[-8,5],[5,-8],[-1,-9],[-4,-9],[-4,-6],[-2,4],[-1,-5],[0,-4],[1,-11],[-1,1],[-2,1],[-1,1],[0,-3],[5,-8],[2,-12],[-1,-14],[-4,-11],[-3,-4],[-2,1],[-2,2],[-3,1],[-4,-2],[-3,-5],[-2,-5],[-2,-5],[-2,0],[1,12],[2,5],[2,5],[-3,11],[-6,8],[0,5],[0,4],[0,3],[-3,0],[1,-7],[-2,-10],[2,-5],[3,-3],[2,0],[2,-2],[1,-5],[-3,-5],[-4,-11],[-1,-3],[-1,2],[-2,0],[1,-4],[1,-5],[-1,-5],[-1,-6],[-2,1],[-1,0],[0,-2],[1,-3],[0,-4],[-1,0],[-1,-1],[0,-1],[0,-2],[-3,2],[-6,-2],[-4,0],[2,-3],[1,-3],[2,-6],[-1,0],[0,-4],[1,0],[0,-4],[-2,-2],[-1,-3],[-2,-7],[0,-5],[1,-1],[0,-1],[-1,-5],[3,0],[1,-1],[2,-3],[1,-4],[-10,-1],[-5,1],[-4,4],[0,-2],[0,-1],[-2,-1],[-1,9],[-3,1],[-3,-1],[-2,3],[-2,-4],[3,-2],[3,-4],[1,-5],[-1,-6],[2,-10],[2,-2],[-5,-3],[-1,5],[1,10],[-1,9],[-2,2],[-9,5],[-3,1],[1,2],[1,4],[0,2],[-1,0],[-2,0],[1,4],[-1,4],[-3,-1],[-5,2],[-4,5],[-4,6],[2,4],[3,-6],[4,-2],[4,3],[3,9],[-8,-3],[-3,1],[-3,6],[0,4],[1,1],[2,4],[1,3],[-3,6],[-6,23],[-12,18],[-14,31],[-2,3],[-4,6],[-5,5],[-5,2],[1,3],[1,6],[1,3],[-6,14],[7,7],[24,3],[-5,4],[-7,1],[-13,-1],[-6,-3],[-4,1],[-1,4],[1,7],[0,5],[0,4],[-3,2],[2,4],[0,3],[-1,3],[-3,3],[0,3],[3,3],[1,3],[0,5],[-2,6],[2,6],[0,6],[-2,5],[-4,3],[1,4],[2,3],[2,2],[3,0],[0,3],[-3,2],[-2,3],[-2,3],[-1,5],[3,1],[3,2],[4,5],[-3,2],[-8,1],[-2,1],[-3,4],[-3,7],[0,7],[4,2],[0,4],[-4,5],[-8,36],[1,1],[1,1],[0,2],[-1,2],[0,1],[0,1],[1,4],[-4,16],[-1,9],[1,7],[2,0],[3,-3],[13,-9],[5,-1]],[[53774,77409],[11,-18],[9,1],[27,2],[14,-13],[3,-5],[5,-3],[15,-3],[2,4],[3,5],[4,6],[13,8],[4,8],[-6,10],[0,7],[1,4],[2,2],[4,-2],[7,-2],[4,-3],[4,-6],[7,-7],[7,-4],[7,-1],[1,0],[7,2],[13,10],[7,3],[6,-3],[11,-7],[13,-3],[13,1],[11,9],[5,8],[11,12],[3,10],[2,8],[1,13],[0,3],[2,7],[2,6],[7,12],[3,6],[4,12],[2,4],[1,1],[4,2],[3,-3],[0,-9],[0,-11],[0,-8],[3,-7],[3,-6],[10,-11],[2,-1],[2,-2],[1,-3],[1,-5],[-1,-10],[0,-3],[6,-8],[25,-17],[5,-16],[11,-4],[12,7],[6,13],[1,13],[5,0],[6,-6],[5,-7],[4,0],[2,-1],[3,-2],[3,-4],[14,0],[2,-4],[21,-26],[12,-3],[12,7],[15,8],[9,0],[3,1],[3,4],[5,10],[3,4],[-14,14],[-4,10],[-3,13],[-1,15],[0,1],[-2,6],[-2,7],[0,5],[3,2],[2,3],[1,4],[2,5],[8,4],[3,3],[4,2],[6,-1],[-2,6],[-4,11],[-1,1],[-4,8],[-1,1],[-1,-1],[-3,-1],[-2,-2],[0,-2],[-1,-2],[-4,2],[-2,3],[-2,3],[-2,8],[-3,4],[-2,1],[-1,3],[1,1],[1,6],[2,4],[12,9],[7,4],[27,13],[1,1],[3,4],[-1,5],[-1,6],[1,6],[3,2],[4,0],[3,-2],[3,-1],[3,2],[5,6],[3,2],[7,-2],[10,-3],[11,1],[5,2],[6,5],[3,6],[0,8],[-4,12],[-1,8],[1,7],[2,7],[2,7],[0,10],[0,18],[-1,12],[0,1],[3,12],[3,7],[1,6],[-1,3],[-3,6],[-3,4],[-8,4],[-3,3],[-3,4],[-5,8],[-4,14],[0,15],[4,16],[5,15],[1,2],[4,8],[6,4],[4,0],[20,-3],[6,5],[5,14],[3,4],[1,1],[4,3],[5,2],[12,0],[1,0],[1,0],[9,8],[9,7],[9,2],[3,2],[1,0],[6,5],[6,5],[3,5],[0,1],[2,8],[0,8],[0,9],[0,10],[9,-3],[1,0],[3,1],[3,3],[2,5],[2,3],[4,1],[3,-2],[6,-9],[4,-3],[5,-2],[2,0],[10,4],[6,0],[2,1],[0,2],[-1,5],[-1,3],[-5,4],[-1,3],[-1,5],[0,10],[0,5],[-3,16],[-1,8],[0,4],[0,5],[7,12],[1,1],[9,5],[4,4],[6,3],[2,5],[1,1],[2,-4],[1,0],[1,4],[4,-3],[3,-1],[4,0],[3,0],[2,-2],[5,-8],[2,-2],[3,0],[6,1],[3,-1],[2,-2],[7,-8]],[[55121,75674],[1,-10],[-1,-19],[0,-10],[2,-9],[3,-8],[3,-7],[3,-2],[4,-4],[2,-7],[-1,-9]],[[55137,75589],[-6,15],[-4,4],[-9,4],[-4,4],[0,9],[-48,49],[-5,12],[0,5],[0,8],[1,8],[-2,3],[-14,4],[-12,10],[-4,2],[-5,1],[-4,1],[-4,4],[-2,6],[6,0],[-6,9],[-2,5],[-2,6],[-4,-6],[-7,6],[-11,17],[-17,13],[-6,10],[4,13],[-8,-1],[-8,11],[-8,3],[-2,-1],[-2,-1],[-2,-2],[-2,-5],[-1,1],[-2,2],[-1,1],[-2,2],[-6,8],[-4,3],[5,-8],[3,-6],[3,-14],[0,-3],[-2,-2],[-1,1],[0,4],[0,4],[0,3],[-6,6],[-14,9],[-12,4],[-15,11],[-15,4],[-24,15],[1,15],[-7,7],[-19,7],[-22,24],[-9,5],[-5,5],[-2,2],[-3,1],[-30,0],[-9,3],[-5,3],[-5,5],[-2,6],[2,6],[0,4],[-2,2],[-2,3],[-1,4],[-2,3],[6,-1],[9,-12],[5,-3],[24,4],[22,-5],[42,-26],[10,-10],[8,-11],[0,-3],[0,-3],[1,-3],[1,-3],[1,-1],[3,1],[1,0],[5,-6],[3,-2],[3,-1],[1,2],[0,5],[1,2],[1,-1],[3,-3],[1,-1],[4,-1],[2,-2],[5,-5],[11,-5],[5,-5],[3,-6],[2,0],[4,1],[12,-18],[7,-3],[-9,10],[-2,7],[3,7],[-2,4],[-8,-5],[-7,7]],[[54903,75870],[4,9],[3,6],[7,2],[6,-2],[11,-7],[6,-2],[2,2],[3,3],[2,1],[3,-7],[1,-6],[0,-14],[0,-7],[9,-21],[3,-4],[10,-4],[7,-8],[12,-21],[6,-9],[15,-15],[49,-51],[9,-8],[15,-8],[8,0],[3,-3],[5,-13],[0,-1],[4,-4],[10,-2],[5,-2]],[[54682,75807],[18,-4],[3,-4],[1,-9],[-3,-8],[-6,-6],[-5,-1],[-1,4],[-2,1],[-5,3],[-3,-6],[-3,-1],[-4,3],[-3,8],[3,3],[1,5],[-2,3],[-2,-3],[-2,0],[2,7],[5,3],[8,2]],[[54905,75783],[5,-8],[15,-10],[5,-11],[-101,45],[-3,-6],[-6,4],[-5,8],[-3,6],[5,2],[9,5],[5,-1],[-2,0],[-1,-2],[-3,-4],[3,1],[3,-1],[3,-1],[2,-3],[2,4],[5,-5],[14,0],[10,-10],[14,-5],[7,-4],[-1,-1],[0,-1],[-1,-2],[16,-3],[3,3]],[[54758,75917],[5,-10],[4,-7],[10,-11],[-2,-5],[-5,5],[-6,-1],[-12,-4],[-26,9],[-12,-2],[-20,-12],[-14,-3],[-31,10],[-13,6],[-5,0],[0,-3],[-5,2],[-5,5],[19,16],[0,5],[-5,2],[-11,3],[-5,3],[6,5],[6,1],[7,-2],[6,0],[6,-6],[7,-5],[16,-6],[15,0],[4,2],[6,6],[33,5],[22,-11],[5,3]],[[54511,75978],[1,2],[1,2],[1,-1],[1,-6],[-1,-3],[-2,-3],[-3,-4],[-3,-6],[-4,-4],[-24,-12],[-10,-1],[-7,3],[6,5],[1,9],[-2,7],[-3,-1],[-2,0],[-4,8],[2,2],[1,1],[1,1],[2,1],[7,6],[10,3],[11,0],[8,-5],[-1,-3],[-1,-1],[7,4],[3,-1],[4,-3]],[[54636,76010],[-6,-1],[-31,11],[-23,13],[-8,3],[-5,5],[-4,2],[-12,8],[1,2],[2,2],[3,0],[3,-3],[3,0],[7,7],[2,-4],[1,2],[3,6],[0,-4],[10,5],[8,-8],[8,-10],[8,1],[-8,12],[-7,7],[-3,5],[5,-1],[7,1],[6,-8],[1,0],[3,3],[2,1],[3,0],[8,-2],[4,-2],[2,-3],[2,-5],[2,-5],[3,-3],[1,-3],[-1,-1],[-1,0],[5,-7],[6,-4],[7,-1],[26,0],[5,4],[4,-6],[5,-2],[17,-2],[17,-7],[25,2],[13,-2],[10,-8],[-69,0],[-70,0]],[[54583,76103],[-22,20],[-4,9],[2,-2],[1,-3],[2,0],[0,4],[1,1],[2,-1],[1,1],[-1,4],[0,4],[2,3],[3,1],[-4,11],[-4,13],[6,1],[2,-1],[11,-7],[54,-3],[34,-14],[0,-4],[-4,0],[3,-2],[3,-2],[2,1],[2,3],[2,-3],[5,-10],[3,-1],[3,0],[2,0],[2,-6],[-4,-11],[-2,-4],[-2,3],[-5,-11],[-9,-4],[-52,-2],[-17,4],[-18,8]],[[54553,76140],[-5,-8],[-7,3],[-19,19],[-14,9],[-7,1],[0,3],[1,1],[1,0],[-3,4],[0,4],[1,3],[4,2],[16,-2],[6,-5],[1,-10],[8,2],[5,-7],[5,-10],[7,-9]],[[54355,76319],[17,-12],[-17,7],[-2,-2],[-3,5],[-12,14],[-4,3],[2,5],[1,-3],[1,-1],[9,-2],[3,-4],[2,-6],[3,-4]],[[54239,76448],[1,-6],[21,-26],[4,-7],[3,-6],[8,-11],[-2,3],[-17,11],[-5,6],[-6,12],[-7,8],[-4,6],[-4,8],[-2,7],[4,3],[6,-8]],[[54250,76507],[-1,7],[-8,13],[-2,7],[5,0],[4,-4],[15,-17],[8,-3],[2,-1],[1,-3],[0,-10],[1,-3],[2,-3],[3,-3],[2,-2],[3,-4],[2,-6],[2,-8],[1,-7],[-2,2],[-2,2],[-2,0],[-3,1],[-2,1],[-1,2],[0,3],[-1,2],[-8,3],[-3,3],[-3,6],[2,2],[0,2],[-3,2],[-5,6],[-5,5],[-2,5]],[[54237,76538],[-4,6],[-2,8],[-3,5],[-3,-3],[-1,0],[-1,3],[0,1],[-1,2],[-1,2],[-2,-7],[-6,7],[-6,10],[-7,10],[-10,18],[-5,6],[1,3],[1,2],[-1,3],[-3,9],[46,-57],[6,-11],[2,-17]],[[54122,76615],[3,2],[1,0],[2,-2],[2,-5],[-4,-2],[-6,3],[-4,7],[1,9],[1,-6],[2,-4],[2,-2]],[[54206,76497],[20,-22],[1,-6],[-7,-4],[-13,17],[-4,-2],[1,-2],[1,-2],[1,-3],[7,-8],[2,-2],[2,-3],[2,0],[2,0],[0,-5],[-1,-3],[-3,2],[-2,5],[-1,1],[-10,10],[-4,5],[-4,8],[-11,26],[-7,12],[-11,37],[-6,8],[-7,6],[-24,39],[-1,6],[-1,5],[-4,9],[2,1],[1,-1],[1,0],[6,-10],[15,-19],[2,-4],[1,-5],[1,-5],[3,-2],[4,-2],[2,-3],[2,-2],[4,3],[-1,-6],[-1,-2],[4,-1],[2,-3],[2,-6],[0,-8],[1,-7],[3,-6],[13,-22],[3,-3],[4,0],[1,-3],[7,-18]],[[54132,76859],[-3,4],[-29,54],[-5,13],[-3,14],[1,0],[1,-1],[11,-19],[18,-41],[11,-13],[-1,18],[6,0],[10,-9],[8,-12],[6,-16],[4,-6],[11,-6],[3,-6],[2,-9],[4,-10],[-5,1],[-8,10],[-6,1],[1,6],[1,2],[-11,11],[-6,3],[-3,3],[-4,3],[-5,0],[0,-4],[16,-13],[22,-50],[14,-14],[-4,6],[-5,7],[-4,11],[-2,12],[11,-8],[26,-42],[6,-6],[4,-7],[8,-11],[4,-7],[-6,-2],[-6,6],[-7,8],[-6,5],[0,-4],[5,-2],[5,-5],[4,-7],[3,-7],[-5,0],[0,-3],[1,-2],[1,-1],[1,-2],[-6,3],[-12,8],[-7,1],[0,-4],[12,-12],[0,-4],[-6,3],[-6,5],[-5,7],[-4,9],[0,4],[4,0],[0,5],[-2,2],[-2,2],[-2,8],[3,-1],[2,1],[1,3],[2,4],[-7,8],[-3,1],[-2,-1],[-5,-3],[-2,0],[-3,5],[-5,16],[-17,21],[-3,1],[-14,14],[0,3],[1,1],[3,3],[2,1],[-4,10],[-8,18],[0,5]],[[54012,76862],[23,-37],[2,-11],[-6,-1],[-8,11],[-9,18],[-4,4],[0,4],[6,-2],[2,-2],[-8,15],[-4,6],[-5,3],[-2,-6],[-3,-2],[-4,1],[-3,4],[0,3],[2,0],[0,2],[-1,3],[5,9],[-2,12],[-8,19],[-1,8],[-2,18],[0,11],[5,-6],[7,-5],[5,-8],[-2,-14],[1,-5],[1,-9],[2,-16],[1,-6],[10,-21]],[[54094,76988],[0,-5],[1,-2],[3,-5],[-4,4],[-4,2],[-4,0],[-3,-2],[-12,20],[4,1],[3,-1],[3,-1],[3,-3],[0,4],[-1,2],[0,1],[0,2],[0,4],[4,-6],[1,-3],[2,0],[-3,12],[-3,5],[-3,4],[-1,2],[-1,6],[6,-1],[5,-3],[-1,2],[-1,6],[6,0],[4,-5],[0,-6],[-4,-5],[0,-4],[2,-2],[11,-16],[7,-6],[3,-5],[8,-20],[2,-12],[-3,-8],[-7,10],[-14,23],[-9,11]],[[54031,76919],[-2,-5],[1,-5],[1,-2],[4,4],[2,-8],[-2,-4],[-2,-4],[-2,-1],[-3,0],[-8,0],[-13,22],[-9,30],[1,26],[-2,1],[0,1],[-1,1],[-1,1],[-3,-2],[-1,4],[-1,8],[-1,19],[0,5],[-2,3],[-3,0],[-4,8],[-4,35],[-6,9],[0,3],[1,2],[1,3],[-2,11],[2,2],[7,-4],[2,-3],[5,-11],[2,-3],[5,0],[3,0],[2,4],[1,8],[-1,4],[-2,9],[1,6],[4,-7],[2,4],[-6,8],[-4,11],[-8,35],[-2,5],[-15,27],[-2,7],[-1,9],[4,12],[3,8],[3,6],[6,2],[6,-3],[2,-7],[-1,-24],[1,-14],[2,-11],[5,-22],[7,-21],[1,-3],[4,-4],[6,-2],[4,-2],[2,-8],[-1,-10],[-2,-11],[-3,-8],[2,-4],[-3,-10],[0,-9],[1,-19],[3,-17],[1,-10],[-4,-4],[1,-6],[4,-9],[1,-5],[0,-6],[-2,-7],[0,-8],[2,-13],[3,-9],[5,-8],[3,-10]],[[54089,77086],[-4,2],[-14,14],[-8,4],[-1,5],[0,9],[0,21],[-1,5],[-5,-4],[0,-4],[4,-4],[-8,-1],[-22,5],[-7,4],[-7,8],[-6,11],[-4,10],[3,5],[2,2],[3,1],[3,0],[1,3],[0,5],[0,6],[3,2],[10,1],[5,3],[-3,8],[4,8],[1,5],[1,5],[-1,5],[-1,4],[0,5],[4,5],[0,6],[0,6],[-2,3],[-2,1],[4,7],[4,0],[9,-7],[-3,0],[-1,0],[1,-4],[0,-4],[2,-2],[1,-2],[4,-11],[4,-14],[-8,-5],[5,-4],[8,-2],[6,3],[2,-11],[-4,-21],[2,-12],[4,-6],[5,-2],[12,0],[0,-17],[17,-24],[4,-16],[-2,0],[-3,-4],[-4,-1],[-3,1],[-3,4],[-4,-4],[0,-4],[4,-5],[-1,-4],[-5,-2],[-5,-1]],[[54530,76236],[7,-4],[11,-7],[-1,-3],[-11,-2],[-14,4],[-4,-1],[-2,-2],[-4,-1],[-4,1],[-3,2],[-2,2],[0,3],[2,2],[1,-1],[2,0],[4,-1],[2,3],[-1,5],[4,3],[13,-3]],[[54099,76700],[4,-4],[5,-7],[0,-4],[-4,0],[-3,-1],[-2,-3],[-3,1],[-3,6],[1,5],[3,0],[1,2],[0,4],[1,1]],[[54059,76729],[8,-9],[5,-10],[-1,-2],[-5,4],[-11,16],[-1,5],[5,-4]],[[54110,76751],[2,-6],[2,-11],[-3,-4],[-5,3],[-3,3],[-5,7],[1,5],[3,7],[-2,18],[1,1],[2,1],[3,0],[3,-2],[2,-6],[1,-6],[-2,-4],[0,-4],[0,-2]],[[53956,76919],[6,11],[4,-2],[0,-5],[-1,-4],[-4,-1],[-1,-1],[0,-1],[0,-2],[0,-3],[0,-3],[0,-4],[0,-1],[2,-6],[2,-7],[-2,-1],[-4,3],[-3,2],[-2,4],[0,5],[1,4],[2,12]],[[53774,77409],[1,2],[-1,5],[2,6],[0,4],[-3,1],[-2,2],[-1,4],[-1,6],[5,-2],[24,5],[22,5],[0,3],[-3,7],[-4,7],[-5,7]],[[64113,65125],[5,1],[7,13],[2,15],[-2,56],[-3,15],[-12,43],[0,9],[3,17],[0,11],[0,11],[-2,5],[-7,8],[-2,21],[-1,21],[-2,14],[2,11],[-1,12],[-1,14],[0,13],[2,32],[0,12],[-4,45],[3,25],[0,12],[-3,7],[7,19],[6,2],[3,-8],[1,-11],[2,-4],[0,-12],[8,-2],[-5,24],[-1,10],[0,11],[0,6],[1,7],[1,8],[-2,7],[-2,3],[-6,2],[-4,3],[3,8],[4,2],[4,0],[4,4],[1,4],[1,9],[2,2],[1,-2],[2,-5],[2,-1],[2,-5],[-1,-10],[-2,-16],[0,-12],[1,-5],[2,-11],[1,-3],[2,-3],[3,1],[0,2],[0,3],[1,14],[1,14],[1,6],[3,6],[2,-2],[2,-4],[4,0],[2,4],[4,17],[2,8],[-8,-6],[-7,-3],[-6,5],[-4,16],[0,8],[2,28],[0,3],[3,4],[1,3],[-1,3],[-1,3],[0,3],[0,18],[4,-2],[1,4],[1,7],[2,3],[2,-2],[2,-5],[1,-7],[0,-7],[4,5],[3,8],[0,10],[-1,10],[-2,-4],[-4,8],[0,13],[8,34],[1,11],[1,27],[2,-3],[1,-2],[1,-3],[1,0],[7,35],[5,16],[8,6],[4,2],[12,9],[2,3],[2,9],[6,13],[2,9],[5,-4],[6,4],[10,12],[22,-23],[4,-10],[1,-11],[-1,-15],[0,-13],[3,-5],[6,-4],[1,-10],[1,-12],[1,-11],[4,-8],[4,-1],[2,-1],[12,2],[7,-1],[5,-4],[5,-5],[5,-7],[3,-7],[3,-9],[2,-10],[5,-65],[0,-8],[-1,-7],[-2,-3],[-2,2],[-1,9],[-2,2],[-3,-3],[-2,-5],[-1,-7],[1,-6],[2,-4],[3,0],[1,4],[1,4],[5,-13],[-4,-14],[-5,-4],[-1,15],[-4,-2],[-10,-10],[4,-3],[5,-5],[3,-6],[2,-6],[-1,-13],[-4,-5],[-5,-3],[-4,-4],[-2,3],[-1,1],[0,-31],[0,-9],[0,-1],[-2,-5],[-2,-5],[-2,-6],[1,-6],[10,-34],[2,-8],[0,-9],[-1,-25],[-1,-31],[1,-13],[1,-7],[4,-3],[16,-5],[2,-5],[3,-12],[1,-10],[1,-11],[0,-49],[-3,-61],[2,-7],[-3,-5],[-4,-36],[-4,-11],[-9,-21],[-3,-14],[-2,-3],[-3,-1],[-2,-2],[-1,-6],[-7,-53],[-1,-3],[-1,-7],[-3,-5],[-2,-11],[-2,-25],[-3,-9],[-12,-13],[-2,-4],[-1,-14],[-4,-9],[-4,-7],[-2,-9],[-4,9],[1,8],[3,10],[1,12],[-2,6],[-5,2],[-10,-2],[0,10],[-2,0],[-3,-4],[-3,-2],[-5,-1],[-5,-4],[-2,-6],[1,-4],[0,-1]],[[64226,65053],[-19,-29],[-14,-9],[-16,-1],[-17,5],[-14,12],[-13,29],[-20,65]],[[64226,65053],[0,-4],[15,4],[2,-4],[3,-6],[2,-3],[3,5],[0,-5],[0,-5],[-1,-5],[-2,-2],[-1,-3],[0,-6],[1,-6],[1,-1],[-1,-20],[2,-3],[5,3],[4,6],[7,26],[4,8],[4,4],[2,7],[0,14],[4,-4],[5,-1],[4,-2],[2,-7],[2,-8],[3,-1],[4,0],[4,-6],[0,-4],[-4,-4],[-6,-3],[-5,-6],[-2,-9],[-1,0],[-6,-14],[-2,-4],[-1,-8],[-1,-4],[-17,-24],[-2,-7],[-1,-3],[-3,-9],[-2,-6],[0,-6],[-1,-13],[-1,-5],[0,-4],[0,-4],[0,-3],[-1,-1],[-3,0],[-1,-1],[-1,-2],[0,-12],[0,-7],[1,-3],[18,-3],[6,3],[4,4],[2,4],[3,3],[4,1],[18,-7],[5,-8],[8,-17],[12,-7]],[[64438,61719],[-44,-12],[-45,-13],[-44,-13],[-45,-13],[-44,-12],[-44,-13],[-45,-13],[-44,-13],[-45,-13],[-44,-12],[-45,-13],[-44,-13],[-45,-13],[-44,-12],[-45,-13],[-44,-13],[-45,-13],[-36,-10],[-26,-19],[-12,-13],[-40,-42],[-48,-49],[-53,-56],[-47,-49],[-36,-37],[-6,-9],[-22,-55],[-25,-65],[-44,-112],[-41,-105],[-27,-69],[-5,-19],[-13,-74],[-19,-104],[-8,-23],[-32,-38],[-34,-41],[-8,-7],[-9,-2],[-37,3],[-4,0],[-3,5],[-24,67],[-20,58],[-18,51],[-11,12],[-61,-17],[-46,-13],[-68,14],[-52,11],[-69,15],[-59,12],[-13,9],[-45,54],[-16,6],[-46,1],[-7,0],[-35,0],[-56,1],[-6,-3],[-17,-13],[-8,-1],[-19,8],[-17,1],[-27,-5],[-21,-11],[-6,0],[-11,7],[-6,1],[-4,-6],[-4,-15],[-4,-10],[-6,-5],[-7,2],[-11,11],[-4,1],[-6,-6],[-5,-11],[-3,-11],[-4,-9],[-7,-2],[-3,2],[-2,1],[-1,3],[-1,5],[1,12],[0,6],[-2,2],[-6,-4],[-5,-1],[-11,2],[-11,-2],[-5,0],[-5,4],[-12,19],[-19,44],[-12,14],[-20,18],[-5,3],[-9,1],[-5,2],[-6,-2],[-7,-4],[-24,-32],[-24,-42],[-14,-34],[0,-3],[16,-10],[5,-9],[3,-13],[-1,-11],[-6,-7],[-7,-3],[-7,-6],[-6,-9],[-1,-12],[0,-14],[-2,-12],[-6,-23],[-1,-13],[1,-9],[2,-10],[2,-13],[0,-13],[-2,-11],[-4,-23],[-2,-15],[1,-10],[6,-23],[3,-22],[4,-5],[10,-6],[3,-5],[2,-6],[0,-8],[-1,-6],[-2,-3],[-3,-2],[-2,-4],[-4,-12],[0,-8],[3,-9],[1,-14],[1,-1],[-2,-11],[-5,-2],[-11,7],[-7,3],[-4,-4],[-1,-8],[0,-12],[-1,-11],[-8,-39],[-3,-10],[-6,-10],[-12,-14],[-4,-3],[-11,-4],[-3,-3],[-1,-8],[1,-9],[0,-9],[-2,-10],[-8,-10],[-9,-9],[-14,-9]],[[61885,60165],[0,1],[0,22],[-2,6],[4,19],[-2,12],[-13,31],[-4,13],[-1,12],[1,25],[3,26],[0,11],[-5,2],[2,4],[-4,7],[-2,9],[-1,8],[3,5],[-2,6],[-8,14],[-1,4],[-4,11],[-6,15],[-2,3],[-9,10],[-3,0],[-3,-3],[-9,27],[3,26],[-2,10],[0,29],[-1,10],[-2,3],[-3,3],[-1,8],[-3,5],[-5,1],[-5,-1],[-4,1],[-4,6],[-2,10],[-4,16],[-1,9],[-2,20],[-1,9],[-2,4],[-13,11],[1,-10],[2,-9],[5,-17],[-6,-7],[3,-39],[-3,-11],[-2,12],[0,41],[-1,12],[-4,23],[-5,80],[-1,15],[-2,10],[2,30],[0,12],[-2,13],[-2,6],[-3,2],[-3,0],[-2,2],[-1,3],[-1,5],[-2,7],[-29,52],[-3,2],[-1,-3],[-2,5],[-3,12],[-5,16],[-2,10],[-1,4],[-2,2],[-6,-2],[-3,1],[-1,8],[-2,5],[-12,25],[0,-1],[-2,-2],[-2,-1],[-2,0],[-2,6],[-9,25],[-3,3],[-16,31],[-6,-5],[-11,15],[-6,-2],[-3,16],[-4,9],[-6,9],[-6,11],[-12,30],[-1,10],[0,8],[1,6],[-1,5],[-3,2],[-2,2],[-1,4],[1,5],[-1,5],[-12,21],[-4,12],[3,11],[-5,13],[-2,6],[-1,8],[-1,3],[-3,2],[-1,4],[1,9],[-6,1],[-5,3],[1,3],[0,2],[1,1],[2,2],[-2,7],[-3,4],[-3,0],[-4,-3],[2,6],[1,5],[1,6],[-2,4],[2,8],[-2,4],[-3,1],[-5,-1],[1,8],[-1,11],[-2,12],[-2,7],[-1,7],[-2,23],[-1,5],[-1,5],[0,31],[-1,4],[0,2],[-2,2],[-2,0],[-1,3],[-1,5],[0,5],[0,4],[-10,14],[-2,4],[0,6],[-2,7],[-2,7],[-4,3],[-2,3],[-1,3],[-1,2],[-1,-2],[-3,-6],[-1,-1],[-3,2],[-3,4],[-3,5],[-2,6],[-8,33],[-3,9],[-4,8],[-1,7],[-1,8],[1,11],[7,39],[1,12],[1,5],[1,2],[0,4],[-2,8],[-1,0],[-6,7],[-1,1],[-11,6],[-3,18],[0,4],[-6,14],[-1,2],[0,6],[0,7],[2,11],[1,7],[2,4],[1,5],[0,11],[2,12],[3,15],[-2,8],[-5,7],[-6,5],[-12,7],[-5,7],[-3,16],[-3,13],[-2,5],[1,7],[2,14],[-1,5],[-1,11],[-1,6],[-1,5],[-5,6],[-1,5],[-1,13],[-3,6],[-4,5],[-8,12],[1,2],[0,7],[-1,6],[-2,9],[-1,5],[-1,7],[-1,9],[0,7],[2,6],[3,4],[1,5],[-2,5],[1,6],[-1,6],[-1,5],[-1,7],[-24,17],[-6,7],[-15,30],[-6,7],[0,4],[3,-1],[6,-7],[2,24],[-1,30],[-2,13],[-13,37],[-5,7],[-14,4],[-6,-1],[-2,-6],[3,-14],[-4,6],[-4,13],[-2,12],[0,5],[-4,5],[-12,33],[-8,11],[-2,4],[0,4],[4,16],[-2,10],[-3,7],[-9,7],[-10,13],[-3,2],[-2,8],[-3,2],[-2,2],[-7,20],[-2,2],[-7,4],[-3,0],[-5,3],[-5,7],[-13,20],[-10,23],[2,8],[-5,7],[-7,4],[-9,3],[-1,3],[-3,7],[-4,8],[-3,6],[0,2],[-2,4],[-9,16],[-5,5],[-6,-1],[-7,-2],[-5,-4],[-3,-5],[-6,5],[-12,14],[-6,6],[0,-8],[2,-4],[2,-3],[2,-4],[1,-1],[3,-4],[2,-4],[-2,-2],[-5,3],[-27,34],[-4,6],[-4,4],[-5,3],[-5,5],[-4,18],[-5,9],[-15,23],[-8,15],[-16,54],[-6,9],[0,5],[3,-1],[2,1],[2,3],[1,5],[-4,1],[-4,4],[-6,13],[-2,6],[-2,18],[-1,6],[-9,21],[-1,10],[4,14],[-9,7],[-4,1],[0,-5],[2,-3],[1,-3],[2,-1],[-5,3],[-6,7],[-4,9],[2,9],[-2,3],[-2,3],[1,5],[1,5],[2,-4],[2,-4],[2,-2],[4,-2],[-2,7],[0,4],[0,3],[-1,6],[-1,0],[-2,-1],[-2,2],[-4,10],[-1,0],[0,-10],[-6,7],[-8,13],[-6,15],[0,13],[2,-3],[2,-4],[2,-1],[0,4],[-1,7],[-1,3],[-2,1],[-3,3],[-2,3],[-3,-1],[-3,-3],[-3,-1],[0,3],[-8,24],[-1,8],[-1,10],[0,14],[-1,6],[-4,5],[-1,5],[0,7],[-1,3],[-2,1],[-12,17],[-3,7],[-2,16],[-2,12],[-1,6],[1,3],[2,8],[1,4],[-2,8],[-10,32],[-4,5],[-9,28],[22,38],[3,15],[1,18],[-3,18],[-4,9],[0,3],[3,5],[0,8],[-5,20],[-3,-13],[-3,-2],[-3,7],[-2,12],[2,4],[-5,13],[-1,17],[1,18],[-1,17],[-3,16],[1,8],[5,4],[1,4],[2,8],[0,9],[-2,7],[-2,-12],[-2,-5],[-2,-3],[-4,0],[-1,3],[0,4],[-1,5],[-1,3],[-2,2],[-1,3],[-1,4],[-1,6],[0,10],[-1,5],[-1,0],[-3,4],[0,2],[-1,4],[-1,2],[-9,24],[-8,35],[-5,50],[0,11],[7,6],[8,-19],[5,0],[2,13],[0,11],[0,7],[1,2],[4,5],[1,3],[0,11],[3,24],[1,12],[-2,0],[-4,-20],[-2,8],[1,7],[2,6],[1,9],[0,24],[2,16],[9,21],[3,25],[2,6],[2,5],[3,6],[4,17],[4,9],[1,3],[0,7],[-1,7],[-3,4],[-3,-2],[-2,-5],[-2,-17],[-2,-6],[-7,-3],[0,17],[4,25],[-3,32],[2,33],[-2,16],[-2,8],[-8,21],[-7,33],[-5,18],[-2,9],[0,7],[8,14],[-1,4],[-13,30],[-5,9],[-3,-3],[1,-4],[5,-10],[2,-5],[1,-6],[0,-6],[1,-6],[2,-6],[-2,-4],[-4,16],[-8,24],[-7,17],[-15,51],[0,8],[9,-9],[9,-39],[4,-3],[3,-4],[3,1],[2,4],[2,7],[-3,7],[-5,18],[-3,3],[-2,2],[-2,4],[-2,6],[0,7],[-3,9],[-5,4],[-7,4],[-4,5],[-6,-3],[-4,10],[-6,25],[3,6],[3,8],[1,9],[1,8],[-1,17],[-1,9],[0,7],[-4,3],[-2,-9],[-4,13],[-4,13],[-5,20],[-5,11],[-3,13],[-3,9],[-1,8],[-2,11],[0,8],[-2,18],[-4,14],[-3,17],[-2,23],[-1,17],[-2,13],[0,10],[-5,10],[-2,7],[-1,9],[0,10],[-7,-7],[-2,4],[-3,0],[1,-10],[2,-5],[7,-5],[0,-5],[-9,2],[-6,11],[0,29],[-13,31],[-6,41],[-2,14],[-1,14],[-2,14],[-5,11],[-2,2],[-3,2],[-5,3],[-3,6],[-1,8],[-2,11],[-4,8],[-4,3],[-5,2],[-3,5],[-3,4],[-3,10],[-4,10],[-3,4],[-4,6],[-6,4],[-4,1],[-7,8],[-4,6],[-5,10],[-5,13],[-6,8],[-5,9],[-8,16],[-2,2],[-3,1],[-2,-2],[-2,-3],[-7,8],[-4,7],[-11,14],[-9,13],[2,7],[4,7],[7,2],[-2,5],[-5,-2],[-5,-6],[-2,8],[3,10],[1,9],[-2,3],[-2,-5],[-4,-1],[-1,-6],[1,-3],[1,-5],[1,-8],[0,-5],[-2,-4],[-6,5],[-8,-4],[-13,18],[-4,7],[-11,17],[-2,12],[-4,5],[-4,4],[-5,6],[-5,7],[-5,7],[-7,0],[-3,1],[-4,-7],[-1,-7],[2,-12],[-12,-1],[-3,9],[-8,7],[-7,-4],[-6,13],[-4,13],[-6,17],[-10,16],[-3,20],[3,12],[2,-1],[6,-7],[2,9],[-2,11],[-38,109],[-17,46],[-8,21],[-1,16],[1,4],[0,6],[0,6],[-1,4],[-2,2],[-3,-7],[-3,-1],[-5,6],[-4,10],[-5,21],[8,0],[6,-2],[6,-1],[7,5],[3,10],[1,30],[6,25],[-1,13],[-5,25],[-2,14],[2,35],[-1,13],[-1,13],[-3,12],[-3,11],[-5,12],[-3,6],[-3,4],[-3,5],[-2,11],[-3,4],[-5,9],[-6,11],[-5,14],[-3,13],[-1,6],[0,13],[-1,5],[-2,6],[-4,9],[-1,6],[5,6],[-4,14],[-13,24],[-2,8],[-4,25],[-2,4],[-4,5],[-1,3],[0,3],[0,8],[-1,3],[-2,7],[-4,17],[-3,7],[-3,5],[-8,6],[-4,4],[-11,34],[-7,17],[-6,1],[0,-7],[2,-7],[1,-6],[-4,-3],[-3,2],[-9,12],[-4,2],[-2,3],[-7,16],[-1,6],[-1,3],[1,13],[-1,3],[-3,2],[-2,3],[-3,15],[-1,14],[3,13],[6,13],[3,12],[1,16],[-1,17],[-2,13],[-7,14],[-9,9],[-9,5],[-10,1],[-10,7],[-6,17],[-18,80],[-6,21],[-12,31],[-21,97],[-22,76],[-13,32],[-16,28],[-7,16],[-5,25],[-8,28],[-6,37],[-5,-2],[-4,6],[-6,21],[-18,30],[-22,55],[-8,30],[-1,4],[-1,6],[1,5],[3,9],[0,5],[-1,7],[-7,19],[-23,53],[-13,17],[-3,6],[-7,15],[-8,23],[-8,16],[-11,38],[-3,15],[-1,12],[0,21],[-1,11],[-3,8],[-9,18],[-5,16],[-7,36],[-6,16],[-2,3],[-6,4],[-2,3],[-2,4],[-1,8],[-3,11],[-1,17],[-3,8],[-14,31],[-4,15],[-3,5],[-4,4],[-14,20],[0,-4],[-2,0],[-3,8],[4,6],[6,5],[5,6],[3,-3],[-1,4],[-2,9],[-2,1],[-8,3],[-2,2],[-2,0],[0,-4],[-1,0],[-2,4],[-1,4],[-2,3],[-2,1],[-5,0],[-3,0],[-3,7],[-13,17],[-3,-3],[-3,0],[-3,0],[1,-3],[1,-3],[1,-3],[-3,3],[-3,4],[-3,2],[-3,-3],[-3,-3],[-9,-5],[-2,-2],[-1,-3],[-1,-5],[-2,0],[0,4],[-2,0],[-4,-2],[-6,2],[-5,0],[-4,-8],[-1,3],[-1,1],[0,4],[2,0],[0,5],[-1,4],[1,3],[3,3],[2,1],[-2,3],[-3,0],[-3,0],[-3,-3],[0,-4],[2,0],[0,-4],[-3,-2],[-2,-4],[-3,-10],[0,2],[-1,1],[-1,0],[-1,1],[1,4],[2,3],[2,3],[2,2],[0,3],[0,2],[0,3],[-4,1],[-3,-2],[-2,-3],[0,-7],[-2,1],[0,1],[-1,-1],[-1,-1],[0,2],[0,4],[0,1],[-2,0],[0,-4],[-2,0],[-1,5],[-2,3],[-1,0],[-2,-4],[-2,4],[-1,2],[-1,5],[-1,2],[-2,8],[-1,-2],[-1,-1],[-1,-2],[-1,-3],[-4,5],[-1,-3],[0,-6],[-1,-5],[-2,-2],[-4,-3],[-1,-3],[0,-3],[5,-9],[0,-4],[-1,0],[-1,-1],[-1,-2],[0,-1],[-2,4],[-2,-10],[0,-8],[-2,-5],[-6,-1],[1,2],[0,1],[1,1],[-2,4],[-1,9],[-1,7],[0,15],[-2,4],[-7,-6],[2,7],[-2,4],[4,12],[3,4],[2,2],[0,3],[2,2],[2,4],[2,2],[-2,4],[1,3],[1,2],[2,2],[2,1],[0,-3],[-1,0],[-1,0],[0,-1],[3,-3],[2,-1],[2,2],[0,6],[-1,0],[0,4],[-2,4],[0,4],[2,3],[3,1],[0,4],[0,6],[2,27],[1,-1],[2,-2],[1,-1],[0,2],[0,6],[-1,-2],[-1,-1],[-2,3],[6,10],[5,20],[5,21],[3,28],[5,15],[2,18],[2,10],[8,26],[-2,27],[-1,28],[-4,26],[5,37],[4,19],[4,15],[0,4],[-2,0],[5,15],[1,7],[-2,7],[0,4],[3,18],[0,8],[-5,2],[0,4],[4,13],[5,24],[2,26],[-3,14],[0,9],[3,11],[2,12],[6,53],[1,8],[3,13],[0,4],[0,8],[3,5],[7,7],[-2,10],[-1,13],[1,9],[3,-3],[1,1],[0,2],[0,1],[1,0],[-2,8],[-1,10],[2,9]],[[59708,67852],[30,-10],[33,-11],[44,-14],[38,-12],[41,-13],[33,-11],[16,-5],[32,-10],[29,-10],[8,1],[7,5],[30,47],[29,45],[33,50],[21,33],[18,56],[17,54],[13,41],[15,48],[7,13],[7,7],[25,10],[24,9],[40,16],[40,15],[37,14],[33,13],[6,10],[12,55],[9,42],[10,45],[8,36],[4,11],[6,10],[31,31],[33,35],[21,21],[1,2],[1,0],[0,1],[-14,30],[-31,65],[-30,66],[-31,66],[-30,66],[-1,2],[-1,2],[-1,2],[0,2],[-37,71],[-35,71],[-1,1],[-36,71],[-36,72],[11,6],[58,32],[69,37],[68,38],[17,9],[52,28],[10,5],[53,28],[62,33],[63,33],[62,33],[32,16],[9,8],[33,56],[6,8],[2,2]],[[62925,67701],[31,-8],[31,-7],[31,-7],[31,-7],[28,-7],[27,-7],[28,-7],[28,-6],[15,-4],[1,0],[3,-11],[13,-43],[16,-79],[1,-15],[1,-32],[3,-18],[3,-17],[5,-14],[6,-10],[6,-8],[5,-11],[3,-15],[14,0],[50,1],[49,1],[50,1],[49,1]],[[63453,67372],[6,-13],[4,-5],[7,-6],[1,-4],[3,-26],[0,-20],[-3,-13],[-6,4],[-1,-4],[-1,-2],[0,-2],[5,-1],[5,2],[3,6],[2,9],[3,-4],[0,-5],[-3,-11],[-1,-16],[-1,-7],[2,-14],[3,-11],[23,-49],[2,-7],[-4,-11],[-2,-11],[0,-12],[1,-12],[3,-10],[9,-23],[2,-6],[-1,-7],[0,-2],[4,-5],[10,-8],[3,-1],[9,1],[3,-1],[5,-6],[4,-2],[1,-1],[0,-4],[-1,-4],[-1,-3],[-2,-1],[-2,0],[-2,1],[-5,-4],[-1,-4],[0,-8],[3,-8],[5,-11],[7,-9],[5,-5],[0,-2],[6,-18],[12,-21],[1,-6],[-3,-12],[0,-7],[0,-7],[1,-3],[0,-5],[-3,-9],[-3,-10],[-4,-5],[2,7],[0,5],[0,14],[0,9],[2,4],[1,5],[-1,9],[-5,-8],[-4,-22],[-5,-7],[5,26],[1,7],[-1,11],[-3,-1],[-2,-8],[-5,-42],[0,-9],[-1,-2],[-1,-3],[0,-4],[4,1],[1,3],[2,10],[2,3],[0,-26],[1,-6],[3,0],[2,6],[2,6],[2,-7],[0,-8],[0,-9],[3,-3],[3,3],[2,6],[1,6],[0,-11],[0,-3],[-2,-3],[2,-5],[-1,-4],[-1,-2],[-4,0],[3,-13],[1,-4],[-6,7],[-3,0],[-2,-7],[6,-4],[5,0],[3,6],[3,10],[2,0],[2,-8],[-4,-7],[-1,-11],[2,-10],[5,0],[2,4],[-2,4],[-2,4],[0,4],[2,6],[3,3],[6,3],[6,1],[3,-4],[10,-17],[11,-10],[2,-7],[-5,-7],[4,-4],[3,1],[2,4],[-2,7],[5,-4],[5,-3],[11,-1],[2,1],[5,6],[2,1],[3,-1],[5,-3],[3,-1],[6,-3],[4,-7],[7,-18],[2,-3],[2,-2],[2,-2],[1,-5],[1,-5],[1,-10],[0,-5],[-3,0],[-2,3],[-1,5],[1,8],[-2,0],[-6,-13],[-16,3],[-5,-10],[-2,0],[-2,10],[-5,0],[-10,-10],[2,-3],[6,-3],[3,-3],[3,-3],[1,-3],[2,-3],[4,-3],[2,-4],[1,-3],[2,1],[4,9],[0,2],[2,2],[0,4],[1,1],[2,-2],[2,-3],[3,-2],[-2,-9],[-3,-4],[-3,-3],[-2,-5],[-1,-6],[0,-16],[0,-6],[2,1],[4,3],[3,5],[3,5],[3,2],[4,-2],[5,-6],[-2,-12],[1,-11],[2,-12],[1,-12],[0,-25],[1,-11],[5,2],[-1,-11],[2,-4],[3,1],[3,5],[-1,9],[2,6],[5,1],[4,-7],[2,4],[1,-7],[-1,-6],[-1,-6],[-1,-8],[-1,-4],[-3,-2],[-3,0],[-3,1],[3,-7],[6,-3],[3,-7],[2,3],[2,5],[3,12],[1,-2],[0,-1],[1,0],[-3,-11],[3,-2],[7,4],[4,-1],[8,-6],[4,-1],[-7,16],[-3,9],[4,8],[4,0],[3,-3],[2,-4],[3,-2],[2,2],[5,10],[-1,-9],[-2,-14],[0,-9],[1,-13],[2,-8],[1,-3],[6,-5],[5,-11],[16,-48],[8,-19],[2,-4],[8,-7],[3,-3],[4,-9],[3,-4],[17,-15],[11,-15],[6,-1],[6,0],[7,-1],[9,-10],[8,-15],[14,-36],[4,-16],[21,-28],[4,-10],[1,-15],[-12,21],[-7,8],[-15,4],[-4,3],[-3,6],[-2,22],[-2,-4],[-3,-10],[-1,-9],[0,-8],[0,-7],[1,-6],[1,-6],[3,-6],[1,-3],[-1,-36],[0,-10],[8,-45],[3,-9],[4,-9],[6,-6],[23,-16],[8,-14],[5,-20],[2,-27],[0,-64],[-1,-14],[-3,-12],[-5,-7],[0,9],[-2,3],[-3,-2],[-3,-6],[2,-15],[-1,-23],[-2,-23],[-2,-16],[-5,6],[-1,8],[0,10],[0,8],[-2,7],[-3,5],[-2,4],[-3,4],[-1,3],[-1,0],[-1,1],[-1,17],[0,4],[-2,4],[-2,6],[-3,6],[-4,4],[-3,-2],[-7,-27],[-2,-3],[-3,-4],[1,-8],[3,-8],[2,-3],[0,-4],[3,-9],[0,-5],[-1,-2],[-2,-1],[-2,-2],[-1,-5],[1,-9],[1,-8],[0,-9],[-2,-9],[5,-3],[4,5],[2,9],[-1,10],[3,-2],[2,-3],[3,-8],[1,-1],[1,1],[1,-1],[0,-4],[1,-4],[0,-2],[1,-1],[1,0],[7,-3],[3,-8],[2,-10],[3,-11],[0,-4],[-6,-11],[3,-28],[7,-31],[5,-19],[17,-39],[7,-23],[3,-28],[-2,0],[-5,28],[-2,5],[-3,1],[-4,4],[-4,5],[-3,10],[-5,6],[-4,1],[0,-11],[2,-9],[7,-9],[2,-7],[1,6],[1,3],[2,0],[10,-43],[32,-78],[7,-13],[-1,8],[-1,9],[-1,8],[2,3],[3,3],[1,-2],[2,-13],[1,-3],[1,-1],[1,-2],[2,-8],[5,-5],[10,-5],[2,-6],[6,-27],[-2,-4],[3,-9],[4,-15],[3,-18],[1,-13],[0,-7],[-2,-13],[0,-8],[1,-7],[1,-6],[1,-4],[2,-10],[4,-14],[0,-10],[-1,-24],[2,-24],[2,-13],[3,-8],[2,12],[8,-12],[7,-18],[3,-10],[5,-9],[6,-39],[7,-9],[5,-10],[2,-23],[1,-36],[1,-7],[3,-10],[3,-10],[3,-6],[4,1],[6,11]],[[61718,60363],[0,-8],[-1,-11],[-2,-13],[1,-10],[2,-17],[-2,-12],[0,-1],[-7,1],[-7,19],[-7,4],[-6,1],[-3,6],[8,6],[5,8],[-2,12],[-7,8],[-7,-2],[-8,-2],[-6,-3],[-5,-6],[-5,-5],[-5,4],[-7,12],[-4,9],[-6,3],[-8,11],[-6,10],[-4,13],[-2,18],[-4,7],[-5,0],[-4,1],[1,4],[0,13],[-4,11],[-3,11],[1,11],[4,-2],[1,-5],[4,-5],[10,-10],[6,-14],[3,-9],[1,-14],[0,-7],[5,-11],[5,-9],[2,-2],[10,2],[3,-11],[6,-1],[5,4],[5,1],[3,-7],[0,-7],[4,0],[8,7],[-8,4],[-4,13],[3,10],[3,17],[1,6],[4,1],[2,-1],[2,-2],[8,-10],[0,-10],[4,-12],[-1,-6],[7,-2],[2,-12],[11,-9]],[[61644,60414],[-5,7],[-4,10],[-7,19],[-6,16],[-2,7],[3,6],[7,1],[5,3],[4,6],[2,10],[3,0],[1,0],[1,12],[-2,14],[-4,3],[-3,4],[-4,0],[-6,3],[-4,1],[0,2],[2,5],[2,2],[1,-5],[9,-2],[7,-5],[5,-12],[0,-2],[2,-16],[0,-11],[-2,-13],[1,-11],[9,-4],[3,-13],[-11,-1],[-4,-8],[2,-10],[7,-5],[4,-5],[5,-5],[2,-14],[0,-7],[-9,10],[-10,6],[-4,2]],[[63768,66668],[5,-5],[15,-8],[14,-7],[-5,-4],[-5,2],[-4,4],[-4,2],[-5,-2],[-4,-3],[-4,-5],[-3,-6],[-3,4],[-1,0],[-3,3],[-1,1],[0,4],[4,3],[0,3],[-1,4],[-1,2],[-1,2],[-3,2],[-3,0],[-3,-3],[-3,-1],[-3,-3],[-4,-7],[-3,-9],[-2,-10],[-1,16],[6,15],[8,11],[8,3],[3,-1],[3,-2],[4,-5]],[[60285,65524],[3,-5],[1,-3],[-1,0],[-1,1],[-2,0],[0,-2],[1,-4],[-2,1],[-6,7],[-1,6],[0,4],[-2,1],[-4,-2],[-2,5],[-1,8],[-3,0],[-3,-4],[0,4],[2,11],[2,6],[4,0],[4,-1],[3,-4],[3,-12],[1,1],[1,4],[1,-3],[2,-19]],[[60261,65523],[5,0],[0,-2],[-5,-6],[-2,-3],[-3,-7],[-2,-10],[-5,-6],[-6,7],[-5,12],[-5,7],[-11,24],[-1,1],[-1,3],[0,3],[1,-1],[0,2],[0,3],[-3,6],[-3,9],[0,4],[3,-1],[3,-5],[5,-12],[2,-4],[5,-5],[10,-8],[5,-3],[3,0],[3,-3],[1,-4],[-6,-1],[-1,-8],[3,-7],[3,2],[3,7],[4,6]],[[60235,65591],[-2,1],[-4,7],[1,8],[3,6],[4,-1],[3,-7],[0,-7],[-3,-5],[-2,-2]],[[60219,65570],[-3,4],[-1,0],[-1,1],[-2,5],[0,5],[-2,2],[-4,1],[-1,3],[1,-1],[0,2],[-3,7],[-4,5],[-5,0],[-2,-3],[-1,-2],[-2,-2],[0,6],[2,8],[5,2],[5,-3],[14,-18],[1,-4],[2,-7],[4,-5],[4,-3],[6,-8],[10,-16],[3,-5],[-1,-2],[-1,-2],[1,-2],[-2,1],[-4,7],[-4,4],[-3,1],[-1,4],[-1,7],[-3,2],[-2,-1],[-2,1],[-3,6]],[[60250,65600],[-1,17],[0,4],[0,7],[2,4],[2,2],[3,-2],[1,-6],[0,-5],[0,-5],[-2,0],[-1,3],[-1,-1],[1,-5],[0,-2],[-1,1],[2,-8],[2,-16],[-1,-5],[-3,9],[-2,2],[-1,6]],[[60189,65614],[0,-4],[-2,-6],[-2,-3],[-2,1],[-4,6],[-22,21],[-6,3],[-2,-8],[-3,3],[-5,10],[-3,8],[-2,12],[2,10],[7,14],[3,7],[2,3],[1,-4],[-2,-6],[-4,-14],[0,-5],[2,-5],[2,-3],[1,0],[2,-1],[1,-4],[3,-3],[2,-1],[7,-14],[4,-6],[3,0],[3,1],[0,-2],[1,-4],[1,-5],[2,-2],[3,1],[-1,1],[0,2],[2,3],[2,-1],[4,-5]],[[60151,65708],[-1,5],[-1,12],[1,25],[5,20],[7,13],[2,2],[-4,-7],[-3,-10],[-3,-10],[0,-11],[2,-11],[5,-10],[3,-1],[1,-1],[0,-4],[-2,-8],[-1,-7],[0,-4],[1,-3],[2,-3],[3,1],[1,-1],[-1,-5],[-3,-2],[-4,1],[-5,8],[-3,4],[-2,7]],[[57016,39932],[-11,-51],[0,-17],[2,-14],[8,-41],[11,-40],[8,-16],[9,-12],[9,-14],[5,-21],[9,-46],[9,-30],[3,-12],[2,-25],[2,-8],[3,-12],[18,-39],[10,-13],[4,-8],[13,-38],[8,-15],[11,-11],[7,-12],[3,-21],[1,-44],[10,-44],[35,-64],[8,-46],[0,-1],[-1,-12],[-5,-22],[-1,-12],[1,-15],[3,-11],[6,-23],[9,-23],[6,-26],[27,-152],[7,-22],[11,-13],[12,-7],[15,0],[3,-3],[3,-4],[2,-5],[3,-8],[0,-4],[-2,-13],[-2,-7],[-2,-2],[0,-1],[4,-5],[2,-2],[8,-3],[7,-7],[7,-24],[6,-10],[5,-4],[11,-5],[5,-4],[11,-15],[5,-10],[2,-11],[2,-13],[4,-8],[5,-5],[13,-7],[4,-5],[1,-2],[2,-4],[4,-11],[4,-9],[5,-5],[5,-2],[7,0],[10,-4],[32,-32],[10,-4],[9,0],[9,-2],[9,-10],[3,-6],[4,-13],[3,-5],[4,-3],[3,0],[2,0],[4,0],[6,-2],[5,-3],[5,-7],[4,-10],[14,-73],[5,-70],[-4,-85],[10,11],[10,2],[32,0],[22,-6],[16,6],[9,-9],[11,0],[5,-4],[4,-8],[2,-11],[0,-23],[-4,-21],[-2,-21],[7,-47],[1,-24],[-5,-48],[-1,-6],[-2,-5],[-2,-6],[0,-8],[0,-6],[-1,-14],[0,-6],[2,-33],[0,-12],[-3,-32],[0,-10],[2,-11],[9,-26],[5,-9],[19,-29],[8,-20],[7,-23],[10,-24],[3,-8],[0,-5],[0,-9],[1,-4],[2,-6],[4,-10],[8,-33],[1,-7],[-1,-4],[-2,-7],[-1,-6],[1,-1],[2,-1],[2,-4],[-2,-7],[1,-6],[2,-1],[1,1],[2,-2],[1,-5],[3,-12],[2,-6],[3,-7],[4,-5],[4,-3],[16,-2],[21,-8],[33,-1],[11,-4],[11,-8],[22,-23],[6,-3],[5,2],[4,3],[10,5],[3,3],[3,1],[9,-4],[8,-2],[4,-3],[11,-17],[13,-8],[40,-37],[9,-5],[17,-2],[8,-4],[5,-6],[11,-7],[4,-8],[1,-11],[-3,-14],[-5,-14],[-3,-13],[-1,-25],[2,-25],[5,-22],[9,-18],[10,-11],[10,-4],[26,2],[2,-2],[3,-7],[1,-5],[2,-12],[2,-5],[21,-37]],[[58443,41210],[0,-48],[1,-56],[0,-71],[1,-41],[31,0],[20,0],[45,1],[30,0],[12,-5],[11,-16],[5,-10],[4,-6],[5,-2],[6,6],[3,5],[5,12],[4,5],[3,-1],[2,-4],[2,0],[2,8],[7,9],[13,-2],[28,-14],[5,-4],[5,-6],[4,-11],[5,-20],[3,-8],[6,-6],[2,-4],[2,-5],[0,-6],[2,-4],[1,0],[2,1],[2,0],[1,-2],[0,-2],[-1,-3],[1,-2],[5,-1],[6,0],[6,-2],[4,-6],[11,-11],[46,-6],[7,-7],[8,-13],[16,-38],[6,-9],[11,-13],[4,-5],[2,-11],[2,-22],[2,-9],[4,-5],[29,-9],[55,3],[22,-7],[29,-24],[44,-36],[33,-28],[3,-6],[1,-8],[1,-14],[2,-23],[8,-12],[1,-1],[0,-1],[3,4],[4,3],[4,1],[9,-1],[17,-8],[8,-1],[5,3],[8,11],[5,4],[3,1],[-2,-17],[-7,-63],[-5,-19],[-5,-12],[-19,-40],[0,-3],[16,-58],[11,-42],[7,-34],[4,-37],[0,-22],[1,-5],[1,-13],[3,-12],[2,-4],[6,-7],[2,-6],[0,-9],[-1,-9],[-2,-4],[-4,-13],[-11,-43],[-1,-5],[-3,-3],[-2,-4],[0,-7],[3,-20],[2,-5],[4,-7],[11,-10],[4,-10],[1,-13],[-1,-11],[-5,-22],[-1,-23],[1,-26],[-1,-21],[-7,-10],[-5,-4],[-3,-10],[-2,-13],[0,-11],[0,-12],[3,-16],[1,-11],[-1,-8],[-2,-3],[-3,-3],[-1,-5],[0,-6],[4,-8],[-1,-5],[-1,-12],[1,-13],[9,-61],[1,-20],[0,-4],[-2,-13],[-3,-8],[-1,-4],[-1,-5],[2,-9],[4,-13],[13,-21],[5,-11],[2,-12],[-1,-6],[-8,-13],[-6,-17],[-1,1],[0,-6],[4,-9],[1,-6],[-2,-12],[-5,-7],[-6,-6],[-5,-7],[-5,-5],[-6,-3],[-4,-4],[-4,-8],[-1,-10],[1,-13],[4,-21],[8,-34],[2,-16],[0,-19],[-2,-16],[-3,-13],[-5,-8],[-7,-1],[-12,2],[-8,-3],[-27,-25],[0,-6],[2,-32],[2,-8],[3,-5],[-3,-4],[-3,-4],[-3,-5],[-1,-8],[3,-13],[0,-6],[0,-8],[0,-8],[2,-5],[4,-2],[3,0],[18,5],[4,-1],[3,-3],[2,-2],[1,-4],[1,-7],[1,-7],[2,-5],[3,-4],[2,-6],[2,-20],[-8,-74],[-1,-14],[-1,-11],[-2,-10],[-4,-13],[-10,-24],[-1,-6],[1,-17],[-2,-24],[0,-12],[3,-7],[6,-1],[5,2],[4,-3],[1,-13],[1,-11],[-2,-43],[0,-5],[0,-6],[1,-8],[-1,-5],[-2,-6],[-1,-6],[1,-13],[3,-6],[5,-2],[7,-1],[6,3],[8,18],[5,3],[5,-6],[1,-12],[-3,-23],[3,-10],[4,-9],[6,-8],[6,-5],[3,-7],[-1,-11],[-2,-14],[0,-25],[-5,-34],[-1,-44],[1,-14],[1,-5],[-15,1],[-4,-6],[-1,-18],[-2,-9],[-5,-3],[-4,-1],[-3,-6],[-2,-28],[-1,-10],[-4,-14],[-1,-5],[1,-5],[2,-7],[0,-5],[-2,-18],[-2,-9],[-2,-7],[-12,-31],[-18,-45],[-9,-34],[-9,-36],[-7,-15],[-12,-4],[-13,3],[-12,-3],[-9,-23],[-3,-25],[0,-24],[4,-64],[3,-61],[-1,-23],[-7,-26],[-14,-36],[-21,-55],[1,-5],[4,-6],[3,-6],[1,-1],[1,0],[1,-1],[0,-4],[-1,-4],[-1,-3],[0,-2],[20,-69],[0,-3],[1,-3],[-11,14],[-10,-22],[-14,-30],[-14,-32],[-15,-32],[-14,-32],[-15,-33],[-14,-32],[-15,-32],[-14,-32],[-15,-32],[-15,-33],[-14,-32],[-15,-32],[-14,-32],[-15,-33],[-14,-32],[-15,-32],[-15,-32],[-14,-32],[-18,-25],[-22,-31]],[[57938,76374],[-1,-8],[-1,-72],[1,-8],[3,-10],[3,-7],[2,-7],[0,-8],[-3,-16],[-4,-18],[-5,-16],[-4,-7],[-3,-2],[-13,-19],[-3,-6],[-1,-8],[0,-10],[-4,8],[-13,11],[-2,4],[-3,5],[-7,5],[-13,4],[-7,-2],[-10,-9],[-5,-2],[-18,2],[-6,-2],[-11,-9],[-7,-17],[-2,-5],[-15,-63],[-4,-9],[-5,-6],[-19,-8],[-3,-3],[-2,-1],[-2,0],[0,-4],[9,-12],[2,-4],[0,-7],[-6,-26],[-3,-29],[-2,-5],[-3,-4],[-2,-4],[-1,-7],[0,-13],[5,-27],[1,-12],[-2,-40],[2,-9],[-6,-7],[0,-10],[2,-12],[2,-16],[0,-28],[-1,-11],[-1,-5],[-14,-1],[-15,4],[-12,1],[-3,-1],[-2,-4],[-2,-8],[-1,-6],[1,-6],[2,-4],[4,-4],[-8,-2],[-12,-8],[-6,-2],[-5,-7],[1,-15],[3,-17],[2,-10],[-4,4],[-26,1],[-8,-8],[-4,-12],[-2,-15],[-3,-14],[-5,4],[-3,-6],[0,-9],[4,-5],[-1,-5],[0,-3],[1,-9],[1,5],[0,1],[-1,2],[2,12],[8,-14],[3,-2],[4,5],[2,7],[3,3],[5,-7],[2,6],[2,-1],[3,-3],[2,-2],[4,2],[3,3],[2,1],[4,-1],[0,-4],[-1,0],[-1,-1],[2,-10],[3,-7],[4,-2],[7,7],[0,-5],[2,-3],[2,-1],[3,1],[0,-4],[-1,-1],[-5,-3],[2,-6],[2,-1],[2,-1],[-2,-6],[-1,-8],[2,-9],[3,-6],[4,-2],[3,0],[4,2],[4,0],[0,-3],[-1,-4],[0,-3],[1,-3],[2,-3],[-7,-9],[-3,-11],[1,-11],[7,-9],[-1,-2],[-1,-3],[10,-10],[2,-4],[1,-4],[3,-6],[4,-5],[3,-3],[0,-2],[-1,-5],[-1,-1],[9,-8],[2,-4],[5,-16],[14,-15],[2,-6],[3,-6],[3,-2],[-1,-6],[2,-6],[2,-4],[3,-4],[0,-3],[0,-1],[-1,0],[-1,0],[3,-6],[2,-7],[1,-9],[-2,-7],[1,-6]],[[78586,57367],[-2,12],[1,30],[-1,14],[-3,17],[-19,52],[-12,20],[-2,7],[0,38],[-2,26],[-5,17],[-33,66],[0,6],[6,-1],[-3,9],[-11,17],[1,6],[0,4],[-5,-5],[-4,-2],[-3,-4],[-2,-11],[4,-55],[4,-14],[0,-4],[-1,-7],[-2,0],[-3,3],[-3,2],[-1,2],[1,13],[-1,5],[-5,14],[-7,11],[-9,9],[-30,22],[-4,6],[-4,1],[-3,-10],[-2,0],[-6,6],[-2,2],[-1,5],[0,5],[1,4],[0,2],[-2,12],[-5,18],[0,11],[7,-4],[7,5],[6,9],[4,10],[3,14],[-3,12],[-4,5],[-3,-6],[2,-2],[2,-3],[1,-4],[0,-4],[-4,-10],[-5,-6],[-5,1],[-3,13],[1,27],[2,12],[3,12],[-2,0],[-1,-4],[-5,-16],[-1,0],[-2,7],[0,7],[0,8],[2,6],[-4,-5],[-4,-3],[-4,1],[-2,7],[-4,-3],[-2,-1],[3,-3],[1,-5],[0,-6],[-2,-6],[2,0],[6,8],[2,-6],[1,-6],[0,-6],[-1,-6],[6,-9],[3,-19],[-3,-11],[-10,10],[-17,37],[-8,9],[-4,5],[1,6],[-5,12],[-6,14],[-4,15],[1,12],[1,-5],[1,-2],[2,0],[2,-1],[-4,5],[2,5],[4,6],[2,8],[-2,0],[-2,-5],[-2,-3],[-2,1],[-2,3],[3,5],[1,2],[2,1],[-14,-1],[-1,5],[5,12],[-11,-1],[-4,-2],[0,-5],[4,-5],[2,-8],[4,-7],[5,0],[-1,-7],[0,-8],[-1,-17],[-9,30],[-4,9],[-5,3],[-5,1],[-3,-3],[0,26],[-1,6],[-1,6],[-1,3],[-1,-2],[0,-4],[-3,-4],[-1,-3],[4,-26],[0,-6],[-9,15],[-4,9],[-2,8],[5,-4],[-1,10],[-2,2],[-2,0],[-2,0],[-2,5],[-2,4],[0,5],[-2,7],[-4,13],[-6,11],[-6,9],[-7,7],[-4,3],[-18,1],[-5,-3],[-2,-8],[-3,-9],[-2,-8],[-5,-5],[-5,-1],[-12,2],[-2,-2],[0,-4],[0,-4],[-1,-2],[-1,-1],[-3,1],[-4,-1],[-9,5],[-12,-4],[-6,-5],[-3,-5],[-1,-11],[-3,-1],[-7,10],[-19,18],[-21,10],[-45,12],[-6,-2],[-9,-12],[-12,-4],[-3,-6],[-1,-10],[0,-15],[-14,13],[0,4],[4,6],[-1,10],[-5,6],[-5,-6],[-3,3],[-3,0],[-2,-2],[-4,-1],[2,2],[1,2],[1,4],[0,4],[-6,0],[1,4],[2,9],[1,3],[-2,1],[-5,3],[4,27],[4,11],[5,-5],[2,0],[2,6],[2,6],[2,6],[2,10],[-1,10],[-1,8],[-2,8],[-11,31],[-1,8],[1,5],[2,4],[3,3],[2,5],[0,4],[1,11],[1,5],[2,-3],[3,3],[3,6],[1,6],[0,14],[-3,10],[-3,8],[-1,11],[-2,3],[-2,2],[-3,2],[-1,7],[6,16],[4,17],[6,17],[3,10],[-1,12],[-3,21],[-1,6],[-4,12],[-1,4],[1,7],[1,4],[2,2],[2,14],[4,3],[5,3],[5,6],[1,8],[0,14],[0,13],[-4,11],[2,13],[5,18],[0,4],[-4,-5],[-2,-5],[-3,-4],[-4,-2],[-17,0],[-7,2],[-14,8],[-12,3],[-6,6],[-19,5],[-9,7],[-11,16],[-5,4],[0,4],[0,6],[2,7],[0,8],[0,9],[-3,-12],[-1,-9],[0,-25],[-2,-9],[-6,-5],[-35,-13],[-13,2],[-7,-2],[-5,-4],[-13,14],[-5,6],[-2,-11],[-4,-7],[-4,-5],[-24,-20],[-11,-4],[-6,-6],[-6,-5],[-4,-3],[-4,-6],[-2,-12],[-3,-9],[-6,3],[4,-4],[0,-10],[-2,-9],[-4,-7],[-4,-3],[-4,-4],[-1,-10],[0,-1],[2,-19],[9,-24],[16,-29],[1,-2],[2,-4],[2,-4],[0,-6],[1,-5],[2,-23],[5,-23],[-1,-10],[-2,-9],[-9,-26],[-2,-9],[-3,-19],[-4,-42],[-1,-9],[-10,-34],[-4,-23],[-3,-24],[-1,-25],[0,-19],[0,-6],[5,-39],[1,-12],[-1,-37],[1,-14],[8,-42],[0,-8],[-2,-9],[-6,-44],[0,-6],[3,-6],[2,-6],[3,-5],[1,-6],[1,-12],[0,-5],[1,-6],[-2,-7],[-1,-3],[-5,-7],[-1,-6],[-2,-21],[-1,-6],[-6,-21],[-28,-61],[-7,-26],[-2,-28],[4,-20],[-1,-4],[-4,-1],[-2,-2],[-1,-5],[0,-6],[2,-23],[0,-3],[-1,-5],[0,-5],[1,-7],[-10,-2],[-8,-17],[-23,-78],[-1,-6],[-1,-10],[-5,-16],[-2,-11],[0,-14],[-1,-12],[-2,-12],[-7,-33],[-1,-6],[-1,-6],[-5,-12],[-2,-6],[0,-34],[0,-13],[5,-24],[0,-11],[-5,-10],[-2,12],[-4,0],[-5,-7],[-4,-9],[-2,-6],[-2,-8],[-1,-9],[-1,-11],[1,-13],[4,-21],[1,-11],[0,-12],[-3,-13],[-1,-7],[-2,-10],[1,-14],[4,-25],[1,-12],[-1,-9],[-2,0],[-2,4],[-1,3],[-5,0],[-4,-1],[-2,-1],[-3,-3],[-1,-5],[0,-25],[-1,-10],[-17,-54],[-1,-5],[1,-6],[1,-4],[-1,-3],[-3,0],[-5,-3],[-5,-7],[-4,-10],[-3,-9],[-2,-12],[-2,-29],[-3,-10],[-3,-2],[-3,-1],[-3,-3],[-1,-8],[1,-5],[1,-2],[3,-1],[3,0],[-2,-8],[-3,-7],[-2,-6],[-1,-10],[2,-7],[8,-12],[3,-7],[1,-8],[0,-11],[-2,-9],[-2,-5],[-3,0],[-3,0],[-6,-8],[-1,8],[-2,5],[-3,4],[-3,4],[-4,-4],[-4,-1],[-3,-1],[-3,-7],[0,-6],[2,-26],[3,-9],[11,-20],[5,-13],[3,-1],[5,3],[-4,-12],[-11,-2],[-2,-9],[-2,-14],[-7,-26],[-3,-15],[1,-16],[3,-11],[3,-9],[1,-10],[-1,-7],[-4,-6],[-1,-8],[2,-26],[0,-47],[1,-1],[0,-2],[1,-3],[0,-4],[-1,-3],[-4,-6],[-1,-3],[-1,-6],[0,-6],[-1,-11],[0,-2],[1,-12],[4,-24],[2,-23],[1,-13],[3,-13],[8,-27],[2,-10],[0,-13],[1,-10],[12,-45],[16,-45],[-2,-1],[-1,0],[-2,1],[-2,0],[-2,0],[0,-3],[0,-2],[-1,-3],[-6,-8],[-3,-4],[-5,-12],[-2,-10],[1,-25],[6,-27],[13,-6],[14,-2],[7,-15],[9,2],[10,0],[8,3],[8,11],[2,9],[1,11],[2,9],[4,7],[3,1],[13,-5],[5,2],[3,4],[3,4],[2,2],[9,5],[5,7],[0,1],[10,-2],[2,-1],[2,5],[3,0],[6,-4],[2,-3],[2,3],[3,3],[1,3],[4,-7],[10,-10],[1,-6],[-1,-6],[2,-10],[5,-18],[2,4],[0,-45],[2,-11],[2,-8],[3,-7],[2,-7],[1,-9],[0,-29],[0,-6],[3,-9],[0,-7],[0,-1],[-1,-3],[-2,-4],[0,-4],[0,-15],[3,-45],[-1,-9],[3,-19],[6,-115],[2,-19],[5,-15],[15,-21],[3,-8],[1,-10],[6,-26],[5,-14],[1,-12],[2,-5],[2,-3],[6,-6],[1,-1],[2,-7],[4,-2],[4,2],[4,5],[-3,17],[0,24],[-3,20],[-10,8],[6,5],[8,-13],[8,-18],[3,-13],[14,-78],[9,-117],[11,-107],[7,-67],[20,-206],[17,-85],[15,-50],[4,-12],[2,-12],[-1,-8],[-7,1],[-3,8],[-10,19],[-6,7],[-2,2],[-8,0],[-5,6],[4,15],[-3,19],[-2,26],[-4,5],[1,48],[-1,41],[-5,22],[-8,8],[-10,-3],[-6,-20],[-2,-10],[-2,-3],[-3,3],[-1,5],[-1,3],[0,5],[0,7],[2,12],[9,12],[4,11],[1,23],[-2,31],[-4,30],[-5,18],[-5,4],[-5,-2],[-6,-4],[-5,-2],[-3,-5],[-13,-24],[-3,-8],[0,-11],[3,-50],[5,-28],[2,-22],[1,-10],[4,-4],[0,-2],[6,-11],[2,-4],[0,-3],[9,-48],[5,-18],[7,-12],[6,-2],[7,0],[6,-4],[2,-12],[0,-1],[0,-13],[1,-8],[1,-5],[2,-5],[4,0],[3,-3],[3,-5],[-5,-4],[-2,-3],[-2,-2],[-1,-4],[1,-7],[2,-4],[2,-3],[4,-16],[3,-7],[4,-3],[4,1],[4,-6],[2,-4],[2,-2],[7,-1],[4,2],[6,4],[7,13],[3,8],[-1,16],[0,10],[7,-19],[43,-124],[5,-9],[7,-6],[5,-3],[6,6],[5,-9],[8,-16],[14,-23],[14,-15],[8,0],[12,1],[34,2],[11,11],[4,13],[9,-3],[4,-7],[5,-3],[2,-2],[0,1],[9,-1],[-2,12],[-4,13],[-18,15],[8,6],[8,-3],[7,-12],[11,-14],[9,-6],[5,-3],[4,-1],[6,-3],[4,-3],[2,-3],[8,-7],[10,-12],[2,-5],[28,-103],[16,-50],[13,-44],[10,-21],[28,-37],[31,-63],[15,-22],[0,-1]],[[77812,54285],[-2,12],[-3,10],[-5,3],[3,19],[1,10],[-3,4],[-4,-2],[-2,-5],[-2,-13],[-10,17],[-8,19],[-1,5],[0,7],[-1,6],[-2,3],[-4,-4],[-2,-1],[-1,2],[1,5],[2,7],[1,3],[-1,6],[-2,10],[-1,6],[-1,2],[-3,0],[-2,1],[-2,5],[-1,11],[-3,8],[-7,11],[-7,23],[-4,8],[-5,-4],[-3,0],[-2,7],[-2,16],[-2,5],[-1,3],[-24,19],[-7,14],[0,23],[1,11],[2,1],[4,0],[1,3],[-1,6],[-1,5],[-3,3],[-5,5],[1,11],[1,12],[-2,8],[4,20],[3,9],[3,4],[1,4],[8,22],[-2,6],[-5,-3],[-5,-6],[-3,-3],[-5,4],[-1,7],[0,21],[-10,-11],[-4,-9],[-2,0],[-1,9],[-2,0],[-6,3],[-7,24],[-5,28],[2,13],[6,7],[5,17],[3,21],[2,20],[-2,0],[-8,-32],[-5,-12],[-7,6],[-1,9],[1,25],[-1,8],[-4,1],[-2,-8],[-2,-12],[-1,-9],[1,-21],[-1,-9],[-5,-3],[-3,2],[-4,4],[-4,5],[-1,4],[-2,1],[-8,3],[-4,5],[-3,9],[-8,28],[2,10],[1,14],[-1,27],[-1,4],[-3,9],[0,7],[-1,1],[-6,0],[-3,2],[4,12],[0,13],[-2,15],[-2,27],[-2,0],[-3,-2],[-2,-1],[-3,3],[-2,4],[-1,4],[3,1],[1,4],[-2,8],[-3,9],[-4,4],[-4,1],[-2,3],[-4,12],[-6,8],[-5,7],[-5,8],[-2,14],[-1,0],[-1,-21],[-3,-16],[-5,-8],[-10,4],[-7,14],[-1,39],[-4,16],[12,19],[2,7],[0,11],[2,18],[0,10],[-6,-12],[-2,-2],[-4,1],[-1,4],[-5,15],[-2,4],[-4,3],[-5,5],[-2,12],[1,6],[0,4],[0,3],[-1,5],[-2,6],[-4,5],[-2,4],[-2,6],[0,4],[-2,2],[-3,-2],[-2,-3],[-2,-11],[-1,-2],[-4,-3],[-4,-5],[-4,-3],[-4,2],[-2,5],[-1,13],[-2,5],[-3,4],[-2,-2],[-1,-5],[-1,-3],[-3,-7],[-2,0],[0,9],[-1,5],[-4,8],[-1,5],[-1,11],[1,29],[-1,8],[1,19],[0,10],[-1,10],[-5,23],[-4,-17],[-1,0],[-1,43],[-2,6],[-5,-3],[-8,-11],[-3,2],[-2,0],[0,-4],[-2,0],[-1,7],[1,31],[2,5],[4,7],[3,8],[-4,4],[-6,2],[-5,5],[-1,-14],[-4,-3],[-5,-1],[-4,-4],[-3,-7],[-4,-7],[-5,-4],[-3,8],[-1,0],[-1,-7],[-1,-4],[-2,0],[-2,6],[-2,0],[0,-7],[-6,1],[-5,-5],[-1,-6],[8,-7],[1,-10],[0,-12],[2,-9],[0,-16],[-5,-24],[-6,-16],[-3,10],[-2,0],[0,-6],[-1,-3],[-3,-8],[-4,9],[-5,20],[-8,6],[0,4],[-2,5],[-3,1],[-3,1],[-2,1],[-2,3],[-1,3],[-1,9],[0,25],[-2,9],[-3,9],[-5,55],[-12,76],[-1,13],[2,10],[2,5],[1,-6],[0,-11],[2,-8],[7,-15],[2,12],[-3,7],[-4,6],[-2,7],[-1,4],[1,3],[1,3],[0,2],[0,10],[0,3],[4,18],[0,6],[0,13],[-5,23],[0,8],[1,6],[2,3],[2,3],[2,5],[1,3],[1,4],[1,37],[1,13],[6,20],[3,24],[5,16],[4,14],[2,3],[1,-2],[4,-2],[4,0],[-1,6],[-1,7],[3,9],[6,15],[-8,-8],[-5,-3],[-3,5],[-1,15],[3,7],[7,0],[5,5],[-4,19],[-8,23],[-3,13],[-2,15],[0,12],[1,-4],[4,-2],[2,2],[2,4],[4,10],[-5,5],[0,9],[3,10],[1,8],[3,10],[2,11],[4,37],[2,11],[6,21],[5,52],[3,16],[9,-12],[9,16],[3,7],[-1,6],[-2,1],[-5,-2],[-2,1],[-2,2],[-1,8],[0,2],[-6,5],[2,9],[6,9],[2,-1],[1,3],[3,7],[0,2],[0,5],[-5,14],[4,0],[1,5],[-2,6],[-3,5],[1,4],[5,-6],[4,-4],[4,2],[1,10],[1,1],[2,5],[2,5],[-2,3],[-6,0],[-2,2],[-3,3],[-1,-5],[0,-1],[-1,-3],[-1,0],[0,5],[0,13],[0,2],[2,5],[2,1],[2,1],[3,1],[4,6],[3,7],[2,9],[2,11],[-2,-5],[-4,-12],[-3,-3],[-3,1],[-1,4],[-1,5],[-5,6],[2,11],[5,11],[3,6],[1,-4],[2,-2],[2,0],[2,2],[-1,4],[4,7],[1,6],[-1,2],[-2,1],[-2,3],[1,3],[3,6],[2,7],[2,3],[6,0],[3,3],[0,6],[-2,2],[-3,0],[-1,-4],[-3,8],[0,4],[1,8],[12,45],[4,9],[8,46],[6,26],[3,13],[1,14],[0,12],[1,12],[5,22],[0,12]],[[77429,56599],[5,36],[3,30],[4,23],[0,12],[-4,37],[-1,7],[-6,9],[-1,8],[3,25],[2,14],[13,34],[5,10],[3,2],[6,0],[2,2],[2,5],[1,6],[1,6],[2,6],[4,3],[3,-1],[2,-3],[3,0],[10,9],[1,1],[2,5],[1,4],[1,12],[0,9],[-2,12],[0,7],[0,6],[0,7],[2,6],[1,5],[3,6],[1,1],[1,-2],[4,-1],[3,-2],[3,-3],[3,0],[2,7],[2,18],[2,5],[4,10],[11,12],[2,3],[3,5],[2,6],[3,12],[2,6],[3,3],[5,4],[2,5],[9,53],[3,13],[9,23],[4,13],[4,24],[3,9],[10,24],[2,10],[1,10],[1,15],[3,9],[8,17],[3,10],[3,12],[1,10],[-1,24],[1,14],[2,10],[5,6],[6,2],[12,2],[3,5],[18,51],[2,14],[4,39],[0,6],[-5,3],[-5,7],[-5,9],[-4,9],[-2,13],[1,12],[4,24],[1,12],[-2,10],[-4,8],[-5,3],[-5,9],[1,16],[5,28],[0,7],[1,6],[1,5],[-1,6],[-3,2],[-3,0],[-15,-11],[-4,2],[-1,10],[1,6],[3,5],[2,5],[1,8],[-1,6],[-3,12],[-1,6],[0,6],[0,11],[-1,7],[-1,6],[-5,11],[-1,7],[-1,11],[-1,33],[-2,13],[-6,24],[-1,12],[0,6],[3,13],[2,6],[0,13],[0,13],[0,9],[-1,5],[-2,9],[-14,15],[-3,6],[-3,6],[-2,6],[-2,4],[-6,4],[-3,3],[-1,5],[0,12],[-2,5],[-3,4],[-6,3],[-2,2],[-3,10],[-1,11],[1,11],[-1,12],[-2,7],[-6,11],[-2,7],[-1,6],[-1,18],[-4,18],[0,5],[0,8],[1,6],[2,5],[1,6],[-1,12],[-4,11],[-5,10],[-5,6],[-6,10],[-1,12],[1,13],[3,14],[0,15],[0,13],[0,12],[3,10],[5,4],[11,3],[4,7],[1,10],[-1,13],[-4,22],[0,8],[1,5],[2,5],[1,6],[0,6],[-1,11],[2,30],[-1,11],[-10,92],[0,50],[1,13],[0,16],[-2,5],[-2,5],[-9,18],[-2,10],[-3,28],[0,10],[1,7],[0,5],[-1,4],[-1,5],[-1,2],[-4,2],[-2,1],[-1,4],[-1,9],[-2,3],[-8,14],[-3,7],[-3,13],[-3,11],[-9,22],[-1,11],[-1,14],[-3,9],[-5,7],[-6,4],[-6,5],[-33,52],[-6,14],[-7,28],[-3,0],[-3,-2],[-4,0],[-2,3],[-4,10],[-2,4],[-2,2],[-4,2],[-2,1],[-3,5],[-3,5],[-12,33],[-20,83],[-3,4],[-4,2],[-2,9],[-1,14],[-3,13],[-3,11],[-34,68],[-15,49],[-2,12],[1,9],[0,3],[-1,3],[-3,5],[-1,4],[0,12],[0,21],[-2,13],[-5,21],[-1,6],[0,3],[0,5],[1,5],[1,5],[1,6],[-1,13],[-9,19],[-2,14],[1,11],[6,21],[1,11],[-1,8],[-2,10],[0,7],[8,-1],[2,0],[5,4],[4,9],[10,29],[3,1],[7,-2],[5,-4],[9,-12],[4,-3],[2,1],[1,4],[0,9],[-1,3],[-1,3],[-2,2],[-1,1],[1,4],[0,2],[1,3],[3,3],[1,3],[1,6],[-1,10],[0,5],[2,2],[10,5],[4,3],[5,6],[6,-5],[6,-7],[4,-9],[1,-13],[7,17],[3,28],[-1,30],[-7,88],[1,34],[0,10],[-1,22],[0,13],[9,60],[1,11],[-2,25],[-1,14],[4,23],[1,10],[-2,12],[-8,22],[-1,8],[3,5],[3,-1],[4,-3],[2,-2],[4,0],[2,1],[2,2],[3,6],[4,11],[2,12],[2,10],[6,6],[5,0],[17,-4],[3,-3],[2,-5],[2,-2],[4,1],[3,4],[6,14],[2,6],[-1,13],[1,13],[2,12],[3,11],[8,18],[1,10],[2,27],[2,25],[0,11],[-5,15],[-6,8],[-5,11],[-1,20],[-6,-10],[-2,-10],[-3,-24],[-3,-14],[-17,-27],[-9,-26],[-4,-7],[-5,8],[-2,9],[-4,42],[-4,18],[0,6],[3,12],[0,7],[-2,10],[-17,47],[-2,6],[0,6],[1,7],[0,5],[0,5],[-2,6],[-4,11],[-9,14],[-4,11],[-2,17],[-1,6],[-9,13],[0,11],[2,11],[3,10],[4,2],[5,6],[3,8],[1,6],[-2,5],[-3,2],[-2,3],[-1,7],[0,9],[2,3],[4,-2],[3,-5],[-2,17],[-2,8],[-3,3],[-4,5],[-1,8],[0,10],[-2,8],[-3,8],[-4,19],[-3,9],[-5,11],[-5,6],[-6,3],[-14,1],[-5,3],[-3,8],[-4,13],[1,2],[1,5],[0,5],[-7,0],[-1,5],[2,7],[2,5],[-6,9],[-10,29],[-5,9],[-5,5],[-24,47],[-2,5],[0,8],[1,12],[0,8],[-2,8],[-3,4],[-4,3],[-4,4],[-4,8],[-2,8],[-2,17],[-7,20],[-1,9],[-2,6],[-3,3],[-7,7],[-4,5],[-7,14],[-39,74],[-2,7],[-2,8],[0,8],[-1,6],[0,6],[-2,7],[-7,11],[-2,7],[-1,8],[-3,7],[-3,6],[-3,8],[7,2],[-4,28],[2,9],[8,28],[7,10],[1,2],[1,3],[0,7],[-2,7],[-1,3],[-1,3],[-4,20],[-1,8],[0,2],[-4,4],[-1,1],[-2,-1],[0,1],[-1,5],[0,3],[2,6],[0,3],[-1,7],[-2,10],[-1,7],[0,6],[0,3],[-1,4],[-15,40],[-3,13],[1,5],[4,4],[2,9],[1,11],[-2,9],[-4,4],[-14,12],[-3,-2],[-1,-1],[-5,-29],[-1,-4],[-3,-4],[-5,6],[-6,10],[-6,11],[-4,13],[-1,15],[0,13],[-1,13],[-7,23],[-7,27],[-1,9],[-3,11],[-6,11],[-2,7],[6,-2],[2,0],[3,-3],[5,-19],[1,-5],[1,-4],[3,-4],[3,0],[7,2],[13,-1],[11,11],[19,26],[6,4],[14,-1],[14,7],[1,0],[1,1],[2,6],[2,24],[-2,24],[-3,24],[-2,22],[0,13],[-1,11],[-3,22],[0,5],[1,15],[-2,8],[-2,6],[-7,10],[-6,13],[-2,7],[3,6],[6,8],[4,9],[2,9],[2,23],[3,11],[17,27],[4,9],[2,8],[1,47],[-1,10],[-2,11],[-2,6],[-8,12],[-1,6],[1,6],[3,1],[3,-1],[2,2],[3,12],[-3,10],[-4,11],[-2,15],[0,5],[-2,12],[0,4],[9,26],[9,16],[3,7],[1,8],[0,4],[-1,3],[-1,7],[0,12],[0,11],[2,7],[6,2],[5,1],[17,18],[2,4],[4,9],[3,5],[3,2],[2,0],[3,1],[1,8],[0,10],[-2,22],[0,10],[3,39],[2,8],[6,3],[4,-8],[4,-10],[3,-2],[7,2],[6,-7],[11,-20],[10,-6],[2,-2],[1,-6],[0,-12],[0,-6],[5,-8],[7,3],[13,12],[11,1],[13,-3],[13,1],[9,10],[1,1],[3,0],[3,-3],[2,-6],[3,-5],[4,-4],[1,1],[1,4],[3,5],[5,4],[7,3],[2,3],[4,12],[3,5],[5,4],[24,7],[6,4],[16,25],[8,-7],[4,-6],[4,-6],[5,-17],[4,2],[10,15],[11,8],[4,7],[3,13],[3,15],[-1,11],[-1,11],[-1,14],[1,6],[1,5],[1,3],[1,2],[0,6],[-2,11],[0,6],[3,40],[5,20],[11,16],[12,10],[11,3],[6,-1],[11,-7],[5,-4],[11,-18],[5,-6],[7,2],[34,21],[9,16],[4,8],[3,3],[3,3],[0,1],[3,10],[1,15],[-2,10],[-9,19],[-3,35],[-2,11],[-10,21],[-3,10],[5,4],[4,-3],[14,-19],[21,-14],[3,0],[5,1],[3,0],[2,-2],[5,-6],[2,-1],[6,2],[10,8],[6,3],[11,-1],[5,4],[5,9],[2,9],[4,22],[3,9],[5,6],[6,5],[15,4],[2,2],[1,-1],[3,-5],[2,-5],[0,-6],[1,-5],[3,-5],[3,-8],[3,-2],[3,0],[4,-2],[4,-4],[2,-5],[1,-6],[2,-6],[13,-16]],[[77186,56024],[-9,15],[-1,5],[0,4],[2,3],[2,2],[2,0],[3,-4],[2,-9],[0,-9],[-1,-7]],[[77693,56121],[2,-13],[-6,-5],[-4,4],[8,14]],[[77689,56167],[-1,-5],[0,-1],[-1,3],[0,5],[1,0],[0,-1],[1,-1]],[[77568,54363],[4,-5],[-1,-3],[-3,-2],[-8,-12],[-7,-2],[-5,3],[-5,9],[5,-2],[3,5],[3,7],[5,2],[-2,0],[9,2],[2,-2]],[[77686,54329],[0,-6],[-1,-3],[-1,-3],[-2,-2],[-3,10],[-4,25],[-9,18],[1,9],[3,7],[3,8],[0,6],[-1,11],[1,3],[1,4],[2,2],[2,3],[0,5],[1,11],[1,11],[2,4],[6,-31],[0,-28],[5,-22],[2,-17],[0,-9],[-1,-6],[-2,-3],[-3,-1],[-2,-1],[-1,-5]],[[77612,54773],[4,-6],[7,-3],[2,-7],[-3,0],[-4,0],[-3,-2],[-2,-4],[-4,-14],[-3,-7],[-2,5],[0,30],[2,13],[6,-5]],[[77509,54997],[8,-18],[3,-3],[0,-21],[3,-22],[4,-20],[5,-14],[-5,-7],[-6,8],[-6,14],[-7,34],[-1,6],[0,20],[0,10],[-2,8],[1,2],[0,1],[1,2],[2,0]],[[77534,55004],[1,-7],[0,-12],[-1,-10],[-2,-7],[-3,-1],[-2,2],[-2,2],[-1,3],[0,4],[-2,2],[-2,2],[-1,2],[-7,24],[6,7],[10,-3],[6,-8]],[[77372,55270],[12,-16],[5,-9],[2,-17],[0,-64],[-2,-14],[-4,1],[-3,9],[-2,11],[-1,15],[-1,8],[0,5],[1,4],[2,1],[2,1],[0,6],[0,5],[-1,6],[-1,4],[-2,2],[-3,1],[-1,4],[-1,4],[-3,13],[-2,10],[-1,11],[0,10],[1,-3],[1,-2],[2,-6]],[[77338,55150],[1,3],[1,3],[1,2],[3,-9],[0,-9],[-3,-7],[-9,-6],[-1,-8],[1,-21],[-10,10],[-5,0],[-2,-12],[-1,-15],[-3,-9],[-4,-2],[-4,6],[-2,8],[-1,38],[-1,5],[-2,4],[-1,5],[0,6],[1,2],[2,2],[2,4],[-1,8],[-2,3],[-5,3],[-1,1],[1,6],[3,5],[2,4],[-1,5],[-2,7],[1,6],[3,6],[1,5],[-1,7],[-1,11],[0,21],[0,4],[1,5],[2,9],[1,6],[0,12],[0,13],[-2,24],[1,0],[1,-1],[2,-3],[2,2],[2,-2],[3,-4],[2,-5],[2,-8],[2,-28],[2,0],[2,6],[4,-5],[5,-9],[4,-8],[2,7],[3,3],[2,-2],[2,-8],[0,-10],[-2,-9],[-3,-13],[-1,-5],[1,-11],[0,-5],[-1,-2],[-2,-2],[-2,-3],[-1,-5],[0,-10],[1,-12],[2,-10],[3,-9]],[[77399,55309],[-5,-41],[0,-7],[-9,7],[-3,2],[-2,8],[1,3],[6,4],[-1,9],[3,9],[4,9],[2,9],[2,-1],[1,-3],[0,-3],[1,-5]],[[77304,55886],[3,-8],[3,-9],[1,-11],[0,-13],[-6,-13],[2,-3],[-4,-5],[-5,-3],[-6,0],[-4,8],[0,8],[2,48],[0,3],[1,3],[3,2],[3,1],[3,-2],[4,-6]],[[77796,56147],[2,-1],[3,-6],[1,-8],[-3,-7],[-2,-16],[-1,-19],[-2,-16],[-8,-8],[-1,-4],[0,-4],[-1,-4],[-2,-2],[-2,0],[-2,0],[-13,-3],[-3,-2],[-1,12],[-2,22],[-2,11],[4,11],[-1,11],[-2,10],[-1,11],[2,7],[7,2],[7,-2],[16,-8],[5,2],[2,11]],[[77336,56255],[2,-13],[-1,-8],[-5,-16],[-4,13],[2,8],[3,8],[3,11],[0,-3]],[[77787,56271],[9,-12],[3,-20],[3,-45],[-3,5],[-7,8],[-15,13],[-3,6],[1,7],[-1,7],[-5,12],[0,4],[3,13],[2,5],[2,-2],[3,-1],[5,1],[3,-1]],[[78489,57403],[7,2],[5,-16],[0,-21],[-4,-18],[0,-4],[4,0],[-3,-8],[0,-5],[1,-15],[-2,0],[-2,3],[-2,9],[-2,4],[-2,3],[-9,5],[2,7],[1,3],[1,3],[0,7],[-1,6],[-3,13],[0,6],[5,43],[2,4],[2,-3],[1,-6],[1,-7],[0,-7],[-2,-8]],[[78444,57602],[1,-4],[3,-11],[5,-11],[3,-9],[-1,-10],[-4,-4],[-4,6],[-9,19],[-1,-7],[1,-7],[-1,-5],[-4,-2],[-3,1],[-11,7],[0,-4],[1,-2],[1,-6],[-2,3],[-1,2],[-2,2],[-3,1],[0,4],[1,8],[0,37],[-2,6],[-8,38],[4,0],[-2,5],[-1,3],[-1,2],[-2,3],[5,0],[7,-5],[5,1],[9,-14],[3,-7],[3,-8],[4,-15],[2,-8],[4,-6],[0,-3]],[[77185,56051],[-5,10],[1,12],[5,7],[6,-4],[2,-3],[0,-5],[-1,-5],[-1,-4],[-2,0],[-3,2],[-2,0],[0,-10]],[[77302,55802],[3,-4],[3,-11],[-1,-12],[-4,-14],[-6,-34],[-3,1],[-2,11],[-1,12],[1,13],[1,16],[-1,18],[2,9],[5,-2],[3,-3]],[[30067,62142],[3,-16],[1,-10],[-1,-10],[0,-15],[1,-14],[8,-37],[3,-46],[0,-27],[-3,-13],[-2,-4],[-3,-18],[-3,-4],[-7,-9],[-2,-3],[1,-12],[5,-14],[1,-3],[9,-19],[18,-17],[4,-4],[-1,-35],[-2,-10],[-3,-11],[-10,-13],[-4,-8],[-8,-23],[-12,-27],[-4,-5],[-14,-8],[-5,-6],[1,-11],[5,2],[7,5],[6,-1],[3,-4],[4,-17],[2,-6],[7,-11],[2,-6],[1,-11],[1,-24],[2,-23],[-1,-11],[-1,-11],[-2,-10],[-3,-11],[-4,-7],[-8,-9],[-1,-2],[-1,-1],[-4,-9],[-6,-20],[-3,-7],[-11,-8],[-21,8],[-10,-5],[-5,-7],[2,-10],[26,-52],[1,-5],[1,-9],[-1,-4],[-3,-2],[-1,-6],[2,-11],[4,-5],[11,-6],[2,-4],[5,-12],[2,-6],[10,-14],[15,-11],[4,-6],[3,-4],[0,-2],[-3,-11],[0,-1],[-12,-43],[-3,-11],[0,-12],[0,-5],[3,-17],[1,-7],[0,-10],[0,-17],[-1,-10],[-3,-18]],[[30062,61153],[-5,6],[-19,51],[-9,16],[-9,12],[-22,16],[-9,9],[-9,7],[-11,0],[-22,-7],[-29,0],[-41,-1],[-21,-8],[-6,6],[-3,3],[-2,-3],[2,-22],[-3,-6],[-3,0],[-7,6],[-5,1],[-32,-6],[-7,1],[1,-3],[0,-7],[1,-2],[-4,0],[-2,1],[-2,3],[-8,-10],[-15,3],[-7,-6],[-8,9],[-9,8],[-11,5],[-29,7],[-8,-1],[-2,1],[-8,10],[-2,2],[-37,12],[-17,-3],[-2,1],[1,8],[4,3],[10,0],[0,3],[-19,4],[-22,0],[-7,-4],[-9,-10],[-3,-2],[-2,3],[-3,10],[-2,4],[-4,-5],[-2,-11],[-2,-9],[-3,4],[-2,0],[-3,-4],[-3,3],[-1,8],[1,9],[-4,-2],[-3,-16],[-4,-6],[0,8],[1,7],[2,14],[-2,-4],[-3,-8],[-2,-5],[0,2],[-2,1],[-3,1],[-1,-1],[0,-2],[0,-3],[0,-2],[-12,-20],[-20,-18],[-5,-10],[-5,-17],[12,-25],[2,-9],[1,-12],[-1,-4],[-3,-2],[-19,0],[-2,1],[-3,3],[-2,4],[-1,8],[-18,52],[-1,2],[-2,2],[-1,1],[-1,2],[0,2],[0,2],[-1,2],[-5,10],[-27,40],[-5,5],[-8,3],[-4,3],[-3,4],[-1,6],[-1,6],[-1,2],[-3,0],[-3,2],[-7,6],[-2,2],[-2,-4],[-5,4],[-6,-5],[-6,-7],[-6,-4],[-5,2],[-6,5],[-6,6],[-2,5],[-2,7],[-11,11],[-2,11],[-1,11],[-2,8],[-7,19],[10,28],[-1,3],[-1,6],[5,7],[3,27],[4,6],[1,3],[0,7],[-1,8],[-2,4],[0,7],[2,5],[9,11],[13,10],[5,2],[6,-3],[3,0],[1,5],[2,4],[3,2],[3,1],[16,-2],[11,-5],[36,-33],[16,-1],[1,-1],[1,-4],[1,-2],[0,-4],[2,0],[2,2],[2,1],[8,-9],[3,-3],[13,-1],[3,-1],[3,-3],[6,-10],[2,-2],[3,-1],[1,2],[1,2],[1,1],[3,-1],[4,-3],[2,0],[2,1],[3,6],[2,1],[0,1],[3,9],[2,2],[2,0],[3,0],[2,0],[13,8],[3,1],[10,-5],[0,-11],[-5,-7],[-8,2],[0,-4],[-6,4],[-5,2],[-6,-1],[-6,-5],[2,-2],[5,-5],[4,-2],[1,-4],[0,-4],[1,-5],[5,-5],[9,3],[4,-4],[10,12],[12,3],[44,-7],[5,-3],[11,-11],[6,-3],[23,2],[11,-2],[9,-8],[5,-6],[5,-3],[4,-1],[7,3],[20,7],[24,-12],[-1,-9],[5,2],[7,5],[5,0],[4,-3],[20,-7],[11,5],[7,13],[6,18],[4,21],[7,17],[9,4],[46,-9],[2,2],[1,2],[0,3],[1,1],[2,0],[1,-2],[0,-1],[1,-1],[6,-13],[3,-3],[4,2],[3,10],[0,14],[0,36],[0,7],[2,8],[2,5],[1,4],[-1,7],[-3,4],[-12,12],[-4,2],[-6,0],[-4,2],[-5,10],[-5,12],[-6,9],[-6,-2],[-10,12],[-2,5],[-3,11],[-14,45],[-4,8],[-5,10],[-6,7],[-5,3],[-5,5],[-29,64],[-2,15],[12,10],[11,1],[6,4],[2,9],[-1,11],[-4,6],[-5,4],[-5,5],[-3,8],[-7,24],[-1,9],[1,3],[1,1],[-1,1],[1,3],[2,5],[3,14],[2,5],[3,3],[5,2],[4,1],[3,-1],[-4,15],[-2,4],[-6,1],[-3,5],[-1,11],[0,13],[1,7],[2,-4],[2,-3],[3,-1],[3,0],[3,5],[0,4],[-1,5],[-1,14],[0,2],[4,-2],[2,-1],[2,-4],[2,-3],[4,0],[-5,22],[-3,3],[-15,2],[-3,5],[-3,8],[-3,9],[-6,8],[-17,16],[-15,18],[-5,3],[-5,4],[-10,17],[-2,1],[-2,-2],[-18,12],[-2,1],[-6,3],[-3,0],[-1,-1],[-2,-3],[-2,-3],[-2,-1],[-5,2],[-6,5],[-6,7],[-3,6],[-6,-11],[-12,-3],[-27,3],[-5,3],[-3,0],[-2,3],[-5,11],[-2,3],[-4,5],[-2,12],[0,12],[-1,7],[10,32],[1,7],[3,0],[15,14],[0,4],[-16,0],[5,7],[5,1],[6,-1],[5,1],[34,31],[10,15],[6,15],[3,-8],[3,-2],[8,2],[4,-2],[7,-5],[4,-1],[3,0],[2,1],[6,3],[4,1],[4,-1],[4,-3],[3,-6],[2,10],[5,5],[7,2],[5,-4],[7,6],[9,4],[10,3],[8,-1],[28,-14],[7,-8],[6,-6],[17,-10],[1,-3],[5,-14],[8,-10],[8,-6],[4,6],[5,-6],[8,-6],[8,-4],[4,2],[1,-10],[14,-25],[0,-4],[-1,2],[-5,2],[4,-17],[1,-3],[5,-2],[1,1],[-1,5],[4,8],[-1,1],[-2,-1],[-1,0],[0,1],[1,3],[0,2],[1,-2],[0,4],[-1,2],[-1,6],[2,0],[4,-4],[5,-1],[5,3],[3,9],[2,5],[6,1],[4,-7],[-3,-14],[5,-6],[5,0],[11,3],[1,0],[1,-1],[2,-2],[4,-8],[3,-2],[9,0],[3,-1],[1,-3],[1,-3],[2,-2],[4,-6],[3,-1],[2,2],[1,4],[2,5],[3,1],[5,8],[8,0],[14,-8],[7,-2],[2,-3],[-1,-7],[-3,-3],[-3,-1],[-8,0],[3,-11],[5,-1],[5,3],[4,1],[5,-8],[3,-4],[2,2],[1,8],[0,4],[-7,3],[-2,4],[-1,5],[1,6],[2,4],[3,-1],[7,-3],[12,-1]],[[29547,61185],[5,0],[5,-3],[4,-4],[0,-9],[-3,-4],[-6,-1],[-11,1],[-4,2],[-5,5],[-7,13],[1,6],[1,3],[2,-1],[2,-4],[3,5],[2,-2],[1,-4],[2,-3],[8,0]],[[29501,61502],[6,6],[9,-1],[7,-8],[0,-13],[-6,-8],[-9,0],[-7,8],[0,16]],[[29763,62366],[8,1],[6,-1],[5,-5],[6,-7],[26,-21],[11,-14],[-3,-14],[-4,4],[-24,6],[-11,9],[-13,6],[-5,4],[-3,-1],[-3,-2],[-3,-1],[-6,2],[-7,5],[-6,6],[-4,7],[1,0],[1,1],[2,3],[12,9],[14,3]],[[29650,61650],[-5,7],[-2,3],[-2,5],[-1,6],[-1,7],[1,6],[3,8],[5,7],[6,4],[6,2],[6,-2],[39,-33],[19,-12],[21,-22],[20,-17],[8,-20],[2,-13],[1,-15],[-1,-15],[-3,-12],[-3,-2],[-2,4],[-3,10],[-2,4],[-2,2],[-6,0],[-25,12],[-9,1],[-8,4],[-25,32],[-25,14],[-6,9],[-6,16]],[[30067,62142],[5,-2],[5,-5],[-1,11],[-5,23],[1,6],[0,5],[-8,0],[-1,7],[3,9],[5,10],[1,2],[1,0],[3,0],[2,2],[3,7],[2,3],[3,3],[3,1],[2,2],[3,6],[-1,8],[-1,6],[2,5],[3,2],[2,-1],[4,-3],[2,-1],[1,2],[2,5],[1,1],[28,5],[8,-2],[7,-5],[26,-28],[8,-3],[7,6],[6,-9],[4,-3],[12,-1],[4,1],[0,5],[0,6],[2,6],[3,3],[3,-6],[3,-15],[2,2],[1,3],[2,4],[0,4],[-2,1],[-1,1],[0,1],[0,4],[4,-3],[4,0],[3,2],[5,1],[3,5],[5,19],[3,5],[4,2],[9,9],[5,1],[5,-2],[4,-5],[2,-8],[-1,-9],[5,-5],[2,0],[-1,10],[-1,3],[14,-5],[4,1],[8,4],[3,0],[3,-5],[13,-29],[1,-6],[-2,-5],[11,0],[4,-4],[10,-18],[10,-11],[11,-7],[12,-4],[17,0],[2,1],[1,4],[3,5],[4,4],[3,2],[11,-7],[17,-36],[10,-22],[4,-7],[6,-5],[5,-3],[13,-3],[10,-7],[19,-8],[4,0],[3,2],[2,5],[10,22],[6,5],[15,-1],[7,2],[4,-1],[4,-5],[10,-21],[3,-13],[-1,-15],[-4,-33],[5,-5],[3,-10],[-1,-27],[1,-12],[2,-9],[18,-56],[9,-17],[1,-2],[9,-8],[6,2],[11,9],[5,2],[13,1],[5,2],[6,5],[8,11],[3,1],[3,-1],[6,-6],[4,-1],[6,3],[3,1],[2,0],[2,-1],[1,-2],[0,-3],[1,-3],[2,1],[3,4],[16,-14],[5,-6],[3,12],[5,10],[13,14],[8,5],[2,-7],[-2,-14],[-5,-17],[6,-4],[6,0],[6,3],[5,6],[2,-13],[-4,-11],[-5,-9],[-2,-10],[-1,-11],[-4,-9],[-4,-8],[-6,-3],[-22,9],[-24,-4],[-6,3],[-10,10],[-35,9],[-4,-2],[-2,-8],[-1,-28],[-2,-24],[1,-9],[3,-4],[3,-5],[15,5],[6,-4],[6,4],[13,-10],[7,1],[-2,3],[-2,3],[-2,2],[-3,1],[0,4],[14,2],[5,-2],[5,-7],[3,-19],[5,-7],[5,-2],[9,-3],[26,-14],[11,-6],[4,1],[6,6],[-2,4],[-4,4],[0,6],[5,3],[5,-8],[5,-19],[4,-5],[4,-2],[4,-3],[2,-7],[3,6],[7,6],[3,5],[-2,5],[1,1],[3,0],[2,2],[3,6],[1,2],[1,0],[10,-1],[6,-2],[5,-4],[4,-5],[1,-2],[0,-2],[0,-2],[1,-2],[6,-4],[1,0],[10,-4],[6,-1],[2,-1],[1,-1],[2,-3],[3,-3],[4,-1],[3,-2],[33,-61],[11,-29],[17,-26],[12,-17],[4,-3],[1,-3],[13,-24],[16,-20],[8,-23],[-2,-24],[-26,-80],[-2,-3],[-2,-4],[-1,-6],[1,-21],[-1,-5],[-3,-11],[-4,-4],[-6,-2],[-7,0],[-5,4],[-11,14],[-4,3],[-4,-6],[0,-10],[2,-11],[-3,-12],[-3,-9],[-2,-11],[-4,-34],[-2,-6],[-3,-3],[-24,-3],[-4,3],[-1,22],[-7,28],[-9,28],[-8,20],[-9,12],[-11,10],[-12,3],[-13,-11],[-21,-2],[-5,2],[-12,8],[-6,2],[-4,3],[-8,14],[-7,3],[-5,-2],[-5,-4],[-6,0],[-6,6],[-5,-11],[-36,-5],[-11,-8],[-6,-1],[-15,22],[-6,6],[-4,1],[-2,-5],[0,-7],[1,-6],[-1,-6],[-3,-2],[-4,0],[-3,2],[-2,2],[-4,16],[-3,4],[-2,2],[-42,9],[-8,0],[-1,-1],[-5,-2],[-9,-9],[-7,-10],[-3,-2],[-7,-5],[-3,-3],[-3,-4],[-7,-11],[-4,-15],[-2,-18],[-2,-5],[-6,-6],[-1,-5],[-2,-6],[-9,-18],[-7,-16],[-3,-6],[-2,1],[-7,0],[-5,-2],[-4,-4],[-4,6],[-6,3],[-35,-1],[-6,-4],[-12,-13],[-6,-3],[-19,0],[-5,4],[0,5],[2,4],[2,4],[2,3],[-1,7],[-2,3],[-2,2],[-2,6],[-5,7],[-2,6],[1,6],[2,2],[2,2],[1,4],[1,12],[1,13],[-1,11],[-2,7],[-6,15],[-3,6],[-7,5],[-5,2],[-7,2],[-6,-4],[-3,-10],[1,-12],[-1,-5],[-8,-17],[-2,-3],[-3,-2],[-3,1],[-6,3],[-3,1],[-2,-2],[-4,-6],[-2,-1],[-4,1],[-1,-1],[-3,-6],[0,-2],[-2,-7],[-1,-3],[0,-2],[-4,-3],[-1,-1],[-8,-18],[-4,-5],[-6,-1],[-3,2],[-2,5],[-1,6],[-2,5],[-3,4],[-3,3],[-12,5],[-6,0],[-4,-3],[-2,-9],[0,-5],[-3,-9],[0,-6],[0,-8],[2,-4],[1,-4],[2,-7],[5,-32],[1,-5],[1,-7],[-6,-17],[-5,-24],[-26,-78],[-2,-13],[-1,-5],[-3,-4],[-5,-6],[-4,-6],[-2,-5],[-2,-7],[-2,-10],[-2,1],[-1,1],[-1,2],[0,-4],[-1,-2],[-1,-2],[2,0],[-1,-5],[-1,-3],[-2,-3],[-2,-1],[-1,-2],[-2,-12],[-1,-4],[-4,-10],[-9,-56],[-3,-11],[-11,-33],[-3,3],[-3,5],[0,2],[-2,5],[-20,64],[-4,10],[-10,8],[-22,-6],[-9,5],[2,4],[9,18],[2,8],[0,13],[-1,9],[-5,17],[-3,9],[0,3],[0,7],[1,23],[-2,10],[-4,12],[-11,17],[-15,12]],[[30132,60860],[-5,6],[0,13],[3,14],[3,12],[4,-4],[4,-6],[7,-14],[-5,-3],[-6,-14],[-5,-4]],[[30926,61230],[15,1],[3,-3],[3,-8],[3,-11],[2,-11],[0,-5],[-4,2],[-9,9],[-5,2],[-5,-2],[-8,-5],[-5,-2],[-10,6],[-7,13],[-4,15],[-3,15],[4,2],[5,-1],[5,-5],[4,-6],[3,-3],[13,-3]],[[53779,58585],[-2,19],[-2,19],[-2,19],[-2,19],[-2,19],[-2,19],[-2,19],[-2,18],[-2,19],[-2,19],[-2,19],[-2,19],[-2,19],[-2,19],[-2,18],[-2,19],[-2,28],[-4,30],[-6,41],[0,35],[10,26],[7,7],[10,9],[11,2],[6,3],[5,1],[9,17],[2,10],[1,11],[-2,23],[-1,4],[-3,5],[0,3],[1,3],[5,8],[9,21],[3,4],[5,3],[6,1],[4,5],[2,13],[0,12],[-4,26],[-1,12],[0,12],[2,12],[4,18],[9,41],[7,31],[8,24],[9,24],[8,24],[8,24],[8,24],[9,24],[8,25],[8,24],[9,24],[8,24],[8,24],[8,24],[9,24],[8,24],[8,25],[9,24],[8,24],[8,23],[15,33],[16,36],[11,24],[16,35],[15,34],[16,35],[15,35],[16,34],[16,35],[15,34],[16,35],[15,34],[16,35],[15,34],[16,35],[16,34],[15,35],[16,35],[15,34],[10,21],[3,11],[1,6],[1,7],[1,15],[1,27],[1,27],[1,27],[1,27],[1,27],[2,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[2,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[2,27],[0,6],[1,21],[1,27],[1,27],[1,28],[1,27],[1,27],[1,27],[2,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[2,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[2,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[2,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[1,27],[2,27],[1,25],[8,46],[4,16],[12,41],[11,40],[11,41],[11,41],[6,21],[2,10],[-1,10],[-4,13],[-6,14],[-17,36],[-16,37],[-16,36],[-16,36],[-8,17],[-23,36],[-4,11],[-4,13],[-4,15],[-2,27],[2,27],[7,23],[11,13],[-4,14],[-5,15],[-5,14],[-4,15],[-5,14],[-4,15],[-5,14],[-5,15],[-4,14],[-5,15],[-5,14],[-4,15],[-5,14],[-5,15],[-4,14],[-5,15],[-5,14],[-6,21],[-10,23],[-5,8],[-13,13],[-5,9],[-1,10],[0,15],[0,12],[0,31],[-1,43],[0,50],[0,50],[-1,44],[0,31],[0,11],[-2,24],[-2,26],[-3,25],[-3,37],[-3,37],[-4,37],[-3,37],[-3,37],[-4,37],[-3,37],[-3,37],[-4,38],[-3,37],[-3,37],[-4,37],[-3,37],[-3,37]],[[54300,54925],[11,31],[8,33],[3,35],[0,60],[-6,3],[-8,4],[-6,1],[-13,20],[-10,49],[-17,127],[-37,169],[-8,34],[-4,12],[-16,33],[-12,41],[-4,12],[-6,9],[-7,4],[-11,3],[-3,3],[-1,4],[0,5],[-1,7],[-3,15],[-1,6],[-2,4],[-2,1],[-2,3],[-1,7],[-3,6],[-11,17],[-4,5],[-2,1],[-3,0],[-2,-1],[-3,-2],[-4,3],[-62,105],[-62,105],[-5,19],[-2,26],[-80,192],[-24,41],[-1,9],[17,51],[23,42],[9,25],[13,57],[1,6],[0,6],[1,4],[2,2],[4,0],[68,10],[81,-42],[11,-2],[35,23],[13,-1],[16,-8],[8,-1],[8,4],[3,4],[5,9],[3,4],[3,2],[12,3],[17,-2],[47,-32],[15,1],[63,33],[4,3],[-12,23],[-9,6],[-19,24],[-13,23],[0,3],[-4,4],[-10,32],[-38,74],[-3,11],[-2,12],[0,15],[-2,11],[-2,7],[-4,7],[-4,9],[-4,22],[-2,10],[-6,6],[-1,3],[-2,2],[-3,2],[-3,0],[-3,2],[-3,3],[-1,3],[-2,11],[0,15],[2,14],[2,10],[1,10],[-2,14],[-22,87],[0,22],[3,25],[1,15],[-2,10],[-3,9],[-7,38],[-2,51],[-2,60],[2,37],[1,9],[7,20],[2,10],[-1,6],[-1,3],[-1,2],[-1,5],[0,7],[1,9],[2,30],[2,12],[2,10],[13,30],[4,16],[-3,20],[-8,20],[-3,11],[-5,26],[0,12],[0,12],[2,12],[1,1],[2,0],[2,0],[1,3],[0,4],[-3,6],[-1,2],[2,6],[4,9],[2,6],[-7,34],[-2,6],[-4,1],[-4,5],[-2,10],[0,14],[1,5],[3,5],[2,5],[-1,6],[-1,3],[-2,6],[0,6],[1,3],[8,2],[-2,7],[-4,9],[-3,8],[0,8],[1,4],[0,4],[-2,5],[-2,5],[0,7],[2,7],[1,3],[-5,10],[-6,5],[-5,-2],[-4,-7],[-4,-1],[-4,6],[-6,15],[-7,11],[-1,4],[-1,8],[1,3],[2,1],[2,4],[-1,6],[-1,3],[-1,3],[-1,4],[0,7],[1,10],[1,7],[0,42],[1,5],[-5,45],[-4,14],[0,3],[0,7],[0,2],[-1,2],[-2,1],[-1,0],[0,-3],[-2,4],[-1,1],[-1,1],[1,6],[0,4],[2,9],[1,4],[-9,72],[-3,13],[-9,-5],[-5,1],[-2,10],[-1,5],[-2,6],[-2,5],[-3,2],[-1,-2],[-4,-14],[-4,9],[4,20],[-1,10],[-5,3],[-8,-5],[-5,6],[-1,3],[-5,7],[-1,3],[0,4],[-1,3],[-2,2],[-2,-1],[-5,-9],[-3,-1],[-1,4],[0,5],[0,6],[-3,-2],[-2,0],[-1,3],[0,5],[0,23],[-5,10],[-9,14],[-3,9],[1,7],[4,27],[0,12],[0,10],[-3,9],[-4,9],[0,1],[-13,41],[-4,7],[-99,-2]],[[63318,68233],[2,-10],[3,-9],[3,-12],[1,-12],[0,-22],[1,-14],[3,-20],[8,-28],[8,-22],[8,0],[4,-26],[7,-26],[12,-32],[5,-23],[-1,-12],[-6,-2],[-12,9],[-6,7],[-1,5],[-6,2],[-7,3],[-5,1],[-16,-5],[-8,-13],[-7,-13],[-17,-18],[-12,-20],[-6,-18],[-6,-15],[-13,-11],[-1,-9],[-2,-9],[6,-1],[10,4],[8,2],[6,5],[7,4],[3,-4],[-8,-10],[0,-7],[-1,-8],[7,-9],[4,0],[6,4],[6,3],[1,15],[5,3],[5,-3],[5,7],[3,9],[5,4],[2,-3],[4,-11],[1,-2],[4,-7],[3,-2],[7,-5],[11,4],[-2,-26],[-1,-11],[1,-17],[3,-27],[3,-12],[3,-11],[2,-12],[7,-81],[5,-20],[13,-39],[5,-7],[10,-7],[1,-9],[-1,-11],[0,-12],[2,-12],[8,-20],[1,-7],[3,-8],[7,-5],[11,-5],[-3,-9],[-1,-11],[0,-10],[2,-11],[-4,6],[-2,3],[0,-5],[0,-3],[2,-2],[2,-3],[-2,-5],[-1,-1],[-1,0],[-1,2],[-2,0],[-1,-12],[3,-3],[4,4],[3,7],[1,-6],[1,-29],[1,-7],[2,-8],[5,-11],[3,-6]],[[63427,67918],[4,-3],[2,-4],[3,-5],[3,-5],[2,-5],[3,-17],[-1,-6],[-4,3],[-3,1],[-2,3],[-8,13],[-5,4],[-8,2],[-6,-1],[1,16],[3,9],[5,1],[11,-6]],[[63431,68064],[-6,-18],[-8,-20],[-10,-17],[-11,-10],[-2,1],[-10,2],[-6,15],[-10,43],[-12,39],[-1,3],[-2,4],[-5,6],[-3,6],[6,7],[3,3],[6,8],[3,1],[1,4],[2,20],[-5,4],[-2,0],[-3,0],[3,9],[4,-1],[7,-8],[3,-1],[4,1],[2,4],[-2,9],[5,4],[5,5],[1,5],[-5,6],[-3,0],[-4,-3],[-2,3],[-2,4],[0,6],[-1,6],[1,4],[-5,0],[-1,1],[-1,2],[1,4],[4,5],[4,3],[4,1],[4,-3],[3,-5],[43,-114],[5,-21],[-2,-27]],[[63355,68239],[-2,-4],[-3,-6],[-1,-3],[-8,-7],[-2,-1],[-2,3],[-1,4],[-1,3],[4,5],[6,14],[3,4],[11,2],[4,0],[-1,-6],[-7,-8]],[[24972,58602],[-4,38],[0,9],[1,10],[1,9],[2,9],[4,7],[7,8],[4,6],[2,8],[2,9],[2,8],[4,8],[27,39],[6,12],[3,4],[12,10],[4,0],[5,-2],[8,-12],[4,-4],[4,5],[0,3],[0,1],[-2,9],[0,4],[0,5],[12,44],[6,12],[7,12],[7,6],[30,15],[2,4],[0,9],[-1,3],[-4,3],[-1,3],[0,4],[-1,9],[0,2],[-2,7],[-1,2],[-1,3],[-2,2],[-6,2],[-2,8],[2,5],[3,4],[2,6],[-1,7],[-2,6],[-2,6],[2,10],[4,6],[4,-1],[3,-6],[1,-11],[4,5],[7,17],[2,2],[3,3],[4,-1],[3,-4],[3,-2],[5,2],[6,13],[3,2],[0,-11],[2,5],[0,1],[8,-12]],[[25177,59007],[4,-2],[11,-3],[9,-9],[14,-6],[7,-10],[13,-8],[2,5],[4,16],[3,4],[2,2],[2,-1],[1,-2],[2,-5],[1,-5],[1,-6],[-1,-6],[-1,-6],[3,-6],[10,-2],[4,-5],[2,-7],[1,-18],[1,-5],[8,-12],[2,-6],[3,-9],[1,-7],[0,-3],[0,-5],[1,-6],[2,-4],[3,2],[3,4],[4,3],[5,0],[7,-9],[5,-15],[4,-18],[2,-17],[5,2],[12,-2],[4,2],[3,4],[2,1],[2,-7],[0,-10],[-2,-10],[0,-8],[4,-6],[6,-2],[2,-1],[2,-3],[1,-4],[1,-5],[-1,-3],[0,-1],[2,1],[7,2],[7,-1],[21,-14],[13,-2],[2,-2],[3,-5],[-1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[1,-7],[0,-6],[-1,-8],[0,-8],[1,-6],[3,-16],[0,-9],[-3,-8],[8,0],[5,7],[5,4],[11,5],[3,0],[4,-3],[2,-1],[1,2],[0,3],[0,4],[1,2],[1,0],[3,0],[2,-2],[2,-1],[2,7],[3,2],[3,1],[3,2],[2,4],[1,4],[1,4],[2,4],[3,3],[3,-1],[2,1],[1,8],[-1,2],[-2,4],[-1,3],[0,11],[0,2],[3,2],[4,0],[1,-1],[7,-3],[4,0],[14,4],[8,-1],[3,-6],[4,-22],[4,-10],[5,-10],[5,-11],[2,-14],[13,13],[4,2],[2,-1],[4,-5],[2,-2],[1,2],[4,5],[2,2],[3,0],[5,-3],[3,1],[3,4],[2,6],[3,4],[4,1],[3,-4],[2,-16],[2,-7],[2,-2],[4,-3],[1,-2],[5,-8],[8,-14],[5,-4],[-3,-9],[-5,-26],[-2,-10],[2,-10],[-1,-6],[-3,-6],[-3,-7],[-1,-10],[1,-22],[-1,-11],[-7,-34],[-1,-16],[3,-14],[2,-2],[6,4],[4,-3],[2,-5],[2,-7],[0,-8],[0,-8],[-5,-11],[-22,-21]],[[25606,58409],[-2,3],[-2,5],[-2,13],[-8,-29],[-2,-16],[5,-8],[4,-2],[9,-19],[5,-7],[1,-3],[0,-8],[-3,-12],[-5,-9],[-21,-22],[-5,-9],[-1,-10],[6,-9],[-10,-5],[-38,6],[-9,4],[-2,0],[-5,-4],[-24,-5],[-25,9],[-7,-5],[-4,3],[-4,2],[0,3],[7,1],[0,9],[-3,11],[-5,8],[1,-5],[3,-9],[1,-6],[-10,0],[-5,-1],[-4,-3],[3,-3],[2,1],[3,1],[4,1],[0,-5],[-7,-5],[-7,0],[-5,7],[-2,15],[3,-3],[1,-1],[3,8],[0,3],[-4,5],[-6,15],[-3,5],[1,-9],[1,-7],[1,-6],[-1,-6],[-4,5],[-12,6],[-5,5],[-4,17],[-3,3],[-3,1],[-9,4],[-4,0],[-11,-5],[-16,-1],[-3,-3],[1,-3],[2,-2],[2,-1],[2,2],[8,-4],[22,5],[3,-1],[4,-4],[1,-4],[4,-9],[2,-3],[0,-5],[-5,2],[-4,2],[-8,5],[0,-4],[23,-10],[12,-8],[5,-11],[-2,-7],[-5,2],[-5,6],[-4,6],[-4,4],[-72,28],[-9,8],[-68,67],[-33,42],[-19,17],[-21,10],[-9,0],[-7,4],[-40,-1],[-17,9],[-8,3],[-17,12],[-10,-4],[-26,-1],[-4,7],[-3,21],[-1,14],[-3,6],[-6,7],[-23,27],[-19,18],[-22,22]],[[25631,58286],[0,7],[2,3],[4,-2],[2,-11],[0,-9],[2,-6],[-3,-3],[-3,3],[-3,-2],[0,6],[-1,6],[0,8]],[[25620,58315],[3,-2],[1,-9],[-1,-5],[-2,-4],[-4,7],[-1,10],[2,3],[2,0]],[[24972,58602],[-40,35],[-44,40],[-27,21],[-22,11],[-16,6],[-20,4],[-21,-5],[-3,-2],[-32,-4],[-37,1],[-34,8],[-42,17],[-65,61],[-24,28],[-35,44],[-40,62],[-40,73],[-54,82]],[[24376,59084],[5,2],[5,13],[7,35],[5,22],[2,9],[-1,12],[-5,29],[0,4],[1,9],[-1,4],[-2,15],[-1,5],[0,12],[1,7],[6,14],[3,18],[-1,37],[1,19],[4,7],[3,2],[4,1],[3,3],[3,7],[6,27],[-36,96],[-2,10],[0,11],[1,10],[5,19],[14,48],[9,31],[10,37],[22,78],[22,78],[19,69],[14,48],[5,18],[6,23],[3,8],[5,5],[13,0],[38,0],[38,0],[38,0],[39,0],[36,0],[2,0],[38,1],[39,0],[38,0],[25,0],[5,1],[5,4],[1,3],[2,9],[1,5],[-2,-2],[-1,-1],[-1,-2],[-2,0],[-1,10],[7,12],[-4,7],[0,4],[6,5],[-1,6],[-9,9],[-1,11],[2,8],[4,6],[3,3],[-4,3],[-2,5],[-1,6],[3,7],[1,-3],[1,-1],[4,-1],[-1,3],[-2,7],[-1,3],[1,0],[1,1],[0,1],[0,2],[2,-3],[2,-1],[2,2],[0,6],[-2,-2],[-4,3],[-3,5],[2,2],[5,3],[4,8],[2,10],[-2,8],[-2,0],[0,-5],[-2,0],[1,9],[2,3],[4,-1],[4,-2],[-3,11],[0,3],[0,8],[-1,8],[-2,1],[-2,-2],[-3,-1],[-2,1],[-2,3],[-3,3],[-8,2],[-1,4],[0,5],[-1,6],[-2,3],[-3,4],[-3,2],[-6,-7],[-2,6],[-1,12],[-3,0],[-7,-4],[-2,-1],[-1,1],[-4,2],[-5,0],[-3,-2],[1,6],[3,4],[2,5],[0,6],[-4,4],[-4,1],[-2,2],[2,9],[-1,9],[2,10],[1,9],[-4,4],[-1,-3],[-1,-2],[-1,-1],[-3,-1],[0,3],[4,14],[-4,22],[-19,55],[-4,7],[-9,10],[-5,7],[1,7],[0,4],[-3,5],[-3,-5],[-3,0],[-19,12],[-6,6],[-8,17],[-5,6],[4,10],[-1,4],[-3,2],[-5,0],[-1,-3],[1,-5],[1,-6],[-3,-2],[-2,2],[-3,7],[-2,3],[-10,8],[-4,6],[-1,12],[-1,6],[-10,25],[-1,5],[-2,11],[-1,4],[-3,1],[-7,-1],[-3,2],[-9,22],[-3,8],[-1,6],[-2,11],[-1,4],[-2,3],[-6,3],[-1,4],[-1,9],[-1,11],[-3,9],[-3,5],[-7,1],[-8,-2],[-5,2],[-3,14],[-4,5],[-8,3],[-7,6],[1,10],[2,0],[122,-1],[0,162],[1,163],[2,5],[5,4],[12,0],[62,-1],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0]],[[25233,61020],[1,-128],[2,-165],[0,-168],[-5,-154],[-5,-166],[-2,-61],[-4,-123],[-8,-137],[0,-28],[0,-8],[2,-7],[1,1],[2,3],[4,2],[2,1],[5,4],[21,-2],[8,3],[9,0],[25,-13],[10,8]],[[25301,59882],[4,-3],[10,-17],[9,5],[13,-5],[9,-12],[1,-12],[6,-2],[28,-37],[-3,-26],[1,-4],[7,0],[3,2],[1,5],[0,5],[-1,0],[0,3],[-1,2],[-1,2],[0,5],[2,1],[2,-1],[3,1],[1,5],[1,10],[2,6],[3,5],[1,6],[1,9],[-2,14],[-1,9],[2,0],[0,-6],[0,-2],[2,0],[3,4],[9,-3],[4,3],[-7,13],[-3,5],[-6,5],[-2,6],[-2,7],[-2,5],[-11,14],[-4,8],[4,10],[4,-5],[8,-7],[3,-4],[9,-18],[5,-6],[15,-26],[29,-27],[9,-18],[3,-2],[12,-23],[10,-8]],[[25494,59783],[-3,-3],[-1,-5],[0,-7],[-2,-8],[-2,5],[-4,-4],[-4,-5],[-5,-3],[-6,-1],[-1,-4],[-9,-30],[-13,-26],[-19,-31],[-9,-14],[-24,-39],[-24,-39],[-24,-38],[-24,-39],[-35,-56],[-10,-9],[-28,-20],[-9,-9],[-1,-3],[-4,-6],[-3,-11],[-5,-27],[6,-11],[0,-16],[-4,-16],[-2,-7],[-3,-7],[-7,-13],[-2,-7],[0,-11],[1,-8],[3,-8],[5,-14],[3,-9],[5,-26],[3,-8],[3,-5],[1,-3],[0,-2],[1,-10],[-1,-5],[-3,-6],[-1,-4],[1,-30],[0,-10],[-1,-10],[-3,-7],[-4,0],[-6,5],[-4,1],[-5,-1],[-2,-3],[-1,-5],[-3,-6],[-8,-16],[-4,-8],[-3,-11],[-2,-5],[-6,-3],[-3,-4],[-2,-7],[-1,-10],[1,-18]],[[84452,44937],[5,3],[22,19],[5,1],[4,4],[6,19],[3,6],[8,8],[19,12],[27,11],[3,3],[2,7],[6,2],[7,1]],[[84699,45162],[10,12],[5,12],[14,43],[1,9],[3,5],[12,10],[4,8],[1,10],[2,53],[2,14],[4,12],[4,8],[6,4],[13,4],[5,6],[2,1],[10,-3],[4,2],[8,10],[18,12],[6,1],[18,-3],[6,3],[15,14],[7,2],[7,-5],[3,1],[8,16],[5,-5],[8,0],[15,5],[33,22],[13,2],[29,-11],[11,-11],[7,-2],[6,3],[12,7],[3,1],[3,1],[13,1],[11,3],[6,6],[12,18],[9,6],[9,11],[3,1],[6,0],[2,3],[6,-8],[5,-5],[7,-3],[6,-1],[4,-3],[11,-20],[11,8],[21,21],[8,4],[5,8],[2,2],[3,1],[5,-4],[2,0],[12,5],[12,11],[29,43],[6,6],[4,-2],[5,-7],[19,-20],[6,-3],[6,-1],[7,1],[5,5],[9,13],[2,2],[3,-2],[2,-4],[0,-5],[2,-6],[6,-7],[13,-8],[5,-7],[2,-12],[-3,-10],[-20,-32],[-13,-27],[-25,-42],[-18,-37],[-2,-6],[-3,-1],[-20,-9],[-18,-27],[-8,-9],[-42,-6],[-6,-3],[-3,-4],[-8,-12],[-3,-2],[-2,-1],[-6,-1],[-3,-2],[-11,-27],[-10,-36],[-10,-18],[-11,-7],[-74,-20],[-8,-7],[-4,-4],[-21,-30],[-28,-41],[-5,-3],[-16,5],[-6,-1],[-3,-3],[-6,-11],[-3,-2],[-11,0],[-6,-3],[-18,-22],[-5,0],[-14,4],[-5,-2],[-6,-9],[-5,-7],[-18,-14],[-30,-24],[-10,-13],[-15,-25],[-7,-7],[-4,-8],[-5,-17],[-3,-7],[-3,-5],[-4,-3],[-13,-2],[-5,-3],[-5,-6],[-5,-10],[-10,-15]],[[84880,45616],[3,10],[6,15],[8,11],[5,-5],[-2,-19],[-11,-55],[-2,-18],[-1,-5],[-3,-4],[-2,-2],[-1,3],[-2,2],[-9,6],[-4,4],[-3,7],[-1,6],[1,5],[2,8],[4,7],[9,16],[3,8]],[[81952,53325],[5,-12],[5,7],[6,13],[6,7],[6,3],[0,7],[-2,9],[-2,10],[1,5],[1,2],[3,1],[3,0]],[[81666,53195],[70,-5],[21,8],[19,23],[27,21],[10,7],[6,13],[4,17],[10,21],[34,57],[10,14],[47,60],[36,32],[7,2],[5,-5],[0,-7],[-4,-7],[-8,-8],[-3,-8],[-4,-23],[-1,-7],[-2,-8],[-9,-18],[-2,-9]],[[52065,76375],[-1,-2],[-4,-5],[-4,-8],[-6,1],[-4,2]],[[48660,65272],[-48,63],[-48,64],[-48,63],[-49,64],[-33,42],[-7,8],[-40,50],[-46,59],[-47,58],[-47,58],[-55,69],[-55,69],[-54,69],[-55,69],[-55,69],[-55,69],[-55,69],[-55,69],[-55,69],[-55,69],[-55,69],[-55,68]],[[49382,71250],[6,4],[1,-1],[1,0],[1,-1],[1,-2],[8,7],[10,-4],[10,-7],[9,-4],[18,4],[7,-4],[2,0],[2,1],[5,7],[26,13],[7,9],[2,1],[9,0],[3,1],[5,5],[9,19],[17,11],[4,3],[2,11],[33,49],[5,3],[27,5],[7,4],[2,2],[1,2],[7,16],[6,3],[5,6],[4,8],[3,7],[3,12],[3,28],[3,11],[3,9],[10,44],[2,7],[3,2],[7,1],[1,3],[7,18],[3,3],[7,9],[8,14],[4,9],[2,3],[10,5],[5,6],[4,6],[5,5],[6,4],[4,-1],[1,-5],[2,-2],[3,2],[11,11],[6,20],[7,4],[2,-3],[2,-4],[3,-4],[3,-2],[3,0],[5,-3],[4,-1],[3,-2],[1,-4],[2,-5],[2,-5],[3,-1],[10,1],[5,2],[6,5],[5,7],[3,17],[4,1],[3,-2],[3,-1],[3,3],[2,4],[13,47],[0,6],[0,2],[-1,4],[0,4],[0,2],[2,1],[1,-1],[2,-3],[1,0],[3,0],[6,-1],[2,1],[12,9],[8,4],[3,-3],[1,-7],[3,-3],[4,-2],[2,-2],[1,-6],[-2,-8],[1,-7],[4,-8],[7,-7],[20,-7],[12,-9],[6,-2],[3,1],[8,4],[13,11],[11,14],[9,15],[10,35],[3,15],[9,37],[3,14],[0,7],[1,3],[2,3],[3,3],[2,3],[14,24],[4,6],[18,11],[3,4],[2,4],[6,6],[2,4],[1,5],[1,14],[2,5],[5,5],[6,2],[12,1],[7,3],[5,5],[4,7],[20,24],[11,5],[4,7],[5,8],[4,6],[6,2],[21,3],[4,1],[4,4],[9,11],[18,8],[4,6],[3,5],[6,8],[3,5],[2,5],[0,5],[2,5],[2,5],[5,4],[12,5],[11,12],[20,0],[6,4],[11,10],[7,2],[11,0],[6,1],[6,3],[17,14],[5,2],[5,-2],[13,-7],[6,-3],[7,1],[11,5],[51,5],[4,1],[3,1],[7,6],[3,1],[2,-1],[6,-3],[3,0],[15,7],[16,2],[13,-5],[4,0],[24,5],[69,36],[6,4],[6,0],[6,-2],[5,-6],[2,-5],[0,-6],[1,-4],[4,-1],[3,-1],[5,-3],[3,0],[40,4],[9,5],[26,35],[18,17],[7,10],[7,18],[2,8],[7,12],[16,20],[12,5],[3,-1],[8,-2],[9,-10],[7,-14],[8,-11],[11,-6],[9,0],[2,0],[8,9],[3,8],[2,9],[0,15],[3,1],[18,-14],[10,-5],[34,-4],[5,2],[11,5],[6,2],[3,1],[2,4],[2,4],[1,2],[3,1],[6,-1],[3,0],[10,9],[17,30],[9,10],[24,13],[13,3],[10,-4],[10,-11],[5,-1],[3,1],[6,3],[9,0],[3,0],[12,-3],[6,-5],[11,10],[4,2],[3,-1],[7,-6],[4,-1],[3,2],[8,8],[3,2],[5,0],[8,-6],[4,-2],[33,8],[3,-1],[5,-2],[4,-3],[2,-4],[4,-3],[9,0],[4,-3],[8,6],[3,1],[9,0],[20,-3],[20,4],[5,-1],[45,-33],[6,-9],[1,-4],[3,-1],[4,0],[3,0],[2,-3],[2,-8],[1,-2],[5,-4],[6,-3],[5,-1],[5,0],[-5,-29],[1,-9],[8,-10],[33,-29],[9,-4],[10,-1],[19,5],[15,8],[2,0],[8,0],[2,2],[3,7],[2,3],[11,8],[6,7],[4,21],[3,9],[5,8],[5,4],[13,6],[5,5],[10,15],[6,4],[7,1],[19,-7],[12,1],[46,18],[45,29],[11,11],[5,15],[1,12],[-1,10],[0,9],[3,11],[2,4],[12,14],[4,8],[2,5],[9,8],[13,6],[13,0],[11,-6],[10,-14],[1,-1],[0,-6],[1,-4],[2,-3],[2,-1],[3,-4],[3,-22],[5,-10],[4,2],[5,-3],[5,-5],[6,-2],[41,-4],[4,-3],[5,-5],[5,-6],[3,-7],[-1,-9],[9,-6],[11,-2],[7,1],[25,13],[8,8],[4,-4],[7,-3],[7,0],[2,5],[3,5],[12,17],[4,4],[1,3],[3,6],[2,7],[0,6],[0,7],[-1,4],[-11,20],[-9,12],[0,4],[3,1],[6,2],[3,1],[3,-2],[5,-5],[2,-1],[1,0],[1,-1],[1,-2],[1,-1],[2,2],[2,4],[1,1],[2,1],[2,-2],[5,-5],[3,-1],[3,1],[7,7],[3,0],[1,-1],[0,-2],[2,-5],[2,-7],[1,-4],[4,-1],[6,-1],[2,-1],[3,-3],[4,5],[5,3],[10,-13],[8,-15],[10,-12],[12,-4],[3,1],[2,2],[3,2],[3,-1],[3,-3],[3,-3],[3,-4],[2,-4],[13,2],[3,2],[5,10],[3,4],[-2,-12],[-4,-13],[-1,-12],[5,-8],[-5,-17],[10,-12],[16,-9],[11,-2],[40,16],[6,6],[6,8],[38,34],[5,-6],[5,-9],[6,-4],[12,1],[7,-1],[5,-5],[4,3],[3,-3],[4,-5],[4,-3],[9,-2],[10,2],[29,21]],[[53324,64397],[-19,-24],[-19,-24],[-19,-23],[-18,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-18,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-18,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-18,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-18,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-18,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-19,-24],[-19,-23],[-19,-24],[-19,-24],[-19,-24],[-36,-45],[-28,-48],[-19,-35],[-20,-34],[-20,-35],[-20,-34],[-21,-38],[-11,-18],[-16,-30],[-17,-32],[-18,-32],[-17,-32],[-18,-32],[-17,-32],[-18,-33],[-17,-32],[-18,-32],[-17,-32],[-18,-32],[-17,-32],[-18,-32],[-18,-32],[-17,-33],[-18,-32],[-17,-32],[-22,-40],[-12,-17],[-12,-9],[-36,-15],[-28,-11],[-61,-25],[-61,-25],[-27,-11],[-53,-22],[-52,-21],[-53,-22],[-52,-21]],[[58920,34575],[1,152],[-3,49],[-13,50],[-2,17],[-4,61],[2,17],[9,47],[1,16],[-2,20],[-3,22],[-2,22],[4,18],[-19,9],[-8,9],[-7,13]],[[61232,44266],[5,4],[4,-2],[2,-6],[-3,-8],[5,-3],[7,14],[5,-7],[1,-12],[-3,-10],[-4,-8],[-2,-6],[2,-10],[5,-4],[6,-2],[4,-5],[2,-9],[1,-20],[2,-9],[4,-5],[11,-3],[4,-4],[2,-10],[-4,-3],[-10,2],[-9,-5],[-24,-39],[2,-20],[2,3],[2,3],[1,5],[1,5],[5,-10],[20,-20],[5,-12],[-5,-12],[-16,-15],[-5,-10],[-5,-15],[-4,-16],[3,-22],[-2,-21],[2,-6],[3,2],[4,15],[3,3],[7,-6],[0,-17],[-4,-19],[-4,-12],[-9,-20],[-2,-6],[0,-8],[2,-15],[0,-6],[-3,-10],[-19,-28],[-2,-8],[-4,-21],[-2,-6],[-4,-2],[-6,0],[-4,-1],[3,-9],[3,-12],[2,-4],[2,12],[4,-5],[4,-9],[4,-9],[3,-9],[8,4],[1,-19],[-1,-19],[-2,-23],[-3,-19],[-2,-8],[-4,-8],[-1,-9],[3,-9],[5,-9],[2,-7],[-2,-7],[-6,-15],[-1,-5],[3,-8],[1,-7],[1,-19],[1,-12],[5,-10],[1,-4],[1,-3],[0,-29],[2,-10],[3,-10],[3,3],[1,1],[4,-4],[-8,-16],[-1,-17],[1,-18],[4,-17],[9,-25],[0,-5],[-5,-10],[-1,-6],[-1,-19],[-3,-29],[-1,-8],[1,-10],[5,-17],[2,-9],[-1,-10],[-2,-12],[-3,-11],[-4,-4],[-4,3],[-4,3],[-2,-2],[-1,-12],[7,3],[6,-9],[4,-16],[2,-15],[-1,-8],[-2,-7],[-1,-8],[1,-9],[2,-5],[4,-1],[8,2],[0,-6],[-2,-5],[-2,-4],[-7,-3],[-2,-6],[-2,-12],[-7,-22],[-1,-10],[4,-9],[3,-3],[4,-1],[11,-1],[2,-3],[-1,-40],[1,-9],[3,-4],[3,-1],[8,-9],[2,-5],[-2,-7],[-3,-1],[-5,11],[-3,0],[-2,-6],[0,-7],[3,-26],[2,0],[3,3],[4,-1],[2,-6],[2,-15],[1,-3],[4,-2],[1,-5],[0,-7],[-1,-6],[-4,-10],[-6,-3],[-6,4],[-5,9],[0,-5],[1,-6],[0,-5],[1,-1],[-4,-5],[-8,2],[-1,-5],[2,-5],[3,-5],[3,-6],[-2,-12],[-3,-16],[-1,-5],[-3,-4],[-1,-1],[0,2],[-2,3],[0,5],[-1,4],[-3,4],[-2,0],[-2,-1],[-8,-9],[-6,-8],[-4,-10],[-2,-9],[0,-11],[2,-6],[14,-27],[4,-3],[4,3],[4,10],[-2,9],[-3,8],[-1,10],[2,4],[5,0],[4,-2],[4,-4],[4,-3],[4,3],[4,0],[2,-11],[-2,-19],[-6,-34],[-2,-20],[1,-10],[3,-20],[0,-11],[-2,-44],[-1,-12],[-4,-7],[-4,-6],[-2,-8],[1,-7],[3,3],[7,12],[0,-48],[2,1],[3,1],[1,1],[-1,-13],[-9,-19],[-2,-10],[0,-25],[-2,-13],[-3,-8],[5,-9],[4,-11],[4,-9],[6,-4],[0,-4],[-3,-9],[-10,-17],[-3,-12],[1,-13],[8,-34],[1,-11],[5,-70],[3,-16],[0,-7],[1,-6],[4,-9],[2,-5],[2,-6],[0,-4],[1,-15],[3,-26],[0,-12],[-1,-16],[-3,-7],[-11,-9],[3,-4],[3,-5],[1,-7],[0,-9],[-3,-6],[-4,-3],[-8,-3],[-8,-10],[2,-10],[4,-12],[-2,-17],[4,3],[3,11],[3,1],[2,-5],[-1,-6],[-1,-6],[4,-6],[-4,-6],[-2,-2],[3,-3],[3,0],[3,3],[2,4],[0,18],[7,11],[14,12],[3,-5],[4,-9],[1,-9],[0,-17],[1,-7],[5,-6],[-3,-8],[-2,-11],[0,-12],[1,-10],[-4,-2],[-6,-11],[-3,-3],[-4,3],[-5,11],[-5,2],[6,-64],[-5,3],[-3,-4],[1,-6],[3,-6],[-6,-12],[1,-3],[1,-3],[2,-2],[-2,-27],[0,-10],[6,12],[4,13],[8,50],[2,5],[17,17],[3,1],[8,-6],[8,-14],[4,-17],[-3,-18],[-4,-5],[-8,-4],[-5,-3],[-3,-7],[0,-5],[3,-3],[4,0],[3,5],[2,5],[3,3],[4,-4],[1,-8],[0,-11],[-6,-33],[0,-7],[3,-10],[1,-2],[1,-2],[2,-3],[1,-5],[1,-4],[0,-8],[0,-5],[1,-9],[-4,-35],[0,-3],[0,-3],[2,-4],[1,-4],[0,-3],[-1,-3],[-1,-2],[-14,-12],[-2,-5],[-1,-5],[-10,-21],[-4,-8],[-4,-5],[-5,-2],[-5,-1],[-3,3],[-3,18],[-3,7],[1,-11],[1,-11],[1,-10],[5,-8],[4,-2],[13,0],[4,2],[3,-10],[3,-13],[2,-13],[-1,-9],[-4,7],[-2,1],[-3,-3],[-4,-1],[-15,8],[-3,-11],[4,-17],[10,-29],[-8,-6],[-9,-2],[-8,-7],[-5,-17],[-4,3],[-6,2],[-5,1],[-4,-2],[-2,-6],[-2,-22],[-2,-8],[10,-4],[5,-3],[4,-6],[2,18],[6,7],[7,-2],[7,-9],[4,-13],[2,-19],[-1,-16],[-6,-6],[3,-9],[0,-8],[-11,-23],[-1,-4],[1,-10],[-1,-5],[-2,-5],[-1,-4],[-6,-10],[-1,-4],[-1,-4],[1,-10],[-1,-4],[-2,-8],[-1,-9],[1,-6],[3,1],[-2,-9],[-2,-8],[-3,-6],[-5,-6],[-3,-3],[-3,0],[-7,3],[-1,-15],[-4,-11],[-11,-16],[-4,-11],[-17,-59],[-56,-119],[-12,-14],[-1,-5],[-1,-8],[-1,-6],[-3,-3],[-3,-1],[-3,-2],[-3,-4],[-2,-6],[4,-6],[5,6],[10,21],[2,-14],[-2,-10],[-3,-10],[-2,-11],[-1,-15],[-4,-9],[-9,-17],[-11,-45],[-8,-22],[-9,-10],[-18,-1],[-5,-3],[-17,-19],[-9,-15],[0,-2],[0,-5],[2,-2],[3,-1],[0,-7],[0,-15],[0,-7],[2,-12],[4,-11],[4,-8],[5,-5],[-12,-17],[-5,-3],[0,4],[-1,8],[-1,4],[-2,-3],[-3,-1],[-3,-1],[-3,1],[1,-3],[3,-7],[1,-2],[-7,-6],[-3,-4],[-3,-7],[1,-1],[0,-3],[0,-5],[-2,-5],[-4,-10],[-6,-8],[-11,-13],[-8,-14],[-12,-8],[-2,-4],[-7,-14],[-49,-52],[-43,-56],[-4,-8],[-7,-22],[-4,-5],[-5,5],[0,-2],[0,-10],[-4,-8],[-4,-5],[-6,-3],[5,-4],[4,3],[3,0],[0,-12],[-2,-10],[-3,-10],[-4,-7],[-5,-5],[-10,-2],[-9,1],[-9,-2],[-17,-22],[-10,-7],[-44,-8],[-4,3],[-6,14],[-5,3],[6,-17],[-5,-13],[-10,-8],[-10,-3],[2,11],[-13,-27],[-5,0],[-3,4],[-2,5],[-2,1],[-2,-4],[-1,-4],[0,-5],[1,-5],[-78,-64],[-4,-6],[-6,-15],[-4,-5],[-5,0],[-5,14],[0,40],[-4,11],[2,-12],[-4,-3],[-3,1],[-4,3],[-3,3],[4,-12],[7,-14],[3,-13],[-6,-10],[5,-8],[-6,-10],[-18,-14],[-36,-16],[-16,-17],[-36,-50],[-2,-1],[0,7],[-7,-6],[-10,-18],[-11,-15],[-10,3],[-6,-16],[-36,-43],[-8,-16],[-4,-6],[-4,-2],[-3,5],[-4,-14],[-3,-4],[-4,-2],[-7,0],[-3,-4],[-1,-8],[-3,-10],[-8,-9],[-8,-5],[-6,4],[-1,-22],[-8,-21],[-20,-35],[-20,-69],[-8,-16],[0,5],[-2,12],[-2,-4],[-3,7],[-2,6],[-3,4],[-3,4],[-4,6],[-1,8],[0,8],[-1,9],[-6,13],[-8,6],[-7,-4],[-4,-15],[9,12],[6,-9],[4,-20],[2,-19],[1,-22],[2,-8],[10,-4],[3,-5],[3,-5],[4,-5],[-9,-32],[-3,-11],[-8,-15],[-2,-8],[-1,-11],[-2,-7],[-5,2],[-7,4],[-5,1],[-4,-6],[-3,-8],[-4,-19],[5,4],[8,13],[4,4],[-3,-13],[-20,-48],[-11,-19],[-26,-62],[-13,-25],[-9,-4],[-2,-24],[-2,-8],[-2,2],[-6,6],[1,-12],[1,-4],[-3,1],[-5,-1],[-4,-2],[0,-4],[2,-8],[-2,-7],[-5,-12],[-11,-47],[-4,-13],[1,7],[-1,6],[-2,1],[-2,-2],[-1,-5],[-1,-13],[-2,-12],[2,-2],[3,2],[-1,5],[1,-1],[2,-2],[1,-1],[0,-2],[0,-6],[4,-13],[-2,-6],[-5,-4],[-4,-3],[-5,-4],[-6,4],[-6,6],[-6,4],[-6,13],[-9,38],[-1,-19],[6,-41],[2,-21],[-4,-19],[2,-2],[2,-3],[1,-4],[1,-5],[-1,-3],[-3,1],[-4,4],[-9,-3],[-8,-5],[-10,-2],[-4,8],[-1,34],[0,4],[1,6],[0,5],[-2,2],[-3,-1],[-1,-2],[-9,-19],[-13,-41],[-6,-9],[-9,-2],[2,12],[-1,7],[-3,0],[-4,-6],[-1,-9],[-1,-11],[-2,-10],[-3,-7],[-6,-3],[-4,5],[-2,8],[-4,3],[-2,-2],[-3,-3],[-1,-4],[-1,-6],[1,-6],[2,1],[2,3],[2,0],[-1,-10],[-40,-55],[-3,-6],[-4,-13],[-3,-5],[-4,2],[-3,-8],[-6,-22],[2,2],[1,0],[4,2],[0,-4],[-7,-9],[-8,-12],[-13,-28],[5,0],[-2,-8],[-12,-29],[-2,-3],[-4,-1],[-2,-2],[-1,-5],[-1,-6],[-1,-5],[-15,-39],[-28,-61],[-33,-53],[-26,-56],[-10,-8],[-7,-4],[-15,-32],[-8,-13],[-3,6],[-3,-4],[-8,-19],[-15,-20],[-8,7],[-3,5],[-2,8],[-1,17],[-2,9],[-2,3],[-2,3],[-12,21],[-13,10],[-3,5],[-11,33],[-2,5],[-5,4],[-1,9],[-1,11],[-2,9],[-3,4],[-4,3],[-5,3],[-4,2],[-4,-4],[-3,-17],[-4,-3],[0,-5],[5,1],[5,9],[5,3],[4,-2],[4,-4],[3,-7],[2,-18],[2,-9],[15,-43],[2,-3],[3,-2],[4,-2],[3,-2],[2,-4],[2,-10],[7,-15],[1,-5],[-1,-16],[-5,-16],[-6,-11],[-7,2],[1,-10],[2,0],[4,4],[2,2],[5,-3],[1,-4],[-2,-17],[0,-10],[2,-19],[0,-8],[0,-4],[0,-4],[-1,-2],[-2,-4],[-1,-5],[0,-6],[1,-4],[1,-5],[0,-13],[0,-6],[1,-4],[2,-9],[1,-9],[2,-9],[0,-5],[-1,-5],[-2,-5],[-1,-4],[-2,-7],[-5,3],[-9,10],[-5,-2],[-4,-4],[-3,0],[-2,10],[0,-5],[0,-3],[0,-4],[4,-10],[20,-23],[0,-3],[-2,-5],[-2,-7],[-2,-9],[-3,-20],[-1,-6],[-6,-12],[-1,-9],[6,-9],[-1,-7],[-4,-6],[-4,-3],[-4,2],[-4,6],[1,-9],[1,-9],[2,-7],[2,-6],[4,-5],[6,-3],[3,-2],[1,-5],[1,-8],[0,-10],[-1,-8],[-11,-19],[-2,-7],[10,10],[6,3],[4,-3],[1,-15],[2,-6],[4,6],[3,-12],[3,-5],[5,-5],[5,-8],[3,-7],[2,-8],[1,-9],[1,-12],[1,-6],[8,12],[4,-5],[0,-9],[-4,-6],[-3,-6],[1,-11],[2,5],[2,4],[3,2],[3,1],[13,-2],[2,-5],[9,-15],[1,-6],[0,-8],[0,-16],[3,4],[2,-1],[2,-4],[0,-7],[-1,-4],[-4,-8],[0,-6],[1,-11],[9,-16],[3,-8],[-2,-7],[-1,-8],[-1,-8],[0,-9],[8,12],[4,2],[5,-6],[2,-4],[1,-1],[0,-2],[1,-6],[0,-4],[-1,-4],[0,-3],[3,-1],[-2,-13],[-1,-6],[-3,-6],[-3,4],[-3,1],[-2,-3],[-1,-7],[1,-5],[2,-1],[1,0],[1,0],[1,-4],[-1,-5],[0,-16],[-1,-9],[-4,-5],[-5,-2],[-2,2],[-2,4],[-2,1],[-2,-7],[-1,-9],[2,-4],[2,-2],[5,-6],[1,0],[1,-1],[1,-2],[0,-3],[-1,-4],[0,-2],[-1,0],[1,-7],[-1,-5],[1,-4],[3,-4],[-2,-7],[2,-3],[3,-2],[2,-4],[1,-8],[-2,-4],[-3,-1],[-3,-3],[-3,-8],[1,-2],[3,-1],[3,-6],[0,-6],[0,-26],[7,15],[8,70],[0,-10],[-2,-38],[-2,-17],[2,-52],[9,-46],[17,-57],[4,-11],[3,-4],[9,-40],[1,-26],[-2,-51],[3,-25],[8,-37],[1,-10],[2,-37],[2,-28],[3,-50],[-8,-152],[0,-25],[1,-15],[4,-7],[5,-3],[5,-6],[5,-19],[4,-9],[2,6],[-1,26],[2,9],[7,8],[-7,21],[-4,29],[0,29],[5,22],[-1,5],[0,5],[1,4],[2,3],[3,-18],[3,-4],[3,10],[-7,25],[-2,3],[1,7],[6,17],[1,3],[-1,5],[0,3],[1,2],[2,0],[1,2],[2,2],[0,1],[1,7],[3,3],[3,-1],[3,-2],[1,-6],[0,-7],[-1,-14],[5,-100],[3,10],[1,11],[1,33],[2,14],[1,10],[2,0],[-4,-73],[0,-12],[2,-39],[-1,-13],[-14,-92],[0,-74],[8,-129],[5,-23],[3,8],[1,3],[0,5],[5,-4],[4,0],[2,3],[-2,6],[0,3],[6,-5],[-1,-17],[-11,-41],[-6,-17],[-10,-53],[-6,-18],[-1,-9],[-1,-12],[0,-12],[3,-22],[1,-12],[-2,-25],[-17,-97],[-4,-77],[0,-51],[-1,-12],[-1,-13],[-3,-5],[-3,12],[0,11],[2,11],[-1,7],[-7,3],[-5,-2],[1,-4],[3,-5],[2,-1],[1,-14],[1,-6],[-1,-11],[-3,-24],[0,-12],[0,-19],[0,-8],[-1,-6],[-2,-8],[-1,-6],[0,-4],[1,-11],[1,-7],[-1,-7],[-2,-11],[-1,-6],[2,0],[13,30],[-4,21],[-1,11],[3,9],[4,1],[4,-5],[8,-13],[5,-4],[3,0],[2,5],[2,41],[-1,7],[0,4],[11,-5],[3,-7],[1,-26],[1,-5],[2,-1],[1,-3],[-16,-103],[-1,-12],[0,-8],[3,-12],[1,-6],[-1,-6],[-2,-4],[-2,-3],[-1,-3],[-2,-12],[-3,-11],[-43,-124],[-31,-67],[-1,-6],[0,-8],[-1,-6],[-1,-5],[-21,-40],[-82,-85],[-45,-42],[-46,-23],[-1,0],[-36,-30],[-7,-4],[-31,-26],[-16,-5],[-62,-44],[-56,-41],[-40,-41],[-34,-23],[-41,-44],[-11,-5],[0,4],[5,4],[4,6],[4,7],[2,7],[-3,-2],[-12,-11],[-2,-6],[-3,-4],[-7,-2],[-5,-4],[2,-12],[1,2],[4,3],[-4,-13],[-6,-8],[-14,-12],[-6,-8],[-72,-98],[-8,-17],[-15,-40],[-6,-24],[-5,-38],[-4,-13],[2,-30],[-1,-5],[0,4],[0,4],[-2,5],[-1,0],[-2,-5],[-3,-3],[-2,-4],[-1,-6],[0,-8],[-1,-8],[-1,-8],[-2,-6],[-13,-25],[-2,-6],[-2,-4],[-7,-12],[-2,-3],[-4,0],[-2,2],[-6,7],[-4,2],[-5,1],[-5,-3],[-4,-6],[-2,-12],[1,-11],[3,-6],[3,2],[-1,3],[1,20],[2,2],[4,-2],[4,-2],[2,-2],[2,-5],[2,-10],[1,-4],[3,-3],[6,-4],[3,-5],[2,-6],[2,-14],[2,-6],[2,-5],[3,-3],[1,-3],[2,-18],[5,-26],[1,-12],[5,8],[7,-3],[7,-7],[4,-6],[6,-15],[4,-13],[4,-12],[5,-9],[3,-3],[3,3],[3,3],[5,1],[-3,19],[0,15],[1,16],[3,19],[3,27],[2,7],[4,5],[10,9],[1,-15],[-8,-95],[-3,-165],[-3,-45],[-3,-13],[-1,-7],[2,-25],[-2,-46],[0,-6],[-3,-17],[0,-6],[2,-8],[1,-6]],[[59140,35038],[-3,17],[6,16],[10,13],[8,6],[0,-6],[-2,-18],[-3,-16],[-1,-4],[-2,-5],[-1,-1],[-1,3],[-3,3],[-1,3],[0,4],[-1,2],[-4,-1],[0,-2],[-2,-14]],[[59852,37708],[3,12],[3,-1],[1,-9],[1,-14],[-2,-43],[-10,-83],[-6,0],[-2,8],[0,12],[3,45],[9,73]],[[61085,40831],[10,-2],[1,-14],[-2,-12],[-7,-15],[-2,-18],[0,-10],[-1,-8],[-7,-5],[-6,5],[-7,11],[-4,20],[1,23],[3,11],[8,8],[13,6]],[[58059,48858],[5,60],[6,13],[16,2],[5,-1],[17,-16],[6,-4],[12,-3],[6,-3],[5,-6],[3,-6],[0,-2],[0,-7],[1,-8],[0,-1],[6,-12],[2,-7],[-1,-7],[-4,-10],[-1,-6],[1,-7],[3,-13],[0,-7],[2,-11],[7,1],[12,11],[5,1],[5,-2],[11,-4],[6,-7],[5,3],[5,7],[7,2],[2,0],[3,2],[2,2],[8,7],[2,0],[3,-3],[11,-8],[6,-1],[6,1],[3,4],[1,5],[1,13],[2,5],[3,0],[6,-4],[7,0],[6,2],[5,7],[6,12],[3,11],[4,12],[2,13],[2,13],[0,6],[1,61],[6,45],[-2,45],[2,31],[0,5],[1,4],[3,0],[2,-3],[2,-3],[0,-1],[5,-9],[2,-1],[3,1],[2,-1],[3,-2],[4,-6],[8,-21],[5,-9],[6,-8],[6,-5],[6,0],[5,7],[13,34],[0,4],[0,5],[1,4],[4,0],[8,-9],[4,-2],[4,0],[6,3],[5,3],[4,5],[3,7],[2,3],[1,4],[2,5],[5,3],[1,-2],[9,-4],[1,1],[1,-4],[2,-8],[1,-5],[15,-26],[10,-9],[9,-1]],[[58216,49647],[11,-1],[6,1],[5,3],[5,7],[5,7],[4,5],[7,2],[3,-1],[6,-8],[2,-1],[3,2],[1,12],[3,6],[2,4],[3,1],[2,0],[3,-4],[8,-24],[1,-12],[1,-25],[3,-12],[4,-10],[6,-3],[6,1],[6,5],[19,22],[2,2],[3,13],[4,8],[1,1],[8,10],[12,9],[3,6],[1,9],[2,23],[2,8],[2,3],[2,1],[2,0],[2,1],[5,6],[12,25],[4,10],[3,10],[0,4],[1,9],[1,3],[1,2],[1,2],[4,4],[2,3],[1,9],[2,25],[2,8],[5,3],[4,-1],[5,-3],[5,-1],[4,2],[4,4],[4,1],[4,-3],[3,-2]],[[77429,56599],[-2,-1],[-1,-3],[-1,-3],[-4,-15],[-4,-30],[-2,-23],[-3,-9],[-6,-13],[-6,-18],[-15,-67],[-8,-24],[-5,-9],[-2,6],[0,6],[-3,8],[-1,5],[0,6],[0,12],[0,6],[-2,19],[0,27],[-5,19],[-1,7],[-1,4],[1,4],[4,24],[2,10],[1,27],[3,21],[0,13],[-4,34],[-5,18],[0,12],[1,25],[-1,25],[-9,43],[-1,25],[0,25],[1,9],[4,3],[6,-2],[3,-5],[5,-18],[3,7],[0,8],[-2,8],[-3,6],[3,3],[3,-1],[3,-4],[3,-6],[2,9],[2,16],[1,7],[5,14],[1,8],[-2,11],[3,-1],[3,1],[2,3],[2,5],[-3,2],[-7,1],[-3,3],[-1,3],[-1,5],[1,4],[9,5],[3,7],[3,7],[3,3],[2,-1],[3,-5],[2,-2],[1,2],[4,3],[4,1],[1,-2],[1,7],[2,11],[0,11],[-2,8],[3,4],[-2,5],[-5,8],[-1,3],[1,7],[1,3],[2,1],[2,3],[2,8],[-1,8],[-2,10],[-1,13],[-5,-3],[-4,5],[-5,18],[13,7],[6,8],[2,11],[0,19],[4,17],[1,12],[2,4],[0,3],[-3,10],[-6,28],[-1,10],[0,11],[1,10],[-6,-3],[-2,5],[3,21],[2,11],[6,5],[11,2],[-3,8],[0,23],[-3,9],[-3,2],[-4,-4],[-2,2],[-1,6],[2,10],[-1,5],[3,10],[1,9],[-1,21],[1,10],[1,14],[3,10],[5,-1],[3,4],[2,-2],[2,-4],[3,-2],[3,2],[1,6],[0,7],[1,5],[4,2],[5,-2],[5,-4],[3,-4],[2,0],[-4,17],[-20,8],[-6,11],[2,15],[6,13],[4,14],[-5,15],[2,-10],[-1,-7],[-3,-5],[-3,-7],[-6,-24],[-2,0],[-5,1],[-1,-3],[-1,-1],[-3,-7],[-1,-2],[-3,-3],[-1,-7],[0,-9],[-1,-7],[-3,-6],[-2,-3],[-3,2],[-8,9],[-8,14],[-2,4],[0,6],[-2,7],[0,5],[1,5],[3,11],[2,3],[1,-1],[1,1],[0,6],[-8,0],[4,13],[2,3],[2,1],[2,0],[3,-1],[3,9],[2,10],[4,9],[7,0],[-4,9],[-6,-1],[-11,-8],[-23,0],[2,12],[6,5],[14,0],[5,2],[5,6],[4,7],[3,13],[4,3],[3,1],[2,2],[0,20],[0,6],[-2,10],[-3,7],[0,7],[2,9],[-13,-2],[-2,4],[-3,6],[-3,8],[0,6],[1,8],[-1,5],[-2,5],[1,9],[2,3],[3,2],[6,3],[0,4],[-4,0],[3,6],[8,10],[4,6],[1,7],[-1,7],[-2,6],[-2,2],[-9,-3],[-7,-7],[-5,-9],[-7,-9],[-2,2],[-5,4],[-2,2],[-5,10],[-2,10],[1,12],[3,11],[4,7],[6,3],[24,11],[6,7],[3,12],[-2,10],[-4,5],[-10,8],[-6,14],[-2,2],[-4,3],[0,6],[1,13],[0,13],[2,8],[3,4],[6,2],[11,0],[3,2],[2,4],[1,4],[-2,2],[-3,0],[-3,6],[-3,2],[-3,1],[-3,0],[-3,0],[-2,3],[-2,13],[2,12],[3,13],[2,13],[1,2],[2,0],[2,-1],[1,1],[0,3],[-2,9],[1,17],[1,7],[2,6],[2,3],[1,5],[1,9],[-1,1],[-8,-3],[-3,1],[-2,2],[-1,4],[1,5],[3,2],[3,0],[2,1],[2,5],[-2,3],[-12,-3],[-3,6],[0,7],[0,-2],[2,1],[3,3],[2,1],[1,2],[1,6],[-4,49],[-3,3],[-7,16],[-3,5],[3,13],[2,5],[2,2],[-1,4],[-4,21],[-3,12],[0,6],[-1,23],[0,7],[2,5],[-2,17],[-1,43],[-3,9],[-4,4],[-15,24],[-1,22],[-1,7],[-3,-8],[-2,5],[0,6],[0,6],[0,7],[-4,18],[0,8],[4,6],[-1,4],[0,5],[1,11],[-3,-3],[-1,-5],[-2,-12],[1,10],[-1,9],[-2,8],[-2,6],[-1,2],[-2,2],[-1,3],[-1,5],[0,4],[3,5],[0,5],[-1,7],[-7,19],[-2,12],[-3,5],[-4,5],[-3,2],[1,8],[-1,5],[-6,8],[0,13],[-11,30],[-2,14],[2,-4],[1,8],[-7,3],[-5,0],[-4,4],[-1,19],[3,22],[1,9],[-1,8],[-1,8],[0,7],[2,9],[-2,6],[-4,33],[0,26],[0,6],[-1,6],[0,4],[1,5],[0,3],[-3,6],[-4,10],[-3,11],[-1,10],[-2,0],[0,-7],[-2,-13],[0,-7],[1,-3],[4,-10],[1,-3],[0,-16],[-2,-8],[-3,-8],[0,-8],[4,-22],[1,-11],[-1,-11],[-2,-21],[-3,-49],[4,-27],[1,-11],[-1,-10],[-2,-11],[-1,-3],[-1,-3],[-1,-3],[-1,-7],[-1,-7],[0,-6],[1,-12],[3,-7],[1,-4],[-2,-4],[-2,0],[-2,3],[-4,9],[0,-5],[-1,-4],[0,-3],[-1,6],[0,8],[0,7],[-2,3],[-2,2],[2,6],[2,6],[2,2],[-1,3],[-1,6],[-1,4],[4,2],[1,7],[0,9],[-2,9],[5,0],[0,5],[-2,5],[-4,3],[-6,-1],[-2,1],[-4,4],[1,3],[2,10],[1,3],[-7,7],[-3,17],[2,15],[6,-2],[-2,26],[0,24],[2,10],[0,6],[-1,2],[-1,1],[-3,3],[-2,3],[-1,4],[-1,14],[-3,24],[-1,13],[1,13],[6,18],[2,9],[1,8],[2,11],[1,8],[0,5],[-4,21],[4,0],[-1,8],[-1,6],[-2,1],[-2,-7],[-13,37],[-7,33],[-6,18],[-2,13],[-2,15],[0,12],[1,13],[3,18],[2,11],[-3,-5],[-2,-6],[-2,-4],[-3,3],[-1,6],[-3,27],[-8,32],[-3,17],[4,16],[-7,10],[-4,15],[0,17],[5,15],[11,6],[7,-14],[6,-19],[10,-10],[-10,27],[-2,13],[5,4],[-5,4],[-4,4],[-1,7],[2,10],[-2,3],[-2,6],[-1,5],[-1,4],[0,3],[-2,-2],[-2,-7],[1,-1],[1,-3],[0,-5],[0,-3],[-4,-7],[-4,4],[-2,10],[-1,13],[-2,0],[-1,-11],[2,-24],[-2,-5],[-2,-2],[-1,-3],[-2,-3],[-4,0],[-1,1],[-2,3],[-1,4],[-1,4],[-8,68],[-6,17],[2,6],[1,6],[0,14],[0,7],[3,8],[0,5],[-1,15],[-2,9],[-4,6],[-4,5],[1,5],[2,3],[3,1],[3,-1],[-1,5],[-1,7],[-2,5],[4,9],[1,12],[-1,47],[1,10],[3,11],[-8,0],[-4,1],[-3,7],[-7,26],[-1,5],[0,10],[1,15],[-1,7],[-4,6],[1,6],[2,3],[1,2],[3,1],[3,20],[2,-3],[2,3],[5,8],[-2,7],[-7,42],[0,8],[4,17],[-2,7],[-7,36],[0,3],[1,5],[0,5],[0,5],[-2,4],[1,5],[0,9],[-1,9],[-2,7],[-2,5],[1,5],[1,5],[1,5],[-1,5],[-4,9],[-1,4],[0,4],[3,5],[0,4],[1,38],[-2,8],[-4,2],[2,17],[-6,14],[-15,22],[-8,21],[-8,14],[-1,5],[0,3],[-2,24],[0,6],[1,4],[1,3],[2,1],[5,4],[3,9],[2,10],[5,67],[3,13],[0,7],[0,7],[-1,6],[-2,11],[-3,23],[-1,26],[1,25],[3,24],[4,17],[6,16],[8,11],[10,4],[-1,5],[-2,3],[-2,3],[-2,1],[-3,-3],[-14,-20],[-6,-5],[-5,-1],[-18,5],[-7,-1],[-6,-3],[-2,-2],[-1,-2],[-2,-3],[-2,-1],[-2,1],[-3,2],[-2,1],[-8,-1],[-5,-4],[-5,-7],[-4,-13],[-10,88],[0,14],[-2,15],[-5,-17],[-7,4],[-8,23],[-5,21],[-2,22],[0,16],[4,12],[-3,7],[-1,6],[1,6],[1,15],[-2,0],[-2,-13],[-1,-7],[0,-9],[-3,5],[-1,7],[0,8],[0,9],[4,16],[-3,4],[-2,-1],[-3,-3],[-2,12],[1,15],[3,30],[0,9],[-1,5],[-5,10],[-2,5],[-2,7],[-1,9],[-1,8],[5,15],[8,-4],[9,-6],[7,7],[-11,11],[-5,3],[-6,2],[-6,-3],[-3,-7],[-2,-11],[-3,-12],[-5,13],[-3,20],[-2,18],[4,10],[0,4],[-6,3],[-2,10],[0,12],[-3,12],[-6,6],[-7,4],[-4,6],[1,12],[-30,46],[-2,5],[-2,6],[-1,10],[1,19],[-2,8],[-3,-9],[-2,-23],[-2,-9],[-1,4],[-3,5],[0,4],[-2,-2],[-2,-2],[-1,-3],[-1,-2],[2,-4],[6,-17],[10,-12],[7,-13],[0,-19],[-6,-14],[-7,-12],[-4,-17],[2,-26],[11,-40],[4,-20],[0,-25],[-2,-9],[-5,-18],[-2,-26],[-3,-4],[-9,4],[1,-5],[1,-5],[2,-5],[2,-5],[-4,1],[-6,3],[-4,0],[0,-4],[4,-4],[4,-6],[2,-6],[2,-8],[-1,-10],[-4,-13],[-2,-13],[-4,-21],[-4,-1],[-2,-4],[1,-5],[2,-6],[-5,-15],[-4,-9],[-11,-17],[-3,-6],[-5,-17],[-5,-32],[-11,-18],[-7,-16],[-16,-13],[-17,-7],[-17,-4],[-10,16],[-6,2],[-6,6],[-19,29],[-4,9],[-2,9],[0,14],[-1,12],[-2,9],[-6,24],[-1,13],[-1,12],[0,13],[2,9],[11,15],[4,7],[-9,1],[-14,-22],[-10,-4],[2,-5],[5,-12],[1,-5],[2,-22],[3,-10],[7,-18],[1,-11],[0,-7],[-3,-13],[-1,-6],[1,-7],[3,-12],[14,-38],[4,-16],[5,-6],[2,-9],[-4,-14],[-4,-5],[-6,-24],[-17,-13],[-16,-7],[-6,-4],[-7,-2],[-6,4],[-3,12],[-3,7],[-19,16],[16,-31],[1,-15],[-14,-32],[-11,-20],[-5,-4],[-5,2],[0,4],[2,8],[0,11],[-4,-9],[-4,-10],[-4,-9],[-7,-1],[1,5],[1,16],[-20,-41],[-5,-18],[-6,-3],[-6,3],[-3,8],[0,10],[-1,11],[-2,11],[-3,6],[3,-57],[-2,-12],[-8,-24],[-2,-10],[0,-28],[-1,-8],[-6,-23],[-39,-86],[-18,-26],[-8,-16],[-4,-6],[-6,-4],[-6,-1],[-18,5],[-4,3],[-2,7],[-1,58],[2,5],[3,4],[3,8],[1,11],[-1,9],[7,13],[5,17],[2,20],[2,19],[-1,13],[-1,9],[-4,19],[-1,11],[1,7],[2,8],[2,11],[-2,0],[-2,-6],[-3,-5],[-2,-6],[-1,-7],[1,-10],[4,-18],[1,-11],[-1,-27],[-1,-7],[-8,-22],[-4,-26],[-7,-16],[-6,-5],[-4,15],[2,13],[5,15],[4,18],[-1,19],[-9,-31],[-5,-19],[-1,-20],[1,-44],[-3,-14],[-11,-5],[-8,6],[-5,17],[-3,22],[0,23],[6,67],[-2,19],[-6,-32],[-3,24],[4,25],[7,20],[10,7],[10,-1],[3,1],[2,4],[-1,3],[-3,1],[-3,0],[-2,2],[-1,5],[-2,2],[-1,-1],[-5,-3],[-2,-1],[-2,-1],[-1,2],[-2,8],[-2,0],[-2,-10],[-8,-22],[-6,-12],[-1,-15],[2,-30],[-1,-16],[-5,-74],[-2,-14],[-3,-10],[-3,-2],[-4,-2],[-4,-2],[-1,-4],[-1,-4],[-1,-5],[-1,-4],[-2,-2],[-7,0],[-3,0],[-10,9],[-12,2],[-3,5],[3,11],[3,4],[3,3],[3,4],[1,7],[0,5],[-1,5],[-1,5],[-1,1],[-6,-13],[-3,-2],[-1,13],[0,19],[0,8],[-3,17],[-1,7],[2,8],[3,9],[3,8],[3,4],[4,1],[5,4],[4,7],[1,12],[-10,-13],[-1,11],[-1,26],[-5,20],[0,9],[2,8],[5,17],[3,8],[5,5],[7,2],[5,3],[4,8],[3,11],[2,11],[-1,-4],[-4,-8],[-1,-3],[-1,-3],[-7,-3],[-5,-4],[-6,0],[-3,-2],[-6,-19],[-1,-3],[-3,-5],[-2,-12],[0,-26],[1,-6],[2,-12],[1,-6],[0,-4],[1,-2],[1,-3],[-4,-13],[0,-3],[-3,-8],[-16,-22],[-4,-11],[-8,-37],[-2,-8],[-4,-7],[-5,-5],[-6,-1],[-7,5],[-2,8],[-2,11],[-2,13],[-1,-11],[-3,1],[-3,8],[-3,9],[8,11],[10,11],[11,15],[8,20],[2,30],[2,5],[3,5],[2,5],[1,6],[1,5],[0,12],[1,2],[2,3],[3,5],[0,8],[-5,-6],[-3,-7],[-4,-19],[-7,-26],[-2,-11],[-4,-15],[-4,-8],[-5,-6],[-16,-31],[-7,-7],[-6,2],[-1,16],[7,20],[15,29],[6,20],[4,25],[2,26],[-1,26],[-4,19],[-1,10],[2,10],[4,10],[5,36],[2,4],[3,2],[3,-1],[0,4],[-3,6],[-5,56],[1,7],[1,8],[2,3],[2,1],[2,3],[0,9],[-10,-10],[-4,2],[-2,12],[-1,-13],[3,-52],[0,-34],[-1,-9],[-7,-16],[-1,-8],[-2,-15],[-4,-14],[-6,-10],[-6,-4],[-1,4],[3,10],[6,15],[6,24],[-2,11],[-3,-1],[-3,-10],[-2,-19],[-2,-6],[-3,-5],[-2,-2],[-4,1],[-2,4],[-2,4],[-2,3],[-5,2],[-1,-5],[0,-23],[0,-14],[-1,-11],[-2,-10],[-14,-49],[-8,-19],[-9,-9],[-5,-2],[-4,-4],[-3,-9],[-1,-16],[-2,-6],[-5,-4],[-6,0],[-4,5],[-6,-14],[-4,-4],[-3,5],[-7,23],[-1,8],[-1,9],[2,67],[6,69],[0,44],[0,8],[1,3],[4,8],[1,5],[4,46],[-1,36],[1,7],[10,-6],[6,0],[3,12],[2,17],[0,9],[-6,5],[0,3],[7,7],[3,10],[0,30],[1,9],[2,17],[1,7],[1,8],[5,13],[1,7],[0,25],[-2,9],[-3,16],[-1,8],[1,9],[2,3],[3,-1],[3,-2],[3,0],[3,5],[8,24],[-5,0],[2,9],[2,10],[-1,40],[1,6],[1,6],[4,13],[2,8],[1,11],[-1,10],[-7,7],[-2,8],[1,8],[2,5],[13,-12],[2,2],[1,4],[3,2],[2,3],[0,6],[-1,5],[-2,2],[-3,2],[-1,3],[-1,8],[1,26],[1,8],[4,1],[4,4],[0,14],[4,-2],[3,-3],[4,-5],[2,-7],[-4,40],[-3,61],[0,9],[1,10],[0,7],[-1,8],[-2,8],[-1,3],[-1,3],[0,8],[2,15],[5,-3],[5,-11],[5,-8],[-1,9],[-6,20],[1,6],[1,7],[-2,6],[-4,9],[-3,12],[-2,12],[-1,27],[-3,12],[-11,23],[-3,18],[-1,35],[-1,16],[-10,42],[-1,8],[2,9],[8,8],[3,6],[1,13],[-1,14],[-3,13],[-5,17],[-1,6],[0,7],[0,7],[-2,5],[-3,7],[-1,4],[-2,23],[-2,12],[-5,5],[-12,-3],[-6,1],[-4,7],[0,5],[0,8],[0,8],[1,5],[3,2],[3,-8],[4,3],[4,-6],[2,-1],[3,3],[3,10],[2,3],[-3,10],[-2,11],[-2,8],[-7,4],[-4,4],[-2,9],[-1,11],[-3,10],[-14,32],[-6,17],[-4,18],[4,-2],[1,5],[-2,49],[-2,7],[-27,54],[0,5],[2,0],[5,-8],[10,0],[19,8],[-4,4],[-4,4],[-6,-10],[-5,4],[-8,26],[-8,21],[-2,11],[1,17],[-3,-5],[-2,-8],[0,-9],[1,-7],[-4,-2],[-6,3],[-6,7],[-3,9],[-3,-3],[-1,-1],[-4,10],[-2,18],[2,17],[4,11],[-3,21],[-1,8],[1,7],[3,10],[0,5],[3,11],[1,1],[-1,4],[-1,5],[0,3],[7,10],[3,4],[-4,0],[-7,-3],[-3,0],[-4,4],[-1,4],[2,6],[1,10],[0,6],[-2,13],[0,9],[2,7],[3,16],[1,8],[-2,49],[1,10],[3,5],[3,13],[1,13],[-2,9],[-3,-15],[-7,-28],[-2,-18],[3,-30],[0,-18],[-3,-8],[-4,-7],[-4,-12],[-6,-8],[-7,8],[-2,6],[0,15],[-1,6],[-3,3],[-3,-3],[-2,-8],[0,-9],[2,-4],[9,-18],[2,-7],[0,-5],[-1,-5],[0,-7],[0,-39],[2,-12],[1,-7],[5,-12],[1,-7],[0,-7],[-2,-9],[0,-5],[-1,-6],[-6,-16],[-1,-1],[-3,-2],[0,-1],[0,-3],[0,-5],[1,-3],[1,-1],[-4,-6],[-3,5],[-3,9],[-12,8],[-14,29],[-6,5],[-12,10],[-4,7],[-3,6],[-1,6],[-2,5],[-3,5],[-3,1],[-2,-1],[-2,0],[-2,8],[-1,7],[1,13],[-1,7],[-2,5],[-1,6],[-2,7],[0,6],[-2,9],[-10,17],[-3,8],[-8,33],[-3,4],[-16,45],[-3,11],[-1,10],[0,25],[2,9],[5,9],[6,6],[6,-1],[2,-4],[1,-6],[1,-4],[3,-2],[9,0],[6,-19],[2,-14],[-5,-8],[12,-17],[7,-6],[8,-1],[1,-15],[9,-13],[12,-7],[10,2],[9,9],[18,27],[6,13],[0,2],[-1,8],[1,2],[0,1],[3,2],[0,1],[5,14],[2,9],[0,11],[-1,19],[2,7],[0,4],[-2,5],[-2,-1],[-8,-3],[-7,3],[-2,6],[1,7],[5,4],[-3,3],[-3,1],[-7,0],[-2,2],[-8,15],[-11,15],[-6,11],[-2,12],[-3,7],[-10,8],[-2,9],[2,11],[5,6],[6,1],[6,-3],[-2,10],[2,9],[4,8],[3,9],[-4,13],[-1,3],[-2,-16],[-5,-16],[-6,-10],[-8,2],[-3,5],[-2,7],[-1,9],[0,11],[2,7],[7,6],[2,7],[-8,2],[-4,-9],[-1,-11],[-3,-6],[-12,0],[-4,6],[0,15],[-3,-16],[-2,-6],[-4,-3],[0,39],[1,7],[15,44],[5,8],[7,1],[10,-2],[-3,7],[-1,7],[1,5],[5,2],[-2,5],[-2,4],[-2,2],[-2,1],[-2,-2],[0,-9],[-1,-1],[-14,-1],[-3,-1],[-2,-2],[-3,-1],[-5,1],[0,-2],[-3,-11],[-1,-4],[-4,0],[-4,2],[-3,5],[-3,5],[2,2],[2,4],[2,3],[-10,8],[-3,5],[3,7],[-4,4],[-1,7],[1,7],[4,2],[0,4],[-1,4],[-4,-3],[-3,-4],[-2,-5],[-1,-8],[-1,3],[-3,6],[-2,3],[-2,-14],[-1,-4],[-3,-2],[-4,3],[-3,5],[-3,8],[-1,6],[-1,15],[-6,30],[0,14],[-2,0],[0,-22],[-1,-12],[-3,-2],[-2,7],[-4,37],[-2,0],[-2,-12],[-4,-9],[-5,-7],[-6,-4],[-7,1],[-9,6],[-7,3],[-3,-6],[-5,4],[-3,5],[-4,7],[-2,8],[1,-12],[2,-9],[5,-19],[6,-41],[16,-66],[1,-15],[-6,9],[-4,16],[-7,32],[-5,29],[-3,17],[-5,7],[-6,-8],[-2,-17],[1,-20],[5,-22],[2,-19],[1,-8],[3,-9],[2,-2],[1,-1],[1,-2],[3,-9],[-1,-1],[-5,13],[-3,1],[-1,2],[-3,7],[-3,17],[-15,45],[-2,10],[-1,16],[-3,11],[-7,16],[-6,16],[-3,6],[-1,6],[-1,17],[-1,8],[5,-3],[15,3],[4,3],[3,7],[4,14],[1,-3],[0,-3],[1,-2],[0,-4],[2,0],[6,31],[1,5],[0,4],[-9,-4],[-11,-26],[-8,-10],[-8,3],[-1,19],[4,31],[5,10],[6,45],[4,10],[7,5],[3,14],[2,29],[-5,-8],[-2,-24],[-4,-9],[-4,2],[-3,12],[-1,15],[1,12],[10,39],[4,22],[-3,12],[-1,-11],[-3,-13],[-3,-13],[-4,-10],[-3,-13],[-1,-17],[1,-33],[-2,-26],[-6,-22],[-16,-45],[-11,-45],[-1,-1],[-1,-3],[-3,-3],[-3,-1],[-2,2],[-2,3],[-2,8],[-18,27],[-3,7],[1,9],[1,9],[2,9],[4,7],[18,25],[10,4],[12,8],[-3,3],[-2,1],[-6,0],[-3,1],[-1,3],[-1,3],[-2,6],[-6,11],[-3,5],[-2,8],[-2,53],[-2,9],[-3,6],[-6,1],[1,-14],[-3,-12],[-5,-5],[-2,11],[4,3],[1,0],[-8,12],[-2,18],[-2,20],[-4,18],[-6,16],[-10,35],[-8,11],[7,-26],[12,-38],[2,-6],[2,-47],[6,-33],[0,-9],[-2,-27],[2,-61],[-2,-13],[-2,8],[-5,12],[-3,10],[-12,65],[-5,16],[-26,48],[-3,10],[-3,27],[-3,12],[-10,20],[-3,6],[-1,5],[-1,4],[-4,1],[-3,2],[-6,8],[-3,2],[-4,6],[-3,12],[-3,27],[-15,89],[-5,16],[-2,9],[-3,53],[-2,7]],[[75628,62942],[-11,19],[-2,10],[-1,8],[-7,13],[-2,8],[-2,10],[1,9],[2,18],[0,12],[-2,23],[0,12],[2,10],[8,22],[3,26],[3,11],[5,2],[9,-1],[10,26],[9,-6],[4,-10],[1,-10],[1,-10],[2,-10],[2,-5],[3,-3],[6,-4],[12,-3],[9,4],[7,-3],[6,-24],[2,-24],[2,-12],[3,-7],[6,1],[6,8],[6,11],[2,10],[0,6],[-1,6],[-10,60],[-3,30],[0,15],[-4,141],[5,90],[-1,18],[-4,36]],[[77237,56272],[-5,-4],[-5,2],[-3,8],[2,11],[4,4],[4,-3],[3,-8],[0,-10]],[[77285,56700],[-2,-13],[-4,-9],[-4,0],[-2,11],[1,8],[4,5],[4,3],[4,0],[0,-1],[-1,-3],[0,-1]],[[77341,56971],[1,9],[2,6],[3,-1],[0,-9],[-1,-7],[-2,-5],[-2,-1],[-1,8]],[[77073,57447],[-2,3],[-4,8],[5,0],[4,-7],[1,-6],[-4,2]],[[77176,58034],[0,12],[2,7],[3,1],[3,-10],[1,-9],[-1,-5],[-4,0],[-4,4]],[[77304,56421],[-5,1],[-1,-2],[-1,-3],[1,-4],[2,-4],[2,-3],[1,-3],[-1,-6],[-6,-4],[-3,-9],[-2,-11],[-2,-5],[-4,-3],[-10,-14],[-4,1],[-1,-7],[-1,-5],[-1,-5],[1,-4],[-7,-24],[-3,-7],[-1,12],[-3,-2],[-1,12],[0,16],[1,8],[1,5],[1,17],[4,2],[2,4],[1,4],[0,2],[2,2],[1,5],[1,6],[1,4],[2,3],[8,9],[8,15],[5,5],[6,-4],[1,2],[1,0],[4,-2],[0,-4]],[[77273,56464],[-1,3],[-2,8],[-1,5],[1,6],[2,6],[1,5],[-2,5],[0,4],[5,0],[7,-9],[5,-3],[0,-3],[0,-1],[-1,0],[-1,0],[0,-4],[-1,-2],[0,-3],[1,-4],[-4,-5],[-3,-4],[-2,-6],[-1,-28],[-3,-17],[0,47]],[[77197,56685],[-3,-9],[2,-4],[3,0],[2,1],[1,-4],[1,-4],[3,-10],[-2,-4],[-1,-2],[-2,-1],[-2,0],[2,-9],[2,-3],[-7,-6],[-4,2],[-1,9],[4,11],[-2,8],[-1,11],[1,10],[4,4]],[[77359,56920],[7,-8],[6,-11],[3,-16],[-3,-22],[-4,-5],[-5,0],[-3,4],[1,7],[3,2],[2,0],[2,1],[0,5],[-1,4],[-2,2],[-2,-1],[-3,-3],[0,9],[-1,8],[-1,9],[0,8],[1,7]],[[77191,56916],[2,17],[4,6],[6,0],[5,-3],[-3,-16],[-4,-12],[-5,-9],[-7,-7],[2,6],[1,6],[0,5],[-1,7]],[[77296,56888],[1,-11],[0,-12],[1,-9],[6,-1],[-3,-8],[-1,-7],[1,-7],[3,-6],[-2,0],[0,-1],[0,-2],[0,-1],[-4,-14],[-2,-5],[-5,-2],[-4,3],[-1,6],[0,20],[2,-2],[0,-2],[4,7],[-1,6],[-5,7],[0,8],[3,19],[-1,10],[-1,2],[-4,2],[0,2],[-1,5],[0,4],[0,2],[-5,13],[-6,10],[0,-3],[-1,-3],[-1,-2],[-2,20],[-2,3],[-3,0],[-2,-2],[0,-7],[-2,-3],[-9,-13],[-3,-2],[-3,6],[2,9],[7,15],[1,3],[4,5],[1,2],[0,4],[1,11],[2,4],[3,2],[5,-2],[6,-4],[4,-7],[2,-9],[2,-10],[1,-12],[0,-11],[2,-11],[3,-6],[4,-6],[3,-7]],[[77368,56969],[-2,-2],[-2,-4],[-1,-5],[0,-6],[-7,6],[-2,10],[0,12],[3,9],[4,8],[2,3],[1,5],[1,6],[-1,10],[0,4],[3,10],[2,-1],[2,-9],[2,-22],[0,-10],[-1,-16],[0,-17],[0,-3],[-2,-2],[-1,4],[-1,5],[0,5]],[[77298,57131],[2,-1],[2,1],[2,0],[1,-4],[-2,-6],[-4,-5],[-9,-5],[0,8],[-1,9],[-3,6],[-3,5],[0,4],[3,3],[6,2],[8,-1],[-2,-11],[0,-5]],[[77299,57458],[4,-1],[4,-13],[3,-16],[1,-11],[-1,-5],[-1,-2],[-2,-1],[-2,-2],[0,-6],[0,-18],[-3,-25],[-1,-12],[3,-12],[-4,-15],[0,-33],[-2,-17],[-2,4],[-1,-3],[0,-2],[-1,-3],[0,-4],[-3,5],[-4,10],[-1,5],[-2,-4],[0,-3],[0,-4],[0,-5],[-4,-1],[-2,-4],[0,-4],[5,-3],[-3,-3],[-3,-2],[-4,0],[-3,2],[-3,3],[0,3],[0,9],[3,-2],[3,1],[2,4],[2,5],[-1,5],[-1,13],[-1,4],[0,6],[2,4],[3,4],[2,3],[-1,5],[-1,1],[-2,3],[0,7],[1,5],[4,6],[1,11],[2,2],[2,1],[1,1],[0,7],[-1,11],[-1,7],[2,12],[8,32],[1,27],[2,8]],[[77370,57460],[2,-3],[2,-4],[1,-6],[1,-7],[0,-7],[0,-18],[-3,-17],[1,-46],[-1,-7],[-4,-10],[-1,-7],[1,-8],[1,-15],[0,-8],[-3,5],[-4,11],[-3,5],[-3,2],[-3,2],[-3,2],[-2,6],[-5,-12],[-2,2],[-1,9],[0,13],[-2,-3],[-1,0],[-1,3],[-1,4],[2,12],[-3,9],[-3,5],[-2,5],[-3,16],[1,8],[6,2],[-2,5],[-5,9],[-1,4],[1,8],[2,2],[1,2],[2,2],[1,1],[2,3],[1,3],[-3,1],[-3,0],[-2,1],[-2,2],[-2,5],[7,3],[12,-4],[4,1],[-1,3],[0,1],[-1,5],[4,0],[8,-5],[3,2],[6,4],[4,-1]],[[77237,57399],[2,-2],[1,-4],[0,-5],[-1,-5],[4,-12],[2,-5],[1,-8],[-6,9],[-3,4],[0,4],[-2,3],[-4,13],[-5,6],[-1,4],[3,2],[1,6],[0,11],[-1,12],[-5,3],[2,15],[-4,33],[4,13],[0,-22],[0,-6],[2,-4],[7,-13],[2,-7],[0,-16],[2,-12],[6,3],[0,-7],[-2,-6],[-2,-4],[-3,-3]],[[77128,57521],[3,-5],[1,-6],[0,-6],[-3,-6],[0,-3],[1,-15],[-1,0],[-5,4],[-2,14],[0,7],[6,16]],[[77292,57492],[0,15],[1,12],[2,3],[6,-7],[1,-8],[-2,-10],[-3,-8],[-3,1],[-2,2]],[[77296,57537],[-2,-4],[-2,-2],[-2,1],[-5,17],[2,8],[5,4],[2,-2],[0,-5],[2,-12],[0,-5]],[[77389,57557],[11,-6],[5,-5],[-1,-9],[0,4],[-7,-5],[-16,0],[-6,-5],[-5,-9],[-5,-7],[-6,-5],[-5,2],[-4,17],[-1,8],[0,8],[1,5],[2,9],[1,4],[-1,6],[-1,3],[-2,2],[-3,7],[-1,2],[-1,2],[-1,7],[0,18],[-2,18],[0,8],[2,7],[2,-7],[8,-14],[6,-17],[4,-19],[3,-6],[6,-7],[5,4],[4,-5],[8,-15]],[[77248,57687],[3,3],[4,3],[3,1],[2,-5],[0,-25],[0,-6],[-3,9],[-3,7],[-5,2],[-5,-5],[-1,1],[-1,1],[0,1],[-4,14],[-6,11],[-1,8],[1,11],[2,13],[4,12],[4,5],[5,-1],[5,-2],[3,-6],[1,-9],[0,-6],[-1,-11],[-1,-6],[-2,-4],[-2,-4],[-1,-5],[-1,-7]],[[77240,57793],[-1,-4],[-4,-17],[-3,-5],[-2,-4],[-3,-2],[-3,-1],[0,-3],[-2,-21],[-3,10],[-1,2],[-1,10],[-4,1],[-4,-2],[-3,3],[1,8],[4,6],[2,6],[-1,9],[-4,-6],[-1,-3],[-1,-4],[-2,0],[1,17],[4,7],[6,4],[8,10],[3,1],[2,-3],[-2,-5],[-2,-6],[-2,-3],[1,-4],[2,-5],[4,1],[1,0],[3,-1],[0,6],[0,6],[1,6],[5,5],[2,7],[1,7],[1,3],[4,-3],[3,-10],[0,-13],[-2,-10],[-2,-4],[-2,1],[-2,2],[-2,1]],[[77364,57870],[1,-10],[-1,-33],[-1,-8],[-4,-2],[-4,2],[-2,9],[4,40],[3,12],[4,-10]],[[77292,57912],[1,4],[1,-3],[2,-5],[0,-2],[6,-18],[-2,-13],[-6,-5],[-7,6],[-2,6],[0,7],[1,15],[1,2],[2,1],[2,1],[1,4]],[[77172,57924],[1,2],[3,3],[3,1],[1,-2],[1,-9],[2,-5],[0,-6],[-3,-14],[0,3],[-1,2],[-1,1],[0,2],[-1,4],[0,1],[-1,0],[-2,-1],[0,5],[1,3],[0,2],[-2,3],[-1,5]],[[77351,57922],[1,-16],[0,-23],[-1,-22],[-3,-14],[-18,-57],[-11,-21],[-14,7],[3,13],[1,4],[1,12],[4,24],[1,14],[-1,6],[-2,8],[-1,8],[-2,2],[0,3],[1,3],[2,3],[2,4],[0,4],[-5,20],[-3,27],[-1,28],[4,24],[5,-9],[15,-8],[5,-11],[0,-6],[-2,-25],[1,-9],[7,-25],[1,15],[2,19],[4,10],[4,-12]],[[77304,58219],[2,-1],[2,3],[2,2],[3,-4],[2,-7],[-1,-4],[-3,-6],[-2,-5],[-1,-2],[-1,-3],[-2,-6],[0,-6],[0,-18],[3,-26],[1,-12],[-4,-7],[0,12],[-4,14],[1,11],[-2,11],[-4,37],[-6,37],[-2,12],[0,11],[1,27],[1,7],[4,-1],[2,-9],[6,-59],[2,-8]],[[77203,58677],[1,-4],[-1,-7],[-1,-11],[-1,-22],[-2,0],[-1,9],[0,17],[1,15],[4,3]],[[75943,58844],[1,-27],[-2,-11],[-5,-7],[2,44],[1,7],[1,2],[2,-8]],[[76020,59270],[3,7],[2,10],[3,9],[6,6],[0,-4],[-2,-10],[-4,-12],[-4,-7],[-4,1]],[[77128,59688],[2,-9],[0,-10],[0,-10],[-2,-8],[-2,12],[-2,41],[2,-4],[1,-3],[1,-4],[0,-5]],[[76340,59905],[1,-9],[3,-16],[0,-7],[-1,-8],[-5,-18],[-4,-22],[-8,-3],[-8,4],[-6,8],[0,4],[5,8],[4,12],[6,24],[7,22],[5,9],[1,-8]],[[76294,60076],[2,-29],[-4,-30],[-7,-27],[-14,-37],[-2,-5],[-5,-4],[-15,-11],[-4,-5],[-2,-3],[0,-5],[0,-5],[0,-4],[-3,-7],[-6,-10],[-2,-8],[1,-9],[-2,-9],[-7,-18],[-2,0],[0,4],[4,15],[-2,21],[-7,37],[2,19],[7,10],[10,9],[9,15],[3,10],[4,19],[2,7],[9,17],[17,43],[9,14],[5,-14]],[[77107,60191],[0,-9],[1,-23],[-1,-12],[-1,-7],[-2,-5],[-1,-5],[-1,-8],[0,-5],[-1,-22],[1,-18],[-6,-13],[-9,5],[-2,27],[-3,9],[-11,19],[3,18],[4,6],[0,13],[-1,15],[-2,11],[-3,10],[-2,7],[-1,7],[1,4],[2,3],[1,4],[-2,6],[3,8],[5,6],[5,4],[4,2],[12,-11],[6,-4],[6,-2],[1,-11],[0,-11],[-6,-18]],[[76040,61603],[0,-7],[3,-13],[0,-6],[0,-14],[-3,-14],[-4,-11],[-6,-8],[-5,-1],[-7,0],[-6,3],[-3,4],[-1,8],[-4,7],[-6,11],[-27,66],[-1,5],[-3,15],[26,4],[6,5],[3,9],[3,3],[6,-13],[6,-9],[3,-2],[2,-1],[7,0],[10,2],[2,-4],[0,-14],[-1,-18],[0,-7]],[[76102,61969],[1,-9],[0,-12],[-2,-11],[-3,-5],[-4,-4],[-7,-18],[-4,-7],[-1,-2],[-1,-1],[-1,-1],[-2,1],[-1,3],[0,4],[-1,1],[-4,-4],[0,-5],[1,-5],[0,-5],[-2,-2],[-4,-1],[-6,1],[-5,-1],[-2,1],[-3,4],[-3,8],[-7,20],[-1,7],[-1,6],[-3,8],[0,6],[-1,2],[0,1],[-1,2],[0,3],[0,3],[2,0],[1,0],[1,4],[-3,9],[-3,5],[-10,6],[-4,5],[-2,7],[-5,20],[3,1],[1,2],[0,4],[-2,6],[11,27],[2,1],[2,-2],[6,-1],[2,-1],[2,-4],[2,-5],[1,-5],[1,-5],[14,-21],[4,-9],[5,5],[6,1],[6,-1],[5,-7],[5,-8],[11,-13],[4,-9]],[[75973,62200],[3,-18],[1,-9],[-2,-10],[-16,26],[-4,13],[-9,65],[-2,19],[6,-1],[6,-8],[3,-5],[2,-6],[0,-3],[2,-5],[4,-5],[4,-6],[2,-9],[-1,-27],[1,-11]],[[75823,62336],[1,-9],[13,-69],[2,-21],[0,-25],[-1,0],[-2,11],[-1,26],[-2,10],[-4,11],[-17,64],[-1,10],[-1,3],[-1,2],[-2,4],[0,5],[1,6],[1,3],[2,-1],[2,-4],[5,-6],[1,-5],[2,-5],[1,-5],[1,-5]],[[75628,62942],[-1,-22],[-1,-25],[1,-24],[3,-22],[8,-24],[2,-6],[0,-12],[5,-31],[2,-7],[1,-7],[0,-6],[-3,-5],[-1,2],[-2,5],[-1,2],[-3,5],[-6,31],[-19,69],[-5,39],[-1,6],[-15,24],[-3,8],[-4,17],[-3,10],[-13,29],[-2,9],[0,13],[2,38],[0,14],[-2,12],[-15,56],[-3,5],[-3,4],[-2,8],[-2,11],[-1,10],[2,0],[0,-2],[0,-1],[1,0],[1,-1],[2,11],[3,11],[5,6],[5,-4],[-4,7],[-2,11],[-2,12],[0,11],[2,7],[4,7],[3,8],[-1,10],[4,10],[1,4],[-1,6],[1,6],[0,5],[-2,4],[-2,1],[1,6],[1,5],[0,6],[-1,4],[-1,-5],[0,-1],[-1,-2],[2,0],[-4,-20],[-3,-9],[-5,0],[-2,7],[1,10],[1,9],[0,7],[-2,0],[-1,-10],[-3,1],[-2,7],[-1,8],[1,13],[2,4],[4,1],[4,8],[-2,4],[-4,-6],[-2,5],[2,8],[6,6],[0,4],[-13,-2],[-5,-4],[-5,-2],[-2,5],[0,14],[3,12],[5,6],[-2,6],[1,5],[3,5],[4,3],[0,5],[-3,-1],[-3,-2],[-2,-5],[-2,-5],[-1,7],[-1,13],[-2,23],[0,6],[-4,9],[-1,5],[0,23],[-7,60],[-1,20],[3,-2],[1,-1],[-2,8],[-2,-2],[-2,-7],[0,-11],[-2,0],[-3,10],[-2,13],[-2,14],[0,15],[1,9],[2,6],[3,4],[1,5],[0,10],[-2,5],[-3,3],[-2,3],[-1,15],[5,7],[7,4],[6,6],[3,11],[6,42],[-1,0],[-4,0],[-1,-9],[-3,-23],[1,-4],[-2,-4],[-3,-6],[-5,-7],[-4,-4],[-1,-3],[-7,-7],[-2,-6],[1,-9],[3,-5],[3,-2],[3,-4],[-1,-11],[-4,-8],[-6,1],[-5,14],[-4,67],[-3,22],[-19,73],[-36,98],[-9,7],[-4,9],[-4,11],[-3,9],[-2,-2],[-2,3],[-1,6],[0,7],[0,7],[3,8],[2,17],[4,25],[0,14],[-2,0],[-1,-11],[-5,-31],[-2,-6],[-6,-4],[-4,-10],[-2,-13],[1,-14],[-4,6],[-4,4],[-5,2],[-6,0],[0,-4],[6,-4],[1,-5],[-3,-5],[-5,-3],[-14,0],[5,-3],[4,-5],[2,-3],[0,-9],[-4,-5],[-4,-2],[-5,-1],[0,1],[-9,4],[-1,-1],[-1,0],[0,2],[0,9],[0,2],[-4,2],[-4,1],[-9,1],[0,-4],[3,-6],[1,-7],[-2,-4],[-6,0],[0,-4],[16,-8],[7,-6],[3,-12],[0,-8],[-3,-8],[-3,-23],[-5,-11],[-6,-8],[-7,-4],[-14,-5],[-10,10],[-6,16],[-3,25],[-2,7],[-3,11],[-4,18],[-2,5],[-4,-3],[4,-8],[4,-16],[2,-18],[0,-11],[-6,-6],[-9,-2],[-8,0],[-4,6],[-2,9],[-7,10],[-2,6],[-1,5],[-4,11],[-2,17],[-3,2],[-9,-1],[-1,3],[-3,22],[-2,3],[-3,2],[-2,3],[-2,11],[-4,11],[-1,4],[0,6],[-3,17],[-2,20],[-3,10],[-2,9],[-2,10],[-1,13],[-1,7],[-22,58],[-3,16],[-1,7],[0,6],[4,36],[0,24],[2,14],[3,11],[2,11],[-1,11],[2,0],[-5,19],[0,8],[3,5],[-1,1],[-1,0],[0,1],[0,3],[-7,-5],[-5,12],[-3,18],[0,11],[0,35],[2,14],[7,8],[16,0],[7,7],[0,22],[-1,8],[-2,3],[-2,1],[-5,-1],[-1,-2],[2,-6],[5,-7],[-2,-13],[-4,6],[-4,0],[-5,-6],[-7,-4],[-4,-6],[-1,3],[-4,23],[1,17],[4,14],[7,6],[-2,4],[0,-2],[0,-1],[-2,-1],[-2,6],[-4,-1],[-11,-9],[2,-8],[-1,-5],[-4,-3],[-4,0],[-5,0],[-3,3],[-7,9],[2,-9],[4,-6],[4,-4],[5,-1],[10,-1],[2,-5],[1,-53],[-1,-6],[-2,-4],[-2,-9],[-2,-10],[0,-9],[-10,7],[-54,21],[-11,8],[-9,12],[0,-7],[2,-6],[36,-43],[5,-7],[2,-7],[2,-8],[2,-5],[9,-4],[8,-8],[4,-3],[18,-4],[3,-4],[8,-24],[1,-10],[1,-21],[-1,4],[-2,6],[-3,5],[1,-12],[2,-35],[-1,-14],[-8,-21],[-2,-3],[-3,1],[-1,5],[2,6],[2,4],[0,4],[-2,0],[-3,-8],[-3,-6],[-4,-4],[-5,-2],[-10,0],[-4,-3],[-1,-9],[0,-4],[1,-13],[4,-19],[6,-17],[5,-15],[1,-3],[-1,-7],[1,-4],[1,-1],[1,0],[1,0],[1,-3],[3,-5],[1,-4],[-1,-5],[-4,-4],[-4,1],[-5,2],[-3,-1],[-6,-13],[-2,-20],[-4,-16],[-7,-4],[4,-8],[-1,-8],[-4,-3],[-3,7],[-6,-8],[4,-6],[8,-5],[5,-5],[3,11],[4,-2],[5,-8],[3,-9],[1,-6],[1,-19],[4,-19],[1,-20],[-1,-5],[-3,-7],[-2,-2],[-7,-2],[-2,-4],[-2,-8],[-3,-33],[0,-9],[1,6],[2,4],[1,2],[2,4],[0,6],[-1,12],[1,6],[2,8],[5,5],[5,2],[5,-2],[10,-13],[5,-17],[3,-19],[5,-21],[-4,3],[-2,2],[0,-14],[2,-11],[6,-21],[1,-12],[0,-12],[-1,-24],[-9,-46],[-7,-20],[-5,-3],[-8,-8],[-3,-5],[-1,-5],[0,-8],[-2,-10],[-8,-27],[-3,-7],[-3,-3],[-4,2],[-4,4],[-4,5],[-2,5],[1,15],[7,28],[1,14],[-3,17],[0,8],[1,18],[-1,8],[-4,2],[1,-12],[-3,-26],[1,-9],[2,-4],[2,-1],[1,-3],[1,-6],[0,-4],[-1,-4],[-2,-4],[-1,-1],[0,-1],[-1,-3],[-1,-8],[-1,0],[-1,2],[-1,-2],[-1,-5],[-1,-19],[-1,-7],[-1,-6],[-5,-15],[-4,-8],[0,-2],[-2,-10],[-5,-22],[-1,-11],[-1,-22],[-3,-23],[-2,-11],[-3,-8],[-15,-26],[-4,-5],[-5,-2],[-6,1],[-11,9],[-4,2],[-5,5],[-1,10],[2,7],[4,-2],[-2,9],[2,5],[3,6],[1,7],[0,5],[-1,3],[0,4],[1,6],[-2,-7],[-5,-25],[-3,-5],[-3,-1],[-3,-8],[-3,-3],[-2,1],[-4,6],[-3,1],[2,16],[1,32],[3,13],[2,5],[4,3],[3,5],[2,8],[1,9],[1,7],[1,7],[3,9],[11,20],[1,4],[2,7],[2,3],[2,3],[3,-2],[2,-2],[1,-1],[6,8],[5,14],[2,15],[-1,16],[-5,-25],[-4,-14],[-4,-6],[-7,-2],[-5,-5],[-16,-35],[-2,-6],[-2,-13],[-4,-11],[-1,-4],[-1,-3],[-4,-2],[-3,1],[-9,8],[2,8],[0,9],[2,7],[3,4],[2,3],[2,4],[1,9],[-1,18],[1,6],[1,9],[3,6],[3,3],[2,3],[2,8],[-7,-6],[-4,-10],[-4,-29],[-2,-6],[-8,-15],[-2,-5],[1,-27],[-1,-8],[-4,-7],[-5,4],[-4,10],[-2,12],[0,5],[-3,14],[0,7],[-1,44],[-3,24],[0,15],[-1,6],[-4,11],[-1,6],[-1,8],[0,6],[0,6],[1,8],[6,27],[22,66],[2,7],[1,8],[2,6],[3,6],[-8,-10],[0,-2],[-9,-18],[-4,-10],[-2,-9],[-2,-10],[-5,3],[-8,13],[0,-12],[2,-10],[1,-10],[-1,-13],[-12,-44],[4,-13],[3,-21],[3,-40],[0,-20],[0,-10],[-3,-8],[-4,-5],[-5,1],[-4,2],[-5,0],[0,-4],[6,-5],[5,-6],[3,-10],[1,-13],[0,-6],[-2,-11],[1,-6],[1,-5],[3,-12],[3,-11],[2,-7],[2,-8],[-2,-9],[-2,-2],[-6,-2],[-7,-13],[-2,-4],[0,-2],[-1,-3],[-3,-3],[-5,-4],[-3,-1],[-1,3],[-2,9],[-3,-2],[-4,-6],[-4,-3],[-5,1],[-5,2],[-4,4],[-4,5],[-1,5],[-1,6],[0,7],[3,10],[-1,6],[-4,11],[-8,-33],[4,-11],[5,-14],[6,-14],[6,-5],[2,-6],[-3,-12],[-6,-8],[-7,3],[-3,5],[-3,0],[-7,-3],[-1,-3],[3,-16],[1,-5],[-5,-11],[-6,8],[-8,24],[0,10],[-3,25],[1,13],[2,8],[5,12],[2,9],[1,10],[-1,42],[2,35],[2,12],[6,23],[2,13],[-1,13],[-3,12],[-3,11],[-4,9],[0,9],[9,22],[2,10],[0,12],[1,12],[2,12],[2,10],[-3,-4],[-2,-8],[-4,-16],[-3,-6],[-1,-6],[2,-13],[-1,-5],[-6,-8],[-3,-11],[0,-8],[6,-20],[2,-7],[0,-6],[0,-14],[0,-7],[-3,-11],[-1,-6],[-2,-38],[-1,-8],[-6,-6],[-2,9],[0,27],[1,6],[2,12],[1,8],[-13,59],[-1,12],[2,27],[-1,11],[-2,13],[-2,0],[-3,-39],[3,-75],[2,0],[0,8],[1,8],[2,4],[0,-1],[1,-5],[1,-8],[1,-7],[2,-5],[1,-7],[0,-8],[-2,-15],[-1,-3],[-4,-1],[-1,-2],[1,-4],[0,-3],[1,-3],[2,-7],[3,-15],[2,-5],[0,-4],[-2,-31],[-3,-7],[-4,-6],[-3,-7],[-3,-10],[-1,-8],[1,-10],[1,-14],[-1,-14],[-3,-11],[-4,-10],[-10,-17],[-3,-1],[-7,16],[-1,9],[-1,15],[1,27],[2,11],[3,18],[1,14],[-1,12],[-5,20],[-2,10],[-2,0],[-1,-9],[0,-8],[2,-7],[1,-8],[0,-10],[-1,-5],[-4,-10],[-3,-7],[-2,-6],[-4,-22],[-2,-4],[-1,-1],[-2,8],[-2,0],[0,-15],[3,-23],[-1,-15],[-5,-20],[1,-7],[6,-5],[-3,-8],[-5,-7],[-5,-4],[-6,-1],[-5,6],[-2,11],[1,10],[3,5],[1,6],[-9,49],[0,5],[0,7],[-2,2],[-2,-3],[-3,-6],[-1,-5],[-2,-3],[-3,2],[-6,7],[-3,5],[-1,3],[-7,49],[-1,10],[1,12],[3,25],[0,14],[-2,12],[-6,17],[-2,9],[2,27],[-1,11]],[[75537,63356],[1,-26],[10,-40],[2,-23],[0,-13],[-3,-24],[0,-14],[-3,-10],[-6,-1],[-7,3],[-5,-2],[0,-3],[1,-4],[0,-5],[-3,-3],[-3,0],[-3,3],[-1,5],[-2,11],[0,4],[0,4],[4,13],[1,6],[0,14],[-2,24],[-5,39],[1,22],[3,12],[2,5],[3,0],[4,-7],[2,-7],[-1,-9],[-3,-10],[0,-8],[4,10],[2,15],[-1,15],[-2,13],[5,1],[5,3],[0,-10],[0,-3]],[[74754,63369],[6,-9],[2,-16],[-4,-10],[-8,8],[-14,34],[0,2],[2,4],[1,11],[0,11],[-3,20],[0,9],[-2,11],[0,5],[3,1],[2,-2],[1,-3],[0,-3],[1,-9],[3,-39],[3,-18],[7,-7]],[[75524,63419],[-1,-9],[-4,-15],[-2,-21],[-6,-32],[-3,-6],[-2,10],[4,49],[-2,30],[1,11],[2,7],[7,15],[1,-2],[0,-2],[1,-4],[3,-23],[1,-8]],[[75164,63490],[0,-12],[1,-3],[1,-4],[2,-9],[-5,-2],[-2,-13],[-3,3],[-2,0],[-2,-12],[-5,-13],[-5,-9],[-5,1],[0,4],[2,1],[4,3],[2,0],[-2,7],[-2,3],[-2,3],[2,4],[0,4],[-1,6],[1,6],[1,4],[1,3],[19,25]],[[75092,63462],[6,23],[4,10],[7,4],[-1,-13],[-7,-24],[-7,-46],[-2,-7],[-3,-3],[-1,1],[0,28],[1,14],[3,13]],[[75107,63527],[-2,-15],[-8,-18],[-2,-12],[-1,0],[1,13],[4,17],[4,13],[4,2]],[[75120,63523],[11,-22],[3,-16],[-2,-19],[-6,-7],[-7,-15],[-4,-5],[-4,4],[-2,9],[0,10],[1,9],[2,6],[2,7],[0,13],[0,18],[1,6],[3,6],[2,-4]],[[75150,63535],[-1,4],[-12,-14],[-2,-6],[-1,0],[0,14],[2,13],[3,9],[5,4],[3,5],[8,16],[3,0],[3,7],[3,6],[3,3],[3,0],[-6,-37],[0,6],[0,4],[-2,7],[-3,-21],[-2,-22],[-2,-21],[-6,-13],[-5,-4],[-3,3],[-2,7],[0,8],[2,5],[9,17]],[[75261,63620],[1,4],[1,0],[1,-2],[1,-6],[0,-32],[-2,-14],[-6,-2],[-2,9],[0,16],[2,18],[2,13],[2,-4]],[[75270,63608],[1,32],[1,12],[4,-3],[0,-11],[0,-13],[-2,-11],[-4,-6]],[[75264,63633],[-4,3],[0,9],[3,10],[2,8],[1,27],[2,14],[2,10],[3,-5],[1,-9],[1,-11],[0,-12],[-1,-12],[-10,-32]],[[75318,63710],[2,-15],[5,-7],[2,-22],[1,-13],[1,-20],[-5,-18],[-2,-9],[-2,-7],[-4,-14],[-5,-9],[-4,-6],[-4,-1],[-3,-11],[-5,-6],[-7,0],[-5,3],[-3,4],[-2,9],[8,18],[6,16],[1,10],[3,29],[0,42],[2,46],[5,1],[9,-10],[6,-10]],[[75171,63750],[-1,2],[-2,0],[-2,1],[0,7],[0,4],[2,1],[2,-1],[1,-2],[4,-8],[4,-14],[3,-17],[1,-14],[-3,12],[-1,5],[-2,-11],[2,-24],[-2,-10],[-1,5],[-1,7],[0,6],[0,6],[2,0],[-2,11],[-2,23],[-2,11]],[[75179,63750],[2,35],[0,-2],[2,0],[1,-7],[1,-6],[0,-12],[-3,-3],[-1,-1],[-2,-4]],[[75321,63797],[12,6],[3,-11],[-3,-14],[-6,-8],[-6,-5],[-7,0],[-5,7],[2,16],[10,9]],[[75407,63846],[25,-64],[2,-26],[-3,-20],[-13,-3],[-9,10],[-8,24],[-5,23],[-1,19],[6,31],[6,6]],[[75219,63792],[12,-22],[6,-14],[-6,-56],[1,-96],[-3,-15],[-15,-46],[-4,-8],[-1,2],[-1,6],[-7,-13],[-2,-3],[-8,-24],[-2,-2],[-4,-4],[-3,-3],[-3,1],[-2,13],[3,17],[5,18],[4,16],[-16,-45],[-4,-1],[-2,11],[1,17],[3,17],[4,13],[-3,13],[3,22],[11,50],[2,10],[1,11],[0,35],[1,10],[-2,18],[0,11],[1,7],[0,4],[-3,11],[-4,36],[-3,14],[-4,8],[-16,22],[-5,2],[-1,22],[1,21],[6,49],[2,6],[3,5],[5,3],[5,3],[5,1],[3,-18],[3,-21],[3,-16],[5,-20],[4,-14],[4,-10],[5,-14],[2,-29],[3,-18],[7,-13]],[[75178,64001],[6,-12],[4,-12],[-5,-2],[-9,4],[-11,1],[-8,-14],[-4,-4],[-4,-8],[-1,-15],[2,-9],[-4,-10],[-3,6],[-3,7],[-1,5],[-1,6],[-3,4],[-7,5],[2,7],[1,5],[-1,17],[0,10],[1,11],[2,8],[3,3],[10,-4],[5,2],[1,8],[3,1],[11,0],[4,-3],[5,-12],[5,-5]],[[75185,64063],[-8,-1],[-2,1],[3,-4],[3,-6],[2,-5],[2,-6],[-9,2],[-3,2],[-2,5],[-3,12],[-2,3],[-3,2],[-1,-1],[-1,-2],[-3,-2],[-3,-1],[-7,0],[-3,1],[-5,13],[6,19],[9,15],[7,1],[6,-10],[11,-25],[6,-10],[0,-3]],[[75141,64131],[2,-5],[-1,-5],[-4,-8],[-6,-15],[-2,-3],[-3,24],[-1,9],[11,0],[2,1],[2,2]],[[75145,64281],[-5,-4],[-5,3],[-6,7],[-8,18],[-3,8],[1,6],[7,0],[10,-7],[13,-14],[11,-16],[2,-13],[-10,15],[-6,4],[-1,-7]],[[67019,71563],[3,3],[15,5],[2,0],[2,-2],[3,-4],[0,-2],[-3,-6],[4,-6],[0,1],[1,-1],[4,-7],[0,-2],[-1,-6],[0,-3],[2,-4],[2,-4],[2,-2],[3,-1],[2,-2],[3,-1],[18,-29],[12,-25],[19,-13],[37,-10],[17,2],[33,21],[16,-1],[9,-7],[7,-9],[28,-49],[8,-9],[15,-11],[4,-8],[3,-9],[2,-11],[1,-10],[-1,-24],[2,-9],[5,-21],[3,-7],[4,5],[27,64],[10,14],[7,1],[18,-29],[3,-3],[3,0],[3,2],[3,0],[8,-6],[2,-1],[5,2],[20,15],[4,5],[4,6],[4,8],[7,13],[17,15],[1,1],[26,35],[18,16],[6,2],[11,2],[6,2],[4,7],[1,11],[1,22],[3,19],[-1,6],[-4,7],[-1,7],[-1,30],[1,9],[7,13],[21,12],[8,10],[2,5],[0,4],[-2,3],[-7,5],[-1,3],[-4,9],[-15,22],[-1,8],[-2,10],[-2,8],[-2,7],[1,11],[4,7],[6,3],[61,-3],[24,9],[22,18],[4,7],[7,15],[4,7],[5,5],[6,2],[34,4],[11,5],[26,26],[8,5],[5,1],[4,1],[8,-3],[27,-17],[0,7],[-3,28],[0,11],[3,9],[3,8],[18,24],[10,8],[11,4],[11,-4],[5,-3],[3,-1],[3,4],[4,24],[3,7],[5,5],[5,3],[20,8],[10,6],[9,13],[5,12],[22,58],[5,21],[3,21],[2,24],[-1,12],[-4,23],[-1,12],[0,12],[1,12],[3,24],[5,19],[29,93],[11,32],[3,20],[-1,23],[-5,45],[1,23],[5,16],[9,10],[50,46],[20,12],[118,5],[4,0],[10,9],[13,30],[8,14],[3,8],[2,12],[0,13],[-3,25],[2,14],[2,12],[4,12],[3,10],[3,6],[3,3],[5,2],[11,0],[4,5],[2,16],[0,8],[5,-3],[5,-2],[2,-3],[5,-17],[2,-6],[2,-4],[5,-7],[63,-39],[5,-8],[8,-17],[4,-8],[6,-5],[3,-1],[9,1],[3,-1],[4,-6],[3,-1],[2,-2],[2,-2],[5,-8],[5,-7],[8,-1],[19,10],[7,2],[2,-3],[4,-10],[4,-3],[3,1],[2,3],[4,8],[5,7],[5,5]],[[55121,75674],[3,4],[3,2],[3,0],[3,-3],[3,0],[1,4],[0,5],[-2,6],[5,5],[3,3],[6,9],[1,5],[2,7],[0,17],[-3,17],[-4,9],[-6,9],[-10,25],[-3,14],[-3,15],[0,10],[2,6],[4,5],[2,5],[-2,12],[-6,21],[-3,12],[0,10],[5,23],[9,13],[15,5],[17,0],[11,-2],[-5,45],[0,15],[0,2],[2,18],[5,15],[12,26],[-7,5],[4,10],[36,40],[7,4],[-1,2],[-1,6],[-1,2],[5,4],[16,2],[7,-3],[7,-8],[2,-4],[1,-4],[-1,-4],[1,-5],[2,-7],[6,-11],[0,-1],[1,-3],[3,4],[2,5],[2,5],[1,4],[1,1],[3,3],[8,0],[2,3],[-9,25],[-8,35],[-10,20],[-2,2],[-6,-2],[0,3],[2,5],[0,4],[-4,9],[-2,2],[-4,1],[-3,3],[0,5],[2,5],[2,3],[5,4],[7,12],[4,4],[6,1],[4,-6],[3,-8],[4,-7],[5,-3],[5,0],[6,4],[7,13],[7,2],[13,-4]],[[55379,75255],[-5,7],[-11,18],[-4,4],[-21,11],[-4,4],[-7,5],[-2,2],[-3,6],[0,3],[1,3],[-1,6],[-2,1],[-2,4],[-2,5],[1,2],[0,3],[-1,29],[-16,23],[-2,8],[3,9],[-3,3],[-3,3],[-4,12],[-11,-1],[-2,7],[-1,6],[-1,2],[-2,0],[-2,2],[-4,12],[-4,7],[-11,13],[-3,9],[-2,20],[-2,8],[-4,4],[-5,0],[-5,-3],[-2,-5],[-1,3],[-2,2],[0,3],[-5,-4],[-2,-2],[-1,-3],[-1,-1],[-2,-2],[-2,4],[-3,8],[-9,12],[-4,8],[0,8],[-2,2],[-2,5],[-2,2],[0,4],[1,8],[-5,7],[-6,1],[-1,-12],[-2,0],[-2,2],[-6,-1],[-1,1],[-2,4],[-3,4],[-4,4],[-3,1],[1,2],[0,1],[0,1],[1,1],[-7,8],[-2,6],[1,6],[4,2],[23,-12],[3,-1],[8,-7],[4,-7],[2,10],[0,7],[-7,22],[0,6],[1,9],[-9,-19],[-12,-4],[-30,7],[0,-5],[5,-6],[-2,-17],[5,-5],[-6,3],[-4,6]],[[54903,75870],[-27,26],[5,0],[8,-5],[4,-2],[-4,6],[-6,6]],[[29140,62253],[-4,0],[-8,-3],[-7,-1],[-1,4],[1,10],[2,3],[3,3],[6,10],[2,2],[3,-1],[1,6],[-1,4],[-3,4],[-4,-6],[-1,1],[-1,4],[0,4]],[[29128,62297],[12,0],[0,-44]],[[29122,62297],[-2,-3],[-1,-5],[2,-4],[2,-7],[-4,-2],[-4,-1],[-2,-4],[-1,-3],[-2,0],[0,4],[-2,0],[-1,-2],[-1,-1],[0,-3],[3,-4],[4,-1],[0,-3],[-4,0],[-7,-3]],[[29102,62255],[1,22],[14,20],[5,0]],[[29128,62297],[1,3],[1,3],[4,5],[4,2],[3,12],[2,7],[-2,6],[0,15],[-6,-2],[-3,-8],[-1,-6],[-2,-7],[-3,2],[-2,3],[-5,-3],[-1,-7],[-1,-6],[1,-6],[2,-1],[1,-1],[1,1],[1,2],[1,2],[0,-2],[2,-6],[-4,-4],[0,-4]],[[29102,62255],[-15,-7],[-27,-4],[-3,1],[-9,4],[-3,3],[-2,1],[-1,-1],[-2,-6],[-2,-2],[-7,-2],[-9,1],[-9,3],[-5,7],[-10,-3],[-11,12],[-11,17],[-10,10],[-6,1],[-20,-1],[-5,1],[-11,6],[-6,1],[-11,-2],[-5,-3],[-4,-5],[-4,-1],[-37,18],[-25,5],[-12,-1],[-23,-12],[-10,-3],[-20,0],[-6,-1],[-12,-9],[-6,-2],[-35,4],[-36,-6],[-6,-6],[-6,0],[-6,3],[-6,1],[-4,-4],[-9,-14],[-6,-6],[-7,-4],[-36,-3],[-7,2],[-14,12],[-7,2],[-4,-6],[-1,0],[-2,4],[-3,1],[-3,-2],[-2,-6],[-7,4],[-8,2],[-7,-4],[-5,-11],[8,0],[0,-4],[-5,0],[-8,-6],[-5,-2],[-26,-1],[-17,-9],[-10,-2],[-12,2],[-17,-9],[-6,-1],[-3,1],[-4,4],[-3,5],[-2,7],[0,10],[6,20],[0,6],[2,1],[3,1],[2,2],[2,3],[2,6],[2,3],[-1,6],[2,5],[5,9],[6,18],[1,3],[0,4],[14,24],[-1,5],[-4,8],[1,3],[2,0],[8,-5],[3,6],[5,3],[1,2],[1,4],[5,15],[5,6],[12,13],[4,14],[5,7],[28,27],[6,1],[4,5],[4,21],[4,7],[1,0],[1,0],[2,0],[-2,-7],[2,-3],[3,-1],[5,3],[3,5],[3,7],[2,9],[1,9],[2,4],[11,14],[1,29],[2,4],[2,4],[4,21],[-9,27],[-2,5],[-8,11],[-10,7],[-3,1],[2,-7],[-1,-4],[-6,7],[-4,4],[-3,6],[-1,14],[1,4],[2,2],[3,2],[2,2],[6,16],[0,4],[-11,13],[-5,2],[-2,-11],[-5,11],[-5,15],[-6,13],[-7,5],[-8,-1],[-9,-4],[-7,-6],[-4,-9],[-3,4],[-1,0],[-2,-2],[-2,-2],[-3,-1],[-1,-2],[-2,-1],[-3,0],[-5,2],[-14,10],[-11,-11],[-3,-1],[-4,6],[-1,2],[-3,1],[-8,-1],[-2,1],[-5,3],[-2,2],[-1,-1],[-4,-1],[-13,2],[-5,3],[-8,10],[-5,3],[-10,3],[-6,-3],[-4,-7],[-4,-7],[-4,-4],[-18,-1],[-9,5],[-3,13],[-2,0],[-2,-9],[-9,22],[-4,3],[-6,2],[-3,7],[-5,19],[-3,7],[-5,9],[-6,7],[-4,0],[-3,-3],[-1,3],[0,5],[-1,4],[-3,8],[-2,6],[-1,5],[-2,9],[-19,28],[-4,2],[-10,-1],[-3,4],[-3,9],[-4,16],[-4,7],[-10,15],[-2,1],[-2,6],[-2,20],[-1,38],[-2,17],[-4,17],[-3,16],[1,17],[3,-6],[3,0],[3,4],[1,8],[-2,6],[-9,6],[-2,4],[-1,11],[-3,19],[0,11],[-1,10],[-6,18],[-1,9],[-2,20],[-4,19],[-5,16],[-6,12],[-5,6],[-4,3],[-15,4],[-3,3],[-2,4],[2,8],[3,-3],[4,-2],[8,1],[1,2],[-2,7],[-3,9],[-2,4],[-3,4],[-6,6],[-4,3],[-2,-1],[-2,-2],[-3,-4],[-13,-5],[-13,-3],[-1,-1],[-2,-3],[-1,-3],[-1,-3],[-1,-2],[-2,-1],[-8,1],[-4,2],[-3,0],[-3,-2],[-1,4],[-5,-5],[-5,-2],[-12,-1],[-6,-2],[-14,-14],[-12,-6],[-11,-2],[-11,2],[-22,13],[-5,6],[-5,9],[-4,1],[-14,-3],[-6,0],[-6,4],[-3,3],[-2,5],[-4,14],[-3,5],[-1,-5],[-1,-6],[-2,-4],[-3,0],[-2,2],[-3,5],[-2,2],[-12,7],[-1,1],[-2,4],[-2,5],[-1,7],[-2,5],[-4,3],[-19,1],[-19,11],[-7,-1],[-3,-9],[-2,-10],[-5,1],[-6,6],[-6,5],[0,4],[5,4],[0,4],[-4,2],[-1,7],[0,8],[0,7],[-5,-7],[-5,-3],[-5,0],[-7,2],[-5,4],[-4,2],[-2,-1],[-1,-5],[2,-4],[3,-3],[2,-1],[-3,-7],[-6,5],[-4,11],[-2,9],[-1,13],[-2,11],[-3,8],[-5,3],[-6,2],[-11,9],[-12,5],[-8,13],[-14,9],[-9,15],[-30,65],[-1,2],[0,3],[0,4],[-1,3],[-1,0],[-4,-1],[-1,1],[-3,5],[-1,4],[0,7],[4,-2],[5,1],[5,3],[4,6],[-5,-2],[-1,-2],[1,6],[1,5],[1,4],[0,5],[-2,2],[-3,-2],[-3,1],[1,7],[-6,0],[-3,5],[-1,7],[4,9],[-6,8],[-3,5],[-2,7],[-2,-6],[-3,-2],[-5,1],[-4,3],[-1,-12],[3,-8],[8,-12],[4,-11],[4,-14],[1,-14],[-1,-14],[-12,9],[-35,-2],[-34,5],[-40,-9],[-24,5],[-6,3],[-10,11],[-11,4],[-4,6],[-3,9],[-7,30],[-1,6],[0,9],[2,26],[-1,1],[-8,23],[-3,5],[-4,1],[-3,-2],[-2,-6],[0,-7],[4,-26],[0,-72],[-2,-18],[-6,1],[4,13],[-1,18],[-4,18],[-3,4],[-7,-6],[-2,-2],[-1,-5],[0,-11],[-1,-5],[-3,-3],[-2,2],[-2,4],[-3,1],[-2,-3],[0,-4],[-1,-3],[-3,-2],[-10,9],[-6,39],[-11,9],[-13,0],[-3,2],[-6,8],[-3,2],[-2,-2],[-4,-8],[-3,-2],[-1,0],[0,-2],[-1,-1],[-2,-1],[-1,1],[0,5],[-2,2],[-11,8],[-2,2],[-3,2],[-3,1],[-2,-7],[-2,-2],[-7,-1],[-6,1],[-4,4],[-2,0],[0,-7],[-2,-2],[-5,1],[0,-2],[1,-2],[1,-4],[-3,0],[-13,3],[-4,3],[-7,16],[-3,8],[-1,9],[-5,10],[-39,31],[-4,4],[-4,7],[-3,3],[-5,1],[-3,2],[-1,3],[-3,11],[0,3],[-4,0],[-5,1],[-5,4],[-3,10],[2,10],[3,5],[5,4],[3,2],[32,-2],[10,5],[8,-2],[8,1],[5,2],[8,-3],[6,-2],[14,5],[11,9],[3,-1],[3,3],[6,0],[3,2],[4,2],[4,7],[2,5],[3,2],[-1,13],[2,5],[-1,10],[2,16],[0,7],[-4,2],[-4,1],[-8,12],[-5,9],[-10,14],[-9,7],[-25,18],[-10,-1],[-22,-4],[-29,-10],[-9,8],[-19,11],[-21,-1],[-12,-2],[-6,-2],[-6,2],[-9,4],[-18,-5],[-15,7],[-3,-1],[-5,-5],[-3,-2],[-13,6],[-10,-5],[-29,16],[-6,-1],[-6,-5],[-3,-10],[-1,-11],[0,-12],[-1,-11],[-5,-5],[-9,-7],[-17,-28],[-3,-4],[-6,-1],[-5,-3],[-18,-19],[-9,-12],[-8,-16],[-16,-60],[-6,-13],[-9,-2],[-9,6],[-4,0],[-4,-2],[0,-1],[0,-9],[-1,-2],[-1,0],[-1,1],[-2,-1],[-1,0],[-1,0],[-1,-2],[0,-8],[0,-2],[-10,-13],[-3,-7],[-2,-5],[0,-3],[0,-2],[0,-3],[-2,-8],[-1,-4],[-3,-4],[-1,2],[0,2],[0,-7],[-2,-4],[-2,6],[-2,2],[-2,-1],[-1,-9],[-4,-10],[-14,-3],[-14,4],[-13,10],[3,5],[-1,6],[-2,6],[-2,7],[-2,0],[-4,-15],[-6,-15],[-9,-10],[-7,-4],[0,2],[1,4],[1,2],[-31,-9],[-2,1],[-1,2],[-1,4],[0,4],[0,2],[-3,-2],[-3,-8],[-4,-2],[-22,2],[-6,-2],[-11,-22],[-1,-5],[-2,-16],[-1,-6],[1,-4],[1,-3],[0,-9],[-3,5],[-3,-1],[-2,-7],[0,-9],[2,-8],[3,-3],[3,2],[4,5],[-2,-13],[-9,-14],[-3,-12],[1,-3],[2,-3],[1,-4],[-1,-6],[-3,-5],[-3,-5],[-3,-3],[-3,-1],[-5,2],[-11,11],[-6,3],[-6,-3],[-11,-13],[-5,-4],[-3,-1],[-6,1],[-2,0],[-3,-3],[-7,-8],[-8,-5],[-33,-55],[-12,-13],[-12,-2],[-3,12],[11,47],[2,23],[-6,17],[-11,4],[-13,-4],[-22,-13],[-11,-10],[-28,-37],[-11,-5],[-12,0],[-12,7],[-3,6],[-3,9],[0,9],[1,10],[1,4],[1,5],[2,4],[2,1],[1,-1],[1,-3],[1,-4],[0,-2],[2,-4],[3,-1],[2,-1],[3,0],[4,4],[4,7],[0,8],[-5,6],[5,5],[4,0],[3,-6],[0,-11],[23,24],[20,12],[23,21],[15,22],[3,2],[3,0],[4,-1],[1,-2],[-1,-5],[9,-8],[6,4],[7,8],[8,4],[4,-3],[5,-5],[3,-8],[2,-6],[1,-4],[8,11],[4,-1],[4,32],[-3,-7],[-3,-10],[-3,-6],[-4,7],[-2,11],[1,9],[-1,7],[-6,5],[3,13],[1,4],[-5,1],[-6,4],[-5,5],[-3,6],[-2,8],[-2,10],[-3,8],[-4,2],[2,5],[3,9],[3,11],[1,10],[1,14],[1,12],[4,26],[0,2],[5,15],[1,1],[3,1],[1,2],[1,3],[2,8],[0,3],[6,17],[4,9],[5,6],[0,5],[-5,0],[4,7],[12,5],[5,6],[4,9],[3,13],[2,13],[-4,7],[0,5],[3,-2],[3,-3],[4,6],[4,1],[3,-3],[2,-7],[3,22],[1,6],[3,2],[7,1],[2,3],[0,6],[1,10],[2,7],[3,-3],[4,-5],[3,3],[3,7],[3,5],[-3,7],[-2,4],[-4,2],[-5,-1],[2,5],[2,4],[2,3],[3,1],[4,-3],[3,-8],[1,-7],[3,-3],[4,1],[3,4],[17,24],[4,-8],[2,12],[5,6],[12,2],[4,2],[20,19],[9,7],[5,0],[3,-1],[3,-3],[3,0],[2,1],[4,5],[2,2],[0,5],[-2,-2],[-2,-3],[0,2],[0,2],[-2,1],[6,7],[6,4],[14,1],[1,3],[4,19],[2,2],[11,0],[-1,-4],[0,-2],[-1,-2],[6,-2],[3,6],[2,9],[2,7],[5,3],[3,-2],[3,-5],[5,-4],[-2,-6],[3,2],[4,5],[3,5],[1,10],[4,12],[6,12],[5,4],[3,3],[15,18],[5,5],[6,0],[4,-3],[4,-6],[0,-4],[-3,-4],[-1,-7],[1,-8],[2,-8],[3,-3],[3,4],[2,6],[2,4],[-5,8],[1,8],[4,7],[6,5],[11,4],[3,2],[3,5],[2,1],[3,-1],[4,-5],[2,-2],[2,2],[2,3],[2,2],[2,-3],[2,-6],[-2,-2],[-3,-1],[-1,-3],[1,-6],[2,-2],[2,2],[3,6],[-1,-12],[5,0],[6,7],[3,15],[4,13],[9,0],[10,-3],[7,2],[6,5],[25,-3],[26,7],[6,5],[6,0],[12,13],[6,4],[2,2],[3,8],[1,2],[3,1],[3,2],[4,5],[9,13],[4,5],[11,3],[13,11],[19,6],[9,8],[19,-9],[6,1],[8,4],[3,1],[7,2],[3,1],[3,2],[3,1],[2,-2],[11,-15],[8,-4],[18,-4],[8,-4],[6,4],[44,0],[7,-1],[4,2],[4,3],[3,-3],[3,0],[4,0],[3,-1],[2,-2],[5,-8],[6,-7],[1,-12],[-1,-13],[-1,-11],[-2,-4],[-2,-2],[0,-2],[4,-4],[3,0],[3,1],[4,3],[1,3],[2,15],[1,5],[2,4],[2,1],[3,1],[23,8],[3,2],[3,7],[7,3],[13,4],[4,3],[11,10],[6,10],[13,15],[4,2],[5,-4],[-3,-6],[-8,-7],[-13,-6],[-15,-18],[-4,-7],[0,-4],[13,-6],[15,-37],[10,-10],[6,0],[2,3],[2,6],[4,10],[2,5],[3,14],[1,3],[3,1],[6,3],[2,0],[11,-4],[2,0],[1,1],[1,-2],[0,-9],[2,-13],[5,-3],[6,2],[6,3],[44,17],[6,0],[13,-5],[7,1],[6,5],[5,8],[2,12],[-5,11],[3,3],[4,1],[4,-1],[2,-3],[0,-4],[-2,-4],[-7,-28],[7,-12],[1,-1],[10,-36],[6,-8],[4,-1],[11,-4],[4,-3],[3,-5],[3,-7],[4,-6],[5,-3],[15,0],[4,-2],[4,-7],[4,-5],[5,-3],[5,-3],[9,0],[9,3],[16,13],[-2,14],[5,1],[14,-15],[7,-4],[6,2],[1,14],[3,-3],[3,-4],[2,-5],[1,-6],[6,-22],[1,-4],[10,-12],[2,-1],[5,1],[2,-2],[1,-2],[0,-3],[0,-2],[5,4],[10,17],[17,9],[2,-1],[0,-4],[-3,-5],[-5,-7],[-6,6],[-3,-5],[-4,-21],[3,-10],[2,-3],[3,-4],[3,-1],[11,-3],[5,-3],[16,-23],[1,-3],[1,-2],[2,-1],[1,1],[2,3],[1,3],[1,1],[6,2],[2,-3],[7,-60],[0,-1],[4,-2],[4,-4],[3,-4],[3,-7],[3,-10],[4,-18],[2,-9],[8,-15],[1,-3],[4,-2],[8,0],[3,-2],[8,-22],[1,-7],[3,-4],[20,-35],[8,-8],[8,3],[3,-6],[5,-7],[5,-4],[2,7],[3,0],[15,-6],[5,0],[3,4],[1,4],[0,3],[4,0],[3,-1],[4,-5],[3,-1],[6,1],[10,8],[6,3],[6,0],[15,-3],[28,-7],[13,2],[1,-6],[6,-35],[1,2],[2,2],[3,-7],[3,4],[4,19],[-4,10],[-2,4],[-2,3],[0,4],[8,-2],[9,-18],[31,-21],[3,-6],[3,-8],[5,-9],[7,-8],[5,-5],[6,-4],[17,-6],[5,1],[0,-4],[0,-8],[0,-4],[3,3],[1,2],[2,-6],[3,-12],[2,-5],[2,-3],[5,-6],[2,-3],[2,-3],[3,0],[3,1],[3,0],[9,-8],[4,-3],[14,-2],[3,-2],[0,-6],[0,-7],[2,-5],[2,-1],[7,0],[-1,-1],[-1,-2],[3,-5],[4,-3],[3,-2],[3,-2],[1,0],[4,3],[3,-6],[3,-15],[6,-10],[1,-4],[2,-11],[5,-18],[2,-5],[3,-3],[4,-4],[13,-26],[1,-5],[4,-17],[2,-5],[3,1],[2,6],[1,44],[2,6],[3,3],[7,-2],[5,-1],[-3,-6],[-8,-3],[-2,-5],[0,-11],[1,-8],[2,-6],[2,-6],[3,-6],[3,-2],[7,0],[3,-4],[2,-9],[1,-10],[0,-7],[1,-7],[3,-5],[4,-4],[8,-5],[1,0],[4,4],[3,-3],[2,-4],[2,-2],[17,5],[5,-1],[5,-5],[12,-15],[0,8],[2,4],[7,4],[1,-6],[2,-3],[2,-1],[3,1],[0,3],[-1,4],[-1,2],[4,-3],[4,-6],[6,-12],[-4,-1],[-3,3],[-2,1],[-1,-11],[1,-10],[4,-19],[1,-9],[1,-6],[4,-3],[8,-2],[7,-7],[2,-1],[2,1],[2,3],[1,3],[0,1],[0,3],[-1,8],[-3,7],[-7,6],[-3,8],[-4,17],[-1,14],[-2,4],[-1,3],[-6,4],[-1,2],[0,6],[-2,8],[-3,4],[-5,-4],[-4,8],[-3,-7],[-4,5],[-8,19],[-10,17],[-3,9],[-2,2],[-4,-4],[3,10],[4,11],[5,6],[4,-1],[10,-16],[1,-5],[2,-15],[1,-3],[29,-43],[6,-5],[14,-9],[4,-6],[4,-8],[9,-15],[4,-3],[17,-24],[4,-4],[4,-3],[4,0],[5,3],[-3,-12],[2,-7],[3,-5],[1,-5],[-1,-12],[-6,-14],[-2,-10],[-3,3],[-4,10],[-2,3],[-18,16],[-4,3],[-5,1],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,-2],[-1,1],[-2,2],[-2,2],[-3,6],[-3,1],[-6,-1],[-2,-6],[1,-6],[3,-3],[3,-2],[2,-3],[2,-4],[3,-3],[3,-2],[8,2],[5,-5],[1,-10],[-2,-9],[-4,-5],[-1,-5],[1,-10],[3,-11],[1,-4],[3,-1],[7,2],[4,-1],[-2,-10],[2,1],[7,7],[1,1],[2,3],[3,1],[2,8],[4,32],[7,26],[2,6],[5,2],[5,-6],[30,-73],[5,-8],[0,-1],[4,-6],[10,-9],[16,-7],[3,-5],[-2,-8],[6,0],[-2,-13],[-2,-6],[-3,-2],[-10,-1],[-4,-3],[-3,-6],[-1,-8],[4,-15],[14,15],[0,-15],[2,4],[1,6],[1,7],[1,8],[-2,0],[4,11],[1,6],[1,7],[17,-12],[1,1],[3,2],[1,-1],[5,-6],[7,-4],[3,0],[4,-4],[4,-8],[2,-9],[-2,-3],[-5,-2],[-15,-14],[1,8],[-3,6],[-3,0],[1,-6],[-1,-10],[3,-4],[6,-1],[4,-4],[4,-6],[5,-5],[5,-2],[6,-1],[0,4],[-6,4],[-2,3],[-1,5],[-2,9],[0,3],[5,5],[5,0],[7,-4],[6,-8],[4,-9],[1,0],[0,13],[2,0],[-1,-24],[-3,-8],[-15,-1],[0,-4],[6,0],[-3,-3],[-1,-1],[2,-8],[3,0],[3,3],[4,1],[2,-4],[3,-11],[2,-1],[2,1],[2,3],[1,3],[1,3],[1,2],[1,0],[2,-1],[2,1],[8,9],[3,3],[-4,3],[-9,2],[-4,3],[-3,8],[-1,9],[2,8],[5,4],[33,-2],[7,-5],[4,-6],[9,-7],[1,-2],[6,-10],[4,-6],[29,-22],[9,-12],[2,-14],[0,-5],[0,-12],[1,-7],[3,-7],[2,1],[3,6],[4,5],[3,1],[4,-2],[3,-3],[2,-5],[1,-5],[0,-8],[2,0],[1,3],[0,3],[1,3],[2,-9],[2,-2],[2,4],[0,11],[2,-1],[8,0],[3,1],[2,2],[4,8],[2,2],[4,-1],[3,-1],[3,-3],[2,-10],[3,-1],[1,2],[-1,6],[14,20],[2,0],[4,-4],[1,-2],[1,-4],[3,-1],[4,3],[10,0],[8,-2],[5,-10],[3,-20],[11,4],[6,-8],[10,-29],[-6,-24],[-2,-4],[-3,-5],[-1,-4],[0,-4],[-1,-8],[-1,-4],[-2,-7],[-4,-7],[-4,-6],[-5,0],[-1,6],[-1,9],[-2,6],[-4,-5],[-2,3],[-2,1],[-1,-1],[-2,-3],[2,0],[2,-1],[1,-3],[1,-4],[-8,-1],[0,-7],[3,-10],[3,-11],[2,0],[3,10],[7,4],[8,1],[6,-2],[12,-12],[2,-2],[0,-9],[1,-6],[2,-4],[4,0],[-2,-14],[-4,0],[-4,6],[-4,4],[-2,2],[-1,3],[-1,4],[-1,4],[-2,3],[-1,1],[-15,-4],[-5,-4],[-19,4],[2,-7],[0,-7],[-3,-15],[0,-3],[0,-8],[-1,-7],[-1,-6],[2,-5],[3,-13],[11,-12],[4,-3],[2,6],[3,13],[14,22],[3,12],[4,-7],[3,-9],[0,-10],[-2,-11],[7,2],[3,-2],[-1,-6],[-1,-6],[3,-4],[6,-4],[-1,13],[16,-7],[4,10],[2,0],[1,-3],[2,-3],[2,-3],[3,-3],[2,12],[-5,4],[-2,1],[-3,-1],[4,10],[6,4],[7,0],[6,-1],[5,-4],[5,-8],[2,-6],[-6,-3],[2,-8],[2,-8],[1,0],[1,3],[1,5],[3,-12],[6,-3],[16,3],[-5,7],[-10,10],[-6,3],[4,8],[7,3],[7,0],[5,-3],[-2,5],[4,-1],[13,-5],[4,-4],[1,-4],[-5,-3],[0,-4],[8,-4],[1,1],[0,1],[0,1],[1,1],[3,-5],[5,3],[4,0],[3,-14],[0,3],[2,5],[0,4],[3,-4],[2,-2],[2,0],[2,2],[-4,8],[23,6],[5,-4],[3,-3],[3,-1],[2,-2],[1,-6],[2,-3],[4,0],[7,1],[5,-6],[4,-9],[5,-6],[22,-5],[5,-4],[5,-6],[-3,-3],[-1,-1],[4,-14],[0,-7],[1,-2],[1,0],[2,-2],[1,-3],[2,-2],[10,-7],[1,-8],[5,-8],[13,-16],[2,-6],[3,-12],[9,-25],[2,-2],[1,-4],[14,-29],[2,-2],[4,-1],[6,-4],[8,-9],[6,-12],[2,-12],[2,0],[4,8],[5,0],[7,-3],[5,-1],[5,4],[4,6],[6,5],[6,1],[3,-2],[3,-4],[5,-10],[10,-12],[3,-9],[2,-10],[2,-10],[0,-12],[-2,-13],[-6,-7],[-6,-5],[-4,-8],[-5,-6],[-2,-2],[-2,-3],[-1,-21],[-9,-16],[-10,1],[-12,6],[-13,1],[-17,-7],[-12,-2],[-23,-11],[-11,4],[-8,-7],[-18,6],[-21,-8],[-7,-1],[-7,-6],[-4,-8],[-5,-10],[-4,-7],[-7,-4],[-6,0],[-4,-1],[-2,-5],[-2,-12],[-4,-15],[-9,-6],[-10,-3],[-2,7],[-2,2],[-1,0],[-1,-5],[0,-5],[-7,-5],[-1,0]],[[28241,62642],[1,-11],[0,-8],[-3,-2],[-5,7],[-3,4],[-5,2],[-3,4],[-4,16],[-5,7],[-10,10],[4,6],[5,-2],[4,-6],[3,-6],[4,-11],[2,-5],[5,-5],[1,10],[2,2],[4,-4],[3,-8]],[[28212,62744],[-4,-9],[-13,-6],[-4,-6],[-5,5],[-4,3],[3,5],[10,4],[4,8],[1,-2],[1,-2],[3,3],[2,0],[6,-3]],[[28103,62760],[6,2],[6,-4],[9,-14],[-4,-8],[-7,4],[-6,11],[-4,9]],[[29023,62784],[2,-4],[4,-15],[2,-7],[1,-7],[-5,0],[-9,5],[-5,2],[-4,4],[-3,8],[0,10],[13,5],[4,-1]],[[28076,62792],[14,1],[5,-6],[3,-15],[-2,0],[-5,7],[-20,4],[-6,13],[4,10],[2,5],[3,0],[1,-5],[1,-6],[0,-8]],[[28048,62839],[4,-3],[6,-1],[5,-4],[0,-8],[-3,-9],[-2,-3],[0,4],[-1,2],[-7,3],[-14,19],[-3,6],[4,1],[5,0],[4,-3],[2,-4]],[[28035,62857],[-2,1],[-4,-1],[1,-3],[1,-9],[-8,8],[-5,10],[-10,22],[0,5],[5,-4],[4,-7],[3,-7],[3,-7],[-3,12],[-6,15],[-7,12],[-6,2],[0,-4],[0,-3],[1,-1],[0,-1],[1,-3],[-4,2],[-2,3],[-2,5],[-2,6],[12,1],[12,-15],[11,-21],[7,-18]],[[27947,62979],[9,3],[7,-9],[11,-23],[-4,-3],[-5,0],[-4,2],[-4,6],[2,0],[5,0],[-1,6],[-2,4],[-2,1],[-2,-3],[-7,11],[-3,5]],[[27396,63324],[-1,-1],[-11,-21],[-22,-30],[-9,-7],[-9,-2],[0,12],[3,3],[7,-3],[3,5],[3,9],[3,6],[3,-2],[3,-3],[4,2],[4,5],[1,5],[2,10],[4,7],[9,11],[2,2],[1,-3],[1,-3],[-1,-2]],[[27064,63283],[-2,-7],[2,-7],[4,-7],[4,-3],[-3,-9],[-6,-12],[-6,-11],[-5,-5],[-5,-2],[-36,-35],[-21,-15],[-20,-5],[-3,3],[-3,5],[-18,1],[-2,2],[-6,4],[-3,2],[-10,0],[-3,2],[-9,24],[-3,6],[-8,11],[-3,6],[-2,12],[-2,16],[-3,15],[-1,5],[2,0],[3,-6],[14,-20],[2,-8],[4,-7],[5,-5],[5,-2],[12,0],[0,2],[8,14],[5,6],[2,3],[1,5],[1,-1],[1,-3],[0,-6],[-2,-8],[2,-4],[5,18],[-2,7],[-8,3],[-3,6],[-24,84],[-4,23],[3,26],[12,18],[2,8],[2,6],[6,8],[6,6],[5,2],[-4,3],[-3,1],[-3,0],[-3,3],[0,2],[2,1],[2,4],[36,-9],[23,-11],[16,-9],[4,-4],[4,-7],[2,-9],[-1,-11],[-2,-7],[1,-7],[4,-9],[12,-21],[4,1],[3,-3],[1,-7],[2,-7],[1,-6],[0,-4],[-1,-7],[-3,-11],[-2,0],[1,-5],[1,-5],[-1,-5],[-1,-5],[6,-8],[3,-3],[4,-1],[0,-5]],[[28435,63531],[2,-8],[0,-7],[0,-8],[-6,-27],[0,-5],[4,-10],[-5,0],[-3,-3],[-6,-9],[2,11],[-2,4],[-3,-1],[-2,-10],[0,-2],[1,-4],[1,-4],[-2,-2],[-2,0],[-1,3],[-1,4],[-3,9],[-2,6],[-1,5],[-4,5],[-4,-3],[-6,2],[-6,6],[-4,5],[0,6],[1,6],[1,6],[1,7],[-1,4],[-3,3],[-5,3],[1,-5],[0,-5],[0,-6],[-1,-4],[-2,12],[-2,0],[-3,-9],[-4,-2],[-5,3],[-2,10],[-2,7],[-5,8],[-3,10],[1,13],[-2,4],[5,0],[4,-5],[4,-6],[4,-5],[5,0],[3,3],[2,5],[4,4],[4,3],[4,-1],[4,-2],[3,-4],[1,-2],[2,-8],[2,-2],[2,1],[4,6],[2,1],[3,-3],[9,-11],[3,-2],[4,3],[2,5],[3,1],[5,-9]],[[28376,63653],[2,8],[-3,8],[-5,8],[-4,4],[7,2],[6,-9],[4,-15],[4,-25],[4,-10],[5,-9],[4,-11],[-6,0],[-7,14],[-11,35]],[[28334,63586],[-2,8],[-9,13],[-3,9],[5,4],[3,7],[3,10],[1,9],[0,22],[-1,7],[-3,10],[4,-1],[5,-3],[3,-6],[1,-8],[-1,-5],[-3,-6],[-2,-8],[2,-9],[2,-2],[7,1],[3,-2],[2,-5],[1,-6],[2,-4],[4,-1],[-3,4],[1,4],[1,3],[2,3],[1,2],[2,-7],[3,-3],[3,0],[2,7],[2,-10],[-3,-5],[-5,-2],[-4,-4],[3,-2],[3,-3],[2,-4],[2,-3],[3,-2],[5,-2],[3,-4],[-6,-25],[-4,-10],[-3,6],[-1,-1],[-4,-2],[-1,-1],[-1,5],[0,2],[-3,5],[-1,12],[-6,4],[-4,-4],[2,-15],[-3,3],[-10,11],[-2,4]],[[28278,63693],[6,8],[-2,10],[-6,5],[-3,-5],[0,-5],[-1,-6],[-2,-4],[-3,1],[-2,7],[0,7],[1,5],[3,-2],[0,10],[-4,12],[-7,5],[-6,-8],[-2,3],[-1,1],[-1,0],[-2,1],[4,9],[6,3],[9,0],[9,7],[4,0],[2,-7],[6,6],[7,-4],[7,-9],[5,-10],[3,-7],[2,-9],[2,-9],[1,-20],[1,-6],[6,-13],[3,0],[4,-3],[3,-1],[-5,-9],[-6,4],[-14,17],[-6,3],[-7,0],[-7,2],[-7,11]],[[28215,63772],[-6,-4],[-7,-2],[-13,0],[-6,4],[-8,10],[-11,5],[-8,5],[-5,6],[4,7],[-4,9],[-6,-8],[-5,-5],[0,20],[1,-2],[2,-2],[1,12],[3,1],[3,-3],[2,0],[3,1],[12,-5],[7,-8],[8,-2],[8,2],[7,-2],[6,1],[5,7],[4,8],[5,4],[6,-1],[7,-4],[5,-6],[3,-9],[-1,1],[-2,3],[1,-8],[19,-38],[1,-5],[-1,-6],[-2,0],[-3,3],[-2,1],[-34,-16],[0,4],[0,2],[1,1],[0,3],[1,4],[1,2],[1,0],[2,-1],[1,1],[1,6],[-1,5],[-3,3],[-3,-4]],[[28060,63876],[-2,8],[-4,3],[-17,2],[-2,3],[-4,4],[5,2],[26,-4],[4,-5],[0,-6],[-6,-7]],[[27956,63876],[-2,1],[-3,2],[-4,5],[-4,7],[-9,21],[-5,-4],[-5,2],[-5,4],[-6,10],[-2,1],[-1,3],[-1,6],[-1,3],[-4,6],[-1,2],[-3,4],[-1,8],[-3,8],[-5,4],[-8,-7],[-4,1],[0,10],[8,5],[5,1],[5,-4],[14,-33],[6,-9],[13,-8],[11,-17],[11,-9],[6,-11],[4,-14],[2,-10],[-6,11],[-2,1]],[[27807,64066],[2,1],[0,-8],[-3,-6],[-6,8],[-3,-2],[-3,-8],[-3,-3],[-2,15],[4,5],[5,3],[4,0],[5,-5]],[[27688,64083],[14,13],[6,1],[5,-6],[-1,-2],[-3,-5],[-1,-1],[2,-3],[2,-3],[1,-5],[0,-6],[-28,10],[-4,7],[2,2],[1,2],[2,-1],[2,-3]],[[27723,64164],[2,-7],[3,-7],[3,-5],[4,-1],[5,-1],[1,-1],[-1,-2],[-2,-4],[-6,-6],[-5,3],[-12,11],[1,6],[1,4],[2,4],[2,6],[2,0]],[[27547,64197],[3,0],[2,-9],[2,-4],[0,-3],[-3,-5],[-4,-5],[-4,1],[-2,3],[-4,1],[-9,-1],[-7,-5],[-13,-14],[3,7],[17,22],[5,2],[5,0],[6,-3],[-1,3],[-2,6],[-1,4],[2,3],[1,-4],[4,-8],[0,9]],[[27641,64205],[1,0],[2,2],[2,0],[1,-5],[-1,-4],[-2,-2],[-2,-2],[-2,-4],[-3,1],[-5,4],[-5,4],[-5,-2],[-1,3],[-1,0],[-4,-3],[1,8],[2,5],[3,2],[5,1],[1,-1],[2,-6],[1,-1],[3,-1],[7,1]],[[28171,62706],[1,-3],[0,-5],[-2,-3],[-2,0],[-2,1],[-1,3],[-2,2],[0,3],[1,1],[1,-1],[7,-3],[0,2],[0,1],[-1,2]],[[28152,62708],[2,-1],[4,-3],[0,-3],[-5,-1],[-2,4],[0,3],[1,1]],[[27227,63290],[2,-5],[1,-10],[-5,-8],[-11,-8],[-8,-8],[-2,-1],[-2,-2],[-1,-3],[-4,-2],[-6,-1],[-1,2],[4,2],[5,10],[3,1],[3,4],[2,4],[2,3],[7,6],[4,0],[3,3],[2,5],[1,4],[1,3],[0,1]],[[27263,63299],[4,2],[0,-3],[-4,-7],[-5,-6],[-9,-14],[-5,0],[-3,7],[-1,8],[1,-1],[3,-6],[4,1],[4,6],[1,3],[-1,1],[1,1],[8,7],[2,1]],[[27043,63471],[10,-9],[5,-7],[-4,-3],[-7,-1],[-8,7],[-3,10],[7,3]],[[26791,63476],[2,-1],[-2,-1],[-5,0],[-6,1],[-5,4],[3,3],[8,-4],[5,-2]],[[27345,63537],[2,-4],[1,-8],[-2,-1],[-3,4],[-3,-1],[-2,1],[-1,4],[-1,5],[0,4],[2,3],[3,-2],[3,-3],[1,-2]],[[28128,63823],[1,2],[2,-2],[0,-4],[-2,-6],[-1,-4],[-5,-4],[-3,1],[0,3],[0,10],[1,1],[4,-2],[3,1],[0,4]],[[27079,63869],[1,-7],[1,-14],[-2,-11],[-1,-4],[-1,-3],[-2,2],[1,37],[-1,5],[0,3],[1,1],[2,-3],[1,-4],[0,-2]],[[27993,63877],[2,2],[11,1],[-3,-6],[-5,-6],[-2,0],[0,4],[-1,3],[-2,2]],[[27866,64007],[4,-4],[2,-4],[-3,-5],[-4,-2],[-2,4],[0,4],[-1,2],[-1,1],[-1,0],[-2,1],[-6,7],[-2,6],[0,6],[4,2],[-1,4],[0,5],[2,2],[2,-7],[-1,-9],[2,-2],[5,-2],[2,-5],[1,-4]],[[27826,64070],[2,-6],[0,-5],[-1,-2],[-4,-3],[-2,-4],[2,-3],[2,-1],[0,-3],[-2,-5],[-3,0],[-3,3],[-2,6],[1,3],[2,3],[0,3],[-2,1],[-3,3],[3,8],[6,4],[4,-2]],[[27760,64120],[1,-4],[2,-8],[-1,-2],[-2,5],[-1,3],[-1,-1],[-2,0],[-2,0],[-2,3],[-1,3],[0,2],[1,-1],[1,3],[0,8],[3,1],[4,-7],[0,-5]],[[27710,64154],[0,-2],[1,-4],[0,-3],[-1,-4],[-2,0],[-2,2],[-1,5],[-1,4],[-3,2],[-4,4],[-1,1],[0,3],[-1,1],[-2,2],[0,5],[2,4],[2,1],[2,0],[3,-1],[0,-4],[2,-4],[4,-7],[2,-5]],[[27666,64182],[3,0],[4,-1],[0,-3],[-3,-1],[-2,0],[-7,-1],[-3,-5],[-4,-3],[-4,-2],[0,1],[-1,4],[1,1],[3,-1],[-1,6],[2,3],[4,1],[2,0],[6,1]],[[27592,64216],[1,-2],[0,-4],[-1,-4],[-1,0],[-1,0],[0,-5],[-1,0],[-4,1],[-2,-2],[0,-4],[-1,1],[0,8],[2,6],[5,4],[3,1]],[[27562,64213],[18,-4],[0,-2],[0,-3],[-2,-1],[-2,2],[-2,0],[-1,-4],[-1,-1],[-6,5],[-3,2],[-2,1],[-6,-1],[-3,0],[-7,6],[-3,1],[-2,6],[-2,1],[1,3],[6,-1],[8,-6],[9,-4]],[[27533,64239],[2,-1],[1,-5],[-3,-5],[-3,1],[-3,2],[-3,1],[-3,3],[-2,4],[-1,2],[-2,2],[2,3],[6,2],[7,-9],[2,0]],[[25494,59783],[2,-2],[12,-18],[7,-5],[7,7],[16,35],[7,9],[-1,10],[3,2],[10,-3],[17,20],[2,8],[0,6],[-1,2],[-3,2],[-3,4],[-1,5],[1,1],[12,1],[4,3],[5,7],[8,5],[24,4],[5,3],[2,8],[2,1],[1,1],[5,-1],[5,-3],[12,-15],[5,-1],[0,3],[-3,6],[3,7],[10,12],[-5,-15],[-2,-9],[2,-4],[2,-5],[26,-48],[8,-8],[9,4],[1,3],[3,10],[2,3],[2,0],[7,0],[2,2],[2,10],[4,5],[5,1],[29,-13],[25,-18],[26,-6],[29,-14],[10,-2],[11,2],[17,11],[5,2],[1,1],[4,8],[1,1],[2,3],[3,-3],[4,-4],[1,-2],[12,-2],[54,10],[9,-1],[9,-7],[0,-1],[7,-8],[4,-3],[7,-1],[5,2],[5,5],[26,34],[7,15],[3,5],[10,8],[10,5],[39,3],[4,2],[3,3],[10,17],[6,13],[3,14],[-5,12],[-17,6],[-9,4],[2,7],[7,1],[21,-9],[15,-6],[11,-2],[13,-8],[13,-7],[4,-2],[3,-3],[1,-7],[0,-8],[1,-6],[2,0],[0,4],[0,2],[1,1],[1,1],[4,0],[3,-8],[5,-8],[6,-9],[12,-11],[21,-11],[14,2],[21,5],[30,1],[16,14],[20,31],[14,16],[21,1],[13,-9],[27,-26],[34,-20],[15,-11],[4,-6],[-1,-8],[-4,-11],[0,-9],[0,-15],[6,-11],[6,-2],[6,5],[1,12],[1,5],[3,0],[2,-8],[5,-7],[7,2],[6,-1],[14,-4],[2,6],[5,4],[-6,5],[-7,3],[-22,8],[-8,8],[-7,7],[-3,9],[11,-5],[38,-15],[25,-5],[17,-2],[6,-4],[15,-26],[20,-34],[30,-53],[29,-52],[17,-28],[21,-27],[5,-6],[5,-4],[10,-4],[3,-3],[1,-5],[1,-5],[-2,-3],[-4,-1],[-5,4],[-11,17],[-8,6],[-5,7],[-2,3],[-9,0],[-4,2],[-3,6],[1,1],[2,2],[1,1],[-2,7],[-10,22],[-1,0],[-4,-4],[-3,5],[-4,7],[-4,3],[-5,-1],[-3,-4],[-2,-5],[-4,-6],[-2,3],[-7,6],[3,6],[2,4],[0,4],[-1,1],[-3,1],[-3,0],[-2,-1],[-1,-6],[2,-10],[3,-11],[3,-9],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,0],[-9,33],[-3,7],[-3,1],[-4,-1],[-4,-3],[-4,0],[-4,3],[-4,0],[2,-13],[2,-5],[5,-3],[0,-5],[-1,-7],[0,-7],[2,0],[1,9],[5,5],[3,17],[2,2],[3,-4],[4,-19],[4,-16],[2,-13],[-6,-6],[-3,-6],[2,-15],[5,-16],[4,-11],[8,-8],[6,-3],[2,6],[-2,17],[3,-6],[4,-8],[1,-9],[-2,-9],[3,-10],[6,-2],[13,3],[0,-4],[-2,1],[-2,-1],[-3,-4],[0,-3],[2,-10],[4,-10],[4,-6],[6,-3],[5,1],[6,4],[7,5],[4,6],[-4,7],[-11,13],[-2,4],[-1,4],[-2,3],[-2,2],[-3,0],[-21,16],[-4,4],[-6,19],[-3,5],[2,5],[3,3],[6,5],[25,-23],[4,-12],[1,-6],[4,-6],[5,-4],[8,-4],[3,-5],[3,-6],[2,-8],[-2,-2],[-2,-4],[-1,-2],[0,-3],[4,-2],[4,5],[3,1],[2,-17],[-1,-22],[1,-6],[2,-4],[2,0],[2,4],[0,8],[2,0],[2,-12],[2,3],[5,17],[4,6],[6,3],[10,3],[1,3],[0,13],[0,5],[2,2],[2,0],[2,-1],[18,-8],[5,2],[0,-3],[-2,-4],[0,-2],[1,-3],[1,-4],[0,-18],[-2,-9],[-3,-4],[-3,3],[-2,10],[-1,3],[-2,2],[-3,1],[-2,0],[-2,-2],[-2,-5],[-1,-9],[-2,-3],[-1,-2],[-1,-3],[0,-6],[1,-6],[1,-1],[2,2],[2,3],[-2,5],[0,4],[0,3],[2,4],[2,0],[0,-15],[2,-10],[4,-4],[5,5],[2,3],[2,9],[2,3],[2,3],[12,10],[0,2],[-1,6],[-1,4],[-2,2],[-1,4],[-2,6],[0,8],[-2,11],[-4,7],[-5,-5],[-8,10],[-4,2],[-5,-5],[-2,4],[1,3],[1,6],[-5,1],[-12,9],[-2,4],[-3,6],[-6,4],[-4,5],[1,11],[5,5],[4,-5],[4,-8],[3,-4],[3,-2],[30,-32],[38,-29],[14,-22],[3,-11],[5,-38],[5,-24],[7,-23],[9,-14],[34,-28]],[[25746,58158],[3,4],[1,7],[2,6],[3,4],[3,3],[0,4],[-7,0],[-6,3],[-4,5],[-4,8],[-2,6],[0,3],[1,10],[1,1],[9,3],[3,2],[-16,9],[-10,2],[-5,-4],[-1,0],[-1,23],[-4,24],[-5,20],[-6,15],[-1,9],[-1,1],[-1,2],[-1,0],[-2,-1],[-1,1],[-2,5],[-1,5],[0,5],[3,6],[2,3],[5,4],[2,5],[6,16],[2,4],[3,-2],[5,3],[9,7],[-1,5],[0,3],[1,4],[-4,8],[-2,3],[-3,1],[-5,-2],[-3,1],[-2,5],[-5,-7],[-1,-3],[-2,-6],[0,-8],[1,-4],[0,-3],[-3,-5],[-2,0],[-9,0],[-5,-2],[-2,0],[-3,2],[0,4],[4,0],[0,4],[-5,2],[-5,4],[-5,1],[-4,-7],[-2,0],[1,6],[3,14],[-4,3],[-1,7],[1,17],[-1,9],[-4,-2],[-4,-7],[-2,-6],[2,-17],[-4,-16],[-7,-12],[-8,-4],[-5,2],[-7,8],[-5,4],[0,4],[0,4],[-1,2],[-3,0],[-2,1],[-4,3]],[[25662,58340],[1,-4],[0,-9],[-3,-9],[-7,-2],[-3,1],[-1,1],[-1,2],[0,4],[2,0],[-1,3],[-2,6],[-1,4],[4,3],[4,1],[8,-1]],[[25660,58387],[3,-2],[7,4],[5,0],[0,-4],[-5,-5],[3,-23],[-4,-8],[-13,8],[-6,8],[1,10],[3,11],[3,4],[3,-3]],[[25867,60020],[1,-3],[-2,-10],[1,-7],[-5,1],[-5,-3],[-7,-6],[-7,-8],[-4,7],[-5,4],[2,7],[13,12],[7,3],[4,2],[3,2],[4,-1]],[[25942,60114],[2,14],[8,14],[11,14],[9,8],[17,16],[18,12],[12,7],[8,2],[11,-1],[9,-1],[13,0],[-5,-4],[-6,-6],[-6,4],[-8,-5],[-6,3],[-5,-2],[-2,-1],[-4,-6],[-1,-1],[-3,0],[-4,-2],[-5,-8],[-10,-10],[-10,-8],[-11,-15],[-9,-6],[-6,-2],[-5,-8],[-4,-9],[-6,-8],[-2,9]],[[26135,60219],[5,16],[3,8],[9,8],[5,-4],[5,-7],[-2,-7],[-6,-1],[-1,-9],[-4,-10],[-5,-1],[-4,-8],[-14,-20],[-1,5],[2,11],[4,14],[4,5]],[[26683,60785],[2,0],[2,-1],[2,-1],[2,-2],[-3,-1],[-2,0],[-2,2],[-1,3]],[[28103,51319],[16,-24],[6,-17],[8,-14],[3,-10],[3,-13],[4,-12],[5,-9],[7,-4],[4,1],[4,3],[3,-2],[0,-11],[1,-6],[6,-14],[2,-9],[4,5],[4,0],[15,-7],[2,-3],[3,-5],[26,-62],[7,-11],[5,-6],[17,-9],[6,-6],[36,-59],[11,-12],[20,-1],[19,-16],[3,0],[1,2],[2,0],[2,-7],[1,-6],[0,-6],[1,-7],[3,-5],[6,-5],[6,-3],[6,0],[5,2],[23,18],[6,0],[9,-14],[2,-43],[6,-18],[18,-27],[10,-9],[8,3],[1,0],[12,-6],[4,-29],[1,-62],[3,-20],[1,-17],[3,-16],[7,-12],[10,-7],[30,-13],[5,-4],[4,-5],[4,-2],[6,0],[14,12],[5,1],[4,-2],[6,-3],[10,-25],[9,-6],[11,-1],[3,-1],[5,-3],[3,-5],[6,-13],[4,-7],[4,-3],[5,0],[19,6],[3,-1],[10,-10],[5,1],[-1,23],[3,3],[10,-6],[13,-3],[4,-2],[5,-7],[7,-15],[6,-3],[4,1],[7,8],[27,6],[5,7],[-3,40],[1,44],[0,4],[3,-1],[6,0],[3,2],[2,2],[7,17],[2,3],[1,2],[5,8],[3,2],[3,-3],[8,-17],[5,-7],[5,-5],[6,-3],[7,-1],[6,0],[3,0],[3,-2],[1,-7],[2,-15],[1,-5],[5,1],[7,4],[7,2],[2,-9],[2,-7],[18,-50],[2,-8],[1,-11],[3,-10],[7,-13],[17,-22],[2,-8],[11,-18],[8,-9],[5,-4],[5,-3],[6,-1],[7,1],[12,6],[5,1],[5,-4],[5,-8],[3,-8],[3,-4],[5,-4],[13,-25],[16,-21],[7,-5],[5,-8],[16,-6],[17,-14],[6,-7]],[[27683,48460],[-1,4],[0,5],[1,6],[3,5],[2,7],[2,8],[2,8],[-3,-17],[-1,-4],[2,-12],[4,6],[1,18],[3,9],[8,-16],[3,3],[20,9],[4,-1],[2,-1],[2,0],[3,2],[6,16],[1,2],[11,47],[3,8],[6,-2],[1,-14],[-2,-29],[3,4],[2,6],[2,6],[2,7],[3,4],[8,12],[5,10],[2,12],[2,14],[1,23],[5,21],[9,32],[2,12],[-3,10],[1,14],[4,23],[1,10],[8,60],[6,23],[1,4],[3,12],[1,14],[6,35],[3,10],[8,18],[2,11],[1,14],[-2,26],[-4,21],[-1,3],[-6,-1],[-3,1],[-2,2],[-3,11],[-6,32],[-3,12],[-2,7],[0,8],[0,35],[-2,27],[0,8],[2,13],[0,8],[-1,4],[-1,2],[-3,10],[-1,2],[-1,4],[0,3],[-1,4],[0,7],[2,7],[1,5],[1,5],[-2,7],[4,10],[5,3],[3,4],[1,14],[2,6],[5,5],[5,6],[2,13],[-17,-20],[-2,-3],[0,-5],[-1,-10],[-2,-2],[-9,-1],[-2,-5],[0,-5],[-2,-14],[-3,-24],[0,-17],[1,-17],[9,-32],[1,-18],[-5,-115],[-3,-24],[-2,-7],[-7,-18],[-3,-3],[-4,-3],[-10,-12],[-4,-2],[-3,3],[-1,8],[-3,2],[-6,-2],[-2,2],[-3,5],[-2,10],[4,9],[8,12],[3,13],[1,9],[3,5],[7,2],[2,-3],[2,-5],[2,-4],[3,-1],[3,4],[1,5],[0,6],[-2,6],[-1,-12],[-4,2],[-6,14],[-6,-2],[-6,-6],[-4,-2],[-2,8],[2,13],[5,25],[1,14],[1,8],[3,3],[3,1],[3,2],[2,5],[5,19],[-2,-1],[-2,-2],[-3,-6],[-2,-2],[-5,1],[-3,-1],[-3,-5],[-3,-7],[-12,-66],[-19,-56],[-8,-20],[-9,-9],[-2,-7],[-2,-6],[-3,-3],[-3,0],[-1,2],[-1,4],[-1,4],[-5,4],[-2,-5],[-1,-9],[1,-12],[1,-2],[7,-16],[1,-5],[1,-7],[-1,-13],[-2,-5],[-7,2],[-12,9],[-11,22],[-4,5],[-4,7],[-2,3],[-1,1],[-5,1],[-3,2],[-10,14],[-30,74],[-23,46],[-9,6],[-8,9],[-9,-1],[-15,10],[-5,5],[-11,22],[-7,5],[-4,0],[-3,1],[-2,6],[-2,20],[-2,9],[-5,14],[-4,8],[-10,18],[-1,3],[-1,7],[-1,5],[1,3],[2,-1],[1,-3],[1,-2],[1,-2],[7,-4],[3,0],[2,-2],[1,-10],[4,-8],[7,0],[10,8],[14,24],[11,12],[10,23],[2,35],[-4,18],[-2,19],[-1,5],[1,6],[3,1],[4,5],[1,14],[-1,15],[-8,63],[-4,25],[-2,11],[-2,9],[-3,7],[-3,11],[-7,34],[-3,11],[-2,7],[0,9],[1,7],[10,14],[-1,14],[0,17],[2,5],[3,7],[4,2],[4,-1],[2,8],[-1,9],[1,11],[1,10],[-1,14],[1,8],[5,5],[0,15],[-9,24],[-16,43],[-14,50],[-5,30],[-4,18],[2,12],[3,7],[4,7],[4,8],[2,6],[2,6],[4,8],[3,9],[1,5],[3,2],[4,-2],[4,0],[3,5],[4,3],[4,-2],[4,3],[3,2],[-1,-5],[5,-5],[5,-1],[3,6],[2,2],[2,6],[3,2],[3,-8],[2,-2],[5,-1],[7,6],[6,11],[6,14],[4,37],[2,12],[3,38],[5,30],[7,26],[3,18],[1,3],[3,4],[4,1],[3,3],[1,-16],[4,-12],[7,-7],[7,-2],[15,-1],[0,8],[-7,4],[-9,4],[-5,0],[-4,6],[-3,17],[-4,14],[-4,3],[-2,6],[0,15],[-3,16],[-1,17],[-4,19],[-5,13],[-3,25],[3,8],[5,1],[9,16],[9,28],[3,10],[1,8],[2,13],[2,10],[6,4],[4,12],[4,13],[5,-9],[6,6],[6,11],[8,12],[17,38],[13,37],[5,12],[1,12],[1,7],[1,2],[2,2],[6,4],[4,22],[3,20],[1,31],[0,14],[-2,25],[-1,45],[3,16],[0,5],[0,2],[3,-3],[2,-3],[1,-4],[1,-9],[2,0],[0,7],[3,12],[1,5],[-1,8],[-1,5],[-4,8],[-7,23],[-2,11],[0,12],[0,13],[2,7],[3,6],[2,9],[1,13],[-2,12],[-2,10],[-2,17],[-2,7],[-4,4],[-5,2],[-4,3],[-2,7],[-2,9],[-1,9],[0,26],[3,25],[6,21],[9,14],[4,-5],[4,-1],[10,2],[4,2],[5,11],[4,2],[4,2],[7,6],[9,3],[5,8],[3,2],[3,2],[8,14],[2,5],[4,11],[2,4],[6,7],[17,11],[7,11],[2,-6],[0,-5],[-6,-38],[1,-8],[3,-6],[3,-4],[3,-6],[4,-16],[1,-5],[-4,27],[-4,6],[-1,4],[0,3],[2,6],[0,3],[-1,15],[1,11],[3,9],[4,6],[12,-8],[14,16],[18,37],[6,3],[20,-3],[2,1],[7,5],[2,2],[8,-1],[4,1],[3,4],[6,-8],[8,3],[8,6],[7,3],[5,6],[21,59],[4,5],[7,-5],[6,-10],[3,-12],[2,-15],[1,-16],[5,6],[3,9],[1,11],[1,26],[2,6],[2,6],[3,9],[1,-5],[2,-3],[2,1],[3,3],[2,5],[0,4],[0,5],[1,6],[5,11],[5,2],[11,-9],[-2,9],[-5,2],[-6,2],[-4,4],[-2,8],[1,8],[2,7],[11,22],[1,8],[0,9],[-1,8],[1,6]],[[27761,48893],[12,-1],[20,-25],[11,-7],[0,-4],[-1,-4],[-1,-4],[-1,-4],[-3,-5],[-14,-13],[-1,-5],[-4,-8],[-1,-4],[-2,-9],[-2,-9],[-2,-5],[-1,0],[-3,-11],[-3,-14],[-4,-14],[-2,-9],[-4,-4],[-4,-9],[0,-14],[-4,-8],[-1,-9],[-5,-13],[-10,2],[-5,-7],[-5,-3],[-7,1],[-6,4],[-4,4],[-2,13],[2,21],[1,71],[1,8],[9,37],[4,24],[4,6],[17,10],[15,17],[6,4]],[[25094,49676],[7,-5],[6,-13],[0,-13],[-8,-5],[-9,2],[-23,22],[6,12],[4,-2],[13,1],[4,1]],[[24894,49727],[1,-2],[1,-2],[1,-2],[1,-5],[0,-4],[-1,-2],[-1,-2],[0,-1],[-1,-3],[-3,-2],[-2,-1],[0,-3],[1,-7],[-1,-3],[-1,-4],[-9,-11],[-2,-1],[-10,3],[-4,6],[-4,8],[-6,7],[3,6],[2,8],[2,9],[2,18],[2,9],[4,3],[2,-8],[6,3],[7,-3],[7,-7],[3,-7]],[[25192,50064],[3,-5],[4,0],[4,3],[3,4],[1,-22],[-5,-24],[-8,-22],[-9,-14],[-10,-6],[-1,-3],[-1,-6],[-3,-17],[-5,-18],[-4,-9],[-4,-6],[-5,-3],[-4,-1],[-9,1],[-3,-2],[-6,-9],[-4,-2],[-2,2],[-6,8],[-3,3],[-10,3],[-2,2],[-1,6],[2,6],[3,9],[3,5],[11,11],[3,6],[3,20],[3,1],[12,6],[3,7],[4,19],[3,7],[7,14],[2,5],[2,4],[10,8],[3,6],[4,1],[9,5],[3,-3]],[[24946,50151],[4,-6],[-1,-14],[-4,-25],[1,-7],[1,-9],[0,-6],[0,-2],[-3,-13],[1,-3],[-5,-4],[-3,-9],[-3,-11],[-4,-9],[-2,-4],[-2,-1],[-13,1],[-2,-2],[-1,-11],[-4,-6],[-5,-2],[-5,1],[-9,7],[-6,2],[-2,3],[-2,3],[-1,1],[-2,4],[-6,19],[-2,6],[-4,-1],[-6,2],[-5,5],[-3,6],[0,8],[0,28],[2,16],[3,14],[4,13],[5,10],[2,3],[8,7],[3,2],[3,0],[6,-3],[2,-1],[3,2],[3,4],[2,2],[26,6],[6,7],[2,-2],[2,-2],[1,-2],[1,-3],[1,-6],[0,-6],[0,-6],[2,-2],[3,-1],[5,-3],[3,0]],[[24611,50201],[-3,-3],[-19,-16],[-5,-2],[-3,-1],[-3,2],[-6,9],[-5,2],[-8,7],[-1,1],[-3,-1],[-2,0],[-1,3],[0,1],[0,2],[0,3],[-5,11],[-4,12],[-2,13],[-2,27],[-4,22],[1,8],[25,-1],[10,11],[13,6],[6,5],[2,-1],[3,-4],[10,-21],[3,-3],[3,-6],[1,-12],[-1,-23],[0,-51]],[[24843,50301],[4,-5],[-2,-10],[-6,-19],[-2,-13],[-5,-3],[-7,1],[-11,8],[-20,0],[-5,4],[-5,6],[-5,4],[-7,-5],[-3,10],[-2,15],[-3,12],[-7,3],[12,35],[0,8],[-1,10],[2,10],[5,8],[5,2],[2,-3],[1,0],[1,3],[5,-8],[19,-14],[7,-2],[9,-8],[15,-34],[7,-11],[-1,-1],[-1,0],[-1,-3]],[[24774,50037],[3,-3],[2,0],[1,-2],[0,-9],[-2,-3],[-6,-6],[-3,-3],[-8,-58],[1,-15],[-1,-10],[-6,3],[-3,-9],[-7,-17],[-3,-10],[-5,5],[-5,1],[-8,-2],[-6,-3],[-9,-14],[-31,-22],[-7,3],[-4,-3],[-25,7],[-31,0],[-6,3],[-4,9],[-1,6],[-1,7],[0,13],[-1,7],[-2,2],[-4,0],[-3,2],[-7,23],[3,27],[8,25],[8,18],[32,45],[2,4],[0,4],[1,3],[4,1],[7,6],[10,6],[3,0],[3,-2],[2,-3],[1,-2],[1,-2],[5,-3],[3,-1],[3,3],[2,3],[2,9],[2,2],[0,6],[2,12],[4,10],[4,-4],[4,10],[0,9],[-2,7],[-4,7],[-3,4],[-9,5],[-3,3],[-6,13],[-7,19],[-5,21],[-3,20],[1,17],[-1,6],[-4,5],[-2,2],[-4,1],[-1,1],[-1,3],[-3,10],[-17,19],[-6,15],[0,19],[-5,7],[-4,13],[1,12],[6,4],[-5,15],[-2,9],[-1,10],[0,21],[0,5],[-1,9],[0,6],[-3,20],[-6,10],[-8,0],[-10,-8],[-10,-14],[-4,-2],[-6,6],[-6,16],[-1,4],[1,6],[2,2],[2,2],[19,22],[5,12],[2,24],[7,-5],[5,3],[5,6],[10,5],[1,5],[2,6],[2,4],[4,2],[5,-1],[3,3],[4,-9],[2,-13],[1,-13],[1,-6],[4,-5],[3,-26],[3,-5],[1,-3],[4,-11],[2,-3],[6,0],[3,-1],[2,-3],[2,-10],[0,-15],[0,-27],[5,-66],[3,-11],[11,-22],[1,-3],[1,-3],[0,-7],[0,-7],[2,-3],[2,-1],[1,-1],[29,-38],[2,-7],[0,-5],[2,-5],[4,-8],[1,-2],[4,-2],[0,-4],[0,-3],[-1,-3],[-1,-2],[3,-23],[1,-24],[-2,-11],[-7,-14],[-2,-9],[6,8],[2,-5],[0,-11],[1,-9],[12,-4],[6,-7],[-1,-13],[4,-1],[3,-3],[3,-6],[2,-7],[-2,-8],[4,-3],[9,-21]],[[24857,50638],[-3,2],[-2,5],[-2,5],[-2,4],[1,13],[5,10],[6,6],[6,3],[6,-4],[7,-7],[5,-9],[2,-12],[-1,-9],[-5,-9],[-7,-8],[-5,-3],[-4,3],[-3,8],[-4,2]],[[24778,50857],[11,-14],[4,-27],[-5,-18],[-12,10],[2,13],[-2,25],[2,11]],[[28083,51283],[0,-5],[0,-4],[1,-7],[1,-20],[-2,-24],[-3,-16],[-7,7],[-3,-7],[-3,-5],[-5,9],[-5,10],[0,11],[4,12],[22,39]],[[24494,51291],[2,-1],[1,-5],[-1,-3],[-1,-2],[-2,2],[0,3],[0,4],[1,2]],[[24494,51295],[1,1],[-1,-2],[0,1]],[[24441,51452],[2,3],[1,-2],[0,-5],[-2,-1],[-1,5]],[[27828,48997],[3,-15],[6,-5],[4,-13],[-6,-19],[-10,-10],[-1,-26],[-7,-9],[-5,0],[-2,14],[4,22],[6,33],[8,28]],[[28103,51319],[4,5],[-2,10],[-3,6],[-4,5],[-2,7],[-1,9],[1,11],[0,12],[-2,9],[-2,1],[-3,-4],[-6,-5],[-2,6],[-3,5],[-4,1],[-2,5],[-6,8],[-3,2],[-7,10],[-4,9],[-3,9],[2,10],[2,6],[4,3],[6,3],[5,10],[4,18],[4,11],[7,15],[6,14],[3,9],[6,9],[13,7],[6,-3],[5,2],[6,-3],[5,-5],[6,-3],[10,-2],[6,-2],[8,-3],[1,-1],[2,-5],[3,-4],[3,-2],[2,1],[0,8],[1,5],[1,9],[3,9],[2,15],[-2,10],[0,9],[1,2],[1,2],[1,4],[0,6],[-1,3],[-1,-2],[-2,-8],[-4,-4],[-5,0],[-2,8],[0,11],[1,12],[0,9],[2,14],[0,7],[-1,5],[-2,7],[-3,5],[-3,2],[-3,-4],[-2,-8],[-3,-18],[-3,-4],[-2,5],[0,12],[-1,16],[-4,21],[-2,28],[-3,20],[0,26],[3,14],[3,16],[2,15],[8,7],[2,17],[8,31],[6,26],[4,18],[4,9],[-2,-10],[0,-10],[0,-10],[2,-10],[4,27],[2,28],[3,13],[5,-3],[7,18],[7,18],[7,21],[6,5],[5,10],[6,12],[7,9],[3,-1],[3,-13],[3,-16],[4,-16],[6,-17],[6,0],[-3,20],[-1,17],[0,18],[2,9],[4,8],[4,-10],[2,-18],[-2,-14],[3,-9],[2,-13],[2,-11],[4,-9],[3,-4],[10,-10],[4,-3],[3,0],[4,7],[6,3],[0,4],[0,4],[0,4],[0,1],[1,3],[0,3],[0,21],[-1,9],[-1,9],[-3,10],[-1,10],[2,6],[7,-3],[2,5],[7,0],[5,0],[5,0],[3,5],[7,8],[5,-1],[4,-8],[3,-11],[2,-6],[3,-2],[5,3],[-2,-9],[-3,-13],[1,-10],[5,-5],[3,-1],[6,-3],[4,0],[7,3],[3,1],[7,3],[5,8],[2,11],[0,11],[-2,7],[-3,10],[-4,9],[-4,2],[0,4],[6,0],[0,4],[-4,2],[-2,4],[0,5],[2,6],[-3,1],[-1,4],[0,5],[2,6],[-2,1],[-2,1],[0,4],[0,6],[5,-4],[4,3],[3,6],[4,3],[2,1],[2,1],[2,3],[-1,3],[-2,1],[-5,-5],[-2,0],[-4,6],[1,4],[3,4],[1,4],[2,-1],[5,-2],[5,-1],[4,2],[1,-4],[2,-5],[0,-3],[2,0],[-2,13],[-10,5],[3,11],[4,5],[4,1],[4,2],[3,8],[3,-3],[2,-2],[2,-3],[1,-5],[1,14],[-6,4],[-8,-2],[-6,-7],[-2,9],[0,13],[2,12],[3,6],[4,-1],[3,-5],[2,-5],[3,-5],[3,-2],[1,1],[0,4],[2,5],[2,6],[1,1],[1,3],[-1,6],[0,4],[-4,2],[-1,2],[0,3],[1,2],[2,8],[1,1],[1,2],[-1,5],[-2,2],[-3,0],[-2,1],[-1,5],[0,-4],[-1,-1],[0,-1],[1,-2],[-3,-4],[-3,-1],[-3,2],[-1,7],[-6,-14],[-3,-3],[0,8],[11,26],[6,19],[4,9],[21,38],[6,22],[3,13],[4,3],[5,-4],[0,5],[1,6],[0,6],[2,0],[3,-2],[2,4],[-2,6],[-4,4],[-5,-3],[-6,-1],[-1,5],[4,9],[6,13],[5,6],[7,5],[-4,7],[0,12],[3,6],[3,7],[3,4],[3,-1],[4,3],[4,1],[2,1],[5,11],[6,-25],[4,-10],[7,-5],[-1,6],[-9,24],[-3,9],[0,9],[1,10],[3,7],[1,-5],[2,-6],[1,-3],[1,3],[0,5],[-3,7],[0,3],[1,12],[3,10],[1,10],[-2,12],[3,1],[3,-1],[-1,-2],[0,-4],[-1,-3],[0,-5],[1,-4],[2,0],[2,3],[5,0],[2,-2],[2,-5],[1,-2],[0,6],[-1,4],[-2,4],[-2,2],[1,1],[1,2],[1,1],[-5,4],[-2,0],[1,6],[1,1],[1,-1],[3,-2],[0,9],[-3,3],[-6,-1],[-5,-3],[1,10],[4,1],[4,-2],[5,0],[-2,1],[-3,5],[-1,1],[1,2],[1,1],[1,1],[3,1],[-1,2],[-1,6],[5,3],[6,1],[0,-4],[-1,-5],[2,0],[9,5],[-4,2],[-1,4],[1,6],[5,12],[2,7],[2,18],[3,-5],[3,-1],[2,2],[3,6],[3,2],[4,2],[2,3],[-4,3],[-4,-1],[-4,-3],[-3,0],[-1,10],[2,1],[5,2],[4,3],[3,8],[-5,-1],[-12,-7],[-3,4],[-2,9],[1,11],[2,8],[7,-12],[5,-3],[6,0],[1,1],[-1,2],[-2,3],[-2,1],[-3,0],[-3,1],[-1,2],[-2,5],[5,0],[4,1],[3,4],[2,7],[-5,6],[-2,7],[0,8],[5,8],[2,-3],[1,-3],[1,-4],[-1,-6],[4,8],[-1,12],[-1,11],[13,9],[3,10],[3,11],[4,8],[0,3],[-17,-7],[0,4],[2,1],[2,2],[-7,0],[-3,1],[-3,4],[1,-26],[-16,-20],[-20,-7],[-11,12],[0,5],[4,5],[1,5],[-1,2],[-4,5],[-4,5],[-1,0],[-1,1],[0,7],[0,5],[1,4],[1,5],[1,15],[2,5],[3,4],[4,1],[2,-1],[1,-5],[-4,-7],[14,5],[4,3],[0,4],[-10,-4],[1,8],[2,6],[8,19],[4,20],[-3,0],[-1,1],[-1,2],[0,5],[-5,-2],[-3,5],[-3,8],[-5,6],[2,-6],[0,-7],[0,-6],[-2,-6],[-2,3],[-2,1],[-3,-1],[-2,-3],[0,-4],[1,-3],[0,-1],[-1,-4],[-1,2],[-1,1],[-1,0],[-3,1],[1,-11],[-1,-17],[-2,-14],[-3,-7],[-1,-4],[-1,-16],[0,-4],[-5,-1],[-3,5],[-2,8],[2,8],[-14,24],[-2,5],[-1,10],[1,9],[6,1],[-3,8],[-1,4],[-2,16],[-1,18],[0,18],[1,9],[1,6],[4,6],[3,2],[4,-1],[3,1],[1,8],[1,4],[3,4],[3,3],[3,-3],[5,-12],[2,-1],[4,3],[5,6],[4,9],[8,22],[-23,0],[-5,2],[-3,10],[-11,36],[8,24],[2,9],[2,25],[3,9],[6,7],[0,4],[-6,-4],[1,16],[3,28],[0,81],[1,-5],[1,-4],[2,-4],[2,-3],[1,6],[1,9],[-1,9],[-7,8],[-1,8],[0,9],[-1,8],[7,-2],[4,-7],[4,-10],[2,-10],[2,0],[-3,19],[-12,31],[-2,20],[-1,-2],[-3,-2],[-2,-1],[-2,24],[-3,76],[-2,10],[-2,89],[2,20],[2,19],[4,18],[-4,5],[-1,13],[1,13],[-1,6],[-3,5],[-1,11],[-1,24],[-4,-3],[-3,3],[-1,6],[0,10],[2,0],[2,-2],[1,-2],[1,1],[2,3],[-3,4],[-1,6],[-2,18],[0,2],[0,3],[-2,4],[-1,1],[-4,1],[-2,2],[-3,6],[-2,6],[-3,5],[-4,3],[-4,0],[-2,-2],[-2,-4],[-1,-6],[-3,6],[-4,0],[-3,-2],[-2,0],[-2,7],[1,5],[3,3],[3,2],[3,6],[6,29],[3,9],[3,2],[6,0],[3,2],[3,5],[3,5],[2,4],[4,2],[5,-3],[4,-6],[5,-3],[6,4],[2,4],[1,3],[0,4],[1,5],[1,3],[-1,7],[0,2],[1,1],[2,-1],[2,0],[1,2],[1,7],[3,5],[4,4],[2,5],[2,6],[2,7],[1,7],[0,6],[-1,25],[-4,21],[-11,39],[-1,2],[-2,3],[0,13],[-11,63],[-2,0],[0,-16],[-2,0],[-5,26],[-7,24],[-17,44],[-3,10],[-1,9],[1,23],[1,21],[1,11],[-2,7],[1,4],[11,-18],[7,-18],[2,4],[3,10],[4,22],[1,11],[0,10],[0,9],[-1,7],[-5,15],[1,4],[6,5],[1,-3],[1,-2],[1,-1],[1,-2],[1,9],[-1,8],[-3,7],[-3,4],[0,4],[4,15],[2,10],[0,12],[3,9],[2,13],[-1,13],[-2,9],[-10,17],[-2,4],[-1,4],[-2,4],[-2,4],[0,6],[1,13],[0,7],[0,8],[-2,3],[-3,1],[-10,12],[-6,-4],[-6,-8],[-3,-10],[1,-4],[1,-4],[-2,-1],[-2,-1],[-2,-2],[-2,0],[0,15],[1,7],[1,7],[-11,52],[-6,16],[-8,17],[-4,5],[-7,4],[-1,3],[-2,2],[-3,-2],[-1,-4],[0,-5],[0,-4],[-3,-3],[-1,41],[3,17],[7,7],[4,10],[-4,23],[-9,35],[-1,0],[1,-7],[1,-2],[1,-2],[0,-5],[-2,0],[-4,14],[-21,46],[-3,4],[-5,1],[-3,4],[-1,7],[-2,7],[-4,3],[2,3],[-4,3],[-3,5],[-5,13],[-2,1]],[[28362,54754],[11,78],[10,65],[7,-3],[6,2],[5,7],[4,11],[3,15],[-1,13],[-6,26],[-3,18],[-1,25],[2,22],[6,8],[3,-3],[14,-25],[3,-7],[0,-2],[-2,-5],[0,-2],[1,-2],[3,-1],[0,-1],[8,-22],[2,-8],[3,-30],[3,-6],[7,1],[7,12],[12,27],[39,51],[8,16],[-1,11],[-6,11],[-4,18],[1,7],[8,22],[7,34],[6,12],[9,10],[9,6],[9,4],[10,0],[1,2],[-2,10],[-2,6],[-3,4],[-3,6],[-2,8],[0,15],[-6,46],[-8,33],[-3,8],[-7,22],[-6,27],[-2,6],[-4,3],[-4,1],[-3,3],[-3,10],[-3,21],[-2,40],[-4,21],[-4,17],[-3,5],[-5,3],[-8,-2],[-3,4],[0,13],[2,18],[3,7],[8,18],[4,14],[-1,11],[-1,6],[0,4],[5,6],[4,3],[5,1],[3,4],[0,8]],[[28507,55601],[0,3],[1,1],[0,2],[1,2],[4,-5],[3,-22],[3,-11],[4,-7],[3,-8],[2,-9],[2,-11],[2,-23],[3,-12],[18,-26],[14,-12],[4,-6],[3,-8],[22,-78],[6,-10],[4,-1],[8,0],[1,-1],[2,-1],[2,7],[2,0],[2,-6],[0,-9],[-2,0],[-1,2],[-1,1],[0,-15],[2,-10],[3,-4],[5,5],[0,-12],[4,8],[1,-6],[-3,-9],[0,-9],[-2,1],[-3,2],[-1,1],[2,-21],[7,-9],[6,2],[0,11],[17,0],[-1,-5],[-2,-6],[-1,-6],[0,-7],[3,0],[0,2],[3,2],[0,-4],[-9,-8],[0,-4],[2,-1],[2,-1],[2,-6],[0,-1],[0,-1],[0,-2],[-2,3],[-1,1],[-2,1],[-3,-1],[2,-5],[3,-4],[3,-4],[1,-7],[-7,6],[-7,5],[-7,-2],[-3,-9],[-1,-3],[1,-1],[1,0],[-5,-34],[8,-20],[14,-10],[18,-1],[3,1],[3,2],[3,4],[2,5],[1,5],[0,4],[-1,3],[0,6],[1,5],[2,6],[1,5],[2,37],[-1,16],[-3,14],[-1,-4],[0,-3],[0,-4],[1,-5],[-2,0],[-1,10],[-1,13],[0,14],[3,20],[-1,13],[-4,19],[-1,19],[0,83],[-2,11],[-3,5],[-4,3],[-2,8],[-1,11],[-2,10],[-5,13],[-9,12],[-10,10],[-8,2],[0,-4],[-4,6],[5,15],[7,17],[3,13],[28,18],[7,1],[27,16],[3,5],[2,4],[0,7],[0,7],[1,6],[3,3],[0,4],[-2,0],[0,4],[5,2],[19,15],[4,5],[12,26],[14,21],[7,12],[0,4],[-2,7],[2,5],[17,8],[6,9],[6,1],[2,4],[1,5],[3,8],[10,15],[2,7],[-2,21],[3,17],[5,13],[10,18],[2,6],[2,9],[3,50],[2,8],[1,1],[8,6],[1,1],[4,3],[1,6],[0,11],[1,10],[1,6],[3,7],[3,4],[2,2],[11,8],[9,5],[8,10],[7,12],[0,14],[2,9],[6,-2],[4,-6],[9,1],[9,4],[7,6],[2,-2],[2,-3],[2,-5],[0,-7],[-4,4],[-4,1],[-4,-2],[-4,-6],[3,-4],[1,-1],[2,1],[2,4],[2,-4],[1,-2],[1,-2],[0,-5],[8,13],[6,5],[6,3],[6,-2],[5,-4],[1,0],[7,-4],[3,6],[11,20],[7,27],[5,38],[0,34],[-3,17],[-3,8],[-2,4],[-3,12],[-5,0],[-3,6],[-3,3],[-6,0],[-4,-3],[-3,-5],[0,6],[15,33],[3,15],[4,33],[0,14],[2,12],[3,17],[3,20],[2,12],[0,12],[3,34],[1,19],[-4,20],[0,12],[1,4],[1,2],[2,1],[2,2],[1,4],[3,13],[2,6],[1,3],[1,7],[0,7],[0,6],[1,5],[1,6],[-9,-10],[-11,-16],[-11,-25],[-12,-13],[-5,1],[4,20],[8,10],[4,5],[2,6],[2,6],[2,8],[2,6],[1,7],[-1,7],[1,5],[6,0],[-2,5],[0,5],[0,5],[2,5],[2,-12],[6,3],[10,13],[3,6],[0,13],[-2,16],[0,14],[-2,0],[-2,-3],[-2,4],[-2,15],[-2,0],[0,-5],[-1,-4],[-2,-2],[-2,-1],[1,5],[1,11],[1,4],[2,4],[3,3],[2,3],[8,19],[3,4],[-2,-10],[-3,-13],[-1,-10],[5,-4],[3,5],[2,13],[0,15],[0,12],[-2,2],[-2,1],[-2,1],[0,3],[1,8],[1,1],[-1,7],[0,6],[-1,5],[-3,2],[-1,3],[1,5],[3,6],[3,2],[3,1],[3,3],[4,4],[2,5],[0,3],[-2,6],[0,3],[1,1],[2,1],[1,2],[2,2],[3,0],[2,1],[0,7],[1,0],[2,5],[2,7],[0,3],[2,1],[7,6],[18,10],[3,5],[3,9],[2,6],[1,1],[2,-2],[1,-1],[2,-2],[0,-3],[0,-3],[-1,-1],[-1,-3],[2,-4],[0,-2],[0,-2],[2,0],[2,5],[6,12],[-2,5],[0,4],[0,5],[0,6],[-5,-8],[-1,-4],[-6,6],[-1,11],[2,11],[10,7],[4,11],[3,3],[4,0],[3,2],[3,3],[17,24],[11,6],[6,7],[3,9],[0,9],[1,6],[2,14],[1,5],[2,3],[4,4],[5,1],[6,4],[3,9],[7,11],[1,10],[7,0],[10,2],[4,8],[0,11],[0,10],[-1,3],[2,4],[7,-7],[6,-4],[15,-11],[27,-23],[20,-15],[14,-7],[14,-4],[19,-4],[18,2],[11,3],[-4,-6],[-13,-6],[-27,2],[-3,1],[-3,2],[-3,0],[-4,-3],[0,-5],[0,-7],[0,-6],[-2,-3],[-2,-7],[4,-18],[6,-27],[-4,5],[-4,9],[-4,5],[-3,-7],[-2,6],[-6,0],[-4,4],[-3,-2],[-2,-10],[-1,-12],[-1,-8],[0,-18],[0,-9],[2,-4],[4,3],[1,9],[2,11],[2,6],[0,-6],[1,-4],[2,-3],[3,0],[0,-6],[0,-22],[4,-4],[5,1],[3,5],[2,10],[-4,-4],[-2,2],[-2,5],[0,9],[1,8],[2,5],[2,5],[-1,7],[5,-2],[4,-8],[1,-12],[2,-28],[2,-7],[5,-1],[10,1],[2,1],[3,3],[5,10],[2,2],[0,6],[8,31],[0,4],[0,16],[3,13],[1,5],[1,3],[4,10],[1,3],[2,23],[2,13],[18,53],[0,5],[0,7],[-4,10],[-1,5],[0,7],[1,10],[1,5],[-1,6],[-2,11],[-1,6],[0,2],[3,5],[1,3],[-1,3],[0,2],[-1,1],[0,2],[0,6],[2,6],[3,10],[2,4],[1,1],[1,3],[0,6],[4,15],[4,0],[4,-1],[2,2],[0,15],[2,0],[0,-4],[0,-3],[2,-5],[2,8],[1,4],[1,-2],[1,0],[0,-2],[2,0],[0,12],[3,-5],[2,-9],[3,-2],[3,3],[1,6],[1,3],[2,-4],[2,0],[1,4],[1,2],[2,1],[2,1],[7,-2],[5,-4],[5,-7],[5,-9],[2,-2],[13,-6],[9,-11],[10,-7],[34,-5],[31,5],[8,0],[45,0],[31,10],[2,3],[2,5],[9,14],[7,8],[1,3],[2,5],[4,14],[1,2],[3,2],[3,5],[4,12],[3,5],[9,9],[16,32],[33,37],[49,83],[5,6],[10,8],[17,7],[4,5],[9,12],[5,-3],[6,6],[6,9],[7,4],[16,2],[5,2],[5,6],[7,12],[9,5],[12,18],[15,13],[3,9],[5,11],[1,6],[1,5],[3,21],[10,33],[3,20],[6,17],[2,7],[1,12],[-2,33],[-1,12],[-1,5],[-3,4],[-2,4],[-1,-1],[0,8],[3,5],[6,8],[9,-7],[28,11],[10,-5],[-1,-11],[-12,-25],[5,-4],[4,-15],[5,-5],[8,8],[1,2],[1,7],[2,7],[2,5],[3,3],[4,1],[3,-1],[3,1],[2,5],[-2,6],[-2,6],[-1,5],[3,6],[-3,5],[-2,4],[-2,4],[-3,3],[-4,0],[-3,-1],[-3,-3],[-2,-4],[-1,0],[-2,8],[12,18],[11,18],[0,3],[1,8],[2,2],[5,-1],[1,1],[4,6],[2,1],[4,-3],[-5,-6],[-4,-6],[-1,-9],[4,-8],[2,-2],[1,-1],[4,3],[1,2],[-1,2],[0,3],[1,1],[4,0],[1,0],[5,6],[4,5],[2,7],[1,11],[-1,1],[-1,0],[-1,2],[1,5],[1,4],[3,2],[3,2],[2,0],[-1,-10],[1,-6],[3,-4],[1,-8],[2,0],[1,2],[1,4],[0,4],[-1,2],[-2,1],[1,3],[3,3],[1,1],[3,4],[4,2],[3,4],[3,6],[-3,0],[-3,-3],[-3,-3],[-1,-2],[-3,2],[0,5],[3,5],[2,4],[-3,0],[-2,-1],[-3,-3],[-1,-4],[0,10],[1,3],[1,3],[-4,-4],[-7,-14],[-3,-6],[-1,4],[3,11],[4,9],[5,6],[6,3],[5,-2],[9,-8],[6,-3],[20,0],[5,-2],[6,-6],[9,-12],[4,-8],[2,-2],[3,-2],[10,0],[3,-2],[5,-9],[6,-4],[12,-5],[10,-10],[5,-9],[3,-10],[1,-3],[2,-5],[1,-11],[16,-60],[2,-16],[11,-33],[2,-11],[-2,-14],[-4,-12],[-3,-9],[-7,-12],[-20,-22],[-5,-13],[-4,-5],[-5,-3],[-4,-2],[-1,-5],[-5,-32],[-1,-5]],[[30187,57487],[-9,1],[-5,-6],[-9,-17],[-11,-10],[-8,-4],[-16,-9],[-16,-9],[-17,-9],[-16,-9],[-16,-8],[-17,-9],[-16,-9],[-16,-9],[-7,-4],[-6,-8],[-5,-14],[-2,-11],[-9,-32],[-8,-33],[-8,-32],[-8,-33],[-9,-32],[-8,-33],[-8,-32],[-9,-33],[-2,-7],[-5,-3],[-11,6],[-5,1],[-6,-2],[-15,-12],[-12,-2],[-6,-1],[-5,-7],[-1,-6],[0,-11],[-1,-6],[-2,-6],[-6,-12],[-2,-7],[-9,-49],[-5,-15],[-6,-10],[-12,-18],[-7,-17],[-6,-27],[-14,-81],[-7,-25],[-17,-42],[-6,-31],[-3,-11],[-5,-10],[-4,-12],[-2,-12],[-1,-3],[0,-8],[0,-12],[-5,-129],[-15,-105],[0,-23],[-2,-23],[0,-12],[2,-15],[2,-11],[1,-11],[-2,-15],[-9,-38],[-15,-50],[-7,-40],[-3,-11],[-4,-10],[-12,-15],[-4,-8],[-5,-26],[-22,-69],[-10,-51],[-3,-12],[-5,-10],[-10,-15],[-4,-11],[0,-13],[4,-5],[4,0],[30,2],[12,3],[10,11],[10,19],[4,6],[7,5],[7,7],[12,24],[6,1],[2,-5],[3,-21],[0,-3],[-1,-5],[0,-2],[1,-3],[3,-6],[0,-2],[2,-15],[-1,-24],[1,-13],[5,-15],[6,-3],[5,5],[10,13],[2,3],[3,2],[4,0],[2,-2],[2,0],[2,5],[5,-11],[5,-6],[1,-7],[-4,-13],[5,-12],[2,-11],[3,-26],[3,-26],[3,-26],[3,-26],[4,-25],[3,-26],[3,-26],[3,-26],[3,-24],[6,-20],[5,-11],[5,-13],[6,-12],[5,-13],[6,-12],[5,-13],[5,-12],[6,-13],[5,-12],[7,-15],[3,-6],[3,-3],[3,-1],[2,-3],[4,-7],[2,-9],[2,-10],[1,-10],[0,-10],[-3,-19],[0,-10],[1,-13],[9,-37],[6,-40],[1,-23],[-5,-13],[-4,0],[-6,2],[-5,-2],[-3,-10],[-1,-12],[-3,-9],[-3,-8],[-4,-7],[-3,-3],[-3,-3],[-3,-4],[-1,-7],[2,-5],[5,-14],[2,-7],[1,-10],[1,-26],[0,-10],[-6,-36],[-3,-62],[1,-12],[4,-23],[1,-12],[-1,-13],[-2,-12],[-2,-12],[1,-14],[7,-26],[11,-16],[5,-4],[7,-4],[13,-6],[23,1],[9,-6],[10,-26],[2,-2],[0,-3],[-2,-24],[-1,-5],[1,-18],[2,-17],[3,-17],[15,-62],[5,-12],[3,-5],[8,-7],[4,-5],[6,-12],[3,-3],[9,-4],[23,-12],[9,-1],[4,1],[3,4],[3,5],[3,5],[3,0],[3,-1],[2,2],[-1,10],[8,1],[7,2],[7,1],[7,-4],[-1,9],[2,5],[4,1],[9,-1],[2,-3],[2,-5],[3,-5],[2,0],[2,1],[4,4],[2,2],[2,-3],[0,-3],[1,-2],[6,-1],[0,1],[0,1],[5,3],[6,-4],[6,-9],[3,1],[7,8],[5,2],[4,-1],[9,-6],[4,0],[12,4],[4,-1],[3,-4],[0,-7],[1,-7],[1,-6],[4,-3],[13,-1],[3,-3],[3,-4],[2,-2],[5,3],[4,6],[2,5],[3,4],[19,-5],[15,4],[14,11],[12,18],[3,8],[1,6],[2,3],[6,0],[11,8],[12,2],[17,8],[8,0],[2,-2],[4,-7],[2,-2],[10,-4],[4,0],[8,5],[5,2],[2,-4],[14,-38],[2,-3],[5,-3],[3,0],[6,2],[3,0],[1,-2],[2,-5],[1,-2],[4,-3],[29,-29],[8,-1],[16,19],[10,5],[10,1],[8,-4],[9,-17],[5,-13],[21,-56],[21,-57],[21,-56],[21,-57],[22,-56],[21,-57],[21,-56],[21,-57],[8,-22],[3,0],[7,5],[14,13],[7,3],[6,-6],[11,-29],[7,-10],[15,19],[17,34],[6,7],[8,16],[5,5],[7,1],[6,-3],[10,-10],[5,3],[6,-3],[7,-5],[6,-3],[17,2],[6,-2],[18,-11],[6,-2],[6,-2],[12,-12],[6,-2],[4,4],[7,14],[3,3],[18,2],[20,12],[6,2],[6,-2],[18,-10],[10,0],[32,24],[12,3],[36,-7],[11,4],[10,7],[2,1],[3,2],[2,4],[2,6],[0,6],[1,8],[4,2],[3,0],[3,1],[3,5],[5,11],[4,4],[2,0],[5,-3],[20,-4],[43,-21],[8,-11],[8,-15],[7,-13],[11,-2],[1,0],[-2,-3],[-6,-8],[-3,-7],[-1,-8],[0,-23],[10,-34],[8,-11],[2,-12],[0,-14],[-1,-10],[-3,-6],[-10,-9],[-4,-5],[-13,-31],[-3,-9],[-16,-33],[-7,-22],[-5,-23],[-2,-26],[0,-27],[3,-35],[1,-11],[1,-3],[4,-8],[1,-3],[-1,-8],[-1,-4],[-2,-4],[-2,-5],[-3,-21],[-2,-3],[-3,-2],[-3,-5],[-5,-11],[-2,-4],[-9,-7],[-1,-2],[-3,-7],[-1,-3],[-2,0],[-3,1],[-1,-1],[-10,-18],[-7,-23],[-3,-25],[3,-23],[2,-9],[2,-9],[1,-11],[1,-14],[-1,-5],[-2,-14],[-1,-7],[0,-7],[0,-6],[1,-6],[1,-6],[1,-5],[5,-13],[1,-4],[0,-6],[-2,-4],[-1,-3],[-1,-3],[1,-26],[-1,-12],[-3,-23],[-2,-23],[0,-13],[0,-4],[3,-11],[1,-4],[0,-7],[-1,-4],[-1,-3],[2,-6],[-2,-11],[-1,-26],[-2,-10],[-3,-9],[-1,-13],[-1,-33],[-2,-16],[0,-18],[0,-6],[-1,-5],[-2,-3],[-2,-4],[0,-8],[0,-7],[2,-5],[3,-5],[2,-4],[0,4],[5,-7],[2,-8],[3,-21],[1,-2],[3,-3],[1,-3],[0,-5],[-1,-8],[-1,-5],[1,-8],[4,-13],[1,-8],[-1,-7],[-5,-19],[-1,-22],[2,-20],[2,-19],[1,-18],[3,-11],[5,-9],[5,-12],[2,-19],[3,-7],[2,-11],[-1,-10],[2,-2],[3,-14],[1,-37],[1,-13],[11,-41],[3,-14],[1,-30],[2,-13],[5,-13],[5,-6],[5,0],[6,2],[5,1],[11,-11],[8,-22],[18,-104],[4,-11],[4,-6],[11,-9],[9,-21],[-1,-24],[-8,-25],[-16,-45],[-4,-5],[-3,-2],[-6,-3],[-3,-3],[-5,-11],[-12,-23],[-12,-24],[-12,-23],[-12,-24],[-12,-23],[-12,-23],[-12,-24],[-11,-23],[-7,-14],[-5,-17],[0,-40],[4,7],[2,8],[3,7],[5,3],[7,0],[3,0],[5,6],[2,-2],[3,-8],[12,-11],[7,-3],[5,4],[6,3],[5,-9],[3,-13],[3,-11],[1,-27],[2,-13],[3,-5],[12,-1],[6,-3],[4,-8],[1,-5],[2,-11],[1,-5],[2,-3],[6,-7],[1,-3],[1,-5],[5,-12],[1,-2],[3,-2],[2,-6],[2,-6],[2,-6],[2,-5],[6,-7],[3,-5],[1,-6],[2,-8],[1,-7],[3,-3],[3,-2],[3,-4],[5,-12],[3,-3],[9,-7],[10,-12],[2,-4],[1,-6],[0,-11],[2,-6],[1,-12],[-3,-12],[-6,-11],[-3,-7],[0,-11],[5,-23],[2,-18],[4,-25],[3,-8],[4,-5],[5,-4],[4,-4],[2,-10],[1,-32],[-1,-10],[-1,-5],[-5,-12],[1,-7],[2,-6],[2,-5],[2,-8],[5,-8],[1,-4],[1,-7],[5,-20],[24,-135],[1,-13],[0,-26],[1,-12],[2,-12],[6,-21],[3,-13],[1,-13],[-2,-24],[1,-9],[3,-6],[3,-5],[3,-7],[3,-11],[2,-15],[0,-14],[-5,-22],[1,-14],[6,-25]],[[28297,52026],[0,-3],[6,-17],[3,-13],[0,-19],[-3,-16],[-7,-5],[-7,8],[-7,16],[-6,18],[-3,13],[1,8],[2,3],[2,3],[1,6],[-2,7],[-4,16],[0,7],[3,3],[5,-5],[6,4],[6,-7],[1,-11],[2,-5],[1,-8],[0,-3]],[[28360,52066],[4,-5],[11,-29],[4,-7],[9,-11],[5,-8],[-7,-9],[-8,-1],[-9,4],[-5,6],[2,3],[-2,5],[6,12],[0,7],[-4,4],[-5,1],[-4,6],[-2,13],[1,10],[4,-1]],[[28387,52046],[11,-17],[3,-9],[-1,-9],[-5,-1],[-7,8],[-12,20],[-8,22],[-2,6],[-1,7],[0,7],[1,3],[2,-4],[1,-2],[3,-3],[1,4],[0,2],[1,1],[2,2],[7,-17],[1,-4],[2,-11],[1,-5]],[[28513,52996],[5,-6],[6,1],[6,3],[5,-2],[-5,-18],[-3,-7],[-4,3],[-5,14],[-7,-6],[-6,-2],[-15,0],[-5,3],[-4,0],[-4,-2],[-2,-4],[-2,-5],[-2,-5],[-11,-6],[-1,-2],[-1,5],[0,8],[2,8],[2,3],[4,3],[6,11],[4,3],[3,-1],[7,-4],[4,1],[-1,4],[-5,7],[-2,5],[10,0],[-7,3],[1,6],[5,6],[5,5],[-2,1],[-1,2],[-1,1],[-2,0],[0,3],[1,2],[1,3],[7,-8],[5,-7],[3,-9],[2,-9],[4,-11]],[[27302,57886],[-2,12],[1,12],[3,10],[4,6],[1,-6],[-5,-45],[-4,-1],[-1,5],[3,7]],[[27393,58357],[-1,14],[3,12],[3,7],[4,-5],[2,-10],[-2,-9],[-4,-6],[-5,-3]],[[27330,52814],[-1,2],[0,1],[0,3],[1,4],[2,1],[0,1],[1,6],[1,1],[2,0],[1,1],[1,0],[1,-8],[0,-2],[-2,-1],[-1,-2],[-1,0],[-4,-6],[-1,-1]],[[28281,52241],[4,7],[2,-1],[0,-8],[0,-8],[0,-9],[-5,-9],[-3,-6],[-4,-2],[-3,2],[0,6],[4,1],[2,9],[1,12],[2,6]],[[29003,56610],[3,6],[3,-3],[3,-3],[5,-3],[1,-8],[-3,-6],[-3,0],[-3,2],[-3,-3],[0,-7],[-1,-4],[-3,0],[-1,7],[0,10],[1,7],[1,5]],[[27753,58511],[0,-1],[-1,0],[0,1],[1,0]],[[47940,72496],[1,-3],[0,-3],[1,-2],[2,-1],[0,-3],[-2,-5],[-5,6],[-6,3],[-6,0],[-6,-1],[-6,-4],[-11,-13],[-5,-3],[-16,-18],[-2,-5],[-42,-49],[-10,-14],[-4,0],[-4,3],[-6,2],[-17,1],[-5,3],[-2,-7],[-3,1],[-4,4],[-2,2],[2,-7],[1,-4],[1,-5],[-6,15],[-10,15],[-20,19],[-12,4],[-8,7],[-10,-1],[-22,-5],[-10,5],[-10,7],[-8,-7],[-13,-2],[-12,7],[0,-1],[-15,14],[-12,4],[-13,-2],[-4,-2],[-4,-4],[-8,-16],[-17,0],[-4,-2],[-7,-8],[-4,-2],[-4,-1],[-6,-3],[-6,-9],[-6,4],[-5,-9],[-2,-3],[-3,-2],[-6,-8],[-2,-2],[-5,3],[-3,5],[-3,3],[-4,-3],[2,17],[2,8],[1,4],[11,29],[4,16],[4,14],[-3,18],[5,8],[6,11],[4,26],[-2,11],[-2,9],[5,15],[7,15],[2,14],[5,20],[3,27],[2,16],[0,27],[-1,14],[-3,9],[-4,8],[0,7],[4,26],[1,17],[2,15],[4,3],[8,2],[1,14],[0,3],[-2,-4],[-6,-3],[-7,0],[-3,10],[2,30],[4,32],[-1,20],[-1,14],[-5,15],[-9,3],[-11,12],[1,5],[2,2],[2,1],[2,4],[15,53],[5,42],[6,32],[-1,31],[-2,38],[-3,33],[-7,23],[-7,13],[-9,17],[-10,14],[-8,5],[5,7],[6,-4],[10,-15],[13,-8],[6,-5],[0,-8],[12,1],[28,-13],[14,8],[-9,1],[-7,2],[-20,16],[-3,5],[-1,8],[-1,9],[1,7],[1,6],[3,3],[0,4],[-4,3],[-3,6],[-1,9],[2,6],[-5,2],[-5,-19],[-5,-3],[0,-4],[6,-1],[3,-9],[0,-10],[-3,-4],[-6,1],[-6,2],[-10,9],[-10,6],[-14,-4],[-12,-24],[2,-3],[-16,-11],[-27,-6],[-6,-3],[-4,-6],[-5,-2],[-7,4],[-2,0],[0,3],[0,4],[0,4],[1,2],[2,5],[9,14],[1,18],[0,28],[-6,28],[-9,22],[-4,18],[5,5],[13,2],[12,2],[6,-6],[3,-7],[2,0],[-2,12],[4,4],[9,4],[4,1],[0,3],[4,9],[5,7],[8,10],[10,15],[1,1],[1,2],[1,1],[0,4],[-2,8],[-4,11],[-1,13],[2,9],[-7,-1],[-3,9],[-1,15],[-3,14],[12,42],[7,18],[10,13],[6,2],[11,1],[6,4],[10,13],[4,7],[3,9],[-8,-9],[-12,-15],[-24,-5],[-4,-5],[-5,-17],[-13,-32],[-16,-51],[-8,-17],[-3,-8],[-2,-9],[1,-11],[0,-20],[1,-14],[-4,-14],[-14,-8],[-16,-4],[-18,3],[-5,-7],[-5,-10],[-11,11],[-12,9],[-7,2],[-11,-3],[-6,3],[0,12],[2,10],[-4,26],[0,12],[2,6],[3,7],[7,11],[9,48],[-1,36],[-3,22],[3,14],[1,16],[11,32],[3,16],[6,22],[1,22],[2,19],[-4,29],[-3,12],[-10,17],[-2,6],[3,2],[12,-6],[21,22],[5,8],[6,1],[3,-7],[3,-1],[3,5],[-2,8],[-4,7],[4,12],[6,12],[3,7],[5,5],[8,9],[4,11],[3,9],[5,17],[1,10],[-1,12],[4,16],[2,22],[21,96],[35,167],[4,9],[4,-8],[4,-4],[11,0],[0,4],[-4,7],[-4,5],[-5,3],[-13,3],[-5,5],[-3,8],[0,13],[3,17],[9,27],[18,118],[4,37],[6,27],[3,35],[1,2],[1,1],[1,-12],[-1,-4],[6,15],[4,5],[4,-4],[2,0],[0,4],[-1,2],[-1,3],[-1,4],[1,3],[3,3],[1,-2],[1,-3],[2,-2],[2,2],[3,4],[3,10],[-4,5],[-3,7],[1,6],[5,3],[7,1],[5,3],[4,5],[4,7],[-4,-1],[-7,-6],[-6,-2],[-1,0],[-2,-1],[-6,5],[-2,5],[-3,16],[11,24],[-3,13],[0,-10],[-2,-8],[-2,-2],[-1,8],[-4,-13],[-3,-15],[-2,-16],[-1,-15],[-1,-10],[-3,-14],[-4,-12],[-3,-7],[26,202],[0,22],[-3,39],[0,21],[5,8],[0,4],[-10,4],[-6,16],[-3,21],[-5,16],[1,8],[-1,7],[-1,6],[-2,8],[1,18],[-2,6],[-2,1],[-1,6],[-1,6],[-4,11],[-1,9],[0,7],[-1,17],[3,20],[-3,13],[-1,13],[-1,8],[-1,10],[-3,18],[-1,13],[-2,10],[-1,11],[-2,10],[0,14],[1,7],[6,4],[17,4],[5,4],[4,5],[4,6],[-31,-15],[-6,-1],[-4,1],[-5,5],[-5,19],[0,17],[2,26],[-2,17],[1,7],[2,5],[20,26],[9,17],[4,22]],[[45420,69712],[-10,28],[-2,5],[-2,6],[-1,6],[-1,7],[5,-8],[5,-13],[4,-16],[2,-15]],[[45336,69827],[-5,-17],[-11,-8],[-14,-2],[-22,4],[-46,34],[-11,12],[-9,15],[-8,17],[-2,10],[-1,11],[2,8],[4,4],[2,3],[7,17],[2,2],[2,1],[2,-1],[3,-2],[3,-4],[7,-14],[3,-2],[1,-1],[6,-3],[7,-8],[8,-1],[7,2],[6,7],[4,3],[6,3],[11,2],[4,-3],[9,-11],[3,-3],[14,-20],[4,-3],[3,-1],[10,-1],[5,-2],[5,-5],[3,3],[3,2],[3,-2],[2,-3],[-5,-2],[-9,-9],[-4,-1],[-3,-5],[-9,-20],[-2,-6]],[[45461,70047],[-4,-8],[-3,-6],[-4,-1],[-6,4],[0,4],[3,1],[3,2],[1,4],[4,19],[5,9],[7,3],[6,-5],[2,4],[0,-17],[1,-7],[3,-5],[-10,4],[-4,0],[-4,-5]],[[47790,72370],[14,-3],[6,3],[6,12],[1,-2],[0,-2],[1,-4],[-2,-2],[0,-2],[-5,-6],[-7,-3],[-8,1],[-6,4],[0,4]],[[43037,72394],[5,-6],[5,-11],[3,-13],[2,-12],[-4,-9],[-10,1],[-16,10],[-9,-4],[-5,0],[-2,6],[-2,7],[-3,7],[-2,6],[3,6],[6,9],[10,4],[11,1],[8,-2]],[[43000,72894],[11,-8],[7,-17],[0,-22],[-6,-19],[-11,-8],[-37,-8],[-12,-6],[-14,-2],[-12,1],[-7,-1],[-4,-4],[-8,8],[-7,5],[-16,7],[-24,2],[-34,43],[-10,22],[5,31],[22,3],[7,-3],[10,-14],[1,-5],[0,-7],[1,-5],[2,-4],[2,-2],[35,-8],[4,2],[8,8],[4,2],[2,-1],[6,-8],[3,-3],[4,4],[29,15],[39,2]],[[42191,73238],[13,-2],[5,-6],[2,-14],[-4,-6],[-9,0],[-21,5],[-7,-1],[-5,-3],[-10,-14],[-4,3],[-2,8],[-3,6],[-7,3],[-39,2],[-6,-5],[-18,29],[-7,18],[0,26],[9,13],[9,4],[20,-1],[11,-3],[28,-29],[9,-7],[1,-1],[3,-2],[5,-8],[3,-2],[6,-2],[18,-11]],[[42052,73328],[4,-27],[-2,-1],[-9,-6],[-2,-3],[2,-4],[0,-2],[1,-1],[3,-1],[-4,-4],[-3,0],[-7,4],[-3,0],[-9,-4],[-3,0],[-6,5],[-8,18],[-5,9],[-13,13],[0,5],[9,3],[8,0],[4,1],[3,3],[3,5],[4,11],[3,4],[24,-19],[6,-9]],[[42252,73332],[21,-13],[10,-9],[5,-11],[-4,-3],[-6,-1],[-11,0],[-4,3],[-9,8],[-9,3],[-4,3],[-5,4],[-4,5],[-4,4],[-7,-2],[-5,5],[-4,-5],[-2,3],[-5,10],[-4,4],[-29,16],[-5,6],[-5,16],[-2,2],[-2,0],[-1,-2],[-1,0],[-3,2],[-1,2],[1,3],[0,2],[-3,1],[-2,2],[-13,19],[-1,4],[0,8],[5,-3],[9,-11],[4,-2],[5,-1],[55,-36],[40,-36]],[[42494,73385],[-2,-3],[-6,-4],[-2,-2],[0,-5],[1,-10],[-1,-5],[-1,-2],[-8,-6],[-7,4],[-19,0],[-6,8],[-4,-6],[-3,-1],[-7,7],[-7,3],[-7,1],[-6,4],[-7,11],[-6,14],[-3,12],[-2,18],[6,14],[10,9],[10,4],[42,-5],[8,-6],[12,-11],[9,-13],[1,-12],[-1,-6],[2,-4],[3,-3],[1,-5]],[[42226,73575],[-5,0],[-6,2],[-6,4],[-4,7],[-3,9],[0,9],[5,18],[2,3],[3,1],[3,-1],[3,-3],[2,4],[4,-10],[9,-13],[5,-8],[2,-10],[-4,-7],[-5,-4],[-5,-1]],[[41331,73867],[2,-4],[4,-3],[3,-1],[4,4],[5,-11],[3,-10],[0,-25],[-2,-14],[-5,-16],[-6,-10],[-4,5],[-6,-4],[-6,-1],[-5,1],[-4,4],[-3,8],[-2,12],[0,10],[3,6],[-2,10],[2,9],[2,9],[2,11],[1,10],[5,6],[6,2],[5,0],[-2,-8]],[[41356,73997],[10,-3],[0,-17],[-5,-18],[-9,-3],[0,4],[-5,18],[-1,3],[1,6],[2,6],[4,4],[3,0]],[[45547,68256],[2,-1],[0,-2],[-1,1],[-1,2]],[[45593,68326],[2,-3],[0,-4],[-1,-4],[-1,1],[-2,1],[-1,1],[0,1],[0,1],[0,1],[3,5]],[[47488,73488],[2,1],[0,-3],[-2,-9],[-4,-10],[-5,-9],[-2,2],[3,10],[2,9],[4,5],[1,3],[1,1]],[[64975,72585],[-4,74],[-2,24],[-5,23],[-2,12],[-1,26],[-10,79],[-5,170],[1,9],[3,20],[3,29],[7,45],[-1,16],[3,19],[1,25],[-2,44],[0,4],[-3,9],[-1,5],[-1,6],[0,12],[-4,36],[-1,13],[3,48],[3,24],[4,19],[13,35],[5,21],[-3,18],[4,5],[3,11],[1,12],[3,10],[3,8],[3,12],[2,8],[-3,-1],[-1,12],[-3,6],[-10,6],[0,1],[-1,5],[-1,2],[-1,1],[-3,2],[-1,1],[-2,4],[-1,4],[-1,6],[0,6],[-3,12],[-4,4],[-10,1],[-7,3],[-3,0],[-3,-2],[-1,-3],[-1,-2],[-3,5],[-3,9],[-5,28],[-2,6],[-3,-4],[1,-10],[3,-9],[2,-6],[0,-3],[-5,4],[-4,9],[-1,11],[2,16],[-2,10],[0,6],[2,4],[8,8],[-8,2],[0,12],[6,27],[-6,-5],[-8,-10],[-4,-9],[4,-4],[3,-66],[-4,9],[-7,15],[-3,9],[-1,11],[0,12],[-2,9],[-6,1],[1,7],[1,9],[0,9],[-3,3],[-2,-4],[-4,-18],[-3,-6],[-1,13],[2,18],[5,34],[-8,-13],[5,21],[1,8],[-2,-2],[-6,-2],[4,12],[-1,5],[-4,-3],[-4,-10],[-2,4],[-3,-3],[-12,-1],[-6,-8],[-2,1],[0,11],[-2,0],[-2,-6],[-3,-6],[-4,-4],[-4,0],[1,4],[3,12],[-2,0],[-4,0],[-2,0],[-1,-1],[-2,-3],[-1,0],[-1,1],[-2,6],[-1,1],[-3,-2],[-8,-6],[-4,0],[0,4],[2,4],[-1,3],[-2,1],[-4,0],[-3,1],[-4,5],[-3,2],[-6,0],[-13,-7],[-6,-5],[10,-11],[4,-1],[-6,-14],[-1,-7],[-1,-10],[0,-10],[4,-24],[-1,-15],[-3,-7],[-3,1],[-6,84],[-2,8],[-12,29],[-1,10],[3,12],[2,5],[8,13],[2,5],[1,8],[1,7],[6,7],[3,11],[10,47],[8,25],[9,17],[11,-4],[-6,-5],[-4,-6],[-8,-19],[-2,-5],[-2,-17],[-1,-2],[-6,-10],[2,-15],[10,-2],[31,10],[17,-2],[6,-3],[3,-7],[2,-9],[3,-9],[4,-4],[5,-3],[12,-1],[4,-4],[3,0],[1,6],[0,6],[-1,4],[-2,3],[-3,1],[4,15],[3,-2],[4,-9],[5,-8],[5,0],[8,13],[6,3],[2,-1],[6,-6],[3,-1],[3,6],[-1,6],[-3,5],[-3,4],[-6,4],[-12,5],[-5,7],[5,2],[2,5],[1,6],[-3,9],[-4,6],[-3,2],[-14,-3],[-1,4],[0,11],[-1,7],[-2,7],[-3,6],[-3,3],[1,-20],[0,-9],[-1,0],[-10,27],[-8,11],[-7,3],[1,-3],[3,-13],[-2,2],[-4,4],[-2,2],[0,-12],[5,-11],[1,-10],[-10,11],[-1,21],[5,46],[-3,-3],[-4,-1],[-3,1],[-3,3],[0,4],[9,7],[14,34],[9,16],[-1,3],[-2,6],[-1,2],[3,3],[2,1],[6,1],[4,2],[0,4],[-2,4],[-1,2],[3,7],[4,6],[4,8],[2,11],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-4,8],[-5,2],[-10,-2],[-4,3],[-7,10],[-4,4],[-5,2],[-5,0],[-4,-2],[-5,-5],[-12,-21],[-4,-3],[-2,-1],[-4,-6],[-2,-1],[-2,1],[-5,6],[-2,1],[-3,2],[-19,24],[-4,-3],[-4,-7],[-4,-4],[-21,-4],[2,6],[2,4],[2,3],[2,3],[-19,-10],[-10,-2],[-9,4],[-5,18],[-3,6],[-5,-8],[0,-6],[2,-8],[4,-12],[1,-7],[2,-33],[2,-5],[8,-18],[3,-3],[10,-33],[9,-13],[2,-3],[0,-4],[-13,12],[4,-5],[8,-16],[-2,-4],[-9,15],[-4,8],[-8,31],[-4,8],[-9,7],[-4,10],[-2,12],[-1,23],[-3,7],[-26,35],[-10,16],[-4,13],[2,26],[2,14],[2,9],[2,10],[-3,11],[-7,17],[3,5],[-1,6],[-6,10],[-5,22],[1,23],[9,102],[4,20],[6,19],[17,38],[9,26],[1,21],[-3,4],[-7,3],[-1,4],[0,5],[2,11],[0,2],[-1,2],[4,3],[4,3],[2,0],[1,5],[-1,7],[-1,5],[-1,3],[7,45],[10,45],[2,20],[-3,41],[-1,24],[3,-4],[7,-6],[3,-4],[1,-7],[-1,-7],[-1,-7],[0,-6],[3,-11],[12,-25],[2,-10],[3,-23],[3,-8],[9,-10],[0,-2],[7,0],[4,1],[2,3],[-4,-8],[-7,-4],[-4,-5],[1,-9],[2,-4],[5,-6],[2,-5],[1,-5],[0,-7],[0,-5],[4,-3],[12,-1],[5,0],[6,5],[13,21],[4,3],[-4,-16],[-1,-9],[3,-3],[20,4],[3,3],[0,6],[0,8],[1,5],[4,10],[3,3],[4,-2],[0,-4],[-2,-11],[0,-5],[2,-12],[4,-9],[6,-6],[6,-2],[2,-2],[4,-5],[3,-1],[3,1],[2,2],[4,5],[10,7],[4,7],[1,12],[0,26],[1,9],[7,23],[1,1],[4,0],[2,-1],[3,-2],[2,-4],[1,-3],[1,-2],[4,-3],[1,-1],[0,-4],[-1,-4],[-1,-3],[0,-1],[2,-13],[1,-4],[3,-4],[-3,-8],[-1,-4],[-2,-4],[3,-10],[4,-24],[5,-11],[2,-2],[3,-1],[2,-2],[2,-6],[-1,-5],[-4,-12],[-1,-6],[5,-14],[11,0],[12,4],[16,-4],[5,7],[4,9],[12,11],[3,1],[3,-1],[7,-7],[7,-1],[6,3],[5,4],[9,4],[2,3],[1,5],[1,5],[-2,0],[-7,6],[-3,4],[16,-1],[9,2],[8,7],[17,0],[1,-2],[-2,-4],[-2,-14],[-1,-3],[1,-2],[9,-6],[41,-2],[-5,6],[-6,3],[4,7],[11,5],[4,7],[-28,0],[-3,1],[-2,5],[-1,13],[-1,10],[-5,17],[-2,15],[-3,10],[-1,5],[1,4],[1,2],[1,3],[-1,5],[-1,1],[-3,-1],[-3,1],[0,7],[1,3],[2,0],[2,0],[2,1],[7,14],[4,4],[5,2],[8,-6],[17,-22],[5,0],[8,-8],[1,-8],[-4,-10],[-5,-11],[10,-4],[32,10],[10,6],[4,1],[5,14],[12,10],[2,3],[11,29],[2,9],[1,10],[-1,10],[-2,8],[-7,14],[-9,24],[-3,3],[0,3],[6,-1],[7,-5],[12,-14],[-2,5],[-6,8],[-2,4],[-3,6],[-1,3],[0,3],[0,4],[2,4],[1,1],[1,-1],[-5,10],[-7,3],[-8,2],[-7,5],[0,18],[-10,17],[-55,69],[-25,18],[-5,5],[-10,17],[-13,12],[-6,7],[-1,3],[-3,10],[-6,14],[-2,4],[-10,3],[-6,6],[-4,7],[-4,9],[-5,19],[-3,21],[-1,23],[-1,51],[-1,22],[-3,19],[-5,19],[-13,37],[-2,10],[-1,5],[-3,2],[-4,1],[-2,2],[-1,8],[1,5],[1,5],[1,7],[0,4],[-1,11],[-1,7],[4,14],[0,7],[0,10],[-1,11],[-2,12],[-2,9],[-9,14],[-13,13],[-14,7],[-12,-6],[-12,11],[-85,-23],[-16,-14],[-6,-2],[-21,2],[-16,13],[-12,-8],[-10,-15],[-7,-12],[-27,-36],[-7,-17],[-32,-113],[-5,-11],[-4,-6],[-2,-6],[-2,-14],[-2,-15],[1,-9],[4,1],[8,18],[5,5],[13,-2],[7,-5],[3,-9],[0,-8],[-4,-12],[-1,-7],[0,-6],[1,-11],[1,-7],[-1,-13],[-19,-76],[-1,-12],[-4,-17],[0,-6],[0,-6],[4,-14],[2,-25],[2,-37],[2,-10],[15,-50],[1,-10],[-1,-12],[-6,-18],[0,-13],[-2,0],[-2,6],[-4,6],[-2,4],[0,7],[2,18],[0,14],[-1,12],[-2,12],[-3,11],[-1,3],[-3,6],[-1,3],[-1,7],[1,11],[0,6],[-6,35],[-1,5],[-3,6],[-5,22],[-4,5],[-4,1],[-2,4],[-1,6],[-1,8],[0,5],[-2,3],[-5,8],[-3,3],[-7,2],[-3,3],[-9,20],[-5,6],[-5,4],[-4,6],[-1,15],[1,1],[6,17],[1,5],[0,6],[0,13],[0,5],[2,6],[0,4],[-1,3],[-1,2],[-1,2],[-1,1],[-2,11],[-2,5],[-2,4],[-2,1],[-4,-1],[-2,2],[-3,6],[-1,3],[-5,3],[-4,9],[-2,1],[-7,4],[-4,8]],[[64730,73602],[3,12],[5,8],[6,2],[2,-4],[0,-2],[0,-3],[-8,-9],[-1,-24],[3,-47],[4,-50],[6,-48],[-1,-8],[0,-3],[1,-5],[-2,0],[-1,14],[-8,51],[-4,16],[-2,9],[-1,6],[1,16],[-1,15],[-2,28],[-1,13],[1,13]],[[64852,73912],[3,5],[3,3],[2,-4],[2,-3],[1,0],[1,3],[1,-13],[1,-3],[5,-14],[-1,-7],[-3,-7],[-5,-5],[-4,0],[-1,5],[-3,19],[-2,7],[-2,8],[2,6]],[[59708,67852],[3,5],[2,54],[2,15],[6,25],[0,9],[-6,11],[-4,0],[0,2],[0,1],[0,1],[-2,0]],[[53144,51752],[-83,0],[-83,0],[-83,0],[-4,0],[-61,0],[-18,0],[-37,0],[-6,2],[-17,19],[-5,2],[-5,4],[-7,10],[-7,13],[-3,9],[-1,12],[1,12],[0,11],[-3,10]],[[52722,51856],[3,7],[0,4],[2,10],[1,110],[8,80],[5,24],[1,10],[1,75],[3,27],[4,25],[6,17],[6,15],[3,16],[1,19],[-11,86],[-5,14],[0,4],[3,0],[1,1],[4,3],[0,4],[-5,-1],[-3,2],[-2,3],[-2,4],[-2,6],[-7,29],[-21,55],[-11,21],[-27,40],[6,2],[7,8],[23,37],[6,5],[7,0],[-9,6],[-8,-7],[-7,-10],[-7,-5],[-19,-4],[-4,4],[-1,7],[1,8],[5,5],[-8,42],[-14,39],[-3,15],[-2,14],[7,-15],[2,-1],[1,-3],[2,-13],[2,-5],[3,-3],[5,-1],[11,0],[-3,3],[-9,5],[-3,4],[-1,2],[-1,3],[-2,6],[-2,12],[1,15],[3,14],[5,9],[11,-20],[5,-3],[3,15],[9,-10],[4,-6],[2,-8],[2,6],[0,6],[-1,6],[-2,6],[3,0],[-13,10],[-6,8],[-2,11],[4,8],[7,5],[8,3],[6,0],[0,2],[-1,2],[-1,4],[1,1],[1,0],[0,3],[-28,-10],[-8,2],[-5,10],[2,15],[4,14],[6,6],[4,9],[12,38],[8,9],[1,3],[2,6],[-1,4],[-4,-4],[-6,-8],[-2,-6],[-2,-7],[-2,0],[0,12],[-5,-8],[-9,-29],[-5,-12],[-6,-6],[-8,-5],[-5,2],[0,14],[-4,-8],[-5,6],[-5,11],[-3,13],[2,14],[-4,9],[-4,-3],[-7,-18],[0,-2],[1,-3],[3,-2],[2,-1],[3,-4],[0,-3],[3,-14],[3,-7],[5,-8],[2,-10],[-3,-11],[-4,3],[-2,1],[-2,2],[-4,6],[-4,13],[-1,2],[-1,2],[-1,2],[0,5],[-4,0],[-2,-3],[-2,-4],[0,-7],[7,-9],[2,-5],[1,-7],[-1,-5],[-1,-6],[0,-8],[0,-5],[5,-5],[2,-4],[-4,-4],[-4,-2],[-10,-2],[-5,1],[-10,5],[-4,2],[-8,9],[-3,20],[1,22],[5,14],[0,3],[-7,-3],[-3,-10],[-2,-10],[-9,-19],[-8,3],[-3,-1],[0,11],[1,8],[-1,7],[-4,7],[-3,1],[-5,0],[-5,-1],[-3,-2],[-4,1],[-15,20],[-24,24],[-4,5],[0,17],[5,35],[1,17],[-9,17],[-6,20],[-5,23],[-7,84],[2,15],[7,26],[3,14],[-7,-14],[-3,-5],[-2,9],[1,7],[1,7],[1,8],[-1,8],[-2,5],[-6,4],[-2,10],[-2,7],[-3,5],[-2,2],[-1,-8],[8,-27],[2,-14],[-1,-9],[-3,-2],[-2,4],[-1,9],[-13,23],[-1,-8],[1,-6],[1,-5],[2,-2],[-3,-14],[-1,-2],[-2,1],[-6,7],[-1,2],[-2,5],[-5,4],[-4,5],[-2,11],[-3,21],[-13,38],[-1,24],[-5,-15],[2,-17],[4,-18],[7,-55],[3,-5],[3,-3],[3,-5],[1,-16],[-5,-7],[-35,-5],[-3,3],[1,7],[4,8],[3,6],[-4,3],[-3,0],[-2,-3],[-2,-12],[-2,-3],[-3,1],[-3,2],[-5,9],[-1,14],[1,10],[5,-1],[1,8],[6,21],[-4,-6],[-3,-1],[-3,6],[-1,9],[0,8],[2,8],[5,12],[8,12],[2,4],[0,8],[-1,7],[-1,7],[2,7],[2,-4],[-1,23],[0,12],[4,5],[1,1]],[[53692,51749],[0,15],[1,18],[-1,9],[-2,7],[-5,8],[-4,6],[-3,3],[-2,-1],[-4,-4],[-2,0],[-2,2],[-4,7],[-8,3],[-8,1],[-3,-2],[-3,-5],[-6,-12],[-2,-2],[-12,-3],[-8,7],[-4,2],[-4,-4],[-3,-2],[-5,2],[-8,6],[-3,-5],[-3,-3],[-4,1],[-4,3],[-2,-7],[-6,3],[-6,6],[-5,2],[-3,-3],[-3,-5],[-4,-5],[-6,-3],[-37,12],[-7,5],[-5,8],[-6,-4],[-5,4],[-15,10],[-11,2],[-15,-8],[-5,3],[-9,11],[-4,3],[-3,-1],[-5,-6],[-3,-2],[-6,-1],[-10,-8],[-6,-2],[-12,1],[-11,4],[-5,0],[-17,-3],[-21,3],[-21,-4],[-24,2],[-10,-3],[-4,1],[-14,10],[-6,10],[-3,3],[-3,1],[-4,-2],[-7,-5],[-74,-6],[-1,-5],[1,-8],[1,-8],[-2,-8],[-2,-6],[-2,-7],[0,-10],[0,-7],[-1,-8],[-1,-6],[-2,-7]],[[53087,48138],[-6,8],[-6,9],[-14,30],[-4,38],[-3,11],[-2,10],[-1,12],[0,14],[-6,14],[-9,14],[-34,62],[-45,65],[-2,27],[0,9],[2,10],[1,14],[-2,11],[-2,11],[-4,7],[-6,8],[-8,13],[-5,5],[-1,11],[-11,25],[-3,9],[-5,12],[-8,17],[-29,53],[-36,58],[-14,25],[-36,56],[-17,30],[-21,34],[-49,130],[-6,23],[5,-8],[8,-18],[6,-7],[6,-1],[4,5],[4,9],[5,12],[-1,-9],[-1,-6],[-1,-7],[1,-7],[1,1],[2,2],[0,2],[1,3],[0,-11],[1,-11],[2,-6],[4,4],[10,-8],[2,-2],[5,-14],[1,-13],[1,0],[1,6],[1,3],[2,-1],[2,-3],[0,2],[0,1],[1,0],[1,1],[1,-22],[1,-7],[2,4],[2,3],[3,1],[2,0],[-1,-8],[2,-2],[2,2],[3,4],[2,5],[2,11],[2,5],[4,3],[6,2],[6,0],[3,-1],[7,1],[3,3],[1,7],[-5,7],[-2,2],[0,11],[-5,6],[-7,5],[-3,10],[-2,0],[2,-10],[3,-31],[-4,2],[-2,4],[-1,5],[-1,2],[-3,2],[-3,11],[-2,3],[-2,1],[-3,2],[-2,1],[-1,-1],[0,-4],[0,-4],[0,-3],[-2,-4],[-2,-6],[-1,-6],[-1,-5],[-4,4],[-4,5],[1,6],[-1,12],[0,6],[3,3],[3,0],[3,0],[1,5],[-3,6],[-7,5],[-8,3],[-5,-1],[-6,27],[-1,5],[-3,4],[-1,0],[-1,-6],[-1,-1],[-4,-4],[0,-1],[-7,3],[-7,-11],[-6,-13],[-7,-3],[-2,3],[-3,5],[-2,7],[0,7],[0,2],[3,6],[1,2],[2,1],[-2,4],[-3,3],[-1,0],[-1,5],[1,5],[0,4],[-2,2],[-2,1],[-2,0],[-2,-2],[0,-4],[3,-14],[1,-9],[-2,-8],[-5,4],[-11,30],[-5,7],[3,-9],[6,-16],[2,-8],[-6,9],[-7,15],[-7,18],[-3,15],[0,3],[-2,14],[-1,54],[-2,8],[-28,58],[-7,9],[-9,21],[-4,7],[1,2],[1,6],[-6,4],[-3,10],[-4,23],[-12,24],[-2,6],[-1,1],[-3,5],[-2,6],[0,2],[-3,3],[0,6],[3,4],[1,-2],[2,-11],[5,-9],[6,-4],[6,1],[-1,-2],[0,-1],[-1,-1],[3,-3],[2,3],[3,12],[1,0],[2,-12],[-1,-1],[-2,-2],[0,-3],[0,-4],[0,-3],[2,2],[2,5],[-1,2],[15,0],[7,-4],[4,-10],[-1,-12],[-6,-11],[4,-7],[1,-3],[2,-2],[6,-1],[2,-1],[0,-3],[0,-10],[1,-5],[5,-8],[0,-3],[2,-7],[1,-5],[1,5],[1,3],[4,3],[1,2],[-1,10],[-2,12],[-2,9],[-3,-1],[-3,8],[-7,10],[-1,7],[3,10],[3,4],[-1,4],[-9,33],[-5,11],[-3,-5],[-4,5],[-1,3],[-1,-6],[0,-5],[1,-14],[-6,9],[-7,28],[-4,4],[-3,-4],[-1,-7],[-1,-6],[0,-3],[-3,-2],[-1,-5],[-1,-6],[0,-8],[-2,5],[-2,3],[-3,1],[-3,0],[4,12],[-1,6],[-6,10],[-6,-8],[-5,3],[-2,11],[-1,18],[1,7],[1,10],[0,5],[0,25],[0,6],[-3,13],[-1,7],[1,19],[-1,6],[-4,24],[-7,19],[-15,34],[-35,103],[-3,11],[-2,14],[-3,13],[-1,13],[4,-16],[2,-18],[4,-10],[5,-13],[5,1],[4,-4],[3,-7],[3,-19],[7,-14],[1,-12],[2,-6],[9,-23],[3,-5],[2,-4],[13,-23],[3,-2],[8,-6],[3,-73],[1,-9],[4,3],[0,6],[-2,8],[1,4],[2,3],[2,-3],[2,-5],[0,-5],[4,10],[7,8],[7,5],[7,2],[-1,-10],[-1,-10],[2,-8],[4,-5],[2,20],[0,10],[-2,7],[9,2],[23,-6],[8,4],[-12,9],[-4,7],[-3,12],[-3,22],[0,13],[1,10],[-2,1],[-6,7],[-1,0],[-3,0],[-2,-2],[-1,-3],[2,-9],[-1,-6],[-1,-3],[-1,-2],[-7,-20],[-6,-10],[-8,-5],[-9,-1],[-2,-1],[-1,-1],[-2,0],[-2,2],[-2,4],[0,10],[-2,8],[0,6],[0,11],[-1,3],[-3,1],[-3,1],[-1,1],[0,9],[2,6],[4,4],[5,1],[2,3],[0,8],[-1,9],[-2,5],[0,3],[2,2],[7,1],[2,2],[2,5],[2,12],[4,17],[-1,10],[-5,21],[1,3],[1,3],[-1,3],[-3,3],[0,-12],[2,-31],[-1,-6],[-2,-6],[-3,-5],[-3,-1],[-2,2],[-2,8],[-2,2],[-5,-3],[-3,-9],[-2,-8],[-3,-4],[-13,-6],[-5,2],[-3,7],[-1,13],[1,11],[1,5],[-1,1],[-2,4],[-1,4],[-1,-1],[-2,-3],[-2,-2],[-1,-2],[-1,-2],[-4,1],[-4,5],[-10,16],[-4,3],[-3,4],[-3,10],[0,12],[2,11],[-1,2],[-1,2],[0,4],[5,8],[-1,14],[-5,14],[-5,9],[3,-18],[-1,-16],[-1,-6],[-2,1],[-1,6],[-2,37],[-5,26],[-27,75],[7,-14],[4,-5],[4,3],[-4,4],[2,8],[2,7],[2,4],[2,1],[-4,3],[-8,-12],[-5,3],[-1,10],[-2,14],[-2,10],[-3,-4],[-2,0],[-2,21],[-2,8],[-4,15],[-7,35],[-6,22],[-4,31],[-9,24],[-6,43],[4,13],[2,-5],[-3,-11],[3,-5],[9,-4],[-1,-5],[0,-4],[0,-3],[1,-4],[6,1],[4,-15],[3,-20],[1,-25],[2,-8],[2,-7],[4,-3],[2,-4],[1,-9],[1,-8],[5,-3],[-3,10],[1,10],[1,10],[1,12],[1,9],[4,0],[5,-2],[5,-1],[0,4],[-3,3],[-3,5],[-2,6],[0,7],[2,4],[3,-1],[7,-6],[3,-9],[2,-10],[0,-9],[3,-12],[10,-20],[3,-10],[0,-12],[-2,-21],[2,-8],[2,0],[1,11],[1,36],[1,11],[7,15],[1,10],[0,8],[0,4],[0,2],[2,5],[2,2],[4,3],[2,2],[0,6],[0,7],[0,5],[3,3],[4,-16],[0,14],[-4,9],[-2,10],[2,16],[17,31],[5,21],[25,58],[7,23],[4,25],[-1,76],[2,13],[7,26],[1,12],[0,7],[2,12],[0,8],[-1,5],[-3,15],[0,8],[1,7],[2,6],[2,6],[1,5],[0,5],[-2,5],[0,5],[-1,12],[-9,112],[-4,20],[1,5],[2,16],[0,3],[2,2],[8,16],[3,2],[3,-4],[3,-12],[1,-14],[-1,-12],[-3,-22],[1,-7],[1,-7],[0,-5],[-3,-1],[-1,-3],[-1,-6],[1,-7],[1,-5],[2,5],[1,5],[2,4],[3,2],[9,0],[2,-2],[1,-8],[7,-15],[3,-11],[1,-23],[2,-3],[2,-3],[2,0],[1,6],[-2,26],[1,10],[3,11],[13,-8],[4,-4],[1,-7],[3,-20],[1,-6],[2,4],[8,17],[2,4],[4,-1],[3,-3],[3,-12],[13,5],[10,-22],[9,-29],[9,-15],[-10,39],[-4,11],[-1,10],[6,5],[7,0],[4,-9],[4,5],[5,14],[3,6],[9,13],[4,3],[4,0],[9,-7],[4,-1],[4,0],[11,8],[0,4],[-14,0],[-5,3],[-5,10],[-5,-6],[-5,-6],[-5,-4],[-22,-2],[-3,-3],[-13,9],[-3,5],[-5,8],[-2,3],[-9,-1],[-3,3],[-13,21],[-10,13],[-4,8],[-1,12],[-2,0],[-2,-7],[-1,-2],[-4,1],[-2,-1],[-6,-6],[-2,-1],[-2,7],[-2,21],[-3,4],[-4,9],[-13,65],[-4,11],[-8,19],[-5,5],[-5,-1],[-4,1],[-4,9],[0,9],[1,32],[2,7],[6,2],[7,3],[3,2],[5,7],[3,3],[4,1],[2,-2],[3,-2],[4,-1],[2,1],[4,6],[5,4],[4,6],[5,4],[5,-1],[5,-9],[2,-14],[-1,-12],[-5,-6],[-12,6],[-6,-2],[-4,-12],[7,5],[8,-2],[6,-7],[2,-16],[3,2],[3,4],[1,7],[1,7],[3,-9],[1,-17],[-2,-17],[-2,-9],[2,-17],[3,-5],[4,-2],[-1,9],[0,12],[2,10],[2,5],[2,5],[3,26],[2,9],[-4,12],[-1,12],[1,29],[-3,70],[-10,56],[0,14],[-2,10],[-2,6],[-2,7],[2,12],[3,12],[4,6],[4,2],[5,0],[5,3],[3,7],[2,8],[2,6],[5,2],[16,-1],[5,-3],[4,-13],[2,-25],[3,-13],[2,10],[1,8]],[[52723,51061],[8,-2],[4,-3],[5,-7],[7,-18],[5,-8],[5,-4],[5,-2],[4,2],[3,7],[1,8],[0,18],[2,8],[5,2],[8,2],[31,0],[77,-1],[6,0],[83,0],[63,-1],[20,0],[83,-1],[0,156],[0,155],[-1,124],[0,31],[0,155],[0,48],[-3,22]],[[52499,50098],[10,-5],[2,-20],[-1,-25],[0,-19],[-5,-7],[-4,-4],[-3,1],[-5,6],[-2,8],[0,7],[0,8],[0,10],[-1,5],[-4,8],[-1,7],[0,6],[1,5],[3,9],[3,6],[6,8],[3,7],[1,-6],[0,-5],[-1,-4],[-2,-2],[0,-4]],[[52604,50949],[2,0],[-1,-1],[-1,1]],[[50663,57515],[-14,26],[-22,64],[-20,57],[-20,61],[-12,35],[-6,21],[1,17],[4,7],[16,7],[2,2],[2,6],[1,2],[1,0],[3,-4],[2,0],[16,3],[4,2],[2,6],[0,13],[0,3],[0,7],[0,2],[-1,5],[-3,8],[-2,4],[-2,9],[-1,8],[-3,36],[0,7],[-2,8],[-3,7],[-5,6],[-3,5],[-3,7],[-1,3],[-1,11],[-8,18],[-11,6],[-27,5],[-2,-3],[-5,-11],[-3,-4],[-2,1],[-2,2],[-3,-1],[-1,-3],[-2,-8],[-4,-14],[-3,-12],[-4,-10],[-4,-7],[-5,-1],[-35,6],[-29,6],[-9,5],[-8,9],[-19,33],[-15,27],[-23,40],[-7,13],[-21,36],[-16,29],[-16,28],[-8,9],[-20,3],[-8,10],[-3,9],[-1,11],[0,11],[0,38],[0,56],[0,50],[4,24],[6,-2],[22,-19],[15,-8],[6,-5],[2,1],[3,20],[1,7],[1,3],[5,-3],[5,-8],[5,-6],[8,6],[-5,13],[-5,6],[-4,3],[-12,3],[-5,3],[-30,29],[-9,14],[-6,18],[-1,27],[-11,25],[-15,19],[-13,8],[-11,-2],[-5,0],[-5,6],[-3,6],[-1,4],[1,3],[1,2],[-1,3],[0,5],[0,4],[-3,2],[-37,-3],[-7,5],[-4,15],[1,9],[3,13],[1,11],[-2,5],[-5,4],[-3,7],[-3,8],[-9,13],[-4,8],[-2,3],[-2,7],[-2,11],[-2,5],[-6,8],[-2,4],[0,6],[2,11],[0,5],[-3,7],[-5,5],[-4,7],[-2,10],[-1,11],[-3,5],[-3,4],[-3,6],[0,5],[2,10],[1,3],[-2,5],[-1,4],[-2,2],[-2,4],[-3,11],[-1,7],[1,7],[7,22],[1,7],[1,18],[1,5],[3,7],[0,5],[-1,4],[-11,33],[-40,76],[-4,7],[-8,28],[-2,30],[19,110],[-2,18],[-8,34],[0,17],[4,9],[3,7],[3,8],[-1,13]],[[50250,56980],[-36,-2],[-27,-1],[-17,-7],[-35,-26],[3,26],[-4,2],[1,2],[0,3],[0,2],[1,3],[0,2],[-1,1],[0,1],[-31,13],[-25,11],[-63,27],[-34,15],[-14,6],[-15,6]],[[49953,57064],[-37,17],[-1,-10],[1,-6],[1,-5],[-3,-9],[-3,-7],[-14,-21],[-5,12],[-5,9],[-6,0],[-5,-14],[-1,-9],[-1,-13],[-1,-6],[-4,-6],[-7,-7],[-3,-7],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-11,1],[-6,-1],[-4,-3],[-2,-10],[-2,-15],[-3,-13],[-5,-6],[-13,27],[1,4],[2,4],[1,5],[-2,4],[-2,1],[-2,-2],[-1,1],[-1,6],[-2,1],[-31,1],[-2,4],[-1,1],[-2,-1],[-2,-4],[-6,-2],[-6,-15],[-5,-1],[2,8],[-3,0],[-1,2],[-2,8],[-2,3],[-3,1],[-38,6],[-8,-2],[-2,-9],[-34,0],[-35,1],[-7,3],[-9,7],[-3,3],[-3,2],[-35,3],[-5,-3],[-2,-11],[-4,-4],[-43,-1],[-61,-1],[-62,-1],[-67,-2],[-54,-1],[-26,0],[-7,0],[0,6],[-24,1],[1,-4],[-1,-4],[2,-11],[3,-11],[1,-11],[-1,-13],[-4,-9],[-4,-7],[-4,-9],[-2,-13],[-3,-27],[-5,-16],[-1,-14],[-1,-5],[-3,-7],[-1,-3],[0,-6],[1,-3],[1,0],[2,-1],[1,-3],[0,-4],[-1,-3],[-1,-2],[-2,-10],[-3,-14],[-1,-6],[1,-11],[8,-31],[1,-6],[1,-12],[0,-6],[2,-4],[3,-8],[1,-2],[1,-12],[2,-7],[10,-19],[3,-3],[5,-2],[7,0],[1,-3],[-1,-5],[-3,-6],[-3,-2],[-4,-1],[-2,-2],[-2,-4],[-2,-5],[-2,-9],[-2,-12],[0,-12],[3,-10],[2,-2],[3,-1],[2,-1],[1,-4],[1,-7],[2,-1],[2,0],[3,-2],[2,-4],[2,-2],[1,-3],[0,-7],[-1,-8],[-2,-5],[-5,-10],[-4,-12],[0,-12],[3,-26],[0,-51],[1,-12],[7,-20],[1,-11],[0,-15],[-3,-27],[2,-15],[6,-22],[1,-6],[-2,-6],[-9,-23],[-5,-20],[-1,-12],[2,-12],[2,-6],[2,0],[1,0],[3,-2],[1,-5],[0,-6],[1,-5],[2,-3],[1,-2],[-3,-6],[-3,-9],[-1,-10],[0,-9],[0,-10],[2,-6],[9,-19],[11,-27]],[[50449,54150],[-52,-19],[-44,-29],[-20,-18],[-3,-1],[-1,-1]],[[50329,54082],[0,21],[-3,10],[-23,5],[-4,4],[-3,8],[-3,12],[-2,5],[-2,2],[-3,2],[-2,4],[-4,13],[-7,47],[-21,0],[-6,4],[-4,5],[-9,24],[-7,9],[-14,14],[-5,13],[-5,14],[-3,14],[-2,15],[1,12],[0,4],[1,7],[2,6],[1,5],[-4,8],[-3,1],[-7,-1],[-3,1],[-2,9],[-4,6],[-4,7],[-1,13],[2,30],[0,9],[-3,10],[-4,8],[-5,6],[-4,2],[-2,5],[-8,32],[-4,5],[-2,4],[-1,5],[2,13],[6,21],[0,10],[-3,12],[-8,13],[-3,9],[4,3],[4,1],[12,6],[3,4],[6,21],[0,25],[-1,27],[1,23],[6,36],[3,27],[4,22],[0,13],[-5,39],[-1,5],[-11,-8],[-5,-2],[-5,1],[-9,17],[-4,26],[-2,29],[1,34],[1,8],[2,6],[3,6],[3,3],[5,3],[4,4],[1,8],[0,16],[1,18],[4,12],[8,-3],[-1,12],[0,31],[-2,34],[0,35],[0,3],[-3,39],[0,22],[0,12],[-2,22],[-1,28],[-2,14],[2,4],[2,4],[1,8],[0,8],[-2,5],[-2,4],[-1,6],[0,8],[1,2],[2,1],[3,2],[9,18],[5,6],[12,12],[4,6],[2,9],[-1,14],[-1,2],[-3,2],[-1,2],[0,2],[0,6],[-1,9],[0,7],[0,6],[-11,19],[-3,22],[-5,22],[-19,18],[-7,11],[-6,13],[-5,12],[-11,16],[-11,32],[-8,38],[-2,21],[-1,8],[2,6],[4,1],[3,-3],[3,-13],[3,7],[2,10],[-2,2],[3,2],[3,-1],[2,-2],[4,-1],[3,3],[1,8],[0,9],[2,8],[6,18],[-4,29],[-13,49],[-4,18],[3,18],[5,18],[1,20],[0,9],[2,5],[6,12],[4,12],[0,10],[-4,21],[0,12],[3,5],[3,4],[3,6],[1,8],[0,17],[3,30],[-2,14],[-5,9],[-8,6],[0,1],[0,1],[1,7],[1,6],[0,6],[-2,5],[-15,11],[-5,2],[-11,-1],[-7,-3],[-4,-3],[-1,-5],[-1,-12],[-1,-5],[-2,-4],[-13,-9],[-5,-2],[-5,1],[-1,8],[2,6],[-2,10],[0,8],[11,5],[5,4],[3,5],[1,6],[-2,7],[-4,0],[-7,-3],[-3,3],[-3,4],[-2,4],[0,1],[-1,4],[2,17],[0,4],[14,-4],[7,1],[5,7],[4,-5],[5,-2],[5,3],[1,8],[-2,12],[-5,2],[-12,-6],[-8,2],[-5,12],[0,18],[4,17],[7,-17],[5,-5],[5,1],[3,7],[1,11],[-1,10],[-1,9],[-2,6],[-2,5],[-2,6],[0,11],[6,46],[0,7],[-1,24],[0,8],[3,9],[3,8],[2,4],[0,4],[-2,12],[-3,14],[0,4],[0,6],[1,3],[0,4],[-1,6],[5,2],[4,-2],[3,2],[0,2],[1,10],[-1,12],[-2,4],[-3,1],[-4,5],[-2,15],[1,42],[0,20],[2,8],[1,10],[1,9],[7,11],[-6,9],[-3,3],[-12,-4],[-4,0],[3,12],[-3,9],[-5,9],[-3,11],[0,5],[1,6],[0,7],[-3,6],[-2,1],[-3,-2],[-3,-2],[-3,-2],[-2,1],[-8,6],[0,-2],[-1,-4],[-1,-3],[-3,-1],[0,2],[-14,56],[-5,10],[-15,19],[-2,6],[-3,13],[-2,6],[-3,3],[-9,6],[-2,4],[-2,3],[-2,3],[-6,2],[-3,2],[-4,3],[-2,4],[-3,12],[0,13],[2,15],[1,8],[1,25],[3,10],[4,10],[5,9],[3,4],[0,7],[-1,11],[-1,6],[6,60],[2,5],[2,5],[2,3],[2,4],[1,8],[1,21],[-1,18],[-4,14],[-9,7],[-6,0],[-9,-5],[-5,-1],[-5,3],[-6,6],[-5,9],[-2,10]],[[50329,54082],[-2,-1],[-13,-14],[-9,-16],[-14,-32],[-4,-11],[-6,-29],[-2,-11],[0,-13],[-3,-27],[-2,-11],[-9,-18],[-12,-8],[-53,-13],[-99,16],[-12,-2],[-7,-3],[-3,-3],[-1,-3],[-2,-2],[-7,-1],[-2,-1],[-5,-8],[-19,-11],[-4,-6],[-8,-15],[-10,-7],[-4,-9],[-3,-10],[-5,-10],[-22,-16],[-1,-2],[-4,-7],[-2,-3],[-2,-2],[-4,-1],[-60,-41],[-13,-3],[-1,-2],[-4,-3],[-20,-37],[-2,-6],[-2,-10],[-3,-8],[-10,-13],[-20,-10],[-3,0],[-2,-4],[-5,-8],[-4,-3],[-3,9],[-14,-22],[-4,-3],[-16,-28],[-6,-16],[-5,-6],[-20,-6],[-7,0],[-4,8],[-2,-5],[-2,-2],[-7,-1],[-7,-4],[-3,0],[-1,6],[-1,5],[-3,-1],[-3,-6],[-5,-1],[-4,-3],[-29,-26],[-3,-9],[-3,-5],[-5,-7],[-11,-11],[-6,-2],[-18,-1],[-3,-2],[-6,-8],[-3,-3],[-3,0],[-6,1],[-3,-1],[-5,-3],[-10,-11],[-19,-6],[-7,-5],[-4,-7],[-4,4],[-5,1],[-5,-3],[-4,-6],[0,-5],[2,-8],[-1,-5],[-1,-4],[-2,-3],[-19,-20],[-3,-5],[-8,-19],[-1,-4],[1,-4],[0,-3],[-3,-1],[-2,0],[-19,-12],[-22,-20],[-4,-9],[-7,-20],[-4,-8],[-4,-4],[-19,-5],[-4,-3],[-7,-1],[-2,1],[-2,4],[-1,6],[1,6],[-1,6],[-4,2],[-2,1],[-4,2],[-3,1],[0,3],[-3,6],[-11,20],[-6,5],[-3,3],[-1,6],[-1,4],[-1,5],[-1,3],[-29,24],[-47,21],[-46,33],[-36,6],[-40,15],[-39,25],[-4,2]],[[49134,53495],[2,1],[3,2],[3,1],[20,0],[6,-4],[1,-4],[4,-10],[1,-2],[4,1],[6,5],[3,2],[-1,16],[8,7],[10,3],[6,6]],[[45827,56965],[-11,-16],[-7,-8],[-3,1],[1,8],[2,4],[2,3],[3,3],[4,14],[1,3],[0,4],[-2,0],[-1,-6],[-1,-4],[-2,-4],[-3,-2],[-3,-1],[-4,2],[-2,3],[-1,6],[5,43],[2,7],[3,4],[2,7],[1,9],[2,7],[1,2],[4,-1],[1,1],[0,2],[0,8],[0,2],[12,2],[-1,5],[-1,4],[-2,3],[-2,2],[4,9],[2,11],[0,10],[-4,7],[-3,-16],[-4,-11],[-5,-7],[-7,-3],[1,-9],[-1,-6],[-3,-1],[-3,4],[0,-3],[-1,-2],[-1,-3],[0,-4],[-1,2],[-3,2],[0,-11],[-1,-6],[-3,-3],[-4,-6],[-3,-9],[-4,-17],[-8,-20],[-3,-6],[-3,-3],[-4,3],[-4,8],[-3,9],[0,6],[3,5],[8,9],[3,4],[1,7],[2,26],[-3,50],[3,14],[-6,-2],[-1,-8],[1,-12],[1,-10],[0,-9],[0,-14],[-2,-10],[-7,6],[-10,-1],[-3,2],[-2,3],[-2,2],[-1,1],[-6,-2],[-4,1],[-1,7],[-1,7],[-2,4],[-3,2],[-3,1],[-4,6],[-1,15],[0,28],[1,6],[0,4],[-2,2],[-1,0],[-1,1],[0,2],[-1,3],[1,7],[1,7],[1,7],[1,5],[7,20],[3,5],[2,-1],[5,-5],[4,-2],[2,2],[4,8],[3,2],[3,3],[3,8],[3,10],[1,7],[-15,-26],[-5,-6],[-5,5],[-1,7],[2,18],[1,6],[4,8],[2,6],[-2,3],[-4,-3],[-4,-7],[-2,-10],[-1,-10],[-2,-7],[-4,-5],[-4,-3],[-4,-4],[-2,-9],[-2,-8],[-2,-5],[-6,-2],[-3,-3],[-3,-3],[-3,1],[-1,13],[1,6],[4,22],[1,4],[1,4],[8,25],[-5,0],[-2,4],[1,7],[0,9],[3,-3],[2,0],[3,2],[2,5],[0,-4],[2,-8],[1,8],[2,6],[2,2],[2,-8],[2,0],[0,6],[-1,5],[-1,5],[-2,4],[2,1],[0,1],[0,2],[3,-2],[3,-1],[4,-1],[4,-2],[2,2],[-2,9],[1,4],[1,8],[2,0],[2,-7],[4,1],[3,0],[0,-11],[5,4],[0,9],[-3,9],[-4,7],[-1,-2],[-1,0],[-4,-2],[0,4],[7,4],[2,4],[3,4],[2,-7],[4,-9],[4,-4],[5,4],[-3,1],[0,4],[0,5],[-1,6],[-2,3],[-2,0],[-2,1],[-1,8],[3,-2],[6,-3],[2,-3],[4,4],[-1,-4],[0,-8],[-1,-4],[7,-10],[2,1],[2,9],[-1,5],[-4,10],[0,3],[1,4],[1,5],[3,4],[2,2],[1,-2],[2,-3],[3,-2],[3,-2],[2,-2],[1,-5],[0,-6],[0,-7],[5,4],[0,2],[-1,4],[0,2],[4,0],[3,-3],[2,-6],[2,-7],[-11,-4],[-4,0],[1,-3],[1,-3],[1,-1],[2,-1],[-1,-10],[2,-5],[2,1],[3,15],[3,1],[3,-1],[2,1],[9,1],[2,1],[3,3],[2,4],[2,5],[1,8],[-4,-2],[-2,-3],[-3,-2],[-9,-2],[-2,1],[-1,6],[0,3],[2,2],[2,1],[2,0],[-1,6],[-1,3],[2,8],[-4,1],[-2,-3],[-2,-6],[0,-9],[-4,9],[-2,3],[-4,0],[0,5],[2,2],[4,10],[0,4],[-2,8],[-2,0],[-3,-20],[-4,-2],[-4,5],[-4,1],[3,9],[4,4],[3,4],[2,11],[-3,-5],[-2,-3],[-3,0],[-2,4],[-2,0],[0,-6],[-1,-4],[-2,-2],[-3,0],[1,-9],[-2,-2],[-3,3],[-1,8],[-4,-13],[-3,3],[2,11],[6,7],[-2,4],[-1,4],[0,6],[2,6],[1,0],[2,-2],[1,0],[3,-2],[-1,9],[-3,5],[-5,6],[-2,0],[-1,-9],[-2,-8],[-1,-8],[0,-11],[-3,-3],[-2,-7],[-3,-2],[-1,2],[0,5],[3,9],[-3,3],[-1,8],[2,17],[-2,-3],[-2,-5],[-1,-7],[0,-7],[-1,0],[-6,0],[-3,-2],[4,-4],[0,-4],[3,-5],[3,-4],[2,-5],[-1,-8],[-3,-2],[-2,2],[-2,6],[-1,-5],[-1,-5],[-1,-5],[-1,-6],[-2,23],[-2,8],[-1,-1],[-2,-1],[2,-8],[-4,0],[1,-16],[1,-7],[3,-6],[-1,-8],[-5,7],[-3,8],[-6,18],[-1,-11],[2,-10],[3,-9],[2,-11],[-2,1],[-4,3],[-1,-8],[-2,0],[-2,6],[-1,10],[-1,0],[-2,-5],[0,-6],[-1,-7],[0,-6],[-2,2],[-1,2],[0,-12],[-3,4],[-1,5],[-1,6],[-2,7],[-1,7],[1,4],[3,5],[1,9],[3,9],[3,11],[0,14],[-9,-18],[-4,-5],[-5,7],[1,5],[0,12],[0,7],[-3,1],[-2,-3],[-2,-3],[-2,-3],[0,-2],[-2,-5],[-3,-4],[-1,5],[-1,10],[-1,9],[0,10],[5,16],[2,13],[2,6],[10,23],[4,4],[1,1],[1,3],[0,6],[1,6],[1,5],[4,7],[2,0],[0,-3],[1,-2],[1,-1],[2,-2],[1,5],[1,3],[2,-1],[1,1],[7,0],[11,-6],[6,-2],[34,0],[2,2],[4,9],[2,2],[7,4],[5,8],[3,9],[5,7],[6,0],[1,-9],[-1,-12],[-3,-9],[-2,-12],[0,-14],[2,-15],[3,-10],[5,-5],[7,-3],[6,-4],[3,-11],[3,-6],[6,-3],[7,2],[3,10],[-8,-6],[-5,10],[-3,13],[-4,7],[-8,2],[-3,2],[-3,4],[-2,4],[-1,4],[-2,6],[-2,8],[3,7],[3,7],[2,7],[5,29],[0,3],[2,2],[4,0],[3,2],[0,4],[-2,4],[-2,2],[0,2],[-3,2],[-3,1],[-3,-3],[-2,-1],[-6,6],[-3,1],[-4,-2],[-9,-11],[-4,-3],[-3,-4],[-8,-18],[-4,-6],[-6,-2],[-5,2],[-11,8],[-11,3],[-4,4],[-3,7],[-6,7],[-6,3],[-6,0],[-7,-4],[-2,-3],[-4,-8],[-2,-1],[-6,0],[-3,0],[-2,-2],[-9,-18],[-2,-3],[-4,-3],[-1,-2],[-9,-25],[-2,-4],[-5,-3],[-13,-16],[-5,-4],[-1,-1],[-18,-7],[-3,-3],[-2,-5],[-13,-15],[-6,-3],[6,48],[5,20],[7,1],[1,-2],[2,-2],[3,0],[3,0],[0,4],[-5,1],[-7,12],[-5,-1],[-5,-7],[-1,-10],[0,-11],[-9,-37],[-3,-3],[-6,3],[-1,7],[2,22],[-5,-5],[-1,-9],[0,-12],[-2,-11],[-1,-2],[-6,-4],[-3,-4],[-3,-5],[-2,-1],[-1,3],[-1,5],[0,12],[1,12],[5,21],[4,33],[2,8],[1,2],[2,3],[2,2],[1,1],[1,2],[2,14],[8,23],[2,5],[4,5],[6,5],[6,3],[5,0],[1,-4],[1,-5],[2,-5],[2,-3],[6,0],[2,-2],[3,-2],[1,8],[2,9],[1,7],[-2,5],[-2,-3],[-3,-5],[-3,-5],[-6,0],[-1,3],[-2,7],[-2,3],[-3,1],[-1,0],[-1,-1],[-11,-2],[-3,3],[-2,7],[-2,0],[-2,-10],[-5,-6],[-7,-3],[-5,-2],[0,-4],[1,-2],[1,-2],[-1,0],[-1,0],[0,-1],[0,-3],[-2,3],[-2,3],[0,-3],[1,-8],[-1,-8],[-2,-7],[-4,-8],[-4,-3],[-20,-1],[-3,-2],[-6,-5],[-2,-1],[-1,-2],[-2,-5],[-2,-4],[-4,-2],[-2,2],[-3,5],[-4,10],[-7,-3],[-9,3],[-7,7],[-4,7],[-5,26],[-3,3],[-7,3],[-4,2],[-2,6],[-2,7],[-1,9],[-1,18],[-3,15],[0,8],[7,35],[3,7],[4,6],[3,4],[4,3],[0,-7],[1,-5],[2,-1],[3,5],[0,5],[-3,9],[0,6],[4,10],[4,6],[5,4],[21,25],[4,8],[3,6],[3,10],[2,4],[3,3],[6,3],[3,2],[-8,1],[-5,-5],[-4,-8],[-3,-10],[-6,-8],[-14,-6],[-6,-4],[-10,-13],[-2,-5],[-10,-23],[-5,5],[0,11],[2,13],[0,12],[-1,-9],[-4,-12],[-1,-21],[-3,-9],[-4,-3],[-6,5],[-2,-4],[0,3],[-4,5],[0,-8],[-2,-3],[-4,-1],[-4,0],[-1,-2],[-1,-4],[-2,-3],[-1,3],[0,2],[-1,2],[-2,2],[-5,2],[-3,4],[-2,6],[0,6],[-2,3],[-6,16],[-1,4],[-2,2],[-5,10],[-3,4],[-1,-1],[-5,-3],[-2,0],[-1,3],[-3,9],[-1,4],[-11,17],[-3,3],[-4,0],[-3,-2],[-3,-4],[-3,-2],[-2,5]],[[45570,57103],[5,-9],[5,-11],[2,-15],[2,-25],[2,-6],[2,-4],[1,-5],[-1,-8],[-4,-4],[-3,0],[-3,1],[-2,-3],[-3,1],[-8,2],[0,-1],[-2,-2],[-2,-1],[-1,2],[0,5],[0,3],[1,2],[2,0],[3,2],[8,8],[2,3],[-2,6],[-3,2],[-3,-3],[0,-9],[-2,3],[-2,5],[3,9],[1,7],[0,7],[0,9],[-1,13],[0,8],[3,8]],[[45562,57078],[1,-17],[-1,-8],[-3,-9],[-5,-15],[-4,-4],[-1,7],[-1,9],[-2,7],[0,8],[3,10],[-6,0],[-3,6],[-1,9],[3,9],[4,7],[14,10],[1,-5],[1,-8],[0,-16]],[[45542,57054],[-4,0],[0,-4],[2,-12],[-1,-11],[-1,-8],[2,-6],[-6,-8],[-5,0],[-5,1],[-6,-5],[-1,5],[0,5],[0,5],[1,6],[-1,0],[-4,-13],[2,-8],[-4,2],[-1,2],[-1,4],[-6,-2],[-7,10],[-6,15],[-4,14],[4,8],[4,7],[5,3],[4,-2],[-4,-3],[-1,-1],[0,-2],[0,-2],[1,-2],[1,-2],[2,5],[3,3],[3,4],[2,20],[2,4],[3,2],[2,7],[1,-4],[4,-5],[1,15],[4,6],[6,-1],[5,-8],[1,-4],[0,-4],[-2,-4],[-1,-6],[0,-8],[2,-6],[4,-12]],[[45595,57163],[7,0],[1,-6],[-2,-22],[-1,-24],[-2,-8],[-7,0],[-7,10],[0,18],[4,19],[7,13]],[[45650,57163],[-1,-10],[2,-20],[-1,-11],[-1,-2],[-2,7],[-3,8],[-4,0],[0,-4],[2,0],[0,-4],[-2,-8],[-1,-4],[-2,-4],[-2,5],[-1,1],[-3,-2],[2,-7],[0,-8],[-1,-9],[-1,-9],[-1,3],[0,3],[-1,2],[-2,0],[0,-1],[-1,0],[-1,1],[-2,0],[-2,-7],[-3,4],[-2,8],[0,8],[2,3],[3,5],[1,4],[-4,4],[0,3],[5,13],[1,3],[-1,7],[0,2],[2,1],[2,-1],[1,0],[1,2],[3,12],[7,4],[7,0],[4,-2]],[[45507,57115],[-18,-3],[-4,1],[-7,7],[-1,1],[0,7],[1,6],[2,4],[3,1],[-1,10],[4,9],[5,6],[5,-1],[2,5],[2,-7],[3,-1],[4,1],[4,-1],[1,-5],[1,-7],[0,-8],[0,-5],[-3,-3],[-3,-3],[-1,-6],[1,-8]],[[45648,57277],[1,-1],[0,-2],[1,-1],[2,0],[0,-3],[-1,-1],[-1,-4],[2,-5],[-2,-5],[-6,-10],[-1,5],[-1,3],[-2,0],[-3,-7],[-4,0],[-4,4],[-2,7],[2,5],[2,1],[2,-2],[2,0],[2,4],[1,5],[1,6],[1,5],[2,-4],[2,2],[4,6],[1,-2],[1,-2],[-2,-4]],[[45484,57249],[-6,0],[-3,1],[-4,3],[4,4],[5,6],[4,7],[2,9],[3,6],[7,4],[8,2],[5,-2],[1,-6],[-1,-5],[-8,-19],[-1,-2],[-1,-3],[-1,-3],[-1,-4],[-1,-2],[-3,0],[-9,4]],[[45479,57277],[-2,-1],[-3,0],[-3,-3],[-1,-1],[-1,-2],[-1,-1],[-2,2],[-3,9],[-1,1],[-1,0],[-15,0],[-2,-4],[-2,-3],[-3,-1],[0,4],[2,4],[-2,8],[0,1],[2,3],[-3,4],[-1,0],[10,11],[11,1],[11,3],[8,18],[1,-1],[0,-1],[1,-2],[2,0],[2,0],[2,2],[1,2],[1,-2],[1,-2],[0,-4],[-1,-11],[-2,-9],[-5,-13],[-1,-5],[0,-3],[0,-4]],[[45549,57287],[1,10],[2,13],[3,11],[3,5],[4,4],[6,13],[4,-1],[0,-9],[2,-6],[3,-1],[1,8],[3,-7],[-1,-16],[3,-5],[-3,-12],[-1,-15],[1,-14],[3,-12],[-5,-4],[-7,-9],[-6,-3],[-3,12],[-2,0],[0,-3],[-1,-3],[0,-3],[-1,3],[-2,4],[-1,2],[-2,-7],[-2,-4],[-3,-4],[-3,-1],[-2,7],[-10,15],[-1,6],[10,12],[6,14],[1,0]],[[45701,57358],[0,-8],[-3,-6],[-1,-8],[2,-6],[3,-6],[0,-5],[-5,-1],[-4,1],[-2,3],[-3,0],[0,-2],[-6,-10],[-1,-1],[-6,1],[0,-4],[6,-5],[-2,-9],[-3,-6],[-3,7],[-3,-1],[-4,0],[-3,2],[-1,1],[-2,-2],[-2,4],[-1,6],[3,3],[4,4],[3,9],[3,7],[7,0],[0,9],[3,6],[3,6],[3,7],[5,-3],[4,3],[3,4],[3,0]],[[45509,57500],[5,4],[5,-1],[10,-3],[4,1],[4,3],[8,9],[-1,2],[0,1],[1,1],[4,0],[3,0],[5,-1],[2,-5],[0,-1],[-1,-16],[-2,-7],[-3,-7],[-2,-8],[-2,-23],[-2,-9],[-3,-9],[-3,4],[-4,0],[-3,-3],[-2,-1],[-4,5],[-7,22],[-3,3],[-3,0],[-3,1],[-1,8],[0,16],[-1,8],[-1,6]],[[48517,71873],[-1,-7],[0,-3],[0,-8],[-3,5],[-2,13]],[[29246,77119],[5,-1],[28,0],[27,1],[28,0],[28,0],[27,1],[28,0],[28,0],[28,0],[27,1],[28,0],[28,0],[27,1],[28,0],[13,0],[15,0],[27,1],[28,0],[28,0],[28,0],[27,1],[28,0],[28,0],[27,1],[28,0],[28,0],[28,0],[27,1],[28,0],[28,0],[27,1],[28,0],[28,0],[27,0],[0,14],[0,10],[2,8],[12,26],[1,6],[2,11],[1,7],[8,21],[2,11],[-5,7],[-7,6],[3,4],[12,4],[4,6],[8,16],[5,6],[6,4],[5,-2],[23,-22],[7,-3],[7,-2],[5,4],[9,20],[4,9],[3,1],[0,1],[6,1],[2,2],[5,8],[3,7],[3,5],[6,2],[7,-2],[5,-7],[12,-51],[4,-7],[5,7],[1,6],[0,11],[1,5],[2,4],[5,7],[2,5],[1,11],[-1,26],[1,12],[2,10],[3,8],[5,4],[7,0],[5,-5],[10,-14],[6,-6],[6,1],[6,4],[3,7],[-2,11],[-5,7],[-11,11],[-5,8],[-2,12],[0,10],[12,38],[27,47],[5,7],[16,11],[9,11],[3,2],[6,0],[3,1],[6,7],[3,9],[1,10],[0,13],[-1,6],[-2,4],[-1,3],[1,7],[1,3],[6,9],[21,25],[9,14],[5,19],[2,15],[-2,5],[-5,1],[-6,6],[-4,8],[0,10],[3,21],[1,2],[2,4],[1,2],[0,4],[-1,2],[-1,2],[-1,3],[-2,3],[-1,5],[4,5],[10,11],[4,8],[1,12],[-1,13],[-4,12],[-6,5],[1,12],[8,23],[5,22],[3,8],[6,2],[1,6],[1,13],[2,13],[6,6],[4,2],[22,28],[3,15],[3,39],[5,59],[3,30],[4,26],[5,10],[25,53],[25,53],[25,53],[25,54],[25,53],[26,53],[25,53],[25,53],[4,8],[4,3],[4,1],[43,-16],[4,-8],[0,-18],[-3,-35],[0,-20],[0,-3],[2,-13],[5,-12],[37,-35],[5,1],[35,27],[12,5],[14,-1],[7,1],[5,6],[5,9],[6,7],[13,10],[6,3],[7,2],[7,-1],[9,-9],[3,1],[4,3],[7,2],[0,4],[0,5],[1,7],[9,18],[14,6],[14,-5],[14,-11],[4,-5],[7,-16],[4,-3],[8,-5],[4,-4],[17,-24],[13,-13],[8,-15],[3,-7],[1,-8],[2,-5],[12,-15],[8,-19],[4,-5],[12,-10],[1,-4],[1,-23],[1,-80],[0,-79],[1,-80],[1,-80],[0,-79],[1,-80],[1,-79],[1,-80],[0,-6],[2,-4],[2,-4],[3,-5],[0,-5],[-3,-9],[-5,-9],[-3,-8],[1,-10],[5,-11],[1,-7],[-2,-8],[-4,-9],[-3,-11],[-2,-9],[1,-32],[2,-7],[4,-5],[7,-7],[4,-1],[2,3],[1,4],[2,1],[3,-4],[2,-6],[2,-6],[4,-6],[8,-10],[15,-10],[15,-6],[13,-1],[8,2],[8,-1],[5,-8],[2,-17],[-1,-21],[-4,-6],[-7,-9],[-7,-9],[3,-22],[14,-40],[-1,-22],[-7,-19],[-3,-10],[-1,-11],[1,-10],[12,-18],[10,-25],[10,-16],[10,-8],[10,10],[1,5],[0,5],[1,5],[2,4],[4,2],[3,-2],[7,-6],[3,-2],[9,-6]],[[31340,77225],[-5,1],[-3,-1],[-2,-4],[2,-8],[1,-1],[6,1],[2,-2],[1,-3],[0,-4],[2,-6],[2,-8],[0,-2],[2,0],[2,-3],[3,-5],[4,-9],[4,-11],[-3,-9],[2,-9],[4,-7],[3,-3],[2,-4],[5,-19],[3,-6],[-3,-7],[-1,-9],[-2,-8],[-6,-4],[-3,5],[-3,7],[-3,2],[-3,-14],[4,-6],[0,-6],[-2,-6],[-5,-2],[-3,3],[-10,12],[-3,1],[-2,-8],[4,-8],[5,-8],[2,-7],[4,-30],[1,6],[1,18],[0,4],[3,1],[5,-10],[4,1],[-2,5],[3,3],[0,3],[-2,6],[-1,3],[5,3],[4,-10],[2,-16],[0,-13],[6,7],[1,12],[-5,26],[4,-2],[3,-6],[6,-16],[1,-1],[4,1],[1,-1],[0,-2],[0,-3],[0,-2],[3,-15],[1,-2],[-2,-6],[-10,-18],[-3,-5],[-3,0],[-6,1],[-3,-1],[0,-2],[-2,-10],[-1,-4],[-3,5],[-2,-11],[-3,-8],[-15,-27],[-3,-2],[-5,-2],[-2,-4],[1,-2],[1,-5],[-8,0],[-2,1],[-5,5],[0,1],[-3,1],[-2,-2],[0,-5],[3,-10],[-6,1],[-4,5],[-4,6],[-5,4],[0,5],[4,10],[-1,11],[-5,5],[-8,-6],[4,-4],[-4,-4],[-3,0],[-3,3],[-3,5],[1,-10],[4,-7],[1,-7],[-3,-12],[5,-6],[-1,-3],[-3,-1],[-1,2],[-4,-8],[-2,-3],[-1,-6],[-4,11],[-1,15],[-2,12],[-6,3],[1,-10],[0,-9],[0,-8],[4,-6],[-5,-3],[-5,-1],[-5,1],[-4,3],[2,9],[-2,5],[-3,1],[-3,-6],[-1,0],[-2,13],[-4,-1],[-11,-17],[5,1],[2,-5],[0,-18],[-1,-5],[-1,-5],[0,-5],[1,-5],[1,-4],[-3,-2],[-3,-1],[-2,-1],[-2,-2],[-2,-1],[-3,0],[-2,1],[-3,2],[0,2],[0,3],[0,4],[0,5],[-1,5],[-2,3],[-3,-1],[-2,-3],[-4,-8],[-9,-28],[-4,1],[-3,4],[-2,7],[-1,10],[3,29],[-1,5],[-3,-4],[-9,-28],[1,-3],[-1,-5],[-1,2],[-3,6],[1,7],[3,10],[2,9],[-1,9],[-2,-1],[-3,-6],[-1,-8],[-3,5],[-4,0],[-2,-4],[-2,-15],[-4,-3],[-3,-1],[-1,-2],[0,-7],[6,-13],[1,-7],[-1,-8],[-3,-2],[-4,2],[-3,2],[1,-11],[-4,-27],[-1,-15],[-5,9],[-1,15],[2,17],[4,12],[-4,-3],[-3,-8],[-2,-10],[-1,-9],[1,-11],[-1,-5],[-3,3],[-1,3],[-2,2],[-1,3],[0,5],[-1,39],[-3,-1],[-1,-3],[-1,-5],[0,-6],[-1,-6],[-3,0],[-5,4],[-3,-2],[3,-6],[9,-8],[0,-3],[3,-16],[1,-2],[0,-4],[-1,-5],[-1,-4],[-2,-3],[-3,0],[-1,4],[0,3],[-2,1],[-2,-2],[0,-2],[0,-3],[-2,-5],[-8,-21],[-3,-7],[-3,5],[-1,7],[0,8],[2,8],[-4,-2],[-2,-2],[-2,10],[-3,17],[-1,15],[1,14],[-1,9],[-8,4],[-1,2],[0,3],[0,3],[-2,1],[-2,-3],[-1,-3],[0,-3],[0,-4],[0,-3],[1,-4],[0,-4],[-2,-1],[-5,0],[-1,2],[-1,4],[0,17],[-1,13],[-2,3],[-5,-14],[0,-9],[0,-8],[-1,-4],[-9,16],[-1,7],[0,9],[-5,0],[-5,5],[-4,0],[-1,-11],[9,-6],[3,-8],[-5,-12],[2,-2],[0,-2],[1,-2],[1,-2],[-12,-1],[-6,3],[-5,6],[-2,-12],[-7,-13],[2,-8],[-8,-3],[-4,0],[-1,7],[1,32],[-2,9],[-5,4],[-8,0],[5,-18],[1,-8],[-1,-4],[-1,-2],[0,-3],[1,-3],[1,-3],[1,-1],[1,-2],[0,-5],[-2,-5],[-2,-7],[-3,-4],[-1,2],[0,14],[-1,7],[-1,6],[-5,-11],[-6,-5],[-7,0],[-7,3],[3,-6],[4,-13],[2,-7],[0,-6],[-4,-15],[-1,-7],[1,-8],[3,-2],[3,-1],[3,-3],[1,-9],[-1,-6],[-2,-2],[-4,5],[2,-7],[2,-4],[2,-3],[3,-3],[-8,-5],[-25,35],[-9,1],[-5,-3],[-6,7],[-8,14],[-6,3],[-10,-11],[-8,-1],[2,22],[2,11],[4,4],[3,-1],[3,-6],[2,-1],[3,3],[-1,6],[-1,7],[-2,4],[4,5],[3,5],[2,1],[5,-6],[3,-1],[2,4],[-5,13],[-1,8],[-10,-9],[-3,-3],[-5,-13],[-3,-6],[-3,-1],[-3,6],[1,10],[2,9],[1,7],[2,2],[3,3],[1,3],[1,3],[1,9],[0,4],[9,30],[-1,11],[-10,4],[-4,0],[-2,-1],[-1,-15],[-6,-33],[2,-1],[4,-3],[-5,-7],[-6,-4],[-3,1],[2,10],[-4,2],[-5,-4],[-7,-12],[-4,-4],[-12,-6],[-6,-6],[1,-5],[3,-5],[-1,-7],[1,-6],[7,-20],[2,-10],[-2,-9],[-5,-6],[-6,-4],[-4,-3],[-6,-28],[-4,-9],[-5,-28],[-4,-16],[-3,-8],[-3,-5],[0,-4],[2,-9],[-2,-10],[1,-7],[9,2],[-3,-13],[-3,-9],[-4,-5],[-8,-2],[-2,-6],[-1,-11],[-3,-8],[-8,6],[-1,-7],[-1,-3],[-2,-1],[-2,2],[-2,-7],[-2,-6],[1,-7],[3,-4],[-10,-10],[-3,-2],[-6,-3],[-1,2],[1,15],[8,21],[3,10],[-5,0],[-17,-34],[-3,-5],[-1,7],[3,16],[-3,3],[-4,-2],[-7,-6],[-5,0],[5,13],[2,8],[-2,3],[-5,1],[0,4],[5,9],[2,8],[-2,6],[-3,0],[-2,-9],[-2,-5],[-4,-3],[-3,-3],[2,-14],[-3,-5],[-5,-2],[-2,1],[-2,-7],[-2,-8],[-9,-52],[-4,-17],[-5,-10],[-1,13],[-2,8],[-2,8],[-1,8],[-2,0],[-1,-8],[-1,-9],[0,-20],[-4,9],[2,4],[-4,7],[0,6],[1,5],[1,6],[1,4],[1,7],[0,3],[0,4],[-3,4],[-1,5],[3,13],[8,24],[-1,10],[-3,-6],[-3,-8],[-4,-15],[-3,-9],[-2,-5],[1,-4],[0,-5],[0,-5],[-2,-5],[-1,-4],[1,-3],[1,-5],[-1,-4],[-1,-4],[3,-7],[1,-9],[1,-10],[-1,-10],[-4,-9],[-1,5],[1,20],[-4,-6],[-4,-1],[-5,4],[-4,7],[-4,6],[0,4],[6,14],[-2,5],[0,3],[1,3],[1,5],[2,-2],[3,-1],[2,-1],[-2,7],[-3,3],[-3,3],[-1,10],[0,7],[5,21],[2,3],[3,5],[1,5],[-4,1],[-4,-3],[-3,-7],[-26,-65],[-3,-8],[2,-4],[3,-3],[3,-3],[0,-8],[0,-9],[-4,-16],[3,4],[3,14],[3,3],[2,-4],[0,-9],[-7,-31],[-4,-10],[-4,1],[-2,16],[0,5],[1,2],[1,2],[0,1],[0,5],[-2,1],[-1,0],[-1,0],[-2,29],[-1,6],[-2,8],[-1,6],[0,8],[0,7],[0,7],[-1,6],[-1,12],[-1,11],[1,9],[0,10],[3,8],[3,5],[3,5],[1,5],[0,3],[-2,1],[-2,-2],[-2,-5],[-3,-3],[-5,-4],[-8,-16],[-5,-7],[-3,-7],[-2,-6],[0,-7],[3,-4],[5,0],[3,5],[3,5],[2,-3],[1,-5],[2,-16],[3,-43],[1,-21],[2,-21],[3,-10],[0,-6],[-2,-15],[-1,-3],[-3,-2],[-3,-5],[-3,-7],[-1,-7],[-3,7],[-1,18],[-3,4],[-1,5],[0,9],[0,14],[1,4],[2,2],[1,2],[0,6],[-1,6],[-4,5],[-1,6],[1,6],[1,3],[0,3],[-3,2],[-3,0],[-3,-1],[-2,-3],[-2,-4],[3,-3],[3,-4],[2,-7],[0,-11],[-2,-8],[-4,-7],[-3,-1],[-1,8],[-11,-24],[-2,-2],[-2,-1],[-2,-2],[-1,-10],[-1,-3],[-2,-2],[-2,0],[19,61],[-1,12],[-4,-5],[-4,-11],[-4,-14],[-2,-9],[-1,-10],[-3,-9],[-4,-6],[-5,-1],[5,16],[13,32],[3,17],[-6,-1],[-10,-12],[-3,1],[2,2],[3,5],[3,6],[1,7],[-4,-1],[-3,-3],[-3,-5],[-5,-11],[-3,-3],[-6,-6],[-4,-2],[-3,0],[-3,-2],[-14,-24],[-6,-6],[-8,-25],[-8,-9],[0,-7],[1,-9],[1,-5],[-3,-6],[-4,-2],[-8,0],[0,-4],[8,-2],[7,1],[6,-4],[3,-15],[0,-7],[-1,-18],[-1,-4],[-4,-1],[-7,-6],[-4,-1],[1,4],[1,4],[-5,-2],[-6,-14],[-4,-4],[-1,13],[-4,0],[-5,-6],[-4,-7],[-3,-13],[-1,-11],[1,-11],[2,-14],[5,6],[3,2],[3,1],[0,-4],[-4,-3],[-3,-5],[-6,-11],[0,-3],[-2,-8],[0,-3],[-2,-2],[-3,-1],[-3,-1],[-5,-8],[-4,-8],[-5,-7],[-7,-5],[-8,-1],[-3,-1],[-3,-5],[-9,-18],[-2,-1],[-3,-14],[-1,-15],[4,-12],[-4,-9],[-4,-11],[4,-4],[-4,-4],[-4,-6],[-5,-15],[-8,-31],[-3,-5],[-5,3],[-3,10],[-4,8],[-5,-1],[0,-3],[-3,-16],[0,-2],[-3,-15],[6,2],[6,1],[2,-3],[-2,-8],[-2,-8],[-1,-3],[-2,-9],[-15,-37],[-6,-21],[-2,-12],[-1,-10],[0,-4],[2,-21],[-1,-5],[-2,-1],[-13,1],[3,-6],[3,-2],[6,-5],[3,1],[0,-1],[1,-2],[2,-5],[-1,-7],[8,-38],[-2,-4],[-8,19],[-4,5],[2,-19],[5,-10],[16,-12],[-4,-3],[-2,-1],[-3,0],[5,-10],[15,-2],[1,-8],[5,-5],[1,5],[-1,16],[3,6],[3,4],[8,6],[-1,-9],[1,-4],[3,-2],[3,-1],[3,-2],[0,-4],[-1,-5],[1,-5],[0,-4],[-4,0],[-2,-3],[-1,-5],[-2,-4],[-3,-4],[-2,-1],[-5,1],[0,1],[-1,2],[-1,0],[-3,-3],[-3,-6],[-2,-5],[-2,-4],[-28,-11],[-14,-9],[-5,-6],[2,-4],[-2,-3],[-2,-3],[-1,-5],[0,-6],[3,3],[4,7],[3,3],[1,-6],[3,-5],[0,-4],[-2,-1],[-2,-1],[-2,-2],[-1,-3],[-6,-8],[-1,-2],[-3,-1],[-4,1],[-2,-3],[-1,-7],[2,-6],[4,-5],[4,-4],[-7,-3],[-8,14],[-5,-5],[-3,-8],[0,-5],[2,-9],[1,-13],[0,-6],[3,-5],[-4,0],[-5,10],[-4,2],[-3,-2],[1,-4],[2,-4],[3,-2],[-5,-2],[-5,6],[-4,3],[-3,-7],[3,-2],[3,-2],[2,-3],[1,-6],[-4,0],[-3,-4],[-2,-6],[3,-8],[3,-4],[3,-1],[6,7],[-1,-16],[4,-3],[6,1],[3,-8],[-1,-3],[-3,-5],[0,-3],[1,-1],[2,-2],[1,-1],[1,3],[2,-1],[4,3],[5,4],[3,4],[3,-8],[3,2],[2,7],[0,3],[-3,4],[-4,8],[-1,9],[0,7],[12,-20],[6,-9],[14,-6],[6,-6],[5,-8],[7,-14],[1,-4],[0,-17],[0,-2],[1,0],[4,-5],[5,-12],[7,-21],[6,-10],[-1,-10],[2,-9],[8,-22],[2,-1],[0,-2],[-2,-4],[-2,-4],[-3,0],[-3,1],[-3,3],[1,1],[3,2],[2,1],[-4,16],[-2,9],[-3,3],[-2,-4],[-3,-28],[-2,2],[-2,1],[-3,-1],[-6,-7],[16,-27],[9,-1],[5,-1],[11,1],[6,-8],[4,-21],[2,-22],[-2,-16],[-1,-15],[8,-16],[18,-20],[11,-6],[35,-6],[-4,-2],[-10,0],[-4,-4],[1,-4],[6,-2],[11,0],[9,5],[14,14],[25,11],[9,5],[9,7],[4,3],[6,15],[-1,18],[1,21],[-6,15],[3,0],[2,1],[5,3],[0,4],[-5,1],[-4,4],[-3,5],[-2,2],[-4,-4],[-2,-18],[-3,-7],[-1,21],[0,12],[-2,28],[-1,10],[-4,15],[-11,12],[-8,3],[-6,-8],[-1,-7],[4,0],[2,0],[0,-6],[-5,-6],[-4,5],[-6,15],[-2,4],[-2,1],[-2,1],[0,4],[3,5],[2,2],[3,3],[7,1],[7,-2],[6,-1],[8,-5],[10,-9],[8,-11],[10,-24],[9,-27],[11,-57],[5,-11],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-4,5],[-3,2],[-2,-3],[-1,-17],[-1,-8],[6,7],[4,-1],[3,-8],[0,-31],[-2,-39],[-11,4],[-44,-12],[-13,0],[-9,-8],[-4,-1],[-2,-2],[-3,-4],[-4,-12],[-3,-3],[1,6],[3,15],[-4,-1],[-8,-6],[-4,-1],[-10,2],[-3,-2],[-5,-6],[-3,-2],[-3,11],[-4,2],[-3,-5],[-8,-24],[-6,-11],[-7,-6],[-8,-2],[-9,-1],[-8,-3],[-18,-19],[-7,6],[6,11],[3,17],[0,45],[-1,10],[-1,8],[2,5],[3,5],[3,6],[-2,6],[3,4],[1,0],[-2,7],[-3,0],[-2,-4],[-1,-7],[-2,0],[-8,11],[-6,4],[-3,-1],[-1,-19],[1,-7],[2,-8],[-7,1],[-3,-6],[-2,-10],[-5,-10],[-3,9],[-3,-1],[-3,-5],[0,-3],[1,-2],[-5,-4],[-5,-4],[-3,0],[2,-15],[-1,-7],[-3,0],[-1,3],[-2,11],[-2,4],[-1,3],[-7,8],[-1,-15],[-4,-10],[-3,-11],[2,-17],[-6,-9],[-3,-3],[-4,0],[0,2],[1,2],[-13,-15],[-7,-3],[-8,6],[6,4],[1,7],[-1,9],[-4,8],[0,-12],[-3,-3],[-10,3],[2,-10],[1,-3],[-6,-6],[-18,-26],[-4,14],[-1,6],[2,7],[0,4],[-3,22],[-1,26],[0,14],[1,12],[4,18],[1,5],[15,42],[7,24],[-5,-2],[-3,-8],[-9,-27],[-1,-4],[-3,-3],[-6,4],[-4,2],[-2,-4],[0,-3],[-2,-6],[-1,-2],[0,-5],[0,-8],[0,-2],[-2,-1],[-4,-17],[-7,5],[-4,0],[-2,7],[0,8],[2,11],[2,10],[3,13],[0,4],[-2,3],[-3,1],[0,-2],[-1,-13],[-1,-5],[-3,2],[-5,5],[-5,7],[-3,8],[0,11],[-1,9],[-3,7],[-3,8],[-1,-7],[-1,-14],[1,-14],[1,-10],[2,-4],[2,-3],[2,-4],[1,-7],[0,-5],[-4,-12],[-1,-5],[-2,5],[-2,4],[-3,2],[-3,1],[-3,-2],[-3,-4],[-2,-4],[7,-6],[3,-9],[1,-12],[-1,-12],[-3,-11],[-4,-5],[-2,-6],[4,-12],[2,-9],[0,-31],[-1,-11],[-8,-37],[-4,-9],[-4,-7],[-1,-5],[-3,-3],[-3,1],[-6,5],[-7,-1],[-12,-4],[-43,-21],[-21,-9],[-12,-8],[-1,5],[6,6],[-2,6],[-3,4],[-3,4],[-4,1],[-18,-1],[-3,-1],[-17,-15],[-13,20],[-4,-4],[-1,-14],[-3,-6],[-7,0],[-9,6],[-7,1],[-2,-15],[-7,7],[-17,-16],[-9,6],[-2,3],[-4,3],[-2,2],[-1,5],[1,4],[1,4],[0,6],[-1,6],[-3,5],[-4,4],[-5,1],[3,-9],[5,-8],[2,-9],[-3,-14],[3,-4],[1,-1],[-5,-8],[-6,1],[-12,7],[-5,-1],[-6,-4],[-6,-6],[-3,-9],[-2,3],[-1,1],[-1,1],[0,3],[-2,0],[-3,-3],[-12,9],[-6,3],[-16,-6],[-3,-4],[-2,-4],[-2,-3],[-4,0],[-2,3],[-3,3],[-2,2],[-4,2],[-11,-2],[-3,-1],[-4,-6],[-2,1],[-4,-2],[-4,2],[-4,-8],[-10,0],[-1,6],[0,6],[-2,7],[-1,13],[-1,3],[-3,-4],[-2,-5],[-1,-3],[-10,-17],[-7,-16],[-3,-4],[-3,-9],[-7,-1],[-4,4],[-3,-4],[-6,-5],[-2,-3],[-3,-7],[-1,-3],[-1,-8],[1,-7],[-7,-1],[-6,7],[-3,3],[-1,3],[-4,3],[0,-8],[-7,-3],[-2,4],[-1,2],[-2,-2],[1,-8],[-1,-4],[-2,-4],[-3,-5],[-5,-4],[-2,-2],[-2,7],[-3,3],[-2,-7],[-2,-3],[-4,-1],[-4,-1],[-5,-4],[-4,-1],[-2,-2],[-3,-1],[-12,-14],[-4,-2],[-10,-11],[-3,-1],[-5,-6],[-5,-13],[-4,6],[-3,-1],[-5,-6],[-7,-3],[-2,5],[-2,0],[-2,-7],[-2,-1],[-4,-1],[-2,-3],[-3,-4],[1,-2],[-2,-6],[-5,-14],[-1,-2],[-6,0],[-4,-1],[-2,-4],[-12,-22],[-4,-9],[-2,-11],[-1,-2],[-3,0],[-4,-1],[-1,-5],[-1,-14],[4,-7],[2,-8],[-9,-2],[-10,1],[-7,-5],[-10,1],[-1,8],[0,4],[2,6],[3,13],[1,7],[-1,7],[-2,3],[6,26],[3,25],[4,24],[1,12],[0,49],[-1,22],[-3,21],[-3,9],[-3,6],[-9,13],[-5,13],[1,10],[2,10],[0,12],[-5,-7],[-3,-4],[-2,-5],[-1,-9],[1,-5],[1,-5],[2,-20],[2,-8],[3,-9],[6,-7],[4,-9],[0,-10],[-1,-26],[4,-51],[0,-15],[0,-11],[-3,-24],[-10,-43],[-11,-36],[-4,-10],[-2,-9],[-1,-9],[-1,-5],[-2,-9],[-1,-8],[-4,-8],[-7,-8],[-5,-10],[-2,-9],[-4,-3],[-5,-3],[-3,1],[1,7],[9,28],[-2,7],[-4,-8],[-2,-7],[-2,-9],[-3,-7],[-3,-1],[-5,-6],[-3,-2],[-5,-9],[-2,-25],[-1,-12],[-4,-3],[-4,-2],[-3,-7],[0,-9],[-1,-14],[-2,-5],[-3,-4],[3,-9],[4,-13],[10,-5],[4,-5],[2,-2],[15,4],[7,-1],[24,-14],[11,-11],[1,3],[-2,8],[0,11],[-6,24],[8,-7],[3,-12],[1,-12],[1,-20],[0,-40],[-2,-28],[-4,-31],[-5,-36],[-2,-15],[-2,-18],[-1,-19],[-2,-18],[-1,-12],[-2,-18],[-3,-26],[-1,-12],[-2,-18],[-1,-17],[-6,-58],[-2,4],[6,83],[2,29],[2,12],[2,11],[2,14],[0,12],[-3,4],[-5,-6],[0,-5],[4,-1],[1,-7],[-4,-3],[-2,-8],[-6,2],[-1,-7],[-4,-3],[-1,-10],[6,3],[1,-9],[-3,-13],[-6,-9],[6,-2],[1,-5],[-5,-9],[-3,-9],[1,-11],[2,-10],[0,-4],[-5,-11],[-6,-14],[-6,-21],[-1,-16],[8,-6],[0,-8],[-1,-10],[0,-3],[-4,-4],[-5,-10],[-3,-14],[-10,-5],[-2,-7],[1,-6],[-2,-6],[-6,-2],[-4,-2],[-4,-6],[-6,-11],[0,-8],[7,-12],[4,-11],[-2,-9],[-4,-1],[-2,5],[0,6],[-1,3],[-11,12],[-4,-4],[-3,0],[-3,4],[-3,4],[0,-22],[2,-10],[3,-5],[3,-4],[-1,-10],[-4,-14],[-4,2],[-3,3],[-3,0],[-4,-5],[-2,-5],[-2,-7],[-2,-9],[0,-7],[5,4],[4,-7],[4,-12],[2,-10],[-8,-6],[-17,-18],[-7,-4],[0,3],[2,9],[4,7],[7,13],[-7,8],[-10,-18],[-3,-11],[1,-8],[0,-3],[-18,1],[-7,-3],[-5,-11],[5,0],[3,-3],[3,-3],[4,-2],[15,8],[0,-4],[-8,-8],[-11,-27],[-6,-5],[-4,-8],[-13,-45],[-3,4],[-3,0],[-3,-2],[-2,-6],[1,0],[1,-1],[-1,-1],[1,-2],[3,3],[2,-1],[2,-4],[0,-6],[-1,-4],[-7,-12],[-2,-10],[-2,-3],[-3,-3],[-7,-3],[0,-4],[1,-6],[1,-4],[-6,-16],[-9,-15],[-11,-11],[-16,-11],[-3,-1],[-3,1],[-4,6],[0,6],[1,7],[1,7],[1,11],[2,12],[2,10],[14,49],[2,23],[-6,19],[-4,6],[-5,2],[-11,1],[-2,-1],[-5,-3],[-2,0],[-3,1],[0,3],[0,5],[-1,5],[-4,2],[-6,-1],[-8,-3],[-4,-4],[-3,-5],[-3,-3],[-5,0],[0,2],[-4,5],[-2,5],[-1,5],[1,7],[0,4],[-2,4],[-10,14],[-4,2],[-3,3],[-2,11],[-2,3],[-10,0],[-5,4],[-3,8],[-2,10],[-3,6],[-2,0],[-2,-1],[-2,-2],[-1,-1],[-3,3],[-1,3],[-1,3],[-28,52],[-9,10],[-6,12],[-3,18],[1,-3],[2,-3],[2,-2],[1,11],[3,27],[-1,9],[-10,16],[-3,7],[1,5],[6,10],[5,6],[2,3],[1,5],[0,8],[1,8],[4,5],[1,4],[2,4],[3,2],[1,3],[0,17],[6,17],[10,16],[10,12],[16,11],[12,5],[6,1],[5,1],[10,8],[6,3],[1,0],[2,3],[4,-2],[4,5],[4,8],[5,6],[-4,9],[-2,11],[1,7],[5,-3],[4,8],[1,-4],[11,29],[5,8],[-7,-4],[-9,-14],[-6,-3],[-5,-4],[-4,-11],[-1,-13],[1,-12],[-4,-6],[-16,-11],[-12,-10],[-6,-2],[-7,4],[-17,-14],[-5,-2],[-4,-3],[-10,-21],[-10,-11],[-4,-8],[-3,-24],[-4,-10],[-12,-26],[-2,-2],[-10,-6],[-1,-4],[-1,-7],[-2,-6],[-1,-7],[1,-5],[8,-13],[2,-5],[3,-11],[0,-10],[-2,-11],[-3,-11],[-3,-13],[-1,-12],[5,-13],[5,-9],[7,-13],[10,-30],[1,-3],[1,-2],[7,-10],[7,-7],[1,-14],[6,-13],[3,-12],[1,-15],[-3,-31],[0,-12],[0,-13],[1,-8],[1,-8],[-1,-15],[2,-13],[7,-9],[7,-12],[8,-21],[1,-10],[0,-11],[0,-13],[4,-8],[14,-32],[14,-26],[8,-13],[10,-7],[9,4],[1,5],[-1,5],[2,1],[2,-7],[5,-70],[0,-27],[-2,4],[-1,28],[-3,4],[-9,-5],[-5,2],[5,-17],[-4,1],[-1,1],[-2,0],[-1,-1],[-1,-1],[3,-5],[3,-4],[4,-3],[5,0],[-6,-10],[-19,-9],[-5,-10],[5,0],[-1,-4],[-1,-4],[-2,-2],[-1,-2],[4,-1],[11,12],[7,1],[2,-3],[2,-6],[3,-5],[2,0],[5,12],[2,4],[0,9],[1,4],[2,-1],[0,-5],[1,-11],[-1,-20],[2,-15],[0,-17],[1,-13],[1,-13],[0,-1],[0,-16],[-2,-23],[-4,-20],[-4,-10],[1,18],[5,33],[0,18],[0,1],[-1,2],[-2,1],[-2,1],[-2,0],[0,-5],[0,-3],[-2,-9],[-3,4],[-4,-1],[5,-18],[-2,-7],[-2,2],[-4,4],[-6,5],[-5,2],[-3,-5],[11,-6],[2,-3],[-1,-5],[0,-5],[2,0],[0,-3],[-1,-1],[-1,-2],[-1,-2],[4,-2],[3,1],[3,0],[3,-6],[-1,-10],[-3,-11],[-3,-11],[-4,-7],[-6,-27],[-3,-4],[-9,0],[-1,4],[3,13],[-9,-9],[-3,-5],[-3,-7],[-4,-35],[-3,-5],[-1,-4],[-3,-19],[-2,-6],[-2,0],[-5,4],[-3,0],[-2,-3],[-5,-10],[-2,-3],[2,-5],[-6,-29],[-1,-5],[-1,-7],[-3,-6],[-5,-3],[-4,-5],[-1,-7],[-2,-9],[0,-6],[4,-5],[-2,-4],[-3,-1],[1,-5],[4,-4],[-1,-3],[-5,-5],[-2,-7],[1,-3],[5,2],[3,-4],[-3,-6],[-6,-5],[-6,-9],[-6,-12],[-6,-14],[-5,-12],[-8,-26],[-11,-26],[-8,-15],[-7,-19],[-15,-37],[-3,-12],[-4,-14],[-4,-7],[-4,-10],[-3,-10],[-3,-4],[-2,-5],[-6,-8],[-2,-4],[2,-7],[-1,-4],[-2,-5],[0,-5],[4,-3],[3,-5],[-1,-3],[-3,-1],[-2,-4],[-3,-1],[-2,3],[-5,1],[-6,-17],[-3,-7],[-4,-19],[-3,-20],[-3,-28],[-1,-19],[-2,-23],[0,-9],[-1,-13],[-3,-6],[-5,5],[-3,16],[-7,20],[0,15],[2,8],[0,4],[-6,10],[0,14],[5,13],[4,8],[-3,2],[-2,0],[-2,-2],[5,22],[2,11],[-2,7],[5,4],[3,7],[2,8],[0,6],[0,-1],[-2,1],[-1,-1],[-1,-4],[-2,0],[1,10],[2,11],[3,8],[8,7],[1,6],[-3,4],[-6,-5],[1,17],[4,13],[6,9],[6,6],[-11,8],[3,6],[3,5],[1,5],[-4,4],[5,6],[6,2],[3,3],[-4,9],[3,10],[4,5],[6,2],[6,0],[-2,9],[1,5],[9,18],[0,4],[-6,0],[0,4],[6,8],[3,7],[0,9],[-5,9],[3,8],[3,-1],[3,-4],[3,-3],[16,4],[-2,5],[-1,6],[0,7],[1,6],[2,1],[7,-2],[3,1],[-3,5],[-1,6],[0,5],[2,5],[-1,8],[-5,7],[-8,3],[-7,-2],[0,4],[7,9],[6,7],[10,3],[4,3],[4,6],[-6,5],[-5,2],[-26,4],[-6,-1],[-6,-8],[-8,-13],[-6,-6],[-2,3],[-1,4],[-1,2],[-1,3],[1,5],[1,4],[3,4],[2,5],[2,7],[-3,0],[-2,-2],[-2,-2],[-1,-4],[-2,0],[0,3],[0,1],[-1,0],[-1,1],[2,4],[6,15],[1,7],[2,4],[8,2],[2,2],[3,7],[12,21],[4,10],[-4,2],[-3,-5],[-3,-6],[-4,-3],[-7,1],[-4,-1],[-3,-4],[-1,2],[0,1],[-2,1],[0,5],[3,2],[3,4],[3,4],[1,6],[-2,4],[3,2],[8,2],[3,4],[-1,6],[-4,2],[-5,-1],[-4,1],[-6,-4],[-13,2],[-6,-2],[-1,-4],[0,-6],[-1,-4],[-2,-2],[-2,1],[-1,5],[0,12],[3,22],[9,11],[12,5],[10,8],[-4,4],[-13,2],[-5,5],[-2,11],[1,14],[3,12],[9,26],[3,9],[1,13],[1,3],[-1,2],[-3,1],[-2,-2],[-1,-6],[-1,-6],[-1,-6],[-14,-28],[-2,-5],[-7,-35],[-2,-5],[-2,3],[0,5],[1,6],[-1,6],[-1,3],[-3,5],[-2,5],[-1,5],[1,8],[8,6],[2,9],[-3,13],[-7,-7],[-8,-16],[-5,-15],[3,-3],[2,-6],[1,-7],[0,-9],[-3,-15],[-3,-5],[-3,4],[-9,26],[-3,5],[-7,3],[-2,4],[-2,11],[-17,35],[-5,6],[-3,-5],[4,-27],[-1,-13],[-1,0],[-2,16],[-5,15],[-8,22],[-2,4],[-2,6],[-2,7],[-1,13],[-3,4],[-2,3],[-2,3],[0,13],[4,4],[5,-1],[3,-5],[1,-14],[2,-1],[3,8],[1,15],[2,9],[5,5],[7,4],[5,4],[-1,6],[4,8],[-1,7],[-1,2],[-2,1],[-1,0],[-3,1],[-3,-1],[-1,-2],[0,-3],[-1,-5],[-3,-4],[-4,-1],[-8,-1],[-4,4],[2,8],[6,13],[0,4],[-1,2],[-2,2],[-2,8],[12,-4],[5,0],[4,1],[7,5],[4,2],[-4,-7],[-2,-1],[3,-5],[3,-3],[5,2],[8,-12],[6,3],[11,-15],[11,-1],[5,10],[3,4],[4,10],[1,18],[3,9],[-1,2],[-1,2],[-2,0],[-6,-21],[-2,-12],[-7,-6],[-10,8],[-5,5],[-8,6],[4,20],[-4,-3],[-4,-3],[-4,-2],[-5,4],[0,4],[2,4],[7,6],[4,2],[0,4],[-6,-1],[-6,-2],[-5,0],[-2,8],[2,3],[1,5],[0,6],[-1,6],[-3,-7],[-1,-8],[-1,-7],[-4,-9],[-2,7],[-5,8],[-3,8],[2,13],[8,-2],[-6,11],[-3,3],[-6,-4],[-5,-21],[-5,4],[-2,18],[2,9],[1,5],[-2,-1],[-4,-7],[-1,-16],[-4,-10],[0,-11],[1,-6],[-1,-7],[-4,-3],[-2,10],[1,15],[1,8],[3,11],[5,34],[1,6],[1,5],[8,11],[4,10],[2,-2],[-1,-9],[5,-10],[5,-4],[3,-5],[0,-11],[3,-7],[5,-7],[3,-5],[8,7],[3,3],[4,7],[2,9],[-1,9],[-3,-9],[-6,-6],[-9,-3],[-4,17],[1,19],[9,8],[8,4],[6,7],[-11,8],[-2,2],[2,12],[-1,6],[-3,0],[-1,-3],[-2,-14],[-2,-3],[-5,-8],[0,20],[1,10],[-1,4],[-3,5],[-6,5],[-4,-1],[-1,0],[-2,-4],[-2,-5],[-1,-2],[-2,-3],[-2,0],[-9,-2],[-2,-1],[-3,-3],[-1,-6],[0,-7],[2,-8],[-1,-10],[-5,-5],[-3,-6],[-4,-3],[2,33],[3,31],[4,17],[1,4],[4,13],[2,13],[2,2],[4,-3],[0,-11],[2,-11],[12,-6],[8,-3],[5,3],[8,10],[5,7],[1,12],[-2,3],[-2,4],[-1,4],[-1,6],[6,2],[4,1],[-3,4],[6,14],[12,21],[4,11],[-7,-5],[-6,-7],[-6,-5],[-6,4],[3,4],[0,4],[-9,-8],[-3,-18],[-5,-8],[-2,-17],[1,-13],[1,-9],[-4,-1],[-5,7],[-2,5],[3,15],[-1,23],[-2,11],[0,6],[-2,4],[-6,11],[0,10],[5,12],[6,25],[5,18],[9,16],[1,11],[1,5],[3,5],[6,1],[3,3],[1,5],[2,12],[1,3],[3,4],[13,-1],[9,-4],[8,0],[19,1],[12,-1],[7,-1],[6,6],[-7,5],[-11,-3],[-28,3],[-8,8],[6,13],[11,21],[6,9],[5,5],[6,1],[13,-7],[7,-2],[0,4],[-8,8],[-4,7],[-3,9],[7,7],[5,11],[3,14],[2,13],[-6,-4],[-5,-9],[-5,-10],[-4,-14],[-17,-24],[-10,-17],[1,20],[2,11],[7,17],[3,9],[2,10],[4,23],[-5,-2],[-3,-6],[-5,-14],[-8,-11],[-8,5],[-7,-1],[-5,1],[-3,-4],[-8,-33],[3,-6],[10,-6],[3,-2],[-1,-8],[-2,-5],[-13,-23],[-17,-16],[-8,-11],[-4,8],[-1,11],[2,26],[2,11],[0,5],[-2,4],[-3,0],[-2,-4],[-2,-6],[-2,-2],[-4,-45],[4,-10],[2,-7],[0,-3],[-2,-3],[-8,-17],[-2,28],[-6,27],[-4,2],[-21,-9],[4,-6],[8,-3],[6,-4],[-1,-11],[2,0],[-2,-6],[-3,-2],[-3,0],[-3,-4],[2,-8],[-1,-2],[-15,6],[-2,-4],[2,-7],[9,-20],[0,-4],[-3,-5],[-4,4],[-3,6],[-4,14],[-3,3],[-9,5],[5,-16],[5,-16],[8,-11],[6,0],[-1,-6],[-8,-13],[-5,-7],[0,8],[1,6],[-3,1],[-2,-3],[-2,-4],[-3,0],[-5,1],[2,11],[-5,5],[-6,6],[-9,11],[-2,5],[-3,-4],[-3,-2],[-7,-1],[-2,-1],[4,-3],[2,-4],[5,0],[4,-2],[2,-8],[0,-9],[8,-3],[1,-4],[1,-8],[1,-4],[2,-4],[5,-7],[1,-2],[4,3],[3,-7],[8,-12],[2,-2],[1,-15],[3,-10],[-2,-9],[-2,-4],[-3,5],[0,8],[-3,1],[-4,-5],[-2,-1],[-6,-1],[-4,4],[-2,0],[1,-6],[5,-4],[6,-3],[13,-11],[6,-5],[4,-7],[-1,-6],[-5,-3],[-6,-1],[-2,-2],[-3,-10],[-5,4],[-11,16],[-3,14],[-4,11],[-4,8],[-3,-2],[-1,-5],[0,-6],[-1,-10],[3,-2],[5,-2],[3,-6],[5,-10],[8,-11],[2,-7],[2,-12],[5,-6],[-4,-7],[2,-12],[-12,9],[-6,14],[-9,5],[-3,-4],[9,-9],[3,-7],[3,-8],[6,-8],[-1,-11],[-3,0],[-4,4],[-5,3],[1,-3],[0,-1],[1,-4],[2,-5],[-1,-5],[-3,-3],[2,-10],[3,2],[4,1],[4,0],[-1,-11],[-2,-11],[-8,-14],[-6,-5],[1,-12],[3,-10],[5,-8],[-2,-13],[0,-16],[2,-15],[3,-13],[-1,-34],[0,-26],[5,-18],[17,-35],[6,-15],[5,-12],[4,-4],[-4,-19],[-7,-19],[-9,2],[-5,7],[0,16],[-1,6],[0,4],[-1,3],[-2,4],[-4,5],[-3,2],[-9,3],[-5,9],[-12,12],[-9,18],[-3,18],[-7,88],[-3,15],[0,-4],[0,-5],[0,-6],[1,-43],[1,-13],[0,-14],[0,-15],[0,-14],[5,-21],[10,-16],[10,-15],[18,-15],[3,-3],[1,-11],[3,-12],[5,-10],[7,-12],[6,1],[2,4],[5,4],[5,-1],[4,-4],[-4,-10],[-3,-9],[1,-12],[2,-12],[2,-4],[6,-15],[7,-18],[4,-15],[-3,-6],[-3,-5],[2,-18],[1,-8],[1,-7],[1,-12],[-4,5],[-4,3],[-12,27],[-6,3],[-5,14],[2,16],[-2,19],[-6,9],[0,-5],[2,-9],[0,-4],[-1,-6],[-1,-4],[-1,-4],[-3,-8],[-3,4],[-6,12],[-2,-15],[-2,-5],[-4,4],[0,5],[-2,7],[-3,15],[-4,8],[-7,8],[-8,7],[-7,1],[-10,6],[-5,2],[-16,-6],[-6,6],[-8,9],[1,13],[-2,8],[-1,6],[-1,22],[-3,16],[-6,11],[-9,10],[7,-26],[3,-14],[2,-17],[-1,-27],[-7,9],[-8,6],[-8,6],[0,13],[-7,10],[-7,8],[-3,15],[-8,42],[-2,12],[-3,12],[0,-6],[-1,-5],[-1,-5],[-2,-5],[-4,-10],[-4,-5],[-5,-7],[-3,1],[0,14],[0,7],[1,4],[0,5],[-1,1],[0,1],[-1,2],[-4,-4],[-3,-5],[1,-2],[2,-2],[2,-8],[-5,-20],[-4,-6],[-6,-5],[-3,-3],[-7,-6],[-8,5],[-6,12],[-2,18],[1,16],[-2,13],[0,12],[2,11],[3,7],[2,8],[4,12],[5,-1],[6,1],[5,12],[-2,0],[-4,-5],[-4,-2],[0,5],[3,10],[3,8],[1,2],[2,1],[2,3],[2,1],[6,-1],[3,2],[1,3],[2,10],[2,10],[1,10],[2,5],[2,4],[2,3],[6,2],[4,2],[2,-3],[5,0],[2,1],[0,2],[-3,-1],[-2,2],[-1,3],[1,5],[1,9],[1,6],[2,1],[2,0],[0,2],[-3,3],[-1,2],[-1,6],[1,7],[1,3],[1,5],[-1,3],[-2,14],[2,10],[1,5],[0,6],[-1,4],[-1,7],[-3,4],[-4,5],[-3,6],[-2,2],[1,-6],[3,-6],[2,-3],[2,-5],[1,-4],[1,-4],[0,-6],[-1,-3],[-2,0],[0,-2],[1,-5],[0,-7],[0,-12],[-1,-2],[-2,-2],[-1,-3],[2,-4],[0,-6],[0,-11],[1,-12],[-1,-7],[-7,-3],[-5,0],[-3,-3],[-3,1],[-2,-1],[-2,-11],[-2,-6],[-3,0],[-2,5],[-2,3],[-3,-1],[0,-6],[4,-9],[4,-8],[1,-8],[-7,-3],[-7,-7],[-4,2],[-2,5],[1,4],[3,10],[-2,6],[-4,0],[-4,-5],[-2,-9],[-1,-9],[-2,-10],[-3,-9],[-4,-6],[2,-2],[1,-4],[1,-3],[-5,-6],[-2,-2],[0,-4],[-1,-11],[-5,-17],[-6,-30],[4,-27],[-6,7],[-5,9],[-2,-2],[3,-12],[7,-11],[4,-6],[3,-7],[2,-9],[-3,1],[-6,-3],[-5,-1],[1,-3],[13,-1],[12,-7],[17,8],[6,3],[9,11],[13,1],[8,15],[4,1],[6,-6],[2,-8],[-1,-10],[1,-7],[0,-7],[-3,-7],[-4,2],[-4,0],[0,-4],[4,-2],[2,-3],[9,-18],[7,-4],[2,-2],[2,-4],[1,-8],[0,-7],[-1,-10],[2,-5],[11,-6],[9,-13],[14,-7],[9,2],[6,-1],[5,-4],[2,-7],[3,-7],[7,3],[7,7],[2,3],[3,-1],[3,-3],[2,-3],[2,-1],[3,0],[6,3],[2,-4],[2,-7],[-2,-11],[3,-5],[4,-4],[6,-5],[7,-9],[2,-6],[2,-7],[-3,-6],[0,-2],[0,-8],[2,-2],[5,1],[6,-1],[4,-4],[2,0],[2,-6],[-2,-2],[-2,-1],[3,-3],[14,-15],[10,-6],[23,-21],[8,-6],[4,-6],[1,-13],[2,-13],[-1,-14],[-3,-8],[-5,1],[-9,16],[-4,3],[-3,-5],[2,-12],[6,-19],[1,-9],[0,-6],[-1,-5],[-2,-9],[-1,0],[-2,0],[-2,1],[-1,-3],[3,-7],[8,-12],[1,-7],[-3,-3],[-3,0],[-3,1],[-3,2],[2,-8],[-2,-4],[-2,-2],[-2,-4],[1,-6],[4,-9],[1,-4],[4,0],[-5,-8],[-7,3],[-16,9],[-1,4],[-3,6],[-3,4],[-1,-3],[-1,0],[-2,5],[-2,7],[-1,6],[-4,9],[-2,-8],[-3,-22],[-5,0],[-3,7],[-2,11],[0,7],[-3,9],[-10,22],[-2,11],[-1,4],[-9,11],[-1,5],[-1,6],[-2,2],[-3,-5],[-3,2],[-2,4],[-1,5],[0,9],[-4,-6],[-3,-1],[-4,3],[-3,6],[-11,29],[-5,11],[-18,17],[-5,23],[-8,5],[-4,10],[-6,37],[-5,14],[-3,6],[-5,4],[-12,5],[-3,-1],[-3,7],[-2,10],[-3,8],[-5,4],[-12,5],[-5,1],[-2,-6],[2,-6],[4,-4],[10,-2],[3,3],[2,-1],[1,-4],[1,-8],[1,-6],[1,-4],[3,-5],[20,-8],[3,-6],[1,-3],[5,-9],[2,-4],[-2,-33],[1,-10],[5,-3],[4,0],[3,-3],[1,-8],[3,-9],[5,-7],[5,-7],[4,-8],[6,-7],[2,-5],[3,-13],[3,-12],[4,-11],[3,-8],[3,-6],[4,-7],[3,0],[4,1],[2,0],[1,0],[1,0],[0,-2],[0,-8],[0,-2],[2,-8],[10,-3],[5,-6],[3,-12],[6,-13],[1,-1],[0,-5],[1,-9],[1,-12],[5,-15],[9,-7],[16,2],[6,0],[4,3],[6,-18],[10,-5],[12,-3],[12,-6],[-5,-7],[-5,-3],[-13,-2],[-8,-4],[0,-6],[5,-4],[6,-2],[9,-13],[6,-4],[3,6],[0,9],[6,-1],[2,-9],[-1,-9],[-1,-4],[-2,-6],[0,-6],[2,-4],[4,0],[3,-2],[0,-11],[-1,-20],[-1,-20],[-2,-17],[-6,-8],[-5,8],[-6,21],[-1,9],[-3,0],[-4,-3],[-5,2],[-9,27],[-5,8],[-3,-15],[3,-2],[2,-4],[1,-5],[1,-5],[-3,2],[-3,2],[-3,0],[-2,-4],[-2,-6],[2,-5],[7,-10],[2,-1],[2,-2],[0,-6],[-1,-1],[-8,-5],[0,-4],[9,1],[2,-1],[2,-5],[3,-8],[1,-8],[-2,-9],[-21,-7],[-11,-7],[-4,12],[-8,14],[-4,9],[-2,9],[-4,1],[-2,3],[-17,47],[-4,5],[-7,6],[-5,13],[-8,26],[-14,25],[-3,-2],[-1,-4],[-1,-6],[0,-7],[1,-3],[3,-3],[3,-1],[2,-3],[12,-35],[9,-10],[4,-10],[6,-18],[13,-40],[20,-24],[9,-14],[10,-11],[10,5],[8,7],[4,-1],[4,-7],[-1,-1],[-1,-7],[0,-7],[0,-6],[2,-5],[3,-6],[3,-1],[1,7],[8,-10],[6,-9],[2,-8],[-4,-3],[-6,-7],[-3,-7],[4,-4],[11,5],[3,-4],[1,-16],[-2,-13],[-2,-12],[-4,-8],[-5,-4],[-7,0],[-5,-2],[-4,-3],[-7,-12],[-5,-4],[-4,3],[-3,23],[-3,8],[-20,17],[-6,19],[-5,-3],[-13,20],[-2,7],[-1,8],[3,17],[-2,16],[-5,12],[-5,8],[-4,-4],[-12,-2],[-5,-2],[-2,-4],[-1,-6],[-1,-3],[-3,3],[-1,5],[-1,6],[-1,5],[-2,2],[-5,2],[-11,8],[-4,2],[-3,5],[-1,12],[1,13],[-1,11],[-3,-5],[-1,-6],[0,-15],[-1,-6],[-3,-6],[-6,-7],[-6,-1],[-4,6],[-2,11],[-8,23],[-3,4],[-3,2],[-3,-3],[-9,-12],[-2,-4],[-1,-2],[-2,6],[-2,7],[0,4],[-3,5],[-2,2],[-3,-1],[-4,-2],[-6,-4],[-2,0],[-3,1],[-5,5],[-2,2],[-11,-1],[-4,4],[-5,9],[-7,-12],[1,-8],[2,-3],[3,-1],[1,-2],[3,1],[18,-12],[24,0],[2,-3],[2,-6],[2,-4],[3,3],[9,13],[2,1],[6,-4],[3,-11],[1,-12],[2,-5],[7,-3],[10,-13],[5,-4],[26,0],[4,-4],[7,-21],[6,-5],[6,-4],[8,23],[5,-2],[2,-22],[3,-25],[-5,-23],[3,-14],[6,-2],[19,-7],[0,-4],[-3,-3],[-1,-1],[0,-4],[2,-2],[3,-1],[3,-1],[2,-2],[3,-6],[7,-13],[5,-7],[1,-6],[0,-6],[3,-7],[1,-8],[-1,-5],[-4,-7],[-8,-10],[0,-4],[7,1],[6,6],[6,7],[6,6],[7,3],[8,-1],[7,-4],[6,-6],[0,-7],[2,-7],[5,-5],[5,-1],[-6,12],[-2,8],[1,6],[4,10],[-1,4],[-7,7],[0,12],[5,6],[12,1],[28,-20],[12,-7],[13,-3],[6,4],[6,10],[8,-1],[5,-13],[8,-62],[27,-128],[2,-24],[0,-1],[12,-98],[4,-24],[1,-12],[1,-14],[1,-10],[8,-29],[12,-61],[42,-139],[3,-24],[8,-35],[-2,2],[-6,4],[-2,2],[0,4],[0,6],[-1,4],[-6,7],[-1,11],[-1,21],[-4,15],[-19,45],[-2,0],[-4,-3],[-4,2],[-2,7],[1,10],[2,-6],[2,-1],[7,4],[-1,9],[-3,8],[-2,3],[-4,-4],[-4,6],[-2,10],[-1,10],[-2,10],[0,4],[1,15],[-3,18],[-4,18],[-3,19],[-7,27],[-4,7],[-1,3],[0,2],[1,1],[1,0],[-2,16],[-2,39],[-1,8],[-4,14],[0,10],[-4,15],[-2,20],[-4,21],[0,3],[0,1],[-2,7],[1,7],[1,7],[0,7],[-1,4],[-3,8],[-2,4],[-5,33],[-2,16],[-2,3],[-4,4],[-3,0],[-1,-6],[-4,-61],[2,-32],[1,-1],[1,-4],[4,0],[1,4],[1,0],[-2,7],[4,5],[5,3],[2,-15],[0,-1],[0,-16],[1,-5],[1,-6],[0,-4],[-3,-1],[-11,0],[-6,3],[-1,9],[0,8],[-8,8],[-2,5],[-9,24],[0,-9],[2,-5],[1,-4],[1,-6],[0,-1],[0,-7],[-2,-12],[0,-9],[3,-12],[4,-12],[6,-10],[6,-6],[-4,-5],[3,-14],[7,-15],[6,-7],[-3,5],[-2,4],[-1,5],[0,6],[1,-1],[2,7],[2,12],[3,1],[1,-16],[-2,-27],[3,-9],[9,-25],[2,-9],[1,-7],[15,-69],[1,-9],[2,-12],[4,-13],[1,-10],[-5,-4],[-5,4],[-4,9],[-7,18],[-2,5],[1,6],[1,4],[1,5],[-1,6],[-2,7],[-3,9],[-6,9],[-2,3],[0,4],[-1,9],[-1,4],[-4,5],[-4,3],[-1,5],[4,11],[-8,11],[-4,4],[-5,1],[2,-9],[3,-4],[3,-5],[2,-22],[2,-12],[1,-9],[-4,-4],[7,-12],[4,-5],[4,-3],[0,-4],[-20,11],[-5,1],[-6,4],[-5,8],[-7,18],[-2,3],[-5,3],[-2,3],[-5,10],[-5,8],[-5,5],[-15,7],[3,3],[2,4],[0,4],[-4,1],[-2,-3],[-3,-7],[-1,-7],[1,-3],[6,-3],[6,-6],[6,-8],[3,-7],[5,-14],[3,-8],[7,-6],[2,-14],[4,-3],[3,-2],[-2,-4],[-6,-6],[-3,-2],[-10,-2],[0,-4],[1,0],[0,-4],[-8,-1],[-3,1],[-3,2],[-9,9],[-4,14],[-2,3],[-3,2],[-7,10],[-5,8],[-2,0],[1,-8],[1,-5],[2,-5],[3,-4],[2,-2],[4,-5],[9,-24],[5,-8],[0,-3],[-7,-3],[-6,3],[-29,22],[-8,9],[-5,13],[-4,-2],[-5,5],[-5,8],[-5,5],[4,-13],[2,-7],[2,-4],[10,-10],[1,-4],[3,-7],[7,-7],[8,-6],[5,-2],[0,-5],[-28,-7],[-4,-5],[0,-4],[1,0],[2,0],[-5,-12],[-9,-10],[-9,-8],[-7,-3],[-10,-1],[-5,1],[-3,3],[-8,21],[-3,5],[-4,-14],[-7,0],[-5,11],[-4,32],[-7,26],[-1,16],[4,26],[1,7],[4,8],[2,5],[3,17],[-3,10],[-5,6],[-6,4],[2,-6],[5,-10],[1,-6],[-1,-8],[-2,-5],[-4,-7],[-5,-11],[-2,-11],[-2,-12],[0,-39],[1,-7],[4,-13],[2,-17],[2,-5],[2,-5],[3,-4],[0,-8],[0,-6],[1,-5],[4,-2],[-1,-8],[-10,-24],[0,-4],[38,0],[8,-4],[2,0],[9,10],[14,10],[15,5],[9,-5],[1,-5],[0,-6],[-1,-6],[0,-3],[2,-4],[2,2],[2,4],[4,2],[5,-2],[12,-10],[7,0],[-3,7],[-6,6],[-3,6],[7,9],[24,13],[27,3],[7,-3],[7,-6],[5,-9],[0,-10],[-6,6],[-3,-5],[-2,-21],[9,6],[4,2],[-2,-13],[-4,-13],[-5,-8],[-6,-3],[0,-4],[6,-9],[3,-17],[-1,-15],[-8,-4],[-8,5],[-3,0],[2,-7],[3,-4],[5,-3],[4,-2],[4,0],[-1,0],[2,-4],[2,-7],[2,-7],[-2,-3],[-3,-4],[2,-7],[3,-7],[1,-2],[-4,-9],[-9,3],[-9,6],[-7,0],[5,-15],[7,-5],[7,1],[8,3],[0,-2],[0,-3],[1,-3],[1,-4],[2,0],[10,47],[1,20],[0,72],[2,6],[10,11],[2,4],[2,2],[4,-7],[5,-14],[7,-6],[2,-1],[2,2],[1,4],[-1,4],[-6,4],[-3,7],[-2,7],[-2,8],[6,-3],[6,-4],[6,-2],[5,5],[-2,4],[-3,3],[-3,1],[-3,0],[1,4],[2,5],[0,6],[0,6],[10,-12],[8,-17],[13,-37],[0,-7],[5,-13],[1,-4],[0,-11],[-2,-8],[-3,-8],[-1,-9],[1,-6],[4,-10],[1,-9],[0,-12],[-1,-4],[-7,0],[-6,-1],[-1,-4],[3,-11],[7,-17],[0,-6],[-4,-13],[-1,-2],[-2,-2],[-2,-1],[-3,-2],[0,-5],[0,-5],[0,-4],[-3,-3],[-4,-1],[-9,0],[0,4],[4,3],[2,1],[0,2],[-1,2],[0,2],[-1,2],[-7,-5],[-4,5],[-4,11],[-2,14],[-2,-9],[0,-11],[0,-9],[-1,-6],[-16,-29],[-1,-1],[-5,-2],[-1,-3],[1,-4],[0,-4],[1,-2],[0,-3],[-2,-5],[-1,-2],[-7,-4],[2,-8],[-2,-6],[-3,-4],[-1,-5],[0,-8],[-1,-4],[-2,-1],[-3,4],[2,4],[-5,6],[-4,-9],[-2,-13],[4,-9],[0,-3],[-5,-1],[-10,-6],[-4,-4],[-3,-8],[-2,-3],[-19,1],[-5,2],[-3,11],[-2,2],[-2,-3],[-1,-6],[-1,-7],[-3,2],[-9,10],[-3,15],[-3,6],[-6,6],[-2,-5],[0,-8],[0,-4],[2,-4],[1,-8],[-2,-9],[-4,-4],[-2,6],[-4,6],[-2,1],[-2,0],[-2,1],[-1,6],[11,0],[0,5],[-2,5],[-1,9],[-1,19],[-2,11],[-5,3],[-3,-4],[3,-11],[-6,-21],[-4,4],[-3,1],[-3,-3],[-2,-5],[2,-2],[2,-3],[1,-3],[1,-5],[-10,9],[-4,6],[-3,10],[2,0],[2,2],[1,2],[1,4],[-12,8],[-4,6],[4,6],[0,4],[-5,7],[-3,8],[1,6],[7,3],[14,-4],[5,4],[4,17],[-7,-3],[-7,1],[-12,6],[-8,1],[-6,-5],[-11,-12],[4,-2],[3,-4],[2,-5],[2,-6],[-3,-13],[-1,-3],[4,-8],[2,-3],[2,-2],[0,-3],[-2,-2],[0,-2],[-1,-2],[-1,-2],[3,-2],[2,-3],[2,-3],[1,-5],[-6,-5],[-8,3],[-6,9],[1,14],[-3,-1],[-2,-2],[-2,-2],[-1,-3],[-8,3],[-15,-7],[-6,6],[-6,10],[-6,4],[-14,4],[-8,4],[-13,13],[-13,6],[-5,6],[-11,16],[5,-18],[3,-8],[3,-3],[5,-3],[3,-7],[2,-18],[9,8],[12,-5],[11,-12],[8,-12],[5,-4],[16,-7],[18,-18],[23,-10],[25,-14],[7,-1],[0,-7],[2,-5],[4,-9],[1,-4],[-3,-10],[-1,-6],[-2,-8],[-7,1],[-13,5],[0,-4],[6,-5],[3,-4],[2,-5],[-2,-5],[-4,1],[-7,6],[-5,-2],[-3,-4],[-3,-5],[-2,-2],[-4,0],[-5,-2],[-4,-4],[-3,-6],[4,-2],[11,-1],[4,-4],[2,-4],[3,-1],[5,4],[-2,1],[-1,2],[-1,2],[0,3],[4,5],[4,-17],[-1,-15],[-6,-11],[-9,-6],[2,-10],[-10,-12],[-12,-13],[-6,-8],[-5,-13],[-11,-7],[-12,-1],[-8,3],[-10,9],[-8,11],[-12,25],[-4,4],[-10,7],[-13,33],[-10,8],[12,-34],[0,-6],[6,-5],[4,-11],[6,-25],[10,-24],[12,-9],[12,-4],[14,-8],[9,-12],[2,-4],[1,-3],[1,-1],[2,1],[3,6],[7,5],[5,8],[5,9],[5,8],[5,7],[3,2],[3,-1],[3,-3],[2,-6],[2,-5],[0,-3],[5,-4],[6,-8],[5,-3],[-2,11],[-6,17],[0,8],[5,4],[4,0],[5,-1],[4,-5],[4,-10],[1,9],[0,8],[0,8],[0,7],[2,9],[3,11],[4,8],[1,-1],[1,-3],[2,-7],[1,-3],[-1,-5],[-1,-10],[0,-5],[5,-12],[1,-6],[-1,-3],[-7,-7],[-3,1],[-1,-2],[-2,-6],[0,-4],[1,-4],[1,-2],[2,-2],[4,1],[13,7],[2,-2],[3,11],[6,4],[6,0],[2,2],[-1,9],[-4,12],[-2,9],[8,-4],[4,-10],[4,-11],[7,-7],[0,-4],[-3,-4],[-4,-9],[-3,-4],[-4,0],[-4,2],[-2,-1],[-2,-9],[1,-6],[2,-3],[0,-5],[-3,-10],[-2,-3],[-11,-9],[0,3],[-2,6],[0,3],[-2,0],[-1,-4],[0,-10],[-1,-6],[-1,-6],[-2,-3],[-4,-7],[-10,-21],[-2,-3],[-2,-2],[-2,-2],[-1,-5],[0,-3],[1,-4],[0,-4],[-1,-5],[-3,-3],[-3,-2],[-6,1],[-6,3],[-5,8],[-1,9],[5,8],[-6,10],[-4,10],[-2,1],[-2,-50],[-3,-13],[-7,7],[-2,12],[-1,16],[-1,13],[-4,6],[-7,-2],[-6,-7],[-6,-9],[-5,-10],[5,1],[2,1],[3,2],[2,4],[6,-17],[2,-7],[-54,8],[-9,-11],[-40,-21],[-3,-3],[-3,-2],[-3,4],[0,6],[5,7],[-6,16],[-2,14],[0,2],[-5,1],[0,-8],[2,-10],[1,-3],[0,-11],[-2,-8],[-2,-7],[-3,-3],[-2,2],[-2,4],[-1,3],[-3,-1],[0,-3],[2,-11],[-1,-2],[-8,-8],[-15,-33],[-7,-8],[-4,-1],[-7,-9],[-5,-2],[-5,10],[-1,0],[-2,3],[-10,4],[4,8],[13,17],[2,11],[-2,6],[-10,24],[-5,7],[0,3],[5,1],[1,3],[-2,5],[-4,4],[-2,0],[-3,-1],[-3,1],[-3,8],[2,-31],[2,-10],[3,4],[4,-4],[2,-8],[2,-8],[0,-15],[-4,-7],[-5,-2],[-2,2],[-2,2],[-2,0],[-3,-3],[-1,-5],[1,-5],[2,-7],[3,-6],[3,-3],[5,-2],[4,-5],[2,-7],[-3,-6],[0,-4],[2,-2],[1,-2],[-3,-3],[-4,-2],[-15,-8],[-22,-22],[-37,-54],[-17,-36],[-15,-41],[-9,-14],[-4,-9],[-4,-19],[-6,-22],[-2,-10],[-5,-65],[-5,-32],[-9,-16],[2,11],[1,5],[-1,4],[0,4],[4,18],[-2,46],[2,17],[-5,23],[-5,26],[-2,0],[0,-16],[3,-43],[3,-14],[-2,-8],[0,-10],[0,-20],[-1,-8],[-5,-22],[-10,-28],[-3,-5],[-4,-3],[-5,1],[-25,13],[-5,1],[-15,-1],[-4,3],[-7,3],[-23,-9],[-9,4],[1,4],[1,5],[-2,11],[-2,0],[-3,-17],[-6,-7],[-18,-8],[-24,-17],[2,7],[2,2],[0,4],[-16,-9],[0,-4],[3,0],[2,-3],[2,-4],[1,-5],[-12,-1],[-11,-9],[-30,-31],[-29,-44],[-19,-37],[-26,-64],[-29,-69],[-6,-25],[2,-4],[-2,-6],[-7,-69],[-1,-14],[-1,0],[-3,8],[0,22],[-1,11],[-3,8],[-4,3],[-11,0],[-1,7],[2,13],[7,28],[10,21],[4,5],[0,4],[-7,-6],[-5,-9],[-13,-32],[-3,-11],[-2,-13],[-1,-12],[2,-12],[6,-9],[6,-7],[10,-5],[1,-5],[-1,-6],[1,-7],[2,-11],[1,-3],[4,-2],[-3,-5],[-4,-5],[-4,-6],[-2,-9],[-2,4],[-2,11],[-3,2],[-3,-3],[-1,-6],[2,-6],[3,-6],[-1,-3],[-1,-2],[-2,-2],[-1,-1],[-2,10],[-5,6],[-7,3],[-5,1],[3,-8],[6,-3],[5,-4],[-1,-13],[-4,-8],[-12,-10],[-6,-8],[-2,-11],[0,-10],[-2,-7],[-7,-3],[-7,-1],[-6,-2],[-5,-4],[-4,-5],[-1,6],[-4,12],[-1,4],[-2,7],[-5,-3],[-9,-10],[-4,-3],[-4,-8],[-7,-27],[0,-7],[1,-6],[4,-10],[1,5],[2,3],[3,3],[3,1],[-2,-9],[-2,-4],[-14,-14],[-2,-1],[-2,-2],[-2,-4],[0,-4],[-2,-2],[-7,-5],[-6,-12],[-4,-13],[-5,-11],[-15,-16],[-8,-6],[-6,-2],[-3,3],[-3,7],[-3,7],[-4,3],[-2,5],[2,9],[6,15],[-5,8],[-1,-2],[-2,-4],[0,-4],[0,-2],[-9,11],[-2,-1],[1,-8],[2,-15],[1,-10],[-1,-8],[-3,0],[-4,4],[-4,6],[1,-8],[3,-8],[4,-6],[10,-4],[3,-4],[1,-6],[4,-4],[1,0],[0,4],[2,0],[-1,-18],[-4,-12],[-16,-21],[-3,-2],[-7,0],[-7,2],[-3,1],[-3,-3],[0,-4],[7,-8],[2,-6],[-3,-4],[-15,-5],[-12,-8],[-6,-1],[-7,-4],[-4,-7],[-4,-2],[-6,11],[-9,17],[-5,6],[-4,-1],[3,-8],[13,-21],[1,-1],[1,-1],[-1,-5],[-2,-6],[-3,-3],[-3,-2],[-20,-27],[-3,-2],[-2,-3],[-3,-1],[-3,5],[-2,6],[0,7],[-1,6],[-4,3],[1,-9],[-1,-11],[-3,-9],[-4,-3],[-4,1],[-3,5],[-2,5],[-5,5],[-5,2],[-4,0],[-3,2],[-10,16],[-2,5],[-2,8],[-2,0],[-1,-7],[1,-7],[2,-6],[1,-5],[-6,-2],[-20,6],[-9,0],[-3,-3],[-2,-6],[0,-8],[5,5],[25,-8],[3,0],[5,3],[3,0],[4,-1],[7,-7],[4,-3],[0,-5],[-8,1],[-8,-1],[-8,-3],[-7,-5],[26,-4],[7,-5],[3,-11],[-1,-11],[-12,-9],[-7,-9],[-5,-10],[1,-6],[5,1],[7,6],[7,8],[3,6],[5,7],[2,4],[1,5],[2,0],[-1,-11],[-2,-15],[-3,-9],[-4,3],[-1,0],[0,-4],[-1,0],[-1,-1],[5,-6],[-3,-8],[-23,-26],[-3,-1],[-5,1],[-2,0],[-10,-10],[-3,3],[-2,15],[0,16],[4,37],[-10,-8],[-2,3],[6,42],[-2,11],[-7,1],[0,-5],[1,-1],[1,0],[1,1],[1,-2],[1,-2],[-2,-6],[-2,-8],[0,-41],[1,-4],[3,-10],[0,-6],[-1,-11],[-3,-1],[-4,4],[-18,30],[-7,33],[-4,22],[0,12],[4,11],[-1,3],[-3,1],[-5,4],[-2,7],[-1,8],[-3,5],[-5,0],[0,-4],[3,-5],[4,-17],[3,-6],[0,-4],[-3,-14],[4,-21],[5,-22],[3,-15],[-3,-14],[0,-8],[4,-4],[2,-4],[9,-28],[5,4],[4,-2],[3,-5],[3,-6],[3,-11],[0,-6],[-7,-15],[-9,-22],[-23,-26],[2,21],[10,37],[-1,22],[-2,-5],[-1,-7],[0,-8],[-1,-8],[-2,-6],[-6,-12],[-2,-4],[-1,-15],[-2,-11],[-13,-27],[-2,-7],[0,-7],[1,-8],[0,-1],[3,-3],[4,0],[5,-2],[3,-12],[-5,-12],[-13,-19],[-3,3],[-2,6],[-1,5],[0,2],[-4,0],[-2,-5],[-1,-4],[-2,-3],[-2,-5],[0,-11],[4,-10],[7,-2],[-10,-18],[-6,-8],[-4,-1],[-5,6],[-12,5],[-5,3],[-2,5],[-1,7],[-3,5],[-3,0],[-3,-5],[2,-6],[5,-8],[1,-5],[-11,-5],[-4,-7],[15,-5],[2,-2],[6,-10],[4,1],[2,-1],[-3,-8],[-3,-15],[-9,-20],[-4,-7],[-3,-3],[-15,0],[-9,2],[-7,8],[-3,5],[-4,4],[-3,2],[-2,-4],[1,-9],[4,-4],[8,-4],[8,-12],[-1,-10],[-11,-22],[-3,-9],[-2,-9],[-12,-37],[-5,-3],[-3,-8],[-1,-4],[4,-13],[-2,-12],[0,-3],[0,-3],[0,-4],[-1,-11],[-10,-17],[1,-13],[4,-16],[4,-13],[2,-11],[-3,-4],[-25,6],[-6,5],[-6,7],[-3,1],[-3,-4],[7,-12],[11,-8],[13,-6],[10,-2],[5,-3],[12,-16],[4,-8],[0,-9],[-2,-14],[-3,-9],[-6,6],[-10,-30],[-6,-16],[-5,-7],[-7,1],[-2,4],[-1,6],[1,28],[-2,7],[-6,-1],[-3,-7],[0,-9],[2,-23],[1,-12],[-2,-8],[-10,9],[-2,-4],[1,-7],[8,-7],[6,-12],[3,-5],[0,12],[2,6],[6,10],[-1,-16],[-5,-41],[-2,0],[-3,12],[-6,13],[-7,11],[-7,5],[4,-11],[11,-22],[3,-10],[-2,-12],[-5,-5],[-13,-5],[0,-5],[6,-5],[10,1],[4,-3],[-4,-9],[-8,-18],[-2,-8],[0,-3],[-2,-8],[0,-3],[1,-5],[2,-4],[1,-4],[0,-7],[-3,2],[-2,1],[-3,1],[-3,0],[0,-4],[4,-3],[1,-6],[0,-8],[0,-8],[1,-5],[4,-8],[1,-7],[-1,-13],[-2,-15],[1,-7],[0,-5],[7,-5],[1,1],[4,3],[2,0],[2,-1],[1,-3],[0,-2],[1,-2],[2,-4],[-1,-10],[-2,-16],[-1,-50],[1,-18],[-4,7],[-3,8],[0,11],[0,13],[-1,6],[-1,6],[-3,5],[-2,2],[-3,-2],[0,-5],[0,-13],[-1,-11],[1,-10],[2,-9],[5,-3],[0,-2],[7,-12],[2,-5],[2,-9],[1,-4],[2,-4],[1,-1],[1,-2],[2,-6],[1,-7],[-1,-19],[1,-4],[2,-3],[2,-4],[1,-5],[-2,-27],[0,-24],[9,-65],[2,-11],[8,-70],[11,-75],[-2,-19],[2,0],[2,4],[2,-6],[0,-8],[2,-14],[1,-8],[2,-30],[1,-11],[3,-19],[4,-17],[4,-25],[6,-25],[1,-13],[2,-10],[11,-48],[19,-84],[18,-76],[12,-49],[9,-30],[4,-8],[-2,-12],[4,-6],[5,-7],[2,-11],[2,-11],[37,-119],[18,-54],[14,-39],[17,-55],[7,-39],[4,-11],[-4,-13],[-5,-11],[-2,-1],[-1,-3],[-1,-5],[-2,-4],[-3,-2],[-1,-3],[0,-58],[-2,-8],[2,-4],[0,-13],[1,-32],[6,-60],[4,-17],[1,-10],[6,-25],[22,-65],[0,-25],[-6,24],[-1,6],[-1,4],[-9,18],[-2,21],[-17,56],[-8,47],[-3,25],[1,102],[8,75],[0,24],[-2,23],[-1,9],[-3,6],[-4,3],[-5,-1],[-1,1],[-1,2],[-2,1],[-2,0],[0,-2],[0,-9],[0,-2],[-3,-2],[-2,0],[-18,6],[-5,4],[-4,9],[-1,9],[0,11],[1,12],[2,8],[2,-3],[2,8],[2,13],[0,10],[-12,8],[-10,16],[-5,5],[4,-54],[4,-15],[0,-4],[-3,-4],[9,-31],[1,-12],[1,-24],[7,-57],[2,-12],[5,-34],[9,-32],[2,-14],[44,-186],[45,-187],[10,-90],[41,-188],[0,-10],[-3,12],[-3,5],[-11,6],[-6,6],[-2,3],[-2,3],[-2,3],[-4,-1],[2,-5],[7,-15],[2,-2],[4,-5],[3,-2],[6,4],[2,1],[11,-23],[1,-7],[8,-8],[2,-9],[1,-9],[7,-26],[5,-32],[6,-21],[0,-7],[-2,-7],[-3,-2],[-3,0],[-3,-4],[0,-3],[3,-3],[6,-4],[3,-4],[2,-6],[7,-56],[0,-16],[-4,-9],[0,-4],[3,-10],[2,-18],[1,-76],[-2,-17],[-4,-1],[-3,-80],[-2,-19],[-1,-8],[0,-21],[0,-10],[-2,-8],[1,-13],[-7,-88],[-3,-18],[-4,-6],[0,-5],[4,-13],[-4,-174],[-2,0],[0,25],[2,27],[0,15],[-1,8],[-3,0],[-10,-26],[-1,-21],[-4,-16],[0,-25],[-4,-11],[-3,-2],[-3,0],[-2,-1],[-3,-5],[-1,-6],[-1,-14],[-6,-25],[-8,-16],[-1,-11],[0,-29],[-2,-10],[-4,-13],[-3,-11],[0,-11],[1,-12],[1,-4],[2,-2],[1,-3],[-2,-8],[-2,-12],[2,-4],[3,-4],[3,-5],[-1,-7],[-10,-17],[-12,-28],[-2,-4],[0,-6],[-1,-5],[-5,-10],[0,-7],[-1,-12],[3,-8],[4,-7],[0,-6],[-4,7],[-6,15],[-4,3],[0,9],[-4,-1],[-6,-5],[-3,-7],[6,-2],[5,-5],[3,-9],[1,-12],[-2,0],[-1,13],[-4,7],[-5,2],[-5,-6],[-1,4],[-1,3],[-2,3],[-2,2],[1,3],[1,3],[1,1],[3,1],[0,3],[-1,1],[-1,4],[-3,-1],[-12,0],[-4,-3],[-3,-10],[-1,-12],[-3,-9],[-4,3],[1,1],[1,3],[-10,-5],[-2,-1],[1,-6],[1,-4],[0,-4],[-2,-5],[-2,0],[-4,5],[-3,-3],[-6,-10],[-3,-1],[-5,0],[-4,3],[-3,6],[-1,-2],[0,-1],[-1,-2],[0,-3],[-2,2],[-1,1],[-1,2],[-2,3],[-1,-4],[-1,-2],[-1,0],[-3,2],[0,4],[1,5],[-8,4],[-4,7],[-8,-10],[-1,0],[-6,-14],[-5,-2],[-11,0],[-9,-4],[-11,-2],[-13,-6],[-5,2],[-13,24],[-4,19],[-3,18],[0,18],[3,24],[5,19],[5,8],[-2,-8],[3,-2],[4,-4],[2,-5],[2,-5],[5,-18],[1,-1],[4,-4],[21,-18],[0,-4],[-2,-1],[-2,-2],[-2,-1],[0,-4],[5,-4],[6,0],[6,3],[5,7],[3,13],[-2,10],[-16,33],[-5,5],[-10,3],[-5,6],[-1,1],[-11,4],[-13,20],[-2,6],[0,6],[-1,13],[-1,5],[-4,23],[-9,20],[-3,11],[5,7],[2,4],[1,5],[0,4],[-3,2],[-6,-3],[-4,3],[-1,5],[-3,27],[-5,21],[0,8],[-3,5],[-1,6],[0,11],[-9,1],[-3,1],[-1,5],[-4,16],[-1,3],[-4,3],[3,7],[7,11],[-2,4],[-5,16],[-7,11],[-6,9],[-4,3],[-8,3],[-3,3],[-4,5],[-3,10],[-3,5],[-4,-8],[-3,3],[-3,6],[-6,4],[-4,6],[-2,1],[-1,-1],[-3,-5],[-3,-2],[2,5],[0,1],[-1,2],[-1,3],[-2,-1],[-3,2],[-3,5],[-1,7],[-3,-4],[-2,-8],[-3,-4],[-3,-1],[-4,1],[-2,3],[-2,5],[-1,-3],[-1,-5],[-1,-1],[-1,-3],[0,-4],[-2,0],[-2,1],[-1,1],[-3,6],[-1,5],[-2,17],[4,3],[4,-4],[3,-6],[3,-3],[2,3],[3,6],[2,8],[1,7],[-4,0],[-6,-1],[-3,1],[-3,5],[-3,7],[0,7],[2,5],[-8,12],[-4,15],[-5,43],[-1,-6],[-1,-6],[0,-6],[0,-6],[-2,0],[-5,42],[-2,47],[2,20],[0,4],[-1,2],[-8,29],[-1,10],[2,0],[0,-4],[2,0],[-1,37],[-1,11],[-2,9],[-6,19],[-1,9],[0,-9],[1,-15],[-1,-5],[-2,-1],[-2,1],[-1,3],[-1,2],[-6,0],[-15,16],[-4,-4],[-1,1],[-1,3],[-2,-5],[0,6],[-1,9],[1,9],[2,5],[1,0],[2,-7],[2,-1],[2,1],[1,2],[1,3],[8,9],[7,14],[6,16],[-1,15],[3,8],[12,23],[1,5],[2,6],[4,2],[2,-3],[3,4],[2,4],[2,6],[1,7],[-4,-3],[-7,-8],[-5,-1],[-5,-4],[-5,-9],[-9,-18],[-3,-10],[-9,-46],[-1,-3],[-2,-2],[-6,-4],[-3,-2],[0,8],[-6,-4],[-3,-5],[-4,0],[-4,9],[-3,10],[1,8],[1,8],[1,14],[-2,11],[-5,21],[-1,9],[0,13],[7,69],[1,13],[-1,15],[-2,5],[-4,4],[-5,9],[0,8],[5,8],[14,16],[6,2],[3,3],[1,4],[4,18],[-5,-3],[-6,-11],[-11,-4],[-5,-4],[-5,-2],[-6,4],[-1,-10],[-4,-2],[-3,-1],[-2,-5],[-1,-2],[-3,5],[-5,11],[1,10],[-3,-2],[-5,-4],[-4,2],[-5,18],[-3,7],[-6,5],[1,-5],[3,-11],[8,-19],[3,-5],[2,4],[3,-7],[4,-18],[2,-4],[1,-4],[5,-22],[2,-26],[0,-9],[-2,-8],[-2,-2],[-1,16],[-2,7],[-1,-2],[-1,-5],[-2,-4],[-2,-2],[-1,1],[-3,6],[-1,1],[-1,0],[0,-2],[-1,-1],[-2,-1],[-2,1],[-2,5],[-2,3],[-4,3],[-2,0],[-3,0],[-8,11],[-8,51],[-8,16],[1,-10],[4,-14],[1,-9],[-3,4],[-2,2],[-1,2],[-2,12],[-25,96],[-3,21],[-6,24],[-2,14],[2,-7],[1,-3],[1,-3],[0,10],[-1,9],[-2,6],[-3,4],[0,-8],[-2,0],[-3,13],[-5,11],[-3,12],[0,13],[1,-2],[1,-1],[1,-2],[1,-4],[2,0],[-1,15],[-5,23],[-3,28],[-4,8],[-6,5],[-10,16],[-11,3],[-4,4],[-3,8],[-6,27],[-1,10],[2,0],[5,-20],[1,-5],[3,-4],[7,-6],[3,-6],[2,4],[2,5],[0,5],[0,6],[-2,0],[-2,-2],[-2,0],[-2,3],[-1,3],[4,11],[7,-4],[7,-7],[6,0],[-3,5],[-3,4],[-3,2],[-4,2],[4,4],[8,4],[4,6],[2,7],[-4,-2],[-4,-2],[-1,-1],[-5,-4],[1,5],[1,2],[1,-1],[2,-1],[1,0],[3,7],[0,2],[-2,6],[6,7],[3,11],[2,12],[4,12],[7,12],[1,5],[1,7],[2,3],[3,1],[2,3],[4,16],[2,4],[7,11],[2,6],[9,19],[3,9],[-1,13],[-6,25],[-2,25],[-4,7],[-4,1],[-6,-6],[-3,-8],[-1,-9],[0,-22],[2,-8],[0,-6],[-1,-6],[-10,1],[-2,1],[-4,11],[0,15],[1,29],[-1,15],[-5,7],[-8,3],[-8,1],[0,4],[5,4],[0,5],[-7,8],[-4,5],[-2,6],[-2,0],[0,-1],[0,-7],[-11,21],[1,-5],[2,-9],[1,-5],[-1,-4],[-1,-7],[0,-2],[-2,-5],[0,-3],[3,-1],[10,0],[-4,-7],[-12,-7],[-5,-10],[11,-8],[10,-12],[11,-8],[12,3],[-3,-3],[-9,-10],[1,-7],[1,-13],[0,-7],[-1,-6],[-4,-9],[0,-3],[-1,-4],[-3,-18],[2,-10],[-1,-11],[-3,-8],[-5,-4],[-5,0],[-2,1],[-1,3],[-1,5],[0,13],[0,2],[-6,2],[-3,4],[-5,14],[-5,11],[-11,16],[-5,10],[-2,-8],[3,-8],[16,-34],[4,-11],[4,-20],[2,-14],[-1,-7],[-3,2],[-3,10],[-3,13],[0,10],[-4,20],[-17,31],[-4,14],[-1,8],[-2,17],[-1,12],[1,10],[3,11],[3,8],[3,5],[-3,-8],[-2,-10],[-1,-10],[2,-9],[9,48],[6,54],[1,16],[0,7],[3,5],[-3,9],[-1,9],[-2,15],[0,8],[0,11],[2,8],[2,-3],[4,8],[2,8],[2,16],[6,17],[2,8],[-1,8],[-1,-2],[-1,-1],[-2,-1],[10,50],[4,7],[0,4],[-1,4],[6,20],[1,32],[0,7],[3,18],[1,51],[3,10],[-1,4],[-1,5],[0,5],[1,5],[2,5],[0,4],[0,4],[-1,6],[0,21],[-1,5],[-2,1],[-2,0],[-1,2],[-1,8],[-6,13],[0,5],[4,9],[4,-4],[7,-17],[-2,18],[0,6],[2,29],[-1,8],[-3,8],[-2,1],[-5,2],[-2,1],[-2,3],[-12,28],[-1,10],[1,12],[-3,0],[-3,3],[-2,5],[2,6],[0,6],[0,18],[1,2],[-11,16],[-3,10],[6,7],[-5,4],[-2,7],[-1,10],[0,11],[-5,-5],[-2,-3],[-2,4],[-3,5],[-1,4],[-5,-8],[-7,1],[-6,5],[-5,5],[-3,-1],[-8,-1],[-4,-1],[-5,-4],[-2,0],[-3,-1],[-5,4],[-1,7],[-1,6],[-1,4],[-4,1],[-2,4],[0,6],[3,5],[-2,5],[-2,9],[-2,7],[-4,3],[-5,2],[-5,4],[-4,5],[-3,6],[-1,3],[0,6],[-1,13],[0,1],[-5,17],[-9,22],[-4,10],[-6,9],[-7,-2],[-8,11],[-14,31],[-3,-1],[-3,4],[-7,10],[1,5],[0,9],[-1,8],[-2,6],[3,7],[2,11],[0,14],[-1,13],[-3,7],[-5,3],[-6,1],[-5,5],[-3,3],[-3,6],[-2,3],[-9,8],[-5,7],[-5,11],[-4,11],[-2,10],[0,6],[-1,14],[-2,6],[-2,4],[-3,3],[-1,3],[-2,13],[-11,20],[-2,8],[-3,5],[-12,18],[-3,3],[-5,2],[-4,6],[-6,12],[-6,-3],[-13,11],[-26,30],[-20,31],[-6,-1],[-9,-7],[-20,-3],[-5,-7],[-3,-2],[-2,5],[-1,8],[-2,3],[-1,1],[0,1],[-1,2],[-2,1],[-1,-2],[-2,-5],[-2,-2],[-5,0],[0,1],[-1,2],[-2,1],[-1,0],[-3,-4],[-2,-7],[-1,-6],[-1,-3],[-9,1],[-3,-1],[-10,-10],[-2,-5],[0,-9],[-1,1],[-1,1],[-1,2],[-2,-4],[1,-5],[0,-2],[0,-1],[-1,-4],[1,-4],[1,-5],[1,2],[2,4],[0,3],[2,-6],[6,-12],[-1,-3],[-4,2],[-7,5],[-9,5],[-5,7],[-5,2],[-3,-9],[4,-1],[1,-5],[1,-7],[2,-3],[18,-4],[8,-5],[2,-13],[-4,-14],[-7,-9],[2,7],[1,2],[0,3],[-10,7],[-12,2],[-5,-2],[-5,-3],[-5,-1],[-3,6],[-15,-17],[-11,-17],[-14,-7],[-8,-11],[-14,-25],[-4,-4],[-7,-2],[-5,-2],[-6,-9],[-5,-5],[-5,-2],[-4,-4],[-4,-7],[-3,-2],[-1,11],[1,4],[8,25],[-4,4],[-4,-3],[-3,-5],[-5,-3],[-3,-4],[-5,-15],[-7,-2],[-6,-16],[-4,-4],[-22,4],[-11,-1],[-32,-19],[-6,0],[-7,2],[-6,1],[-11,-9],[-5,4],[-5,9],[-2,9],[-5,50],[-1,30],[4,13],[1,-6],[-1,-40],[1,-14],[2,-13],[3,-13],[7,-20],[2,-3],[4,0],[3,2],[3,6],[2,5],[-1,3],[-1,7],[2,41],[-3,13],[-9,22],[-2,8],[-1,11],[-4,11],[-5,10],[-5,7],[-32,27],[-8,14],[-1,3],[-1,4],[-1,4],[-1,5],[2,0],[4,-10],[5,-11],[7,-7],[5,-1],[-35,54],[-4,3],[-14,26],[-2,7],[2,1],[17,-6],[0,-11],[18,-10],[5,-9],[4,-12],[10,-13],[10,-8],[4,5],[2,4],[5,3],[3,3],[-1,6],[-2,2],[-5,-1],[-2,1],[-1,2],[0,4],[0,1],[-3,-3],[-3,-13],[-3,-5],[-4,4],[-2,10],[0,20],[-1,9],[-5,-5],[-2,5],[1,9],[4,7],[0,3],[-5,0],[-4,-4],[-5,-3],[-5,4],[0,-4],[0,-3],[-1,-2],[-1,-3],[-3,6],[-6,7],[-7,5],[-5,-3],[-2,7],[-2,4],[-10,9],[-2,3],[-2,4],[-3,6],[6,6],[12,27],[4,2],[7,-5],[11,24],[6,-1],[-3,14],[-3,7],[-2,3],[-3,-4],[-7,-22],[-5,-6],[-1,8],[-3,-1],[-4,-4],[-4,-3],[-3,-3],[-2,-7],[-2,-5],[-4,2],[1,11],[-3,8],[-4,10],[-3,12],[-3,-10],[-3,-5],[-9,-1],[-5,-3],[-5,-5],[-3,-8],[2,-10],[5,-7],[3,0],[3,3],[6,2],[6,-2],[3,-6],[2,-6],[4,-7],[-4,-11],[2,-7],[5,-6],[4,-8],[-2,-9],[-3,7],[-2,-1],[1,-4],[2,-5],[-6,3],[-34,45],[-23,22],[-32,31],[-36,20],[-47,25],[-34,7],[-7,9],[0,2],[1,2],[4,-3],[22,-1],[18,-8],[4,3],[2,7],[1,8],[2,6],[1,1],[1,-1],[1,-7],[2,-6],[3,-5],[13,-6],[1,2],[2,4],[1,4],[-1,2],[-5,1],[-3,4],[-1,4],[4,3],[4,-1],[4,-4],[7,-11],[14,-7],[2,-3],[5,-7],[3,4],[0,8],[-2,5],[0,3],[-9,17],[-1,9],[1,3],[2,3],[0,9],[-7,-6],[-5,-2],[-3,5],[-4,16],[-4,-7],[-6,-1],[-12,4],[-5,-2],[-12,-5],[-5,-2],[-4,-3],[-4,-5],[-4,-5],[-5,1],[-3,8],[1,9],[6,16],[-6,0],[-3,-1],[-2,-3],[-2,-7],[-3,1],[-2,6],[-3,7],[0,-6],[2,-15],[-1,-5],[-3,-4],[-3,-3],[-4,-2],[-3,-1],[-3,-1],[-3,-9],[-4,-2],[-6,2],[0,-3],[0,-9],[-3,-4],[-22,2],[-23,-4],[-6,4],[-6,-6],[-8,-2],[-15,0],[-43,-11],[-28,-14],[-14,-4],[1,7],[2,3],[2,1],[11,9],[16,8],[16,0],[5,2],[18,27],[3,-2],[6,-6],[4,-2],[0,6],[-3,7],[-6,6],[-6,3],[-5,1],[-3,2],[-3,12],[-2,2],[-2,0],[-2,1],[-2,3],[0,6],[1,8],[5,7],[9,7],[0,3],[-1,2],[-1,4],[-5,-7],[-3,8],[-3,12],[-6,7],[2,-11],[0,-6],[-1,-4],[-6,-32],[-4,-14],[-2,-20],[-2,-7],[-5,0],[-1,7],[0,10],[2,8],[-2,8],[-1,10],[-2,9],[-6,1],[0,3],[1,7],[0,2],[-4,2],[-2,5],[-2,6],[-3,4],[-4,-2],[-1,-6],[1,-19],[1,-7],[5,-15],[2,-11],[-1,-7],[-7,-23],[-2,0],[0,2],[-1,0],[-1,2],[-2,-14],[-5,-3],[-7,-1],[-5,-6],[-1,-6],[1,-15],[-1,-5],[-2,-3],[-7,-2],[-3,-2],[1,-10],[-6,-6],[-40,-15],[-5,-5],[-2,1],[-6,-3],[-3,-2],[0,4],[3,2],[2,4],[2,3],[2,3],[4,2],[10,3],[-5,4],[-5,3],[4,3],[6,-1],[4,2],[3,4],[2,6],[0,6],[-3,5],[0,4],[8,18],[5,7],[7,3],[2,3],[0,8],[-1,8],[-3,5],[-2,2],[-5,-2],[-3,2],[-2,3],[-6,7],[0,-3],[2,-6],[2,-4],[2,-3],[3,-4],[-2,0],[0,-5],[-12,-21],[-3,-10],[-2,-10],[-4,-7],[-6,-3],[-5,-4],[-2,-7],[-3,-7],[-7,-3],[-4,2],[-1,2],[-1,3],[-1,5],[-5,9],[-1,3],[-2,0],[1,-9],[2,-7],[1,-6],[-2,-10],[3,0],[3,0],[3,2],[2,3],[-7,-23],[-18,-14],[-36,-9],[-35,0],[-24,-7],[-9,0],[3,6],[6,5],[11,4],[3,3],[1,4],[2,2],[6,-10],[11,-4],[10,6],[13,7],[8,10],[-4,20],[-13,22],[-2,8],[1,6],[2,13],[0,5],[-3,4],[-1,0],[-1,-2],[-3,-9],[0,-3],[0,-1],[-4,1],[-4,1],[-2,2],[-3,3],[-2,4],[-2,5],[-2,6],[0,6],[-1,7],[0,7],[-2,7],[-2,5],[-1,3],[0,10],[3,12],[3,10],[2,7],[1,9],[-1,12],[-9,45],[-3,7],[-6,6],[-3,1],[-3,0],[-2,2],[-1,7],[0,9],[0,7],[-2,6],[-4,1],[2,-8],[0,-9],[-2,-7],[-4,-5],[2,-8],[-2,-6],[-2,-6],[-2,-10],[0,-12],[-1,-8],[-2,-6],[-3,-7],[-1,-4],[0,-5],[0,-11],[-1,-5],[-2,-6],[-1,-5],[-1,-10],[-2,-20],[-1,-11],[1,-24],[-3,-44],[-2,-7],[-3,-4],[-1,2],[-1,4],[0,2],[-6,0],[-5,1],[-3,2],[0,5],[2,13],[-8,6],[-17,7],[-7,7],[-1,-5],[0,-2],[-1,-2],[0,-3],[-2,0],[-5,13],[-5,0],[-7,-6],[-7,-3],[-1,-3],[0,-7],[0,-7],[-3,-3],[-3,-1],[-2,-4],[-1,-4],[-2,-4],[-6,-5],[-5,4],[-5,6],[-8,3],[-3,0],[-4,1],[-2,4],[-2,12],[-4,5],[-1,7],[-2,0],[-5,-15],[-13,-9],[-13,-2],[-9,2],[-29,40],[-22,12],[-7,-6],[-4,-2],[-5,0],[0,-4],[35,-8],[-5,-8],[-9,-1],[-17,1],[-4,-2],[-8,-8],[-4,-2],[-5,-1],[-19,-12],[-18,-9],[-17,-10],[-4,-1],[-5,2],[0,5],[2,5],[4,4],[-5,5],[-9,13],[-6,3],[-3,-3],[-3,-5],[-3,-6],[0,-4],[2,-2],[7,-1],[1,-2],[0,-11],[-1,-7],[-2,-6],[-25,-26],[2,-8],[-2,-6],[-4,-11],[-1,-6],[0,-5],[-1,-5],[-4,-4],[-2,4],[2,3],[-1,2],[-3,3],[-2,-5],[-4,-3],[-4,0],[-3,4],[-2,0],[-1,-2],[-2,-7],[-9,-10],[-8,-5],[-5,8],[3,0],[2,1],[3,3],[-3,7],[-4,-1],[-4,-4],[-5,-2],[-9,3],[-5,0],[-4,-3],[-2,2],[-6,4],[-2,2],[-1,5],[0,4],[1,4],[0,5],[-2,11],[-5,1],[-10,-6],[-6,1],[-10,16],[-6,4],[-3,-1],[-5,-3],[-3,0],[-13,4],[-2,6],[-6,23],[-1,5],[-3,2],[-13,20],[-10,8],[-13,7],[-13,4],[-9,-2],[-6,-9],[-7,-12],[-10,-28],[-7,-17],[-21,-34],[-6,-18],[-2,-27],[6,-22],[9,-15],[12,-9],[20,-3],[10,-12],[17,-9],[6,-1],[12,7],[18,3],[6,3],[6,4],[19,26],[8,16],[5,19],[6,-2],[3,-4],[0,-9],[2,-6],[4,-5],[4,-4],[4,-3],[2,0],[1,2],[1,5],[6,15],[2,7],[2,8],[1,8],[2,0],[2,-8],[-3,-7],[-3,-16],[-2,-5],[1,-2],[1,-1],[1,-3],[1,-3],[4,14],[0,2],[2,1],[4,-2],[1,1],[4,5],[2,3],[0,5],[0,3],[-2,1],[-1,-1],[0,-3],[-2,0],[-2,1],[-1,3],[1,4],[7,4],[4,-3],[5,-10],[3,-4],[-4,-10],[-4,-6],[-3,-7],[-1,-15],[-8,-5],[-2,-3],[-1,-6],[1,-6],[0,-5],[-3,-5],[-5,9],[-7,6],[-8,0],[-6,-5],[-3,-9],[-2,-9],[0,-10],[2,-11],[3,-11],[3,-6],[5,-2],[8,-1],[4,3],[9,8],[3,-3],[-1,-4],[-4,-9],[-1,-7],[7,-14],[5,-9],[6,-5],[6,0],[6,3],[5,6],[4,11],[4,13],[1,13],[0,21],[1,8],[4,6],[3,2],[6,3],[3,3],[2,3],[1,4],[1,4],[1,5],[1,3],[0,8],[0,3],[2,2],[2,-1],[1,-3],[4,-1],[6,-5],[2,-2],[0,-4],[-2,0],[0,-4],[1,-2],[1,-2],[2,0],[1,3],[6,8],[2,1],[4,-3],[2,-3],[-1,-5],[-3,-5],[-4,-2],[-8,2],[-3,-4],[-2,-6],[1,-5],[1,-5],[0,-5],[-2,-4],[-3,-2],[-1,-2],[4,-4],[3,0],[8,2],[4,-2],[5,-11],[-4,-9],[-5,-2],[-2,10],[-7,-8],[0,-4],[4,-10],[2,-3],[-1,0],[1,0],[0,-3],[1,0],[2,4],[3,5],[3,2],[3,-1],[1,-6],[-2,-6],[-6,-7],[0,-4],[4,2],[2,2],[2,4],[2,-2],[7,-6],[-5,-6],[-2,-2],[1,-2],[1,-1],[1,-2],[1,-3],[-4,-1],[-3,-3],[-2,-4],[-1,-4],[2,-6],[2,-8],[2,-6],[4,-4],[-3,0],[-7,3],[-2,0],[-2,-4],[-3,-11],[-2,-4],[0,4],[1,8],[0,4],[-3,0],[-2,4],[-3,10],[-2,4],[-3,4],[-4,2],[-4,0],[2,-10],[-3,-8],[-4,-6],[-4,-8],[-3,-11],[-1,-2],[-4,-3],[-2,-1],[-7,2],[-2,-1],[-5,-10],[0,-11],[2,-10],[3,-6],[5,-2],[7,1],[5,0],[4,-7],[-2,0],[-2,0],[-1,0],[-1,0],[4,-5],[9,-16],[0,-4],[-4,1],[-4,5],[-4,6],[-3,5],[-8,3],[-8,1],[-8,3],[-13,16],[-9,5],[3,-6],[7,-8],[4,-6],[-1,-1],[-3,-3],[6,-4],[0,-3],[0,-1],[0,-3],[7,-14],[-5,-4],[-23,12],[-10,-4],[7,-3],[3,-3],[2,-6],[-3,0],[-1,0],[2,-7],[8,-17],[1,-7],[2,-14],[1,-5],[3,-4],[7,-5],[7,-8],[7,2],[4,-3],[-1,-2],[0,-1],[-1,-2],[4,-3],[8,-8],[5,-1],[0,-4],[-3,-8],[-1,-8],[2,-5],[4,4],[-1,-9],[-2,-4],[-3,-1],[-2,-1],[2,-7],[3,-2],[3,-1],[17,7],[6,0],[6,-6],[0,-2],[3,1],[2,0],[2,-3],[2,0],[2,3],[3,1],[3,-1],[4,-1],[0,-3],[-2,-2],[-2,-1],[-3,0],[-3,-2],[-2,-4],[0,-4],[1,-2],[2,-1],[4,-6],[3,-1],[3,0],[4,3],[6,2],[2,1],[2,1],[3,-3],[2,-5],[1,-11],[1,-4],[4,-2],[4,4],[5,7],[2,11],[2,0],[0,-1],[0,-1],[1,-2],[1,0],[0,-4],[0,-5],[0,-7],[3,2],[1,2],[2,-6],[1,-3],[2,-5],[1,-7],[3,3],[1,2],[2,-7],[1,-6],[1,-5],[3,-3],[-1,-5],[-3,-3],[-2,-2],[-3,-2],[0,-4],[11,-6],[2,-7],[3,-5],[5,-2],[3,0],[0,2],[-1,6],[4,1],[5,-1],[3,-4],[3,-8],[-6,0],[0,-5],[3,0],[1,-2],[2,-6],[-6,4],[-2,-2],[-2,-6],[-2,0],[0,4],[0,5],[0,3],[-4,-2],[-5,-6],[-3,-9],[-1,-7],[3,1],[18,-1],[-8,-29],[-3,-7],[-1,9],[-1,7],[-3,3],[-5,1],[2,-5],[1,-6],[1,-7],[0,-7],[-3,5],[-2,3],[-1,5],[-1,-8],[-4,-8],[-7,-15],[-1,-10],[5,-20],[-3,-4],[-3,4],[-9,20],[-1,6],[-2,7],[-7,23],[-2,5],[-3,4],[-1,0],[-1,-6],[1,-6],[0,-4],[1,-4],[-2,-5],[-4,-3],[-7,-2],[-5,-3],[-3,-10],[-1,-7],[-1,-8],[-13,-36],[-5,-8],[-6,-4],[1,19],[0,6],[2,3],[5,8],[2,5],[6,14],[1,6],[0,7],[0,6],[0,3],[2,4],[6,2],[3,3],[5,20],[2,7],[2,13],[1,12],[-4,0],[-1,-4],[0,-7],[-1,-7],[-2,-2],[-2,4],[0,8],[0,14],[-1,6],[-2,1],[-2,-4],[-1,-7],[1,-7],[1,-12],[0,-7],[-3,-10],[-7,-7],[-6,-2],[-3,5],[-3,16],[0,4],[2,7],[-2,4],[-6,4],[-16,52],[3,0],[5,4],[-5,5],[-6,1],[-3,-6],[3,-12],[-17,11],[-7,1],[-7,4],[-3,7],[-1,10],[-4,5],[-7,4],[-2,-4],[-5,1],[-13,6],[-17,4],[-7,2],[7,7],[5,3],[5,6],[2,8],[2,8],[0,9],[-2,4],[-3,1],[-2,-3],[-1,-1],[-1,-1],[0,-3],[-2,7],[1,4],[2,4],[0,4],[-1,5],[-3,-1],[-6,-6],[-2,1],[-1,4],[-1,4],[-1,3],[0,1],[-1,1],[-1,2],[0,4],[1,3],[1,3],[2,2],[1,7],[0,4],[-7,3],[-2,2],[-1,-2],[0,-8],[-2,-13],[-5,3],[-9,16],[-9,-7],[-8,5],[-31,38],[-5,4],[-5,2],[-3,-2],[-1,-3],[3,-4],[-2,-5],[-4,8],[-7,18],[-4,7],[-1,-6],[-5,-10],[-1,-8],[5,-1],[2,1],[0,-4],[-4,-4],[-2,-1],[-3,0],[1,-5],[2,-2],[1,0],[1,4],[3,-4],[12,-21],[3,-3],[2,-1],[8,-1],[7,-5],[7,-7],[6,-11],[-4,-4],[-2,-3],[-1,-6],[0,-10],[1,-3],[1,-3],[1,-4],[1,-4],[-1,-16],[-1,4],[-1,4],[-1,3],[-3,1],[1,-11],[3,-10],[3,-7],[5,-4],[0,-4],[-6,-5],[-3,10],[-5,2],[-2,-6],[3,-10],[-9,0],[-1,-18],[4,-17],[10,3],[-2,-10],[-7,-23],[-1,-4],[-4,-6],[-4,-8],[-5,-7],[-4,-3],[-14,-17],[-9,-7],[-4,3],[2,3],[0,6],[0,8],[-1,7],[-2,5],[-6,10],[-1,6],[2,6],[1,6],[1,7],[1,7],[1,8],[0,7],[0,6],[-1,8],[-2,5],[-2,1],[-1,-4],[-2,-10],[-2,-7],[-1,3],[-3,10],[-10,22],[0,7],[0,3],[-4,-1],[-2,-3],[-2,-6],[0,-8],[-1,-6],[-7,-16],[0,33],[-1,7],[-6,18],[-1,3],[-1,2],[-2,4],[-3,1],[-1,-9],[-1,-9],[-2,-8],[-6,-14],[-4,9],[-3,-1],[-2,-5],[-4,-3],[-9,6],[-3,3],[4,3],[0,5],[-3,1],[-3,-1],[-1,-3],[-1,-5],[-3,1],[-2,0],[-1,-3],[0,-7],[1,-2],[7,-2],[-1,-10],[-3,-7],[-1,-6],[3,-9],[-3,-7],[-2,3],[-2,6],[-3,6],[-1,-4],[-2,-7],[-2,-13],[1,-3],[1,-1],[-2,-23],[0,-10],[-2,8],[-1,5],[-4,1],[-3,-2],[0,-3],[0,-6],[0,-5],[-4,-3],[-1,-3],[-1,-3],[-2,-1],[-2,2],[-4,4],[-5,0],[-2,-8],[-2,0],[-10,6],[-3,0],[2,7],[5,2],[3,4],[-2,11],[-5,-4],[-5,3],[-4,6],[-5,4],[1,-10],[-1,-5],[-6,-6],[-1,-2],[0,-3],[-1,-2],[-3,-1],[-13,22],[-7,9],[-7,3],[-8,-5],[0,6],[1,5],[2,3],[3,2],[-3,5],[-4,3],[-5,1],[-2,-3],[0,-9],[-3,-4],[-4,-2],[-4,1],[-3,3],[-6,11],[-3,2],[-30,9],[-15,13],[-12,21],[-3,26],[2,-9],[5,-3],[6,2],[4,6],[3,11],[2,9],[3,7],[7,1],[-1,-10],[3,-12],[7,-7],[8,5],[0,-20],[-1,-9],[-3,-8],[3,-1],[2,-3],[1,-5],[0,-7],[6,4],[3,4],[3,4],[-2,3],[-1,4],[-1,1],[0,4],[4,15],[-3,13],[-15,25],[-9,9],[-3,5],[-1,5],[1,10],[-1,3],[-1,3],[-4,1],[-2,3],[-4,14],[-1,16],[1,15],[3,13],[3,5],[3,4],[3,6],[1,10],[-1,8],[-2,5],[-4,3],[-5,0],[3,-13],[-1,-9],[-8,-12],[-2,-6],[1,-6],[1,-5],[1,-2],[-1,-6],[-4,-11],[-1,-7],[-6,8],[-12,9],[-7,4],[-6,0],[-4,2],[-1,4],[1,6],[2,5],[1,6],[-4,5],[-7,-8],[-11,-8],[-11,-3],[-7,3],[3,6],[2,12],[-1,13],[-3,11],[-1,6],[0,7],[-1,6],[-2,3],[-3,-1],[-6,-5],[-3,-2],[-8,1],[-1,6],[2,10],[1,14],[1,26],[-2,7],[-7,6],[-6,1],[-26,-3],[-5,-3],[-10,-12],[-7,-2],[-3,6],[0,8],[-1,5],[-2,5],[1,11],[3,11],[3,5],[2,-4],[2,-7],[3,-2],[0,11],[0,8],[-2,6],[-3,3],[-13,4],[-4,0],[-7,-11],[-4,2],[-2,4],[-4,2],[-4,0],[-1,-3],[1,-5],[-2,-8],[-3,-4],[-24,-16],[-4,-4],[-6,-13],[-3,-4],[-4,0],[3,5],[1,7],[-2,6],[-5,3],[-1,-2],[-2,-8],[-2,-2],[-1,0],[-6,8],[1,-11],[2,-13],[3,-12],[2,-5],[2,1],[4,6],[7,2],[3,2],[2,0],[2,-3],[-8,-10],[-3,-2],[8,-30],[1,-11],[2,0],[5,6],[6,4],[7,0],[3,-6],[-8,-3],[-4,-3],[-1,-6],[6,-4],[-4,-7],[-8,0],[-12,-1],[-10,-6],[-19,-18],[-10,-7],[-10,0],[-42,16],[-7,1],[-7,2],[-9,3],[-38,20],[-31,23],[-16,14],[-17,15],[-31,24],[-19,11],[-29,13],[-15,2],[-15,-5],[-11,-4],[-11,3],[-9,1],[-10,1],[-12,-1],[-17,-3],[-23,-8],[-16,-4],[-11,-3],[-8,-7],[-7,-5],[-8,-5],[-2,-5],[-6,13],[-8,16],[-4,24],[2,10],[8,7],[10,3],[11,19],[3,29],[3,33],[-2,10],[-6,4],[-8,1],[-4,-2],[-6,2],[-1,-11],[-3,-10],[-15,-50],[-4,-36],[1,-17],[16,-32],[5,-18],[-5,-10],[-3,-1],[-8,5],[-34,1],[-6,-1],[-12,-7],[-8,-7],[-23,-24],[-33,-24],[-89,-74],[-10,-14],[-15,-32],[-5,-5],[-7,2],[-1,6],[2,8],[23,41],[7,7],[7,2],[3,2],[3,3],[2,2],[8,16],[3,4],[3,2],[14,-2],[5,1],[3,5],[2,11],[0,8],[-3,-4],[-4,-6],[-5,4],[-5,8],[-4,3],[-13,-13],[-24,-8],[-12,-6],[-5,-3],[-7,4],[-2,6],[1,4],[3,-3],[3,1],[3,10],[4,11],[6,19],[3,23],[3,27],[-1,13],[-1,10],[-1,10],[-2,5],[-2,10],[-4,3],[-3,0],[-5,-3],[-3,-2],[-6,-1],[-3,6],[-6,-8],[0,-11],[-6,-19],[-4,-21],[-4,-10],[-8,-5],[-4,-1],[-3,7],[-2,13],[-3,3],[-5,6],[-9,7],[-4,2],[-4,10],[-2,7],[-5,1],[-3,-22],[4,-3],[4,-2],[2,-4],[3,-1],[2,-1],[3,-4],[4,-7],[-7,-9],[-1,-9],[1,-11],[7,-12],[-1,-7],[-5,-9],[-3,-6],[-2,-16],[11,-17],[21,-10],[-1,-5],[-3,-7],[-3,2],[-4,-4],[-4,-2],[0,-4],[4,-6],[1,-10],[1,-8],[7,-1],[0,5],[-1,2],[0,1],[0,1],[1,1],[0,2],[0,1],[8,-25],[3,-4],[3,-1],[13,-11],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-4,6],[-6,2],[-5,-2],[-2,-12],[-2,-13],[-3,-11],[-4,-5],[-5,7],[-1,0],[-2,-8],[-2,-5],[-6,-8],[-1,0],[-2,1],[-1,-1],[0,-1],[0,-5],[0,-2],[-18,-39],[-7,-9],[-7,-9],[-3,12],[-3,3],[-5,1],[-4,5],[2,-5],[3,-16],[-2,-13],[0,-13],[2,-24],[0,-10],[0,-8],[-2,-8],[-20,-30],[-8,-8],[-15,-32],[-15,-24],[-4,-4],[-6,-1],[-5,-4],[-18,-25],[-32,-39],[-12,-11],[-12,-5],[-13,-2],[-13,1],[-10,-2],[-38,-25],[2,-8],[0,-6],[-1,-5],[-1,-10],[0,-2],[-1,-3],[1,-3],[2,-1],[2,0],[2,1],[0,2],[38,41],[11,8],[10,1],[-33,-40],[-18,-17],[-28,-13],[-17,-25],[-16,-10],[-18,-21],[-9,-7],[7,15],[9,13],[40,38],[6,3],[3,4],[1,9],[-2,10],[-5,5],[-5,-2],[-11,-11],[-4,-3],[-5,-2],[-17,-15],[-13,-7],[-6,0],[1,9],[5,5],[13,3],[4,7],[2,0],[0,4],[-5,1],[-4,-2],[-3,-2],[-4,-1],[-6,1],[-1,5],[1,6],[7,20],[1,6],[-2,2],[-6,0],[-4,-1],[-4,-3],[-6,-8],[2,9],[-6,-6],[-7,-17],[-6,-6],[-5,-3],[-1,1],[0,4],[-2,6],[-8,15],[-1,6],[3,6],[0,9],[-1,9],[-4,8],[-2,-3],[-3,-3],[-1,-2],[-5,15],[-1,5],[-1,0],[0,-9],[1,-10],[2,-9],[2,-5],[2,2],[3,3],[2,2],[1,-5],[-1,-5],[-2,-4],[-2,-2],[-1,-2],[0,-5],[1,-4],[1,-5],[-1,-5],[-1,-8],[4,-5],[9,-5],[-16,-19],[-9,-7],[-9,-2],[4,7],[5,1],[5,2],[1,12],[-2,11],[-11,-14],[-2,15],[-1,5],[-3,-1],[-3,-2],[-3,2],[-2,1],[-4,0],[-1,1],[-1,4],[-1,4],[1,4],[-1,4],[-1,9],[0,4],[-1,4],[-3,5],[-3,5],[-4,2],[-3,-1],[-4,-4],[-1,4],[-1,2],[-4,3],[1,-15],[1,-10],[2,-10],[8,-20],[1,-4],[1,-6],[0,-6],[-2,-14],[0,-4],[2,-7],[3,1],[2,6],[4,-3],[8,-10],[6,-5],[1,-3],[2,-4],[2,-5],[2,-11],[-14,-13],[-3,-1],[2,-10],[4,0],[5,5],[3,5],[9,4],[10,-7],[8,-14],[1,-14],[-20,-20],[-5,-3],[-10,-11],[-4,-2],[-30,-32],[-5,7],[-5,-2],[-3,5],[-1,9],[-1,22],[-1,6],[-2,4],[-5,1],[-2,2],[0,5],[-1,5],[0,4],[-2,2],[-3,4],[-1,2],[-5,15],[-2,4],[-3,-3],[-2,-4],[-1,-6],[1,-4],[2,2],[7,-10],[2,-7],[1,-9],[-2,-6],[-5,4],[-6,8],[-4,5],[-4,-8],[5,-17],[8,-18],[4,-15],[-2,-10],[-2,-10],[-1,-11],[5,-22],[-3,-8],[-10,-12],[-5,-9],[-9,-25],[-5,-6],[-9,-4],[-4,-4],[3,21],[2,10],[4,9],[-4,11],[2,11],[3,10],[-1,9],[-3,0],[-4,-9],[-6,-20],[3,-6],[1,-8],[-1,-10],[-3,-12],[-4,-12],[-3,-3],[-10,7],[1,1],[1,2],[1,2],[1,3],[-2,6],[1,18],[-2,8],[-1,0],[-5,-12],[-9,-12],[-11,-8],[-8,-4],[2,6],[-2,5],[-4,2],[-3,-1],[-3,-5],[-1,-7],[1,-5],[5,-3],[-12,-22],[-5,-13],[2,-6],[6,-1],[6,-4],[3,-7],[3,-8],[0,-7],[-1,-5],[0,-3],[3,2],[2,5],[2,6],[1,8],[1,8],[3,10],[13,10],[5,10],[-1,3],[-1,2],[1,1],[1,1],[2,1],[3,-4],[0,-7],[-1,-23],[0,-8],[0,-4],[0,-3],[-3,-5],[-2,-5],[-5,-18],[-1,0],[0,1],[0,1],[-1,2],[-10,-35],[-22,-59],[-6,-9],[-7,2],[0,4],[5,0],[-3,10],[-3,9],[-4,6],[-5,3],[-6,-1],[-12,-10],[-7,0],[2,3],[1,2],[0,2],[1,4],[-7,-3],[-16,1],[-7,-1],[-2,-2],[-1,-6],[-1,0],[-2,0],[-2,2],[-2,2],[0,1],[-1,2],[0,3],[-3,1],[-1,0],[-4,-3],[4,-15],[5,-8],[6,-2],[9,4],[3,-3],[3,-1],[4,3],[2,5],[1,-9],[-2,-17],[1,-6],[5,-21],[4,-8],[25,-20],[2,-8],[-1,-9],[-2,-10],[-4,-8],[-1,-4],[-1,-7],[-1,-13],[-1,-5],[-8,-30],[-5,-26],[-1,-12],[-1,-6],[-4,-9],[-11,-61],[-1,-13],[-3,-4],[-18,-14],[-6,-13],[-4,-3],[-5,7],[10,11],[3,6],[-1,1],[-1,2],[0,2],[-1,3],[5,-1],[3,1],[2,2],[2,5],[0,1],[-1,1],[-2,3],[0,-2],[-2,-1],[-3,2],[-1,7],[1,11],[1,11],[-5,-4],[-7,-12],[-3,-4],[2,-8],[-3,-2],[-2,-3],[-5,-7],[-1,8],[-3,-2],[-5,-14],[1,-4],[-1,-4],[-1,-3],[-3,-1],[-4,1],[-1,4],[0,5],[-1,6],[-22,61],[-7,13],[-9,11],[1,-14],[10,-18],[3,-13],[-4,0],[10,-19],[3,-12],[-6,-5],[1,-5],[0,-1],[1,-2],[5,4],[5,-2],[1,-6],[-3,-8],[-6,-7],[-7,1],[-7,6],[-7,0],[4,-11],[13,-7],[10,4],[5,0],[5,-5],[3,-13],[9,-1],[11,-4],[11,-2],[5,7],[7,7],[10,10],[4,-5],[0,-8],[-2,-7],[-4,-2],[1,-7],[0,-11],[0,-10],[-1,-5],[-3,-3],[1,-8],[2,-9],[0,-8],[-2,-7],[-3,-5],[-4,-3],[-5,-1],[0,-3],[3,-7],[2,-9],[-4,-6],[4,-15],[0,-10],[-4,-5],[-16,-2],[-2,-3],[-1,-6],[1,-26],[1,-10],[3,-9],[3,-7],[11,-9],[4,-8],[-4,-11],[-12,22],[-3,2],[-2,-6],[-1,-11],[-1,-12],[0,-8],[2,-7],[3,-2],[4,0],[5,-3],[3,-6],[2,-9],[2,-10],[2,-26],[6,-38],[3,-39],[6,-39],[2,-19],[-1,4],[-2,5],[-1,3],[-1,-8],[-3,-4],[-7,-4],[10,-6],[-1,-6],[-1,-9],[-1,-16],[-1,-6],[1,-2],[3,0],[5,-3],[2,-6],[0,-8],[2,-8],[2,-1],[6,-1],[1,-1],[1,-5],[-3,-12],[1,-4],[2,0],[1,2],[2,3],[0,2],[2,3],[2,-3],[1,-4],[-2,-3],[-2,-6],[-2,-12],[0,-13],[2,-5],[3,1],[2,2],[2,0],[2,-3],[2,-7],[-1,-4],[-2,-4],[-1,-5],[0,-7],[2,-6],[4,-12],[-2,-12],[0,-18],[1,-16],[3,-7],[2,-1],[2,-2],[3,-3],[3,-1],[8,-1],[3,-1],[3,-3],[-1,-9],[-1,-5],[-3,-1],[-4,3],[-1,-10],[-3,-15],[0,-8],[1,-9],[1,-4],[2,-2],[3,-3],[1,1],[0,2],[1,3],[7,6],[3,4],[2,6],[1,10],[0,10],[2,9],[3,4],[3,-1],[3,-16],[0,-17],[1,-27],[0,-5]],[[23017,65847],[-19,-3],[-13,2],[-4,-2],[0,-10],[-6,-9],[-6,-4],[-5,7],[-6,-9],[-1,-3],[0,-11],[2,-14],[0,-11],[-5,-5],[-3,1],[-1,4],[-1,5],[-2,3],[-2,0],[-1,-3],[0,-4],[-1,-2],[-6,2],[-3,9],[-1,9],[-2,4],[-6,1],[-5,1],[-4,4],[-5,7],[-13,24],[-8,7],[-3,8],[-2,10],[-3,8],[-5,8],[-5,4],[-5,3],[-25,3],[-3,2],[-1,9],[-5,3],[-22,0],[-17,-4],[-16,4],[-4,0],[-9,-9],[-6,-4],[-2,3],[-3,14],[-5,3],[-13,-7],[-10,1],[-10,6],[-22,21],[-3,6],[-6,19],[-2,4],[-7,0],[-3,2],[0,6],[2,12],[-8,4],[-9,10],[-7,5],[-5,-11],[-5,14],[-8,6],[-9,4],[-8,9],[-16,-13],[-4,2],[-3,4],[-6,10],[-2,1],[-3,1],[0,3],[3,8],[-2,5],[-4,3],[-3,1],[-4,-1],[1,10],[-3,7],[-9,12],[-5,9],[-1,3],[-3,0],[-1,-3],[-3,-1],[-3,4],[-1,-4],[-3,-1],[-2,1],[-3,4],[-7,-3],[-10,15],[-4,-9],[-2,10],[-3,3],[-7,0],[-4,-4],[-2,0],[-2,1],[-2,5],[-1,2],[-5,0],[-6,-1],[-5,2],[-6,9],[0,6],[1,8],[3,8],[1,6],[-1,8],[-3,17],[-3,8],[-7,3],[-7,5],[-2,14],[-2,30],[-1,9],[-11,63],[-3,28],[-4,26],[-4,10],[-5,9],[-4,10],[-9,21],[-3,8],[-11,17],[-2,5],[-2,7],[0,12],[0,6],[-2,5],[-2,1],[-3,0],[-2,2],[-4,7],[-1,3],[-5,13],[5,20],[1,5],[-1,5],[-1,4],[-1,4],[-1,2],[1,12],[4,26],[1,11],[-1,12],[-2,10],[-3,10],[-4,9],[0,1],[-4,3],[0,2],[-1,5],[0,2],[-2,2],[-8,6],[2,6],[5,10],[1,6],[0,6],[1,8],[1,11],[3,14],[0,7],[0,22],[0,3],[-1,8],[-1,5],[-2,2],[-4,1],[-2,3],[0,6],[1,13],[0,24],[-2,9],[-6,10],[-5,5],[-5,3],[-2,2],[-3,12],[-3,2],[-3,-1],[-6,-7],[-3,0],[-1,3],[-3,10],[-2,3],[-10,0],[-1,2],[-2,4],[-3,11],[-2,2],[-1,6],[-1,7],[-1,5],[-2,2],[-5,3],[-2,3],[-4,8],[-2,8],[-3,5],[-1,1],[-7,2],[0,4],[-3,6],[-4,6],[-1,1],[0,6],[0,13],[0,5],[-2,5],[-3,3],[-2,4],[-1,6],[3,9],[1,7],[-1,2],[-4,4],[-5,9],[-5,11],[-2,9],[3,8],[-4,5],[-5,2],[-5,3],[-4,9],[-2,8],[-2,8],[-2,10],[0,3],[1,4],[0,3],[-2,2],[-4,6],[-4,8],[0,4],[-1,8],[-2,13],[-5,10],[-27,26],[-5,2],[-2,3],[-1,8],[0,9],[-1,5],[-2,1],[-8,3],[-5,6],[-4,10],[-3,11],[2,11],[0,10],[-5,13],[-8,20],[-2,21],[-1,21],[-1,4],[-3,3],[-2,5],[0,6],[1,5],[8,8],[-11,8],[-6,8],[-3,12],[-1,6],[1,15],[-2,5],[-2,5],[-7,5],[-3,5],[0,10],[-10,25],[-3,13],[-7,57],[-2,6],[-1,3],[-1,6],[-2,4],[-1,2],[-4,0],[-2,2],[-1,4],[2,7],[-1,5],[-2,2],[-4,4],[-1,2],[-1,9],[-4,7],[-3,4],[-1,4],[-1,8],[0,6],[-1,5],[-2,4],[2,13],[-1,12],[-5,23],[-3,35],[-2,8],[-2,2],[-4,1],[-3,1],[-1,4],[-1,3],[-15,23],[-2,8],[2,12],[-6,21],[-3,8],[-6,8],[-13,12],[-2,3],[-6,14],[-6,10],[-20,18],[-3,3],[-3,5],[-2,6],[-2,6],[-1,8],[-1,17],[-2,10],[-9,6],[-18,11],[-8,8],[-6,12],[-2,4],[-3,1],[-3,1],[-3,5],[-1,8],[3,18],[-1,15],[-4,8],[-7,-2],[-7,-7],[-4,-8],[-3,2],[0,9],[2,12],[1,10],[-3,3],[-7,-1],[-4,4],[-2,4],[-2,6],[-3,14],[-2,10],[-5,14],[-2,7],[0,7],[1,8],[-3,-2],[-3,-2],[-3,-1],[-3,1],[-2,2],[-2,8],[-3,2],[-5,-4],[-4,-7],[-5,-5],[-6,4],[1,4],[3,11],[0,3],[-1,5],[-2,4],[-2,2],[0,-3],[-2,-11],[-3,-6],[-4,-3],[-14,-4],[-45,12],[-3,4],[-1,6],[-2,0],[-3,-4],[-9,0],[-6,3],[-2,1],[-3,-2],[-1,-3],[-3,-2],[-2,-1],[-3,-1],[-4,4],[-4,6],[-4,2],[-4,-7],[-8,3],[-26,-5],[-10,8],[-3,5],[-13,13],[-10,2],[-4,3],[-1,11],[-5,-2],[-4,5],[-3,7],[-6,2],[-2,-3],[-3,-11],[-3,-2],[-3,-1],[-3,-4],[-1,-6],[0,-16],[-1,-6],[-7,-18],[0,-2],[-31,5],[-2,-2],[-2,-7],[-3,-5],[0,-1],[-1,-1],[-2,-1],[-2,1],[-1,7],[-1,1],[-5,-4],[-10,-11],[-5,-2],[-10,1],[-2,-1],[-3,-4],[0,-4],[-1,-5],[0,-7],[-8,-27],[-2,-8],[-1,0],[-4,-16],[0,-2],[-3,-10],[-2,-3],[-3,-3],[1,-8],[0,-2],[-3,-2],[2,-9],[-2,-4],[-3,-4],[-8,-43],[-2,-6],[-2,-5],[0,-9],[0,-6],[2,-7],[-1,-7],[-2,-8],[0,-3],[2,-9],[0,-2],[-3,-3],[-2,0],[-1,0],[-2,-1],[-3,-5],[-2,-5],[0,-6],[-1,-11],[-3,-23],[0,-7],[2,-5],[6,-9],[3,-6],[-3,-3],[-8,-3],[-12,-17],[-2,-5],[-6,6],[-5,-9],[-8,-30],[-2,-6],[-2,-4],[-11,-11],[-3,-4],[-1,-5],[-2,-11],[-1,2],[-2,-2],[-2,-20],[-3,-16],[-7,-7],[-11,3],[-15,8],[-17,-1],[-4,5],[1,9],[1,3],[-5,-2],[-1,-2],[-3,10],[-3,-1],[-2,-5],[-4,-4],[-4,3],[-8,14],[-2,3],[-3,2],[-12,12],[-14,27],[-2,5],[-1,4],[-1,4],[-2,3],[-2,1],[-8,-1],[-24,12],[-8,8],[-14,21],[-2,2],[-3,2],[-2,3],[2,13],[-1,6],[-3,5],[-3,1],[-19,3],[-18,6],[-25,17],[-11,11],[-13,27],[-10,9],[-6,10],[-9,19],[-5,21],[-2,3],[-2,2],[-7,9],[-4,11],[-7,3],[-8,0],[-5,-5],[-3,8],[-23,27],[-2,2],[-1,2],[-2,5],[-1,5],[-1,4],[-3,7],[-14,17],[-4,8],[-1,6],[0,6],[0,9],[-2,8],[-5,17],[-3,25],[-3,9],[-5,7],[-5,11],[-1,5],[-4,28],[-5,12],[-2,6],[0,3],[-4,8],[-1,3],[-1,6],[1,9],[0,5],[-5,33],[-1,14],[1,12],[4,21],[1,14],[0,21],[0,13],[-4,10],[-6,21],[-2,4],[-5,5],[-2,3],[-4,11],[-3,17],[-4,14],[-5,6],[-2,3],[0,6],[-1,6],[0,5],[-2,4],[-4,4],[-2,5],[-2,6],[-1,3],[1,4],[0,9],[-1,6],[-2,8],[-1,6],[1,4],[1,7],[0,4],[-1,3],[-4,5],[-1,6],[-1,12],[0,6],[-4,10],[-8,18],[-2,7],[-2,2],[-8,2],[-3,2],[-2,5],[-1,6],[0,7],[-1,6],[-3,9],[-6,8],[-6,5],[-5,2],[-5,4],[-13,29],[-2,-4],[-3,7],[-2,2],[-1,-1],[0,6],[-1,4],[-2,1],[-3,1],[-3,2],[-3,8],[-2,2],[-1,1],[-4,2],[-1,-1],[-1,-4],[-2,-2],[-1,0],[-3,3],[-2,3],[-1,3],[-2,3],[-16,15],[-8,4],[-3,5],[-11,26],[-23,32],[-9,20],[-7,7],[-3,8],[-4,21],[-3,12],[-4,6],[-5,5],[-6,8],[-6,14],[-2,2],[-5,4],[-21,25],[-3,7],[-2,11],[-21,46],[-5,8],[-5,3],[0,2],[-3,4],[-6,6],[-1,5],[-2,10],[-2,5],[-4,6],[-12,15],[-5,3],[-7,2],[-5,4],[-9,10],[-12,6],[-6,6],[-3,7],[-10,10],[-1,4],[-1,3],[0,3],[-2,6],[-2,9],[-12,26],[-3,10],[-7,40],[-6,20],[-7,21],[-9,17],[-11,8],[-12,-3],[-6,3],[-2,4],[-1,2],[-3,3],[-12,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,1],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,1],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-7,0],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-7,0],[-4,0],[-12,0],[-6,0],[-6,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-12,0],[-11,0],[-12,0],[-16,0],[-17,4],[-8,5],[-14,10],[-14,10],[-15,10],[-14,9],[-14,10],[-15,10],[-14,10],[-14,10],[-114,74],[-113,75],[-114,75],[-114,75],[-114,75],[-113,75],[-114,75],[-114,75],[-10,7],[-1,1],[3,6],[4,25],[1,13],[-3,12],[5,15],[1,4],[6,10],[2,5],[4,10],[2,10],[2,15],[0,1],[-11,-2],[-21,-3],[-20,-4],[-21,-3],[-20,-3],[-20,-4],[-21,-3],[-20,-3],[-21,-3],[-20,-4],[-20,-3],[-21,-3],[-20,-4],[-21,-3],[-20,-3],[-21,-3],[-20,-4],[-20,-3],[-21,-3],[-20,-4],[-21,-3],[-20,-3],[-21,-4],[-20,-3],[-20,-3],[-21,-3],[-20,-4],[-21,-3],[-20,-3],[-21,-4],[-20,-3],[-20,-3],[-23,-4]],[[17465,69735],[0,5],[-2,17],[0,15],[-1,13],[-4,18],[-4,14],[-7,8],[-9,1],[-1,7],[2,6],[4,4],[4,0],[1,-4],[5,-5],[1,-9],[3,-6],[3,-12],[3,-13],[2,-14],[3,-4],[3,4],[0,8],[-4,19],[0,11],[-4,11],[-4,3],[-5,7],[-3,5],[0,7],[-9,-1],[-4,-4],[-4,-7],[0,-22],[-2,3],[-3,10],[-1,6],[1,27],[0,10],[-1,12],[-6,23],[-1,9],[3,8],[2,-3],[2,4],[1,19],[-1,14],[-4,50],[-2,8],[-2,10],[-3,7],[-7,43],[-11,34],[-41,100],[-24,33],[-16,30],[-4,7],[-13,13],[-5,6],[-12,26],[-13,19],[-16,19],[-14,9],[-13,16],[-31,57],[-8,7],[-9,9],[-6,3],[-3,-4],[-4,4],[-3,0],[5,-7],[1,-6],[1,-6],[-3,0],[-2,5],[0,4],[-2,-3],[-1,4],[-2,13],[-3,-1],[-3,-1],[-2,-2],[-2,1],[-1,-3],[-3,-4],[-2,2],[1,-4],[-1,-7],[1,-9],[0,-5],[-2,1],[0,-3],[1,-2],[-1,0],[-3,-3],[-3,4],[-4,3],[-4,3],[-7,4],[-2,5],[-3,1],[-3,2],[-2,-2],[-2,-1],[-1,3],[-2,1],[-1,8],[-2,5],[-2,6],[2,6],[3,4],[1,4],[3,5],[1,7],[0,11],[-1,5],[-1,4],[-3,13],[-4,19],[-5,26],[-11,29],[-9,14],[-8,10],[-4,-1],[-3,2],[-4,-2],[-2,1],[-4,0],[-1,-2],[-8,1],[-8,1],[-3,0],[0,-3],[-1,-2],[-3,1],[-4,-2],[-7,2],[-5,0],[-2,-4],[-5,-1],[-3,-1],[-1,-1],[0,-3],[-1,-2],[0,-3],[-1,0],[-2,-1],[0,-2],[-1,-1],[-6,12],[-7,8],[-3,0],[-3,2],[-5,1],[-3,1],[-3,0],[-2,2],[-2,1],[-2,-1],[-5,2],[-6,7],[-6,4],[-3,0],[-8,10],[-7,2],[-8,8],[-3,2],[-4,2],[-1,0],[0,-2],[2,-1],[3,-1],[-1,-3],[-6,4],[-7,9],[-12,15],[-2,1],[-1,1],[1,2],[-1,1],[-1,1],[0,-2],[-1,-2],[-1,0],[-1,5],[-1,2],[-1,1],[-1,5],[-2,6],[-1,8],[-3,8],[-2,8],[-1,5],[1,4],[-1,1],[-1,6],[-1,6],[-3,8],[-2,4],[-2,-1],[-2,-1],[-3,3],[-2,3],[-2,2],[-3,3],[-3,8],[-2,4],[-2,3],[-2,2],[-1,1],[-2,-1],[-1,-1],[-1,1],[-1,2],[-2,5],[-3,3],[-2,4],[-3,6],[-2,2],[-2,-1],[-3,8],[-2,3],[-1,1],[-1,1],[-1,-2],[-1,0],[-1,1],[-1,2],[-1,2],[-2,1],[-2,1],[-4,1],[-1,2],[-3,3],[-2,0],[-5,9],[-2,3],[-2,-1],[-1,-1],[-1,0],[-1,0],[-4,4],[-6,1],[-1,-1],[-2,0],[-3,-2],[-5,1],[-6,-2],[-3,-2],[0,-1],[-1,-2],[0,-1],[-2,-2],[-1,-1],[-1,-2],[-4,0],[-3,1],[-3,3],[-3,2],[-10,7],[-4,1],[-1,-1],[-7,-1],[-1,0],[-1,-1],[0,-2],[-1,-2],[0,-2],[-3,3],[-4,0],[-2,0],[-1,-1],[-3,7],[-3,1],[-6,8],[-3,1],[-3,0],[-2,-1],[-2,1],[-1,2],[-4,5],[-2,1],[-2,0],[-5,7],[-4,-2],[-4,3],[-15,-2],[-12,8],[-10,-2],[-34,-1],[-37,-10],[-5,0],[-3,-5],[-5,5],[-5,24],[-5,18],[-7,8],[-6,3],[-6,8],[-5,0],[-7,-1],[-4,6],[-3,7],[0,7],[1,9],[3,16],[5,18],[2,12],[1,15],[-4,13],[-3,10],[-3,9],[3,14],[2,22],[1,15],[1,8],[-2,6],[-3,2],[-2,5],[-2,9],[-2,4],[-4,-2],[-1,5],[1,15],[7,41],[2,20],[1,23],[-1,20],[-3,19],[-2,3],[-1,3],[-4,0],[-2,2],[-5,9],[-3,3],[-5,1],[-7,1],[-1,-3],[0,-5],[-1,-3],[-2,1],[-7,11],[-17,14],[-7,13],[-3,6],[-3,9],[1,14],[2,8],[5,26],[2,19],[2,-9],[-1,-12],[1,-3],[3,1],[1,5],[3,2],[-2,4],[-1,2],[-3,13],[-2,4],[-2,-2],[-1,20],[-3,9],[-2,8],[-6,9],[-10,-2],[-5,7],[-5,2],[-7,0],[-9,17],[-8,17],[-10,19],[-8,30],[-3,2],[-4,14],[-3,5],[-5,3],[-2,-1],[1,-3],[-1,-1],[-6,9],[-5,2],[-5,3],[-5,5],[-5,0],[0,10],[-3,9],[-3,6],[-2,4],[-2,30],[-4,13],[-8,14],[-6,7],[-6,13],[-1,6],[-3,3],[-5,6],[-6,10],[0,10],[-2,6],[-2,11],[-1,10],[-2,10],[0,10],[-5,12],[-4,4],[-6,3],[-7,3],[-4,10],[-3,8],[0,8],[-4,5],[-3,7],[-3,17],[-4,7],[-4,11],[-6,12],[-4,5],[-3,6],[-7,10],[-7,8],[-7,8],[-5,5],[-3,-1],[-4,4],[-3,6],[-2,6],[-1,8],[-2,4],[-3,2],[-3,4],[-2,6],[-5,3],[1,5],[0,9],[0,2],[1,4],[-2,3],[-1,5],[0,6],[-1,6],[0,3],[1,4],[-1,2],[-1,5],[-1,4],[-1,7],[0,5],[0,4],[-3,11],[-1,4],[0,5],[-2,3],[-2,10],[0,4],[1,3],[0,3],[-1,2],[1,4],[-2,1],[-2,2],[0,3],[2,1],[3,-1],[3,1],[0,4],[-1,4],[-1,4],[1,1],[0,5],[-1,4],[-1,-2],[-1,3],[-1,1],[-1,-1],[-1,-2],[-5,5],[-2,4],[-1,5],[2,0],[2,1],[0,4],[1,5],[1,7],[1,1],[2,-2],[1,4],[1,5],[0,5],[1,3],[3,-1],[2,-2],[0,-3],[2,-3],[3,-2],[2,-5],[2,-6],[3,0],[2,3],[5,7],[4,10],[3,12],[4,16],[1,21],[1,11],[4,-4],[8,-5],[0,5],[-1,3],[-1,2],[-2,-1],[-2,0],[-2,3],[-1,2],[-2,3],[1,17],[2,16],[-4,17],[-15,55],[-8,16],[-5,8],[-9,6],[-4,-5],[-3,-6],[-3,-3],[-5,3],[-4,1],[-4,0],[-1,-1],[0,-2],[0,-3],[-3,1],[-3,-3],[-4,0],[-6,2],[-6,2],[-5,5],[-4,1],[-2,6],[-3,1],[-6,11],[-9,14],[-4,3],[-1,9],[-8,12],[-3,10],[-4,12],[-3,4],[-2,4],[-3,4],[-3,-1],[-2,-2],[-3,4],[0,9],[-6,10],[0,7],[-3,7],[-4,5],[-3,-1],[-2,8],[-1,13],[-1,6],[-2,4],[0,11],[2,10],[1,15],[1,27],[1,12],[-3,2],[0,7],[-5,19],[-5,18],[-1,23],[-4,12],[-4,3],[-2,0],[-2,-1],[-1,-3],[-1,-1],[0,5],[-3,5],[-3,12],[1,9],[1,9],[-2,8],[1,9],[-1,2],[1,1],[1,2],[2,0],[1,2],[1,3],[1,12],[1,23],[-2,22],[-2,13],[-2,16],[0,17],[2,3],[3,1],[3,2],[3,12],[3,-3],[13,3],[2,0],[3,-5],[3,-7],[0,-7],[2,-3],[0,-6],[1,-5],[1,-4],[2,-5],[3,-6],[-2,-9],[-4,1],[0,-5],[-4,1],[1,-19],[2,-1],[0,-5],[2,-7],[-2,-5],[-1,-6],[0,-3],[6,-3],[3,-8],[-2,-3],[-3,3],[-1,-6],[3,-2],[1,-4],[8,-2],[4,0],[0,-4],[5,-4],[4,-1],[7,-2],[2,-2],[2,-9],[1,-4],[3,-1],[6,-3],[3,-3],[0,-4],[-3,-6],[4,-1],[3,-5],[3,-2],[4,0],[3,-4],[4,0],[3,-7],[3,-11],[3,-7],[5,-4],[7,0],[5,2],[2,7],[-2,3],[-2,0],[-2,2],[1,3],[0,4],[0,3],[-2,5],[-1,3],[-2,1],[-7,0],[-4,8],[-2,15],[-9,21],[-1,22],[-3,29],[-7,16],[-1,5],[-4,6],[-3,-6],[-10,14],[-3,12],[4,3],[10,-3],[-1,9],[-2,1],[-1,-3],[-4,0],[-8,4],[-4,1],[-2,2],[-2,3],[0,4],[-2,1],[-1,-3],[-6,4],[1,8],[1,3],[0,2],[-1,0],[-3,-1],[-1,3],[2,2],[3,0],[2,4],[-3,2],[2,2],[5,1],[2,3],[-1,5],[-1,14],[-4,-2],[0,5],[2,1],[-1,9],[-4,13],[-6,-1],[-4,-1],[-8,2],[1,8],[-2,4],[-4,3],[-3,9],[-2,10],[4,-2],[4,-3],[1,8],[8,6],[2,5],[-3,9],[1,5],[6,-4],[3,-1],[3,1],[2,3],[5,0],[6,9],[0,8],[4,4],[4,6],[6,1],[6,-3],[5,-3],[5,-12],[6,-2],[6,3],[12,11],[8,3],[14,2],[18,-7],[14,-2],[3,-4],[11,-7],[16,-4],[8,2],[8,-5],[6,-1],[3,0],[2,5],[-3,4],[-5,-1],[-3,2],[1,4],[4,2],[3,5],[2,0],[1,2],[1,6],[1,6],[0,5],[1,5],[3,1],[7,0],[3,2],[0,3],[2,2],[3,1],[3,-3],[4,-2],[1,-5],[1,-5],[-2,-3],[-1,-4],[-4,-2],[-3,1],[-3,0],[-2,-6],[-1,-4],[3,-5],[3,-8],[2,-3],[2,3],[3,4],[1,4],[1,7],[0,6],[0,3],[3,2],[3,-5],[3,-2],[2,-2],[4,-6],[3,0],[4,-6],[5,-5],[6,-10],[4,-5],[0,4],[-4,10],[-4,10],[-3,4],[-5,3],[-3,3],[-3,0],[-1,4],[-2,2],[-2,-1],[-2,1],[-4,10],[-2,9],[-4,3],[-5,2],[-6,0],[-2,-1],[-2,-5],[-1,-1],[-2,1],[-2,2],[-2,1],[-4,-4],[-2,-6],[-1,-5],[0,-8],[-3,-6],[-5,-6],[-6,-7],[-7,1],[-4,3],[-1,5],[0,5],[1,5],[3,5],[3,2],[3,2],[3,2],[6,8],[3,7],[5,11],[1,14],[-2,0],[-4,-15],[-5,-8],[-7,-12],[-5,-5],[-10,-10],[-6,4],[-6,2],[-5,-1],[-1,-4],[-4,-4],[-5,-3],[-5,0],[-3,3],[2,3],[1,2],[2,8],[-13,0],[-4,-3],[-5,5],[-7,9],[8,7],[-1,9],[-3,7],[-5,1],[-6,-1],[-4,-2],[-3,-4],[-1,-3],[1,-5],[-3,-8],[-5,-9],[-8,-15],[-1,-5],[-1,-5],[-8,1],[-2,6],[-5,6],[-2,-2],[-1,0],[-3,2],[-5,1],[-6,4],[-5,-2],[-2,3],[-3,7],[-6,13],[-26,27],[-4,-12],[-7,-6],[-4,1],[-2,-4],[-13,-3],[5,-5],[1,-17],[-3,-16],[-3,-10],[-1,-5],[0,-4],[4,-3],[6,-4],[5,-4],[2,-8],[-1,-3],[-3,1],[-2,1],[-2,-4],[-5,-4],[0,-7],[3,-6],[1,-4],[-4,-3],[-3,3],[0,-4],[0,-6],[8,-5],[1,-3],[-1,-3],[4,-6],[3,-1],[3,-7],[-2,-5],[-2,-1],[-2,-1],[0,-5],[-2,3],[-2,4],[1,4],[-1,4],[-4,4],[-3,0],[1,-6],[1,-4],[-2,-3],[3,-5],[3,-2],[0,-4],[1,-6],[1,-7],[-2,-4],[-3,0],[-4,-2],[-2,2],[-3,-2],[-2,-3],[-2,7],[-3,4],[-5,8],[-2,4],[-4,3],[-4,8],[-5,2],[-7,13],[-8,4],[-4,-1],[-3,-3],[-1,-4],[-3,5],[-4,1],[-2,11],[-4,7],[-5,3],[-4,6],[-4,16],[-4,6],[-3,7],[-5,6],[-19,15],[-4,1],[-3,9],[0,6],[3,4],[-4,3],[-2,-4],[-2,-2],[1,-4],[0,-5],[1,-3],[2,-6],[-4,-1],[-4,-2],[-4,-7],[-1,-6],[1,-3],[2,-1],[3,-3],[-4,-1],[-3,1],[-3,1],[-6,0],[-2,1],[1,3],[2,0],[7,29],[11,56],[0,12],[-1,7],[-3,4],[0,9],[-3,6],[-2,7],[-3,6],[-1,8],[3,-3],[6,-12],[11,-25],[5,-14],[4,-13],[7,-12],[7,-11],[5,-11],[-2,14],[-5,8],[-11,26],[-13,36],[-2,3],[-2,-1],[-1,8],[-3,0],[-1,3],[0,8],[-2,9],[-3,7],[-4,10],[-8,11],[-5,0],[-1,-4],[-1,-5],[-2,-1],[-4,16],[2,14],[-1,8],[-2,7],[-2,12],[-2,2],[-2,10],[-3,5],[-3,10],[-2,7],[-11,18],[-23,18],[-6,11],[-8,12],[-3,5],[-6,6],[-2,11],[-4,6],[-2,3],[-1,6],[-9,19],[-4,14],[-5,6],[0,6],[-12,20],[-5,9],[-8,6],[-4,15],[-6,7],[-2,7],[-8,6],[-6,13],[-9,13],[-4,14],[-10,16],[-4,8],[-4,3],[0,8],[-4,14],[5,3],[6,17],[2,11],[2,12],[-1,6],[-1,12],[-2,15],[-3,13],[-2,16],[-5,6],[1,9],[-9,21],[-3,17],[-3,28],[-4,5],[2,11],[-3,5],[0,11],[-5,14],[1,34],[1,23],[5,28],[7,22],[1,10],[0,11],[-4,19],[0,35],[-1,7],[0,6],[-2,9],[-2,6],[-1,6],[-5,3],[-1,5],[-1,9],[-1,12],[0,13],[-2,15],[-3,15],[-7,6],[-8,13],[-6,25],[-7,10],[-7,22],[-6,9],[-6,15],[-3,5],[-3,4],[-4,3],[-1,0],[-2,-1],[-2,3],[-1,5],[0,15],[-2,10],[-8,18],[-6,5],[-13,8],[-10,21],[-10,11],[-17,24],[-2,8],[-5,3],[-6,11],[1,12],[4,22],[-5,15],[0,20],[-9,23],[-3,16],[3,13],[3,10],[1,10],[-1,6],[5,16],[3,16],[2,8],[8,24],[1,7],[0,2],[1,1],[1,1],[1,1],[0,2],[-1,3],[1,4],[4,14],[5,14],[6,20],[4,15],[2,-6],[-4,-13],[-3,-12],[-1,-5],[4,-3],[3,-1],[3,-3],[1,2],[-1,3],[1,1],[2,3],[0,4],[-2,8],[1,5],[-1,4],[2,3],[3,2],[1,5],[0,4],[0,5],[2,2],[1,10],[2,6],[2,2],[3,2],[5,2],[2,-2],[5,0],[3,4],[6,7],[1,11],[0,3],[-3,3],[-2,3],[-2,-3],[-3,-1],[-2,1],[-1,2],[-2,4],[-4,0],[-1,-1],[0,-7],[-3,-5],[-1,-9],[-4,-7],[-2,-8],[-2,-10],[-7,-16],[-2,5],[4,12],[11,36],[12,53],[4,25],[3,21],[-1,16],[-1,4],[-3,1],[-2,-1],[-2,3],[-1,4],[-1,9],[-2,7],[-1,7],[0,9],[-1,11],[0,4],[2,2],[2,-1],[2,2],[5,22],[3,23],[6,41],[3,31],[4,34],[1,22],[-4,32],[-1,18],[3,11],[-3,2],[-2,4],[-3,4],[-1,6],[0,6],[0,15],[-1,4],[-3,5],[-3,14],[-3,14],[0,9],[-2,16],[-4,18],[-5,4],[-3,2],[-2,-2],[-1,-3],[-9,14],[-9,8],[1,8],[4,3],[3,11],[5,22],[2,24],[2,41],[0,7],[-1,6],[-3,14],[-5,7],[-7,10],[-4,7],[-5,0],[-12,27],[-4,4],[-2,9],[1,11],[-3,11],[0,14],[-3,13],[-1,14],[-4,11],[-5,6],[0,6],[1,22],[-4,13],[-1,1],[-2,6],[1,12],[1,7],[0,9],[0,12],[0,13],[-4,12],[5,9],[0,7],[1,14],[4,17],[1,8],[2,20],[-1,11],[-2,6],[1,12],[-2,18],[-2,10],[-3,5],[-4,4],[-4,5],[-3,10],[-2,16],[-5,5],[-4,-1],[-3,7],[-4,33],[-2,7],[-3,6],[-5,5],[5,6],[16,50],[8,38],[2,11],[3,11],[2,15],[1,11],[2,27],[3,3],[-1,10],[9,72],[-2,22],[-2,6],[4,11],[3,6],[4,2],[5,5],[4,-2],[1,-6],[0,-15],[2,-8],[1,6],[2,11],[-1,6],[1,10],[2,5],[4,4],[3,14],[6,14],[6,4],[3,1],[1,-6],[0,-8],[0,-9],[1,-7],[4,-1],[6,-2],[7,0],[4,3],[-9,3],[-4,7],[-2,8],[-1,9],[-4,6],[1,7],[3,6],[-4,0],[-6,-3],[-2,-7],[-6,-5],[-5,-4],[-1,-10],[-12,-24],[-3,1],[11,31],[16,77],[4,23],[2,24],[2,18],[2,3],[8,6],[3,10],[2,6],[2,7],[2,6],[1,7],[1,1],[2,-4],[3,-10],[2,-3],[10,-1],[1,4],[-4,1],[-5,4],[-4,9],[-3,9],[-6,-1],[-3,-7],[0,-11],[-3,-12],[-6,-8],[-3,-2],[3,22],[5,26],[6,71],[2,36],[2,23],[0,5],[4,4],[1,6],[-4,15],[0,7],[2,33],[4,54],[0,35],[2,22],[-1,3],[-1,6],[0,3],[0,4],[3,5],[1,3],[3,34],[1,16],[3,6],[2,4],[4,3],[2,-5],[3,-5],[4,-4],[-2,17],[-4,3],[-2,3],[-6,-7],[-2,-2],[-2,-4],[0,8],[1,13],[-1,21],[6,66],[3,5],[2,2],[4,-2],[2,-4],[1,-2],[2,-5],[1,6],[1,4],[0,5],[-4,1],[-1,-2],[-1,0],[-2,2],[-4,4],[-2,-4],[-4,-5],[0,2],[1,6],[1,5],[1,7],[0,7],[-1,5],[-3,1],[-1,1],[1,2],[2,6],[2,22],[0,12],[-2,10],[-2,9],[2,16],[0,11],[4,9],[1,11],[4,12],[0,12],[1,4],[2,3],[1,4],[0,6],[-2,5],[1,5],[2,14],[1,18],[2,27],[-3,7],[0,5],[3,11],[6,13],[2,15],[1,14],[1,8],[0,12],[0,11],[-2,7],[2,20],[1,4],[1,13],[0,12],[-3,19],[-4,3],[-4,0],[0,4],[6,3],[2,8],[1,10],[0,7],[1,7],[1,4],[1,3],[1,-1],[0,-2],[-2,-18],[5,6],[3,9],[4,8],[-10,9],[-5,11],[1,25],[3,13],[1,19],[2,5],[0,-18],[2,-16],[5,-3],[3,-6],[6,-5],[-1,4],[1,3],[1,3],[1,4],[-1,5],[-1,7],[-2,3],[-1,8],[1,13],[-8,-3],[-6,8],[-3,5],[2,8],[2,18],[1,16],[5,9],[0,12],[1,4],[2,1],[3,-3],[2,-2],[2,0],[2,2],[2,7],[-1,-1],[-2,-1],[-1,-1],[-3,1],[-2,3],[-1,5],[-3,-2],[-1,-5],[-2,-2],[-1,-7],[0,-8],[-1,-4],[-1,4],[1,18],[-1,17],[-2,5],[-5,5],[-1,5],[0,5],[-1,1],[-2,-1],[-1,4],[4,8],[1,9],[2,11],[0,34],[0,15],[-3,12],[-6,12],[2,6],[3,3],[2,8],[4,3],[5,5],[1,7],[2,13],[-2,14],[-2,26],[-4,23],[-11,47],[-9,18],[2,3],[4,1],[4,-6],[-2,-4],[3,-6],[4,0],[5,-3],[8,-9],[2,-6],[1,1],[2,-1],[1,-7],[6,-2],[3,-3],[9,2],[3,-4],[2,-5],[1,-12],[0,-8],[4,-7],[0,8],[0,9],[0,8],[6,-4],[0,3],[-2,4],[-6,11],[-3,2],[-3,0],[-4,1],[-2,3],[-3,2],[-1,3],[2,2],[6,0],[4,0],[6,2],[6,5],[3,1],[3,-5],[6,-10],[2,-5],[6,1],[26,9],[4,3],[-6,3],[0,5],[3,2],[8,-1],[4,6],[7,5],[1,5],[5,1],[6,-2],[3,-1],[4,-8],[5,-6],[5,-5],[1,-7],[1,-6],[2,-4],[4,-7],[6,-7],[17,-4],[7,1],[6,-4],[6,-1],[6,3],[4,6],[4,10],[3,5],[4,4],[-7,-1],[-12,-9],[-6,-7],[-8,0],[-8,9],[-18,22],[-5,10],[-5,11],[-4,11],[-3,6],[-7,5],[-34,-9],[-17,6],[-1,3],[-1,6],[-1,5],[-5,6],[-3,-1],[-4,-1],[-2,-1],[-1,-6],[-2,-1],[-3,2],[-2,-3],[-1,-5],[-2,-3],[-4,1],[-4,5],[-4,0],[-2,-4],[-1,-4],[-5,0],[-2,-5],[-2,-1],[-1,-4],[-2,-2],[-3,-5],[-5,1],[-5,2],[-5,4],[-4,7],[-2,3],[-5,15],[-2,3],[-3,6],[-7,2],[-4,1],[-3,-5],[-2,-1],[-2,-5],[-1,-6],[3,-3],[1,-3],[-1,-2],[-3,1],[-3,1],[-2,-3],[-2,-2],[-1,2],[1,7],[0,7],[1,7],[1,10],[1,9],[1,11],[0,18],[0,31],[0,92],[-3,28],[3,7],[3,-5],[4,-9],[-2,-4],[2,-10],[3,-10],[2,-13],[-2,-45],[1,-16],[0,-27],[2,-20],[6,-3],[5,1],[5,-2],[3,14],[4,7],[2,15],[1,0],[3,-7],[10,-5],[8,-14],[2,12],[-5,6],[-6,4],[-5,5],[-1,3],[0,6],[-1,2],[-2,0],[-2,2],[-2,3],[-3,2],[0,5],[0,9],[4,4],[4,4],[2,3],[1,4],[1,6],[-1,8],[-1,4],[-1,3],[-4,14],[-7,15],[-3,11],[4,-2],[8,-9],[5,-2],[-6,16],[-2,17],[3,14],[9,6],[10,3],[5,-2],[2,-11],[2,-7],[4,-1],[5,4],[4,6],[-9,2],[-6,10],[-6,11],[-8,10],[-4,2],[-5,6],[-3,-4],[0,-7],[-11,-2],[-7,9],[-2,-12],[2,-5],[4,-3],[-3,-3],[-4,2],[-4,0],[-4,3],[-3,2],[-1,4],[-11,9],[-7,5],[-2,10],[0,28],[-3,24],[-5,22],[1,8],[4,8],[6,-7],[-2,-14],[6,-11],[1,-9],[4,1],[5,-3],[4,-4],[1,-1],[3,6],[-1,6],[-2,5],[-2,6],[-7,-5],[0,8],[2,9],[4,4],[8,1],[4,3],[8,8],[22,14],[19,10],[-4,4],[-4,-2],[-7,5],[-23,-1],[-1,2],[3,1],[6,4],[-12,2],[-13,0],[-2,6],[2,9],[-4,11],[-6,3],[-5,3],[-7,2],[-7,1],[-6,-4],[-3,-7],[1,-4],[2,-9],[0,-9],[0,-6],[0,-5],[2,-7],[2,-6],[4,1],[1,-2],[0,-7],[-5,5],[-4,2],[-3,-1],[-1,-3],[0,-5],[-3,-1],[-4,-1],[1,6],[-1,4],[1,6],[1,17],[0,36],[-1,14],[-1,24],[-6,48],[-3,23],[-5,22],[-4,16],[-3,6],[-6,1],[-2,6],[-5,21],[4,-1],[2,-3],[2,1],[-3,5],[-7,1],[-3,2],[-8,85],[-1,28],[-7,36],[-2,16],[-8,31],[-1,22],[-2,10],[-4,2],[-3,3],[-2,7],[-6,10],[-2,20],[-16,13],[-4,11],[-3,10],[-7,4],[-5,-1],[-8,19],[-5,28],[-4,21],[-3,22],[-3,28],[1,15],[-9,30],[-4,12],[5,3],[5,10],[3,12],[0,4],[-2,4],[-3,12],[1,2],[4,2],[2,6],[0,13],[1,5],[4,9],[1,6],[-3,3],[0,5],[-2,1],[-3,2],[-4,6],[-4,6],[-3,8],[0,10],[9,2],[10,-3],[6,-2],[5,-9],[4,-1],[4,5],[5,-3],[12,-12],[20,-19],[17,-14],[14,-8],[3,-2],[11,-9],[6,-3],[7,4],[6,-3],[19,-15],[13,-10],[4,-9],[13,-14],[15,-3],[7,-4],[8,0],[7,-2],[13,0],[3,-3],[12,2],[8,-4],[13,4],[12,3],[16,-8],[2,-6],[14,-4],[5,7],[4,3],[5,-4],[3,-6],[5,-1],[8,0],[11,5],[5,0],[4,-2],[-6,-1],[-4,-2],[-4,-1],[1,-4],[8,-4],[18,0],[10,-2],[9,2],[12,-2],[6,4],[15,25],[5,8],[12,4],[-3,-3],[-3,-3],[-4,-6],[-5,-7],[5,0],[9,-2],[6,-12],[8,-6],[6,-20],[-1,-15],[4,-8],[6,-4],[3,0],[-2,24],[1,7],[12,4],[5,0],[3,-2],[2,-5],[1,-9],[2,-3],[3,0],[4,-2],[4,-8],[4,-12],[1,-11],[-6,-5],[0,-5],[6,1],[3,6],[5,18],[-4,9],[-11,17],[-1,7],[1,9],[3,8],[3,3],[9,4],[8,6],[7,0],[6,-15],[-3,-3],[-7,-5],[-2,-4],[0,-8],[2,-6],[3,-4],[1,-4],[2,-9],[11,-30],[3,-4],[5,-4],[2,-4],[0,-5],[1,-12],[2,-5],[14,-27],[2,-8],[-3,-2],[-8,-1],[-3,-1],[-2,-5],[-2,-11],[-2,-6],[-13,-23],[-3,-12],[-6,-21],[-1,-12],[-1,-9],[-1,-6],[-2,-5],[-3,-3],[-4,-1],[-4,3],[0,7],[3,11],[5,38],[0,17],[-2,22],[-3,-8],[0,-11],[-1,-11],[-5,-6],[0,12],[-2,11],[-3,3],[-3,-10],[0,-9],[3,-11],[5,-17],[-6,-8],[-4,-14],[-3,-13],[-5,-9],[-2,-13],[-2,-3],[-3,-2],[-4,-4],[-22,-41],[-3,-10],[-9,-33],[-4,-9],[-6,-8],[-5,-9],[-4,-22],[-7,-24],[-1,-9],[9,-10],[16,3],[47,30],[9,8],[9,14],[-8,2],[-11,-7],[-19,-20],[-21,-14],[-11,0],[-6,14],[0,9],[4,8],[7,16],[3,6],[11,39],[20,44],[4,4],[17,17],[21,12],[7,5],[3,5],[2,8],[4,26],[2,10],[28,57],[3,4],[3,2],[4,-2],[1,-4],[-1,-5],[1,-5],[6,-2],[2,9],[-2,13],[-4,28],[-2,5],[-5,14],[0,6],[16,-15],[7,-9],[3,-14],[0,-9],[2,-20],[2,-6],[3,-5],[1,-6],[-4,-9],[2,-2],[3,-2],[3,-4],[2,-4],[0,-7],[-2,-5],[-1,-4],[-1,-3],[-3,-1],[-13,5],[-5,-2],[1,-7],[-3,-9],[-4,-9],[-5,-3],[-15,24],[-3,-2],[1,-7],[2,-4],[3,-3],[2,-4],[1,-4],[10,-57],[-2,-4],[2,-4],[-6,-5],[-8,13],[-10,33],[-2,-5],[-2,-6],[-1,-6],[1,-8],[1,-8],[3,-4],[9,-8],[2,0],[0,-1],[-2,-7],[-3,-6],[-5,-9],[-1,-6],[14,10],[6,7],[6,8],[9,8],[3,-10],[1,-15],[2,-8],[7,-4],[-1,-10],[-3,-13],[-2,-11],[-3,-15],[-3,-14],[-2,-13],[6,-13],[-2,-8],[-3,-6],[-4,-4],[-5,-2],[7,-21],[1,-10],[-3,-12],[-4,0],[-22,14],[-7,8],[1,6],[4,5],[2,8],[2,10],[5,8],[3,10],[-2,14],[-2,-11],[-4,-5],[-9,-7],[-2,-4],[-2,-4],[-2,-4],[-3,-1],[-2,-2],[0,-5],[-1,-6],[-1,-5],[-4,-10],[-1,-9],[1,-8],[7,-17],[0,-3],[-2,-3],[-2,-5],[0,3],[-1,-2],[-2,-3],[0,-2],[0,-1],[1,-4],[1,-4],[0,-4],[-9,-11],[-7,19],[-4,27],[0,14],[5,4],[2,9],[1,11],[0,17],[0,4],[-2,9],[-2,4],[-2,3],[-1,4],[1,8],[-4,-8],[-4,-29],[-3,-11],[-7,-10],[-4,-5],[-3,-2],[-5,-1],[-2,-5],[-8,-44],[-4,-13],[-7,-10],[-15,-6],[-7,-5],[-3,-9],[4,4],[7,4],[5,0],[1,-8],[-3,-5],[-5,-2],[-6,-4],[-3,-9],[6,4],[23,25],[2,1],[1,2],[6,16],[4,-2],[-2,-9],[-12,-34],[-4,-6],[-5,-5],[7,-1],[6,5],[5,10],[3,14],[2,-6],[0,-6],[0,-6],[-2,-6],[3,-7],[2,-13],[3,-5],[4,0],[0,6],[-2,8],[-2,7],[3,6],[0,7],[-1,8],[0,7],[2,7],[11,13],[2,-5],[-1,-6],[-1,-5],[-2,-4],[4,1],[4,3],[3,3],[0,1],[-1,10],[2,3],[5,-5],[2,-5],[3,-7],[2,-6],[7,-4],[4,-5],[2,-7],[1,-6],[10,9],[10,14],[22,48],[6,19],[4,22],[0,22],[4,-6],[10,-9],[10,-13],[5,-2],[4,2],[5,7],[-5,5],[-3,4],[0,5],[2,7],[3,5],[5,5],[6,4],[9,4],[3,6],[1,9],[0,11],[-3,8],[-7,15],[-2,8],[0,25],[-1,7],[-3,8],[-2,6],[-5,27],[-1,5],[2,4],[3,7],[4,2],[3,-6],[3,-9],[3,-5],[1,12],[1,9],[-2,8],[-4,7],[-12,8],[-3,3],[-3,5],[-1,6],[1,2],[3,2],[1,4],[1,5],[2,6],[4,10],[1,6],[-1,10],[-1,9],[-3,7],[-2,8],[1,12],[1,10],[2,8],[3,7],[8,10],[4,10],[0,13],[1,9],[3,8],[0,6],[1,5],[2,3],[6,6],[2,3],[2,3],[10,3],[2,3],[6,5],[1,8],[0,8],[2,3],[1,2],[2,3],[-1,2],[-2,2],[-2,2],[-4,1],[-4,-7],[-20,23],[-9,14],[-6,20],[-1,21],[0,19],[-2,13],[-12,8],[-1,1],[-2,2],[-2,2],[-2,-1],[-2,-6],[1,-12],[-6,-6],[0,-9],[1,-11],[2,-9],[2,-6],[5,-7],[5,-5],[4,-3],[4,-4],[4,-9],[6,-19],[-5,0],[-3,4],[-5,12],[-3,4],[-23,25],[-6,10],[-4,14],[-2,15],[0,14],[0,18],[9,2],[10,4],[5,1],[5,-2],[3,-4],[2,-6],[3,-4],[3,3],[-1,6],[0,6],[5,12],[-1,3],[-1,7],[-1,4],[-2,3],[-9,13],[-8,7],[-7,10],[-4,3],[-4,2],[-4,0],[-3,4],[-6,16],[-4,5],[0,4],[5,6],[-2,4],[-5,2],[-2,0],[-2,-2],[-5,-11],[-2,-3],[-4,-3],[-5,-1],[-4,2],[-3,4],[-3,10],[1,5],[3,4],[2,5],[-2,11],[-4,4],[-4,1],[-2,3],[1,7],[4,1],[4,-1],[4,3],[7,8],[6,-10],[4,-15],[5,-10],[0,16],[3,3],[5,-5],[7,-12],[3,-5],[4,-1],[3,2],[2,6],[1,3],[-1,4],[-1,6],[-1,16],[-1,9],[-3,9],[-3,8],[-11,11],[-4,6],[6,2],[6,-4],[11,-14],[5,-3],[6,5],[2,11],[-1,13],[-4,12],[-3,3],[-2,2],[-3,2],[-2,5],[-1,6],[-2,15],[0,4],[-6,4],[1,10],[6,18],[-2,9],[-6,8],[-7,5],[-6,2],[-5,-4],[-4,-9],[-9,-21],[-3,-3],[-2,3],[-2,5],[-1,7],[1,3],[4,6],[0,3],[-2,8],[-5,10],[-5,4],[-3,-7],[1,14],[-1,9],[-2,6],[-12,16],[-3,6],[-2,7],[2,6],[2,5],[3,4],[1,3],[-4,11],[-14,-1],[-1,11],[3,6],[7,1],[13,-3],[-3,10],[-3,10]],[[15902,79484],[27,0],[62,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[62,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[33,0],[28,0],[61,0],[61,0],[61,0],[61,0],[3,0],[58,0],[61,0],[61,0],[61,0],[62,0],[61,0],[61,0],[61,0],[61,0],[4,0],[57,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[62,0],[61,0],[61,0],[61,0],[61,0],[61,0],[34,0],[27,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[62,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[40,0],[21,0],[61,0],[61,0],[62,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[52,0],[9,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[62,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[61,0],[42,0],[19,0],[61,0],[61,0],[61,0],[61,0],[61,0],[62,0],[61,0],[61,0],[61,0],[2,1],[2,4],[1,6],[0,58],[-1,67],[0,54],[0,33],[16,-9],[34,1],[15,-6],[20,-16],[5,-6],[3,-9],[2,-25],[3,-13],[1,-11],[-2,-26],[2,-12],[4,-12],[10,-59],[12,-66],[0,-31],[0,-12],[0,-11],[0,-10],[3,-10],[3,-7],[27,-31],[20,-13],[11,-2],[47,8],[5,-1],[3,-2],[2,-3],[3,-4],[2,-4],[1,-4],[1,-13],[0,-3],[5,-3],[55,-5],[44,-4],[11,-12],[8,-43],[8,-14],[6,-2],[39,9],[5,-3],[9,7],[21,2],[9,9],[2,9],[-1,9],[1,6],[10,4],[8,6],[36,9],[35,-3],[42,-4],[7,-3],[20,-20],[44,-18],[21,-7],[5,-10],[1,-10],[-5,-3],[-13,-5],[-5,-4],[-2,-14],[4,-8],[7,-2],[6,-3],[24,5],[12,0],[10,-8],[4,-13],[2,-10],[0,-24],[2,-14],[3,-10],[9,-18],[9,-29],[4,-6],[5,0],[7,4],[7,6],[3,6],[0,12],[-3,12],[0,12],[6,12],[6,5],[29,6],[24,-2],[7,-7],[4,-13],[2,-15],[4,-15],[4,-8],[5,-7],[5,-5],[29,-19],[24,-5],[6,-5],[5,-6],[9,-19],[-6,-15],[7,-8],[20,-5],[6,1],[2,-2],[3,-4],[0,-6],[-2,-6],[0,-5],[3,-2],[25,3],[6,-3],[5,-5],[5,-2],[17,12],[25,4],[11,11],[9,15],[37,37],[12,8],[6,6],[23,19],[14,5],[9,-9],[1,-5],[-3,-7],[0,-6],[2,-7],[2,-3],[3,-2],[3,-5],[3,-8],[1,-18],[3,-10],[10,-9],[14,0],[25,11],[7,1],[3,-4],[4,-5],[5,-3],[3,0],[8,6],[4,1],[1,-1],[2,-2],[2,-1],[81,16],[16,-1],[13,-8],[4,-6],[14,-36],[4,-7],[4,-5],[17,-13],[5,-1],[27,16],[7,2],[4,0],[5,-2],[6,-5],[4,-1],[9,3],[6,0],[18,-7],[26,-1],[10,0],[21,-9],[7,0],[6,3],[26,22],[42,34],[53,44],[34,29],[39,32],[18,8],[47,20],[9,1],[8,-4],[52,-44],[52,-44],[52,-43],[52,-44],[52,-43],[52,-44],[53,-44],[52,-44],[29,-25],[29,-25],[29,-25],[29,-25],[29,-25],[29,-25],[29,-25],[29,-25],[35,-31],[35,-30],[35,-31],[34,-31],[35,-30],[35,-31],[34,-31],[35,-30],[5,-5],[4,-4],[5,-4],[4,-4],[5,-5],[4,-4],[5,-4],[4,-5],[4,-9],[3,-12],[5,-34],[6,-35],[8,-52],[4,-14],[22,-41],[29,-53],[6,-8],[7,-5],[8,-1],[6,3],[4,6],[3,7],[5,7],[7,13],[9,5],[10,1],[14,-12],[17,14],[13,12],[13,-3],[11,-9],[-14,-55],[3,-20],[6,-14],[6,-17],[-2,-11],[-2,-8],[2,-11],[2,-11],[2,-16],[0,-8],[1,-7],[2,-14],[9,-18],[10,-12],[1,-21],[2,-2],[4,-7],[5,-16],[3,-6],[5,-2],[5,4],[16,24],[4,5],[5,2],[6,-1],[14,-6],[28,7],[15,-2],[13,-15],[16,-25],[5,-6],[4,-9],[4,-9],[-1,-9],[-13,-36],[-12,-37],[-11,-31],[23,-22],[32,-30],[55,-52],[50,-47],[72,-68],[47,-44],[12,-23],[4,-24],[13,-124],[14,-125],[13,-124],[14,-125],[13,-124],[13,-125],[14,-124],[13,-125],[1,-6],[-1,-15],[-2,-16],[-9,-37],[-9,-36],[-9,-37],[-8,-37],[-9,-37],[-9,-37],[-9,-37],[-9,-37],[-2,-20],[1,-20],[-5,-19],[-6,-19],[-3,-21],[-1,-12],[-4,-17],[-1,-10],[3,-12],[1,-4],[0,-6],[-2,-11],[-1,-25],[-8,-43],[-4,-16],[-7,-17],[-7,-12],[-9,-6],[-10,-2],[-14,-23],[-29,-60],[-9,-12],[-31,-25],[-27,-14],[-11,-16],[-8,-19],[-6,-19],[-2,-24],[-1,-50],[-5,-41],[1,-27],[6,-35],[3,-12],[7,-27],[8,-16],[24,-24],[33,-33],[42,-43],[13,-6],[60,1],[7,3],[40,40],[40,39],[40,39],[39,40],[40,39],[40,39],[40,40],[40,39],[36,12],[35,11],[36,12],[36,12],[36,11],[31,10],[4,2],[36,11],[36,12],[43,32],[42,33],[43,32],[6,5],[36,28],[43,32],[43,32],[42,33],[43,32],[16,22],[12,29],[3,25],[-2,10],[-6,7],[-7,4],[-6,6],[-7,9],[-4,6],[-3,7],[1,12],[2,9],[0,5],[-2,5],[-3,6],[-4,7],[-2,5],[-1,6],[0,8],[1,6],[2,5],[1,5],[1,8],[0,6],[-2,53],[-1,10],[-9,39],[-23,72],[26,20],[37,29],[54,41],[18,9],[64,0],[64,-1],[64,0],[64,-1],[64,0],[65,-1],[64,0],[64,-1],[1,2],[2,1],[1,2],[2,1],[2,2],[1,1],[2,2],[1,1],[12,33],[12,32],[12,33],[12,32],[12,32],[12,33],[11,32],[12,33],[7,11],[22,29],[2,4],[1,4],[1,5],[3,5],[2,2],[31,19],[6,5],[5,10],[-1,3],[-2,14],[0,4],[8,15],[23,26],[47,31],[8,5],[4,8],[3,10],[4,15],[11,19],[10,19],[15,32],[34,47],[34,47],[31,45],[20,28],[39,36],[15,6],[5,3],[12,15],[5,4],[16,9],[10,10],[5,3],[5,0],[35,-6],[8,0]],[[10832,91718],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[1,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[0,-87],[0,-86],[0,-86],[2,-10],[4,-5],[19,-7],[40,-15],[30,-11],[35,-13],[4,3],[3,7],[9,24],[3,8],[5,3],[6,-1],[28,-15],[43,-24],[43,-23],[13,0],[14,12],[25,28],[27,32],[14,10],[14,4],[31,2],[29,1],[42,3],[45,2],[6,-4],[3,-11],[-2,-13],[-11,-43],[-10,-39],[-9,-36],[0,-16],[20,-25],[14,-18],[2,-3],[14,-11],[45,-23],[27,-15],[11,-9],[2,-2],[1,-4],[11,-49],[4,-12],[11,-18],[31,-34],[35,-39],[40,-44],[42,-47],[43,-49],[43,-47],[41,-45],[4,-8],[4,-11],[9,-43],[8,-37],[10,-47],[-7,-31],[0,-15],[6,-9],[9,0],[9,5],[23,28],[16,19],[30,23],[31,24],[4,4],[29,22],[29,22],[15,5],[31,-3],[17,2],[12,10],[23,49],[1,2],[5,18],[-1,57],[0,46],[15,-6],[13,-1],[13,5],[13,16],[8,25],[-4,17],[-11,11],[-14,10],[25,17],[32,9],[33,10],[28,8],[26,16],[53,32],[44,27],[5,-2],[17,-22],[16,-13],[24,-19],[10,-14],[9,-16],[9,-15],[14,-6],[5,-3],[16,-20],[4,-8],[0,-10],[-1,-30],[-1,-9],[-4,-9],[-11,-14],[-5,-12],[29,-22],[-3,-8],[-3,-9],[-1,-10],[10,-23],[7,-9],[7,-6],[25,-8],[27,-8],[11,-2],[3,-3],[3,-8],[3,-17],[3,-7],[14,-22],[8,-9],[7,-4],[13,0],[9,-5],[7,-10],[15,-27],[3,-9],[1,-11],[-4,-26],[15,-3],[4,-4],[3,-6],[-1,-2],[-2,-2],[-1,-7],[2,-10],[3,-8],[26,-36],[31,-20],[35,-23],[31,-20],[12,-11],[9,-14],[27,-56],[20,-31],[22,-24],[24,-26],[19,-35],[-10,-19],[4,-24],[11,-24],[33,-47],[25,-38],[7,-15],[13,-52],[6,-15],[22,-39],[21,-37],[24,-52],[34,-76],[22,-50],[22,-48],[27,-46],[26,-44],[16,-39],[20,-50],[-13,-28],[-18,-40],[50,-18],[36,-13],[-21,-101],[66,-38],[1,-5],[-1,-8],[-3,-8],[-2,-6],[1,-7],[1,-5],[5,-9],[7,-18],[2,-11],[1,-12],[-1,-24],[2,-6],[7,-3],[30,-2],[29,6],[7,-1],[7,-5],[12,-15],[41,-33],[36,-30],[32,-27],[23,-12],[50,-9],[22,-16],[31,-49],[12,-9],[30,-9],[7,-4],[4,-9],[8,-39],[3,-9],[4,-4],[31,-13],[13,-5],[9,-1],[26,9],[7,-2],[6,-10],[9,-23],[3,-13],[2,-13],[2,-23],[-1,-26],[-1,-7]],[[13883,83579],[-1,-4],[-7,-17],[-15,-28],[-9,-11],[-4,-7],[-4,-14],[-1,-3],[-1,-4],[0,-6],[0,-5],[2,-4],[1,-4],[-2,-7],[3,-9],[4,-6],[3,-8],[2,-13],[-1,-11],[-2,-10],[-5,-20],[1,-4],[1,-5],[0,-13],[10,-23],[3,-17],[1,-5],[9,-15],[2,-7],[1,-12],[0,-28],[1,-13],[3,-9],[14,-27],[-12,-12],[-5,-7],[-5,-8],[-3,-3],[-6,-2],[-1,-3],[-1,-8],[-1,-7],[-1,-5],[-3,-6],[-7,-11],[-3,-5],[-2,-15],[-1,-7],[-8,-8],[-3,-12],[-5,-24],[-3,-5],[-6,-7],[-2,-4],[-2,-5],[-3,-14],[-2,-7],[-9,-12],[-2,-8],[-9,-18],[-5,-7],[-13,-9],[-16,-22],[-25,-22],[-7,-3],[0,8],[10,16],[2,5],[-2,2],[-3,0],[-2,-1],[-6,-8],[-18,-40],[-2,-3],[-3,-2],[-4,2],[-4,4],[-3,7],[0,8],[5,3],[6,2],[3,5],[-3,12],[-4,9],[-3,10],[-2,12],[-2,12],[0,5],[1,13],[-1,6],[-1,5],[-3,6],[-2,1],[-1,-7],[0,-38],[1,-12],[4,-11],[1,-6],[-1,-7],[-2,-6],[-3,-1],[-3,2],[-3,5],[-3,-17],[-5,-15],[-7,-7],[-10,4],[-14,18],[-5,13],[2,16],[-1,1],[-3,3],[2,13],[-2,8],[-4,9],[-1,11],[5,-2],[3,9],[-2,11],[-7,6],[-3,8],[-2,5],[-3,3],[-5,1],[0,5],[4,10],[3,12],[4,11],[6,7],[13,6],[13,12],[7,1],[3,-3],[1,-5],[0,-5],[1,-3],[4,-1],[10,1],[2,2],[3,1],[4,-2],[3,0],[2,16],[2,7],[5,12],[11,20],[23,30],[25,51],[4,13],[-6,-1],[-3,-4],[-3,-5],[-6,-5],[-8,-11],[-2,-5],[-9,-32],[-6,-15],[-15,-12],[-7,-11],[-18,-38],[-4,-3],[-5,4],[-2,6],[-2,16],[-2,6],[-8,-5],[-3,-3],[-9,-14],[-2,-2],[-22,-12],[-7,0],[-5,5],[-7,9],[-5,10],[-2,10],[0,26],[2,7],[15,25],[7,6],[6,3],[0,3],[5,15],[4,5],[4,0],[8,-3],[69,1],[3,1],[3,2],[-13,11],[-3,8],[6,6],[-3,8],[-3,-1],[-12,-18],[-4,-3],[-30,-6],[-8,4],[-3,18],[-4,65],[4,49],[2,9],[-2,43],[-1,8],[-7,18],[-1,9],[1,5],[3,6],[1,5],[0,4],[-4,7],[-3,12],[-10,14],[-3,7],[9,10],[2,6],[-4,5],[-2,-1],[-7,-7],[-4,1],[-4,2],[-3,4],[-2,1],[-2,5],[-11,30],[-5,7],[-15,19],[0,2],[2,6],[-6,0],[-5,3],[-3,7],[0,11],[-6,1],[4,9],[12,18],[27,24],[-3,0],[-7,0],[3,8],[16,24],[-15,-10],[-6,-5],[-6,-9],[-5,-12],[-3,-6],[-8,-5],[-7,-11],[-28,-15],[-3,-4],[-3,-6],[-8,-6],[-8,4],[-7,11],[-5,14],[-5,-8],[-8,-7],[-6,-3],[-4,6],[-19,-26],[-7,-3],[-8,1],[-2,-1],[-1,-2],[-1,-2],[-1,-3],[-5,-3],[-7,-8],[-6,-4],[-7,-8],[-2,-2],[-5,-1],[-9,1],[-6,0],[-3,-3],[-7,-7],[-3,-3],[-5,0],[-4,0],[-4,0],[-4,-4],[6,-2],[19,-14],[13,-4],[3,-5],[1,-11],[-3,-16],[-2,-10],[-3,-7],[-5,-8],[-4,-2],[-12,2],[10,-19],[1,-17],[-6,-15],[-10,-14],[0,-3],[1,-6],[0,-3],[-34,41],[3,-6],[7,-14],[1,-7],[3,-6],[5,-8],[2,-6],[-6,2],[0,-4],[4,-5],[3,-8],[0,-9],[-1,-10],[-1,-3],[-3,-2],[-2,-3],[-1,-7],[-2,-3],[-4,2],[-6,8],[-38,28],[-10,14],[-4,16],[-8,49],[-4,10],[-5,5],[-4,10],[-2,9],[6,5],[5,-4],[11,-16],[6,-4],[-3,17],[-1,15],[1,10],[2,5],[8,1],[19,-1],[4,1],[3,7],[-2,7],[-9,10],[5,10],[5,10],[4,9],[-1,10],[-4,11],[-1,9],[4,6],[7,4],[14,-2],[4,2],[1,6],[-1,12],[2,3],[1,6],[-6,38],[0,51],[4,5],[17,11],[21,7],[32,0],[28,-11],[5,1],[6,5],[8,15],[4,5],[7,0],[-7,4],[-6,-2],[-14,-10],[-8,-2],[-6,1],[-14,6],[-53,4],[-8,6],[-15,36],[-1,10],[-2,27],[-2,5],[-7,1],[-16,8],[-4,1],[-4,-3],[-4,-2],[-11,9],[-3,-5],[-2,0],[-6,29],[-1,13],[-4,12],[-9,7],[-14,6],[-1,3],[-13,15],[-3,3],[-1,5],[-1,9],[1,16],[3,13],[9,23],[-6,-1],[-12,-9],[-21,-10],[-8,-1],[-12,13],[-6,3],[-3,4],[4,13],[4,8],[5,2],[13,-2],[-3,10],[-5,4],[-6,2],[-6,4],[14,21],[5,8],[0,5],[13,11],[1,5],[-1,5],[1,5],[3,2],[6,0],[3,1],[2,2],[-5,5],[-6,-1],[-5,-5],[-5,-6],[1,-7],[-6,-4],[-7,-1],[-3,-3],[-2,-11],[-5,-4],[-6,2],[-38,26],[-24,26],[-4,6],[-1,3],[-1,8],[-1,3],[-1,3],[-15,16],[-4,1],[-1,3],[0,11],[-1,2],[-4,3],[-5,7],[-4,8],[-3,7],[7,4],[4,1],[4,-1],[5,-9],[3,-4],[3,3],[5,1],[7,-4],[5,1],[-1,16],[-11,35],[1,6],[2,2],[2,6],[1,5],[-2,3],[-3,-2],[-7,-7],[-2,-3],[-6,-22],[-5,-8],[-5,3],[-7,9],[-6,3],[-11,-2],[-3,2],[-13,13],[-7,4],[-4,4],[-3,2],[-6,1],[-5,0],[-4,-3],[-1,-1],[-2,1],[-2,2],[-1,2],[0,4],[2,3],[1,3],[2,6],[1,3],[1,5],[-2,6],[8,2],[-4,10],[-9,5],[-6,-12],[4,0],[0,-5],[-10,1],[-3,3],[3,8],[-2,6],[-2,3],[-3,-1],[-2,-3],[-2,-21],[-5,-12],[-6,-7],[-8,1],[-13,15],[-16,10],[-6,2],[-2,1],[-7,9],[-3,2],[-9,2],[-5,2],[-4,3],[0,4],[6,2],[7,7],[5,11],[-2,11],[-3,7],[1,1],[2,2],[1,6],[2,6],[3,3],[9,1],[52,-2],[20,15],[2,2],[1,4],[2,2],[16,0],[5,2],[8,5],[6,9],[0,12],[-4,0],[-13,-16],[-6,-4],[-16,0],[-3,-1],[-6,-5],[-4,-2],[-5,1],[-8,5],[-5,2],[-28,1],[-8,6],[-6,8],[-4,13],[10,9],[5,2],[12,2],[4,2],[1,4],[1,10],[0,5],[-2,3],[-2,-2],[-5,-5],[-3,-1],[-7,2],[-3,0],[-3,-4],[-3,-1],[-5,5],[-4,7],[-9,19],[-1,6],[0,10],[2,17],[2,4],[4,8],[10,10],[26,4],[9,10],[-5,2],[-23,-1],[-7,-3],[-6,-6],[-20,-4],[-16,1],[-4,3],[-12,22],[-3,3],[1,7],[3,32],[-1,9],[4,3],[4,1],[8,0],[2,1],[3,3],[2,0],[2,-1],[3,-6],[4,-3],[3,-4],[4,-8],[4,-4],[15,-2],[64,-47],[12,-6],[2,-4],[6,-10],[2,-2],[5,-4],[12,-19],[7,-6],[3,0],[4,2],[3,3],[1,4],[-2,2],[-19,9],[-5,8],[-8,17],[-8,12],[-2,8],[0,8],[-5,-2],[-9,2],[-7,6],[-3,9],[-31,18],[-10,16],[-6,6],[-14,5],[-8,6],[-8,8],[-5,8],[-2,16],[-2,58],[2,15],[4,1],[13,-5],[17,0],[9,-3],[15,-11],[8,-3],[3,1],[4,3],[3,1],[3,-2],[7,-5],[28,-13],[5,1],[-2,5],[-15,15],[-6,3],[-97,20],[-5,-3],[-3,-8],[-2,-13],[0,-4],[1,-8],[-1,-6],[-3,4],[-2,3],[-4,6],[-3,5],[-1,-12],[4,-23],[-3,-14],[-7,-11],[-7,2],[-6,11],[-10,21],[-17,32],[-1,4],[-1,5],[0,7],[-2,4],[-12,14],[14,17],[5,3],[5,0],[3,-5],[3,-7],[5,-8],[5,-6],[4,-3],[3,1],[1,8],[-2,20],[1,7],[6,6],[0,3],[-17,2],[-6,6],[-3,19],[4,9],[9,12],[5,11],[-5,7],[0,4],[6,2],[3,3],[3,3],[-2,4],[-5,-4],[-16,-8],[0,-4],[4,-5],[-2,-8],[-17,-36],[-1,-10],[4,-10],[-18,-15],[-5,-1],[-7,0],[-3,1],[-3,2],[-1,2],[-1,5],[-2,1],[-1,2],[-5,2],[-1,1],[-2,5],[0,5],[0,4],[-3,2],[-4,1],[-2,2],[-2,4],[0,7],[-2,5],[-3,1],[-4,-1],[-3,1],[-1,4],[-3,20],[5,-1],[2,2],[1,3],[0,5],[-2,4],[-5,7],[-3,5],[-1,5],[0,7],[-1,7],[1,5],[1,7],[2,4],[2,4],[2,6],[1,5],[0,5],[-1,4],[0,6],[0,2],[-1,3],[-1,3],[0,4],[2,2],[8,-2],[6,5],[5,7],[3,6],[0,3],[-2,3],[-1,4],[-4,24],[-1,11],[1,10],[3,2],[6,4],[3,2],[3,6],[1,4],[-1,4],[1,6],[8,25],[12,7],[29,5],[0,4],[-32,0],[-13,-4],[-7,-3],[-5,-5],[-1,-10],[2,-22],[-4,-5],[-6,-1],[-11,-9],[-7,-2],[0,-4],[6,-4],[2,-11],[-2,-13],[-3,-10],[-5,-8],[-12,-11],[-5,-8],[-1,-12],[4,-7],[6,-6],[3,-9],[-1,-5],[-3,-4],[-9,-14],[-3,-3],[-4,-1],[-5,0],[-14,7],[-56,64],[-5,3],[-3,2],[-5,11],[-3,3],[-15,0],[-4,1],[-8,6],[-4,1],[-3,-2],[-1,-5],[-1,-3],[-4,2],[0,5],[-1,8],[-2,6],[-4,-1],[-5,-3],[-9,-3],[-4,-1],[-6,5],[-3,11],[-2,14],[-1,31],[-2,10],[-4,6],[-8,5],[0,4],[1,1],[1,1],[1,1],[1,1],[-10,6],[-7,11],[-7,13],[-10,28],[-11,21],[-5,15],[9,-10],[4,-2],[4,3],[1,-2],[2,-3],[1,-3],[-1,14],[-3,11],[-3,11],[4,23],[-2,14],[-3,13],[-1,12],[-4,-3],[-3,-2],[-3,1],[-4,4],[-2,-8],[-5,-8],[-2,-5],[1,-5],[2,-5],[0,-4],[-3,-6],[1,-4],[1,-4],[-8,9],[-14,34],[-11,14],[-2,6],[1,8],[5,22],[-5,7],[-2,10],[-2,12],[0,14],[-1,14],[-3,8],[-4,7],[-4,10],[-1,4],[-1,16],[-3,16],[0,6],[-2,13],[-12,34],[-8,17],[-9,16],[-8,19],[-1,25],[8,52],[2,30],[-5,11],[-3,-8],[-8,-49],[-4,-32],[-3,-12],[-6,8],[-9,-5],[-17,9],[-7,0],[6,-6],[14,-9],[6,-8],[8,-17],[1,-3],[0,-4],[1,-2],[3,-2],[4,-2],[4,-5],[7,-5],[1,-4],[1,-6],[5,-21],[-1,1],[0,-2],[-1,-4],[0,-3],[1,-2],[6,-8],[2,-5],[1,-7],[0,-7],[-1,-7],[-3,8],[-11,8],[-5,6],[-3,9],[-1,18],[-1,8],[-8,13],[-13,12],[-13,6],[-10,-3],[4,-9],[15,-19],[3,-8],[6,-17],[5,-8],[9,-10],[5,-6],[3,-8],[-1,-10],[-2,-10],[-1,-9],[4,-8],[-3,-5],[-1,-6],[1,-5],[3,-4],[-3,-9],[0,-13],[2,-10],[4,-5],[10,-5],[2,-3],[0,-6],[-4,-10],[1,-6],[10,-25],[18,-38],[-3,-14],[0,-10],[3,-9],[17,-41],[2,-7],[-5,-6],[-8,-2],[-5,-5],[3,-14],[13,-26],[4,-15],[2,-3],[1,-2],[1,-3],[-1,-6],[0,-3],[2,-4],[7,-15],[3,-9],[12,-55],[1,-11],[0,-14],[-1,-6],[-3,1],[-3,3],[-3,-2],[-1,-4],[0,-18],[0,-6],[1,-4],[0,-2],[-1,-4],[-3,-3],[-9,-8],[-3,-2],[-7,2],[-38,19],[-11,15],[-9,20],[-6,26],[-2,18],[-2,6],[-8,16],[-3,14],[-3,13],[-5,10],[-6,0],[-2,-11],[4,-12],[7,-11],[3,-9],[1,-14],[-1,-6],[-4,-3],[-4,2],[-4,3],[-7,8],[-17,15],[-9,4],[-7,-5],[-7,-7],[-58,-16],[-7,1],[0,8],[2,16],[4,16],[4,8],[-6,1],[-15,-5],[0,4],[4,0],[3,3],[3,4],[3,2],[4,0],[11,-5],[-3,13],[1,5],[3,5],[1,12],[-1,11],[-3,7],[-4,5],[-5,3],[0,5],[19,12],[-4,2],[-11,3],[-2,1],[-1,1],[-15,41],[-4,7],[-7,2],[1,3],[2,5],[1,3],[-3,8],[-4,9],[-5,9],[-4,3],[-3,4],[-7,19],[-4,5],[3,8],[27,22],[5,5],[5,6],[-2,-10],[5,-1],[44,15],[-4,10],[-7,5],[-38,2],[-8,3],[2,-5],[2,-3],[6,-4],[-4,-6],[-20,-19],[-4,-2],[-5,3],[0,5],[-1,2],[-1,4],[0,5],[1,5],[4,11],[1,4],[-7,5],[-5,10],[-5,11],[-2,11],[-1,8],[0,6],[0,4],[-3,6],[-3,5],[-4,2],[-5,1],[-3,-3],[4,-6],[4,-10],[1,-10],[-3,-7],[2,-13],[-7,-8],[-10,-5],[-6,-7],[20,6],[9,1],[5,-11],[-4,-3],[-2,-1],[0,-4],[5,-4],[2,-11],[-1,-13],[-2,-12],[-7,-17],[-1,-6],[0,-5],[-1,-3],[-2,-2],[-3,-6],[-14,-10],[-17,8],[-31,25],[0,3],[19,-1],[10,2],[5,7],[-8,0],[-24,5],[-14,-6],[-7,0],[-7,8],[-5,16],[-4,24],[-1,22],[5,13],[0,4],[-9,-2],[-5,-6],[-8,-25],[-18,31],[-10,21],[-5,9],[-6,4],[29,-69],[-7,-10],[-7,4],[-6,9],[-7,5],[-3,1],[-5,2],[-5,4],[-7,9],[-14,5],[-4,3],[-9,13],[-12,10],[-8,13],[-18,18],[-6,8],[-3,1],[-4,-3],[-1,-5],[0,-7],[3,-3],[6,-3],[6,-7],[10,-18],[12,-13],[5,-9],[2,-13],[-4,-7],[-26,1],[-5,-5],[-10,-23],[-5,-3],[-5,-6],[-8,-15],[0,-5],[6,2],[6,5],[6,8],[9,16],[5,6],[6,3],[27,0],[15,-6],[4,-3],[3,-4],[1,-5],[1,-5],[0,-4],[3,-4],[2,8],[4,7],[5,4],[6,1],[3,-2],[8,-10],[7,-1],[3,-1],[3,-4],[2,-3],[5,0],[5,0],[6,6],[3,-3],[3,-4],[2,-2],[5,-3],[15,-17],[-3,-9],[-4,-3],[-5,1],[-5,-1],[2,-5],[-7,9],[-6,13],[-8,10],[-9,-3],[1,-8],[5,-1],[15,-15],[-3,-4],[-3,-1],[-3,0],[-3,0],[15,-6],[5,-6],[4,0],[2,-2],[1,-4],[-1,-3],[-1,-3],[0,-4],[2,-8],[1,-5],[2,-3],[5,0],[4,-3],[6,-11],[5,-3],[-4,12],[-6,9],[-5,10],[-3,16],[2,1],[30,-14],[3,-3],[2,-6],[4,-5],[3,-6],[-1,-8],[-3,-4],[-11,-10],[-17,-19],[-9,-6],[-8,5],[-2,-4],[11,-11],[3,-2],[3,2],[9,15],[9,3],[6,-5],[7,-7],[7,-3],[-2,5],[-5,7],[-1,4],[1,6],[3,2],[2,0],[2,0],[3,-2],[2,-4],[2,-1],[3,3],[-1,7],[-1,7],[2,6],[3,-5],[27,-27],[0,-4],[-2,0],[-2,-1],[-4,-3],[3,-4],[7,-13],[4,0],[5,1],[4,-2],[2,-9],[-1,-2],[-4,0],[-3,-2],[-1,-8],[-2,-5],[-5,-2],[-9,1],[4,-9],[5,-1],[10,6],[3,1],[14,-2],[0,-3],[-1,-4],[0,-4],[0,-4],[1,-4],[1,-3],[2,-1],[3,-2],[0,-5],[0,-5],[0,-5],[7,-30],[3,-6],[-9,-17],[-5,-8],[-6,-4],[-8,-2],[-17,-8],[-24,-6],[-4,4],[1,6],[4,7],[1,3],[-2,8],[-15,29],[0,-17],[-4,-2],[-19,10],[-13,14],[-7,3],[-2,2],[-2,9],[-2,1],[-3,-4],[1,-4],[3,-8],[0,-18],[-4,-3],[-6,2],[-7,-6],[3,-1],[1,-3],[2,-2],[1,-2],[3,-1],[5,-5],[2,-2],[6,1],[0,3],[-2,6],[1,9],[3,4],[1,1],[7,-3],[7,0],[2,-1],[1,-3],[1,-3],[0,-1],[7,-5],[4,-4],[1,-7],[0,-15],[-3,-9],[-6,1],[-12,10],[-16,-3],[-5,3],[-2,3],[-1,4],[-1,4],[-3,1],[-4,1],[-3,2],[-3,3],[-3,5],[-4,1],[-6,-3],[-10,-9],[22,-34],[3,-2],[1,-4],[0,-8],[-1,-5],[-7,-13],[-2,-3],[-10,3],[-1,-1],[-4,-3],[-4,0],[-3,2],[-4,4],[-4,10],[-2,12],[3,9],[9,1],[0,3],[-1,7],[-1,2],[-5,-4],[-4,-1],[-4,3],[-2,6],[-3,-3],[-2,-4],[-4,-2],[-3,1],[-3,5],[2,3],[2,4],[-1,5],[-4,3],[-10,-8],[-7,5],[2,2],[3,7],[1,2],[-2,9],[-3,7],[-4,6],[-4,3],[-1,-15],[-3,-8],[-4,1],[-2,12],[-3,10],[-7,7],[-9,4],[-8,1],[-4,-1],[-12,-7],[-3,-1],[-10,1],[-5,4],[-19,24],[-17,8],[-11,11],[-6,4],[-5,8],[-2,2],[-4,1],[-31,32],[-13,7],[-12,15],[-7,6],[-9,1],[-3,2],[2,5],[5,2],[10,0],[4,2],[12,13],[4,3],[4,1],[9,0],[4,3],[-6,10],[-3,5],[-3,2],[-4,-2],[-8,-9],[-4,-2],[-8,-2],[-21,-14],[-8,-1],[-2,8],[-1,12],[-6,12],[-46,47],[-7,9],[-2,3],[-4,2],[-3,3],[-1,5],[0,7],[2,11],[0,8],[-6,24],[-11,19],[-56,62],[-18,14],[-9,8],[-1,11],[-21,0],[-10,2],[-9,6],[9,-1],[4,1],[4,4],[-16,6],[-37,-3],[-14,13],[19,-3],[10,1],[4,8],[-1,7],[0,2],[3,7],[3,3],[8,4],[2,4],[-3,5],[-31,-7],[-6,-5],[-4,-2],[-9,0],[-4,-1],[-3,-2],[3,-5],[3,-7],[-7,9],[-9,11],[-10,9],[-12,5],[-13,8],[-6,8],[-40,28],[-62,27],[6,3],[12,-9],[6,2],[-10,13],[-3,3],[-5,0],[-5,0],[-5,0],[-4,4],[-1,8],[2,4],[1,4],[-4,4],[-4,0],[-5,-2],[-4,-3],[-2,-5],[-3,-8],[-6,3],[-7,7],[-7,4],[-9,2],[-10,6],[-10,8],[-7,9],[22,-9],[11,-11],[6,-1],[7,2],[5,7],[-11,9],[-7,2],[-5,-2],[-5,-3],[-5,1],[-6,3],[-12,10],[-5,6],[-3,2],[-17,8],[-72,53],[6,7],[19,-6],[9,3],[-1,2],[-1,6],[6,0],[4,2],[4,6],[3,9],[3,-7],[3,-5],[4,-1],[4,4],[-2,4],[4,5],[13,11],[-4,5],[3,10],[14,23],[13,15],[2,8],[-18,24],[-2,4],[-4,5],[-3,10],[-3,22],[-7,22],[-4,16],[2,7],[3,2],[6,11],[3,3],[3,1],[4,3],[7,9],[8,19],[5,6],[7,-8],[5,-9],[17,-21],[18,-39],[1,-9],[-9,-21],[-3,-16],[1,-8],[2,-21],[-2,-6],[0,-4],[4,-3],[2,-3],[2,-3],[1,-3],[2,-12],[7,-20],[3,-15],[-6,0],[-7,-3],[-6,-4],[-3,-5],[15,-14],[6,-2],[3,3],[9,25],[-2,7],[-8,16],[-1,4],[0,19],[-1,10],[-1,9],[-2,3],[-2,1],[-1,3],[-1,8],[1,3],[4,9],[2,2],[2,4],[-5,20],[0,8],[4,5],[26,5],[38,-2],[7,-3],[11,-15],[7,-6],[7,-1],[6,5],[-3,0],[-4,0],[-6,4],[-19,22],[-4,3],[-53,5],[-6,4],[-22,36],[-10,7],[-4,8],[-3,9],[-3,7],[-6,7],[-14,6],[-5,6],[-7,14],[-4,3],[-6,-3],[0,-5],[-10,-18],[-3,-12],[1,-13],[0,-6],[-2,-2],[-9,-1],[-9,-4],[-13,-13],[-8,-13],[-17,-27],[-15,-20],[-30,-15],[-24,-15],[-26,-17],[-33,-18],[-19,-5],[-49,2],[-32,2],[-21,6],[-20,6],[-28,10],[-41,26],[-29,12],[-44,23],[-22,9],[-21,5],[-7,6],[-4,12],[3,8],[6,5],[7,3],[-6,-6],[-3,-4],[-3,-6],[5,-4],[6,2],[17,12],[2,3],[2,2],[7,2],[8,5],[3,2],[2,7],[1,11],[1,12],[0,11],[-2,10],[-3,9],[-4,7],[-5,6],[2,0],[6,0],[-7,12],[-11,7],[-9,9],[0,17],[-18,-4],[-9,-6],[0,-9],[6,-19],[2,-3],[4,-1],[4,-2],[5,-9],[4,-11],[-2,-7],[-6,-5],[-16,-3],[-39,-24],[-17,-4],[-16,1],[-45,26],[-21,12],[-37,4],[-26,11],[-43,9],[-38,4],[-42,16],[-44,6],[-51,-12],[-60,-14],[-74,-9],[-41,-2],[-38,-14],[-32,-15],[-15,-2],[-35,18],[-17,2],[-40,1],[32,4],[28,-3],[8,3],[-5,13],[-8,11],[-43,39],[-4,2],[-6,0],[-3,3],[3,7],[10,10],[2,1],[2,1],[1,4],[-1,5],[-2,2],[-2,0],[-2,-3],[-10,-7],[-28,8],[-11,-3],[4,-8],[-21,-4],[-4,2],[-4,4],[-2,6],[3,5],[-4,7],[-8,-4],[-8,-8],[-7,-4],[-8,4],[-16,11],[-8,6],[4,1],[3,-2],[2,-2],[4,-2],[0,3],[-6,14],[-9,16],[-12,7],[-2,3],[-3,4],[-4,4],[-4,2],[-3,-2],[-4,-5],[-3,2],[-2,3],[-3,0],[-3,-1],[-4,2],[-3,-1],[-4,-6],[-5,0],[-3,1],[-3,2],[-4,5],[2,6],[5,6],[8,14],[1,3],[-1,5],[-2,1],[-2,0],[-1,2],[-2,7],[0,4],[4,5],[4,3],[4,1],[9,0],[0,4],[-6,5],[5,11],[14,17],[-1,6],[0,9],[-1,5],[-9,-13],[-6,-4],[-6,1],[-3,8],[2,6],[2,4],[3,2],[4,7],[3,3],[1,2],[0,3],[0,4],[0,4],[1,1],[3,3],[0,7],[-1,12],[1,7],[2,5],[5,7],[6,6],[2,3],[2,7],[0,6],[-2,7],[1,5],[4,2],[8,-3],[8,-4],[7,-3],[8,6],[4,6],[1,5],[1,6],[-1,9],[-2,2],[-3,-2],[-20,-6],[-8,-5],[-6,-6],[-4,-9],[-4,-11],[-5,-9],[-15,-8],[-4,-10],[-2,-12],[-4,-10],[-5,-6],[-18,-12],[-7,-3],[-5,-4],[-6,-9],[-9,-19],[-7,-20],[-5,-9],[-13,-7],[-20,-29],[-10,-7],[-10,-1],[-23,4],[-4,2],[-3,4],[-6,8],[-9,4],[-4,2],[-2,4],[-2,12],[-2,5],[-3,3],[-10,3],[-6,6],[-28,4],[-16,4],[-20,-6],[-17,-4],[-21,5],[0,9],[5,5],[12,4],[4,5],[5,7],[21,21],[25,39],[2,6],[2,10],[5,6],[5,4],[3,6],[-3,10],[-6,-3],[-11,-11],[-42,-21],[-10,5],[11,6],[6,6],[4,8],[-6,1],[-10,-5],[-5,4],[6,8],[3,6],[2,7],[-5,-2],[-7,-5],[-6,-8],[-6,-16],[-7,-5],[-15,-1],[3,8],[3,5],[8,7],[3,5],[5,11],[3,4],[-7,3],[-7,-6],[-8,-9],[-6,-4],[-8,-2],[-43,-21],[-11,-2],[-5,7],[0,2],[-1,1],[-1,2],[0,3],[1,2],[4,1],[2,1],[2,4],[32,29],[10,3],[3,2],[2,5],[1,6],[2,2],[7,-4],[2,4],[0,3],[-5,13],[1,5],[1,4],[-2,3],[-2,1],[-2,0],[-1,-1],[-1,-2],[-3,-10],[-7,-10],[-13,-10],[-7,-3],[-4,2],[0,6],[6,8],[-14,-4],[-3,-3],[-3,-5],[-2,-6],[-3,-5],[-4,-2],[-9,1],[-3,3],[-1,8],[0,8],[2,4],[3,3],[2,5],[-8,-4],[-11,-23],[-10,-7],[-8,-9],[-2,-3],[-3,-3],[-13,-6],[-3,0],[-6,7],[-9,2],[-27,-2],[-2,1],[0,4],[0,3],[-1,4],[-2,4],[-9,12],[5,4],[5,-1],[5,-6],[4,-5],[2,12],[1,5],[3,4],[4,-1],[8,-9],[8,5],[8,-9],[3,3],[1,7],[-4,5],[-5,2],[-4,0],[6,5],[7,-1],[13,-4],[5,1],[11,6],[12,3],[22,13],[19,5],[0,5],[-9,2],[-3,6],[4,5],[8,3],[28,-8],[-36,30],[-8,-4],[-8,-16],[-10,-13],[-11,-8],[-12,-2],[0,5],[1,2],[1,2],[2,8],[-35,-18],[-13,6],[1,10],[-3,5],[-5,0],[-5,-5],[-5,-8],[-2,-3],[-1,5],[1,12],[5,5],[1,3],[-1,5],[-3,4],[-3,2],[-3,1],[-4,-2],[-3,-3],[-5,0],[-5,5],[0,2],[-4,10],[-2,4],[-2,2],[-1,3],[0,6],[-5,12],[0,6],[7,0],[4,-3],[6,-7],[24,-6],[6,4],[-10,6],[-13,5],[-9,8],[2,15],[2,6],[3,12],[3,5],[6,1],[14,-6],[5,-3],[1,2],[1,6],[0,3],[-12,4],[-6,4],[-5,8],[26,8],[76,-3],[13,8],[-12,16],[-6,6],[-7,3],[-16,-2],[-14,3],[-17,-3],[-25,2],[-7,-4],[-6,-7],[-12,-18],[-13,-14],[-26,-19],[-11,-16],[-5,-12],[-5,-8],[-6,-6],[-10,-7],[-8,-2],[-8,1],[-7,6],[10,15],[4,9],[-1,4],[-6,1],[-1,-1],[-2,-2],[0,-2],[0,-3],[-1,-1],[-4,-6],[-3,-2],[-4,0],[3,8],[2,6],[-2,5],[-11,3],[-3,0],[-6,-8],[-8,-6],[0,-9],[1,-8],[0,-5],[-5,-2],[-6,1],[-4,5],[-2,9],[-1,11],[1,8],[1,3],[-2,0],[-12,-12],[-3,-1],[-4,7],[-2,2],[-2,-7],[2,-6],[6,-10],[2,-6],[0,-12],[-3,-5],[-12,1],[2,-5],[-11,-14],[-6,-5],[-2,5],[-3,9],[-6,-1],[-7,-4],[-5,-2],[3,14],[16,35],[-6,3],[-4,-6],[-5,-9],[-4,-4],[-3,4],[2,11],[5,11],[3,6],[-8,-1],[-5,-6],[-7,-19],[-4,-25],[-4,-11],[-5,3],[-1,43],[2,11],[2,8],[2,8],[-2,14],[3,3],[8,6],[2,2],[0,6],[-3,3],[-2,1],[-2,3],[-3,8],[-2,10],[1,8],[4,6],[-4,3],[-5,2],[-5,-1],[-4,-4],[-1,-8],[1,-5],[3,-4],[1,-5],[-2,-15],[-4,-16],[-6,-14],[-5,-5],[-5,-2],[-5,-3],[-2,-3],[4,-1],[8,1],[2,-1],[2,-5],[-1,-3],[-2,-2],[-1,-2],[-1,-3],[-2,-5],[-1,-2],[1,-5],[3,-1],[3,0],[2,-2],[1,-7],[-2,-15],[2,-9],[1,-14],[-1,-10],[-3,-4],[-15,-2],[-5,4],[5,21],[-6,-1],[-7,-5],[-5,-1],[-1,7],[2,10],[3,11],[3,5],[0,4],[-7,-2],[-11,-11],[-5,1],[0,-3],[-1,-1],[-1,-5],[7,-3],[-2,-7],[-10,-14],[10,-5],[1,-1],[2,-2],[2,-5],[2,-5],[-1,-2],[-3,-2],[-5,-5],[-3,-1],[-21,6],[-5,4],[-3,6],[-3,8],[-2,12],[-2,4],[-2,5],[-2,3],[-23,19],[-5,2],[-3,3],[4,7],[10,12],[0,3],[-1,2],[0,2],[1,3],[3,4],[6,1],[3,3],[3,9],[5,16],[3,8],[-4,3],[-1,0],[5,13],[9,14],[11,13],[8,5],[3,4],[9,16],[4,5],[12,6],[4,7],[-3,11],[-7,-10],[-4,-1],[-4,3],[12,22],[2,10],[-4,4],[-5,-2],[-4,-6],[-7,-16],[-13,-24],[-3,-4],[-8,-6],[-10,-12],[-15,-27],[-10,-31],[-6,-15],[-8,-6],[-6,-2],[-2,2],[-2,2],[-2,8],[-6,10],[-2,9],[-3,7],[-5,4],[3,11],[-2,3],[-4,-2],[-10,-8],[-17,-4],[-6,-4],[-7,-7],[-24,-5],[-5,-5],[3,-2],[7,-2],[4,-4],[-3,-3],[-6,-10],[-2,-5],[-3,-3],[-11,-7],[0,-4],[11,-3],[9,7],[18,25],[9,8],[15,10],[13,3],[8,-10],[-4,-2],[-1,-6],[0,-7],[-1,-6],[-10,-25],[-3,-6],[-9,-10],[-4,-2],[-4,1],[-9,10],[-6,1],[2,-6],[11,-16],[2,-8],[-2,-5],[-3,-3],[-2,-7],[-1,-9],[1,-9],[-1,-7],[-3,-3],[-5,1],[-10,5],[-6,2],[13,-17],[4,-8],[-6,-4],[-8,2],[-12,11],[-8,4],[-19,-1],[-17,-6],[-33,-22],[10,-4],[9,5],[10,7],[9,4],[2,-1],[3,-5],[1,-2],[2,1],[17,8],[5,-1],[3,-8],[-11,-5],[-25,-6],[-9,-11],[-3,-6],[-8,-9],[-3,-7],[-4,-15],[-4,-6],[-4,-3],[0,-5],[10,-1],[4,1],[3,3],[6,8],[7,3],[2,3],[2,4],[0,6],[1,8],[1,3],[3,0],[3,3],[7,7],[5,4],[6,1],[7,1],[3,1],[4,5],[2,1],[16,0],[0,-4],[-4,0],[0,-3],[3,-2],[2,-3],[1,-3],[2,-5],[-7,-3],[-3,-3],[-2,-6],[0,-6],[2,-15],[-1,-3],[-8,-3],[-2,-7],[1,-23],[3,4],[7,12],[4,3],[3,2],[3,2],[3,5],[2,16],[9,19],[12,15],[10,7],[0,-3],[-5,-8],[-2,-9],[0,-12],[3,-12],[2,-6],[5,-9],[2,-6],[1,-5],[1,-5],[0,-5],[2,-5],[-3,-5],[-3,-4],[-4,-2],[-4,-1],[-19,-35],[-6,-5],[-6,3],[0,4],[-1,6],[-15,-2],[-4,7],[-2,9],[-7,2],[-7,-5],[-10,-13],[-21,-18],[-15,-18],[-4,-6],[-4,-10],[-2,-9],[5,-4],[6,4],[10,17],[16,11],[12,15],[12,10],[11,-4],[1,-6],[5,-3],[7,-1],[5,-2],[-4,-8],[9,2],[2,-1],[-3,-7],[-2,-7],[3,-2],[5,2],[5,3],[10,4],[2,-13],[2,-13],[7,3],[3,7],[1,6],[-1,6],[-1,8],[-1,2],[-1,3],[0,3],[1,4],[1,2],[5,4],[0,2],[2,6],[2,5],[4,2],[2,-3],[1,-8],[-1,-8],[-2,-8],[-2,-4],[7,-2],[3,14],[2,19],[2,13],[2,4],[11,10],[3,1],[4,-11],[2,-5],[4,-2],[-6,-21],[3,1],[7,6],[2,1],[4,-3],[1,-4],[1,-5],[1,-4],[4,-3],[4,-1],[3,-4],[1,-8],[-2,-4],[-3,-4],[-4,-3],[-3,-1],[4,-10],[6,1],[5,3],[3,-4],[-2,-11],[-4,-4],[-12,0],[1,-9],[-5,-6],[-6,-4],[-6,-1],[-8,10],[-3,0],[3,-14],[-7,2],[-13,9],[-7,1],[3,-4],[10,-18],[2,-6],[-4,-8],[-7,-1],[-8,2],[-5,2],[0,11],[-5,3],[-6,-3],[-3,-8],[2,-10],[3,0],[4,3],[5,-4],[0,-15],[-7,-14],[-10,-11],[-9,-5],[-3,-6],[-3,-1],[-2,2],[-4,10],[-2,4],[-6,1],[-3,-6],[0,-8],[2,-3],[5,-3],[1,-7],[-2,-8],[-3,-7],[-5,-5],[-5,-2],[-4,-4],[-3,-9],[9,2],[10,4],[8,6],[9,8],[15,21],[9,5],[10,-6],[0,-3],[-11,-2],[-10,-6],[5,-3],[12,-4],[4,-5],[1,-9],[-1,-8],[-6,-16],[7,6],[7,28],[6,11],[2,1],[4,0],[3,-2],[2,-6],[-1,-7],[-1,-4],[-16,-31],[-7,-9],[-7,-3],[-18,-1],[-5,5],[3,16],[-4,1],[-6,5],[-3,-2],[-9,-30],[-2,-19],[-4,-17],[-7,-12],[-8,-3],[0,-4],[10,-5],[1,-1],[0,-5],[-1,-3],[0,-2],[1,-5],[-9,-19],[-5,-2],[-5,9],[-8,25],[-5,9],[-8,3],[3,-12],[0,-9],[-3,-7],[-6,-5],[6,-4],[-4,-8],[-24,-20],[-2,0],[-3,5],[0,5],[2,4],[2,3],[-4,2],[-4,0],[-4,-2],[-5,0],[-3,1],[-6,5],[-4,1],[-8,-3],[-16,-13],[-8,0],[-5,6],[-9,15],[-7,3],[-15,-6],[-5,0],[1,10],[-16,-9],[-9,0],[-4,13],[4,7],[15,21],[4,9],[-8,5],[-10,-2],[-8,-6],[-17,-20],[-2,-4],[-1,-6],[0,-6],[-1,-6],[-2,-4],[-1,-9],[-4,-9],[-3,-8],[4,-6],[-3,-8],[-5,-9],[-4,-6],[-3,-2],[-2,8],[0,22],[-2,13],[0,6],[0,10],[-2,2],[-3,1],[-3,3],[0,8],[2,2],[6,3],[2,4],[-2,6],[-5,1],[-7,-1],[-3,40],[-3,12],[-6,7],[-6,1],[-6,-5],[-2,-7],[-2,-12],[0,-12],[1,-8],[5,-16],[1,-3],[8,-12],[-8,-4],[-4,-3],[-3,-5],[-2,-5],[-1,-14],[-1,-5],[-4,-3],[-3,1],[-4,2],[-4,0],[-4,-3],[-8,-11],[-3,-2],[-3,-7],[-8,-31],[-6,-7],[0,-3],[2,-7],[3,-7],[3,-3],[3,-6],[2,-2],[2,-1],[9,1],[-2,-7],[0,-5],[0,-4],[0,-4],[5,-8],[2,-7],[-1,-6],[-3,0],[-4,4],[-6,8],[-4,3],[-14,1],[10,13],[2,4],[-2,6],[-5,1],[-5,0],[-3,1],[1,9],[-8,9],[2,8],[2,6],[4,20],[1,7],[-3,16],[-5,16],[-8,12],[-7,2],[-5,-9],[1,-34],[-3,-16],[-5,-14],[-3,-3],[-6,3],[-9,10],[-4,1],[-6,-6],[4,-3],[3,-5],[14,-21],[6,-8],[6,-48],[-1,-13],[2,-10],[-3,-3],[-5,2],[-4,5],[-6,8],[-1,4],[2,10],[0,4],[-4,5],[-10,5],[-4,4],[-11,20],[-3,3],[-11,2],[-16,9],[-4,1],[-1,-4],[-1,-10],[17,-14],[2,-4],[3,-11],[3,-2],[6,-2],[3,-2],[-11,-28],[-12,-16],[-3,-9],[-5,6],[-4,7],[-5,16],[-3,5],[-7,6],[-6,3],[-3,-4],[3,-7],[4,-6],[3,-6],[-1,-9],[-2,-10],[-1,-8],[2,-8],[4,-4],[-6,-9],[-4,-3],[-3,-1],[-4,2],[-5,9],[-3,2],[-6,-5],[0,-11],[3,-12],[3,-10],[-17,1],[-5,-4],[3,-17],[-9,-1],[-4,-2],[-9,-10],[-6,-3],[-6,-1],[-6,5],[2,1],[4,3],[2,0],[-4,7],[-2,1],[4,3],[3,1],[4,3],[2,5],[-4,1],[-2,4],[0,6],[1,6],[2,5],[9,5],[3,4],[2,7],[0,6],[0,5],[2,6],[5,10],[1,5],[-2,8],[7,11],[6,16],[1,12],[-8,-3],[-7,-11],[-21,-53],[-7,-9],[-4,-6],[-9,-27],[-11,-22],[-1,-9],[-3,-7],[-4,-1],[-3,7],[1,10],[-11,12],[-3,13],[2,8],[11,19],[3,11],[-10,1],[-24,-22],[-11,-7],[0,-4],[5,-3],[7,-8],[5,-9],[4,-9],[0,-9],[-4,-5],[-12,-6],[0,-4],[7,-4],[2,-3],[-1,-4],[-6,-5],[-6,-4],[-21,-1],[-2,-4],[-2,-10],[-3,-9],[-5,-5],[-5,-2],[-17,-16],[-2,-3],[-2,-2],[-15,-5],[0,-6],[3,-8],[6,-17],[-2,-10],[-10,-6],[-10,-8],[2,-18],[-11,13],[-4,9],[1,8],[3,8],[0,3],[-3,1],[-3,2],[-4,9],[-2,2],[-4,2],[-3,-2],[-3,-4],[-4,-3],[-8,5],[-16,5],[-14,9],[-4,1],[-4,-1],[-4,-2],[4,-9],[6,-1],[6,0],[5,-4],[4,-6],[14,-13],[6,-3],[3,-2],[1,-5],[-1,-5],[-1,-5],[-2,-3],[-10,-6],[-4,-1],[-6,6],[-8,4],[-3,0],[-15,-1],[-5,1],[-16,11],[-6,2],[-5,6],[-2,1],[-3,1],[-3,0],[-23,-15],[-5,-6],[3,-2],[7,-1],[3,-1],[-4,-10],[-8,-2],[-16,4],[-8,-1],[-3,-3],[-1,-5],[4,-4],[7,4],[3,-8],[-32,-7],[-17,2],[-7,16],[2,10],[1,5],[-2,3],[-21,-6],[-8,0],[-7,4],[-5,10],[5,0],[2,2],[0,4],[-3,6],[-2,2],[-11,2],[-5,4],[-4,5],[-3,8],[1,12],[2,7],[5,7],[10,10],[7,3],[23,-3],[-6,8],[-12,11],[-6,8],[2,8],[8,8],[16,10],[17,1],[8,3],[4,10],[4,8],[10,3],[51,-5],[8,-6],[5,-8],[6,-5],[5,0],[2,7],[-4,10],[-14,12],[-3,8],[3,15],[7,8],[15,8],[6,1],[13,-3],[6,2],[2,7],[0,8],[2,6],[6,3],[11,-2],[6,2],[0,6],[-7,12],[0,6],[4,9],[4,3],[8,5],[3,4],[3,6],[4,14],[2,6],[7,10],[22,25],[-8,9],[-12,1],[-12,-6],[-12,-16],[-17,-9],[-46,-41],[-10,-3],[-4,-2],[-5,-5],[-5,-7],[-2,-6],[2,-6],[5,-5],[5,-3],[1,-1],[4,-2],[-5,3],[-88,42],[-9,5],[-14,14],[-12,20],[-3,22],[2,6],[8,14],[2,7],[3,14],[25,79],[2,11],[2,10],[5,10],[67,87],[10,17],[7,21],[4,28],[-1,27],[1,8],[4,8],[4,3],[4,2],[8,1],[3,3],[2,6],[0,15],[5,38],[0,13],[0,17],[-2,8],[-9,14],[-3,10],[-6,28],[-6,11],[-5,13],[-5,13],[-1,10],[5,12],[21,0],[7,6],[6,11],[6,5],[51,6],[7,6],[5,8],[73,69],[45,31],[42,33],[18,8],[14,-9],[4,-11],[3,-14],[5,-14],[9,-7],[7,-9],[3,-1],[50,-13],[18,14],[13,3],[23,17],[7,3],[20,-3],[10,-3],[9,-6],[13,-11],[4,-1],[27,0],[5,-2],[11,-9],[95,-21],[6,-3],[4,-4],[3,-5],[6,-4],[5,-3],[4,2],[-10,25],[-14,18],[-16,11],[-15,3],[-31,-13],[-6,3],[-6,7],[-29,21],[-9,4],[-29,4],[-46,30],[-12,16],[-22,13],[-44,36],[2,10],[6,12],[6,8],[6,-3],[5,-2],[9,6],[8,8],[5,6],[2,5],[4,19],[2,6],[16,29],[4,5],[4,1],[4,-1],[4,1],[6,6],[7,19],[6,9],[8,6],[93,42],[11,1],[6,3],[4,7],[-9,5],[-39,-5],[4,4],[-7,5],[-61,-15],[-30,-21],[-11,-17],[-5,-6],[-13,-11],[-5,-6],[-5,-8],[-4,-11],[-2,-25],[-3,-13],[-3,-11],[-3,-7],[-9,-7],[-83,8],[-3,3],[-4,6],[-1,3],[-1,1],[-4,-6],[1,0],[0,-4],[0,-4],[-1,-4],[-2,-1],[-32,1],[-14,6],[-11,14],[-5,22],[5,27],[-6,-2],[-7,-8],[-4,-11],[5,-23],[-6,-2],[-8,5],[-6,9],[-10,-22],[-11,-14],[-44,-23],[-16,-2],[-3,-2],[-5,-8],[-3,-2],[-4,-1],[-7,-4],[-4,-3],[-5,-9],[-19,-40],[-4,-10],[-4,-8],[-6,-6],[-18,-9],[-19,-4],[-3,-2],[-8,-8],[-3,-2],[-21,5],[-11,-2],[-13,-5],[-12,-8],[-13,-18],[-9,-8],[-10,-13],[-12,-3],[-6,-5],[-1,-11],[-12,-17],[-4,-12],[1,-6],[1,-6],[23,-50],[2,-11],[-10,-4],[-9,3],[-17,16],[-8,5],[0,-3],[1,-6],[1,-3],[-13,-4],[-6,-4],[-9,-13],[-14,-13],[-5,-3],[-4,0],[-2,-2],[-2,-6],[-1,-1],[-10,-28],[-3,-3],[-3,-3],[-6,-4],[-8,-9],[-17,-13],[-23,-32],[-4,-8],[-3,-9],[-1,-12],[2,-12],[5,-9],[7,-5],[13,-6],[0,-4],[-34,-23],[-8,-14],[-1,-4],[0,-10],[-2,-4],[-2,-3],[-14,-9],[-13,-5],[-6,-5],[-17,-22],[-5,-3],[-5,4],[-5,5],[-6,4],[-37,-6],[-12,6],[2,6],[5,0],[5,-2],[5,-1],[0,5],[-15,5],[-6,-1],[-8,-9],[-2,15],[0,11],[-2,8],[-9,3],[-20,0],[-11,-2],[-9,-6],[-6,-8],[0,-5],[5,0],[6,7],[7,6],[12,1],[11,-4],[7,-9],[0,-5],[-1,-11],[1,-4],[2,-5],[7,-6],[10,-11],[27,-11],[6,-9],[3,-3],[3,0],[4,1],[3,-1],[4,-4],[2,-3],[-2,-1],[-1,-3],[1,-5],[1,-5],[3,-3],[3,-2],[19,-20],[3,-6],[0,-7],[-5,-16],[-4,-6],[-5,0],[0,-4],[1,-1],[2,-3],[-13,-15],[-4,-6],[-3,-10],[-4,-22],[-4,-8],[-5,-5],[-20,-7],[-6,-5],[-3,-2],[-4,-1],[-14,2],[-2,0],[-6,-4],[-24,6],[-7,-2],[-13,-5],[-38,-5],[-4,-4],[-5,-8],[-5,-10],[-2,-7],[9,1],[8,4],[8,2],[13,-7],[4,1],[3,2],[18,5],[13,-1],[2,-3],[2,-8],[0,-8],[-2,-4],[-1,-4],[-2,-14],[-7,-24],[-3,-7],[-7,-5],[-17,-9],[-3,-8],[-4,-5],[-10,-6],[-10,-4],[-7,1],[-1,4],[-3,12],[-3,4],[-5,-1],[-3,-6],[0,-6],[3,-3],[1,-2],[-1,-4],[-3,-4],[-3,-2],[-5,1],[-13,7],[-2,1],[-7,-1],[0,4],[4,4],[3,5],[11,29],[4,3],[6,-5],[-4,8],[-12,6],[-20,31],[1,-10],[-1,-9],[0,-8],[3,-12],[-1,-6],[-5,-25],[-2,-7],[-5,-8],[-7,-5],[-6,-2],[-6,-1],[-4,4],[-7,18],[-4,6],[2,2],[1,1],[1,1],[0,4],[-7,-1],[-1,-6],[1,-9],[0,-8],[-6,-5],[-14,-2],[-3,-7],[24,-3],[2,-1],[11,-10],[2,0],[-1,-8],[-5,-17],[-10,-7],[-47,-7],[-6,8],[-6,2],[-6,-3],[-6,-5],[11,-1],[8,-4],[6,-6],[13,-18],[4,-9],[1,-10],[-7,-9],[-1,-6],[-8,-4],[-17,-2],[-15,1],[-5,-1],[-2,-3],[-4,-10],[-3,-3],[-23,-9],[-2,1],[-3,3],[-2,1],[-2,-2],[-3,-5],[-1,-2],[-5,-1],[-14,1],[9,-12],[13,-7],[12,1],[8,14],[2,-2],[3,-2],[3,0],[3,0],[0,-4],[-20,-11],[-24,-22],[-4,-6],[-4,-8],[-1,-8],[-1,-19],[1,-7],[6,0],[-2,-9],[-4,-4],[-12,1],[2,-12],[-5,-6],[-7,-2],[-7,-1],[6,-3],[2,-1],[-3,-3],[-2,-3],[-3,-1],[-3,-1],[2,-10],[5,-2],[12,4],[4,-3],[1,-6],[-1,-7],[-4,-4],[2,-3],[1,-1],[0,-4],[-5,-6],[0,-13],[3,-12],[6,-6],[7,4],[6,8],[4,9],[6,8],[17,6],[35,-11],[17,1],[5,3],[2,1],[27,-2],[7,-4],[5,-6],[5,-9],[5,-12],[3,-4],[11,-6],[3,-4],[3,-2],[5,-1],[6,1],[3,2],[4,5],[3,0],[5,-7],[11,-6],[4,-4],[9,-20],[3,-2],[9,0],[2,-2],[0,-3],[-1,-4],[0,-4],[3,-12],[3,-3],[5,-1],[0,-4],[-4,-2],[-15,-2],[4,-4],[4,-1],[18,3],[3,-1],[-1,-7],[-7,-8],[-14,6],[-7,-4],[-4,-11],[-5,-28],[-3,-12],[-5,-10],[-4,-6],[-25,-22],[-9,-1],[-4,-3],[-2,-7],[-2,-12],[-5,-8],[-7,-6],[-16,-8],[-29,-4],[-19,3],[-10,-2],[-4,-9],[1,-5],[1,-3],[2,-1],[-1,-3],[-3,-7],[-1,-8],[-3,-9],[0,-1],[-1,-2],[-2,-2],[-2,1],[-2,1],[-3,1],[-2,-3],[3,-2],[8,-3],[2,-3],[-1,-4],[-4,-5],[-4,-5],[-3,-2],[-9,0],[-12,3],[-11,-1],[-8,-10],[4,-6],[5,-18],[3,-9],[1,-3],[-1,-2],[0,-2],[2,-1],[8,0],[3,-2],[4,-6],[2,-6],[-1,-2],[-3,-1],[-13,-9],[-7,-2],[-29,0],[-2,-4],[2,-1],[-1,-4],[-3,-4],[-3,-2],[-7,-1],[-16,-8],[-5,-6],[-2,-7],[-11,-8],[2,-3],[2,-5],[-1,-5],[-3,-3],[3,-2],[3,3],[2,4],[3,3],[5,1],[7,0],[4,3],[-1,10],[5,3],[13,-1],[1,2],[1,4],[1,4],[2,2],[5,2],[1,-2],[1,-3],[11,-20],[-8,-5],[-15,-2],[-12,-6],[17,-4],[6,-7],[0,-14],[-6,-11],[-9,-4],[-10,2],[-7,5],[-2,-1],[-4,-3],[4,-8],[15,-16],[2,-8],[-5,-9],[-10,4],[-15,17],[-4,-10],[1,-7],[3,-7],[2,-9],[-2,-12],[-5,-2],[-5,5],[-4,16],[-6,6],[-6,5],[-4,5],[-1,4],[-1,5],[-1,6],[0,5],[-1,5],[-4,4],[-6,5],[7,-33],[2,-19],[-2,-15],[-8,-1],[-22,23],[-10,-3],[2,-5],[14,-18],[1,-2],[2,-5],[-2,-11],[-4,-11],[-5,-5],[-13,4],[-4,2],[-1,6],[0,7],[-1,5],[-5,4],[-6,-2],[-7,-6],[-5,-8],[-1,-4],[-1,-8],[-1,-5],[-3,-2],[-3,-3],[-3,-2],[-3,-1],[-6,3],[-13,11],[-7,3],[-25,0],[-14,-4],[-5,-5],[3,-8],[-4,-16],[-5,-8],[-7,-3],[-10,-1],[13,-24],[2,-11],[-8,-10],[-11,-4],[-32,4],[8,-13],[1,-5],[-2,-4],[-4,-4],[-9,-2],[-9,4],[-5,0],[-3,-4],[0,-4],[7,-16],[-10,4],[-3,0],[0,-4],[6,-5],[7,-9],[3,-11],[-3,-10],[-3,-2],[-8,-3],[-7,-2],[-3,-1],[-2,0],[-3,2],[-8,10],[-16,10],[-4,1],[-7,4],[-6,10],[-6,6],[-9,-4],[-3,-7],[-3,-10],[-2,-12],[-1,-10],[3,-11],[11,-11],[-1,-8],[-6,-6],[-25,-10],[-16,0],[-3,-2],[3,-5],[7,-6],[1,-3],[-1,-3],[-1,-3],[-1,-2],[2,-8],[-1,-13],[1,-8],[-2,-4],[-14,-5],[-3,2],[-2,5],[0,5],[-1,5],[-3,4],[-2,0],[-4,-10],[-4,-2],[-12,-2],[-2,-4],[-3,-10],[-8,1],[-7,8],[-12,17],[-4,-3],[0,-9],[5,-10],[0,-4],[-18,3],[-6,-3],[3,-7],[11,-1],[3,-7],[0,-10],[0,-9],[2,-7],[3,-4],[-10,-15],[-15,10],[-15,15],[-13,2],[-2,-5],[-1,-7],[-1,-8],[-3,-3],[-8,-5],[-11,-2],[-9,-6],[-36,-45],[-7,-1],[-7,-3],[-7,-6],[-3,-10],[1,-14],[5,-2],[40,21],[10,-2],[3,1],[-1,-7],[2,-9],[-1,-9],[-1,0],[-1,1],[0,2],[0,1],[-2,-15],[-7,-7],[-18,-6],[0,-4],[5,0],[6,-3],[4,-4],[2,-7],[2,-3],[6,-2],[2,-2],[1,-6],[0,-2],[-2,-2],[-1,-4],[-5,-12],[-23,-11],[-8,-7],[5,-7],[5,-9],[-5,-4],[-3,4],[-2,6],[-2,2],[-2,-6],[0,-16],[-2,-6],[-4,-4],[-5,0],[-6,1],[-4,3],[-3,3],[-10,13],[-2,-4],[2,-8],[-6,0],[23,-32],[4,-13],[-7,0],[-23,9],[-3,0],[-3,1],[-2,2],[-1,3],[-4,13],[-1,2],[-2,2],[-3,3],[-14,6],[-2,-2],[-2,-4],[-1,-5],[0,-4],[2,-2],[3,-4],[2,-3],[2,-5],[0,-7],[-2,-3],[-2,-2],[-2,-4],[-1,-5],[0,-10],[-1,-6],[-2,-10],[-3,-10],[-4,-6],[-5,4],[-13,29],[-5,5],[-6,5],[-6,4],[-3,0],[2,-6],[2,-7],[-1,-7],[-2,-5],[2,-3],[1,-5],[1,-4],[-3,-2],[-12,-2],[-10,-10],[-2,-2],[-3,-5],[-8,-25],[-4,-6],[-5,3],[-16,14],[-6,-3],[2,-5],[6,-6],[4,-10],[-4,-14],[-8,-9],[-7,3],[-7,6],[-13,6],[-5,6],[-17,24],[-7,7],[-8,2],[-6,-6],[-5,-6],[-2,-4],[0,-6],[1,-8],[3,-3],[4,-1],[3,-2],[3,-5],[2,-7],[2,-7],[-1,-6],[-2,3],[-2,3],[-2,1],[-2,-1],[-1,-2],[-2,-3],[-1,-4],[1,-1],[-5,0],[-13,4],[-6,-7],[-6,-13],[-5,-8],[-7,8],[-2,-5],[3,-2],[2,-3],[2,-5],[0,-5],[2,4],[4,-10],[6,-5],[14,-2],[1,-2],[5,-12],[2,-2],[0,-2],[-2,-6],[-3,-5],[-2,-3],[-9,0],[-19,7],[-7,-5],[-7,-7],[-9,0],[-8,5],[-6,8],[-10,24],[-6,6],[-9,-4],[-9,-7],[-3,-5],[-3,-3],[-11,1],[-4,0],[-5,-7],[-9,-18],[-5,-3],[-14,-5],[-2,-1],[-1,-2],[-2,-3],[0,-4],[-1,-2],[-9,0],[-5,-3],[-4,-6],[-2,-8],[-2,-11],[16,4],[31,19],[23,1],[3,-1],[3,-3],[3,-5],[0,-6],[0,-5],[2,-6],[1,-6],[-1,-6],[-6,-8],[-4,-9],[-2,-1],[-4,-1],[-16,4],[-31,18],[-16,3],[-7,-2],[-4,-4],[-1,-6],[3,-5],[7,5],[2,-6],[-3,-13],[-8,-4],[-16,2],[-7,-2],[-4,0],[-3,5],[-2,2],[-10,3],[-6,0],[-5,-2],[-16,-15],[-5,-5],[-3,-6],[-3,-8],[-5,-8],[-10,-13],[-4,-8],[1,-3],[2,-9],[-8,-1],[-10,-8],[-9,-9],[-7,-10],[-4,-16],[8,-9],[23,-3],[-2,6],[-3,4],[-2,5],[-1,7],[1,7],[3,5],[22,21],[7,-2],[1,-17],[3,4],[2,2],[3,0],[2,-2],[-1,-3],[-1,-9],[12,12],[7,5],[3,-2],[4,-5],[2,-2],[15,-4],[9,-5],[5,-7],[-5,-9],[-6,-8],[-7,-5],[-10,-4],[-7,-5],[-4,-2],[-4,1],[-6,3],[-4,1],[1,-5],[-1,-5],[-2,-4],[-2,-7],[4,3],[4,4],[4,2],[12,-10],[1,-4],[-6,-7],[8,-4],[8,6],[8,10],[15,10],[8,10],[8,6],[8,-5],[-9,-4],[-3,-3],[-2,-3],[-1,-5],[-2,-4],[-5,-3],[-4,-8],[-3,-3],[-3,0],[-3,1],[-3,0],[-4,-5],[2,-4],[-7,-4],[-10,-1],[-8,-5],[-2,-14],[-6,5],[-2,10],[0,10],[-1,7],[-5,0],[-3,-9],[-1,-11],[3,-8],[-5,-1],[-3,1],[4,-12],[5,-11],[1,-10],[-6,-8],[-4,12],[-1,6],[1,7],[-3,1],[-13,-1],[-1,-3],[3,-7],[7,-11],[-5,-7],[0,-10],[5,-6],[4,5],[-1,1],[0,2],[-1,3],[7,-5],[4,-11],[-2,-10],[-5,-3],[-4,5],[-6,13],[-4,3],[-4,-2],[0,-7],[2,-8],[2,-7],[-4,-1],[-6,5],[-6,8],[-5,8],[17,12],[0,4],[-16,-6],[-5,-4],[-4,0],[-1,7],[2,8],[5,3],[0,4],[-6,5],[0,8],[4,8],[7,3],[1,3],[2,13],[2,5],[1,0],[3,-1],[3,1],[1,-1],[1,0],[0,3],[0,5],[0,1],[6,5],[3,5],[0,4],[-3,3],[-21,-1],[-21,4],[4,-9],[5,-5],[12,-6],[-7,-9],[-6,-10],[-6,-9],[-9,-5],[1,11],[-2,9],[-4,4],[-5,-3],[3,-7],[1,-6],[-1,-6],[-3,-5],[9,-5],[3,-4],[-2,-8],[0,-10],[-18,-9],[4,-9],[6,-1],[5,1],[5,-1],[3,-7],[0,-10],[-3,-6],[-8,-5],[0,-3],[1,-1],[3,-3],[2,0],[-5,-7],[-8,-3],[-8,1],[-6,4],[2,3],[2,3],[3,2],[3,1],[0,3],[-3,6],[-2,6],[-3,3],[-7,2],[-1,-2],[-2,-9],[-2,-1],[-4,1],[-3,3],[-3,10],[-7,-1],[-8,-17],[-11,-37],[-2,0],[-2,6],[-4,3],[-4,0],[-9,-3],[-3,-1],[-1,-3],[-1,-5],[1,-3],[1,-3],[1,1],[0,-4],[0,-2],[-1,-2],[-3,-1],[-3,1],[-1,2],[-1,3],[-8,11],[-3,3],[-4,1],[-4,-1],[-9,-6],[-4,-1],[-4,-2],[-4,-9],[-4,-2],[-18,-2],[-7,-6],[-7,-12],[-4,11],[-7,1],[-7,-4],[-5,-8],[-3,-10],[-1,-23],[-2,-7],[-5,-1],[-4,7],[-4,10],[-2,8],[-1,8],[0,11],[1,11],[2,11],[-6,0],[-8,-3],[-7,-4],[-4,-5],[1,-9],[8,-17],[2,-9],[1,-6],[1,-11],[0,-6],[1,-3],[1,-4],[0,-2],[0,-4],[-2,-2],[-1,-1],[-1,-2],[-3,-7],[-6,-11],[-4,-10],[6,-6],[-1,-7],[0,-5],[0,-6],[-2,-4],[-1,-2],[-1,-3],[-1,-2],[-1,-1],[-3,-1],[-1,-2],[-5,-7],[-5,-10],[-3,-10],[1,-9],[-26,-7],[-6,3],[3,5],[6,10],[4,5],[-9,-1],[-8,-3],[4,9],[9,3],[8,-1],[6,-7],[5,4],[0,5],[1,4],[1,2],[3,1],[2,2],[-2,3],[-9,7],[-10,5],[-5,4],[5,7],[16,13],[-4,6],[-3,4],[-1,10],[-2,1],[-2,0],[-1,3],[1,6],[8,20],[6,11],[1,5],[-5,7],[-4,4],[-13,7],[-35,5],[-5,0],[-2,-6],[-2,-14],[2,-8],[1,-6],[-2,-2],[-13,-5],[-5,4],[-9,16],[-6,1],[0,-4],[2,-3],[1,-3],[-1,-9],[-1,-5],[-3,0],[-7,5],[-2,3],[-3,3],[-3,1],[-2,-3],[-2,-10],[-2,-4],[8,-20],[-1,-5],[-9,-2],[-6,3],[-2,0],[-1,-6],[1,-3],[8,-7],[-8,-1],[-4,2],[-4,5],[-2,5],[-1,5],[-2,3],[-4,2],[2,-10],[2,-19],[2,-8],[-8,-10],[-21,4],[-5,-6],[0,-5],[-26,0],[-13,4],[-6,1],[-6,-5],[4,-7],[17,-13],[0,-4],[-7,-4],[-12,-13],[-6,1],[0,-9],[0,-3],[2,-5],[-3,-4],[-1,-8],[-2,-8],[0,-6],[-2,-7],[-5,-5],[-10,-6],[-5,8],[-9,31],[-3,14],[-1,14],[-1,10],[-4,0],[-4,-9],[-4,-12],[-4,-11],[-7,-4],[-17,2],[-7,-2],[1,-8],[7,-4],[9,0],[9,-1],[4,-10],[-2,-17],[-4,-7],[-28,-11],[-4,1],[-3,2],[-7,8],[-3,2],[-1,3],[1,6],[2,9],[1,7],[-2,5],[-7,3],[-16,-3],[-10,-15],[-8,-21],[-10,-18],[-13,-12],[-58,-31],[-9,-1],[-4,5],[-4,12],[-8,2],[-30,-15],[-8,2],[-3,12],[1,3],[7,23],[1,6],[1,25],[1,3],[7,17],[3,7],[6,7],[9,20],[6,4],[5,-5],[9,-16],[7,-3],[30,-8],[9,1],[1,5],[-4,6],[-24,8],[-4,2],[-3,6],[-2,6],[-3,6],[-7,5],[-14,6],[-12,15],[-8,2],[-51,-16],[2,-7],[-1,-4],[-2,-2],[-3,-3],[-4,-14],[-16,-20],[-2,-9],[1,-6],[1,-3],[2,-1],[1,-2],[0,-6],[-3,-28],[-1,-6],[1,-10],[-1,-4],[-1,-5],[-28,-45],[-5,-14],[-2,-2],[-15,-28],[-1,-5],[0,-6],[-1,-4],[-3,-1],[-6,-1],[-3,1],[-3,4],[2,-1],[7,1],[0,4],[-7,5],[-10,2],[-9,-1],[-8,-2],[0,-4],[7,-17],[2,-9],[-5,-6],[13,-10],[1,-6],[2,-6],[3,-4],[2,-3],[-4,-11],[-8,-8],[-9,-6],[-7,-3],[-7,1],[-6,5],[-7,8],[-3,10],[5,3],[2,1],[-2,4],[3,5],[1,5],[1,5],[1,6],[-26,-15],[-10,-18],[5,-13],[4,-16],[-1,-14],[-8,-6],[-4,-2],[-4,-3],[-4,-1],[-4,4],[-3,6],[-4,13],[-2,8],[-3,-3],[-2,-5],[-4,-11],[-3,-2],[-16,0],[-8,2],[-6,5],[-6,8],[-5,10],[-4,14],[2,7],[7,2],[8,-3],[13,-9],[7,0],[9,5],[-16,14],[-5,6],[-12,21],[-3,8],[-12,36],[-7,11],[-12,2],[8,6],[1,7],[-4,5],[-9,1],[-8,-2],[-7,-5],[-5,-8],[-5,-11],[-4,-12],[0,-12],[4,-10],[13,-7],[7,-6],[5,-8],[0,-7],[3,-7],[1,-3],[-1,-3],[-3,-4],[0,2],[-1,3],[-2,2],[-2,-1],[-1,-3],[0,-3],[1,-4],[-1,-4],[-1,-13],[-1,-11],[3,-5],[5,9],[1,-10],[14,-59],[-7,2],[-8,9],[-8,11],[-5,10],[10,-2],[2,2],[-1,8],[-3,9],[-4,5],[-5,-2],[-3,-8],[-2,-11],[-4,-9],[-7,-16],[1,-4],[1,-3],[-1,-1],[-1,-1],[-8,-9],[-4,-3],[-5,-2],[-18,-1],[-8,2],[-12,11],[-2,4],[0,5],[-2,3],[-9,9],[-2,10],[6,3],[8,0],[2,3],[-5,6],[-12,5],[-5,7],[-8,21],[-4,8],[-6,4],[-4,1],[-6,3],[-3,0],[-4,-1],[-7,-6],[-4,-1],[4,4],[7,7],[4,5],[-6,5],[-7,3],[-8,0],[-4,-4],[0,-7],[1,-7],[1,-7],[0,-3],[-3,-4],[-4,3],[-6,9],[0,-9],[2,-6],[3,-2],[4,1],[-3,-20],[3,-15],[9,-11],[17,-5],[6,-5],[6,-6],[4,-7],[1,-12],[-3,-8],[-20,-15],[-10,-12],[-8,-6],[-9,-16],[-6,-4],[-7,-3],[-12,-12],[-6,-1],[-4,3],[-3,8],[-2,9],[-4,8],[13,10],[4,6],[1,3],[0,7],[1,3],[3,2],[2,1],[3,1],[3,-1],[-4,9],[-14,-5],[0,12],[5,16],[6,-5],[7,-8],[7,4],[3,11],[-10,12],[-3,13],[-2,29],[-2,7],[-3,7],[-2,6],[3,6],[0,4],[-2,0],[-1,1],[-1,2],[-2,1],[52,37],[34,38],[10,-2],[-5,-3],[-6,-6],[-6,-8],[-4,-7],[-3,-13],[4,-2],[19,3],[2,0],[1,-1],[1,-3],[1,-3],[1,-1],[3,1],[18,12],[6,6],[11,17],[-4,10],[-11,1],[-2,11],[27,14],[1,6],[16,7],[7,6],[16,24],[4,11],[2,-11],[5,-6],[7,-4],[7,0],[4,2],[3,3],[6,11],[2,1],[2,0],[2,0],[2,4],[0,3],[0,4],[-1,3],[0,1],[-4,5],[1,10],[0,9],[-7,5],[-8,-1],[-7,-6],[-5,-8],[-6,-10],[5,14],[4,4],[4,6],[7,7],[90,142],[22,15],[5,6],[10,18],[5,3],[7,3],[38,34],[4,6],[20,23],[8,5],[7,4],[23,5],[14,8],[32,10],[19,11],[19,5],[3,2],[6,7],[56,24],[-20,-13],[-9,-6],[-4,-4],[-26,-14],[44,0],[10,-3],[5,0],[4,5],[4,2],[15,-12],[5,0],[4,3],[8,9],[14,9],[4,5],[4,3],[16,2],[0,-19],[2,-9],[1,-7],[-11,0],[-11,3],[-11,-1],[-9,-12],[-3,-9],[0,-7],[2,-6],[3,-4],[6,-4],[5,1],[5,4],[6,3],[-5,-18],[-1,-10],[1,-5],[4,-2],[4,-5],[27,-44],[6,-14],[4,21],[4,5],[6,-8],[8,-13],[5,-12],[3,-3],[4,2],[0,2],[3,15],[1,1],[-2,7],[-2,2],[-4,1],[-3,2],[-2,4],[-5,7],[-9,9],[-2,11],[-3,25],[-2,11],[-3,5],[-2,1],[1,2],[1,3],[1,2],[2,0],[2,-1],[3,-3],[13,-9],[8,-2],[49,5],[3,-7],[6,-5],[1,-7],[-1,-9],[1,-11],[5,-5],[5,3],[5,5],[6,1],[2,-2],[2,-8],[2,-2],[3,-3],[16,-4],[6,-3],[6,-1],[7,3],[-10,6],[-2,4],[-6,15],[-3,3],[23,8],[-4,8],[-6,4],[-13,4],[-56,41],[-6,0],[-7,-4],[-2,4],[6,9],[3,5],[1,7],[0,9],[-3,5],[-4,1],[-5,-3],[4,10],[10,20],[4,16],[11,17],[4,9],[0,23],[2,13],[5,5],[2,7],[7,28],[3,2],[7,20],[37,37],[13,28],[48,34],[24,26],[23,31],[28,23],[73,40],[-21,-16],[3,-4],[6,2],[7,4],[13,3],[36,27],[5,6],[5,5],[16,-1],[6,3],[-3,3],[-4,1],[-8,0],[0,3],[18,26],[7,7],[24,13],[13,17],[14,17],[13,16],[15,12],[6,2],[-7,-11],[-18,-13],[-11,-14],[-8,-8],[-1,-4],[1,-8],[4,-4],[5,-2],[5,-1],[-1,13],[2,13],[4,9],[4,0],[9,-15],[10,-12],[7,-5],[10,-5],[9,-2],[7,2],[3,3],[5,2],[8,1],[5,-2],[7,-12],[4,-2],[-4,25],[0,7],[1,5],[0,6],[-9,20],[-1,9],[0,32],[-2,18],[0,6],[2,16],[2,9],[8,22],[12,25],[82,126],[4,3],[4,2],[28,23],[35,3],[-2,6],[-2,3],[-4,0],[-3,-1],[5,10],[17,19],[6,10],[10,23],[6,8],[18,9],[24,25],[8,5],[6,-3],[4,3],[4,3],[8,2],[-3,-9],[2,-10],[8,-22],[-3,-8],[2,-4],[41,-4],[-1,-6],[-1,-2],[11,12],[9,0],[5,1],[4,3],[5,7],[0,7],[-3,5],[-6,6],[3,4],[3,4],[2,5],[2,7],[-4,-3],[-9,-2],[-5,-3],[4,-9],[6,-15],[2,-8],[-28,7],[-5,-2],[-3,-4],[-4,-3],[-3,-2],[-4,-1],[-4,2],[0,5],[2,10],[1,26],[-1,13],[-3,11],[-1,3],[1,3],[1,3],[-1,3],[-2,3],[-3,3],[-1,3],[-2,2],[-3,-1],[-1,-2],[0,-4],[5,-10],[-7,0],[-6,3],[-5,5],[-4,7],[-1,8],[0,13],[1,13],[1,8],[-2,12],[3,18],[9,35],[6,35],[2,18],[2,41],[4,37],[1,31],[2,7],[4,14],[3,7],[7,13],[3,8],[6,-5],[10,-1],[9,2],[7,4],[5,8],[3,6],[4,5],[8,1],[45,-9],[4,-3],[2,-4],[2,-4],[3,-4],[4,0],[-7,14],[-6,7],[-45,21],[-9,-1],[-15,-9],[-6,-1],[-7,6],[-13,15],[-5,10],[3,11],[-9,17],[2,25],[16,60],[13,26],[6,8],[15,9],[6,6],[26,43],[37,40],[5,7],[6,6],[27,9],[7,5],[8,3],[0,4],[-10,-3],[-13,-8],[-10,0],[-5,19],[3,12],[18,37],[-6,13],[1,4],[3,7],[6,8],[1,5],[0,4],[-1,3],[2,17],[1,6],[5,6],[10,7],[11,5],[7,6],[2,14],[0,35],[2,15],[6,12],[6,9],[5,10],[-20,-21],[-3,-5],[0,-5],[-3,-14],[-3,-6],[1,-8],[1,-8],[0,-5],[-3,-12],[-5,-9],[-7,-6],[-16,-3],[-7,-5],[-5,-9],[-4,-13],[-5,-22],[-5,-8],[-14,-5],[-33,-22],[-33,-9],[-4,-3],[-3,-3],[-3,-3],[-4,-4],[-14,-2],[-26,-31],[-25,-7],[-43,-29],[-46,-23],[-49,-20],[-13,-1],[-17,6],[-15,14],[-8,22],[3,11],[-3,13],[-5,12],[-5,8],[-7,7],[-39,17],[-3,5],[-2,7],[0,7],[2,6],[2,4],[4,5],[2,3],[3,4],[2,8],[4,18],[2,6],[-3,16],[6,9],[16,8],[-3,1],[-2,3],[-1,3],[0,5],[-2,0],[-3,-2],[-2,-2],[-2,-4],[-6,6],[2,4],[9,8],[4,6],[5,5],[6,2],[6,1],[58,-15],[10,-8],[9,-12],[7,-13],[3,-8],[-1,-11],[2,-10],[2,-5],[4,-7],[4,-5],[3,-3],[0,7],[1,6],[2,3],[3,0],[0,4],[-9,0],[-3,2],[-3,6],[5,12],[-5,17],[-14,26],[-11,13],[-26,2],[-23,13],[-24,7],[-11,8],[-8,10],[-5,8],[-2,8],[-1,8],[-1,1],[-3,-1],[-2,2],[-2,5],[0,4],[-1,4],[-3,3],[-1,-10],[0,-8],[3,-4],[6,-2],[0,-14],[16,-21],[-1,-13],[-5,-6],[-12,-4],[-4,-7],[-1,-2],[-1,-3],[0,-4],[0,-5],[-1,-5],[-2,-2],[-2,-2],[-4,-16],[-9,-15],[-10,-13],[-12,-10],[-6,-7],[-6,-6],[-4,3],[-2,7],[1,6],[3,7],[3,10],[-10,9],[-4,5],[-4,7],[11,5],[4,4],[-2,9],[-22,-10],[4,-7],[11,-27],[0,-5],[-6,-56],[2,-10],[1,-10],[-2,-8],[-2,-7],[-4,-8],[-5,-5],[-5,-2],[-7,-1],[-2,1],[-2,2],[-2,4],[0,5],[1,7],[2,3],[6,2],[11,7],[5,7],[-1,9],[-6,5],[-6,1],[-7,-4],[-3,-8],[7,0],[-4,-6],[-7,-7],[-4,-2],[0,-10],[2,-10],[5,-21],[10,-17],[9,-37],[8,-27],[0,1],[4,-5],[1,-2],[1,-6],[0,-14],[0,-4],[3,-6],[4,-2],[3,1],[3,-1],[4,-7],[-3,-5],[-5,-6],[-6,-16],[-6,-6],[-7,-4],[-5,-1],[0,-4],[8,0],[-9,-10],[-15,-3],[-16,-1],[-21,10],[-10,6],[-6,10],[4,-2],[3,0],[3,3],[2,7],[-7,0],[-5,2],[-3,6],[1,13],[-10,-1],[-10,17],[-16,41],[-25,50],[-24,50],[-27,35],[-7,4],[-3,2],[-7,11],[-2,2],[-8,-1],[-4,-8],[-11,1],[-7,3],[8,8],[8,19],[4,14],[-8,14],[-6,2],[-4,0],[-8,-2],[-8,-2],[-8,0],[3,-6],[1,-5],[-3,-10],[-6,-7],[-3,-9],[7,-7],[-3,-8],[-3,-6],[-4,11],[-6,0],[-2,-3],[0,-4],[2,-3],[1,-5],[3,-4],[-3,-10],[-6,-4],[-6,0],[-7,-8],[-11,-9],[-2,7],[-5,8],[-9,18],[-6,9],[-2,3],[2,5],[0,7],[-2,3],[-2,5],[-6,3],[-7,2],[-7,-2],[-4,-2],[-1,-4],[-1,-4],[-1,-3],[-5,2],[-5,3],[-6,-3],[-3,2],[4,10],[-2,11],[1,10],[-14,-5],[-5,-4],[-2,-6],[-5,-3],[-2,7],[-1,8],[1,14],[-1,6],[-3,3],[-5,-11],[-4,8],[-8,-2],[0,6],[3,3],[0,5],[5,4],[1,3],[8,0],[3,4],[1,4],[-1,3],[-2,3],[-1,6],[-3,4],[-4,3],[-2,3],[-2,3],[-3,3],[-1,2],[-3,7],[3,5],[-1,3],[-7,2],[-14,-13],[-36,-28],[-38,-32],[-7,-11],[-21,-19],[-18,-50],[2,15],[-1,9],[-4,9],[-7,7],[-5,3],[-6,-5],[-15,-2],[-5,-5],[-3,-10],[-12,-3],[-11,-15],[-10,-3],[-7,-8],[-10,-1],[-2,-8],[-18,0],[-8,2],[-5,4],[3,10],[2,1],[0,5],[-8,-3],[-1,-2],[-1,-4],[-1,-5],[0,-5],[3,-2],[3,-4],[8,-1],[-8,-4],[-6,-13],[-13,-13],[-2,-9],[-2,-7],[-1,-7],[1,-9],[3,-2],[10,6],[7,2],[-17,-13],[-35,-12],[-13,-10],[-4,-10],[-3,-2],[-7,3],[-3,0],[-4,-2],[-8,-5],[-7,-3],[-3,-3],[-3,-5],[-2,-5],[-4,-5],[-5,-1],[-11,0],[4,11],[9,13],[2,9],[-3,7],[-4,5],[-5,5],[-3,1],[1,-4],[0,-5],[-1,-7],[1,-16],[-5,13],[-5,6],[-10,2],[-22,3],[-6,-1],[-7,-4],[-6,3],[-8,-4],[-7,3],[-11,-3],[-17,7],[-11,7],[15,11],[15,2],[6,10],[5,-5],[11,2],[6,-2],[4,1],[1,-1],[0,-1],[0,-6],[0,-1],[2,-3],[1,-2],[1,-2],[3,-1],[9,3],[9,10],[5,13],[-7,7],[0,7],[12,11],[4,4],[4,8],[2,2],[8,0],[11,-2],[12,11],[6,20],[-9,7],[-7,-3],[-6,-3],[-5,-11],[-3,-10],[-3,-2],[3,21],[1,6],[0,6],[-1,6],[-2,8],[-2,5],[-2,12],[-2,13],[0,38],[-1,6],[-1,6],[-3,3],[-7,8],[-2,3],[-3,9],[-1,6],[1,3],[2,1],[3,3],[1,1],[2,-1],[1,-3],[-1,-2],[1,-2],[1,-2],[0,-2],[1,-3],[2,-2],[2,0],[7,4],[8,3],[5,3],[9,12],[22,15],[2,3],[1,6],[1,3],[2,1],[4,-1],[2,0],[1,8],[-3,4],[-9,0],[-1,2],[0,4],[-2,5],[-4,2],[-3,-2],[-7,-8],[-3,-3],[-11,-3],[-33,3],[-9,-6],[-4,-10],[2,-9],[9,-3],[0,-4],[-13,5],[-12,14],[-10,19],[-15,59],[-4,10],[-2,13],[3,12],[5,7],[6,7],[-10,-19],[-2,-9],[2,-9],[7,-8],[8,10],[4,16],[-1,15],[2,5],[0,8],[0,8],[-2,7],[3,12],[4,8],[5,4],[6,1],[6,15],[5,7],[4,-7],[1,0],[3,11],[5,14],[5,9],[9,-5],[4,1],[4,4],[3,3],[3,7],[1,3],[-40,75],[-2,17],[-3,7],[-1,7],[0,6],[0,4],[-2,6],[-6,7],[-23,55],[-25,39],[-3,10],[-2,13],[0,21],[-2,8],[-14,7],[-6,8],[-5,10],[-3,11],[-6,23],[-3,15],[2,6],[3,3],[2,6],[3,7],[0,7],[1,5],[-1,3],[-1,4],[-10,21],[-2,4],[8,0],[10,5],[7,4],[0,9],[1,7],[3,1],[-4,3],[-4,0],[-8,-3],[1,-2],[1,-2],[5,-4],[0,-5],[-9,-3],[-10,-2],[-8,5],[1,13],[-5,-2],[-2,-4],[0,-5],[0,-6],[0,-2],[2,-1],[1,-1],[1,1],[0,-9],[-2,0],[-2,-4],[0,-6],[3,-2],[8,-2],[6,-6],[2,-10],[-2,-6],[-7,-5],[-7,-3],[-3,-4],[-5,-2],[-6,10],[-1,6],[-7,14],[-2,4],[0,4],[3,3],[3,4],[1,1],[2,11],[0,6],[-2,6],[-4,8],[-14,18],[-5,2],[-4,4],[-3,7],[4,9],[14,12],[16,42],[4,13],[2,14],[3,14],[7,9],[8,7],[6,7],[1,6],[-1,8],[-1,6],[3,2],[0,4],[-1,15],[0,6],[4,0],[5,3],[22,22],[4,5],[10,7],[26,-3],[7,14],[-4,3],[-2,1],[5,5],[18,11],[-8,6],[-8,-3],[-7,-7],[-30,-18],[-6,2],[1,10],[-7,16],[-11,11],[-8,0],[15,-18],[2,-4],[0,-12],[0,-9],[-3,-7],[-14,-5],[-15,-8],[-7,-3],[-4,-4],[-2,-12],[-1,-13],[-2,-9],[-1,-3],[-2,-11],[-17,-33],[-2,-7],[-1,-4],[0,-9],[-1,-4],[-4,-2],[-9,2],[-4,-8],[2,-6],[3,-7],[2,-11],[-10,-7],[-3,1],[2,10],[-2,4],[-10,-8],[-3,-6],[4,-7],[-4,-3],[-7,-3],[-4,-3],[-2,-5],[-3,-2],[-2,2],[-1,6],[-2,-4],[-1,-3],[-2,-1],[-3,0],[0,-4],[9,-5],[3,-3],[-7,-4],[-3,0],[11,-7],[2,-5],[1,-6],[0,-5],[-3,-4],[-3,-1],[-36,4],[12,-8],[28,-9],[25,-19],[5,-8],[-1,-11],[-8,-13],[-3,-8],[-1,-11],[1,-12],[3,-7],[2,-8],[-1,-12],[-2,-11],[-3,-9],[-4,-7],[-4,-6],[-15,-8],[-17,-1],[-17,4],[-14,9],[0,-21],[-15,-15],[-78,-50],[-64,-17],[-83,-17],[-72,-1],[-62,20],[-8,5],[-9,13],[-8,16],[-4,15],[-3,23],[8,8],[25,5],[0,4],[-3,0],[-3,0],[-3,2],[-3,2],[2,2],[5,6],[-9,4],[-15,14],[-41,19],[-11,11],[-4,1],[-3,3],[-6,11],[-2,3],[-1,2],[-10,14],[-2,5],[-2,5],[0,6],[3,4],[0,4],[-8,4],[-14,17],[-14,8],[-8,10],[-5,10],[3,8],[-2,5],[-5,4],[-1,5],[1,5],[7,13],[-18,-19],[-11,-8],[-8,5],[-7,7],[-50,20],[-5,3],[-9,14],[-9,8],[-9,13],[-7,15],[-4,11],[6,0],[19,9],[5,1],[3,1],[1,4],[1,4],[1,6],[1,6],[2,2],[5,3],[3,6],[0,8],[-3,7],[-7,5],[-42,-19],[-4,-4],[-6,-8],[-7,-2],[-41,8],[-4,3],[-13,21],[5,9],[8,8],[8,4],[11,-4],[5,1],[4,3],[4,6],[3,6],[3,4],[12,6],[9,10],[15,10],[10,13],[16,9],[7,9],[2,11],[-1,9],[-10,18],[0,7],[4,2],[6,1],[4,2],[3,4],[13,10],[13,17],[-6,12],[-12,12],[-5,16],[6,12],[6,-7],[6,-13],[4,-8],[2,-2],[7,-8],[4,-2],[4,2],[11,14],[7,6],[12,7],[12,2],[8,-5],[-1,-8],[-12,-19],[-3,-7],[8,-17],[20,-4],[36,0],[10,-9],[4,-3],[11,0],[5,-3],[2,-1],[19,0],[3,-3],[1,-6],[0,-8],[0,-7],[2,-6],[2,-4],[3,-2],[5,0],[-3,-5],[0,-6],[2,-7],[3,-7],[-28,-16],[-3,-4],[-1,-2],[-1,-7],[-1,-3],[-1,-2],[1,-5],[0,-2],[-2,0],[-3,1],[-1,-1],[-2,-2],[-5,-2],[-3,-3],[-1,-3],[-1,-10],[-2,-4],[-1,-2],[-8,-5],[7,-8],[6,3],[12,20],[15,20],[5,7],[6,8],[9,3],[18,-1],[8,5],[4,10],[5,22],[5,10],[6,7],[12,12],[9,5],[9,2],[18,0],[7,-1],[7,-5],[6,-8],[3,-12],[-2,-12],[-4,-10],[-1,-9],[7,-8],[-3,-6],[-3,-5],[-2,-7],[0,-11],[3,-8],[4,-8],[5,-6],[4,-2],[13,2],[12,4],[12,7],[50,44],[8,13],[2,11],[-4,11],[-8,10],[4,1],[14,-1],[-5,7],[-33,27],[-88,27],[-14,-3],[-5,3],[21,17],[12,5],[12,-2],[14,-10],[5,-2],[33,9],[5,4],[2,6],[-2,7],[-5,4],[-40,8],[-9,7],[3,12],[6,-5],[6,5],[5,8],[4,8],[-9,5],[-18,-12],[-9,-1],[1,-12],[-4,-4],[-7,-1],[-6,-5],[-3,-4],[-5,-4],[-3,-3],[-1,-4],[-2,-10],[-2,-4],[-12,-14],[-14,-4],[-35,3],[-64,3],[-55,-10],[-3,1],[-5,9],[-3,2],[5,15],[0,5],[-5,8],[-7,6],[-24,3],[-3,-2],[-6,-6],[-6,-3],[-6,-8],[-2,-2],[-5,3],[-6,18],[-5,8],[-7,4],[-8,0],[-7,-1],[-7,-3],[-16,-18],[-6,-3],[-12,1],[-13,3],[-12,11],[-8,22],[23,21],[8,4],[32,3],[6,-3],[0,22],[0,6],[3,9],[4,2],[17,-4],[2,2],[4,5],[4,5],[12,3],[5,2],[-4,7],[-9,-1],[-17,-6],[-15,4],[-19,0],[-4,-5],[2,-11],[1,-12],[-9,-5],[-7,2],[-7,4],[-7,7],[-5,8],[0,7],[-13,9],[-4,9],[6,5],[6,2],[5,5],[4,20],[4,7],[11,9],[-23,24],[3,-10],[3,-7],[5,-4],[6,-3],[-6,-6],[-5,-1],[-4,-3],[-4,-10],[0,-4],[2,-6],[0,-5],[-4,-2],[-15,-4],[-38,28],[-6,3],[2,7],[10,11],[9,14],[6,2],[13,0],[4,4],[1,8],[1,10],[0,9],[-1,9],[-3,3],[-12,-2],[0,4],[10,8],[12,2],[3,2],[4,6],[-1,5],[-3,5],[-2,8],[6,14],[22,0],[8,11],[-3,5],[1,3],[14,8],[0,1],[0,3],[1,3],[1,2],[9,6],[27,5],[6,-1],[2,1],[0,2],[-1,8],[1,2],[3,4],[3,2],[9,3],[6,5],[5,7],[1,10],[-3,11],[18,7],[-5,9],[-5,5],[-5,2],[-7,0],[2,-1],[2,-3],[2,-4],[0,-4],[-2,-4],[-3,0],[-3,1],[-3,-1],[-4,-6],[-6,-14],[-15,-25],[-6,-4],[-19,-1],[-7,-3],[-5,-5],[-2,-4],[-1,-5],[-3,-8],[-2,-2],[-3,1],[-3,2],[-3,2],[-4,-2],[-1,-4],[2,-6],[0,-9],[1,-2],[0,-2],[-3,-4],[-3,-1],[-3,1],[-4,2],[-2,2],[-6,-3],[-9,-10],[-5,-3],[2,-12],[2,-4],[-5,-4],[-9,-5],[-4,-4],[-2,-4],[-3,-6],[-2,-4],[-4,-2],[4,-10],[5,0],[5,2],[4,-2],[1,-5],[-2,-6],[0,-7],[2,-9],[-12,-1],[-12,-6],[-12,-9],[-10,-12],[-2,-17],[8,-12],[6,-11],[-8,-17],[2,-4],[1,-8],[1,-18],[-3,-4],[-7,1],[-11,5],[-21,3],[-9,4],[-10,9],[-6,9],[-5,12],[-3,13],[-1,15],[0,-1],[2,1],[1,2],[1,4],[-1,2],[-2,2],[-2,4],[-1,4],[0,10],[0,6],[3,3],[6,-1],[-4,6],[-1,6],[1,5],[4,4],[-8,1],[-17,8],[-36,6],[-7,5],[-6,9],[-12,37],[1,9],[7,9],[16,9],[9,3],[3,2],[3,3],[2,5],[1,5],[1,6],[0,6],[-3,12],[-7,8],[-15,7],[-4,2],[-6,7],[-4,3],[-5,1],[-35,-11],[-10,-7],[-3,-8],[2,-3],[7,-2],[3,-3],[-15,-4],[-9,10],[-15,42],[-2,5],[1,4],[2,5],[1,3],[0,25],[2,10],[2,12],[3,12],[5,6],[-3,-35],[0,-5],[2,-2],[5,-8],[4,-3],[16,4],[4,2],[6,7],[66,16],[5,4],[-4,3],[-14,-3],[-3,1],[-5,5],[-3,2],[-4,1],[-7,-1],[-4,0],[-4,3],[-5,8],[-3,1],[-10,6],[-11,14],[-10,18],[-7,19],[36,8],[18,-4],[17,5],[5,-1],[10,-5],[4,1],[10,11],[5,1],[32,2],[6,6],[-6,2],[-9,18],[-13,9],[-6,10],[-8,22],[-3,12],[-2,12],[0,12],[8,30],[4,5],[1,6],[1,7],[1,6],[3,8],[7,11],[7,9],[13,9],[41,73],[29,38],[3,5],[5,17],[5,10],[7,10],[24,24],[15,22],[10,9],[11,5],[10,1],[25,-4],[12,3],[5,0],[6,-7],[-4,-4],[-2,-6],[1,-5],[3,-5],[2,-9],[10,-5],[21,-3],[3,-2],[6,-10],[4,-4],[5,-2],[17,2],[-11,-7],[-4,-4],[-9,-13],[-5,-6],[-5,-5],[7,1],[6,4],[10,17],[2,3],[3,2],[9,0],[5,1],[2,7],[-4,10],[-8,3],[-15,2],[-2,7],[4,9],[9,14],[-4,-1],[-3,-1],[-6,-6],[-4,-9],[-3,-3],[-3,1],[-8,9],[-19,-6],[-8,4],[11,18],[2,6],[-2,8],[-4,5],[-6,2],[-4,1],[-2,2],[1,3],[3,5],[3,4],[3,1],[8,1],[25,15],[62,79],[-7,2],[-10,-6],[-9,-12],[-11,-16],[-14,-8],[-21,-26],[-11,-9],[-9,0],[-5,20],[-1,17],[-3,14],[-5,11],[-6,9],[3,3],[2,3],[0,3],[-3,3],[1,2],[0,3],[1,2],[2,1],[-2,2],[-6,6],[5,3],[4,2],[4,0],[4,-1],[10,-4],[5,1],[2,7],[-18,5],[-8,6],[-6,13],[7,8],[2,1],[1,2],[0,12],[1,4],[3,7],[5,17],[17,38],[8,13],[10,8],[7,3],[38,2],[3,-3],[2,-3],[6,-5],[2,-1],[2,1],[1,4],[2,4],[3,2],[3,-1],[8,-7],[3,0],[5,3],[2,-1],[6,-5],[6,-3],[2,0],[3,3],[-4,16],[-6,11],[-7,6],[-41,10],[-5,9],[-2,8],[-4,4],[-9,4],[5,6],[15,13],[6,2],[4,3],[18,23],[16,12],[61,19],[42,-3],[46,-22],[17,3],[4,-1],[7,-3],[1,-3],[-2,-4],[2,-3],[6,-4],[2,-3],[3,-9],[2,-4],[9,-5],[2,-8],[-2,-8],[-5,-5],[0,-4],[8,2],[13,9],[6,1],[7,-5],[-7,-6],[-10,-7],[-6,-8],[-9,-19],[-38,-23],[-4,-21],[12,17],[31,18],[14,13],[12,22],[8,7],[11,-9],[14,-3],[12,-17],[8,-17],[5,-5],[17,11],[54,5],[6,2],[11,11],[6,3],[6,9],[2,4],[4,5],[13,5],[11,11],[6,6],[3,8],[1,6],[0,8],[1,6],[2,4],[8,8],[30,6],[28,28],[47,75],[5,13],[2,4],[11,9],[3,5],[6,7],[8,6],[6,7],[2,11],[-11,16],[1,7],[5,2],[11,-1],[4,-1],[8,-6],[9,-2],[12,-7],[9,-1],[5,-3],[6,-11],[4,-3],[4,-3],[4,0],[-5,-1],[-5,-6],[-5,-7],[-4,-6],[-6,-3],[-11,-2],[-6,-3],[0,-4],[71,11],[70,11],[11,-2],[9,-5],[4,-1],[5,1],[13,9],[4,1],[3,0],[4,-3],[4,-4],[4,-1],[5,3],[5,5],[5,3],[56,16],[36,40],[3,7],[3,14],[8,7],[9,4],[7,5],[16,29],[11,8],[7,9],[10,19],[6,46],[-10,48],[-34,85],[-5,28],[-2,66],[-6,26],[-6,9],[-19,18],[-7,3],[-7,5],[-17,24],[-8,8],[0,4],[3,0],[1,2],[4,6],[-5,5],[-12,3],[-6,4],[4,3],[5,1],[10,0],[0,4],[-39,0],[-28,9],[-7,-1],[-8,-4],[-4,-6],[-3,-7],[-3,-6],[-5,-1],[0,4],[4,19],[2,5],[4,6],[3,2],[2,3],[2,9],[1,10],[1,6],[1,6],[3,7],[4,5],[8,5],[7,2],[5,-2],[8,-8],[69,-13],[16,3],[8,12],[-17,10],[-5,5],[31,2],[4,1],[3,5],[3,5],[3,4],[26,21],[8,15],[4,39],[1,2],[0,4],[-1,4],[-3,7],[-7,7],[-3,5],[-13,31],[-5,8],[-4,3],[-13,4],[-11,12],[-12,4],[-28,33],[-2,4],[6,0],[13,-7],[5,1],[10,10],[6,3],[5,2],[-3,3],[-5,1],[-5,1],[-4,-2],[-1,-1],[-1,-5],[-1,-1],[-33,4],[-8,-4],[1,-14],[-6,-8],[-22,-14],[-2,-4],[-2,-12],[-2,-4],[-3,-4],[-6,-3],[-1,-5],[-1,-5],[-1,-4],[-6,-10],[-4,-4],[-4,-3],[-6,-2],[-12,0],[-6,-2],[-4,-3],[-3,-4],[-3,-3],[-4,2],[-1,10],[-22,8],[-8,4],[-8,12],[-9,5],[-20,2],[6,-4],[12,-11],[7,-2],[-50,-24],[-15,-17],[5,-4],[5,2],[9,11],[5,4],[18,8],[-4,-5],[-10,-9],[-4,-2],[-1,-2],[-5,-8],[-3,-3],[-8,0],[-16,-5],[-28,10],[-11,-4],[4,-2],[8,-3],[3,-3],[-21,-2],[-9,-5],[-9,-10],[-3,-4],[-8,-18],[-3,-5],[-3,-4],[-13,-4],[-54,-32],[-13,-15],[-7,-7],[-7,-8],[-4,-12],[0,-7],[2,-11],[0,-6],[-2,-6],[-4,-4],[-2,-6],[2,-7],[-2,-8],[-25,-16],[-6,-9],[-7,-5],[-6,2],[-5,14],[0,9],[1,7],[0,7],[-2,7],[-6,13],[-3,5],[-5,5],[4,16],[3,4],[6,-1],[0,5],[-12,7],[-7,3],[-7,8],[-3,2],[-2,2],[-6,8],[-3,3],[-5,1],[-18,-1],[0,3],[3,1],[5,4],[-9,13],[-14,10],[-11,11],[0,18],[-18,-2],[-8,-4],[-32,-26],[-9,-4],[0,-4],[6,-1],[15,-16],[6,-2],[23,-1],[4,-5],[9,-15],[6,-5],[6,0],[22,4],[-2,-3],[-2,-4],[1,-4],[1,-6],[-14,-10],[-5,-9],[-2,-15],[-3,-13],[-9,-1],[-9,5],[-7,7],[-15,32],[-6,4],[-9,2],[-7,6],[-14,13],[-36,22],[-39,13],[-39,2],[-43,-12],[-116,0],[34,3],[-21,9],[-85,-52],[-27,-6],[6,6],[19,11],[-10,6],[-32,-6],[-8,-4],[-14,-14],[-6,1],[2,11],[-2,8],[-4,5],[-4,1],[0,-4],[2,-2],[2,-2],[-3,-5],[-2,-3],[-3,-1],[-4,1],[3,-8],[6,-5],[5,-3],[5,-5],[-7,-7],[22,1],[12,3],[9,8],[-8,-10],[-11,-5],[-55,-4],[-114,38],[-120,21],[-35,14],[-52,8],[-50,31],[-21,32],[-10,23],[2,10],[0,14],[-1,11],[-1,7],[3,4],[9,1],[12,8],[3,2],[0,5],[-2,4],[-3,-4],[-2,11],[0,9],[5,18],[-4,3],[-7,10],[-11,5],[-9,13],[-7,1],[4,-9],[19,-23],[-6,5],[-16,17],[-15,10],[-29,17],[-5,7],[2,8],[2,9],[-7,13],[-10,10],[-22,13],[-14,11],[-23,31],[1,14],[5,25],[3,13],[5,13],[4,7],[4,4],[8,-3],[-3,-6],[-7,-17],[-5,-11],[-3,-11],[-4,-19],[4,-9],[4,-2],[4,0],[3,-1],[9,-8],[25,-12],[12,-1],[15,7],[13,-2],[9,5],[5,0],[4,4],[1,0],[1,-1],[1,1],[1,2],[-1,5],[0,1],[14,13],[5,10],[-2,12],[-4,14],[6,6],[18,6],[3,4],[3,4],[3,3],[4,2],[4,-5],[5,-7],[20,1],[35,-14],[10,-2],[9,2],[7,6],[-12,12],[-18,13],[-24,9],[-23,6],[-11,-1],[-7,-3],[-17,8],[-19,11],[-40,9],[-81,20],[4,-4],[3,-5],[12,-6],[16,-4],[24,-7],[21,-9],[-32,5],[-27,10],[-38,16],[-51,8],[-60,5],[-57,31],[-11,13],[-22,17],[-28,12],[-17,14],[-41,15],[-5,4],[-2,3],[-6,4],[-3,3],[-1,4],[-2,9],[-1,3],[-6,11],[-1,4],[0,2],[-2,7],[1,3],[2,2],[1,2],[2,6],[12,12],[26,16],[15,9],[12,4],[4,-4],[-3,-6],[-4,-3],[-5,-2],[-8,-8],[-14,-4],[-10,-8],[-8,-11],[-2,-16],[6,-9],[11,4],[21,13],[8,4],[11,7],[9,11],[1,11],[67,0],[14,4],[8,8],[1,15],[-8,5],[-9,3],[-5,8],[4,10],[10,2],[20,-2],[-4,4],[-5,3],[-5,1],[-5,0],[0,4],[49,41],[16,4],[2,-7],[6,-6],[13,-12],[8,-3],[9,1],[25,10],[21,19],[26,12],[4,10],[-26,17],[12,10],[9,2],[12,8],[5,4],[-4,-4],[-3,-2],[-3,-4],[-2,-6],[6,-1],[11,-3],[6,4],[-1,2],[-3,7],[-2,2],[4,3],[12,18],[9,11],[53,35],[21,5],[14,11],[15,6],[12,11],[7,2],[28,-3],[13,-4],[14,-9],[-5,0],[-10,3],[-6,-3],[20,-16],[94,-12],[71,28],[-5,8],[-7,5],[-19,5],[-28,18],[-15,4],[-23,0],[-7,3],[-5,10],[5,13],[10,15],[20,20],[77,47],[35,10],[7,6],[9,5],[55,5],[9,-3],[-1,-3],[0,-2],[0,-2],[-1,-2],[2,-6],[3,-5],[4,-3],[4,-2],[2,14],[6,5],[7,2],[6,4],[1,2],[1,9],[2,4],[4,3],[9,4],[46,32],[4,14],[54,16],[69,12],[80,5],[70,-5],[16,-6],[14,-14],[-78,9],[-6,1],[2,-8],[11,-2],[21,0],[6,-5],[4,-9],[2,-12],[1,-12],[-2,-12],[-5,-8],[-22,-21],[-1,-4],[-1,-5],[-2,-6],[-3,-4],[-2,-3],[3,-11],[-1,-8],[-1,-7],[-1,-10],[8,-17],[-1,-1],[1,-3],[1,-4],[3,-4],[-6,-14],[-12,-11],[-13,-8],[-9,-4],[-16,0],[-6,-2],[-6,-8],[-6,-3],[-15,2],[-5,-9],[44,0],[13,8],[-1,-10],[4,-3],[5,2],[2,5],[1,7],[4,3],[4,-1],[4,-3],[4,-23],[10,-20],[13,-16],[13,-10],[22,-7],[91,12],[4,-3],[10,-8],[5,-2],[45,-3],[23,5],[11,5],[10,8],[5,1],[23,-3],[22,4],[7,4],[-1,-5],[15,-11],[7,-9],[1,-10],[-1,-3],[-2,-4],[0,-5],[0,-6],[2,-8],[2,-1],[2,2],[2,3],[0,3],[0,6],[2,5],[5,2],[24,5],[12,6],[5,1],[2,1],[2,3],[2,1],[2,-3],[3,-6],[1,-3],[2,-1],[3,-1],[8,-5],[3,-2],[12,0],[11,4],[27,17],[8,3],[73,-20],[-5,-1],[-4,-4],[-8,-11],[5,-1],[10,7],[4,-2],[3,-6],[0,-5],[-3,-5],[-4,-4],[8,-5],[10,-2],[11,2],[8,5],[0,3],[-16,8],[4,10],[5,9],[5,8],[5,6],[9,5],[5,4],[1,5],[-3,1],[-13,-7],[0,4],[6,5],[21,28],[6,9],[2,5],[3,13],[2,6],[4,3],[2,3],[8,20],[1,7],[2,3],[2,2],[6,2],[12,10],[41,-2],[-1,-2],[-3,-6],[15,-17],[6,-4],[17,-2],[17,2],[13,11],[6,3],[6,-5],[0,-6],[-1,-8],[-3,-6],[-4,-1],[1,-5],[1,-5],[2,-5],[2,-5],[-3,-4],[-2,-5],[-1,-5],[2,-6],[-5,-4],[-5,-1],[-11,1],[0,-5],[6,-3],[6,-1],[7,2],[6,2],[4,4],[3,5],[4,12],[8,15],[2,5],[3,23],[3,6],[-5,12],[-12,14],[-5,8],[-5,12],[-6,8],[-6,6],[-35,15],[-13,3],[-10,6],[-4,1],[-18,-1],[-24,14],[-65,-1],[-4,-2],[-9,-10],[-6,-3],[-17,-2],[-8,-7],[-5,-12],[2,-11],[9,-2],[-3,-4],[1,-4],[4,-3],[2,-5],[-1,-9],[-3,-5],[-4,-1],[-5,5],[-2,5],[-1,6],[-1,7],[-1,6],[-1,5],[-3,2],[-2,3],[-1,8],[2,10],[14,25],[3,8],[3,10],[2,12],[1,13],[-6,25],[-12,19],[-41,40],[-23,35],[-13,15],[-16,9],[-48,5],[-9,4],[-4,3],[-3,2],[-2,2],[-3,5],[-2,5],[0,8],[-1,6],[-4,8],[-10,16],[-3,8],[-5,-2],[-6,12],[-4,15],[1,8],[12,9],[5,2],[16,1],[1,2],[0,2],[2,7],[1,5],[2,5],[3,3],[4,-2],[2,-5],[5,-11],[8,-5],[9,7],[9,11],[7,5],[6,-5],[6,-9],[20,-40],[25,-38],[8,-7],[17,-5],[4,-3],[1,-5],[-11,-22],[-6,-17],[-2,-11],[1,-13],[4,-7],[14,-12],[5,-7],[22,-38],[13,-15],[66,-44],[7,-2],[48,8],[13,8],[9,2],[5,2],[-1,4],[8,3],[14,17],[7,4],[9,2],[3,-2],[11,-19],[3,-3],[23,-7],[7,-7],[14,-20],[56,-39],[5,-3],[17,4],[24,-3],[46,13],[56,5],[6,6],[3,12],[1,10],[-2,26],[1,23],[-9,17],[-21,26],[1,1],[3,2],[2,1],[-4,13],[5,4],[9,0],[7,3],[-9,5],[-12,1],[-10,-6],[-3,-16],[-9,7],[-12,3],[-12,0],[-8,-8],[-2,-7],[-2,-6],[-2,-4],[-5,-1],[-23,4],[-17,9],[-32,29],[-19,6],[-50,-12],[-21,0],[-10,-5],[-9,-11],[0,-2],[1,-8],[-1,-2],[-2,-2],[-6,-1],[-1,-1],[-1,-6],[1,-5],[0,-5],[-1,-7],[-9,-10],[-11,-4],[-23,0],[-10,4],[-4,1],[-10,-6],[-4,2],[-6,8],[-13,9],[0,7],[5,12],[-14,2],[-15,7],[-60,55],[-10,17],[9,11],[1,3],[-1,6],[-3,13],[-1,11],[1,3],[8,3],[9,11],[5,9],[0,8],[-2,8],[1,12],[5,8],[15,5],[5,10],[-2,2],[-1,2],[0,2],[-1,3],[19,5],[9,1],[20,-4],[11,2],[5,6],[-7,12],[-6,2],[-12,-1],[-4,3],[-3,6],[-5,4],[-15,8],[-3,0],[-2,-1],[-1,-3],[-1,-3],[0,-1],[-4,0],[-4,1],[-4,4],[-4,6],[-7,9],[-11,4],[-43,-4],[-72,-20],[-3,3],[0,8],[1,7],[0,4],[-3,6],[-3,3],[-3,2],[-5,0],[2,-12],[-2,-6],[-2,-6],[6,-13],[-6,-3],[-15,3],[-19,-10],[-6,2],[-3,4],[0,5],[11,28],[1,4],[5,4],[6,12],[8,24],[5,8],[1,3],[-2,6],[-5,4],[-8,1],[-8,-2],[-5,-3],[10,0],[4,-4],[3,-9],[-5,-3],[-26,-43],[-20,-24],[-6,-3],[-23,1],[-4,1],[-4,2],[1,2],[0,2],[0,2],[1,3],[-14,7],[-43,-4],[-14,4],[-3,-3],[4,-9],[5,-5],[13,-3],[6,-4],[-7,-2],[-55,18],[-19,13],[-73,11],[-8,5],[-71,11],[-10,5],[-11,17],[-3,24],[0,27],[-3,26],[-2,11],[-5,28],[-4,11],[-38,85],[-24,39],[-29,33],[-81,53],[-24,25],[-19,14],[-26,29],[-9,6],[-12,2],[-1,0],[2,-8],[5,-4],[4,-3],[4,-5],[-8,4],[-15,17],[-15,6],[-55,50],[-50,38],[-57,37],[-51,19],[-41,9],[-44,17],[-18,18],[-10,16],[-11,14],[-3,5],[-7,8],[-28,14],[-26,22],[-96,26],[-41,-3],[-9,7],[-1,0],[4,5],[60,29],[25,9],[17,-2],[-19,-3],[-57,-25],[-8,-6],[23,-7],[33,5],[26,23],[7,-1],[14,-6],[-2,6],[-7,5],[-4,5],[24,-8],[6,4],[-5,4],[-5,14],[-5,2],[11,16],[4,8],[4,13],[-1,11],[5,10],[8,8],[5,7],[3,10],[-1,4],[-1,4],[-1,7],[1,6],[5,18],[-3,5],[0,4],[3,3],[2,4],[1,8],[1,6],[0,13],[1,13],[1,11],[1,12],[-1,14],[-8,27],[-3,15],[4,7],[38,3],[21,-11],[55,4],[41,-11],[95,9],[77,3],[71,20],[123,9],[25,10],[24,4],[22,15],[35,14],[8,6],[17,15],[15,6],[55,42],[94,114],[6,9],[19,52],[5,7],[6,-3],[-23,-55],[-10,-14],[0,-4],[9,4],[24,32],[-2,4],[6,6],[4,8],[2,10],[-4,9],[3,5],[1,5],[-1,4],[0,6],[2,7],[3,5],[0,5],[-3,7],[9,3],[4,12],[0,12],[0,6],[1,3],[-1,6],[-2,7],[-1,4],[-4,3],[-15,6],[0,3],[17,2],[9,4],[8,6],[-3,4],[-8,8],[9,9],[-2,1],[-7,7],[5,7],[18,-3],[7,4],[5,14],[-5,7],[-10,3],[-9,0],[2,10],[4,4],[4,3],[5,4],[-2,4],[8,12],[44,37],[10,11],[12,5],[12,15],[21,21],[16,9],[7,12],[6,15],[3,13],[-1,4],[-2,12],[8,5],[28,-1],[-1,3],[-2,10],[-1,3],[9,4],[-3,10],[9,11],[21,16],[11,4],[2,2],[1,4],[1,4],[1,2],[4,2],[13,11],[7,10],[13,14],[11,20],[3,2],[13,14],[14,10],[7,1],[8,-3],[-1,-2],[-1,-6],[5,0],[2,0],[0,-4],[-2,0],[-5,-4],[38,-10],[5,-6],[-8,-8],[-35,5],[-12,-1],[10,-9],[21,-1],[9,-6],[-8,-1],[-13,-3],[-7,-7],[5,-10],[-7,-9],[-9,-1],[-30,11],[-5,-1],[-4,-2],[-7,-7],[-4,-3],[-12,-8],[0,-4],[72,9],[4,3],[10,10],[7,5],[23,-3],[-4,4],[-3,0],[-2,0],[2,8],[5,5],[5,3],[5,1],[3,1],[0,4],[1,4],[2,3],[3,2],[3,1],[81,2],[36,11],[40,22],[12,2],[0,-3],[-2,0],[0,-5],[6,0],[17,-8],[-2,6],[-6,7],[-2,7],[7,5],[27,8],[67,49],[6,7],[-18,-4],[-12,-9],[-29,-19],[11,11],[23,17],[67,33],[64,53],[8,10],[5,5],[4,1],[-3,-6],[2,-5],[5,-4],[4,-1],[7,-1],[18,9],[25,2],[5,-2],[2,-7],[-2,-8],[-2,-6],[-3,-4],[0,-4],[2,1],[5,-1],[-6,-13],[-19,-1],[-8,-8],[-9,-11],[-11,-5],[-25,-2],[10,-6],[12,0],[49,17],[7,-3],[-4,-8],[-10,-12],[-5,-9],[-6,-18],[-5,-7],[-6,-3],[-1,-11],[-16,-19],[-6,-11],[11,-2],[24,24],[11,7],[6,-2],[4,-5],[3,-7],[2,-11],[0,-1],[-2,-1],[-1,-2],[-1,-4],[1,-2],[2,-1],[1,0],[1,-5],[2,-3],[0,-3],[-1,-6],[12,-4],[9,-15],[8,-19],[9,-15],[0,18],[-4,8],[-7,5],[-6,10],[-1,6],[-1,7],[0,13],[-1,3],[-2,3],[-1,4],[1,4],[2,2],[1,4],[-1,5],[-10,15],[-2,7],[0,7],[1,5],[2,5],[0,5],[3,12],[5,7],[5,9],[1,15],[4,2],[3,-1],[20,-15],[5,-2],[11,2],[21,11],[15,4],[13,10],[4,0],[8,-9],[5,-2],[4,2],[14,10],[12,2],[5,3],[4,7],[-36,-8],[-30,5],[-10,-1],[-1,-1],[0,-3],[-1,-3],[0,-1],[-2,0],[-14,0],[-3,-2],[-2,-4],[-4,-4],[-5,-2],[-10,0],[-4,2],[-3,2],[-6,8],[-17,16],[-5,6],[-2,5],[-1,5],[-1,5],[-1,6],[-1,5],[-3,3],[-3,1],[-17,19],[-16,2],[-17,-8],[-15,-12],[0,2],[-1,3],[-1,7],[9,10],[51,34],[7,3],[14,1],[7,4],[-10,0],[9,8],[29,30],[7,11],[5,4],[6,3],[14,3],[13,9],[8,4],[30,3],[8,3],[10,10],[52,14],[-13,-12],[-31,-3],[-15,-9],[55,4],[5,-4],[4,-12],[-11,-6],[-36,-2],[-28,-15],[-10,-2],[0,-4],[15,-6],[5,-4],[5,0],[5,4],[5,1],[5,-7],[-2,-2],[-2,-4],[-2,-2],[7,-10],[15,-12],[6,-10],[2,3],[-15,30],[-2,12],[12,3],[32,-4],[36,8],[-4,12],[-7,4],[-15,0],[6,7],[96,-15],[105,16],[-28,3],[-15,6],[-8,12],[12,0],[25,-10],[96,0],[50,18],[53,33],[13,5],[9,9],[4,2],[6,1],[91,71],[39,50],[18,28],[58,61],[37,28],[25,7],[19,15],[7,8],[8,5],[10,-3],[10,-8],[7,-8],[-8,-2],[-16,11],[-8,-1],[-18,-17],[-10,-4],[-4,-3],[9,-10],[4,-7],[2,-9],[4,-5],[28,-5],[-4,-9],[1,-5],[5,-2],[53,2],[26,-7],[13,-8],[-3,-10],[-1,-2],[14,-1],[5,-3],[-4,-7],[-15,-13],[0,-5],[11,2],[10,3],[10,7],[8,11],[3,3],[4,1],[4,-2],[1,-6],[3,-6],[6,1],[12,7],[14,0],[49,-15],[8,-8],[6,-12],[5,-14],[1,-15],[-4,-12],[-8,-7],[-12,-4],[-4,-3],[-7,-10],[-3,-1],[-6,0],[-2,-3],[-1,-3],[-2,-11],[-4,-3],[-6,-3],[-12,-2],[-1,-1],[-3,-6],[-2,-1],[-67,-6],[-7,-3],[-2,0],[7,-3],[7,0],[7,-2],[5,-10],[-11,-8],[-27,2],[-11,-6],[9,-2],[18,5],[9,-3],[-3,-3],[-8,-6],[8,-3],[17,4],[7,-9],[-4,-4],[4,-6],[8,-7],[3,-7],[-4,-4],[-4,-2],[-3,-4],[-2,-6],[1,-7],[3,-8],[2,-6],[-1,-7],[-2,-7],[0,-4],[15,4],[4,2],[3,8],[-4,4],[-3,5],[-1,7],[2,9],[8,6],[23,-3],[9,3],[7,5],[8,1],[8,-3],[9,-10],[3,2],[1,5],[-1,2],[-2,2],[-1,4],[-1,6],[-1,4],[6,1],[12,-13],[7,0],[10,12],[2,6],[0,5],[-1,11],[1,13],[1,9],[4,7],[13,4],[18,22],[4,4],[13,4],[3,3],[7,8],[3,2],[6,-4],[9,-17],[7,-4],[7,3],[3,7],[-1,10],[-3,10],[-6,9],[-14,10],[-6,8],[6,8],[16,14],[7,2],[6,-4],[11,-18],[7,-2],[-1,11],[0,9],[-1,7],[-5,5],[4,6],[5,3],[6,-1],[5,-6],[2,-8],[0,-5],[-2,-5],[-1,-8],[1,-7],[3,-15],[0,-4],[-4,-6],[-9,-9],[-3,-8],[9,-3],[8,3],[4,9],[3,19],[2,11],[1,6],[-1,8],[-2,4],[0,2],[7,2],[4,0],[15,-4],[3,-4],[4,-7],[4,-4],[5,5],[6,3],[9,-3],[9,-7],[14,-17],[26,-14],[6,-7],[2,-4],[1,-8],[-1,-5],[-3,-6],[-4,-5],[-5,-4],[-1,-5],[0,-5],[-1,-4],[-3,-10],[-1,-3],[-4,-4],[-9,-5],[-21,-6],[-6,-9],[31,4],[6,-6],[3,-3],[10,-11],[0,-3],[0,-7],[0,-2],[11,-4],[14,0],[29,8],[14,0],[21,-5],[11,-7],[6,-12],[-2,-6],[2,-4],[5,-2],[5,-1],[11,3],[12,5],[24,25],[16,8],[13,21],[6,7],[7,3],[105,-7],[18,7],[19,1],[7,1],[15,16],[13,2],[25,-3],[5,-2],[4,-8],[4,-2],[3,0],[6,-3],[3,-1],[2,1],[4,6],[3,1],[24,-4],[4,-2],[2,-7],[2,-7],[3,-6],[4,-4],[5,-3],[5,-1],[5,2],[2,5],[1,5],[1,5],[5,1],[2,-2],[3,-4],[4,-8],[3,-5],[7,-7],[9,-13],[5,0],[11,15],[-4,12],[-6,6],[-7,2],[-8,0],[10,6],[46,-2],[61,-18],[30,-23],[0,-3],[-15,-8],[-29,-30],[-15,-3],[0,-4],[4,-3],[1,-6],[-2,-5],[-4,-2],[-12,-2],[-6,-4],[-4,-6],[1,-15],[8,-13],[9,-10],[54,-15],[28,2],[14,-3],[8,-11],[-9,-3],[-17,5],[-69,2],[-11,-3],[-17,7],[-8,-2],[-10,-4],[-9,-6],[-4,-9],[3,-1],[9,1],[4,-1],[7,-5],[3,-2],[8,1],[14,6],[135,9],[34,-8],[24,5],[8,-5],[-5,-2],[-3,-4],[-6,-12],[-6,-5],[-12,2],[-6,-3],[6,-4],[16,-5],[-27,-5],[-16,-8],[-10,-19],[68,-7],[78,2],[13,-7],[16,-1],[5,-5],[5,-5],[10,-6],[10,-12],[6,-2],[12,3],[0,4],[-6,9],[-3,12],[2,11],[7,4],[55,5],[2,1],[4,5],[2,2],[25,0],[2,1],[4,5],[1,2],[7,-1],[13,-6],[5,3],[-8,5],[-3,4],[-2,7],[48,4],[3,0],[5,-3],[3,-1],[4,1],[7,4],[4,-1],[4,-4],[1,-6],[2,-5],[2,-5],[8,2],[13,7],[11,3],[5,-10],[-2,-8],[-14,-27],[0,-4],[10,1],[36,15],[37,1],[64,41],[6,0],[16,-9],[7,1],[17,7],[44,0],[14,7],[7,0],[7,-7],[-1,-4],[-2,-2],[-2,-2],[-2,0],[29,-5],[9,5],[-4,4],[6,4],[84,-25],[8,-5],[6,-7],[4,-5],[2,-4],[2,-2],[4,-1],[9,8],[4,0],[21,-14],[9,-2],[21,5],[10,-2],[8,-9],[4,-3],[15,-3],[10,-6],[9,-9],[4,-7],[1,-10],[-3,-13],[36,-3],[11,3],[23,22],[10,2],[20,-1],[9,-5],[15,-17],[3,-3],[4,-1],[4,0],[4,2],[5,1],[4,-3],[-2,-5],[6,-2],[21,7],[6,-1],[6,-2],[7,-4],[6,-6],[-3,-3],[-1,-2],[-2,-7],[2,-2],[3,-1],[2,-2],[2,-3],[-2,-7],[-1,-3],[-2,-2],[6,-5],[29,-10],[73,-6],[50,-12],[1,0],[3,4],[1,0],[2,-1],[3,-5],[1,-2],[20,-4],[68,4],[1,9],[8,2],[29,0],[86,-6],[56,2],[41,-18],[28,-1],[4,2],[8,5],[3,1],[11,-9],[5,0],[-2,13],[11,-4],[19,-20],[16,-6],[16,-15],[12,-6],[4,-4],[-4,-6],[4,0],[3,2],[4,6],[4,3],[3,1],[8,0],[5,-3],[8,-17],[5,-4],[8,-2],[16,-8],[8,-2],[34,8],[0,-4],[-5,-4],[-19,-19],[8,-3],[33,6],[59,-15],[16,10],[4,1],[13,-6],[33,-7],[32,5],[7,3],[15,19],[35,14],[55,0],[9,2],[4,8],[3,4],[7,-2],[7,-6],[4,-6],[-1,-5],[-1,-3],[1,-4],[1,-4],[-1,-4],[-1,-4],[0,-9],[4,6],[4,10],[5,21],[-6,8],[-3,5],[-2,7],[13,5],[4,-3],[6,-6],[2,0],[3,1],[2,-1],[7,-4],[3,0],[2,6],[2,4],[5,1],[10,-3],[8,3],[15,9],[7,0],[14,-8],[5,-1],[28,2],[3,3],[1,5],[-1,5],[0,5],[4,2],[1,-2],[6,-13],[4,-3],[42,6],[1,-1],[1,-2],[10,-27],[5,-8],[6,5],[-4,7],[-3,10],[-2,11],[2,11],[7,2],[11,-1],[19,-8],[4,-3],[2,-4],[4,-3],[4,-2],[23,4],[3,-1],[3,-4],[4,-9],[4,-3],[6,0],[6,2],[4,3],[-2,4],[15,-2],[64,-33],[14,-4],[1,-5],[-4,-17],[3,-2],[5,-1],[4,1],[4,5],[4,3],[6,-2],[10,-7],[-3,1],[-3,1],[-3,-1],[-3,-1],[7,-10],[17,-3],[7,-8],[-2,-2],[-1,-2],[0,-2],[-1,-2],[8,0],[4,-1],[3,-3],[-1,-6],[0,-3],[2,-2],[7,-4],[3,-1],[2,-1],[9,-13],[6,-5],[46,-4],[16,-8],[2,-18],[7,-5],[8,-2],[7,2],[5,7],[7,4],[8,-4],[15,-10],[51,-17],[22,-19],[13,-7],[7,-6],[5,-6],[12,-22],[8,-6],[33,-10],[7,6],[6,10],[7,8],[-8,4],[-5,0],[-7,3],[-7,1],[0,4],[84,-24],[2,-2],[1,0]],[[15808,79484],[15,0]],[[15823,79484],[-2,-5],[-12,-7],[-1,9],[0,3]],[[29463,74630],[-4,-11],[-7,-22],[0,-8],[-1,-8],[-7,-6],[-5,-3],[2,19],[2,15],[5,13],[13,45],[2,9],[1,5],[3,-2],[0,-6],[-3,-12],[-3,-9],[0,-9],[2,-10]],[[30190,75094],[-4,-3],[-2,4],[0,6],[2,11],[-2,9],[-6,3],[0,7],[1,10],[3,7],[2,-8],[2,-6],[3,-9],[4,-4],[0,-13],[-3,-14]],[[30649,76402],[-6,13],[-1,10],[4,15],[7,-9],[0,-11],[-1,-17],[-3,-1]],[[30647,76501],[0,-8],[-3,-5],[-3,-17],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,8],[-3,10],[2,10],[6,12],[2,11],[5,13],[2,-7]],[[30942,76580],[2,-11],[0,-14],[-2,-14],[-7,-3],[-6,-5],[-2,6],[0,7],[2,12],[1,8],[3,7],[4,8],[5,-1]],[[30885,76615],[-3,-2],[-5,-4],[-3,-8],[-3,-3],[-7,6],[-3,3],[-6,-6],[-5,-11],[-1,7],[1,4],[3,10],[11,13],[9,10],[10,-1],[2,-6],[0,-12]],[[31002,76624],[0,-10],[-3,-7],[-8,-4],[-3,10],[-3,4],[-3,-1],[-7,-6],[-4,5],[-1,7],[4,5],[5,-1],[1,6],[3,5],[4,-3],[2,-4],[3,1],[3,4],[4,-4],[3,-7]],[[30855,76667],[-4,0],[0,4],[2,14],[1,9],[-5,0],[0,5],[5,10],[7,2],[4,-6],[-4,-12],[-6,-26]],[[30975,76733],[1,-8],[3,-6],[-3,-6],[-3,4],[-4,1],[-3,0],[-2,5],[0,8],[1,9],[1,5],[3,7],[2,0],[2,-2],[1,-7],[1,-10]],[[30870,76753],[2,-14],[-2,-6],[-5,-10],[-5,-7],[-4,8],[0,7],[2,13],[3,7],[4,8],[5,-6]],[[31231,76800],[-5,-10],[-2,8],[-4,15],[-2,13],[0,6],[4,2],[5,-2],[1,-14],[3,-7],[0,-11]],[[31310,76894],[3,-4],[-1,-6],[-7,-4],[-6,4],[1,6],[4,7],[6,-3]],[[31376,77076],[0,10],[2,7],[2,-7],[8,-11],[4,-9],[-1,-7],[-6,1],[-1,5],[-8,11]],[[31416,77054],[-4,-7],[-4,-5],[3,-11],[0,-8],[-5,1],[-5,4],[-6,9],[-1,7],[6,3],[1,7],[0,6],[2,9],[2,6],[2,10],[3,4],[5,4],[0,-5],[0,-8],[4,-7],[-1,-9],[-2,-10]],[[31399,77096],[-4,-14],[-2,-7],[-6,14],[-2,9],[-1,9],[3,6],[4,7],[5,10],[5,6],[5,-2],[-1,-8],[-1,-7],[-1,-10],[-4,-13]],[[13153,82934],[3,-3],[3,-5],[3,-7],[1,-6],[-1,-14],[-5,-1],[-8,6],[-5,9],[-1,3],[-1,8],[-1,3],[-2,3],[-4,3],[-2,3],[-1,3],[-1,8],[-1,2],[-1,2],[-4,1],[-2,2],[-4,6],[-2,5],[0,4],[-3,7],[-1,7],[1,6],[2,4],[-1,6],[2,4],[1,-3],[5,-6],[2,7],[3,2],[4,1],[4,2],[-1,-4],[-2,-4],[-2,-2],[-2,-2],[3,-3],[3,0],[2,3],[3,5],[3,-4],[3,-3],[2,-3],[1,-5],[2,0],[4,1],[3,0],[3,-7],[1,-6],[0,-4],[-2,-1],[-3,3],[0,-7],[1,-7],[1,-5],[-3,-2],[-4,1],[-3,2],[-3,1],[-4,-4],[4,-4],[1,-5],[2,-5],[4,-1]],[[13543,83003],[9,-5],[4,-4],[1,-7],[-2,-4],[-10,-11],[-4,-2],[-9,1],[-4,-1],[-4,-6],[-5,-5],[-5,0],[-6,3],[-5,4],[0,7],[-10,13],[-5,8],[-7,-4],[-4,7],[1,12],[8,5],[5,1],[17,7],[5,5],[6,-8],[19,21],[7,-1],[-2,-4],[1,-9],[1,-8],[0,-6],[-2,-6],[0,-3]],[[13104,83074],[0,6],[3,6],[2,4],[2,2],[-3,3],[-5,3],[-8,2],[-1,4],[-1,7],[-1,8],[0,9],[0,5],[0,4],[1,0],[2,0],[2,1],[2,10],[3,4],[3,2],[3,-1],[5,-9],[14,-14],[5,-10],[16,-49],[-4,-9],[-19,-23],[-3,7],[-2,7],[-7,10],[0,-13],[-6,1],[-16,12],[3,5],[8,2],[2,4]],[[13138,82865],[9,-15],[-5,-2],[-10,2],[-9,-2],[-3,12],[-7,3],[-14,-3],[0,3],[-3,12],[-3,9],[0,4],[2,2],[5,-1],[-27,27],[-5,9],[3,2],[5,5],[4,7],[1,7],[-4,4],[-6,-2],[-10,-6],[-5,4],[-3,16],[-4,4],[-4,3],[-3,7],[-1,8],[4,6],[-4,3],[-5,1],[-9,0],[0,5],[7,2],[4,2],[1,3],[-2,4],[-3,1],[-8,0],[-7,-3],[-2,1],[-3,5],[1,1],[1,5],[0,6],[-4,5],[6,9],[-5,14],[-14,22],[1,4],[-1,6],[-2,7],[-2,7],[14,-1],[13,1],[-5,10],[-14,4],[-4,6],[6,0],[-10,13],[3,1],[7,-2],[4,1],[-3,6],[-3,4],[-3,2],[-5,0],[0,4],[17,8],[-9,11],[-1,5],[3,8],[4,4],[7,4],[6,1],[4,-1],[3,-9],[-2,-8],[-1,-5],[6,-2],[5,-5],[1,-10],[-1,-20],[3,-3],[12,-7],[4,-4],[1,-4],[0,-11],[1,-5],[10,-16],[-8,6],[-10,13],[-10,7],[-9,-10],[25,-16],[0,-4],[-10,-5],[-3,0],[0,-4],[9,-5],[8,-2],[7,-5],[4,-16],[1,-25],[-1,-3],[3,-2],[7,4],[4,-2],[-2,-5],[2,-1],[1,-1],[1,-1],[-2,-3],[-2,-10],[11,-8],[5,-6],[1,-10],[4,2],[3,-5],[0,-7],[-3,-7],[3,-2],[8,-2],[4,-3],[2,-4],[1,-4],[1,-4],[2,-5],[8,-16],[-1,-5],[-7,-7],[2,-4],[-2,-1],[-1,-1],[-1,-2],[14,-8],[5,-7],[-4,-9]],[[13478,83045],[-2,7],[0,5],[1,5],[0,5],[-3,8],[-6,10],[-5,8],[-4,1],[-1,-7],[4,-7],[3,-9],[-2,-12],[-2,-4],[-3,-5],[-6,-7],[-1,-1],[-1,-2],[-1,-1],[-3,0],[-1,1],[-2,3],[-1,3],[0,1],[-4,5],[1,10],[11,33],[-1,3],[-5,2],[5,16],[5,0],[6,-4],[6,0],[1,9],[-4,10],[-6,9],[-5,5],[1,2],[2,4],[1,2],[-4,5],[-3,6],[-1,7],[0,10],[2,11],[2,4],[3,2],[5,4],[-2,3],[5,-1],[8,-6],[7,-7],[8,-17],[15,-5],[6,-8],[-1,-11],[2,-12],[4,-11],[1,-13],[-1,-5],[-2,-5],[-1,-5],[1,-5],[4,-6],[1,-4],[0,-8],[-3,-15],[-6,-9],[-7,-4],[-19,-4],[-2,1]],[[12974,83197],[4,12],[5,-1],[7,-4],[7,-2],[-5,-11],[-2,-6],[-1,-13],[-3,-2],[-6,-1],[-10,-7],[-2,-1],[-4,1],[-1,2],[-2,2],[-2,3],[-6,4],[-4,1],[-1,-3],[-1,-6],[-3,-3],[-3,-2],[-3,1],[-4,6],[-2,10],[-2,13],[1,12],[3,-3],[3,-2],[4,1],[3,4],[-9,9],[-3,7],[3,10],[5,2],[7,-2],[4,1],[-2,9],[6,1],[6,2],[6,1],[5,-4],[4,-8],[-2,-10],[-7,-18],[7,-5]],[[13384,83287],[33,-42],[17,-26],[1,-22],[-1,8],[-3,6],[-3,5],[-3,1],[-2,-3],[2,-21],[-5,-15],[-7,4],[-7,8],[-7,-1],[7,-19],[5,-8],[5,-5],[-3,-10],[-4,-7],[-2,-6],[3,-10],[-5,2],[-8,15],[-10,8],[-3,10],[-10,60],[0,24],[-1,10],[-3,9],[5,1],[1,-1],[-2,13],[1,13],[3,6],[6,-7]],[[12931,83282],[0,-8],[0,-4],[2,-3],[-2,-4],[-3,-3],[-2,-1],[-9,-1],[-2,-1],[0,-2],[1,-3],[-1,-2],[-3,-4],[-1,-2],[-2,-2],[-3,0],[-3,1],[-5,3],[-4,0],[4,-9],[0,-6],[-4,-18],[-2,-19],[-2,-9],[-3,-4],[-4,3],[-4,7],[-6,14],[0,5],[0,9],[-1,5],[-1,1],[-5,0],[-2,1],[7,7],[1,1],[4,0],[1,2],[1,2],[5,13],[-1,4],[-9,7],[4,6],[8,4],[3,4],[3,13],[3,5],[3,-1],[8,-6],[19,1],[7,-6]],[[12906,83327],[4,10],[2,9],[3,5],[8,-3],[12,-12],[3,-5],[1,-8],[0,-9],[-2,-8],[-4,-3],[-5,-2],[-10,-5],[-5,-1],[-6,1],[-18,11],[3,9],[4,4],[5,2],[5,5]],[[12959,83307],[-4,7],[-9,25],[-8,9],[-3,6],[1,10],[5,5],[6,2],[18,0],[6,-2],[5,-5],[4,-8],[0,-11],[-1,-7],[-1,-5],[-4,-6],[-4,-4],[-5,-2],[-3,-4],[-3,-10]],[[12888,83331],[-4,-4],[-4,-16],[-6,-4],[-5,2],[-11,8],[-5,2],[-6,-3],[-8,-8],[-6,-1],[0,4],[7,5],[8,19],[13,7],[-1,6],[-2,5],[-3,4],[-1,-1],[-1,1],[0,5],[1,3],[2,3],[4,4],[7,-6],[9,-3],[9,-1],[7,2],[2,-10],[1,-11],[-2,-8],[-5,-4]],[[12971,83514],[-2,-9],[-16,-14],[-6,-8],[-8,-4],[-8,7],[-8,13],[-4,11],[-4,-15],[5,-19],[0,-16],[-15,-7],[-10,6],[-13,14],[-11,19],[-5,18],[9,-2],[2,2],[1,3],[0,12],[1,5],[6,5],[3,-5],[4,-8],[4,-4],[-1,12],[3,3],[17,-4],[3,-2],[2,-3],[1,-5],[1,-4],[1,-4],[3,-1],[32,-2],[3,2],[3,5],[2,6],[2,1],[3,-8]],[[12976,83579],[5,-3],[0,-6],[-1,-8],[2,-8],[3,-1],[7,4],[3,-3],[-1,-25],[-1,-7],[-3,-15],[-1,-4],[-3,-2],[-3,3],[-2,4],[-2,2],[-2,3],[-6,14],[-3,3],[-3,1],[-2,3],[-2,3],[0,5],[2,1],[11,3],[-7,5],[-3,5],[-1,7],[2,0],[9,13],[2,3]],[[6763,83567],[5,11],[10,5],[12,0],[0,-11],[-4,-16],[0,-10],[3,-20],[1,-10],[-4,-11],[-8,-13],[-9,1],[-9,7],[-9,-2],[-6,2],[-3,18],[-6,8],[2,8],[12,6],[10,8],[3,19]],[[12728,83583],[16,6],[5,-2],[-3,-12],[-11,-4],[-12,-12],[-10,-16],[-7,-17],[-5,6],[-12,3],[-2,9],[2,6],[15,9],[-4,5],[-15,8],[-4,9],[4,7],[10,2],[9,-1],[6,-2],[-4,-13],[6,0],[16,9]],[[12800,83587],[12,10],[6,3],[6,-25],[-3,-20],[-8,-12],[-11,9],[-3,7],[-2,12],[-1,11],[4,5]],[[13622,83388],[4,-1],[1,-6],[-3,-5],[-6,4],[0,-22],[-1,-11],[-1,-8],[1,-5],[0,-5],[-1,-5],[0,-7],[3,-13],[1,-5],[0,-7],[0,-16],[-1,-6],[-2,1],[-3,7],[-4,8],[-3,3],[-4,-5],[-1,-5],[1,-6],[2,-5],[1,-6],[0,-11],[-2,-7],[-3,-7],[-2,-11],[-3,-23],[-3,-7],[-6,-7],[-6,-6],[-2,-2],[-4,0],[-2,-2],[-1,-6],[-1,-7],[-1,-5],[-12,-10],[-12,9],[-11,15],[-11,6],[16,21],[6,12],[5,16],[1,3],[1,13],[1,3],[1,2],[1,3],[1,6],[0,11],[-1,7],[-3,4],[-6,0],[2,-8],[-6,1],[-7,-5],[-4,-9],[3,-13],[3,-12],[0,-11],[-4,-11],[-6,-9],[-7,-5],[-8,-3],[-14,0],[-7,3],[-6,6],[-4,9],[3,11],[6,5],[8,2],[6,4],[2,11],[1,7],[1,6],[3,4],[3,2],[4,0],[2,2],[3,9],[10,18],[2,10],[-3,11],[-1,4],[-3,25],[-1,7],[-9,25],[-2,7],[-1,30],[-2,9],[-4,-2],[-2,-14],[2,-19],[10,-50],[2,-16],[-1,-17],[-5,-17],[-2,-5],[-7,-10],[-2,-4],[-4,-12],[-4,-8],[-4,-5],[-10,-7],[2,7],[7,12],[2,7],[-2,10],[-3,8],[-4,6],[-2,7],[-2,18],[3,15],[10,28],[-5,0],[-7,-5],[-7,-6],[-5,-8],[-3,-11],[1,-12],[2,-12],[3,-11],[8,-19],[1,-10],[-4,-14],[-8,-22],[-5,-7],[-7,-2],[-6,5],[-12,17],[-13,6],[-6,6],[-11,16],[0,2],[-2,6],[-1,3],[-15,17],[-6,10],[-3,11],[3,8],[26,24],[3,6],[5,9],[3,4],[3,1],[4,-1],[2,4],[7,23],[-3,5],[-14,4],[-5,3],[-3,8],[0,10],[1,9],[3,8],[1,3],[1,2],[2,2],[3,1],[10,-1],[2,1],[0,3],[0,11],[1,4],[2,3],[2,-1],[3,-3],[1,-1],[16,5],[5,3],[0,5],[-4,0],[-13,-5],[-14,3],[-5,-3],[-12,-14],[-4,3],[-1,18],[4,7],[9,5],[9,4],[33,4],[8,5],[-2,6],[-6,4],[-2,5],[-1,7],[-2,3],[-3,0],[-1,-6],[-3,-9],[-7,-4],[-7,-2],[-6,-4],[-5,6],[-9,4],[-3,7],[0,12],[5,5],[55,-5],[10,8],[-6,4],[-21,0],[-4,4],[-4,10],[-3,10],[-2,9],[18,1],[5,3],[3,3],[4,7],[3,2],[4,0],[12,-4],[11,5],[11,11],[12,6],[12,-6],[8,-6],[8,-13],[38,-78],[-1,-15],[7,-14],[15,-24],[0,-4],[0,-10],[1,-4],[7,-12],[1,-5],[-1,-11],[-5,-14],[-1,-9]],[[12887,83680],[18,-2],[9,2],[7,8],[-8,3],[-23,2],[-7,7],[1,12],[10,0],[20,-8],[4,1],[4,2],[5,3],[6,8],[7,5],[3,4],[3,2],[14,-8],[11,2],[5,-2],[0,-8],[-6,-18],[-2,-7],[1,-7],[3,-9],[0,-6],[1,-13],[-1,-12],[-3,-9],[-8,0],[-5,5],[-5,9],[-5,3],[-13,-14],[-8,9],[-6,-4],[-5,-13],[-2,-4],[-12,-7],[-8,-9],[-11,3],[-4,-7],[1,-6],[6,-6],[-1,-4],[-3,-1],[-13,-3],[-4,-2],[-1,-4],[-2,-1],[-5,9],[-3,1],[-7,1],[-10,13],[6,22],[23,38],[1,5],[0,6],[1,4],[21,5]],[[13181,83814],[2,3],[1,6],[0,6],[2,6],[2,2],[26,5],[8,-1],[2,-6],[2,-5],[1,-6],[0,-7],[-1,-7],[2,-8],[0,-7],[-2,-6],[-4,-3],[4,-6],[-1,-7],[-3,-7],[-4,-4],[-16,-7],[-3,-6],[7,-5],[8,0],[7,4],[12,15],[6,-4],[6,-8],[7,-6],[19,-3],[9,-4],[8,-11],[4,-9],[16,-21],[-2,-4],[-1,-4],[-1,-3],[-2,-2],[-5,5],[-2,-3],[-1,-6],[-3,-4],[-3,2],[-7,8],[-4,2],[2,-8],[5,-9],[3,-7],[-2,-1],[-2,-3],[3,-5],[3,-5],[2,-7],[1,-8],[-1,-2],[0,-1],[-1,-4],[7,-12],[2,-15],[-3,-9],[-8,3],[-1,5],[-3,13],[-2,3],[-2,-3],[-6,-14],[-3,-4],[-4,-1],[-2,1],[-2,1],[-5,-7],[-4,-3],[-5,-2],[-4,-1],[-5,2],[-3,4],[-5,12],[-4,4],[-11,4],[-3,7],[5,17],[2,2],[3,2],[2,5],[1,5],[-1,5],[-8,2],[-8,-1],[-5,2],[3,17],[-30,4],[-3,2],[-3,4],[-4,3],[-3,-1],[-2,-5],[0,-6],[-1,-6],[-3,-3],[-5,4],[-9,23],[-4,6],[-4,6],[-2,13],[0,11],[5,-2],[1,13],[1,11],[0,10],[-4,6],[6,4],[22,5],[3,6],[7,28],[5,6]],[[13340,82942],[5,-2],[0,-7],[0,-8],[2,-8],[-4,-3],[-4,-1],[-9,0],[4,-4],[-1,-6],[0,-6],[1,-6],[0,-6],[-1,-8],[-1,-6],[-1,-5],[1,-6],[-18,3],[-4,4],[-3,4],[-5,3],[-2,-2],[4,-7],[-12,-2],[-15,16],[-12,10],[-9,-16],[-4,7],[-1,10],[0,11],[3,8],[5,5],[12,4],[2,7],[-1,4],[-2,3],[-2,1],[-3,1],[-4,-2],[-2,-4],[-1,-4],[-2,-2],[-6,-2],[-10,5],[-7,0],[7,7],[15,9],[5,8],[-3,6],[-10,4],[-4,3],[3,3],[3,1],[7,0],[0,4],[-11,2],[-5,3],[-4,5],[-1,5],[1,5],[0,3],[-3,1],[-3,1],[-2,1],[-2,3],[-2,4],[4,3],[3,1],[2,-1],[-2,6],[-5,8],[-2,7],[0,7],[1,8],[3,13],[-7,-4],[-2,-13],[-1,-13],[-1,-6],[1,-4],[-1,-7],[-1,-8],[-2,-6],[-2,-2],[-10,-5],[-4,0],[-2,1],[-2,2],[-1,6],[2,6],[4,1],[4,1],[3,2],[4,14],[-2,10],[-6,8],[-5,5],[-1,-22],[-7,-13],[-9,-2],[-8,8],[-4,9],[-1,4],[0,6],[1,2],[5,-7],[3,-1],[3,6],[1,9],[1,7],[5,2],[-5,2],[-5,1],[-4,3],[2,10],[5,6],[7,-2],[7,-3],[6,-1],[5,5],[-18,4],[-4,7],[1,8],[8,17],[-5,2],[-4,3],[-4,2],[-5,-5],[-7,-27],[-3,-3],[-4,12],[5,20],[8,19],[6,10],[-5,4],[-3,7],[-6,15],[-7,11],[-2,6],[0,9],[-4,-8],[0,-14],[4,-12],[5,-6],[2,-4],[0,-8],[-1,-9],[-3,-4],[-18,0],[-3,2],[-8,11],[-11,9],[-3,3],[-4,10],[-2,14],[-1,14],[3,11],[-7,3],[-4,-1],[-2,-5],[0,-5],[-1,-6],[-1,-4],[-2,-3],[-6,-6],[-13,-5],[-6,-5],[-22,3],[-1,7],[2,3],[12,3],[19,17],[3,4],[1,5],[-3,3],[-5,-1],[-8,-4],[-36,0],[1,-2],[1,-6],[-3,5],[-3,5],[-4,5],[-4,1],[-4,-1],[-8,-5],[-4,-2],[-7,2],[-1,5],[1,8],[-2,8],[-3,4],[-4,3],[-3,4],[-2,7],[4,1],[3,5],[1,5],[2,5],[3,5],[3,2],[4,1],[4,0],[1,0],[3,-4],[3,-4],[1,1],[0,2],[1,2],[24,-7],[2,-2],[5,-7],[1,-1],[3,-1],[41,5],[7,-4],[-6,7],[-24,5],[-15,9],[-6,8],[2,8],[-2,5],[-3,2],[-3,1],[-4,0],[5,5],[7,5],[7,2],[6,0],[-9,5],[-18,-3],[-9,6],[-6,13],[1,11],[3,10],[5,11],[2,5],[3,14],[1,5],[3,3],[11,9],[6,10],[4,4],[5,3],[13,0],[4,3],[-4,3],[-4,1],[-9,0],[-4,-1],[-9,-6],[-13,-2],[-39,-22],[-13,-1],[-30,18],[-6,8],[-2,13],[0,7],[1,4],[3,2],[9,3],[-1,4],[-5,10],[-2,1],[-3,1],[-2,3],[1,8],[4,6],[3,-2],[3,-5],[3,-6],[3,-1],[2,10],[1,13],[3,9],[3,-4],[8,-6],[8,-1],[3,9],[3,13],[6,9],[7,5],[5,7],[2,8],[1,14],[0,13],[-2,7],[-3,4],[-1,-3],[1,-6],[0,-2],[-1,-7],[-4,0],[-12,11],[-3,4],[-2,6],[-1,5],[-3,16],[-1,3],[-2,2],[3,5],[4,4],[2,-1],[-1,7],[-3,16],[-1,23],[-1,12],[-8,12],[0,15],[4,27],[-6,12],[-13,3],[-26,-3],[-5,1],[-4,3],[-9,10],[-5,0],[-15,-4],[-3,0],[-1,2],[-4,8],[-4,5],[-1,0],[-1,1],[0,6],[-1,5],[1,10],[0,6],[-2,2],[-2,2],[-2,3],[0,5],[4,7],[12,2],[3,7],[-2,6],[-4,8],[-7,10],[0,5],[7,0],[41,-12],[28,0],[7,-4],[0,-5],[-4,-6],[0,-11],[5,-7],[7,4],[-1,1],[-1,1],[-1,1],[-1,2],[2,13],[10,8],[12,3],[9,0],[4,-5],[4,-7],[4,-8],[1,-7],[0,-4],[-1,-5],[-1,-4],[2,-1],[2,-1],[6,-4],[3,-3],[7,-2],[3,-2],[1,-5],[1,-5],[-1,-5],[1,-6],[0,-1],[-1,-2],[-1,-2],[0,-3],[2,-2],[3,-2],[2,-2],[1,-3],[2,-4],[0,-5],[-3,-2],[-3,-4],[-6,-19],[-2,-6],[-5,-2],[-9,9],[-5,-3],[14,-29],[3,-7],[5,-3],[4,0],[8,3],[5,-1],[13,-7],[0,6],[1,4],[2,4],[2,2],[5,-3],[2,-5],[1,-6],[3,-9],[0,-3],[0,-1],[6,-1],[2,1],[1,2],[2,3],[4,3],[4,-4],[4,-6],[3,-3],[4,-2],[15,-10],[6,-10],[5,-12],[7,-11],[10,-6],[4,-4],[3,-6],[1,-6],[1,-6],[9,-7],[3,-5],[-2,-5],[9,-10],[7,-12],[13,-30],[-3,-8],[1,-8],[3,-8],[2,-8],[1,-10],[0,-8],[-4,-15],[4,-3],[2,-5],[2,-7],[-1,-9],[3,4],[9,20],[6,0],[2,-2],[4,-9],[1,-4],[0,-13],[1,-4],[1,-5],[12,-35],[2,-5],[15,-1],[6,-3],[15,-20],[4,-8],[1,-11],[-3,-9],[-6,2],[-12,13],[-9,16],[-13,7],[-11,11],[-19,5],[-9,5],[-15,32],[-9,13],[-8,-4],[2,-2],[1,-3],[3,-7],[-4,-1],[-2,-4],[-2,-5],[-2,-6],[4,0],[6,-3],[5,-4],[-1,-7],[-13,-25],[-8,-8],[-19,-10],[-6,-12],[4,-2],[3,-4],[2,-6],[-2,-8],[4,7],[3,8],[4,6],[17,7],[2,2],[1,6],[0,5],[1,3],[2,1],[4,6],[2,1],[3,0],[1,-1],[2,-1],[2,-2],[5,0],[6,1],[6,2],[6,6],[5,-10],[2,-9],[4,-7],[16,-6],[7,-6],[3,-7],[-7,-4],[-4,1],[-5,6],[-4,1],[-3,-3],[-2,-4],[-3,-4],[-4,-1],[-16,-1],[-8,-3],[-4,-9],[1,-9],[6,2],[13,12],[3,-2],[3,-3],[3,-5],[2,-10],[3,1],[4,6],[1,2],[3,5],[2,1],[21,5],[2,-3],[8,-20],[3,-4],[4,0],[4,0],[3,-2],[2,0],[-1,-6],[-1,-2],[3,-3],[2,-6],[0,-7],[3,-1],[3,-3],[1,-4],[-2,-5],[7,-9],[3,-7],[-1,-5],[-7,-7],[-8,-4],[-9,-2],[-9,1],[-8,5],[2,-6],[-2,-7],[-2,-7],[0,-8],[2,-7],[4,-1],[3,2],[-2,6],[6,12],[8,-2],[17,-14],[8,5],[9,29],[7,7],[6,1],[3,-3],[3,-7],[1,-6],[2,-8],[0,-8],[1,-8],[-2,-17],[-5,-11],[-5,-10],[-3,-13],[9,0],[-3,-9],[-5,-7],[-6,-6],[-5,-2],[-2,2],[-4,11],[-4,3],[-2,-3],[1,-5],[3,-5],[2,-3],[-2,-3],[-3,-2],[-3,0],[-3,1],[0,-4],[8,-5],[4,-5],[0,-5],[-3,-3],[-8,-1],[-10,-10],[-16,-8],[-4,-8],[13,0],[3,-1],[2,-3],[2,-2],[5,-5],[2,0],[5,9],[2,1],[1,-1],[2,-6],[6,15],[9,13],[11,7],[9,-3],[-3,-3],[-2,-5],[0,-5],[2,-7],[-6,-7],[-2,-4],[-2,-5],[10,1],[2,-1],[2,-7],[-1,-3],[-2,-3],[-1,-4],[0,-19],[-3,-1],[-7,1],[-6,-1],[-4,-5],[1,-6],[6,-9],[10,-7],[5,-4],[4,-9],[-2,-3],[-1,-1],[-2,0],[-1,0]],[[13163,83871],[-3,-8],[-10,-11],[-2,-9],[1,-7],[8,-22],[-4,-13],[-5,-5],[-7,-2],[-11,-11],[-24,-9],[-14,4],[-34,40],[-13,11],[-5,9],[2,11],[15,33],[7,9],[6,7],[6,3],[14,2],[5,-1],[9,-5],[5,-1],[3,1],[11,6],[15,4],[14,-8],[3,-3],[2,-7],[3,-13],[3,-5]],[[13332,83835],[3,-10],[4,-22],[11,-31],[3,-14],[0,-9],[-7,-5],[-6,3],[-6,-2],[-2,-18],[-2,-10],[-6,-7],[-7,-5],[-4,-1],[-3,8],[-2,10],[-2,8],[-6,3],[0,-7],[-3,1],[-4,6],[-4,6],[-5,7],[-18,7],[-8,7],[-10,13],[-9,13],[-4,12],[7,31],[-1,7],[-4,11],[0,6],[1,4],[2,4],[1,6],[0,8],[-2,9],[-3,9],[-4,8],[-3,12],[0,10],[4,4],[6,-7],[22,-15],[6,-8],[3,-9],[5,-20],[4,-9],[5,-8],[7,-9],[8,-5],[6,3],[6,8],[8,0],[7,-5],[6,-8]],[[7207,83948],[3,10],[6,5],[40,5],[0,-7],[-4,-10],[-10,-11],[-10,-7],[-7,1],[-5,3],[-5,-1],[-9,-4],[-12,-1],[-5,1],[-5,4],[5,8],[7,8],[7,2],[4,-6]],[[6372,83978],[4,-5],[10,-5],[5,-6],[4,-11],[-3,-3],[-5,2],[-5,9],[-7,2],[-25,0],[-2,-2],[-2,-9],[-2,-2],[-2,0],[-3,3],[-2,2],[-5,-5],[-29,0],[-6,-4],[1,6],[3,9],[3,6],[1,3],[4,2],[8,9],[4,2],[12,-3],[28,7],[11,-7]],[[7104,83985],[3,-3],[2,-5],[1,-6],[1,-7],[-3,-6],[-4,-4],[-4,-1],[-2,0],[3,2],[3,3],[2,6],[-3,-1],[-3,-1],[-3,-2],[-3,-4],[5,22],[-9,10],[-11,-5],[-4,-22],[9,-13],[3,-8],[-5,-4],[-7,-1],[-8,-4],[-15,-11],[-16,-25],[-8,-8],[-5,-10],[-6,-7],[-8,1],[-7,18],[6,24],[11,22],[9,13],[45,40],[10,4],[11,0],[10,-7]],[[7199,83961],[-2,-4],[-13,-8],[-1,-1],[-5,-3],[-9,-11],[-5,-2],[-20,2],[-11,5],[-4,2],[-2,5],[-2,10],[3,12],[8,11],[9,9],[8,5],[6,1],[17,-1],[12,3],[6,1],[5,-4],[2,-9],[2,-7],[3,-6],[3,-7],[-9,11],[-4,1],[-3,-2],[1,-5],[2,-5],[3,-3]],[[13067,84100],[-1,7],[3,7],[8,9],[11,-15],[3,-2],[11,1],[4,-1],[18,-23],[3,-7],[3,-12],[6,-10],[7,-7],[3,-3],[1,-5],[2,-3],[6,-3],[3,-3],[2,-2],[4,-11],[3,-8],[1,-4],[3,-5],[2,-3],[5,-4],[3,-2],[2,0],[2,-2],[1,-6],[-1,-6],[-2,-2],[-2,-1],[-2,-4],[-5,-5],[-13,-2],[-5,-5],[-3,-6],[-5,-5],[-5,-1],[-5,2],[-4,6],[-4,8],[-4,3],[-5,-9],[9,-14],[2,-6],[-5,-1],[-9,-6],[-5,-1],[-35,6],[-5,6],[-2,11],[-3,33],[1,6],[2,7],[4,4],[11,5],[2,7],[-1,6],[-10,23],[-1,8],[1,9],[1,9],[1,6],[-3,8],[-9,18]],[[12810,83924],[4,-2],[2,-5],[1,-7],[1,-7],[2,-2],[6,-5],[-5,-5],[-12,3],[-6,-3],[3,-6],[4,-4],[2,-4],[-1,-10],[-2,-1],[-3,1],[-3,-2],[-2,-10],[16,-9],[4,-6],[1,-6],[-4,-16],[2,-8],[-6,-8],[-8,13],[-9,20],[-7,12],[-5,0],[0,-5],[0,-9],[1,-11],[-2,-13],[-1,-7],[1,-3],[5,-1],[10,2],[4,-3],[5,-27],[-1,-6],[-14,-5],[0,-6],[5,-17],[2,-3],[1,-5],[-1,-5],[-5,-8],[-1,-4],[2,-7],[-2,-9],[-2,-7],[-4,-3],[-5,-1],[-4,2],[-10,10],[-2,4],[0,7],[8,36],[-2,7],[-4,6],[-2,6],[0,13],[2,21],[0,19],[-6,7],[-5,-9],[1,-17],[-1,-15],[-10,-3],[5,-30],[-9,-8],[-13,2],[-6,-3],[8,-22],[3,-2],[1,2],[1,2],[3,2],[8,-4],[1,-10],[0,-11],[4,-8],[-2,-5],[-2,-4],[-6,-7],[4,-7],[2,-12],[-1,-13],[-3,-8],[-4,1],[-6,8],[-2,9],[4,10],[-6,5],[-13,6],[-4,9],[4,5],[1,7],[-2,6],[-5,2],[-1,4],[3,7],[7,12],[1,7],[-4,3],[-6,1],[-1,-1],[-3,6],[-1,6],[0,17],[-1,7],[-2,11],[-1,8],[2,7],[9,-9],[2,6],[0,9],[1,5],[2,4],[5,4],[7,1],[1,4],[-2,12],[-4,-4],[-14,-9],[-3,-6],[-2,-2],[-3,-1],[-3,-1],[-3,0],[-3,2],[0,4],[9,7],[-1,8],[-5,10],[0,10],[4,1],[9,0],[1,3],[-2,20],[1,6],[2,4],[3,-3],[3,-3],[3,-2],[5,3],[0,4],[0,5],[-1,6],[1,2],[3,-4],[2,-7],[1,-7],[0,-27],[3,5],[9,12],[0,1],[-1,3],[1,3],[3,1],[6,-4],[3,-7],[3,-8],[3,-5],[3,4],[1,6],[0,15],[1,7],[-3,7],[-5,9],[-2,8],[0,10],[2,4],[3,-1],[5,-5],[-1,6],[-1,7],[-2,6],[-3,2],[-1,3],[-1,13],[-1,4],[-4,4],[-3,-9],[-3,-14],[-5,-9],[-5,1],[-5,8],[-4,11],[-5,8],[-8,7],[-8,4],[-8,1],[-8,-4],[0,4],[21,25],[13,5],[6,9],[5,2],[10,-3],[4,2],[2,9],[-9,4],[-7,-1],[-23,-17],[-6,-2],[-5,4],[-6,12],[6,5],[7,0],[4,4],[2,13],[-1,6],[-3,1],[-4,-1],[-1,-1],[-1,-10],[-2,-3],[-13,-3],[-7,1],[-7,5],[-2,10],[-7,16],[-2,6],[1,7],[2,9],[-1,14],[-4,23],[-1,14],[1,6],[2,4],[3,3],[3,1],[4,-2],[3,-5],[5,-14],[9,-17],[6,-6],[2,5],[-1,12],[-4,8],[-4,7],[-4,8],[-3,17],[7,5],[20,-2],[3,-2],[11,-18],[4,-4],[6,-3],[6,-1],[5,0],[0,4],[-4,5],[-6,14],[-4,5],[-11,4],[-5,4],[1,9],[-3,4],[-12,7],[7,0],[18,-11],[13,-3],[6,-3],[6,-7],[9,-3],[11,-6],[7,-12],[-1,-20],[6,3],[2,-3],[2,-20],[1,3],[3,3],[2,3],[1,-7],[3,-18],[2,-4],[2,-2],[0,-4],[-1,-4],[-4,-4],[0,-4],[1,-6],[-1,-4],[-1,-3],[-3,-3],[-2,-2],[-3,-15],[-1,-4],[-4,-6],[-4,-3],[-10,-1],[8,-9],[9,3],[7,9],[6,13],[0,4],[-1,4],[0,3],[2,2],[3,0],[4,3],[3,0],[2,4],[2,9],[1,9],[1,7],[-1,14],[-2,12],[1,5],[8,-7],[6,-10],[3,-2],[9,5],[5,-1],[5,-3],[4,-5],[-16,-42],[-1,-8],[2,-6],[3,-4],[8,-4],[1,-6],[0,-6],[0,-5],[6,-18],[-1,-5],[-7,-16],[-3,-4],[-3,-1],[-4,-1],[-2,3],[-4,15],[-2,6],[-6,6],[-23,7],[-5,-2],[4,-9],[14,-8],[3,-14],[-1,0],[-6,-17],[0,-3],[-4,-4],[-6,-2],[-3,-4],[0,-5],[3,-5],[4,-3],[3,-1]],[[12802,84275],[3,4],[4,0],[34,-8],[26,-9],[25,-6],[10,-8],[15,-4],[7,-4],[15,-12],[7,-4],[14,0],[6,-4],[4,-12],[3,-11],[3,-11],[4,-4],[8,5],[-11,19],[-5,13],[-2,13],[17,-8],[36,1],[16,-9],[2,-10],[5,-9],[7,-7],[6,-3],[3,-5],[4,-12],[5,-23],[0,-10],[-3,-9],[-5,-7],[-6,-3],[-1,-6],[3,-12],[7,-18],[1,-6],[1,-22],[-1,-5],[0,-3],[1,-3],[2,-2],[1,-2],[0,-4],[1,-21],[-2,-9],[-6,-8],[-3,-2],[-7,-3],[-4,1],[-3,4],[-7,13],[-4,3],[-6,3],[-7,9],[-21,36],[-4,9],[-2,20],[-3,10],[-4,9],[-5,6],[-2,-7],[-5,2],[-16,18],[-4,2],[-1,-3],[8,-20],[0,-7],[-1,-7],[0,-7],[2,-8],[4,-9],[5,-5],[5,4],[5,6],[4,-1],[4,-6],[1,-12],[0,-20],[-1,-4],[-5,-8],[-1,-6],[0,-8],[2,1],[2,4],[1,3],[3,-1],[6,-2],[8,-2],[9,-4],[7,-7],[3,-8],[-3,-5],[-4,4],[-4,3],[-5,2],[-4,0],[0,-4],[15,-8],[3,-4],[2,-8],[2,-17],[2,-8],[-15,0],[3,-12],[0,-11],[-2,-10],[-5,-8],[-3,-2],[-4,-1],[-7,-1],[-7,4],[-1,2],[-1,3],[-1,3],[-8,2],[-15,-4],[-8,2],[-3,5],[-1,6],[-2,4],[-5,2],[-14,0],[3,-3],[2,-4],[2,-4],[1,-6],[-6,0],[2,-7],[-5,-6],[-24,-8],[-26,2],[-11,13],[2,54],[-10,9],[3,8],[9,5],[3,8],[-5,-1],[-2,6],[1,8],[-1,7],[-4,5],[-3,2],[-3,4],[-2,9],[1,12],[2,10],[1,11],[-2,16],[4,2],[1,3],[0,4],[-2,5],[-2,7],[1,4],[3,-1],[5,-4],[-3,13],[-1,15],[-1,9],[-5,0],[0,-2],[0,-8],[0,-3],[-2,-1],[-3,-2],[-2,-2],[-2,-5],[-3,-3],[-4,-1],[-3,3],[4,3],[0,5],[-4,-1],[-5,1],[-3,3],[-4,5],[1,2],[1,6],[-3,0],[-2,1],[-1,4],[1,7],[-5,-1],[-4,-2],[-3,0],[-4,5],[-4,10],[1,5],[3,0],[4,-1],[18,-11],[9,-1],[8,8],[-5,4],[-24,11],[-13,22],[-36,36],[0,4],[1,3],[1,4],[-1,12],[2,5],[5,1],[9,0],[3,1],[3,2],[3,3],[3,4]],[[7526,84323],[2,0],[3,-3],[1,-5],[-7,-11],[-5,-4],[-22,-7],[-3,2],[-1,4],[-1,3],[-3,-1],[-6,-7],[-7,-10],[-8,-6],[-9,5],[-4,0],[-10,-8],[-4,-2],[-2,-4],[-1,-9],[0,-14],[-5,-14],[-10,-7],[-11,-1],[-8,4],[4,11],[1,1],[-1,5],[-2,2],[-2,1],[0,9],[3,4],[3,3],[1,5],[-3,4],[-9,-7],[-9,-4],[-5,11],[4,2],[9,8],[7,3],[0,3],[-2,3],[-2,1],[-3,-1],[-5,-3],[-3,0],[4,7],[10,13],[9,18],[3,2],[2,3],[6,11],[3,5],[4,3],[4,0],[2,-5],[-1,-9],[11,-2],[2,-5],[-9,-25],[16,18],[9,4],[6,5],[3,1],[3,-1],[3,-5],[3,-1],[22,4],[7,-1],[5,-7],[4,-3],[4,4]],[[12333,84328],[1,-11],[5,-3],[5,-2],[4,-3],[-5,-17],[-10,-45],[-8,-15],[-3,-1],[-9,2],[-4,-3],[-3,-3],[-3,-2],[-37,-5],[3,36],[2,17],[5,12],[4,4],[8,5],[10,16],[3,7],[1,9],[-19,-2],[-8,4],[-3,14],[1,7],[5,12],[0,5],[-4,1],[-8,-7],[-4,-2],[5,13],[0,6],[-3,6],[7,11],[-3,13],[-2,11],[5,5],[28,-2],[30,-27],[5,-7],[8,-18],[4,-7],[-5,-4],[-5,1],[-11,7],[4,-8],[2,-8],[2,-10],[0,-12]],[[12605,84074],[2,-9],[2,-78],[-1,-19],[-1,-4],[-3,-6],[-1,1],[-1,4],[-3,5],[0,4],[-2,7],[-2,3],[-2,-8],[-1,-22],[12,-30],[0,-8],[-3,-11],[1,-9],[2,-9],[1,-8],[0,-12],[-1,-11],[-3,-10],[-4,-9],[6,-6],[-1,-12],[-9,-31],[8,7],[3,-4],[-2,-13],[-5,-14],[2,-5],[-4,-20],[-3,-2],[-6,6],[5,14],[1,7],[-1,2],[-3,5],[-3,3],[-2,-2],[0,-3],[-2,-2],[-8,-2],[-4,-1],[-4,3],[4,9],[-6,0],[-4,5],[-3,7],[0,10],[-2,4],[-2,2],[-2,2],[-2,2],[-1,5],[0,6],[1,10],[-6,2],[-5,-3],[-4,3],[-2,16],[-1,3],[-6,9],[-2,2],[-1,3],[-2,6],[-2,11],[-1,4],[-16,31],[-1,10],[-4,11],[-5,10],[-5,7],[3,1],[2,2],[3,2],[1,4],[-3,4],[-2,5],[2,5],[3,6],[6,1],[15,-1],[2,6],[3,14],[6,15],[16,26],[-6,-1],[-4,-1],[-4,-5],[-4,-8],[-6,-14],[-3,-6],[-4,-2],[-5,3],[-2,8],[1,9],[3,19],[2,6],[3,4],[4,4],[-7,3],[-6,-4],[-4,-10],[-4,-28],[-4,-11],[-6,-9],[-5,-6],[-7,-5],[-5,2],[-2,9],[-1,16],[1,11],[2,10],[3,8],[6,9],[18,19],[5,8],[-1,5],[-4,5],[-5,3],[-2,-5],[-2,-5],[-25,-38],[-8,-6],[-3,-3],[-3,-2],[-4,5],[0,6],[2,5],[3,4],[2,4],[0,6],[-2,5],[-1,4],[9,2],[1,4],[-1,5],[-1,19],[0,5],[1,5],[3,4],[2,2],[2,2],[2,5],[-15,-3],[-26,-22],[-14,5],[3,14],[-5,3],[-7,-1],[-4,3],[0,26],[2,8],[5,-4],[5,6],[5,0],[3,1],[-1,9],[-4,8],[-6,6],[-6,4],[-5,2],[1,2],[2,1],[2,6],[2,8],[5,5],[6,2],[5,1],[2,1],[6,7],[1,2],[1,2],[7,1],[7,5],[11,0],[2,4],[-2,13],[-6,2],[-11,-5],[-12,2],[-11,4],[-11,10],[-7,17],[-1,21],[8,12],[11,6],[12,1],[0,5],[-7,3],[-5,2],[-6,-1],[-5,-4],[-8,-11],[-5,-2],[-5,6],[0,7],[4,8],[6,6],[4,2],[0,5],[8,27],[-22,-3],[-4,1],[-8,4],[-7,-3],[-7,-4],[-6,-3],[-4,4],[-10,26],[-17,18],[-2,7],[-7,12],[-1,5],[4,3],[4,2],[12,1],[33,-10],[3,2],[1,5],[-2,3],[-13,3],[-12,10],[-5,1],[-6,-3],[2,7],[3,4],[11,11],[1,2],[0,3],[2,6],[2,3],[4,4],[3,3],[1,4],[-1,4],[-1,3],[0,3],[-1,4],[-1,7],[0,3],[1,5],[2,2],[3,0],[2,1],[15,18],[15,2],[15,-9],[13,-16],[-8,-12],[-20,-12],[-8,-13],[4,-4],[4,2],[7,10],[11,9],[6,2],[3,-5],[2,-7],[5,3],[6,7],[5,3],[11,-1],[10,-7],[-3,-10],[-10,-6],[-4,-8],[6,5],[7,2],[8,0],[19,-11],[2,-2],[2,-4],[11,-5],[3,-4],[24,-34],[0,-4],[-12,6],[-13,2],[0,-4],[14,-8],[0,-4],[-6,-4],[-2,-3],[-2,-6],[5,1],[2,1],[3,3],[3,-4],[1,-5],[1,-6],[0,-8],[2,-5],[4,-1],[16,2],[4,-1],[1,-7],[0,-8],[0,-7],[-2,-4],[-4,1],[8,-11],[5,-10],[0,-10],[-7,-14],[6,-4],[7,-9],[3,-12],[-4,-11],[5,0],[3,-4],[3,-6],[2,-6],[0,-5],[-1,-7],[1,-5],[1,-2],[2,0],[1,-1],[2,-5],[0,-8],[-3,-12],[1,-8],[2,-6],[2,-4],[2,-5],[-3,-9],[7,-8],[2,-9],[-1,-26],[2,-8],[11,-23],[-2,-12],[1,-7],[4,-6],[3,-7]],[[7416,84719],[-5,1],[-2,1],[-2,2],[1,1],[1,2],[1,1],[2,0],[-2,7],[-5,3],[-11,-2],[-4,2],[-35,34],[-6,9],[4,10],[6,10],[7,5],[6,-5],[8,-3],[29,-22],[13,-14],[5,-9],[9,-20],[5,-14],[0,-11],[-3,0],[-16,4],[-1,1],[-1,3],[-1,3],[-3,1]],[[7733,84597],[4,-2],[-2,-6],[-7,-8],[-20,-34],[-5,-8],[-6,-5],[-5,-7],[-4,-11],[-1,-14],[-1,-12],[-2,-8],[-7,-2],[-15,4],[-3,1],[-2,2],[-2,1],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-2,0],[-3,0],[3,5],[4,8],[2,8],[-3,3],[-7,1],[-4,-1],[-1,-6],[-1,-6],[-1,-3],[-2,-1],[-3,0],[-1,1],[-5,5],[-3,2],[-2,0],[-1,-1],[-1,-2],[-2,-1],[-1,1],[-1,3],[0,2],[-1,2],[-1,3],[-2,4],[-1,3],[-4,2],[-2,-1],[-6,-6],[-3,-1],[-3,0],[-2,1],[-3,2],[-8,12],[0,2],[-1,1],[-2,3],[-3,2],[-3,2],[-13,-5],[-4,1],[-5,6],[-2,2],[-4,0],[-10,-4],[-6,2],[-6,4],[-5,1],[-6,-3],[4,-4],[12,-6],[2,-7],[-5,-4],[-28,-4],[0,-4],[1,-1],[1,0],[2,-3],[-6,-9],[-3,-6],[1,-5],[4,0],[8,13],[3,3],[43,12],[9,-3],[21,-25],[26,-14],[4,-11],[1,1],[2,-1],[1,-3],[2,-5],[-3,-6],[-7,-8],[-3,-6],[0,-11],[-5,-13],[-9,-9],[-7,-4],[2,15],[-6,3],[-18,-9],[-5,-8],[-6,-5],[-7,4],[1,11],[-4,3],[-5,2],[-4,9],[7,11],[1,3],[-1,6],[-3,-2],[-6,-6],[-18,-4],[-8,4],[-5,2],[-9,-10],[-9,-4],[-9,-2],[-6,2],[-2,5],[-2,11],[-2,4],[-3,-1],[0,-6],[0,-8],[1,-5],[-3,-5],[3,-3],[21,-9],[6,-1],[12,9],[8,-5],[8,-12],[4,-11],[-28,-20],[-10,-3],[-27,7],[-2,-1],[-2,-2],[-2,-1],[-2,2],[-8,6],[-4,-2],[-5,-8],[-4,-2],[-2,-3],[-5,-11],[-3,-3],[-4,2],[-8,9],[-4,2],[4,-9],[1,-6],[0,-4],[-9,-17],[-5,-5],[-4,-9],[-5,-5],[-4,6],[-2,10],[0,11],[-2,8],[-6,3],[-7,-1],[-3,-2],[-1,-4],[1,-3],[8,4],[4,-1],[-7,-19],[0,-6],[2,-6],[3,-5],[2,-5],[1,-15],[-5,-3],[-12,6],[-43,-7],[-13,-9],[0,-5],[42,5],[5,-3],[0,-4],[-2,-6],[-4,-4],[-4,-2],[-5,1],[-4,-1],[-4,-6],[27,-4],[6,-3],[-2,-7],[-8,-14],[-1,0],[-2,0],[-1,0],[0,-2],[0,-5],[0,-1],[-4,-6],[-2,-2],[-4,-1],[-7,2],[-2,5],[1,7],[-3,11],[-9,-37],[-7,-15],[-8,7],[-3,-14],[6,-1],[15,7],[2,-2],[0,-6],[-2,-6],[-2,-2],[-16,-4],[-2,-2],[-1,-5],[-1,-1],[-2,1],[-2,3],[-8,0],[-4,-1],[-1,-5],[-2,-13],[-5,-8],[-10,-10],[-11,-15],[-5,-6],[-7,-3],[-8,3],[-6,5],[-5,3],[-8,-3],[-7,-7],[-4,-2],[-4,1],[-3,4],[0,4],[2,3],[1,7],[2,7],[18,37],[18,15],[7,11],[2,8],[3,3],[7,2],[12,10],[22,24],[10,15],[-2,4],[-15,-19],[-4,-1],[-2,4],[7,15],[-1,9],[-5,4],[-3,-8],[-2,-11],[-2,-9],[-5,-6],[-7,-3],[-14,1],[1,10],[2,9],[2,8],[7,16],[5,15],[3,7],[5,5],[13,9],[5,2],[2,1],[4,8],[2,3],[3,2],[3,2],[7,0],[0,4],[-12,10],[-6,2],[-3,-5],[-1,-7],[-3,-4],[-7,-4],[-33,-34],[-9,-14],[-12,-25],[-7,-13],[-7,-6],[-4,12],[-5,6],[-1,5],[1,3],[3,6],[2,3],[1,8],[9,17],[33,32],[-34,4],[-2,2],[-5,9],[-3,2],[-15,-2],[-19,6],[-16,-4],[-17,0],[-4,-2],[-6,-8],[-4,-3],[-16,-1],[-7,-7],[3,-14],[6,-11],[7,-8],[6,-4],[8,1],[7,4],[4,6],[8,16],[6,8],[6,4],[42,4],[5,-6],[0,-9],[-2,-13],[-5,-19],[-6,-14],[-2,-6],[0,-7],[0,-13],[0,-4],[-4,-10],[-6,-5],[-15,-2],[5,-5],[3,-4],[0,-6],[-3,-7],[-2,-3],[-2,1],[-2,3],[-3,1],[-5,-12],[1,6],[0,5],[-2,4],[-3,1],[-1,-24],[0,-4],[5,2],[7,7],[4,3],[0,-4],[-8,-10],[-3,-2],[-5,-3],[-2,0],[0,12],[0,16],[-2,10],[-4,6],[-17,20],[-6,6],[-10,3],[-7,6],[-3,1],[-9,0],[-4,1],[-1,3],[1,4],[1,17],[2,14],[1,13],[-5,20],[1,25],[-1,12],[-4,11],[-11,23],[-3,9],[-1,7],[-3,5],[-4,2],[-13,0],[-2,2],[-1,2],[0,3],[0,1],[-9,-1],[-10,-5],[-8,0],[-6,10],[4,1],[6,2],[3,4],[0,8],[-4,6],[-8,6],[-3,6],[6,7],[7,-2],[7,-6],[9,-3],[-1,5],[-2,3],[-2,3],[-3,1],[0,4],[6,7],[1,10],[-1,11],[-4,9],[12,14],[9,5],[2,3],[-4,6],[3,12],[4,10],[5,8],[9,4],[6,6],[4,0],[2,-3],[5,-12],[4,6],[-4,24],[2,6],[17,-2],[15,-6],[-3,4],[-10,8],[13,16],[10,8],[1,3],[1,8],[0,2],[5,1],[11,-3],[5,2],[4,4],[3,6],[5,5],[5,1],[5,-2],[9,-8],[5,-2],[27,0],[10,-5],[5,-10],[8,-34],[-8,-10],[-31,-7],[12,-4],[26,8],[11,-9],[4,-17],[4,-43],[5,-15],[4,-6],[9,-7],[5,-6],[13,-32],[8,-11],[33,-20],[-4,8],[-7,8],[-7,6],[-14,7],[-2,10],[-2,13],[-2,13],[-5,8],[-4,5],[-3,6],[-3,43],[1,13],[2,7],[-9,19],[-2,5],[0,11],[2,3],[3,-3],[4,-5],[7,-8],[12,-7],[12,-3],[7,3],[-3,6],[-4,2],[-10,1],[-4,2],[-31,39],[-5,12],[9,6],[12,0],[39,-10],[8,-7],[3,-18],[3,3],[8,-2],[2,4],[0,5],[-3,7],[-3,5],[-7,6],[-19,21],[-16,6],[-34,5],[-8,6],[-5,11],[-4,27],[4,21],[8,16],[15,19],[2,3],[1,0],[4,-1],[2,1],[4,2],[9,10],[11,4],[1,-1],[5,-5],[3,-3],[2,1],[3,3],[2,1],[6,-7],[2,-9],[3,-9],[8,-4],[6,-4],[3,-11],[1,-13],[0,-12],[1,-24],[3,-23],[5,-22],[6,-21],[3,9],[-7,32],[-2,16],[13,-12],[8,-5],[4,3],[-3,10],[-6,8],[-12,8],[4,11],[7,7],[8,2],[7,-6],[3,-9],[3,-10],[4,-10],[6,-5],[8,3],[4,10],[-2,11],[-5,5],[-4,2],[-5,8],[-4,3],[-1,3],[-1,3],[-1,1],[-8,0],[-8,6],[-4,11],[0,11],[7,4],[7,-2],[21,-18],[16,-8],[17,-4],[5,-4],[1,-9],[-2,-13],[1,-11],[2,-5],[2,-4],[2,-2],[3,-1],[-4,11],[-1,14],[2,32],[-2,30],[-2,7],[-7,12],[-3,8],[8,0],[7,-5],[12,-15],[19,-18],[4,-7],[3,4],[-3,5],[-7,7],[-3,4],[0,6],[-3,8],[-5,8],[-8,7],[-13,22],[-5,6],[-12,6],[-9,12],[-1,3],[-1,6],[2,4],[3,1],[4,-1],[2,-3],[9,-3],[18,-17],[13,-5],[10,-9],[10,-3],[9,-7],[6,0],[-3,12],[6,1],[33,-10],[9,-6],[6,-9],[-13,-8],[-6,-5],[-4,-7],[5,1],[5,2],[0,-3],[-10,-9],[-3,-13],[-1,-15],[-5,-26],[2,-8],[5,-5],[2,-8],[2,-3],[3,1],[3,3],[2,3],[-1,6],[-1,9],[0,5],[1,24],[4,18],[7,9],[11,-4],[4,-6],[3,-6],[4,-3],[4,3],[3,8],[5,18],[3,7],[5,-4],[9,-6],[3,-7],[3,9],[0,9],[-3,9],[-3,6],[3,10],[5,2],[5,-4],[4,-4],[1,-4],[2,-4],[1,-3],[2,1],[3,4],[3,1],[7,1],[6,-3],[3,-6],[4,-7],[4,-7],[5,-5],[1,-5],[-1,-7],[-3,-9],[5,-6],[5,1],[5,5],[6,8],[2,-5],[2,-4],[2,-2],[3,-1],[-8,-16],[-28,-18],[-10,-13],[-11,-16],[-4,-10],[2,-4],[6,4],[6,8],[7,6],[3,-2],[-1,-5],[0,-13],[-1,-8],[-2,-4],[-2,-4],[-2,-6],[7,1],[13,15],[6,4],[-5,-8],[-3,-12],[-2,-12],[-1,-11],[3,-2],[23,12],[51,-4]],[[12114,84797],[3,-17],[-4,-22],[-8,-20],[-8,-11],[-1,10],[-3,6],[-2,5],[2,8],[-2,2],[-3,2],[-3,1],[-3,-1],[1,5],[2,4],[2,4],[2,3],[0,4],[-5,2],[-4,-4],[-3,-4],[-5,-2],[-3,2],[0,5],[2,5],[3,4],[-4,8],[2,9],[3,9],[5,6],[-3,6],[-7,-1],[-4,3],[2,4],[1,5],[1,5],[0,12],[1,3],[8,12],[5,5],[6,2],[5,-3],[5,-12],[22,-24],[6,-10],[1,-5],[-10,-4],[-2,-6],[-3,-15]],[[7384,84857],[26,37],[-2,4],[5,4],[5,3],[5,0],[4,-3],[10,-17],[7,-8],[5,-4],[15,4],[3,0],[3,-3],[5,-11],[3,-2],[1,-3],[5,-15],[3,-3],[13,-3],[30,-20],[-3,-4],[-4,0],[-4,3],[-4,1],[-11,-7],[-4,-1],[-8,2],[-15,11],[-9,4],[-15,11],[-9,-1],[-4,3],[-8,22],[-5,8],[-7,0],[7,-16],[3,-4],[-25,-3],[-11,1],[-10,10]],[[7815,84971],[11,4],[5,-1],[4,-11],[-3,-19],[-3,-10],[-4,-8],[-5,-4],[-6,-1],[-5,3],[-3,8],[2,9],[7,30]],[[12264,84459],[2,12],[-3,7],[-12,6],[-11,10],[-4,5],[0,5],[-3,8],[-5,8],[-9,13],[8,3],[10,-4],[16,-16],[14,-21],[8,-9],[8,-2],[-6,18],[-10,13],[-56,53],[-9,18],[3,2],[4,1],[8,0],[-2,-7],[2,-4],[3,-2],[5,1],[-2,9],[3,3],[10,0],[0,5],[-5,1],[-10,5],[-4,1],[-9,-3],[-2,1],[-2,5],[-3,5],[-2,1],[-1,-6],[-3,-9],[-5,-1],[-5,5],[-3,9],[2,7],[4,8],[5,5],[5,2],[0,4],[-34,35],[-5,11],[1,11],[-4,4],[-6,-9],[-5,-1],[-4,6],[-5,10],[-3,3],[-6,5],[-2,4],[-1,7],[-3,3],[-3,1],[-4,-1],[-3,-11],[-2,-3],[-3,6],[0,5],[3,12],[3,18],[11,17],[2,9],[0,4],[-5,10],[-1,7],[2,7],[3,4],[4,3],[2,4],[5,0],[8,-8],[34,-47],[29,-30],[3,-2],[4,-1],[-7,13],[-24,24],[-21,36],[-4,4],[-5,4],[-12,16],[-8,17],[-24,24],[-6,16],[2,10],[6,6],[6,4],[7,1],[6,-4],[11,-12],[6,-5],[-2,7],[-3,5],[-2,5],[2,8],[-11,18],[-5,10],[-2,14],[16,-2],[7,3],[3,-2],[1,-11],[1,-5],[6,-11],[1,-8],[2,-6],[9,-8],[2,-8],[0,-2],[-4,-17],[1,-3],[8,-10],[18,-5],[-13,13],[-3,5],[-2,7],[0,11],[1,9],[1,4],[-3,3],[-2,8],[-1,10],[1,7],[3,5],[6,2],[3,4],[-1,5],[0,4],[10,-1],[8,-6],[25,-26],[5,-2],[2,5],[-1,15],[1,4],[4,7],[6,9],[30,26],[8,1],[7,-5],[12,-23],[7,-2],[8,2],[7,1],[4,-4],[6,-10],[3,-3],[9,-2],[3,-2],[-2,-4],[5,-5],[9,-4],[5,-7],[-3,-7],[-2,-7],[-1,-8],[-1,-7],[-4,-6],[-2,-2],[-4,-1],[-4,-3],[-6,-10],[-5,-13],[-7,-7],[-18,7],[-22,-4],[-4,-3],[9,-9],[16,8],[9,-5],[-2,-4],[3,-3],[5,-1],[4,-3],[1,-6],[-3,-3],[-5,-1],[-25,3],[-8,-2],[-6,-8],[23,-4],[13,-5],[2,-12],[4,2],[4,4],[1,5],[-4,5],[0,5],[6,0],[6,2],[6,4],[4,8],[12,30],[22,12],[3,9],[-2,6],[-4,5],[-3,9],[5,0],[9,6],[5,2],[5,-1],[7,-3],[10,-8],[-2,-2],[-5,-7],[5,-3],[4,0],[10,3],[5,-1],[11,-5],[6,-2],[19,4],[5,-2],[3,-4],[0,-4],[-5,-2],[0,-4],[35,-13],[16,-14],[6,-32],[-1,-2],[-2,0],[-2,-1],[-1,-4],[1,-4],[3,-7],[0,-4],[-2,-9],[-2,-4],[-7,-7],[-4,-9],[1,-9],[5,-8],[7,-7],[-8,3],[-28,30],[-17,10],[-6,2],[-4,2],[-15,14],[-2,-4],[6,-12],[6,-11],[8,-8],[7,-6],[14,-4],[5,-3],[7,-13],[4,-4],[4,4],[1,-10],[4,-5],[10,-5],[-3,-3],[-8,-3],[-4,-2],[-5,-6],[-3,-2],[-53,0],[-15,6],[-45,40],[-8,5],[-9,2],[-3,1],[-4,9],[-53,26],[-41,33],[-6,3],[-6,1],[0,-5],[13,-8],[7,-7],[3,-11],[4,-7],[49,-23],[8,-7],[3,-2],[8,-2],[7,-9],[2,-1],[0,-1],[0,-7],[1,-4],[3,-3],[27,-12],[4,-1],[4,-4],[12,-21],[3,-7],[-2,-4],[-7,-3],[-2,-6],[-1,-6],[2,-1],[8,3],[15,0],[6,-2],[8,-6],[2,-3],[0,-2],[2,-1],[3,2],[7,10],[3,2],[13,3],[4,1],[6,8],[1,1],[4,0],[2,2],[4,0],[4,-3],[4,-2],[8,9],[4,2],[9,0],[6,-5],[3,-13],[2,-14],[2,-13],[-1,-10],[2,-11],[9,-29],[2,-10],[1,-10],[0,-11],[-1,-11],[1,-7],[1,-2],[1,-2],[6,-10],[-2,-7],[-10,7],[-5,-5],[7,-12],[-6,-5],[-10,-2],[-34,2],[-8,3],[-35,31],[-38,39],[-38,29],[-15,9],[-12,14],[-3,2],[-5,3],[-13,15],[-39,32],[-12,3],[2,-7],[3,-6],[3,-5],[3,-3],[5,-1],[5,1],[4,-3],[2,-9],[-4,-4],[1,-5],[4,-5],[2,-6],[-16,-3],[-8,-6],[-4,-11],[20,6],[6,-2],[19,-18],[6,-3],[5,-4],[5,-8],[4,-8],[0,-4],[-14,2],[-6,-3],[-3,-11],[11,6],[5,1],[5,-5],[3,-6],[3,-7],[-1,-6],[-6,-3],[0,-4],[5,-2],[3,-6],[2,-8],[0,-11],[-3,-7],[-6,-3],[-12,0],[8,-12],[-2,-6],[-2,-1],[-2,-1],[-3,-2],[-2,0],[-3,2],[-4,0],[-1,-2],[0,-5],[1,-4],[2,-3],[2,-3],[-3,1],[-3,-1],[-4,-2],[-3,-10],[-5,0],[-32,12],[-7,4]],[[12612,84959],[-7,5],[-8,13],[-7,14],[-1,10],[5,6],[11,3],[5,3],[5,7],[6,2],[23,-6],[10,-11],[18,-26],[28,-30],[6,-15],[-59,18],[-12,-2],[-6,1],[-12,6],[-5,2]],[[12679,84281],[0,-4],[-14,-11],[-9,-4],[-9,-13],[-4,-5],[-5,-1],[-15,1],[-5,-1],[-11,-11],[4,23],[0,12],[-6,25],[2,9],[6,8],[4,9],[-10,12],[-3,5],[-2,7],[-1,9],[1,8],[3,3],[18,-8],[9,0],[5,12],[-9,2],[-5,3],[-4,5],[-3,7],[0,2],[4,9],[7,10],[7,5],[17,2],[-2,4],[-7,10],[-3,2],[-9,0],[-4,2],[-4,6],[2,6],[-2,14],[1,6],[4,4],[6,0],[3,-5],[-1,-9],[31,-12],[17,-15],[8,-1],[-3,7],[-4,6],[-8,7],[0,4],[4,1],[5,2],[4,4],[4,5],[-10,2],[-23,-7],[-11,5],[-3,4],[-7,17],[-10,17],[0,3],[-4,3],[-4,7],[-1,7],[2,4],[3,-1],[5,-3],[3,-1],[2,1],[5,6],[6,3],[9,8],[10,4],[14,10],[-6,5],[-31,-12],[-15,-12],[-7,0],[-3,7],[-7,24],[-4,5],[-6,4],[-4,11],[-3,14],[-1,12],[-1,18],[-1,6],[-7,15],[-1,3],[-3,20],[0,2],[2,4],[1,7],[2,14],[0,12],[-5,26],[-2,24],[-8,35],[-3,10],[0,4],[3,6],[-4,10],[-5,8],[-5,9],[-1,12],[2,10],[12,13],[3,11],[-1,7],[-1,7],[-1,5],[-1,2],[1,7],[3,4],[2,3],[2,4],[-2,6],[-3,-1],[-6,-7],[-2,-2],[0,-7],[1,-8],[0,-7],[-3,-14],[-4,1],[-9,23],[-4,12],[-2,4],[-6,4],[-5,4],[-4,5],[-3,5],[2,13],[6,9],[1,5],[-8,2],[-5,3],[-4,9],[-2,12],[-5,38],[0,13],[3,12],[3,3],[3,-3],[3,-5],[1,-7],[2,-7],[4,-1],[4,0],[4,-2],[5,-8],[6,-6],[7,-8],[3,-13],[1,-6],[2,-4],[3,-3],[2,-3],[9,-22],[3,-6],[2,-3],[2,-4],[2,-8],[2,-21],[1,-3],[25,1],[12,5],[1,1],[2,1],[21,0],[8,-3],[15,-13],[8,-4],[9,0],[40,12],[2,-3],[3,-7],[2,-8],[0,-6],[-3,-3],[-3,0],[-6,3],[4,-7],[4,-6],[2,-17],[22,-30],[1,-17],[15,-20],[8,-15],[6,-36],[8,-20],[9,-16],[9,-11],[-2,-6],[0,-5],[0,-7],[0,-6],[1,-7],[2,-10],[1,-6],[0,-16],[2,-11],[4,-9],[15,-29],[4,-12],[-4,-6],[-6,4],[-5,9],[-3,12],[-5,12],[-25,30],[-1,7],[-4,7],[-1,6],[0,7],[-1,5],[-2,4],[-1,7],[-3,25],[-4,8],[-12,6],[-6,9],[-4,10],[-3,10],[-5,34],[-3,11],[-5,12],[-6,11],[-14,18],[0,4],[6,-3],[6,-6],[9,-16],[-4,14],[-8,16],[-8,13],[-8,6],[-4,0],[-2,2],[-2,4],[-2,4],[-4,5],[0,-3],[0,-5],[2,-3],[3,-3],[4,-9],[2,-10],[1,-10],[-7,6],[-4,2],[-4,0],[0,-4],[16,-14],[7,-9],[3,-14],[-5,0],[-6,4],[-10,11],[-4,1],[1,-10],[5,-20],[1,-6],[5,-17],[0,-11],[-2,-11],[-2,-10],[-1,-10],[3,-6],[8,18],[12,-10],[42,-85],[3,-7],[-2,-7],[-8,-6],[4,-7],[16,2],[6,-5],[5,-7],[5,-3],[4,-6],[2,-15],[0,-22],[1,-7],[8,-22],[12,-18],[4,-8],[-6,-4],[-3,6],[-2,9],[-3,5],[-3,0],[-1,1],[-2,0],[-3,-1],[1,-2],[0,-6],[-1,-5],[-3,3],[-8,5],[-21,8],[-5,3],[-5,7],[-1,-2],[-2,-6],[5,-6],[3,-2],[3,-1],[0,-4],[-15,0],[9,-9],[15,-2],[10,-5],[-6,-20],[5,-1],[11,7],[6,2],[1,1],[3,3],[3,0],[2,-6],[0,-2],[2,-10],[1,-3],[2,-5],[1,-11],[0,-11],[-3,-5],[-7,-2],[-4,-5],[-6,-15],[-6,-3],[-6,3],[-20,18],[-2,4],[-1,4],[-1,2],[-4,-2],[1,-4],[1,-6],[-1,-6],[-4,0],[-2,2],[-1,9],[-1,5],[-4,6],[-4,7],[-6,6],[-5,1],[9,-22],[3,-13],[-5,-9],[2,-5],[2,-4],[5,5],[4,-3],[8,-14],[-3,-12],[-4,0],[-4,4],[-4,1],[-2,-7],[-3,-22],[-3,-8],[-3,-7],[-4,-4],[-5,-4],[-5,-2],[-2,1],[-3,3],[-3,1],[-2,-3],[-2,-3],[-7,-7],[5,-11],[-4,-4],[-8,0],[-4,-1],[1,-2],[1,-6],[-3,0],[-3,2],[-6,6],[-1,-6],[-1,-5],[-2,-3],[-3,-2],[2,-3],[2,-3],[3,-1],[2,-1]],[[7555,84989],[2,-1]],[[7557,84988],[8,-17],[4,9],[-1,7],[-2,8],[-1,10],[-1,10],[-2,3],[-2,2],[-5,8],[3,-1],[3,0],[3,2],[2,2],[-6,7],[-23,14],[-5,8],[6,3],[13,0],[12,2],[5,13],[2,8],[4,1],[4,-1],[2,-2],[3,-4],[1,-5],[1,-1],[3,4],[2,7],[1,8],[2,7],[4,5],[5,0],[4,-3],[3,-6],[1,-8],[6,6],[7,1],[16,-3],[-2,-8],[-4,-12],[-2,-8],[10,-1],[4,-2],[3,-5],[-4,-8],[-1,-9],[2,-7],[5,-1],[3,4],[1,4],[2,2],[4,-2],[2,-2],[3,-4],[1,-5],[-5,-19],[6,4],[7,9],[-2,6],[2,4],[3,11],[1,12],[-1,9],[4,4],[7,-5],[3,3],[4,5],[3,-1],[7,-6],[0,-3],[-1,-1],[0,-2],[0,-2],[5,-4],[-4,-4],[-1,0],[2,-10],[6,-7],[7,-4],[6,1],[11,19],[3,3],[6,6],[3,-7],[4,-5],[3,-5],[-4,-3],[-11,-38],[-5,-25],[3,-16],[3,2],[3,10],[2,13],[1,11],[3,10],[5,3],[4,-6],[0,-17],[4,6],[6,11],[5,11],[2,10],[1,5],[4,-2],[4,-5],[2,-4],[0,-7],[-1,-6],[-4,-11],[4,-5],[-3,-17],[2,-10],[-5,-8],[-11,-9],[-5,-8],[1,0],[-1,-4],[-1,-4],[-1,-4],[0,-1],[-17,-15],[-3,11],[-19,11],[-6,10],[-4,26],[-4,13],[-4,-6],[-2,3],[-2,1],[-2,-3],[-1,-5],[-5,4],[-3,-5],[-2,-10],[-2,-10],[6,-1],[3,-4],[1,-6],[-4,-5],[-4,1],[-9,9],[-4,-2],[2,-5],[2,-3],[4,0],[3,0],[-1,-9],[1,-5],[6,-6],[7,-10],[3,-2],[-4,-2],[-6,2],[-3,-2],[-5,-12],[-2,-3],[-1,2],[-3,9],[-3,2],[-8,-2],[-3,1],[-4,3],[-9,3],[-9,-5],[-9,-11],[-8,-14],[-2,9],[-1,6],[-1,40],[1,10],[2,8],[-6,-1],[-4,-6],[-1,-9],[-2,-22],[-1,-7],[-2,-8],[-4,-10],[-2,-5],[0,-4],[-1,-4],[-2,-5],[-3,-2],[-7,-1],[-8,-9],[-7,1],[-6,6],[-3,9],[-3,-9],[3,-24],[-3,-13],[-8,-6],[-34,14],[-24,18],[-6,8],[-6,12],[-3,11],[5,5],[-9,3],[-12,-2],[-12,2],[-4,12],[-13,22],[0,8],[12,22],[7,0],[37,-14],[1,-2],[3,-8],[1,-2],[2,2],[1,2],[0,3],[2,1],[6,-2],[12,-9],[6,-1],[0,4],[-28,22],[-2,6],[-4,4],[-4,3],[-8,3],[-4,5],[-7,14],[14,16],[5,4],[7,1],[8,-2],[8,-3],[5,-6],[11,-5],[16,5],[12,0]],[[7599,85125],[1,6],[-1,5],[-3,4],[-3,2],[20,5],[3,4],[3,11],[6,6],[12,6],[3,2],[6,10],[6,4],[5,0],[7,2],[5,3],[6,1],[6,-6],[-1,-4],[0,-5],[1,-4],[1,-3],[-7,-15],[-1,-7],[3,-7],[-26,-29],[-7,-13],[-6,-4],[-7,1],[-28,19],[-4,6]],[[5292,85255],[11,5],[14,1],[7,5],[7,5],[6,5],[5,2],[8,13],[8,3],[2,6],[4,3],[1,-5],[-4,-10],[-6,-16],[-14,-30],[-8,-21],[-6,-15],[-6,-12],[-5,-12],[-2,-13],[-8,-13],[-11,-7],[-8,-5],[-15,5],[-6,0],[-3,-5],[-6,-2],[-3,4],[2,11],[-1,5],[-2,5],[4,7],[-1,6],[0,11],[-9,13],[-8,10],[-9,13],[3,0],[23,-30],[4,22],[1,14],[5,1],[10,9],[9,8],[7,4]],[[7708,85364],[-23,-6],[-8,2],[0,4],[6,2],[4,6],[1,9],[-2,12],[6,0],[10,-7],[5,-1],[27,0],[0,-3],[-1,-2],[-1,-3],[-3,-3],[-7,3],[-3,0],[-3,-3],[-5,-8],[-3,-2]],[[8138,85645],[6,5],[8,1],[7,-4],[5,-11],[-13,-28],[-6,-8],[-6,-4],[-9,-1],[-8,3],[-5,10],[9,14],[6,5],[3,7],[3,11]],[[7354,85606],[-3,4],[-2,1],[-3,3],[0,8],[1,6],[3,6],[4,4],[2,2],[4,2],[7,8],[4,2],[18,0],[12,-18],[0,-7],[-6,-11],[-8,-5],[-26,-8],[-7,3]],[[8240,85681],[8,4],[3,0],[1,-4],[-3,-5],[0,-11],[-3,-5],[-2,0],[-1,3],[-1,4],[-1,2],[-2,-1],[-3,-3],[-1,0],[-7,1],[-2,-2],[-3,-4],[-5,-9],[-3,-3],[-5,1],[6,20],[3,6],[21,6]],[[9905,85993],[9,3],[18,11],[10,3],[-1,-6],[-2,-4],[-3,-2],[-3,-1],[-38,-35],[-7,-3],[-3,-4],[-1,-5],[-3,-5],[-35,-45],[-7,-5],[-7,-3],[14,35],[6,6],[6,4],[19,28],[14,12],[14,16]],[[8887,86030],[4,-1],[0,-3],[-1,-4],[-24,-36],[-9,-7],[-8,-8],[-4,-2],[-24,0],[4,4],[9,2],[4,6],[-2,0],[-4,0],[-2,0],[2,3],[0,2],[1,2],[3,1],[0,4],[-2,0],[-5,1],[-2,-1],[0,4],[5,3],[5,-2],[4,-4],[4,-7],[4,-1],[10,12],[8,5],[13,15],[2,3],[1,4],[2,4],[2,1]],[[8937,86034],[-5,-13],[-6,-13],[-8,-11],[-12,-11],[-12,-8],[-15,-4],[-3,3],[3,10],[8,13],[16,20],[16,23],[4,5],[4,2],[4,1],[5,-2],[3,-6],[-2,-9]],[[8899,86046],[-16,1],[-7,-3],[-4,-10],[3,1],[5,-1],[-17,-21],[-9,-8],[-4,5],[2,11],[6,15],[8,13],[10,8],[8,11],[4,3],[1,3],[7,16],[1,3],[1,2],[2,-7],[2,-9],[0,-4],[10,2],[5,-2],[5,-9],[-4,-7],[-7,-6],[-12,-7]],[[8845,86028],[-3,-3],[-25,-9],[-8,1],[-7,5],[7,6],[19,-2],[8,4],[-6,5],[-24,-1],[0,4],[7,4],[16,4],[7,8],[-20,1],[-7,3],[4,6],[37,26],[6,2],[1,-13],[4,4],[3,6],[3,8],[3,16],[2,5],[3,0],[2,-5],[-3,-10],[-8,-21],[-1,-9],[-1,-11],[-3,-10],[-4,-7],[-5,-3],[-1,-2],[-6,-12]],[[9137,86172],[7,-3],[44,19],[0,-4],[-2,-1],[-1,-2],[-1,-2],[-1,-3],[-8,-20],[-11,-15],[-62,-60],[-27,-37],[-12,-24],[-1,-8],[2,-5],[3,-5],[1,-5],[-3,-11],[-17,3],[-7,-6],[-9,-12],[-1,-2],[-1,-2],[4,-6],[6,-8],[1,-12],[-4,-11],[-7,-9],[-8,-5],[-22,8],[-12,-3],[-7,-25],[-4,-2],[-10,2],[-23,-10],[-11,-10],[-6,-2],[-5,0],[-10,6],[0,4],[5,6],[1,14],[2,14],[8,7],[9,1],[9,4],[8,7],[8,8],[-7,3],[-8,2],[-4,5],[7,14],[8,6],[15,5],[8,5],[-2,6],[-2,4],[-6,6],[6,7],[41,29],[6,7],[25,24],[12,17],[-2,14],[4,5],[9,5],[3,4],[7,24],[2,3],[3,-1],[6,-3],[3,0],[2,1],[5,5],[8,4],[1,5],[-2,11],[0,3],[-1,4],[0,3],[-1,0],[1,5],[1,2],[1,1],[1,4],[1,2],[2,2],[2,3],[1,5],[-1,3],[-6,4],[-1,2],[4,12],[9,8],[11,4],[8,-4],[-5,-7],[-2,-4],[-2,-6],[31,0],[-5,-10],[-22,-26]],[[8895,86225],[-1,-5],[-7,-13],[0,-6],[-2,-16],[-1,-5],[-7,-8],[-9,-1],[-8,5],[-7,8],[-2,-4],[3,21],[14,20],[17,11],[10,-7]],[[9674,86229],[15,16],[7,4],[0,-8],[-1,-8],[-5,-11],[-1,-9],[0,-18],[-1,-8],[-4,-3],[-2,1],[-5,6],[-5,1],[-6,-3],[-3,-1],[-6,2],[-8,10],[-6,0],[0,5],[31,24]],[[9392,86241],[26,5],[4,-5],[-1,0],[-2,-1],[-1,-2],[-1,-1],[-24,-7],[-1,-1],[-1,-3],[-1,-4],[0,-4],[0,-2],[-8,-5],[-8,-1],[-14,3],[-8,-2],[-45,-29],[-17,-25],[-6,-6],[-6,-3],[-6,2],[-8,5],[-6,8],[-3,9],[7,12],[46,32],[-4,6],[-17,-4],[-7,3],[4,4],[-6,0],[-5,-3],[-9,-9],[10,0],[-12,-9],[-12,9],[-6,18],[7,22],[10,4],[1,3],[1,4],[2,6],[3,8],[6,8],[7,3],[16,1],[0,-4],[-2,-2],[0,-2],[-1,-2],[-1,-2],[28,0],[6,2],[6,3],[6,1],[7,-2],[-2,-11],[0,-16],[-2,-10],[12,1],[24,12],[24,4],[6,-1],[3,-6],[-3,-2],[-12,-8],[-4,-4]],[[8952,86245],[-4,1],[-10,-7],[-5,-2],[8,30],[5,15],[6,8],[0,-19],[-1,-7],[-3,-6],[16,6],[5,7],[-3,13],[0,10],[4,9],[5,-2],[2,-19],[7,5],[3,2],[3,-1],[2,-4],[0,-5],[-2,-4],[-2,-2],[0,-4],[3,-1],[5,-7],[-4,-6],[-2,-2],[-7,-1],[-14,-12],[-7,-3],[6,-7],[6,0],[6,5],[6,2],[7,-4],[-2,-8],[-8,-17],[-9,-26],[-13,-26],[0,-5],[8,0],[-3,-17],[-5,-17],[-7,-11],[-9,-3],[0,11],[-4,1],[-5,-2],[-3,4],[13,27],[-1,4],[-7,-8],[-8,-2],[-8,1],[-8,5],[2,8],[2,5],[8,7],[-3,3],[-6,5],[-3,4],[11,0],[13,4],[12,9],[6,16],[-7,-2],[-14,-5],[-8,-2],[-3,1],[0,3],[1,3],[2,4],[4,1],[8,-2],[4,2],[-11,11],[-4,7],[3,3],[8,0],[5,2],[4,5],[4,9]],[[7814,86290],[-3,-5],[-3,-11],[-2,-5],[-3,-4],[-3,-1],[-3,-1],[-4,-2],[-5,-6],[-4,-11],[-1,-11],[4,-8],[-20,-15],[-6,-2],[-4,2],[-3,2],[-1,3],[1,1],[13,3],[3,2],[2,4],[0,6],[-1,5],[1,5],[2,3],[6,7],[2,4],[1,8],[3,7],[1,8],[-4,12],[8,14],[3,2],[6,0],[4,-1],[6,-3],[5,-5],[3,-7],[-4,0]],[[9512,86375],[2,-5],[-6,-6],[-2,-1],[5,-4],[3,0],[-2,-5],[-2,-4],[-3,-2],[-3,-2],[-24,-21],[-12,-5],[-13,-10],[-15,-6],[-13,-12],[-10,-5],[-54,-15],[-11,6],[4,17],[3,10],[6,4],[46,1],[7,4],[-1,2],[-6,6],[24,11],[24,6],[0,4],[-3,1],[-1,2],[-2,5],[31,4],[14,7],[14,13]],[[9028,86391],[3,3],[11,5],[0,7],[-2,4],[-3,2],[-3,-1],[3,5],[10,8],[3,-3],[2,-3],[2,-3],[6,-14],[3,-5],[2,1],[4,5],[3,3],[4,2],[4,1],[-4,-16],[-4,-7],[-5,-1],[-8,3],[-4,0],[-13,-7],[-8,-1],[5,7],[1,4],[2,5],[-7,-1],[-7,-3]],[[8909,86428],[1,8],[1,6],[3,2],[8,-8],[4,-7],[4,-8],[1,-7],[-3,-4],[-18,-2],[0,-2],[0,-4],[-1,-4],[-2,-3],[-2,1],[-7,9],[-13,27],[5,4],[5,-4],[4,-5],[4,-3],[-5,13],[-1,8],[3,3],[3,-2],[2,-5],[1,-7],[3,-6]],[[8842,86395],[-7,11],[-8,15],[-2,14],[9,9],[-4,6],[-1,2],[16,3],[5,-3],[4,-5],[4,-7],[0,-8],[-5,-4],[0,-4],[6,-1],[2,-8],[0,-10],[-2,-10],[-5,-7],[-4,-1],[-4,3],[-4,5]],[[8865,86476],[-8,-1],[-4,2],[-2,7],[0,8],[1,6],[1,6],[0,7],[5,11],[8,9],[3,7],[-10,7],[0,4],[5,0],[16,5],[18,-15],[7,-12],[0,-14],[6,-14],[2,-8],[-1,-7],[-4,-4],[-3,4],[-4,5],[-3,4],[-12,-19],[-4,-3],[-17,5]],[[4905,88136],[0,-3],[-1,-2],[-1,-2],[-2,-1],[0,-1],[-1,-2],[-1,-1],[-1,0],[5,-13],[0,-3],[-3,-5],[-4,2],[-3,5],[-1,2],[-30,-8],[-33,0],[-3,1],[-6,6],[-8,2],[-11,7],[11,21],[3,3],[9,4],[3,0],[3,-2],[3,-3],[2,-2],[4,3],[-1,7],[7,1],[21,-5],[6,2],[5,3],[2,6],[2,1],[5,-1],[10,-5],[-2,-5],[11,-12]],[[4671,91694],[4,28],[5,12],[4,3],[2,-1],[-6,-8],[-4,-17],[-2,-21],[1,-15],[-1,-9],[-1,-48],[-2,17],[-1,17],[-1,4],[2,38]],[[10716,91760],[4,-4],[3,-5],[3,-7],[-7,6],[-17,9],[-31,27],[-17,5],[-19,11],[-14,4],[-10,6],[-16,3],[-11,6],[24,-2],[78,-36],[30,-23]],[[4707,91809],[7,17],[8,13],[44,47],[-10,-20],[-37,-41],[-9,-18],[-14,-41],[-10,-18],[21,61]],[[4805,91938],[7,13],[10,13],[11,10],[11,5],[1,-1],[-13,-12],[-20,-24],[-6,-17],[-11,-13],[-19,-18],[22,30],[7,14]],[[4865,92027],[49,41],[41,17],[-51,-30],[-40,-39],[-6,-8],[-8,-16],[-6,-5],[16,33],[5,7]],[[5125,92118],[-80,10],[-21,-2],[-18,-16],[2,5],[8,11],[15,8],[94,-16]],[[8661,92203],[-1,-1],[-25,12],[-10,-1],[-8,-4],[-10,3],[-50,31],[-17,5],[-16,-1],[3,2],[7,3],[11,0],[68,-35],[6,0],[8,4],[5,1],[8,-3],[21,-16]],[[27292,65024],[2,-2],[1,-2],[1,-3],[0,-5],[-1,1],[-1,2],[-1,2],[-1,3],[0,-1],[0,-2],[-1,3],[-1,-4],[-1,-4],[-3,-3],[-4,-3],[-9,-2],[2,9],[2,2],[3,-2],[3,-1],[2,2],[6,10],[1,0]],[[27304,65037],[2,-4],[4,0],[7,4],[1,-3],[1,-10],[-21,-12],[1,2],[3,6],[0,4],[-1,3],[-1,3],[1,3],[1,4],[2,0]],[[27359,65061],[0,-4],[-7,-10],[-9,-8],[-20,-11],[0,4],[5,9],[4,3],[2,-3],[6,5],[2,3],[1,2],[1,1],[2,5],[-4,5],[-2,3],[-2,4],[8,-5],[4,-4],[2,-7],[1,0],[2,8],[-1,6],[-3,3],[-5,-1],[0,4],[1,4],[0,2],[-2,1],[-3,1],[2,12],[2,0],[0,-3],[1,0],[1,-1],[2,-6],[9,-22]],[[27475,65089],[-1,9],[-3,3],[-9,1],[6,5],[15,9],[6,2],[-1,-4],[0,-2],[-7,-5],[-2,-4],[-2,-6],[-2,-8]],[[27380,65130],[1,-2],[1,-1],[2,-1],[8,-12],[9,-25],[4,-23],[-6,-9],[0,17],[-19,56]],[[27521,65138],[-1,-2],[-1,-1],[-4,-1],[-4,-7],[-20,-17],[21,28],[9,4],[0,-4]],[[27555,65182],[0,-5],[0,-4],[0,-1],[2,3],[2,0],[0,-3],[-1,-2],[-1,-3],[-2,-5],[-5,-2],[-10,-1],[3,6],[12,17]],[[27688,65422],[-9,-25],[-3,-15],[1,-9],[0,-4],[-22,-43],[-3,-3],[-4,2],[-1,-7],[-3,-13],[-2,-7],[-9,-14],[-10,-26],[-6,-12],[-6,-1],[-1,7],[3,3],[4,2],[3,3],[3,20],[2,4],[4,1],[2,3],[4,12],[7,14],[2,7],[-1,8],[6,2],[3,3],[2,7],[-1,4],[0,2],[1,0],[2,-2],[1,7],[-1,6],[-4,2],[-4,-3],[2,11],[13,-6],[5,26],[10,22],[3,12],[-1,9],[-2,4],[-2,3],[-1,6],[2,4],[9,4],[3,5],[8,21],[5,6],[6,-5],[-1,-3],[-1,-2],[-1,-2],[-1,-1],[-2,-4],[-2,-7],[-2,-7],[0,-5],[-1,-6],[-9,-20]],[[27725,65560],[-1,-13],[-3,-13],[-4,-13],[-4,-7],[0,1],[-1,0],[-1,0],[4,6],[3,10],[4,34],[1,3],[2,2],[1,-3],[-1,-4],[0,-3]],[[27732,65673],[-3,1],[-2,5],[0,6],[3,5],[-1,1],[0,1],[-1,1],[-1,1],[0,4],[2,2],[1,3],[1,3],[1,4],[2,0],[0,-33],[-2,-4]],[[27186,66140],[9,-4],[6,1],[2,7],[11,-12],[-5,-2],[-7,-11],[-5,-3],[-4,1],[-17,19],[-3,5],[-2,7],[-2,9],[-3,18],[-1,18],[2,-3],[2,-5],[1,-6],[1,-6],[2,-13],[3,-9],[5,-6],[5,-5]],[[27150,66283],[1,0],[1,-1],[2,-3],[0,-14],[4,-22],[1,-14],[-3,14],[-3,12],[-3,28]],[[27184,66213],[1,15],[-4,18],[-5,19],[-3,18],[3,0],[6,-4],[5,-11],[3,-13],[-2,-21],[3,-14],[4,-12],[2,-9],[2,-30],[0,-11],[-3,3],[-4,12],[-4,29],[-4,11]],[[27146,66343],[3,-14],[1,-13],[0,-12],[-2,-13],[-2,12],[-1,29],[-3,11],[2,4],[1,0],[1,-4]],[[23000,66031],[5,-27],[1,-15],[2,-15],[2,-29],[0,-10],[-1,-7],[-3,10],[-3,18],[-7,85],[-4,26],[-3,16],[-3,16],[-3,45],[-2,14],[-7,23],[-2,12],[-4,34],[-1,5],[-3,10],[-3,13],[-3,25],[-4,14],[2,5],[-1,3],[-2,4],[0,4],[-1,5],[1,2],[3,2],[0,2],[0,3],[-1,5],[-1,2],[-1,5],[-8,23],[3,21],[0,20],[-2,56],[-3,22],[0,12],[2,22],[0,11],[-2,11],[2,12],[2,28],[4,9],[-2,-12],[2,-152],[9,-104],[29,-184],[0,-7],[2,-7],[2,-13],[3,-35],[3,-25],[1,-13]],[[27039,66694],[-2,5],[-3,10],[-1,8],[4,-5],[3,-4],[7,-24],[10,-23],[1,-9],[-5,7],[-11,26],[-3,9]],[[23034,66942],[3,15],[4,2],[2,-5],[-3,-6],[-34,-102],[-23,-93],[-17,-82],[-7,-49],[-1,-23],[-4,-7],[-6,0],[-3,3],[2,10],[5,61],[9,36],[5,28],[3,13],[3,17],[5,20],[3,15],[4,16],[3,18],[1,5],[-2,7],[-1,9],[6,-5],[3,-4],[2,-7],[2,0],[15,64],[8,17],[12,21],[1,6]],[[27670,66885],[-1,5],[-5,17],[-8,44],[-4,13],[1,2],[1,1],[2,2],[0,-3],[1,-2],[0,-2],[1,-2],[2,-24],[6,-24],[11,-37],[4,-22],[1,-13],[1,-12],[1,-9],[47,-243],[1,-14],[-4,17],[-5,13],[-3,23],[-17,71],[-1,8],[-1,3],[-4,6],[-1,4],[0,7],[-4,19],[-11,89],[-3,10],[-2,8],[-2,8],[-1,18],[-3,12],[0,7]],[[23089,67129],[3,3],[4,-3],[2,-6],[1,-5],[-1,-5],[0,-14],[-1,-5],[-25,-52],[-11,-33],[-10,-22],[-4,-11],[-1,-12],[-3,11],[4,18],[10,28],[8,17],[2,4],[1,6],[0,4],[-5,3],[0,3],[16,52],[4,2],[2,4],[2,6],[2,7]],[[27601,67159],[-1,7],[0,7],[-3,11],[5,-20],[1,-5],[-2,0]],[[23214,67285],[3,1],[2,1],[1,-1],[1,-5],[0,-16],[0,-5],[-1,-4],[-2,-7],[-1,-3],[-20,-18],[-9,-5],[-9,-11],[-15,-24],[-26,-26],[-7,-15],[-15,-20],[-8,-14],[-3,-9],[-2,-10],[-2,0],[1,10],[2,11],[3,10],[3,6],[0,4],[-2,6],[-1,11],[2,11],[4,4],[6,2],[9,5],[4,1],[4,3],[10,12],[3,4],[2,10],[12,12],[3,6],[2,3],[13,11],[5,11],[4,4],[6,2],[11,-2],[3,3],[3,11],[1,5],[-1,12],[1,3]],[[23230,67293],[0,4],[16,26],[11,12],[12,7],[0,-4],[-3,-1],[-1,-1],[-1,-1],[1,-2],[-3,-2],[-6,-9],[-2,-5],[-7,-4],[-7,-13],[-4,-6],[-6,-1]],[[27589,67395],[6,8],[4,3],[4,0],[4,-17],[-1,-19],[-9,-37],[-2,-22],[-2,-73],[-1,-10],[-1,-6],[1,-7],[2,-12],[3,-9],[0,-9],[-4,16],[-10,57],[-4,13],[-1,11],[-3,47],[-2,10],[-1,19],[2,16],[6,0],[2,10],[1,4],[6,7]],[[24738,67680],[11,-2],[6,-4],[-9,0],[-8,6]],[[24903,67678],[8,12],[2,3],[3,1],[2,1],[3,0],[0,-5],[-18,-12]],[[25010,67804],[2,0],[-2,-4],[2,-4],[-6,-7],[-9,-9],[-4,-8],[-2,0],[2,13],[6,6],[7,5],[4,8]],[[23662,67853],[25,-12],[-46,-64],[-15,-18],[-36,-48],[-9,-15],[-2,1],[3,13],[6,14],[13,16],[19,27],[7,9],[4,8],[2,8],[1,3],[12,17],[2,10],[1,3],[6,3],[1,0],[3,4],[1,8],[0,7],[-5,2],[0,4],[1,0],[1,1],[0,1],[0,2],[1,0],[1,0],[0,-3],[3,-1]],[[25231,67942],[1,1],[1,-1],[0,-2],[0,-1],[-2,-9],[-4,-6],[-6,-2],[-5,0],[9,6],[4,6],[2,8]],[[24499,67934],[-10,-4],[-16,20],[-3,3],[-3,5],[-28,23],[-5,8],[0,8],[7,10],[5,3],[6,1],[6,4],[2,3],[3,7],[1,2],[3,1],[16,-7],[4,-5],[7,-13],[9,-7],[0,-1],[8,-4],[7,-1],[4,-2],[2,-4],[-3,-9],[-10,-11],[-4,-6],[-1,-10],[0,-8],[-1,-4],[-2,-2],[-4,0]],[[26349,68023],[-2,3],[-2,4],[-2,6],[-2,4],[-3,3],[-6,4],[-2,5],[11,-3],[5,0],[4,7],[7,-2],[4,-3],[3,0],[1,-1],[0,-6],[-1,-3],[-2,-5],[-2,-5],[0,-6],[-2,-6],[-3,0],[-6,4]],[[26462,68080],[3,2],[6,11],[3,4],[0,-5],[-2,-1],[-2,-4],[0,-3],[-6,-4],[-17,-24],[-27,-22],[-6,-10],[-17,-18],[-6,-3],[-16,0],[-6,3],[-7,9],[4,-2],[8,-8],[6,1],[12,5],[59,53],[1,3],[0,2],[1,2],[3,1],[2,2],[1,2],[1,3],[2,1]],[[25151,68113],[4,-4],[2,-8],[0,-8],[2,-9],[-4,3],[-2,6],[-1,5],[-2,3],[-2,-3],[-3,-14],[-4,-4],[-1,25],[1,9],[4,7],[4,-4],[1,-2],[1,-2]],[[25193,68121],[3,1],[3,2],[2,1],[0,-4],[-4,-20],[-13,21],[0,3],[9,-4]],[[26495,68121],[7,8],[2,2],[2,-2],[-2,-11],[-7,-7],[-15,-6],[2,5],[11,11]],[[25212,68206],[-1,-5],[0,-3],[1,-2],[-1,-2],[-4,0],[-6,-2],[-3,-1],[-2,-2],[-1,2],[5,8],[5,4],[7,3]],[[25202,68225],[-2,-9],[-5,-14],[-2,-6],[-5,-9],[-2,-1],[3,6],[3,7],[1,5],[3,10],[4,12],[2,-1]],[[25313,68271],[6,-7],[3,-13],[2,-14],[4,-11],[2,-40],[-3,-49],[-2,-13],[-7,-25],[0,4],[0,3],[0,3],[-1,4],[8,30],[1,11],[1,31],[-1,9],[2,4],[-4,16],[-1,9],[1,7],[-2,4],[-2,22],[-3,9],[-4,6]],[[25157,68322],[2,2],[0,-3],[-1,-6],[-3,2],[2,5]],[[25225,68283],[0,-9],[-1,-9],[-2,-4],[-4,2],[-2,-7],[-2,1],[-4,10],[-1,3],[-1,4],[-1,4],[-2,1],[-2,-1],[-1,-3],[-1,-3],[0,-1],[-2,0],[-2,2],[0,2],[-1,0],[-2,-1],[-2,-3],[-1,-3],[0,-1],[-6,-2],[-2,2],[-1,8],[3,1],[4,2],[3,3],[1,4],[2,1],[3,0],[3,3],[-2,11],[4,2],[4,4],[7,10],[5,12],[4,6],[4,2],[0,-4],[-3,-4],[-4,-5],[-8,-15],[-4,-11],[4,-6],[5,-4],[-1,-8],[1,-5],[1,-3],[2,3],[1,2],[2,3],[1,4],[1,0]],[[25294,68365],[4,0],[-5,-2],[-7,-2],[1,2],[7,2]],[[25416,68364],[0,5],[21,-5],[-2,-4],[-10,1],[-9,3]],[[25261,68389],[1,-3],[-2,-2],[-1,-2],[1,-6],[-1,-6],[-5,-18],[-1,1],[-1,0],[-1,1],[-1,2],[1,2],[2,4],[1,2],[-2,5],[-2,-5],[-2,7],[-4,2],[-9,-1],[0,4],[14,-1],[7,4],[4,10],[1,0]],[[25377,68379],[6,-6],[17,0],[6,-4],[-2,-2],[-3,-3],[-56,17],[0,3],[7,4],[9,1],[10,-3],[6,-7]],[[25536,68384],[-4,-2],[-2,-1],[-61,-5],[4,5],[25,8],[16,0],[4,1],[2,3],[3,4],[2,3],[11,-11],[0,-5]],[[25918,68478],[10,4],[11,-2],[27,-6],[-2,-3],[-3,-1],[-3,1],[-3,3],[-95,-23],[-94,-22],[-15,4],[5,3],[22,1],[33,10],[16,11],[19,0],[7,4],[3,2],[7,5],[5,1],[12,-1],[30,8],[6,5],[2,-4]],[[27367,68713],[0,16],[0,5],[-1,5],[-3,11],[0,4],[3,18],[14,20],[2,19],[2,0],[0,-12],[-1,-15],[-2,-19],[-1,-18],[-3,-21],[-4,-16],[0,-9],[2,-18],[-1,-12],[-3,-5],[-2,2],[-2,45]],[[17122,69911],[3,-6],[-4,-1],[-6,5],[-4,-3],[-1,-4],[-2,-2],[-4,-4],[-1,0],[-3,8],[-3,1],[-7,12],[-4,4],[-3,3],[-2,9],[0,7],[-3,5],[-4,11],[-1,1],[-3,8],[0,11],[-1,4],[-2,5],[-5,9],[-1,12],[-2,9],[-2,6],[-4,0],[0,10],[4,3],[1,-4],[4,2],[3,-5],[0,-3],[1,-8],[3,-2],[2,-10],[8,-16],[3,-10],[6,-12],[4,-4],[5,-10],[12,-20],[7,-9],[6,-12]],[[27961,70048],[-1,-8],[-5,-24],[-2,0],[0,11],[1,11],[3,9],[4,5],[1,-1],[0,-1],[0,-1],[-1,-1]],[[16809,70171],[1,-2],[6,-4],[5,-9],[3,-6],[0,-5],[-2,-2],[-2,0],[-3,-2],[-3,0],[-1,-1],[-4,2],[-1,0],[-1,-1],[-2,3],[-4,0],[-2,4],[-6,2],[-6,9],[0,3],[-2,4],[0,4],[-2,6],[1,2],[4,-4],[3,5],[2,0],[3,3],[6,-6],[4,-6],[3,1]],[[17079,70263],[-2,3],[-2,1],[-2,0],[-2,2],[-2,0],[-2,0],[-2,2],[-2,1],[0,2],[0,3],[-2,1],[-1,3],[-2,4],[-1,4],[-2,3],[-1,3],[2,0],[3,-1],[2,1],[3,-1],[2,-1],[4,1],[2,1],[1,0],[2,-4],[1,-2],[2,-4],[3,-3],[2,-2],[0,-2],[1,-3],[1,-1],[1,1],[1,1],[1,2],[2,0],[1,-4],[1,1],[1,-2],[2,-3],[2,-1],[1,-2],[3,0],[1,-1],[1,0],[2,0],[7,-7],[2,1],[2,-4],[1,0],[1,0],[1,-1],[1,-2],[0,-4],[-1,-2],[1,-4],[1,0],[2,-7],[4,-6],[3,-5],[1,-6],[0,-2],[1,-1],[2,0],[2,-4],[2,-10],[-1,0],[-1,-3],[2,-3],[-3,-2],[0,-3],[-4,-1],[-5,4],[-3,4],[-2,1],[-3,3],[-6,0],[-4,0],[-3,-2],[-6,2],[-6,2],[-2,6],[-3,8],[-2,7],[1,6],[0,2],[2,5],[1,1],[-1,3],[-2,9],[0,2],[0,2],[0,4],[-1,2],[-2,1],[-2,1],[-2,1],[-1,-1]],[[28341,70540],[2,2],[6,14],[-6,-36],[-2,-5],[-3,3],[-4,3],[-4,4],[-2,6],[2,10],[4,4],[5,0],[2,-5]],[[16654,70627],[1,-5],[-2,-8],[0,-7],[4,-8],[7,-6],[8,2],[0,-14],[3,-4],[0,-7],[-8,0],[-6,-4],[-8,-12],[-6,-1],[-3,-3],[-6,0],[-2,-4],[0,-4],[-4,1],[-3,4],[-5,6],[-6,6],[-3,9],[-1,4],[-3,5],[-3,12],[-2,2],[-2,7],[-3,2],[-4,6],[4,4],[5,1],[5,-3],[4,2],[4,-1],[3,5],[4,5],[3,1],[11,-4],[6,4],[4,7],[4,0]],[[16571,70632],[2,2],[2,-1],[3,-4],[2,-4],[1,-4],[0,-5],[-6,0],[-6,0],[-3,-2],[-3,1],[-3,4],[-3,1],[-3,4],[-3,0],[-2,-4],[-4,2],[-2,1],[-1,3],[3,2],[6,9],[3,-2],[3,2],[4,4],[3,6],[0,3],[2,-3],[1,-4],[1,-3],[-2,-4],[2,-3],[3,-1]],[[16797,70620],[-3,-3],[-1,-4],[-1,-6],[-3,-5],[-6,-1],[-2,-3],[-10,-1],[-6,0],[-3,0],[-3,-2],[-2,-3],[-2,-1],[-1,-2],[-4,-3],[-2,0],[-2,-4],[-2,-1],[-6,2],[-3,0],[-2,-3],[-3,1],[-5,0],[-3,2],[-5,-2],[-2,4],[-4,2],[-3,-1],[-4,6],[-3,1],[-2,7],[0,6],[-1,4],[3,9],[0,5],[-3,4],[-3,6],[-4,4],[-2,1],[-1,-2],[-2,1],[-1,3],[3,4],[0,3],[1,4],[4,-3],[5,0],[8,-2],[6,-4],[3,-5],[5,-2],[5,2],[3,0],[5,0],[2,-2],[3,0],[2,-4],[1,2],[6,-4],[2,-5],[3,-3],[2,-5],[2,0],[3,-2],[3,1],[6,-3],[5,4],[2,5],[0,6],[6,6],[3,1],[3,3],[9,-9],[3,-4],[-2,-5]],[[28368,70657],[3,15],[2,17],[3,15],[7,6],[0,-3],[-1,0],[-1,-1],[-5,-28],[-4,-14],[-4,-7]],[[28491,70901],[5,2],[11,12],[6,2],[0,-3],[-1,0],[-1,-1],[-7,-11],[-23,-21],[-9,-4],[-4,-3],[-29,-45],[-4,-9],[5,19],[10,18],[36,42],[5,2]],[[28732,71002],[2,-4],[4,-6],[1,-7],[-4,-3],[-1,2],[-10,14],[-14,9],[-3,3],[0,4],[5,0],[20,-12]],[[28639,71018],[46,12],[14,-7],[0,-5],[-33,5],[-7,-2],[-76,-31],[5,9],[8,6],[43,13]],[[28817,71146],[2,5],[5,6],[5,5],[3,2],[-5,-16],[-8,-8],[-14,-27],[-6,-5],[-5,-6],[-15,-31],[-35,-101],[-3,-16],[-2,11],[4,18],[32,92],[29,53],[12,14],[1,4]],[[28867,71240],[1,1],[4,-1],[6,-6],[-1,-3],[-1,0],[-1,-1],[-1,0],[-20,-26],[-5,-11],[-1,0],[2,6],[9,16],[2,9],[1,3],[2,3],[2,4],[1,6]],[[28891,71270],[7,-3],[7,5],[15,18],[24,16],[8,8],[-1,-4],[-2,-3],[-4,-4],[-6,-9],[-25,-16],[-30,-36],[3,6],[2,7],[2,15]],[[29034,71609],[1,-12],[5,-31],[1,-24],[-5,-46],[-6,-100],[-7,-45],[-3,-9],[-5,-7],[-2,0],[-9,0],[-11,-8],[-6,-2],[-10,-9],[-5,-2],[-1,-1],[-4,-5],[-2,-1],[-3,1],[1,4],[2,4],[3,3],[2,0],[1,3],[1,2],[1,3],[1,2],[0,3],[1,2],[1,1],[1,-1],[0,-2],[1,-1],[1,0],[17,16],[20,12],[7,11],[0,18],[1,7],[4,29],[1,22],[3,22],[0,13],[0,6],[-1,12],[0,7],[1,6],[3,13],[1,7],[0,14],[-2,24],[-7,44],[0,11],[-5,20],[-2,12],[3,3],[5,-8],[3,-14],[2,-16],[1,-13]],[[28968,71745],[-2,3],[-2,3],[0,3],[2,3],[2,1],[3,-1],[2,-2],[2,-2],[4,-3],[2,-2],[2,-3],[0,-6],[4,-9],[9,-22],[-2,-10],[0,-7],[-1,-2],[-5,-1],[-5,4],[-2,10],[-1,11],[-2,9],[-8,16],[-2,7]],[[28984,72655],[-1,-11],[-7,-17],[-9,-27],[-2,3],[5,15],[6,22],[2,11],[2,5],[4,-1]],[[28994,72720],[2,4],[4,-2],[-1,-7],[-11,-31],[-5,-16],[-3,-4],[-1,5],[3,11],[6,18],[2,14],[4,8]],[[28887,72990],[5,-5],[2,-15],[-3,-12],[-1,-17],[-3,3],[-1,7],[-3,0],[1,-7],[-1,-3],[0,-4],[1,-5],[-2,-1],[-1,-8],[-1,0],[0,9],[0,7],[1,6],[-2,2],[-1,-2],[-2,-1],[0,9],[0,9],[-2,8],[2,3],[4,1],[5,-5],[3,5],[-3,6],[-7,6],[-1,5],[4,3],[3,3],[2,-2],[1,-5]],[[28879,73062],[-8,6],[-6,1],[2,13],[4,7],[4,4],[4,-7],[3,-6],[-2,-8],[1,-7],[-2,-3]],[[29124,73096],[11,44],[4,13],[2,0],[-3,-17],[-10,-33],[-9,-41],[-5,-35],[-11,-25],[-2,-5],[-22,-71],[-3,-16],[-5,-10],[-2,-5],[-4,-2],[-4,-5],[-4,6],[-2,5],[3,3],[6,-5],[3,2],[2,9],[-4,4],[-3,1],[2,7],[5,2],[3,2],[3,4],[1,6],[2,5],[4,19],[2,7],[5,13],[7,14],[1,4],[6,19],[8,20],[1,6],[2,17],[3,15],[7,23]],[[29344,73831],[-2,10],[4,3],[14,-3],[-1,-3],[-2,-2],[-1,-1],[-4,-17],[-8,-14],[-9,-8],[-9,3],[-6,16],[4,3],[3,-5],[2,-7],[4,-3],[4,4],[4,18],[3,6]],[[29407,73989],[4,14],[3,7],[3,4],[-2,-16],[-7,-17],[-5,-21],[-10,-29],[-13,-37],[-7,-19],[0,5],[0,3],[0,7],[4,17],[23,65],[7,17]],[[29651,74537],[-18,-3],[-19,-10],[-52,-25],[3,9],[34,17],[12,6],[6,3],[6,3],[5,3],[6,1],[13,2],[6,-1],[-2,-5]],[[29409,74533],[5,3],[3,3],[4,4],[2,-1],[1,-2],[0,-4],[-1,-2],[1,-7],[3,-5],[2,-7],[-13,-28],[-9,-13],[-2,1],[-2,0],[-4,-4],[-5,-5],[-3,-5],[-5,-1],[-5,-4],[-4,-2],[-3,1],[0,4],[1,3],[3,2],[0,7],[-1,7],[2,5],[4,3],[4,4],[1,6],[1,9],[1,16],[1,9],[2,6],[4,3],[4,-3],[8,-3]],[[29755,74593],[13,8],[15,11],[6,2],[0,-6],[-13,-5],[-7,-6],[-23,-17],[-22,-14],[-13,-9],[-30,-17],[-27,-12],[-15,-1],[-2,4],[14,0],[10,6],[12,7],[20,9],[18,9],[7,5],[18,15],[10,5],[9,6]],[[30022,74789],[-3,8],[8,4],[7,-6],[5,-2],[-2,-6],[-5,-10],[-13,-4],[-22,-18],[-22,-14],[-20,-17],[-16,-13],[-27,-22],[-16,-12],[-9,-8],[-10,-4],[-5,-2],[3,9],[0,7],[-3,4],[-7,1],[-3,-2],[-1,-5],[0,-6],[2,-6],[0,-5],[-3,-5],[-11,-11],[-17,-11],[-28,-15],[-5,-3],[-3,-1],[-1,3],[1,2],[2,0],[13,8],[8,4],[-4,1],[-4,1],[-6,-1],[-7,5],[-5,-7],[-6,-8],[-10,0],[-7,4],[4,-5],[-2,-8],[-4,-5],[-5,-6],[-7,-2],[-3,12],[-6,-5],[-5,-1],[-5,-8],[-18,4],[-3,-1],[-3,-10],[-6,-1],[-8,-3],[-5,-2],[-4,4],[-4,2],[-3,-3],[-1,-6],[0,-6],[-4,-3],[-6,3],[-9,0],[-6,5],[-4,-4],[-4,-7],[-3,-5],[-12,-2],[-15,-12],[-9,-3],[-28,-8],[-16,-4],[-18,-14],[-5,-6],[-2,-2],[-4,2],[3,3],[0,5],[-4,5],[-7,-3],[-5,-6],[1,-9],[28,-1],[9,0],[-2,-6],[-35,-1],[-12,2],[-4,2],[-13,-3],[-23,-17],[-12,-8],[0,8],[25,15],[17,12],[3,6],[2,5],[0,2],[-3,4],[-5,5],[-5,5],[-4,1],[-6,-3],[-4,-2],[-3,-2],[-1,-3],[-3,-4],[0,-6],[3,-8],[1,-11],[-4,-3],[-1,4],[-4,0],[-4,0],[-2,-4],[-3,-1],[-13,-4],[-4,1],[-2,5],[3,3],[1,3],[-2,5],[-7,5],[-3,8],[1,12],[4,6],[3,9],[-1,8],[4,7],[1,3],[2,3],[3,3],[3,2],[2,9],[1,11],[8,18],[6,9],[6,-5],[4,2],[3,-4],[10,12],[13,-3],[6,-12],[2,12],[-4,11],[2,13],[4,1],[3,-6],[2,-7],[2,-4],[4,3],[1,7],[-1,7],[-9,6],[1,6],[3,7],[4,1],[9,-6],[2,-11],[3,-9],[2,4],[-2,22],[6,19],[19,9],[12,2],[3,-8],[-1,-3],[-4,-5],[-3,2],[-3,-2],[4,-7],[7,-1],[0,5],[1,4],[4,0],[0,-7],[4,-2],[2,3],[-1,5],[2,1],[0,5],[-5,10],[-2,5],[2,11],[7,-5],[8,-2],[-3,-11],[3,-4],[3,-5],[4,3],[5,1],[5,-4],[3,0],[1,9],[-1,6],[-5,0],[-6,0],[-3,9],[1,4],[1,4],[2,0],[4,-4],[2,-6],[6,-3],[7,-1],[9,-3],[9,-7],[5,-2],[3,-1],[3,0],[12,7],[6,6],[3,9],[-2,10],[5,4],[6,3],[4,-3],[-1,-12],[4,0],[2,2],[1,4],[-2,6],[3,2],[7,-5],[11,2],[31,-2],[19,3],[14,-2],[23,9],[19,2],[6,4],[18,20],[20,19],[5,11],[2,6],[9,3],[8,11],[7,13],[4,6],[15,12],[4,1],[4,-1],[4,-3],[2,-6],[-2,-6],[-4,-6],[-4,-5],[-4,-2],[-4,11],[-11,-11],[-19,-29],[-1,-6],[5,-2],[2,-3],[2,-1],[-2,-8],[-6,2],[-5,-3],[-2,-2],[0,-6],[1,-6],[0,-8],[-1,-5],[-2,4],[-3,8],[-3,0],[-2,-8],[-6,-1],[-1,0],[-3,-2],[-3,0],[-4,-6],[-2,-5],[0,-6],[-6,-8],[-4,-6],[-6,-2],[-4,-1],[-3,-12],[3,1],[3,-1],[3,-1],[2,-4],[6,8],[6,-2],[5,-4],[6,-3],[6,0],[7,7],[2,6],[1,7],[1,7],[3,2],[6,2],[6,13],[6,13],[7,3],[4,0],[2,4],[-4,15],[3,3],[5,0],[1,-9],[1,-9],[8,-2],[2,8],[4,1],[1,7],[1,5],[2,4],[5,-3],[8,-18],[1,11],[1,11],[3,6],[4,-1],[9,-22],[1,-6],[2,-4],[6,2],[11,8],[10,14],[6,5],[4,-4],[5,2],[0,14],[4,2],[3,-5],[4,-4],[0,4]],[[30122,74870],[-2,-5],[2,-6],[2,-4],[2,-8],[-1,-6],[-6,-2],[-8,-2],[-4,5],[0,8],[2,7],[3,5],[1,5],[3,4],[0,7],[1,6],[1,2],[2,-2],[4,-6],[-2,-8]],[[30000,74900],[-7,1],[-4,-3],[1,7],[2,4],[2,5],[3,0],[2,-5],[1,4],[1,5],[5,1],[7,1],[3,4],[6,-1],[-2,-6],[-5,-3],[-7,-1],[-5,-9],[-3,-4]],[[30540,74983],[1,2],[3,-1],[3,-5],[3,-9],[4,-17],[8,-24],[5,-15],[-3,-16],[-9,-6],[-12,3],[-15,-1],[-11,3],[-27,22],[-6,5],[-6,9],[2,2],[4,-1],[4,-5],[7,-2],[16,-3],[10,2],[5,-1],[2,-3],[2,0],[2,2],[3,5],[7,4],[5,6],[3,7],[1,9],[-5,-3],[-7,-14],[-5,-3],[9,23],[2,13],[-5,12]],[[30416,74984],[4,5],[5,10],[4,6],[2,-10],[1,-18],[-1,-9],[-2,-5],[-3,1],[-4,5],[-4,8],[-2,7]],[[30395,75004],[4,-6],[4,-2],[9,-1],[2,-30],[-5,-2],[-39,-1],[-8,-3],[-8,-6],[-6,-7],[-8,-15],[-3,0],[-5,5],[-3,4],[-5,12],[-4,4],[0,4],[18,0],[8,11],[3,7],[8,21],[3,5],[4,3],[8,14],[15,10],[4,-1],[-3,-14],[4,3],[2,7],[3,5],[4,-3],[3,-9],[0,-5],[-3,-5],[-6,-5]],[[30178,75081],[0,-13],[-1,-13],[-1,-11],[-2,-8],[-1,-3],[-2,-5],[-3,-3],[-1,-1],[-1,4],[2,13],[-1,7],[2,2],[0,2],[1,2],[1,3],[-3,5],[0,10],[5,21],[2,-1],[2,-3],[1,-3],[0,-5]],[[30563,75138],[2,-2],[1,-2],[0,-4],[1,-5],[-5,-12],[-7,-35],[-6,-1],[12,45],[2,16]],[[30198,75095],[2,7],[1,16],[2,7],[3,5],[7,7],[3,5],[0,-12],[-3,-21],[0,-44],[-1,-7],[-1,-6],[0,-5],[2,-7],[-9,4],[-6,-8],[-5,-9],[-5,1],[-4,-6],[-3,-2],[-2,2],[-1,8],[2,3],[9,7],[3,4],[-4,8],[-1,6],[1,7],[3,6],[1,3],[0,4],[0,9],[1,2],[4,4],[1,2]],[[15563,78003],[0,-4],[2,-3],[5,-10],[0,-9],[1,-18],[-6,-7],[-3,20],[-6,8],[2,12],[0,9],[3,5],[2,-3]],[[15990,78556],[4,-10],[4,-5],[5,-4],[6,-6],[-2,0],[-12,-8],[-9,-13],[-5,-7],[-2,8],[0,8],[2,6],[4,2],[3,3],[1,6],[-2,5],[-5,-2],[2,-4],[-5,-4],[-3,-2],[-1,-4],[0,-12],[-1,-5],[-1,-5],[-2,-3],[-2,0],[-2,4],[-3,5],[-1,6],[1,6],[2,4],[1,4],[2,45],[2,7],[4,9],[5,7],[4,3],[-1,-8],[1,-4],[2,-3],[2,-5],[1,-6],[0,-12],[1,-6]],[[15973,78663],[0,-3],[1,-4],[1,-3],[3,-2],[-3,-3],[-3,-6],[-6,2],[-6,12],[-4,2],[-4,-1],[-2,3],[3,10],[0,7],[-2,5],[-1,6],[0,8],[0,4],[5,10],[1,6],[0,6],[0,4],[3,2],[3,-1],[3,-3],[2,-4],[2,-4],[1,-19],[2,-9],[3,-4],[-2,-5],[-2,-2],[-2,-2],[3,-4],[0,-5],[1,-3]],[[15908,78953],[3,4],[3,0],[2,-3],[4,-15],[3,-14],[1,-15],[-2,-10],[-6,1],[-4,9],[-4,11],[-2,8],[-1,11],[1,5],[2,0],[2,-4],[1,-13],[1,-3],[4,0],[0,9],[-3,12],[-5,7]],[[16011,78882],[3,-9],[1,-6],[-1,-3],[-2,-2],[-5,-14],[-1,-3],[-1,-4],[-1,-1],[-2,0],[-1,3],[0,4],[-1,1],[-6,-4],[-4,-1],[-2,3],[0,13],[-2,13],[-3,11],[-4,5],[-4,-1],[-5,-8],[-3,-3],[-3,1],[-3,2],[-2,5],[-4,4],[-5,11],[-4,12],[0,10],[-4,11],[-2,8],[4,33],[-2,14],[-4,6],[-6,-1],[-7,-7],[-7,18],[-1,2],[-3,2],[-4,3],[-4,4],[-2,4],[-3,14],[1,12],[23,67],[4,13],[7,0],[4,3],[3,5],[2,2],[3,-7],[1,-4],[0,-2],[1,-2],[0,-12],[18,-20],[-1,-17],[-4,-6],[-4,-1],[-4,2],[-4,7],[-5,6],[-4,-5],[-3,-10],[-2,-9],[-4,13],[-2,-5],[0,-10],[-1,-8],[-4,-5],[-16,-5],[4,-7],[4,-1],[8,4],[4,-1],[6,-6],[4,-1],[6,-4],[4,-10],[2,-14],[4,-26],[1,-33],[2,-29],[3,-7],[4,4],[3,14],[-3,13],[-1,13],[3,7],[6,-7],[4,-8],[5,-7],[22,-23],[4,-9],[2,-14]],[[15872,79186],[0,-10],[3,-7],[4,-1],[4,8],[3,-9],[1,-9],[-2,-9],[-4,-6],[-17,4],[2,10],[-5,4],[-6,2],[-4,4],[-2,11],[2,10],[3,8],[4,4],[-2,6],[0,6],[1,5],[1,3],[7,10],[2,1],[5,-15],[0,-11],[0,-19]],[[15918,79243],[4,-8],[2,-2],[-2,-3],[-2,-4],[0,-6],[-2,-2],[-2,-1],[-3,0],[-3,4],[-4,17],[1,8],[2,6],[3,3],[4,-3],[2,-5],[0,-4]],[[15828,79192],[0,-2],[5,-14],[3,-3],[2,-2],[5,-4],[0,-4],[-4,3],[-3,0],[-3,-2],[-4,-1],[-4,2],[-3,3],[-1,4],[-3,4],[-3,3],[-1,1],[-6,0],[-3,0],[-4,3],[-4,3],[-3,4],[-2,5],[-2,5],[-3,18],[-2,18],[0,3],[-1,12],[5,9],[8,3],[8,-6],[2,-7],[5,-8],[5,-7],[9,-6],[6,-14],[7,-4],[0,-4],[-4,-7],[-2,-2],[-3,1],[-1,0],[-1,-7]],[[15904,79289],[-2,-5],[-1,-3],[-12,-12],[-2,-4],[0,-4],[-1,-3],[-3,-1],[-3,2],[-3,5],[-7,17],[-3,16],[-1,6],[-1,5],[-3,2],[-3,-1],[-1,-6],[1,-6],[0,-4],[0,-3],[-1,-5],[14,-33],[-4,-4],[-4,-3],[-8,0],[-4,2],[-3,6],[-1,7],[-1,5],[-5,7],[-3,2],[-2,-3],[0,-8],[-1,-9],[-2,-4],[-4,5],[-3,7],[-1,5],[0,6],[1,3],[7,11],[2,2],[3,2],[14,25],[3,1],[6,1],[11,-2],[31,-27]],[[15938,79292],[2,-6],[1,-6],[-2,-1],[-4,3],[-6,8],[-2,3],[-5,11],[-6,11],[-4,5],[-1,5],[1,9],[5,-3],[7,-18],[3,-4],[4,-4],[4,-4],[1,-4],[2,-5]],[[3863,82438],[1,-2],[3,-4],[-3,-5],[-6,-4],[-12,0],[-4,1],[-6,4],[-2,10],[2,5],[3,0],[6,2],[12,-2],[6,-5]],[[5688,82918],[2,-3],[1,-5],[-1,-5],[-3,-6],[-6,-3],[-6,0],[-5,3],[-2,4],[1,6],[0,6],[-2,6],[-1,5],[-1,4],[2,5],[4,2],[4,-1],[3,-4],[4,-5],[5,-7],[1,-2]],[[5185,83155],[1,-2],[0,-4],[0,-7],[-3,-4],[-5,0],[-3,1],[-15,12],[-4,7],[0,5],[3,5],[4,3],[11,0],[5,2],[4,-2],[1,-3],[-1,-4],[1,-5],[1,-4]],[[5122,83192],[3,-1],[2,-7],[-4,-15],[-2,-4],[-3,-1],[-5,0],[-12,-8],[-3,1],[-5,2],[-3,1],[-4,7],[2,11],[7,7],[13,2],[14,5]],[[5545,83235],[1,-2],[1,-6],[-3,-4],[-9,1],[-6,4],[-4,6],[0,5],[3,4],[4,2],[5,1],[1,-2],[1,-2],[2,-3],[4,-4]],[[5746,83522],[4,-11],[3,-8],[0,-7],[-4,-5],[-4,5],[-3,6],[-4,4],[-5,1],[0,7],[8,9],[5,-1]],[[6478,83657],[0,-1],[0,-2],[0,-2],[-1,-4],[0,-3],[1,-1],[-1,-3],[-3,-2],[-4,3],[-3,5],[-4,2],[-4,5],[1,4],[3,-1],[2,1],[2,2],[2,4],[1,6],[2,3],[3,-4],[3,-8],[0,-3],[0,-1]],[[6450,83746],[4,-7],[0,-6],[-3,-9],[-4,0],[-4,7],[-1,9],[0,6],[0,5],[2,2],[0,2],[1,4],[1,5],[4,4],[1,-2],[-1,-3],[-1,-6],[0,-6],[1,-5]],[[6163,83837],[2,-4],[0,-5],[-2,-3],[-2,-3],[-4,-3],[-4,4],[-5,6],[-5,2],[-4,3],[1,5],[11,9],[8,0],[4,-3],[0,-2],[0,-3],[0,-3]],[[7268,84523],[1,-10],[1,-20],[-4,-9],[-7,10],[-4,14],[-1,11],[-1,8],[2,4],[2,4],[0,7],[2,6],[6,-2],[4,-9],[0,-9],[-1,-5]],[[7682,84773],[2,-1],[3,-4],[-1,-5],[-7,-8],[-1,-3],[-3,-1],[-3,2],[-5,4],[-24,11],[-6,6],[4,9],[2,5],[-1,1],[0,2],[0,1],[-1,1],[-1,0],[1,2],[2,1],[3,-1],[3,-1],[9,6],[2,-3],[0,-7],[2,-5],[0,-3],[-2,-3],[2,-2],[8,-2],[7,0],[2,-1],[3,-1]],[[7571,84809],[4,-1],[0,-5],[-3,-3],[0,-4],[0,-7],[-2,-7],[-5,-5],[-6,-3],[-6,2],[-5,5],[-7,4],[-2,6],[2,8],[5,4],[22,4],[3,2]],[[7557,84988],[0,1],[-2,0]],[[7555,84989],[-3,1],[-10,7],[-15,3],[-5,5],[-3,8],[2,5],[5,3],[5,-1],[6,-3],[2,-1],[4,2],[1,-1],[0,-1],[0,-1],[-1,1],[1,-1],[4,-2],[1,-1],[1,-4],[2,-3],[4,1],[1,-3],[2,-8],[1,-6],[-3,-1]],[[5484,85220],[3,-4],[1,-5],[-3,-7],[-4,-8],[-2,-1],[1,9],[-2,8],[-4,4],[-6,7],[0,4],[0,5],[2,4],[2,2],[-3,4],[3,8],[6,-6],[1,-9],[-1,-8],[1,-7],[5,0]],[[5449,85251],[0,-3],[1,-3],[-1,-6],[-3,-7],[-3,-6],[-3,-4],[-3,-1],[-2,3],[0,3],[3,20],[2,8],[3,8],[4,-8],[2,-4]],[[8275,86697],[7,1],[2,-8],[-5,-12],[-9,-8],[-10,-2],[-4,2],[5,4],[4,7],[4,10],[2,5],[4,1]],[[4281,87817],[3,0],[4,-5],[-1,-5],[-5,-3],[-4,1],[-4,2],[1,5],[4,5],[2,0]],[[238,80836],[3,5],[4,3],[8,4],[2,-6],[3,-14],[3,-5],[0,-4],[-7,-3],[-5,-9],[-4,-7],[-5,7],[2,10],[-2,7],[-2,6],[0,6]],[[282,80900],[3,7],[5,0],[11,-11],[3,-14],[-2,-5],[-6,-1],[-4,-2],[-7,-16],[-4,-3],[-1,11],[0,5],[4,11],[-1,6],[-2,8],[1,4]],[[337,81164],[11,-7],[2,-20],[-6,-19],[-13,-3],[-4,5],[-6,10],[-4,10],[0,4],[4,6],[3,12],[6,8],[7,-6]],[[1038,81152],[-2,-2],[-1,-2],[-1,-4],[0,-5],[4,-3],[1,0],[0,-4],[-4,0],[-3,-4],[-2,-7],[0,-9],[-2,0],[-2,6],[-3,-1],[-4,-12],[-3,-3],[-3,9],[-2,-4],[-3,2],[-4,0],[-3,3],[-2,10],[-2,38],[2,-1],[3,-2],[1,-1],[-2,6],[-7,15],[8,7],[13,4],[12,-1],[7,-7],[-4,-8],[-6,-2],[-6,0],[-5,-2],[0,-4],[2,0],[5,0],[2,0],[-1,-9],[-1,-3],[8,7],[4,1],[6,-4],[0,-4]],[[1108,81164],[-2,-4],[5,-7],[3,-1],[-2,-4],[-8,12],[-2,4],[-5,-3],[-4,0],[-9,3],[-2,-2],[0,-5],[3,-13],[-4,2],[-4,4],[-2,6],[-2,8],[-3,-7],[-1,-8],[1,-8],[2,-9],[-2,0],[-1,2],[-2,7],[-1,3],[0,2],[0,5],[0,1],[-1,1],[-3,0],[-5,5],[-4,0],[-3,3],[-1,11],[6,-1],[1,4],[-3,11],[1,8],[4,4],[5,-1],[3,-5],[7,-5],[2,-3],[0,-2],[3,-8],[2,-5],[1,5],[4,7],[9,-2],[9,-7],[5,-8]],[[1114,81196],[1,2],[3,6],[1,1],[2,-6],[2,-8],[0,-9],[0,-5],[-6,0],[-36,19],[4,6],[6,6],[5,4],[9,1],[3,0],[3,-1],[3,-3],[-3,-1],[-5,-3],[0,-4],[8,-5]],[[611,81144],[1,-6],[1,-4],[3,-2],[3,0],[-7,-10],[-3,-8],[0,-10],[0,-15],[-1,-5],[-7,-11],[-3,-3],[-4,2],[-6,7],[-1,-7],[-2,-4],[-3,-2],[-3,1],[2,-4],[-2,-8],[1,-9],[4,-16],[-3,-3],[-3,-1],[-4,1],[-3,3],[-1,4],[-2,12],[-1,4],[-4,5],[-11,1],[-5,7],[-4,4],[-10,-2],[-6,2],[3,15],[3,5],[14,0],[3,2],[5,5],[8,2],[3,3],[2,5],[1,8],[-1,13],[-5,9],[-7,4],[-13,3],[-5,5],[-9,14],[-26,19],[-7,12],[10,18],[8,5],[55,6],[6,-3],[0,-4],[10,-14],[3,-3],[0,-4],[-3,-6],[13,-9],[2,-9],[36,0],[17,7],[7,5],[-1,-14],[-6,-7],[-7,-3],[-7,0],[-8,-2],[-13,-10],[-7,0]],[[799,81225],[7,-1],[7,-5],[5,-8],[2,-10],[-4,-3],[-1,-3],[0,-5],[0,-4],[-2,-5],[-14,-9],[-4,-12],[2,-23],[-3,-13],[4,-9],[-1,-10],[-7,-18],[-10,6],[-3,2],[0,-4],[0,-3],[0,-2],[0,-3],[-6,2],[-7,-5],[-8,-5],[-8,8],[-2,-3],[-1,-1],[-3,4],[0,1],[-3,7],[-5,7],[-4,3],[-4,2],[-14,-1],[-5,-1],[-4,-4],[-4,-6],[-4,-2],[-10,2],[-18,-2],[-9,-7],[-3,-13],[-2,-9],[-3,-1],[-3,4],[-2,6],[0,5],[-1,5],[-3,4],[-3,4],[0,4],[4,3],[8,11],[4,2],[5,-1],[11,-6],[5,-1],[13,0],[1,2],[0,4],[1,5],[2,2],[9,0],[1,1],[1,3],[1,2],[3,2],[19,4],[26,12],[21,22],[4,30],[1,5],[1,13],[1,7],[-1,10],[6,4],[14,-2]],[[1188,81249],[4,0],[8,-4],[5,0],[0,-4],[-12,-4],[-1,-2],[-2,-7],[-3,-3],[-4,1],[-3,3],[2,5],[6,15]],[[990,81139],[1,-6],[1,-5],[1,-5],[3,-3],[-4,-8],[-7,-7],[-5,-6],[-5,20],[-9,-7],[-18,-33],[-2,6],[-2,4],[-3,1],[-3,-3],[2,-4],[-4,-1],[-3,-3],[-3,-3],[-2,-2],[-3,2],[-4,3],[-3,1],[-4,-1],[-3,-10],[-1,-7],[1,-3],[3,-3],[1,-5],[0,-7],[-1,-6],[-12,12],[-5,-10],[-4,-4],[-4,-2],[-4,3],[-3,6],[0,5],[5,2],[0,5],[-4,8],[-2,9],[0,10],[2,13],[-2,4],[-19,-49],[-2,-6],[-2,-8],[-2,-7],[-2,-3],[-7,-3],[-5,1],[-3,4],[1,28],[3,13],[17,18],[4,6],[2,6],[1,7],[-1,9],[6,1],[2,-1],[-1,3],[-1,2],[11,8],[0,4],[-6,-1],[-7,-3],[-6,-1],[-5,5],[-2,10],[3,9],[5,7],[6,2],[3,-3],[2,-7],[4,-7],[6,-4],[23,-3],[6,3],[-4,5],[-10,6],[-4,4],[-3,10],[1,8],[3,6],[5,2],[12,2],[-15,14],[-5,15],[-1,16],[1,5],[5,5],[5,3],[5,1],[11,0],[7,-4],[3,-1],[3,3],[3,11],[1,3],[5,4],[6,2],[6,-1],[4,-5],[-2,-4],[-1,-8],[-1,-7],[2,-6],[4,-3],[-3,-11],[-4,-3],[-4,0],[-6,-2],[-3,-6],[-2,-8],[-2,-8],[-4,-3],[0,-4],[15,0],[-2,-4],[-1,-4],[0,-3],[1,-5],[7,6],[5,-3],[6,-4],[7,-3],[0,4],[-2,0],[2,5],[4,3],[7,5],[7,-6],[3,-4],[1,-5],[-2,-7],[1,-6],[1,-6],[-3,-4]],[[1148,81257],[5,1],[4,3],[4,0],[4,-4],[-20,-11],[-9,-1],[-11,4],[3,8],[5,2],[6,-2],[5,-4],[0,3],[1,2],[0,1],[1,2],[2,-4]],[[1073,81261],[-5,1],[-3,2],[-1,4],[-6,20],[-1,7],[0,5],[2,5],[3,13],[2,5],[7,5],[11,2],[10,-1],[6,-6],[12,-18],[2,-5],[0,-8],[0,-8],[3,-4],[6,6],[-3,-8],[-15,-6],[-5,-11],[5,1],[2,-3],[0,-5],[-2,-7],[-4,-4],[-4,2],[-6,8],[-12,7],[-4,1]],[[1910,81329],[3,-4],[3,-2],[41,-5],[-5,-3],[-12,-2],[-5,-5],[-5,-3],[-14,4],[-10,-9],[-7,-2],[-7,2],[-7,7],[-4,2],[-3,1],[-1,-2],[-1,-6],[-3,0],[-5,4],[-9,-4],[-19,-14],[-11,-2],[-9,5],[-4,-1],[-3,-3],[-3,-8],[-2,-1],[-3,0],[-4,6],[-2,2],[-4,-1],[-3,-1],[-3,-1],[-4,3],[4,5],[-3,3],[-31,0],[1,4],[1,4],[-4,4],[-7,-9],[-10,-4],[-24,-2],[-14,7],[-10,2],[-2,4],[2,10],[-2,3],[-7,1],[-3,2],[-4,5],[-3,2],[-2,0],[-5,-1],[-2,1],[-3,2],[-4,7],[-3,3],[0,2],[1,2],[0,2],[1,2],[2,-4],[6,-2],[4,-2],[14,-1],[5,1],[11,7],[4,1],[-2,-9],[0,-3],[-2,-4],[4,1],[8,6],[3,1],[2,-3],[10,-18],[4,15],[7,7],[9,2],[9,0],[4,2],[7,8],[4,3],[4,-1],[4,-2],[3,0],[4,3],[5,-5],[7,2],[5,-1],[-4,-16],[4,4],[3,-6],[3,-2],[22,0],[2,3],[2,1],[2,-2],[0,-2],[1,-3],[2,-1],[8,2],[2,-2],[2,-9],[7,6],[7,5],[8,2],[7,0],[0,-1],[1,-3],[1,-3],[2,-1],[2,0],[3,3],[2,1],[15,0],[4,3],[3,1],[2,-2]],[[2109,81493],[7,-10],[13,-6],[9,-8],[-2,-17],[-4,-4],[-17,-8],[-7,-10],[-4,-1],[-4,7],[-11,-14],[-14,-9],[-15,-1],[-14,8],[10,30],[5,14],[6,8],[17,13],[16,16],[1,-3],[2,-2],[6,-3]],[[1652,81407],[-10,-8],[-26,2],[-6,-10],[3,-7],[3,-6],[8,-11],[10,-12],[5,-7],[2,-7],[-2,-9],[-4,-1],[-9,10],[-3,0],[-2,-2],[-2,-3],[-2,-1],[-3,0],[-6,4],[-3,0],[2,-5],[0,-5],[0,-6],[0,-5],[-4,3],[-12,2],[-2,2],[-6,7],[-1,3],[-5,3],[-4,-2],[-5,-3],[-5,-2],[-11,1],[-5,-2],[-1,-7],[4,2],[4,2],[9,0],[0,-4],[-5,-3],[-2,-24],[-4,-6],[-6,1],[-3,4],[-1,7],[-4,12],[-3,-8],[-5,1],[-5,8],[-4,8],[0,-10],[7,-17],[2,-10],[-4,7],[-5,6],[-5,2],[-5,-3],[2,-2],[3,-4],[1,-2],[0,-4],[-3,1],[-6,3],[-3,0],[-3,-1],[-6,-6],[-4,-1],[-6,2],[-12,11],[-4,-1],[2,-4],[1,-4],[-2,-3],[-3,-1],[4,-5],[-4,-2],[-11,-1],[-2,1],[-6,5],[-29,10],[-3,-2],[-6,-5],[-2,-1],[-11,1],[-5,-2],[-4,-5],[-10,-9],[-80,2],[-5,5],[9,7],[27,5],[14,8],[6,0],[4,-1],[4,-2],[1,-3],[-4,-6],[5,1],[8,6],[4,1],[5,-2],[4,-4],[2,-1],[3,7],[-4,3],[-1,4],[1,7],[1,5],[3,0],[3,-2],[1,-1],[1,-2],[2,-3],[3,-2],[1,5],[1,8],[3,1],[5,-3],[2,6],[4,11],[3,6],[1,-8],[2,-8],[11,10],[4,-9],[5,5],[4,0],[4,-4],[2,-9],[9,11],[3,5],[0,9],[6,4],[7,-8],[13,-4],[14,0],[8,4],[-6,2],[-1,4],[2,5],[5,5],[5,0],[7,-1],[5,1],[3,8],[-8,-1],[-3,2],[-4,3],[2,4],[-1,2],[-1,1],[-2,5],[31,0],[7,-5],[3,0],[1,7],[-1,4],[-4,4],[-6,6],[0,4],[17,0],[7,-5],[6,-11],[3,10],[4,7],[5,3],[4,-4],[2,4],[1,7],[1,4],[3,1],[6,2],[2,3],[0,11],[-4,4],[-11,1],[-5,5],[-2,5],[-2,6],[-3,4],[-5,4],[-3,-3],[0,-7],[2,-10],[-8,1],[-11,6],[-7,8],[2,9],[18,1],[9,7],[-3,17],[4,3],[3,-1],[3,-3],[4,1],[3,4],[1,10],[11,5],[15,12],[8,1],[4,-6],[6,-5],[6,-3],[5,2],[4,-10],[5,-8],[5,-5],[7,-1],[0,-10],[3,-8],[2,-9],[-2,-12],[-2,-3],[-3,-3],[-2,-3],[-3,-1],[-3,-3],[-1,-6],[0,-6],[-1,-6]],[[2429,81578],[9,-11],[4,-7],[-1,-8],[-1,-5],[-1,-4],[-1,-4],[-15,-5],[-10,6],[0,14],[5,15],[11,9]],[[2610,81672],[3,-1],[3,-2],[2,-2],[3,-4],[-1,-6],[1,-4],[-1,-3],[-8,-23],[-7,-10],[-7,-4],[-7,1],[-8,5],[-14,-14],[-5,-7],[-5,-9],[-3,-4],[-3,1],[-6,9],[-2,-5],[-2,21],[7,19],[18,25],[2,5],[0,4],[1,3],[3,1],[5,0],[3,1],[3,3],[3,6],[4,2],[6,-1],[7,-3],[5,-4]],[[2749,81728],[5,-2],[5,-5],[3,-6],[-4,-7],[1,-2],[0,-2],[1,-4],[-18,-4],[-18,0],[4,23],[2,5],[-2,3],[-1,1],[-1,0],[5,5],[6,0],[6,-1],[6,-4]],[[2865,81781],[0,-3],[0,-2],[1,-1],[1,-2],[-1,-4],[-3,-12],[4,-4],[-4,-6],[-4,-5],[-2,-6],[2,-8],[-4,-5],[-4,3],[-7,10],[-6,5],[-23,10],[-3,-1],[-11,-12],[-2,-1],[-5,-1],[-4,-3],[-2,-1],[-2,2],[-2,5],[-6,5],[-3,9],[0,8],[10,11],[3,1],[11,-4],[7,0],[3,2],[5,12],[5,4],[13,0],[6,6],[4,-4],[4,0],[3,1],[4,-1],[4,-4],[2,-3],[2,-2],[4,1]],[[2758,81809],[16,-8],[5,0],[-4,-14],[-6,-10],[-7,-5],[-9,5],[-4,4],[-4,5],[-2,5],[0,6],[2,7],[4,3],[5,2],[4,0]],[[2863,81878],[3,-1],[3,-5],[1,-7],[0,-7],[-5,-7],[-4,-13],[-5,-10],[-8,-3],[1,8],[-5,6],[1,8],[2,9],[-1,16],[6,5],[6,2],[5,-1]],[[3373,82090],[2,-5],[-7,-8],[-17,-14],[-8,-2],[-6,-3],[-42,-39],[-10,-5],[-14,-3],[-9,-6],[-4,-1],[-5,-3],[-6,-14],[-5,-3],[1,-6],[1,-2],[-5,-7],[-3,-10],[-2,-7],[-6,3],[1,-15],[-4,-9],[-6,-7],[-6,-9],[-9,-24],[-7,-9],[-7,5],[-4,-9],[-15,-3],[-6,-7],[-6,-8],[-12,-13],[-4,-9],[1,-3],[1,-2],[-20,0],[-7,-2],[-1,-5],[2,-7],[5,-5],[-3,-8],[-4,0],[-5,5],[-3,7],[-3,-9],[-4,0],[-4,1],[-4,-3],[-7,-11],[-4,-5],[-9,-3],[-15,-11],[-10,-3],[-5,-4],[2,-5],[0,-4],[-21,-8],[4,6],[5,2],[5,2],[3,10],[-1,1],[0,1],[-1,2],[16,4],[5,4],[3,10],[0,19],[5,8],[6,2],[5,-2],[6,0],[5,8],[3,10],[0,21],[3,9],[6,-3],[6,7],[10,23],[1,8],[-7,20],[-1,14],[2,8],[4,11],[4,10],[9,7],[8,15],[4,2],[13,13],[2,5],[2,9],[5,1],[10,-8],[5,-5],[3,-2],[4,-1],[2,2],[5,8],[5,3],[3,2],[2,2],[3,-1],[2,-3],[2,-9],[2,-4],[8,6],[7,2],[5,6],[3,18],[-3,-3],[-3,1],[-1,4],[1,7],[-4,3],[-9,2],[-4,3],[0,4],[4,3],[3,6],[3,8],[1,7],[-1,11],[-2,4],[-1,4],[3,10],[7,20],[2,4],[4,4],[10,4],[12,19],[10,10],[10,6],[20,4],[6,3],[3,5],[5,2],[13,-2],[6,6],[13,-19],[7,-7],[10,-3],[17,2],[9,-3],[3,-11],[-3,-14],[-13,-18],[-5,-12],[3,-3],[2,-5],[1,-6],[-2,-6]],[[3851,82353],[3,2],[3,3],[2,1],[5,-2],[-3,-6],[-1,-2],[-3,0],[-2,-3],[-1,-3],[-1,-6],[3,-5],[0,-5],[-1,-6],[-2,-4],[-4,-2],[-9,2],[-4,0],[4,-11],[1,-6],[-1,-6],[-2,-2],[-12,-4],[1,-3],[3,-9],[-6,6],[-11,15],[-5,4],[-2,6],[0,13],[2,8],[7,-7],[0,8],[1,4],[3,2],[2,4],[2,1],[0,-6],[-1,-13],[2,0],[6,23],[4,9],[5,-4],[3,7],[2,1],[3,-3],[4,-1]],[[3807,82288],[5,-2],[0,-6],[0,-8],[1,-8],[-5,-4],[-11,-4],[-21,-1],[-5,-3],[4,-7],[2,-1],[-7,-1],[-6,-5],[-6,-3],[-6,5],[-15,-12],[-4,-5],[4,-2],[3,-3],[3,-6],[1,-9],[-8,10],[-7,-4],[-5,-15],[-1,-19],[-3,11],[-16,25],[0,-9],[6,-19],[2,-10],[-3,-3],[-18,13],[1,-8],[3,-4],[5,-2],[3,-4],[4,-10],[-1,-7],[-4,-2],[-7,10],[-3,2],[-6,0],[-1,2],[-2,8],[-1,3],[-7,11],[-7,13],[-4,-8],[3,-7],[5,-22],[8,-17],[2,-7],[-2,-10],[-4,-1],[-8,7],[-1,2],[-1,3],[-1,1],[-3,-2],[0,-2],[-2,-11],[-1,-3],[-11,21],[-3,3],[-4,-3],[-3,-17],[-4,-4],[-4,3],[-1,6],[-1,5],[-4,-2],[-2,-6],[-1,-7],[-1,-6],[-5,-1],[0,2],[2,10],[-8,3],[-17,-15],[-9,-5],[-5,0],[-5,-2],[-21,-16],[-8,-3],[-9,-6],[-5,-1],[-2,-3],[-4,-16],[-2,-5],[-20,8],[-4,-2],[-9,-9],[-5,-1],[1,-6],[0,-3],[-4,-3],[-3,-5],[-6,-12],[-1,-3],[0,-4],[-1,-2],[-5,7],[-3,2],[-6,0],[-9,3],[-4,0],[-4,-5],[-2,-4],[0,-1],[-1,-2],[-10,-11],[-2,12],[-7,5],[-15,3],[-8,3],[-6,5],[-2,3],[0,3],[-1,2],[-6,1],[-1,0],[-2,1],[-1,2],[37,43],[4,2],[9,0],[4,-1],[4,-5],[1,2],[12,0],[1,2],[-2,7],[8,2],[15,-9],[8,-2],[-3,4],[-5,13],[0,3],[3,1],[1,2],[2,3],[5,7],[5,0],[5,-2],[9,-7],[5,0],[-2,3],[-1,4],[-1,2],[7,-1],[10,-8],[6,-1],[-4,18],[6,-3],[3,2],[0,6],[0,9],[3,3],[18,-9],[4,1],[12,5],[3,4],[-1,3],[-1,9],[0,-2],[-2,9],[-1,4],[-2,3],[4,1],[17,-5],[18,2],[18,6],[5,5],[-6,5],[-6,-1],[-13,-4],[-13,1],[-6,4],[-7,7],[1,1],[1,2],[1,2],[1,3],[-7,6],[-2,13],[2,12],[6,5],[11,-2],[3,-1],[3,-4],[3,-10],[4,-3],[-1,2],[0,1],[-1,0],[0,1],[2,4],[-2,10],[5,0],[12,-6],[-4,11],[-10,10],[-5,8],[-1,9],[4,8],[6,5],[23,7],[8,0],[6,-7],[7,-18],[2,-10],[0,-15],[2,0],[1,6],[1,4],[2,7],[3,-4],[8,-13],[-7,35],[0,10],[11,-9],[6,-1],[6,6],[-4,-1],[-3,1],[-2,2],[-3,2],[5,4],[13,0],[5,4],[-8,3],[-21,2],[-21,15],[-4,1],[-11,8],[-8,2],[-6,-4],[-6,-4],[-8,-3],[-18,29],[1,1],[1,4],[1,4],[-1,3],[-1,1],[-5,-1],[-3,0],[-4,-1],[-2,1],[-1,3],[-1,8],[-1,3],[0,6],[3,3],[4,1],[2,2],[1,4],[6,19],[5,8],[10,13],[5,9],[3,2],[11,-4],[3,2],[9,10],[6,3],[6,1],[6,-2],[5,-6],[7,9],[14,12],[7,8],[4,-7],[-1,-6],[-2,-6],[2,-6],[4,0],[3,6],[3,8],[3,6],[8,3],[10,-5],[8,-11],[4,-15],[-6,-3],[-4,-3],[-1,-4],[-1,-3],[-1,-6],[0,-3],[1,-4],[1,-4],[1,-2],[1,0],[-4,-18],[1,-3],[4,2],[3,4],[3,2],[4,-3],[-7,-21],[-1,-8],[7,5],[27,36],[4,-1],[4,-8],[1,7],[5,18],[0,1],[0,8],[0,3],[4,2],[2,2],[2,16],[2,5],[9,11],[3,-9],[-3,-11],[-1,-10],[7,-6],[6,3],[7,8],[7,5],[4,-4],[2,-10],[1,-8],[-1,-8],[-3,-6],[3,0],[4,3],[6,9],[0,-9],[-2,-8],[-2,-6],[-4,-6],[-5,-6],[-5,-3],[-5,-1],[-6,2],[-1,3],[-1,4],[-2,3],[-2,-3],[-1,-4],[-1,-11],[-1,-4],[-5,-5],[-11,-3],[-5,-4],[4,-9],[2,-3],[-4,-3],[-27,-10],[-6,1],[7,-6],[3,-1],[4,-1],[0,-4],[-8,-3],[-5,-8],[-10,-22],[4,1],[3,-3],[0,-6],[-1,-8],[4,5],[5,15],[2,4],[4,-3],[3,-16],[4,1],[0,3],[1,4],[0,9],[0,6],[1,2],[2,2],[1,2],[5,6],[5,2],[4,-2],[1,-8],[2,0],[3,-3],[1,-4],[1,-5],[2,8],[1,14],[2,9],[4,6],[3,-1],[3,-4],[2,-8],[1,-8],[-2,-6],[1,-4],[6,-2]],[[4093,82503],[1,-3],[2,-5],[2,-5],[0,-7],[-4,4],[-3,1],[-2,-1],[-1,-2],[-3,-8],[0,-2],[-4,3],[-5,11],[-3,2],[-14,0],[-10,4],[-12,-2],[-5,2],[30,8],[31,0]],[[3961,82523],[19,3],[4,-3],[-2,-4],[-4,-11],[-6,-6],[-19,-11],[-3,0],[-4,0],[-10,7],[-2,2],[-4,-6],[-10,-23],[-4,-2],[-2,6],[-1,6],[-1,4],[-4,2],[-7,-2],[-3,1],[-2,5],[-4,-7],[-10,-8],[-4,-5],[-10,16],[3,8],[-4,9],[-12,15],[4,9],[-2,4],[2,6],[4,13],[3,5],[3,3],[10,5],[18,15],[7,2],[3,-1],[6,-3],[9,-1],[1,-3],[-1,-4],[-1,-7],[3,-9],[5,-4],[7,2],[4,9],[4,-8],[12,-6],[5,-6],[-5,-5],[-18,-3],[0,-4],[4,0],[8,-5],[11,0]],[[4032,82552],[3,-4],[-2,-2],[-7,-2],[-6,-7],[-3,-2],[-4,1],[3,-4],[-2,-10],[-5,-6],[-6,-1],[-6,4],[-4,9],[0,7],[4,8],[4,9],[-10,10],[2,6],[8,8],[6,12],[-7,5],[-23,-5],[1,9],[2,8],[2,6],[4,2],[4,0],[1,2],[1,10],[2,0],[2,-2],[4,-4],[1,-4],[0,-4],[0,-2],[3,-2],[0,1],[1,2],[2,3],[12,11],[5,1],[5,0],[1,-4],[-2,-4],[-6,0],[0,-8],[-3,-5],[-4,-5],[-4,-6],[2,-5],[1,3],[2,2],[-1,-9],[0,-3],[28,-13],[7,4],[4,-9],[-5,-5],[-9,-2],[-8,0],[0,-4]],[[5754,83006],[5,-6],[5,0],[6,2],[4,-1],[1,-8],[-3,-7],[-7,-10],[-11,-10],[-9,7],[-2,14],[7,7],[-2,6],[-3,2],[-3,1],[-3,0],[5,2],[4,5],[4,3],[4,-2],[-2,-5]],[[5725,83055],[3,-3],[4,-9],[7,-16],[-17,-15],[-9,-5],[-8,4],[3,5],[0,5],[-1,6],[0,4],[2,2],[7,-2],[4,0],[-1,6],[-4,22],[-4,-1],[-12,-7],[7,13],[1,7],[-2,5],[0,4],[5,-2],[22,-2],[3,-2],[2,-3],[-1,-5],[-1,-2],[-3,-1],[-3,0],[-2,-1],[-2,-3],[-1,-3],[1,-1]],[[5688,83084],[8,-5],[1,-3],[-1,-6],[-3,-3],[-3,0],[-3,2],[-7,16],[-3,7],[-4,4],[-1,-6],[-1,-7],[0,-6],[2,-6],[-5,1],[-7,3],[-4,1],[-1,-3],[-2,-4],[-1,-2],[-2,4],[-1,9],[2,5],[5,7],[2,1],[2,0],[1,0],[1,3],[0,4],[0,2],[-1,2],[-2,0],[-6,4],[-1,8],[2,5],[14,-14],[4,1],[0,6],[-6,6],[4,5],[9,1],[2,4],[-2,6],[-11,2],[-4,3],[6,5],[0,10],[-1,9],[3,4],[4,0],[2,1],[1,3],[2,4],[1,5],[0,6],[2,2],[4,-5],[0,-9],[-3,-6],[-3,-5],[-1,-6],[2,-9],[4,-4],[3,-2],[1,-1],[-1,-6],[-3,-25],[0,-24],[0,-4]],[[5583,83124],[4,6],[3,14],[5,10],[9,-5],[-2,-6],[-2,-16],[-2,-7],[0,1],[-8,-5],[0,-3],[0,-3],[0,-4],[-1,-2],[-5,0],[-3,5],[-3,8],[-4,3],[-4,-2],[-6,-13],[-4,-5],[8,-10],[2,-7],[-3,-3],[-15,4],[-5,0],[4,-11],[0,-5],[-8,-9],[-11,-20],[-13,-18],[-7,-15],[-7,-13],[-4,-8],[-3,-18],[-4,1],[-4,7],[-2,9],[1,14],[3,5],[4,2],[7,6],[12,34],[4,6],[5,5],[3,6],[3,9],[-23,5],[0,4],[4,2],[3,2],[8,0],[-1,6],[-3,6],[-3,3],[-8,4],[-4,5],[-2,5],[4,3],[8,-2],[15,-11],[7,-3],[-3,10],[-8,14],[-4,9],[5,4],[4,-3],[4,-5],[3,-7],[2,-4],[0,-3],[1,-2],[5,-1],[3,-2],[2,-3],[2,-3],[1,1],[1,3],[1,4],[-4,9],[-10,28],[-3,12],[24,-14],[7,-1],[-6,19],[3,1],[3,0],[3,0],[3,5],[1,4],[-2,6],[-2,5],[-1,5],[2,2],[12,17],[3,7],[3,-5],[0,-2],[3,-20],[-3,-7],[-6,-3],[-7,-7],[5,-9],[-3,-30],[4,-10]],[[4684,83280],[-4,-3],[-3,1],[-3,3],[-6,5],[2,7],[6,7],[7,3],[2,-5],[1,-6],[0,-6],[-2,-6]],[[6972,62058],[15,-14],[6,-10],[3,-12],[-1,-16],[-3,-9],[-13,-31],[-12,-9],[-18,-34],[-12,-7],[0,-7],[-10,-5],[-8,-13],[-17,-10],[-14,-8],[-12,6],[-6,0],[-6,-4],[-7,-8],[-9,-12],[-5,-13],[-5,-1],[-5,-5],[-6,-8],[-4,-6],[-14,-16],[-4,-3],[-12,-23],[-2,-10],[0,-21],[-5,-11],[-9,-18],[-4,-25],[-4,-9],[-6,-8],[-6,-12],[-2,3],[0,13],[-6,10],[-11,12],[-14,16],[-7,10],[-11,6],[-6,3],[-1,11],[-2,11],[-4,2],[-2,16],[-2,25],[3,30],[6,86],[0,15],[-4,13],[-3,19],[-5,28],[-2,12],[-3,7],[-2,12],[0,13],[-3,12],[-1,14],[-3,17],[-5,14],[-5,7],[-5,14],[-7,38],[3,17],[3,14],[6,10],[5,8],[3,6],[2,11],[3,7],[12,8],[6,20],[3,7],[6,22],[6,14],[4,1],[2,18],[1,8],[-1,11],[-5,9],[-10,30],[-4,26],[0,21],[0,19],[5,21],[3,7],[11,0],[18,-8],[7,-4],[2,-3],[1,-4],[0,-6],[5,-15],[10,-8],[7,-9],[5,-11],[7,-6],[5,-9],[7,3],[10,-1],[10,-8],[20,-14],[24,-25],[33,-42],[13,-18],[14,-29],[8,-22],[0,-23],[0,-31],[1,-24],[7,0],[11,10],[8,-11],[4,-12],[-1,-26],[4,-15],[4,-15],[14,-26]],[[6511,62668],[7,-16],[-4,-17],[4,-6],[-3,-11],[-8,0],[-7,2],[-5,-2],[-8,-3],[-9,-2],[-6,12],[3,9],[6,10],[8,11],[8,9],[8,5],[6,-1]],[[6431,62833],[4,-9],[5,-12],[3,-9],[0,-8],[-1,-10],[-6,-19],[-13,-11],[-10,-6],[-14,-1],[-5,16],[-2,14],[0,11],[0,14],[-1,12],[-5,6],[-11,9],[-4,11],[2,13],[7,6],[11,3],[28,-8],[12,-22]],[[6666,62788],[6,-26],[-1,-23],[-5,-19],[-7,-4],[-6,-17],[-7,0],[-15,-15],[-10,0],[-6,1],[-5,0],[-14,-13],[-9,-9],[-4,-5],[-7,4],[-3,0],[-4,3],[-4,-2],[-12,-1],[-7,14],[-1,6],[-4,8],[3,5],[0,10],[-3,39],[-2,11],[0,12],[-1,10],[-2,2],[-1,3],[-3,4],[-5,-1],[-4,-3],[-1,-8],[-4,-2],[-4,5],[-4,6],[-6,2],[-6,8],[-4,-1],[-3,10],[-7,14],[-8,20],[0,13],[-3,7],[1,12],[2,17],[3,14],[2,9],[4,1],[2,5],[0,5],[3,3],[3,0],[3,-1],[2,1],[1,3],[2,1],[2,-3],[2,-6],[3,-1],[4,-5],[4,-3],[1,-7],[4,-2],[0,-8],[0,-7],[4,-7],[3,-8],[2,-9],[3,-10],[5,0],[3,8],[5,-1],[4,2],[8,1],[3,1],[9,13],[5,3],[4,1],[5,0],[4,-1],[4,-3],[1,-1],[1,0],[1,-1],[1,-3],[3,3],[5,-6],[1,-7],[2,-3],[2,-5],[3,-7],[5,-7],[3,-7],[1,-5],[3,-1],[2,0],[0,3],[4,-5],[2,-8],[1,-5],[10,-3],[9,-9],[14,-9]],[[6459,63007],[2,1],[2,-2],[-1,-3],[2,-2],[4,1],[3,-3],[-6,-20],[-8,-16],[-11,-12],[-10,-9],[-11,-4],[-11,2],[-11,4],[-21,12],[-13,9],[-19,-3],[-13,-1],[-10,-3],[-8,1],[-6,-1],[-5,4],[-4,9],[0,11],[2,9],[4,8],[5,3],[4,11],[1,11],[-3,9],[0,5],[3,-1],[4,-1],[7,1],[3,-2],[2,-7],[5,0],[26,-8],[14,-4],[11,-2],[2,7],[0,6],[2,4],[2,2],[4,-10],[1,-11],[7,-4],[7,-4],[14,1],[7,2],[3,2],[3,2],[3,-1],[5,1],[4,-2],[3,-2]],[[6192,63115],[3,-10],[6,-8],[6,-6],[2,-3],[-3,-8],[-7,-12],[-3,-6],[-3,-2],[-1,3],[1,6],[-3,4],[-7,-4],[-6,-1],[-5,-5],[-4,-6],[-4,0],[-2,2],[-2,5],[-2,6],[-9,8],[-5,5],[-3,8],[-1,6],[0,6],[-2,-2],[-3,-7],[2,-7],[-11,-2],[0,3],[2,2],[-3,4],[-4,0],[0,5],[-1,5],[1,4],[-1,4],[3,3],[3,3],[3,3],[1,5],[-3,6],[-3,2],[-2,2],[-1,-2],[-1,-8],[-3,3],[-2,5],[-2,4],[1,-8],[1,-9],[-1,-2],[-6,10],[-3,4],[2,-9],[5,-10],[3,-6],[3,-4],[-2,-9],[-5,-4],[-6,-3],[-10,-4],[-6,-1],[-4,-3],[-1,1],[-2,2],[-3,4],[-2,20],[-3,16],[-4,9],[-3,8],[-5,5],[-1,16],[-2,8],[-5,9],[-3,4],[-3,10],[0,13],[-1,17],[-1,5],[-12,20],[1,2],[10,4],[12,1],[8,-1],[5,0],[3,2],[4,-2],[1,7],[2,4],[5,6],[6,9],[2,4],[-1,3],[2,7],[3,11],[4,7],[6,11],[9,5],[3,-1],[2,-2],[2,-4],[2,-5],[4,-7],[1,-7],[2,-2],[0,-5],[3,-6],[-2,-10],[4,-10],[4,-7],[1,-11],[3,-3],[1,-4],[1,-6],[2,1],[3,-2],[2,-5],[2,-9],[1,-9],[-1,-4],[-2,0],[-1,-4],[0,-9],[1,-7],[1,-10],[3,-1],[3,-3],[2,-7],[3,-8],[4,-3],[0,-4],[3,-2],[2,4],[3,8],[-4,5],[0,7],[3,3],[7,-2],[3,2],[1,-4],[-4,-9],[-1,-10],[1,-9],[4,-5],[4,-8],[1,-5],[-1,-7],[0,-6]],[[5524,63499],[5,4],[5,0],[5,-4],[2,-11],[-2,-5],[-4,-9],[-2,-12],[2,-16],[-3,-11],[-5,-4],[-4,-5],[-5,-3],[-7,-8],[-3,-6],[-2,-9],[-4,-17],[-2,-13],[-3,-2],[-4,6],[-3,2],[-3,21],[0,13],[3,14],[11,22],[9,14],[11,13],[2,7],[1,8],[0,11]],[[5750,63588],[2,-3],[0,-6],[-1,-17],[-2,-7],[-4,-23],[-4,-4],[-1,-17],[1,-10],[0,-12],[0,-11],[-1,-4],[-3,0],[-3,-4],[2,-4],[1,-5],[-2,-4],[-3,0],[-5,-8],[-2,-7],[-2,-4],[-5,-6],[0,-4],[-3,-1],[-2,-3],[-1,-3],[-13,8],[-7,2],[-6,0],[-10,4],[-4,1],[-3,4],[-1,-1],[0,-4],[-3,-1],[-1,5],[-4,3],[-3,5],[-2,6],[-1,5],[-1,5],[-4,1],[-1,5],[-3,3],[-5,2],[-4,3],[-4,4],[-5,2],[-5,3],[-2,10],[-1,5],[-2,3],[-2,6],[0,8],[0,7],[0,7],[0,5],[3,3],[7,16],[4,11],[0,5],[0,6],[1,4],[2,1],[0,2],[2,7],[6,3],[8,4],[8,9],[5,9],[6,6],[3,6],[3,3],[3,0],[2,4],[3,-1],[2,-3],[1,-4],[2,-1],[4,-2],[2,-3],[3,0],[-1,4],[1,5],[5,4],[5,-2],[6,0],[3,-4],[3,1],[3,4],[2,4],[3,-4],[4,-4],[5,0],[5,-5],[2,-9],[4,-8],[2,0],[1,-8],[1,-6],[1,-6]],[[99832,80914],[17,-16],[3,-6],[-5,0],[-9,-4],[-5,0],[1,3],[1,1],[-4,4],[-3,0],[-8,-4],[-2,-2],[-2,-5],[-2,-1],[-2,1],[-4,3],[-3,0],[-4,-2],[-4,-3],[-5,-3],[-3,2],[-2,6],[-1,5],[1,5],[3,6],[-47,37],[-6,9],[-4,5],[-1,4],[-1,4],[-2,6],[-4,5],[-7,8],[-8,12],[-5,5],[-19,12],[-10,3],[-10,-3],[-5,0],[-1,7],[-7,0],[-5,1],[-5,4],[-5,9],[-3,5],[-15,13],[9,11],[4,2],[11,-10],[13,-2],[5,-9],[4,7],[4,0],[4,-4],[3,-7],[4,2],[4,1],[5,-1],[9,-5],[2,-3],[1,-4],[1,-7],[2,-2],[3,-1],[3,-2],[1,-1],[5,0],[2,-1],[1,-2],[3,-9],[1,-1],[3,-4],[11,-21],[17,-20],[5,-2],[12,-2],[3,-2],[3,-4],[7,-14],[3,-14],[5,-1],[10,3],[-1,-3],[-1,-2],[0,-2],[-2,-2],[0,-3],[28,2],[5,3]],[[99514,81164],[5,-3],[12,-2],[5,-3],[5,-5],[12,-23],[-4,2],[-7,-3],[-4,1],[-3,3],[-5,11],[-2,2],[-5,2],[-7,6],[-7,8],[-3,8],[2,-3],[1,-1],[2,1],[3,-1]],[[99592,81257],[11,-7],[4,-4],[4,-9],[0,-9],[-2,-5],[-4,-4],[-4,-6],[2,-4],[-4,-3],[-6,-2],[-6,-1],[-4,4],[-9,14],[-2,4],[-1,7],[1,4],[2,6],[1,9],[1,5],[4,2],[4,1],[4,2],[1,-2],[1,-1],[2,-1]],[[99938,81245],[-1,-7],[-4,-5],[-2,-4],[-1,-2],[1,-8],[-2,-5],[-7,-7],[-6,-9],[-8,-6],[-8,-2],[-21,7],[-3,2],[-2,4],[-8,8],[-6,4],[-1,6],[2,6],[1,2],[-1,6],[-1,6],[-2,4],[-2,4],[3,3],[6,0],[3,1],[8,13],[5,1],[6,5],[7,6],[4,8],[2,-3],[2,-1],[4,0],[1,-5],[2,-3],[2,-2],[2,-2],[8,-13],[4,-5],[4,-3],[9,-4]],[[99344,81339],[8,-7],[4,-5],[1,-9],[-2,-4],[-5,-4],[-2,-4],[-1,-6],[-1,-9],[-2,-5],[-4,-6],[-17,-14],[3,-8],[-4,-6],[-2,-6],[5,-9],[10,0],[1,-2],[0,-8],[0,-5],[-2,-1],[-3,4],[-4,-5],[-2,-3],[-2,-4],[-3,5],[-5,4],[-5,3],[-4,0],[-3,-4],[-2,-6],[-3,-2],[-3,8],[2,8],[-16,-5],[-6,-6],[-8,-5],[-3,-10],[-5,-33],[-1,-4],[-2,-4],[-2,1],[-3,5],[-3,6],[-1,4],[-3,5],[-12,13],[-4,5],[19,18],[7,2],[3,2],[3,6],[5,14],[4,7],[4,2],[10,1],[6,4],[3,0],[6,0],[2,0],[7,5],[2,3],[3,20],[8,30],[0,12],[11,12],[6,3],[7,-3]],[[98855,81489],[10,0],[5,-4],[10,-4],[5,-4],[-7,-8],[-10,-3],[-8,5],[-5,18]],[[98274,81562],[-16,-18],[-5,-12],[3,-17],[2,-7],[2,-10],[1,-10],[0,-9],[-23,-7],[1,4],[0,1],[0,1],[1,3],[0,4],[-3,-1],[-3,1],[-3,1],[-2,3],[0,10],[-6,1],[-29,-6],[-28,6],[-3,4],[1,9],[4,7],[6,6],[7,4],[4,-1],[6,-2],[5,-1],[5,3],[5,5],[6,10],[2,1],[5,1],[2,1],[1,3],[2,6],[2,4],[2,1],[2,0],[29,6],[9,0],[6,-5]],[[98359,81688],[-4,2],[1,5],[3,6],[5,3],[14,-12],[5,-9],[-24,5]],[[98159,81757],[-11,-3],[-4,-3],[0,-6],[-7,11],[-4,5],[-5,4],[-6,1],[-6,-1],[-4,-6],[-3,-10],[-2,0],[0,4],[-2,0],[-2,-9],[4,-4],[0,-4],[-7,-1],[-5,-3],[-4,0],[-5,8],[-5,14],[-2,3],[-3,-2],[-5,-5],[-3,-1],[-9,-9],[-10,-18],[-10,-13],[-10,3],[1,3],[0,6],[0,6],[-1,5],[-4,4],[-4,0],[-6,-4],[-2,2],[-3,6],[-2,0],[-1,-2],[-2,-8],[-2,-2],[-3,1],[-7,5],[-4,2],[0,4],[4,5],[1,7],[2,17],[5,15],[1,7],[-4,2],[-2,-1],[-9,-7],[-3,-1],[-10,1],[-19,-6],[-4,2],[2,5],[7,20],[-2,6],[-3,2],[-10,0],[-16,-9],[-4,2],[-4,4],[-8,-1],[-4,4],[21,24],[2,-5],[5,11],[23,18],[20,-5],[4,3],[5,5],[5,1],[34,-8],[2,-2],[1,-3],[0,-4],[2,-3],[3,-1],[7,0],[3,-3],[11,9],[5,2],[28,1],[4,-3],[9,-11],[3,-2],[0,-4],[-4,-7],[-8,-13],[3,1],[2,-1],[2,-3],[0,-5],[15,14],[8,4],[2,-6],[12,-5],[6,-6],[0,-8],[-3,-5],[-4,-5],[-9,-8],[10,-7],[14,-4],[14,-1],[11,4],[-2,-12],[-4,-4],[-12,0]],[[4174,82523],[3,4],[2,1],[3,-1],[2,-4],[1,-6],[-2,-9],[-3,-8],[-4,-5],[-3,-1],[-21,1],[-10,-4],[-4,0],[-1,2],[-3,5],[-2,2],[-1,-1],[-4,-4],[-18,5],[-5,3],[2,6],[2,5],[2,3],[4,2],[2,0],[3,-3],[2,0],[3,2],[3,8],[3,2],[2,-2],[1,-2],[1,-3],[0,-2],[2,1],[4,3],[1,0],[4,-1],[4,-2],[3,-4],[3,-5],[4,4],[11,7],[2,5],[2,-4]],[[4886,82690],[1,-5],[0,-4],[1,-3],[2,0],[8,3],[0,-3],[-13,-9],[-6,1],[-5,6],[-7,11],[-2,3],[0,4],[1,4],[3,1],[4,-1],[13,-8]],[[4837,82710],[10,-12],[1,-3],[0,-7],[0,-7],[-1,-3],[-29,3],[2,-3],[3,-3],[3,-1],[3,0],[0,-4],[-5,-1],[-4,3],[-8,6],[-14,6],[-7,8],[-9,4],[-3,4],[-13,22],[6,1],[-1,7],[-1,9],[0,8],[4,1],[6,-2],[9,-8],[7,-2],[12,-8],[10,-2],[9,-7],[2,-1],[4,1],[2,0],[0,-1],[0,-3],[1,-3],[1,-2]],[[4896,83014],[8,10],[12,9],[11,2],[7,-12],[1,-7],[1,-11],[0,-11],[0,-7],[-2,-8],[-11,-25],[-9,-9],[-9,1],[-9,8],[-8,12],[-6,15],[-3,10],[0,8],[2,6],[15,9]],[[4702,82856],[1,-2],[4,-6],[1,-5],[-3,-3],[-26,4],[-4,4],[4,1],[11,7],[-3,5],[-4,3],[-4,1],[-4,0],[-4,-3],[-9,-8],[-3,-2],[-3,2],[-3,4],[-4,9],[-2,2],[-8,1],[-4,3],[-9,22],[-6,7],[-10,-10],[-4,-3],[-4,-4],[-1,-6],[2,-20],[0,-7],[-6,-10],[-16,-4],[-3,-12],[-4,0],[-25,-14],[-15,2],[-31,13],[-95,-9],[-14,-7],[-10,-8],[-31,-37],[-2,-5],[1,-6],[1,-4],[0,-4],[-2,-9],[-7,-17],[-12,-14],[-15,-8],[-13,-5],[-19,0],[-10,-3],[-6,-7],[-6,-3],[-41,8],[-7,4],[-5,7],[-8,20],[-5,8],[-5,3],[1,12],[-2,8],[-3,4],[-2,6],[-1,10],[-2,9],[-5,16],[6,8],[8,8],[8,6],[23,7],[16,11],[11,15],[36,94],[4,4],[2,23],[2,3],[18,18],[7,4],[14,2],[6,-3],[12,-14],[6,-4],[25,1],[3,3],[1,5],[-4,7],[9,13],[10,9],[10,5],[19,3],[7,5],[11,10],[14,20],[6,4],[25,4],[6,3],[6,5],[7,2],[21,-9],[30,7],[13,-8],[-4,0],[-1,-3],[0,-6],[1,-7],[3,-4],[6,-4],[8,-10],[5,-9],[5,-10],[4,-11],[2,-14],[0,-27],[3,-10],[11,-33],[5,-10],[7,-6],[7,-3],[19,1],[3,2],[2,3],[3,5],[2,2],[3,0],[3,-3],[3,-1],[6,-4],[4,-9],[6,-23],[2,-6],[3,-4],[2,-3],[3,-4]],[[5075,83137],[0,-3],[-1,-1],[-1,0],[7,-6],[14,-8],[6,-7],[-4,-8],[-9,-9],[-3,-11],[-4,4],[-4,-3],[-3,-5],[-4,-4],[-5,0],[-4,5],[-4,6],[-4,5],[2,6],[8,16],[1,7],[-3,6],[-8,10],[1,-10],[-1,-9],[-4,-18],[-4,8],[-8,5],[-6,8],[-2,0],[-2,0],[-1,5],[1,7],[2,2],[2,0],[13,8],[32,-6]],[[5465,83254],[-2,-4],[2,-23],[1,-11],[-1,-11],[-3,-16],[-3,1],[-4,3],[-4,3],[-7,15],[-27,9],[-9,14],[3,1],[3,3],[1,4],[-1,4],[6,5],[7,-2],[7,-3],[6,0],[13,13],[7,2],[5,-7]],[[5417,83157],[3,-1],[3,2],[2,1],[2,-6],[-7,-4],[-13,4],[-7,0],[11,-6],[3,-2],[-1,-6],[-7,-19],[-5,15],[-5,3],[-15,-5],[-3,0],[-8,5],[-2,3],[-3,7],[1,4],[2,3],[0,6],[-2,6],[-3,-2],[-3,-4],[-4,-4],[-4,-2],[-4,0],[-3,-2],[-4,-4],[-3,-9],[-6,-20],[-4,-8],[0,10],[2,18],[-1,7],[-7,12],[-2,5],[-2,9],[1,2],[1,10],[0,4],[0,4],[-3,6],[-1,4],[1,9],[2,9],[1,8],[-2,9],[9,19],[11,15],[11,10],[13,0],[9,-13],[2,-12],[-4,-12],[-9,-15],[4,-6],[3,-1],[6,3],[1,2],[1,4],[1,4],[2,2],[2,-1],[4,-2],[2,-1],[2,3],[0,18],[1,7],[3,7],[4,4],[4,1],[4,-4],[3,-13],[-5,-11],[-6,-12],[-3,-15],[1,-8],[2,-5],[3,-3],[3,-6],[2,-7],[-1,-3],[-9,-6],[5,-3],[10,-2],[5,-3],[0,-3],[2,-10],[1,-3]],[[5514,83270],[-3,-3],[-2,2],[-2,5],[-2,4],[-4,3],[-10,3],[-4,5],[-4,3],[-3,-4],[-7,-10],[-4,-1],[-5,0],[-3,4],[-2,8],[4,15],[8,9],[9,3],[8,-1],[1,-2],[1,-5],[1,-1],[2,0],[5,3],[2,1],[8,-1],[3,-2],[1,-5],[-1,-9],[0,-8],[1,-8],[2,-8]],[[5914,83534],[-28,16],[-13,3],[-8,-19],[3,-2],[4,-1],[3,-3],[1,-6],[-6,-3],[-4,-1],[-4,4],[-3,8],[0,10],[3,11],[-1,8],[13,10],[7,4],[10,-4],[4,-6],[5,-9],[4,-1],[4,-5],[4,-7],[2,-7]],[[2894,83995],[7,5],[9,-1],[9,-6],[5,-8],[-12,-9],[-9,-12],[-11,-10],[-12,2],[-6,6],[-7,13],[-4,6],[-20,12],[-7,8],[13,0],[38,-10],[7,4]],[[2711,84354],[26,11],[3,5],[4,4],[5,0],[-3,-6],[-6,-9],[-3,-9],[-1,-2],[-1,-4],[-1,-4],[-1,-11],[-2,-3],[-10,-9],[-14,-8],[0,-7],[-2,-6],[-4,-4],[-4,-3],[4,12],[1,6],[-1,7],[-2,-1],[-10,5],[-8,-5],[-5,1],[-5,3],[-4,4],[-2,6],[-2,8],[1,7],[4,4],[10,0],[3,1],[4,6],[3,1],[17,-1],[6,1]],[[4005,85974],[4,0],[2,-1],[2,-4],[-1,-5],[-1,-3],[-1,-3],[-2,-3],[-8,-6],[-26,-4],[-6,2],[-3,6],[-5,5],[-3,0],[-2,-7],[-3,-4],[-26,-14],[-5,-1],[-12,1],[-5,3],[-4,6],[-4,3],[-5,-4],[8,-5],[-4,-7],[-9,-5],[-5,-2],[-3,-4],[-23,-10],[-3,11],[-15,2],[-17,-5],[-5,-12],[2,-1],[12,-7],[16,4],[7,-3],[6,-6],[5,-10],[3,-9],[-6,-8],[-11,-5],[-11,-1],[-4,3],[-2,10],[-5,10],[-6,8],[-9,5],[-6,8],[-4,2],[-5,1],[-21,12],[-9,2],[-9,-1],[-8,-5],[-2,7],[-4,0],[-9,-4],[-17,1],[-4,3],[-11,15],[-4,2],[-12,2],[-6,3],[-11,14],[-65,41],[6,7],[2,1],[-5,5],[-5,-2],[-4,-4],[-5,-3],[0,4],[0,2],[0,3],[0,4],[-4,-5],[-1,-4],[-2,-3],[-5,-1],[-5,2],[-8,9],[-5,2],[-6,5],[-7,12],[-7,13],[-4,10],[-1,0],[-2,-10],[-5,-3],[-6,3],[-4,6],[0,3],[0,15],[-1,6],[-1,5],[-4,8],[-26,31],[-5,13],[5,-3],[4,0],[22,7],[3,3],[3,4],[4,2],[5,0],[4,-2],[4,-4],[3,0],[25,3],[79,-14],[15,4],[7,25],[-1,5],[-2,2],[-1,3],[2,6],[3,4],[9,7],[10,4],[15,10],[9,-1],[11,-7],[5,0],[3,9],[0,12],[3,5],[27,17],[11,-2],[8,-14],[-1,-1],[-1,-4],[-1,-3],[6,1],[20,20],[34,12],[-1,-10],[5,-4],[6,1],[4,5],[0,7],[-1,9],[-5,12],[7,-3],[4,-3],[3,-6],[-2,-4],[3,-10],[3,-11],[4,-9],[5,-7],[-2,-1],[-1,-2],[0,-2],[-1,-3],[6,-3],[18,-5],[19,4],[6,11],[3,1],[21,-1],[7,-2],[2,-3],[4,-7],[1,-2],[5,-2],[7,1],[4,-4],[-6,-4],[12,-4],[-1,-4],[-1,-2],[-1,-2],[4,-5],[-2,-6],[-4,-7],[-4,-3],[-1,-3],[4,-8],[7,-12],[-12,-18],[-3,-3],[2,-7],[4,-4],[5,-2],[4,1],[-1,-3],[-1,-3],[-2,-2],[0,-4],[3,-1],[1,-1],[1,-3],[1,-3],[-3,-9],[-3,-8],[-9,-16],[10,1],[4,-3],[3,-15],[3,-3],[9,-4],[-3,-7],[-1,-3],[-2,-3],[0,-4],[4,-3],[4,-10],[3,-3],[4,1],[9,7],[4,0],[-3,-4],[-4,-4],[-3,-5],[-1,-6]],[[2140,86211],[3,-6],[16,-11],[5,-6],[-4,0],[-11,-4],[-4,2],[-7,8],[-18,13],[-5,1],[-11,-3],[-14,5],[-9,-4],[-9,-7],[-9,-3],[-7,2],[-8,4],[-13,13],[-3,2],[-7,2],[-3,2],[-4,4],[-5,10],[-3,6],[-5,6],[-62,46],[-15,5],[4,3],[2,1],[-1,7],[0,6],[0,6],[1,5],[0,4],[0,4],[0,3],[2,2],[2,0],[3,1],[3,3],[14,15],[7,4],[3,-11],[-3,-9],[1,-14],[4,-13],[5,-5],[4,-3],[18,-21],[77,-52],[8,-1],[26,7],[9,-3],[23,-26]],[[2831,87817],[5,-7],[2,-5],[2,-5],[-22,32],[-7,12],[-14,18],[1,-1],[16,-19],[17,-25]],[[2933,87994],[-13,3],[-7,4],[-4,5],[5,-6],[19,-6]],[[2695,87921],[-20,30],[-22,21],[-72,41],[62,-30],[29,-25],[23,-37]],[[2507,88035],[-23,-1],[-4,4],[12,1],[68,-18],[-53,14]],[[2475,88137],[5,-1],[-1,0],[-4,1]],[[2475,88137],[-19,3]],[[2456,88140],[4,1],[15,-4]],[[2456,88140],[-2,-1],[-1,-2],[-1,-2],[0,-3],[13,0],[4,-1],[4,-6],[3,-1],[31,4],[-1,-2],[0,-1],[-1,-1],[12,-6],[14,8],[13,12],[19,9],[14,18],[17,12],[4,8],[6,-9],[8,0],[28,18],[7,2],[8,1],[4,-1],[7,-6],[4,-1],[14,4],[8,0],[3,-2],[6,-9],[3,-1],[3,-2],[4,-2],[14,-19],[6,-5],[16,-5],[8,-4],[4,-13],[4,-9],[1,-4],[-1,-7],[-1,-3],[1,-2],[3,-4],[1,-8],[-4,-9],[-6,-10],[-3,-8],[5,3],[5,2],[27,-3],[17,-13],[12,-6],[26,-3],[-6,-2],[-12,0],[-7,-2],[17,-6],[35,3],[17,-9],[4,-9],[4,-18],[5,-10],[8,-6],[11,-3],[11,0],[8,5],[-3,3],[-4,1],[31,0],[10,-2],[8,-6],[15,-25],[6,-3],[17,-1],[9,3],[6,9],[-9,7],[-11,4],[-22,2],[0,4],[42,-4],[17,4],[5,-1],[8,-6],[69,-15],[8,-6],[-4,-4],[-8,-5],[-3,-3],[6,-12],[-3,-16],[-13,-25],[-10,-13],[-11,-4],[-28,1],[-14,5],[-5,5],[-5,4],[-68,-6],[-13,-8],[12,9],[6,2],[22,2],[7,4],[4,7],[-39,-7],[-18,-10],[-17,-16],[4,-4],[0,-4],[-5,-4],[-8,-10],[-17,-7],[-6,-6],[-2,-7],[-2,-4],[-8,-12],[-2,-7],[0,-10],[2,-7],[8,-11],[-5,-4],[-10,-1],[-5,-5],[-6,-12],[-4,-4],[-5,-2],[-11,9],[-7,3],[-6,0],[2,8],[0,8],[-1,6],[-3,7],[7,1],[6,5],[3,9],[-3,12],[-2,3],[-6,1],[-2,3],[-7,14],[-12,18],[-13,11],[-30,12],[0,-5],[-14,8],[-4,7],[-3,2],[-6,-1],[-3,3],[-1,4],[0,3],[0,2],[-2,1],[-6,-2],[-9,-8],[-4,-2],[-6,0],[-15,7],[-7,1],[2,6],[3,2],[3,0],[3,4],[1,5],[1,16],[-1,3],[-1,3],[-2,6],[-2,5],[-2,3],[-5,0],[-19,10],[-23,20],[-9,12],[-42,24],[-18,2],[-1,2],[-1,3],[-1,2],[-1,2],[-28,1],[-5,3],[-3,3],[-5,9],[-2,4],[-4,4],[-3,1],[-63,-9],[0,-1],[0,-2],[1,-1],[-12,-4],[-5,-4],[-4,-6],[-8,-8],[-19,-3],[-9,-8],[-2,0],[-1,-12],[-8,-7],[-10,-3],[-6,-4],[-7,-10],[-9,-1],[-33,9],[0,1],[-4,5],[-2,2],[-2,1],[-7,-1],[-4,1],[-8,6],[-14,4],[-8,5],[-7,8],[-17,31],[-2,5],[0,10],[-4,11],[-1,7],[-1,7],[-1,7],[1,0],[1,1],[1,3],[1,4],[0,3],[-2,9],[1,13],[1,4],[3,5],[2,4],[3,3],[2,4],[1,5],[0,4],[-2,3],[-1,2],[1,3],[2,3],[5,2],[3,2],[5,7],[1,7],[0,7],[0,11],[6,17],[2,11],[-3,5],[-1,2],[-1,6],[-1,6],[1,4],[3,3],[3,-1],[3,-2],[3,0],[6,3],[6,-4],[4,-7],[3,-10],[-3,-4],[-2,-7],[-1,-9],[0,-9],[4,-7],[5,-4],[47,-21],[11,-8],[-6,0],[-11,6],[-6,2],[-4,-3],[-7,-13],[-4,-5],[0,-4],[4,3],[3,-1],[3,-3],[3,-3],[3,0],[40,4],[9,4],[-4,4],[-5,1],[-10,0],[0,3],[61,-16]],[[30875,76584],[6,-4],[12,-3],[3,-1],[0,-12],[-4,-6],[-4,-3],[-1,-6],[-3,-3],[-5,2],[-10,8],[3,10],[-2,8],[-6,6],[-6,4],[2,11],[5,0],[10,-11]],[[30932,76681],[6,-6],[2,-7],[0,-8],[2,-7],[-3,-2],[-7,-4],[-4,-2],[2,-5],[2,-4],[6,-4],[0,-3],[-11,-9],[-6,-3],[-9,9],[-1,3],[1,5],[1,6],[0,6],[-3,11],[2,-1],[5,1],[2,0],[-1,6],[-1,6],[1,6],[1,6],[3,6],[3,0],[7,-6]],[[31043,76779],[1,-12],[15,-28],[3,-17],[-6,-12],[-12,-8],[-12,-2],[-6,10],[-2,0],[-2,-14],[3,-8],[3,-6],[0,-7],[-3,-7],[-5,-7],[-4,-1],[-2,9],[-1,-1],[-3,-2],[-2,-1],[-3,8],[-9,7],[-3,10],[4,2],[1,4],[-2,4],[-4,2],[-2,3],[0,7],[2,8],[5,20],[2,7],[3,3],[4,2],[3,4],[1,5],[-4,5],[6,12],[11,8],[12,1],[8,-8]],[[5014,64113],[1,2],[0,2],[0,1],[2,0],[-1,-3],[-1,-1],[-1,-1]],[[4249,64434],[1,-6],[-2,2],[0,1],[0,1],[1,2]],[[3334,65276],[-1,8],[0,1],[2,-3],[0,-2],[-1,-2],[0,-2]],[[2299,65733],[-2,-13],[-2,3],[-1,7],[5,3]],[[1676,65910],[1,-3],[1,-2],[0,-2],[0,-3],[-2,2],[0,2],[0,2],[0,4]],[[475,67290],[1,-6],[-2,-1],[-1,-2],[-2,0],[2,2],[1,3],[0,1],[1,3]],[[15915,78412],[6,-1],[2,-3],[1,-7],[0,-5],[-1,-10],[-4,-6],[-3,-3],[-1,0],[-3,3],[-2,2],[-4,6],[-1,1],[-1,6],[2,2],[2,3],[2,6],[1,5],[4,1]],[[15870,78463],[0,-8],[-1,-7],[4,-7],[2,-7],[0,-7],[0,-9],[-3,-9],[-4,-6],[-1,3],[-1,5],[-2,7],[0,4],[-2,5],[-4,6],[-3,6],[0,5],[2,11],[1,8],[2,6],[4,0],[2,3],[5,3],[2,2],[3,3],[-2,-7],[-4,-4],[0,-6]],[[27189,65012],[1,1],[-1,-2],[-3,-2],[0,2],[3,1]],[[27189,65029],[-3,3],[-1,2],[-2,0],[-2,0],[1,2],[3,1],[4,-2],[3,-5],[0,-7],[-1,-5],[0,3],[-2,8]],[[27382,65071],[2,2],[2,-2],[-1,-5],[-2,3],[-1,2]],[[27426,65080],[1,1],[1,-3],[-2,-4],[-3,-3],[0,1],[3,8]],[[27375,65086],[2,-5],[1,-7],[-1,-6],[-1,0],[-1,3],[-3,5],[-1,4],[2,3],[1,1],[-1,0],[0,2],[2,0]],[[27366,65087],[0,-6],[1,-11],[-1,-2],[-1,4],[-2,3],[-1,1],[-2,-1],[-1,-1],[-1,0],[-1,2],[-1,1],[-1,5],[1,8],[1,6],[1,0],[1,-1],[2,0],[2,-2],[2,-4],[1,-2]],[[27408,65099],[3,-5],[1,-9],[-1,-2],[-2,5],[-2,3],[-1,2],[-1,4],[1,3],[2,-1]],[[27583,65205],[0,-3],[-3,-7],[-2,-3],[-4,-6],[-2,1],[1,4],[2,3],[2,2],[6,9]],[[27604,65237],[2,3],[0,-2],[0,-1],[-2,-7],[-6,-11],[-3,-3],[9,21]],[[27487,65458],[1,-1],[1,-6],[-3,-7],[-1,-4],[-2,-3],[-2,2],[-2,7],[-1,8],[1,5],[4,1],[4,-2]],[[27475,65476],[1,-5],[0,-2],[-1,-3],[0,-6],[-3,3],[-2,4],[-4,7],[1,4],[2,-1],[-1,-2],[2,0],[3,1],[2,0]],[[27394,65761],[2,-3],[1,-3],[-2,-2],[-3,-1],[-2,-2],[-1,-3],[0,-1],[0,-2],[-1,1],[-1,2],[-3,7],[-2,2],[-3,-4],[-1,-1],[0,13],[-1,4],[0,6],[3,5],[5,-5],[2,-3],[5,-8],[2,-2]],[[27374,65764],[-2,-2],[-2,4],[-1,4],[-1,3],[-1,4],[-5,1],[-1,2],[-1,2],[-1,-2],[0,-3],[-1,-2],[0,-4],[-1,-1],[0,3],[0,1],[-2,4],[1,6],[4,4],[2,1],[2,1],[4,2],[3,-4],[2,-9],[0,-5],[1,-2],[1,-4],[-1,-4]],[[27312,65809],[3,-3],[1,-6],[-3,-11],[-1,-4],[-4,1],[-2,2],[0,4],[-1,3],[-1,2],[-1,1],[-1,4],[1,5],[3,1],[2,0],[4,1]],[[27349,65802],[2,-3],[1,-4],[-1,-4],[-3,-10],[-1,2],[1,9],[0,5],[-2,2],[-1,3],[-1,3],[1,5],[3,-1],[2,-4],[-1,-1],[0,-2]],[[27037,67487],[0,-8],[-2,-4],[-1,0],[-1,1],[0,3],[-4,2],[0,2],[1,0],[1,0],[1,1],[-2,1],[1,2],[1,2],[2,-1],[1,0],[2,-1]],[[27029,67504],[1,3],[0,3],[-1,1],[-1,4],[1,3],[2,0],[2,-2],[2,-4],[0,-6],[-3,-4],[-2,0],[-2,1],[1,1]],[[24819,67684],[1,1],[1,2],[0,-1],[-4,-5],[-4,-3],[-21,-10],[-5,0],[0,4],[7,3],[2,3],[5,5],[2,0],[1,-3],[2,-1],[4,1],[2,2],[1,2],[4,-1],[2,1]],[[24884,67677],[1,-2],[0,-2],[-2,0],[-12,5],[-14,10],[1,3],[16,-6],[7,-5],[3,-3]],[[26934,67730],[1,-2],[1,-1],[-2,-2],[-4,-3],[-2,3],[0,8],[2,3],[2,-3],[2,-3]],[[24875,67783],[-1,-6],[0,8],[2,13],[3,3],[0,-6],[-2,-4],[-1,-4],[-1,-4]],[[25020,67815],[1,0],[3,1],[0,-3],[-5,-5],[-2,0],[1,4],[2,3]],[[25001,67914],[1,1],[0,-1],[0,-4],[-1,-3],[-2,1],[-4,-1],[-1,2],[-1,5],[-2,4],[-2,1],[-2,-2],[-1,0],[-1,1],[-1,2],[-1,4],[0,3],[-1,0],[-4,-1],[-4,-2],[-3,3],[-4,11],[-1,5],[2,3],[3,1],[2,-1],[4,1],[6,-4],[2,-3],[1,-2],[2,-2],[3,-1],[3,-3],[2,-5],[-1,-2],[-3,0],[0,-2],[3,-6],[2,-2],[2,1],[1,1],[0,3],[1,-1],[0,-3],[0,-2]],[[25262,67977],[0,1],[2,0],[-1,-3],[-9,-18],[-2,-3],[-2,-2],[12,25]],[[25283,68019],[3,4],[1,2],[-1,-3],[-2,-4],[-1,1]],[[25298,68048],[-3,-5],[17,44],[-4,-14],[-10,-25]],[[27430,69127],[4,13],[4,1],[5,4],[5,-3],[3,-5],[-3,-11],[-3,-12],[-5,-17],[-6,-12],[-7,-27],[-5,-1],[-3,5],[-3,10],[3,17],[5,13],[4,17],[2,8]],[[27455,69225],[3,17],[4,0],[1,-3],[0,-8],[0,-14],[1,-16],[-3,-10],[-3,-15],[-3,-12],[-4,2],[1,10],[1,8],[-3,7],[0,14],[2,10],[3,10]],[[17157,70465],[2,1],[1,-5],[-6,-4],[2,-13],[-3,-3],[1,-5],[-4,1],[-1,5],[1,3],[4,3],[-1,9],[-1,-2],[0,-6],[-2,-2],[-3,-3],[0,7],[1,4],[3,7],[2,-1],[1,2],[3,2]],[[28915,72458],[3,7],[0,12],[-2,9],[-1,11],[0,23],[3,11],[1,17],[5,6],[4,-5],[2,-7],[-1,-6],[-4,-4],[-2,-8],[-2,-13],[2,-8],[2,-4],[3,-2],[5,-1],[5,2],[1,6],[2,1],[0,-5],[-1,-8],[-4,-6],[-6,-8],[-6,-12],[-4,-11],[-3,-4],[-5,-3],[-4,0],[1,3],[3,1],[2,2],[1,4]],[[29905,74804],[0,8],[4,1],[1,-7],[5,-6],[3,-1],[4,-2],[-1,-6],[1,-6],[-1,-6],[2,-5],[0,-5],[-3,2],[-3,4],[-6,4],[-6,0],[-5,-1],[-3,5],[-1,8],[3,7],[6,6]],[[29963,74822],[6,-8],[5,-3],[4,-1],[0,-3],[-2,-2],[0,-5],[1,-5],[-1,-4],[-2,-4],[-2,-4],[0,7],[-1,9],[-1,5],[-4,2],[-4,-1],[-2,3],[2,3],[2,4],[-1,7]],[[30325,74905],[2,0],[2,1],[1,-2],[3,-1],[0,-6],[-3,0],[-3,2],[-3,3],[1,3]],[[30313,75010],[4,6],[0,-3],[3,-5],[-2,-3],[-6,-4],[-5,0],[-4,0],[-6,-3],[-2,-4],[-3,2],[2,4],[4,4],[4,1],[4,4],[7,1]],[[30354,75053],[4,5],[4,-1],[5,-4],[-6,-5],[-5,-6],[-7,-6],[-4,-4],[0,-4],[-3,-5],[-6,-7],[-5,-1],[-7,-2],[-2,4],[3,4],[4,-1],[3,5],[6,9],[11,13],[5,6]],[[15717,77833],[4,-2],[4,-7],[6,-6],[5,-8],[7,-7],[2,-3],[-6,-1],[-5,2],[-6,3],[-5,8],[-4,3],[-3,6],[0,2],[1,10]],[[15700,77863],[2,-1],[3,-4],[5,-7],[2,-9],[-1,-4],[-4,3],[-4,4],[-3,6],[-1,8],[1,4]],[[12911,82931],[0,-3],[1,-7],[0,-8],[-2,-10],[-2,1],[-4,7],[0,3],[0,6],[0,3],[0,1],[0,2],[0,7],[0,3],[0,6],[2,2],[2,-3],[3,-6],[0,-4]],[[13558,83103],[1,-17],[-1,-16],[-7,0],[-11,12],[3,14],[11,11],[4,-4]],[[12970,83297],[11,7],[9,-2],[-1,-15],[-10,-6],[-11,0],[-2,11],[4,5]],[[7698,84461],[7,-4],[2,-4],[-4,-5],[-8,-7],[-5,0],[4,6],[4,14]],[[12184,84975],[-2,12],[10,11],[18,9],[4,-14],[-9,-16],[-14,-6],[-7,4]],[[12300,85023],[1,15],[17,5],[24,-4],[7,-23],[-14,-4],[-21,2],[-14,9]],[[7768,85382],[6,-4],[0,-3],[-8,-6],[-2,-4],[-2,-5],[-2,-2],[-3,2],[0,3],[1,4],[2,3],[1,4],[-1,2],[1,1],[4,0],[0,2],[1,3],[2,0]],[[7864,85487],[5,-7],[8,-1],[-1,-7],[-5,-4],[-4,2],[-6,-2],[-4,5],[-2,10],[4,5],[5,-1]],[[7926,85492],[5,-1],[4,-1],[-1,-4],[3,-6],[-3,-6],[-6,1],[-6,5],[-8,6],[3,6],[9,0]],[[7817,85507],[12,4],[7,-10],[-3,-8],[-15,3],[-11,0],[2,7],[8,4]],[[9354,85678],[3,2],[2,-5],[-4,-12],[-5,-9],[-5,-1],[0,7],[9,18]],[[7621,86091],[2,-9],[0,-15],[-6,-1],[-9,14],[-5,11],[-2,5],[-1,6],[2,4],[3,3],[5,-1],[5,-4],[5,-7],[1,-6]],[[9066,86181],[4,0],[1,-2],[0,-8],[-1,-6],[-6,-7],[-29,-20],[-5,0],[-1,5],[1,9],[-3,4],[2,2],[8,2],[5,4],[1,0],[2,0],[20,16],[1,1]],[[1927,86383],[2,-7],[1,-4],[-2,-2],[-3,2],[-10,12],[-2,5],[0,7],[5,9],[7,4],[2,-5],[0,-5],[1,-6],[-1,-7],[0,-3]],[[9216,86501],[4,7],[9,2],[4,7],[0,6],[6,-5],[7,-10],[3,-8],[-4,-7],[-5,-8],[-8,-8],[-9,3],[-4,7],[-3,14]],[[9140,86534],[5,-3],[0,-3],[-2,-5],[-5,-8],[-10,-6],[-8,0],[-4,2],[-2,3],[1,3],[1,4],[-2,1],[-6,0],[-2,0],[-1,-1],[1,-2],[-3,-3],[-7,1],[-16,3],[-2,2],[0,1],[2,1],[2,1],[2,3],[2,1],[4,0],[3,0],[2,5],[3,3],[4,1],[2,2],[3,0],[0,-3],[-1,-5],[1,-1],[2,4],[4,3],[3,-1],[2,-1],[-1,-2],[0,-2],[3,-1],[7,10],[2,-1],[0,-4],[2,1],[2,2],[0,-5],[-3,-6],[-7,-7],[1,-1],[6,3],[3,2],[2,1],[2,2],[1,6],[2,1],[0,-1]],[[3903,87204],[1,-2],[0,-4],[-1,-2],[-2,3],[-2,1],[-1,-1],[-2,-1],[-2,-2],[-1,0],[-1,2],[-3,0],[-3,3],[0,8],[4,10],[4,7],[3,4],[1,-1],[-1,-7],[-2,-9],[4,-7],[4,-2]],[[3323,88955],[3,-3],[0,-7],[-6,-6],[-9,-1],[-5,5],[3,8],[6,4],[8,0]],[[3081,89419],[2,-4],[0,-9],[-2,-4],[-5,0],[-4,2],[-3,6],[2,6],[7,3],[3,0]],[[3395,89421],[7,3],[4,0],[-1,-3],[-5,-5],[-6,-3],[-3,-3],[-5,-5],[-5,-4],[-4,0],[-2,3],[5,5],[3,4],[12,8]],[[3425,89434],[29,13],[3,1],[-5,-5],[-21,-11],[-4,-5],[1,-6],[5,1],[-15,-20],[-6,-1],[-4,4],[2,8],[1,6],[0,5],[5,5],[9,5]],[[3650,89579],[6,3],[1,-1],[-8,-9],[-34,-26],[-11,-5],[-23,-16],[-5,-5],[1,0],[-2,-2],[-10,-3],[-13,-11],[-4,-2],[-3,0],[2,5],[100,70],[3,2]],[[3810,89675],[27,5],[-11,-5],[-7,-5],[-6,-4],[-11,-2],[-21,-13],[-22,-9],[-5,-3],[-5,-5],[-12,-5],[-14,-11],[-25,-12],[-13,-10],[-19,-10],[2,4],[9,8],[122,72],[11,5]],[[3864,89708],[10,3],[3,-1],[-1,-3],[-16,-10],[-7,-7],[-5,-4],[-3,4],[3,5],[5,5],[11,8]],[[3927,89743],[13,6],[1,-2],[-17,-13],[-7,-4],[-13,-14],[-5,-4],[-13,-4],[1,6],[7,8],[3,4],[30,17]],[[4031,89798],[-2,-1],[-11,-5],[-18,-13],[-7,0],[-3,-1],[-3,-4],[-9,-5],[-5,-2],[-2,3],[4,5],[56,23]],[[4031,89798],[1,1],[10,5],[7,1]],[[4049,89805],[-18,-7]],[[4071,89814],[-9,-4],[-1,-2],[-12,-3]],[[4049,89805],[22,9]],[[4071,89814],[5,3],[1,0],[-6,-3]],[[4232,89879],[4,0],[1,-3],[-3,-2],[-4,0],[-2,-2],[-1,-1],[-4,-2],[-10,0],[-3,-2],[-2,-5],[-2,-3],[-1,-2],[-1,-1],[-5,-1],[-13,0],[-37,-15],[-17,-1],[-5,-3],[-11,-9],[-22,-8],[-16,-2],[77,31],[77,31]],[[15902,79484],[-2,5],[-6,9],[-6,-4],[-6,-2],[-8,6],[-6,12],[0,11],[3,9],[-1,6],[-4,3],[-7,1],[-6,0],[-6,-3],[-23,-19],[-4,-9],[1,-11],[3,-13],[-1,-1]],[[15808,79484],[-1,7],[-2,10],[-2,7],[-4,8],[-4,4],[-2,4],[4,8],[15,19],[6,10],[4,17],[-11,-14],[-12,-7],[-12,0],[-13,8],[0,4],[4,7],[-2,25],[2,9],[5,2],[7,-2],[5,-6],[-2,7],[-9,10],[-9,7],[-7,8],[-3,15],[8,3],[11,-2],[9,2],[-5,12],[2,5],[5,0],[2,-2],[2,-6],[4,-4],[5,0],[5,4],[1,-5],[3,4],[5,1],[5,-1],[4,-4],[13,-3],[11,11],[8,20],[8,43],[2,10],[0,11],[-1,5],[-2,3],[-3,1],[-1,-5],[1,-19],[-1,-7],[-16,-47],[-23,-11],[-53,21],[-4,1],[-12,-5],[-2,9],[-2,7],[-2,4],[2,8],[8,8],[3,9],[1,9],[0,9],[-3,41],[0,7],[3,19],[4,17],[3,7],[-1,1],[-1,0],[-1,1],[0,3],[3,3],[3,7],[0,9],[-2,8],[12,15],[4,11],[-4,7],[-5,-8],[-4,-6],[-4,-2],[-3,-2],[-3,-5],[-3,-5],[-1,-5],[2,-14],[0,-8],[-1,-9],[-2,-3],[-3,-1],[-6,-6],[-8,1],[-3,0],[-2,-3],[-4,-10],[-2,-3],[-7,2],[-4,0],[-2,-4],[-2,-2],[-8,-7],[-2,-3],[-12,-10],[-3,-5],[4,-8],[-1,-12],[5,-22],[-3,-13],[-5,-8],[-4,-5],[-5,-2],[-6,1],[-63,45],[-7,3],[-16,1],[-6,3],[-5,5],[-2,5],[-1,4],[-1,4],[-3,3],[-5,3],[-2,0],[-3,2],[-3,6],[-5,11],[-9,32],[-2,4],[-5,7],[-3,5],[-1,8],[0,10],[1,10],[3,4],[2,4],[4,17],[3,7],[4,5],[4,2],[10,2],[4,-2],[2,-5],[1,-6],[2,-6],[15,-26],[8,-20],[1,-2],[2,-23],[0,-8],[2,-9],[5,-23],[3,-9],[4,-5],[3,5],[2,9],[2,7],[-3,10],[-2,11],[0,11],[3,9],[3,2],[9,2],[2,4],[2,4],[2,3],[16,4],[13,7],[11,13],[5,18],[-36,-29],[-37,-7],[-3,1],[-1,12],[-3,10],[-17,33],[-10,10],[-2,4],[-2,12],[3,10],[9,17],[2,11],[1,11],[-1,21],[-2,12],[-5,6],[-6,3],[-4,5],[-4,13],[1,13],[5,11],[11,6],[5,8],[4,2],[12,2],[4,2],[10,19],[5,12],[-1,5],[-6,6],[-10,22],[-4,5],[-16,14],[-12,5],[-11,14],[-7,4],[3,-9],[3,-7],[4,-7],[4,-6],[5,-4],[12,-7],[6,-5],[1,-3],[2,-8],[1,-3],[3,-3],[6,-5],[2,-3],[-2,-7],[-5,-9],[-10,-12],[-31,-20],[-4,-6],[-1,-11],[-1,-11],[1,-12],[2,-12],[3,-9],[5,-8],[10,-11],[4,-10],[-2,-5],[-3,-13],[-2,-6],[-7,-7],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-2,0],[-4,2],[-2,5],[-1,13],[0,3],[0,2],[0,2],[0,6],[-1,3],[-4,5],[-1,3],[2,7],[2,8],[-1,7],[-4,3],[-2,-5],[-8,-28],[3,-3],[3,-7],[1,-7],[-3,-3],[-4,0],[-3,-3],[-1,-5],[2,-8],[-6,-6],[-13,-8],[-6,-2],[-22,0],[-7,-4],[2,-14],[-4,-3],[-6,4],[-6,13],[-8,0],[-14,-4],[-7,2],[-13,11],[-10,4],[-2,5],[-2,6],[0,13],[-1,4],[-15,23],[-6,6],[-6,3],[-2,2],[-4,11],[-3,3],[-4,1],[-16,16],[-9,14],[-16,37],[-2,9],[3,10],[5,-6],[6,-10],[4,-6],[6,-4],[11,-18],[5,-7],[-5,22],[0,11],[4,4],[2,2],[1,6],[2,7],[0,5],[-2,4],[-8,8],[4,7],[5,3],[3,4],[-2,11],[6,5],[6,10],[3,11],[-2,10],[5,16],[1,5],[-1,6],[-6,9],[-1,7],[-2,9],[-7,7],[-7,5],[-5,5],[-2,6],[1,1],[2,1],[7,11],[1,4],[1,8],[3,11],[8,5],[9,2],[6,0],[9,-4],[3,0],[3,2],[5,9],[3,2],[5,1],[13,9],[5,5],[15,24],[3,7],[-3,7],[-7,-7],[-12,-18],[-22,-17],[-23,-8],[-23,4],[-4,-6],[-2,-11],[-11,-19],[-2,-6],[-3,-5],[-16,-18],[-6,-3],[-6,2],[-7,3],[-6,2],[-12,-2],[-3,2],[-3,7],[1,5],[3,6],[1,7],[-2,12],[-4,13],[-5,9],[-6,2],[2,-12],[2,-16],[-1,-14],[-12,-11],[-7,-9],[-5,-1],[-2,15],[1,8],[2,2],[2,1],[3,5],[-2,20],[1,2],[-1,6],[0,6],[1,6],[1,15],[1,4],[1,3],[3,3],[20,8],[3,6],[2,16],[4,5],[13,5],[1,3],[4,10],[1,4],[0,3],[-1,11],[0,4],[2,9],[0,25],[3,13],[7,16],[2,8],[-4,12],[-17,12],[-2,2],[-2,4],[0,5],[1,3],[6,12],[7,8],[3,5],[7,17],[5,6],[6,3],[-5,19],[-3,6],[-5,3],[-4,0],[-4,-2],[-2,-7],[0,-13],[-2,-6],[-12,-24],[-4,-5],[-10,-9],[-5,-7],[6,-3],[3,-3],[1,-4],[0,-15],[1,-3],[6,-2],[5,-5],[2,-8],[-3,-18],[-3,-21],[-1,-7],[2,-8],[3,-5],[0,-5],[-7,-15],[-2,-2],[-2,-1],[-1,1],[0,2],[-1,1],[-1,0],[-1,-3],[-1,-5],[-17,-19],[-4,-16],[-17,-19],[-6,-15],[3,-11],[-4,-11],[-7,-7],[-7,-3],[-5,0],[-3,4],[-5,15],[-5,9],[-1,4],[0,4],[1,5],[1,4],[-1,5],[-3,1],[-4,-5],[-4,-12],[-4,-6],[-2,0],[-2,2],[-4,2],[-4,9],[-2,18],[-2,14],[-8,-5],[0,-5],[0,-8],[-2,-9],[-2,-6],[-4,-8],[-5,-5],[-24,-6],[-8,0],[-5,2],[-4,7],[1,5],[4,4],[3,5],[2,7],[4,22],[0,7],[-1,6],[-2,9],[-1,5],[2,17],[2,11],[3,9],[3,7],[5,6],[7,4],[3,3],[2,4],[3,8],[3,5],[-9,4],[-7,-8],[-6,-11],[-8,-6],[-7,-7],[-3,-17],[-1,-18],[2,-11],[-2,-9],[-2,-13],[-2,-10],[-10,-7],[0,-7],[2,-7],[1,-3],[-1,-9],[-1,-5],[-4,-9],[-3,-4],[-4,-3],[-4,-2],[-9,-1],[-1,1],[-3,3],[-15,25],[-6,4],[2,7],[10,2],[3,6],[-13,7],[-8,1],[-6,-3],[-1,-3],[-4,-9],[-2,-4],[-26,-15],[-14,-2],[-14,4],[-9,13],[-6,-6],[-6,-1],[-30,7],[-6,4],[-5,7],[1,3],[5,3],[4,5],[5,4],[5,-4],[8,-11],[-2,17],[0,9],[2,7],[2,2],[10,3],[6,6],[3,2],[2,-1],[1,-2],[2,-2],[6,9],[24,6],[5,3],[6,7],[-6,9],[-7,-1],[-14,-8],[-7,-2],[-20,-14],[-8,-4],[-23,0],[-2,2],[-4,11],[-2,3],[-1,1],[2,3],[6,4],[7,3],[29,2],[19,11],[9,1],[22,-9],[7,2],[24,13],[21,5],[3,0],[4,-3],[3,-1],[3,2],[1,5],[5,21],[1,5],[2,4],[4,3],[7,3],[3,4],[4,14],[-4,11],[-5,10],[-3,12],[1,11],[5,4],[19,2],[3,5],[1,8],[3,14],[2,4],[2,2],[3,3],[1,8],[0,6],[-2,6],[-1,6],[-2,4],[-4,11],[-7,35],[-4,10],[-16,19],[0,-14],[1,-10],[6,-29],[8,-28],[2,-5],[7,-7],[2,-4],[-4,-12],[-5,-7],[-7,-4],[-8,-2],[-3,-1],[-4,-5],[-4,-5],[-3,-5],[-1,-6],[-1,-10],[0,-9],[1,-4],[9,-10],[2,-4],[-1,-9],[-3,-3],[-3,0],[-5,-2],[-6,-10],[-10,-24],[-7,-6],[0,4],[-31,-3],[-5,-7],[-2,-4],[-4,-3],[-5,-1],[-4,1],[-4,7],[-2,7],[-3,4],[-6,-1],[-4,-4],[-7,-11],[-4,-2],[-35,-8],[-7,2],[-4,11],[4,10],[12,5],[6,7],[6,11],[19,15],[7,9],[-1,3],[-12,0],[-7,-3],[-7,-6],[-6,-3],[-8,4],[-5,10],[1,10],[3,10],[1,13],[-1,8],[-4,-3],[-5,-8],[-5,-3],[-1,2],[-1,4],[0,4],[0,2],[-4,0],[-4,0],[-12,-4],[-14,-1],[-7,-2],[-20,-18],[-8,-3],[-6,5],[-3,4],[-7,3],[-3,4],[-1,6],[1,9],[-1,5],[3,7],[14,20],[3,-1],[3,-3],[3,-3],[30,-4],[11,6],[27,-6],[5,3],[6,8],[3,9],[-2,9],[-3,-2],[-10,-11],[-5,-2],[-45,7],[-15,7],[-6,8],[-7,27],[-2,31],[0,8],[-2,0],[-6,-27],[-3,-15],[2,-13],[6,-17],[-3,-8],[-5,-6],[-2,-10],[-4,-5],[-27,-17],[-7,0],[-6,3],[-8,5],[0,4],[-2,4],[-4,3],[-9,2],[-4,3],[-5,10],[-3,5],[-4,0],[-3,-3],[-2,-4],[-3,-7],[-1,-4],[-2,-4],[-35,0],[-7,5],[-4,4],[-4,3],[-9,3],[-7,0],[-4,1],[-4,4],[-2,-8],[5,-7],[7,-4],[13,-3],[14,-9],[7,-2],[15,0],[4,-2],[4,-2],[1,-3],[-4,-1],[-6,-4],[-12,-19],[-6,-6],[-6,1],[-7,4],[-17,21],[-23,7],[-3,2],[-7,10],[-2,12],[-2,0],[-4,-3],[-2,-1],[-7,1],[-5,2],[-28,16],[-5,6],[6,6],[2,4],[1,4],[-3,4],[-2,2],[-3,1],[-3,-1],[2,0],[-7,-2],[-10,4],[-6,8],[-1,8],[4,14],[2,18],[3,14],[5,5],[0,4],[-6,6],[-6,-2],[-8,-5],[-22,-7],[-8,0],[-7,8],[-1,11],[-24,23],[-1,11],[-3,7],[0,6],[1,7],[0,8],[5,4],[5,5],[5,5],[30,11],[5,6],[10,9],[44,-7],[2,-1],[5,-6],[3,-1],[44,8],[11,12],[10,6],[2,2],[3,9],[2,13],[1,13],[-1,10],[-4,-8],[-9,-24],[-3,-5],[-7,-3],[-15,-13],[-7,-4],[-65,8],[0,4],[6,5],[6,7],[2,6],[-6,2],[-8,-2],[-13,-12],[-8,-2],[-16,4],[-9,0],[-6,-6],[-5,-3],[-9,0],[-7,5],[-3,12],[3,9],[6,8],[8,5],[6,2],[7,1],[5,3],[12,27],[4,8],[6,5],[7,1],[2,2],[0,5],[-1,6],[1,5],[2,4],[3,3],[3,4],[2,7],[0,13],[-1,12],[-1,11],[3,11],[5,8],[7,5],[42,16],[76,8],[93,-15],[9,1],[6,6],[1,2],[0,3],[0,7],[1,2],[5,-1],[1,0],[2,5],[1,7],[1,6],[2,3],[-9,29],[0,7],[-3,6],[-3,5],[-2,6],[0,-5],[1,-2],[1,-2],[-3,-13],[2,-9],[3,-9],[2,-9],[-1,-8],[-3,-3],[-2,-2],[-4,-3],[-5,-16],[-110,23],[-46,-11],[-7,3],[-12,12],[-6,1],[-1,-15],[-9,-8],[-10,-2],[-7,9],[2,1],[1,2],[0,2],[-1,-1],[2,3],[1,2],[1,3],[-2,0],[-1,23],[1,6],[3,3],[10,4],[3,1],[3,7],[7,45],[-3,8],[-4,-8],[-3,-11],[-3,-13],[-2,-10],[0,-9],[-2,-4],[-12,-1],[-2,1],[-1,-2],[-2,-7],[-4,-29],[-5,-9],[-8,3],[-8,5],[-9,0],[-9,-2],[-8,-5],[0,-4],[7,-2],[13,-8],[6,-2],[14,2],[7,-1],[2,-7],[-3,-7],[-18,-10],[-4,-9],[-5,-18],[-4,-7],[0,-4],[5,-7],[2,-8],[-2,-10],[-14,-29],[-6,-8],[-6,-3],[-13,-1],[-4,1],[-8,17],[-1,3],[4,7],[18,0],[6,2],[0,3],[-3,3],[-5,6],[-3,3],[-5,1],[-21,-5],[-1,0],[-2,6],[1,4],[2,3],[1,4],[-1,7],[-2,6],[-1,6],[0,9],[-6,-3],[-2,6],[0,11],[-2,11],[-3,7],[-4,4],[-3,5],[-1,14],[0,11],[1,4],[2,5],[1,4],[-1,4],[-2,4],[-1,5],[0,16],[0,4],[-3,8],[-1,6],[1,3],[3,13],[0,1],[-1,7],[-1,2],[1,3],[1,2],[2,1],[1,11],[2,10],[3,9],[9,5],[10,12],[4,2],[15,-2],[8,0],[5,6],[-2,4],[4,15],[3,39],[3,15],[6,14],[9,13],[10,9],[9,5],[6,1],[5,-2],[2,-6],[0,-9],[-2,-11],[-4,-5],[-5,-1],[-16,2],[-3,-4],[-13,-38],[9,13],[8,16],[3,3],[24,0],[9,3],[7,10],[-9,27],[-1,5],[-2,2],[-1,6],[1,6],[3,2],[7,3],[4,3],[2,4],[3,10],[7,6],[20,5],[6,5],[5,7],[16,30],[4,4],[7,2],[15,-5],[14,-1],[7,-2],[6,-5],[11,-17],[4,-9],[2,-11],[-3,-13],[11,-20],[36,-48],[6,-13],[4,-4],[8,-13],[4,-7],[5,-21],[2,-8],[0,15],[1,11],[-1,10],[-4,9],[-3,3],[-3,2],[-2,3],[-2,11],[-5,14],[-3,6],[-11,15],[-26,24],[-8,19],[3,11],[0,8],[-2,6],[-5,15],[-3,7],[0,8],[4,10],[2,2],[9,3],[1,2],[1,5],[1,1],[5,-1],[12,7],[11,2],[11,0],[-5,13],[-9,2],[-36,-15],[-8,-5],[-7,-8],[-10,-6],[-10,-1],[-22,7],[-2,1],[-5,-1],[-2,0],[-2,3],[-1,4],[0,3],[-1,3],[-7,10],[-1,6],[4,8],[-5,16],[-3,4],[-3,2],[-1,4],[-3,31],[2,8],[10,19],[6,8],[6,7],[11,6],[9,15],[6,6],[14,5],[6,7],[2,14],[3,10],[9,16],[2,13],[-2,11],[-6,21],[-4,24],[-7,9],[-14,12],[-2,4],[-2,4],[-2,3],[-3,1],[4,-15],[12,-27],[5,-19],[0,-4],[0,-14],[1,-3],[4,-8],[1,-5],[-2,-8],[-19,-34],[-27,-25],[-17,-22],[-3,-5],[-5,-3],[-5,-5],[1,-10],[-4,-4],[-2,-4],[-1,-4],[0,-7],[2,-5],[2,-3],[1,-3],[-2,-9],[-4,-6],[-47,-28],[-5,-14],[-6,-18],[-14,-10],[-13,-6],[-6,-7],[-1,-12],[-4,-2],[-6,3],[-6,2],[-5,-5],[-5,-7],[-6,-5],[-7,4],[2,6],[0,12],[1,4],[3,6],[6,17],[-7,-2],[-5,-9],[-7,-21],[-3,-10],[-1,-7],[0,-6],[-1,-5],[-3,-4],[-3,-3],[-2,-3],[-5,-9],[-4,-5],[-3,2],[-4,12],[0,7],[0,8],[-1,7],[-7,5],[-2,5],[-2,6],[-1,7],[3,4],[1,5],[1,5],[1,5],[4,4],[7,0],[4,2],[3,8],[-3,8],[-10,16],[-6,17],[-1,5],[1,9],[3,5],[3,4],[2,5],[2,4],[2,5],[-1,5],[-4,2],[-2,-2],[-3,-9],[-3,-5],[1,-5],[-1,-5],[-1,-7],[-1,-8],[0,-8],[2,-3],[3,-4],[2,-9],[-1,-12],[-5,-14],[-13,-23],[-9,8],[-4,6],[-3,17],[-4,6],[-3,5],[-3,7],[2,4],[-3,22],[4,21],[8,16],[11,6],[3,-2],[3,-4],[3,-4],[1,-2],[4,2],[0,6],[-2,5],[0,3],[3,4],[6,2],[2,2],[2,5],[2,7],[2,13],[-5,-4],[-10,-10],[-27,-8],[-5,-5],[-4,-9],[-2,-4],[-3,-1],[-3,-1],[-2,-3],[-1,-4],[-1,-4],[-13,-37],[-1,-4],[-1,-7],[-2,-5],[-2,-3],[-4,-4],[-2,-3],[-11,-37],[-13,-25],[-4,-5],[-4,0],[-3,3],[-3,3],[-2,2],[-8,0],[-3,2],[-4,2],[4,8],[4,5],[10,7],[-3,11],[0,12],[3,11],[5,7],[3,2],[3,0],[2,-1],[3,-1],[3,2],[1,5],[0,6],[1,5],[4,8],[3,11],[2,11],[-4,15],[0,12],[0,2],[-2,18],[0,7],[3,10],[11,30],[0,5],[0,6],[1,6],[1,5],[8,12],[1,5],[0,6],[1,4],[1,3],[4,10],[1,3],[0,3],[1,7],[-1,12],[-3,22],[0,13],[2,17],[6,11],[9,6],[11,3],[2,2],[0,4],[-2,3],[-1,1],[-18,-7],[-4,1],[-3,8],[-2,0],[-1,-12],[-3,-13],[-4,-13],[-4,-7],[-9,-12],[-3,-6],[-2,-4],[-2,-4],[-3,-3],[-7,-2],[-9,2],[-18,11],[-17,2],[-3,2],[-2,14],[-2,4],[-3,2],[-2,4],[-6,16],[0,2],[1,6],[-1,12],[-3,21],[0,12],[-3,24],[-1,13],[0,3],[-3,10],[-1,7],[2,5],[3,2],[3,1],[4,2],[-5,6],[-6,-1],[-4,2],[-2,11],[2,5],[14,3],[5,2],[-5,3],[-17,-3],[-5,3],[-4,7],[-16,36],[-1,5],[-1,5],[-2,1],[-1,-1],[-2,-3],[1,-4],[1,-6],[2,-10],[-6,-5],[-5,3],[-28,35],[-4,3],[-5,3],[-5,7],[-7,16],[-2,12],[2,11],[4,10],[5,6],[-9,0],[-3,3],[1,7],[3,7],[-1,4],[-2,4],[-1,8],[2,12],[10,14],[3,10],[-8,1],[-4,-2],[-4,-5],[-3,-7],[-2,-4],[-3,0],[-4,5],[-4,11],[-4,28],[-3,14],[8,-2],[14,-10],[8,0],[5,6],[5,9],[5,6],[6,-1],[4,-9],[5,-27],[2,-9],[3,-2],[9,-6],[3,-4],[6,-12],[2,4],[-4,8],[-3,5],[0,3],[2,3],[5,-2],[8,-9],[21,-33],[12,-10],[3,-5],[1,-1],[2,-3],[1,-3],[-1,-2],[-1,-1],[0,-4],[0,-4],[0,-3],[2,-8],[2,1],[1,7],[1,17],[-1,7],[-2,4],[-5,1],[0,3],[3,3],[6,7],[2,3],[25,8],[4,7],[4,13],[12,-12],[15,-5],[29,1],[6,-2],[6,-5],[4,-7],[3,-11],[2,-5],[1,-3],[-1,-4],[-2,-5],[-1,-3],[-1,-5],[-5,-19],[10,16],[5,5],[5,-3],[5,-5],[11,-10],[4,-7],[1,-7],[1,-32],[3,-7],[20,-15],[-2,13],[-5,7],[-6,6],[-4,10],[0,8],[1,13],[-1,8],[-3,4],[-10,7],[-3,1],[-3,3],[-8,11],[-2,4],[-1,2],[-5,16],[-2,4],[-5,13],[-3,4],[-2,2],[-3,5],[-1,6],[1,7],[-6,-2],[-18,2],[-28,-4],[-13,10],[-8,3],[-3,-7],[-1,-10],[-4,-8],[-5,-5],[-5,-3],[-3,-1],[-11,1],[-3,-2],[-2,-3],[-2,-3],[-4,0],[-2,3],[-4,11],[-2,2],[-4,1],[-3,2],[-3,5],[-1,6],[-4,12],[-8,5],[-9,2],[-4,2],[-1,8],[-2,8],[-8,14],[-6,-5],[-4,8],[-4,11],[-4,6],[-2,2],[-2,4],[-2,6],[-1,6],[1,9],[1,5],[4,8],[6,19],[1,10],[-6,23],[1,13],[4,10],[5,7],[7,3],[6,0],[5,3],[1,12],[3,11],[6,2],[27,-12],[22,-3],[2,2],[-3,8],[-5,5],[-5,0],[-8,-3],[-7,2],[-12,9],[-8,3],[-2,4],[-3,2],[-3,-3],[-2,2],[-2,2],[-1,4],[0,4],[1,2],[2,1],[1,1],[2,10],[10,24],[1,4],[0,6],[0,10],[1,5],[3,4],[5,6],[-6,1],[-9,-7],[-8,-11],[-5,-12],[-5,-14],[-5,-14],[-1,-1],[-2,-4],[-1,-3],[-4,-4],[-2,0],[-3,4],[-2,-16],[-7,-9],[-7,-7],[-6,-21],[-20,-32],[1,11],[6,19],[1,10],[-3,8],[-3,-7],[-6,-21],[0,17],[1,8],[1,7],[-7,15],[-5,5],[-7,1],[0,-4],[9,-16],[3,-27],[-2,-25],[-8,-10],[-5,8],[-8,22],[-4,-1],[0,-11],[8,-25],[-3,-5],[-6,-1],[-6,-5],[-7,-5],[-4,-7],[-2,-5],[-1,-8],[-2,-7],[-3,-3],[-3,0],[-3,-3],[-3,-3],[-11,-17],[-3,-8],[-1,-15],[1,-25],[-1,-13],[-5,-5],[0,-3],[5,-3],[2,-12],[0,-14],[-2,-12],[-2,-10],[-4,-12],[-4,-10],[-3,-5],[-13,7],[-71,104],[-6,3],[-16,24],[-2,6],[-3,7],[-10,19],[-5,5],[0,4],[3,-1],[3,-2],[6,-6],[-4,14],[-5,6],[-6,3],[-6,6],[-2,5],[-6,15],[-2,1],[-6,-1],[-3,0],[-2,3],[-8,14],[-9,8],[-2,4],[-2,5],[-3,11],[-3,4],[-3,3],[-10,5],[6,9],[2,6],[1,8],[-2,1],[-10,-10],[-4,1],[-2,5],[-7,8],[-3,5],[-8,20],[-3,4],[5,14],[0,20],[-2,45],[2,12],[8,23],[2,10],[3,-1],[16,4],[5,3],[4,-4],[1,-6],[0,-6],[1,-4],[3,-4],[6,-5],[3,-3],[7,-16],[6,-17],[1,-5],[0,-4],[1,-3],[2,-4],[2,-3],[3,0],[2,0],[2,-1],[2,-3],[2,-7],[2,-2],[2,-1],[4,2],[1,-1],[1,-4],[1,-6],[0,-3],[4,-10],[2,-4],[4,-2],[-3,11],[-2,12],[-4,10],[-10,7],[-12,18],[-3,7],[-3,6],[-3,13],[-2,5],[-8,12],[-1,3],[-2,9],[-5,7],[-2,7],[1,11],[4,8],[7,7],[8,4],[6,2],[8,-1],[4,-2],[8,-8],[4,0],[8,2],[24,-15],[7,1],[8,8],[5,9],[3,2],[6,4],[8,6],[3,2],[4,-1],[-4,10],[-7,-2],[-14,-12],[-2,-2],[-4,-12],[-2,-2],[-8,1],[-40,20],[-17,4],[-16,-5],[-19,-14],[-6,-2],[-3,-2],[-6,-11],[-3,-3],[-12,1],[-4,-1],[-3,-3],[-3,-8],[-3,-1],[-4,1],[-4,2],[-4,5],[-2,6],[-4,7],[-28,7],[-1,4],[-1,10],[-1,2],[-2,2],[3,3],[15,10],[10,2],[-4,5],[-6,5],[-3,4],[0,6],[0,9],[-1,8],[-2,4],[-2,5],[3,28],[-1,11],[-2,-9],[-2,-11],[-2,-9],[-4,-3],[-6,-3],[-11,-8],[-7,-1],[-14,6],[-6,2],[-4,2],[-4,6],[-2,9],[2,10],[-2,7],[0,9],[2,9],[2,6],[6,6],[13,0],[5,4],[-11,15],[-4,10],[-2,14],[1,13],[0,6],[2,5],[4,2],[4,-3],[5,0],[1,7],[-3,5],[-8,11],[-5,12],[2,5],[7,-1],[6,-5],[6,-6],[5,-9],[7,-19],[9,-16],[1,-3],[2,-8],[62,-108],[6,-6],[7,-4],[8,-2],[4,1],[1,2],[-1,3],[-3,3],[-4,1],[-3,-1],[-4,1],[-4,4],[-13,22],[-3,8],[0,12],[6,21],[-2,8],[2,11],[3,4],[10,1],[5,4],[4,6],[1,7],[-4,4],[-3,-2],[-16,-10],[-4,-7],[-1,-7],[-1,-9],[0,-12],[-4,-10],[-10,9],[-15,24],[-6,6],[-22,46],[1,3],[1,6],[-11,11],[-10,17],[-4,19],[10,17],[14,8],[15,3],[14,-4],[17,-13],[7,-3],[3,-3],[2,-3],[5,-15],[6,-8],[8,-6],[24,-6],[5,0],[3,2],[4,5],[0,2],[-3,1],[-20,0],[-7,3],[-8,5],[-5,9],[-11,23],[-6,5],[-4,0],[-3,3],[-5,7],[-4,2],[-9,1],[-4,3],[2,16],[1,4],[3,6],[2,2],[3,13],[1,3],[0,8],[1,5],[2,2],[4,1],[2,1],[7,7],[4,6],[4,7],[3,8],[3,8],[-5,2],[-4,-4],[-6,-14],[-5,-4],[-9,-4],[-5,-5],[2,8],[4,10],[4,8],[9,8],[11,31],[5,7],[7,5],[7,2],[6,-3],[5,-9],[-2,-5],[-4,-6],[-3,-11],[4,1],[2,2],[3,3],[2,3],[3,6],[1,2],[1,-1],[8,1],[6,4],[10,19],[5,5],[4,-2],[8,-8],[4,-2],[4,1],[7,6],[3,1],[15,-3],[6,3],[5,12],[-14,-9],[-78,9],[-6,-2],[-3,0],[-3,4],[-1,6],[3,7],[5,14],[5,26],[4,10],[7,4],[7,19],[3,4],[3,3],[2,4],[3,7],[0,3],[0,6],[0,3],[2,5],[2,3],[3,12],[1,5],[2,5],[3,4],[6,5],[4,5],[3,1],[1,1],[1,4],[0,3],[0,4],[0,4],[8,22],[5,10],[6,4],[2,3],[0,7],[0,7],[1,3],[2,3],[5,13],[2,5],[8,3],[19,-5],[6,4],[9,9],[3,1],[0,1],[1,3],[-1,6],[0,3],[-2,-1],[-3,-4],[-3,-2],[-7,-8],[-3,-2],[-5,0],[-9,3],[-12,1],[-3,-2],[-3,-4],[-8,-19],[-2,-3],[-6,4],[0,26],[-8,11],[-3,11],[-10,57],[-5,15],[-5,-3],[3,-10],[1,-11],[0,-25],[7,-22],[3,-15],[-1,-6],[-3,-3],[0,-6],[0,-7],[0,-4],[-2,-5],[-5,-4],[-3,-3],[-2,-6],[-1,-5],[-1,-6],[1,-8],[1,-4],[2,1],[2,4],[-2,7],[3,4],[2,2],[2,2],[3,0],[-2,-7],[-2,-2],[-2,-2],[2,-5],[1,-3],[2,-1],[3,0],[-1,-5],[-1,-6],[-2,-3],[-6,-4],[-2,-4],[0,-16],[1,-3],[0,-4],[-1,-6],[-10,-14],[-4,-5],[-3,-11],[-3,-24],[-4,-12],[-23,-41],[-7,-18],[-5,-19],[-5,-16],[-2,-4],[-5,-3],[-7,0],[-5,5],[-2,8],[-1,10],[-9,29],[8,16],[5,21],[2,4],[2,2],[5,12],[1,4],[2,5],[17,21],[16,26],[3,12],[-3,10],[-10,17],[-2,11],[0,24],[-1,7],[-1,5],[-3,14],[-1,14],[-2,5],[-2,4],[-3,5],[-8,20],[-4,18],[-2,20],[2,27],[4,16],[0,7],[-1,8],[-2,4],[-3,2],[-3,4],[-4,8],[-2,13],[1,13],[4,12],[22,41],[14,34],[6,9],[-2,6],[-3,2],[-4,-1],[-4,-3],[-3,-12]],[[10832,91718],[4,-3],[25,-3],[0,-2],[0,-1],[-2,-2],[5,-3],[4,-1],[10,0],[0,3],[-1,1],[6,3],[49,-13],[66,-8],[51,-2],[20,12],[65,1],[85,-22],[3,-2],[-31,5],[-17,7],[7,-9],[13,-6],[94,-18],[14,-14],[5,-2],[42,-2],[9,-9],[18,-26],[4,-8],[10,-12],[11,-9],[53,-28],[11,-17],[17,-17],[8,-11],[8,-20],[1,-4],[4,-1],[3,3],[2,4],[3,2],[3,1],[12,-1],[0,-4],[-6,0],[3,-3],[9,-4],[9,-2],[2,1],[0,1],[0,3],[0,3],[1,1],[6,3],[3,8],[1,9],[2,9],[-4,0],[-4,-2],[-7,-7],[7,11],[10,4],[9,-2],[4,-11],[1,-16],[3,-10],[5,-8],[23,-27],[37,-26],[63,-28],[97,-45],[26,-1],[12,-7],[-13,0],[0,-4],[36,-12],[21,-15],[9,-1],[36,4],[19,-4],[2,-2],[4,-9],[3,-2],[16,-3],[29,-19],[15,-6],[23,-2],[5,2],[3,3],[2,4],[3,3],[4,2],[21,-4],[-3,3],[-1,1],[0,4],[11,6],[12,-2],[4,-2],[7,-3],[50,-11],[47,0],[52,-21],[8,-8],[20,-9],[2,-5],[4,-10],[7,-7],[9,-6],[18,-7],[33,-5],[8,-9],[3,-5],[5,-8],[5,-5],[4,-4],[2,0],[2,-2],[1,-4],[0,-4],[0,-2],[9,-5],[24,8],[10,-3],[19,-11],[10,-2],[-3,7],[-11,2],[-3,7],[2,1],[4,3],[-8,2],[-15,12],[-13,5],[-4,6],[-7,21],[-1,4],[-1,2],[-8,3],[-8,5],[-10,4],[-6,6],[-4,9],[-3,11],[46,-4],[-19,9],[-45,3],[-16,20],[4,4],[3,7],[-61,-5],[-12,2],[-38,25],[3,10],[6,2],[13,-4],[0,4],[-14,16],[-4,12],[2,15],[8,4],[10,-5],[19,-18],[22,-11],[25,0],[24,9],[21,14],[-49,-8],[-4,2],[-1,5],[-1,7],[-1,4],[-6,8],[-50,20],[-4,7],[-4,32],[-4,17],[-1,11],[0,9],[9,19],[11,-1],[23,-22],[7,-4],[3,-2],[7,-13],[46,-35],[32,-5],[15,-10],[-4,11],[-12,8],[-33,7],[-9,6],[-58,64],[-6,17],[5,12],[9,7],[11,4],[18,3],[5,-2],[5,-5],[1,-2],[3,-4],[2,-2],[0,-4],[0,-7],[0,-4],[4,-8],[13,-20],[4,-4],[3,6],[-3,13],[-9,22],[-2,8],[-1,6],[0,4],[3,4],[4,4],[5,2],[15,-4],[11,0],[11,-3],[17,-20],[10,-6],[45,-16],[3,0],[1,2],[0,4],[-1,3],[0,3],[-2,0],[-4,2],[-5,2],[-4,4],[-3,5],[-3,6],[0,4],[1,4],[0,6],[-2,11],[-1,3],[-2,4],[-6,19],[-2,2],[0,6],[0,7],[1,5],[4,4],[15,8],[16,15],[8,1],[5,-12],[2,6],[3,4],[4,1],[4,1],[-2,0],[9,4],[16,-6],[8,-2],[15,8],[9,3],[12,-7],[2,4],[2,8],[3,-2],[2,-3],[1,-4],[1,-3],[9,-2],[29,2],[30,-19],[16,-4],[14,13],[3,19],[-9,12],[-14,0],[-11,-13],[3,-6],[1,-2],[-5,-4],[-4,2],[-8,10],[2,7],[1,1],[-5,2],[-1,9],[3,9],[3,5],[4,-1],[6,-6],[4,-2],[4,1],[7,3],[4,1],[-6,12],[1,2],[6,8],[7,6],[4,8],[6,19],[-1,12],[-8,14],[-17,24],[5,3],[5,-2],[4,-3],[5,-2],[6,2],[9,5],[9,-2],[4,1],[3,-1],[0,-9],[-1,-7],[-2,-4],[-3,-3],[-4,-2],[6,-5],[22,6],[8,-1],[5,-7],[5,-8],[4,-7],[7,-2],[0,-5],[-13,-7],[-6,-7],[-5,-10],[-2,-9],[4,1],[6,5],[6,3],[2,-2],[1,-12],[3,-2],[3,-2],[6,-8],[3,-2],[8,2],[8,5],[8,3],[8,-2],[-2,-7],[-3,-4],[-8,-5],[15,0],[4,-2],[2,-2],[2,-2],[2,-2],[6,-3],[7,-1],[8,2],[7,5],[-1,2],[-3,5],[-1,1],[5,5],[12,0],[5,4],[-1,1],[-4,3],[-2,0],[2,7],[3,4],[4,1],[4,0],[-1,-3],[-1,-1],[2,-5],[2,-4],[3,-2],[3,-1],[-3,-7],[-7,-2],[-2,-5],[1,-4],[3,-8],[0,-3],[-1,-5],[0,-1],[-2,-1],[-8,-14],[-7,-9],[-52,-41],[-17,-22],[-2,-28],[-19,0],[-4,-2],[-6,-9],[-3,-2],[-2,-2],[-1,-6],[-1,-5],[-3,-3],[-4,-1],[-2,-4],[-3,-5],[-2,-6],[-1,-6],[1,-3],[1,-2],[-1,-5],[-1,-6],[-1,-2],[-5,-5],[-2,-11],[3,2],[7,0],[3,1],[5,6],[3,6],[3,17],[8,17],[9,11],[12,6],[34,4],[12,8],[14,3],[6,6],[3,9],[0,5],[1,4],[4,6],[4,2],[11,0],[4,1],[8,6],[4,1],[-1,-2],[-1,-7],[0,-3],[13,0],[6,3],[6,5],[-5,5],[-5,3],[7,13],[11,7],[47,11],[57,-2],[2,-2],[4,-5],[2,-1],[4,0],[1,2],[2,3],[2,3],[30,18],[1,0],[3,-3],[2,-2],[3,-1],[3,0],[-2,8],[-1,9],[2,8],[5,3],[6,3],[3,6],[3,6],[5,6],[-4,4],[1,7],[6,11],[1,8],[-2,6],[-8,8],[4,13],[8,12],[17,16],[32,0],[-2,-2],[-2,-3],[-2,-4],[-2,-3],[21,-2],[5,4],[5,6],[5,2],[18,-4],[15,-11],[6,0],[40,8],[10,8],[5,15],[-5,4],[-31,-18],[3,5],[3,3],[2,5],[1,7],[-2,6],[-4,2],[-5,-2],[-7,-8],[-5,-3],[-10,-3],[-2,-1],[-4,-6],[-3,-1],[-6,1],[-7,3],[2,4],[3,4],[3,3],[3,1],[6,12],[5,16],[43,6],[14,9],[9,3],[9,1],[6,-2],[-8,-1],[-21,-11],[-25,-4],[-9,-1],[0,-4],[53,0],[-1,-4],[-2,-4],[-2,-2],[-2,-2],[15,-4],[2,1],[4,3],[1,0],[2,-2],[2,-5],[16,-9],[8,0],[5,12],[-1,6],[6,5],[28,8],[8,4],[12,14],[25,0],[5,3],[13,13],[5,8],[-2,9],[4,6],[13,5],[23,18],[47,12],[8,11],[-2,0],[-4,0],[-2,0],[3,11],[4,10],[5,7],[5,-2],[9,-5],[19,0],[9,-5],[4,-5],[5,-9],[4,-10],[2,-10],[-1,-5],[-4,-8],[-1,-5],[1,-7],[3,-4],[6,-6],[8,18],[1,6],[-7,1],[-2,-1],[5,13],[6,3],[13,-3],[4,3],[3,8],[5,17],[8,17],[4,10],[1,11],[3,8],[15,5],[5,6],[-6,4],[-14,-6],[-7,2],[5,3],[18,25],[9,10],[5,6],[-1,-7],[-2,-4],[-4,-3],[0,-4],[4,-4],[4,4],[4,7],[4,3],[5,1],[10,7],[9,1],[4,2],[-1,6],[3,6],[4,2],[4,-1],[4,-3],[-8,-14],[-3,-8],[1,-7],[6,0],[9,5],[7,7],[2,7],[-2,9],[1,7],[4,3],[6,-3],[6,-1],[8,3],[5,6],[0,6],[4,8],[8,2],[15,-2],[-6,-4],[-8,-3],[-8,-6],[-3,-11],[2,-11],[6,-6],[7,0],[4,9],[-12,4],[6,7],[6,1],[13,-4],[4,1],[4,4],[2,5],[-2,6],[6,3],[9,-18],[8,3],[-2,-12],[1,-6],[4,-2],[6,-1],[-10,-7],[-3,-5],[5,-2],[19,2],[7,3],[12,9],[6,0],[-6,-12],[-2,-7],[-1,-7],[2,-5],[5,3],[5,8],[12,22],[2,3],[5,-2],[1,-5],[-2,-7],[-4,-7],[12,3],[23,11],[6,1],[5,-3],[-12,-9],[-4,-5],[3,-2],[14,3],[12,5],[-1,3],[0,1],[-1,4],[8,4],[2,0],[-2,17],[6,11],[15,17],[-2,4],[-3,2],[-3,2],[-3,0],[0,4],[4,0],[3,3],[2,5],[3,6],[3,3],[10,-3],[5,3],[-5,8],[3,7],[8,6],[7,3],[0,-4],[-1,0],[0,-4],[5,0],[3,-3],[1,-8],[-2,-10],[4,1],[3,-1],[4,-3],[2,-5],[3,-6],[1,-2],[-5,-11],[-3,-4],[-3,-1],[8,-3],[16,3],[8,-4],[-2,-4],[5,-4],[10,3],[4,-3],[-5,-8],[-5,-4],[-2,-6],[2,-9],[6,-7],[5,9],[4,12],[5,5],[4,-8],[-2,-12],[-4,-12],[-4,-7],[-6,-7],[-3,-2],[-4,-1],[-10,0],[-5,-1],[-4,-3],[13,-5],[4,-3],[-6,-6],[-13,-7],[-10,-11],[-31,-11],[-12,-9],[-99,-52],[-23,-5],[-21,-12],[-8,-1],[-1,7],[-5,-1],[-6,-4],[-5,-6],[-10,-14],[-5,-5],[-11,-2],[-3,-2],[-2,-3],[-2,-4],[-14,2],[-2,-2],[-5,-8],[-5,-5],[0,-5],[1,-4],[1,-1],[-2,-10],[-2,-6],[-3,-4],[-23,-10],[-27,-4],[-6,-4],[-4,-13],[-8,-14],[-3,-8],[2,-4],[-2,-4],[-8,-3],[-7,-8],[-5,-4],[-3,-6],[-4,-2],[-9,11],[-10,4],[-5,5],[-3,6],[0,4],[1,3],[0,6],[-3,7],[-3,-1],[-3,-3],[-5,-3],[-22,2],[-5,-4],[-10,-11],[-11,-4],[-24,1],[1,-3],[2,-10],[1,-3],[-17,0],[-3,1],[-3,5],[-2,2],[-6,-1],[-11,-8],[-6,-3],[-3,0],[-5,3],[-3,1],[-3,-1],[-5,-2],[-3,-1],[-24,4],[2,-4],[2,-5],[1,-5],[-1,-6],[-2,-5],[-3,2],[-6,11],[-9,6],[-9,1],[-18,-7],[-19,-13],[-7,-1],[-12,2],[-6,-1],[-8,-5],[-19,-27],[7,-5],[2,-5],[-2,-5],[-12,-4],[-2,-5],[0,-6],[4,-6],[-8,0],[-3,-1],[-3,-3],[14,-12],[3,-5],[-10,-14],[-61,-28],[-3,-4],[2,-7],[7,-17],[1,-7],[-4,-4],[-5,5],[-5,9],[-2,8],[0,5],[-2,4],[-2,4],[-1,2],[-14,-4],[-2,-7],[1,-6],[1,-7],[0,-11],[-3,-3],[-6,-3],[-5,-4],[3,-8],[-2,-9],[-1,-19],[-3,-9],[-2,19],[-1,23],[-2,22],[-8,13],[-5,2],[-6,0],[-10,-2],[-3,-3],[-7,-10],[-4,-3],[-14,0],[-14,-4],[0,-12],[-7,-4],[-9,-3],[-5,-9],[6,-3],[-2,-9],[-11,-22],[-3,-4],[-4,-4],[-3,-4],[0,-7],[4,-4],[6,-1],[11,1],[-4,-4],[-9,-7],[-4,-5],[-2,-5],[-2,-19],[3,-6],[2,-8],[2,-9],[0,-8],[-3,-6],[-6,2],[-4,9],[2,13],[-2,3],[-6,10],[6,11],[2,6],[-2,5],[-4,0],[-7,-11],[-4,-3],[-11,-2],[-4,2],[-13,8],[-5,0],[-1,-2],[0,-3],[-1,-3],[0,-3],[-3,-2],[-3,-1],[-7,1],[-4,0],[-5,-3],[-4,-4],[-2,-7],[0,-3],[-1,-5],[-1,-2],[1,-3],[2,-7],[1,-2],[-2,-6],[-3,-3],[-4,-1],[-4,-2],[3,-4],[8,-8],[-5,-16],[-2,-5],[-4,-4],[-9,-4],[-5,-4],[-6,-11],[-4,-4],[-5,-1],[-4,2],[-4,3],[-3,5],[-2,6],[7,1],[4,5],[0,5],[-7,1],[-23,-12],[2,-7],[2,-5],[3,-5],[4,-3],[-7,-5],[-7,-1],[-3,-4],[2,-15],[4,-9],[5,-6],[12,-9],[19,-8],[3,-3],[4,-4],[3,-4],[19,-4],[7,-5],[0,-8],[10,0],[30,-13],[30,3],[10,-3],[0,5],[-7,7],[-7,4],[-18,1],[9,-4],[0,-5],[-40,10],[-1,3],[0,4],[-3,4],[-4,3],[-4,3],[-4,2],[-5,0],[-9,5],[-1,9],[3,7],[5,-3],[5,-7],[6,-5],[7,-2],[7,0],[-4,8],[-24,14],[-8,3],[-16,-6],[-9,5],[0,5],[2,0],[4,3],[-3,6],[-3,4],[-7,7],[5,2],[15,2],[16,8],[6,0],[4,-1],[5,-3],[8,-8],[1,-3],[3,-6],[1,-3],[3,-2],[6,0],[3,-3],[-2,-3],[4,-4],[3,-1],[8,0],[-1,6],[-1,2],[10,5],[21,-13],[9,0],[-7,15],[-3,9],[1,9],[6,2],[11,-3],[10,-7],[12,-13],[14,-6],[13,-13],[4,3],[0,8],[-9,9],[0,4],[10,3],[53,-19],[9,0],[4,6],[0,9],[3,4],[4,1],[6,0],[2,2],[2,2],[2,6],[1,2],[1,4],[-28,24],[-16,8],[-8,-8],[27,-12],[-8,-5],[-7,2],[-13,7],[-5,1],[-5,-1],[-5,-3],[-5,-5],[3,-12],[-9,-6],[-12,-2],[-13,1],[-5,2],[-2,5],[4,8],[5,3],[5,-2],[5,0],[4,7],[-8,1],[-11,5],[-11,7],[-4,8],[6,9],[13,0],[25,-6],[-7,11],[-11,9],[-13,6],[-9,3],[-9,6],[-4,14],[2,14],[9,7],[-2,6],[-4,2],[-7,0],[3,9],[6,6],[13,5],[36,0],[5,3],[18,19],[8,5],[12,1],[7,5],[4,6],[4,8],[1,5],[0,4],[-1,4],[-1,1],[3,9],[4,11],[5,5],[2,-7],[-3,-30],[-2,-7],[-1,-1],[0,-2],[0,-4],[-1,-5],[-1,-1],[-2,0],[-2,-1],[-2,-4],[-2,-3],[-1,-3],[0,-6],[18,11],[9,11],[3,17],[1,6],[2,17],[2,5],[4,5],[6,1],[3,-3],[-1,-9],[1,-6],[-4,-4],[-5,-2],[-5,0],[13,-8],[4,-1],[2,2],[8,15],[2,3],[4,2],[4,2],[3,-1],[2,-4],[-1,-5],[-5,-9],[-5,-17],[0,-7],[5,4],[3,6],[11,30],[-2,6],[-1,5],[2,4],[2,3],[3,2],[2,1],[3,0],[2,-1],[1,-1],[1,-3],[-1,-3],[1,-1],[9,-1],[16,12],[8,1],[4,0],[6,2],[3,5],[0,9],[5,3],[9,15],[6,3],[-3,-8],[-5,-6],[-1,-4],[6,-3],[3,1],[3,2],[1,3],[2,3],[10,8],[5,5],[13,30],[12,18],[-4,2],[-6,-1],[-26,-15],[-3,-1],[-1,5],[2,6],[-2,4],[-2,1],[-7,5],[-6,1],[-11,-8],[-6,5],[18,12],[10,3],[8,-3],[-2,-4],[6,0],[12,6],[7,2],[32,-4],[-8,12],[1,9],[7,6],[10,1],[5,-1],[14,-7],[19,-3],[5,-3],[8,-10],[-3,-4],[-8,-4],[-6,-12],[0,-7],[2,-11],[0,-7],[-3,-4],[-4,-4],[-8,-4],[6,-2],[11,5],[10,9],[7,8],[3,15],[0,10],[3,5],[9,-1],[-6,20],[4,0],[3,-1],[4,-1],[3,-2],[0,4],[-2,4],[0,5],[1,5],[2,4],[3,5],[2,-3],[2,-5],[2,-3],[10,-32],[4,-8],[-1,13],[-6,33],[-1,8],[6,3],[5,-12],[4,-18],[3,-26],[-1,-7],[-3,-7],[-4,-3],[-23,-11],[-11,-16],[-9,-7],[-4,-5],[-2,-10],[6,5],[12,6],[7,5],[12,20],[5,4],[7,3],[5,0],[5,1],[6,8],[1,1],[1,0],[2,0],[1,4],[0,1],[-1,2],[-1,2],[0,3],[1,5],[0,3],[-1,4],[2,3],[3,6],[1,3],[-4,4],[-2,7],[1,9],[1,8],[-20,27],[-4,16],[-2,4],[0,4],[3,2],[4,-2],[2,-3],[4,-11],[3,-4],[8,-9],[1,-1],[1,-1],[0,-2],[0,-1],[1,-3],[1,0],[2,1],[2,-1],[3,-1],[2,-1],[2,-1],[1,-7],[-3,-27],[-1,-6],[0,-3],[1,-4],[2,-6],[1,-4],[-2,-7],[-6,-8],[-2,-6],[0,-8],[3,-2],[3,4],[3,4],[2,5],[5,14],[1,6],[1,8],[1,5],[1,4],[3,16],[1,5],[-2,15],[-2,7],[-2,5],[-4,1],[-3,3],[-6,11],[-3,3],[-4,1],[-5,3],[-4,5],[-2,7],[3,9],[7,6],[8,2],[6,-1],[4,-5],[2,-7],[-1,-8],[-5,-4],[8,-13],[7,-15],[5,-18],[2,-23],[-2,-11],[-2,-12],[-3,-10],[-4,-10],[-1,-4],[-1,-10],[-2,-6],[-8,-12],[-2,-6],[6,4],[8,10],[8,11],[3,9],[1,12],[14,41],[1,2],[0,2],[-1,6],[-4,11],[-2,6],[1,3],[1,4],[1,7],[2,6],[5,-2],[3,-5],[1,-5],[0,-5],[-1,-8],[1,-9],[3,-21],[0,-5],[0,-7],[-1,-8],[-3,-5],[-2,-3],[-1,-4],[-2,-2],[-8,-21],[-4,-2],[-4,-2],[-5,-4],[-2,-8],[1,-6],[3,-7],[4,-4],[1,3],[3,11],[6,15],[8,13],[6,8],[7,1],[3,-6],[0,-11],[-2,-13],[-3,-11],[-5,-10],[-16,-23],[0,-7],[0,-7],[-2,-9],[-5,-9],[-2,-7],[1,-2],[4,-3],[0,-4],[-2,-6],[-3,-3],[2,-14],[2,-4],[2,-3],[3,-1],[2,2],[3,2],[2,2],[3,-1],[5,-4],[3,0],[-7,15],[0,8],[4,12],[2,9],[-2,10],[-3,10],[-2,9],[3,8],[21,30],[14,7],[6,8],[-3,5],[-4,6],[-1,6],[4,3],[6,2],[7,8],[4,3],[18,6],[7,9],[4,17],[-7,0],[-22,-4],[60,52],[8,11],[4,4],[10,6],[2,4],[1,6],[-2,5],[-2,4],[2,7],[4,5],[9,6],[4,3],[3,7],[3,7],[3,5],[6,2],[0,4],[-3,-1],[-3,1],[-3,1],[-3,3],[12,4],[47,6],[59,25],[16,1],[55,20],[26,21],[7,1],[20,-1],[16,7],[91,11],[11,8],[11,12],[4,7],[3,6],[7,18],[8,14],[11,7],[11,0],[8,-13],[-9,9],[-2,-8],[-1,-15],[-3,-12],[-9,-5],[-4,-5],[0,-6],[4,-11],[2,-5],[1,-7],[-50,2],[-17,-10],[12,-32],[-1,-6],[0,-5],[-1,-7],[-6,-19],[2,-7],[4,-4],[5,-1],[22,-1],[13,-8],[7,0],[8,2],[6,3],[-11,11],[-4,7],[2,8],[7,6],[8,4],[23,2],[7,4],[7,5],[11,16],[12,9],[15,23],[12,12],[48,39],[25,9],[7,8],[-3,3],[-1,1],[1,2],[1,3],[1,4],[1,2],[-1,6],[0,10],[-1,5],[-2,3],[-3,3],[-3,3],[-1,5],[-2,9],[-2,10],[-2,10],[3,12],[7,8],[18,6],[8,6],[4,5],[6,3],[10,2],[4,2],[8,8],[4,2],[33,-4],[20,13],[10,3],[19,0],[64,17],[20,-9],[-8,11],[-11,6],[-44,7],[-36,6],[-45,13],[-8,7],[0,11],[-5,4],[-3,6],[-3,7],[-3,8],[8,0],[21,-6],[8,-4],[6,-1],[8,22],[6,5],[-10,5],[-33,-13],[-22,-3],[-10,3],[-6,12],[1,27],[9,29],[12,24],[12,13],[19,13],[0,1],[0,3],[0,2],[2,2],[3,0],[3,-1],[4,-3],[10,-11],[64,-40],[70,-56],[60,-57],[11,-16],[15,-18],[3,-7],[3,-9],[17,-26],[18,-42],[17,-27],[4,-12],[4,-12],[2,-4],[2,-4],[5,-5],[11,-5],[8,-6],[4,-2],[3,-3],[-6,0],[1,-15],[2,-5],[4,-4],[-8,-7],[-3,-7],[1,-7],[10,-23],[12,-35],[2,-9],[2,-5],[3,-6],[6,-8],[9,-14],[103,-108],[5,-8],[4,-5],[5,-5],[5,-3],[10,-3],[4,-4],[7,-11],[54,-40],[36,-17],[9,0],[17,5],[8,0],[3,-2],[1,-3],[2,-2],[2,-4],[3,-2],[10,0],[2,-2],[1,-4],[2,-4],[0,-2],[40,-20],[7,0],[3,3],[9,12],[3,5],[-3,2],[-5,6],[2,4],[-6,5],[-12,4],[-5,8],[2,4],[2,4],[8,-9],[75,-8],[4,2],[3,6],[2,7],[3,6],[-2,1],[-3,5],[-2,2],[3,5],[12,7],[-17,0],[0,4],[2,0],[3,0],[2,2],[2,2],[-30,0],[-8,-4],[2,-8],[-4,0],[-4,0],[-7,4],[1,2],[0,2],[1,2],[2,2],[-5,3],[-45,-11],[-21,-12],[-10,0],[-2,-2],[-2,-4],[-3,-2],[-3,-1],[-3,1],[3,6],[7,11],[4,7],[-1,2],[-1,2],[0,2],[0,2],[11,3],[12,-3],[0,4],[-3,3],[-1,3],[2,3],[6,10],[4,0],[10,-3],[35,-4],[0,4],[-2,2],[-4,5],[-2,1],[6,3],[6,-4],[13,-11],[18,-6],[18,-2],[-10,9],[-24,8],[-10,11],[2,5],[-5,4],[-2,0],[0,4],[3,0],[3,2],[2,3],[1,5],[12,6],[-8,6],[-47,5],[-6,5],[10,-1],[4,3],[3,6],[-5,1],[-1,1],[0,2],[-2,1],[-1,1],[-1,1],[-2,2],[11,26],[3,6],[9,5],[20,-5],[9,0],[25,20],[4,1],[7,-2],[4,1],[1,2],[0,3],[0,3],[0,3],[2,2],[3,0],[10,-2],[17,-8],[1,-5],[-1,-5],[1,-5],[3,-8],[2,-5],[1,-5],[0,-8],[2,-9],[6,2],[6,8],[4,7],[4,13],[1,8],[3,3],[8,-2],[-14,15],[-15,7],[-42,4],[-17,9],[-9,2],[-14,-6],[-5,2],[-6,12],[2,4],[-3,6],[-2,1],[-3,1],[18,20],[4,4],[6,3],[5,-1],[-2,-10],[2,-7],[-1,-15],[3,-2],[23,0],[3,1],[1,1],[-1,1],[1,1],[8,10],[2,6],[1,7],[0,8],[-2,5],[14,13],[13,22],[4,6],[5,4],[53,20],[3,3],[4,-4],[6,-2],[6,2],[2,8],[-1,7],[-4,7],[-5,6],[-5,2],[-5,-4],[-6,-18],[-4,-7],[-7,-2],[-10,2],[-9,3],[-6,5],[8,8],[9,5],[-6,3],[-24,0],[-3,-1],[-1,-3],[-1,-3],[-1,-3],[-2,-2],[-5,2],[-7,6],[-5,1],[-5,-1],[-4,-3],[-9,-9],[1,-2],[1,-6],[-5,1],[-7,0],[-6,-3],[-4,-5],[2,-1],[2,-2],[3,-6],[-5,-3],[-4,0],[-5,3],[-5,0],[-4,-3],[-3,-4],[-4,-1],[-2,8],[6,8],[3,7],[-1,8],[-5,10],[3,3],[9,5],[10,12],[20,9],[6,5],[2,4],[2,9],[2,1],[3,0],[3,-1],[2,-3],[1,-6],[-2,-13],[-5,-3],[-6,0],[-6,-6],[12,-6],[15,-2],[15,4],[12,8],[-29,-4],[0,4],[3,1],[5,5],[3,2],[16,4],[2,2],[3,3],[2,2],[4,1],[1,-1],[2,-6],[1,-1],[2,0],[5,3],[31,9],[6,-2],[5,-6],[10,-16],[-1,-9],[6,-5],[9,3],[5,11],[-10,0],[10,14],[10,-4],[11,-7],[9,5],[-8,17],[-5,4],[-6,-3],[-6,-5],[-7,-1],[-7,3],[-6,5],[5,3],[7,0],[5,2],[4,7],[-25,7],[-8,-2],[-24,-13],[-8,0],[0,4],[4,1],[4,1],[7,7],[-3,3],[-4,2],[-4,-1],[-6,-3],[-1,0],[-1,3],[0,4],[1,3],[2,1],[2,1],[2,1],[7,8],[9,1],[19,-3],[3,1],[7,6],[3,1],[5,-1],[5,-6],[4,-1],[18,5],[9,0],[7,-9],[-13,-11],[-4,-6],[3,-4],[6,-1],[6,-5],[5,-7],[3,-7],[0,-9],[-2,-9],[-3,-7],[-3,-5],[-7,-4],[-17,4],[-8,-6],[5,-5],[14,0],[5,-4],[-4,-2],[-11,1],[-2,-4],[-2,-6],[-5,-2],[-5,0],[-5,-2],[15,-7],[14,-2],[2,-2],[-1,-5],[-1,-6],[-1,-3],[-3,-5],[-3,-1],[-7,2],[-5,-3],[2,-5],[6,-6],[6,-2],[2,-2],[0,-4],[-1,-6],[2,-3],[3,-3],[4,-2],[4,0],[-6,-6],[-7,-9],[-6,-12],[0,-10],[-5,-1],[-2,-4],[2,-6],[2,-7],[1,-5],[-2,-5],[-5,-9],[7,-9],[18,2],[6,-3],[8,-9],[11,-3],[11,2],[8,6],[8,9],[7,3],[36,-2],[1,-2],[2,-4],[2,-4],[4,-2],[-1,-3],[-3,-9],[2,-1],[2,-2],[2,-1],[-11,-9],[-31,-20],[-7,-10],[-2,-12],[-1,-13],[-5,-13],[-8,-9],[-21,-12],[-13,-12],[-11,-13],[-3,-7],[0,-8],[2,-7],[4,-13],[-22,0],[-6,-4],[5,-7],[18,-16],[4,-1],[11,0],[10,-6],[6,-2],[46,-3],[18,6],[11,21],[-2,-9],[7,-13],[4,-6],[5,-1],[3,5],[-1,6],[-6,9],[3,10],[3,5],[4,0],[5,-2],[1,-2],[0,-3],[2,-3],[20,-8],[4,-1],[2,1],[3,5],[2,2],[4,1],[6,0],[3,-4],[-1,-9],[13,6],[7,1],[8,-3],[2,-1],[2,-3],[2,-3],[4,-1],[4,2],[9,5],[20,4],[45,22],[-11,3],[-4,4],[-2,7],[-1,15],[1,8],[4,3],[5,2],[15,10],[25,4],[-2,-4],[27,-4],[3,3],[1,6],[-1,8],[1,7],[1,4],[1,2],[1,1],[2,5],[2,3],[2,4],[0,4],[-1,8],[-7,11],[-1,5],[1,9],[4,5],[4,4],[4,5],[3,7],[1,5],[-1,29],[-2,12],[-5,9],[-8,7],[23,10],[6,6],[14,16],[7,6],[8,2],[32,-21],[17,-5],[8,18],[0,4],[4,-1],[8,-5],[5,-2],[10,2],[5,0],[13,-7],[15,2],[13,-7],[36,8],[50,-6],[38,8],[109,-17],[23,-12],[37,-1],[86,-43],[86,-42],[35,-40],[12,-13],[100,-75],[34,-11],[20,-15],[24,-10],[59,0],[17,-10],[69,-15],[61,-5],[108,-24],[56,-18],[4,-4],[6,-10],[43,-43],[71,-30],[50,-32],[57,-18],[41,-5],[88,-21],[19,-15],[38,-18],[11,-1],[15,7],[6,1],[13,-1],[6,1],[5,4],[-3,4],[-7,6],[-3,6],[10,4],[9,-5],[22,-27],[4,-3],[5,-1],[2,0],[7,6],[3,1],[3,-2],[3,-3],[2,-2],[81,-13],[12,2],[3,11],[7,0],[16,-5],[22,-15],[9,-11],[3,-1],[66,-13],[8,4],[-44,23],[-7,14],[11,0],[0,4],[-63,36],[-3,5],[1,8],[6,6],[8,4],[15,2],[15,-3],[70,-32],[8,-2],[4,2],[5,5],[3,1],[19,0],[-7,6],[-20,11],[-5,4],[-11,12],[-5,4],[7,4],[32,-11],[16,-11],[8,-2],[35,4],[6,-2],[19,-16],[5,-1],[10,-1],[4,-3],[2,-2],[12,-7],[47,-15],[27,-24],[14,-2],[0,4],[-1,1],[-3,3],[12,6],[13,-5],[44,-32],[8,-10],[7,-12],[9,-12],[61,-23],[23,-18],[-2,-2],[-2,-2],[-4,-8],[10,-9],[4,-6],[2,-7],[3,-7],[7,-6],[48,-21],[5,-5],[-1,-8],[2,-7],[3,-5],[4,-3],[4,-1],[4,-2],[6,-8],[3,-2],[4,-5],[3,-11],[2,-13],[1,-8],[-15,0],[-3,-5],[3,-11],[7,-7],[8,-2],[15,1],[0,4],[1,8],[3,9],[6,3],[4,-3],[13,-21],[-3,-2],[-5,-1],[-4,-1],[-1,-6],[-1,-6],[-2,-3],[-21,-27],[-5,-11],[3,-8],[7,-14],[2,-8],[-6,-7],[-12,0],[-35,10],[-4,-1],[-3,-3],[-7,-8],[-3,-1],[-20,0],[-3,2],[-8,8],[-3,2],[-4,1],[-9,6],[-4,1],[-48,-10],[-59,6],[-19,13],[-10,4],[-8,-5],[7,-5],[16,-16],[13,-7],[23,-25],[-6,-2],[-8,2],[-7,-2],[-3,-12],[-5,-8],[-10,-3],[-96,21],[5,-10],[7,-8],[6,-9],[-2,-11],[-3,-5],[-6,-7],[-3,-7],[-2,-6],[-2,-15],[-2,-7],[8,-8],[5,-3],[4,-1],[17,0],[4,-4],[-5,-5],[-10,-4],[-10,-11],[-7,-3],[-21,-3],[-46,-19],[-12,-1],[-6,-3],[-3,-6],[2,-12],[5,-5],[13,-1],[22,-8],[38,4],[-2,-1],[-2,-2],[-2,-2],[-1,-3],[5,-7],[10,-9],[5,-7],[6,-6],[17,-7],[3,-5],[33,-7],[58,15],[20,-3],[9,-5],[14,-13],[5,-3],[5,-1],[6,1],[9,4],[1,2],[0,4],[1,2],[39,-33],[19,-8],[18,0],[18,8],[7,1],[53,-11],[11,-8],[23,-9],[50,-1],[101,10],[34,-6],[31,-14],[11,-2],[58,8],[24,-6],[91,3],[18,7],[3,5],[-1,8],[-6,11],[12,7],[39,-11],[44,12],[8,-4],[3,-9],[0,-10],[2,-9],[3,-1],[12,1],[8,-5],[4,0],[4,5],[-4,7],[-4,4],[-5,4],[-4,2],[1,4],[1,3],[2,0],[3,0],[0,4],[-2,1],[-5,3],[14,10],[93,-26],[0,4],[-9,12],[5,2],[2,3],[2,5],[3,3],[5,1],[16,-1],[-3,-15],[5,-5],[7,2],[7,7],[10,21],[3,4],[7,7],[3,5],[7,7],[21,5],[14,7],[3,-2],[1,-7],[-3,-8],[-4,-4],[-6,-7],[-3,-5],[3,2],[4,2],[4,-1],[0,-7],[-2,-5],[-7,-2],[-2,-5],[7,0],[8,3],[19,13],[4,-1],[3,-4],[3,-5],[4,-4],[5,1],[32,19],[16,4],[7,6],[10,14],[1,2],[3,2],[6,9],[3,2],[4,1],[13,7],[28,5],[12,16],[31,20],[26,-1],[-1,3],[-3,10],[8,0],[10,-3],[16,-10],[11,-14],[6,-3],[8,5],[-16,16],[-4,12],[7,15],[6,5],[7,1],[14,0],[6,-3],[11,-11],[6,-3],[7,-8],[-1,-19],[-7,-29],[2,-20],[7,-11],[10,0],[6,14],[-3,3],[-8,10],[0,4],[22,-2],[11,-6],[13,-20],[8,-7],[16,-10],[-3,-7],[-8,-5],[-2,-8],[26,-13],[8,-8],[-8,-1],[-19,6],[-6,-3],[-1,-9],[8,-6],[49,-18],[6,1],[6,8],[2,8],[-6,6],[4,8],[13,2],[4,4],[4,7],[4,4],[4,-1],[3,-8],[-2,-1],[-4,-7],[14,-7],[5,-1],[3,-1],[3,-2],[3,-1],[5,4],[5,4],[2,0],[51,-7],[2,-1],[1,-3],[0,-3],[1,-2],[13,-17],[2,-3],[3,-10],[5,-39],[-2,0],[3,-9],[11,-17],[2,-9],[-5,-7],[-13,-9],[-5,-5],[-3,-5],[0,-6],[2,-10],[5,-7],[12,-4],[6,-5],[0,-10],[18,-1],[5,-12],[2,-16],[5,-6],[6,2],[6,11],[7,21],[3,23],[2,82],[2,14],[5,5],[20,3],[11,-3],[5,-10],[0,-7],[-1,-6],[0,-5],[17,-43],[1,-6],[1,-8],[-1,-5],[-1,-5],[0,-8],[1,-16],[3,-19],[5,-16],[6,-8],[6,-1],[4,4],[1,8],[0,9],[-2,4],[-1,5],[-1,4],[1,4],[0,3],[1,4],[-2,5],[4,0],[3,1],[3,2],[3,3],[3,3],[5,-1],[13,-7],[3,-8],[3,-10],[4,-8],[6,-6],[76,-59],[8,-19],[4,-5],[0,-4],[3,-10],[13,-29],[2,-8],[2,-10],[-11,0],[9,-27],[1,-11],[0,-12],[-1,-3],[-5,2],[-5,4],[-10,6],[-9,2],[-9,7],[-5,0],[-4,-3],[-4,-3],[-3,-2],[-5,0],[-12,5],[-5,-1],[0,-1],[0,-3],[-1,-3],[-1,-1],[-2,-2],[-7,-3],[2,-14],[-7,-3],[-24,8],[-19,12],[-15,15],[-17,9],[-7,6],[-14,20],[-8,8],[-9,1],[0,-4],[9,-11],[4,-7],[2,-7],[5,-25],[3,-8],[4,-8],[2,-3],[3,0],[5,3],[0,4],[-1,5],[0,4],[3,5],[2,2],[3,-1],[4,-2],[5,-6],[3,-5],[1,-3],[3,-6],[11,-12],[3,-7],[4,-9],[10,-4],[23,-2],[9,-6],[5,-1],[2,-2],[7,-11],[6,-4],[1,-9],[0,-12],[-2,-11],[2,-4],[-6,-11],[-9,-2],[-9,1],[-9,-4],[13,-7],[37,7],[16,-11],[3,-3],[1,-8],[4,-6],[5,-6],[3,-7],[-1,-5],[-2,-17],[0,-6],[1,-7],[7,-11],[2,-9],[3,-6],[4,-6],[3,-2],[2,4],[1,8],[-1,8],[-2,5],[5,9],[-1,8],[-4,7],[-3,8],[8,-1],[7,-7],[19,-34],[21,-27],[-3,1],[-3,-1],[-2,-3],[-2,-5],[7,-6],[18,-31],[11,-13],[3,-5],[5,-5],[5,1],[2,5],[-3,9],[9,-1],[6,-11],[15,-41],[3,-7],[5,-5],[14,-7],[25,-43],[9,-8],[9,7],[3,11],[-11,8],[-3,13],[-12,16],[-34,34],[-5,7],[-3,9],[-2,13],[-5,6],[-7,3],[-9,10],[-7,4],[-3,5],[-1,4],[-1,10],[-1,4],[-15,22],[-8,27],[-31,19],[-9,17],[16,-9],[8,0],[7,9],[-2,6],[-1,6],[0,4],[1,4],[-4,17],[-2,28],[-11,30],[-2,10],[-1,8],[0,11],[1,11],[2,7],[6,2],[14,-18],[14,-8],[4,-1],[4,5],[0,5],[-1,6],[-2,4],[-1,3],[-2,7],[-8,23],[-3,5],[0,1],[3,4],[4,3],[4,0],[3,-2],[15,-20],[6,-5],[5,-7],[3,-11],[-2,0],[10,-49],[-9,5],[-4,2],[-2,-4],[-3,-4],[-5,1],[-7,3],[-3,4],[-6,8],[-6,7],[-7,2],[-7,-3],[3,-9],[10,-12],[4,-14],[5,-6],[6,-2],[4,2],[-2,9],[4,-2],[9,-7],[3,-4],[-1,-6],[-3,-5],[-8,-9],[3,-3],[11,-8],[3,-2],[4,3],[3,9],[3,1],[4,-5],[4,-10],[5,-7],[6,6],[-12,18],[-5,11],[-4,11],[6,-1],[8,-3],[6,0],[5,8],[0,8],[-3,8],[-10,26],[1,4],[4,3],[6,0],[7,-3],[6,-5],[5,-7],[8,-9],[24,-19],[5,-8],[2,-5],[10,-15],[4,-9],[4,-5],[5,-4],[7,-1],[0,5],[-20,28],[7,8],[-37,58],[-12,15],[-16,11],[-9,4],[2,6],[9,10],[32,10],[-1,8],[3,5],[10,11],[-6,4],[-5,-1],[-6,-2],[-6,-1],[-5,2],[-9,8],[-15,4],[-9,6],[-29,32],[-5,10],[-4,23],[-8,25],[-19,37],[-10,8],[-6,11],[-2,9],[7,4],[4,-4],[5,-7],[4,-5],[4,4],[2,26],[12,16],[2,7],[-2,7],[-4,5],[-4,4],[-10,4],[-5,3],[-2,7],[-2,5],[-7,13],[-11,13],[-18,16],[-15,7],[-18,18],[-9,13],[-7,6],[-3,4],[-2,5],[-3,15],[1,15],[4,12],[11,24],[1,7],[2,7],[2,6],[3,2],[18,3],[34,19],[9,3],[3,2],[4,5],[5,11],[2,10],[-3,4],[-22,7],[-5,-1],[-5,-4],[-5,-1],[-3,4],[-2,6],[-3,5],[-5,3],[-11,1],[-5,4],[-3,7],[2,2],[3,2],[2,8],[0,14],[1,14],[3,11],[5,7],[4,2],[3,-2],[3,-4],[3,-4],[6,-1],[12,2],[5,-3],[10,-6],[-6,-10],[-9,-2],[-18,0],[4,-7],[5,-2],[13,1],[-7,-5],[-8,-2],[-8,-4],[-4,-9],[11,-10],[6,-2],[6,3],[1,4],[1,3],[1,3],[1,3],[12,17],[3,2],[10,2],[9,7],[9,2],[21,-3],[21,-11],[16,2],[28,18],[22,24],[13,8],[11,-3],[-5,-10],[-2,-5],[-1,-6],[30,8],[16,-3],[5,1],[-5,6],[12,9],[17,-2],[30,-11],[0,4],[3,17],[-5,17],[-7,14],[-7,9],[7,10],[10,3],[20,0],[-4,-13],[-1,-5],[6,-5],[5,-8],[4,-2],[5,7],[-1,15],[-2,16],[2,7],[9,-2],[28,-26],[6,-7],[4,-9],[5,-13],[3,3],[6,10],[3,3],[3,1],[8,0],[4,3],[-38,25],[-3,10],[4,6],[9,9],[3,7],[3,12],[-2,7],[-10,10],[7,11],[8,3],[17,-3],[7,5],[15,16],[7,4],[19,0],[3,-2],[2,-6],[2,-5],[2,-4],[7,1],[13,16],[7,4],[4,-1],[4,-2],[4,-1],[5,2],[2,4],[2,7],[1,5],[1,3],[7,-1],[10,-6],[9,-4],[9,8],[1,4],[1,8],[2,4],[3,3],[2,-5],[3,-11],[6,-4],[8,0],[6,3],[-1,8],[3,10],[4,9],[2,10],[-2,10],[-3,4],[-8,3],[-3,3],[-2,4],[-4,12],[4,8],[11,11],[5,7],[1,4],[1,9],[2,4],[3,3],[3,0],[3,1],[3,6],[-14,1],[-8,-2],[-5,-5],[-6,-7],[-7,-3],[-7,0],[-17,16],[-17,0],[-18,-5],[-13,-7],[-2,-11],[-8,-5],[-121,-39],[-8,-6],[36,0],[-9,-4],[-23,-1],[-6,-11],[8,-3],[5,-7],[1,-8],[-6,-7],[-5,1],[-3,4],[-2,5],[-1,3],[-13,2],[-5,-2],[2,-10],[4,-8],[6,-7],[5,-4],[16,-2],[8,-5],[0,-11],[-5,-7],[-8,-5],[-6,-6],[-3,-11],[3,-8],[6,-9],[2,-6],[-7,-3],[-8,0],[-3,2],[-3,4],[-5,13],[-1,2],[-2,1],[-3,9],[-3,1],[-18,0],[-1,3],[-1,5],[0,11],[-17,19],[-6,-2],[-1,-8],[5,-7],[-5,-9],[-8,0],[-16,9],[-5,0],[-11,-8],[-15,-1],[-5,-4],[1,-9],[-6,-7],[-14,-10],[-4,-4],[-3,-3],[-3,-5],[-1,-8],[-2,-9],[-4,-1],[-9,4],[-16,-5],[-8,0],[-7,23],[-10,7],[-10,3],[-27,-3],[-11,3],[-4,10],[-6,7],[-41,-6],[-10,-5],[-4,-1],[-6,1],[-11,7],[-6,-1],[-6,-6],[-4,-12],[-3,-13],[-4,-13],[3,-5],[4,-6],[6,-4],[5,-1],[8,0],[4,-1],[4,-3],[2,-3],[3,-8],[1,-2],[4,-4],[30,-14],[5,-5],[-3,-5],[-8,0],[-25,8],[-31,0],[-6,-2],[-3,-5],[-2,-5],[-3,-4],[-8,-3],[-24,4],[6,10],[-45,1],[-9,-2],[-17,-15],[-40,-20],[-9,7],[-4,8],[-1,6],[1,6],[5,5],[5,2],[6,-1],[4,-4],[-4,-7],[-1,-1],[0,-4],[7,0],[5,9],[2,14],[1,15],[-1,6],[-3,6],[-3,5],[-3,2],[-5,-3],[-2,-6],[-1,-6],[-1,-6],[-1,-3],[0,-3],[-1,-2],[-2,-4],[-11,4],[-2,0],[0,6],[2,8],[2,8],[7,15],[4,12],[1,10],[-5,10],[-10,5],[-9,-5],[-9,-8],[-12,-7],[-6,-11],[-5,-2],[-27,0],[-3,-3],[-3,-6],[-4,-4],[-5,3],[-12,9],[-3,5],[-3,7],[2,2],[8,3],[7,8],[3,6],[-1,2],[-1,3],[-1,7],[0,7],[2,3],[4,2],[39,31],[52,95],[16,24],[19,12],[132,19],[14,-4],[35,16],[40,7],[16,9],[37,1],[32,22],[3,4],[4,2],[22,5],[45,25],[15,4],[11,5],[5,1],[27,-3],[10,3],[28,21],[32,8],[20,12],[20,6],[10,6],[2,5],[6,15],[6,3],[6,0],[56,-27],[52,-8],[4,-2],[13,-10],[10,-14],[10,-6],[20,-25],[23,-21],[8,-12],[7,-7],[-3,-12],[-2,-6],[-2,-3],[-4,-1],[-4,-2],[-4,-4],[-2,-5],[1,-10],[5,-9],[11,-13],[5,-9],[15,-40],[7,-6],[7,-2],[10,0],[-1,-5],[1,-15],[0,-4],[-4,-4],[-4,3],[-8,9],[-6,3],[-5,0],[-4,-2],[-6,-5],[-4,-6],[-1,-2],[-3,-2],[-4,-1],[-3,-2],[-7,-6],[-3,-6],[-1,-7],[2,-9],[5,-2],[44,6],[10,-4],[-1,-5],[-1,-6],[-2,-4],[-2,-5],[8,-15],[64,-50],[15,-6],[12,10],[-19,13],[-6,7],[15,-1],[3,3],[3,5],[4,2],[4,-2],[3,-5],[5,-4],[8,5],[6,10],[3,11],[3,-6],[5,-4],[4,-4],[3,-10],[-1,-11],[-4,-6],[-25,-12],[-2,-6],[5,-9],[7,-5],[7,1],[13,12],[3,7],[2,2],[6,-7],[4,-2],[42,0],[9,-8],[-5,-20],[-16,-37],[16,0],[4,-7],[1,-20],[3,-6],[5,-3],[12,-1],[6,-4],[2,-2],[0,-4],[-3,-7],[0,-3],[7,-6],[34,2],[5,3],[4,5],[4,4],[5,-2],[19,-14],[23,-3],[44,14],[31,-15],[12,-1],[12,3],[10,6],[3,5],[6,11],[4,4],[6,1],[20,-9],[8,0],[4,1],[4,3],[4,5],[0,2],[-1,3],[0,12],[-1,3],[1,4],[2,8],[3,4],[24,20],[7,2],[8,-6],[5,-7],[3,-7],[6,-15],[-4,-5],[-3,-4],[-3,-4],[-2,-7],[1,-3],[2,-17],[1,-6],[0,-9],[1,-4],[2,-1],[10,-1],[4,-3],[10,-14],[4,-4],[3,-2],[6,0],[12,1],[7,-2],[5,-6],[7,-11],[8,-7],[9,-3],[9,-1],[14,5],[5,-1],[7,-14],[1,-4],[3,-7],[20,-24],[21,-17],[52,-12],[34,-8],[31,-18],[9,-17],[15,5],[3,-4],[1,-10],[2,-7],[4,-2],[5,5],[-3,3],[-3,5],[-2,6],[0,6],[3,4],[14,8],[7,10],[3,2],[8,-12],[5,-3],[6,-1],[10,1],[4,2],[3,4],[4,6],[-1,1],[-1,3],[0,4],[2,4],[2,1],[9,-1],[2,-3],[3,-5],[4,-11],[4,-5],[12,-2],[5,-3],[0,-5],[2,-5],[2,-4],[2,-2],[2,-1],[4,-3],[2,0],[1,2],[4,10],[8,0],[6,-7],[6,-8],[7,-5],[5,0],[9,4],[5,-2],[5,-4],[11,-5],[5,-1],[14,9],[2,1],[4,-5],[6,0],[6,1],[4,2],[-3,7],[-10,4],[-2,6],[2,7],[5,1],[5,-3],[8,-7],[4,1],[3,3],[5,1],[16,-4],[5,1],[6,8],[-1,11],[-2,9],[5,4],[5,-2],[7,-9],[5,-2],[5,2],[8,11],[4,4],[5,2],[0,-1],[-1,-4],[0,-5],[0,-9],[0,-3],[1,-1],[38,1],[11,3],[7,9],[-3,10],[-5,10],[0,10],[4,5],[4,-2],[4,-6],[3,-5],[5,-6],[5,-1],[5,4],[12,14],[5,1],[5,-6],[2,5],[3,13],[3,2],[5,-2],[7,-7],[5,-3],[9,8],[5,2],[3,-8],[-1,-6],[-2,-5],[0,-4],[1,-7],[13,6],[24,21],[12,5],[69,-4],[5,-2],[13,-12],[6,-2],[14,4],[4,-1],[9,-6],[4,-1],[3,1],[5,6],[3,1],[4,0],[12,-8],[15,-6],[7,3],[-1,11],[7,1],[23,-5],[7,-6],[4,-6],[4,-3],[4,1],[9,7],[5,1],[16,-3],[4,-3],[1,-2],[1,-3],[0,-2],[0,-1],[5,-1],[3,3],[2,4],[4,2],[4,-2],[4,-3],[5,-7],[5,-4],[4,-3],[12,-2],[6,-4],[12,-18],[7,-6],[3,0],[4,4],[2,1],[3,-1],[4,-4],[3,0],[9,7],[4,2],[15,-6],[11,2],[10,0],[12,-15],[4,2],[2,6],[2,17],[2,5],[3,3],[4,1],[27,-4],[13,4],[9,21],[-2,7],[3,5],[4,1],[5,-1],[5,-5],[4,-6],[5,-4],[7,-1],[50,4],[3,-1],[5,1],[5,3],[2,5],[-2,5],[-9,13],[-10,12],[-2,2],[-1,2],[-3,5],[-2,2],[-3,-1],[-6,-3],[-2,0],[-10,4],[-10,8],[-11,14],[-9,5],[-19,16],[-4,7],[-2,47],[-3,8],[0,6],[3,6],[4,3],[21,-3],[4,3],[9,11],[3,1],[5,-4],[2,-5],[2,-6],[2,-6],[6,-9],[49,-48],[9,-5],[16,-18],[5,-7],[1,-5],[3,-10],[2,-5],[3,-6],[6,-8],[3,-5],[23,-52],[3,-3],[2,1],[5,6],[2,2],[3,-1],[15,-11],[2,-3],[10,-24],[4,-4],[5,-2],[22,-1],[9,-5],[10,-10],[6,-9],[2,-2],[5,-2],[11,1],[5,-1],[4,-5],[6,-11],[8,-9],[9,-4],[18,7],[22,2],[8,6],[6,10],[8,9],[9,6],[8,2],[5,-7],[6,-12],[6,-6],[6,9],[-1,14],[12,7],[25,3],[-4,7],[-5,5],[-10,8],[-7,2],[-13,-4],[-7,2],[5,12],[25,27],[0,8],[-4,12],[-8,18],[-3,4],[-7,5],[-2,4],[-2,5],[-1,12],[-2,5],[-7,13],[-4,-2],[-3,-10],[-6,-11],[-9,-6],[-10,0],[-9,6],[-13,21],[-8,8],[-28,23],[-19,21],[-4,2],[-5,4],[-5,2],[-5,-6],[-1,-6],[0,-12],[-2,-4],[-2,-2],[-3,2],[-3,2],[-5,2],[-1,2],[-1,1],[-2,-2],[-3,-5],[-11,0],[-5,-1],[-5,-3],[-25,-24],[-5,1],[-4,14],[-3,3],[-4,-5],[-12,-20],[-2,-10],[1,-15],[2,-14],[2,-8],[-7,-4],[-6,3],[-10,13],[-11,11],[-2,3],[-5,9],[0,2],[-2,4],[-2,8],[-3,8],[-4,4],[-5,3],[-15,18],[-21,14],[-6,6],[-3,8],[-9,28],[-4,3],[-12,14],[-8,13],[-10,10],[-5,9],[3,2],[4,-3],[8,-7],[2,13],[6,12],[7,5],[7,-4],[2,-3],[3,-3],[2,-3],[1,-5],[0,-7],[-3,-11],[0,-7],[7,-21],[14,7],[10,20],[1,19],[2,4],[-7,8],[-8,6],[-33,15],[-15,12],[4,1],[4,-1],[4,2],[3,6],[-15,11],[-14,14],[-26,35],[-7,6],[-2,4],[1,7],[5,3],[7,1],[7,0],[4,-2],[24,-26],[9,-4],[-1,5],[-2,5],[-2,3],[-3,3],[0,3],[12,-6],[6,-1],[5,7],[-17,21],[-6,9],[0,5],[4,1],[7,-5],[13,-18],[5,-4],[2,-2],[31,-11],[18,-24],[11,-8],[6,2],[5,7],[4,7],[3,2],[5,-4],[7,-3],[7,1],[4,8],[-12,7],[-2,4],[2,5],[4,2],[53,-14],[-1,28],[16,-1],[19,-11],[10,-1],[-2,12],[-5,7],[-6,5],[-21,4],[-4,2],[-3,2],[-4,4],[-1,5],[4,5],[-25,21],[-6,10],[-1,5],[1,7],[2,7],[1,5],[5,4],[6,-2],[9,-8],[5,1],[10,6],[4,1],[17,-7],[25,-2],[5,-5],[2,-3],[4,-3],[2,-2],[1,-5],[0,-4],[0,-3],[0,-2],[6,-16],[6,-7],[8,-4],[10,-8],[5,-2],[5,4],[2,6],[0,2],[-1,2],[-1,2],[-2,3],[-2,1],[-13,-4],[-10,3],[-2,1],[-1,5],[0,1],[2,1],[1,2],[2,7],[3,7],[4,4],[4,2],[37,2],[47,-22],[3,-14],[39,-31],[-4,2],[-6,1],[-5,-2],[-2,-5],[2,-5],[6,-4],[37,-12],[4,-8],[-1,-6],[-1,-6],[1,-6],[1,-6],[-5,1],[-12,5],[-5,-4],[-3,-8],[-1,-7],[2,-5],[30,-7],[6,-6],[3,-1],[4,0],[65,26],[6,-2],[2,-11],[1,-3],[3,-1],[2,1],[2,0],[1,-6],[-14,-6],[-3,-7],[3,-10],[5,-7],[6,-6],[6,-2],[3,5],[-7,12],[3,12],[9,12],[29,29],[11,6],[12,2],[-18,-18],[-3,-8],[0,-18],[-1,-8],[-2,-7],[-10,-15],[-33,-31],[6,-9],[-4,-7],[-8,-4],[-7,-1],[1,-5],[1,-3],[-9,-4],[-11,-2],[-11,-5],[-5,-13],[3,-14],[11,-6],[20,0],[4,3],[2,7],[2,8],[1,6],[5,4],[7,3],[6,0],[3,-5],[6,-12],[12,-2],[13,3],[8,5],[-6,5],[-6,7],[2,12],[-6,2],[-13,-5],[6,18],[10,11],[26,22],[14,8],[6,1],[3,1],[6,6],[22,7],[17,11],[39,14],[6,4],[5,6],[6,10],[3,2],[9,3],[3,1],[-5,-13],[-7,-13],[-29,-38],[-6,-12],[-5,-13],[16,-18],[-6,-23],[-11,-23],[1,-17],[-2,-8],[-9,-16],[-2,-7],[-3,-14],[-2,-6],[-2,-4],[-2,-7],[-2,-7],[-2,-16],[-3,-7],[-4,-6],[-3,-8],[-1,-12],[0,-18],[2,-16],[4,-7],[1,-3],[-3,-7],[-6,-12],[0,-3],[2,-5],[1,-4],[2,-2],[10,12],[-3,-34],[-5,-10],[-9,-1],[-6,3],[-4,4],[-3,7],[-4,9],[-1,6],[-1,8],[-2,5],[-4,3],[-6,-7],[-1,-15],[3,-17],[0,-13],[-6,-18],[-10,-9],[-20,-11],[7,-3],[2,0],[-1,-6],[-4,-6],[-4,-7],[0,-20],[1,-2],[4,4],[6,8],[5,2],[4,-1],[5,-3],[3,-6],[-3,-11],[3,-4],[5,-3],[3,-4],[3,-2],[12,1],[6,-1],[7,-7],[2,-1],[5,-1],[6,4],[4,1],[6,5],[4,10],[5,7],[6,-2],[-1,-8],[1,-4],[4,-2],[4,-2],[-4,-8],[-5,-3],[-3,-4],[-1,-12],[-2,-7],[-4,-9],[-9,-14],[-11,-8],[-4,-5],[-2,-9],[-1,-10],[-4,-16],[-1,-9],[23,4],[2,2],[3,2],[3,1],[2,-3],[1,-4],[0,-5],[-2,-5],[7,-8],[10,3],[11,8],[8,9],[13,21],[5,3],[1,0],[1,-6],[2,-2],[3,1],[3,2],[32,37],[3,9],[5,4],[8,3],[5,0],[-1,-7],[6,-6],[3,-7],[3,-5],[6,2],[5,6],[1,6],[1,7],[2,6],[5,4],[6,-1],[6,-5],[7,-11],[1,0],[-1,-1],[-1,-7],[-4,-12],[-8,-14],[-64,-64],[-6,-16],[8,2],[14,9],[7,2],[7,4],[11,18],[6,2],[-2,-3],[-4,-9],[12,-3],[28,10],[10,-11],[-2,-2],[-2,-2],[2,-2],[2,-5],[2,-1],[-3,-8],[-1,-5],[0,-3],[2,-6],[1,-1],[2,1],[4,1],[5,4],[1,9],[-1,11],[1,9],[3,-7],[1,-3],[10,-14],[2,0],[0,-5],[-2,-5],[-1,-3],[-1,0],[4,-15],[0,-3],[-9,-16],[-1,-7],[4,-8],[6,-4],[7,-1],[5,-3],[3,-12],[-1,-7],[-5,-21],[-2,-6],[-3,-1],[-7,6],[-3,1],[-3,-4],[-1,-6],[-1,-5],[-15,3],[-36,-4],[-9,12],[3,1],[3,2],[2,4],[2,5],[-16,-3],[-30,-14],[-32,-7],[-9,0],[-7,8],[-2,11],[-1,11],[-3,6],[-9,0],[3,11],[4,12],[5,9],[5,5],[-7,2],[-6,-6],[-19,-28],[-1,-7],[3,-7],[4,-11],[-9,-6],[-10,-5],[-9,1],[-9,6],[4,1],[3,3],[2,3],[3,5],[-10,3],[-20,-6],[-10,5],[-6,12],[5,22],[-5,13],[-5,3],[-9,-4],[-5,1],[-3,4],[-5,6],[-4,3],[-17,-14],[0,-6],[10,-18],[4,-16],[2,-4],[26,-12],[6,-9],[5,-11],[5,-8],[8,-7],[18,-9],[7,-11],[2,-6],[1,-13],[1,-5],[4,-6],[5,-3],[6,-2],[54,-33],[3,-5],[2,-5],[2,-10],[2,-5],[9,-16],[4,-10],[1,-11],[-1,-14],[-2,-9],[-8,-19],[8,6],[14,28],[8,6],[10,1],[4,2],[5,3],[4,6],[0,6],[-4,11],[-3,14],[-3,6],[-3,0],[-2,-6],[3,-14],[0,-6],[-4,-6],[-4,-3],[-4,-1],[-5,-1],[-6,2],[-3,5],[-2,14],[-5,13],[-6,7],[-7,5],[-6,9],[-9,20],[-5,8],[-6,7],[-14,7],[-5,5],[-8,18],[-2,2],[-3,2],[-8,9],[-3,3],[-2,7],[1,4],[6,7],[11,7],[15,2],[14,-4],[11,-10],[4,-1],[12,9],[5,-1],[3,-1],[6,-2],[3,-3],[1,-3],[1,-9],[2,-4],[5,-1],[18,5],[26,0],[19,-6],[5,4],[4,7],[6,5],[6,2],[6,0],[1,-6],[5,-6],[7,-5],[6,-2],[7,0],[6,2],[5,6],[7,11],[0,8],[2,6],[7,11],[-4,9],[-6,4],[-7,2],[-6,5],[3,14],[-4,10],[-11,15],[-1,5],[2,6],[5,9],[0,5],[-2,6],[-3,6],[-2,5],[0,4],[1,4],[18,26],[1,3],[2,2],[2,6],[1,8],[0,6],[1,10],[3,4],[9,1],[11,5],[-1,7],[-35,23],[-8,8],[-3,15],[-1,7],[-4,9],[-1,4],[0,6],[-2,16],[-2,5],[-4,4],[-4,0],[-2,1],[1,7],[3,6],[5,7],[6,5],[4,2],[6,6],[0,11],[-4,13],[-5,9],[-23,22],[-4,6],[-3,15],[-7,4],[-10,0],[-7,6],[-6,9],[-6,7],[-7,4],[-12,3],[-5,4],[-4,5],[-3,7],[-1,6],[1,5],[5,10],[3,4],[13,7],[1,2],[-1,2],[0,3],[2,1],[10,0],[11,11],[6,24],[-3,22],[-13,8],[10,19],[6,7],[17,18],[3,9],[2,12],[2,0],[5,6],[-1,6],[-2,8],[0,8],[-7,0],[-3,1],[-3,3],[8,5],[49,3],[8,4],[3,0],[4,-4],[-4,-4],[-3,-8],[-3,-6],[-5,-2],[0,-4],[13,5],[24,24],[13,3],[4,-6],[11,-15],[7,-3],[16,6],[7,0],[7,-8],[12,-9],[18,4],[17,12],[10,13],[1,5],[1,4],[1,4],[2,3],[10,8],[24,25],[24,12],[2,3],[2,4],[2,3],[14,7],[5,4],[4,10],[0,-4],[8,9],[26,9],[10,6],[5,11],[-2,11],[-3,12],[2,14],[-2,8],[2,6],[9,9],[4,2],[3,1],[2,2],[1,7],[1,4],[3,3],[48,32],[53,18],[9,8],[12,3],[6,4],[11,11],[4,3],[13,2],[4,3],[-1,2],[-2,4],[-1,3],[4,0],[0,11],[6,6],[21,4],[20,15],[-6,-4],[-51,-12],[-18,8],[-7,0],[-16,-8],[-7,0],[0,4],[5,7],[2,4],[1,5],[0,-4],[4,9],[1,6],[1,13],[3,14],[4,13],[-2,3],[-2,2],[-1,5],[2,7],[10,2],[3,7],[-4,0],[5,7],[0,9],[5,7],[11,10],[3,7],[-2,11],[-4,5],[-13,10],[-3,7],[1,9],[2,8],[0,5],[-5,2],[2,7],[2,3],[2,3],[-7,6],[-7,0],[-8,-3],[-7,1],[3,2],[1,2],[-3,1],[-12,-1],[2,0],[-6,-5],[-9,-3],[-9,0],[-5,8],[2,6],[3,5],[4,3],[3,2],[0,4],[-6,0],[-5,-2],[-10,-6],[3,13],[9,12],[18,16],[-7,2],[-12,-4],[-11,-9],[-8,-10],[3,1],[7,-1],[0,-4],[-9,-10],[-3,-2],[2,0],[-2,-1],[-1,-1],[-1,-2],[2,-2],[4,-5],[2,-1],[-3,-4],[-7,-6],[-1,-4],[-2,-7],[-3,-3],[-7,-5],[-11,-10],[-4,-8],[-4,-10],[2,0],[-1,-7],[2,-4],[3,-2],[3,1],[-2,-3],[-9,-5],[3,-3],[7,-4],[3,-1],[3,1],[4,6],[9,5],[9,14],[6,2],[0,-4],[-1,-3],[-1,-2],[-1,-2],[-3,-1],[0,-4],[37,24],[-4,-12],[-9,-7],[-10,-4],[-7,-7],[-7,-11],[-9,-12],[-10,-8],[-13,-6],[-6,-10],[-4,-4],[-4,-2],[-48,-1],[-36,-21],[-9,9],[-6,4],[-4,-3],[-3,-5],[-2,-3],[-2,0],[-4,2],[-3,5],[-3,7],[-3,6],[-5,2],[-18,-4],[4,13],[5,28],[3,10],[9,12],[2,6],[1,11],[-2,2],[-4,1],[-4,4],[1,6],[4,13],[-1,3],[-4,2],[-4,3],[-1,6],[0,6],[9,8],[11,-3],[19,-13],[0,-8],[6,1],[7,6],[4,5],[2,6],[7,22],[7,10],[7,5],[8,2],[16,0],[8,2],[8,5],[7,9],[-8,8],[-2,4],[1,8],[3,5],[18,12],[8,1],[7,8],[13,10],[-9,-1],[-27,-15],[-33,-3],[-13,9],[-6,8],[0,9],[3,8],[5,17],[4,9],[-2,3],[-2,7],[-2,2],[6,7],[6,9],[-12,9],[-4,4],[9,14],[13,9],[34,6],[24,11],[27,0],[4,-2],[6,-8],[2,-2],[11,3],[10,5],[5,6],[9,17],[6,7],[35,18],[24,1],[-4,-7],[-15,-18],[-10,-5],[-3,-5],[-7,-12],[-3,-4],[-4,-2],[-3,-2],[-4,-2],[-19,-18],[-7,-2],[-20,-37],[6,1],[8,9],[6,2],[-9,-16],[-5,-6],[-6,-2],[4,-6],[5,-1],[5,2],[6,1],[0,-4],[-7,-10],[-4,-7],[-1,-7],[4,-4],[6,4],[6,7],[4,7],[6,7],[16,9],[11,14],[16,12],[-3,4],[-3,-1],[-2,-3],[-2,-4],[0,4],[6,5],[11,13],[26,11],[9,8],[1,8],[5,7],[20,9],[-7,4],[-25,-12],[-8,1],[-14,6],[-9,-3],[2,7],[15,27],[10,10],[4,9],[-1,1],[-1,3],[6,4],[3,3],[2,5],[-2,4],[-2,-3],[-3,-1],[-2,1],[-2,3],[0,8],[-6,8],[-8,6],[-7,3],[-36,-5],[1,0],[-21,-14],[-7,-8],[-5,-2],[-1,1],[-1,6],[0,1],[-4,0],[-13,-5],[-2,-5],[0,-7],[3,-7],[-8,-9],[-9,-3],[-19,4],[-42,-4],[-48,11],[-6,7],[-11,18],[-4,4],[-9,5],[-5,6],[-20,33],[-2,12],[-1,3],[-3,5],[-2,7],[-1,6],[-2,5],[-3,3],[-4,1],[-3,-1],[-2,-5],[-1,-3],[-3,3],[-3,6],[-2,4],[0,5],[0,5],[2,10],[-32,-12],[-6,-4],[1,-8],[5,-10],[5,-7],[-6,-15],[-11,-9],[-14,-5],[-10,1],[-22,10],[-3,4],[-2,8],[-4,2],[-4,-2],[-4,-2],[4,8],[-7,5],[-26,-5],[-4,1],[-9,6],[-5,8],[-4,2],[-8,-1],[-51,24],[-8,8],[-11,4],[-17,14],[-8,3],[-5,4],[-18,25],[-5,2],[-19,2],[-4,-3],[-3,-8],[-3,-9],[-4,-9],[-6,7],[-3,4],[-2,6],[4,10],[3,2],[4,0],[-5,7],[-7,3],[-5,-4],[-2,-12],[-4,-2],[-17,8],[-6,0],[3,-4],[-9,1],[-8,7],[-14,20],[-9,9],[-33,11],[5,1],[9,10],[3,0],[9,-10],[4,0],[4,7],[-6,6],[-5,7],[10,8],[0,4],[-6,-1],[0,4],[1,5],[1,6],[-2,7],[-6,2],[-5,1],[-4,3],[-3,3],[-5,-1],[-9,-4],[-5,1],[-4,3],[-64,75],[-8,14],[-3,4],[-2,5],[0,8],[0,9],[-1,6],[-8,22],[-2,14],[3,47],[4,15],[10,17],[19,23],[6,4],[5,-1],[5,-3],[6,0],[5,4],[2,6],[3,14],[-2,23],[9,19],[12,17],[7,14],[2,0],[2,-6],[2,-7],[2,-7],[5,-3],[5,1],[9,6],[-2,12],[5,9],[8,6],[6,2],[8,-3],[14,-14],[40,-15],[11,-1],[1,-1],[1,-2],[2,-1],[1,4],[0,4],[-1,2],[-1,2],[-32,7],[-11,5],[-13,11],[-11,4],[-3,6],[0,10],[0,12],[27,22],[4,1],[12,6],[9,7],[10,3],[5,3],[-25,-3],[-61,-32],[-5,-5],[-5,-8],[2,0],[-11,-5],[-21,8],[-22,16],[-14,14],[-5,10],[-3,10],[-4,9],[-7,7],[-30,14],[-8,10],[-4,21],[5,20],[17,34],[2,9],[6,30],[1,2],[-1,8],[1,2],[2,2],[1,2],[2,11],[-1,4],[-3,6],[9,0],[8,4],[7,7],[9,16],[1,1],[1,1],[0,5],[-8,7],[-2,3],[-2,-1],[-1,-1],[-1,-2],[4,-9],[-2,-5],[-6,-2],[-5,0],[-8,3],[-14,16],[-7,5],[1,8],[3,2],[6,2],[19,14],[5,-1],[7,-8],[7,-5],[4,8],[-20,15],[-3,6],[0,8],[2,12],[5,20],[-3,0],[-10,-4],[2,4],[-2,4],[-3,2],[-2,2],[-3,0],[7,9],[10,4],[33,0],[6,3],[7,5],[-2,4],[6,13],[7,14],[8,13],[8,9],[14,7],[41,1],[17,-7],[8,-6],[5,-12],[-1,0],[12,-13],[50,-35],[7,-2],[7,4],[6,1],[8,-2],[6,1],[-1,10],[1,2],[3,4],[2,2],[-5,6],[-11,6],[-4,8],[33,0],[-1,6],[-1,2],[11,0],[0,4],[-6,2],[-6,3],[-7,5],[-5,6],[-7,9],[1,3],[4,3],[3,13],[4,2],[5,1],[3,2],[4,4],[0,2],[0,5],[0,2],[6,5],[18,10],[-17,-2],[-10,-4],[-5,-8],[-38,4],[-9,4],[-7,6],[-33,0],[-5,4],[-11,13],[-5,3],[-12,2],[-5,3],[3,11],[12,5],[3,8],[-3,0],[-2,1],[-3,2],[-1,5],[8,7],[10,5],[19,5],[10,-2],[4,1],[13,11],[2,5],[-1,5],[3,3],[5,1],[8,0],[2,2],[6,8],[2,2],[7,3],[12,10],[6,3],[53,-1],[7,2],[5,8],[-6,2],[-2,6],[0,8],[2,8],[1,3],[5,5],[2,4],[4,12],[6,6],[22,2],[15,8],[5,1],[11,-4],[3,0],[8,4],[42,-3],[13,-6],[13,-2],[13,4],[12,8],[12,11],[-9,3],[-33,-20],[-5,1],[-11,6],[-79,6],[-14,-7],[-8,-1],[-10,3],[-9,6],[-2,10],[1,2],[3,1],[2,2],[0,3],[-2,1],[-5,4],[3,3],[10,13],[-1,3],[0,2],[-1,1],[-2,2],[0,4],[94,16],[94,15],[16,-7],[1,-3],[1,-7],[1,-7],[2,-3],[19,-6],[3,-4],[-2,-10],[-6,-7],[-8,-2],[-8,-1],[-7,-2],[5,-3],[6,-2],[4,-4],[0,-11],[-2,-6],[-5,-3],[-21,-1],[-9,-5],[-18,-14],[10,-14],[2,-7],[-4,-11],[2,0],[-1,-5],[1,-4],[2,-2],[3,-2],[12,11],[4,6],[8,25],[3,4],[2,3],[4,0],[3,-3],[2,-6],[-1,-7],[4,-5],[3,4],[2,6],[3,3],[9,0],[4,-3],[5,-5],[-2,-4],[-2,-2],[-2,-2],[-2,-1],[-1,-1],[-1,-6],[0,-2],[-2,-7],[0,-6],[1,-7],[2,-7],[-6,-24],[-2,-10],[4,0],[33,42],[5,8],[8,19],[7,6],[8,0],[6,-5],[-1,-11],[12,-3],[19,17],[11,-6],[7,-12],[4,-3],[6,-1],[15,1],[7,3],[7,6],[11,6],[13,0],[11,-8],[5,-19],[-1,-10],[-2,-7],[-30,-29],[5,-5],[19,-11],[28,-29],[25,-15],[35,-11],[7,-4],[4,-6],[3,-5],[3,-5],[28,-11],[12,-8],[1,-12],[3,-2],[1,-2],[1,-4],[1,-4],[0,-2],[0,-3],[0,-3],[2,-5],[4,-8],[5,-6],[6,-4],[22,-3],[8,-3],[8,-6],[3,-5],[0,-7],[-2,-5],[-3,-5],[11,-8],[3,-6],[2,-22],[2,-7],[1,-6],[-2,-8],[15,-20],[4,-9],[3,-9],[0,-5],[-2,-5],[-1,-9],[0,-5],[2,-4],[0,-3],[-1,-3],[-3,-5],[-2,-4],[-1,-9],[1,-5],[8,-10],[-7,-15],[-3,-8],[-1,-10],[-2,-28],[-2,-9],[2,-3],[-2,-12],[3,-11],[6,-8],[6,-6],[-4,-4],[-12,-4],[-7,0],[-2,0],[-16,15],[-7,5],[-7,0],[3,-11],[5,-7],[21,-19],[35,-5],[15,-7],[6,-6],[15,-8],[5,-5],[-6,-5],[1,-5],[2,-3],[3,-1],[3,1],[0,-4],[-15,-4],[0,-4],[12,1],[5,-2],[4,-7],[-4,-1],[-3,-3],[-7,-8],[10,0],[-6,-5],[4,-1],[14,6],[55,-13],[-1,-2],[0,-1],[-1,-1],[4,-3],[15,-5],[11,-7],[3,-1],[1,-4],[-1,-8],[-4,-7],[-6,-1],[3,-11],[7,-5],[7,5],[4,17],[4,9],[9,-5],[11,-12],[6,-10],[-6,-4],[-8,-1],[-8,2],[-4,3],[1,-5],[-3,-3],[-2,-5],[1,-5],[3,-7],[3,-2],[3,1],[3,-1],[4,-6],[3,-8],[-2,-2],[-4,2],[-5,0],[-3,-2],[-12,-10],[10,-2],[20,-8],[10,-2],[6,2],[2,0],[1,-6],[0,-5],[-1,-3],[-2,-1],[-1,0],[-2,-2],[-1,-2],[0,-4],[25,-8],[1,-2],[-2,-10],[1,-4],[2,-1],[7,2],[4,-1],[0,-4],[-2,-2],[-4,-6],[3,0],[3,-1],[3,-1],[3,-2],[-5,-5],[-2,-6],[0,-6],[3,-8],[-6,-4],[-7,-3],[-14,0],[0,-5],[16,1],[8,-2],[5,-7],[-2,-1],[-4,-3],[11,-8],[1,-2],[0,-3],[1,-3],[1,2],[1,2],[2,8],[2,4],[2,5],[2,4],[4,3],[3,1],[12,-1],[-11,13],[-4,8],[2,10],[6,5],[7,1],[7,-1],[6,-4],[2,-4],[2,-6],[2,-3],[3,3],[3,8],[2,2],[3,0],[6,-2],[4,-5],[3,-8],[3,-9],[-3,-3],[-6,-4],[-3,-1],[9,-29],[3,-16],[-3,-12],[0,-4],[4,2],[3,4],[4,4],[1,4],[1,6],[3,-1],[6,-7],[17,-14],[8,-10],[5,-12],[-1,-4],[-3,-3],[-5,-2],[-43,-7],[-32,4],[-6,-2],[-14,-5],[-31,-3],[-8,2],[-5,4],[-10,14],[-6,6],[-6,4],[-24,5],[-5,3],[-2,5],[1,7],[-9,19],[-5,6],[-5,4],[0,-10],[-6,-2],[-13,0],[20,-11],[6,-1],[2,-2],[0,-4],[0,-4],[-1,-3],[-3,-3],[-2,-1],[-7,0],[2,4],[-5,0],[-12,-6],[-7,-2],[-25,0],[0,-4],[8,0],[7,-2],[5,-5],[6,-9],[-4,-4],[-8,-2],[-4,-4],[-7,-19],[-17,-3],[-15,-9],[5,-2],[11,2],[3,-4],[7,-12],[4,-3],[5,3],[1,10],[41,16],[55,-4],[17,-7],[16,-12],[14,-19],[-4,-5],[-19,-12],[-2,0],[-9,0],[-3,-1],[-1,-4],[-1,-4],[-1,-3],[-38,-36],[-6,-3],[-7,-1],[0,-4],[2,-1],[5,-3],[-5,-11],[-22,-8],[-10,-10],[-3,0],[-3,0],[-2,0],[-3,-2],[-4,-5],[-1,-1],[-5,-1],[-10,-5],[-6,-2],[-7,1],[-3,-2],[-1,-5],[0,-4],[2,-7],[0,-3],[-3,-7],[-4,-5],[-4,-1],[-5,3],[-11,14],[-2,2],[-7,-8],[0,-4],[5,-2],[-8,-8],[-44,-28],[-7,-1],[0,-4],[92,8],[0,-4],[-24,-2],[-7,-3],[-18,-14],[-7,-1],[-21,3],[-11,6],[-19,-5],[0,-4],[16,-7],[9,-1],[17,5],[20,-9],[8,0],[6,4],[13,13],[36,9],[6,-6],[13,-2],[4,2],[1,2],[0,4],[1,4],[2,2],[2,0],[8,-4],[0,-4],[-3,-3],[-3,-4],[-2,-4],[-2,-5],[6,-4],[4,-1],[3,1],[-1,0],[-1,1],[0,3],[20,-1],[10,-4],[14,-15],[17,-1],[7,-4],[1,-4],[-44,9],[-4,1],[-1,-1],[-2,3],[-5,4],[-3,0],[0,-3],[17,-21],[16,-7],[3,-5],[0,3],[1,1],[0,-2],[1,-2],[-2,-4],[7,0],[3,-2],[3,-2],[0,-2],[-1,-6],[7,0],[37,-14],[9,-9],[17,-6],[15,-11],[6,-1],[-1,14],[8,8],[10,5],[8,6],[-8,4],[7,4],[18,0],[4,3],[10,11],[5,2],[-2,9],[-2,4],[-2,3],[4,4],[9,5],[3,6],[3,2],[6,-1],[3,3],[0,2],[1,8],[9,4],[11,0],[20,-4],[5,-4],[4,-1],[4,3],[4,1],[4,-3],[3,-5],[4,-3],[16,9],[7,0],[0,-14],[5,0],[16,5],[-4,-9],[-7,-4],[-15,0],[-9,-3],[-29,-30],[-10,-6],[-50,-11],[-9,-7],[4,-6],[5,0],[4,4],[6,2],[44,0],[2,2],[6,8],[3,3],[32,12],[4,-2],[3,-4],[5,-11],[10,-14],[7,-1],[22,10],[8,-7],[22,12],[4,-3],[1,-7],[0,-9],[-2,-9],[38,0],[0,18],[8,9],[11,3],[8,-2],[42,-16],[10,-7],[8,-2],[3,-5],[2,-5],[3,-5],[3,-2],[1,-2],[5,0],[2,-1],[0,-3],[0,-3],[0,-3],[2,0],[10,5],[4,1],[0,-4],[-11,-7],[-35,7],[-3,-1],[-8,-7],[-5,-3],[-7,-1],[-5,1],[-5,2],[-5,3],[0,2],[2,0],[2,4],[-6,3],[-22,1],[0,-4],[4,0],[6,-3],[9,-9],[2,-2],[7,0],[4,-2],[-3,-3],[-6,-2],[-2,-3],[-7,3],[-6,-3],[-7,-6],[-11,-4],[-17,-15],[1,-2],[1,-6],[-6,-3],[-1,-8],[2,-8],[1,-5],[-2,-3],[-1,-4],[1,-4],[2,-6],[-4,-4],[2,-3],[2,-9],[-36,-4],[0,4],[8,7],[3,1],[-4,1],[-11,-5],[2,0],[-2,0],[-2,0],[-2,2],[-2,2],[6,4],[2,0],[0,4],[-4,0],[0,4],[4,0],[3,0],[3,3],[2,6],[-7,-1],[-36,-21],[-5,1],[-2,9],[7,7],[16,9],[1,3],[1,9],[2,4],[2,3],[9,5],[0,4],[-8,0],[-7,-5],[-22,-23],[-18,-11],[-10,-2],[-18,5],[-54,36],[0,-4],[16,-16],[37,-25],[22,-5],[4,-5],[4,-5],[4,-7],[3,-4],[26,-12],[49,-44],[9,-4],[5,-3],[10,-14],[3,-2],[6,-1],[18,-9],[5,-6],[-2,-10],[-11,-13],[2,-6],[-4,-13],[6,-6],[18,-1],[-1,0],[4,-5],[9,-23],[-6,0],[0,-5],[2,-2],[2,-6],[-5,0],[-4,-3],[-1,-3],[25,-3],[24,-15],[3,-4],[-2,-5],[-9,-5],[-2,-6],[12,1],[5,-1],[0,-4],[-7,-3],[-15,2],[-7,-3],[-4,-1],[-6,-5],[-11,-15],[10,-3],[23,17],[11,2],[-2,-5],[-2,-2],[-2,-2],[-3,-4],[0,-7],[2,-3],[3,-1],[2,0],[-2,-8],[-5,-4],[-5,1],[-3,8],[-2,0],[-1,-9],[-4,-10],[-1,-6],[2,-5],[3,-6],[3,-4],[6,-4],[-1,-6],[-2,-7],[-2,-12],[-3,-4],[-6,-5],[2,-7],[-3,-3],[-8,-6],[5,-2],[6,-4],[5,-7],[5,-7],[-4,-5],[-8,-1],[-2,-2],[0,-4],[0,-4],[2,-3],[1,-2],[6,-2],[6,-6],[2,-5],[-4,-3],[-2,-3],[-5,-19],[-3,-2],[-20,-17],[-2,-1],[0,-5],[0,-4],[1,-2],[11,-4],[19,-12],[49,-20],[0,-4],[-11,0],[-32,-21],[24,8],[14,1],[7,-9],[-1,-2],[0,-2],[0,-1],[1,-3],[-3,-8],[1,-7],[9,-11],[2,-7],[0,-10],[3,-5],[9,-6],[12,2],[12,7],[8,9],[-2,3],[-2,5],[-1,5],[0,5],[-7,6],[-2,2],[2,5],[15,11],[3,2],[8,4],[13,17],[7,4],[1,2],[1,4],[1,10],[-4,4],[0,4],[6,5],[-6,3],[7,7],[15,4],[6,5],[-3,6],[1,5],[2,4],[4,0],[5,-2],[1,3],[1,7],[1,6],[2,8],[4,8],[4,5],[-12,0],[-8,3],[-7,8],[-5,14],[-2,10],[0,7],[4,5],[6,5],[3,7],[-1,9],[15,10],[4,6],[4,12],[3,3],[4,2],[8,-7],[3,-16],[0,-17],[-5,-13],[5,0],[4,2],[7,10],[0,3],[-1,4],[-1,6],[0,3],[-1,9],[0,11],[2,11],[2,8],[3,8],[1,7],[-2,7],[-3,8],[3,2],[2,4],[2,4],[0,6],[-1,7],[-3,2],[-9,-1],[3,9],[1,4],[0,6],[-3,17],[-4,15],[-1,19],[0,5],[2,7],[5,15],[6,15],[9,15],[35,28],[29,37],[0,5],[9,7],[2,6],[2,16],[-1,2],[4,3],[14,17],[6,3],[13,4],[18,10],[46,-6],[26,-20],[1,-4],[-1,-7],[2,-7],[3,-5],[4,-3],[2,-1],[4,-5],[7,-17],[4,-7],[33,-33],[47,-32],[10,-10],[21,-9],[55,-39],[63,-73],[12,-22],[9,-25],[6,-25],[2,-13],[0,-7],[-1,-6],[-7,-20],[2,-13],[4,-13],[5,-10],[4,-7],[1,-12],[3,-12],[6,-10],[7,-6],[-3,-9],[0,-7],[2,-6],[10,-16],[1,-11],[-1,-11],[-1,-14],[1,-4],[2,-1],[0,-3],[-2,-6],[-2,-5],[-1,-6],[-1,-5],[-2,-2],[-2,-2],[-3,-13],[-2,-5],[-2,-4],[-11,-8],[-5,-8],[-5,-9],[-4,-4],[-14,17],[-9,5],[-19,3],[-2,0],[-4,4],[-3,0],[-1,-1],[-3,-6],[-1,-1],[-4,0],[-3,2],[-3,4],[-2,6],[0,8],[2,53],[0,7],[-2,5],[-3,2],[-4,-1],[-1,-5],[2,-8],[-2,-3],[-11,-6],[-3,-3],[-8,-13],[-7,-5],[-21,-11],[0,-1],[-1,-4],[-2,-3],[6,-11],[12,-18],[5,-12],[0,-3],[0,-4],[0,-4],[1,-3],[5,-10],[6,-24],[0,-7],[-1,-5],[-12,-16],[-2,-1],[-2,-1],[0,-3],[1,-4],[0,-4],[1,0],[1,-3],[-1,-4],[-4,-2],[-7,-5],[-1,-2],[0,-5],[2,-4],[4,-7],[-4,-16],[2,-12],[5,-10],[4,-24],[8,-21],[2,-9],[1,-10],[3,-12],[5,-11],[4,-9],[18,-14],[6,-10],[-3,-17],[6,-16],[3,-6],[8,-8],[3,-4],[9,-11],[25,-8],[11,-8],[8,-12],[12,-12],[4,-6],[3,-8],[8,-12],[28,-23],[15,-28],[5,-4],[3,-2],[16,-18],[25,-18],[4,-6],[3,-11],[1,-36],[2,-6],[4,1],[9,6],[6,-1],[4,-4],[1,-6],[-3,-9],[-3,-2],[-9,-6],[-11,-12],[-11,-5],[-2,-3],[-3,-6],[0,-3],[1,-3],[0,-5],[-1,-7],[0,-5],[0,-6],[-1,-10],[5,2],[6,3],[4,5],[9,18],[4,6],[5,2],[7,1],[12,-4],[1,-2],[0,-9],[3,-12],[1,-10],[2,-9],[4,-3],[3,6],[6,43],[2,3],[4,5],[2,4],[-1,3],[-2,2],[-1,3],[0,4],[4,4],[9,-3],[4,3],[0,5],[5,0],[7,-4],[5,-9],[-2,-7],[1,-9],[2,-5],[4,3],[5,13],[2,7],[1,6],[-1,15],[1,6],[6,-3],[6,-4],[7,-3],[6,0],[6,5],[-10,11],[-3,8],[4,10],[-5,4],[-10,4],[-5,4],[-3,4],[-3,7],[-2,6],[4,3],[11,-2],[6,-3],[4,-5],[2,-6],[2,-4],[4,0],[4,4],[-2,7],[0,8],[2,7],[9,5],[9,14],[4,4],[20,6],[8,1],[11,-7],[15,-20],[9,-6],[8,5],[1,18],[2,7],[5,-4],[1,-6],[-1,-8],[-1,-7],[-1,-4],[6,-9],[8,2],[9,7],[5,9],[-2,7],[-5,15],[-2,6],[0,2],[0,6],[0,4],[11,3],[4,4],[2,11],[-1,7],[-3,6],[-1,7],[3,11],[-2,7],[1,6],[1,6],[0,7],[3,3],[4,8],[1,8],[-10,7],[-1,6],[0,8],[-1,7],[-2,5],[-5,9],[-2,6],[14,18],[24,55],[13,20],[15,14],[5,9],[6,7],[18,11],[2,4],[2,7],[2,3],[8,8],[2,4],[2,7],[-1,9],[-2,9],[-2,6],[3,4],[2,3],[4,0],[3,-3],[-4,-8],[1,-7],[3,-4],[5,-2],[3,2],[3,9],[2,2],[7,2],[4,2],[30,26],[1,4],[-1,5],[-3,10],[-1,7],[1,8],[2,6],[4,3],[7,2],[0,5],[-3,8],[-2,7],[-1,7],[-1,6],[1,4],[5,5],[5,1],[7,-1],[6,2],[4,11],[-7,1],[-5,4],[-3,8],[2,15],[3,4],[2,2],[2,2],[1,8],[-1,5],[-6,7],[-3,4],[7,3],[4,4],[24,37],[3,9],[-3,3],[-5,6],[-3,5],[2,2],[10,2],[6,2],[5,4],[-13,4],[-6,3],[-2,8],[1,3],[2,3],[2,4],[0,6],[0,14],[0,4],[0,2],[-1,1],[0,1],[1,4],[-3,4],[-2,5],[1,6],[3,6],[-5,16],[0,7],[3,9],[2,4],[6,7],[3,5],[1,5],[2,12],[1,5],[3,14],[7,9],[9,3],[14,-10],[10,2],[11,5],[7,8],[-7,6],[-22,11],[42,-6],[14,-7],[-4,-7],[-2,-3],[-2,-2],[9,-5],[37,-8],[2,7],[-4,7],[-8,3],[6,10],[11,-1],[21,-9],[46,8],[6,-2],[11,-8],[25,-7],[5,1],[2,3],[6,10],[2,3],[-2,9],[-4,4],[-4,2],[-2,3],[-3,12],[-9,6],[-18,1],[-5,-1],[-12,-6],[-6,-1],[-44,14],[-9,7],[-4,13],[6,5],[36,-7],[-3,2],[-1,2],[0,4],[8,0],[4,1],[3,3],[-4,4],[-11,4],[-4,4],[2,7],[14,-1],[3,5],[-40,14],[8,9],[10,0],[35,-8],[4,-4],[6,-3],[11,2],[21,-5],[2,2],[0,8],[-2,6],[-3,3],[-25,5],[-10,6],[-1,11],[-3,0],[-3,0],[-3,2],[-3,2],[10,5],[32,-5],[-1,6],[-1,2],[10,7],[23,-15],[15,3],[15,-6],[5,-3],[5,-1],[5,2],[6,5],[4,8],[-9,4],[-26,0],[-3,3],[-3,5],[-4,2],[-7,-7],[-4,1],[-4,3],[-3,5],[0,5],[1,4],[1,6],[-2,6],[-4,2],[-34,-6],[-9,1],[-8,7],[1,9],[-7,4],[-15,3],[13,8],[4,4],[-12,4],[-24,-15],[-12,3],[7,17],[12,5],[13,0],[10,7],[-7,3],[-43,-4],[-7,-4],[3,-8],[-1,-6],[-4,-4],[-5,-2],[-14,3],[-7,4],[-6,6],[7,7],[18,5],[5,8],[-13,5],[-26,2],[-12,9],[4,4],[-16,24],[-2,3],[-6,3],[-3,2],[-1,3],[-2,8],[-2,4],[-2,10],[3,5],[6,0],[12,-8],[9,-3],[8,1],[7,5],[-5,2],[-16,10],[-9,3],[-3,2],[-3,7],[3,4],[2,0],[2,0],[-4,7],[-6,3],[-6,4],[-3,11],[7,4],[20,0],[8,2],[1,5],[-3,6],[-6,7],[19,-4],[-4,7],[-5,5],[-6,3],[-6,1],[-5,-2],[-7,-11],[-5,-3],[-8,3],[-7,10],[-1,12],[7,11],[-5,14],[7,8],[9,6],[-2,9],[6,3],[21,-3],[-31,31],[-14,21],[9,17],[12,0],[6,5],[2,13],[-2,17],[-6,5],[-7,2],[-5,11],[23,10],[9,-1],[-4,-18],[6,0],[6,3],[6,5],[4,7],[0,6],[-3,9],[-4,8],[-3,3],[-61,4],[3,11],[4,5],[57,-3],[11,-4],[40,-31],[22,-9],[11,-1],[0,11],[7,6],[34,4],[8,3],[6,8],[-2,4],[-9,9],[10,5],[24,-14],[12,2],[10,7],[99,4],[2,-2],[4,-6],[3,-2],[3,-5],[2,-2],[12,4],[21,-8],[39,-36],[60,-18],[17,-13],[6,-2],[13,0],[53,-13],[12,5],[26,-8],[8,3],[13,11],[8,2],[64,-16],[33,8],[60,-8],[6,4],[-2,0],[-3,1],[-2,3],[-2,4],[19,1],[9,-3],[8,-6],[-1,-3],[-1,-5],[44,-17],[46,-3],[-43,-13],[-7,2],[-7,10],[-44,4],[1,-3],[2,-3],[1,-1],[3,-1],[-5,-3],[-10,1],[-4,-6],[29,-11],[-8,-6],[-47,-7],[37,-5],[6,-5],[5,-7],[28,-28],[-10,-5],[-103,19],[-102,19],[-6,-2],[-4,-5],[-1,-4],[5,-2],[23,0],[126,-34],[127,-35],[10,-7],[5,-8],[-11,-5],[-34,13],[0,-4],[8,-5],[15,-19],[18,-8],[11,-8],[10,-11],[6,-10],[-7,-4],[-16,4],[-7,-5],[6,-8],[-3,-6],[-15,-6],[7,-10],[9,-2],[58,8],[-2,3],[-1,3],[-2,6],[15,5],[67,-6],[31,-12],[40,-26],[8,-1],[13,4],[5,0],[12,-7],[4,-1],[2,-4],[4,-29],[6,-13],[4,-7],[4,-4],[0,-4],[-25,5],[-7,-3],[-7,-6],[-19,-12],[-2,-4],[-18,-33],[-7,-6],[-9,-2],[-7,0],[-9,3],[-4,0],[-2,-5],[-1,-5],[0,-5],[-2,-5],[-1,-3],[-7,-6],[-43,-9],[-34,-18],[-15,-12],[52,13],[11,6],[5,1],[3,-1],[3,-6],[2,-1],[4,1],[9,3],[11,1],[8,-3],[8,-6],[8,-8],[2,-2],[3,0],[2,-2],[2,-4],[0,-3],[0,-4],[-1,-4],[-1,-1],[4,-5],[4,-3],[4,0],[4,6],[4,8],[4,4],[4,2],[10,1],[4,3],[5,2],[7,-2],[5,-3],[3,-3],[20,-29],[2,1],[1,-7],[2,-4],[7,-6],[5,-7],[-1,-5],[-4,-3],[-2,-3],[-1,-10],[-1,-17],[1,-15],[2,-7],[1,-3],[-1,-7],[-3,-10],[-5,-4],[-16,-6],[-5,-12],[-11,-7],[-13,-4],[-9,-5],[-42,-37],[-6,-3],[-7,0],[-25,11],[-14,2],[5,-10],[0,-5],[-2,-7],[-6,-13],[-3,-3],[-5,-3],[-17,-4],[-10,-14],[-6,-1],[-12,3],[-4,7],[-9,31],[-7,7],[-13,3],[-25,11],[-13,2],[0,-4],[7,-9],[8,-7],[10,-4],[2,-5],[-3,-9],[-10,-8],[-12,0],[-45,10],[-12,5],[-28,25],[-11,2],[-7,-12],[0,-7],[4,-2],[9,1],[4,-5],[4,-5],[4,-4],[14,-5],[-5,-6],[-12,-6],[-11,-2],[-9,5],[-4,-1],[-2,-8],[1,-8],[4,-5],[4,-3],[5,0],[22,4],[5,-2],[4,-5],[3,-5],[4,-4],[26,-18],[6,-11],[-8,-11],[-25,3],[-11,-4],[9,-10],[9,-10],[10,-6],[10,-2],[19,12],[8,1],[4,-17],[-2,-12],[-5,-11],[-17,-29],[0,-3],[4,-8],[4,-6],[31,-13],[8,0],[9,5],[10,10],[1,2],[1,3],[0,7],[0,3],[2,2],[2,1],[2,2],[6,14],[4,6],[4,3],[10,-4],[1,-10],[-8,-40],[-8,-6],[-17,-6],[-4,0],[9,-10],[2,-7],[-8,-5],[-4,-5],[-3,-7],[-2,-6],[4,0],[-4,-6],[-2,-8],[-3,-5],[-4,-1],[2,-8],[9,-13],[4,-8],[-2,0],[1,-3],[0,-1],[-1,-4],[5,-14],[3,-8],[3,-6],[8,-8],[17,-8],[8,-7],[2,-3],[0,-4],[0,-3],[1,-4],[3,-3],[17,-12],[17,-3],[4,-6],[-3,0],[-2,-2],[-3,-2],[6,-10],[10,-9],[9,-7],[8,-3],[6,-3],[16,-29],[16,-14],[36,-21],[15,-18],[5,-12],[11,-18],[4,-4],[5,-12],[3,-5],[10,-10],[8,-20],[-5,-18],[-10,-17],[-7,-18],[2,0],[-3,-18],[-9,-34],[-3,-17],[-2,-31],[-2,-9],[-11,-33],[1,-5],[1,-3],[-2,-8],[2,-4],[-3,-2],[-1,-3],[-1,-3],[-1,-4],[-2,-4],[-2,-3],[-3,-1],[-4,0],[-6,-2],[-1,-5],[1,-20],[-3,-10],[-7,-3],[-29,7],[-2,-2],[-5,-10],[-2,-4],[-14,-5],[-29,16],[-16,-5],[-6,-4],[-16,-5],[-6,-5],[-2,-4],[-3,-11],[-1,-2],[-3,0],[-4,-3],[-3,-4],[-1,-5],[2,-1],[5,-7],[-22,-28],[0,-2],[2,-8],[1,-4],[-2,-3],[-11,-9],[-9,-12],[-4,-8],[-2,-7],[0,-12],[4,-7],[3,-6],[0,-7],[-60,8],[-2,-2],[0,-3],[1,-9],[-1,-5],[-23,-9],[-5,-6],[1,-11],[-16,-10],[-5,-6],[-2,-5],[-6,-15],[-2,-12],[-12,-5],[-61,5],[-16,-10],[-24,1],[-4,-3],[-1,-6],[0,-9],[-3,-18],[-9,-9],[-20,-12],[2,0],[-4,-5],[-35,-33],[-10,-5],[-4,-1],[-4,-3],[-11,-18],[-5,4],[-17,-1],[-15,6],[-17,-9],[-7,4],[1,2],[4,7],[-19,19],[-6,9],[2,0],[4,0],[2,0],[-2,10],[2,3],[5,-1],[5,-4],[0,-10],[5,-10],[7,-7],[5,-1],[1,7],[-3,9],[-6,9],[-8,6],[-15,22],[-2,7],[-5,18],[-2,5],[-15,7],[-32,5],[-12,14],[-4,15],[-3,1],[-7,-5],[-6,-3],[-5,6],[-2,8],[4,7],[-11,8],[2,8],[0,6],[-2,6],[0,8],[2,11],[6,6],[7,3],[7,-3],[5,-8],[0,-8],[-1,-8],[2,-9],[4,-3],[5,6],[4,10],[2,8],[-7,12],[-2,4],[-5,2],[-5,1],[-5,2],[-2,7],[1,4],[-1,1],[-2,3],[4,13],[12,12],[4,16],[1,13],[-2,11],[-4,9],[-4,7],[-2,-7],[-3,-20],[-2,-7],[-6,-10],[-15,-7],[-8,-5],[5,-4],[-5,-7],[-15,-14],[1,-17],[-11,-4],[-36,9],[-10,8],[-1,11],[11,13],[-10,11],[-30,4],[-8,14],[14,2],[42,-2],[0,4],[-37,18],[-11,10],[-1,13],[1,5],[6,2],[-5,10],[-8,3],[-16,-1],[-5,3],[-15,16],[-4,6],[14,-1],[31,-11],[13,8],[-121,32],[-9,5],[-19,15],[-8,-4],[5,-3],[4,-5],[-4,-3],[-3,-1],[-2,1],[5,-5],[21,-8],[-2,-6],[-2,-3],[-7,-3],[8,-4],[8,3],[8,6],[8,3],[9,0],[10,-3],[9,-6],[8,-7],[-102,-8],[-57,-29],[4,-3],[10,-2],[4,-3],[-5,-5],[-6,-7],[-5,-4],[-6,4],[3,-10],[8,-9],[9,-7],[7,-2],[8,4],[5,3],[2,3],[4,2],[23,1],[5,3],[5,5],[5,9],[3,8],[1,4],[-3,2],[-18,2],[-5,2],[8,6],[15,-8],[8,2],[2,5],[0,5],[1,4],[2,2],[29,6],[4,-1],[2,-3],[5,-8],[2,-2],[33,4],[-3,-10],[1,-7],[5,-3],[-43,-3],[14,-3],[22,-11],[20,-15],[10,-17],[-12,3],[-28,15],[-11,-5],[12,-12],[28,-4],[13,-5],[17,-14],[6,-2],[21,1],[6,-5],[-7,-10],[-21,-18],[-8,-4],[5,-4],[17,-4],[6,-4],[6,-10],[4,-3],[2,2],[9,9],[3,1],[3,0],[3,-2],[3,-1],[18,-1],[6,-3],[-1,-6],[1,-4],[0,-3],[0,-4],[-1,-6],[-5,-11],[-3,-11],[-3,-2],[-5,-1],[-3,-3],[2,-4],[37,-43],[11,-7],[8,-11],[3,-2],[5,-2],[5,-4],[8,-11],[11,-16],[4,-11],[2,-11],[0,-26],[1,-13],[2,-8],[7,-5],[8,0],[7,-4],[2,-17],[4,-10],[16,-16],[5,-9],[-2,-8],[-5,-5],[-14,-7],[-13,-10],[-7,-2],[-7,0],[3,8],[3,4],[4,4],[5,6],[1,1],[2,4],[2,4],[-2,1],[-10,0],[-26,-6],[-14,1],[-2,10],[-6,7],[-24,9],[-8,5],[-4,4],[-3,5],[-1,5],[-1,11],[-2,4],[-6,8],[-7,3],[-8,-1],[-6,-6],[-14,-6],[-5,-5],[4,-7],[-5,-3],[-6,0],[-7,4],[-4,5],[-3,7],[-1,6],[0,6],[-1,8],[-5,14],[-7,8],[-9,5],[-10,1],[4,8],[-10,4],[-8,-11],[-7,-14],[-12,-12],[3,-8],[6,-8],[5,-4],[5,-1],[4,-3],[3,-4],[9,-17],[23,-24],[7,-10],[5,-12],[1,-10],[-7,-4],[-21,0],[-3,2],[-12,14],[-20,13],[-41,4],[-8,3],[-9,9],[-11,13],[-4,3],[-6,0],[-10,-7],[-4,-1],[-12,-1],[-5,3],[-4,8],[-6,5],[-7,1],[-5,3],[-1,9],[-1,4],[-2,5],[-3,5],[-3,2],[-5,-2],[0,-5],[1,-7],[0,-6],[-2,-4],[-11,-12],[-5,-2],[-6,0],[-6,3],[-5,5],[-3,5],[-5,27],[2,16],[-9,7],[-1,10],[4,11],[-4,22],[-2,21],[-7,13],[-8,8],[-3,12],[-8,19],[-14,4],[-17,-5],[-43,-21],[-19,-8],[-9,-10],[-16,3],[-3,-2],[-15,8],[-65,-8],[-4,2],[-10,8],[-5,2],[-16,-2],[-5,2],[-4,5],[-8,13],[-5,2],[-5,-3],[-2,-8],[-3,-8],[-3,-5],[-7,0],[-30,20],[-13,4],[-7,0],[4,-10],[2,-2],[-13,-17],[-16,5],[-17,10],[-12,-6],[10,-15],[32,-33],[-9,-6],[-34,14],[-6,-5],[5,-10],[27,-38],[13,-23],[7,-7],[22,-1],[20,-10],[35,-4],[5,-2],[14,-10],[89,-41],[18,-4],[10,-18],[-12,-9],[-9,-14],[-12,-15],[0,-13],[-3,-7],[0,-6],[1,-6],[2,-5],[-25,-22],[-8,-3],[-19,-1],[-9,-5],[-2,-12],[1,-8],[-2,-6],[-6,-4],[-9,-2],[-9,0],[-5,-2],[-2,-2],[-1,-2],[-1,-2],[-2,-2],[-4,-3],[-5,-1],[-9,0],[-5,-1],[-4,-3],[2,-10],[-5,-8],[-7,-8],[-3,-9],[1,-1],[1,-1],[0,-1],[0,-3],[-1,-2],[-5,-5],[-2,-1],[2,-7],[3,-5],[4,-3],[3,-5],[-3,-3],[0,-3],[1,-3],[0,-4],[0,-3],[0,-3],[-1,-4],[-3,-6],[-13,-17],[-4,-7],[-1,-3],[0,-3],[-1,-3],[-2,-3],[-2,-2],[-9,2],[-7,-2],[-14,-7],[-6,-5],[-4,-6],[-7,-13],[-4,-6],[-14,-13],[-4,-7],[-6,-7],[-6,-3],[-13,-1],[-21,-8],[-5,-3],[1,-2],[3,-6],[-2,-4],[-5,-3],[-2,-2],[-1,-2],[-1,-4],[0,-4],[0,-2],[-5,-2],[-10,3],[-4,-3],[-3,-3],[-3,-5],[-3,-6],[-1,-6],[3,-9],[10,-4],[2,-5],[-4,-10],[-21,-6],[-8,-7],[-3,-5],[-4,-3],[-14,-3],[-14,-11],[-20,-8],[-76,1],[-76,1],[-37,16],[-30,23],[-10,4],[-4,3],[-3,5],[-4,11],[-3,5],[-10,11],[-2,1],[-2,3],[-5,11],[-3,3],[-6,3],[-17,15],[-12,16],[-25,18],[-9,4],[-22,3],[-8,7],[-8,10],[-10,6],[-21,7],[69,0],[29,-10],[16,-2],[2,4],[-9,7],[-82,18],[-11,6],[-6,1],[-4,2],[-8,8],[-3,0],[-4,-2],[-27,-2],[-5,2],[-18,12],[-16,5],[-4,3],[-3,6],[-2,5],[0,5],[-1,5],[-4,5],[-19,13],[-12,5],[-5,1],[-6,2],[-3,5],[-2,6],[-2,5],[-20,16],[-11,5],[-8,-3],[2,-6],[-2,-2],[-5,0],[-4,2],[-3,5],[-2,11],[-3,7],[-4,4],[-24,10],[-9,11],[-5,3],[-4,0],[-16,-6],[-4,4],[-53,8],[-10,-6],[65,-32],[7,-8],[4,-12],[-1,-10],[-4,-8],[-7,-3],[-8,1],[-10,4],[-10,7],[-7,10],[-3,3],[-17,3],[-16,11],[-5,2],[-17,-1],[-9,-3],[-8,-6],[-17,-9],[-20,0],[-37,15],[9,7],[10,2],[21,-1],[19,4],[1,1],[1,2],[0,4],[-1,3],[-2,2],[-3,1],[-46,-13],[-89,10],[-90,11],[-11,6],[-6,1],[-21,-4],[-35,18],[-10,-4],[-10,-5],[-23,-2],[-9,-7],[104,-61],[17,-16],[8,-5],[8,5],[-17,24],[-8,16],[-4,8],[-5,5],[5,10],[10,3],[32,-4],[17,-10],[54,-7],[48,-6],[63,-25],[58,-11],[37,-16],[30,-25],[22,-8],[10,-6],[26,-33],[3,-3],[5,-11],[3,-2],[5,-2],[26,-16],[6,-6],[4,-10],[2,-17],[2,-9],[4,-10],[5,-9],[4,-7],[38,-26],[11,-3],[5,-3],[4,-4],[6,-9],[2,-3],[2,-2],[0,-4],[0,-7],[1,-3],[5,-9],[12,-14],[5,-8],[7,-7],[21,9],[9,0],[11,-10],[4,-2],[73,-5],[19,-9],[119,-11],[12,-8],[9,0],[19,10],[10,2],[30,-3],[15,-8],[7,-1],[5,9],[-4,3],[11,8],[14,0],[14,-6],[23,-14],[43,5],[90,-22],[3,-5],[-1,-7],[-5,-7],[7,-7],[15,-9],[7,-8],[4,-14],[-3,-7],[-7,-6],[-5,-10],[0,-12],[4,-8],[1,-7],[-8,-10],[-22,-15],[-8,-9],[3,-2],[3,-4],[2,-4],[2,-6],[-8,-13],[-4,-4],[-5,-1],[-4,-1],[-5,-1],[-4,-6],[-5,-11],[-12,-18],[-8,-18],[-8,-22],[-2,-9],[1,-6],[2,-10],[0,-4],[-5,-3],[-11,-1],[-4,-2],[-13,-20],[-7,-8],[-8,6],[0,5],[1,6],[0,5],[-5,2],[-3,-2],[-4,-6],[-3,-7],[-2,-5],[0,-8],[5,-22],[1,-9],[-2,-8],[-2,-5],[-7,-7],[-2,-7],[-4,-14],[-2,-5],[-7,-7],[-45,-21],[-12,-2],[-1,-2],[0,-4],[0,-7],[-1,-6],[-2,-4],[-5,-9],[-3,-8],[-2,-8],[-2,-10],[0,-12],[-3,-24],[-7,-16],[-33,-35],[-6,-10],[-3,-12],[15,-19],[4,-8],[-17,-4],[-5,-6],[-3,-7],[-6,-7],[-5,-6],[-5,-3],[-25,5],[-5,-3],[-9,-14],[-5,-4],[-5,-1],[-49,-34],[-5,-1],[-16,0],[-1,-4],[3,-8],[-11,-6],[-21,-4],[-2,-4],[0,-7],[-4,-8],[-5,-4],[-8,0],[-13,4],[-12,7],[-4,0],[-2,-3],[-3,-2],[-2,0],[-4,3],[1,6],[1,2],[-9,4],[-17,-11],[-10,3],[0,1],[1,6],[0,3],[-1,2],[-3,2],[-13,4],[-12,11],[-13,8],[-7,11],[-7,14],[-2,13],[-1,6],[-3,5],[-6,7],[-2,3],[-1,2],[-3,-1],[-7,-13],[4,-3],[12,-15],[4,-7],[11,-33],[5,-9],[15,-21],[2,-6],[1,-5],[2,-4],[4,-2],[7,1],[3,-1],[4,-4],[-7,-3],[-27,3],[1,2],[5,6],[-5,3],[-10,0],[-4,1],[-4,4],[-9,15],[-3,3],[-6,3],[-4,1],[0,-3],[3,-4],[4,-2],[3,-5],[-2,-8],[1,-4],[1,-1],[0,-3],[-11,12],[-12,20],[-13,13],[-16,-10],[-7,6],[-9,16],[-9,9],[-5,2],[-5,-3],[1,-11],[-1,-18],[2,-11],[4,-9],[16,-24],[-7,0],[-9,12],[-14,29],[-18,24],[-10,10],[-8,-2],[2,-2],[1,-5],[2,-5],[0,-6],[-1,-8],[-3,4],[-4,12],[-5,8],[-21,22],[2,7],[2,4],[3,3],[3,2],[8,0],[5,1],[2,6],[-1,5],[-2,8],[-1,5],[0,6],[0,17],[0,5],[-2,4],[-4,7],[-4,4],[-2,-3],[-3,-11],[-1,-6],[1,-6],[0,-3],[-4,-2],[-14,4],[-5,0],[5,-9],[7,-3],[5,-5],[2,-13],[-4,-8],[-8,3],[-14,11],[-8,2],[-8,0],[-8,-3],[-14,-11],[-22,-9],[16,-8],[5,-6],[3,-3],[5,0],[2,4],[-2,10],[17,-1],[9,-3],[5,-8],[-7,-5],[-3,-7],[1,-9],[5,-8],[0,1],[6,-1],[2,-1],[0,-3],[1,-2],[0,-2],[6,-5],[6,-3],[0,-4],[-10,1],[-5,-2],[-4,-3],[2,-4],[0,-1],[0,-1],[0,-2],[6,-5],[14,-3],[6,-9],[2,-7],[0,-9],[-2,-7],[-4,-5],[-5,-2],[-13,2],[-6,0],[-7,-4],[-4,0],[-2,1],[-8,7],[7,4],[4,6],[1,9],[-5,9],[-7,6],[-6,2],[-3,-4],[3,-12],[-6,0],[-7,3],[-5,0],[-3,-11],[-6,7],[-9,18],[-6,8],[-7,3],[-8,1],[-8,-1],[-7,-3],[0,-4],[15,-5],[24,-28],[14,-12],[-3,-3],[-2,-1],[-3,-1],[-4,1],[8,-8],[2,-11],[26,-27],[8,-11],[1,-5],[0,-4],[0,-4],[-1,-5],[-1,-8],[-3,-1],[-7,3],[-31,0],[4,-4],[11,-7],[2,-5],[0,-7],[-4,-6],[-4,-5],[-3,-3],[2,-8],[-3,-3],[-9,-1],[-1,-3],[-8,-21],[3,-8],[3,-8],[-9,-3],[-12,-8],[-10,-3],[-7,9],[4,3],[9,2],[4,3],[-6,5],[-7,4],[-8,0],[-6,-4],[2,-1],[4,-4],[-12,-9],[-15,-3],[-14,3],[-12,9],[9,9],[-19,3],[-6,5],[9,-1],[5,1],[4,4],[-11,8],[-24,11],[-11,1],[1,-13],[-4,-5],[-6,-2],[-6,-4],[4,-4],[5,-2],[5,0],[5,2],[4,4],[2,4],[2,3],[4,0],[5,-4],[5,-10],[3,-13],[-1,-13],[-3,-7],[-4,1],[-6,6],[-19,-4],[-14,-10],[-4,-5],[-5,-1],[-46,-4],[-18,6],[-18,14],[-4,6],[-2,1],[-11,4],[-9,7],[-5,3],[-12,-4],[-11,2],[-10,6],[-13,10],[-4,2],[-12,0],[-5,1],[-5,6],[5,9],[6,-2],[5,-5],[6,-2],[-4,9],[-7,6],[-38,17],[-8,1],[-3,-1],[-9,-7],[-3,0],[-23,2],[-3,2],[0,6],[2,3],[3,2],[3,1],[-3,9],[-4,8],[-6,3],[-5,-5],[-5,-10],[-3,-4],[-42,-1],[-13,6],[-12,15],[6,6],[22,6],[0,4],[-26,8],[-4,-2],[0,-7],[1,-3],[-1,-2],[-2,-6],[-3,-5],[-3,-4],[-4,-2],[-3,-1],[0,-4],[1,-6],[-5,-1],[-12,3],[-11,0],[-4,1],[-7,6],[-31,9],[-21,-1],[-6,3],[-20,20],[-10,7],[-68,19],[0,15],[-10,8],[-12,3],[-6,1],[-4,-3],[-14,1],[-5,2],[-2,6],[-2,6],[-3,6],[-8,2],[-23,-6],[-8,6],[-8,11],[-11,8],[-41,12],[-15,10],[-13,3],[-9,4],[-9,6],[-7,9],[-10,16],[-5,4],[-14,9],[-4,5],[-2,11],[4,18],[-5,6],[-5,1],[-12,-3],[-6,4],[-8,13],[-5,4],[-4,-3],[23,-24],[2,-4],[2,-4],[2,-4],[1,-4],[1,-5],[-1,-13],[1,-2],[6,-5],[11,-19],[5,-5],[4,0],[3,-1],[2,-4],[1,-5],[-13,-6],[3,-3],[4,-2],[8,1],[0,-4],[-14,-5],[-47,1],[1,-6],[0,-5],[-1,-5],[-2,-5],[4,0],[9,3],[4,-3],[3,-5],[3,-11],[2,-6],[5,-8],[2,-5],[0,-7],[3,-4],[31,-19],[6,-1],[13,1],[10,-4],[17,-15],[10,-1],[-3,5],[-8,4],[-3,3],[0,6],[5,1],[16,-9],[9,0],[16,6],[0,4],[-19,0],[-5,2],[-8,8],[-5,2],[-3,3],[-9,18],[-16,16],[4,3],[1,1],[3,0],[-5,7],[-5,5],[16,11],[18,-10],[33,-29],[19,-4],[5,-4],[8,-10],[4,-3],[21,-4],[29,-17],[39,-5],[37,-29],[6,-2],[7,4],[7,11],[8,9],[9,0],[10,-5],[8,-10],[5,-25],[2,-4],[30,-3],[11,4],[4,-1],[2,-2],[6,-7],[3,-3],[23,-9],[7,-7],[-6,-3],[-13,-1],[-5,-4],[-6,-11],[3,-5],[5,-3],[3,-5],[-9,-3],[-21,-11],[-8,6],[4,3],[-4,10],[-5,-1],[-5,-6],[-3,-6],[-5,-15],[-3,-6],[-6,-4],[-35,-15],[-4,-5],[21,-16],[3,-1],[2,1],[2,12],[5,2],[17,-2],[2,1],[2,1],[3,2],[0,2],[0,3],[0,4],[1,3],[9,0],[13,-20],[7,0],[4,6],[3,12],[0,12],[-1,10],[8,7],[16,0],[7,7],[5,7],[3,2],[9,-2],[4,2],[11,16],[8,5],[16,5],[17,11],[8,3],[8,-1],[32,-22],[10,-13],[2,-2],[1,-3],[1,-8],[-1,-6],[-1,-6],[0,-5],[3,-7],[3,-4],[3,-2],[13,-1],[3,-3],[7,-8],[29,-18],[5,-11],[-2,-1],[-6,-7],[5,-7],[6,-2],[5,3],[6,4],[4,3],[41,-5],[6,-3],[13,-17],[6,-4],[5,0],[4,4],[3,6],[5,1],[8,-3],[8,-5],[9,-15],[40,-20],[-6,-4],[-8,1],[-33,17],[-6,2],[3,-10],[5,-6],[6,-4],[14,-3],[15,-11],[8,-3],[23,1],[5,-5],[2,-11],[-5,-5],[-8,-2],[-6,-3],[4,-7],[-1,-8],[3,-5],[5,-3],[5,-4],[-7,-8],[0,-5],[4,-4],[4,-8],[1,-5],[-1,-6],[0,-5],[-1,-4],[-1,-4],[1,-2],[0,-2],[-2,0],[-5,2],[-2,1],[-1,-3],[2,-6],[10,-3],[3,-3],[1,-7],[-2,-3],[-3,-3],[-1,-4],[1,-7],[10,-21],[-3,-1],[-7,-3],[4,-7],[9,-1],[5,-5],[-5,-2],[-4,-14],[-9,5],[-3,-4],[-3,-6],[-3,-6],[9,0],[-3,-7],[-5,-2],[-10,0],[-1,-2],[3,-5],[4,-6],[3,-3],[-4,-3],[-4,-2],[-9,1],[3,-8],[-3,-4],[-12,-4],[-57,7],[-6,-3],[-12,-14],[-5,-2],[-7,-2],[-6,-2],[-10,-9],[-3,-12],[-3,-8],[-26,-19],[-3,-1],[-21,-1],[-6,-3],[4,-4],[10,-4],[5,-5],[-12,-8],[-13,0],[-60,14],[-14,9],[-8,2],[-26,0],[-41,11],[-29,15],[-14,2],[0,-3],[1,0],[1,-1],[-2,-12],[4,-7],[6,-5],[3,-6],[-3,-9],[-8,-2],[-9,3],[-19,14],[-15,7],[-14,2],[-27,-6],[-7,-5],[-2,-8],[2,-11],[6,-6],[7,-6],[4,-6],[10,-18],[11,-12],[26,-12],[0,-5],[-5,1],[-5,3],[-4,0],[-5,-4],[4,-3],[21,-7],[65,-7],[20,-9],[2,-6],[0,-6],[0,-12],[-2,-6],[-2,-6],[-3,-5],[-9,-7],[-2,-5],[3,-6],[-5,-4],[-6,-1],[-12,1],[-19,8],[-18,-2],[-5,2],[-3,9],[3,5],[10,7],[-3,7],[-4,7],[-5,4],[-9,-10],[-12,3],[-5,-3],[9,-13],[-4,-7],[-7,1],[-8,3],[-7,0],[1,-3],[3,-7],[1,-3],[-22,-5],[-8,1],[-8,4],[-5,5],[-1,7],[6,12],[-6,7],[-3,-4],[-2,-7],[-2,-4],[-4,1],[-2,2],[-1,3],[-13,13],[-3,5],[-5,4],[-4,1],[0,-8],[3,-7],[6,-5],[4,-6],[-2,-11],[4,-2],[3,-2],[3,-5],[2,-7],[-4,-4],[-2,-3],[-2,-4],[0,-7],[2,-6],[4,3],[5,6],[1,3],[5,2],[1,-2],[-1,-8],[-1,-6],[-3,-1],[-3,-1],[-4,-5],[2,-3],[1,-3],[0,-2],[-1,-3],[1,-4],[0,-2],[0,-3],[-4,2],[-13,10],[-5,2],[-17,-2],[-9,3],[-3,-3],[-2,-10],[0,-10],[1,-4],[3,-8],[-2,-8],[1,-5],[4,-3],[5,0],[0,-4],[-5,-1],[-9,-6],[-6,-1],[-10,0],[-6,-1],[-5,-3],[7,-4],[18,0],[22,-11],[7,-2],[4,-3],[5,-7],[3,-7],[0,-3],[-1,-2],[-1,-4],[0,-4],[-1,-4],[-9,-6],[3,-5],[6,-4],[2,-3],[2,-6],[2,-12],[1,-5],[7,-8],[15,-10],[6,-8],[1,-4],[-7,2],[-16,11],[-12,-7],[-4,7],[-3,12],[1,11],[-20,12],[1,3],[0,1],[1,2],[1,2],[-2,6],[-3,7],[-3,6],[-5,3],[-3,6],[-2,1],[-2,0],[-4,-4],[-3,0],[-4,1],[-6,4],[-5,4],[-3,5],[-5,4],[-13,-3],[-10,7],[-52,12],[-34,15],[19,-14],[10,-5],[20,-4],[26,-22],[8,-3],[10,-1],[1,-2],[0,-4],[0,-4],[0,-2],[2,-1],[8,1],[9,-2],[9,-5],[9,-9],[5,-13],[-6,-2],[-1,-7],[-1,-9],[-4,-6],[-7,1],[-4,1],[-4,2],[-2,3],[-1,3],[-2,4],[-3,2],[-3,0],[-12,-4],[-10,4],[-5,0],[-4,-4],[12,-8],[-6,-6],[-8,-1],[-15,3],[-3,-1],[-3,-6],[-4,-1],[-2,-2],[-1,-6],[-2,-12],[12,-7],[5,-1],[15,6],[8,1],[8,-3],[7,-4],[-3,-9],[-6,-9],[-6,-8],[-6,-3],[-11,7],[-6,1],[-4,-8],[3,-1],[2,-2],[0,-4],[-1,-5],[-3,-4],[-3,-1],[-7,1],[2,0],[-6,6],[-3,2],[-3,0],[-3,-4],[0,-3],[2,-4],[1,-5],[-1,-10],[-2,-9],[-3,-6],[-5,0],[-5,5],[-10,24],[-5,5],[-7,4],[-7,3],[-6,0],[3,-5],[3,-4],[3,-5],[2,-6],[-34,8],[0,-4],[55,-41],[0,-4],[-42,2],[-6,-2],[15,-11],[4,-1],[3,-3],[3,-6],[3,-6],[3,-5],[-9,-2],[-7,2],[-44,25],[-29,9],[-5,-1],[6,-11],[23,-19],[6,-8],[-26,-1],[-5,-4],[-3,-11],[4,-4],[27,1],[3,-6],[3,-5],[3,-2],[34,-8],[-6,-4],[-6,-1],[-13,1],[0,-4],[4,-2],[7,-8],[3,-2],[16,0],[12,4],[4,-1],[6,-3],[1,-2],[-3,-10],[-2,-13],[-2,-5],[-3,3],[-3,4],[-3,2],[-17,1],[-10,4],[-10,7],[-5,1],[-5,-4],[6,-6],[4,-8],[4,-7],[8,-4],[16,6],[6,-2],[-36,-24],[-5,-2],[-10,-1],[-6,-2],[-47,-40],[-7,-8],[-13,-20],[-7,-8],[-2,0],[-4,4],[-3,4],[-4,4],[-1,-8],[-11,-24],[-5,-9],[-3,-3],[-6,-3],[-3,-2],[-13,-20],[3,-2],[2,-3],[0,-4],[-1,-3],[1,-6],[2,-5],[3,-4],[3,-1],[-7,-4],[-2,-1],[12,-7],[5,-1],[4,1],[3,1],[4,0],[3,-4],[9,-13],[1,-8],[-5,-5],[1,-6],[1,-2],[-7,-6],[-18,-9],[-8,-1],[-11,3],[-23,12],[-11,1],[5,-10],[12,-11],[6,-8],[0,-4],[2,-13],[0,-3],[3,-1],[2,-3],[1,-4],[1,-4],[-2,0],[-6,-4],[3,-10],[-8,-7],[-10,-7],[-5,-9],[16,0],[-5,-11],[-2,-6],[0,-7],[3,-8],[5,1],[6,4],[5,-1],[3,-9],[-2,-6],[-6,-4],[-4,-1],[-11,0],[-5,-1],[-5,-4],[-3,0],[-3,-3],[0,-5],[-5,-6],[-4,-9],[-2,-11],[-1,-12],[-2,-7],[-11,-22],[-4,-9],[-1,-7],[-1,-5],[-1,-4],[-2,-5],[-4,-3],[-9,-3],[-6,-8],[-6,-4],[-3,-4],[-1,-3],[0,-3],[0,-6],[-1,-2],[-3,-3],[-2,-1],[-7,-25],[-2,-13],[1,-9],[2,-13],[-3,-10],[-17,-25],[-4,-6],[-2,-5],[-1,-7],[1,-4],[1,-4],[-2,-7],[-5,-10],[-2,-6],[1,-3],[3,-3],[0,-6],[-2,-7],[-2,-4],[-14,-11],[-33,15],[-13,-8],[6,-5],[14,-6],[6,-5],[-7,-11],[-26,7],[-11,-4],[27,-8],[7,-6],[14,-33],[0,-5],[3,-8],[1,-3],[-1,-7],[-4,-12],[-1,-5],[-2,-9],[-9,-17],[-3,-12],[-7,-13],[0,-7],[2,-3],[2,-3],[2,-3],[2,-13],[0,-12],[-1,-10],[-3,-10],[-2,-2],[-3,-3],[-1,-3],[0,-5],[0,-1],[1,-2],[2,-8],[1,-5],[0,-5],[0,-7],[-4,-9],[-11,-6],[-4,-9],[1,-1],[3,-3],[-2,-3],[-1,-3],[0,-3],[-1,-3],[4,-4],[-7,-1],[-5,-4],[-1,-6],[1,0],[4,-6],[-4,-6],[-4,-10],[-2,-9],[6,-3],[-2,-9],[-2,-3],[2,-2],[1,-4],[1,-2],[-1,-15],[7,-27],[-4,-11],[5,-13],[1,-5],[-1,-7],[-2,-12],[-1,-5],[-1,-4],[-3,-10],[-2,-5],[3,-29],[0,-5],[-4,-2],[-3,-4],[1,-6],[3,-13],[0,-4],[0,-3],[1,-4],[3,-7],[3,-3],[2,-1],[3,-2],[2,-6],[-6,-3],[-2,-7],[0,-8],[-2,-6],[2,-6],[2,-1],[2,-1],[3,-3],[1,-4],[1,-2],[0,-3],[1,-5],[-1,0],[-1,-5],[0,-5],[3,-2],[2,-2],[2,-2],[1,-4],[1,-4],[-2,-4],[0,-4],[1,-16],[1,-2],[1,-2],[1,-5],[1,-7],[-1,-6],[-2,-4],[-3,-7],[4,-3],[5,3],[6,6],[5,2],[1,-1],[-3,-3],[-4,-3],[-1,-1],[-5,-9],[-3,-3],[-4,0],[2,-6],[0,-2],[-10,-5],[-3,-4],[2,-8],[-3,-7],[-1,-3],[-2,-2],[3,-3],[1,-4],[-1,-4],[-3,-5],[2,-4],[1,-5],[-1,-11],[-2,-2],[-1,-3],[-1,-4],[1,-2],[4,-7],[1,-3],[-1,-4],[-2,-10],[-1,-6],[-1,-20],[-1,-4],[-13,-8],[-19,4],[-16,-1],[-9,-19],[9,5],[42,4],[3,-3],[0,-2],[-1,-9],[0,-4],[1,-3],[1,-2],[0,-2],[-2,-5],[12,-2],[12,-6],[8,-12],[3,-20],[-1,-11],[-2,-9],[-7,-17],[-3,-4],[-2,-2],[0,-3],[1,-4],[0,-3],[-1,-8],[-3,-9],[18,24],[9,7],[12,-2],[17,-15],[9,-10],[8,-11],[4,-14],[5,-32],[4,-11],[11,-7],[10,4],[19,15],[-1,4],[0,1],[-1,3],[4,4],[3,11],[3,5],[4,4],[9,4],[4,1],[-1,-5],[-2,-4],[-2,-2],[-3,-2],[2,-6],[0,-6],[-2,-8],[-2,-10],[2,-9],[3,-5],[3,-3],[2,-5],[-1,-8],[-3,-8],[-5,-6],[-8,-6],[-3,-9],[-6,-18],[-3,-17],[6,-32],[-4,-24],[4,-19],[0,-7],[-3,-10],[-8,-12],[-2,-11],[0,-3],[1,-10],[0,-5],[0,-8],[-3,-14],[-1,-16],[-5,-26],[-2,-7],[2,-5],[6,26],[5,13],[5,6],[0,3],[5,21],[3,4],[3,3],[2,3],[-2,7],[8,14],[1,6],[0,5],[0,16],[-1,3],[-1,5],[0,38],[1,12],[0,6],[-1,6],[-1,5],[-1,8],[0,8],[1,6],[4,13],[14,23],[4,13],[-1,6],[-1,9],[2,9],[3,4],[3,3],[-3,9],[-4,9],[-3,8],[9,-6],[8,-1],[17,2],[48,-8],[5,0],[3,2],[6,8],[4,3],[4,-1],[4,-3],[4,-1],[4,2],[8,8],[4,2],[8,-1],[32,-15],[5,-1],[6,5],[11,1],[3,-1],[3,-10],[0,-12],[2,-10],[8,-4],[4,-1],[4,-2],[3,0],[3,5],[8,17],[3,5],[6,5],[25,5],[7,-1],[6,-4],[5,-9],[4,0],[1,-11],[5,-25],[1,-7],[-2,-8],[-1,-11],[2,-23],[1,-6],[2,-10],[1,-7],[-2,-14],[0,-6],[1,-9],[7,-22],[13,-32],[3,-21],[2,-12],[3,-9],[11,-22],[3,-10],[1,-13],[2,-9],[8,-16],[-1,-6],[4,-11],[3,-5],[3,-4],[7,-6],[4,-4],[2,-6],[-4,-5],[1,-4],[2,-5],[3,-6],[2,-16],[1,-6],[3,-3],[5,-6],[1,-15],[-1,-31],[11,-52],[3,-26],[-8,-16],[4,-3],[8,-1],[3,-4],[2,-6],[3,-14],[5,-15],[7,-30],[7,-12],[8,-15],[2,-7],[2,-10],[12,-33],[0,-6],[-1,-13],[1,-6],[2,-3],[9,-7],[3,-4],[2,-4],[1,-6],[1,-6],[2,-11],[2,-5],[3,-4],[3,-6],[2,-10],[2,-27],[6,-19],[0,-12],[-2,-26],[-3,-22],[-5,-18],[-24,-69],[-15,-34],[-19,-29],[-6,-17],[-5,-10],[-4,-3],[-11,-4],[-23,-13],[-11,-4],[6,-4],[38,12],[13,8],[39,46],[13,11],[59,17],[10,5],[3,-1],[4,-6],[-2,-5],[-4,-4],[-4,-2],[-6,-4],[-18,-32],[-4,-4],[-5,-2],[-9,-2],[-6,-3],[-8,-10],[-5,-4],[0,-4],[15,9],[22,6],[7,6],[25,31],[31,13],[42,10],[54,32],[78,32],[77,36],[49,21],[50,-2],[45,-19],[22,2],[7,-2],[20,-17],[7,-3],[15,-2],[7,-3],[6,-8],[2,-12],[18,-6],[15,-17],[26,-13],[3,-7],[1,-1],[23,-11],[4,-3],[19,-25],[7,-6],[25,-4],[13,-12],[70,-19],[17,-10],[8,-3],[25,3],[8,-3],[14,-11],[14,-4],[21,-14],[23,-2],[5,-4],[4,-6],[5,-5],[5,-1],[5,4],[5,2],[15,0],[8,0],[5,4],[3,1],[3,-1],[2,-3],[1,-8],[2,-1],[5,-1],[6,-2],[1,-5],[-6,-8],[10,-13],[22,-21],[10,-15],[8,-15],[4,-7],[11,-4],[17,-15],[6,1],[8,-8],[8,-12],[8,-15],[7,-9],[2,-1],[5,-2],[2,-3],[2,-4],[2,-4],[15,-16],[58,-36],[16,-5],[15,-11],[3,-4],[1,-7],[1,-2],[5,-20],[4,-8],[25,-34],[37,-76],[0,-4],[1,-8],[1,-9],[3,-3],[7,-5],[6,-11],[8,-19],[4,-4],[4,-2],[1,-3],[0,-9],[-2,-4],[-8,-16],[1,-8],[1,-9],[4,9],[3,9],[4,8],[8,3],[7,-1],[7,-3],[4,-6],[-1,-10],[7,-4],[23,0],[7,-4],[2,-10],[-4,-23],[13,8],[72,-20],[22,3],[7,-3],[-1,-2],[0,-2],[-1,-2],[-2,-2],[4,-3],[16,3],[6,-2],[16,-14],[11,-6],[11,-2],[5,-3],[10,-10],[28,-21],[58,-32],[23,-22],[68,-25],[21,-5],[18,-7],[9,-10],[12,-5],[9,-7],[8,-5],[10,-5],[10,-3],[4,-10],[9,-11],[11,-10],[8,-10],[7,-16],[9,-11],[6,-9],[18,-27],[32,-23],[16,-9],[31,-8],[7,-6],[3,-13],[-3,-15],[-6,-5],[-7,-2],[-7,-4],[-2,-5],[-2,-11],[-2,-5],[-3,-4],[-7,-5],[-4,-5],[-4,-11],[-6,-22],[-4,-10],[-18,-24],[-3,-10],[1,-3],[2,-8],[1,-5],[-1,-4],[-5,-15],[-4,-16],[1,-6],[4,2],[6,10],[4,11],[8,40],[3,10],[35,71],[13,15],[13,10],[15,6],[30,0],[92,-29],[16,2],[21,11],[10,3],[6,5],[54,9],[10,-1],[17,-9],[9,-2],[5,1],[34,26],[8,3],[7,-3],[12,-10],[26,-14],[10,-13],[2,-9],[-2,-7],[-1,-5],[5,-1],[2,2],[2,11],[1,3],[4,0],[3,-4],[3,-4],[3,-4],[4,0],[4,2],[3,0],[4,-4],[1,-5],[1,-6],[2,-5],[3,-2],[2,-3],[-2,-5],[-4,-8],[0,-7],[1,-5],[3,-4],[3,-5],[2,4],[-5,9],[1,7],[3,6],[0,5],[-5,12],[-1,6],[-1,10],[-3,6],[-6,2],[-12,2],[-4,3],[-4,4],[-7,9],[7,5],[31,-10],[21,-15],[5,-2],[12,2],[4,-1],[7,-5],[33,-6],[12,1],[3,-1],[4,-3],[5,-8],[3,-1],[7,1],[19,15],[14,6],[18,0],[15,-11],[7,-27],[-2,-4],[-2,-2],[-3,-5],[-1,-8],[-1,-3],[-6,-15],[6,3],[9,19],[5,7],[4,-1],[9,-6],[5,-2],[14,-1],[5,1],[20,15],[8,2],[7,-4],[15,-12],[7,-1],[-1,3],[-1,7],[0,3],[5,0],[4,-5],[3,-5],[3,-3],[6,0],[4,-3],[3,-4],[3,-7],[2,-2],[3,-2],[2,-2],[0,-3],[-1,-3],[0,-2],[1,-4],[4,-5],[12,-2],[5,-1],[4,-4],[-1,6],[-5,14],[8,8],[-1,8],[-6,10],[-5,11],[7,-3],[9,-18],[13,-9],[1,-11],[-2,-12],[-6,-20],[-2,-10],[2,-10],[6,-17],[0,-4],[-1,-4],[0,-7],[-1,-1],[-1,-2],[-2,-1],[0,-3],[0,-4],[1,-3],[1,-3],[3,-21],[1,-4],[2,-2],[7,-1],[3,-3],[3,-12],[-1,-13],[-16,-70],[-16,-82],[-17,-58],[-5,-31],[-5,-16],[-1,-6],[-1,-3],[-5,-8],[-2,-3],[2,-17],[-1,-3],[4,-3],[0,-6],[-1,-12],[0,-41],[1,-9],[2,-8],[3,-7],[11,-22],[1,-7],[-4,-8],[3,-3],[3,1],[3,2],[4,0],[3,-1],[3,-3],[16,-23],[4,-8],[18,-87],[4,-11],[2,-7],[3,-31],[3,-7],[2,-7],[-1,-16],[-4,-24],[-2,-8],[-10,-30],[-4,-6],[-2,-13],[-1,-15],[-2,-11],[4,-9],[0,-9],[-1,-9],[-1,-9],[1,-10],[2,-11],[3,-10],[8,-22],[4,-16],[9,-70],[0,-12],[-1,-7],[-6,-11],[-13,-16],[-4,-2],[-5,-1],[-5,-3],[-4,-5],[2,-7],[-9,-35],[-4,-19],[-3,-46],[1,-8],[3,-7],[1,-9],[-1,-8],[-4,-6],[8,-6],[10,-19],[11,-5],[3,-4],[3,-4],[2,-3],[12,-4],[5,-4],[18,-25],[15,-26],[3,-10],[-2,-8],[7,-12],[12,-40],[9,-9],[9,-5],[10,-14],[29,-59],[9,-14],[9,-5],[23,-27],[2,-7],[-1,-8],[-4,-11],[2,-10],[4,-25],[3,-5],[3,-3],[12,-15],[3,-6],[-29,7],[-7,-1],[-32,-22],[-4,-1],[-2,-10],[-3,-4],[-4,4],[-6,3],[-8,-3],[-8,-6],[-6,-8],[6,2],[3,3],[3,3],[2,-5],[-9,-12],[-8,-16],[6,1],[7,3],[7,6],[10,16],[7,3],[65,-1],[14,-12],[7,-17],[13,-37],[10,-14],[24,-8],[10,-12],[21,-17],[8,1],[4,5],[4,1],[6,-9],[6,-7],[15,-7],[7,-8],[1,-5],[4,-16],[7,-16],[1,-6],[3,-12],[6,-7],[14,-8],[2,0],[4,1],[2,-1],[1,-2],[0,-2],[0,-2],[0,-2],[10,-10],[3,-4],[8,-13],[10,-13],[4,-7],[9,-21],[3,-5],[3,-1],[3,-3],[5,-10],[3,-7],[1,-4],[-1,-4],[0,-7],[3,-12],[7,-25],[3,-19],[8,-34],[3,-7],[5,-10],[5,-8],[5,-3],[4,-6],[1,-13],[0,-25],[3,-23],[-1,-10],[-5,-4],[-6,-1],[-32,-20],[-12,-11],[-11,-15],[-10,-18],[-2,-4],[-3,-13],[-2,-5],[-3,-6],[-2,-3],[-5,-6],[-21,-13],[-6,-7],[-3,-6],[-7,-20],[-3,-4],[-16,-11],[-5,-6],[-4,-8],[-4,-9],[10,2],[5,3],[5,7],[2,-3],[1,-4],[0,-5],[-1,-3],[-7,-10],[2,-4],[10,13],[11,39],[8,17],[7,4],[15,2],[7,4],[9,9],[3,1],[3,2],[2,5],[2,5],[1,5],[18,19],[3,7],[3,11],[5,10],[11,14],[21,15],[12,15],[7,1],[37,-16],[7,-5],[8,-4],[17,1],[7,-3],[4,-4],[4,-10],[4,-3],[16,-4],[6,-3],[18,-29],[12,-14],[26,-21],[11,-14],[11,-35],[4,-6],[5,-3],[29,-38],[14,-25],[27,-51],[2,-8],[4,-16],[2,-7],[10,-14],[1,-6],[0,-9],[0,-7],[2,-6],[3,-4],[0,24],[-1,14],[-5,6],[-3,6],[-11,35],[-10,20],[-6,9],[-4,4],[-5,5],[-6,18],[-3,7],[-4,10],[-35,38],[-9,19],[-6,19],[-5,21],[-1,22],[4,23],[11,28],[4,19],[-3,16],[-2,7],[-1,10],[0,10],[1,8],[2,0],[12,12],[5,3],[6,14],[4,3],[17,5],[3,3],[0,10],[-3,15],[-4,16],[-4,12],[12,2],[13,12],[34,49],[6,3],[13,-15],[6,-2],[3,-5],[-4,-16],[-6,-19],[-1,-11],[3,-13],[2,-2],[23,-1],[4,1],[3,3],[3,4],[2,2],[4,0],[5,-7],[4,-7],[3,-7],[15,-16],[5,-8],[1,-6],[0,-15],[1,-7],[2,-7],[5,-11],[2,-7],[5,-39],[4,-11],[1,-7],[-1,-5],[-6,-9],[-1,-6],[1,-9],[2,-8],[12,-21],[3,-4],[15,-7],[-3,7],[-4,10],[-3,8],[-9,7],[-1,9],[0,10],[2,23],[1,4],[1,5],[5,9],[7,14],[3,4],[6,0],[-3,8],[-11,6],[-3,8],[2,9],[4,7],[5,5],[5,6],[6,16],[5,9],[11,7],[2,0],[15,0],[-6,12],[-19,-2],[-9,6],[-2,14],[0,18],[4,16],[4,9],[-3,2],[-7,0],[-4,2],[-2,4],[-5,14],[-3,3],[-7,1],[-7,4],[-4,8],[2,15],[-8,7],[-4,4],[-3,5],[-5,16],[-3,6],[-6,3],[3,10],[4,6],[5,3],[6,1],[2,-1],[6,-3],[3,0],[3,1],[7,6],[7,4],[5,7],[5,9],[2,9],[-2,7],[-8,13],[-2,11],[-5,14],[0,8],[6,4],[12,3],[23,11],[4,6],[3,16],[3,1],[2,-1],[2,3],[0,6],[-1,6],[-1,5],[-2,5],[11,-1],[6,3],[4,6],[-2,2],[-2,4],[-2,2],[6,6],[6,3],[6,5],[5,11],[1,5],[2,13],[1,6],[2,5],[4,9],[1,6],[-6,22],[2,6],[8,5],[8,1],[23,-10],[0,5],[-5,4],[-3,6],[-4,4],[-5,2],[-12,1],[-7,-1],[-5,-4],[-1,12],[3,9],[10,15],[3,16],[-2,6],[-4,6],[-3,11],[2,3],[3,6],[1,6],[-2,3],[-5,3],[-2,5],[1,6],[7,5],[1,6],[-1,5],[-2,3],[-12,4],[2,5],[2,3],[2,2],[0,6],[-2,6],[-3,5],[-4,3],[-3,2],[-13,-6],[-5,0],[1,10],[-5,4],[-5,-2],[-4,-4],[-5,-2],[0,3],[1,6],[1,3],[-4,0],[-7,4],[-4,1],[0,4],[5,0],[10,10],[5,2],[-2,4],[-3,4],[-3,2],[-3,2],[0,4],[6,0],[-3,8],[-1,8],[-5,-3],[-4,0],[-4,2],[-4,5],[7,15],[-1,7],[-6,3],[-10,0],[0,3],[7,1],[5,4],[2,6],[-4,10],[-5,2],[-8,3],[-5,4],[1,11],[4,4],[21,0],[6,4],[2,5],[0,8],[-1,12],[-5,-6],[-3,-2],[-3,0],[-3,1],[2,4],[23,35],[-4,0],[-21,-8],[-4,0],[-9,2],[-4,2],[-4,3],[-3,5],[-4,12],[-2,6],[-3,3],[7,7],[2,6],[0,11],[4,-4],[9,4],[4,-5],[2,3],[2,3],[1,3],[1,4],[-8,0],[-3,1],[-3,5],[-2,6],[-2,6],[-2,3],[-5,-1],[1,-2],[0,-1],[1,-1],[-7,-4],[-9,2],[-10,6],[-6,8],[5,2],[5,4],[6,6],[3,9],[-4,5],[-4,0],[-5,-1],[-4,0],[17,56],[-7,9],[1,4],[4,2],[6,6],[-2,5],[-1,3],[-2,2],[-3,2],[3,2],[7,3],[1,1],[0,7],[-3,3],[-3,1],[-3,-1],[5,7],[2,1],[0,4],[-3,1],[-4,2],[-3,2],[-3,4],[-2,5],[-1,2],[4,6],[1,7],[-3,6],[-3,5],[-2,5],[1,8],[4,7],[1,7],[0,6],[-2,6],[-2,5],[-3,1],[-1,4],[-4,16],[-1,5],[-4,1],[-4,-1],[-4,-3],[-3,-3],[-3,-3],[-2,2],[-1,3],[4,4],[0,4],[-7,5],[-3,7],[-3,7],[-5,9],[6,8],[7,5],[8,3],[3,0],[-2,-1],[-3,-2],[2,-5],[-2,-3],[5,-10],[7,-1],[7,4],[6,7],[-3,3],[-7,3],[-2,4],[-4,9],[-2,3],[-3,2],[4,8],[5,-2],[6,-7],[5,-3],[8,3],[3,7],[-3,7],[-7,3],[0,4],[1,5],[-3,6],[-5,4],[-4,1],[-8,-8],[-3,-1],[-5,-1],[-3,-2],[1,7],[2,6],[2,6],[2,6],[5,-5],[3,4],[1,6],[0,3],[-4,0],[-3,1],[-2,3],[-2,7],[3,0],[4,0],[3,3],[0,6],[-2,4],[-4,1],[-7,-1],[-7,2],[-13,5],[-7,1],[3,7],[5,2],[19,-2],[3,4],[2,9],[-6,2],[0,7],[4,20],[-2,1],[-2,1],[-3,6],[15,12],[-4,4],[-3,0],[-2,0],[0,4],[11,5],[10,-6],[10,-8],[11,-3],[-8,16],[-12,6],[-26,2],[2,13],[-2,9],[-5,4],[-7,3],[8,6],[8,0],[8,-2],[9,0],[-9,13],[-21,8],[-10,7],[17,-7],[9,-1],[4,8],[-5,0],[-9,4],[10,0],[-2,7],[-5,2],[-10,-1],[3,3],[3,2],[3,0],[3,0],[-1,2],[-1,2],[-1,2],[-1,2],[7,4],[23,-4],[-4,10],[-12,8],[-3,8],[-3,-2],[-18,12],[2,1],[0,1],[2,2],[-12,7],[-37,1],[-6,4],[7,5],[27,-5],[-1,12],[5,1],[7,-3],[6,3],[-4,4],[-1,5],[1,3],[4,-5],[1,3],[1,1],[0,2],[0,3],[-2,2],[-3,1],[-3,1],[-3,0],[3,5],[4,2],[9,1],[3,1],[4,8],[3,3],[-6,4],[-9,0],[-17,-4],[-14,-10],[-7,-1],[0,11],[-6,-3],[-4,-1],[-3,0],[-2,9],[-8,5],[-10,1],[-7,-3],[3,7],[4,6],[8,7],[0,4],[-3,5],[1,4],[4,-3],[4,-2],[4,2],[2,7],[-2,3],[-32,6],[-10,7],[4,6],[1,2],[3,0],[-3,6],[-3,2],[-8,0],[2,12],[-1,14],[-5,9],[-7,2],[1,2],[0,2],[1,2],[2,2],[-1,2],[-1,7],[0,3],[3,0],[4,0],[6,4],[0,4],[-11,4],[-4,0],[3,13],[1,8],[-1,4],[-3,2],[-2,7],[-2,6],[0,5],[-3,-1],[-2,1],[-2,1],[-2,3],[6,4],[-3,11],[-8,10],[-9,3],[0,5],[14,3],[6,4],[1,8],[-3,8],[-6,3],[-6,-2],[-6,-5],[2,-2],[1,-1],[1,-1],[2,0],[-7,-6],[-4,-2],[-4,0],[3,10],[5,8],[4,8],[-1,7],[-27,0],[11,6],[1,4],[-1,7],[-2,5],[-3,2],[-3,0],[2,-9],[-7,-3],[-18,0],[0,4],[6,1],[18,19],[4,2],[3,1],[3,1],[0,9],[-1,6],[1,7],[4,3],[-3,-4],[-1,-4],[2,-5],[2,-3],[3,-1],[6,7],[6,3],[7,5],[9,3],[3,2],[2,3],[4,2],[20,4],[5,6],[3,1],[13,1],[3,2],[9,11],[90,32],[5,3],[15,25],[6,5],[28,11],[13,10],[14,5],[13,8],[7,2],[7,4],[14,17],[7,-1],[15,12],[16,3],[4,3],[4,5],[14,10],[12,14],[3,2],[6,4],[23,28],[30,25],[-1,0],[12,4],[37,36],[20,9],[6,5],[29,56],[5,3],[6,3],[111,127],[20,30],[7,9],[7,10],[6,16],[1,7],[-2,0],[-3,-5],[-9,-4],[-8,-9],[-6,-1],[7,16],[33,44],[40,70],[17,19],[5,11],[2,5],[1,10],[1,5],[3,5],[4,3],[9,2],[11,10],[8,14],[7,18],[10,39],[1,16],[1,6],[7,37],[3,10],[9,23],[3,14],[1,15],[0,16],[1,12],[3,14],[1,14],[-3,14],[2,5],[-2,7],[-1,7],[0,6],[1,4],[-1,13],[0,37],[6,69],[-1,11],[2,20],[0,12],[-2,8],[0,10],[-3,24],[-2,25],[-4,25],[-1,24],[-3,21],[0,9],[1,13],[6,21],[0,9],[0,7],[-2,6],[-3,4],[-2,5],[-2,8],[-1,6],[1,17],[-7,47],[-19,78],[-2,8],[-4,3],[-2,3],[-4,16],[-2,5],[2,0],[1,0],[0,2],[0,2],[-5,2],[-6,16],[-8,35],[-9,23],[-2,9],[-1,37],[-14,26],[-10,26],[-3,4],[-2,4],[-4,8],[-3,9],[-1,6],[-2,7],[-9,11],[0,4],[-4,3],[-3,5],[-13,38],[-4,7],[-1,4],[-1,4],[-1,3],[-3,2],[-3,0],[-2,1],[-1,2],[-3,4],[-2,5],[-3,13],[-2,6],[-15,23],[-18,18],[-5,3],[-11,2],[-5,3],[-4,7],[-9,16],[-4,6],[2,0],[-7,0],[-20,12],[6,4],[5,1],[2,4],[-3,11],[-4,6],[-17,11],[-19,24],[-6,4],[-21,4],[-5,4],[-15,16],[-52,24],[-15,15],[-6,2],[5,14],[0,7],[-4,3],[-4,2],[-7,11],[-3,3],[-9,-2],[-4,1],[-2,7],[-3,6],[-16,17],[-18,9],[-3,5],[-2,5],[-8,21],[-16,25],[-11,9],[-5,-5],[3,-12],[10,-14],[17,-18],[-7,-5],[-7,2],[-8,7],[-5,9],[-3,3],[-3,1],[-2,2],[-2,12],[-1,4],[-3,4],[-3,1],[-13,-4],[-6,1],[-5,7],[-2,10],[2,9],[2,7],[-4,6],[4,3],[6,1],[5,2],[0,7],[6,3],[3,-3],[3,1],[2,4],[-2,9],[-2,6],[-3,5],[-11,12],[-3,3],[0,5],[0,9],[2,4],[4,-2],[3,-5],[1,-2],[3,2],[2,6],[0,8],[0,8],[-2,7],[-2,5],[-5,10],[-4,14],[-2,12],[-1,9],[0,4],[2,4],[2,8],[-7,1],[-2,7],[4,7],[9,-3],[5,-8],[5,-11],[5,-8],[6,-2],[-2,15],[4,8],[8,5],[5,1],[9,-3],[1,-4],[-2,-8],[-2,-12],[2,-3],[3,2],[9,5],[1,4],[0,5],[0,4],[2,8],[6,8],[11,14],[-9,-2],[-5,-2],[-5,-4],[0,2],[-1,0],[-1,2],[4,6],[4,4],[3,5],[3,9],[-1,1],[-2,3],[-1,5],[0,4],[1,3],[3,3],[3,3],[1,1],[3,-4],[5,-5],[5,-1],[2,6],[-1,6],[-5,20],[6,3],[6,-12],[7,1],[7,8],[1,9],[-3,10],[-5,9],[5,4],[9,-4],[5,4],[-2,7],[-1,15],[-3,7],[9,10],[21,10],[9,10],[5,4],[12,1],[8,6],[16,8],[-5,6],[-10,3],[-6,3],[7,4],[17,0],[7,4],[5,8],[-1,6],[-10,10],[8,8],[28,13],[-3,2],[-7,2],[-3,4],[-1,-5],[-2,-3],[-2,-1],[-3,4],[-4,0],[-1,0],[0,2],[-1,6],[0,3],[-5,3],[-7,-3],[-10,-11],[-5,-2],[-6,-2],[-4,2],[-2,8],[2,10],[5,6],[6,3],[6,0],[0,4],[-10,17],[11,14],[29,18],[2,5],[-1,10],[2,7],[3,26],[-3,6],[-7,0],[-4,5],[-5,12],[-3,7],[-1,7],[4,-1],[4,1],[4,3],[3,5],[-5,5],[-4,3],[20,-4],[3,-2],[4,-11],[3,-3],[11,0],[7,2],[4,4],[3,5],[2,-1],[2,-5],[3,-5],[18,-17],[7,-14],[-2,-17],[8,-11],[12,-4],[24,-2],[0,4],[-20,6],[-11,7],[-7,11],[2,7],[-1,11],[-2,11],[-3,8],[-5,4],[-18,4],[0,3],[1,1],[1,0],[-2,0],[4,3],[4,1],[4,2],[3,6],[-4,1],[-4,5],[-3,6],[-4,4],[3,9],[4,-1],[4,-5],[4,-3],[7,2],[2,5],[1,6],[2,8],[5,6],[6,2],[24,-2],[6,1],[3,5],[-17,40],[-2,11],[-3,9],[-7,4],[-6,3],[-2,4],[4,4],[12,0],[4,2],[-2,4],[-2,3],[-3,2],[-3,-1],[6,8],[5,5],[7,2],[7,1],[-5,5],[-5,3],[6,5],[15,4],[6,-1],[0,4],[-5,0],[-7,2],[-6,4],[-3,7],[8,0],[11,4],[10,7],[5,9],[-7,-1],[-25,-13],[-7,0],[-5,4],[1,10],[-3,3],[-4,1],[-3,1],[-4,-1],[-2,-3],[-3,-7],[-1,-2],[-17,4],[-22,0],[-2,1],[-4,6],[-2,1],[-13,0],[3,5],[9,7],[3,4],[-2,3],[-2,3],[-2,7],[12,9],[7,2],[5,-5],[2,-1],[4,1],[3,2],[2,2],[3,0],[15,-2],[0,4],[-20,11],[-6,5],[-9,12],[-4,9],[-3,8],[13,-2],[7,1],[5,4],[-17,23],[-6,5],[-3,2],[1,3],[6,8],[-6,-1],[-10,-9],[-5,-2],[-2,4],[2,9],[6,20],[-4,7],[-2,3],[-5,3],[0,3],[0,4],[0,3],[-6,5],[-12,4],[-5,4],[-8,13],[1,13],[5,12],[7,11],[29,22],[8,10],[0,3],[1,7],[1,4],[3,3],[37,-1],[-6,7],[-7,5],[-23,5],[-8,0],[-3,-2],[-7,-6],[-3,-1],[-13,-2],[-6,1],[-23,20],[-5,8],[-12,22],[0,4],[5,3],[15,18],[11,9],[5,5],[8,14],[13,13],[5,3],[-6,9],[-11,1],[-21,-5],[7,8],[58,32],[0,4],[-14,-2],[-93,-51],[2,7],[2,6],[6,11],[-6,4],[-25,-4],[25,21],[-11,4],[-12,-3],[-23,-14],[-9,0],[-33,-8],[8,39],[1,6],[7,3],[5,7],[8,18],[20,21],[3,6],[2,6],[32,39],[5,8],[2,2],[4,0],[7,0],[4,2],[0,4],[-1,7],[0,7],[6,34],[1,6],[2,3],[4,11],[3,3],[15,4],[2,10],[-4,6],[-12,8],[2,6],[3,5],[2,5],[1,8],[-1,4],[-4,7],[-1,4],[0,31],[-1,15],[-2,15],[-8,32],[3,5],[7,-2],[3,-3],[4,-10],[7,-4],[6,5],[-2,15],[21,0],[10,3],[7,9],[-24,14],[-9,11],[3,16],[4,4],[5,2],[5,0],[10,-10],[25,-4],[-6,13],[-13,8],[-24,4],[3,6],[4,1],[5,-1],[5,1],[0,4],[-8,4],[-24,0],[-6,5],[-9,19],[-4,5],[-2,5],[-8,21],[-2,0],[-4,-6],[-35,2],[-8,4],[-6,8],[-4,10],[-1,6],[0,7],[1,8],[-2,7],[-1,2],[-1,2],[-2,4],[-1,5],[-2,11],[-1,5],[-2,6],[-5,11],[-4,10],[-2,9],[1,9],[3,12],[-2,8],[-2,12],[-2,11],[-9,10],[-3,12],[-1,15],[-1,41],[-1,12],[-3,11],[-2,12],[2,13],[3,14],[2,11],[-4,25],[0,14],[7,6],[3,1],[2,4],[1,6],[0,7],[2,6],[21,26],[4,3],[9,0],[12,6],[5,8],[3,2],[5,1],[29,25],[5,3],[14,0],[8,3],[3,7],[5,16],[12,9],[21,9],[4,6],[6,13],[3,5],[6,4],[18,-4],[2,-2],[2,-10],[1,-4],[3,-2],[2,0],[1,2],[3,0],[22,-4],[7,0],[2,-3],[21,-1],[2,-1],[3,-2],[2,-3],[1,-4],[1,-2],[2,1],[4,3],[10,1],[3,-1],[3,-3],[2,-3],[2,-3],[7,9],[6,4],[7,2],[6,-2],[4,-4],[3,-4],[3,-3],[43,-7],[6,-2],[5,-6],[4,-4],[11,-2],[5,-5],[-2,-3],[7,-7],[9,-2],[17,1],[20,-14],[17,-3],[27,-14],[24,-5],[8,-6],[11,-1],[5,-2],[2,-5],[2,-12],[1,-3],[4,-2],[4,1],[4,3],[4,2],[4,-2],[5,-5],[3,-2],[4,2],[9,6],[5,1],[3,-2],[6,-11],[17,-6],[7,-6],[47,-10],[19,-14],[0,-4],[-35,-17],[-10,-14],[-5,-5],[-11,-2],[-5,-5],[-3,-5],[-15,-13],[17,0],[5,3],[11,11],[11,5],[16,12],[3,4],[26,13],[22,30],[7,4],[39,9],[43,-14],[7,-5],[2,-8],[-1,-10],[-2,-14],[5,2],[9,16],[5,3],[-2,0],[11,4],[13,-3],[32,-20],[14,-18],[14,-13],[2,-3],[1,-2],[2,-10],[3,-3],[24,-17],[21,-7],[11,-1],[0,4],[-7,3],[-15,14],[-13,6],[-16,18],[-4,7],[0,9],[4,11],[5,9],[5,4],[80,0],[7,3],[4,4],[2,3],[2,5],[4,2],[9,3],[6,7],[5,15],[9,4],[4,2],[4,2],[7,-7],[5,-1],[5,1],[5,1],[14,15],[19,5],[6,4],[4,5],[7,17],[4,8],[10,6],[5,8],[3,9],[2,4],[34,5],[15,5],[7,0],[6,-5],[4,-8],[11,-27],[6,-11],[5,-3],[6,1],[8,-1],[4,-3],[2,-3],[2,-3],[2,-3],[5,-2],[4,2],[3,2],[5,2],[8,-4],[6,-8],[5,-10],[6,-7],[19,-4],[11,-5],[1,-9],[-2,-12],[4,-10],[32,-27],[2,-5],[2,-6],[2,-5],[4,-2],[10,-2],[12,-5],[10,-7],[9,-10],[-3,-6],[-3,-2],[-4,-2],[-3,-2],[34,-4],[11,-4],[0,4],[-11,11],[5,4],[14,5],[6,0],[4,-3],[9,-11],[16,-6],[2,-9],[-4,-11],[-8,-13],[11,1],[5,-2],[3,-7],[-4,-2],[-1,-4],[1,-5],[4,-5],[-2,-8],[0,-11],[-1,-10],[-4,-4],[-14,-4],[-4,-4],[-1,-3],[1,-11],[0,-10],[-1,-5],[-29,-40],[11,0],[7,7],[10,17],[8,5],[0,-20],[9,-17],[9,-5],[-1,17],[-4,15],[-4,17],[1,16],[7,13],[2,-1],[7,-6],[23,-5],[37,-21],[34,-4],[8,-10],[2,-6],[1,-5],[1,-5],[3,-6],[10,-11],[3,-5],[-5,0],[-16,-5],[4,-2],[2,-1],[0,-4],[-7,-1],[-4,-7],[1,-10],[4,-7],[4,-1],[3,1],[3,3],[6,8],[3,0],[18,-7],[5,-5],[4,-7],[1,-5],[0,-5],[1,-4],[5,-3],[3,-3],[2,-4],[1,-4],[-3,-10],[-5,-11],[-11,-16],[-6,-5],[-6,-2],[-6,1],[-20,7],[-12,1],[-9,-9],[-7,-21],[16,18],[6,2],[29,-7],[10,0],[3,1],[10,6],[3,1],[9,-1],[3,1],[2,4],[1,6],[1,7],[1,6],[2,3],[3,2],[1,4],[2,8],[-1,4],[-2,3],[-2,5],[-5,6],[-1,4],[5,2],[26,-8],[15,-9],[13,-3],[3,-2],[5,-5],[16,-6],[6,-3],[20,-22],[3,-7],[-6,0],[5,-3],[4,-5],[3,-8],[-2,-8],[-3,-1],[-11,5],[-5,-1],[-1,-4],[0,-4],[-3,-3],[-15,-5],[-31,2],[-15,-5],[3,-6],[5,-1],[10,3],[2,-3],[2,-5],[-1,-6],[-4,-3],[0,-4],[7,-5],[3,-2],[4,-1],[-6,-10],[-12,-8],[-22,-6],[0,-4],[10,-4],[16,-1],[17,-7],[33,4],[9,-4],[-12,-9],[-5,-1],[-3,-3],[-1,-4],[-3,-4],[-10,-4],[-32,4],[5,-3],[2,-1],[0,-4],[-5,-3],[-2,-1],[5,-4],[6,-1],[12,1],[5,-2],[10,-6],[6,0],[-3,-9],[-5,-7],[-10,-8],[0,-4],[9,-6],[28,-11],[-6,-14],[-2,-8],[-2,-10],[4,2],[6,8],[3,2],[3,-3],[2,-4],[2,-5],[1,-4],[-5,-15],[-2,-7],[2,-3],[6,1],[4,1],[5,3],[3,3],[-4,8],[-3,8],[0,9],[4,8],[6,4],[6,-3],[5,-8],[2,-11],[2,-6],[14,-21],[1,-4],[5,-8],[3,-1],[-3,13],[27,4],[12,7],[5,0],[-2,-11],[3,-6],[4,-8],[3,-2],[2,10],[3,1],[16,-9],[4,0],[7,4],[9,0],[23,-9],[5,-6],[3,-8],[-4,-12],[26,1],[7,-4],[2,-4],[3,-2],[4,-2],[4,0],[4,1],[0,4],[-3,4],[-3,2],[6,8],[10,-4],[18,-15],[0,-5],[-2,-1],[-5,-7],[5,-3],[18,3],[13,-11],[6,-1],[0,5],[-4,1],[-2,4],[-2,4],[-2,6],[3,0],[4,1],[3,-1],[-1,2],[-1,1],[0,2],[0,3],[4,3],[5,0],[6,-3],[4,-3],[0,-2],[1,-8],[1,-3],[2,-2],[9,-1],[-2,8],[-2,5],[-1,5],[3,6],[2,-3],[2,-1],[4,-1],[-3,8],[-1,2],[-2,3],[0,4],[7,-1],[10,-11],[6,0],[-1,9],[2,7],[4,3],[4,-1],[3,-2],[9,-4],[4,-7],[2,-2],[5,0],[3,3],[4,4],[4,2],[9,0],[3,-3],[-2,-6],[4,-2],[4,0],[3,-1],[1,-5],[-2,-2],[-7,-6],[-3,-3],[-2,-11],[3,-7],[6,0],[7,6],[2,-5],[-4,-4],[-1,-6],[3,-10],[1,-4],[1,-1],[1,-1],[0,-4],[0,-4],[-1,-3],[0,-3],[-2,-7],[-1,-4],[2,-2],[0,-1],[2,-4],[0,-4],[0,-3],[-3,-4],[-14,-4],[0,-4],[21,0],[6,-4],[-3,-10],[2,-5],[5,-1],[13,0],[2,0],[2,-3],[4,-8],[2,-1],[7,-8],[5,-3],[4,4],[3,6],[9,9],[2,8],[-6,-2],[-10,-8],[-6,-2],[-3,3],[5,7],[7,6],[3,2],[7,11],[11,12],[12,9],[10,2],[1,-22],[10,-7],[11,7],[3,18],[-3,7],[-5,9],[-3,9],[1,10],[1,4],[1,13],[0,5],[2,6],[4,6],[2,5],[0,4],[-1,5],[1,5],[5,2],[3,2],[6,8],[4,2],[8,-1],[6,-4],[4,-6],[4,-9],[10,-32],[3,-5],[3,-5],[5,-12],[2,-13],[0,-11],[4,0],[11,-4],[-1,-7],[-4,-13],[0,-8],[1,-8],[3,-14],[1,-4],[-3,-15],[-8,-9],[-9,-5],[-17,-3],[-19,-11],[-8,-8],[-12,-18],[-3,-3],[-4,-1],[-10,-6],[-4,-4],[3,-5],[5,-9],[2,-11],[-1,-10],[-3,-10],[4,-3],[5,-2],[2,-10],[-2,-10],[-6,-6],[-33,-12],[-6,-6],[2,-4],[7,-16],[10,-11],[3,-7],[-2,-9],[-4,-7],[-1,-6],[1,-4],[7,-1],[3,-3],[1,-15],[3,-6],[-2,-8],[-3,-9],[-4,-8],[-5,-6],[1,-4],[4,-6],[2,-1],[7,-1],[2,-2],[11,-22],[2,-4],[3,-8],[11,-4],[4,-6],[-3,-7],[-8,-11],[-3,-7],[15,0],[1,-3],[-2,-6],[-2,-11],[0,-11],[0,-10],[-1,-8],[-5,-4],[1,-10],[-6,-5],[-13,-1],[-3,-2],[-2,-8],[-3,-2],[-3,2],[-11,10],[-9,4],[-5,-1],[-4,-8],[-1,-17],[5,-4],[9,-5],[5,-6],[-6,-8],[-7,-1],[-22,9],[-110,13],[-11,4],[0,-4],[2,-2],[5,-6],[-5,-4],[-68,-6],[-7,1],[-5,4],[-10,10],[-95,33],[-11,-6],[31,-7],[11,-12],[6,-3],[15,-4],[10,-5],[14,-3],[40,-19],[27,-4],[20,11],[6,1],[5,-1],[8,-5],[5,-2],[26,6],[4,-2],[13,-12],[17,-6],[17,-1],[28,7],[24,-2],[24,6],[10,0],[4,-6],[0,-14],[-2,-9],[-4,-4],[-7,1],[12,-11],[37,-13],[8,-7],[-1,-2],[-8,-10],[-2,-6],[0,-5],[1,-5],[0,-4],[-3,-9],[-1,-6],[2,-3],[4,-1],[4,-2],[4,-2],[4,-4],[-5,-4],[-6,-13],[-10,-5],[-6,-11],[-4,-3],[3,-3],[3,-1],[6,0],[3,-1],[1,-2],[1,-3],[2,-2],[16,-2],[3,-2],[2,-16],[-6,-16],[-9,-12],[-7,-4],[-9,-3],[-9,-7],[-9,-10],[-16,-27],[-1,-5],[-1,-7],[-1,-2],[0,-1],[3,-4],[3,-1],[11,1],[-2,-7],[2,-3],[4,-3],[4,-3],[1,-4],[3,-6],[2,-7],[1,-7],[-3,-2],[-2,-3],[-2,-5],[0,-7],[8,0],[2,-2],[0,-4],[-3,-8],[-29,-13],[-2,-7],[0,-8],[4,-6],[5,-1],[27,1],[2,1],[1,3],[1,2],[2,2],[2,1],[6,6],[3,1],[11,0],[22,16],[7,0],[7,-2],[6,-6],[5,-8],[-4,-8],[3,-4],[6,1],[11,11],[7,1],[5,-6],[2,-13],[-1,-2],[-3,-7],[-1,-7],[5,-3],[1,-3],[2,-6],[1,-9],[-3,-8],[-6,-5],[-8,-2],[-5,3],[-8,12],[-2,2],[-4,0],[-2,-3],[0,-4],[0,-12],[1,-3],[0,-2],[-3,-4],[-3,-2],[-3,1],[-3,3],[-2,2],[-1,4],[0,5],[-1,4],[-4,3],[-3,-1],[-22,-26],[-4,-9],[3,-9],[-2,-2],[0,-2],[0,-3],[2,-5],[-2,-4],[2,-6],[5,-5],[4,-1],[2,6],[1,2],[1,2],[1,2],[2,2],[3,4],[2,-3],[3,-7],[2,-3],[1,-1],[0,-2],[3,-2],[1,2],[5,5],[2,1],[5,-1],[4,-2],[3,-5],[3,-8],[-14,-13],[-6,-10],[-4,-18],[-4,3],[-4,5],[-2,5],[-3,7],[-1,5],[-2,3],[-5,1],[11,-82],[4,-20],[0,-4],[-5,-9],[-3,-4],[-3,3],[-2,4],[-4,3],[-3,0],[-2,-7],[0,-11],[-2,-14],[-4,-12],[-4,-5],[-21,-9],[-7,0],[-5,8],[-10,37],[8,10],[4,6],[2,8],[-1,11],[-2,5],[-2,-3],[-1,-9],[-3,2],[-2,2],[-2,4],[-1,5],[4,15],[-7,12],[-8,3],[-2,-10],[-8,6],[-12,38],[-7,9],[-4,-5],[1,-9],[3,-19],[-1,-10],[-2,-7],[-3,-4],[-3,-3],[10,-2],[11,-9],[5,-16],[-4,-22],[2,-6],[2,-10],[1,-10],[-1,-7],[-4,0],[-5,5],[-6,12],[-3,6],[-3,4],[-4,2],[-5,0],[4,-17],[2,-3],[0,-5],[-19,-10],[-6,-2],[-11,2],[-4,-2],[-3,-2],[-5,-8],[-3,-2],[-18,-5],[-21,4],[-5,-3],[-6,-8],[15,4],[8,-1],[6,-9],[3,-3],[22,1],[1,-2],[2,-8],[2,-2],[5,1],[8,5],[7,6],[4,8],[3,2],[6,3],[1,-3],[-1,-7],[-3,-11],[0,-10],[1,-15],[3,-9],[5,4],[5,9],[6,4],[5,0],[12,-6],[1,-3],[-2,-6],[-2,-5],[-3,-4],[-4,-3],[-3,-1],[-2,-2],[-5,-9],[-2,-3],[1,-5],[3,-5],[4,-8],[4,-6],[6,-5],[5,2],[2,11],[2,7],[11,14],[3,10],[6,12],[1,1],[1,4],[1,2],[2,1],[4,-4],[2,0],[5,2],[3,8],[1,5],[0,10],[2,-1],[6,13],[12,9],[22,10],[19,22],[2,9],[4,8],[5,7],[5,3],[3,0],[5,3],[7,2],[7,7],[7,3],[19,-3],[17,4],[41,0],[-2,-3],[-1,-6],[-1,-3],[27,-2],[30,26],[4,0],[2,-2],[1,-3],[3,-3],[6,-3],[24,-3],[8,-4],[21,-18],[9,-14],[2,-3],[25,-5],[2,-3],[1,-6],[2,-5],[6,-6],[2,-4],[2,-7],[-1,-6],[-5,-10],[-2,-6],[0,-13],[1,-7],[2,-2],[10,-9],[2,-4],[0,-10],[-5,-22],[0,-12],[4,-7],[12,5],[5,-6],[0,-12],[-4,-11],[-1,-8],[5,-6],[6,2],[11,12],[6,-1],[-6,-23],[-2,-14],[1,-11],[2,-5],[1,-7],[0,-7],[-5,-5],[-1,-5],[0,-13],[-5,-25],[-20,-60],[-6,-39],[-2,-6],[-1,-3],[0,-7],[1,-6],[1,-2],[-1,-8],[-3,-5],[-6,-6],[-28,-41],[-12,-7],[-55,-11],[-36,-22],[-34,-9],[-3,-5],[-2,-5],[-3,-5],[-12,-10],[-1,-2],[-26,-10],[-23,-22],[-41,-54],[63,59],[5,8],[5,6],[19,9],[25,19],[54,19],[19,12],[22,3],[39,13],[14,11],[3,5],[1,5],[2,5],[1,5],[4,3],[8,4],[3,3],[5,12],[3,7],[1,7],[0,26],[1,14],[3,12],[4,6],[7,3],[3,9],[0,11],[0,9],[2,13],[4,13],[9,21],[0,3],[-1,7],[0,5],[1,3],[1,2],[2,5],[1,5],[0,4],[-1,36],[0,5],[3,3],[8,16],[4,5],[3,-4],[6,-3],[6,-1],[6,0],[5,2],[1,2],[-1,6],[0,10],[6,16],[9,-5],[6,-15],[-4,-12],[0,-4],[4,-3],[5,-1],[7,0],[5,-8],[-1,-8],[-4,-10],[-2,-9],[-2,-24],[0,-4],[1,-3],[0,-2],[2,-3],[1,-5],[0,-4],[0,-3],[0,-2],[2,-5],[10,-17],[1,-3],[0,-10],[-2,-11],[-4,-11],[-4,-9],[-24,-29],[-5,-3],[-22,-28],[-12,-34],[-1,-9],[2,-6],[6,6],[9,18],[4,5],[10,7],[5,5],[2,5],[5,23],[6,14],[7,8],[9,5],[9,2],[-1,13],[6,11],[12,12],[-5,12],[-1,10],[1,38],[0,5],[2,5],[7,15],[0,4],[0,9],[0,3],[4,4],[5,-1],[4,-3],[6,-6],[1,-1],[1,-3],[0,-4],[1,-1],[6,-3],[3,-9],[-5,-11],[-4,-13],[5,-14],[-11,-15],[-1,-8],[4,-13],[-1,-2],[-3,-6],[5,2],[6,-1],[5,-4],[4,-7],[3,-10],[1,-9],[-2,-9],[-11,-29],[-2,-18],[2,-19],[6,-22],[-5,-27],[-3,-7],[-4,-8],[-4,-11],[-3,-11],[0,-13],[2,-3],[2,-4],[3,-2],[3,1],[1,5],[-1,7],[-2,10],[1,15],[4,9],[10,15],[4,10],[1,10],[-2,9],[-4,9],[0,12],[4,13],[10,22],[4,15],[6,15],[2,3],[2,0],[4,0],[2,2],[10,17],[5,7],[5,6],[8,1],[11,-2],[10,2],[8,22],[11,6],[17,3],[4,3],[4,4],[6,12],[6,5],[5,-3],[5,-5],[3,-4],[4,1],[3,1],[3,4],[3,7],[1,7],[-1,4],[-2,5],[-2,8],[11,0],[5,3],[5,6],[10,24],[1,6],[5,6],[11,1],[7,-8],[-4,-22],[7,-3],[3,-2],[2,-5],[1,-4],[1,5],[2,7],[0,2],[8,9],[3,8],[-2,12],[27,0],[14,-4],[7,0],[5,4],[-12,16],[-3,9],[9,4],[4,3],[0,7],[-1,9],[0,8],[3,8],[4,7],[4,8],[-1,8],[-1,6],[-1,8],[1,5],[3,-3],[4,-1],[2,7],[3,17],[7,5],[9,0],[7,2],[5,13],[-7,3],[-2,3],[-2,6],[4,4],[4,9],[0,10],[-3,5],[3,7],[5,5],[6,3],[5,2],[0,1],[2,2],[2,3],[2,2],[2,-1],[4,-2],[4,-2],[0,-2],[-1,-3],[1,-3],[14,-17],[12,-5],[5,-7],[7,-15],[4,-5],[14,-9],[5,-2],[3,-3],[2,-6],[1,-10],[1,-9],[3,-7],[3,-8],[5,-5],[4,1],[6,4],[5,-1],[3,-4],[-2,-9],[4,-3],[9,-2],[4,-3],[2,-7],[-1,-8],[-3,-8],[-3,-8],[-1,-2],[-2,0],[-1,-1],[0,-5],[-1,-3],[-1,-5],[-2,-4],[-5,-5],[-2,-9],[-1,-8],[0,-4],[1,-7],[4,-13],[2,-16],[-1,-13],[-6,-8],[-15,-9],[-6,-12],[5,-14],[3,-4],[4,2],[2,7],[1,10],[2,9],[4,7],[6,3],[4,0],[4,2],[3,7],[1,4],[-1,6],[0,4],[1,3],[7,3],[2,0],[-1,10],[-6,4],[-7,2],[-4,5],[2,7],[5,9],[11,15],[3,1],[2,4],[0,6],[1,6],[0,5],[1,4],[2,4],[4,2],[9,-6],[4,4],[-8,7],[-1,2],[-1,1],[-3,15],[0,3],[-6,7],[-6,2],[-5,3],[-2,12],[0,4],[-5,8],[-15,1],[-7,4],[1,7],[0,13],[0,11],[-2,5],[-14,9],[-4,4],[5,5],[14,35],[4,7],[2,1],[2,-2],[11,-19],[8,9],[23,-5],[9,5],[5,4],[3,4],[1,5],[-2,3],[-23,2],[-14,6],[-8,6],[-5,8],[0,7],[11,5],[6,5],[14,4],[3,2],[2,10],[-4,10],[-5,9],[0,9],[5,0],[31,-19],[14,-16],[5,-10],[3,-2],[2,5],[0,7],[-1,7],[-2,4],[-2,4],[-3,3],[-26,15],[2,7],[4,2],[9,-1],[-3,3],[-8,5],[7,1],[7,3],[12,9],[0,-4],[8,0],[14,-20],[27,-15],[5,2],[-3,8],[-4,5],[-5,2],[-4,1],[-4,2],[-9,15],[4,3],[10,7],[4,2],[5,-1],[3,-1],[7,-6],[9,-5],[26,-3],[8,4],[0,4],[-8,7],[-21,-1],[-12,12],[-12,5],[-5,1],[-1,2],[-1,4],[-1,3],[-2,-3],[-2,-4],[0,-3],[-1,-3],[-2,-4],[-4,-3],[-6,-3],[-7,0],[-4,2],[-3,6],[-4,18],[-12,22],[-2,4],[0,10],[2,6],[3,4],[4,3],[-5,6],[-4,2],[-4,3],[-4,9],[3,6],[-3,7],[1,6],[0,3],[1,2],[3,0],[13,-4],[8,-12],[16,-33],[0,11],[-5,25],[3,5],[1,-1],[2,-3],[2,-3],[1,-1],[3,1],[1,2],[1,3],[2,4],[3,2],[9,-6],[6,2],[0,4],[-6,5],[-8,13],[-4,3],[-3,4],[-2,12],[-2,13],[0,9],[6,7],[13,-10],[39,-47],[4,1],[-13,35],[-6,1],[-4,6],[-2,9],[1,12],[3,9],[4,2],[10,-2],[-7,9],[-25,11],[0,4],[7,0],[0,4],[-6,5],[-7,4],[-7,5],[-4,10],[9,-1],[19,-10],[10,-1],[11,7],[5,1],[33,-7],[12,-5],[1,-1],[2,1],[2,0],[0,-2],[1,-5],[1,-4],[1,-4],[31,-30],[2,-4],[4,1],[10,-4],[6,3],[-14,6],[-14,12],[-12,15],[-15,23],[-6,4],[-14,5],[-17,11],[-22,2],[-5,3],[-5,8],[-17,56],[-8,45],[-3,10],[-5,7],[7,12],[10,6],[6,6],[-9,13],[2,4],[0,-1],[2,1],[6,-4],[2,-2],[2,-2],[2,4],[2,10],[4,3],[5,-3],[5,-4],[4,-2],[-2,6],[-1,6],[0,6],[3,2],[4,1],[5,6],[3,2],[4,-2],[27,-15],[5,-4],[8,-12],[14,-6],[9,-7],[9,-3],[19,-1],[0,5],[-20,4],[-3,2],[-8,8],[-13,6],[-15,17],[-8,3],[0,5],[1,0],[5,3],[-2,6],[-5,7],[-1,4],[0,6],[2,2],[2,-1],[2,-3],[4,-1],[8,-6],[7,-4],[3,9],[-2,8],[-6,5],[-14,5],[0,4],[8,-1],[3,1],[5,4],[2,0],[1,1],[0,2],[-1,3],[1,2],[0,2],[0,3],[0,2],[2,1],[4,-1],[3,-2],[3,-3],[5,-10],[2,8],[-3,8],[-13,12],[5,3],[4,0],[4,-2],[5,-1],[-3,7],[-4,4],[-4,3],[-4,4],[-1,7],[0,8],[-2,4],[0,4],[17,0],[6,5],[6,15],[-8,5],[-3,4],[1,5],[3,4],[4,3],[5,3],[2,-1],[1,-5],[2,3],[2,6],[1,2],[-1,1],[-1,4],[0,5],[1,4],[3,2],[3,-2],[2,1],[0,11],[4,12],[7,2],[9,-1],[5,5],[-2,9],[-21,24],[14,8],[6,6],[6,8],[5,10],[2,9],[0,9],[-6,7],[0,3],[3,3],[3,0],[2,-2],[3,-1],[12,0],[5,-2],[10,-8],[4,-1],[6,-4],[3,-1],[-2,6],[-1,1],[-3,1],[0,5],[6,-3],[14,-2],[4,-6],[4,-4],[14,-14],[4,-1],[19,-8],[5,-5],[4,-8],[4,-6],[10,-8],[-5,-3],[-7,1],[-8,5],[-12,13],[-25,12],[-14,0],[-12,-9],[-22,-23],[8,-2],[22,17],[9,5],[17,-2],[5,-2],[15,-15],[6,-1],[-5,-11],[-17,-16],[-6,-10],[14,0],[3,1],[5,6],[7,6],[6,9],[6,6],[6,-4],[-3,-2],[-2,-3],[-3,-4],[-1,-3],[5,0],[3,-4],[2,-6],[3,-6],[-5,-11],[-27,-21],[0,-5],[3,-1],[2,-2],[3,-3],[1,-6],[-8,-3],[-22,-1],[-17,-5],[-8,-6],[-4,-7],[-4,-4],[-34,-21],[-3,-4],[-1,-6],[1,-3],[4,-1],[1,0],[61,45],[9,-3],[14,1],[14,6],[7,10],[2,11],[6,11],[6,5],[3,-6],[-1,-13],[-1,-9],[-3,-3],[-5,6],[-3,-9],[11,-19],[-4,-8],[-1,-7],[-8,-4],[-33,2],[14,-4],[20,-11],[5,-6],[1,-11],[-2,-9],[-4,-5],[-6,-2],[-3,0],[-15,-11],[-4,-5],[6,-3],[6,2],[11,11],[3,2],[4,1],[8,-1],[3,3],[3,5],[0,6],[-1,3],[0,4],[4,9],[7,9],[5,5],[17,-1],[6,1],[0,4],[-11,-1],[-11,4],[-7,11],[0,19],[7,-5],[7,-2],[16,-1],[1,-1],[0,-5],[1,-2],[8,-1],[0,1],[3,-6],[4,-14],[3,-5],[0,-4],[-9,-5],[-26,-7],[-7,-12],[19,-1],[7,-5],[6,-10],[-3,-9],[-5,-7],[-6,-4],[-7,0],[0,-5],[11,0],[6,1],[4,4],[4,6],[2,6],[2,5],[5,3],[3,-5],[-3,-11],[-7,-17],[-2,-9],[-2,-9],[0,-20],[-5,-11],[-18,6],[-2,-14],[5,-13],[10,-16],[10,-13],[8,-6],[30,0],[21,7],[6,-3],[-4,-9],[-4,-7],[7,0],[4,-1],[3,-3],[-10,-6],[-11,1],[-10,-2],[-8,-14],[-2,-17],[-1,-10],[-6,-8],[-3,-9],[-3,-9],[-2,-8],[16,16],[7,10],[0,11],[2,0],[0,18],[7,8],[9,0],[8,-8],[16,4],[7,-4],[-4,-16],[-4,-4],[-10,-2],[-4,-4],[-11,-24],[0,-12],[4,4],[9,16],[4,6],[13,14],[30,-15],[8,-10],[3,-7],[-1,-6],[-2,-7],[-6,-12],[-6,-16],[0,-4],[-1,-2],[-1,-4],[0,-5],[-2,-2],[-57,-2],[-10,-5],[-8,-8],[1,-5],[2,-3],[3,-1],[3,0],[-2,0],[11,5],[11,1],[43,-10],[4,3],[3,3],[4,3],[4,-1],[-1,-7],[-1,-2],[-2,-3],[4,-3],[3,1],[4,2],[5,0],[-5,-10],[-5,-25],[-3,-11],[-6,-16],[-1,-1],[-1,-2],[-12,-3],[0,-5],[14,2],[7,4],[6,6],[3,10],[6,26],[3,5],[3,3],[4,14],[3,3],[2,-1],[4,-6],[1,-1],[20,0],[6,-4],[0,-5],[0,-2],[2,-2],[0,-5],[0,-4],[-1,-3],[-1,-3],[0,-16],[-1,-6],[-3,-7],[-2,-3],[-16,-15],[-4,-2],[-4,0],[1,-3],[2,-1],[4,0],[-2,0],[5,-2],[9,1],[8,2],[3,5],[14,26],[4,4],[14,8],[7,1],[3,-9],[-2,-6],[-5,-7],[-7,-5],[-5,-2],[3,-9],[-2,-7],[-3,-6],[-2,-8],[2,0],[9,8],[4,2],[0,3],[3,2],[4,0],[3,-1],[2,-5],[1,-6],[0,-6],[-4,-3],[-4,-5],[-10,-24],[-4,-8],[-7,-4],[-15,-4],[-6,-6],[-5,-9],[-6,-4],[-22,-3],[-16,-8],[-8,-2],[-8,1],[-13,8],[-39,7],[-3,-1],[-3,-3],[-2,-5],[-1,-5],[-2,-5],[-7,-6],[-3,-4],[0,-8],[5,1],[14,10],[4,11],[3,3],[14,0],[0,-4],[-6,-16],[3,-22],[7,-16],[6,1],[0,9],[-2,10],[-4,13],[3,9],[5,2],[6,1],[5,5],[9,-11],[5,-4],[5,-2],[6,1],[17,11],[12,2],[23,-3],[3,1],[2,3],[1,4],[2,3],[3,3],[10,6],[2,0],[4,-4],[5,1],[4,4],[1,7],[4,11],[10,1],[18,-6],[0,-3],[-1,-7],[0,-2],[11,2],[6,-2],[5,-6],[6,-2],[9,2],[7,-1],[1,-9],[-9,-10],[-50,1],[0,-4],[25,-7],[8,-5],[-13,-15],[-6,-9],[-4,-12],[6,4],[12,15],[7,5],[4,1],[5,-1],[4,-4],[0,-8],[-2,-4],[-5,-2],[-10,-2],[0,-4],[5,0],[6,-2],[5,-4],[3,-7],[-7,-4],[-14,-20],[-6,-4],[-19,-8],[3,-3],[1,0],[4,-2],[6,0],[13,5],[9,-1],[4,3],[4,10],[4,-4],[-7,-20],[0,-7],[7,-2],[4,5],[4,8],[2,9],[-1,7],[8,12],[11,4],[11,-2],[7,-10],[-11,-3],[-6,-3],[-1,-6],[3,-1],[32,-21],[3,-7],[2,-9],[-1,-7],[-1,-6],[0,-6],[0,-3],[0,-1],[-1,-1],[1,-3],[-33,-19],[-3,-5],[2,-1],[4,-4],[1,0],[21,0],[7,3],[7,4],[6,1],[5,-8],[3,-10],[-1,-10],[-3,-8],[-4,-6],[-4,-3],[-6,-1],[-2,-4],[-1,-5],[0,-4],[-1,-6],[-3,-6],[-40,-22],[-13,-16],[-8,-4],[-2,-3],[-1,-7],[-1,-2],[-2,-1],[-29,2],[-7,3],[-6,-9],[-12,1],[-12,6],[-8,10],[-2,-12],[-6,-9],[-8,-5],[-7,-2],[37,8],[5,0],[5,-2],[4,-5],[0,-10],[-2,-3],[-11,-17],[-6,-13],[-3,-4],[-4,-5],[-15,-8],[-13,-15],[-13,-21],[-3,-7],[7,0],[6,4],[16,19],[19,14],[43,60],[0,-4],[5,5],[29,4],[5,-1],[5,-4],[6,-8],[-4,-6],[-8,-18],[-8,-12],[-2,-7],[1,-9],[2,8],[4,1],[17,35],[4,6],[3,0],[6,-6],[1,-1],[0,-2],[1,-3],[2,-2],[2,0],[7,5],[2,6],[5,7],[6,5],[6,1],[17,5],[3,-1],[3,-3],[3,0],[1,8],[2,3],[2,3],[2,2],[4,0],[-3,-10],[0,-9],[2,-4],[4,2],[1,4],[2,9],[1,4],[4,3],[3,0],[3,-2],[4,-1],[24,9],[12,-1],[5,-16],[-13,-13],[1,-5],[1,-3],[-5,-2],[-4,-4],[-6,-10],[7,-17],[2,-9],[-3,-7],[1,-4],[2,-9],[0,-10],[-1,-7],[-3,-4],[-21,-10],[0,-2],[-1,-3],[-2,-2],[-3,-1],[-34,-2],[-5,-4],[-4,-14],[-3,-7],[-3,-7],[2,-7],[4,0],[3,8],[2,8],[2,5],[2,1],[6,8],[3,2],[7,-2],[28,0],[6,5],[2,6],[5,-2],[9,-6],[5,-2],[3,-5],[1,-7],[2,-7],[-10,-5],[-2,-5],[-1,-6],[-3,-5],[-4,-4],[-3,-3],[-26,-2],[-18,4],[-72,-14],[4,-4],[10,-2],[5,-2],[-7,-14],[-46,-29],[-2,-4],[2,-3],[14,3],[4,2],[-4,-13],[-5,-9],[-7,-5],[-17,-3],[-9,-4],[-8,-7],[-7,-7],[5,-1],[51,10],[5,3],[5,6],[1,4],[0,9],[0,5],[2,7],[7,9],[9,6],[13,6],[2,0],[3,2],[0,4],[0,4],[2,3],[4,6],[4,3],[2,2],[10,2],[11,6],[5,1],[0,-4],[-1,-1],[-5,-3],[4,-7],[6,1],[13,6],[2,-1],[2,-3],[2,-2],[4,2],[0,1],[0,2],[1,3],[1,2],[3,2],[1,0],[9,-6],[5,-4],[4,-3],[5,3],[5,7],[4,9],[5,6],[4,-2],[2,-8],[0,-9],[2,-2],[6,11],[1,5],[1,3],[1,4],[3,4],[11,4],[2,0],[3,-9],[-4,-9],[-16,-25],[-2,-4],[0,-6],[2,-3],[2,-3],[2,-5],[-2,-5],[0,-4],[6,1],[1,5],[0,8],[0,6],[3,5],[4,4],[4,2],[15,2],[6,-1],[3,-4],[-2,-6],[-5,-3],[-11,-3],[12,-8],[-2,-8],[1,-4],[3,0],[5,6],[5,5],[5,-4],[4,-9],[2,-10],[-6,-3],[-11,-13],[-6,-4],[-9,-1],[-17,8],[-8,1],[-7,-4],[-34,-33],[-5,-8],[9,1],[14,15],[8,4],[21,4],[5,-1],[9,-5],[4,-1],[-2,-9],[1,-11],[1,-9],[-1,-4],[0,-5],[0,-10],[2,-7],[5,2],[2,5],[2,10],[3,29],[2,7],[8,14],[3,-10],[1,-13],[-1,-12],[-5,-6],[6,-4],[6,7],[7,21],[3,-3],[7,-4],[3,-3],[1,-5],[2,-5],[1,-5],[2,-3],[3,16],[1,4],[11,18],[4,3],[6,-5],[5,-8],[4,-4],[2,-1],[1,-4],[1,-4],[1,-13],[1,-4],[0,-4],[-2,-6],[-4,-8],[-11,-14],[-4,-11],[2,-1],[1,-2],[2,-3],[1,-2],[0,-13],[11,-4],[13,-2],[7,-3],[13,-28],[3,-15],[-5,-8],[0,-4],[18,-10],[3,0],[0,-6],[2,-8],[0,-6],[-1,-8],[-2,-2],[-3,0],[-4,0],[-14,-9],[-18,-5],[-6,-6],[-3,-1],[-2,-2],[1,-6],[1,-7],[-1,-5],[-4,-7],[-8,-3],[-13,-2],[-22,8],[-8,-4],[-5,-9],[-11,-34],[-5,-5],[-7,3],[-14,12],[-26,15],[-8,2],[3,-9],[5,-8],[13,-12],[15,-8],[3,-4],[5,-7],[3,-1],[17,0],[4,2],[7,8],[3,2],[15,0],[2,2],[2,4],[4,3],[4,2],[2,1],[7,-5],[29,-3],[36,-24],[23,-23],[4,-6],[-6,-5],[-28,5],[0,-4],[11,-5],[4,-5],[-1,-8],[-1,-6],[2,-7],[0,-9],[-2,-9],[-4,-4],[-11,-7],[-3,-1],[-22,0],[1,-4],[2,-4],[3,-3],[2,-1],[8,0],[1,-1],[0,-6],[1,-1],[14,-2],[7,-6],[3,-10],[2,-13],[5,0],[10,10],[7,5],[3,-3],[-1,-9],[-2,-12],[38,46],[8,-2],[-3,-4],[-13,-23],[-4,-6],[-2,-1],[0,-5],[1,-4],[3,-1],[44,3],[15,-3],[14,-9],[11,-11],[5,-9],[1,-10],[0,-6],[-4,-7],[-1,-7],[1,-6],[4,-8],[2,-5],[0,-3],[0,-1],[-4,-3],[-1,-6],[3,-5],[4,-2],[-1,-5],[0,-5],[1,-3],[2,-3],[-2,-4],[-3,3],[-6,12],[-4,5],[-5,-5],[-5,-1],[-10,2],[-5,-1],[-5,-2],[-5,-3],[-5,-6],[-8,-25],[-3,-4],[-4,-1],[-6,-5],[-5,-6],[-4,-6],[-2,-9],[1,-8],[1,-8],[-1,-9],[-4,-10],[-6,0],[-7,2],[-5,-2],[-9,-10],[-14,-2],[-13,3],[-10,7],[-3,-7],[0,-10],[2,-10],[3,-6],[-3,-7],[-1,-9],[1,-8],[3,-4],[3,12],[3,11],[5,6],[8,3],[19,-3],[8,-5],[7,-8],[-4,-11],[-6,-5],[-7,1],[-16,5],[-2,-2],[9,-17],[5,4],[7,-5],[7,-7],[14,-7],[3,-8],[-1,-8],[-7,-5],[-4,1],[-11,7],[-35,2],[-9,4],[-7,6],[8,9],[-2,5],[-7,3],[-3,-3],[-4,-7],[-8,-1],[-15,6],[-24,18],[-32,7],[-7,3],[-23,19],[-38,13],[-5,5],[6,8],[49,12],[8,6],[4,0],[9,-6],[51,5],[-12,9],[-70,3],[-4,-1],[-8,-6],[-5,-2],[-6,2],[-15,11],[-5,1],[-5,-1],[-5,-3],[-4,-5],[-3,-7],[-1,-8],[-3,-6],[-4,-4],[5,-1],[42,-27],[16,-17],[5,-3],[15,-3],[5,-4],[6,-6],[22,-10],[19,-16],[25,-10],[14,1],[7,-1],[5,-4],[-7,-6],[-84,6],[1,-3],[0,-1],[-1,0],[61,-16],[6,-3],[23,-1],[14,4],[4,-2],[20,-14],[3,-1],[4,0],[3,3],[3,4],[3,2],[3,-3],[4,-8],[2,-3],[3,-5],[6,-5],[2,-4],[0,-9],[-4,-8],[-13,-1],[-12,-10],[-61,15],[-17,-1],[-13,-11],[0,-4],[6,0],[12,4],[10,-1],[4,-1],[4,-2],[2,-5],[0,-6],[-1,-1],[-3,0],[-13,-6],[-26,3],[-12,-2],[6,-7],[6,-5],[6,-3],[29,-4],[4,1],[2,11],[6,-4],[6,-8],[2,-5],[17,-3],[8,-3],[7,-6],[-7,-3],[-9,-1],[5,-6],[14,-10],[2,-3],[0,-3],[1,-4],[3,-2],[3,0],[5,3],[3,0],[0,-3],[-5,-4],[-2,0],[6,-5],[15,2],[8,-2],[4,-4],[5,-7],[2,-7],[-2,-6],[-6,0],[-39,17],[-8,0],[-6,-5],[5,-4],[39,-12],[0,-4],[-25,-9],[-13,1],[-10,8],[12,-1],[6,2],[3,7],[-5,4],[-15,4],[-22,-1],[-11,-5],[-5,-1],[-5,3],[-5,6],[-5,5],[-5,-1],[-11,-6],[3,-7],[6,-7],[11,-10],[-3,-5],[2,-5],[20,-14],[6,0],[9,10],[4,-1],[5,-3],[4,-3],[11,1],[9,3],[-2,-9],[-2,-3],[15,0],[4,2],[5,5],[4,1],[22,1],[2,-1],[1,-2],[1,-2],[1,-3],[0,-1],[6,-4],[3,-1],[32,8],[8,6],[9,3],[7,-4],[0,-3],[-2,-6],[3,-6],[2,-5],[0,-6],[-4,-2],[-6,-1],[-6,-2],[-2,-7],[-1,-10],[-1,-5],[0,-1],[6,2],[2,1],[2,3],[3,3],[3,1],[3,-2],[0,-3],[-2,-5],[-2,-2],[0,-5],[4,-5],[-3,-4],[-21,-13],[-5,-5],[-3,-9],[8,-5],[7,1],[15,8],[7,1],[8,-1],[9,-5],[7,-7],[-13,1],[-7,-1],[-5,-4],[3,-3],[4,-1],[8,0],[0,-4],[-35,5],[-20,-2],[-10,-11],[8,0],[7,-2],[3,-1],[16,-5],[1,-2],[0,-4],[0,-5],[-1,-1],[-3,0],[-2,1],[-4,2],[-1,4],[-3,4],[-2,2],[-3,2],[-2,1],[-2,-1],[0,-7],[4,-6],[8,-9],[4,-3],[16,6],[23,0],[6,-2],[3,-2],[8,-9],[7,17],[11,-3],[10,-12],[8,-14],[-1,-4],[-1,-5],[0,-6],[0,-6],[-6,4],[-10,1],[-10,-1],[-6,-4],[1,-8],[7,-6],[13,-6],[6,-6],[9,1],[33,12],[4,0],[4,-4],[6,-2],[32,0],[10,-6],[5,-15],[-2,-15],[-7,-11],[-16,-15],[-15,-2],[-6,-2],[-16,4],[-5,-4],[3,-2],[2,-2],[1,-2],[1,-5],[2,0],[4,4],[5,0],[11,3],[26,-4],[6,1],[6,6],[9,13],[7,15],[4,18],[4,2],[7,-2],[4,-3],[-1,-8],[-6,-14],[3,-5],[2,-12],[1,-12],[-2,-11],[2,0],[2,-3],[2,-1],[-3,-6],[-4,-5],[-4,-3],[-3,-2],[-4,-3],[-1,-7],[3,-7],[3,-4],[2,-3],[-2,-8],[-5,-13],[-6,-10],[-2,-6],[1,-8],[13,28],[5,4],[4,5],[3,12],[5,24],[7,22],[3,8],[2,4],[0,5],[0,8],[2,11],[4,11],[5,3],[4,-7],[3,2],[3,-4],[4,-7],[4,-3],[2,1],[3,6],[2,1],[2,-3],[3,-4],[3,-6],[4,3],[3,5],[3,0],[1,-13],[-15,-22],[4,-5],[-2,-3],[-1,-4],[-1,-1],[3,-6],[0,-4],[-3,-1],[-9,-2],[-10,-6],[-5,-1],[-6,-5],[-5,-11],[-4,-14],[-1,-15],[7,12],[9,11],[10,2],[10,-13],[1,-16],[-4,-18],[-12,-31],[7,5],[8,12],[12,26],[4,5],[4,0],[2,-4],[-5,-17],[1,-5],[4,-3],[5,-2],[-1,-7],[-1,-3],[0,-3],[-6,6],[-3,-2],[-3,-6],[-3,-10],[-6,-8],[-19,-16],[0,-4],[2,-3],[1,-4],[-1,-5],[-2,-4],[3,-7],[-2,-11],[-9,-19],[6,3],[5,7],[8,18],[-4,9],[3,8],[11,12],[8,20],[6,8],[7,-4],[-3,-1],[-5,-7],[0,-5],[-7,-12],[-2,-7],[3,0],[3,2],[2,4],[1,6],[4,-8],[3,-3],[3,-1],[3,3],[0,8],[-2,15],[3,13],[7,3],[9,-4],[6,-6],[-2,-9],[-2,-3],[2,-3],[1,-4],[0,-4],[-3,-5],[5,-3],[1,-1],[0,-4],[-1,-2],[-1,-2],[-8,4],[-11,-4],[-26,-18],[-3,-6],[-2,-21],[-3,-7],[-6,-13],[6,-4],[-3,-7],[-7,-6],[-4,2],[0,4],[-2,2],[-2,1],[-3,-1],[0,-2],[-8,-12],[-2,-1],[-1,-4],[0,-10],[-1,-5],[-5,-8],[-1,-5],[-1,-7],[-3,-4],[-18,-18],[12,8],[21,26],[10,6],[2,-2],[2,-4],[3,-3],[2,3],[5,14],[3,6],[4,2],[7,-2],[-1,-6],[-15,-21],[-11,-9],[-4,-6],[-4,-10],[-6,-22],[-3,-9],[-6,-7],[-19,-13],[-14,-17],[-5,-4],[0,-4],[3,-3],[-1,-7],[-6,-18],[5,8],[16,16],[10,22],[5,7],[6,4],[12,6],[5,6],[4,22],[1,3],[6,6],[2,2],[6,0],[3,-3],[2,-1],[5,4],[23,39],[5,5],[6,5],[5,3],[2,-1],[1,-3],[2,-1],[2,3],[3,6],[1,3],[5,4],[3,6],[2,3],[4,-3],[-9,-25],[1,-6],[-2,-7],[-5,-15],[7,5],[10,19],[13,8],[11,14],[7,2],[-2,-9],[-4,-4],[-4,-4],[-4,-7],[-1,-7],[-2,-14],[-2,-7],[-24,-38],[-3,-15],[-2,0],[-6,4],[-10,-11],[-9,-19],[-4,-19],[3,3],[24,35],[26,28],[3,3],[2,7],[4,13],[10,27],[2,3],[3,0],[1,2],[-1,5],[7,5],[16,-5],[7,4],[-2,7],[1,5],[2,3],[4,2],[3,1],[2,5],[2,5],[1,4],[5,8],[7,7],[7,5],[6,1],[1,-9],[4,-10],[-1,-6],[2,-3],[-2,0],[1,-2],[1,-1],[2,-2],[4,10],[4,-11],[1,-13],[-6,2],[-1,-6],[-4,-14],[3,-1],[2,-2],[1,-4],[-1,-5],[-1,-4],[-3,0],[-3,4],[-4,-3],[-1,-2],[-1,-3],[-5,-6],[-5,-5],[-8,-3],[-6,-5],[-6,-2],[-12,5],[-7,0],[-4,-3],[2,-6],[-2,-4],[3,-13],[4,2],[4,9],[4,6],[3,0],[3,-3],[4,-1],[5,5],[1,-4],[0,-7],[-1,-6],[19,-4],[3,3],[6,13],[3,4],[5,3],[17,-3],[1,-1],[3,-5],[3,-2],[2,1],[4,3],[6,2],[12,15],[7,5],[1,4],[0,9],[1,9],[4,0],[4,-5],[2,-6],[1,-9],[-2,-8],[0,-7],[1,-9],[8,7],[8,0],[2,-5],[-6,-14],[-9,-11],[-3,-5],[-5,-15],[-3,-5],[-5,-5],[0,1],[-2,1],[-2,-1],[-2,-1],[-18,-29],[-3,-3],[-2,0],[-2,1],[-2,2],[1,1],[-6,-8],[-12,-9],[-4,-3],[5,-8],[-4,-11],[-7,-10],[-12,-7],[-7,-9],[-6,-11],[-3,-9],[2,-8],[2,1],[3,4],[3,-1],[1,-7],[-2,-6],[-3,-6],[-2,-8],[-3,-10],[-25,-20],[7,-8],[6,3],[6,6],[9,5],[7,8],[8,4],[0,5],[-2,6],[-1,6],[0,22],[2,14],[8,8],[5,9],[3,2],[11,4],[2,1],[4,6],[14,13],[49,67],[6,3],[4,-5],[0,-17],[4,6],[9,35],[16,28],[0,2],[0,9],[4,8],[2,5],[1,4],[2,4],[2,5],[5,4],[5,3],[5,-1],[2,-6],[-3,-4],[-1,-5],[0,-7],[0,-8],[4,6],[5,10],[5,11],[3,15],[4,-4],[4,-11],[2,-11],[-5,-24],[-11,-14],[-13,-10],[-9,-13],[-2,-5],[-2,-11],[-2,-4],[-3,-3],[-7,-4],[-19,-25],[-1,-9],[3,-7],[4,7],[6,11],[5,5],[6,1],[6,2],[6,5],[5,10],[1,1],[0,1],[1,0],[-1,13],[4,7],[13,9],[3,-11],[4,-4],[2,4],[-2,11],[2,6],[2,6],[3,5],[5,-1],[3,-6],[0,-7],[-2,-7],[1,-8],[6,11],[2,7],[1,12],[2,11],[4,7],[6,1],[6,-5],[0,-4],[0,-6],[1,-5],[2,-5],[2,2],[5,8],[2,2],[2,-5],[-1,-12],[-4,-19],[-14,-35],[-5,-8],[-1,-4],[3,-2],[2,1],[3,8],[3,3],[2,2],[2,1],[1,-1],[2,-2],[0,-1],[2,-9],[0,-2],[3,-1],[2,-1],[4,-6],[9,-10],[5,-7],[-5,-6],[-11,-4],[-5,-5],[2,0],[-4,-6],[-12,-11],[0,-4],[12,-1],[4,1],[5,4],[1,3],[1,4],[0,3],[0,2],[8,2],[5,-7],[1,-8],[-6,-3],[1,-9],[-1,-4],[-3,-3],[-1,-6],[2,-4],[4,-2],[18,-2],[3,1],[2,4],[2,3],[3,1],[7,-6],[2,-3],[1,-4],[0,-8],[1,-8],[2,-3],[2,1],[3,22],[5,5],[5,-4],[-1,-7],[5,-8],[8,-5],[16,-4],[22,0],[-7,-7],[-4,-5],[-2,-8],[4,1],[7,6],[5,1],[19,-4],[-2,-9],[2,-7],[4,-3],[6,-1],[4,3],[-1,7],[-2,10],[0,8],[3,3],[51,2],[3,-2],[1,-3],[1,-2],[-1,-2],[-3,-3],[3,-8],[4,-9],[4,-4],[6,-2],[32,2],[5,-3],[-1,-9],[5,-3],[4,4],[4,7],[5,4],[22,1],[5,-3],[16,-27],[1,-2],[0,-2],[0,-2],[1,-2],[3,-1],[1,2],[2,2],[2,1],[3,1],[2,2],[2,-1],[2,-6],[-2,-10],[5,-9],[7,-6],[5,-3],[16,4],[8,0],[1,2],[1,3],[2,3],[2,3],[1,1],[19,-1],[10,-5],[1,-14],[3,0],[2,-1],[5,-3],[0,-4],[-2,-9],[5,-3],[13,-1],[1,-1],[0,-2],[0,-7],[-1,-4],[-2,-1],[-2,0],[-3,0],[-3,-3],[-8,-2],[-4,0],[0,-4],[8,-1],[6,-4],[2,-9],[-4,-14],[-6,-7],[-8,-2],[-61,1],[-13,-8],[6,-6],[56,1],[9,0],[9,-4],[-5,-7],[-4,3],[-3,5],[-6,0],[-5,1],[-8,-6],[-3,-4],[6,-7],[-3,-6],[-12,-9],[-4,-6],[-13,-10],[-5,-2],[-7,-1],[-24,6],[-6,2],[-3,0],[-3,-1],[-5,-5],[-3,-1],[-3,0],[-2,1],[-2,2],[-2,3],[-3,2],[-3,-1],[-4,-2],[-78,-17],[-1,-9],[-15,-11],[-5,-9],[11,1],[23,12],[11,0],[-5,-8],[-12,-8],[-5,-5],[-5,4],[-4,-1],[-10,-7],[1,-4],[4,-9],[0,-3],[-2,-4],[-4,-1],[-21,-1],[-39,-11],[-27,-16],[-33,-30],[-13,-6],[-42,0],[-34,-15],[-36,-8],[-6,-3],[-9,-9],[-13,-3],[-10,-9],[-36,-10],[-6,0],[-26,8],[-13,-4],[-5,-4],[-2,-4],[-2,0],[3,-3],[14,-7],[2,0],[1,-3],[0,-10],[3,-2],[19,9],[39,1],[50,22],[44,11],[40,24],[14,6],[6,1],[14,-1],[4,3],[8,11],[22,16],[9,11],[2,-1],[2,-1],[3,1],[2,1],[4,0],[5,1],[6,3],[5,4],[7,14],[5,3],[6,-5],[-5,-5],[-5,-6],[-5,-8],[-7,-19],[-3,-6],[-11,-8],[-6,-7],[-3,-7],[-3,-9],[-5,-10],[-11,-17],[-6,-7],[-8,-4],[-14,-2],[-43,10],[-51,-12],[0,-4],[34,-4],[-12,-23],[-3,-4],[-8,-4],[-2,-4],[-7,-3],[-19,0],[-2,-3],[-6,0],[-23,-10],[-15,-11],[-9,-10],[-12,-6],[-6,-3],[-17,-21],[-4,0],[-9,-10],[-16,-3],[-30,1],[-42,14],[-15,-2],[-6,-3],[-3,-4],[0,-5],[3,-4],[11,0],[4,-2],[2,-9],[-5,-3],[-21,1],[-28,-9],[-12,-8],[-6,-3],[-5,2],[-14,11],[1,-5],[1,-1],[0,1],[0,1],[5,-11],[8,-12],[10,-10],[7,-4],[0,-4],[-14,1],[-7,-5],[-3,-14],[-1,-15],[-1,-10],[0,-10],[4,-12],[4,-9],[3,-9],[-1,-8],[-7,-2],[-3,-2],[-5,-9],[-2,-1],[-1,1],[-1,2],[0,3],[-1,8],[0,1],[-2,0],[-1,1],[-7,5],[-13,6],[-12,14],[-18,16],[-5,8],[-4,10],[-5,7],[-14,5],[-18,18],[-52,18],[-13,12],[-18,8],[-5,5],[-7,24],[-4,9],[-5,-3],[4,-9],[1,-12],[-2,-12],[-4,-10],[-11,-11],[-4,-7],[4,-8],[6,-2],[18,10],[8,-1],[23,-11],[24,-2],[54,-34],[9,-15],[2,-2],[7,-2],[6,-4],[22,-27],[7,-5],[20,-8],[22,-23],[8,4],[2,0],[4,-6],[2,-11],[1,-12],[1,-11],[-6,6],[-7,5],[-6,2],[-8,-1],[-19,-12],[-9,-12],[-14,-14],[-5,-2],[-7,-2],[-5,-5],[-3,-7],[-2,-11],[-7,8],[-1,2],[-1,1],[-3,-2],[-2,-5],[1,-6],[4,-5],[4,-1],[34,4],[15,6],[5,-2],[2,-9],[-8,-10],[-19,-13],[-19,-9],[-21,-4],[0,-4],[33,2],[15,5],[15,10],[5,5],[2,0],[3,-2],[2,-3],[5,-11],[1,-2],[4,1],[3,4],[3,5],[1,8],[-14,6],[-4,5],[3,6],[4,1],[7,1],[12,7],[4,1],[5,4],[12,19],[4,8],[9,12],[0,2],[3,3],[5,13],[3,4],[2,-2],[3,-5],[2,-1],[1,6],[-2,6],[-1,5],[-1,4],[3,3],[5,-1],[7,-5],[6,-2],[7,4],[0,4],[-7,4],[-14,3],[-6,8],[-3,10],[3,5],[7,0],[28,-9],[41,6],[14,8],[7,2],[6,3],[6,8],[10,17],[18,17],[3,5],[0,8],[3,2],[6,1],[4,2],[1,6],[1,7],[2,5],[6,0],[7,-13],[5,7],[2,4],[3,3],[4,3],[3,0],[2,-2],[1,-4],[3,-5],[3,-2],[7,2],[3,2],[3,3],[3,2],[8,-2],[3,2],[1,4],[2,13],[0,3],[3,-1],[6,-2],[4,-1],[0,7],[0,7],[1,4],[0,3],[3,0],[-6,1],[-6,2],[1,9],[-1,7],[-3,5],[-3,4],[6,10],[13,9],[5,7],[5,8],[22,23],[2,2],[2,6],[2,6],[1,8],[3,7],[3,3],[26,4],[25,11],[36,25],[57,22],[4,5],[5,4],[14,-2],[5,0],[18,18],[8,2],[86,-19],[6,3],[0,8],[-6,6],[-9,5],[-7,1],[-21,-2],[-6,2],[-18,15],[-31,7],[-8,-1],[-13,-7],[-7,-5],[-4,-7],[-2,-4],[-3,-3],[-3,-2],[-4,-1],[-4,1],[-2,3],[-1,4],[-3,5],[-15,9],[-5,7],[2,14],[5,12],[4,9],[6,6],[7,3],[21,-3],[3,6],[4,10],[8,2],[25,-4],[3,-3],[7,5],[9,3],[8,-1],[6,-5],[6,-6],[10,-5],[9,-2],[7,3],[4,-7],[9,1],[17,6],[-4,-4],[3,-6],[7,-1],[13,3],[27,-8],[-2,-3],[-2,-9],[7,2],[6,7],[6,3],[5,-8],[18,16],[2,-6],[8,-7],[11,-15],[1,-4],[-3,-8],[6,1],[5,3],[0,-4],[-2,-14],[6,-25],[15,-38],[8,-15],[4,-6],[3,-4],[15,-2],[6,-4],[4,-10],[-5,1],[-5,2],[-5,1],[-5,-6],[-2,-9],[1,-11],[2,-10],[4,-5],[4,-2],[11,-14],[5,-2],[5,-1],[5,-2],[4,-7],[-8,0],[-4,1],[-3,3],[0,-3],[-1,0],[-1,-1],[5,-5],[3,-7],[1,-6],[-12,-5],[-2,-8],[3,-8],[6,-5],[0,-5],[-8,-1],[-14,-12],[-15,-6],[-22,-22],[-34,-14],[-16,-13],[-9,-21],[14,7],[14,14],[2,-5],[0,-4],[-2,-4],[-2,-4],[10,1],[5,2],[4,3],[3,0],[10,-10],[3,-4],[3,1],[-1,-8],[-6,-17],[6,0],[4,-5],[1,-10],[-2,-14],[-4,-12],[-10,-15],[-5,-9],[4,2],[6,5],[3,1],[4,-1],[6,-4],[4,1],[0,4],[-3,13],[7,12],[30,30],[3,2],[4,4],[0,8],[-3,4],[-6,-5],[9,12],[1,3],[-1,13],[0,7],[4,3],[6,1],[7,5],[3,8],[-2,10],[9,11],[7,14],[8,11],[10,5],[7,-2],[10,-8],[6,1],[9,7],[5,0],[5,-7],[1,6],[2,2],[2,-1],[3,-3],[3,0],[3,3],[1,5],[-3,5],[10,2],[20,-20],[14,-3],[0,4],[-3,3],[-5,7],[-2,2],[0,5],[6,0],[-2,9],[0,3],[2,0],[4,-8],[4,2],[5,6],[5,4],[5,0],[4,2],[9,6],[12,-13],[3,-9],[-4,-7],[2,-1],[6,-7],[-5,-4],[-18,0],[-14,-5],[-10,-9],[-3,-8],[-1,-2],[-3,-1],[-34,5],[5,-7],[21,-9],[10,-9],[46,-16],[9,0],[7,6],[7,5],[10,-4],[9,-8],[6,-7],[-6,-4],[-13,4],[-6,-4],[5,-4],[23,-4],[7,2],[11,7],[7,-1],[2,-2],[2,-2],[3,-3],[4,-1],[17,0],[6,-2],[16,-18],[0,-4],[-1,-2],[-2,-4],[-1,-2],[0,-2],[0,-1],[1,0],[1,-2],[-3,-6],[-3,-4],[-2,0],[-4,2],[1,3],[1,5],[-3,0],[-3,0],[-3,2],[-2,3],[1,0],[5,4],[-8,5],[-36,9],[-11,0],[-7,-4],[6,-10],[52,-35],[7,-10],[-2,-16],[5,-2],[15,-11],[0,-3],[-11,-7],[-6,-6],[-4,-8],[7,-3],[6,5],[6,8],[5,6],[8,2],[7,-4],[12,-14],[0,-4],[-5,-3],[-4,-5],[13,0],[3,-2],[4,-4],[3,-5],[-2,-1],[-23,-9],[-4,-4],[6,-3],[14,2],[5,-4],[3,-13],[-3,-7],[-7,-5],[-5,-6],[15,-9],[4,1],[4,6],[1,5],[1,4],[4,1],[4,-4],[-2,-8],[-7,-14],[-5,-7],[-4,0],[-4,4],[-5,1],[2,-6],[3,-7],[4,-5],[3,-2],[9,-2],[2,-2],[-4,-5],[7,-12],[-17,-24],[-5,-4],[-8,0],[-16,11],[-9,1],[0,-4],[6,-1],[6,-4],[5,-7],[2,-8],[-2,-14],[-6,-10],[-7,-7],[-7,-2],[-7,2],[-14,8],[-7,2],[-30,-4],[0,-4],[6,0],[17,-4],[-3,-8],[-3,-7],[-4,-5],[-5,0],[4,-9],[4,-1],[3,3],[9,14],[4,3],[31,-6],[10,-7],[5,-14],[-2,0],[-2,-1],[-1,-1],[-2,-1],[6,-7],[9,-4],[6,-7],[-2,-15],[8,-13],[2,-8],[1,-13],[-3,-6],[-6,-1],[-10,1],[-2,-3],[-4,-4],[-1,-1],[-3,-1],[-15,0],[-5,-2],[-4,-3],[-2,-7],[21,0],[-6,-7],[-8,-3],[-8,-1],[-7,3],[-9,10],[-21,11],[-7,0],[1,-8],[6,-10],[8,-7],[14,-6],[6,-6],[4,-12],[-2,0],[1,-3],[0,-1],[0,-1],[-1,-3],[7,-1],[4,-5],[3,-7],[4,-7],[5,-4],[5,0],[11,4],[25,0],[6,-4],[5,-15],[5,-2],[-1,-5],[-3,-3],[-4,-1],[-3,-3],[2,-1],[4,-2],[2,-1],[-4,-6],[-7,-6],[-3,-4],[-4,9],[-6,2],[-13,-3],[-3,1],[-2,2],[-3,3],[-5,10],[-2,1],[-2,-1],[-4,0],[-24,12],[-14,2],[-7,-10],[19,1],[10,-3],[8,-8],[3,-6],[1,-3],[-15,-11],[-3,-4],[-2,-6],[10,-1],[4,-3],[3,-8],[-4,-4],[-5,1],[-14,10],[-4,1],[-9,0],[-29,-18],[-7,3],[-6,9],[-9,7],[-18,7],[-18,-2],[-4,4],[-3,4],[-4,2],[-9,0],[5,-3],[9,-11],[6,-2],[21,-1],[7,-4],[11,-11],[6,-3],[29,-2],[3,2],[3,6],[7,0],[11,-4],[6,2],[4,0],[1,-4],[1,-4],[3,-4],[3,-4],[3,-2],[25,-5],[23,9],[-1,-3],[-3,-13],[20,2],[8,-3],[-5,-26],[9,-1],[13,1],[9,-4],[0,-7],[-4,-16],[5,-6],[0,-9],[-3,-8],[-5,-4],[-4,1],[-4,4],[-5,5],[-3,4],[-4,3],[-18,-1],[3,-6],[7,-8],[2,-7],[-1,-6],[-4,-1],[-17,7],[-20,14],[-17,5],[-53,37],[-8,1],[3,-9],[6,-8],[14,-11],[25,-4],[9,-9],[6,-2],[3,-3],[3,-10],[2,-3],[33,-10],[0,-4],[-5,-4],[-4,-4],[0,-3],[4,0],[3,2],[3,0],[3,-2],[-1,-2],[-1,-3],[8,1],[2,-1],[2,-2],[0,-5],[2,-1],[4,0],[8,7],[4,1],[1,-2],[-3,-6],[-4,-6],[-4,-2],[-4,-1],[-4,-3],[-4,-5],[-2,-8],[7,2],[12,6],[6,1],[5,-3],[20,-18],[-6,-4],[-7,0],[-12,4],[-7,-3],[-3,-1],[-2,2],[-1,5],[-3,-2],[-3,-4],[-2,-5],[6,-1],[12,-10],[7,-1],[-3,-15],[-1,-9],[1,-8],[5,-12],[-8,-12],[-8,-1],[-9,1],[-8,-5],[3,-5],[8,-11],[-6,-12],[-7,-8],[-15,-8],[-7,-1],[-13,8],[-8,1],[4,-8],[12,-15],[3,-8],[-2,-12],[-4,-9],[-5,-5],[-23,-15],[-5,-1],[-3,-3],[-9,-14],[-10,-4],[-2,-2],[-6,-10],[-7,-7],[-2,-3],[-4,-9],[-5,-8],[-7,-6],[-7,-3],[-22,0],[-3,-2],[-2,-10],[-5,-8],[-6,-6],[-4,-3],[-7,6],[-5,0],[-2,-12],[-1,-5],[-3,-5],[-29,-29],[-7,-3],[-18,0],[-3,-3],[-2,-5],[-1,-17],[-2,-14],[-2,-4],[-9,-3],[-3,-3],[-3,-5],[-2,-3],[0,-4],[-3,-7],[-5,-3],[-4,-3],[2,-8],[-6,-14],[-10,-9],[-10,1],[-8,14],[-8,-16],[4,-8],[0,-8],[-3,-7],[-4,-6],[-6,-1],[-12,1],[-5,-3],[-2,5],[-4,-1],[-4,-3],[-5,-1],[-10,3],[-7,0],[-2,-5],[-5,2],[-10,12],[-6,17],[5,15],[-6,9],[-9,-1],[-21,-9],[-11,-7],[-4,1],[-4,2],[-3,0],[-5,-3],[4,-7],[0,-7],[-3,-5],[-4,-1],[-2,2],[-1,8],[-2,2],[-2,-1],[-1,-2],[-1,-3],[-1,-2],[-28,-12],[1,6],[5,9],[1,5],[-5,-1],[-9,-12],[-12,-6],[-2,0],[-2,3],[-2,6],[0,6],[1,7],[1,5],[-8,-5],[-5,-1],[-5,-4],[-3,-14],[-2,-13],[-1,-6],[-2,-2],[-4,2],[-2,5],[0,7],[1,7],[-5,-4],[-8,-14],[-9,-5],[-14,-18],[-12,-21],[-2,-3],[-18,-10],[-2,4],[-3,-4],[-18,-10],[-3,0],[-3,3],[-2,1],[-3,-3],[-5,-8],[-14,-4],[-5,2],[-3,9],[0,12],[2,8],[-2,3],[-8,1],[5,-5],[-8,-22],[3,-10],[-12,2],[-22,18],[-11,5],[-33,-35],[-5,-4],[-2,11],[-4,5],[-3,0],[-3,-10],[1,-1],[2,-5],[1,-5],[0,-5],[-3,-2],[-4,1],[-3,3],[-2,4],[-1,8],[-2,-1],[-2,-7],[2,-10],[4,-9],[6,-7],[13,-8],[-4,-2],[-2,-5],[-2,-8],[-2,-6],[-4,-3],[-9,-2],[-3,-5],[-6,-12],[-3,-4],[-18,-8],[-3,2],[-2,-7],[-3,-4],[-4,0],[-2,7],[-3,-5],[-2,-6],[-1,-10],[2,0],[2,-1],[1,-2],[1,-5],[-5,-5],[-5,-7],[-6,-13],[-1,-3],[-6,3],[2,8],[6,17],[-3,8],[-5,0],[-6,-3],[-4,-5],[-2,-3],[-3,-6],[-2,-3],[-2,0],[-2,1],[-3,0],[-2,-5],[3,-6],[3,-1],[2,2],[4,1],[2,-3],[0,-6],[-3,-13],[0,-3],[-2,-4],[0,-3],[1,-3],[4,-3],[1,-2],[0,-7],[-1,-6],[-1,-6],[-2,-6],[3,0],[1,-2],[3,-6],[-7,-4],[-1,-10],[3,-11],[2,-7],[-2,-6],[-4,-2],[-3,-4],[-1,-7],[-1,-4],[-4,-3],[-6,-3],[1,-4],[1,-4],[1,-2],[3,-2],[-9,-5],[-8,6],[-6,13],[-2,16],[1,8],[6,15],[2,8],[0,7],[0,7],[-3,4],[-4,-4],[-3,-9],[-3,-27],[-4,-15],[-17,-26],[0,-6],[-5,-9],[-4,5],[-5,9],[-5,3],[-2,-4],[0,-5],[1,-5],[-1,-6],[-2,-5],[-2,-1],[-2,0],[-3,-2],[-6,-7],[-8,-16],[-6,-6],[-3,-1],[-9,2],[-3,-1],[-1,-4],[0,-3],[2,-3],[3,-2],[-3,-7],[-3,-1],[-3,0],[-3,-2],[-2,-6],[-3,-15],[4,-5],[8,0],[4,-7],[-1,-10],[-3,-9],[-8,-4],[-12,3],[-4,5],[-3,-2],[-1,-3],[-2,-4],[-3,-2],[-4,-5],[-2,-6],[-2,-8],[-3,-7],[-3,-3],[-16,-3],[-12,-8],[-9,-2],[-2,-3],[-3,-4],[-3,-4],[-4,4],[-6,-3],[-3,3],[-6,-9],[-11,-23],[-6,-8],[0,-4],[2,-1],[5,-3],[-1,-7],[0,-7],[2,-5],[4,-2],[0,4],[3,8],[2,5],[2,-6],[-3,-11],[-7,-9],[-13,-11],[-7,-4],[-3,-2],[-1,-4],[-2,-10],[-2,2],[-4,5],[-3,-1],[-5,-10],[-6,-6],[-6,-1],[-7,7],[-2,-5],[-2,-1],[-3,0],[-2,-2],[-1,-2],[-2,-5],[-1,-2],[-3,-4],[-3,-3],[-2,1],[2,10],[-11,0],[3,5],[2,6],[1,7],[0,13],[-1,2],[-6,0],[-6,-7],[-7,-14],[-6,-11],[-7,4],[3,3],[3,5],[2,5],[2,7],[-5,-3],[-3,1],[-3,5],[-1,9],[-2,-6],[0,-19],[-3,-4],[-10,4],[-5,0],[-4,-4],[2,-4],[1,-3],[-1,-3],[-2,-2],[-3,2],[-2,8],[-2,2],[-2,2],[-2,2],[-2,1],[-2,-2],[-2,-4],[-2,-2],[-2,1],[-2,2],[1,9],[-7,-3],[-9,-1],[-2,-3],[-6,-11],[-3,-3],[-17,-5],[-6,3],[1,19],[-6,-10],[-3,-4],[-4,-3],[-16,0],[1,3],[1,2],[0,2],[0,2],[-6,0],[-4,-4],[-4,-6],[-4,-9],[-4,-2],[-7,10],[-5,-1],[2,10],[4,7],[6,4],[5,3],[-7,4],[-9,-7],[-27,-31],[-1,-3],[-2,2],[-1,2],[0,4],[0,1],[-1,1],[0,2],[-1,1],[-2,0],[-4,-4],[-2,-1],[-4,3],[-4,3],[-4,3],[-5,-1],[-1,-2],[-1,-4],[0,-4],[0,-2],[-2,0],[-6,4],[-7,-4],[0,-1],[-1,-2],[-1,-3],[-2,-2],[-8,6],[-3,0],[2,-10],[-4,0],[-11,10],[-5,2],[-24,-4],[-33,-18],[-21,-6],[-22,-17],[-16,-5],[-15,-11],[-6,-1],[-19,1],[0,4],[6,1],[8,9],[4,3],[4,1],[26,14],[5,1],[4,3],[2,7],[-1,7],[-4,3],[-5,-10],[-8,-5],[-16,-5],[-14,-12],[-9,-2],[-7,6],[2,16],[-5,11],[-7,9],[-2,9],[-5,6],[-6,2],[-11,-1],[-3,2],[-3,2],[-4,1],[-3,-3],[-3,-3],[-4,-2],[-7,-1],[-31,9],[-22,1],[-6,2],[-12,10],[-6,7],[-4,6],[-3,3],[-4,-1],[-3,-3],[-5,-2],[-3,-2],[-1,1],[-1,4],[0,4],[-1,2],[-3,0],[-3,-3],[-2,-4],[-2,-6],[-2,-3],[-5,-1],[-2,3],[-2,4],[-4,2],[-32,-2],[-43,6],[0,4],[11,9],[0,3],[-12,-6],[-7,-1],[-3,4],[-2,-7],[-3,-2],[-7,-4],[-5,4],[-22,-4],[-8,0],[-3,2],[-3,4],[-3,9],[-3,2],[-4,-1],[-3,-3],[-5,-10],[-2,-3],[-4,-1],[-12,5],[-13,0],[-5,-3],[0,-6],[3,-7],[1,-4],[-5,-6],[-7,-3],[-13,-3],[-23,6],[-7,-3],[-3,-3],[-5,-10],[-2,-2],[-7,-1],[-4,1],[-2,1],[-2,12],[-4,8],[-6,4],[-7,3],[-7,-1],[-19,-7],[-2,2],[-4,8],[-3,2],[-4,-1],[-3,-1],[-3,-1],[-3,3],[-2,3],[-3,9],[-2,4],[-4,2],[-13,-2],[-3,1],[-5,6],[-3,1],[-50,-5],[-13,-6],[-17,-3],[-3,-2],[-7,-11],[-3,-1],[-29,2],[-28,10],[-6,6],[-5,7],[-8,5],[-8,3],[-7,-1],[-6,-4],[-11,-10],[-27,-8],[-66,-6],[-3,-1],[-1,0],[-2,1],[-4,5],[-1,2],[1,1],[-4,0],[-6,-3],[-26,1],[-23,8],[-10,0],[-6,-4],[-5,-2],[-7,6],[-12,14],[-2,-1],[-6,-5],[-3,-1],[-44,-5],[-21,-10],[-25,-5],[-32,-11],[-28,2],[-6,4],[-9,9],[-10,6],[-10,0],[-8,-9],[-11,-25],[-4,-6],[-4,-3],[-5,1],[-2,5],[2,9],[-6,-1],[-1,-10],[3,-12],[2,-9],[-6,3],[-15,-1],[-5,4],[-4,6],[-5,3],[-11,2],[-10,-3],[-9,-6],[-10,-2],[-13,10],[-1,2],[1,4],[0,4],[0,6],[-1,7],[-1,4],[-5,5],[-5,0],[-6,-3],[-8,-9],[-9,-13],[-4,-9],[-1,-10],[2,-8],[8,-12],[4,3],[7,3],[8,1],[4,-3],[0,-5],[-1,-3],[-5,-4],[-3,-4],[-1,-1],[-9,2],[-10,7],[-3,0],[-5,-1],[-3,1],[-5,4],[-7,9],[-5,3],[0,-6],[0,-5],[1,-5],[2,-4],[-6,-3],[-6,-7],[-9,-17],[-13,-31],[-5,-7],[-14,-8],[-27,-10],[-11,-15],[-4,-11],[-3,-7],[-1,-6],[1,-5],[2,-7],[1,-6],[-7,-7],[-4,-11],[-3,-14],[-3,-11],[-5,-8],[-3,2],[-3,6],[-7,4],[-6,-3],[-5,-8],[-4,-9],[-6,-16],[-2,-10],[-2,-10],[-1,-9],[1,-10],[3,-8],[1,-8],[-1,-10],[-2,-8],[-10,-16],[-3,-9],[-2,-7],[-4,-25],[4,-13],[0,-19],[-1,-20],[-3,-13],[-6,-15],[-30,-56],[-7,-6],[-41,1],[-9,-2],[-9,-7],[-4,3],[-5,0],[-8,-3],[-17,0],[-3,-1],[-8,-6],[-2,-3],[-3,-7],[-3,-3],[-3,-1],[-13,2],[-15,6],[-8,1],[-14,-5],[-9,0],[-7,5],[-1,-8],[-2,-5],[-5,-8],[-11,7],[-4,-9],[-2,-16],[-6,-14],[-2,-1],[-5,1],[-2,0],[-2,-2],[-4,-5],[-3,-1],[-15,1],[-5,3],[0,-4],[13,-15],[5,-2],[9,4],[4,-2],[2,-9],[0,-5],[1,-11],[-11,-7],[-30,-9],[-4,-4],[-10,-13],[-4,-3],[-5,-1],[-10,0],[18,22],[3,10],[-1,14],[-9,14],[1,12],[-9,7],[-3,2],[4,-9],[4,-15],[2,-14],[1,-7],[-3,-2],[-10,-14],[-10,-7],[-2,-3],[-5,-5],[-17,-6],[-5,-3],[-6,-9],[-5,-14],[-3,-15],[2,-15],[-17,-12],[3,-8],[9,-1],[3,-8],[-39,-4],[-3,-2],[-2,-4],[-2,-6],[-2,-4],[-19,-21],[-6,-5],[-5,-5],[-7,-3],[-1,-4],[-1,-5],[-1,-6],[-4,-7],[-5,-4],[-12,-1],[-5,-4],[-4,-10],[-14,-75],[-7,-17],[-13,-7],[-3,1],[-2,2],[-3,1],[-3,-2],[-10,-29],[-4,-19],[-2,-7],[0,-21],[-10,-23],[-22,-37],[-7,-27],[-5,-13],[-6,-5],[-7,-3],[-5,-7],[-5,-8],[-5,-7],[-2,0],[-4,1],[-2,-1],[-1,-3],[0,-3],[0,-3],[-1,-2],[-20,-38],[-6,-7],[-6,-4],[-4,1],[-10,7],[-4,1],[-10,-1],[-6,3],[-4,8],[-8,17],[-5,10],[-6,7],[-12,15],[-11,12],[-14,0],[-16,-4],[-14,1],[-6,6],[-12,19],[-7,3],[-7,2],[-7,5],[-23,25],[-7,1],[-6,-6],[-6,-2],[-55,20],[-12,-3],[-4,1],[-6,6],[-9,14],[-6,5],[-7,1],[-3,-1],[-3,-2],[-3,0],[-3,1],[-12,9],[-30,9],[-7,-1],[-10,-8],[-6,-3],[20,5],[7,-1],[24,-17],[15,-4],[7,-5],[5,-7],[-1,-9],[-5,-6],[-8,-3],[-14,-1],[3,-9],[2,-8],[2,-6],[6,-2],[5,3],[12,13],[10,4],[40,1],[16,4],[19,-4],[4,-3],[5,-5],[14,-3],[9,-6],[4,-1],[3,-3],[3,-12],[4,-1],[4,2],[2,3],[16,-20],[19,-17],[20,-6],[18,11],[6,-7],[15,-6],[7,-6],[5,-8],[10,-30],[7,-8],[8,-5],[16,-3],[7,-4],[-2,-11],[-9,-18],[-2,-10],[-3,-30],[-1,-11],[-2,-3],[-3,-3],[-3,-5],[0,-5],[0,-5],[-1,-8],[-2,-13],[-3,-10],[-13,-29],[-4,-10],[-3,-25],[-4,-11],[-3,-5],[-7,-6],[-3,-5],[-10,-23],[-5,-6],[-12,-10],[-3,-4],[-3,-4],[-5,1],[-4,-1],[-4,-7],[2,-8],[-5,-9],[-7,-10],[-5,-9],[-2,-9],[0,-8],[0,-8],[0,-7],[-1,-7],[-2,-7],[-6,-13],[-3,-3],[-8,-5],[-7,-7],[-4,-2],[-16,-3],[-9,-5],[-8,-6],[-6,-7],[-2,2],[-4,3],[-2,3],[-3,-9],[-3,-29],[-2,-7],[-5,-5],[-4,-13],[-6,-27],[-8,-26],[-5,-13],[-5,-5],[-14,-41],[-8,-19],[-10,-15],[-12,-11],[-35,-21],[-11,-10],[-65,-96],[-2,-6],[-6,-20],[-2,-3],[-1,-7],[-4,-5],[-16,-18],[-4,-1],[-6,-9],[-4,-2],[-30,-2],[-15,-6],[-21,-14],[-14,-5],[-14,-11],[-8,-3],[-14,0],[-3,2],[-6,5],[-2,1],[-8,2],[-6,3],[-5,0],[-26,-37],[-11,-13],[-12,-7],[-24,-9],[-19,-11],[-5,-5],[-2,-10],[-4,-32],[-2,-7],[-11,-11],[-11,-5],[-6,-4],[-9,-10],[-14,-5],[-6,-5],[-39,-60],[-11,-9],[-7,-1],[-19,1],[-10,-3],[-20,-10],[-19,-13],[-23,-19],[3,-9],[-5,-32],[-5,-19],[-14,-11],[-10,-2],[-14,-7],[-6,-13],[-1,-11],[-1,-10],[-5,-20],[-16,-48],[-8,-16],[-12,-13],[-6,-7],[-5,-18],[-13,-28],[-21,-22],[-50,-11],[-22,-19],[-30,-50],[-8,-20],[-3,-10],[-2,-4],[-7,-3],[-3,-3],[-3,-5],[-2,-5],[-4,-5],[-6,-5],[-12,-4],[-17,1],[-6,2],[-3,1],[-3,2],[-7,14],[-5,6],[-2,2],[-5,1],[-25,-4],[-4,1],[-4,5],[-7,14],[-5,1],[4,-5],[3,-9],[3,-9],[4,-8],[6,-3],[8,-1],[42,-22],[7,-1],[7,-4],[5,-7],[6,-4],[6,7],[2,-8],[-2,-10],[4,-14],[5,-15],[6,-10],[-2,-1],[-1,-1],[-1,-2],[-11,-11],[-26,-1],[-12,-4],[-5,-7],[-8,-21],[-4,-5],[-6,-1],[-20,-18],[-2,-3],[-2,-1],[-4,-1],[-3,-2],[-5,-9],[-3,-2],[-1,-1],[-7,-8],[-3,-3],[-8,-2],[-3,-2],[-5,-6],[-6,-11],[-5,-13],[-1,-12],[-3,-8],[-6,-6],[-29,-22],[-17,-26]],[[29246,77119],[22,9],[45,31],[10,11],[8,17],[1,6],[0,6],[1,6],[3,2],[3,1],[3,3],[3,3],[8,11],[6,3],[24,8],[6,4],[9,15],[6,3],[27,-1],[12,8],[11,13],[21,41],[2,2],[7,0],[2,2],[5,7],[15,15],[3,4],[6,14],[3,4],[6,2],[2,3],[5,3],[23,-5],[6,3],[4,0],[1,-5],[2,-3],[4,1],[4,3],[3,3],[4,13],[0,9],[-5,24],[-1,6],[0,8],[1,7],[9,26],[6,9],[2,5],[1,6],[1,11],[2,4],[-3,18],[2,19],[5,16],[5,11],[43,61],[12,27],[3,10],[0,10],[-1,10],[0,12],[2,7],[6,13],[2,6],[0,7],[1,6],[2,4],[2,4],[4,5],[28,9],[2,5],[5,7],[4,6],[6,7],[6,9],[7,8],[6,-5],[9,0],[9,4],[24,18],[8,2],[17,23],[0,9],[-1,10],[6,7],[11,10],[15,18],[17,32],[5,5],[6,2],[16,14],[35,15],[9,13],[7,22],[3,12],[1,9],[3,6],[24,20],[13,4],[7,0],[7,3],[4,7],[4,10],[5,9],[15,15],[11,15],[6,1],[6,-4],[5,-7],[12,-9],[13,-1],[114,67],[6,5],[11,13],[5,2],[6,5],[8,22],[5,9],[11,8],[27,-1],[13,6],[15,21],[5,3],[3,0],[6,-3],[3,-1],[4,2],[5,7],[3,3],[3,1],[6,-2],[2,1],[3,4],[6,14],[4,6],[36,24],[12,3],[6,5],[40,62],[29,56],[16,45],[9,17],[33,32],[7,19],[6,41],[8,17],[3,3],[6,3],[3,2],[2,5],[2,5],[3,5],[9,5],[27,45],[31,63],[28,51],[8,8],[2,4],[1,5],[0,4],[-1,4],[0,9],[2,11],[28,60],[5,4],[6,2],[13,7],[5,4],[5,6],[20,37],[28,32],[27,51],[25,32],[33,33],[6,14],[5,4],[16,0],[6,2],[18,21],[3,5],[3,7],[22,11],[10,12],[17,34],[11,11],[13,2],[7,3],[11,19],[30,32],[6,4],[14,2],[5,5],[9,15],[6,5],[7,2],[15,1],[5,1],[68,56],[2,3],[11,10],[7,5],[12,4],[16,18],[33,6],[18,18],[19,12],[49,23],[66,50],[72,45],[26,6],[85,44],[46,10],[48,0],[55,11],[19,10],[14,4],[47,-3],[33,-10],[24,-4],[63,-11],[24,-14],[15,-4],[6,-4],[12,-15],[13,-11],[7,-3],[21,-6],[2,-2],[7,-8],[7,-5],[16,-21],[3,-3],[2,-1],[2,-1],[6,-11],[3,-4],[12,-10],[4,-6],[9,-15],[2,-3],[9,-4],[3,-3],[1,-3],[2,-8],[2,-4],[16,-23],[5,-15],[-3,-25],[7,-16],[4,-9],[6,-7],[-4,-7],[-6,7],[-6,11],[-4,5],[-7,3],[-14,15],[-63,31],[-8,0],[6,-4],[16,-20],[0,-4],[-17,-3],[0,-6],[5,-2],[17,6],[12,-1],[6,-3],[2,-6],[1,-1],[2,-5],[1,-5],[-3,-2],[-6,2],[-3,0],[-3,-7],[3,-3],[3,0],[2,3],[3,0],[3,-2],[7,-8],[7,-4],[14,-18],[12,-28],[4,-5],[4,-2],[4,-6],[4,-7],[4,-9],[-9,-4],[-9,1],[-9,-3],[-5,-18],[-1,-12],[0,-5],[8,-6],[8,-10],[5,-3],[4,-1],[-3,-4],[-1,-4],[-2,-5],[-2,-5],[-3,-3],[-10,-3],[-6,-4],[-5,-6],[-4,-8],[-2,-11],[4,-3],[-5,-8],[-8,-3],[-24,-4],[-14,-8],[-14,-4],[-32,-22],[-6,-5],[-8,-1],[-3,-2],[3,-4],[2,-3],[1,-4],[-1,-6],[-1,-3],[-1,-4],[-2,-4],[-2,-1],[-1,-2],[-2,-9],[-5,-17],[-3,-12],[-4,-9],[-36,-16],[-4,-1],[-4,1],[-3,2],[-3,4],[-1,-1],[0,-6],[1,-9],[3,-6],[-11,-14],[-17,-15],[-36,-35],[-29,-18],[-28,-2],[-5,-4],[-8,1],[-7,4],[-5,6],[-2,3],[-1,9],[-1,4],[-4,3],[-9,4],[-11,3],[-25,19],[-33,11],[-10,9],[-10,17],[-9,7],[-1,10],[1,12],[-2,11],[-2,-10],[-2,-5],[-4,-2],[-4,0],[-4,-1],[-3,-5],[-22,-43],[-6,-8],[-8,-2],[-25,10],[-24,1],[-4,-1],[-4,-4],[2,-2],[2,-1],[6,-1],[-3,-17],[-1,-3],[-3,-1],[-2,2],[-1,4],[-2,3],[-1,1],[-2,-1],[-2,0],[-1,2],[0,3],[-1,3],[-1,3],[-1,1],[-10,8],[-27,3],[-12,-7],[-5,-22],[-2,-7],[-12,1],[-4,-10],[-4,2],[-5,4],[-4,-1],[-1,-4],[-2,-4],[-2,-3],[-10,-6],[-14,-3],[-6,-6],[-4,-2],[-9,1],[-4,-1],[-4,-4],[1,-1],[3,-2],[4,-1],[9,0],[10,-3],[5,0],[13,12],[20,2],[8,8],[7,9],[48,21],[9,-3],[-2,-17],[4,-11],[8,-6],[8,-3],[8,-1],[2,-2],[2,-6],[2,-4],[6,5],[4,-2],[7,-6],[57,-33],[30,-4],[13,-6],[13,-14],[8,-21],[15,-73],[3,-10],[4,-7],[9,-15],[-9,-8],[-2,-1],[1,-6],[2,-5],[4,-4],[3,-5],[8,21],[4,7],[7,5],[19,1],[6,3],[11,13],[20,33],[22,12],[21,22],[51,18],[13,-5],[-21,-23],[-5,-13],[3,0],[6,3],[14,3],[23,12],[14,3],[8,0],[8,-4],[4,-9],[-1,-13],[-6,-6],[-14,-2],[0,-4],[5,-2],[11,-1],[5,-5],[0,-3],[1,-10],[1,-3],[4,-2],[1,4],[1,5],[-1,1],[1,4],[-1,8],[0,4],[2,3],[5,4],[1,1],[3,-2],[11,-12],[3,-6],[-4,-5],[-15,-13],[-4,0],[-2,-9],[-4,-2],[-5,0],[-6,-3],[1,-2],[3,-6],[-3,-3],[-1,-3],[1,-4],[3,-3],[-4,-12],[-4,-9],[-11,-19],[-2,-2],[-3,-2],[-2,-4],[-1,-6],[0,-5],[0,-3],[-4,-10],[10,0],[-4,-12],[-10,-19],[-1,-10],[4,8],[3,4],[4,3],[6,5],[-7,-37],[-5,-40],[-1,6],[1,6],[1,6],[0,5],[-1,5],[-5,-5],[-3,-9],[-2,-10],[-4,-10],[0,-8],[1,-11],[-1,-11],[-4,-5],[-12,-2],[-7,-4],[-5,-14],[-10,-9],[-3,-9],[-4,-11],[-58,-61],[-10,-3],[0,-4],[23,-4],[11,0],[12,8],[-1,-9],[-1,-9],[-1,-7],[2,-4],[16,5],[24,21],[8,3],[5,-4],[5,-14],[3,-3],[6,2],[3,5],[2,5],[3,5],[8,3],[23,-2],[7,-5],[-7,-11],[1,-13],[4,-15],[0,-18],[-3,-5],[-10,-8],[-12,-28],[-3,-17],[1,-17],[2,-16],[4,-15],[5,-14],[5,-12],[15,-22],[-8,0],[-5,-5],[-4,-9],[0,-15],[2,0],[4,14],[8,-3],[14,-15],[-2,12],[3,6],[5,-1],[5,-7],[2,-8],[0,-12],[-1,-22],[-3,-23],[1,-12],[4,-5],[3,-5],[3,-12],[1,-11],[-5,-5],[-2,-1],[-2,-3],[-1,-3],[1,-1],[2,-1],[2,-6],[1,-2],[2,0],[2,2],[1,2],[1,0],[4,-4],[5,-7],[5,-10],[2,-9],[-1,-22],[-1,-9],[-2,-8],[-5,-8],[-5,-2],[-6,-1],[-6,-5],[6,1],[3,-1],[2,-2],[2,-1],[3,2],[6,5],[10,1],[4,2],[-1,6],[6,12],[6,-10],[4,-18],[-2,-9],[-7,-5],[-3,-11],[2,-33],[6,7],[6,2],[30,0],[2,-2],[3,-5],[2,-2],[3,0],[2,1],[2,2],[2,1],[27,2],[4,-2],[14,-12],[7,-9],[-2,-7],[2,-8],[3,-2],[7,2],[0,3],[2,4],[2,3],[2,-7],[2,-4],[4,-5],[1,2],[8,10],[3,2],[5,1],[13,-1],[8,-3],[14,-13],[23,-9],[6,-6],[5,-9],[-5,-10],[-6,-3],[-13,-4],[-2,-2],[-5,-11],[-3,-3],[-3,-1],[-44,2],[-2,-1],[-1,-4],[0,-5],[-1,-5],[-4,-2],[3,-6],[8,-13],[3,-5],[0,-1],[3,3],[2,4],[2,2],[3,0],[28,-15],[10,-11],[1,-15],[6,-1],[6,-6],[3,-9],[2,-12],[5,1],[8,-3],[7,-6],[5,-5],[-3,-3],[-6,-5],[-3,-4],[6,-3],[13,7],[6,-4],[-2,-6],[0,-6],[2,-2],[2,2],[2,6],[0,3],[-1,5],[-1,8],[1,6],[1,0],[3,-2],[2,-4],[2,-1],[10,8],[28,4],[15,-4],[8,-13],[-5,0],[-10,4],[-6,0],[4,-5],[9,-8],[3,-7],[-6,-3],[-10,3],[-5,0],[-6,-4],[2,-5],[6,-3],[5,4],[2,-3],[3,-1],[2,-1],[3,1],[1,-1],[2,-2],[1,-1],[1,1],[1,6],[1,1],[5,-1],[8,-5],[4,-2],[9,2],[9,5],[9,3],[8,-6],[-8,-9],[-12,-9],[-13,-6],[-9,3],[2,-8],[5,-6],[12,-6],[2,-3],[3,-4],[2,-1],[0,6],[1,4],[3,4],[4,7],[0,-3],[0,-7],[0,-3],[13,13],[4,3],[0,2],[1,3],[0,3],[1,1],[2,-2],[0,-3],[0,-3],[-1,-2],[-4,-6],[-1,-4],[0,-5],[4,-1],[15,14],[5,2],[5,1],[5,-1],[5,-2],[-2,11],[-4,7],[-10,10],[6,3],[33,-9],[16,-8],[41,-11],[7,1],[14,4],[7,-1],[-6,-6],[-6,0],[-6,1],[-5,-2],[5,-6],[3,-3],[8,0],[5,-1],[5,-4],[5,-5],[4,-6],[-20,-18],[-13,-3],[-6,-4],[-3,-8],[-2,-11],[3,6],[4,5],[4,2],[4,-6],[-3,-16],[-1,-9],[3,3],[5,17],[4,6],[4,-2],[7,-13],[3,-2],[3,9],[-5,3],[-2,5],[0,7],[2,7],[2,1],[5,0],[4,0],[3,5],[4,-2],[6,-1],[3,-1],[3,-3],[2,-7],[1,-2],[5,-3],[5,1],[4,1],[5,1],[-7,-19],[-2,-9],[4,-5],[7,4],[10,17],[4,4],[5,2],[7,5],[4,7],[-3,6],[-3,-2],[-6,-3],[-10,-12],[7,14],[40,15],[59,62],[20,32],[11,12],[6,4],[4,0],[3,-4],[1,-6],[-2,-4],[-3,-3],[-2,-6],[1,-12],[3,-26],[6,-29],[0,-10],[-2,-10],[5,-6],[11,-7],[4,-5],[4,-8],[3,-4],[20,-15],[5,-3],[6,0],[5,2],[3,6],[4,3],[4,-3],[-2,0],[-4,-1],[0,-4],[2,-4],[6,-4],[0,5],[1,5],[2,5],[2,2],[4,2],[1,4],[1,6],[1,6],[5,6],[6,3],[12,1],[7,-4],[9,-20],[5,-4],[5,-6],[4,-13],[5,-18],[3,-2],[2,-4],[3,-10],[4,-7],[17,-18],[5,-2],[2,0],[0,-1],[1,-9],[-1,-14],[-3,-8],[-5,-6],[-24,-18],[-5,-3],[-1,8],[-4,-2],[-4,-6],[-4,-6],[-3,-4],[-15,-10],[6,-12],[3,-3],[87,3],[5,-1],[11,-6],[23,-5],[4,-4],[3,-8],[0,-7],[0,-8],[1,-10],[-4,0],[-1,3],[-1,5],[-2,4],[-3,2],[-3,-1],[-2,1],[-3,3],[2,-9],[2,-4],[2,-4],[-2,-5],[-2,-1],[-3,-1],[-2,-3],[-2,-6],[-1,-5],[-1,-2],[-5,3],[2,-8],[-13,-6],[-5,2],[-4,12],[3,4],[2,5],[2,5],[2,6],[-13,-5],[-2,-3],[-2,-9],[3,-16],[-1,-8],[-3,4],[-1,4],[-1,4],[-1,8],[-3,6],[-2,4],[-1,-3],[-8,-5],[-5,0],[0,7],[-4,2],[-6,-4],[-9,-10],[-5,-8],[-4,-9],[0,-7],[7,0],[-4,-7],[-5,-6],[-5,-3],[-50,-10],[-11,3],[-8,14],[-3,-11],[-5,4],[-6,7],[-4,-3],[5,-5],[5,-7],[5,-9],[3,-8],[-3,0],[-3,0],[-4,-4],[10,-12],[0,-4],[-11,1],[-5,1],[-2,4],[0,6],[-2,0],[-2,-4],[-11,0],[1,-4],[-1,-3],[0,-3],[0,-2],[-7,7],[-8,5],[-4,-1],[4,-11],[-3,-2],[-7,2],[-3,0],[0,-4],[2,-2],[2,-3],[2,-5],[-1,-6],[-2,-1],[-9,5],[-2,-4],[1,-7],[-4,-3],[-6,4],[-5,10],[-1,-12],[0,-5],[-5,7],[-5,0],[-4,-6],[-4,-9],[0,3],[-1,3],[0,2],[0,4],[-3,-3],[-3,-4],[-2,-4],[-4,-1],[5,-4],[16,-8],[-3,-4],[-5,-1],[-4,1],[-3,4],[-3,-5],[-5,-4],[-4,-2],[-3,3],[-4,-2],[-6,-3],[-5,0],[-2,3],[-2,1],[-6,-9],[-3,-3],[-13,2],[-6,-4],[-5,-14],[-2,5],[-3,-6],[-5,-4],[-4,-2],[-3,3],[-2,0],[0,-2],[-1,-2],[0,-2],[-1,-2],[1,-2],[0,-1],[1,-5],[-6,4],[-4,5],[-5,0],[-6,-9],[1,-2],[2,-3],[1,-3],[-5,-2],[-5,-6],[-3,-9],[0,-11],[-5,4],[-2,11],[0,13],[-1,12],[-4,-12],[-4,-11],[-6,-4],[-7,7],[-4,-16],[3,-5],[3,-4],[4,-11],[-6,-4],[-7,20],[-6,-4],[-2,6],[-5,-4],[-10,-14],[2,-9],[-9,6],[-33,-10],[2,-8],[-1,-6],[-3,-4],[-4,-2],[1,-4],[2,-4],[2,-3],[3,-2],[-6,-5],[-3,-2],[-4,0],[-2,3],[-2,7],[-2,2],[-2,-8],[-4,4],[-6,4],[-6,1],[-4,-3],[-8,-10],[-4,-4],[-3,2],[0,5],[0,3],[-1,2],[0,4],[0,16],[0,4],[-4,4],[-8,-7],[-4,7],[0,-9],[3,-7],[8,-15],[2,-9],[-3,-8],[-10,-13],[-1,8],[1,9],[-1,8],[-3,4],[-6,3],[-2,8],[1,19],[-1,5],[-2,4],[-2,0],[-3,-3],[1,-2],[1,-18],[-1,-10],[-3,-16],[-1,-11],[-4,4],[-2,6],[0,7],[2,7],[-5,-5],[-3,-17],[-6,-6],[-3,0],[0,1],[1,4],[-1,8],[-5,13],[-1,7],[-4,-7],[-1,-9],[2,-8],[3,-5],[-4,-10],[-8,-17],[-2,-9],[-8,5],[-20,4],[-8,7],[4,6],[2,1],[2,1],[-3,8],[-5,1],[-11,-9],[6,-5],[4,-7],[1,-9],[-1,-11],[-5,-11],[-5,3],[-6,7],[-9,7],[-8,14],[-10,10],[-16,28],[-3,3],[-5,0],[3,-18],[3,-6],[3,-5],[2,-1],[7,1],[2,-3],[4,-10],[2,-3],[1,-4],[4,-19],[1,-6],[0,-11],[-1,-7],[1,-7],[6,-19],[0,-9],[-2,-8],[-5,-10],[-1,-1],[-6,-4],[-1,0],[-2,3],[0,3],[2,4],[0,2],[-5,2],[-2,-6],[-2,-9],[-3,-6],[-1,-4],[-2,-3],[-2,1],[-1,4],[1,6],[2,4],[1,2],[-4,4],[-4,0],[-10,-4],[-2,-1],[-1,-3],[0,-3],[-3,-1],[-2,3],[0,5],[-2,3],[-2,-3],[-3,3],[-3,4],[-1,6],[-1,8],[-2,-7],[-3,-9],[-3,-5],[-3,4],[-1,8],[1,8],[6,17],[-3,-3],[-3,-7],[-2,-2],[-2,1],[-2,4],[-2,3],[-4,-4],[1,-2],[1,-6],[-3,0],[-6,-4],[-4,-1],[-3,1],[-4,2],[-2,2],[-2,4],[-4,13],[0,12],[6,23],[-2,4],[-4,13],[5,5],[2,3],[0,4],[-1,1],[-2,3],[7,11],[3,8],[1,10],[-5,-8],[-6,-5],[-17,-11],[-3,-1],[-16,-10],[-2,-2],[1,-8],[0,-20],[2,-5],[5,-5],[3,-12],[4,-23],[-9,7],[-4,-9],[-2,-12],[-3,-7],[-6,-1],[-3,2],[-3,6],[-1,16],[-1,4],[2,9],[-3,11],[-4,9],[-5,5],[-5,2],[-5,-1],[-4,-6],[0,-11],[-4,-9],[-7,4],[-8,9],[-7,4],[1,-3],[3,-9],[-4,-2],[0,-3],[1,-6],[1,-7],[-1,-7],[-2,-6],[-2,-5],[-3,-5],[3,0],[5,-4],[-3,-3],[-12,-5],[0,-6],[2,-5],[3,-5],[-1,-8],[11,1],[6,-1],[5,-4],[-4,-1],[-4,-3],[-3,-5],[-4,-4],[0,-3],[14,-1],[7,-2],[7,-5],[-4,-4],[-5,0],[-10,4],[-19,0],[0,-4],[3,-3],[1,-4],[0,-4],[-1,-6],[3,-1],[3,-4],[3,-2],[4,3],[-2,2],[-2,5],[-2,1],[3,2],[3,-1],[7,-5],[-7,-17],[1,-3],[14,0],[-9,-19],[-5,-5],[-5,8],[-2,-4],[-5,7],[-2,4],[-3,5],[3,3],[1,1],[-21,18],[-5,6],[3,-8],[4,-8],[6,-5],[5,-3],[1,-2],[1,-5],[-1,-5],[0,-4],[-2,-4],[-16,-18],[-2,-5],[-1,-11],[-1,-5],[-3,-4],[-5,-3],[-3,-3],[-1,-5],[-4,-20],[-5,6],[-2,1],[-3,2],[-1,0],[-2,3],[-2,1],[0,-1],[-1,-6],[-1,-1],[-10,6],[-3,0],[1,-6],[-1,-2],[-1,-1],[-2,-1],[-2,-1],[6,-3],[7,-1],[6,-2],[2,-7],[-1,-11],[-3,-12],[-4,-6],[-5,6],[-8,-9],[-7,-3],[-19,0],[3,-8],[5,-2],[5,-4],[2,-12],[-1,-10],[-4,-3],[-5,-2],[-4,-6],[-5,-10],[-4,-3],[-17,0],[-3,-2],[-1,-5],[0,-5],[-2,-4],[-3,-1],[-2,0],[3,-9],[10,-11],[4,-12],[-5,1],[-3,-1],[-2,-5],[2,-8],[-5,-5],[-1,-6],[-1,-3],[-4,6],[-2,4],[-2,9],[-2,3],[-2,4],[-3,2],[-3,2],[-3,0],[1,-5],[4,-9],[2,-6],[1,-4],[0,-10],[1,-6],[-7,-4],[-5,10],[-4,16],[-3,10],[-5,4],[1,-8],[8,-28],[1,-4],[-1,-4],[-4,-14],[-2,-6],[-4,-4],[-3,0],[-4,7],[-7,28],[-5,9],[1,-10],[5,-27],[1,-7],[0,-9],[0,-9],[-3,-7],[-2,-2],[-1,2],[0,3],[-2,1],[-3,-1],[-1,-5],[-1,-4],[1,-2],[-5,5],[1,20],[-4,8],[-3,-13],[-7,-23],[-2,-14],[-6,9],[1,10],[3,13],[-1,14],[-6,-21],[-2,-4],[-2,0],[-3,4],[-2,5],[-2,16],[-3,12],[-3,12],[-4,8],[-1,-4],[0,-2],[0,-2],[1,-5],[-5,-5],[2,-12],[7,-21],[-5,-15],[-2,-12],[-4,-2],[-7,2],[-11,13],[0,8],[3,14],[1,6],[-1,10],[-2,3],[-2,-1],[-3,-3],[-1,-4],[0,-6],[-2,-3],[-4,4],[4,-16],[3,-13],[2,-14],[-2,-17],[0,-4],[1,-6],[0,-5],[-1,-2],[-3,-1],[-1,-5],[0,-4],[2,-2],[1,-3],[1,-25],[-6,17],[-2,3],[-3,-2],[-3,-6],[-2,0],[-4,3],[-8,13],[-4,4],[0,-4],[12,-32],[1,-6],[1,-6],[2,-9],[-4,-2],[-2,7],[-2,20],[-3,7],[-3,2],[-1,-3],[1,-6],[-1,-6],[-2,-5],[-3,-2],[-3,1],[2,-13],[1,-6],[0,-8],[-1,-5],[-2,0],[-3,5],[-1,8],[-2,6],[-11,15],[-1,2],[-1,3],[0,3],[2,8],[-2,3],[-1,3],[-1,2],[-2,3],[-4,-5],[-9,-18],[-10,-11],[-1,-2],[-1,-4],[-1,-3],[-3,-3],[1,2],[-2,3],[-4,3],[-9,-1],[-3,3],[-2,11],[2,9],[0,9],[-2,8],[-4,6],[0,-6],[0,-4],[1,-3],[1,-3],[-1,-3],[0,-1],[-1,0],[-2,-1],[-5,10],[-1,12],[3,32],[0,16],[-1,7],[-1,5],[-3,1],[-2,-5],[-1,-8],[-2,-8],[3,-5],[1,-8],[0,-8],[-2,-8],[-4,15],[-1,15],[1,15],[-2,16],[-1,5],[-4,12],[-2,8],[-2,7],[-2,25],[-2,0],[0,-11],[1,-5],[1,-5],[-5,0],[-3,8],[-3,12],[-2,9],[-5,5],[-3,-1],[-1,-4],[3,-4],[0,-4],[-8,-12],[-4,-3],[-1,9],[-1,4],[-1,10],[-1,12],[-1,6],[-2,3],[0,-3],[-2,-11],[0,-3],[0,-6],[0,-4],[1,-3],[7,-32],[4,-7],[-3,-14],[-2,-5],[-3,-2],[2,10],[0,6],[-2,1],[-4,-5],[-1,-4],[1,-5],[0,-5],[-3,-2],[-2,1],[-1,3],[-1,4],[1,4],[-2,0],[1,12],[-3,6],[-4,-3],[-1,-15],[-4,8],[-1,6],[1,17],[-2,2],[-4,-3],[-3,-7],[-3,-7],[-1,0],[-4,39],[4,9],[2,7],[0,7],[-2,3],[-2,-2],[-2,-4],[-2,-6],[-2,-4],[0,8],[0,8],[-2,4],[-4,0],[1,6],[0,6],[-1,4],[0,5],[1,5],[4,12],[1,5],[-1,9],[-2,8],[-1,9],[4,16],[0,4],[-2,7],[0,1],[-8,36],[-3,5],[-4,-4],[0,12],[4,22],[1,13],[1,4],[8,17],[2,5],[3,13],[8,66],[5,19],[9,11],[4,8],[2,11],[2,7],[19,31],[10,10],[11,15],[6,7],[6,8],[2,10],[-3,8],[-5,0],[-13,-5],[-2,1],[-3,2],[-3,0],[-24,-38],[-44,-74],[-2,-2],[1,15],[3,10],[51,86],[30,31],[4,7],[25,32],[3,-7],[3,-8],[2,-9],[1,-9],[0,-6],[-1,-6],[0,-6],[2,-2],[5,1],[6,3],[5,4],[3,4],[7,12],[9,11],[3,7],[3,11],[2,-5],[16,28],[4,5],[8,2],[12,13],[6,5],[-5,2],[-13,-14],[-12,-7],[-22,-22],[-11,-6],[-6,-1],[-11,-13],[-7,-4],[-5,8],[10,27],[29,30],[45,45],[17,24],[5,4],[6,2],[35,30],[5,7],[9,15],[44,40],[44,47],[42,31],[19,5],[19,11],[18,6],[10,7],[9,9],[8,9],[5,18],[-6,11],[-12,5],[-10,3],[5,4],[6,-1],[12,-7],[18,-4],[5,-6],[3,-9],[0,-7],[-3,-6],[-3,-7],[-3,-8],[-2,-20],[-2,-10],[4,-7],[-1,-9],[-4,-8],[-5,-5],[6,-13],[1,-6],[-1,-5],[3,-2],[3,1],[2,4],[1,7],[1,7],[1,3],[3,3],[3,1],[23,-23],[20,-35],[0,-7],[-1,-32],[2,8],[3,3],[4,0],[4,-3],[-2,8],[-1,11],[1,10],[4,4],[0,3],[-5,2],[-5,6],[-13,25],[-4,11],[0,9],[9,7],[0,5],[0,6],[0,4],[2,4],[5,5],[3,4],[4,5],[25,15],[17,6],[16,15],[6,2],[11,-2],[5,2],[5,5],[1,6],[0,5],[1,3],[4,0],[7,0],[4,-3],[3,-4],[2,3],[3,10],[1,3],[2,0],[9,-4],[27,1],[10,6],[5,1],[6,-3],[3,-7],[3,-8],[3,-7],[3,20],[7,12],[11,6],[10,3],[-9,6],[-32,2],[-6,2],[-12,8],[-6,2],[-62,0],[-5,-1],[-4,-5],[-7,-10],[-2,-3],[-1,-4],[-2,-2],[-3,1],[-2,3],[-1,4],[0,4],[1,5],[-7,10],[-22,-4],[-11,2],[3,4],[1,0],[-7,7],[-11,1],[-22,-4],[-17,-8],[-9,-1],[-10,5],[0,-11],[-3,-2],[-3,4],[-4,2],[-3,-2],[-3,-3],[-3,-4],[-2,-4],[-3,3],[-10,5],[-3,4],[-1,4],[-3,3],[-32,9],[-12,-4],[-15,-11],[-9,-17],[2,-20],[-5,-1],[-5,-5],[-3,-6],[-4,-4],[-2,-2],[-1,1],[1,3],[-1,5],[-1,4],[2,4],[0,3],[-2,2],[-4,-1],[-1,1],[-9,8],[-10,3],[-10,-3],[-9,-12],[-2,14],[2,19],[4,18],[3,10],[14,16],[4,1],[7,5],[4,2],[-10,8],[36,31],[7,4],[5,8],[4,1],[1,17],[8,9],[12,8],[8,9],[8,15],[8,12],[2,1],[4,2],[2,1],[2,4],[3,8],[3,4],[-2,9],[-1,8],[2,5],[5,2],[4,3],[4,7],[2,8],[-1,7],[21,20],[4,-7],[-1,-6],[-5,-11],[-2,-3],[-2,-1],[-1,-1],[-1,-6],[1,-3],[1,-2],[0,-3],[-2,-6],[5,7],[4,4],[4,1],[6,0],[-1,6],[-3,2],[-3,1],[-4,0],[3,3],[3,5],[3,7],[1,5],[0,10],[-2,7],[-12,21],[-4,5],[-4,2],[-4,-3],[-1,-5],[2,-5],[6,0],[0,-4],[-9,-8],[-14,-33],[-7,-7],[-5,-4],[-2,-9],[-1,-9],[-2,-9],[-4,-4],[-5,0],[-5,3],[-4,4],[6,6],[5,14],[3,16],[2,14],[-2,5],[-7,9],[-3,4],[-1,9],[0,7],[1,17],[-4,-11],[-4,-3],[-3,4],[-16,41],[-5,9],[-6,8],[-3,4],[-1,6],[0,15],[0,6],[-2,6],[-4,9],[-6,10],[-6,7],[-5,-2],[16,-22],[3,-10],[-2,-9],[-1,-6],[1,-5],[3,-6],[7,-11],[1,-3],[3,-7],[1,-2],[4,-3],[3,-8],[4,-17],[3,-7],[6,-11],[2,-7],[-4,-21],[-7,-15],[-10,-13],[-8,-16],[3,-3],[4,-9],[3,-4],[-4,-2],[-6,3],[-4,-1],[-2,-5],[-3,-16],[-1,-3],[-5,-6],[-7,-27],[-4,-8],[-4,-1],[-2,4],[-1,5],[-3,5],[-3,1],[-18,-2],[-6,-4],[-6,-5],[-5,-7],[-14,-29],[-6,-3],[-6,-2],[-41,-23],[-36,-31],[-49,-52],[-8,-4],[-3,-4],[-2,-6],[-1,-6],[-1,-4],[-4,-3],[-17,-6],[-3,-2],[-8,-10],[-11,-6],[-9,-19],[-6,-5],[-2,2],[-6,8],[-3,2],[-3,-3],[-6,-11],[-8,-5],[-10,-11],[-5,-2],[-6,1],[-9,6],[-5,1],[-4,4],[-3,8],[-4,16],[-6,8],[-26,16],[28,35],[9,16],[1,5],[0,7],[0,13],[-1,6],[-1,5],[-1,3],[-1,-2],[-2,-7],[-11,-15],[-3,-14],[-5,-15],[0,-3],[0,-3],[-1,-3],[-1,-3],[-2,0],[-3,4],[-2,0],[-12,-5],[-6,-5],[-3,-6],[1,-2],[4,-14],[3,-6],[3,-4],[4,-4],[4,-2],[6,-1],[5,0],[5,-2],[3,-10],[-7,-3],[-9,-9],[-7,-12],[0,-9],[-13,-14],[-2,-4],[-2,-7],[-3,6],[-5,16],[-5,5],[-8,2],[-9,-2],[-5,-9],[7,-2],[9,2],[6,-3],[-3,-14],[-6,-7],[-17,-3],[-3,-8],[-1,-9],[-3,-1],[-3,1],[-4,-3],[-6,-11],[-4,-5],[-3,-2],[-4,-2],[-2,0],[-1,4],[0,8],[0,4],[1,2],[0,4],[-8,24],[-4,-4],[-4,-2],[-7,-2],[-1,-1],[-31,-33],[-9,-5],[-7,3],[2,4],[-2,2],[-2,2],[-2,-11],[-4,-6],[-6,-3],[-6,-1],[-2,4],[3,9],[1,10],[-5,6],[-1,-8],[-3,-3],[-3,0],[-4,-1],[-9,-13],[-5,-3],[-5,23],[-1,9],[4,4],[3,1],[7,3],[4,0],[-2,6],[-4,4],[-5,2],[-3,0],[-5,4],[-3,8],[-3,8],[-2,5],[-3,-1],[-4,-4],[-3,-6],[-1,-8],[-2,2],[-4,3],[-4,1],[-6,-15],[1,-5],[-2,-10],[-1,-13],[2,-12],[-7,4],[-5,9],[-11,27],[-2,6],[-1,7],[0,19],[-1,5],[-3,0],[-4,-4],[0,8],[-1,6],[-3,4],[-3,2],[0,-9],[0,-9],[2,-8],[2,-6]],[[34478,78461],[-3,-3],[-4,2],[-3,4],[-4,2],[-3,-1],[-3,-2],[0,5],[8,7],[9,3],[7,-1],[0,-5],[1,-4],[2,-2],[3,0],[-8,-13],[-2,8]],[[34966,78684],[-8,-32],[-3,-19],[1,-13],[-6,-16],[-18,-59],[-4,-5],[-4,-2],[-22,4],[-3,5],[3,7],[26,37],[11,32],[1,12],[-9,-3],[2,6],[16,30],[3,4],[-2,-12],[-2,-4],[4,-4],[2,11],[8,34],[3,4],[1,-4],[0,-13]],[[34465,78705],[-4,-12],[4,-11],[7,-8],[6,-5],[-7,-6],[-7,-1],[-8,1],[-23,8],[-7,6],[-9,0],[-3,4],[0,10],[7,7],[32,12],[8,0],[4,-5]],[[34973,78670],[1,7],[1,5],[1,4],[1,3],[1,11],[-1,13],[3,-4],[1,-5],[2,-12],[-1,-8],[0,-8],[-2,-7],[-3,-4],[0,-5],[1,-6],[0,-15],[2,-3],[1,-3],[1,-7],[-1,-7],[-4,-3],[3,-5],[-1,-6],[-2,-8],[0,-10],[-5,8],[0,9],[2,11],[1,12],[-1,-1],[-3,-2],[0,12],[2,34]],[[35120,79009],[6,10],[7,-4],[2,-8],[-6,-6],[4,-11],[-1,-8],[-4,-9],[-4,-13],[4,0],[1,0],[-9,-15],[-14,0],[-28,11],[-26,-4],[-3,1],[-15,6],[-2,7],[0,8],[-2,7],[-4,11],[-4,5],[-2,8],[-1,14],[3,5],[6,-7],[10,-16],[6,-4],[20,4],[6,-3],[12,-12],[7,-1],[8,4],[23,20]],[[34817,79764],[-3,0],[-3,-2],[-2,-3],[1,-5],[1,-6],[-1,-7],[-3,-6],[-1,-5],[-3,-1],[-6,3],[-6,7],[-1,13],[4,8],[11,8],[3,6],[3,6],[6,-3],[4,-7],[-4,-6]],[[34520,79821],[4,2],[15,-2],[0,-12],[-6,-12],[-8,-8],[-7,3],[-1,5],[0,9],[1,9],[2,6]],[[34561,79849],[2,-1],[0,-3],[0,-3],[-2,-1],[-5,-1],[-12,-5],[-8,-9],[-7,-1],[-6,2],[-3,6],[1,3],[4,9],[2,12],[2,3],[6,5],[6,0],[-1,-5],[-1,-3],[4,1],[3,-1],[2,-4],[-1,-7],[7,0],[2,0],[2,0],[2,3],[1,0]],[[34754,79817],[0,3],[-1,7],[-1,6],[-2,0],[4,8],[9,-3],[5,8],[4,-2],[7,0],[4,-3],[-3,-10],[-1,-9],[5,-4],[7,-2],[5,1],[11,7],[6,7],[2,8],[1,11],[3,8],[5,6],[5,1],[-3,-6],[-1,-2],[4,-4],[8,9],[8,13],[5,5],[-1,-6],[1,-1],[1,-3],[2,-12],[-1,-5],[-2,-6],[-2,-6],[0,-7],[-7,-7],[-10,-7],[-26,-11],[-5,-4],[-3,-4],[-2,-2],[-1,-5],[0,-8],[-1,-5],[-3,0],[-7,3],[-13,-6],[-7,-2],[-7,4],[5,7],[4,3],[4,2],[5,0],[2,2],[-2,2],[-3,3],[-5,3],[-2,4],[-3,9],[-1,1],[-4,-1],[-2,2]],[[34923,79829],[-4,7],[-2,16],[-1,19],[-2,15],[4,3],[7,-2],[4,3],[-2,1],[-2,3],[-2,3],[-1,5],[1,2],[1,2],[1,2],[1,2],[-2,0],[-3,0],[-1,0],[5,9],[7,-1],[7,-6],[6,-6],[-2,-4],[3,-12],[3,8],[0,8],[-1,7],[0,5],[4,5],[3,-1],[3,-2],[4,2],[-2,3],[-2,10],[11,0],[5,-2],[5,-10],[3,-5],[3,-4],[1,-1],[2,0],[2,-1],[0,-4],[0,-3],[-1,-2],[-1,-2],[0,-3],[3,-9],[4,-5],[5,-2],[6,0],[-3,-8],[-3,-1],[-9,5],[-2,-2],[-2,-4],[-3,-5],[-8,-3],[-3,-3],[-2,-4],[-3,-4],[-5,-2],[-11,-2],[-11,-7],[-3,-1],[-2,-1],[-8,-13],[-1,-1],[-2,2],[-2,1]],[[33513,80438],[-3,0],[-1,1],[0,3],[-3,6],[-2,11],[2,8],[5,2],[6,-7],[6,-24],[3,-4],[3,-15],[-1,-5],[-1,-1],[-2,-2],[-2,-2],[-3,-5],[-4,-5],[-3,0],[-2,8],[2,8],[8,27],[-3,3],[-2,-2],[-2,-3],[-1,-2]],[[34580,80557],[5,2],[7,-2],[4,-5],[-3,-5],[-2,-1],[0,-2],[-1,-1],[-1,0],[0,-2],[1,-3],[1,-2],[2,-1],[-9,-9],[-4,-6],[1,-5],[-5,-8],[-16,-13],[-2,6],[-2,5],[-3,1],[-2,-3],[-8,6],[-1,5],[7,17],[0,3],[-1,4],[0,5],[2,6],[2,3],[2,-3],[2,-5],[0,-5],[6,3],[13,9],[5,6]],[[34575,80656],[-2,-8],[-2,-4],[-3,-4],[-3,-6],[-2,-7],[1,-5],[3,-5],[3,-9],[-6,0],[-5,3],[-10,9],[3,7],[-1,5],[-5,11],[-2,7],[3,2],[7,1],[12,11],[5,1],[4,-9]],[[33778,80823],[-3,-4],[-13,-13],[-5,-3],[-25,8],[3,7],[5,7],[9,11],[6,1],[13,-1],[6,4],[0,-9],[1,-2],[0,-3],[1,-2],[2,-1]],[[35381,78616],[3,-3],[0,-6],[-3,-16],[-4,1],[-5,-3],[-9,-10],[9,-11],[1,-5],[-2,-8],[-3,-7],[-8,-12],[-2,-5],[-2,-9],[-4,-21],[-2,-7],[-4,-4],[-9,-2],[-4,-2],[2,-3],[3,-2],[3,0],[3,0],[-2,-6],[-4,-4],[-9,-5],[3,-9],[-1,-5],[-2,-4],[-2,-14],[-3,-10],[-1,-11],[-1,-4],[-2,-2],[0,-5],[-2,-19],[-2,-11],[-2,-8],[-4,-3],[-10,-2],[-5,-3],[14,-8],[5,0],[5,-3],[1,-5],[-3,-3],[-5,2],[1,-5],[1,-5],[2,-3],[2,-3],[0,-4],[-10,-11],[-1,-7],[3,-10],[-4,-3],[0,-4],[1,-4],[2,-1],[1,-4],[-8,-23],[-1,-13],[-3,-13],[-2,-13],[1,-12],[-2,-6],[0,-8],[-1,-7],[-6,-5],[-3,-10],[-2,-4],[-8,-3],[0,-1],[-6,-10],[-10,-41],[-7,-10],[-14,-12],[-10,-2],[-4,1],[-5,5],[-6,11],[-6,17],[-4,19],[1,14],[-5,-3],[-5,-8],[-7,-15],[-2,-1],[-1,5],[-2,6],[-1,3],[-3,-2],[-4,-5],[-5,-13],[2,9],[8,24],[-5,-2],[-5,-7],[-7,-15],[-5,-6],[-2,-4],[-2,-10],[-3,-3],[-4,-2],[-2,-2],[-11,-14],[-10,-6],[-9,4],[-10,18],[-1,4],[-2,14],[0,5],[0,10],[5,17],[3,9],[1,5],[0,7],[-1,6],[-1,7],[3,9],[10,20],[3,11],[2,8],[13,5],[4,9],[-4,-2],[-9,-3],[-4,-5],[-18,-42],[-7,-9],[-2,-2],[-1,3],[2,16],[1,6],[2,6],[2,6],[2,6],[2,16],[2,6],[14,13],[8,10],[0,12],[-3,-7],[-3,-5],[-4,-2],[-3,1],[1,6],[0,5],[0,5],[-1,5],[-2,0],[-1,-4],[-3,-11],[-1,-2],[-2,1],[-3,1],[-1,3],[0,6],[4,11],[-3,3],[-9,-4],[5,17],[5,13],[8,14],[2,8],[-3,5],[5,10],[14,15],[4,7],[-5,0],[-2,5],[-1,7],[2,8],[-4,-1],[-6,-6],[-4,-1],[-1,4],[3,18],[1,7],[-10,-35],[-6,-16],[-9,-6],[4,22],[2,6],[-4,-2],[-2,-3],[-2,-5],[-2,-6],[-4,-22],[-1,-1],[-4,-3],[-2,-4],[2,-5],[-2,-5],[-6,-9],[-3,-1],[-6,-1],[-3,-2],[-2,-4],[-12,-41],[-2,-3],[-10,-6],[-2,-3],[-1,-3],[-1,-12],[-2,-5],[-2,-3],[-6,-7],[-6,-4],[-2,-4],[0,-6],[-2,-6],[-2,-3],[-10,-3],[-3,-3],[-7,-13],[-4,-5],[-2,-3],[-3,-1],[-4,0],[-2,0],[-3,-3],[-2,0],[-1,1],[-3,5],[-1,1],[-15,5],[-4,3],[-1,1],[0,3],[-2,18],[0,13],[1,13],[2,12],[6,22],[1,5],[1,13],[2,6],[10,22],[4,10],[16,71],[5,13],[1,5],[1,8],[2,6],[2,3],[14,-4],[6,2],[-4,4],[-7,5],[-5,7],[-2,6],[-1,5],[0,14],[1,8],[2,1],[5,-3],[0,-1],[-1,-2],[-1,-1],[4,-3],[7,1],[4,5],[0,9],[8,7],[3,5],[2,8],[-7,0],[-4,1],[1,6],[5,11],[5,8],[6,5],[13,6],[0,4],[-6,-1],[-2,1],[-3,4],[-1,3],[1,1],[-15,-8],[-2,2],[-1,5],[-2,3],[-1,4],[1,4],[3,7],[1,4],[0,5],[2,9],[3,8],[0,6],[-5,4],[4,26],[-1,12],[-3,11],[-1,0],[-3,-5],[-1,1],[-1,2],[-1,4],[-1,3],[-2,6],[-1,8],[0,9],[1,6],[-2,4],[-6,37],[0,3],[1,2],[0,3],[-1,3],[-1,2],[-2,-2],[-2,-2],[-1,0],[-3,7],[-2,14],[-1,8],[2,8],[-10,-11],[-5,-1],[-4,8],[0,4],[1,3],[2,1],[1,0],[-1,3],[-1,5],[-1,6],[-2,3],[-1,4],[0,7],[-3,-7],[-2,-15],[-3,-6],[-4,0],[-5,5],[-6,11],[-1,3],[0,7],[-1,2],[-2,2],[-7,3],[-17,12],[3,-10],[6,-3],[6,-2],[4,-5],[1,-10],[-1,-12],[-8,-36],[-7,-25],[-8,-19],[-9,2],[-4,5],[-1,-8],[2,-17],[-1,-12],[-7,-17],[-1,-8],[-2,-8],[-9,-19],[-5,-17],[-4,-8],[-9,-10],[1,-4],[0,-1],[1,-2],[2,-2],[2,9],[2,-8],[2,-9],[2,-7],[4,-5],[-10,-13],[-4,-3],[2,8],[0,7],[-2,3],[-4,-2],[-3,-5],[-5,-16],[-3,-8],[2,-2],[2,0],[2,2],[1,5],[2,-5],[-9,-12],[-5,-3],[-1,4],[-14,-14],[-8,-5],[-2,10],[1,5],[10,11],[38,95],[7,27],[0,2],[-1,3],[-5,-10],[-11,-26],[-8,-11],[-11,-37],[-17,-34],[-15,-15],[-2,-6],[-2,3],[-1,3],[-1,4],[0,6],[-3,-2],[-2,-4],[-2,-4],[-2,-6],[2,-1],[0,-2],[1,-2],[1,-3],[-4,-3],[-3,0],[-2,3],[-1,8],[-4,-5],[-3,-2],[-3,2],[-1,10],[-7,-6],[-3,-2],[-4,-1],[8,15],[3,10],[-1,8],[-4,-1],[-3,-9],[-4,-19],[-4,5],[0,8],[2,8],[3,8],[-4,-3],[-3,-7],[-5,-16],[-4,-8],[-8,-12],[-4,-7],[-1,-5],[0,-4],[0,-5],[-3,-4],[-8,-10],[-2,-1],[-4,-3],[-4,-9],[-7,-16],[-3,-12],[1,-4],[4,-2],[2,-8],[-1,-6],[-3,-7],[-3,-6],[-4,-4],[-6,1],[0,6],[2,10],[-1,10],[-5,3],[-5,-5],[-5,-9],[-3,-8],[11,1],[2,-1],[2,-6],[-1,-6],[-1,-6],[0,-6],[5,-20],[-1,-8],[-8,0],[1,-3],[1,-7],[0,-3],[-11,-7],[-3,-6],[-1,-13],[-1,-2],[-3,2],[-2,4],[-2,2],[0,7],[2,14],[0,4],[-2,4],[-3,0],[-2,-3],[-1,-4],[0,-4],[2,-14],[1,-6],[-1,-13],[-2,-12],[-3,-9],[-6,-4],[1,-13],[-6,-10],[-9,-7],[-8,-3],[-13,4],[-3,0],[0,-8],[3,-7],[0,-5],[-7,-4],[-9,-1],[-10,5],[-6,13],[3,20],[-13,-7],[-4,1],[-1,13],[-2,-5],[0,-5],[-1,-6],[-1,-4],[-2,-5],[-1,1],[-1,3],[-1,1],[-4,-1],[-2,-1],[-2,-2],[-2,-3],[-5,-9],[-10,-8],[-5,-3],[-4,-1],[-9,5],[-4,-1],[-3,-8],[-3,5],[-7,3],[-13,0],[-8,1],[-15,10],[-12,10],[-5,8],[-4,9],[-1,8],[2,14],[4,11],[11,18],[10,24],[5,9],[7,4],[7,2],[10,10],[6,4],[7,-1],[15,-7],[4,2],[5,5],[19,5],[16,11],[8,1],[3,3],[2,6],[3,8],[1,5],[1,5],[2,2],[3,1],[3,3],[10,16],[7,6],[8,11],[6,5],[5,7],[4,11],[0,6],[0,13],[0,6],[1,7],[4,13],[1,6],[0,14],[3,9],[20,29],[5,5],[10,3],[6,6],[3,1],[10,0],[4,0],[4,3],[8,7],[5,3],[8,0],[2,2],[-1,11],[3,3],[10,0],[4,1],[11,14],[2,7],[1,10],[-6,-9],[-2,-1],[-2,6],[3,4],[4,11],[3,6],[3,3],[14,11],[8,3],[3,3],[5,7],[3,3],[4,2],[-6,3],[-10,-3],[-5,0],[2,8],[-17,-24],[-18,-15],[-20,-8],[-30,-4],[-5,2],[3,10],[9,14],[4,9],[1,10],[2,7],[19,39],[3,10],[1,11],[-13,-22],[-20,-54],[-13,-22],[3,-13],[-4,-9],[-7,-1],[-5,11],[0,7],[2,11],[4,19],[-5,-8],[-6,-6],[-7,-2],[-11,11],[-7,3],[-14,2],[-1,1],[-1,1],[-2,2],[-2,0],[0,-1],[0,-3],[-1,-3],[-2,-2],[-6,-1],[0,2],[0,6],[-1,3],[-1,2],[-1,1],[-1,2],[0,3],[1,2],[1,1],[0,2],[2,3],[3,4],[1,3],[-4,4],[1,3],[1,5],[-3,0],[-2,-1],[-3,-3],[-2,-4],[2,-2],[1,-3],[1,-3],[-1,-2],[-3,-2],[-2,-1],[-1,3],[-2,6],[-2,4],[-3,1],[-1,-3],[1,-19],[-1,-6],[-3,-7],[-6,-12],[-2,-8],[3,-6],[4,1],[3,7],[5,2],[6,-10],[-9,-13],[-1,-4],[2,-2],[9,6],[0,-4],[-3,-3],[0,-3],[1,-3],[1,-3],[-6,-20],[4,-8],[-1,-11],[-4,-11],[-5,-7],[-6,-4],[-17,0],[-1,-2],[-8,-10],[-2,-6],[-4,-15],[-2,-4],[-4,-2],[-1,4],[1,11],[-1,9],[1,4],[2,3],[0,4],[-6,-2],[-9,-9],[-6,-1],[2,4],[4,4],[2,4],[7,25],[2,4],[4,3],[-3,9],[-5,9],[-5,2],[-4,-11],[2,1],[2,0],[1,-1],[3,0],[-2,-5],[-3,-7],[-4,-6],[-3,-3],[-3,2],[-3,3],[-3,4],[-4,0],[2,-8],[0,-2],[2,-3],[-5,-5],[-5,-5],[-6,-4],[-5,-2],[3,11],[0,6],[-1,3],[-1,7],[1,7],[2,7],[2,8],[-5,-6],[-5,-10],[-2,-12],[2,-9],[-5,-10],[-4,2],[-5,5],[-5,3],[-4,-3],[-6,-7],[-4,-8],[-3,-6],[0,12],[7,12],[16,20],[18,36],[6,9],[-3,-1],[-6,-6],[-3,-1],[-2,-3],[-3,-6],[-2,-2],[0,7],[-5,-1],[-4,-5],[-8,-14],[-4,4],[-6,-5],[-6,-8],[-4,-4],[-6,-1],[-13,-6],[-24,-20],[-4,1],[-12,14],[-2,7],[5,10],[5,3],[24,6],[30,19],[3,0],[3,-1],[2,1],[1,2],[1,2],[1,3],[5,3],[5,8],[3,2],[6,1],[6,4],[6,5],[13,16],[5,3],[7,2],[19,14],[-6,3],[-8,-2],[-15,-9],[-22,-23],[-8,-2],[-7,4],[-8,7],[-5,11],[-1,15],[4,9],[21,23],[-2,3],[-1,3],[-1,2],[1,4],[5,8],[1,3],[0,11],[1,2],[3,1],[0,4],[-6,8],[2,11],[6,11],[6,7],[-6,5],[3,10],[7,10],[5,7],[-4,13],[-3,5],[-4,2],[2,-15],[-3,-6],[-6,-5],[-6,-10],[3,-5],[-1,-5],[-4,-10],[-3,-16],[-1,-15],[-3,-12],[-7,-8],[-23,-10],[-6,-5],[-5,-7],[-12,-21],[-2,-3],[-4,-1],[-8,1],[-3,3],[4,4],[0,4],[-2,5],[3,10],[6,11],[5,11],[-10,-14],[-3,2],[-4,12],[-6,27],[-4,9],[-1,-9],[2,-9],[3,-10],[2,-10],[-1,-13],[-2,-8],[-9,-14],[4,0],[2,-3],[2,-4],[2,-5],[-3,-6],[-4,-2],[-4,-1],[-4,-3],[4,-3],[1,-1],[-1,-3],[0,-2],[-1,-2],[-1,-2],[7,-8],[-2,-3],[-4,-4],[-4,0],[-1,6],[-1,5],[-3,4],[-2,0],[-2,-5],[-2,-9],[-6,-3],[-13,1],[1,10],[0,12],[0,12],[3,7],[-4,5],[-1,8],[-1,19],[-1,-8],[-1,-10],[-1,-8],[-4,-2],[0,-4],[6,-7],[1,-15],[-3,-16],[-4,-10],[-7,-5],[-8,-1],[-21,3],[-9,5],[-5,1],[-14,-3],[-30,6],[-7,-3],[4,-6],[9,-7],[4,-7],[-7,-4],[-2,-2],[-2,0],[-9,6],[-3,4],[-7,18],[-2,7],[-2,-4],[-2,-5],[4,-6],[2,-9],[4,-9],[7,-4],[0,-4],[-5,-4],[-15,-16],[-4,-2],[-3,5],[-2,0],[-2,-2],[-2,-1],[-7,-1],[-2,3],[2,10],[-6,-5],[-6,1],[-7,6],[-5,8],[-6,7],[-7,2],[-38,-11],[-4,1],[-3,2],[-4,3],[-3,4],[1,3],[5,6],[1,6],[-5,13],[-2,3],[-7,-23],[-3,-2],[-4,1],[-6,3],[-4,-1],[-9,-7],[-7,-3],[-3,2],[-3,5],[-2,8],[1,6],[2,4],[1,5],[-1,5],[-2,1],[-3,-3],[-5,-2],[-2,-3],[-2,-1],[-2,1],[-5,3],[-3,1],[-24,-3],[-8,3],[0,4],[1,2],[0,2],[-4,-2],[-3,-3],[-3,-4],[-4,-6],[-13,-14],[-5,1],[-3,4],[-3,14],[-4,4],[-11,8],[-4,1],[-4,-3],[-2,-7],[0,-8],[-3,-5],[-5,9],[-1,3],[-2,-1],[-3,-4],[-2,0],[-4,5],[-2,5],[-3,4],[-5,2],[-4,0],[-11,-3],[4,17],[3,7],[3,4],[-9,0],[-3,-2],[-1,-3],[-1,-4],[-2,-3],[-4,-3],[-14,3],[-1,3],[-5,7],[-4,2],[-5,-13],[-4,-1],[-3,4],[4,6],[0,4],[-8,-2],[-25,-13],[-7,-7],[-4,-3],[-4,2],[-10,10],[-4,-1],[-2,-5],[-8,-11],[-3,-3],[-4,4],[0,9],[2,8],[2,4],[1,3],[6,23],[3,5],[4,4],[4,4],[4,1],[-17,-1],[-8,-6],[-6,-13],[-4,-25],[-4,-13],[-7,-10],[-2,0],[-5,5],[-5,4],[-5,0],[-6,-6],[-2,7],[-2,5],[-2,2],[-3,-1],[4,-8],[-2,-3],[-10,-2],[-2,-4],[-7,-9],[-7,-5],[-3,8],[-2,1],[-16,-15],[-18,-3],[-42,3],[-9,-6],[-3,-6],[-2,0],[-2,3],[-3,1],[-3,-2],[-6,-5],[-3,-1],[-22,-8],[-10,0],[-5,2],[-7,8],[-4,0],[-3,-2],[-3,0],[-4,5],[-2,7],[-2,6],[-5,3],[-4,0],[-4,2],[-2,5],[2,9],[-3,15],[1,22],[4,21],[3,14],[-8,2],[-4,7],[-1,12],[0,14],[-2,3],[-6,6],[-2,3],[0,6],[-1,4],[-8,15],[-1,4],[-1,6],[1,7],[2,4],[3,3],[2,4],[3,2],[3,1],[6,-1],[4,2],[2,5],[1,7],[2,6],[17,30],[20,26],[46,38],[9,11],[17,34],[15,10],[4,7],[7,15],[5,7],[16,17],[5,7],[11,23],[1,5],[1,12],[2,6],[3,2],[6,2],[2,2],[8,16],[8,12],[10,8],[11,2],[0,-4],[-8,-6],[-8,-4],[-7,-6],[-7,-12],[5,1],[14,11],[13,6],[4,2],[4,7],[7,18],[4,8],[4,2],[18,8],[9,1],[5,1],[5,4],[-1,4],[-4,3],[-6,1],[-18,-5],[-10,-6],[-6,-9],[-4,8],[-6,1],[-14,-5],[-6,3],[-9,15],[-6,6],[-30,4],[-6,-1],[-31,-16],[-28,-5],[-26,2],[-13,-3],[-44,-25],[-7,0],[1,4],[3,7],[2,5],[2,8],[-1,6],[3,10],[5,9],[26,32],[40,39],[46,57],[10,5],[-6,-12],[-7,-14],[-7,-10],[-8,-4],[-5,-6],[-9,-14],[-8,-16],[-3,-13],[0,-8],[2,-5],[7,-7],[8,-6],[0,-4],[0,-13],[2,-2],[4,6],[6,13],[2,6],[0,7],[-1,17],[2,0],[1,-17],[0,-6],[1,-6],[4,-5],[3,-5],[5,-3],[8,-2],[9,1],[5,2],[8,20],[2,25],[0,25],[3,24],[12,29],[4,21],[5,10],[10,17],[2,5],[1,4],[3,11],[2,15],[2,7],[2,2],[3,45],[13,21],[3,9],[7,35],[6,12],[8,8],[2,1],[4,-4],[0,-8],[-2,-9],[-5,-4],[8,0],[0,-4],[-4,-5],[-2,-6],[-1,-7],[3,-6],[4,-1],[10,7],[4,1],[22,0],[11,-4],[8,-12],[13,-30],[8,-10],[42,-10],[10,6],[-7,6],[-28,0],[-10,8],[-4,7],[-10,11],[-3,6],[-5,22],[-2,8],[-1,4],[-1,7],[1,12],[2,5],[5,0],[14,-4],[16,5],[19,-6],[6,2],[3,5],[14,27],[-2,5],[-10,-16],[-6,-6],[-7,-2],[-8,2],[0,6],[5,7],[7,4],[0,5],[-27,-21],[-16,-6],[-8,14],[3,7],[23,-2],[7,5],[7,10],[11,25],[-6,-3],[-11,-9],[-6,-4],[-7,-1],[-29,6],[-15,9],[-6,6],[-4,9],[-2,10],[0,11],[2,40],[5,23],[7,19],[13,25],[13,18],[9,7],[10,16],[6,5],[10,-1],[7,-7],[6,-10],[2,-13],[0,-15],[1,-15],[3,-12],[7,-5],[-7,26],[0,11],[7,8],[8,0],[7,-7],[8,-9],[8,-8],[7,-3],[9,-1],[1,2],[-4,6],[-23,22],[-6,12],[-1,19],[-3,-6],[-3,-8],[-3,-6],[-5,-1],[-1,3],[-2,6],[-2,6],[0,4],[-1,5],[-3,5],[-6,8],[1,2],[0,3],[1,1],[0,3],[-7,6],[-2,18],[1,21],[2,15],[8,28],[4,9],[2,3],[5,6],[2,3],[1,4],[0,6],[1,5],[2,5],[0,7],[7,17],[4,20],[10,19],[4,10],[8,36],[9,22],[11,39],[14,34],[2,9],[0,13],[2,12],[7,26],[9,24],[3,13],[1,14],[0,1],[-1,1],[0,2],[-1,4],[1,2],[1,1],[2,1],[1,9],[5,21],[7,14],[1,6],[1,10],[1,4],[4,6],[11,16],[5,18],[3,18],[6,16],[10,6],[22,-10],[11,-2],[10,10],[2,7],[-3,2],[-20,-7],[-5,0],[-5,4],[0,4],[2,0],[3,0],[2,2],[3,2],[-4,8],[-13,-1],[-3,11],[-3,11],[-8,3],[-9,0],[-4,4],[0,6],[3,4],[8,4],[2,2],[2,1],[2,-1],[0,-6],[2,-1],[12,4],[13,8],[7,10],[2,2],[3,0],[8,-1],[3,3],[5,8],[13,10],[6,8],[2,5],[3,11],[3,5],[7,9],[6,9],[2,4],[3,4],[1,8],[0,11],[2,1],[3,-3],[4,1],[4,4],[-2,6],[-2,3],[-6,4],[-3,-5],[-2,2],[-2,4],[-2,5],[3,4],[6,6],[-4,4],[-11,-1],[-5,5],[-1,3],[-2,10],[-1,3],[-3,4],[-2,3],[-3,1],[-4,0],[6,4],[16,-4],[2,-5],[3,-9],[4,-6],[6,6],[11,7],[5,5],[-1,11],[-5,4],[-11,2],[-5,5],[11,0],[10,4],[8,10],[3,21],[3,3],[12,7],[4,4],[2,7],[0,7],[-6,19],[8,8],[2,-3],[2,-1],[6,0],[-3,7],[-3,6],[-8,11],[3,5],[5,7],[2,4],[4,17],[2,6],[5,8],[15,18],[48,37],[14,5],[14,2],[4,4],[12,16],[5,5],[22,9],[3,5],[3,7],[7,5],[24,11],[5,4],[7,10],[12,12],[4,2],[31,30],[2,-6],[5,-3],[4,2],[4,4],[4,1],[-15,-31],[-1,-11],[11,2],[-6,-17],[-7,-16],[4,-3],[5,0],[9,3],[20,0],[9,-4],[11,-8],[10,-4],[10,4],[-5,4],[-10,3],[-5,5],[-1,8],[0,8],[-1,6],[-14,10],[2,13],[5,5],[-4,-17],[7,6],[12,20],[7,6],[-3,-7],[-1,-3],[0,-3],[2,-2],[1,-3],[2,-5],[5,-3],[6,0],[4,2],[-1,2],[-1,1],[-1,0],[-1,1],[16,14],[5,2],[10,-6],[0,-9],[2,1],[1,4],[1,2],[10,-2],[5,-4],[2,-10],[-4,-7],[-6,2],[-5,4],[-4,1],[2,-5],[7,-9],[2,0],[0,-7],[-2,-7],[-2,-6],[-3,-3],[-8,5],[-14,0],[4,-7],[8,-8],[3,-5],[8,3],[-1,-10],[-4,-14],[0,-9],[-3,-7],[-3,-14],[-2,-7],[-4,-5],[-3,2],[-2,5],[-7,6],[-2,0],[-1,-6],[-1,-8],[1,-4],[3,-2],[1,-1],[-1,-3],[-2,-3],[-2,-1],[-6,0],[-2,1],[-2,3],[-1,-6],[1,-7],[1,-7],[2,-4],[-6,-3],[-6,6],[-6,9],[-7,4],[-33,9],[-17,-5],[-6,0],[-2,2],[-2,2],[-6,8],[-3,3],[-5,1],[2,-3],[2,-9],[-8,-2],[-6,7],[-6,9],[-7,6],[0,-5],[0,-3],[-1,-4],[0,-4],[-3,6],[-3,2],[-4,1],[-4,-1],[0,-4],[1,-3],[-2,-14],[-1,-7],[5,-1],[13,-4],[3,-3],[2,-18],[0,-2],[-1,-4],[-3,-1],[-2,-1],[-3,1],[2,-4],[7,-8],[-4,-2],[-9,-2],[-4,-4],[10,-7],[6,-2],[1,-3],[1,-4],[1,-4],[7,-18],[5,-6],[5,-1],[-2,10],[-2,2],[1,1],[0,3],[0,4],[-1,5],[14,1],[6,5],[6,8],[5,4],[21,-6],[3,-2],[3,-4],[6,-8],[3,-7],[0,-3],[-2,-1],[-2,-4],[-1,-3],[-1,-7],[1,-7],[4,-3],[1,-3],[-1,-8],[-3,-8],[-2,-5],[2,-8],[-3,-8],[-5,-6],[-5,-3],[-2,3],[-2,4],[-3,2],[-1,-6],[1,-6],[3,-4],[3,-3],[3,-1],[-10,-17],[-2,-6],[-1,-6],[-2,-5],[-2,-4],[0,-3],[2,-4],[1,-5],[2,-12],[-4,-3],[-2,5],[-1,7],[-2,4],[-3,-3],[-2,-9],[-2,-9],[1,-8],[2,3],[2,1],[1,-1],[3,-3],[-4,-3],[-3,-5],[-2,-7],[-1,-9],[-4,20],[-3,0],[-6,-8],[-4,-8],[-6,-21],[-13,-28],[-6,-10],[-1,-2],[-5,-6],[-4,-13],[-4,-9],[-7,4],[2,4],[1,5],[1,5],[0,6],[-5,-6],[-3,2],[-5,12],[3,13],[1,3],[-3,17],[2,15],[4,15],[2,14],[-7,-1],[-5,-6],[-4,-8],[-3,-13],[6,-1],[2,-8],[0,-12],[-2,-12],[-1,-3],[-5,-11],[1,-3],[3,-5],[0,-2],[0,-3],[-2,-6],[0,-3],[1,-12],[1,-8],[3,-7],[5,-6],[7,-1],[3,-2],[-2,-7],[-7,-15],[-3,-3],[-1,-2],[-13,-21],[-9,-9],[-4,-8],[-2,-22],[-2,-3],[-20,0],[0,-5],[7,-3],[6,-1],[2,-4],[-4,-11],[-9,-17],[-10,-12],[-5,-8],[-8,-22],[-4,-6],[-5,-1],[-2,4],[-2,5],[-3,4],[-13,-4],[5,-10],[9,-2],[6,-5],[-1,-20],[-3,-14],[-5,-16],[-6,-14],[-7,-8],[1,-13],[-5,-13],[-23,-36],[-3,-3],[-4,0],[-4,2],[-4,1],[-4,-3],[7,-7],[2,-6],[-1,-6],[-6,-10],[-13,-18],[-4,-6],[-3,-9],[-10,-45],[-2,-9],[0,-10],[4,8],[5,10],[6,6],[2,-6],[-1,-10],[-5,-22],[0,-7],[0,-3],[-4,-3],[-2,-3],[-1,-2],[-1,-6],[1,-3],[1,-2],[1,-2],[-2,-7],[-3,-7],[-4,-6],[-3,-4],[-22,-18],[-6,-10],[5,-3],[16,-2],[4,-2],[1,-5],[3,-1],[4,0],[1,-2],[0,-19],[-1,-3],[0,-6],[-8,-35],[-3,-18],[-1,-6],[-8,-20],[5,5],[5,8],[7,20],[15,31],[5,20],[35,72],[7,9],[1,3],[1,5],[2,4],[3,4],[8,6],[9,17],[5,3],[12,-31],[2,4],[-1,11],[-2,9],[1,10],[6,9],[2,-4],[9,-8],[-2,13],[-3,8],[-1,8],[13,42],[6,13],[7,5],[6,7],[8,28],[18,20],[4,5],[4,4],[4,1],[5,0],[-1,-3],[-1,-6],[0,-3],[4,0],[4,-3],[0,-3],[-4,-2],[3,-7],[4,-4],[5,-6],[1,-8],[-2,-7],[-8,-14],[-3,-7],[-6,-27],[-2,-9],[-3,-8],[-12,-21],[10,5],[9,13],[14,33],[4,4],[13,8],[4,0],[1,-9],[-3,-9],[-9,-13],[9,-4],[6,13],[3,19],[3,9],[10,-2],[9,-4],[8,-9],[6,-14],[-2,0],[2,-6],[11,-15],[1,-1],[2,1],[2,1],[2,-2],[1,-4],[1,-4],[1,-2],[6,-4],[6,0],[3,2],[3,4],[3,6],[2,4],[-2,5],[7,5],[15,-2],[8,1],[3,2],[22,22],[0,-4],[6,-17],[2,-10],[0,-10],[-4,-9],[-5,-6],[-6,-4],[-6,-1],[-10,-6],[-20,-25],[-12,-6],[-7,-16],[-26,-12],[-42,-36],[-3,-1],[-3,3],[-3,4],[-2,1],[-4,-8],[3,-8],[-5,-7],[-13,-9],[2,-9],[-8,-12],[-17,-19],[-2,-5],[-2,-5],[-1,-8],[-1,-9],[2,-7],[4,7],[8,18],[7,13],[16,21],[20,17],[3,2],[5,0],[4,2],[4,3],[4,3],[1,-4],[0,-1],[1,-3],[-5,-3],[-10,-7],[-5,-2],[0,-4],[5,0],[5,3],[4,3],[4,6],[1,-6],[5,0],[11,2],[-1,-4],[-2,-4],[-2,-3],[-2,-1],[-2,-2],[-1,-5],[-1,-5],[-1,-5],[-3,-5],[-14,-15],[3,-6],[4,-3],[10,1],[-6,-20],[-11,-15],[-12,-10],[-12,-4],[-3,-2],[-5,-8],[-2,-2],[-4,-1],[-1,-2],[0,-5],[-2,-6],[-9,-16],[-3,-8],[2,0],[6,6],[11,4],[19,23],[11,9],[25,12],[12,1],[13,-5],[-2,-9],[-2,-3],[6,1],[2,-1],[2,-2],[2,-1],[4,-3],[3,-4],[-3,-2],[-3,1],[-2,1],[-2,0],[-3,-2],[0,-1],[-1,-4],[-3,-4],[-2,-3],[6,-2],[9,3],[15,11],[-1,-8],[-3,-11],[-1,-9],[5,-1],[2,1],[0,-5],[-2,-5],[0,-7],[2,-6],[4,-2],[4,4],[2,8],[1,8],[2,7],[12,26],[8,10],[9,2],[-8,-25],[-4,-15],[1,-8],[-2,-7],[-1,-7],[0,-8],[1,-7],[7,12],[3,8],[1,7],[1,9],[1,7],[3,5],[5,1],[-1,2],[0,2],[0,2],[-1,2],[2,6],[2,6],[3,-11],[3,3],[3,9],[2,7],[5,4],[16,4],[-2,-8],[4,2],[2,2],[2,-4],[-17,-30],[-6,-7],[0,-3],[9,4],[16,16],[7,-4],[-4,-5],[-18,-34],[-10,-10],[-4,-8],[7,5],[8,3],[5,-4],[-3,-16],[5,10],[5,17],[5,13],[4,1],[-4,-9],[5,-1],[7,8],[0,-7],[-2,-11],[-4,-3],[-4,-2],[-5,-4],[2,-4],[2,-6],[2,-7],[1,-7],[2,1],[1,1],[1,2],[-2,8],[1,6],[2,4],[9,5],[4,7],[2,7],[2,3],[0,3],[-8,18],[-2,7],[0,9],[0,10],[2,6],[-14,33],[8,0],[4,3],[4,5],[8,-7],[3,-4],[-4,-5],[2,-4],[2,-3],[3,-1],[3,-1],[-1,4],[-2,9],[-1,4],[5,3],[5,4],[6,1],[5,-5],[-4,0],[0,-3],[3,-5],[3,-8],[1,-8],[1,-10],[-2,-10],[-3,-6],[-5,-6],[-4,-9],[3,-7],[-3,-10],[-4,-6],[-3,8],[-4,-9],[-4,-13],[-1,-14],[3,-16],[0,-24],[-1,-7],[-3,-6],[-3,-3],[-6,-3],[-8,-7],[-3,-5],[-3,-7],[-1,-6],[-3,-6],[-10,-12],[-1,-5],[2,-2],[8,0],[3,-2],[-5,-20],[6,0],[2,-5],[0,-8],[-3,-8],[-4,-7],[-8,-9],[-5,-8],[4,2],[10,11],[4,3],[4,1],[8,-1],[5,4],[21,25],[0,4],[-7,-2],[-14,-13],[-5,1],[-3,12],[1,14],[4,13],[4,7],[0,5],[-8,-4],[-1,-1],[0,6],[2,6],[2,4],[3,1],[4,2],[5,4],[9,10],[40,33],[-2,4],[2,4],[-6,15],[-1,8],[-1,9],[5,-7],[6,-9],[4,-4],[4,12],[5,-30],[1,-9],[-2,-9],[-4,-8],[-9,-13],[3,-1],[5,3],[5,7],[4,7],[7,21],[4,3],[7,1],[1,-2],[0,-5],[1,-4],[4,-2],[2,2],[3,3],[2,5],[1,5],[2,19],[-1,3],[-5,2],[-1,3],[0,7],[1,8],[2,6],[3,6],[3,6],[2,3],[4,-1],[1,-4],[-1,-12],[0,-35],[1,-5],[-1,-6],[1,-11],[4,-7],[7,9],[2,6],[1,4],[0,11],[0,7],[2,6],[2,4],[3,1],[-1,-5],[0,-5],[0,-6],[1,-4],[3,-1],[2,4],[1,9],[2,5],[2,7],[2,4],[2,3],[5,3],[2,2],[2,3],[1,4],[3,10],[1,1],[1,0],[1,1],[1,4],[-1,4],[0,3],[-1,-2],[4,10],[14,25],[7,16],[4,8],[4,3],[6,1],[11,6],[5,1],[2,-3],[-14,-20],[-1,-3],[-2,-17],[-1,-3],[-7,-15],[6,8],[8,7],[9,4],[6,-3],[-4,-7],[-3,-7],[-1,-8],[4,-6],[-8,-12],[-2,-3],[-1,-12],[-1,-7],[2,-3],[6,-4],[1,-10],[-2,-12],[-6,-24],[0,-6],[2,1],[1,8],[3,10],[6,8],[7,6],[5,7],[-5,9],[2,12],[5,12],[5,18],[7,4],[13,1],[-1,-9],[4,-1],[9,7],[0,-10],[3,-1],[8,6],[-2,-8],[-3,-7],[-1,-8],[2,-9],[3,8],[1,8],[2,7],[4,6],[4,-11],[1,-6],[1,0],[4,10],[3,11],[1,11],[2,9],[15,7],[1,-1],[1,-4],[3,3],[2,5],[0,2],[3,3],[1,2],[1,0],[3,-7],[3,-3],[7,-1],[3,-2],[-4,-1],[-12,-11],[7,-4],[18,10],[8,2],[4,-4],[10,-14],[4,-3],[4,-1],[11,-7],[3,-4],[6,2],[5,-4],[8,-10],[13,-6],[4,-4],[-4,-6],[6,-10],[9,-3],[8,-2],[4,-3],[0,-5],[1,-2],[1,-1],[2,-2],[1,-1],[3,1],[1,0],[1,-2],[-1,-5],[0,-2],[4,-2],[3,-2],[5,0],[4,4],[4,-11],[2,-3],[3,-2],[0,-4],[1,-6],[-10,-14],[0,-12],[-3,-1],[-5,-2],[-3,-1],[-3,-3],[0,-5],[2,-9],[-1,-4],[-5,-10],[-1,-4],[-2,-4],[-3,1],[-8,5],[-1,-2],[-2,-4],[-1,-5],[-1,-5],[2,-2],[4,-2],[3,-2],[3,-7],[0,-12],[-2,-9],[-6,-5],[-51,-10],[-12,4],[-1,-2],[2,-4],[3,-4],[3,-2],[19,2],[5,-2],[-6,-9],[-9,-6],[-8,-4],[-8,-1],[-4,1],[-7,7],[-2,0],[-4,-7],[3,-6],[9,-7],[12,-14],[0,-3],[-4,-1],[-7,-9],[-3,-2],[-17,4],[-4,-3],[-3,-5],[-4,-4],[-4,0],[4,-6],[7,0],[15,6],[0,-4],[-21,-12],[-5,-8],[3,-8],[-3,-4],[-5,-1],[-9,1],[-4,-1],[-10,-8],[-16,0],[-3,-2],[-7,-7],[-4,-3],[2,-5],[-1,-5],[-1,-3],[-3,-3],[0,-4],[9,3],[40,26],[4,-1],[4,-5],[0,-6],[-2,-6],[-4,-7],[6,-3],[6,3],[2,5],[-4,4],[9,21],[14,10],[14,-1],[12,-15],[-8,-7],[-8,-2],[-16,1],[4,-6],[0,-7],[0,-7],[3,-4],[4,2],[2,6],[3,4],[5,-4],[-10,-15],[-6,-5],[-7,0],[-13,7],[-7,1],[-7,-4],[0,-4],[15,-2],[6,-5],[0,-9],[3,-5],[-1,-6],[-3,-6],[-1,-8],[3,-6],[4,-2],[5,-2],[4,-2],[0,-4],[-5,-3],[-5,-5],[10,1],[28,28],[0,4],[-22,-7],[-12,-1],[-1,9],[4,8],[10,13],[9,16],[0,-4],[-5,-23],[29,5],[1,-8],[6,-1],[3,-1],[3,-3],[-2,-4],[-1,-2],[-2,-1],[-2,-3],[-1,-5],[2,-3],[3,-1],[3,1],[14,14],[4,6],[2,3],[4,0],[3,-2],[1,-5],[0,-6],[-2,-2],[-2,-1],[-2,-3],[-5,-7],[-5,-5],[-5,-2],[-11,-1],[-19,-11],[-12,-16],[-5,-3],[-10,0],[-6,-1],[-5,-5],[-3,-6],[-3,-7],[-4,-7],[4,-3],[4,4],[4,7],[3,4],[54,-4],[-6,-4],[-12,-2],[-5,-6],[2,-2],[3,0],[2,1],[0,1],[5,-6],[2,-4],[-2,-2],[-2,-2],[-8,-8],[-5,-2],[-9,-1],[-8,-3],[-8,-5],[-8,-7],[-16,-19],[-8,-7],[-9,-3],[-10,3],[-4,1],[-5,-4],[-10,-15],[-5,-5],[3,-3],[3,-4],[2,-6],[0,-8],[13,28],[6,5],[6,0],[12,-3],[7,3],[21,28],[13,10],[11,-6],[-4,-9],[-13,-23],[-1,-13],[2,-9],[5,-3],[5,5],[-4,4],[2,7],[8,13],[1,4],[2,5],[1,5],[2,2],[4,2],[1,4],[0,6],[2,7],[7,14],[12,17],[12,11],[9,-4],[-3,-5],[-5,-5],[-3,-6],[4,1],[4,-1],[3,-3],[2,-5],[-23,-26],[-4,-6],[-3,-8],[2,-5],[6,7],[6,5],[6,3],[6,1],[2,7],[10,38],[2,0],[1,-8],[0,-6],[-3,-14],[5,5],[3,2],[3,1],[-19,-49],[6,6],[10,16],[5,10],[3,-4],[3,3],[4,14],[1,3],[0,10],[1,3],[2,1],[3,-2],[1,0],[2,12],[1,3],[2,2],[0,2],[0,5],[-1,7],[-1,4],[0,9],[1,4],[5,3],[1,4],[0,4],[1,3],[4,4],[2,0],[9,-4],[8,-1],[3,-1],[10,-14],[2,-6],[-5,-16],[2,-2],[5,2],[4,5],[0,-6],[1,-6],[2,-5],[2,-3],[5,0],[1,4],[1,6],[1,6],[5,8],[10,13],[4,7],[-2,5],[3,9],[2,4],[3,3],[3,2],[6,0],[3,4],[0,2],[4,29],[2,3],[2,-2],[-1,-6],[2,-6],[3,-2],[3,-1],[3,-3],[2,-6],[2,-12],[2,-6],[8,-15],[1,-8],[-7,-9],[1,-3],[3,-7],[2,-3],[-4,-4],[-5,-3],[-3,-4],[-2,-7],[0,-4],[-3,-10],[-1,-4],[0,-5],[0,-14],[-3,-15],[-7,-11],[-16,-12],[-4,-5],[-7,-16],[-2,-4],[-9,0],[-5,3],[-9,13],[-4,2],[-8,-1],[-3,-4],[-2,-1],[-1,3],[-1,4],[-2,1],[-2,-1],[-2,-2],[2,-14],[-9,-32],[5,-7],[-5,-5],[-16,0],[-4,-5],[-3,-12],[-6,-5],[-14,-5],[-2,-3],[-7,-14],[-10,-13],[-3,-5],[-5,-7],[-7,-1],[-7,2],[-18,13],[-6,3],[-8,0],[-11,-4],[-3,3],[-3,7],[-2,7],[-1,4],[-8,6],[-6,0],[-4,-6],[-1,-15],[1,-14],[2,-11],[2,-10],[3,-11],[1,-17],[2,-6],[28,-6],[22,5],[11,-1],[6,-12],[-17,-12],[-17,-8],[-19,0],[-15,7],[-4,-3],[4,-8],[6,-3],[13,-2],[6,-2],[6,-4],[6,-1],[10,10],[15,2],[6,5],[10,12],[5,3],[-2,-9],[-2,-3],[1,-17],[-7,-23],[-14,-41],[-7,3],[-18,1],[0,-4],[9,-1],[8,-3],[-1,-12],[-1,-16],[-2,-15],[-7,-6],[-2,-4],[-2,-9],[-3,-7],[-4,2],[-5,8],[-2,5],[-2,7],[-2,8],[-7,11],[-7,9],[-6,3],[-4,-6],[15,-15],[0,-12],[5,-4],[1,-9],[0,-11],[3,-5],[3,-4],[1,-10],[-1,-8],[-6,-2],[2,-7],[11,-17],[4,-8],[8,-23],[7,-3],[5,14],[4,19],[6,9],[5,-4],[0,-9],[-4,-9],[-2,-7],[-4,-13],[-1,-2],[-1,-4],[0,-7],[2,-6],[3,2],[2,4],[1,0],[3,-2],[0,-3],[1,-7],[2,-5],[1,5],[0,1],[1,-2],[1,-4],[0,-5],[-1,-5],[-5,-15],[4,4],[7,13],[2,3],[2,-1],[1,-2],[1,-4],[0,-3],[1,-3],[3,1],[2,2],[2,1],[8,-4],[1,3],[0,10],[0,7],[-1,5],[0,4],[5,4],[-5,10],[-2,7],[1,3],[4,0],[2,-1],[6,-6],[-1,9],[1,7],[1,7],[-3,9],[5,1],[4,6],[2,6],[0,3],[-3,3],[-2,8],[-1,9],[1,9],[3,8],[3,3],[2,4],[1,11],[2,9],[5,9],[-1,4],[4,13],[3,7],[3,5],[4,3],[3,1],[8,-4],[0,3],[-3,7],[1,8],[3,8],[3,8],[3,8],[4,20],[3,8],[8,17],[2,2],[5,-1],[3,1],[3,3],[2,4],[2,4],[8,2],[1,3],[1,4],[2,4],[6,2],[5,-5],[4,-6],[5,-3],[5,2],[5,5],[6,6],[3,5],[11,21],[11,28],[4,8],[4,2],[6,-6],[10,-22],[8,-6],[0,-5],[-3,-4],[-3,-2],[-13,0],[-3,-3],[-2,-4],[-1,-5],[-1,-4],[-5,-8],[-2,-5],[-1,-5],[0,-12],[-2,-9],[-4,-9],[-5,-9],[-11,-14],[-4,-9],[-3,-11],[1,-16],[-1,-10],[-2,-10],[-5,-11],[-10,-16],[-5,-10],[-2,-13],[-1,-3],[-3,-4],[-2,-4],[-3,-2],[-1,-1],[-3,-3],[-2,-1],[-1,-1],[1,-4],[3,-3],[8,-4],[-3,-8],[-3,-8],[3,3],[2,1],[2,-3],[1,-5],[-4,-6],[-7,-18],[-5,-4],[-5,-2],[-6,-5],[-2,-7],[2,-7],[3,4],[4,3],[3,1],[4,1],[-4,-7],[-7,-7],[-3,-7],[6,1],[6,4],[11,12],[-3,-10],[-7,-9],[-8,-7],[-6,-3],[-1,-1],[2,-3],[4,-3],[3,-2],[3,1],[9,8],[1,-22],[-1,-7],[-1,-6],[-2,-5],[-2,-5],[0,-8],[4,5],[4,7],[3,5],[4,0],[-1,-6],[0,-2],[1,-5],[-9,-16],[-4,-8],[2,-4],[6,2],[3,4],[3,2],[7,-4],[-2,-10],[-1,-2],[5,8],[10,23],[11,9],[18,25],[17,17],[5,9],[5,10],[4,12],[3,13],[2,12],[7,55],[5,27],[8,7],[2,-3],[2,-10],[1,-3],[12,-7],[2,-4],[1,-24],[0,-7],[-5,-19],[2,-5],[5,-1],[7,2],[3,-2],[0,-5],[0,-29],[-2,-10],[-8,-19],[4,4],[2,-8],[3,-6],[4,-5],[5,-1]],[[14467,80982],[4,-5],[4,-11],[4,-13],[1,-10],[-2,-9],[-5,-7],[-6,-5],[-4,-1],[-3,2],[-2,3],[-1,3],[-2,4],[-6,7],[-7,10],[-2,-2],[-3,-4],[-7,1],[-5,6],[-5,10],[-3,13],[-2,13],[-1,8],[-10,27],[-3,22],[5,18],[9,14],[22,23],[5,2],[5,-14],[4,-10],[1,-11],[-3,-7],[9,-14],[8,-19],[5,-22],[-4,-22]],[[34624,81196],[-16,-1],[-5,5],[3,17],[9,24],[3,2],[8,5],[4,1],[5,6],[7,10],[5,3],[-1,-15],[-4,-12],[-12,-37],[-6,-8]],[[14406,81184],[-1,0],[-4,-3],[-2,-1],[-12,-1],[-7,1],[-5,4],[0,7],[1,10],[4,8],[10,6],[-1,6],[-5,10],[-1,7],[0,5],[4,6],[8,25],[5,11],[5,5],[3,1],[7,6],[3,1],[8,0],[19,6],[8,-2],[4,-8],[-2,-19],[0,-9],[2,-9],[-3,-10],[-4,-24],[-2,-10],[-14,-41],[2,-4],[-2,-4],[3,-7],[3,-7],[2,-6],[0,-8],[-3,-6],[-4,-5],[-8,-5],[-4,6],[-4,-3],[-6,-5],[-6,-3],[-2,3],[1,7],[1,6],[1,3],[0,4],[2,4],[2,5],[-1,9],[-1,5],[-4,11],[0,2],[1,3],[0,3],[-1,4]],[[13612,81331],[10,-4],[3,-6],[-2,-11],[-3,-5],[-5,-1],[-9,2],[-7,-5],[-3,3],[-3,10],[-2,-13],[5,-9],[12,-10],[5,-9],[-2,-1],[-7,4],[-5,6],[1,-9],[6,-11],[2,-9],[-9,-4],[2,-3],[1,-4],[2,-9],[-7,4],[-7,10],[-10,19],[3,5],[3,6],[1,6],[-4,3],[-3,4],[-2,9],[0,10],[-3,14],[1,8],[3,20],[2,5],[3,1],[5,-2],[3,-1],[2,-2],[0,-4],[-1,-6],[7,-6],[3,-2],[3,-5],[2,-1],[1,1],[1,2],[2,0]],[[14459,81363],[3,-1],[5,-2],[2,-1],[3,1],[1,3],[2,3],[3,1],[-3,-16],[-2,-6],[-6,-10],[-3,-6],[-1,-5],[-2,-6],[-6,-4],[-15,5],[-7,-7],[-3,-2],[-5,2],[-5,5],[-3,6],[-2,7],[-2,11],[-2,8],[-1,6],[5,0],[8,-4],[3,2],[5,8],[3,2],[25,0]],[[14375,81278],[-1,3],[0,4],[0,4],[-1,5],[-6,25],[-5,9],[2,11],[3,11],[4,5],[0,2],[3,10],[1,4],[2,3],[2,2],[4,3],[5,3],[6,1],[6,-1],[4,-3],[-2,-4],[-1,-54],[-2,-13],[-2,-3],[-4,-4],[-2,-3],[-2,-5],[-1,-11],[-1,-4],[-3,-3],[-3,0],[-3,0],[-3,3]],[[14381,81391],[-6,-4],[-5,-5],[-3,-8],[-1,-9],[-1,-3],[-5,-20],[-3,1],[-4,9],[-2,-18],[4,-16],[-5,-6],[-7,5],[-5,6],[4,14],[3,13],[-4,3],[-6,4],[-3,-8],[-5,-9],[-5,-2],[-4,4],[4,7],[3,7],[-13,-2],[-8,1],[-5,3],[1,10],[10,7],[3,10],[4,5],[1,8],[2,8],[11,-1],[12,-1],[6,3],[18,-2],[9,-5],[5,-9]],[[14417,81407],[-5,0],[-6,1],[-5,3],[-5,5],[20,14],[6,8],[7,7],[10,1],[9,-2],[7,-4],[7,-27],[1,-7],[2,-7],[3,-7],[2,-8],[-2,-11],[-5,-4],[-6,1],[-11,5],[-14,-3],[-7,1],[-6,6],[-1,7],[2,7],[4,4],[11,5],[4,6],[-1,5],[-5,3],[-4,-1],[-6,-5],[-6,-3]],[[14655,81517],[2,-13],[-2,-12],[1,-10],[9,-10],[-9,-22],[-11,-14],[-24,-16],[-1,-2],[-2,-5],[-1,-1],[-3,0],[-4,3],[-3,1],[-11,-10],[-3,-9],[-5,-8],[-13,-10],[-3,-1],[-7,-1],[-3,-2],[-2,-5],[-3,-13],[-2,-2],[-7,-2],[-4,-6],[-14,-42],[-4,-14],[1,-11],[1,-13],[-5,-9],[-8,-6],[-7,-3],[-14,-1],[-5,-3],[-9,-7],[-5,-1],[-4,9],[1,20],[6,48],[1,6],[3,7],[1,2],[2,1],[2,1],[1,4],[-1,0],[-1,18],[2,11],[6,17],[7,13],[6,1],[6,18],[11,3],[12,0],[14,15],[12,6],[7,9],[2,1],[6,1],[3,2],[4,8],[6,6],[3,8],[3,10],[2,7],[4,5],[5,3],[28,13],[5,3],[7,10],[3,0],[5,-6]],[[14273,81534],[0,-11],[-1,-5],[-1,-5],[3,-25],[-3,-28],[-7,-24],[-8,-12],[-2,10],[-9,13],[-3,9],[0,6],[0,13],[0,6],[-6,4],[0,2],[1,7],[-1,3],[-2,10],[-2,12],[0,12],[2,11],[4,4],[7,4],[12,4],[0,-4],[-1,-2],[-3,-6],[3,1],[2,1],[3,3],[2,3],[6,-7],[2,-4],[2,-5]],[[14288,81627],[-1,11],[1,13],[3,7],[4,-7],[3,-32],[15,-65],[-3,-27],[-4,-4],[-5,-1],[-5,1],[-4,4],[-3,6],[-9,5],[-8,10],[-8,8],[-4,2],[-4,3],[-3,7],[-3,4],[-4,-6],[3,-6],[-1,-4],[-4,-2],[-4,4],[-6,-3],[-6,6],[-5,8],[-6,5],[2,11],[3,4],[4,-2],[5,-5],[2,-3],[2,-4],[2,-3],[3,-2],[2,2],[2,4],[2,2],[4,-4],[2,4],[-3,2],[-5,6],[2,2],[2,2],[-2,2],[-5,2],[-2,2],[0,5],[1,8],[-1,2],[-1,1],[1,3],[2,3],[2,1],[39,1],[6,7]],[[13454,81696],[-7,-4],[-18,0],[-5,-9],[4,4],[4,1],[3,-4],[2,-9],[5,3],[15,1],[3,3],[3,8],[6,7],[7,4],[5,-1],[4,-10],[2,-9],[0,-11],[-4,-15],[2,-8],[-4,-5],[-6,-3],[-6,0],[-6,5],[-11,13],[-6,2],[1,-3],[1,-1],[-2,-12],[11,-14],[-7,-10],[-6,-2],[-5,7],[-10,23],[2,11],[-13,21],[-2,13],[6,8],[12,1],[20,-5]],[[14358,81519],[-19,-30],[-6,-3],[-11,1],[-7,4],[0,12],[5,7],[6,7],[4,8],[2,13],[2,4],[-8,12],[-3,23],[-1,50],[-1,4],[-2,3],[0,4],[2,7],[2,6],[-1,12],[1,7],[3,9],[0,9],[-2,8],[-4,8],[3,12],[6,12],[7,9],[5,-1],[3,-22],[3,-24],[5,-12],[4,-6],[0,-7],[-1,-7],[-1,-3],[3,-42],[2,-6],[1,-3],[1,-5],[1,-6],[0,-12],[2,-7],[2,-8],[0,-6],[0,-6],[-1,-6],[-1,-6],[-5,-16],[-1,-7]],[[14186,81629],[1,-8],[0,-9],[0,-10],[0,-25],[-2,-17],[-4,-15],[-9,-11],[-1,8],[-1,7],[-1,4],[-5,1],[2,9],[0,10],[-3,6],[-4,-3],[-5,-5],[-4,4],[-4,9],[-1,11],[-7,-2],[-5,7],[-1,13],[1,14],[-9,-4],[-9,13],[-12,32],[2,2],[3,0],[2,0],[3,-2],[-4,8],[-14,12],[-5,8],[2,4],[-5,9],[-2,7],[2,7],[5,9],[-4,13],[2,8],[5,2],[21,-23],[8,-15],[5,-6],[9,-6],[5,-7],[8,-15],[31,-46],[4,-8]],[[14358,81696],[-3,9],[-1,4],[0,15],[1,2],[1,0],[11,5],[12,0],[6,5],[2,7],[2,8],[3,5],[4,-3],[0,-6],[-1,-11],[-1,-6],[0,-6],[-4,-9],[-1,-5],[-2,-14],[0,-6],[-1,-7],[-4,-10],[-1,-3],[0,-3],[-3,-11],[-3,-22],[-2,-3],[-5,-9],[-4,3],[-1,9],[3,9],[0,4],[-1,2],[-3,10],[2,11],[-1,9],[-5,17]],[[14296,81696],[1,3],[-2,20],[1,7],[3,14],[4,36],[2,5],[5,-4],[3,-7],[2,-8],[2,-18],[1,-12],[-2,-8],[-5,4],[1,-45],[-2,-9],[-5,-13],[-2,-9],[-2,0],[-4,16],[2,4],[-2,4],[-3,8],[0,8],[2,4]],[[14012,81858],[2,-7],[4,-8],[1,-7],[-3,-3],[-5,3],[-5,10],[-4,0],[-5,-12],[-3,-2],[-2,20],[-5,11],[-2,7],[15,2],[8,-3],[4,-11]],[[14010,81890],[5,-9],[4,-3],[4,0],[-1,-5],[-2,-5],[-2,-3],[-2,-3],[-2,5],[-2,5],[-2,4],[-2,2],[-3,2],[-2,-2],[-1,-3],[-3,-1],[-2,1],[-5,7],[-2,3],[-3,3],[-8,3],[-3,4],[4,0],[15,-5],[12,2],[3,-2]],[[13985,81935],[7,-8],[8,-15],[3,-12],[-8,-5],[-12,3],[-9,8],[-7,13],[-7,16],[6,3],[8,1],[7,-1],[4,-3]],[[14082,81878],[3,-21],[1,-10],[-3,-5],[-7,-2],[-3,1],[-10,12],[-1,1],[-5,3],[-4,8],[-5,17],[-5,10],[-4,7],[-3,7],[-2,11],[-1,6],[-2,-1],[-5,-7],[-3,1],[0,4],[2,5],[2,2],[-4,7],[-5,3],[-5,5],[1,13],[4,11],[7,5],[7,-1],[6,-2],[2,-11],[3,-7],[9,-11],[14,-34],[4,-8],[5,-4],[4,-4],[3,-11]],[[13580,81367],[-3,7],[0,8],[-2,7],[-5,2],[2,-21],[-3,-21],[-7,-10],[-7,8],[-2,9],[-1,19],[-1,8],[-3,7],[-5,7],[-9,10],[10,-41],[1,-21],[-7,-6],[-5,4],[-3,9],[-3,10],[-1,7],[-1,8],[-8,16],[-2,11],[-2,0],[-1,-21],[-7,2],[-8,12],[-6,13],[-3,8],[-2,8],[-2,7],[-9,6],[-3,7],[-2,8],[-3,6],[-2,-3],[-3,-1],[-3,1],[-3,3],[3,8],[3,9],[-6,-4],[-3,0],[-2,2],[1,1],[-3,17],[-1,2],[3,9],[7,0],[8,-4],[5,-3],[-2,10],[-5,7],[-6,5],[-5,2],[-3,-2],[-4,-3],[-3,-1],[-3,4],[-8,15],[-1,2],[-3,12],[-7,7],[-14,7],[-7,6],[-34,38],[-4,7],[-1,5],[0,8],[-1,6],[-2,3],[-4,1],[-1,2],[0,11],[-3,1],[-20,18],[-21,32],[7,15],[5,3],[6,-2],[3,-3],[12,-17],[1,4],[-10,19],[-5,5],[4,4],[11,-16],[5,-9],[3,-5],[4,-2],[-1,4],[-1,4],[-2,2],[-1,2],[0,4],[0,11],[-6,8],[-16,9],[-5,9],[-8,19],[-6,5],[6,-22],[1,-10],[-2,-5],[-6,-5],[-5,-18],[-7,-1],[-2,2],[-10,14],[0,2],[-1,5],[0,1],[-2,2],[-5,2],[-2,2],[-4,7],[-3,10],[-1,10],[5,8],[-18,11],[-5,7],[-6,11],[-2,5],[-2,12],[1,0],[3,5],[3,2],[8,-3],[2,1],[3,3],[3,1],[3,-1],[3,-1],[11,-13],[5,-3],[4,8],[-4,1],[-2,4],[-3,4],[-1,7],[17,-20],[0,5],[-1,5],[-2,3],[-3,2],[0,5],[4,2],[5,5],[4,7],[1,6],[-5,3],[-14,-5],[-5,4],[-9,13],[-11,2],[-21,-1],[1,6],[1,2],[-5,-2],[-10,-2],[-4,-4],[-4,8],[-4,-1],[-5,-4],[-4,-3],[-6,2],[-4,5],[-1,8],[3,10],[-5,2],[-6,7],[-4,8],[1,3],[4,3],[-2,7],[-7,14],[7,4],[7,-3],[8,-6],[8,-3],[24,1],[7,3],[2,2],[5,8],[3,2],[4,2],[14,-6],[50,6],[4,5],[3,7],[18,19],[1,1],[3,-1],[2,0],[1,2],[3,6],[10,8],[18,0],[3,2],[2,4],[3,3],[3,-1],[1,-2],[8,-31],[1,-10],[-6,-5],[0,-5],[18,-7],[5,-5],[1,-2],[3,-10],[2,-4],[3,-1],[5,0],[3,-3],[2,-6],[6,-27],[2,-4],[2,-2],[1,-2],[-3,-4],[-4,-1],[-3,1],[-3,2],[-3,5],[-5,5],[-14,0],[-6,3],[-6,5],[-6,3],[-12,2],[-5,-2],[-11,-5],[-5,-1],[-28,0],[4,-6],[11,-4],[3,-5],[0,-10],[1,-8],[1,-6],[3,-6],[4,16],[2,4],[3,4],[7,7],[2,4],[6,2],[24,-17],[19,-6],[8,-5],[4,-1],[3,-2],[5,-8],[2,-2],[2,-3],[-2,-6],[-4,-6],[-1,-1],[-2,-8],[1,0],[1,-2],[1,-3],[1,-3],[-2,-4],[-6,-7],[-9,-15],[-6,-4],[-29,-1],[-6,2],[-6,10],[-5,12],[-5,9],[-5,5],[-7,1],[-4,-1],[-2,-1],[-2,-2],[3,-4],[4,-3],[4,-2],[5,0],[0,-3],[-25,-17],[0,-4],[8,1],[8,6],[7,3],[7,-6],[4,-4],[1,-2],[1,-5],[-1,-2],[-3,-3],[-1,-4],[-1,-3],[-1,-2],[-1,-1],[1,-6],[2,0],[2,2],[2,0],[6,-16],[2,-3],[35,0],[8,3],[3,-1],[2,-6],[-9,-3],[-12,-1],[-11,-3],[-8,-13],[-3,5],[-4,2],[-4,-1],[-4,-2],[4,0],[3,-2],[6,-6],[-8,-17],[-1,-7],[16,2],[7,-2],[7,-8],[5,-12],[6,-16],[1,-13],[-6,-4],[5,-7],[9,-18],[5,-3],[6,-3],[-2,-5],[-5,-6],[-5,-3],[0,-4],[3,-2],[2,-1],[6,-1],[2,-2],[1,-4],[2,-4],[3,-2],[4,3],[3,6],[4,4],[5,-5],[-1,-9],[6,-3],[14,0],[-4,-14],[5,-7],[8,-5],[6,-6],[-8,-28],[-2,-9],[7,1],[7,-2],[3,-7],[-5,-12],[4,1],[4,4],[3,2],[4,-3],[0,12],[-1,9],[0,7],[3,8],[4,5],[12,2],[11,6],[2,-7],[-2,-10],[-10,-7],[-3,-8],[-2,-10],[-1,-11],[3,5],[4,2],[9,1],[-2,-10],[-2,-2],[-3,0],[-3,-1],[-6,-4],[-3,-3],[-2,-5],[-2,9],[-3,6],[-2,1],[-3,-7],[4,-6],[4,-22],[4,-9],[4,7],[17,-19],[7,0],[-9,10],[-3,6],[1,9],[2,1],[2,-2],[4,-4],[8,10],[4,3],[6,1],[5,-2],[3,-6],[1,-6],[9,-5],[3,-7],[-4,-12],[-7,-3],[-8,-1],[-7,-5],[0,-3],[15,0],[7,-3],[6,-6],[10,8],[5,1],[4,-5],[1,-8],[-2,-11],[-4,-8],[-2,-5],[-5,-2],[-12,0],[-4,2]],[[14221,81680],[-6,-17],[-9,-8],[-9,1],[-10,7],[-25,26],[-8,11],[-3,4],[1,2],[1,2],[2,2],[1,2],[0,4],[-7,4],[-4,6],[-7,16],[-2,9],[-3,14],[-1,14],[2,6],[7,-2],[17,-10],[4,1],[-3,5],[-12,14],[9,8],[9,13],[5,4],[6,19],[5,5],[0,14],[9,11],[22,11],[-4,10],[-7,12],[-8,10],[-8,6],[-8,11],[-15,16],[1,-7],[0,-5],[1,-4],[2,-4],[1,-3],[1,-4],[1,-2],[3,5],[3,1],[2,-1],[1,-2],[3,-5],[7,-7],[4,-4],[5,-12],[2,-4],[5,-3],[0,-4],[-11,-1],[-5,-2],[-5,-5],[-2,-3],[-5,-8],[-2,-5],[-1,-3],[-2,-9],[-1,-4],[-7,-13],[-12,-17],[-12,-8],[-6,11],[-1,6],[-10,-1],[-5,4],[-2,7],[-1,12],[-1,21],[1,11],[5,14],[1,8],[2,8],[5,5],[4,-1],[2,-6],[8,10],[4,14],[0,15],[0,15],[-1,15],[0,8],[4,8],[1,10],[-1,11],[-1,7],[-2,7],[-3,5],[0,5],[3,7],[4,3],[6,2],[6,0],[12,-9],[20,-1],[10,-13],[20,-31],[26,-27],[7,-5],[12,-1],[4,-5],[9,-25],[1,-3],[1,-4],[12,-48],[3,-23],[1,-28],[0,-25],[-3,-27],[-9,-61],[-1,-3],[-4,2],[2,-24],[-2,-9],[-6,-12],[2,1],[2,-1],[2,-1],[2,-3],[-1,-6],[-2,-15],[-2,-5],[-3,-2],[-27,0],[-6,-2],[-7,-6],[-2,3],[3,11],[2,10],[1,10],[0,10],[0,11],[-3,21],[-1,11],[2,11],[7,19],[1,10],[1,14],[2,7],[4,4],[4,6],[6,26],[1,4],[1,11],[0,12],[0,3],[-2,4],[-3,3],[-3,0],[-1,-4],[2,-22],[0,-11],[-4,-6],[-5,3],[-4,5],[-4,4],[-5,-3],[4,-8],[2,-14],[0,-13],[-5,-6],[-3,-6],[-2,-13],[-1,-26],[-3,-23],[0,-9],[5,-16],[1,-6],[-1,-5],[-3,-2],[-3,3],[-2,5],[-2,7],[-2,6]],[[14085,81921],[-2,3],[-6,7],[-3,4],[-1,13],[-1,15],[2,14],[3,11],[17,26],[3,11],[0,7],[-1,5],[-5,10],[-1,6],[4,2],[5,0],[8,-4],[5,-3],[3,-5],[3,-7],[1,-6],[-1,-10],[0,-8],[2,-6],[3,-7],[1,-7],[0,-5],[-1,-11],[-1,-8],[2,-14],[5,-26],[-1,-9],[-7,-3],[-21,1],[-6,2],[-2,-7],[-2,0],[-3,3],[-2,6]],[[14191,82098],[2,-9],[0,-6],[-2,-6],[-4,-8],[2,-5],[0,-7],[-2,-6],[-4,-2],[-5,1],[-10,7],[-5,2],[-13,-2],[-4,-2],[-8,-9],[-4,1],[-9,25],[10,27],[13,26],[1,21],[4,12],[7,14],[7,7],[3,-8],[0,-17],[3,-13],[18,-43]],[[13960,81996],[2,-11],[0,-15],[-3,-12],[-6,-7],[-5,2],[-3,6],[-2,5],[-4,4],[-3,-2],[-3,-5],[-3,-6],[-2,-4],[-8,-1],[-7,1],[-4,3],[-3,3],[-16,27],[-3,10],[-1,10],[-12,7],[-6,5],[-3,6],[0,12],[0,8],[-2,6],[-5,5],[-9,0],[-3,4],[-2,10],[-1,5],[-3,2],[-6,-1],[-1,2],[-1,4],[-3,4],[-2,2],[-26,5],[-3,4],[-11,28],[-8,13],[-3,9],[-2,8],[2,7],[7,3],[12,1],[-8,6],[-5,0],[-6,-4],[-8,-2],[-4,0],[-3,2],[-3,3],[-9,15],[-2,0],[-2,0],[-3,1],[-1,5],[1,13],[1,16],[3,12],[5,6],[14,-3],[9,-4],[6,-6],[7,-3],[14,-14],[15,-5],[7,-6],[14,-16],[20,-14],[11,-16],[28,-21],[13,-15],[7,-14],[3,-3],[2,-3],[2,-12],[2,-6],[29,-61],[6,-18]],[[14120,82085],[-1,14],[-1,25],[1,25],[3,23],[-2,35],[1,14],[1,7],[7,14],[4,3],[11,7],[3,6],[3,4],[6,5],[12,5],[26,0],[5,2],[6,5],[5,2],[6,-5],[-10,-15],[-3,-9],[1,-8],[-5,-19],[1,-17],[-1,-10],[-20,9],[-7,-4],[-25,-38],[-3,-2],[-4,-5],[1,-9],[2,-15],[-2,-10],[-3,-5],[-3,-2],[-4,-5],[-6,-13],[-5,-14]],[[13776,82264],[11,15],[17,20],[4,5],[-2,11],[-1,10],[1,6],[6,2],[4,-3],[8,-8],[3,-5],[-2,-7],[-2,-7],[1,-7],[1,-8],[4,-6],[4,-1],[5,0],[12,-8],[4,-4],[2,-7],[-1,-7],[-1,-5],[-1,-6],[3,-8],[-2,-5],[3,-8],[2,-8],[4,-20],[-7,0],[-15,12],[-22,4],[-12,13],[-10,3],[-5,6],[-5,14],[-2,5],[-2,3],[-5,5],[-2,4]],[[13819,82386],[5,3],[10,11],[4,-2],[7,-9],[14,-11],[7,-11],[3,-3],[9,-3],[2,-2],[1,-5],[3,-4],[6,-5],[17,-25],[9,-5],[3,-4],[4,-9],[3,-3],[7,-4],[3,-2],[15,-28],[2,-7],[2,-4],[24,-46],[39,-50],[3,-5],[2,-7],[-5,-3],[-4,0],[-5,1],[-14,9],[-3,-2],[-3,-9],[6,2],[2,2],[6,-8],[8,-2],[17,2],[6,-4],[7,-9],[7,-10],[4,-10],[3,-12],[9,-9],[9,-13],[-3,-20],[6,-19],[-1,-19],[-9,-11],[-5,21],[-5,7],[2,10],[-4,14],[-7,2],[-3,-12],[-5,-12],[-4,1],[-8,12],[-3,-4],[1,-8],[2,-9],[0,-8],[6,-14],[-1,-12],[-4,-5],[-7,7],[-6,-6],[-6,-1],[-5,5],[-2,12],[-3,7],[-12,23],[-4,8],[2,1],[3,3],[1,1],[-10,8],[0,4],[4,4],[-3,3],[-4,-3],[-4,-3],[-4,-1],[-3,2],[-10,14],[-1,3],[1,4],[0,4],[-1,1],[-9,-4],[-3,4],[-4,12],[-2,4],[2,17],[1,11],[-1,7],[-3,1],[-5,-3],[-7,-1],[-6,7],[1,6],[5,19],[1,10],[-1,10],[-3,5],[-5,1],[-6,-1],[2,6],[3,3],[6,4],[-7,7],[-4,0],[-4,-3],[0,4],[2,2],[6,6],[-7,5],[-5,-6],[-3,-10],[-5,-5],[-13,-2],[-5,4],[-2,12],[6,14],[16,7],[17,0],[10,-7],[2,5],[-8,11],[-12,3],[-13,-2],[-11,-4],[-7,-8],[-5,-1],[-5,5],[-1,9],[1,18],[-2,9],[-19,12],[-9,2],[-3,3],[-1,11],[1,10],[2,8],[0,10],[-3,9],[-4,5],[-17,7],[4,20],[2,9],[5,4]],[[13764,82438],[-2,-11],[-2,-16],[-2,-15],[-5,-6],[-9,1],[-6,5],[-11,20],[-6,9],[-4,4],[-3,-1],[-3,-5],[-3,-4],[-2,1],[-1,10],[-4,-4],[-2,-8],[-2,-9],[-3,-7],[3,-9],[4,-4],[5,-3],[5,-5],[3,-7],[2,-10],[-2,-8],[-6,-3],[-2,1],[-6,7],[-5,0],[-3,1],[-2,3],[0,8],[2,11],[0,9],[-3,5],[-1,4],[1,10],[4,10],[4,4],[1,3],[2,10],[2,4],[2,1],[3,0],[2,0],[0,-1],[4,6],[4,8],[4,7],[5,3],[5,2],[14,14],[0,7],[18,4],[5,3],[4,12],[8,-3],[15,-15],[13,-24],[3,-4],[4,-5],[5,-11],[4,-13],[1,-12],[-3,-10],[-12,-13],[-5,-7],[-7,-16],[-2,-7],[-1,-6],[-1,-5],[-3,-5],[-3,-1],[-9,0],[-3,1],[-2,4],[-3,14],[0,2],[-5,-5],[-6,-8],[-4,-3],[-3,12],[-1,8],[1,1],[2,0],[3,3],[3,4],[2,4],[12,33],[4,5],[8,3],[10,0],[0,4],[-4,2],[-2,3],[1,3],[3,5],[-3,2],[-4,-1],[-7,-5],[-12,-1],[-5,-4]],[[13172,81980],[5,7],[2,4],[1,5],[-5,0],[-16,12],[-11,4],[-12,0],[3,10],[7,6],[15,8],[0,2],[1,2],[0,3],[1,2],[9,4],[4,-3],[4,-4],[2,0],[2,9],[-9,6],[-52,-12],[2,8],[10,23],[3,5],[3,0],[9,-6],[3,-2],[33,0],[3,-2],[5,-8],[5,-4],[5,-8],[7,-4],[3,-3],[2,-5],[2,-6],[4,20],[-7,12],[-20,16],[-2,5],[-2,12],[-2,3],[-3,3],[-6,1],[-25,8],[-6,5],[2,13],[-1,12],[-3,5],[-4,-20],[-6,-4],[-8,2],[-6,4],[0,4],[4,5],[4,8],[1,9],[-3,7],[-4,0],[-1,-5],[-1,-5],[-1,-3],[-3,-1],[-20,-14],[-5,-1],[-3,4],[0,8],[10,13],[3,7],[-29,0],[3,5],[4,12],[3,4],[-4,6],[-6,-1],[-7,-4],[-6,-1],[1,11],[-5,8],[6,5],[6,0],[13,-5],[5,3],[-2,15],[-26,28],[-8,12],[4,-4],[3,0],[3,2],[2,6],[4,-4],[4,-1],[3,3],[-2,6],[-4,4],[-6,2],[-3,4],[2,11],[-2,5],[2,11],[-2,4],[-3,0],[-2,-2],[-2,-4],[-3,-3],[-3,0],[-3,4],[-6,2],[-10,8],[-3,5],[-1,7],[4,5],[9,6],[-3,10],[-12,16],[-5,9],[-2,12],[3,11],[3,9],[1,6],[5,8],[1,10],[-2,10],[1,9],[2,1],[4,-2],[2,1],[1,2],[1,2],[0,2],[0,2],[4,6],[2,5],[2,5],[-3,4],[-1,4],[-1,6],[-3,16],[-2,4],[-4,2],[12,26],[1,10],[-9,1],[6,10],[7,-4],[8,-8],[5,0],[3,3],[5,0],[4,-3],[3,-4],[3,-5],[2,-2],[20,-10],[16,-2],[7,2],[14,9],[8,2],[7,-3],[13,-11],[7,-3],[3,-6],[1,-13],[0,-15],[-1,-10],[-4,-12],[-6,-5],[-6,-3],[-6,-6],[-8,-18],[-2,-11],[5,-6],[2,2],[7,12],[3,4],[3,2],[6,0],[5,4],[4,10],[2,13],[1,12],[3,4],[21,10],[5,7],[4,8],[5,6],[31,8],[3,-3],[3,-7],[10,-14],[2,-11],[0,-8],[-1,-3],[1,-3],[4,-4],[4,-3],[8,-2],[3,-4],[4,-9],[1,-11],[-1,-12],[-2,-12],[3,-6],[5,-13],[3,-12],[0,-6],[-8,-18],[-3,-3],[-8,-1],[-3,-2],[-5,-9],[-3,-12],[-5,-11],[-7,-4],[-30,-5],[-6,-5],[-10,-16],[-6,-3],[-6,-2],[-14,-8],[-7,-2],[-16,2],[-8,-2],[-6,-6],[-2,-8],[3,-1],[7,3],[4,0],[3,-2],[2,-4],[1,-6],[0,-4],[-3,-13],[5,3],[6,14],[4,4],[3,-1],[8,-9],[4,-2],[10,3],[20,11],[10,1],[-8,-14],[-11,-8],[-10,-11],[-7,-23],[4,0],[3,4],[3,6],[3,6],[8,5],[8,3],[17,0],[8,3],[5,10],[-5,-1],[-6,2],[-5,4],[-1,7],[4,7],[6,1],[12,-4],[10,-7],[4,0],[2,9],[2,6],[8,12],[1,8],[-2,7],[-7,9],[-2,8],[0,11],[3,8],[3,7],[2,5],[1,4],[13,16],[8,22],[2,9],[-2,5],[-6,13],[-1,4],[-1,7],[-3,19],[0,15],[-1,7],[-2,3],[-3,1],[-3,5],[-6,10],[4,1],[10,-7],[23,-6],[15,2],[21,8],[15,16],[19,8],[11,13],[9,6],[4,3],[4,7],[4,7],[5,15],[0,-5],[0,-1],[-2,-2],[2,-5],[1,-5],[-1,-4],[-2,-3],[0,-27],[-3,-27],[-4,-25],[-6,-22],[-9,-22],[-20,-37],[-9,-22],[-3,-10],[-2,-10],[-1,-12],[0,-15],[-1,-12],[-2,-12],[-3,-11],[-7,-23],[-3,-13],[-1,-13],[3,-13],[1,-6],[-1,-7],[-2,-7],[-2,-4],[-1,-7],[1,-7],[3,-13],[4,-21],[0,-9],[-1,-29],[0,-8],[3,-10],[-5,-9],[-11,-35],[-5,-13],[-7,-5],[-24,1],[-20,-5],[-8,-7],[-4,0],[-4,-2],[-2,-8],[-1,-6],[-4,0],[-8,4],[5,-8],[4,-3],[10,3],[23,0],[-3,-7],[-5,-8],[-6,-6],[-5,-4],[-9,-1],[-8,3],[-7,6],[-6,11],[-3,4],[-2,-4],[0,-8],[1,-4],[-2,-3],[-4,-2],[-10,-3],[-7,-5],[-4,-2],[-8,0],[-4,2],[-3,2],[2,7],[1,4],[0,4],[0,4],[-2,2],[-2,0],[-1,-2],[-2,-10],[-6,0],[-9,8],[0,4],[5,4],[-4,3],[-9,2],[-4,3]],[[13825,82519],[-4,3],[-3,6],[-2,7],[-2,5],[3,17],[2,5],[3,3],[3,1],[4,-2],[0,-4],[8,-4],[7,-11],[1,-12],[-16,-12],[-4,-2]],[[13707,82519],[-5,-3],[-7,1],[-6,5],[-3,8],[-3,0],[-14,15],[-4,7],[3,8],[2,9],[3,7],[6,0],[21,-25],[8,-16],[-1,-16]],[[13791,82608],[-1,-2],[-2,-4],[-1,-1],[-1,-2],[0,-3],[1,-3],[-8,7],[-14,22],[-7,7],[2,8],[3,6],[4,3],[5,0],[9,-13],[2,-4],[5,-15],[2,-4]],[[13790,82610],[1,-1],[0,-1]],[[13790,82610],[0,15],[6,14],[8,8],[8,-1],[6,-12],[-3,-20],[-9,-15],[-11,2],[-3,3],[0,2],[-1,2]],[[13678,82664],[-3,11],[4,8],[6,5],[5,6],[2,-4],[2,4],[1,-2],[0,-3],[1,-3],[2,0],[-1,-4],[0,-2],[-1,-2],[1,-11],[-6,-5],[-9,-1],[-4,3]],[[13682,82808],[-3,-18],[-2,-7],[-4,-8],[-15,-17],[-2,-5],[-34,-34],[-2,4],[0,4],[1,5],[1,5],[0,32],[0,6],[4,6],[2,8],[2,6],[1,4],[0,4],[-1,5],[-1,5],[1,5],[4,4],[5,3],[5,-2],[2,-7],[5,6],[4,-2],[4,-5],[5,-3],[5,3],[5,7],[4,3],[2,-9],[1,-5],[0,-1],[1,-2]],[[13724,82889],[-1,2],[-4,6],[-1,5],[3,3],[4,1],[3,2],[19,18],[7,3],[7,-4],[2,-6],[5,-14],[-2,-5],[-3,-15],[-1,-6],[-2,-8],[-4,0],[-9,6],[-1,-3],[-2,-4],[-4,-3],[-3,4],[-3,4],[-7,9],[-3,5]],[[13831,82930],[-1,-5],[0,-4],[-2,-2],[-1,-2],[1,0],[5,0],[-1,-4],[-1,-8],[0,-4],[-4,-11],[-5,-8],[-12,-9],[-4,-2],[-7,-1],[-4,-1],[-7,-5],[-4,-1],[0,4],[10,19],[6,8],[13,8],[11,23],[7,5]],[[33924,82934],[-1,7],[2,2],[3,-1],[4,-4],[-4,-13],[-7,-4],[-14,1],[-6,-4],[-13,-15],[-6,-6],[-8,-2],[-29,7],[-3,2],[-2,4],[-1,7],[0,9],[-1,3],[-2,1],[-3,6],[-4,8],[-3,12],[-1,11],[5,5],[3,-2],[4,-8],[3,-2],[3,1],[6,8],[3,3],[3,1],[7,-2],[3,1],[3,3],[5,8],[3,1],[6,2],[11,9],[7,1],[2,2],[2,2],[1,-1],[1,-18],[-3,-5],[-3,-1],[-4,-3],[-2,-5],[-2,-13],[-2,-6],[0,-4],[3,-3],[1,-4],[-1,-4],[-1,-6],[5,2],[8,12],[3,1],[3,-6],[5,-6],[4,-1],[4,7]],[[13769,82917],[-2,3],[-3,7],[-2,8],[-1,7],[11,11],[46,71],[14,30],[6,6],[4,-9],[4,-15],[1,-13],[-2,-12],[-6,-15],[-3,-5],[-7,-9],[-3,-6],[-9,-27],[-3,-7],[-4,-4],[-11,-8],[-13,-18],[-8,-7],[-3,-1],[-1,3],[-5,10]],[[33125,83595],[-1,-10],[5,1],[7,4],[6,1],[-6,-14],[-10,-10],[-33,-13],[-7,0],[-3,7],[3,5],[7,2],[13,-1],[0,3],[-10,4],[-5,5],[-2,8],[0,8],[1,8],[3,5],[3,3],[7,-7],[7,-2],[17,1],[-1,-6],[-1,-2]],[[33053,83660],[0,-4],[14,-7],[5,-4],[-4,-5],[-4,-1],[-10,1],[-47,13],[-8,7],[-4,8],[-4,13],[0,12],[6,4],[0,-5],[-2,0],[0,-4],[4,-5],[5,0],[10,5],[-1,7],[-3,1],[-2,-3],[-3,-5],[-2,10],[4,4],[11,2],[1,5],[-1,7],[0,6],[3,3],[3,0],[2,2],[2,3],[0,7],[4,-3],[1,-1],[10,-4],[0,-4],[-6,-5],[0,-6],[3,-6],[5,-4],[21,-8],[6,-8],[-4,-1],[-1,-4],[-1,-5],[-2,-6],[-2,-4],[-3,-3],[-3,-3],[-3,-2]],[[32940,83855],[-2,-6],[-9,-4],[-2,-7],[3,-1],[7,-5],[3,-1],[0,-4],[-13,-5],[-4,0],[-6,3],[-28,6],[-31,18],[-5,6],[-5,12],[-3,4],[-3,2],[-6,3],[-2,3],[0,4],[61,-17],[9,1],[-2,0],[6,2],[7,4],[6,3],[6,-5],[0,4],[3,-5],[9,-10],[1,-5]],[[32992,83903],[5,-2],[6,2],[6,0],[5,-7],[-64,5],[-25,11],[-6,0],[1,-2],[2,-5],[1,-2],[-3,-6],[-4,-2],[-3,2],[-3,6],[2,0],[-7,9],[-9,1],[-9,-2],[-8,1],[0,3],[4,0],[0,5],[-2,1],[-1,3],[-2,4],[52,-11],[6,3],[1,5],[-8,4],[-50,7],[3,8],[5,0],[5,-3],[5,3],[-3,3],[-3,5],[-4,9],[0,3],[3,2],[10,-2],[5,-2],[22,-3],[4,-3],[9,-8],[8,-4],[8,-1],[8,-4],[5,-11],[-11,-7],[-5,-1],[0,-5],[3,0],[6,-3],[3,0],[4,2],[3,5],[20,3],[10,-1],[7,-6],[-5,-2],[-5,-1],[-4,-3],[-3,-6]],[[32995,83981],[-1,2],[-3,10],[-1,4],[0,3],[1,1],[-1,4],[10,10],[1,4],[2,7],[5,1],[10,-2],[0,4],[-5,3],[-3,2],[-1,3],[0,6],[3,2],[3,-1],[3,-2],[5,-1],[6,-2],[3,-4],[-1,-6],[0,-4],[4,0],[-2,-6],[-5,-7],[-2,-7],[10,4],[3,0],[0,-4],[-4,-1],[-9,-7],[-13,-2],[-4,-2],[-6,-10],[-4,-3],[-4,1]],[[32880,84135],[-1,4],[2,8],[6,12],[10,8],[8,4],[4,4],[1,8],[0,9],[1,4],[4,1],[4,2],[3,2],[5,-1],[4,-5],[5,-7],[5,-4],[5,1],[4,4],[4,1],[4,0],[3,-3],[-8,-17],[-7,-9],[-4,-6],[5,-1],[3,-2],[4,-4],[3,-5],[-5,-8],[-8,-9],[-9,-5],[-6,2],[3,4],[-1,4],[-2,3],[-4,1],[-4,-2],[-3,-4],[-2,-4],[2,-5],[-2,-6],[-3,-5],[-2,-3],[-3,0],[-9,-5],[-2,-3],[-3,-3],[-1,-4],[0,-5],[1,-4],[4,-2],[4,3],[4,5],[6,4],[5,8],[3,2],[4,0],[20,-6],[4,-5],[3,-9],[1,-14],[0,-24],[-2,-9],[-3,-2],[-3,0],[-2,-4],[1,-6],[6,-7],[1,-7],[-3,-6],[-4,-2],[-9,0],[-5,3],[-15,25],[-6,5],[-3,2],[-3,1],[-3,3],[-4,11],[-7,6],[-3,7],[-4,5],[-6,1],[0,4],[4,11],[3,21],[1,20],[-3,9]],[[32885,84472],[-10,-9],[-9,0],[-47,9],[-11,7],[-3,13],[3,3],[16,9],[10,8],[4,6],[3,6],[5,15],[3,4],[5,2],[13,-1],[5,-2],[3,-6],[2,-1],[1,-1],[1,-2],[0,-3],[-4,-1],[-5,-2],[-8,-5],[3,-3],[3,-2],[4,0],[3,0],[0,-4],[-2,-2],[-4,-7],[-3,-3],[-4,-1],[-21,1],[-5,-2],[-5,-5],[-5,-9],[3,-3],[5,-1],[4,1],[1,5],[3,3],[5,0],[23,-5],[15,-8],[0,-4]],[[32818,84573],[17,-17],[4,-13],[-4,-17],[-7,-7],[-27,-21],[-4,-2],[-9,11],[-10,14],[-5,12],[-1,17],[6,15],[9,10],[8,2],[-4,-13],[-1,-7],[4,-4],[4,2],[5,17],[4,5],[2,-3],[3,-1],[6,0]],[[32805,84679],[5,13],[23,34],[4,1],[10,-4],[4,-7],[2,-2],[2,6],[3,1],[2,0],[2,-2],[-1,-8],[-5,-13],[-2,-7],[13,3],[7,0],[-2,-7],[2,0],[-2,-5],[-2,-4],[-6,-8],[1,1],[5,-1],[-3,-13],[-4,-3],[-5,1],[-10,-7],[-6,4],[-5,9],[-4,7],[-6,7],[-1,2],[0,5],[0,4],[-1,4],[-3,1],[-4,-5],[-3,-8],[-4,-5],[-6,6]],[[32797,84697],[-8,-4],[-9,9],[-10,12],[-8,5],[-3,-2],[-6,-8],[-1,0],[-1,8],[-3,3],[0,3],[4,8],[14,24],[8,9],[8,4],[15,0],[2,-4],[-1,-7],[-4,-13],[15,0],[4,-16],[0,-5],[-2,-8],[-3,-6],[-8,-7],[-3,-5]],[[30805,85488],[5,-11],[5,-11],[1,-10],[-11,-6],[5,-3],[-11,-9],[-7,-5],[-2,-7],[-6,-5],[0,-4],[-11,-10],[-4,-8],[3,-10],[-5,-6],[-5,4],[-11,14],[-2,-12],[-5,-8],[-6,-1],[-6,9],[3,6],[6,11],[2,7],[1,3],[-1,11],[1,3],[2,2],[3,3],[2,11],[2,3],[1,3],[-4,8],[-10,18],[-5,16],[4,3],[8,-1],[4,4],[17,1],[10,-3],[9,-2],[4,-6],[10,5],[4,-7]],[[32200,85884],[6,-9],[20,-8],[6,-11],[-3,-4],[-5,-11],[-2,-2],[-15,0],[-4,-3],[-11,-9],[-5,-2],[-4,0],[-8,6],[5,6],[3,2],[-5,4],[-5,0],[-4,2],[-4,6],[2,10],[2,4],[2,3],[4,0],[4,-2],[4,-4],[4,-2],[-2,5],[-1,5],[-3,4],[-2,2],[7,33],[2,7],[6,5],[6,2],[5,-1],[4,-6],[-1,-2],[-3,-6],[2,-6],[6,-15],[-13,-3]],[[20034,90114],[3,16],[7,18],[8,9],[5,-12],[-1,-13],[-6,-32],[-3,-10],[-7,-9],[-9,-12],[-10,-7],[-7,2],[13,20],[5,13],[2,17]],[[19987,90137],[15,-15],[7,-4],[8,3],[-8,-11],[-2,-3],[-1,-2],[-2,-1],[-3,1],[-1,-1],[0,-3],[0,-3],[0,-2],[-6,-5],[-4,-1],[-4,5],[-1,12],[-12,26],[0,5],[0,11],[-2,12],[-3,9],[4,-7],[6,-7],[4,-7],[1,-8],[4,-4]],[[20162,90218],[20,-4],[7,-4],[-7,-9],[-11,-3],[-37,-1],[-7,3],[-7,10],[-13,36],[-3,14],[0,9],[4,3],[8,-5],[6,-9],[40,-40]],[[19998,90368],[-9,1],[-13,6],[-12,8],[-6,10],[4,5],[2,0],[3,-3],[8,-4],[14,-11],[-1,3],[0,2],[0,3],[3,5],[-14,8],[8,11],[22,7],[7,10],[-6,4],[8,1],[6,3],[5,-1],[6,-11],[-2,-9],[0,-18],[0,-9],[-3,-11],[-8,-10],[-3,-8],[5,-6],[3,-10],[1,-8],[-7,-4],[-6,3],[-17,25],[1,2],[0,2],[0,2],[1,2]],[[19920,90465],[-4,-5],[0,-6],[1,-7],[-1,-6],[-3,-4],[-19,-12],[-11,2],[-9,11],[-7,13],[-6,14],[3,0],[2,1],[2,3],[1,4],[-2,2],[-4,7],[10,6],[9,-5],[8,-7],[9,-3],[4,3],[2,3],[3,3],[5,0],[3,-2],[2,-3],[2,-5],[0,-7]],[[19964,90530],[2,13],[3,5],[4,1],[20,-6],[6,-4],[5,-9],[6,-28],[3,-4],[2,-4],[3,-7],[2,-9],[1,-5],[-3,-7],[-5,-1],[-5,4],[-2,7],[-4,-3],[-16,-2],[-6,-3],[0,-5],[3,-3],[5,-4],[2,-6],[0,-3],[-1,-2],[-6,-12],[-7,-7],[-6,-1],[-2,10],[-1,10],[-3,6],[-2,4],[-2,7],[2,12],[5,4],[7,1],[5,3],[-9,6],[-3,5],[-3,9],[-1,9],[0,7],[1,12]],[[22935,90567],[5,9],[6,7],[7,2],[9,-6],[1,-20],[-1,-8],[-3,-4],[-6,-3],[-18,-17],[-24,-9],[-5,2],[-4,10],[0,7],[2,7],[5,7],[-5,5],[-5,3],[9,3],[19,-2],[8,7]],[[19663,90616],[26,12],[13,0],[9,-12],[-2,0],[-1,-1],[-1,-2],[0,-1],[-23,-9],[-12,1],[-9,12]],[[18295,90674],[14,-3],[31,5],[14,-7],[-12,1],[-6,-1],[-5,-4],[-64,4],[-4,1],[-8,6],[-4,1],[0,4],[11,4],[11,0],[22,-11]],[[18487,90697],[29,7],[16,0],[10,-11],[-6,-5],[-7,-3],[-65,-7],[-21,7],[6,4],[7,2],[38,-6],[6,4],[-3,3],[-3,1],[-4,0],[-3,0],[0,4]],[[19142,90661],[6,8],[33,20],[29,25],[10,3],[0,-2],[-1,-2],[-1,-4],[-5,-6],[-7,-20],[-6,-6],[-20,-4],[-22,-14],[-12,-4],[-4,6]],[[19985,90713],[-1,-18],[-3,-14],[-7,-9],[-8,-3],[-19,4],[-11,-3],[-5,1],[-3,6],[5,3],[1,5],[-1,7],[1,7],[4,7],[4,4],[9,7],[20,11],[10,-2],[4,-13]],[[19747,90693],[8,-1],[2,-11],[-3,-11],[-7,-5],[-9,2],[-55,33],[-12,15],[-4,22],[10,-8],[32,-16],[-6,10],[-2,3],[5,0],[12,-4],[2,1],[3,5],[1,1],[3,0],[13,-6],[9,-8],[5,-2],[0,-2],[-7,-18]],[[22509,90782],[0,-17],[-1,-8],[-1,-7],[3,-1],[9,-7],[-6,-11],[-8,-1],[-8,5],[-6,9],[-2,5],[-2,7],[-2,4],[-7,10],[-1,4],[8,-3],[17,15],[7,-4]],[[19623,90774],[6,-6],[5,-10],[2,-13],[-2,-14],[-7,-2],[-11,5],[-40,32],[-6,8],[5,-2],[6,-4],[6,-2],[4,4],[0,7],[-3,6],[-4,5],[-3,3],[3,6],[4,2],[9,-1],[7,-4],[3,-4],[1,-6],[2,-6],[4,-3],[9,-1]],[[19427,90798],[13,6],[13,11],[13,8],[13,-4],[0,-3],[-1,-2],[-10,-21],[-13,-6],[-14,-1],[-18,-11],[-8,-2],[-15,1],[-6,-3],[-7,-5],[-7,-3],[-8,3],[12,12],[14,11],[16,7],[13,2]],[[19484,90835],[20,12],[39,37],[21,4],[-2,-4],[-2,-4],[-3,-10],[-7,-1],[-6,1],[-6,-3],[-3,-7],[-1,-6],[-1,-5],[-5,-6],[-23,-18],[-13,-3],[-8,13]],[[18984,90920],[36,6],[8,-6],[-2,-3],[-2,-1],[-10,0],[-14,-4],[-5,-4],[-3,-8],[-2,-13],[-3,-7],[-9,-6],[-13,-3],[-12,5],[-4,16],[3,7],[6,4],[9,5],[0,3],[0,4],[-1,4],[2,1],[16,0]],[[22197,90961],[3,-6],[0,-5],[-2,-4],[-1,-6],[0,-22],[0,-6],[-9,-7],[-11,6],[-20,21],[9,2],[13,6],[9,10],[1,15],[2,1],[2,-1],[2,-2],[2,-2]],[[19212,91066],[10,-1],[12,-7],[11,-13],[5,-15],[-7,-1],[-2,1],[-47,-11],[-50,3],[-4,3],[5,6],[12,11],[55,24]],[[19265,91066],[35,0],[-9,-13],[-17,-3],[-19,2],[-12,6],[-4,4],[-4,7],[-2,7],[3,2],[17,-2],[9,1],[7,6],[2,-5],[-2,-4],[-1,-1],[-1,-2],[0,-1],[-2,0],[0,-4]],[[20975,91046],[3,-2],[3,-3],[4,-9],[7,-28],[-10,-17],[-18,-8],[-35,-3],[-17,10],[-16,5],[-9,8],[-16,6],[-10,6],[-29,31],[-10,17],[-6,7],[-7,0],[27,17],[28,5],[58,-5],[8,-7],[21,-7],[15,-17],[9,-6]],[[18342,91103],[4,3],[3,2],[30,-4],[20,-10],[-9,-9],[-48,9],[2,5],[-2,4]],[[18293,91139],[20,-17],[7,-10],[-6,-5],[-11,5],[-15,25],[-8,7],[3,3],[4,0],[3,-3],[3,-5]],[[21751,91196],[0,-8],[-1,-15],[-1,-5],[1,-7],[1,-7],[4,-15],[-4,-12],[-2,-5],[-3,-3],[-7,-1],[-24,9],[5,-5],[2,-5],[0,-5],[-5,-15],[-1,-8],[-2,-6],[-4,-5],[-6,1],[-11,12],[-5,3],[-7,2],[-13,10],[-8,1],[-8,-4],[-3,0],[-4,1],[-6,6],[-4,2],[-4,5],[-1,2],[-5,1],[-11,-1],[-6,2],[-12,8],[-10,4],[-17,14],[11,1],[14,6],[14,10],[14,15],[24,12],[3,2],[1,3],[1,6],[0,4],[0,4],[-1,2],[10,16],[12,1],[56,-22],[6,0],[7,1],[7,-1],[3,-11]],[[18201,91269],[4,3],[3,1],[3,0],[24,-3],[6,-5],[-5,-8],[-9,-2],[-10,3],[-9,5],[-7,6]],[[22165,91216],[-4,-6],[0,-4],[1,-4],[-1,-6],[-5,-2],[-14,4],[-6,-2],[-6,-9],[-4,-10],[-5,-9],[-8,-4],[-7,2],[-8,7],[-13,19],[13,8],[-3,10],[-4,4],[-5,0],[-5,-2],[-10,-6],[-5,-5],[1,-5],[-6,-10],[-7,2],[-5,10],[-2,14],[0,46],[2,27],[2,2],[4,-1],[3,3],[3,13],[-3,10],[-11,18],[14,10],[3,4],[2,11],[7,2],[37,-7],[12,-6],[10,-10],[-1,-14],[5,-8],[8,-6],[14,-16],[21,-3],[8,-10],[-15,-8],[4,-9],[-2,-8],[-4,-5],[-5,-2],[1,-7],[5,-9],[1,-5],[1,-8],[-2,0],[-3,1],[-3,-1]],[[22210,91383],[3,-7],[8,-12],[3,-5],[2,-9],[0,-7],[-4,-34],[-2,-7],[-4,-5],[-4,0],[-36,17],[-9,8],[-8,10],[-6,14],[-2,16],[2,11],[3,10],[4,7],[5,5],[9,6],[3,4],[3,9],[1,3],[3,3],[1,-7],[3,-4],[7,-6],[6,-2],[7,-5],[4,-7],[-2,-6]],[[21797,91444],[7,-7],[0,-13],[-6,-13],[-7,-12],[-4,-3],[-6,-3],[-11,-2],[-5,-2],[-5,-4],[-5,-1],[-6,7],[6,11],[17,9],[4,11],[-4,8],[-20,1],[-8,8],[9,19],[17,7],[18,-3],[11,-10],[0,-2],[-1,-2],[0,-2],[-1,-2]],[[12342,91561],[5,13],[8,0],[17,-8],[20,3],[10,-1],[9,-11],[-6,-9],[-2,-3],[6,-2],[13,4],[2,-8],[-1,-10],[-4,-9],[-5,-4],[-10,14],[-8,6],[-54,25]],[[21949,91618],[5,-3],[2,-3],[-3,-4],[-2,-3],[-2,-4],[-2,-2],[-3,-1],[-6,2],[-5,4],[-6,1],[-6,-7],[-3,-6],[-2,-6],[0,-7],[1,-5],[-5,0],[-8,-6],[-4,-2],[-4,2],[-4,4],[-3,1],[-3,-7],[2,-4],[-1,-4],[-3,-3],[-3,-2],[-4,1],[-11,7],[5,2],[5,3],[2,6],[-1,10],[-4,7],[-10,2],[-3,7],[11,-4],[8,1],[7,8],[6,15],[-17,12],[-6,0],[2,-5],[0,-3],[-5,0],[-3,3],[-9,12],[-14,14],[-2,0],[1,2],[5,16],[2,3],[3,3],[9,3],[9,1],[5,-3],[1,-3],[0,-3],[0,-3],[4,-9],[1,-1],[5,2],[3,2],[7,8],[3,2],[-2,-4],[3,-8],[3,-3],[22,-5],[5,-4],[-4,-5],[0,-4],[1,-2],[4,-2],[5,-5],[11,-6],[5,-5]],[[23179,91616],[-16,15],[-11,17],[-25,27],[0,4],[11,1],[3,-1],[2,-2],[5,-5],[3,-2],[3,-6],[2,-1],[26,5],[44,-2],[5,-2],[4,-4],[4,-7],[5,-6],[4,1],[9,7],[18,4],[6,12],[5,-1],[6,-4],[3,-7],[0,-9],[3,-9],[4,-9],[3,-10],[0,-13],[-2,-10],[-5,-8],[-7,-5],[4,-9],[2,-5],[0,-6],[-1,-7],[-3,-5],[-2,-5],[2,-8],[-24,6],[-12,7],[-11,12],[-15,26],[-5,7],[-25,11],[-15,2],[-7,4]],[[12797,91675],[12,-4],[-12,-4],[-5,0],[-19,8],[0,2],[0,2],[1,4],[4,1],[6,6],[21,14],[4,-1],[7,-4],[0,-1],[1,-3],[1,-3],[1,-1],[11,0],[-5,-7],[-28,-5],[0,-4]],[[23349,91582],[-11,9],[-5,7],[-2,10],[0,6],[-1,2],[0,2],[1,4],[4,6],[8,5],[3,6],[-1,6],[1,7],[8,31],[4,5],[6,3],[13,0],[4,2],[2,3],[5,11],[7,2],[21,-3],[7,-3],[-4,-8],[3,-2],[3,0],[4,2],[3,2],[4,3],[3,-2],[3,-3],[24,-20],[8,-4],[31,-29],[3,-5],[0,-11],[-1,-6],[-5,-15],[-1,-7],[-2,-13],[0,-17],[-3,-7],[-13,-4],[-6,-6],[-6,-14],[-3,-6],[-5,-2],[-50,-6],[-9,10],[2,1],[7,3],[-4,14],[2,10],[6,6],[10,3],[2,5],[-8,28],[-2,11],[1,4],[2,3],[2,4],[1,7],[-1,5],[-2,6],[-4,10],[-8,9],[-11,5],[-12,0],[-8,-4],[6,-30],[4,-13],[5,-10],[-21,-40],[-6,-17],[2,0],[0,-3],[0,-1],[0,-2],[2,-2],[-6,-9],[-10,0],[-12,4],[-8,5],[1,6],[-1,10],[0,5],[3,4],[11,12]],[[11357,91720],[9,-3],[19,-11],[17,-4],[9,-4],[8,-6],[6,-9],[-10,-8],[-23,5],[-11,-1],[-6,-5],[-11,-17],[-6,-7],[-8,-1],[-9,4],[-10,7],[-7,7],[-3,4],[-2,5],[-3,3],[-3,-2],[-4,-4],[-5,-2],[-4,0],[-4,0],[5,8],[27,28],[15,9],[14,4]],[[12340,91675],[-5,9],[3,9],[13,17],[7,6],[10,3],[20,1],[-2,-7],[-15,-30],[-7,-7],[-8,-5],[-8,0],[-8,4]],[[21631,91756],[2,-26],[-11,-10],[-14,4],[-7,14],[0,12],[0,8],[3,4],[19,6],[5,-2],[3,-10]],[[23551,91251],[2,-5],[-1,-3],[-2,-1],[-2,-1],[-3,-9],[-5,-10],[-5,-8],[-27,-24],[-7,-2],[-12,-10],[-25,-36],[-11,2],[4,16],[2,12],[-4,9],[-9,7],[-38,-14],[-6,0],[-2,5],[-5,0],[-5,-2],[-3,-5],[3,-11],[1,-7],[-4,-3],[-8,-4],[-5,-11],[-1,-14],[4,-15],[-11,-5],[-21,11],[-12,-2],[-3,-4],[-10,-16],[-5,-6],[-5,-4],[-5,-2],[-6,-1],[-8,-3],[-40,-50],[-8,-5],[-54,-15],[-11,3],[-21,11],[-22,5],[-46,23],[-18,5],[-11,8],[-10,4],[-5,4],[-4,6],[-4,7],[-4,6],[-6,3],[-12,1],[10,-20],[4,-11],[-3,-6],[-5,-1],[-10,-6],[-5,-1],[-6,1],[-17,7],[-17,2],[-19,10],[-5,0],[-5,-2],[-5,-4],[-6,-3],[-27,17],[-25,26],[-9,3],[-7,4],[-14,19],[-8,5],[-13,-1],[-44,23],[-13,3],[-5,-3],[-8,-10],[-4,-4],[-5,1],[-3,3],[-5,8],[-4,4],[-15,9],[-14,15],[-6,10],[0,9],[6,13],[5,10],[-1,8],[-10,8],[-20,11],[-12,2],[-6,-7],[2,-13],[4,-10],[1,-11],[-3,-13],[-7,-9],[-12,-4],[-12,2],[-8,9],[-5,13],[-4,4],[-16,5],[-3,-1],[-5,-5],[-2,-2],[-11,1],[-40,25],[-3,6],[-1,9],[1,9],[3,8],[4,5],[7,3],[1,3],[1,4],[0,5],[-1,4],[-2,1],[-13,6],[-17,2],[-10,7],[-3,0],[-3,-1],[-3,-3],[-1,-5],[1,-5],[1,-3],[-1,-3],[-4,-7],[-5,0],[-5,4],[-6,3],[-12,2],[-2,-3],[4,-8],[14,-16],[5,-8],[-8,-5],[-16,-3],[-8,-4],[-7,-8],[-3,-1],[-4,3],[-10,12],[-6,3],[-8,5],[-34,13],[-7,5],[-4,7],[3,9],[-5,14],[-6,11],[-16,16],[-9,6],[-4,5],[-2,7],[1,9],[4,7],[9,13],[15,27],[9,8],[11,3],[17,-4],[3,0],[3,4],[8,11],[4,2],[5,-8],[5,4],[5,-2],[5,-4],[4,-3],[6,0],[15,5],[35,-5],[11,7],[8,11],[4,5],[5,1],[25,-3],[8,2],[11,5],[10,9],[1,12],[2,0],[-3,10],[0,10],[3,10],[6,8],[7,9],[4,2],[4,-2],[9,-11],[5,-4],[5,0],[3,3],[5,10],[4,4],[5,1],[16,-1],[8,2],[4,6],[0,9],[-5,11],[-12,14],[-27,18],[-15,22],[-1,3],[1,6],[3,5],[2,5],[3,3],[4,1],[20,-8],[11,-2],[9,6],[-32,14],[-15,13],[-2,22],[6,11],[7,5],[24,-1],[26,-9],[5,-8],[3,-6],[12,-12],[6,-15],[26,-19],[16,1],[4,-2],[1,-4],[-1,-12],[4,-7],[10,0],[10,5],[6,8],[-43,31],[-11,16],[-12,22],[-3,4],[-3,2],[-8,8],[-4,2],[-10,2],[-4,3],[-4,3],[7,13],[2,6],[2,10],[1,8],[-1,14],[0,6],[5,17],[8,16],[18,24],[7,4],[14,1],[7,3],[5,5],[10,24],[12,15],[13,6],[13,0],[14,-5],[4,-5],[10,-6],[27,-6],[6,-3],[3,-5],[0,-5],[0,-5],[1,-6],[4,-6],[12,-5],[5,-3],[39,-10],[7,-6],[3,-15],[9,-9],[18,-11],[-10,-10],[-22,-1],[-10,-9],[18,-32],[11,-12],[4,-2],[1,7],[1,7],[11,31],[4,9],[5,6],[3,-1],[4,-3],[13,-5],[29,-33],[5,-9],[3,-12],[2,-6],[3,-2],[8,-3],[42,-45],[10,-6],[18,5],[7,-7],[15,-17],[9,-4],[17,-2],[24,-10],[8,-10],[2,-2],[5,-2],[19,-18],[25,-11],[28,-25],[10,-13],[4,-17],[-2,-7],[-8,-12],[-2,-11],[-1,-11],[-2,-8],[-3,-6],[-5,-6],[8,-11],[2,-13],[-2,-14],[-4,-14],[3,-10],[7,-8],[8,-5],[6,-2],[8,2],[1,5],[-8,16],[-2,10],[1,7],[3,8],[1,9],[-1,11],[-3,6],[-1,6],[3,9],[10,11],[2,4],[1,5],[2,6],[4,5],[2,2],[6,-3],[3,-8],[5,-19],[5,-8],[9,-11],[4,-8],[1,-3],[1,-8],[1,-5],[5,-16],[-4,-2],[-5,-5],[-4,-7],[-2,-7],[1,-6],[7,-9],[2,-7],[1,-4],[4,-5],[5,-4],[8,-3],[3,-3],[3,-7],[2,-8],[1,-14],[-1,-13],[1,-11],[5,-9],[5,-1],[4,4],[3,5],[5,2],[17,-5],[4,-3],[4,-6],[0,-4],[0,-5],[2,-5],[3,-6],[4,-2],[4,-1],[16,3],[49,37],[12,4],[11,-5],[9,-9],[4,-4],[8,-2],[5,-3],[1,-2]],[[22926,91866],[-6,8],[-2,10],[2,11],[6,8],[9,2],[12,-3],[12,-6],[5,-10],[-2,-3],[-2,-4],[-4,-9],[9,-9],[20,1],[7,-9],[-6,-11],[-7,-1],[-7,5],[-6,7],[-10,8],[-20,1],[-10,4]],[[15289,92024],[-3,-1],[-2,-3],[-3,-3],[-1,-5],[1,0],[-6,-7],[-16,7],[-8,-4],[13,-8],[-5,-4],[-5,0],[-6,1],[-5,3],[1,10],[4,8],[6,4],[30,4],[5,-2]],[[18565,92110],[30,-1],[22,-6],[9,-6],[-4,-3],[-5,-1],[-51,0],[-13,8],[4,0],[3,3],[2,4],[3,2]],[[22016,92110],[-3,-3],[-3,-5],[-2,-4],[-2,-5],[1,-6],[2,-4],[1,-3],[-2,-3],[-7,-1],[-8,8],[-13,17],[3,2],[3,3],[1,5],[-1,6],[6,3],[10,-1],[9,-3],[5,-6]],[[18902,92117],[20,-4],[58,-3],[-121,-7],[-57,27],[-3,6],[3,6],[7,1],[53,-9],[40,-17]],[[17593,92219],[15,-2],[7,-5],[4,-9],[-10,5],[-41,0],[-9,3],[-8,6],[-4,10],[11,0],[35,-8]],[[17704,92251],[30,-1],[9,-7],[-29,0],[-5,-2],[-10,-8],[-5,-2],[-15,1],[-27,-4],[-7,1],[-5,6],[7,8],[7,3],[9,0],[8,-5],[9,0],[15,12],[9,-2]],[[17577,92255],[12,6],[19,2],[19,-3],[9,-9],[-9,-4],[-56,-1],[-9,5],[7,4],[4,1],[4,-1]],[[17809,92269],[6,2],[8,-2],[6,-5],[-3,-7],[-15,-9],[-17,-2],[-34,5],[16,5],[5,4],[22,5],[6,4]],[[17484,92263],[39,-3],[10,-9],[-8,-5],[-26,5],[-61,-5],[-15,5],[-8,12],[18,13],[7,0],[44,-13]],[[14379,92316],[9,0],[13,-7],[12,-11],[8,-10],[-3,-5],[-2,-2],[-3,0],[-3,3],[1,-13],[-5,-6],[-8,0],[-6,3],[-9,10],[-6,2],[-4,-9],[2,-1],[1,-4],[1,-3],[-7,-3],[-21,-13],[7,16],[17,45],[6,8]],[[22124,92215],[-30,4],[-54,32],[-7,14],[1,11],[2,13],[1,9],[-2,9],[-3,8],[-8,13],[7,2],[30,-14],[8,4],[9,7],[9,1],[7,-12],[13,-12],[15,-5],[4,-3],[-4,-3],[-1,-1],[5,-6],[20,-2],[11,-7],[11,-9],[-5,-7],[-7,0],[-8,3],[-13,10],[-8,2],[-7,-1],[-7,-4],[7,-9],[15,-9],[7,-10],[0,-11],[9,-17],[7,-15],[-9,-5],[-6,3],[-12,12],[-7,5]],[[15014,93087],[-5,2],[-6,3],[-2,4],[4,3],[5,0],[15,-11],[-11,-1]],[[19303,93461],[4,-1],[2,-2],[3,-4],[1,-5],[-19,-1],[-10,4],[-5,13],[12,1],[7,-1],[5,-4]],[[19334,93477],[4,0],[4,0],[3,-3],[2,-5],[-40,8],[7,2],[20,-2]],[[19357,93497],[10,-4],[-7,-9],[-10,-1],[-20,6],[6,4],[7,3],[14,1]],[[21980,91811],[-2,-15],[-5,-13],[-6,-8],[-8,-3],[0,-4],[7,-9],[-1,-12],[-11,-21],[-4,-1],[-20,3],[-7,-4],[-4,0],[-6,4],[-7,8],[-4,6],[-2,-1],[-1,-3],[-1,-2],[-25,-8],[-11,2],[-9,5],[-8,10],[-6,15],[0,6],[-14,21],[-10,34],[-2,4],[4,10],[9,18],[0,13],[-4,5],[-5,-2],[-5,-7],[-21,-57],[-4,-18],[-1,-13],[-4,-9],[-15,-21],[-4,-8],[-6,-21],[-3,6],[-1,5],[0,5],[-2,5],[-3,6],[-40,33],[-4,2],[-4,-3],[-6,-6],[-5,-2],[-5,4],[-12,21],[-6,8],[-3,4],[-3,6],[0,2],[0,8],[-2,15],[-5,5],[-6,-2],[-11,-10],[-4,-2],[-9,0],[-2,3],[-3,5],[-1,6],[0,4],[3,13],[-3,11],[-7,8],[-6,3],[-8,-5],[0,-11],[5,-24],[-17,0],[-8,-4],[-6,-9],[8,-8],[3,-6],[3,-6],[-3,-6],[-4,-7],[-4,-5],[-3,-2],[-7,0],[-1,2],[2,5],[1,9],[-2,7],[-3,6],[-3,3],[-2,-6],[0,-9],[-1,-5],[-2,-3],[-4,-1],[-2,1],[-5,5],[-3,2],[-3,0],[-3,-1],[-2,-1],[-9,-16],[-4,-4],[-12,-6],[-3,-1],[-3,2],[-5,5],[-6,4],[-5,4],[-3,1],[-3,-8],[19,-25],[10,-9],[25,-5],[-1,-13],[-5,-19],[4,-21],[-2,-3],[-1,-2],[-1,-2],[-2,-2],[0,-3],[1,-7],[1,-2],[-8,-6],[-9,-4],[-18,-2],[-16,4],[-6,0],[-19,-9],[-10,2],[-15,12],[-38,13],[-4,6],[-18,2],[-19,13],[-18,18],[-13,20],[-8,8],[-7,-3],[-7,-5],[-9,0],[-2,3],[-2,5],[-3,5],[-4,3],[-5,0],[-14,-8],[3,-11],[-2,-10],[-7,-24],[17,-3],[34,-24],[29,-11],[9,-13],[7,-18],[8,-31],[3,-6],[3,1],[5,10],[1,9],[-1,13],[-1,12],[4,4],[7,-1],[5,-3],[4,-8],[3,-12],[1,-5],[0,-10],[1,-5],[1,-4],[3,-7],[2,-5],[-3,-7],[-7,-19],[-4,-7],[5,-13],[1,-10],[-2,-28],[-4,-13],[-10,-10],[-33,-18],[-4,-5],[-2,-6],[0,-3],[1,-4],[1,-5],[-1,-7],[-2,-6],[0,-5],[2,-7],[4,-5],[4,-3],[4,1],[4,5],[1,5],[2,13],[3,6],[3,5],[10,10],[11,6],[7,11],[20,46],[5,5],[9,7],[4,6],[1,6],[0,7],[1,7],[3,2],[1,1],[2,2],[2,2],[1,1],[0,5],[2,2],[37,2],[10,8],[11,5],[22,0],[9,9],[9,25],[6,6],[22,2],[10,3],[12,8],[6,1],[18,-8],[37,-1],[8,-3],[24,-25],[8,-12],[-2,-9],[-25,-29],[-23,6],[-11,-5],[-4,-4],[2,-4],[-2,0],[1,-11],[-1,-5],[4,0],[6,6],[3,2],[5,1],[1,-1],[1,-4],[2,-6],[7,-7],[6,-4],[3,-5],[-5,-13],[-6,-11],[-4,-4],[-4,3],[-7,10],[-7,8],[-7,4],[-8,-2],[-7,-10],[3,-3],[2,-5],[1,-5],[-2,-7],[3,-3],[8,-4],[4,-1],[3,-2],[5,-10],[6,-5],[7,-2],[7,3],[2,14],[3,10],[7,8],[8,5],[13,6],[6,0],[5,-4],[5,-9],[10,-12],[12,-6],[11,-9],[4,-20],[-3,-22],[-8,-17],[-19,-29],[3,-6],[5,-4],[5,-5],[2,-8],[-3,-6],[-7,-4],[-33,-12],[-7,3],[-5,5],[-4,5],[-4,5],[-5,2],[-6,-2],[-5,-5],[-9,-13],[-6,-7],[-5,-2],[-13,1],[-27,-9],[-7,3],[-13,7],[-7,-1],[3,-9],[3,-8],[-2,-6],[-4,-5],[-4,-4],[-8,-3],[-3,-4],[-3,-6],[-4,-4],[-10,-4],[-31,0],[-2,2],[-15,13],[-9,4],[-6,1],[-4,-4],[4,-10],[7,-10],[6,-4],[-3,-7],[-6,-4],[-26,-2],[-5,-2],[-19,-13],[-14,-4],[-13,2],[-16,10],[-11,4],[-3,2],[-3,4],[-2,2],[-7,2],[-46,-6],[-5,-5],[-4,-6],[-1,-7],[4,-7],[-9,-4],[-9,0],[-9,4],[-14,10],[-13,12],[-6,3],[-4,-2],[-7,-5],[-3,-2],[-28,6],[-13,7],[-5,1],[-13,-1],[-10,2],[-17,12],[-10,2],[-28,-6],[-10,2],[-27,13],[-7,7],[-3,5],[-1,3],[0,3],[-3,10],[0,4],[-2,4],[-2,4],[-12,-5],[2,-6],[6,-7],[2,-7],[-10,1],[-17,13],[-22,7],[-4,-3],[-1,-4],[-1,-8],[-2,-4],[-15,-21],[-18,-6],[-74,10],[-73,9],[-9,4],[-12,16],[-7,7],[-9,6],[-6,2],[8,1],[7,4],[7,6],[5,11],[9,6],[23,-9],[9,9],[-4,7],[-1,1],[24,8],[13,11],[0,16],[-6,6],[-9,5],[-30,7],[-6,0],[-7,-8],[6,0],[8,-3],[6,-5],[4,-8],[-48,9],[-12,8],[-56,4],[-3,3],[-6,12],[-4,6],[-8,9],[-4,2],[-94,13],[-12,-6],[-11,-10],[-4,-1],[-6,0],[-19,7],[-36,-6],[-35,17],[-23,6],[-1,3],[0,7],[2,12],[2,7],[4,5],[26,15],[5,10],[-2,16],[-2,3],[-3,3],[-3,3],[-1,7],[-2,26],[0,7],[1,2],[0,2],[-4,6],[-5,5],[-6,3],[-6,3],[-6,1],[-7,4],[-20,28],[-9,7],[-11,2],[-10,-4],[-12,-16],[-9,-7],[-3,-4],[-2,-2],[-5,0],[-3,-2],[0,-3],[0,-4],[0,-4],[-1,-9],[0,-7],[0,-6],[-1,-6],[-5,-2],[-43,-3],[-11,-5],[-8,-10],[0,-11],[9,-18],[3,-19],[2,-6],[4,-9],[0,-7],[-3,-7],[-4,-6],[-3,-2],[-18,-2],[-3,-6],[1,-6],[2,-9],[0,-6],[-5,2],[-17,4],[-17,-15],[-29,-47],[-17,-19],[-39,-20],[-113,-22],[-17,-8],[-81,-5],[-26,11],[-59,-3],[-8,-7],[6,-8],[3,-4],[1,-5],[-2,-6],[-3,-7],[-4,-5],[-11,-5],[-18,-18],[-37,-26],[-18,-5],[-15,-18],[-9,-7],[-21,-9],[-88,-17],[-77,-34],[-45,-5],[-33,4],[-23,-8],[-48,4],[-19,-3],[-18,-13],[-15,-15],[-8,-2],[-7,7],[-6,9],[-6,4],[-35,5],[-10,-1],[-15,-17],[-9,-2],[-19,0],[-61,-22],[-17,9],[4,5],[6,4],[44,10],[-1,4],[-5,4],[-6,2],[-36,-6],[-17,-10],[-8,-3],[-70,4],[-16,-5],[13,-10],[32,-2],[14,-5],[-12,-18],[-27,1],[-51,13],[-100,-8],[-99,-8],[-5,1],[-4,3],[-5,1],[-10,-8],[-5,-2],[-11,-3],[-53,4],[-6,-1],[-3,-3],[-10,-14],[-2,-2],[-3,-2],[-7,1],[-15,-6],[-42,7],[-96,-13],[-11,4],[-5,9],[1,9],[10,7],[14,1],[41,-9],[7,3],[-3,9],[-15,16],[-10,7],[-23,8],[-16,12],[-19,6],[-4,3],[-7,11],[-2,2],[-7,5],[-6,11],[-3,13],[4,11],[-4,9],[-5,7],[-22,18],[-4,5],[-4,8],[-5,7],[-11,7],[-5,6],[-4,9],[-1,7],[3,5],[8,2],[4,4],[-4,9],[-10,13],[-3,9],[2,7],[10,10],[7,11],[5,3],[4,5],[2,4],[0,2],[-3,5],[0,11],[2,13],[2,7],[-19,0],[3,8],[7,2],[14,-1],[-5,7],[-19,12],[-4,7],[-1,4],[-2,9],[-1,5],[0,1],[-1,1],[-1,2],[0,4],[1,0],[9,4],[-15,10],[-3,4],[1,6],[2,2],[1,4],[-2,7],[6,0],[11,-7],[35,-5],[-9,9],[-12,7],[-84,17],[-3,4],[-7,9],[-6,4],[-22,-6],[-31,1],[-20,9],[-9,9],[-5,1],[-39,3],[-128,-21],[-12,6],[-7,9],[-4,2],[-18,2],[-7,-2],[-5,-5],[-8,-11],[-10,-5],[-21,-2],[-109,17],[-109,17],[-4,4],[-4,4],[-3,5],[-5,5],[-6,3],[-26,3],[-79,38],[-27,6],[-29,28],[3,9],[6,5],[12,6],[-4,6],[-5,5],[-4,5],[-2,8],[7,5],[1,6],[-4,5],[-7,5],[-39,4],[3,-6],[12,-10],[-7,-4],[-8,3],[-14,15],[-26,10],[-6,8],[16,9],[6,7],[-2,9],[-1,4],[-4,4],[-13,4],[-13,10],[-25,6],[-11,6],[-13,16],[-19,12],[-7,2],[-4,5],[-4,11],[-2,12],[-1,7],[-2,9],[-12,23],[-11,28],[-4,21],[-5,9],[-12,13],[8,16],[7,11],[8,7],[17,6],[29,21],[64,22],[61,10],[65,10],[133,34],[109,17],[113,9],[50,10],[80,6],[71,14],[90,1],[40,-21],[110,-11],[46,13],[72,-14],[63,-17],[7,3],[-4,6],[-2,2],[7,2],[28,-6],[9,-7],[68,-19],[10,0],[8,5],[-4,4],[-13,4],[7,10],[8,4],[18,-1],[4,-1],[9,-6],[4,-1],[12,4],[4,0],[0,4],[-13,4],[5,7],[9,3],[48,0],[8,6],[-37,4],[-10,8],[13,7],[90,-27],[28,6],[33,-7],[22,11],[25,-6],[7,0],[15,7],[7,5],[-9,5],[-23,-3],[-8,11],[7,3],[14,3],[7,5],[-8,12],[-14,5],[-67,-5],[-19,9],[-24,5],[-5,2],[-9,9],[-12,8],[-4,4],[-1,4],[-2,10],[-1,4],[-10,21],[-6,8],[-8,6],[-7,1],[-18,-1],[-5,1],[-14,11],[-6,0],[-11,-7],[-6,-1],[-3,4],[-2,6],[-2,4],[-5,2],[-4,-2],[-8,-8],[-5,-2],[-6,1],[-13,5],[-15,14],[-12,7],[-12,4],[-26,3],[-7,-3],[-6,-16],[-6,3],[-10,11],[-36,14],[-9,12],[-6,5],[-6,-1],[-14,-6],[-4,2],[-3,6],[-2,6],[1,6],[0,4],[-43,0],[-14,4],[-21,16],[-4,2],[-3,-2],[-2,-3],[0,-3],[0,-4],[-1,-4],[-10,-8],[-11,4],[-10,9],[-14,7],[-9,8],[-75,15],[-13,-4],[-30,-22],[-11,-3],[-45,11],[-14,-4],[-30,-21],[-102,-9],[-48,-15],[-55,5],[-70,-7],[-5,-2],[-9,-9],[-4,-1],[-6,0],[-41,16],[-86,-16],[-41,11],[-6,5],[1,6],[10,2],[-6,8],[-12,4],[-97,-4],[-19,-12],[-9,-3],[-85,-4],[-69,11],[-26,-10],[-6,6],[2,4],[-8,5],[-39,-5],[-1,-1],[0,-3],[0,-3],[0,-1],[-5,-2],[-4,-1],[-10,3],[-31,17],[-11,16],[8,19],[-7,11],[-10,9],[-11,7],[-18,5],[-87,54],[-24,23],[-13,17],[-25,40],[-3,9],[10,19],[81,44],[82,44],[90,9],[105,34],[55,-2],[13,5],[9,9],[-1,1],[-3,3],[-1,0],[9,12],[137,36],[12,7],[46,8],[7,-6],[-27,-8],[6,-4],[7,0],[8,2],[14,8],[79,3],[10,11],[-16,4],[-33,0],[-45,16],[-39,3],[-2,6],[7,5],[39,0],[85,39],[-5,-8],[3,-7],[6,-1],[32,9],[8,-5],[-4,-3],[9,-8],[22,-2],[19,-10],[9,5],[9,7],[8,3],[33,4],[17,13],[25,12],[-15,6],[-52,-23],[-37,-4],[-19,3],[-16,9],[0,4],[28,8],[0,5],[-43,10],[-59,-4],[-18,-11],[-26,-2],[-18,-7],[-25,-4],[-14,-5],[-102,-12],[-23,-15],[-27,0],[-24,-13],[-29,-3],[-35,6],[-6,-3],[-5,-4],[-12,-5],[-10,-3],[-10,-5],[-6,-1],[-18,2],[-21,-10],[-7,-1],[-6,1],[-1,4],[2,5],[2,15],[5,9],[1,5],[-3,4],[-23,-2],[3,5],[2,2],[2,1],[-5,9],[-9,6],[-10,4],[-8,1],[1,-2],[0,-2],[1,-2],[2,-2],[-9,-5],[-8,-3],[-5,-2],[-1,-6],[3,-6],[4,-2],[20,0],[10,-5],[5,-12],[-3,-8],[-5,-9],[-7,-7],[-4,-4],[-44,8],[2,4],[-4,6],[-3,0],[-4,-3],[-8,-11],[-4,-3],[-4,-1],[-12,2],[-11,5],[-5,1],[-73,-5],[-22,9],[-19,23],[0,22],[16,19],[35,22],[54,4],[41,-10],[7,6],[-17,8],[-5,4],[21,1],[20,-4],[5,3],[5,8],[-10,6],[-23,2],[-11,4],[-3,6],[-2,2],[-18,6],[-3,-1],[-4,-1],[-2,-2],[0,-3],[-1,-2],[-3,-1],[-4,2],[-3,5],[0,6],[2,8],[5,5],[21,-1],[48,16],[-8,5],[-98,-7],[-16,-9],[-13,-14],[2,-11],[-9,-6],[-26,-4],[-16,1],[-5,-1],[-10,-7],[-5,0],[2,7],[6,7],[2,6],[-2,7],[-4,4],[-12,6],[-1,7],[-8,3],[-15,2],[-13,5],[-4,-1],[-3,-3],[-5,-8],[-3,-1],[-4,1],[-5,5],[-3,2],[-40,0],[-9,-2],[3,-6],[-3,-6],[-4,-5],[-4,-3],[-4,-3],[2,-6],[2,-4],[7,-6],[-6,-6],[-10,4],[-20,16],[-4,2],[-6,1],[-5,3],[-2,7],[-10,18],[-2,12],[-5,28],[-3,11],[-2,11],[2,14],[6,25],[2,25],[3,10],[4,12],[6,10],[30,33],[34,28],[21,9],[9,11],[2,5],[1,6],[-1,6],[-4,4],[5,11],[8,9],[28,22],[37,2],[88,27],[6,12],[-6,36],[-13,18],[-19,4],[-52,0],[-19,11],[-6,2],[-6,3],[-7,9],[-6,12],[-2,12],[7,29],[16,19],[63,47],[10,3],[3,2],[3,5],[6,11],[4,6],[6,4],[12,4],[24,14],[10,1],[38,17],[16,21],[59,36],[14,19],[18,13],[7,9],[16,23],[8,7],[45,3],[27,13],[60,13],[70,40],[14,15],[27,1],[11,5],[5,3],[33,11],[33,15],[53,13],[68,27],[54,9],[48,19],[4,4],[4,5],[5,5],[5,3],[4,1],[24,0],[7,3],[22,15],[61,15],[47,27],[17,7],[26,4],[49,-22],[40,-7],[19,-16],[48,-57],[11,-21],[5,-12],[2,-10],[-1,-10],[-12,-30],[-1,-5],[0,-7],[1,-5],[0,-5],[-1,-5],[-2,-5],[-6,-7],[-2,-5],[1,0],[-1,-8],[-1,-7],[-1,-1],[3,-9],[3,-6],[1,-6],[-1,-11],[-1,-3],[-3,-3],[-3,-4],[-1,-7],[1,-6],[1,-4],[4,-6],[13,-13],[6,-9],[-4,-9],[-11,-6],[-61,-4],[-3,-2],[-8,-14],[-15,-5],[-6,-6],[3,-11],[1,-5],[1,-11],[1,-4],[6,-5],[13,6],[5,-4],[-6,-1],[-12,-8],[-25,-10],[-6,-5],[-9,-10],[-4,-4],[-37,-10],[2,0],[4,-2],[3,-3],[6,-7],[-2,-10],[3,-2],[10,4],[29,-9],[13,0],[6,3],[5,17],[6,3],[12,2],[36,21],[67,15],[-4,-8],[12,-7],[15,2],[68,35],[14,2],[-14,-18],[-34,-20],[-15,-14],[6,-4],[8,0],[7,3],[6,5],[2,3],[1,4],[2,4],[2,1],[7,2],[30,13],[11,11],[0,15],[3,7],[2,3],[2,2],[-8,12],[-32,2],[-13,4],[0,10],[9,12],[25,25],[25,42],[55,48],[50,14],[20,-7],[23,0],[5,-2],[10,-8],[4,-2],[71,-14],[45,-27],[26,-7],[56,-3],[19,-10],[24,-6],[12,-9],[46,-15],[19,-12],[26,-2],[13,-7],[6,-7],[5,-7],[0,-2],[0,-7],[0,-3],[3,-1],[8,-1],[10,-4],[23,-2],[24,-8],[-1,-9],[-1,-4],[-1,-3],[5,-7],[1,-7],[-2,-8],[-8,-19],[-2,-8],[-2,-16],[-2,-5],[-6,-8],[-57,-32],[4,-3],[6,-1],[4,-2],[2,-6],[-3,-4],[-32,-26],[-81,-35],[-9,-8],[-5,-13],[4,0],[5,-2],[8,-8],[6,-3],[8,0],[13,5],[16,14],[8,2],[4,-11],[-4,-10],[-17,-13],[0,-8],[0,-10],[-6,-10],[-8,-10],[-4,-9],[4,-7],[5,-2],[5,3],[7,11],[1,5],[0,4],[1,4],[6,9],[5,14],[4,2],[9,-2],[4,0],[3,2],[8,8],[23,9],[17,13],[-5,5],[-7,-2],[-12,-6],[-14,-1],[-6,3],[-5,6],[-3,5],[-1,3],[2,3],[4,5],[4,4],[12,7],[15,3],[10,4],[9,9],[8,12],[9,9],[14,5],[15,0],[10,-4],[-2,-5],[-2,-3],[-5,-5],[-29,-11],[-7,-9],[5,-1],[13,1],[6,-4],[-21,-18],[-5,-10],[7,-4],[5,3],[4,7],[7,6],[4,0],[11,-2],[4,-2],[1,-4],[5,-10],[0,-2],[17,-1],[7,-4],[8,-8],[7,-11],[4,-6],[6,-3],[-1,17],[-6,12],[-6,12],[-4,12],[1,20],[9,8],[11,5],[9,12],[-6,8],[2,5],[7,4],[8,2],[42,-3],[-7,13],[-4,6],[-2,9],[30,27],[7,5],[7,0],[15,-12],[9,-3],[18,-1],[11,4],[2,-2],[-1,-6],[-2,-4],[-28,-15],[-3,-5],[2,-6],[7,-7],[7,-5],[5,-2],[4,-1],[16,-5],[7,-5],[11,-5],[7,-6],[8,-4],[8,5],[-50,27],[-13,14],[5,7],[8,5],[8,2],[6,-1],[2,1],[2,3],[4,9],[4,5],[4,1],[8,0],[7,-2],[11,-11],[13,-5],[21,-29],[15,-11],[7,-2],[1,-2],[6,-9],[2,0],[11,11],[2,0],[7,3],[32,-10],[8,-6],[8,-3],[7,3],[-6,9],[-51,23],[-5,4],[-10,9],[-61,28],[7,7],[10,1],[28,-7],[26,-22],[1,-1],[32,-18],[10,-1],[9,2],[8,7],[-3,4],[-8,13],[-3,3],[-5,1],[-5,3],[-10,8],[-6,10],[-3,10],[-4,9],[-13,12],[-16,14],[-11,7],[-10,-3],[-10,-6],[-13,-1],[-13,5],[-7,12],[27,3],[7,5],[-7,10],[-3,7],[2,6],[22,1],[21,-5],[11,-6],[36,-21],[10,-2],[5,0],[1,4],[-2,4],[-6,6],[-3,4],[5,7],[6,2],[12,0],[-7,8],[-31,2],[-11,4],[-12,8],[-3,0],[-13,5],[-15,0],[-12,-5],[-11,-7],[-11,-3],[-7,1],[-4,2],[1,4],[7,5],[10,3],[6,3],[3,6],[-1,8],[-7,4],[-2,6],[-7,9],[-70,9],[-13,6],[-11,11],[-11,20],[-6,8],[-14,8],[-10,10],[-8,12],[-2,11],[5,10],[9,5],[87,-4],[87,-4],[20,-7],[28,-8],[4,-4],[2,-5],[0,-5],[-1,-3],[1,-3],[8,-9],[8,1],[18,8],[20,-4],[18,-8],[-6,-10],[-23,-2],[-7,-9],[105,-65],[-3,-3],[-5,-9],[61,9],[6,-3],[9,-8],[4,-2],[-4,-2],[-4,-2],[-3,-2],[-3,-6],[30,-21],[31,-9],[1,-5],[-4,-4],[-21,-6],[3,-8],[-1,-6],[-4,-6],[-4,-4],[5,-7],[3,-1],[-2,-3],[-3,-7],[-1,-2],[7,-3],[24,6],[19,-5],[7,2],[-3,5],[-3,3],[-7,4],[6,7],[54,-17],[11,-7],[5,-10],[1,-11],[4,-8],[2,-8],[-1,-11],[-3,-4],[-4,-3],[-3,-4],[-2,-7],[0,-6],[-3,-12],[-2,-18],[-1,-9],[-1,-10],[1,-12],[4,-9],[10,-14],[5,-8],[15,-51],[1,-4],[-1,-16],[0,-6],[-1,-6],[6,-4],[9,-2],[7,3],[1,11],[4,1],[4,-2],[4,-3],[3,-4],[-2,-4],[-2,-3],[-3,-1],[-3,0],[0,-4],[7,-1],[2,-6],[1,-10],[2,-8],[-1,-11],[-1,-5],[2,-8],[-1,-11],[-5,-22],[18,2],[9,-2],[7,-8],[-9,-20],[-4,-4],[7,0],[17,17],[9,3],[9,-4],[0,-8],[-9,-22],[-7,-8],[-8,-5],[-5,-5],[4,-12],[3,-3],[4,-3],[2,-3],[0,-8],[-1,-6],[-10,-14],[6,-9],[7,-6],[9,-4],[7,-1],[2,-2],[1,-5],[0,-5],[-1,-4],[-4,-3],[-16,-6],[14,-10],[28,10],[14,-4],[8,-8],[7,-11],[4,-14],[-2,-15],[19,-2],[17,-13],[6,-1],[5,3],[3,0],[4,2],[7,-1],[7,2],[4,10],[-17,17],[-4,3],[-5,1],[-4,5],[-1,8],[1,10],[9,15],[13,-4],[13,-10],[11,-2],[10,12],[9,15],[10,13],[12,5],[75,13],[-8,8],[-9,5],[-18,3],[-6,3],[-12,14],[-9,5],[2,4],[7,6],[3,0],[24,-9],[10,2],[10,6],[6,10],[-6,4],[-17,4],[-17,8],[-6,0],[1,9],[0,10],[-3,10],[-5,3],[-11,3],[-23,11],[-11,3],[-4,4],[-5,11],[-4,13],[-2,8],[3,6],[7,2],[2,7],[-2,3],[-8,7],[-4,4],[3,0],[5,4],[-40,8],[2,8],[-1,5],[-2,5],[-1,4],[0,29],[-2,14],[-6,8],[-7,8],[-7,10],[1,6],[7,1],[8,-2],[10,-9],[6,-3],[7,3],[2,8],[-4,15],[-11,7],[-12,6],[-9,7],[9,4],[3,4],[0,8],[-4,5],[-9,4],[-4,5],[-2,14],[18,4],[6,13],[-15,1],[-15,5],[-13,9],[-12,17],[30,4],[-2,7],[-2,6],[1,7],[3,9],[-7,12],[-9,8],[-22,8],[3,6],[4,2],[4,1],[4,3],[-15,13],[-3,10],[5,13],[-3,6],[-6,7],[-3,6],[-7,9],[-2,6],[3,3],[4,7],[-3,14],[-9,24],[-8,12],[-3,6],[-1,10],[5,5],[5,3],[1,6],[-4,6],[-10,9],[-3,4],[-1,9],[2,7],[3,5],[4,3],[-9,13],[-16,17],[-2,5],[2,2],[10,-1],[5,1],[4,3],[-30,30],[-9,19],[11,25],[26,17],[27,1],[55,-10],[-10,13],[-41,15],[-5,4],[-9,9],[-4,6],[-1,3],[0,8],[0,3],[-2,2],[-5,3],[-3,3],[9,5],[31,-1],[-5,8],[-10,9],[-6,7],[21,0],[61,-16],[37,1],[39,-20],[18,-4],[33,-23],[12,-5],[7,-8],[11,-5],[16,-14],[27,-10],[10,0],[7,11],[-6,8],[-26,20],[9,9],[3,7],[-1,9],[7,1],[10,8],[6,3],[3,-1],[10,-4],[3,1],[9,8],[12,1],[14,-3],[13,-8],[9,-10],[11,-21],[8,-9],[31,-9],[6,4],[1,4],[0,3],[0,3],[3,0],[3,0],[3,-2],[3,-3],[3,-3],[2,-6],[0,-10],[2,-4],[3,-3],[10,-6],[5,-12],[6,-4],[12,-4],[16,-14],[4,-2],[2,-2],[4,-11],[3,-3],[15,-3],[37,-17],[11,-3],[13,2],[3,3],[3,3],[3,2],[8,-4],[14,1],[6,-5],[0,-12],[-1,-11],[4,-5],[5,-3],[13,-14],[41,-15],[-10,-8],[5,-6],[12,-7],[4,-4],[2,-4],[3,-5],[2,-4],[4,-3],[-2,-4],[-2,-3],[-2,-1],[-3,0],[0,-4],[8,0],[10,-3],[8,-6],[8,-7],[13,-21],[6,-4],[-2,-4],[-2,-3],[-5,-5],[13,-7],[6,-5],[4,-8],[-9,-5],[-5,-1],[-4,2],[-2,2],[-6,9],[-7,6],[-6,10],[-7,6],[-8,-5],[23,-28],[-3,-4],[-2,-3],[-1,-4],[-2,-6],[28,-17],[12,-4],[4,-3],[3,-4],[1,-6],[-2,-4],[-15,-10],[5,-7],[3,-7],[2,-10],[-2,-13],[19,-4],[5,-4],[-1,-2],[-3,-6],[2,-2],[3,-4],[1,-2],[-7,-10],[3,-6],[12,-4],[-3,-14],[-1,-4],[-4,-2],[-6,2],[-5,4],[-6,1],[-6,-3],[8,-10],[12,-24],[7,-11],[15,-15],[5,-7],[1,-5],[1,-9],[1,-5],[1,-4],[9,-16],[9,-10],[4,-6],[5,-15],[3,-7],[10,-5],[3,-7],[2,-9],[0,-10],[-5,-8],[-13,-9],[-4,-11],[5,-4],[3,-7],[0,-7],[-4,-7],[5,-2],[12,-2],[4,-4],[3,-5],[3,-13],[1,-2],[5,-4],[6,-10],[12,-33],[3,-8],[1,-10],[0,-14],[4,-18],[7,-10],[10,-5],[18,-4],[5,-3],[4,-7],[1,-5],[1,-7],[2,-6],[3,-2],[6,-3],[7,-8],[11,-18],[1,-5],[2,-10],[2,-5],[4,-6],[8,-7],[28,-44],[4,-13],[-1,-12],[-10,-28],[4,-10],[6,-7],[14,-7],[-6,-19],[-1,-9],[2,-11],[11,-14],[4,-10],[1,-8],[-7,-2],[-28,12],[-8,0],[-8,-4],[-6,-7],[-3,-13],[4,-16],[7,-14],[5,-16],[-6,-21],[-5,-9],[-18,-22],[-16,-7],[-7,-6],[-6,-11],[3,-4],[4,-6],[5,-12],[4,-6],[79,-59],[20,-5],[9,-6],[15,-16],[12,-17],[22,-68],[7,-13],[8,-7],[9,-1],[17,1],[5,-1],[4,-3],[19,-18],[7,-4],[10,-9],[6,-8],[9,-6],[4,-4],[13,-24],[8,-9],[9,-3],[64,-1],[10,-4],[7,-10],[5,-8],[13,-11],[12,-19],[48,-10],[11,3],[2,11],[-7,9],[-24,3],[-8,6],[-6,7],[-7,4],[-5,6],[-2,12],[-1,9],[-2,12],[-2,10],[-3,7],[8,13],[13,-3],[27,-16],[8,-9],[4,-9],[6,-4],[10,-4],[8,-6],[5,-9],[0,-13],[-4,-15],[1,-11],[36,-13],[6,-4],[12,-2],[10,-11],[17,-5],[20,-13],[22,-5],[44,-31],[16,-24],[2,-1],[4,0],[5,3],[4,4],[3,1],[5,-6],[4,-6],[4,-3],[10,-4],[26,-26],[9,-3],[18,-1],[9,6],[3,17],[6,3],[27,2],[8,-5],[4,-5],[5,-5],[6,-3],[4,-1],[3,-3],[-3,-7],[-9,-10],[-5,-11],[-1,-12],[3,-12],[4,-12],[11,-19],[8,-9],[7,-2],[3,1],[3,5],[2,2],[3,1],[19,-1],[6,4],[2,10],[5,15],[12,-3],[21,-18],[5,-2],[3,1],[5,5],[14,4],[4,4],[5,6],[2,8],[-2,6],[8,3],[10,-2],[11,-6],[7,-7],[5,-8],[1,-8],[-1,-9],[-4,-20],[-1,-6],[2,-6],[12,-21],[6,-15],[-2,-1],[-4,-3],[4,-10],[1,-5],[1,-6],[-2,-8],[-7,-7],[-1,-7],[1,-8],[1,-4],[3,-2],[5,0],[4,-2],[3,-4],[2,-5],[2,-5],[-1,-10],[5,-37]],[[29736,89991],[-7,15],[-9,11],[0,23],[12,29],[14,25],[10,11],[-2,0],[0,1],[0,2],[6,12],[10,39],[7,14],[18,15],[18,8],[54,4],[18,7],[17,12],[17,25],[3,4],[1,7],[0,5],[-2,12],[0,7],[4,14],[6,9],[15,9],[-34,18],[-15,15],[3,20],[-3,5],[-8,24],[-8,16],[-2,9],[0,11],[-20,16],[5,8],[15,10],[2,7],[-1,6],[-3,2],[-4,1],[-3,3],[-2,5],[-4,11],[-2,4],[4,12],[-4,7],[-8,5],[-19,1],[-1,2],[-1,4],[-1,5],[-2,3],[-9,5],[-5,8],[-3,10],[2,12],[5,5],[14,8],[1,6],[-1,7],[-1,6],[-2,6],[-3,5],[-4,5],[-4,3],[-4,1],[-4,2],[-4,4],[-7,10],[-6,7],[-1,4],[2,6],[-8,8],[-7,-4],[-7,-9],[-7,-4],[-5,6],[-9,21],[-7,6],[3,6],[7,10],[-6,1],[-7,-2],[-6,0],[2,9],[8,7],[1,1],[0,6],[0,5],[-1,5],[-1,4],[1,6],[2,5],[1,6],[-1,2],[-2,2],[-2,2],[-1,4],[1,2],[1,3],[0,2],[0,3],[-3,8],[-7,16],[-3,8],[-4,17],[-4,20],[0,10],[-1,21],[-1,6],[-3,4],[-3,1],[-4,-2],[-3,-3],[-1,-4],[2,-5],[1,-5],[-4,-6],[-6,3],[-6,9],[-7,6],[-7,-9],[-2,0],[-4,12],[-3,3],[-4,-2],[-3,-1],[-4,-1],[-3,4],[3,0],[3,2],[2,5],[1,7],[-2,5],[-4,2],[-4,0],[-3,1],[-4,3],[-9,3],[-4,0],[-3,-2],[-4,-4],[-3,-4],[1,-2],[3,-2],[-1,-4],[-4,-4],[-3,-2],[-3,-1],[-3,1],[-3,2],[-9,11],[-7,3],[-15,0],[5,6],[5,3],[5,2],[5,1],[1,2],[2,8],[0,2],[2,2],[8,2],[10,-2],[4,1],[6,5],[2,1],[2,2],[-1,6],[-2,5],[-4,3],[5,9],[8,4],[16,-1],[-12,9],[-7,3],[-10,0],[4,-7],[2,-1],[-5,-3],[-6,0],[-5,-3],[-2,-8],[2,-11],[-1,-5],[-4,-2],[-17,2],[-9,-1],[-5,-6],[1,0],[3,-4],[-19,-17],[-10,-6],[-11,-1],[0,-4],[2,-2],[1,-2],[3,-4],[-8,-4],[-2,2],[-2,2],[-1,3],[-1,1],[-13,8],[10,10],[3,2],[5,-1],[4,-2],[3,1],[4,6],[-16,4],[-17,0],[-7,2],[-29,18],[-4,3],[-6,16],[-5,8],[-6,6],[-11,8],[4,7],[6,5],[5,8],[4,22],[5,8],[6,5],[6,2],[15,1],[7,5],[2,12],[-3,4],[-21,14],[16,7],[4,4],[6,15],[1,1],[-4,6],[-9,0],[-16,-4],[0,4],[25,12],[7,8],[-18,4],[-6,0],[2,5],[3,3],[6,4],[-23,5],[-14,11],[-17,-5],[-9,1],[-2,5],[-2,5],[-3,4],[-8,-6],[-14,1],[-3,1],[-7,6],[-5,1],[-8,-4],[-5,0],[6,-13],[2,-3],[3,-3],[14,-2],[4,-2],[11,-14],[0,-1],[-1,-3],[1,-3],[4,-2],[1,-2],[3,-5],[-2,-2],[0,-2],[7,-3],[5,-7],[11,-18],[12,-9],[3,-4],[0,-5],[-1,-4],[-2,-2],[-4,-13],[-8,-9],[-13,-7],[-9,1],[-2,6],[3,7],[3,10],[-40,-4],[-14,-7],[-6,-1],[0,8],[-10,6],[-32,2],[-4,3],[-2,5],[-2,6],[-1,2],[-3,2],[-6,8],[-3,3],[-16,4],[-5,7],[-2,15],[-1,10],[-1,7],[-4,4],[-6,1],[-6,4],[-20,21],[-12,6],[-3,6],[0,12],[0,8],[1,3],[27,6],[7,4],[4,6],[8,14],[-6,10],[-11,5],[-12,0],[-9,-3],[1,-6],[1,-2],[-5,0],[-5,-1],[-5,-3],[-4,-5],[9,0],[8,2],[8,-1],[7,-9],[-4,-7],[-49,-9],[-3,2],[0,4],[0,4],[-2,2],[-14,0],[-18,9],[-7,0],[8,6],[21,2],[9,4],[-2,4],[18,9],[19,3],[6,3],[4,9],[1,10],[-6,6],[4,6],[1,2],[3,1],[-8,9],[-15,2],[-39,-15],[-41,-5],[6,5],[42,11],[7,4],[-13,4],[-30,-11],[-12,4],[51,20],[-20,-4],[-13,-7],[-7,-2],[-5,5],[3,7],[20,18],[4,2],[55,13],[-16,-11],[-5,-5],[5,0],[11,6],[6,2],[12,-1],[7,2],[4,7],[-3,11],[-4,4],[-12,1],[-5,3],[-15,14],[-8,3],[-5,-2],[-6,-3],[-11,-3],[-13,-8],[-3,-4],[-4,0],[-2,-3],[-5,-11],[-3,-3],[-11,-4],[-4,-3],[3,-8],[0,-6],[-4,-4],[-4,-2],[3,-12],[-4,-12],[-9,-15],[-3,-10],[-6,-2],[-14,2],[-4,2],[-11,15],[-15,8],[-19,22],[-4,2],[-5,5],[-8,14],[-4,5],[-6,4],[-7,0],[-6,-3],[-6,-5],[-11,-14],[2,-9],[18,-21],[-14,-17],[-16,-12],[-35,-14],[-21,-15],[-35,-7],[-6,-4],[-13,-18],[-6,-7],[-84,-46],[-59,-14],[-24,4],[-16,28],[3,22],[27,32],[10,19],[1,17],[-6,3],[-10,-1],[-9,7],[-5,12],[-3,9],[2,9],[5,13],[-3,7],[-1,11],[1,10],[4,4],[4,1],[13,8],[39,13],[73,-9],[8,-4],[13,-14],[7,-3],[19,1],[3,2],[5,5],[20,14],[18,6],[4,16],[8,3],[19,2],[18,-4],[8,2],[7,8],[0,4],[-2,12],[-1,4],[1,5],[7,4],[2,3],[-8,37],[1,6],[-2,4],[-24,30],[-17,11],[-16,13],[-19,10],[-9,1],[-2,2],[-8,9],[-2,3],[-3,3],[-25,6],[-32,18],[-14,2],[-39,-10],[-9,3],[-4,7],[-2,10],[-4,12],[-7,8],[-42,36],[-7,10],[-2,15],[5,12],[9,7],[9,6],[23,26],[5,2],[19,-9],[14,-2],[29,-14],[5,0],[0,4],[-5,7],[3,7],[10,11],[-50,2],[-7,3],[-4,7],[1,5],[-1,3],[-4,0],[-9,-5],[-38,1],[-10,-4],[-5,-8],[27,1],[3,-2],[4,-3],[-5,-12],[-5,-9],[-6,-5],[-9,-3],[-2,1],[-3,3],[-3,1],[-2,-3],[-1,-2],[1,-3],[1,-3],[-1,-4],[-11,-18],[-6,-4],[-36,7],[-13,8],[-1,4],[3,9],[3,4],[9,4],[3,4],[-7,-5],[-17,-1],[-13,-13],[-9,-2],[-8,2],[-7,3],[-2,5],[0,5],[-1,5],[-3,1],[-15,-4],[-6,2],[-19,10],[7,17],[12,7],[25,1],[3,2],[5,8],[3,2],[3,-1],[3,-6],[3,-1],[6,2],[9,10],[5,0],[-2,-6],[-3,-5],[-6,-9],[19,3],[11,5],[11,16],[0,2],[0,5],[1,5],[2,5],[-9,5],[-10,-3],[-9,1],[-5,13],[4,14],[11,4],[15,0],[10,6],[-5,11],[-8,-2],[-9,-5],[-10,-4],[-55,0],[0,4],[11,8],[5,5],[5,8],[-15,-2],[-8,-2],[-6,-5],[-9,-12],[-5,-4],[-13,9],[-27,2],[-5,3],[6,15],[48,24],[29,7],[10,13],[-25,-3],[-41,-18],[-6,-5],[-6,-3],[-13,0],[-5,-5],[-9,-6],[-38,-7],[-5,-10],[-34,-12],[8,-3],[4,0],[15,7],[5,0],[4,-4],[-4,-4],[5,-5],[11,-5],[5,-6],[-5,0],[-16,4],[0,-15],[-8,-11],[-10,-6],[-9,-1],[-7,9],[-3,13],[-3,15],[-6,12],[4,18],[-1,26],[-3,26],[-2,16],[-2,14],[2,14],[4,13],[2,13],[0,17],[-2,13],[-6,25],[4,17],[-6,11],[-10,8],[-9,11],[-5,9],[-2,1],[-2,-1],[-6,-3],[-6,1],[-8,9],[-4,2],[-11,-4],[-24,-17],[-10,-4],[-4,2],[-15,15],[-10,3],[-11,1],[0,-4],[5,-3],[8,-8],[4,-1],[1,-3],[-2,-5],[-2,-6],[-1,-3],[-18,2],[-7,5],[3,10],[-19,-5],[-3,-2],[-3,-8],[-3,-2],[-5,2],[-11,7],[-5,0],[1,1],[2,7],[-9,16],[-9,13],[-22,20],[3,1],[6,2],[3,0],[2,1],[3,6],[2,1],[12,-1],[6,1],[5,4],[-27,10],[-14,1],[-12,-7],[-2,-4],[2,-2],[6,-10],[-7,-2],[-22,23],[2,4],[4,8],[2,4],[-14,-1],[-4,2],[-12,27],[-2,8],[1,9],[-8,-1],[-16,-5],[-8,6],[-3,11],[-3,4],[-3,-1],[-1,-4],[-2,-10],[-1,-5],[4,-3],[2,-5],[2,-6],[3,-6],[-8,2],[-6,7],[-6,9],[-7,7],[-5,2],[-12,-2],[-2,1],[-11,11],[7,8],[-4,-1],[-4,1],[-4,3],[-3,5],[5,-1],[4,2],[5,3],[3,4],[-2,5],[-3,3],[-3,1],[-3,-1],[0,4],[43,1],[12,7],[-6,4],[-15,-2],[-4,2],[-1,-1],[-2,-1],[-2,1],[-2,1],[0,5],[11,2],[21,18],[11,0],[4,-4],[3,-5],[2,-5],[3,-6],[5,-6],[6,-2],[12,-1],[-13,8],[-6,7],[-4,20],[-5,8],[-6,7],[-5,3],[-2,-1],[-1,-3],[-2,-3],[-3,-1],[-14,0],[-6,2],[-6,5],[-4,7],[-3,10],[2,4],[-5,5],[-5,-1],[-25,-20],[-4,-6],[-3,-2],[-2,-1],[-1,-2],[1,-5],[8,-4],[29,10],[3,0],[2,-2],[0,-5],[-1,-2],[-2,-2],[-2,-1],[-3,-9],[-2,-4],[-3,-5],[-13,-13],[-4,-6],[-1,-3],[-2,-9],[-1,-2],[-4,-2],[-6,1],[-4,-3],[10,-4],[-1,-2],[-1,-2],[0,-2],[-2,-2],[2,-13],[1,-6],[-1,-5],[-3,-8],[-4,-4],[-4,-2],[-3,-5],[-4,-2],[-5,2],[-9,8],[-6,3],[-12,0],[-5,3],[3,4],[3,-1],[2,-3],[3,0],[4,4],[-1,3],[-1,3],[-2,5],[3,12],[6,7],[8,6],[6,9],[-1,2],[-2,4],[-1,2],[1,3],[1,5],[-6,0],[-17,-8],[3,-2],[2,-2],[3,-4],[2,-4],[-5,-6],[-3,-9],[-3,-9],[-7,-4],[-4,2],[-9,8],[-5,2],[-5,-3],[2,-6],[4,-7],[4,-4],[-5,-14],[-2,-1],[-6,2],[-12,9],[-7,3],[-9,-10],[-10,-5],[-4,-5],[-1,-10],[3,-7],[4,-5],[27,-12],[3,-4],[2,-6],[4,1],[4,4],[2,3],[11,4],[12,-3],[12,-8],[8,-10],[10,-10],[13,-6],[14,-1],[11,5],[1,14],[10,1],[21,-11],[7,-6],[6,-7],[16,-28],[28,-38],[3,-5],[1,-7],[0,-17],[0,-5],[2,-4],[3,-5],[1,-3],[0,-4],[-2,-9],[0,-6],[0,-2],[2,-3],[6,-7],[4,-3],[1,-3],[1,-2],[0,-2],[1,-2],[0,-2],[4,-9],[1,-5],[0,-9],[1,-13],[-1,-6],[-9,-21],[-5,-6],[-6,-4],[-6,-3],[-5,-1],[-2,-2],[-3,-11],[-1,-4],[-8,0],[-4,1],[-8,6],[-5,2],[-75,-3],[-76,-3],[-69,-21],[-9,8],[-4,6],[-8,5],[-4,4],[-4,6],[-3,15],[-3,7],[-3,6],[-5,5],[-5,4],[-4,2],[-4,2],[-3,6],[-3,4],[-5,-2],[-16,-17],[-9,-4],[-8,6],[-1,7],[-2,2],[2,7],[3,8],[-9,5],[-38,4],[-12,-2],[-5,-2],[-7,-8],[-2,-1],[-19,3],[-51,32],[-77,5],[-20,10],[-11,-1],[-8,-3],[-12,-2],[-10,4],[-4,15],[-3,2],[-18,-8],[-6,1],[-13,6],[-100,7],[-12,7],[-26,8],[-9,0],[-6,-2],[-2,-5],[2,-6],[5,-10],[14,-12],[31,-4],[12,-10],[20,-16],[2,-4],[1,-4],[1,-3],[4,-1],[9,4],[17,16],[8,-2],[32,-20],[8,-10],[2,-6],[3,-14],[2,-7],[4,-5],[11,-6],[9,-10],[19,-9],[44,-50],[13,-6],[3,-6],[-1,-8],[-2,-8],[-4,-5],[-11,-8],[-27,-11],[-6,0],[-4,2],[-1,4],[1,3],[4,3],[-36,19],[-11,14],[-10,17],[-5,5],[-14,3],[-14,7],[-7,5],[-11,13],[-4,3],[-6,3],[-18,17],[-13,7],[-18,1],[-7,3],[-4,6],[0,8],[7,8],[-9,4],[-35,-4],[-7,2],[-44,38],[-7,2],[-3,2],[-1,2],[-1,2],[-1,2],[-1,2],[-44,35],[-14,3],[-6,3],[-12,11],[-5,1],[-10,-3],[-5,0],[-8,10],[-6,3],[-24,5],[-7,4],[-5,3],[-6,3],[-13,-2],[-5,3],[-9,11],[-67,28],[-21,20],[-12,7],[-11,4],[-12,2],[51,-45],[6,-3],[2,-1],[1,-3],[3,-8],[2,-2],[6,-2],[14,3],[6,-1],[16,-10],[116,-46],[32,-26],[20,-6],[24,-29],[1,-3],[-1,-3],[1,-2],[3,-1],[4,0],[2,0],[11,-12],[5,-3],[28,-4],[11,-7],[7,-10],[-15,-16],[0,-4],[2,-2],[5,-6],[0,-5],[-5,-2],[-14,10],[-6,-3],[-7,0],[0,-5],[0,-8],[-30,-12],[-3,14],[-6,5],[-8,-2],[-6,-5],[-8,-14],[-2,-2],[-9,-2],[-4,-2],[-4,-4],[4,-1],[1,-3],[-2,-17],[-1,-2],[-33,12],[-13,-1],[0,4],[3,1],[3,1],[3,3],[3,3],[-5,3],[-5,1],[-5,-1],[-4,-3],[0,4],[9,3],[17,-5],[8,2],[-34,16],[-19,3],[-8,-9],[-5,-3],[-56,30],[-5,9],[-10,8],[-9,2],[-2,-7],[-11,3],[-19,14],[-18,6],[-25,21],[-2,1],[-3,-1],[-3,0],[-2,2],[-1,3],[-1,4],[0,3],[-2,1],[-24,-4],[-2,1],[-3,5],[-3,2],[-2,-1],[-17,-7],[-4,0],[-1,6],[-4,1],[-23,-19],[-38,-6],[-24,-12],[-28,-4],[-98,19],[-8,6],[-6,-1],[-81,0],[-46,14],[-45,-2],[-12,8],[-22,6],[-4,3],[-4,8],[-7,17],[16,6],[7,7],[0,8],[-6,3],[-8,-5],[-14,-17],[-17,-9],[-54,11],[-2,1],[-5,6],[-2,1],[-4,0],[-9,-4],[-13,1],[-19,9],[-8,0],[-21,-7],[-20,5],[-79,-3],[-15,-6],[-5,-11],[6,-13],[7,0],[9,6],[51,11],[20,-10],[14,-2],[23,-11],[16,-4],[31,-22],[-5,-4],[-94,17],[-39,-13],[-14,0],[-67,35],[-68,35],[-70,69],[-8,4],[-1,6],[0,15],[-1,17],[-5,10],[5,6],[1,9],[-3,7],[-7,2],[0,5],[4,4],[16,26],[6,7],[37,14],[10,6],[8,8],[2,10],[-6,8],[-8,8],[-8,4],[-6,-2],[11,-13],[4,-7],[-9,-8],[-5,-3],[-5,-1],[0,-3],[-1,-1],[-17,-8],[-9,-7],[-15,-5],[-7,-1],[-14,-20],[0,-2],[-1,-3],[-1,-2],[-7,-1],[-2,-5],[2,-9],[4,-11],[3,-8],[-61,0],[-7,6],[-4,14],[11,6],[23,4],[10,7],[-14,5],[-31,-6],[-10,13],[19,0],[-6,9],[-21,0],[-7,7],[5,4],[11,5],[4,4],[0,4],[-15,6],[-16,-3],[-29,-16],[1,-15],[-10,-7],[-22,-6],[2,-7],[4,-1],[7,4],[43,-2],[10,-6],[10,-12],[-2,-7],[-1,-6],[1,-6],[4,-2],[-2,-2],[-4,-10],[2,-1],[1,-2],[1,-1],[-8,-5],[-117,19],[-18,8],[-81,2],[-2,-2],[-2,-4],[-1,-4],[2,-1],[42,-8],[8,-5],[0,-4],[-43,-21],[-24,-6],[-22,7],[0,1],[1,2],[1,3],[1,2],[-5,2],[-25,16],[-33,3],[-13,10],[-13,5],[-6,4],[10,11],[3,2],[6,0],[0,-2],[0,-5],[0,-2],[8,-2],[23,2],[6,-2],[17,-18],[8,-2],[9,1],[17,9],[-7,6],[-15,4],[-51,36],[-54,18],[-19,15],[-4,-1],[-3,-3],[-4,-2],[-69,14],[-21,11],[-39,36],[-6,10],[-20,43],[0,5],[-1,5],[-1,6],[-4,4],[-11,8],[-2,3],[0,4],[-2,4],[-2,2],[-2,0],[-11,9],[-11,5],[-35,30],[-10,13],[-9,12],[-14,35],[-9,17],[6,9],[7,2],[7,0],[15,8],[32,2],[0,4],[-2,0],[0,4],[5,3],[2,1],[-4,7],[-6,5],[-29,12],[-38,31],[-6,2],[-5,3],[-9,13],[-5,4],[91,-9],[6,-7],[-2,-2],[-1,-3],[-1,-3],[13,-9],[6,-2],[7,-1],[58,12],[5,-1],[9,-5],[8,-3],[9,1],[16,6],[30,3],[6,-1],[13,-8],[32,-2],[13,-5],[11,-10],[2,-5],[1,-12],[2,-5],[3,-6],[5,-3],[120,-13],[22,10],[8,2],[17,-1],[4,3],[6,1],[17,-2],[11,-6],[16,5],[47,-4],[-5,0],[5,0],[4,5],[5,17],[6,9],[7,4],[15,1],[47,-12],[8,0],[7,4],[-13,8],[-78,17],[0,3],[0,3],[-2,2],[-2,-1],[-6,-3],[-1,0],[-6,2],[-3,4],[-3,5],[-3,5],[-22,4],[-3,2],[-7,7],[-31,14],[-8,1],[-3,4],[-16,8],[-25,27],[-3,5],[-1,5],[7,11],[1,6],[-2,5],[-4,2],[6,7],[2,1],[-13,11],[-16,-3],[-28,-20],[-12,-14],[-4,-2],[-7,2],[-21,10],[-92,10],[-29,-6],[-111,18],[-111,19],[-110,18],[-11,6],[-8,7],[-5,7],[-4,9],[-3,13],[-2,4],[-6,2],[-3,3],[-1,2],[0,4],[-4,12],[-2,3],[-4,3],[2,6],[1,1],[3,1],[-2,15],[-1,7],[-5,6],[10,1],[5,3],[-1,7],[-8,18],[-1,6],[-12,6],[-3,6],[2,5],[12,3],[2,4],[-1,4],[-3,4],[0,3],[7,14],[21,13],[8,13],[-2,4],[13,8],[4,6],[-4,6],[0,5],[3,0],[7,4],[0,4],[-9,1],[-8,5],[-15,14],[2,1],[7,7],[-5,4],[-11,-1],[-4,3],[-2,6],[1,5],[0,4],[0,3],[-3,4],[-10,5],[-2,6],[-1,7],[-3,2],[-4,1],[-18,13],[-4,7],[5,10],[3,2],[3,1],[6,-1],[1,1],[1,2],[0,3],[1,2],[10,13],[4,3],[-3,10],[-1,3],[4,4],[-2,4],[9,8],[-8,16],[2,4],[64,31],[7,2],[6,-3],[6,-5],[6,-1],[5,9],[-1,7],[16,7],[6,6],[-2,10],[-9,4],[-18,-2],[2,0],[-27,-12],[-6,1],[-11,9],[-19,6],[0,4],[1,9],[-1,4],[-3,8],[-4,6],[-10,10],[7,4],[1,3],[-5,22],[-1,3],[1,13],[4,8],[9,14],[4,4],[11,5],[4,5],[1,5],[0,1],[-2,0],[-16,7],[-4,5],[3,10],[1,-2],[3,-6],[2,-1],[9,-2],[17,0],[1,3],[-24,1],[-4,1],[-1,5],[0,5],[4,3],[16,3],[4,4],[3,5],[2,6],[2,14],[1,8],[0,4],[-3,6],[-1,7],[0,7],[1,7],[8,22],[5,6],[7,5],[8,2],[6,1],[13,-8],[7,-3],[6,5],[5,9],[0,5],[-4,8],[5,4],[15,-3],[6,3],[-8,10],[-19,9],[-5,14],[2,5],[2,7],[2,7],[3,5],[-5,12],[-2,4],[5,-2],[16,-2],[5,-2],[16,-10],[5,-1],[12,2],[6,-1],[9,-6],[5,-1],[5,3],[-2,3],[-2,9],[3,1],[3,2],[2,2],[3,3],[-6,1],[-17,7],[-11,1],[-6,3],[-5,7],[0,4],[1,4],[2,2],[2,4],[4,7],[0,1],[12,7],[4,6],[-3,7],[8,9],[2,6],[0,10],[-3,6],[-9,7],[-4,5],[-2,8],[2,7],[4,7],[4,4],[7,4],[6,3],[7,0],[7,-2],[-1,-3],[-1,-1],[-2,-1],[5,-1],[3,2],[-1,4],[-5,5],[-21,11],[2,0],[-2,3],[3,6],[7,6],[3,5],[2,4],[2,11],[2,5],[7,10],[8,5],[18,5],[-4,0],[-12,4],[2,7],[4,7],[4,5],[9,3],[2,3],[1,4],[3,4],[14,5],[29,-6],[14,5],[-6,5],[-14,-2],[-6,2],[-15,9],[-5,6],[25,23],[13,7],[15,3],[3,-2],[5,-5],[3,-1],[20,0],[28,-7],[8,3],[-8,6],[-51,16],[-7,6],[4,8],[17,11],[6,7],[10,15],[10,12],[28,18],[19,4],[6,4],[3,4],[0,4],[2,5],[2,4],[5,4],[11,14],[117,77],[39,16],[25,20],[49,12],[42,17],[38,3],[46,19],[71,9],[45,17],[44,5],[51,-5],[99,5],[75,-14],[132,-8],[9,5],[6,-4],[31,-5],[62,-38],[13,-1],[-4,-4],[-7,-17],[-3,-3],[-7,-6],[-11,-16],[-72,-42],[-73,-42],[-22,-4],[-7,-4],[-24,-33],[-21,-8],[-81,-84],[-27,-41],[-25,-50],[-8,-11],[-12,-8],[-1,-7],[2,-7],[1,-3],[-2,-6],[-3,-4],[-8,-6],[0,-9],[-15,-15],[-6,-9],[-18,-27],[-39,-39],[-17,-27],[-6,-13],[-1,-6],[-3,-27],[-1,-5],[-5,-11],[-2,-7],[1,-8],[15,-20],[-7,-9],[7,-13],[98,-85],[17,-22],[7,-26],[-4,-16],[-7,-10],[-8,-7],[-7,-9],[-6,-10],[-13,-17],[-6,-10],[-2,-7],[-1,-5],[-1,-14],[-6,-24],[1,-7],[5,-9],[1,-5],[-3,-24],[2,-9],[1,-8],[0,-16],[1,-8],[3,-16],[0,-6],[3,-9],[8,-5],[8,-2],[5,-5],[1,-6],[0,-7],[1,-8],[5,-9],[15,-18],[4,-7],[14,-31],[17,-28],[5,-6],[6,-3],[13,-3],[4,-5],[5,-8],[13,-7],[6,-8],[4,-8],[22,-25],[7,-5],[8,-3],[7,-1],[3,-2],[9,-8],[0,-8],[0,-4],[1,-3],[13,-13],[28,-15],[13,-12],[3,-6],[3,-7],[3,-5],[4,-3],[15,4],[3,-1],[1,-4],[-1,-4],[1,-3],[6,-5],[5,0],[12,1],[3,-2],[5,-8],[4,-2],[11,0],[6,-1],[5,-3],[1,-2],[0,-2],[0,-2],[1,-2],[4,-3],[45,-2],[18,-7],[3,-3],[4,-6],[3,-6],[1,-8],[-1,-6],[-5,-7],[-1,-7],[0,-7],[2,-1],[4,1],[5,1],[5,-2],[4,-4],[5,-12],[5,-17],[-6,-7],[-93,14],[-23,-8],[6,-9],[7,0],[16,4],[0,-4],[-9,-3],[-17,-10],[-9,-3],[-33,6],[-10,-6],[-5,-8],[5,-1],[10,1],[6,-2],[1,-11],[-4,-6],[-6,-2],[-2,5],[-6,5],[-4,-1],[-4,-5],[-4,-9],[-5,-4],[-7,1],[-44,17],[-7,-1],[-19,-11],[-12,0],[-12,-7],[-9,3],[-9,-1],[-8,-3],[-4,-7],[-8,-11],[-41,-23],[-14,-4],[1,-3],[1,-7],[0,-3],[-28,-13],[-10,-2],[-11,1],[-4,-1],[-1,-2],[-3,-5],[-2,-2],[-21,0],[-85,-22],[-4,-6],[-2,0],[45,-8],[105,18],[8,5],[9,3],[7,8],[9,4],[12,9],[66,29],[18,22],[14,4],[62,4],[5,2],[7,7],[5,3],[81,-13],[-1,-2],[0,-1],[-1,-1],[5,-4],[4,2],[3,4],[3,2],[16,0],[-6,7],[-3,4],[-1,6],[31,-12],[7,3],[-7,7],[-4,2],[-4,0],[0,4],[19,4],[6,-2],[7,-10],[4,-1],[4,3],[3,-1],[5,-4],[3,-7],[2,-5],[-1,-6],[-3,-11],[-2,-5],[-1,-21],[0,-3],[-5,1],[-18,17],[-6,3],[-46,-9],[0,-4],[52,-5],[-2,-7],[-2,-6],[-3,-2],[-3,4],[-2,-2],[-2,-2],[1,-6],[-1,-6],[10,-1],[8,-7],[4,-11],[-2,-14],[-4,-5],[-4,-4],[-3,-6],[-1,-9],[4,-7],[6,-1],[11,3],[29,0],[1,3],[1,7],[2,8],[2,3],[5,2],[2,6],[0,14],[-2,7],[-5,4],[-2,3],[3,8],[-10,11],[-3,6],[-2,12],[1,8],[5,17],[1,7],[1,20],[1,6],[4,7],[8,5],[17,5],[8,6],[-26,21],[-11,17],[2,19],[9,29],[5,7],[-6,16],[6,10],[11,5],[30,4],[12,6],[6,14],[-2,12],[-6,25],[-2,12],[-4,4],[-10,4],[-9,9],[-3,17],[3,6],[12,15],[-5,10],[-3,4],[-4,2],[-19,4],[-44,-4],[2,-5],[1,-4],[2,-2],[3,-1],[-3,-9],[-4,-4],[-6,0],[-102,21],[-19,10],[-36,43],[-20,8],[2,4],[-5,3],[-8,1],[-4,4],[36,6],[3,2],[1,5],[-3,9],[-4,6],[-8,7],[-16,21],[-4,4],[2,5],[-5,3],[-21,8],[-27,17],[-76,21],[-6,6],[-2,7],[0,5],[1,2],[4,-1],[2,-1],[1,-4],[2,-6],[5,-5],[5,-3],[5,-1],[-2,7],[-4,5],[-2,1],[1,7],[0,3],[-1,6],[5,-1],[5,-1],[4,-1],[5,3],[-2,0],[15,0],[42,-12],[-4,6],[-10,3],[-3,7],[12,8],[35,4],[12,-1],[4,2],[13,10],[3,1],[1,4],[-4,8],[-9,13],[0,4],[21,0],[9,5],[5,1],[5,-2],[-4,9],[-9,8],[-9,6],[-9,1],[3,13],[-1,10],[-3,8],[-8,5],[8,2],[17,-11],[9,-2],[-4,10],[-5,6],[-7,3],[-7,1],[7,9],[11,-1],[21,-8],[5,0],[13,8],[6,-1],[10,-4],[5,1],[-5,-4],[2,-8],[4,-1],[5,2],[4,3],[0,4],[-2,0],[3,5],[6,1],[13,-2],[4,-2],[2,-4],[-1,-4],[-4,-3],[0,-3],[11,0],[4,4],[0,8],[6,2],[5,-2],[5,-3],[12,-3],[12,-9],[6,-2],[4,0],[4,-2],[4,-4],[1,-8],[2,-3],[43,-29],[21,-4],[8,-6],[5,-2],[10,-2],[4,-2],[12,-13],[3,-2],[2,-2],[6,-12],[2,-4],[4,-2],[11,0],[3,-1],[4,-6],[6,-3],[9,-8],[4,-2],[4,-6],[3,-13],[2,-15],[2,-9],[7,-8],[6,0],[4,7],[-2,15],[2,1],[1,1],[1,1],[1,1],[-2,4],[-4,10],[-3,3],[8,8],[-5,2],[-18,16],[-19,6],[-5,3],[-3,4],[-12,20],[-3,4],[-4,2],[5,3],[5,5],[-30,4],[-30,12],[-5,4],[-38,37],[10,-1],[6,1],[5,3],[-5,5],[-6,1],[-12,-1],[-5,1],[-12,11],[-27,9],[-7,7],[3,4],[11,7],[3,3],[1,4],[16,21],[9,3],[59,-5],[11,2],[27,14],[-6,3],[-22,-11],[-81,7],[-11,-7],[-2,3],[-1,5],[0,12],[6,2],[8,1],[6,2],[4,7],[-4,0],[8,15],[2,8],[-3,1],[-14,-10],[-17,-5],[-36,-21],[1,-3],[1,-10],[1,-3],[-19,1],[-5,-3],[-7,-9],[-3,-1],[-4,4],[1,6],[2,4],[2,2],[3,0],[0,4],[-63,15],[-30,22],[-17,8],[-9,12],[-2,4],[-2,8],[-3,8],[-4,4],[-2,1],[-3,4],[-3,4],[-1,3],[1,6],[3,2],[30,4],[6,5],[0,3],[-29,2],[-15,7],[-20,24],[-1,2],[1,5],[2,7],[1,4],[1,16],[0,7],[-3,8],[2,0],[-2,3],[-4,9],[3,5],[1,5],[1,5],[-1,5],[2,0],[0,8],[2,8],[3,8],[3,9],[-3,9],[2,6],[3,5],[1,6],[-2,8],[-3,3],[-3,2],[3,9],[4,5],[12,12],[3,6],[3,9],[6,6],[8,2],[62,-8],[44,-8],[67,-30],[128,-34],[24,-17],[18,-5],[14,-9],[35,-6],[39,-17],[10,5],[-34,18],[-45,8],[-106,61],[-27,4],[-55,30],[-8,1],[-40,12],[1,1],[6,3],[-5,15],[-10,10],[-11,1],[-8,-9],[4,-5],[-101,9],[2,9],[18,42],[6,10],[7,7],[6,-1],[5,-4],[2,-4],[6,-13],[4,-6],[35,-21],[23,-4],[-7,12],[-18,23],[-3,12],[14,11],[40,-8],[42,-20],[41,-9],[76,-15],[73,-9],[54,-5],[39,-1],[43,-24],[14,-2],[5,-5],[-7,11],[-33,18],[2,4],[-6,4],[-34,10],[-68,4],[-22,11],[-69,16],[-22,-1],[-125,53],[-26,0],[-12,3],[-10,13],[5,6],[4,8],[3,9],[1,12],[3,12],[6,7],[77,40],[11,1],[10,-5],[7,-7],[14,-26],[7,-10],[8,-6],[8,-3],[9,-1],[15,-9],[17,-18],[16,-14],[15,4],[-11,16],[-53,38],[-7,8],[0,9],[0,8],[-5,7],[-7,6],[-4,5],[15,12],[100,35],[17,2],[111,-24],[6,-5],[7,-8],[4,-8],[-5,-4],[6,-16],[5,-14],[6,-13],[9,-10],[6,-3],[5,1],[3,5],[0,10],[-5,10],[-5,5],[-3,5],[-1,12],[2,10],[2,7],[0,8],[-3,10],[-7,9],[-95,29],[7,11],[95,43],[26,2],[53,26],[54,14],[9,0],[20,-10],[8,6],[7,11],[30,17],[8,12],[3,3],[7,3],[108,-4],[109,4],[48,-9],[97,-4],[15,-6],[6,-11],[0,-12],[1,-4],[3,-6],[4,-7],[4,-4],[18,-12],[24,-26],[3,-5],[5,-11],[4,-13],[1,-14],[0,-3],[2,-2],[1,-1],[1,-2],[0,-2],[-2,-7],[0,-1],[3,-17],[2,-5],[1,-7],[0,-27],[-1,-9],[-6,-14],[-2,-2],[-1,-3],[0,-17],[9,-17],[15,-10],[136,-46],[6,-6],[13,-21],[7,-18],[-6,-15],[-7,-13],[4,-12],[-5,-8],[-12,-10],[-4,-11],[3,-4],[2,-5],[1,-7],[-1,-6],[0,-7],[4,-6],[8,-6],[9,-10],[9,-21],[7,-9],[13,-8],[26,-5],[12,-8],[4,-4],[8,-16],[2,-6],[1,-7],[2,-5],[4,-2],[-6,-7],[-9,-6],[-18,-3],[-3,-2],[-9,-11],[-12,-7],[-3,-3],[-4,-7],[-5,-7],[-6,-6],[-5,-2],[-7,-4],[2,-10],[7,-19],[-64,-32],[-40,-36],[-14,-4],[-9,-8],[-18,-34],[-11,-7],[-1,-2],[-3,-8],[-4,-5],[-4,-1],[-5,0],[-4,-1],[-4,-3],[-3,-5],[0,-7],[1,-9],[-5,-8],[-7,-4],[-16,-4],[-27,-20],[20,0],[20,10],[98,103],[6,4],[13,0],[6,3],[15,12],[52,28],[5,0],[5,-3],[4,-7],[1,-5],[1,-13],[1,-4],[0,-6],[-2,-7],[-6,-12],[-1,-5],[1,-6],[2,-6],[1,-5],[-18,-4],[-17,-10],[-31,-29],[-23,-29],[-6,-17],[6,-13],[-9,-6],[-29,3],[59,-37],[6,0],[6,-3],[10,-9],[17,-7],[13,-11],[1,-5],[-4,-8],[-6,-3],[-23,7],[-20,17],[-75,-7],[3,-1],[3,-3],[2,-3],[2,-5],[-6,-4],[-21,-8],[10,-7],[14,-2],[13,0],[32,10],[9,-4],[2,-17],[-1,-2],[-3,0],[-3,-2],[-1,-6],[1,-4],[1,-6],[0,-3],[0,-7],[-1,-6],[-5,-11],[-9,-9],[-24,-9],[-6,-12],[42,12],[19,17],[2,27],[26,14],[27,4],[6,3],[8,7],[16,3],[17,9],[12,14],[-3,22],[-6,7],[-15,10],[-7,9],[-5,15],[3,7],[6,2],[9,0],[4,-2],[7,-8],[4,-2],[4,1],[3,2],[7,5],[2,4],[1,4],[2,3],[3,1],[4,-1],[3,-2],[3,0],[3,3],[-9,13],[-10,16],[7,18],[10,7],[12,-3],[11,-8],[26,-41],[11,-7],[5,-8],[2,-3],[3,-1],[7,-3],[9,-6],[72,-22],[-5,11],[-10,6],[-30,6],[-25,17],[-29,30],[-3,5],[-6,14],[-25,19],[-4,9],[3,8],[31,35],[34,7],[14,11],[4,11],[0,9],[-2,8],[0,9],[5,7],[9,2],[8,-2],[7,-3],[-4,-7],[-2,-1],[3,-4],[4,-1],[3,2],[2,5],[3,1],[4,-3],[4,-4],[3,-4],[-5,-8],[-9,-6],[-7,-7],[-1,-12],[5,-8],[27,-16],[-1,-3],[-1,-2],[-1,-2],[-1,-1],[6,-1],[5,-3],[5,-5],[5,-3],[-4,-6],[-4,-13],[-3,-5],[-6,-7],[-23,-13],[-5,-5],[-5,-6],[-1,-7],[3,-8],[7,-3],[8,0],[5,3],[-4,8],[4,5],[13,8],[7,7],[5,3],[5,2],[12,-2],[6,-3],[4,-5],[1,-5],[2,-11],[1,-4],[5,-15],[3,-5],[4,1],[1,5],[-1,7],[-1,7],[-2,4],[-2,4],[-4,13],[-2,5],[-4,3],[-8,5],[-3,4],[9,4],[6,1],[0,2],[-1,2],[1,3],[0,2],[1,4],[1,2],[2,2],[6,2],[8,9],[10,6],[7,9],[-1,13],[10,4],[14,-4],[43,-31],[10,-11],[13,-21],[5,-3],[15,1],[4,-1],[2,-5],[-3,-8],[-3,-4],[-2,-3],[-2,-3],[1,-8],[1,-6],[10,-15],[-11,-15],[-6,-9],[-2,-10],[-1,-9],[-4,-22],[-3,-8],[-5,-6],[-16,-16],[-7,-17],[-19,-10],[-6,-8],[16,-11],[6,-1],[6,2],[11,8],[7,2],[96,-31],[36,-32],[13,-5],[11,8],[-6,6],[-12,5],[-6,7],[-2,4],[0,3],[1,4],[0,5],[-2,6],[-5,3],[-39,7],[-16,8],[-12,10],[-10,8],[-5,6],[0,11],[2,6],[2,3],[3,2],[2,5],[1,5],[1,5],[0,5],[0,5],[1,3],[2,3],[1,2],[-4,14],[-1,12],[0,5],[1,6],[5,3],[7,-1],[91,-42],[10,-14],[8,-19],[14,-45],[1,-17],[49,-69],[24,-7],[21,-15],[26,-8],[12,-1],[0,4],[-9,2],[-18,12],[-16,4],[-30,25],[-15,24],[-6,6],[-14,9],[-4,7],[1,12],[8,5],[29,9],[6,0],[5,-4],[0,-2],[0,-4],[0,-4],[1,-4],[11,-11],[16,-12],[13,-14],[3,-19],[13,-14],[31,-12],[14,-15],[4,-13],[2,-3],[2,18],[3,8],[4,7],[5,3],[-4,4],[-6,1],[-10,-1],[-5,2],[-8,5],[-12,3],[-8,5],[-8,6],[-7,8],[-21,30],[-20,14],[-5,8],[3,7],[-8,5],[-17,4],[-20,-4],[-10,0],[-9,8],[-3,9],[-4,28],[-3,9],[-3,10],[-4,8],[-4,6],[-7,7],[-9,5],[-27,6],[-17,12],[-18,4],[-46,31],[-7,8],[20,11],[10,9],[4,12],[-2,8],[-5,3],[-6,2],[-4,3],[-1,6],[1,6],[3,3],[4,2],[14,-5],[6,0],[23,13],[8,2],[10,-1],[9,-6],[7,-12],[-3,-1],[-2,-3],[-3,-8],[4,-9],[-1,-6],[-1,-7],[0,-10],[4,-10],[5,-4],[6,-2],[6,-4],[0,-14],[8,-9],[9,-1],[1,5],[-2,3],[-4,4],[-2,4],[0,1],[1,3],[1,4],[0,3],[-4,5],[-13,8],[5,23],[0,8],[-4,13],[17,6],[108,-29],[4,-6],[-5,-11],[22,7],[9,1],[36,-12],[26,-17],[10,-13],[-4,-15],[4,-5],[4,-3],[4,-4],[1,-6],[-1,-5],[-7,-10],[-3,-3],[0,-4],[6,1],[6,6],[5,7],[4,10],[-5,8],[-3,5],[-2,7],[9,5],[81,3],[11,-3],[22,-14],[51,-15],[-38,22],[-39,14],[-76,2],[-22,17],[-17,5],[-39,25],[-32,8],[-16,11],[-63,16],[-85,52],[-6,12],[1,12],[2,12],[-4,15],[6,2],[22,24],[2,4],[0,10],[2,5],[4,4],[5,0],[5,-1],[5,1],[52,35],[45,13],[3,2],[7,9],[3,3],[50,3],[21,14],[19,6],[15,11],[99,-4],[99,-4],[29,-8],[26,-19],[4,-5],[3,-6],[2,-7],[-1,-5],[-6,-2],[8,-10],[127,-23],[8,-5],[4,-7],[0,-7],[-2,-7],[-2,-5],[0,-5],[2,-6],[9,-22],[7,-7],[6,0],[12,7],[-1,5],[-8,28],[0,5],[9,4],[9,11],[4,4],[14,3],[57,-6],[26,-11],[21,-4],[6,-3],[20,-13],[76,-19],[2,-3],[0,-7],[-1,-8],[0,-6],[1,-1],[7,-12],[3,-9],[1,-3],[23,-34],[3,-12],[5,-9],[21,-27],[7,-11],[-16,-14],[-6,-9],[-2,-1],[-1,-1],[0,-3],[0,-2],[0,-2],[-9,-10],[-51,-35],[-10,-2],[-54,13],[-45,-1],[-108,-33],[-11,-8],[-5,-12],[-3,-12],[-7,-15],[-9,-12],[-6,-8],[-30,-18],[-9,-12],[-12,-22],[-12,-10],[-4,-6],[9,-6],[7,3],[7,8],[14,25],[8,11],[18,15],[20,11],[9,9],[7,13],[7,19],[3,5],[5,4],[97,39],[40,0],[75,-24],[6,-9],[-7,-11],[-14,-6],[-67,-12],[-13,-9],[-6,-9],[-5,-10],[-2,-13],[-1,-15],[-1,-9],[-3,-4],[-4,-2],[-3,-4],[-3,-5],[-2,-9],[-3,-5],[3,-11],[-4,-8],[-12,-14],[-4,-6],[-11,-22],[-19,-19],[-42,-5],[-21,-9],[0,-4],[11,1],[18,7],[18,-4],[18,3],[9,4],[8,7],[5,8],[20,33],[12,13],[5,9],[1,6],[1,10],[1,5],[2,5],[12,17],[5,8],[2,10],[-2,10],[0,9],[6,9],[14,12],[11,4],[38,-3],[9,0],[14,4],[13,7],[9,11],[2,5],[3,14],[2,5],[3,5],[6,8],[3,4],[9,10],[12,3],[12,-1],[23,-12],[80,-7],[80,-6],[11,-5],[7,0],[3,-1],[1,-2],[3,-7],[2,-3],[13,-16],[10,-23],[5,-15],[-1,-7],[-20,-16],[-4,-8],[1,-3],[3,-3],[4,-7],[1,-4],[1,-6],[0,-7],[-6,-5],[-6,-11],[-10,-9],[-3,-2],[-15,0],[-27,-8],[-15,2],[-6,2],[-8,4],[-1,2],[-1,3],[-2,2],[-3,1],[-2,0],[-5,-3],[-2,-1],[1,-5],[4,-6],[2,-5],[-6,-4],[-15,-5],[-7,-5],[-4,-6],[-7,-11],[-5,-4],[-9,-4],[-19,1],[-10,-3],[-16,-10],[-6,-2],[-35,8],[-83,-13],[-8,-5],[-4,-10],[86,16],[21,-2],[11,-5],[8,-9],[0,-8],[-5,-6],[-59,-30],[-26,-23],[-42,-22],[6,-4],[23,16],[30,5],[44,31],[33,8],[8,3],[4,4],[2,4],[5,12],[4,4],[12,11],[23,10],[6,1],[4,-2],[5,-5],[4,-7],[2,-6],[2,-5],[0,-3],[-8,-18],[-4,-9],[-4,-4],[-8,-7],[-3,-5],[-4,-3],[-12,-4],[-2,-5],[-3,-5],[-7,-3],[-52,-4],[-10,-8],[-7,-9],[-15,-12],[-5,-14],[7,1],[6,7],[5,9],[6,7],[11,6],[51,2],[6,-6],[-1,-14],[-5,-7],[-17,-11],[-7,-2],[33,-2],[18,-7],[8,-13],[2,-9],[1,-5],[0,-5],[-4,-6],[-4,-2],[-8,-3],[-4,-1],[-2,-1],[-2,-4],[-1,-5],[-1,-4],[-10,-13],[-7,-7],[-4,-2],[-4,-4],[-8,-17],[-5,-4],[-4,-1],[-8,-6],[-6,-6],[-1,-2],[-1,-3],[-1,-4],[-6,-7],[-12,-6],[-6,-5],[6,-7],[9,2],[42,35],[10,12],[9,15],[20,18],[9,13],[14,12],[11,15],[0,17],[-9,13],[-11,10],[-8,12],[-3,21],[4,18],[9,5],[12,1],[9,3],[5,7],[18,44],[1,6],[3,4],[5,4],[24,1],[28,23],[6,11],[4,4],[40,5],[3,0],[2,-1],[3,-2],[2,-3],[0,-3],[-1,-3],[-1,-2],[-1,-4],[-2,-15],[-6,-10],[-8,-8],[-17,-12],[-4,-7],[-1,-10],[0,-15],[4,-10],[8,-9],[10,-5],[7,-2],[-15,30],[-5,19],[8,8],[12,3],[9,7],[7,13],[6,17],[19,31],[25,12],[52,2],[5,-3],[4,-9],[2,-10],[-2,-7],[0,-4],[2,0],[6,21],[10,8],[7,-5],[-3,-18],[-5,-8],[-6,-6],[-34,-26],[-6,-2],[-3,-2],[0,-5],[1,-5],[1,-4],[-3,-4],[-3,-2],[-17,-5],[-2,-4],[-1,-7],[-3,-11],[-4,-5],[-12,-8],[-5,-7],[-2,-9],[-2,-9],[-3,-8],[-4,-7],[2,-3],[2,-3],[3,-1],[2,-1],[-4,-9],[-7,0],[-15,5],[-7,-2],[-16,-9],[-8,-1],[-1,-4],[-19,-7],[-16,-9],[7,-4],[11,4],[20,12],[42,4],[0,-4],[-5,-6],[-4,-7],[-2,-10],[1,-10],[-1,-10],[1,-9],[-2,-6],[-13,-4],[-17,-11],[0,-4],[14,1],[8,-1],[3,-6],[-2,-8],[-3,-5],[-5,-3],[-8,-14],[-17,-16],[-7,-5],[0,-4],[15,10],[51,63],[2,4],[1,6],[-3,10],[-1,6],[15,37],[4,3],[5,2],[3,2],[3,7],[0,5],[0,5],[-1,6],[2,6],[6,9],[2,6],[0,6],[0,4],[5,4],[9,6],[16,16],[9,6],[11,2],[10,-1],[8,-5],[16,-14],[-4,-9],[-6,-7],[-5,-9],[2,-18],[-3,-10],[-9,-16],[6,-4],[8,-17],[5,-3],[0,-4],[-15,-21],[9,2],[15,8],[8,2],[2,3],[2,18],[2,8],[5,4],[7,4],[6,1],[3,-3],[2,-11],[3,-7],[5,-6],[4,-7],[-12,-6],[-7,-1],[-6,-1],[-4,0],[-3,-1],[-3,-3],[-1,-4],[0,-3],[1,-4],[-1,-3],[-4,-7],[-14,-9],[-17,-18],[-8,-11],[-7,-14],[2,-3],[0,-4],[-1,-4],[-1,-5],[2,-4],[-2,-5],[-5,-9],[-3,-7],[0,-7],[1,-16],[-1,-9],[-9,-18],[-30,-8],[-12,-10],[5,-4],[4,2],[4,4],[4,2],[21,2],[10,3],[9,7],[8,12],[0,14],[-1,14],[3,17],[1,4],[5,10],[1,4],[2,8],[1,4],[4,5],[16,17],[2,5],[1,4],[2,3],[9,2],[9,4],[4,3],[4,5],[3,5],[0,6],[-4,8],[35,-4],[17,-6],[22,-13],[2,-2],[0,-5],[2,-3],[12,4],[10,-5],[5,-4],[4,-7],[-49,-14],[-14,-14],[4,-7],[4,-10],[2,-12],[0,-12],[-8,-16],[-6,-16],[-10,-10],[-28,-17],[-7,-13],[5,-4],[14,-21],[2,-4],[2,11],[-9,14],[1,12],[7,7],[24,8],[5,11],[2,9],[6,8],[11,13],[5,9],[4,9],[-1,4],[-3,11],[-1,6],[5,13],[11,3],[21,-2],[6,2],[6,5],[4,7],[4,10],[3,10],[2,10],[1,9],[0,10],[-1,13],[-3,10],[-3,8],[-3,11],[17,7],[34,0],[16,10],[-4,15],[-2,6],[-4,3],[-3,2],[-5,5],[-3,6],[-2,7],[4,3],[15,2],[36,16],[6,16],[1,9],[1,13],[1,7],[2,9],[3,8],[1,3],[10,6],[11,-4],[10,-7],[77,-21],[77,-22],[38,-23],[56,-12],[10,-6],[5,-9],[4,-1],[26,-19],[-2,-9],[-2,-3],[13,-13],[28,-17],[39,-54],[8,-14],[-10,-16],[-24,-17],[-15,-18],[-10,-6],[-4,-4],[-11,-20],[-11,-24],[-6,-12],[-7,-4],[-42,4],[-25,14],[-42,10],[-8,-1],[-28,-13],[-15,-3],[-7,-4],[-8,-6],[-3,-6],[-2,-5],[1,-5],[3,-6],[1,-6],[-2,-2],[-3,-2],[-4,-4],[-11,-21],[-3,-3],[-24,-6],[-8,-5],[-7,-12],[3,-10],[-2,-8],[-5,-7],[-5,-4],[-109,-30],[-8,-6],[83,12],[48,21],[8,-1],[12,-9],[13,-5],[4,-2],[2,-3],[0,-6],[-1,-2],[-2,-1],[-2,-2],[-4,-6],[-21,-21],[-12,-9],[-6,-2],[2,-8],[2,-4],[2,-4],[-14,-24],[-5,-5],[-29,-18],[-26,-3],[-12,-7],[5,-3],[4,1],[5,2],[5,0],[-1,-3],[-3,-9],[6,0],[5,2],[5,5],[4,7],[6,6],[24,4],[9,5],[9,7],[7,9],[7,12],[12,23],[6,10],[72,15],[36,22],[26,6],[38,21],[75,8],[6,-1],[24,-18],[5,-1],[6,2],[-2,6],[-20,20],[-5,3],[-5,1],[2,9],[2,6],[8,8],[3,5],[2,5],[1,5],[1,7],[5,14],[7,11],[8,7],[46,20],[34,22],[21,4],[20,-7],[21,-15],[5,-5],[9,-21],[2,-5],[1,-14],[1,-5],[12,-20],[4,-13],[-2,-14],[-6,-10],[-47,-34],[-3,-6],[-4,-12],[-2,-6],[-1,-26],[-16,-18],[-72,-29],[-10,-9],[-5,-11],[-3,-12],[-3,-10],[-6,-8],[-13,-6],[-15,1],[-73,22],[-14,-4],[-3,-3],[-2,-3],[0,-5],[2,-8],[3,-7],[-2,-7],[-2,-6],[-3,-4],[-35,-26],[-2,-5],[-2,-4],[1,-13],[-2,-6],[-5,-4],[-35,0],[-12,-4],[-9,-9],[8,-4],[35,12],[20,-4],[3,-1],[0,-4],[-4,-37],[-7,-17],[-10,-11],[-13,-7],[8,-2],[10,4],[9,8],[23,35],[-1,10],[3,14],[7,25],[-1,2],[-3,4],[-2,2],[28,27],[14,18],[-2,20],[9,3],[9,1],[9,-2],[8,-7],[-14,-8],[6,-3],[21,8],[8,-2],[17,-9],[8,-2],[6,0],[6,-1],[4,-4],[1,-11],[-22,-59],[-5,-18],[-4,-26],[-4,-4],[-6,-3],[-3,-8],[1,-8],[4,-7],[8,-13],[-10,-27],[-4,-5],[-13,-13],[1,-8],[-2,-7],[-5,-4],[-5,-1],[-2,-2],[-4,-13],[-2,-5],[3,3],[2,1],[5,0],[-4,-10],[-23,-19],[-3,-7],[-6,-20],[-2,-9],[5,2],[4,6],[8,16],[7,10],[28,25],[4,5],[2,8],[3,13],[3,12],[5,9],[13,11],[0,7],[8,16],[2,6],[-2,4],[-3,3],[-1,7],[1,6],[10,16],[-1,0],[0,5],[1,8],[4,8],[3,12],[3,6],[2,2],[2,3],[2,14],[2,5],[14,31],[4,12],[-2,4],[5,4],[13,0],[5,4],[-4,4],[-15,8],[4,11],[4,6],[4,7],[1,15],[7,10],[39,8],[42,33],[13,5],[4,4],[3,4],[1,3],[17,7],[12,0],[5,3],[13,13],[14,9],[45,10],[89,47],[11,2],[16,-4],[5,-2],[5,-4],[2,-6],[-1,-5],[-4,-5],[-1,-6],[-3,-9],[-17,-22],[-25,-25],[-69,-46],[-21,-9],[-35,0],[-11,-4],[-9,-13],[3,-7],[2,-3],[2,-2],[1,-12],[13,-19],[1,-8],[-6,-9],[-20,-13],[0,-4],[5,-3],[6,0],[26,13],[14,2],[-5,21],[-7,12],[-8,12],[-8,16],[5,5],[5,1],[13,-2],[38,4],[25,-5],[7,1],[4,11],[3,2],[1,-11],[2,-12],[5,8],[12,26],[6,4],[16,4],[12,13],[15,-4],[8,4],[-3,1],[-7,7],[8,10],[7,-3],[12,-15],[9,-2],[4,4],[2,9],[2,13],[4,11],[6,9],[7,6],[33,10],[19,0],[-1,-6],[-1,-2],[38,6],[20,-5],[21,-27],[8,-6],[102,-41],[102,-41],[7,-8],[11,-8],[2,-2],[2,-7],[1,-8],[0,-7],[-2,-6],[-3,-6],[-13,-16],[-4,-3],[-4,-1],[-3,-3],[-2,-14],[-3,-4],[-9,-3],[-3,-9],[0,-10],[-4,-10],[-8,-3],[-11,6],[-10,9],[-5,10],[1,6],[7,8],[2,4],[-2,12],[-4,4],[-6,-1],[-5,-2],[-6,-5],[-7,-8],[-5,-11],[1,-11],[4,-13],[0,-12],[-3,-10],[-5,-8],[-10,-5],[-33,-5],[-19,-10],[-30,4],[-23,-13],[-11,-2],[-21,3],[-5,-1],[-12,-6],[-11,-3],[-14,-6],[-30,-5],[-4,-5],[-5,-9],[-11,-4],[-20,-1],[-30,-21],[-24,-9],[-3,-3],[-3,-5],[-1,-5],[-1,-5],[-1,-5],[-7,-12],[-9,-8],[-10,-6],[-42,-9],[-8,-8],[-11,-5],[-6,-8],[-1,-7],[8,-2],[10,5],[15,19],[10,4],[21,-3],[20,-9],[6,-7],[8,-12],[4,-12],[-5,-5],[-47,7],[-10,-3],[-21,-12],[-9,0],[-13,-7],[-5,-6],[-2,0],[-2,-2],[-1,-4],[1,-2],[1,-3],[1,-3],[-1,-2],[-6,-8],[-7,-4],[-15,-4],[-6,-3],[-7,-10],[-5,-4],[-3,-1],[-11,1],[-3,-1],[-7,-11],[28,-1],[10,6],[68,60],[10,5],[34,3],[6,-2],[10,-8],[6,1],[11,6],[8,1],[7,5],[5,7],[0,11],[-3,7],[-3,4],[-4,2],[-4,5],[-3,6],[0,3],[0,11],[3,10],[6,10],[14,15],[10,7],[132,32],[14,-3],[22,-11],[12,-1],[6,12],[-27,8],[-5,9],[8,2],[28,-11],[12,-1],[70,6],[7,-5],[1,-3],[1,-5],[1,-5],[4,-4],[1,-5],[2,-10],[-32,-25],[3,-8],[4,-8],[-16,-22],[-20,-13],[-62,-20],[-10,-6],[-10,-13],[-10,-9],[-7,-4],[-8,-12],[-10,-5],[-7,-7],[-18,-28],[-9,-8],[-10,-5],[-10,-2],[-64,16],[-11,-2],[-11,-6],[-15,-15],[-5,-7],[-2,-8],[-4,-18],[-2,-9],[-6,-8],[-13,-11],[-5,-7],[-4,-8],[-2,-4],[-1,-6],[0,-6],[-1,-9],[-1,-6],[7,-5],[5,11],[4,15],[4,8],[9,4],[11,10],[9,13],[6,13],[0,5],[-1,7],[0,6],[6,5],[8,11],[5,3],[40,4],[13,-4],[14,-11],[6,-1],[26,0],[6,3],[43,58],[14,6],[16,14],[25,8],[18,11],[6,1],[41,-2],[21,-10],[3,1],[1,7],[4,-2],[4,-2],[3,1],[4,3],[-2,1],[-1,2],[-2,1],[-3,0],[2,6],[0,5],[-1,4],[-3,2],[6,4],[5,0],[6,1],[9,14],[9,6],[4,7],[-6,0],[-3,4],[0,5],[5,3],[3,-1],[5,-2],[14,-2],[2,1],[0,2],[1,6],[0,2],[4,3],[5,-1],[9,-4],[15,2],[15,10],[26,25],[-7,4],[-30,5],[-2,3],[3,4],[7,4],[0,4],[-11,-1],[-4,4],[0,9],[3,4],[3,-1],[5,-2],[4,-1],[-6,13],[-2,8],[4,4],[5,2],[14,16],[18,13],[7,10],[-2,11],[22,5],[7,-1],[1,-2],[3,-7],[2,-3],[3,-3],[4,-3],[39,-9],[16,-9],[12,-12],[7,-9],[43,-41],[11,-7],[15,-19],[4,-8],[10,-13],[3,-5],[2,2],[2,0],[1,-2],[2,-4],[-3,0],[7,-7],[4,-5],[3,-6],[1,-3],[0,-3],[0,-6],[1,-2],[2,-1],[2,-1],[1,-5],[25,-21],[7,-9],[2,-13],[0,-27],[3,-11],[12,-22],[3,-12],[-5,-8],[9,-17],[4,-10],[3,-10],[-65,-7],[-58,14],[-17,10],[-13,2],[-11,8],[-12,5],[-74,-4],[-12,-4],[-5,-3],[-4,-4],[-6,-9],[-4,-4],[-19,-8],[-9,-7],[-4,-15],[-4,-10],[-9,-10],[-10,-8],[-7,-3],[-55,0],[-33,9],[-11,-1],[-6,0],[1,-2],[-2,-1],[-7,-1],[-14,-9],[-44,-14],[-14,-12],[-4,-1],[-21,-3],[-11,-4],[-20,-15],[-12,-4],[-124,22],[-23,-3],[-44,-18],[-17,4],[-4,-4],[1,-6],[9,-3],[9,0],[19,-8],[11,7],[12,10],[11,5],[29,4],[102,-25],[15,2],[16,7],[10,-1],[3,2],[6,5],[4,1],[15,-1],[9,1],[16,18],[52,15],[50,-1],[36,-14],[16,-11],[109,-51],[25,-4],[12,2],[23,13],[55,0],[13,-6],[88,-4],[122,-73],[4,-4],[10,-19],[4,-5],[4,-2],[5,-4],[6,-11],[4,-13],[2,-12],[-1,-13],[-4,-9],[-21,-28],[-11,-3],[-54,26],[-51,5],[-12,-6],[0,-5],[2,-2],[3,-5],[-7,-4],[-11,5],[-20,17],[-9,5],[-11,-3],[-20,-13],[-12,-3],[-47,9],[-62,34],[-9,7],[-18,6],[-13,11],[-14,4],[-28,18],[-11,1],[-30,-9],[-93,18],[-93,18],[-54,-34],[-14,-15],[7,-7],[9,6],[18,18],[38,18],[13,2],[51,-10],[19,-10],[79,-17],[55,5],[13,-5],[4,-4],[8,-13],[7,-5],[4,-6],[2,-5],[-1,-3],[-4,-1],[-11,-6],[-5,-1],[-6,1],[-12,6],[-112,14],[-19,-8],[-25,-5],[-50,5],[1,-1],[21,-11],[39,0],[19,6],[40,-2],[7,-5],[-10,-8],[-30,-13],[-11,-13],[-4,-3],[-7,-2],[-20,2],[-33,-11],[-32,1],[-9,-5],[-8,-13],[13,0],[2,1],[2,6],[2,1],[29,0],[-1,-5],[0,-3],[0,-1],[1,-3],[-3,-7],[-5,-21],[-3,-5],[1,-3],[-2,-8],[-4,-8],[-10,-17],[11,3],[13,13],[0,16],[1,2],[3,3],[5,9],[1,2],[0,3],[1,7],[0,3],[4,8],[4,4],[27,11],[25,2],[12,15],[47,21],[25,3],[48,-18],[12,-1],[3,-1],[9,-8],[105,-55],[9,-10],[-10,-6],[-59,-4],[-7,-6],[3,-8],[-9,-6],[-12,0],[-55,20],[-43,1],[-10,-6],[-10,-1],[-1,-2],[-1,-1],[-3,-4],[0,-1],[-4,-1],[-9,5],[-5,-3],[-1,-6],[2,-6],[3,1],[5,4],[60,8],[2,-6],[7,-7],[18,-3],[12,-7],[34,1],[-3,-9],[-1,-4],[1,-4],[-2,-5],[-5,-2],[-4,-1],[5,-4],[11,-1],[5,-3],[3,-4],[8,-12],[-7,-6],[-36,8],[-15,8],[-86,10],[10,-9],[50,-5],[5,-3],[5,-5],[5,-3],[11,-2],[14,-10],[57,-15],[10,1],[6,-1],[4,-5],[-4,-4],[7,-4],[13,0],[7,-3],[-13,-7],[-16,-1],[-96,32],[-15,-1],[-34,13],[-21,-2],[-15,4],[-15,1],[-7,-3],[0,-4],[18,-7],[9,-6],[5,-12],[-31,4],[0,-4],[1,-5],[-5,-1],[-8,1],[-5,3],[-6,6],[-8,5],[-8,1],[-13,-7],[-13,9],[-6,-1],[-8,-2],[-21,3],[-7,5],[-14,13],[-6,3],[-28,1],[-39,17],[-17,-1],[-9,-13],[35,1],[19,-5],[14,-12],[-55,2],[-9,-11],[109,-8],[8,-4],[4,-6],[-1,-4],[-3,-4],[0,-6],[-2,-3],[-3,-1],[-3,-1],[-3,1],[0,-4],[7,-4],[7,2],[13,10],[7,3],[35,-4],[24,-11],[33,6],[9,-6],[5,-5],[26,1],[53,-12],[19,-8],[3,-3],[1,-3],[2,-2],[3,-1],[18,0],[0,-3],[-14,-9],[0,4],[-4,-1],[-17,1],[7,-5],[14,-3],[6,-8],[-9,-10],[-11,5],[-12,8],[-10,5],[-15,-5],[-22,-13],[-9,1],[-70,20],[-23,-7],[-6,0],[-5,0],[-5,-6],[-1,-2],[-4,-4],[0,-2],[0,-4],[0,-2],[-7,-4],[-15,0],[-6,-4],[5,-2],[11,-5],[5,-1],[8,0],[9,3],[8,8],[5,3],[6,8],[4,2],[15,4],[40,-10],[2,-2],[1,-4],[-1,-4],[-1,-3],[-2,-2],[-5,-1],[-11,-5],[-47,-2],[-12,-8],[83,-4],[5,3],[2,4],[2,6],[2,5],[4,4],[8,0],[7,-1],[5,-3],[33,-3],[5,-8],[2,-3],[13,5],[4,-4],[0,-4],[-1,-4],[1,-5],[3,-5],[2,-1],[3,1],[4,1],[17,0],[1,-1],[1,-5],[1,-2],[3,0],[3,0],[5,4],[7,11],[4,3],[5,-6],[0,-4],[-3,-4],[-1,-5],[4,-14],[1,-14],[2,-5],[-1,-10],[-10,-23],[-4,-10],[5,3],[5,5],[4,5],[4,7],[1,7],[3,16],[4,15],[0,7],[-1,7],[0,9],[3,8],[3,-1],[4,-4],[5,-3],[32,10],[10,7],[6,-1],[6,-3],[2,-3],[2,-4],[4,-2],[12,4],[4,0],[4,-1],[4,-3],[4,-8],[-13,-11],[-16,-3],[-9,-8],[7,-23],[0,-9],[-2,-8],[-2,-7],[-1,-8],[1,-8],[3,-1],[3,2],[10,17],[3,7],[1,9],[-1,8],[-5,11],[-2,8],[7,2],[25,-2],[7,4],[4,1],[4,-3],[3,-8],[2,-2],[3,0],[0,10],[6,5],[7,0],[6,-3],[2,-6],[2,-8],[2,-8],[4,-3],[3,6],[2,10],[3,6],[6,-7],[2,-9],[1,-7],[1,-5],[5,-6],[0,-3],[-23,3],[-12,-2],[-7,-10],[60,0],[4,4],[2,5],[1,11],[1,4],[-5,8],[-3,4],[-1,5],[18,-4],[15,-11],[6,-8],[5,-1],[11,7],[19,8],[19,-1],[36,-15],[0,-4],[-18,-3],[-10,2],[-7,0],[-4,-5],[1,-10],[-8,1],[-9,6],[-9,2],[-8,-5],[1,-12],[-6,-8],[-8,-6],[-15,-5],[-8,1],[-17,6],[-20,12],[-41,5],[-11,-5],[-8,2],[-4,-2],[1,-1],[0,-1],[1,-2],[-9,-6],[-98,-23],[-12,-8],[-5,-5],[-4,-7],[-2,-12],[2,-9],[5,-4],[7,5],[0,3],[2,11],[0,2],[3,1],[16,11],[7,2],[22,-1],[22,11],[5,4],[3,0],[3,0],[-2,-7],[-4,-2],[-4,-2],[-3,-5],[-2,-8],[1,-5],[1,-5],[0,-6],[-6,-7],[-28,-9],[1,0],[0,-2],[-1,-2],[4,-1],[13,5],[16,2],[5,2],[3,3],[2,5],[2,12],[-2,1],[0,3],[0,4],[2,3],[32,22],[4,6],[14,1],[7,-5],[-2,-15],[6,1],[4,4],[8,11],[4,4],[5,1],[6,1],[6,-1],[46,-19],[5,-6],[-15,-6],[-48,-6],[1,-1],[3,-3],[0,-3],[-1,-1],[-1,0],[-2,0],[-11,-5],[-10,-12],[-6,-17],[3,-23],[-8,-14],[-8,-5],[-19,-1],[-10,3],[-11,6],[-10,4],[-11,-5],[11,-8],[46,-15],[5,1],[4,4],[4,6],[10,6],[4,6],[-2,4],[3,4],[3,4],[3,5],[0,5],[-2,5],[-1,5],[-1,6],[-1,7],[44,24],[4,4],[15,4],[11,0],[7,-2],[3,-2],[1,-1],[2,-3],[1,-3],[9,-3],[13,-8],[30,-6],[7,-4],[-3,-5],[0,-4],[0,-4],[-1,-4],[-3,-4],[-6,-4],[-3,-4],[-4,-9],[-2,-10],[0,-10],[5,-7],[-6,-8],[-31,-26],[-3,-9],[0,-14],[3,-6],[2,-4],[2,-2],[4,2],[0,5],[1,7],[1,6],[5,9],[23,22],[8,5],[5,0],[3,2],[4,10],[3,5],[7,5],[6,-2],[4,-7],[2,-13],[0,1],[-2,-2],[-1,-2],[-1,-3],[1,-1],[0,-1],[1,-2],[0,-4],[0,-22],[-3,-11],[-4,-10],[-5,-9],[-5,-6],[11,2],[9,9],[6,14],[4,45],[6,16],[8,8],[11,3],[54,-10],[9,-4],[-5,-20],[-14,-5],[-26,-1],[0,-5],[24,-4],[25,12],[4,0],[10,-3],[3,-2],[0,-5],[0,-5],[0,-5],[3,-10],[3,-4],[9,-6],[0,-4],[-8,-7],[-22,-6],[-10,-11],[-7,-21],[-2,-4],[-4,-2],[-3,-6],[-6,-12],[3,-6],[-1,-7],[-4,-5],[-4,-2],[-20,-2],[-38,14],[-16,2],[-14,-6],[7,-5],[14,-2],[12,-7],[15,-2],[7,-7],[10,-7],[25,4],[7,-11],[-2,-12],[4,-9],[6,0],[4,17],[0,5],[-1,3],[-1,3],[-1,3],[-1,5],[1,3],[2,3],[1,3],[2,8],[3,6],[0,6],[-2,9],[6,5],[7,19],[5,8],[4,3],[8,-2],[3,1],[6,7],[3,2],[17,4],[5,4],[13,11],[13,9],[14,4],[4,5],[1,9],[0,16],[2,12],[0,4],[-1,5],[-3,5],[-1,5],[0,6],[4,11],[5,0],[6,-6],[4,-7],[6,-13],[1,-6],[-3,-6],[-7,-9],[3,-1],[3,0],[2,2],[2,2],[4,-6],[-2,-6],[-9,-10],[-5,-13],[-3,-6],[-3,-3],[-28,-33],[0,-4],[2,0],[3,-6],[15,-17],[5,-9],[-1,-16],[-5,-11],[-7,-11],[-4,-11],[0,-6],[2,-11],[0,-7],[-2,-8],[-6,-13],[-2,-8],[1,-11],[3,-11],[2,-11],[-4,-11],[4,-10],[5,0],[2,7],[-3,11],[6,9],[4,12],[3,15],[3,30],[-1,5],[-3,8],[-1,10],[3,7],[15,11],[23,10],[3,3],[1,3],[1,5],[1,4],[5,5],[1,7],[-1,8],[-2,6],[-4,6],[-6,8],[-4,7],[5,3],[5,0],[5,-3],[4,0],[5,2],[12,10],[12,5],[38,-2],[4,1],[7,3],[2,1],[6,-3],[1,-2],[-2,-27],[-3,-13],[-15,-41],[-3,-11],[-2,-6],[-4,-3],[-3,-2],[-7,-8],[-7,-4],[-1,-6],[2,-7],[2,-5],[6,-8],[18,-14],[14,-6],[6,-8],[6,-10],[3,-11],[11,-39],[3,-6],[8,2],[2,5],[-11,48],[-1,8],[-4,9],[-38,28],[-7,8],[-2,8],[4,5],[7,5],[4,4],[2,4],[3,12],[15,35],[2,6],[9,10],[3,2],[23,4],[31,16],[8,13],[-9,16],[4,9],[6,-1],[6,-3],[5,-1],[3,2],[2,3],[1,4],[2,3],[7,5],[8,3],[17,-3],[32,-20],[19,-6],[9,-4],[8,-10],[-11,-11],[-36,-15],[-35,5],[-14,-9],[8,-5],[18,0],[8,-7],[-18,-26],[-11,-11],[-10,-4],[0,2],[-4,9],[-3,2],[-1,-5],[0,-7],[1,-1],[-9,-20],[-2,-8],[3,0],[3,2],[14,15],[4,2],[6,1],[3,-2],[3,-5],[1,-8],[1,-7],[-2,-6],[-5,-2],[-3,-2],[2,-8],[-11,-7],[-12,-3],[-11,-6],[-9,-17],[-2,-6],[0,-8],[0,-16],[2,-8],[5,-2],[3,3],[-1,9],[5,8],[1,10],[3,10],[6,9],[5,2],[9,0],[5,1],[3,2],[2,2],[2,2],[1,2],[1,4],[-1,4],[0,2],[0,3],[4,4],[15,4],[4,4],[3,3],[3,3],[5,2],[6,-1],[11,-6],[5,-1],[1,-3],[1,-14],[1,-4],[-3,-11],[-2,-9],[-3,-7],[-7,-1],[0,-4],[9,0],[9,2],[6,8],[2,16],[1,14],[2,12],[1,12],[-2,13],[5,4],[5,-3],[4,-3],[5,-2],[3,1],[4,5],[3,2],[9,2],[4,-1],[29,-15],[13,-11],[0,-15],[15,5],[7,0],[3,-8],[-1,-4],[-7,-14],[0,-2],[0,-3],[0,-2],[-1,-1],[-25,-2],[-15,-5],[-15,-9],[-12,-12],[5,0],[49,17],[14,1],[6,2],[5,5],[7,12],[5,3],[6,-3],[8,-9],[8,-11],[5,-9],[2,-16],[-4,-10],[-8,-6],[-9,-1],[8,-5],[8,-1],[33,4],[9,-2],[1,-8],[-2,-9],[-5,-12],[-2,-11],[8,-4],[6,-1],[3,-3],[-1,-4],[-5,-4],[-3,-1],[-7,1],[-2,-2],[0,-9],[-3,-2],[-36,-19],[-5,-1],[-49,8],[15,-11],[17,-5],[34,0],[30,8],[14,0],[14,-8],[9,-20],[4,-11],[0,-10],[2,-14],[-3,-11],[-7,-6],[-7,-1],[23,-7],[3,-7],[-4,-7],[-9,2],[-17,7],[-104,15],[-103,16],[-10,-7],[122,-28],[28,1],[8,-6],[-16,-14],[-17,-10],[-12,-3],[-37,7],[-73,-24],[-9,-8],[13,-6],[13,3],[25,15],[17,5],[77,1],[80,26],[7,0],[6,-4],[-10,-27],[-6,-10],[-9,-3],[-10,1],[-16,8],[-5,-2],[-11,-7],[-112,-40],[-16,-14],[-9,-19],[1,-38],[-2,-7],[8,-2],[4,1],[4,3],[3,6],[1,3],[5,30],[1,4],[3,6],[7,7],[3,5],[7,9],[11,5],[41,4],[16,7],[14,4],[28,14],[49,0],[5,2],[4,3],[4,5],[5,18],[3,4],[2,0],[9,-4],[18,4],[2,-2],[3,-8],[2,-4],[4,0],[15,10],[34,6],[17,-2],[16,-8],[-1,-7],[-1,-9],[0,-14],[-2,-5],[-21,-34],[-36,-29],[-19,-9],[-9,-13],[-9,-19],[2,-7],[6,-12],[1,14],[1,11],[2,8],[6,7],[17,14],[35,11],[16,12],[15,18],[11,21],[0,7],[-4,7],[-2,10],[2,12],[22,38],[10,14],[3,3],[6,1],[15,-5],[2,-3],[-1,-6],[-4,-5],[-3,-3],[-4,-1],[-12,-11],[0,-4],[9,0],[10,5],[10,10],[5,13],[-6,6],[-6,7],[13,12],[13,-4],[13,-11],[12,-5],[7,-9],[6,-20],[1,-20],[-9,-12],[-9,-16],[-5,-5],[-53,-20],[-5,-5],[-3,-7],[-1,-7],[2,-5],[1,-3],[12,-29],[2,-12],[0,-10],[-2,-8],[-2,-7],[-13,-16],[-18,-7],[-34,-5],[-15,-6],[-7,-6],[-4,-9],[0,-3],[3,-8],[0,-3],[-1,-7],[-2,-5],[-6,-6],[-8,-5],[-26,-4],[-18,6],[-9,-1],[-4,-8],[69,-5],[12,5],[7,5],[4,5],[2,3],[1,4],[0,4],[-5,11],[0,4],[1,4],[0,6],[1,6],[3,3],[3,1],[3,0],[4,-1],[2,-2],[3,-16],[2,-25],[0,-20],[-2,-19],[-9,-38],[8,0],[4,2],[3,6],[5,10],[3,9],[7,22],[3,9],[2,19],[-4,18],[-1,13],[14,6],[18,2],[8,3],[21,17],[36,7],[2,3],[2,5],[2,3],[9,3],[11,0],[11,-2],[7,-5],[-1,-10],[0,-16],[2,-18],[3,-13],[1,-22],[0,-16],[-2,-6],[-1,-3],[-7,-18],[-2,-10],[0,-5],[0,-6],[0,-7],[2,0],[-5,-10],[-6,-11],[-4,-10],[3,-10],[4,8],[12,10],[6,8],[0,5],[-2,12],[-1,6],[2,4],[6,7],[2,5],[-2,0],[5,12],[5,5],[5,7],[2,15],[-1,3],[-8,13],[0,6],[5,10],[2,6],[-1,5],[-4,9],[-1,6],[1,5],[1,5],[5,8],[5,5],[9,-2],[4,1],[5,3],[16,0],[7,-3],[7,-6],[6,-8],[6,-10],[2,-9],[1,-22],[1,-7],[8,-8],[9,-2],[7,-6],[3,-19],[20,-29],[5,-5],[2,3],[2,7],[1,8],[0,6],[-2,5],[-11,12],[-3,5],[-5,13],[-3,6],[-10,3],[-3,4],[1,9],[-5,21],[2,1],[2,4],[1,2],[-1,10],[5,3],[13,-1],[11,3],[11,5],[3,9],[-1,12],[-6,24],[2,7],[2,5],[3,3],[4,2],[2,-1],[5,-3],[3,-1],[3,1],[2,1],[6,4],[11,5],[14,-1],[14,-5],[10,-8],[-8,-14],[-4,-9],[-3,-10],[0,-5],[-1,-12],[-1,-4],[-2,-4],[-6,-7],[-3,-5],[6,-4],[7,-2],[7,0],[5,2],[17,30],[3,4],[5,3],[5,1],[19,-1],[-1,-5],[-6,-12],[5,-5],[6,2],[7,5],[6,3],[7,-2],[4,-4],[1,-7],[-3,-10],[-14,-13],[-37,7],[-17,-6],[-5,-9],[3,-5],[5,1],[12,11],[37,-2],[7,-3],[6,-1],[16,7],[26,-13],[-6,-15],[-9,-7],[-19,-2],[18,-12],[44,-3],[16,-22],[-6,-4],[5,-6],[12,-2],[5,-6],[8,-15],[17,-21],[6,-14],[3,-13],[-6,-8],[1,-2],[3,-4],[1,-2],[-3,-3],[-10,-5],[-8,-7],[-4,-2],[-4,1],[-3,1],[-3,1],[-5,-3],[-1,-2],[-3,-7],[-1,-3],[-2,-6],[-38,3],[-6,3],[-5,6],[-2,5],[-1,7],[-2,7],[-3,6],[-25,23],[-11,5],[-25,2],[-11,6],[-14,11],[-12,7],[-9,-7],[4,-9],[-3,-8],[-6,-6],[-39,-10],[0,-4],[18,-9],[10,0],[7,7],[8,11],[8,5],[9,0],[42,-12],[8,-8],[5,-9],[30,-44],[7,-7],[10,-5],[4,-4],[3,-6],[0,-6],[-4,-5],[-5,-3],[-10,-3],[-16,2],[-5,-2],[-3,-3],[-8,-11],[-4,-2],[-5,1],[-8,6],[-4,1],[-10,0],[-2,-1],[-3,-5],[-2,-2],[-25,-8],[0,-4],[9,-5],[9,1],[17,8],[83,0],[5,-2],[2,-4],[2,-5],[3,-5],[13,-7],[4,-5],[-9,-3],[-13,-10],[-7,-3],[-3,0],[-8,4],[-4,-1],[-3,-2],[-5,-7],[-3,-3],[-8,0],[-18,7],[-9,-2],[-6,-8],[-6,-10],[-6,-7],[-7,-4],[-16,0],[-5,2],[-8,5],[-10,4],[-12,11],[-6,2],[-4,-1],[-5,-5],[-4,-2],[-19,0],[-4,5],[-3,9],[-1,11],[-3,8],[4,15],[-8,6],[-20,1],[-4,4],[-11,2],[-11,4],[-21,0],[-32,10],[-6,-1],[2,-8],[3,-7],[1,-4],[-6,-2],[-6,2],[-6,4],[-6,1],[-6,-3],[6,-7],[11,-6],[11,-2],[7,5],[6,7],[10,2],[9,-1],[6,-6],[2,-17],[14,-16],[18,-13],[10,-11],[-6,-2],[-17,-14],[-22,-5],[-26,-18],[-12,-4],[-6,-4],[-7,-2],[-7,4],[-1,6],[-14,6],[-6,5],[1,2],[1,6],[-3,1],[-2,3],[-1,4],[-1,4],[0,4],[1,2],[0,3],[-3,7],[-7,7],[-7,4],[-15,2],[0,-5],[7,-6],[6,-7],[10,-19],[-2,-4],[5,-14],[7,-7],[7,-5],[7,-9],[7,-7],[11,1],[34,16],[4,-1],[6,-9],[2,-2],[12,-6],[20,-6],[6,0],[0,-10],[9,-5],[52,-4],[9,-5],[-13,-8],[-5,-7],[5,-10],[7,-3],[17,4],[8,-1],[0,-3],[-3,-1],[-3,-2],[-3,-2],[-2,-4],[10,1],[4,-1],[5,-4],[-8,-4],[-15,-2],[-6,-6],[4,-3],[4,-2],[25,2],[4,-3],[6,-9],[1,-6],[-3,-3],[-16,4],[-9,-2],[-16,-11],[-8,3],[-8,4],[-8,-1],[-29,-17],[-4,0],[-4,2],[-7,8],[-3,2],[-4,3],[-4,5],[-4,4],[-8,-6],[-6,2],[-10,8],[-8,4],[-27,-4],[-4,1],[-10,5],[-4,4],[-5,3],[-6,-3],[-5,-4],[-5,-2],[-6,1],[-6,4],[-5,6],[-5,7],[-3,10],[-3,20],[-4,9],[-12,11],[-14,0],[-26,-16],[5,-4],[7,0],[20,7],[3,0],[4,-3],[2,-3],[6,-12],[3,-17],[4,-11],[7,-7],[4,-8],[3,-2],[81,-9],[5,-4],[5,-10],[5,-6],[8,3],[5,0],[6,-6],[4,-10],[2,-11],[-19,-4],[3,-4],[3,-4],[4,-3],[5,-1],[6,4],[3,1],[3,-1],[0,-5],[-2,-4],[-1,-3],[-1,0],[0,-10],[1,-4],[2,-4],[15,-19],[4,-4],[-2,-7],[-5,0],[-10,3],[-4,-1],[-9,-6],[-30,-7],[-8,6],[4,8],[-4,1],[-3,-1],[-2,-2],[-3,-2],[-4,-1],[-18,2],[-18,10],[-2,2],[-4,9],[-3,4],[-3,4],[-4,2],[-3,0],[-4,2],[-1,4],[0,5],[-2,6],[-6,5],[-7,4],[-5,0],[1,-5],[-2,-4],[0,-2],[0,-2],[12,-10],[5,-3],[-1,-2],[-1,-2],[0,-2],[-2,-2],[0,-4],[5,-2],[18,-16],[4,0],[8,2],[7,-5],[18,-19],[8,-4],[3,-4],[-1,-8],[-2,-9],[-2,-6],[-4,0],[-14,6],[-10,7],[-38,13],[-6,1],[8,-22],[10,-7],[26,-4],[5,-4],[8,-13],[12,-6],[1,-6],[-2,-8],[-3,-7],[-1,-10],[-5,-13],[-6,-7],[-5,9],[6,16],[-6,5],[-10,-3],[-5,-8],[1,-12],[-2,-4],[-4,-2],[-6,1],[-5,2],[-4,4],[-5,5],[-2,4],[0,7],[-2,2],[-3,0],[-2,1],[-1,2],[-1,5],[-1,5],[-1,25],[-3,16],[-7,14],[-8,8],[-9,-3],[8,-8],[4,-5],[1,-6],[1,-15],[1,-15],[3,-13],[0,-6],[-2,-8],[-15,-22],[-9,-1],[-3,3],[-2,10],[0,5],[0,5],[-1,5],[-41,8],[-2,-2],[2,-8],[-10,1],[-5,9],[-5,13],[-5,13],[-15,18],[-7,11],[-3,14],[-3,10],[-22,38],[-5,16],[-3,20],[-5,15],[-7,4],[-1,-1],[-1,-1],[-1,-2],[-1,-4],[2,0],[-2,-4],[2,-7],[-1,-6],[-5,-11],[13,-17],[20,-52],[13,-17],[-2,-3],[-4,-9],[3,-4],[3,-6],[3,-7],[2,-7],[-8,0],[-24,8],[-32,-4],[-4,-6],[-3,-2],[-5,5],[-25,5],[-3,-2],[2,-6],[7,-8],[7,-4],[22,6],[7,-3],[11,-11],[6,-2],[32,4],[5,-3],[5,-7],[8,-15],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[2,-6],[0,-2],[-5,-18],[-4,-5],[-32,-5],[-4,3],[-5,6],[-11,23],[-4,5],[-4,2],[-7,1],[0,-4],[2,-1],[4,-3],[0,-4],[-1,-4],[1,-4],[4,-8],[-7,2],[-3,0],[-4,-2],[6,-10],[16,-6],[5,-13],[-2,-9],[4,-2],[8,3],[10,0],[4,-1],[41,-27],[0,-4],[-6,0],[-11,4],[-6,0],[-7,-4],[-3,0],[-4,0],[-41,24],[-16,4],[-7,-8],[53,-36],[16,-2],[5,-3],[-38,-3],[0,-4],[17,0],[0,-5],[-3,1],[-2,-1],[-5,-4],[8,-6],[0,-2],[7,-2],[20,-14],[-3,-10],[-1,-3],[7,1],[3,-2],[3,-2],[-7,-4],[-14,3],[-7,-3],[-4,-7],[3,-3],[5,-3],[5,-4],[3,3],[3,2],[7,0],[3,-2],[2,-5],[1,-4],[-3,-2],[-15,0],[-8,-2],[-6,-6],[6,-5],[24,-3],[7,-3],[3,-7],[-2,-7],[-6,-3],[-2,1],[-4,5],[-3,2],[-2,-1],[-8,-3],[-24,1],[-6,-5],[23,-12],[-3,-3],[-4,-1],[-3,-1],[-4,1],[10,-5],[21,-2],[9,-6],[-4,-10],[-7,-5],[-8,-4],[-7,-5],[3,-2],[2,-4],[1,-4],[2,-2],[3,-1],[5,-6],[3,-1],[-6,-5],[-7,-1],[-14,2],[0,-5],[21,-3],[0,-5],[-5,-5],[-5,0],[-5,2],[-8,-1],[3,-11],[1,-5],[-5,-6],[-16,-14],[2,-2],[4,-5],[2,-1],[-6,-7],[-3,-5],[-1,-4],[1,-5],[2,-7],[1,-6],[-3,-2],[-15,2],[-18,9],[4,4],[1,4],[-2,4],[-5,4],[11,7],[5,5],[-1,9],[1,8],[-3,5],[-4,1],[-4,-4],[-4,-5],[-12,-5],[-10,-7],[-5,-2],[-3,7],[-2,1],[-15,5],[0,4],[2,2],[1,2],[0,2],[1,2],[-1,0],[-3,0],[0,4],[17,0],[-1,3],[-1,1],[8,6],[25,6],[-8,6],[-10,3],[-10,-2],[-7,-9],[-8,-5],[-10,1],[-7,8],[1,15],[-5,10],[1,10],[5,11],[17,25],[3,9],[-5,4],[-6,0],[-7,-2],[-5,-5],[-3,-19],[-2,-1],[-2,1],[-1,1],[-13,-20],[-5,-5],[-7,-2],[-7,3],[-11,10],[-4,0],[-2,-12],[-1,-14],[-3,-9],[-5,-5],[-7,-2],[-5,3],[-16,25],[3,3],[1,1],[0,4],[-6,-1],[-6,-4],[-5,-3],[-5,4],[6,9],[13,26],[8,8],[19,8],[9,6],[0,4],[-10,1],[-31,-5],[-3,-2],[-4,-9],[-3,-2],[-4,-1],[-5,-3],[-7,-7],[0,-4],[-2,-1],[-2,2],[-3,13],[-8,2],[-2,6],[0,4],[-3,12],[-1,6],[0,6],[0,6],[1,4],[1,4],[3,3],[7,9],[4,9],[-3,4],[-5,-4],[-5,-7],[-4,-3],[-1,5],[-2,0],[5,10],[15,17],[3,8],[21,27],[0,3],[-4,5],[3,3],[2,3],[2,4],[1,6],[-13,-1],[-4,-5],[2,-10],[-4,-3],[-8,-5],[-4,-4],[-1,-9],[0,-6],[-1,-4],[-5,-6],[-13,-4],[-4,-4],[-3,-6],[-6,-17],[-3,-5],[0,-4],[6,-20],[-1,-21],[-12,-37],[-9,-21],[-6,-9],[-2,4],[-2,15],[-5,3],[-7,-3],[-7,-1],[0,4],[2,1],[3,2],[2,1],[-2,6],[-3,3],[-2,3],[6,15],[1,6],[-3,1],[-4,-1],[-2,-3],[-1,-4],[-2,-4],[-8,-3],[-7,-5],[-5,-1],[3,10],[2,8],[3,6],[5,4],[-8,8],[-1,4],[4,6],[3,3],[8,3],[4,0],[0,4],[-12,-1],[-4,3],[-1,8],[-2,2],[-2,1],[-4,0],[-2,0],[-2,-3],[-4,-10],[-9,-8],[-9,2],[-10,9],[-10,14],[14,0],[-3,6],[-4,3],[-4,0],[-5,3],[0,3],[4,0],[5,5],[12,3],[4,5],[3,-2],[9,-6],[5,0],[11,7],[10,9],[-30,4],[-28,-8],[-6,4],[7,7],[20,8],[18,14],[21,5],[10,6],[6,9],[3,3],[28,1],[5,-2],[4,-3],[5,-2],[4,3],[3,7],[6,25],[-3,4],[-5,0],[-3,-5],[-2,-9],[-2,-8],[-6,-5],[-6,0],[-5,3],[2,1],[6,3],[0,4],[-34,-4],[-5,6],[-1,4],[-5,-4],[-4,-7],[-1,-3],[-5,-5],[-4,-2],[-10,-1],[-14,-7],[-5,-1],[-16,5],[-4,-3],[-19,-9],[-10,-8],[2,-10],[-8,-5],[-9,3],[-8,9],[-4,5],[-12,16],[-4,7],[-1,7],[1,8],[0,7],[-7,8],[7,7],[8,3],[25,4],[27,11],[-2,5],[0,2],[1,3],[6,5],[2,1],[2,-1],[1,0],[1,3],[0,3],[0,1],[2,2],[5,8],[3,2],[3,2],[3,-1],[7,-3],[4,0],[-2,5],[-10,9],[0,3],[-1,6],[0,7],[2,3],[27,4],[7,3],[0,5],[-34,3],[-6,-2],[-5,-6],[-27,-54],[-6,-7],[-10,-1],[-19,2],[-16,-3],[-8,1],[-8,5],[-4,7],[3,4],[6,6],[2,10],[-3,2],[-27,-25],[-6,-3],[-4,3],[-4,13],[5,2],[4,3],[3,5],[-2,6],[1,11],[10,6],[12,0],[13,-5],[16,5],[3,3],[1,17],[4,4],[11,3],[20,13],[12,4],[21,-1],[10,2],[9,8],[-9,5],[-49,-7],[-18,-7],[-7,-5],[-14,-16],[-5,-9],[-7,-3],[-75,13],[1,6],[14,35],[4,9],[2,6],[1,5],[-3,3],[-4,-1],[-4,-4],[-8,-12],[-6,-8],[-7,-3],[-4,9],[0,7],[3,7],[4,10],[6,22],[2,6],[21,28],[4,7],[2,7],[5,4],[14,4],[8,6],[12,3],[16,11],[7,3],[-1,0],[7,1],[13,9],[28,10],[6,4],[8,-1],[29,-18],[-2,0],[6,-1],[5,-2],[5,-1],[5,4],[-3,5],[-4,5],[-5,4],[-9,4],[-7,11],[-4,3],[0,4],[7,9],[8,14],[6,17],[3,17],[3,20],[4,20],[7,15],[21,11],[22,25],[12,6],[12,2],[12,7],[12,10],[10,13],[-5,2],[-3,-2],[-2,-4],[-2,-3],[-3,-3],[-2,-1],[-2,-1],[-2,2],[-2,5],[-1,2],[-4,-1],[-4,-1],[-17,-13],[-4,-1],[-5,-1],[-5,-2],[-10,-8],[-26,-10],[-16,-16],[-8,-12],[-5,-13],[2,0],[-2,-3],[-2,-2],[-2,-1],[-2,-2],[0,-2],[-1,-4],[-4,-15],[-2,-8],[1,-5],[2,-13],[-6,-8],[-14,-5],[-8,-11],[-4,-2],[-16,1],[-4,-3],[-6,-7],[-40,-19],[-10,-3],[-4,5],[-1,3],[-3,2],[-6,1],[-1,-3],[-2,-13],[-2,-5],[-3,-2],[-12,-6],[-6,-5],[-3,-2],[-100,-6],[-20,-9],[-10,-2],[-11,0],[-7,4],[-4,10],[-1,21],[-1,6],[-3,6],[-2,5],[1,7],[4,4],[5,3],[3,6],[-1,9],[5,4],[12,2],[6,2],[46,39],[10,2],[2,10],[3,7],[8,6],[9,14],[2,6],[2,6],[2,13],[2,5],[4,7],[12,11],[-4,3],[-10,-2],[-5,3],[15,10],[5,8],[-3,11],[0,3],[2,3],[0,2],[-2,4],[-4,-2],[-3,-7],[-3,-9],[-1,-9],[-1,-2],[-2,-2],[-2,-1],[-4,-2],[-1,-3],[-4,-28],[-2,-6],[-4,-9],[-25,-39],[-4,-3],[-11,-2],[-12,-6],[-15,-13],[-3,-5],[-5,-4],[-14,-7],[-7,-4],[-6,-1],[-15,1],[-38,14],[-1,3],[0,4],[-1,4],[-11,9],[-2,3],[0,1],[0,3],[-1,5],[-2,5],[-12,12],[-1,2],[1,0],[0,-1],[1,-2],[2,6],[4,7],[5,4],[5,-5],[1,0],[5,14],[7,14],[-24,-21],[-13,-7],[-9,12],[1,7],[-4,-3],[-10,-8],[-6,4],[-5,8],[-6,3],[-6,-7],[8,-7],[8,-9],[4,-10],[-5,-11],[-10,-3],[-14,2],[-12,8],[-6,16],[-2,13],[0,9],[3,4],[15,-7],[2,1],[-1,6],[-1,8],[-2,6],[-3,2],[-4,3],[3,4],[9,10],[0,3],[-19,-2],[-8,3],[-1,12],[5,6],[31,12],[2,3],[-2,4],[-4,3],[-4,0],[-8,-6],[-4,-2],[-5,-1],[-9,-4],[-7,-6],[-9,-9],[2,0],[-21,-1],[-11,2],[-9,7],[9,3],[7,8],[4,14],[4,19],[-7,-1],[-3,-5],[-1,-7],[-6,-3],[-6,2],[-7,4],[-6,6],[-4,8],[8,5],[0,14],[-3,16],[-6,10],[0,-3],[-3,-1],[-4,1],[-3,3],[32,18],[6,11],[-11,5],[-23,-6],[-12,5],[-22,19],[-12,7],[-13,2],[0,-4],[49,-41],[-9,-9],[-13,-8],[-12,-3],[-8,4],[-1,-4],[-1,-3],[-1,-2],[-1,-3],[-7,7],[-8,3],[-9,-1],[-8,-5],[0,-4],[20,-2],[3,-4],[-4,-11],[-9,-4],[-11,1],[-6,4],[-3,9],[2,9],[-1,7],[-24,9],[-8,6],[-7,8],[2,10],[-6,3],[-16,-4],[-7,-8],[-4,-2],[-4,4],[-13,22],[-2,2],[-3,2],[-4,0],[-4,-2],[2,-5],[6,-9],[2,-13],[-5,-3],[-8,3],[-6,5],[-3,4],[-4,3],[-5,1],[-5,0],[1,-3],[1,-6],[2,-4],[-16,4],[-8,0],[-7,-8],[12,-6],[90,-6],[5,-4],[16,-6],[5,-4],[4,-6],[1,-10],[5,-13],[21,-13],[9,-8],[-5,-5],[0,-5],[3,-11],[1,-8],[0,-8],[-3,-6],[-6,-2],[-6,4],[-9,16],[-6,4],[-30,4],[0,4],[3,0],[1,1],[3,3],[-4,4],[-5,1],[-11,-1],[4,-12],[9,-11],[11,-7],[6,-3],[5,-4],[15,-7],[7,-1],[4,-3],[13,-14],[4,-7],[-5,-8],[-8,0],[-16,4],[-7,-4],[-6,-8],[-7,-5],[-9,5],[-9,15],[-4,2],[-2,-11],[-2,-2],[-6,6],[-6,8],[-3,6],[2,2],[1,2],[0,2],[1,3],[-12,5],[-3,2],[-1,6],[0,6],[-1,5],[-4,4],[-4,-3],[-5,5],[-8,14],[-2,-4],[-3,4],[-10,5],[-4,3],[3,6],[1,2],[-7,0],[-13,-5],[-28,12],[-6,5],[-3,9],[-3,20],[-4,4],[-2,-2],[-1,-6],[-2,-6],[-4,-2],[-3,2],[-6,10],[-4,4],[-13,-5],[-2,-3],[2,-5],[5,0],[4,-1],[2,-8],[2,-3],[9,-6],[8,-3],[2,-5],[1,-7],[1,-7],[1,-6],[1,-3],[1,-2],[3,-5],[11,-9],[5,-8],[6,-7],[1,-2],[0,-8],[0,-7],[2,-5],[3,-3],[0,-4],[8,-7],[2,-7],[-2,-9],[-3,-6],[-9,-7],[6,-6],[13,-3],[4,-4],[0,-1],[-2,-3],[10,-2],[23,-22],[22,-7],[-1,-5],[0,-4],[1,-2],[1,-1],[2,-1],[10,-8],[34,-12],[5,-4],[2,-8],[2,-11],[3,-10],[3,-4],[3,-1],[5,-6],[3,-1],[15,0],[0,-4],[-19,-14],[-11,-5],[-12,-1],[4,-3],[8,-3],[4,-2],[2,-4],[2,-9],[1,-4],[4,-5],[5,-5],[5,-4],[5,-2],[-4,-10],[-6,-1],[-17,9],[-13,-2],[-5,-3],[-3,-1],[-2,2],[-3,4],[-3,3],[-4,2],[-3,1],[-1,1],[-1,2],[0,1],[-1,0],[-2,-1],[0,-2],[0,-2],[0,-3],[-9,-18],[-7,-5],[-12,10],[-8,0],[-16,-3],[-3,0],[-3,2],[-3,3],[-3,5],[-3,3],[-9,1],[-4,2],[-7,16],[-5,4],[-2,-10],[2,-7],[4,-8],[8,-11],[0,-4],[-13,-1],[-6,-3],[-5,-6],[-5,-2],[-32,15],[-3,7],[-1,9],[-2,9],[-4,6],[-5,5],[-3,5],[1,9],[-11,4],[-2,4],[0,5],[4,14],[1,7],[-1,2],[-1,1],[-1,2],[-1,3],[1,4],[0,2],[1,1],[0,1],[13,6],[-5,7],[-24,15],[-17,4],[-21,11],[-7,8],[-1,10],[-2,13],[-2,12],[-4,5],[-9,0],[-7,-2],[-3,-8],[3,-14],[-4,-2],[-8,0],[-7,2],[-3,6],[-1,10],[-6,24],[-3,9],[-3,6],[-5,7],[-6,5],[-5,2],[-3,-3],[2,-9],[7,-16],[4,-7],[2,-4],[0,-6],[-3,-4],[-4,-4],[-5,-3],[-3,-1],[-84,-3],[-6,-5],[34,-7],[4,-5],[6,1],[4,2],[2,3],[5,3],[5,-2],[6,-5],[4,-2],[4,1],[2,1],[2,3],[3,5],[4,3],[16,-1],[-2,0],[9,-3],[5,-2],[4,-5],[7,-16],[4,-8],[15,-8],[20,-24],[12,-3],[-1,1],[1,3],[-6,10],[-5,7],[2,2],[3,1],[3,-1],[3,-2],[0,3],[-1,7],[6,0],[14,-7],[5,-5],[8,-13],[2,-2],[4,-3],[10,3],[5,-4],[-3,-2],[-3,-4],[-5,-10],[4,-15],[0,-10],[-3,-7],[-5,-8],[-4,2],[-1,4],[0,5],[1,4],[-8,12],[-9,4],[-9,-4],[-6,-12],[15,-6],[8,-6],[4,-12],[-9,0],[-8,4],[-29,26],[-7,8],[-6,9],[-2,2],[-3,-2],[-1,-4],[1,-4],[11,-21],[7,-9],[17,-9],[8,-8],[-7,-3],[-5,2],[-11,9],[-6,0],[-6,-3],[-4,-7],[-1,-10],[6,-12],[12,0],[22,8],[-1,-3],[1,-3],[1,-3],[3,-3],[1,3],[4,11],[3,2],[3,-4],[0,-8],[-3,-8],[-3,-4],[1,-7],[-2,-5],[-4,-3],[-4,-2],[17,-16],[10,0],[3,-2],[-4,-6],[-3,-2],[-14,-2],[-13,-8],[0,-4],[22,1],[8,-1],[16,-8],[9,-1],[7,7],[6,3],[16,-3],[4,4],[2,12],[5,4],[7,-1],[6,-5],[-4,-4],[-1,-6],[1,-6],[4,-4],[-8,-12],[-22,-3],[-10,-10],[2,-9],[-6,-9],[2,-6],[5,-2],[6,1],[6,2],[5,3],[1,-3],[2,-2],[1,-4],[1,-3],[-4,-4],[-1,-7],[2,-8],[3,-5],[-1,-6],[-3,-5],[-4,-4],[-3,-1],[-5,1],[-11,11],[-7,-3],[6,-7],[15,-11],[-8,-7],[-3,-1],[-3,1],[-1,3],[-1,3],[-1,1],[-5,-2],[-18,-18],[5,-3],[5,-1],[4,1],[4,5],[3,3],[4,0],[4,-3],[1,-6],[-3,-8],[-14,-26],[-5,-6],[0,-5],[4,0],[4,4],[4,6],[4,8],[19,22],[7,13],[3,4],[5,2],[12,0],[4,2],[0,6],[5,10],[6,9],[5,4],[53,14],[8,-2],[6,-6],[2,-2],[2,5],[1,7],[2,4],[4,4],[6,1],[11,-1],[-3,0],[10,-3],[27,-17],[0,-8],[5,-14],[-3,-3],[-5,-1],[-16,-11],[0,-4],[3,-3],[9,-5],[4,0],[2,-2],[1,-5],[2,-5],[2,-4],[-23,5],[-10,-1],[-11,-8],[4,-4],[3,-1],[14,1],[3,-3],[1,-6],[-6,-3],[-24,1],[-7,2],[0,-4],[22,-13],[7,-7],[3,-5],[1,-3],[1,-2],[4,2],[4,3],[2,5],[3,3],[5,1],[3,-1],[6,-5],[4,-2],[5,0],[19,6],[7,0],[8,-1],[7,-5],[0,-4],[-13,-5],[-2,-3],[3,-2],[9,0],[3,-2],[0,-5],[-5,-11],[-1,-6],[-3,-9],[-7,-6],[-8,-3],[-47,1],[-3,-7],[-25,-3],[3,-8],[5,-5],[6,-3],[6,0],[3,0],[2,1],[2,1],[1,2],[2,4],[2,6],[2,4],[3,2],[11,-4],[22,-18],[12,-2],[-9,-18],[-4,-10],[2,-5],[3,2],[7,7],[1,-2],[2,-5],[1,-2],[3,0],[5,-4],[0,-4],[-15,0],[-6,-4],[-4,-8],[5,2],[4,1],[3,-2],[4,-5],[-2,-6],[2,-4],[4,0],[8,9],[6,3],[6,0],[4,-2],[-1,-6],[-1,-2],[7,-3],[6,5],[10,18],[0,-14],[-4,-52],[-3,-11],[-19,2],[-6,-2],[-5,-6],[-6,-15],[-5,-3],[0,-4],[7,1],[18,11],[7,2],[8,0],[4,-4],[-4,-10],[2,0],[15,5],[5,6],[-3,13],[17,25],[3,3],[7,4],[14,14],[7,3],[0,-5],[-3,-5],[-3,-8],[-2,-8],[-2,-7],[1,-9],[-14,-8],[-5,-7],[9,0],[-5,-16],[-22,2],[-7,-10],[14,-5],[4,-3],[6,3],[19,17],[-3,-11],[-2,-5],[-2,-5],[2,0],[1,-2],[1,-1],[2,-1],[-3,-2],[-1,-5],[0,-5],[2,-4],[3,-1],[2,3],[2,2],[2,-8],[-1,-15],[-8,-7],[-17,-7],[23,-8],[7,-8],[-2,-9],[-2,-6],[-3,-5],[-4,-4],[0,-4],[5,-3],[3,-7],[0,-10],[-1,-8],[3,-2],[2,-4],[1,-5],[-2,-6],[5,-3],[3,-1],[-2,-2],[-1,-4],[-1,-2],[1,-2],[0,-1],[3,-1],[4,0],[13,8],[-4,7],[-5,4],[-5,6],[-2,10],[1,12],[1,10],[9,41],[1,10],[0,12],[-2,10],[-10,18],[-1,10],[4,6],[24,-11],[6,-6],[3,-1],[4,0],[3,0],[1,-4],[0,-8],[-2,-17],[1,-4],[9,15],[3,2],[3,-1],[2,-5],[-1,-5],[-5,-14],[5,-5],[7,-4],[23,-6],[3,3],[-2,12],[6,0],[3,-6],[3,-8],[5,-5],[-2,-5],[2,0],[-3,-6],[-1,-6],[1,-6],[3,-2],[4,3],[2,5],[1,7],[3,5],[7,1],[10,-5],[17,-16],[-4,-5],[-3,-7],[-3,-9],[-3,-7],[4,-6],[0,-10],[-2,-9],[-5,-4],[-38,0],[6,-8],[11,-2],[20,2],[-3,-7],[1,-5],[1,-4],[1,-5],[0,-7],[-1,-5],[-1,-8],[13,-5],[4,15],[2,21],[7,15],[6,23],[3,5],[5,3],[15,21],[3,-15],[-1,-15],[-2,-14],[-5,-11],[-3,-13],[2,-14],[5,-7],[7,4],[-2,5],[-2,10],[0,9],[3,4],[3,1],[3,3],[3,1],[3,-1],[2,-5],[0,-5],[-1,-5],[0,-3],[13,-35],[12,-9],[4,-5],[3,-5],[5,-5],[4,0],[2,8],[-2,4],[-13,16],[-7,14],[-5,14],[1,11],[11,2],[0,4],[-6,4],[-7,7],[-7,9],[-3,9],[4,-1],[4,1],[4,4],[1,8],[-12,18],[-5,14],[2,5],[7,-3],[8,-6],[5,-5],[1,0],[4,1],[0,1],[0,3],[2,2],[2,2],[2,0],[2,-1],[2,-2],[2,-3],[4,-5],[2,0],[2,-2],[1,-9],[-4,-22],[5,-3],[3,7],[4,10],[3,8],[6,-2],[8,-8],[5,-11],[0,-8],[-11,-11],[-5,-7],[-3,-12],[0,-8],[2,-7],[6,-18],[2,0],[0,37],[16,11],[17,-9],[7,-26],[-2,-2],[-5,-3],[-1,-3],[0,-5],[1,-4],[2,-3],[1,-1],[-2,-11],[-2,-6],[-8,-9],[-10,-16],[-5,-2],[-12,0],[-6,-2],[-5,-6],[5,-4],[3,-5],[2,-8],[0,-12],[-2,-10],[-1,-5],[1,-6],[5,-9],[4,-2],[21,8],[31,0],[-1,-3],[-2,-6],[-1,-3],[7,-3],[10,7],[10,12],[6,10],[3,2],[11,1],[2,-1],[1,-9],[-3,-7],[-14,-17],[-3,-6],[-1,-8],[2,-2],[5,5],[7,11],[2,2],[5,5],[1,2],[3,-1],[5,-6],[2,-2],[3,-1],[4,1],[1,2],[-2,7],[1,10],[1,5],[1,5],[3,4],[7,3],[3,3],[2,2],[2,-3],[1,-6],[-1,-5],[-7,-13],[-2,-5],[9,3],[17,14],[8,-1],[-3,-6],[-11,-10],[-3,-4],[4,-4],[17,4],[3,3],[3,-4],[1,-8],[1,-10],[-2,-11],[-4,-6],[-17,-8],[-23,0],[-3,-4],[-5,-9],[19,-11],[6,-11],[-5,-19],[-9,-9],[-12,-3],[-71,20],[-5,0],[-5,-2],[-9,-6],[-18,-3],[1,-1],[0,-2],[0,-2],[51,4],[10,-2],[6,-10],[-7,4],[-3,1],[-4,-1],[2,-3],[1,-4],[3,-3],[2,-2],[-9,-5],[-19,-2],[-8,-5],[5,-5],[6,-1],[47,6],[4,-1],[1,-3],[-2,-5],[-4,-3],[0,-4],[18,0],[9,-5],[5,-12],[-12,-1],[-5,-2],[-20,-18],[-5,-3],[0,-4],[13,0],[4,2],[10,12],[2,2],[8,2],[3,-2],[16,-16],[-1,-6],[3,-2],[7,4],[0,-5],[-2,-1],[-4,-6],[5,-3],[10,-3],[4,-3],[-22,-20],[21,5],[12,0],[6,-9],[-5,-1],[-16,-11],[-13,-3],[-13,-1],[3,-8],[5,-4],[32,-4],[3,0],[8,4],[33,-4],[-2,-9],[-3,-6],[-7,-10],[12,4],[6,3],[5,6],[8,13],[5,4],[11,5],[3,0],[4,-2],[2,-4],[0,-4],[0,-3],[3,-1],[5,5],[5,11],[6,7],[6,-5],[2,-3],[1,-3],[0,-4],[0,-6],[1,-6],[5,-6],[1,-5],[-3,-4],[-42,-23],[-5,-5],[-5,-7],[-17,-11],[3,-10],[-2,-8],[-5,-4],[-5,-3],[-11,-2],[-3,-4],[-3,-10],[4,-14],[6,-10],[7,-6],[46,-17],[16,8],[2,-3],[3,-5],[3,-5],[37,-32],[6,-11],[5,-14],[-4,-12],[-2,-6],[-3,-3],[-8,4],[-4,-1],[-2,-7],[6,-4],[6,-8],[1,-7],[-5,-5],[3,-4],[3,-6],[2,-7],[1,-9],[0,-10],[-1,-6],[-2,-5],[-5,-6],[9,-6],[5,-11],[-1,-13],[-7,-11],[-8,-2],[-13,13],[-8,-2],[9,-20],[23,-5],[5,-18],[0,-6],[-1,-7],[-1,-6],[-4,-3],[-7,1],[-7,7],[-7,4],[-7,-5],[9,-8],[21,-5],[9,-6],[-2,-3],[-6,-3],[-3,-2],[-2,-4],[0,-5],[-1,-3],[-5,-1],[-3,1],[-4,3],[-3,2],[-5,-2],[-2,-3],[-2,-4],[-2,-3],[-3,-2],[-3,2],[-2,4],[-2,5],[-1,3],[-2,5],[-8,3],[-3,3],[-1,4],[0,5],[0,4],[-3,5],[-11,10],[1,9],[-2,7],[0,7],[4,9],[-9,6],[-2,3],[-1,3],[-1,10],[-10,39],[1,2],[1,2],[0,3],[-1,4],[-1,2],[-1,1],[-2,5],[-5,12],[-6,8],[-11,12],[-3,10],[0,6],[2,8],[0,6],[-2,6],[-2,3],[-14,11],[-15,8],[-7,9],[-3,7],[-8,23],[-5,8],[-14,9],[-6,10],[4,0],[13,-4],[-7,11],[-7,6],[-8,3],[-9,0],[-8,3],[-4,-1],[0,-4],[3,-5],[23,-25],[5,-11],[4,-4],[4,-2],[7,-5],[4,-11],[4,-14],[4,-10],[13,-15],[13,-10],[2,-2],[2,-6],[1,-5],[-1,-3],[-19,-8],[-12,-15],[3,-20],[8,-20],[0,-18],[-6,-4],[-15,-1],[-4,-7],[13,0],[15,4],[-3,-8],[-6,-5],[-12,-8],[11,-2],[10,2],[10,-1],[11,-17],[5,-5],[2,-3],[1,-4],[0,-8],[1,-4],[2,-7],[5,-14],[1,-5],[-1,-2],[-1,-4],[-1,-2],[5,-21],[-8,2],[-6,7],[-10,20],[-6,6],[-7,7],[-7,4],[-3,-5],[5,-4],[14,-16],[-7,-15],[-12,8],[-12,13],[-9,2],[11,-25],[3,-4],[26,0],[7,-7],[1,-9],[-4,-7],[-6,1],[-5,5],[-7,5],[-6,0],[-3,-8],[3,-1],[8,-7],[-2,-3],[-1,-1],[0,-4],[35,3],[12,-6],[8,-1],[-3,-6],[-3,-2],[-4,-1],[-2,-2],[2,-5],[4,-2],[17,0],[4,-2],[4,-5],[2,-6],[2,-7],[2,-4],[5,1],[-8,-5],[-17,4],[-7,-3],[7,-8],[18,-5],[3,-11],[-1,-8],[-2,0],[-4,5],[-3,3],[-3,-3],[2,-5],[4,-6],[4,-3],[0,-4],[-3,-3],[0,-5],[2,-4],[3,-4],[0,-4],[-5,-3],[-11,-2],[-6,-3],[6,-4],[13,-4],[6,-5],[7,-13],[4,-4],[3,8],[-2,9],[1,3],[3,2],[2,-1],[19,-27],[-4,-9],[-6,0],[-11,4],[-6,-2],[-2,-6],[-3,-6],[-3,-6],[-9,-3],[-29,3],[-8,6],[-8,9],[-19,10],[-12,14],[-8,7],[-4,7],[-1,6],[-1,7],[-2,7],[-4,4],[-5,-11],[1,-9],[3,-10],[3,-14],[-6,4],[-11,13],[-14,6],[-4,9],[-2,10],[-4,6],[-4,-13],[9,-15],[13,-13],[6,-9],[-1,-7],[-3,-4],[-1,-5],[3,-11],[4,-6],[15,-18],[9,-21],[4,-4],[3,-4],[11,-21],[2,-5],[1,-5],[2,-2],[3,-1],[2,-2],[1,-6],[0,-6],[0,-5],[1,-3],[2,-9],[4,-9],[4,-7],[5,-4],[-3,-7],[-4,1],[-5,4],[-5,2],[0,-9],[-5,-8],[-20,-18],[-8,-5],[-8,-3],[-9,-1],[-11,6],[-10,16],[-15,43],[9,11],[-10,1],[-4,-1],[-5,-3],[2,-9],[-2,-3],[-3,2],[-2,5],[-1,8],[2,6],[9,22],[6,9],[14,12],[-8,5],[-19,-8],[-9,7],[3,9],[1,8],[1,6],[5,2],[12,-2],[6,1],[6,5],[-7,2],[-7,1],[-6,2],[-5,7],[0,7],[0,12],[2,11],[2,7],[-5,4],[-6,-19],[-9,-38],[-2,-1],[-2,-2],[-3,-2],[-3,1],[-1,3],[0,6],[-1,5],[-4,2],[-1,-3],[-3,-10],[-2,-3],[-14,4],[-9,-5],[-12,3],[-10,10],[-4,18],[-2,11],[0,5],[-1,7],[-2,-1],[-4,-8],[-5,2],[-4,4],[-9,11],[3,10],[5,10],[10,16],[-3,4],[2,2],[1,0],[1,2],[-2,4],[-4,6],[-1,2],[-1,6],[1,7],[-1,6],[-3,2],[-4,-4],[-4,-9],[-1,-11],[2,-11],[2,-12],[-7,-8],[-14,-8],[-3,-12],[5,-8],[6,-7],[3,-10],[-3,-8],[-5,6],[-9,17],[-10,10],[-3,2],[-12,-5],[-4,1],[-6,7],[3,8],[12,13],[7,18],[2,2],[3,1],[7,8],[2,3],[0,4],[-9,-1],[-8,-5],[-17,-14],[0,-4],[1,-1],[2,-4],[1,-3],[-16,1],[-8,3],[-6,8],[-3,4],[-1,5],[-2,4],[0,5],[2,1],[2,5],[2,6],[-2,3],[-6,-4],[-5,-6],[-5,-2],[-7,7],[-2,8],[-2,11],[-2,9],[-5,5],[-7,3],[-14,14],[-7,3],[-2,-4],[7,-11],[13,-13],[1,-5],[1,-6],[0,-11],[1,-7],[3,-4],[3,-2],[9,-11],[13,-9],[5,-10],[-2,-1],[-2,-2],[-2,-1],[1,-12],[-7,-5],[-9,0],[-8,4],[-5,10],[-3,5],[-5,2],[-2,-1],[-4,-2],[-2,-1],[-2,2],[-1,4],[0,4],[0,2],[-8,3],[-17,-1],[-8,2],[-6,5],[-12,16],[-4,7],[1,8],[-8,2],[-5,8],[1,7],[7,0],[-3,5],[-7,15],[-11,17],[-2,8],[6,13],[1,7],[-4,10],[-5,7],[-10,11],[-4,6],[-5,5],[-6,4],[-5,6],[-1,12],[3,6],[9,17],[4,9],[-2,0],[1,5],[0,4],[-1,2],[-3,1],[-3,-2],[-1,-3],[0,-6],[-1,-5],[-5,-9],[-11,-15],[-3,-9],[2,-9],[4,-8],[17,-16],[7,-3],[2,-2],[4,-8],[2,-2],[-4,-19],[-2,-9],[5,-6],[4,-9],[2,-2],[1,-2],[-2,-13],[0,-5],[2,-3],[3,-1],[3,-2],[0,-6],[-2,-3],[-10,-6],[-6,4],[-10,14],[-7,3],[3,-9],[4,-8],[4,-7],[5,-6],[16,-13],[5,-6],[2,-9],[-2,-5],[-4,1],[-9,13],[-16,12],[0,-4],[2,0],[0,-4],[-7,1],[-6,6],[-17,26],[-3,5],[-1,5],[1,12],[1,7],[-1,3],[-3,3],[0,6],[2,6],[2,2],[0,11],[-1,4],[-10,27],[-2,11],[1,12],[-7,-2],[-4,-12],[0,-13],[3,-6],[6,-5],[3,-13],[-2,-14],[-6,-9],[-8,1],[-7,6],[-6,10],[-5,10],[-6,8],[-15,11],[-5,7],[0,13],[7,6],[8,4],[4,7],[-3,8],[-6,4],[-6,6],[0,13],[7,21],[2,11],[-6,4],[-5,0],[-1,-3],[0,-4],[-3,-12],[-3,-17],[0,-4],[0,-7],[7,-21],[-7,-3],[-21,3],[-5,2],[-9,14],[-6,3],[0,-3],[6,-5],[3,-7],[0,-6],[-7,-2],[-6,4],[-11,19],[-28,32],[-5,8],[-4,10],[-3,12],[-1,16],[-1,4],[-3,4],[-4,1],[-2,-1],[1,-6],[1,-11],[0,-7],[2,0],[-3,-7],[-1,1],[-2,3],[-6,4],[-7,6],[-3,1],[-4,2],[0,6],[0,7],[-1,5],[-9,12],[-3,8],[4,9],[-7,9],[-9,5],[-7,8],[-3,16],[-4,10],[-8,9],[-5,9],[5,15],[-7,-2],[-13,-9],[-6,-2],[-6,5],[-1,11],[-1,13],[-4,8],[-3,-3],[-2,-1],[-2,2],[-2,6],[0,11],[-7,10],[-16,16],[2,-14],[13,-18],[1,-7],[-1,-9],[5,-9],[10,-12],[3,-13],[-4,-22],[2,-12],[2,-6],[4,-12],[2,-6],[18,-35],[9,-23],[4,-23],[-7,-15],[-10,0],[-15,16],[-9,4],[-2,3],[-2,5],[-3,11],[-5,12],[-2,5],[-21,26],[-16,11],[-4,7],[-5,5],[-11,1],[-5,6],[-3,9],[-2,9],[-3,8],[-4,4],[2,-13],[-4,-3],[-5,2],[-3,4],[-3,8],[-13,-5],[-5,7],[6,5],[1,8],[-3,10],[-7,18],[-3,7],[-5,5],[-8,0],[0,-4],[7,-17],[3,-11],[-2,-5],[-7,2],[-14,9],[-7,2],[-3,3],[-4,9],[-4,10],[-1,8],[-3,4],[-12,12],[-3,3],[-3,0],[-6,3],[-3,0],[-1,-1],[1,-3],[0,-3],[-1,-1],[-9,0],[-43,26],[-5,2],[1,-7],[2,-3],[6,-6],[1,-4],[-1,-6],[-3,-2],[-3,1],[-2,4],[-8,-6],[-31,11],[-8,5],[-4,2],[-18,0],[-1,-7],[2,-5],[19,-21],[10,-17],[16,-15],[3,-9],[1,-7],[-9,-2],[-5,-7],[4,-3],[5,-3],[9,-2],[3,-3],[3,-7],[2,-8],[3,-6],[12,-17],[8,-8],[12,-7],[17,-17],[9,-14],[10,-3],[19,1],[-2,-7],[-4,-2],[-9,1],[2,-6],[12,-18],[13,-9],[6,-9],[12,-23],[10,-6],[3,-5],[3,-5],[2,-4],[-1,-2],[-2,-3],[-1,-4],[0,-4],[2,-3],[5,-1],[5,-4],[8,-7],[3,-5],[-1,-8],[-3,-4],[-4,-1],[-4,1],[5,-8],[11,-5],[4,-5],[5,-8],[3,-5],[4,-1],[6,-1],[14,6],[13,-9],[19,-5],[8,0],[-3,-5],[-3,-3],[-2,-3],[-3,-12],[-8,-17],[4,-5],[6,1],[6,5],[5,7],[-2,10],[6,7],[9,1],[18,-18],[11,0],[22,8],[13,0],[6,-3],[2,-9],[-2,-9],[-6,-4],[-23,0],[-5,-3],[-2,-7],[-2,-5],[-11,-7],[-4,-5],[10,0],[-2,-8],[2,-6],[3,-3],[4,0],[0,-4],[-3,-1],[-3,-2],[-2,-3],[-1,-6],[8,-1],[5,0],[3,3],[0,5],[-1,7],[-3,6],[-3,4],[18,17],[3,7],[7,0],[7,-3],[6,1],[6,9],[4,1],[5,-5],[6,-8],[3,-7],[-1,-7],[-5,-5],[-8,-3],[-6,-1],[-6,-2],[-8,-5],[-6,-7],[2,-6],[-6,-4],[-2,-3],[-2,-5],[1,-6],[2,-2],[2,-1],[1,1],[0,-4],[4,9],[15,14],[6,9],[5,-5],[6,3],[14,10],[4,0],[6,-1],[5,-3],[7,-7],[1,-2],[-1,-5],[-4,-7],[-1,-2],[-2,-1],[1,-1],[1,0],[0,-1],[0,-2],[7,4],[5,1],[5,-2],[17,-22],[6,-4],[7,-2],[0,-4],[-34,-12],[0,-4],[13,-1],[6,1],[6,4],[-2,-4],[10,11],[8,4],[7,-3],[6,-13],[-5,-9],[-8,-7],[-7,-7],[5,0],[10,6],[2,0],[3,-6],[5,1],[10,7],[5,-8],[3,-6],[1,-5],[-1,-6],[-7,-11],[-1,-5],[4,1],[8,7],[11,0],[0,-3],[-1,0],[-1,0],[-1,-1],[2,0],[0,-1],[-2,-3],[7,-9],[2,-4],[0,-5],[-3,-6],[-9,-13],[2,-3],[10,5],[10,1],[20,-3],[-3,-2],[-11,-6],[-4,-3],[-3,-4],[-6,-9],[7,0],[61,16],[10,-8],[-4,-2],[-4,-4],[-3,-6],[-2,-8],[23,8],[5,-4],[-3,-3],[-10,-5],[3,-5],[3,-3],[4,-1],[7,5],[5,-1],[4,-3],[4,0],[-1,-2],[0,-2],[-1,-2],[-2,-2],[5,-12],[15,-13],[3,-14],[4,-11],[8,-3],[5,-5],[-5,-16],[1,-9],[-6,-15],[1,-8],[4,-2],[6,5],[6,6],[4,3],[23,4],[1,-2],[-3,-6],[-9,-8],[19,-20],[-2,-6],[-3,-1],[-3,0],[-9,-4],[-2,-2],[-3,-5],[-2,-3],[-8,1],[-5,-1],[-2,1],[-2,0],[0,-2],[0,-4],[0,-3],[1,-3],[12,-9],[24,-30],[10,2],[-11,21],[-5,14],[6,5],[11,6],[5,-1],[3,-4],[5,-8],[3,-5],[2,12],[2,5],[2,0],[4,-5],[1,-2],[0,-4],[1,-4],[5,-3],[5,-5],[3,-2],[-1,-2],[-1,-3],[-1,-3],[-1,-4],[4,-8],[0,-2],[0,-3],[1,-6],[-1,-4],[-3,5],[-5,5],[-8,2],[-14,-1],[23,-15],[34,-8],[5,7],[-2,0],[8,6],[9,-5],[16,-22],[0,-4],[-23,-14],[-7,-8],[-3,-6],[-1,-3],[-1,-4],[1,-7],[1,-4],[5,-13],[0,-4],[-2,-6],[-1,-3],[-1,-1],[-4,0],[-7,6],[-1,0],[-1,3],[-8,-1],[-2,0],[-9,22],[-5,6],[-7,-11],[1,-2],[2,-2],[2,0],[3,5],[1,-3],[1,-4],[1,-2],[15,-31],[2,-5],[0,-7],[-1,-4],[-8,-4],[-2,-2],[6,-4],[9,-3],[6,-3],[2,-7],[4,-13],[1,-3],[4,0],[7,5],[4,-3],[0,-5],[0,-6],[0,-5],[6,-4],[3,-5],[2,-6],[-1,-7],[-6,-6],[-17,1],[-4,-5],[-4,-3],[-30,1],[-29,-11],[-17,10],[-19,1],[-9,4],[-14,9],[-6,2],[-9,1],[-4,2],[-7,11],[-3,3],[-3,-2],[-4,-2],[-3,-2],[-4,2],[-6,8],[2,6],[11,10],[-5,4],[-12,-4],[-5,0],[-2,3],[-2,4],[-3,7],[-2,2],[-6,5],[0,2],[1,6],[-8,2],[-22,2],[-18,14],[-7,2],[6,-6],[2,-2],[-6,-11],[-9,5],[-15,18],[-4,-2],[-9,-8],[-5,-2],[-5,2],[-5,4],[-28,32],[-3,2],[-3,1],[0,-3],[-2,-8],[-1,-2],[-17,-5],[-2,3],[-1,5],[-1,8],[-2,8],[-2,6],[5,1],[0,5],[-2,4],[-18,6],[-25,-3],[-9,3],[-7,10],[-9,8],[-9,-3],[-8,-7],[-9,-4],[-22,4],[-22,8],[1,5],[1,4],[3,2],[2,1],[0,4],[-3,3],[-3,0],[-5,-3],[0,-1],[-3,-5],[-1,-2],[-3,0],[-4,3],[-26,9],[-7,0],[-7,-2],[-4,0],[-4,2],[-1,2],[-1,4],[-2,4],[-2,2],[-2,-1],[-4,-5],[-2,-2],[-123,19],[-16,9],[-5,6],[-8,6],[-6,2],[-10,8],[-3,3],[0,4],[4,4],[2,0],[0,4],[-31,8],[-2,5],[-1,10],[-3,8],[-7,2],[-5,-10],[-3,-2],[-3,0],[-4,3],[-4,3],[-3,4],[-5,4],[-12,-6],[-7,2],[-47,38],[-25,29],[-6,28],[-2,0],[11,46],[-1,3],[-3,3],[-4,1],[-2,-18],[-2,-4],[-2,-5],[-4,-6],[-2,-3],[-2,-7],[-1,-5],[-1,-5],[-4,-4],[-2,4],[-1,3],[1,4],[-1,5],[-2,3],[-2,2],[-1,4],[-1,6],[0,6],[1,3],[0,2],[-2,5],[-3,3],[-10,7],[2,-7],[2,-4],[2,-4],[2,-5],[0,-7],[-1,-5],[0,-5],[3,-4],[-6,-4],[-4,6],[-3,10],[-3,4],[-5,3],[-6,7],[-8,17],[-10,14],[-1,6],[6,7],[7,2],[20,-2],[0,3],[-2,2],[-2,6],[9,0],[4,2],[2,7],[-17,0],[-11,-3],[-5,1],[-5,6],[9,12],[10,4],[23,0],[4,1],[3,2],[2,4],[-1,5],[-5,2],[-15,-6],[-5,2],[-4,4],[-4,3],[-11,-6],[-5,1],[-13,11],[-2,2],[-2,1],[-3,-2],[0,-3],[0,-11],[-1,-2],[-4,-2],[-7,-6],[-5,0],[5,20],[-11,2],[-12,6],[-10,9],[-10,12],[-2,-3],[-2,-1],[2,-5],[6,-14],[4,-5],[4,-2],[4,-4],[3,-7],[-1,-1],[-3,-3],[1,-2],[3,-7],[2,-3],[-6,-1],[-3,3],[-6,12],[-4,5],[-4,0],[-10,-3],[-5,2],[-4,6],[-8,16],[-10,-15],[-6,-5],[-20,-11],[-4,-1],[-5,1],[-12,6],[-5,1],[-22,-3],[-7,3],[-20,18],[-8,2],[-4,4],[-12,17],[-9,5],[-4,4],[-3,5],[-1,4],[-2,4],[-4,2],[-7,0],[-42,12],[-32,2],[-8,6],[0,-4],[-15,9],[-4,4],[8,6],[19,-1],[9,3],[-10,1],[-20,8],[-10,2],[-12,-4],[-20,6],[-4,3],[0,4],[6,2],[18,-3],[4,5],[-1,9],[-3,6],[-1,6],[7,7],[-4,8],[-5,1],[-7,-3],[-5,-6],[0,-4],[0,-5],[0,-5],[-4,-2],[-2,0],[-6,-3],[-17,-3],[-8,1],[-4,5],[0,7],[3,8],[4,6],[3,3],[25,-4],[2,2],[4,11],[2,4],[3,2],[6,3],[3,2],[1,4],[0,6],[1,5],[3,4],[7,2],[6,4],[8,4],[8,7],[4,1],[0,3],[-1,2],[-1,3],[-10,-2],[-7,-6],[-6,-6],[-3,-2],[-3,0],[0,3],[-1,5],[-2,5],[-2,3],[4,3],[8,5],[3,5],[-8,4],[-11,-5],[-9,-12],[0,-14],[2,-8],[-4,-6],[-4,-6],[-3,-4],[-22,-2],[-6,3],[-2,5],[-2,5],[-2,3],[-2,-3],[-10,-20],[-1,-5],[-2,-23],[-3,-5],[-5,-1],[-7,2],[-4,3],[0,3],[6,4],[-2,5],[-7,5],[-6,2],[-18,1],[-8,4],[-7,12],[5,5],[4,10],[1,9],[-5,4],[-2,-1],[-7,-6],[-2,-3],[-3,-1],[-11,11],[-17,3],[-16,9],[-20,18],[-7,3],[2,6],[4,2],[9,0],[0,4],[-13,12],[-12,5],[-3,3],[3,6],[4,3],[19,0],[5,3],[0,6],[-6,5],[-27,-7],[0,4],[2,1],[6,4],[-7,5],[-1,6],[2,7],[-2,9],[-8,10],[-7,7],[14,-1],[7,1],[5,4],[-1,1],[-4,3],[0,11],[-4,13],[-5,7],[-5,-7],[-1,-7],[-7,-2],[-31,4],[-7,5],[-4,15],[-3,2],[-3,-2],[-1,-4],[0,-11],[-1,-3],[-3,0],[-18,3],[-1,2],[1,3],[2,3],[3,1],[0,4],[-8,1],[-9,6],[-5,7],[5,2],[7,-1],[4,-2],[2,-3],[2,-6],[4,3],[6,9],[4,1],[15,-5],[26,0],[52,-12],[20,1],[9,5],[5,10],[-3,7],[6,5],[37,9],[6,7],[-1,2],[-2,4],[-1,2],[8,9],[18,7],[11,15],[1,4],[-1,3],[-3,4],[0,3],[3,6],[5,2],[9,0],[-7,8],[-10,2],[-9,-6],[-4,-14],[1,-5],[0,-3],[-1,-2],[-14,-1],[-5,1],[-4,4],[13,14],[2,6],[-1,10],[-3,4],[-6,2],[-5,0],[3,-9],[1,-3],[-4,-2],[-3,-1],[-8,-1],[1,-6],[2,-1],[2,-1],[0,-4],[-7,-3],[-13,-2],[-14,1],[-6,6],[3,17],[7,4],[9,-1],[8,3],[-5,7],[-18,0],[-4,7],[1,4],[3,6],[0,6],[1,5],[3,5],[3,3],[3,1],[0,4],[-4,0],[-6,-6],[-4,-2],[-3,2],[0,4],[2,4],[1,2],[-6,3],[-6,0],[-5,-2],[-4,-7],[0,-6],[9,-14],[3,-6],[0,-8],[-2,-1],[-9,5],[0,1],[-6,10],[-12,9],[0,4],[6,1],[2,8],[1,9],[3,7],[-5,7],[-7,-10],[-9,-26],[-2,3],[-1,2],[-2,3],[-1,4],[3,10],[-3,10],[-14,20],[-3,2],[-4,3],[-12,1],[-3,3],[1,2],[3,5],[2,1],[-11,7],[-10,-8],[-8,-15],[-6,-16],[2,-2],[2,-3],[6,5],[7,11],[6,1],[-1,-4],[-1,-4],[6,-2],[13,5],[6,-3],[-3,-5],[-4,-16],[-1,-4],[-5,-2],[-1,-6],[1,-7],[4,-5],[-7,-6],[-4,-7],[-4,-5],[-6,2],[-4,-2],[-2,0],[0,6],[1,3],[2,2],[2,1],[3,4],[4,3],[1,4],[-3,9],[-4,8],[-3,2],[-17,-29],[-5,-4],[-4,9],[2,7],[-1,8],[-1,8],[-2,5],[-3,5],[-2,-4],[-3,-5],[-6,-4],[-5,3],[-4,6],[-8,14],[-4,10],[-3,3],[-3,-1],[-1,-5],[0,-7],[1,-6],[1,-4],[-3,-11],[-1,-6],[1,-7],[1,-14],[-5,-1],[-24,2],[-1,4],[0,35],[-4,6],[-8,0],[0,4],[6,7],[4,4],[3,1],[5,-2],[11,-8],[4,2],[-4,7],[-3,9],[0,8],[4,4],[2,5],[8,27],[5,5],[5,3],[10,1],[5,1],[12,15],[-20,-8],[-7,0],[-6,2],[-5,4],[-2,7],[3,7],[-5,16],[-7,-11],[-1,-5],[-1,-1],[0,-1],[-1,-2],[0,-4],[1,-4],[4,-6],[1,-2],[-1,-8],[-4,0],[-5,5],[-5,7],[-5,-18],[-7,-10],[-8,-7],[-7,-10],[7,-6],[3,-5],[1,-7],[-1,-8],[-2,-1],[-8,3],[-19,-1],[-11,2],[-6,7],[4,3],[13,2],[4,7],[-8,3],[-24,15],[-6,9],[-7,-3],[-6,-5],[-6,1],[7,15],[0,8],[-4,9],[-3,13],[10,5],[5,6],[2,7],[-1,6],[-1,5],[-1,5],[1,7],[5,16],[-5,2],[-12,-10],[-4,2],[-3,9],[2,7],[2,8],[2,12],[-2,3],[-2,3],[-3,0],[-1,-6],[-1,-11],[-1,-11],[-1,-5],[-2,-5],[0,-5],[0,-3],[4,-4],[3,-1],[3,-3],[3,-6],[-4,-5],[-4,-4],[-4,-3],[-4,-1],[-5,3],[-2,4],[0,7],[-2,7],[-9,9],[-21,4],[-8,7],[3,3],[2,1],[2,0],[0,4],[-4,2],[-13,-1],[-4,3],[-2,8],[2,5],[4,5],[4,3],[3,0],[3,0],[3,2],[0,7],[-1,6],[-2,1],[-2,1],[-2,3],[-1,10],[0,8],[-1,6],[-4,8],[-5,5],[-7,3],[-14,0],[-12,-6],[-6,1],[-2,9],[3,6],[4,5],[2,7],[-3,11],[-13,5],[-3,5],[-3,2],[2,5],[1,2],[2,1],[3,0],[-7,6],[-24,5],[-3,15],[-2,5],[-3,1],[-3,-4],[2,-4],[-3,-5],[-4,0],[-10,1],[0,-4],[5,-2],[5,-8],[1,-10],[-4,-8],[-7,-3],[-9,2],[-8,5],[-4,8],[-1,5],[1,12],[-3,12],[1,3],[4,5],[2,1],[3,1],[3,2],[1,6],[1,3],[1,5],[1,4],[2,2],[2,-2],[4,-7],[3,-3],[3,-1],[3,1],[2,3],[0,1],[-3,3],[-12,14],[-6,3],[-5,-3],[-4,-14],[-5,-3],[-7,2],[-18,18],[9,22],[6,7],[5,-3],[7,-6],[9,2],[7,8],[7,10],[-6,4],[-6,-3],[-6,-5],[-6,-3],[-8,3],[0,7],[5,8],[30,20],[5,2],[1,2],[3,12],[1,4],[2,4],[13,3],[6,3],[2,4],[1,5],[1,4],[-1,7],[-2,4],[-2,-1],[-5,-8],[-6,-5],[-7,-2],[-6,5],[-2,4],[0,3],[1,3],[-1,6],[-2,10],[-1,4],[-2,3],[-1,6],[-1,2],[-2,0],[-1,-2],[-1,-2],[-1,-1],[-3,-1],[-2,-3],[-2,-4],[-2,-4],[6,-11],[6,-15],[2,-17],[-3,-16],[-5,-4],[-26,-8],[-6,-4],[-5,-2],[-5,4],[4,9],[0,10],[-2,8],[-4,6],[0,3],[4,0],[4,-2],[3,-3],[8,-9],[2,1],[3,3],[2,2],[0,2],[-13,10],[-3,6],[0,4],[2,2],[5,1],[-6,7],[-7,-1],[-11,-10],[-6,-3],[-8,0],[-5,3],[1,8],[-2,9],[-5,10],[-5,10],[-7,4],[-6,-1],[-1,-5],[2,-7],[2,-10],[-1,-8],[-2,-6],[-3,-6],[-2,-7],[6,-1],[5,-3],[-5,-7],[-23,-4],[0,-2],[0,-3],[0,-3],[-1,-1],[-2,1],[-4,3],[-2,0],[-3,2],[-5,9],[-8,5],[-9,17],[-6,4],[-8,-1],[-3,-3],[-1,-8],[3,-4],[11,-5],[-2,-12],[4,-8],[5,-6],[2,-8],[2,-8],[5,-3],[5,-1],[4,-3],[-2,5],[2,-3],[1,-2],[1,-3],[1,-4],[-3,-5],[-3,-3],[-3,1],[-7,11],[-4,5],[-5,2],[-3,-4],[1,-4],[2,-7],[0,-6],[-6,-2],[-5,1],[-8,9],[-5,2],[1,-14],[-2,-9],[-1,-8],[8,-10],[-3,-4],[-4,-4],[-7,-4],[0,-4],[0,-5],[0,-11],[0,-10],[-2,-7],[-5,-1],[-6,5],[-6,3],[-5,-7],[1,5],[-3,-2],[-5,1],[-4,3],[1,6],[-5,3],[-5,0],[-4,2],[-3,7],[11,-1],[5,1],[5,4],[-2,4],[-1,5],[-1,7],[9,9],[-6,10],[-13,9],[-7,8],[22,-3],[6,-12],[5,-3],[3,7],[-2,13],[-21,43],[12,-3],[23,-12],[13,-1],[0,4],[-6,8],[-6,5],[-26,15],[-3,1],[-14,-3],[-4,3],[0,3],[10,9],[35,-5],[-4,11],[-15,12],[-3,12],[1,4],[3,12],[2,14],[2,14],[1,6],[-4,7],[-5,7],[-5,2],[-5,-3],[-2,-9],[5,-16],[-3,-12],[-3,-2],[-6,3],[-4,-1],[-6,-10],[-4,-2],[-4,8],[-3,-6],[-1,-7],[0,-7],[5,-15],[-1,-6],[-7,-16],[-10,15],[-4,9],[0,7],[6,6],[2,4],[-1,6],[-2,5],[-4,4],[-3,4],[-3,1],[-4,-4],[0,-21],[-4,-7],[-6,2],[-11,15],[-6,4],[4,-11],[5,-12],[7,-11],[5,-7],[-6,-12],[-7,0],[-7,8],[-5,12],[4,2],[2,4],[0,4],[-4,2],[-4,-1],[-9,-6],[-6,-1],[-8,2],[-4,3],[-3,3],[-1,4],[-1,12],[-2,5],[-4,4],[-13,7],[-4,7],[-5,7],[-14,19],[4,4],[2,3],[0,3],[1,3],[2,0],[3,-1],[2,0],[2,6],[1,6],[2,6],[10,7],[10,23],[4,4],[12,-7],[7,0],[1,8],[-5,7],[-17,1],[-4,8],[3,2],[2,2],[3,3],[1,6],[-7,-1],[-21,4],[-4,-3],[1,-6],[3,-7],[1,-8],[-6,3],[-17,-3],[-5,-4],[1,-7],[5,-13],[3,-12],[0,-7],[-2,-8],[-4,-3],[-4,2],[-13,15],[-4,3],[-4,2],[-1,-3],[-1,-5],[-3,-6],[-4,-3],[-4,1],[-10,9],[-5,3],[-14,1],[-5,-1],[7,-17],[11,-5],[12,-2],[9,-7],[2,-4],[0,-7],[1,-4],[2,-3],[3,-4],[2,-2],[5,-6],[13,-3],[6,-4],[38,-34],[34,-41],[-10,-9],[-5,-3],[-6,0],[-15,5],[-8,-1],[-5,-8],[17,-1],[8,-5],[5,-10],[-6,-4],[-4,4],[-4,5],[-5,3],[-4,-3],[1,-6],[2,-7],[3,-4],[6,-5],[12,-2],[6,-4],[2,-4],[-5,-3],[-4,-5],[0,-10],[-6,-2],[-9,1],[-6,-2],[0,-9],[-13,-4],[-7,-4],[1,-8],[0,-4],[-9,3],[-12,11],[-10,2],[1,-3],[1,-6],[1,-3],[-9,1],[-10,6],[-10,9],[-7,10],[-4,4],[-5,-3],[-4,-4],[-4,-3],[-5,3],[-8,11],[-26,14],[-8,12],[-4,5],[-5,-1],[-4,-6],[2,-4],[5,-3],[3,-3],[1,-8],[-3,-2],[-5,1],[-5,-2],[2,-5],[-3,-3],[-3,-1],[-3,1],[-2,3],[-3,10],[-1,3],[-2,1],[-4,1],[-13,10],[-4,4],[-9,14],[-3,2],[-9,3],[-15,11],[-9,2],[-15,0],[-7,6],[-1,14],[-13,-5],[-13,1],[-12,6],[-24,23],[-7,3],[-7,-5],[1,-7],[5,-8],[6,-5],[5,-3],[0,-3],[-9,0],[-3,-1],[-4,-4],[3,-1],[1,-4],[1,-6],[2,-7],[4,-4],[6,-3],[11,-3],[12,-16],[10,-6],[4,-4],[3,-6],[-1,-3],[-2,-2],[-2,0],[-2,0],[2,0],[-7,2],[-12,10],[-6,-4],[6,-6],[7,-5],[-4,-3],[-4,2],[-7,9],[-32,17],[-8,2],[-8,-3],[3,-3],[4,0],[3,-1],[8,-8],[2,-1],[3,-2],[8,-10],[4,-4],[-2,-2],[-2,-1],[-2,-1],[-2,0],[2,0],[3,-6],[26,-22],[-6,-7],[-10,1],[-17,6],[-1,-3],[-1,-4],[-2,-3],[-4,6],[-12,6],[-4,1],[-4,-2],[-4,-5],[-1,18],[-7,-1],[-14,-13],[-5,-3],[-3,-4],[-4,-4],[-6,3],[-2,4],[-1,5],[-2,3],[-5,0],[2,0],[-15,-8],[3,0],[2,-1],[2,-1],[2,-2],[-7,-9],[-18,8],[-15,-11],[-18,7],[-8,-3],[7,-6],[9,-15],[7,-4],[17,4],[8,-2],[5,-10],[-36,-12],[-9,6],[-8,10],[-11,7],[-12,2],[-7,-5],[4,-3],[8,0],[5,-1],[3,-3],[6,-7],[4,-2],[-7,-8],[-14,-3],[-11,5],[-2,14],[-15,4],[-3,-4],[-2,-1],[-2,5],[-1,2],[-2,1],[-1,1],[-3,-2],[-6,-14],[-3,-3],[-14,-1],[2,6],[0,2],[-8,6],[-5,-5],[0,-12],[4,-13],[-1,-8],[3,-5],[5,-2],[5,-1],[4,-4],[0,-7],[-3,-7],[-6,-3],[-5,1],[-10,6],[-6,1],[-23,0],[5,5],[5,3],[-3,4],[-1,0],[-2,1],[2,4],[-10,1],[-10,5],[-18,18],[-5,-10],[-10,1],[-19,13],[-8,9],[-5,3],[-2,-6],[-3,-4],[-20,-6],[-36,-20],[-8,4],[0,4],[4,13],[-1,3],[-2,1],[-4,6],[-3,1],[-3,0],[-3,-2],[-3,-1],[-4,3],[5,4],[10,3],[4,5],[-7,7],[-2,1],[-2,-1],[-2,-3],[-2,-4],[-31,0],[0,4],[8,7],[7,10],[-5,4],[-13,0],[-23,18],[-4,2],[-2,-8],[3,-14],[1,-13],[-9,-6],[-1,2],[-2,6],[-1,1],[-8,4],[-3,-1],[-2,0],[-2,-1],[-3,2],[-1,2],[-2,8],[-1,2],[-22,4],[-5,4],[-11,16],[4,2],[7,-2],[3,0],[2,2],[4,4],[2,4],[-2,2],[-12,0],[-13,-4],[-7,-4],[-3,0],[-2,2],[-5,5],[-3,1],[-3,2],[-2,4],[0,5],[2,2],[2,0],[9,8],[0,3],[-21,18],[-8,13],[3,10],[0,4],[-6,5],[-16,4],[-7,8],[-1,1],[-3,5],[0,4],[3,2],[12,0],[0,4],[-5,3],[-4,4],[-2,7],[2,10],[-2,5],[-2,2],[-3,2],[-3,-1],[2,12],[2,6],[8,11],[-9,5],[-31,-1],[8,5],[24,6],[-1,2],[-1,1],[1,1],[1,1],[-1,11],[4,9],[6,6],[6,2],[2,2],[2,4],[0,5],[-1,2],[-1,1],[1,3],[1,2],[2,2],[10,0],[-1,7],[1,6],[2,7],[-2,5],[-4,6],[-4,3],[-5,2],[-2,5],[-2,11],[-3,25],[0,3],[0,3],[3,6],[4,4],[8,5],[6,8],[6,5],[7,8],[9,3],[3,3],[1,2],[0,4],[0,4],[1,3],[2,1],[20,10],[4,1],[17,13],[16,3],[15,8],[8,6],[5,8],[8,9],[10,1],[21,-4],[9,2],[15,9],[15,3],[7,5],[6,6],[5,8],[-19,28],[-16,16],[-8,13],[-9,11],[-4,7],[2,6],[10,23],[4,6],[40,-14],[6,11],[-6,10],[-26,24],[-8,13],[12,8],[43,0],[-2,-2],[-2,-1],[-3,-1],[-3,0],[0,-4],[22,-3],[20,-9],[1,-9],[8,-5],[34,-3],[3,3],[2,7],[5,3],[28,-1],[5,-3],[9,-11],[3,-1],[26,3],[77,-36],[77,-37],[7,-1],[15,0],[7,-2],[7,-11],[2,-2],[14,0],[6,-2],[12,-8],[13,-3],[7,-4],[6,-5],[5,-6],[-1,-3],[-3,-9],[5,-3],[2,-7],[1,-7],[1,-3],[24,-9],[15,-11],[10,-2],[11,-7],[20,-19],[3,-7],[2,-11],[4,-10],[1,-9],[-7,-5],[2,-4],[5,-12],[-3,-5],[-4,-4],[-4,-2],[-8,-3],[-5,-7],[-4,-3],[-11,0],[-21,8],[-10,-5],[4,-5],[4,-5],[9,-6],[-2,0],[2,-6],[1,-15],[1,-7],[5,-8],[6,-2],[19,2],[3,-2],[3,-2],[3,-4],[0,-2],[-1,-2],[0,-6],[-2,-8],[-4,-3],[-11,1],[0,-3],[0,-1],[1,0],[1,0],[-3,-3],[-2,-2],[-1,-4],[2,0],[-2,-4],[8,-3],[8,0],[8,-3],[7,-10],[-2,0],[0,-4],[4,0],[5,-3],[2,-5],[-4,-5],[8,-2],[13,1],[10,6],[1,10],[-4,5],[-8,8],[-3,5],[-2,7],[-1,7],[0,11],[1,4],[-4,3],[-1,0],[1,10],[2,8],[3,7],[3,4],[-3,5],[-2,5],[1,7],[2,7],[-6,0],[-5,-3],[-16,-22],[-4,-3],[-3,0],[-7,3],[-4,1],[-9,-3],[-4,0],[-4,3],[6,6],[18,6],[0,8],[4,12],[7,8],[8,4],[8,1],[-2,13],[6,2],[14,-7],[11,-9],[5,-1],[-2,10],[-3,5],[-3,5],[1,6],[4,5],[4,0],[4,3],[1,14],[2,11],[5,4],[4,2],[2,4],[0,13],[-1,6],[-4,3],[-11,-1],[-2,-6],[-1,-9],[0,-10],[-2,-10],[-4,-9],[-6,-5],[-9,-5],[-3,-4],[-3,-2],[-5,4],[-2,5],[-4,18],[-2,6],[-8,14],[-17,23],[-8,13],[-10,13],[-23,9],[-10,9],[-3,-5],[-4,-2],[-3,2],[-3,5],[2,2],[1,1],[1,3],[1,2],[-11,14],[-14,8],[-30,6],[3,6],[0,5],[-3,4],[-7,3],[-2,5],[0,7],[-2,7],[65,-9],[3,2],[7,7],[4,1],[2,4],[3,4],[1,3],[6,0],[5,-5],[1,-8],[-4,-8],[8,-13],[10,-5],[68,-6],[25,-8],[6,1],[12,6],[5,1],[7,7],[6,14],[3,15],[-3,9],[-4,20],[-2,7],[-1,3],[1,1],[6,1],[5,0],[24,-11],[3,-1],[2,2],[4,5],[3,2],[18,3],[5,-1],[9,-5],[6,-1],[4,1],[4,2],[4,4],[2,7],[1,10],[3,4],[5,4],[2,-4],[7,0],[3,-1],[0,-3],[0,-4],[-3,-2],[-7,-6],[8,-3],[4,-3],[2,-6],[-3,0],[-3,-1],[-2,-1],[-2,-3],[9,-16],[15,-8],[16,-2],[13,6],[20,22],[6,6],[13,7],[5,5],[6,24],[5,12],[5,5],[31,4],[7,5],[-6,6],[-3,5],[-1,5],[2,4],[10,0],[3,2],[4,3],[4,0],[8,-1],[7,0],[2,0],[1,-2],[3,-6],[13,-9],[7,0],[12,15],[9,2],[29,-7],[11,-4],[-1,-3],[0,-8],[2,-7],[5,-7],[7,-6],[5,-3],[7,1],[15,9],[5,-4],[6,-6],[8,-4],[8,0],[6,4],[-8,12],[2,5],[0,3],[-1,3],[-3,1],[2,0],[-9,17],[-15,35],[-12,13],[0,5],[3,2],[3,4],[1,6],[-1,7],[-4,7],[-5,1],[-5,-1],[-5,1],[-2,3],[-2,5],[-2,7],[0,6],[2,9],[2,3],[9,0],[-4,6],[-5,4],[-4,6],[-2,11],[-2,5],[-19,13],[-11,11],[-6,4],[-15,3],[-14,8],[-7,2],[-10,7],[-19,31],[-14,10],[-14,17],[-7,16],[-4,7],[-6,1],[2,0],[-52,53],[-10,17],[-4,12],[0,10],[4,8],[10,15],[21,23],[73,44],[9,11],[4,3],[3,3],[4,0],[3,3],[7,10],[4,3],[4,1],[11,-1],[-1,6],[-1,3],[4,5],[4,3],[8,4],[12,11],[9,5],[18,24],[72,54],[7,8],[6,26],[6,13],[7,10],[5,7],[4,3],[16,8],[10,8],[13,4],[17,14],[9,4],[24,-1],[17,5]],[[17965,94003],[2,-13],[-1,-4],[-3,-2],[-5,0],[-14,-6],[-4,-4],[-10,-15],[-2,-3],[-22,-3],[-5,-3],[-10,-9],[-45,-28],[-63,-19],[-66,-24],[-67,-14],[-12,-14],[-58,-21],[-16,-14],[-6,-3],[-17,-4],[-15,-15],[-22,-13],[-45,-15],[-15,-14],[-4,-3],[-49,-6],[-82,-44],[-21,-5],[-31,-25],[-32,-15],[-15,-11],[-54,-17],[-54,-29],[-8,-8],[-7,-12],[-10,-10],[-14,-4],[-40,-1],[-14,-6],[-38,-30],[-61,-31],[-6,-1],[-5,-3],[-3,-7],[-1,-9],[-2,-7],[-1,-7],[2,-16],[0,-8],[-4,-5],[-11,-9],[-4,-6],[1,-11],[-5,-8],[-6,-6],[-6,-7],[-2,-10],[-3,-15],[-1,-14],[4,-6],[3,-3],[-3,-5],[-4,-6],[-3,-3],[-13,-6],[-14,-10],[-60,-27],[-33,-26],[-10,-4],[-6,0],[-20,5],[-7,0],[-14,-4],[-55,7],[-6,5],[16,6],[3,6],[-7,4],[-11,1],[-10,-1],[-7,-6],[-2,-12],[5,-6],[13,-8],[4,-8],[1,-8],[1,-7],[6,-16],[0,-7],[-1,-7],[-3,-8],[-8,-18],[-31,-39],[-11,-11],[-13,-9],[-11,-12],[-7,-21],[13,-17],[7,-11],[-1,-4],[-4,-7],[0,-14],[-1,-16],[0,-12],[-3,-16],[-1,-9],[3,-8],[6,-14],[2,-7],[0,-5],[-1,-6],[-5,-11],[-5,-17],[-26,-54],[-33,-31],[-36,-11],[-63,-26],[-59,-11],[-61,-18],[-51,13],[17,11],[2,6],[-8,13],[-10,7],[-13,3],[-14,-1],[-10,-5],[-33,-31],[-21,-28],[-14,-8],[-22,-28],[-17,-17],[-9,-5],[-22,-5],[-24,-12],[-23,-4],[-63,-30],[-12,-16],[-7,-6],[-8,-15],[-7,-8],[-13,-7],[-84,-2],[-13,5],[-30,22],[-27,31],[-23,39],[-33,89],[-19,38],[-13,19],[-13,16],[-5,3],[-17,7],[-3,2],[-3,6],[-5,12],[-29,48],[-35,28],[-82,31],[-83,30],[-59,31],[-27,20],[-73,30],[-6,9],[63,4],[4,-2],[9,-8],[4,-2],[5,1],[2,3],[-1,5],[-4,5],[-13,8],[-74,1],[-82,-4],[-62,-15],[-24,9],[19,7],[7,7],[6,9],[6,13],[3,20],[1,6],[2,6],[0,8],[-4,10],[-5,4],[-12,-1],[12,20],[17,12],[18,5],[15,-1],[0,4],[-16,2],[-8,5],[0,9],[-2,2],[-2,3],[-2,8],[2,4],[3,10],[3,2],[22,-6],[6,4],[13,12],[3,2],[3,4],[0,9],[-2,6],[-4,-5],[-4,-5],[-3,-1],[-1,4],[1,8],[2,6],[3,6],[6,8],[4,4],[10,5],[4,4],[2,4],[7,16],[-3,3],[-7,2],[-3,3],[6,4],[20,0],[-5,10],[2,6],[13,9],[-1,9],[4,6],[11,6],[10,3],[13,8],[32,28],[8,2],[16,-2],[6,2],[-7,14],[3,9],[-20,1],[-9,5],[-9,10],[6,3],[6,0],[6,2],[3,7],[-2,1],[-4,3],[-2,0],[3,7],[5,-1],[6,-2],[5,0],[4,4],[3,4],[5,12],[-4,4],[-17,-4],[3,9],[6,8],[4,8],[-1,10],[-3,5],[-5,6],[-3,5],[-1,5],[-1,12],[-1,6],[-3,3],[-12,5],[-7,8],[-3,5],[1,3],[4,2],[4,5],[5,3],[9,-7],[12,-2],[4,-3],[7,-4],[49,22],[19,-4],[36,12],[15,9],[9,1],[4,5],[-1,4],[-13,10],[2,3],[6,7],[1,2],[-2,4],[-4,1],[-8,-1],[-6,2],[-8,4],[-7,7],[-5,8],[4,4],[-26,0],[4,-7],[1,-2],[-7,-1],[-8,5],[-27,27],[-4,7],[2,9],[2,3],[8,6],[2,3],[1,6],[2,5],[2,5],[3,2],[33,8],[7,9],[-2,1],[-3,2],[-2,2],[-1,3],[0,6],[1,2],[3,1],[2,3],[14,21],[4,3],[3,4],[9,28],[14,27],[6,5],[14,7],[4,6],[0,9],[-9,10],[-2,8],[3,5],[7,6],[28,13],[4,4],[-6,6],[10,4],[27,0],[7,12],[-4,0],[5,9],[17,4],[7,8],[-1,3],[-1,15],[1,5],[6,5],[2,4],[-3,4],[-4,6],[-3,7],[-1,8],[2,10],[5,5],[12,4],[26,17],[15,0],[6,3],[4,9],[-6,7],[6,9],[15,13],[-5,9],[-8,20],[-6,7],[-11,7],[-73,7],[-11,8],[-8,9],[-3,7],[1,7],[7,12],[-4,2],[-8,8],[-2,4],[-4,9],[-2,1],[-3,1],[-8,6],[-13,5],[-2,3],[5,2],[-3,9],[-10,14],[2,5],[-6,8],[-11,7],[-6,5],[4,4],[-3,8],[-3,9],[6,-1],[3,2],[2,5],[-2,10],[-2,7],[-4,4],[-4,3],[-4,4],[-2,7],[0,6],[-1,6],[-3,5],[-5,6],[0,3],[2,3],[1,7],[-7,16],[-10,3],[-23,-3],[-8,6],[6,8],[19,14],[-13,7],[-28,-5],[-10,10],[8,9],[21,2],[76,13],[49,6],[31,-5],[5,4],[-1,10],[5,3],[99,5],[13,8],[58,0],[48,14],[88,1],[101,7],[63,9],[78,11],[91,27],[57,8],[42,-15],[43,1],[5,-1],[13,-11],[22,-1],[34,-24],[7,-11],[1,-4],[1,-13],[2,-1],[10,1],[108,-42],[108,-43],[49,-5],[11,-5],[23,-15],[81,1],[13,-5],[-10,-4],[-20,5],[-10,-4],[4,-18],[-10,-17],[-37,-37],[-3,-7],[-1,-13],[3,-9],[7,-7],[9,-5],[8,-1],[1,8],[-2,6],[-3,6],[-2,6],[3,12],[7,8],[28,14],[11,13],[11,16],[9,18],[8,7],[10,0],[19,-5],[38,6],[26,-11],[6,-4],[4,-10],[3,-12],[-1,-7],[-9,-14],[11,-2],[5,-3],[3,-7],[-1,-11],[-4,-5],[-10,-5],[-6,-3],[-2,-5],[-4,-16],[-2,-6],[-2,-5],[-2,-6],[-1,-7],[11,2],[22,14],[12,0],[8,-6],[4,-1],[5,3],[4,3],[6,10],[6,11],[8,14],[5,5],[11,3],[4,7],[3,15],[-6,7],[-9,5],[-7,9],[-2,6],[0,3],[2,3],[4,4],[6,3],[13,3],[19,12],[27,4],[20,9],[27,3],[15,6],[94,14],[90,-14],[90,-15],[76,-43],[77,-43],[67,-55],[66,-55],[7,-9],[9,-10],[23,-5],[18,-20],[57,-36],[15,-21],[52,-28],[25,-4],[7,-5],[3,-3],[7,-13],[4,-4],[10,-5],[11,-14],[26,-21],[12,-15],[7,-10],[2,-9]],[[15753,79259],[2,-1],[0,-6],[-2,-6],[-4,4],[-3,6],[-3,7],[-3,7],[-1,2],[2,-3],[0,3],[-2,7],[0,1],[3,-5],[3,-7],[3,-6],[3,-2],[2,-1]],[[15731,79354],[-4,-10],[-7,-1],[-14,7],[2,-4],[6,-13],[0,-5],[-3,-4],[-6,-4],[-6,-2],[-4,2],[-3,5],[-3,2],[-3,4],[-3,7],[-2,6],[-1,8],[1,8],[4,6],[0,4],[-6,8],[-4,11],[-1,10],[7,8],[-7,11],[-4,10],[-2,12],[0,20],[1,-3],[1,-3],[2,-7],[21,-23],[20,-29],[-3,-1],[-4,2],[-4,4],[-3,5],[-2,2],[-1,-1],[-1,-3],[-1,-4],[1,-2],[7,-11],[29,-32]],[[15652,79508],[-2,5],[-11,24],[-1,10],[1,6],[3,-1],[8,-21],[25,-48],[6,-9],[21,-22],[4,-3],[8,-2],[11,-6],[7,-8],[8,-2],[4,-4],[2,-9],[-1,-7],[-3,-3],[-4,3],[-7,-5],[-7,7],[-12,18],[-26,23],[-29,49],[-5,5]],[[15633,79583],[5,-2],[2,-5],[0,-7],[-3,-2],[-2,0],[-1,0],[-4,-2],[-5,-1],[-8,3],[-18,11],[-5,7],[-2,6],[1,3],[-1,3],[-1,1],[1,3],[1,3],[9,3],[2,-1],[2,-5],[2,-4],[12,-9],[13,-5]],[[15014,79607],[1,-2],[2,-4],[0,-3],[-2,-1],[-2,-1],[-2,-6],[-1,-11],[-2,-3],[-2,1],[-9,5],[-2,6],[0,8],[-4,5],[-1,7],[3,6],[5,1],[6,-2],[7,-3],[3,-3]],[[14977,79675],[2,-7],[1,-8],[2,-7],[4,-7],[-5,-6],[-6,-1],[-13,6],[-6,5],[-10,-1],[-8,3],[-5,15],[4,3],[-1,8],[-1,7],[-2,6],[3,9],[-1,5],[1,7],[1,3],[6,0],[15,8],[5,0],[7,-7],[6,-13],[3,-14],[-2,-14]],[[15741,79709],[-1,-5],[-2,-5],[-5,-8],[-4,-3],[-3,-1],[-8,1],[-3,2],[-1,4],[1,5],[0,7],[2,8],[9,13],[4,5],[6,3],[7,2],[3,-4],[-1,-8],[-2,-6],[-2,-3],[0,-2],[1,0],[-1,-5]],[[15491,79784],[17,-21],[0,-6],[-4,-4],[-13,7],[-5,0],[-2,-2],[-3,0],[-8,1],[-6,3],[-9,7],[-3,3],[1,3],[1,4],[-3,4],[-3,1],[-1,5],[2,4],[2,4],[3,1],[7,-6],[2,-1],[7,1],[4,-2],[4,-2],[5,-1],[5,-3]],[[15708,79752],[0,8],[-1,6],[-1,5],[4,5],[0,4],[-3,9],[4,8],[6,6],[7,3],[3,2],[3,1],[3,-1],[1,-3],[4,-17],[6,-12],[-1,-14],[-5,-12],[-9,-2],[2,9],[-2,6],[-4,2],[-4,-1],[-3,-4],[-2,-5],[-3,-3],[-5,0]],[[15387,79803],[2,-2],[1,-4],[-3,0],[-5,1],[-3,-3],[-2,-8],[-3,-5],[-3,-1],[-2,2],[-6,7],[-3,7],[0,10],[5,6],[8,-1],[14,-9]],[[15359,79783],[4,-4],[1,-5],[-4,-2],[-2,0],[-3,2],[-7,3],[-22,31],[-4,10],[0,12],[1,12],[3,3],[6,-10],[3,-3],[21,-48],[3,-1]],[[15525,79890],[-7,-13],[-8,2],[-7,11],[-5,16],[17,25],[3,4],[4,0],[5,-4],[0,8],[1,3],[2,2],[12,6],[8,1],[0,-3],[0,-1],[-1,0],[-1,0],[-13,-20],[-2,-7],[-1,-3],[-7,-27]],[[15371,79931],[2,4],[1,4],[0,4],[-1,4],[0,4],[1,4],[0,2],[-1,6],[3,0],[4,0],[3,-1],[3,-3],[4,-6],[5,-14],[4,-4],[12,-4],[9,-8],[27,-8],[12,-10],[5,-13],[2,-7],[8,-12],[1,-6],[2,-7],[3,-7],[27,-37],[8,-14],[6,-18],[-5,-6],[-6,4],[-9,15],[-51,48],[-16,6],[-1,3],[1,4],[-1,4],[-6,13],[-3,10],[0,1],[-2,1],[-1,0],[-3,-1],[-6,7],[0,1],[-5,3],[-11,11],[-11,5],[-5,5],[-9,13]],[[14817,79955],[3,-9],[1,-8],[1,-11],[2,-29],[4,-23],[0,-13],[-6,-21],[-11,-2],[-35,21],[-5,5],[-5,10],[-4,7],[-16,16],[-17,26],[1,11],[3,2],[3,-3],[5,-8],[1,6],[2,6],[3,3],[8,3],[5,2],[2,4],[-2,5],[-3,0],[-3,-1],[-2,-2],[-2,-1],[-2,1],[-3,6],[-1,1],[-2,1],[-4,6],[-3,1],[-2,0],[-7,4],[2,8],[3,3],[6,1],[23,12],[17,15],[9,1],[3,-7],[5,-9],[5,-4],[6,7],[3,-2],[4,-14],[5,-27]],[[14655,80093],[3,-5],[0,-2],[-1,-2],[-2,-2],[-3,-2],[-6,-13],[-3,1],[-3,5],[-3,3],[-3,4],[-1,5],[2,3],[0,4],[1,4],[2,4],[5,2],[6,-1],[6,-8]],[[15270,80166],[12,20],[1,6],[-1,7],[-5,13],[-1,6],[1,1],[2,-1],[2,-4],[16,-33],[3,-11],[1,-3],[0,-4],[-1,-4],[-1,-1],[-1,-2],[1,-4],[2,-3],[1,-1],[1,-9],[1,-7],[1,-5],[3,-6],[-8,-5],[-8,-3],[-4,-4],[-4,-16],[-3,-4],[-5,2],[-1,7],[0,8],[1,5],[0,7],[0,5],[-2,5],[-11,15],[-2,6],[3,6],[6,11]],[[15222,80105],[-5,11],[-2,5],[1,1],[3,3],[-5,8],[-15,17],[-3,6],[-2,2],[-3,3],[-3,4],[-2,7],[0,6],[-1,17],[-4,16],[0,13],[1,11],[2,8],[5,5],[8,5],[8,2],[4,-4],[3,-13],[2,-3],[4,-3],[4,-11],[6,-5],[2,-6],[2,-8],[0,-8],[-2,-8],[-4,-6],[-2,-6],[2,-8],[-7,-4],[-4,-4],[-1,-6],[5,-11],[2,-3],[3,-1],[2,-2],[2,-6],[1,-5],[1,-19],[3,-23],[-1,-6],[-4,4],[-2,6],[-2,13],[-2,6]],[[15308,80194],[-6,1],[-4,4],[-9,20],[-2,9],[1,8],[4,3],[3,5],[3,10],[3,6],[9,-8],[13,-5],[6,-4],[1,-3],[-1,-4],[-2,-10],[2,-20],[6,-8],[8,-6],[3,-12],[-3,-7],[-6,-10],[-7,-9],[-6,-4],[-3,3],[-2,6],[-4,13],[-1,7],[3,4],[5,3],[3,4],[-3,8],[-4,1],[-10,-5]],[[15332,80216],[-1,2],[-1,4],[5,14],[2,9],[4,7],[4,4],[2,4],[7,1],[10,-8],[8,-17],[3,-23],[-4,-19],[-8,-12],[-6,-6],[-3,1],[-2,3],[0,4],[-1,7],[-2,10],[1,10],[3,13],[6,11],[0,8],[-2,7],[-3,4],[-1,-1],[1,-6],[0,-5],[0,-4],[-2,-7],[-7,-21],[-3,-3],[-4,3],[-6,6]],[[15184,80259],[-6,-4],[-7,1],[-4,7],[-2,14],[3,10],[6,1],[12,-5],[4,4],[1,9],[-1,10],[0,10],[1,8],[3,10],[4,5],[14,-13],[4,-2],[2,-1],[3,-8],[1,-3],[2,0],[4,1],[2,-1],[1,-4],[2,-13],[1,-5],[1,-6],[7,-13],[4,-15],[10,-20],[3,-7],[1,-5],[2,-7],[2,-7],[0,-8],[-2,-6],[-3,-1],[-2,3],[-2,4],[-4,-24],[-3,-12],[-6,-6],[-2,-4],[-2,-1],[-3,5],[0,3],[4,19],[2,12],[0,13],[-1,11],[-9,9],[-3,9],[-9,33],[0,2],[-4,0],[-3,-3],[-3,-1],[-3,2],[-3,5],[-2,0],[-3,-2],[-7,-2],[-3,-4],[-1,-4],[-3,-3]],[[15138,80325],[0,-5],[-25,-10],[-5,2],[-3,-1],[-4,-4],[-30,-3],[-6,1],[-1,1],[-3,3],[-1,2],[0,2],[0,3],[1,2],[2,2],[10,4],[14,-1],[8,5],[6,4],[6,3],[2,3],[4,2],[13,3],[6,-1],[5,-6],[1,-11]],[[15175,80353],[8,-5],[4,-11],[-3,-13],[-3,-5],[-2,-3],[-8,-3],[1,-2],[1,-4],[-1,-4],[-3,-5],[-7,-5],[-9,-3],[-11,2],[-7,6],[-5,3],[-4,3],[2,4],[5,4],[6,6],[2,7],[0,5],[4,5],[19,11],[3,2],[3,4],[5,1]],[[15070,80330],[-3,-1],[-7,-5],[-6,-2],[-5,1],[-14,4],[-9,0],[-12,5],[-5,8],[4,3],[4,1],[14,10],[10,4],[13,4],[3,-2],[7,-8],[1,-3],[0,-3],[3,-3],[3,-4],[1,-5],[-2,-4]],[[14850,80426],[4,-2],[2,-3],[0,-3],[-3,-3],[-4,-1],[-11,-4],[-9,-2],[-10,3],[-2,3],[3,4],[-2,5],[-4,4],[-1,3],[3,0],[10,0],[4,1],[4,1],[3,1],[1,-3],[2,-1],[10,-3]],[[14906,80438],[4,1],[10,-1],[7,-14],[5,-5],[5,-1],[-2,-8],[-3,-1],[-3,0],[-4,0],[-3,-3],[-5,-7],[-2,-2],[-30,-4],[-2,-2],[-8,-3],[-49,9],[12,8],[60,21],[1,1],[5,8],[2,3]],[[14888,80453],[5,0],[6,-6],[-3,-8],[-14,-10],[-4,-1],[-4,1],[-9,-6],[-4,0],[-3,2],[-1,2],[2,0],[-1,2],[-5,2],[-3,2],[1,2],[-3,0],[-3,3],[3,6],[21,8],[19,1]],[[14761,80463],[6,-7],[1,-5],[-1,-2],[-2,2],[-2,2],[-3,0],[-2,-3],[-7,-2],[-30,3],[-9,8],[-9,-3],[-15,-3],[-8,6],[3,9],[5,7],[4,3],[10,-1],[10,-4],[28,-2],[11,4],[4,-4],[6,-8]],[[14828,80479],[5,1],[3,3],[1,5],[0,8],[10,18],[6,7],[6,-2],[8,10],[14,22],[8,8],[5,2],[11,1],[5,1],[9,8],[5,1],[8,-8],[3,-6],[3,-7],[1,-6],[2,-8],[7,-7],[2,-5],[-2,-5],[-13,-9],[-3,-6],[-7,-19],[1,-12],[-6,-6],[-17,-2],[-24,11],[-7,-3],[3,-5],[0,-3],[-2,-3],[-4,-1],[-4,1],[-6,5],[-4,2],[-15,-3],[-8,1],[-4,11]],[[14783,80539],[-4,0],[-17,7],[-8,15],[-6,6],[0,5],[4,0],[4,2],[4,2],[10,0],[3,-5],[3,-9],[3,-3],[4,8],[-1,6],[4,3],[24,-1],[5,1],[2,4],[2,2],[3,2],[2,-1],[1,-3],[2,-2],[1,-2],[8,-9],[4,-5],[4,-7],[-4,0],[-5,3],[-3,1],[-3,-1],[-6,-5],[-10,-3],[-19,-11],[-1,1],[-4,6],[-3,1],[0,-1],[-1,-3],[-1,-2],[-1,-2]],[[15744,79190],[5,-7],[4,-10],[2,-11],[-2,-15],[-4,-6],[-8,-5],[-7,-3],[-22,26],[-5,-6],[-7,-25],[-5,-5],[-4,-2],[-1,-4],[0,-5],[-1,-6],[-2,-4],[-5,-7],[-3,-5],[1,-9],[-6,-4],[-6,3],[0,10],[-5,0],[-8,-6],[-3,-2],[-4,2],[-5,9],[-6,3],[-8,8],[-13,7],[-16,-1],[-14,3],[-67,40],[-72,50],[-7,1],[-6,3],[2,8],[6,8],[5,5],[-3,3],[-9,2],[-3,-1],[-4,-3],[-2,-4],[-6,-9],[-2,1],[-5,3],[-42,15],[-19,14],[-10,11],[-9,15],[-4,4],[-77,49],[-5,5],[-9,22],[-5,7],[-7,8],[4,9],[17,16],[1,3],[3,9],[2,4],[3,4],[3,2],[2,1],[7,1],[4,2],[2,3],[2,5],[-1,8],[-1,5],[0,4],[3,7],[5,9],[6,4],[12,6],[10,11],[10,17],[8,23],[3,24],[2,10],[4,10],[2,11],[-5,22],[-3,34],[-2,-2],[-2,-3],[-1,-3],[-1,-4],[0,-5],[2,-21],[0,-25],[-2,-12],[-3,-9],[-5,-9],[-3,-9],[-3,-25],[-2,-11],[-6,-4],[-4,-2],[-12,-9],[-7,-1],[-15,4],[-3,-1],[-5,-6],[-3,-1],[-7,3],[-5,5],[-5,3],[-7,-3],[-8,-16],[-6,-7],[-5,1],[-7,4],[-14,2],[-6,4],[10,18],[5,7],[6,3],[0,4],[-10,0],[-3,0],[-2,3],[-3,3],[-2,3],[-3,0],[-3,-9],[-1,-12],[-2,-11],[-10,-9],[-8,-17],[-5,-4],[-1,-2],[-1,-4],[-1,-4],[-3,-2],[-5,1],[-3,1],[0,2],[-4,2],[-5,3],[-4,5],[-4,5],[-4,4],[-9,4],[-4,4],[-1,4],[-2,7],[-1,3],[-10,15],[-7,6],[-3,5],[-8,10],[-28,9],[-3,3],[-4,4],[-3,6],[1,7],[2,4],[9,3],[4,5],[4,-6],[5,-5],[4,-1],[6,4],[2,3],[11,12],[2,-1],[3,9],[10,9],[3,7],[1,7],[3,5],[2,6],[1,12],[-24,-27],[-7,-12],[-7,-7],[-2,12],[0,32],[3,17],[1,10],[-3,-3],[-3,-6],[-4,-3],[-4,-1],[-3,4],[0,6],[0,22],[1,7],[2,6],[3,10],[1,10],[0,8],[-1,0],[-4,-6],[-3,-9],[-4,-12],[-1,-17],[-2,-7],[-2,-6],[-2,-4],[-2,0],[-4,6],[-3,2],[-7,-3],[-10,-20],[-5,-5],[-6,1],[-5,5],[-4,7],[-5,11],[5,11],[9,7],[7,10],[7,31],[5,15],[3,14],[-4,10],[-2,-11],[-11,-16],[-2,-8],[-1,-13],[-2,-9],[-5,-7],[-5,-5],[-3,4],[-6,5],[-4,5],[-4,22],[1,8],[4,9],[0,6],[1,10],[0,4],[-3,-1],[-16,-10],[-5,-2],[-5,-3],[-4,-2],[-1,-2],[-1,-3],[-2,-1],[-3,0],[-4,1],[-4,4],[-2,5],[-1,8],[-2,6],[-3,3],[-4,-3],[3,-8],[1,-10],[-2,-9],[-4,-11],[-2,-9],[-1,-2],[-3,0],[-1,3],[-1,3],[-1,2],[-8,6],[-3,3],[-3,5],[-4,4],[-6,4],[-3,5],[4,5],[-4,7],[-4,14],[-3,4],[-5,-1],[-4,-6],[-4,-8],[-3,-5],[4,-12],[3,-8],[0,-6],[-7,-7],[-6,-3],[-5,1],[-4,4],[-4,6],[-4,11],[-1,6],[2,8],[2,12],[0,1],[0,15],[0,6],[1,4],[0,4],[-1,7],[1,0],[0,3],[-2,3],[-1,2],[-2,8],[1,3],[0,4],[0,4],[1,5],[1,5],[1,2],[3,5],[5,4],[9,5],[13,15],[10,1],[22,-4],[33,9],[6,5],[3,2],[4,0],[6,-4],[4,-1],[13,7],[-1,5],[-2,5],[-2,3],[-3,1],[-21,-2],[-29,-12],[-7,-8],[-4,1],[-32,15],[-7,5],[-3,7],[3,10],[18,35],[1,4],[-4,2],[-8,5],[-4,1],[-2,-4],[1,-21],[-2,-9],[-4,-9],[-7,-6],[-8,-3],[-7,2],[-6,5],[-3,10],[-9,50],[-1,10],[-1,23],[-2,15],[-4,-1],[-5,-7],[-6,-4],[-6,3],[-6,8],[-5,10],[-5,17],[-5,7],[-11,12],[0,-8],[9,-10],[2,-9],[-2,-8],[-4,-9],[-4,-7],[-4,-3],[-5,0],[-4,0],[-2,5],[-5,39],[-3,10],[0,-3],[-1,-6],[0,-4],[-1,-11],[0,-30],[-2,-10],[-3,-1],[-35,-1],[-7,-3],[-7,0],[-5,5],[-25,48],[-2,9],[2,8],[9,19],[1,2],[2,0],[1,1],[1,5],[0,3],[-2,2],[0,3],[3,11],[3,11],[5,7],[12,7],[4,9],[2,12],[-4,12],[-2,-5],[-1,-5],[-1,-5],[-2,-5],[-2,-2],[-6,-2],[-4,-8],[-8,-1],[-7,2],[-3,5],[-2,6],[-5,9],[-5,7],[-4,4],[-2,-4],[1,-10],[2,-11],[2,-10],[-1,-9],[-2,-9],[-3,-6],[-6,-6],[-6,-4],[-7,-1],[-6,1],[-6,4],[-9,11],[-5,8],[-3,9],[0,11],[3,5],[11,9],[-19,0],[2,7],[4,8],[11,13],[-11,5],[-9,-11],[-8,-15],[-7,-7],[-12,-7],[-6,0],[-4,7],[-1,9],[1,8],[3,8],[2,7],[-10,-4],[-11,-11],[-10,-14],[-14,-26],[-3,-4],[-3,-2],[-2,2],[-5,9],[-2,1],[-13,2],[-6,5],[-3,10],[3,7],[16,19],[18,34],[5,3],[3,3],[-1,7],[-2,3],[-2,0],[-6,-3],[-5,-1],[-2,2],[-4,8],[-2,3],[-5,4],[2,6],[8,2],[3,4],[1,8],[-3,4],[-3,1],[-3,-3],[-3,0],[-7,11],[-3,3],[-2,-1],[-6,-9],[-3,-2],[-7,4],[-7,8],[-3,9],[4,4],[3,17],[3,13],[5,6],[0,4],[-2,6],[0,6],[2,6],[3,3],[9,-5],[5,1],[2,8],[9,-4],[7,3],[7,6],[8,3],[43,-1],[6,-4],[5,-9],[15,-37],[6,-10],[8,-4],[-10,34],[-7,18],[-14,16],[-1,17],[3,13],[8,-1],[6,15],[21,9],[2,13],[-26,-9],[-6,-6],[-4,-5],[-2,1],[-3,4],[-2,3],[-4,6],[-4,4],[-4,2],[-57,4],[-16,12],[4,-8],[6,-8],[7,-6],[5,-3],[31,0],[15,-5],[6,-6],[5,-7],[0,-9],[-6,-4],[-13,-1],[-49,-26],[-2,9],[-5,-1],[-12,-10],[-12,-6],[-13,-2],[-5,4],[-5,7],[-5,2],[-3,-10],[2,0],[1,-1],[1,-6],[2,-4],[-1,-3],[-4,-2],[-2,1],[-3,3],[-3,3],[-5,8],[-7,3],[-4,3],[-2,3],[-3,9],[-3,4],[-4,5],[-3,2],[-3,1],[-2,1],[-2,4],[-1,5],[-3,11],[-1,13],[-2,7],[-11,8],[-6,-2],[-3,2],[-1,6],[-3,10],[-1,6],[3,2],[7,2],[5,4],[2,5],[-5,2],[-3,-1],[-6,-3],[-3,-1],[-3,2],[-3,4],[-3,4],[-2,4],[-1,12],[-6,21],[0,10],[-4,7],[3,5],[6,3],[5,1],[0,2],[6,8],[2,1],[10,-3],[10,6],[11,12],[11,8],[10,-5],[15,17],[6,3],[6,-1],[10,-4],[28,5],[10,-2],[87,-43],[9,-8],[5,-1],[4,-4],[2,-6],[3,-9],[-1,-1],[-1,-3],[0,-6],[1,-4],[2,-6],[1,-4],[2,-5],[4,11],[3,12],[5,9],[6,-3],[-4,-11],[5,-12],[8,-11],[7,-7],[24,-13],[8,-7],[4,-6],[3,-4],[3,-4],[5,-2],[15,2],[4,-2],[2,-3],[1,-4],[1,-4],[0,-1],[3,-2],[2,1],[2,0],[3,1],[14,-5],[5,0],[-2,0],[2,0],[2,-1],[2,-1],[1,-1],[-1,-2],[-3,-5],[-1,-1],[4,-4],[29,-1],[5,-1],[2,-5],[-2,-5],[-2,-4],[0,-4],[4,-1],[1,1],[2,8],[2,3],[2,1],[10,-1],[6,-2],[24,-16],[7,-2],[6,-4],[10,-16],[8,-1],[1,3],[1,8],[2,2],[2,-1],[3,-3],[1,0],[3,-1],[8,-3],[3,-3],[6,-4],[27,7],[6,-2],[13,-9],[6,-1],[22,2],[21,-9],[26,-18],[19,-18],[6,-2],[27,-2],[13,-6],[11,-11],[3,-2],[42,9],[7,-3],[11,-11],[13,-5],[6,-6],[5,-9],[4,-11],[-2,-4],[3,-9],[3,-9],[6,-35],[11,-32],[-6,-4],[5,-8],[9,-8],[5,-2],[2,-10],[10,-15],[-1,-10],[11,-18],[1,-5],[0,-11],[1,-5],[3,-8],[4,-18],[3,-8],[82,-119],[3,-7],[1,-10],[-2,-11],[-4,-3],[-23,8],[-2,-2],[1,-8],[3,-3],[2,-2],[3,-4],[2,-4],[6,-9],[3,-6],[20,-61],[5,-4],[3,-3],[1,-4],[1,-11],[2,-5],[6,-7],[13,3],[6,-6],[3,-4],[7,-3],[3,-3],[4,-13],[1,-3],[12,-12],[14,-8],[28,-9],[16,-1],[7,-3],[6,-6],[3,-4],[3,-2],[30,-16],[3,0],[4,3],[3,1],[4,-3],[14,-18],[-5,-3],[-10,-2],[-4,-7],[4,-3],[3,0],[8,3],[4,-1],[7,-6],[4,-1],[17,0],[9,-3],[6,-7],[1,-4],[1,-4],[0,-4],[-5,-4],[1,-3],[3,-8],[6,-24],[3,-5],[4,-1],[6,2],[11,-5],[4,1],[4,-7],[3,-8],[2,-10],[2,-11],[9,-16],[1,-8],[-6,-5],[3,-7],[1,-7],[-1,-5],[-4,-1],[-4,4],[-3,7],[-3,5],[-6,-4],[0,-4],[13,-20],[14,-14],[2,-5],[4,-7],[34,-50],[4,-9],[-3,-5],[-1,-1],[-2,-5],[0,-4],[1,-2],[2,1],[2,1],[2,1],[2,-3],[1,-8],[0,-12],[-2,-8],[-3,2],[-4,5],[-5,3],[-6,0],[-4,-2],[0,-4],[6,-7],[19,-17],[3,-4],[6,-12],[1,-4],[-1,-8],[-2,-5],[-1,-4],[0,-8],[2,-5],[2,-4],[3,-6],[0,-9],[-1,-9],[-2,-5],[-2,-4],[-2,-7],[1,-8],[7,4],[11,17],[-2,9],[1,18],[-1,9],[12,8],[-7,8],[-3,5],[0,8],[3,2],[4,2],[5,0],[3,-1],[4,-3],[1,-2],[1,-5],[0,-8],[1,-2],[1,-6],[0,-7],[-1,-3],[1,-6],[9,-35],[3,-22],[3,-9],[4,-7]],[[14487,80627],[1,-2],[1,-5],[0,-5],[-3,-4],[-4,-2],[-3,-1],[-3,1],[-3,3],[-7,-1],[-4,5],[-5,-1],[-7,3],[-1,5],[12,5],[3,3],[2,4],[2,2],[15,-2],[4,-4],[0,-4]],[[14571,80726],[5,-4],[0,-10],[-4,-9],[-4,-1],[-3,1],[-3,-1],[-4,1],[-3,5],[-2,6],[-1,3],[4,3],[11,5],[4,1]],[[13422,81764],[4,-1],[3,-2],[0,-4],[-4,-4],[-3,-1],[-6,-3],[-12,-4],[-10,0],[-7,2],[-7,7],[-2,9],[6,3],[16,6],[7,-2],[1,-5],[-4,-2],[0,-1],[7,0],[11,2]],[[13269,81854],[3,-2],[5,-4],[-4,-6],[-24,-5],[-6,2],[-16,20],[2,2],[3,0],[37,-7]],[[13061,82595],[3,-4],[1,-3],[-3,-10],[-1,-8],[1,-4],[-2,-2],[-5,-2],[-3,2],[-1,7],[-1,6],[-4,1],[-3,1],[-2,2],[-7,1],[-1,5],[1,8],[4,6],[6,2],[10,-3],[3,-1],[4,-4]],[[32089,86200],[8,-11],[4,-8],[2,-9],[-12,9],[-13,11],[-21,16],[-7,5],[-8,2],[-15,1],[-7,3],[-7,5],[-20,25],[-8,14],[-2,15],[9,12],[6,1],[22,-5],[12,1],[7,2],[5,5],[4,-5],[4,-4],[3,-5],[-2,-7],[6,2],[5,-1],[2,-5],[-1,-11],[7,-3],[3,-7],[0,-10],[-1,-13],[2,0],[8,13],[3,3],[15,0],[3,-3],[-1,-6],[-2,-7],[0,-2],[-1,-2],[-2,-3],[-6,-5],[-1,-2],[0,-2],[-1,-2],[-2,-2],[0,-5]],[[31144,86297],[11,-5],[4,-14],[-6,-29],[-11,-22],[-6,-1],[-7,-18],[-7,-9],[1,-18],[-5,-7],[-4,0],[-5,4],[-15,-1],[-4,-4],[-4,-6],[-6,-5],[-8,-2],[-9,-5],[-3,-11],[-6,-7],[-10,-5],[-12,-1],[-10,-12],[-15,0],[-13,8],[-5,29],[6,29],[10,40],[13,33],[7,23],[5,21],[14,47],[31,7],[8,-2],[6,-2],[14,-4],[8,2],[5,-14],[10,-19],[11,-13],[7,-7]],[[32052,86411],[4,-1],[1,-3],[0,-3],[0,-5],[-1,-11],[-3,-12],[-5,-10],[-9,-5],[-9,-10],[-3,1],[-3,4],[-1,5],[7,6],[15,28],[5,14],[2,2]],[[28265,86497],[2,-1],[1,-1],[1,0],[2,2],[0,-5],[0,-8],[-2,0],[-31,-24],[13,4],[5,0],[0,-4],[-16,-8],[-47,-12],[-23,-14],[-26,-2],[-4,1],[1,4],[15,15],[3,4],[1,5],[0,5],[2,4],[3,2],[98,29],[2,4]],[[31988,86803],[-3,-11],[-6,-1],[-7,5],[-4,13],[-5,-5],[-6,-3],[-6,1],[-2,9],[1,8],[5,5],[6,3],[5,6],[-14,8],[-29,2],[-13,11],[0,4],[4,-1],[3,1],[2,3],[1,5],[-14,-1],[-7,2],[-5,5],[-1,5],[-1,10],[-2,5],[-2,3],[-5,0],[-8,-1],[-4,2],[-3,5],[-2,6],[-3,4],[-4,2],[-13,2],[-6,4],[-12,14],[-3,2],[-5,7],[-7,2],[-4,6],[1,13],[3,13],[6,8],[6,3],[106,21],[7,-2],[13,-8],[72,-10],[-5,-8],[-11,-9],[-5,-8],[4,-2],[4,3],[6,4],[5,3],[0,-4],[-4,-4],[0,-4],[15,2],[4,-2],[3,-3],[2,-3],[0,-3],[-3,-3],[-2,-4],[-9,-13],[-3,-3],[-2,-2],[-1,-4],[0,-5],[1,-1],[5,-1],[3,-1],[2,-2],[-9,-12],[8,0],[3,-3],[-1,-8],[-1,-5],[-2,-11],[-2,-6],[-6,-11],[-17,-9],[-5,-8],[3,-9],[-4,-11],[-11,-15]],[[31749,87064],[7,-14],[0,-5],[-4,-6],[-8,4],[-9,9],[-5,9],[-4,-13],[-8,-3],[-17,4],[-7,3],[-8,9],[-5,8],[16,13],[14,18],[13,11],[11,-9],[-2,-3],[-9,-4],[0,-4],[2,-4],[2,-2],[3,2],[3,6],[5,4],[4,-2],[2,-10],[1,-6],[3,-13],[0,-2]],[[24159,87138],[0,-3],[-2,-5],[14,-8],[5,-1],[-5,-12],[-10,-14],[-11,-9],[-8,3],[-4,7],[-8,17],[-5,5],[-13,-4],[-6,3],[-2,15],[3,8],[5,2],[26,-1],[5,2],[5,7],[6,-7],[5,-5]],[[31877,87140],[3,2],[3,0],[3,1],[2,5],[1,7],[3,3],[7,0],[14,-4],[13,-8],[10,-25],[3,-19],[4,6],[4,12],[3,6],[5,-8],[1,-15],[0,-15],[2,-7],[3,1],[6,6],[3,1],[4,-1],[2,-4],[3,-11],[9,-15],[2,-5],[2,-7],[-1,-3],[-2,-1],[-10,-12],[-8,-4],[-7,-1],[-8,3],[-22,22],[-31,9],[-2,5],[-1,7],[-3,6],[-3,3],[-7,1],[-3,4],[-2,4],[-7,26],[-2,7],[1,8],[3,10]],[[24369,87428],[8,-5],[28,3],[0,-4],[-6,0],[-18,-20],[-4,-2],[-6,3],[-17,-4],[-8,3],[9,12],[6,4],[6,0],[-6,8],[-7,-1],[-7,-5],[-7,-2],[0,4],[4,2],[1,4],[2,3],[3,3],[4,2],[5,-2],[5,-2],[5,-4]],[[27977,87347],[4,-12],[1,-9],[-1,-8],[-1,-10],[1,-24],[-1,-11],[-3,-11],[-9,-21],[-4,-12],[-2,-14],[1,-7],[1,-12],[1,-16],[-1,1],[-4,1],[-2,2],[-5,6],[-3,1],[-2,-3],[-1,-6],[-1,-12],[-3,-8],[-2,-4],[-5,-8],[-3,-6],[-2,-5],[-3,-13],[-4,-10],[-13,-19],[0,-8],[-1,-6],[-1,-6],[-2,-5],[-1,-11],[-1,8],[0,-14],[-2,-10],[-4,-11],[-6,-12],[-9,-10],[-6,-26],[-4,-4],[-10,-17],[-10,-8],[-3,-4],[-4,-11],[-3,-2],[-14,-5],[-6,-1],[-6,6],[-1,2],[0,6],[-1,3],[-2,3],[-4,3],[-2,2],[-9,21],[-8,19],[-2,4],[-3,2],[-10,11],[-10,4],[-5,10],[0,7],[-15,8],[-7,5],[-12,3],[-6,10],[-4,6],[-1,5],[1,7],[-7,6],[-5,15],[1,19],[-5,10],[-2,7],[-1,8],[7,30],[1,20],[2,21],[9,24],[1,27],[16,37],[9,12],[14,16],[11,19],[12,18],[4,19],[7,14],[5,8],[5,5],[13,8],[10,6],[4,-2],[4,-4],[4,-3],[9,6],[5,0],[4,-1],[4,-4],[-3,-3],[0,-4],[1,-3],[4,-2],[4,2],[6,8],[6,4],[7,8],[3,2],[14,2],[5,-2],[-1,0],[3,-2],[5,-7],[3,-3],[5,-2],[4,-1],[5,-2],[4,-5],[1,-5],[3,-15],[2,-3],[3,-1],[11,-11],[2,-4],[3,-12],[3,-4],[4,-3],[8,-3],[4,-4]],[[24284,87426],[5,4],[4,8],[4,5],[10,-9],[18,-1],[7,-3],[-2,-5],[-2,-3],[-4,-1],[-3,1],[-26,-8],[-8,1],[-7,4],[-2,5],[6,2]],[[32116,87499],[-1,-4],[1,-4],[3,-3],[3,-2],[0,-3],[-35,-8],[0,-5],[6,-3],[13,-2],[6,-3],[-8,-12],[-6,-4],[-4,2],[-2,3],[-4,1],[-4,1],[-2,-3],[1,-3],[8,-13],[-12,-13],[-8,-5],[-7,-2],[-2,-1],[-4,-6],[-1,-1],[-3,0],[-6,3],[-8,2],[-11,6],[-24,3],[-39,15],[-9,10],[3,14],[-4,3],[-2,0],[9,15],[13,4],[26,-2],[-4,6],[-13,7],[-4,7],[7,17],[11,8],[13,-1],[11,-8],[6,-11],[2,-1],[3,1],[5,6],[3,1],[26,-4],[1,11],[7,1],[17,-8],[-1,-12],[18,5],[6,-5]],[[28374,87535],[5,-15],[-7,-7],[-20,-2],[-43,8],[-5,3],[-2,5],[1,6],[5,2],[56,7],[10,-7]],[[28410,87535],[23,3],[5,-3],[-7,-11],[-5,-5],[-8,4],[-5,-5],[-5,-6],[-4,-5],[-5,0],[-6,1],[-6,4],[-2,5],[0,8],[-2,6],[-2,6],[-2,7],[2,-1],[2,0],[2,-2],[2,-1],[3,0],[6,3],[2,1],[4,-2],[5,-5],[3,-2]],[[31953,87503],[-26,-1],[-15,4],[-7,9],[16,3],[4,3],[2,6],[3,5],[4,4],[3,4],[9,4],[11,3],[11,-1],[7,-6],[13,-8],[-7,-12],[-5,-3],[-5,-2],[-5,1],[-3,-1],[-2,-2],[-4,-6],[-2,-3],[-2,-1]],[[24557,87572],[3,-4],[2,-7],[0,-4],[-3,1],[-23,16],[-5,10],[2,1],[3,-1],[2,-1],[2,-3],[14,-4],[3,-4]],[[24685,87592],[25,-1],[16,-11],[-1,-3],[-1,0],[-3,3],[-40,0],[-15,8],[-5,1],[-10,-1],[-4,2],[0,7],[6,4],[32,-9]],[[29440,87584],[4,-7],[9,-24],[1,-5],[-43,-4],[-71,19],[-9,5],[-7,8],[-3,3],[-25,4],[-4,3],[-5,8],[-24,19],[5,6],[19,6],[7,7],[3,1],[3,0],[7,-4],[3,0],[2,-4],[2,-3],[3,-3],[3,-2],[2,-1],[5,2],[2,-1],[5,-7],[1,-3],[-2,-4],[2,-4],[2,-5],[3,-2],[62,5],[4,-1],[9,-6],[20,-3],[5,-3]],[[30488,87552],[12,-4],[6,-12],[-5,-13],[-10,-10],[-12,-5],[-24,-9],[-22,4],[-34,4],[-6,3],[-11,11],[-6,3],[-2,-2],[-5,-9],[-3,-2],[-13,4],[-3,2],[4,7],[-1,7],[-1,9],[-16,4],[-9,14],[1,28],[-8,15],[-5,12],[-17,16],[5,4],[5,1],[5,-1],[4,-4],[2,4],[4,-3],[6,-2],[6,0],[4,3],[2,7],[-1,6],[-3,4],[-5,1],[-19,-4],[-10,1],[-14,17],[-11,5],[-10,1],[-11,-8],[-6,-1],[-17,3],[-3,2],[-3,5],[9,6],[21,-3],[10,5],[-30,6],[-15,6],[-11,14],[0,8],[8,1],[116,-28],[50,-25],[15,-12],[17,-7],[6,-10],[8,-4],[9,-7],[4,-7],[-6,0],[-2,0],[0,-4],[11,-10],[17,-5],[-7,-7],[-6,-5],[5,-2],[9,-1],[6,1],[7,-4],[5,-12],[4,-12]],[[27169,87771],[23,-10],[48,-8],[10,-6],[10,-12],[-5,-8],[-5,-9],[-3,-11],[2,-13],[-7,-4],[-4,-3],[-3,-5],[5,-5],[-1,-6],[-7,-10],[6,-13],[3,-10],[2,-9],[-1,-10],[-3,-11],[-5,-8],[-11,-6],[-12,-15],[-10,-6],[-17,-21],[-7,-5],[-37,-13],[-5,-9],[-9,-4],[-5,-6],[-8,-14],[-3,-8],[-6,-26],[-55,-45],[-34,-51],[-42,-37],[-47,-36],[-19,-6],[-4,2],[-2,6],[-3,11],[-3,5],[-6,7],[-16,11],[-7,3],[-38,-8],[-71,-56],[-9,-1],[-4,10],[2,47],[-3,27],[-8,15],[-44,50],[-8,17],[0,21],[9,19],[54,46],[12,23],[3,14],[1,3],[4,1],[16,18],[5,8],[4,10],[1,14],[-1,6],[-2,5],[0,6],[4,13],[3,20],[4,11],[11,12],[10,19],[7,8],[34,23],[2,1],[2,-4],[2,-3],[3,-1],[9,-2],[6,-4],[5,-8],[6,-11],[14,-17],[16,-3],[17,6],[73,51],[12,4],[25,0],[51,-10],[12,6],[-1,5],[0,4],[1,4],[2,3],[-2,0],[7,0],[7,3],[7,5],[6,6],[7,4],[13,-6],[7,0],[-2,0]],[[24827,88063],[2,-2],[1,-3],[1,-2],[2,-1],[-4,-10],[-8,-3],[-16,1],[-5,3],[-4,9],[-6,20],[9,0],[20,-5],[8,-7]],[[28461,87950],[4,-2],[5,-2],[3,-3],[-2,-10],[-13,-19],[-5,-12],[2,-9],[0,-4],[-23,-25],[-18,-10],[-14,-9],[-18,-5],[-18,-8],[-14,-1],[-6,7],[-24,18],[1,9],[-6,3],[-7,2],[-6,5],[-4,8],[-7,8],[-6,7],[-10,6],[-11,13],[-19,29],[-7,6],[-32,38],[-11,8],[-3,3],[-7,9],[6,12],[-6,5],[2,8],[-5,10],[7,21],[9,16],[13,5],[7,-16],[10,-22],[28,16],[25,6],[8,-2],[14,-9],[8,-1],[6,7],[2,1],[17,-4],[26,0],[14,-4],[7,-12],[-2,-1],[-2,-1],[-3,-6],[5,-4],[7,-3],[12,-1],[5,1],[10,7],[6,0],[0,-3],[-1,-6],[-1,-3],[5,0],[4,-2],[3,-3],[4,-4],[-2,0],[-4,-3],[2,-1],[3,-3],[3,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[3,-12],[7,-8],[7,-6],[6,-8],[2,-5],[2,-10],[1,-3]],[[24812,88088],[-4,-7],[-4,0],[-11,2],[-5,-1],[-9,-5],[-5,-2],[-11,4],[-22,19],[-11,6],[0,4],[58,-16],[-5,4],[-3,4],[-2,4],[5,3],[5,0],[11,-3],[10,-11],[3,-5]],[[24593,88144],[5,-4],[13,-7],[11,-3],[17,-15],[-32,0],[4,-7],[-5,-1],[-5,1],[-5,2],[-4,4],[-1,5],[-1,6],[-2,5],[-4,2],[-3,1],[-5,2],[-4,4],[0,5],[4,2],[17,-2]],[[32198,87978],[-4,-8],[3,-8],[5,-9],[3,-11],[-9,3],[-18,24],[-7,0],[3,-3],[1,-4],[-1,-3],[-4,-1],[-4,2],[-6,8],[-10,5],[-6,8],[-9,17],[-1,3],[-2,4],[-2,4],[-3,1],[-3,3],[-1,6],[-1,8],[-1,5],[-1,2],[-2,1],[-1,1],[-1,3],[-2,7],[0,1],[-3,8],[-3,3],[-3,1],[4,5],[5,3],[-1,1],[-3,2],[-2,1],[1,11],[-3,12],[-5,10],[-5,4],[-3,4],[-6,24],[-3,8],[3,6],[2,7],[4,5],[5,3],[5,0],[6,2],[3,5],[0,8],[6,0],[5,-5],[5,-7],[3,-7],[1,-30],[2,-12],[3,-11],[4,-12],[3,-11],[-1,-10],[-6,-8],[6,-4],[3,-5],[6,-15],[-6,0],[-3,-2],[-2,-2],[3,-5],[2,-1],[3,-1],[3,-1],[2,-4],[4,-9],[0,-2],[2,-3],[2,-3],[2,0],[4,4],[1,1],[2,-3],[4,-10],[0,-2],[0,-4],[0,-2],[1,-1],[3,-1],[10,-11],[4,-3],[5,0]],[[28697,88067],[9,-5],[21,-1],[10,-6],[-1,-2],[-1,-2],[-5,0],[-11,-14],[-5,-3],[-7,5],[0,-4],[4,-7],[-4,-12],[-7,-12],[-6,-6],[-7,0],[-12,6],[-17,4],[-6,2],[-4,5],[0,6],[-7,2],[-15,0],[-7,-3],[-3,0],[-6,8],[-10,7],[-8,12],[-7,7],[-18,22],[-1,4],[-5,0],[-4,1],[-4,3],[-4,4],[-1,1],[-3,1],[-2,2],[0,1],[0,5],[0,2],[-2,4],[-2,2],[-2,-2],[-6,7],[-24,13],[1,2],[1,1],[2,1],[-16,1],[-5,3],[2,2],[2,1],[3,1],[2,0],[-5,1],[-5,5],[-1,4],[5,2],[25,0],[0,5],[-22,1],[-10,5],[1,12],[6,10],[8,9],[8,5],[9,-2],[13,-8],[25,0],[5,-2],[8,-8],[4,-2],[7,1],[1,2],[-4,4],[0,5],[115,-70],[-3,-2],[-1,-1],[4,-10],[8,-6],[9,-3],[6,-1],[2,-4],[-20,-21]],[[29868,88197],[4,-10],[-3,-8],[-6,-2],[-3,6],[-3,7],[-7,0],[-9,-4],[-6,-6],[4,-2],[7,-3],[3,-2],[-16,-11],[-8,0],[-14,15],[-9,0],[-20,-4],[0,4],[79,24],[7,-4]],[[24173,88315],[3,-9],[1,-6],[-3,-3],[-22,7],[-8,6],[-4,9],[27,1],[6,-5]],[[31975,88250],[-8,17],[7,14],[22,22],[7,-18],[4,-8],[6,-7],[1,6],[-2,6],[-3,5],[-3,3],[2,7],[3,2],[4,-1],[4,-4],[0,20],[12,9],[12,-2],[2,-10],[6,-7],[15,13],[2,-6],[-3,-8],[-9,-16],[-3,-9],[15,6],[7,-1],[7,-5],[-17,-23],[-9,-5],[-4,-4],[5,0],[11,-5],[4,-3],[7,-11],[4,-3],[4,2],[4,6],[3,7],[5,5],[6,-2],[2,-5],[7,-24],[-6,0],[3,-10],[2,-9],[-3,-7],[-7,-7],[-4,0],[-4,0],[-4,2],[-4,3],[-2,4],[-6,14],[-2,2],[-15,4],[-2,2],[-2,4],[-2,4],[-13,6],[-11,16],[-5,4],[-7,-1],[-12,-9],[-6,-1],[-14,6],[-13,10]],[[28340,88351],[-2,4],[2,9],[4,10],[3,6],[6,3],[6,3],[13,2],[19,-4],[6,4],[-2,4],[50,4],[14,-8],[0,-4],[-12,-1],[-5,-3],[-5,-8],[-5,-11],[-18,-24],[-8,-6],[-5,0],[-9,7],[-37,7],[-10,5],[-5,1]],[[27369,88485],[-13,3],[-6,6],[1,10],[10,8],[16,0],[13,-5],[3,-9],[-4,-6],[-7,-4],[-13,-3]],[[29645,88501],[7,-4],[15,1],[7,-5],[-6,-5],[-7,-4],[-14,-3],[1,-2],[1,-2],[1,-2],[1,-2],[-6,-12],[-3,-2],[-3,4],[-4,3],[-5,-1],[-5,-3],[-4,-1],[0,4],[2,0],[2,2],[2,2],[1,4],[-5,0],[-12,-4],[2,9],[2,3],[-2,7],[5,0],[12,-3],[4,5],[1,8],[-2,7],[-5,5],[0,3],[21,0],[0,-3],[-1,0],[-1,-1],[1,-1],[-1,-2],[-2,-5]],[[29575,88670],[1,-7],[4,-3],[3,-2],[1,-4],[0,-17],[-2,-9],[-5,-6],[-8,-7],[2,-11],[-1,-8],[2,-5],[7,0],[-5,-6],[-6,-4],[-6,-5],[-2,-10],[3,1],[2,-1],[1,-3],[1,-5],[-14,-1],[-11,3],[-2,3],[0,41],[-2,12],[-3,11],[5,8],[4,3],[4,1],[3,-1],[7,-3],[3,1],[0,3],[-3,7],[-4,9],[0,6],[7,-1],[0,3],[-22,6],[-4,3],[-3,10],[4,6],[9,6],[8,9],[10,5],[11,-1],[7,-6],[0,-7],[0,-3],[1,-3],[-1,0],[1,-4],[-4,-5],[-2,-5],[-1,-4]],[[31792,88696],[6,-7],[7,-2],[14,1],[-6,-7],[-8,-2],[-16,1],[-28,-7],[-7,3],[-1,20],[9,19],[14,16],[15,9],[15,26],[11,8],[4,6],[4,23],[5,7],[5,-1],[3,-8],[0,-8],[-8,-32],[5,-3],[3,7],[6,21],[4,7],[10,13],[5,4],[-2,-11],[3,-4],[5,-2],[5,1],[-4,-8],[-13,-20],[10,1],[3,-1],[4,-5],[0,-2],[0,-6],[1,-4],[4,4],[2,0],[5,0],[-2,-8],[-3,-3],[-13,-2],[-3,-2],[-6,-5],[-9,-4],[-19,-2],[-8,-6],[5,-4],[5,-1],[11,0],[-8,-12],[-15,-6],[-29,-2]],[[32706,89407],[2,0],[0,-5],[-2,-1],[-1,-2],[0,-1],[-10,-12],[9,-3],[18,3],[9,-4],[-5,-5],[-5,-3],[0,-4],[6,4],[5,0],[5,-3],[5,-5],[-4,-4],[2,-11],[-5,-3],[-8,-1],[-6,-1],[3,-5],[1,-4],[-1,-5],[-2,-5],[-3,-2],[-2,2],[-3,4],[-3,2],[-3,6],[-2,11],[-3,7],[-4,-5],[-6,-18],[-4,-6],[-6,2],[-2,7],[2,8],[5,7],[3,5],[-3,-1],[-5,-5],[-3,-2],[-3,0],[-6,2],[-3,-2],[1,3],[0,7],[1,3],[-6,-3],[-17,-2],[1,5],[2,4],[2,3],[3,1],[0,4],[-4,4],[-5,6],[-3,8],[0,10],[4,5],[5,0],[10,-5],[2,1],[2,2],[1,2],[2,-2],[0,-2],[1,-7],[0,-1],[4,0],[3,1],[6,6],[6,4],[5,1],[12,0]],[[26804,89443],[-9,6],[-10,12],[-3,13],[11,5],[49,0],[11,-4],[6,-4],[4,-6],[1,-7],[-6,-1],[-11,2],[-18,-1],[-5,-3],[-2,-3],[-4,-7],[-2,-2],[-12,0]],[[27727,88234],[0,-7],[-4,-2],[-10,1],[-14,-7],[-51,-9],[-4,-3],[-3,-6],[-3,-11],[-3,-7],[-3,-3],[-2,-1],[-9,-9],[-6,-10],[-4,-4],[-8,-3],[-28,-25],[-13,-7],[-7,-11],[-4,-2],[-2,-1],[-1,-3],[-3,-6],[-2,-2],[-2,-1],[-3,1],[-11,-1],[-5,-2],[-3,-5],[-1,-6],[0,-9],[0,-7],[0,-3],[-14,-14],[-4,-3],[-6,0],[-29,8],[-27,22],[-65,29],[-12,15],[-9,3],[-29,-3],[-7,4],[-5,8],[-6,10],[-8,11],[-9,6],[-10,2],[-10,0],[-13,-5],[-4,0],[-5,3],[-8,8],[-13,4],[-15,14],[-9,4],[-46,-3],[-6,-5],[1,-8],[-8,12],[-9,-15],[-10,0],[-35,15],[-2,2],[-1,4],[1,11],[-1,3],[-11,8],[-5,6],[0,9],[5,16],[4,7],[5,3],[6,2],[12,8],[7,2],[5,0],[2,1],[2,3],[0,1],[2,6],[3,7],[1,0],[0,9],[-1,7],[-1,6],[2,5],[-4,9],[-6,6],[-24,16],[-4,1],[-4,2],[-5,9],[-2,1],[-57,0],[-29,9],[-7,0],[-24,-6],[-11,-7],[-10,0],[-8,-7],[-7,3],[-13,12],[0,2],[1,4],[1,3],[-5,3],[1,4],[8,9],[9,17],[8,8],[19,32],[2,6],[2,6],[0,5],[-2,7],[-11,17],[-1,3],[-19,-1],[-10,-4],[-9,-7],[-5,-10],[-4,-12],[-5,-7],[-9,3],[-10,6],[-9,2],[-9,-4],[-9,-6],[-6,-7],[-3,-2],[-5,0],[-2,2],[-4,5],[-2,2],[-3,1],[-15,-3],[-8,-6],[-6,-9],[-6,-12],[-3,-12],[-2,-6],[-4,-2],[-6,-1],[-4,-4],[-9,-11],[2,-9],[3,-7],[13,-21],[1,-2],[0,-2],[1,-2],[2,-4],[0,-3],[-1,-2],[-1,-2],[-1,-4],[-3,-13],[-4,-7],[-2,-4],[-1,-4],[3,-8],[9,-13],[4,-7],[-4,0],[-2,-1],[-1,-3],[1,-4],[-3,-17],[-2,-5],[-4,-4],[-5,2],[-9,8],[-8,0],[-8,-2],[-8,-6],[-31,-30],[-3,-5],[-4,-9],[-3,-3],[-4,-2],[-13,-5],[-4,-3],[-15,-30],[-7,-7],[-9,1],[-18,11],[-12,-4],[-9,4],[-4,1],[-3,-3],[-1,-2],[-1,-4],[-2,-6],[-3,-5],[-11,-9],[-11,-13],[-4,-3],[0,-17],[-13,-28],[2,-12],[-10,-39],[-4,-6],[-7,-5],[-20,-35],[-8,-5],[-17,-4],[-11,-14],[-10,-3],[-8,-10],[-47,-36],[-39,-22],[-49,-20],[-51,0],[-15,4],[-21,26],[-2,7],[-3,16],[-9,18],[-1,5],[-1,10],[-1,4],[1,11],[-1,30],[-2,7],[1,10],[-1,27],[0,12],[4,11],[5,13],[4,13],[-1,12],[2,0],[-3,8],[-3,12],[-1,11],[2,5],[2,3],[5,12],[2,3],[-1,7],[-3,12],[0,6],[-4,12],[-8,5],[-10,4],[-7,5],[-2,10],[0,11],[1,11],[-1,9],[0,4],[-14,-25],[-8,-11],[-7,-5],[-37,-4],[-73,-28],[-19,-3],[-59,15],[-38,-4],[-8,-4],[-8,-10],[-14,-23],[-17,-16],[-18,-8],[-55,-4],[-16,5],[-15,13],[-11,22],[-2,22],[4,22],[9,20],[62,99],[16,19],[83,40],[10,11],[19,4],[21,18],[19,12],[27,3],[9,5],[7,10],[3,12],[-1,12],[-3,12],[-4,10],[-6,7],[-18,15],[-5,9],[0,5],[2,5],[2,5],[2,5],[-7,3],[-5,5],[-4,7],[-3,9],[0,8],[-1,7],[-2,7],[-1,7],[1,10],[2,6],[3,6],[3,10],[-9,7],[-8,9],[4,10],[1,12],[1,42],[-1,8],[-9,22],[10,14],[9,18],[30,91],[2,5],[3,2],[8,-1],[4,3],[3,6],[-6,4],[-2,3],[-2,5],[7,3],[-1,7],[-8,14],[7,5],[6,5],[3,7],[0,12],[-4,9],[-12,10],[-3,9],[0,10],[2,12],[2,11],[3,7],[5,9],[6,7],[4,8],[2,11],[0,41],[0,10],[-3,14],[0,8],[-2,10],[-3,9],[-1,10],[3,12],[13,24],[5,6],[-3,7],[-9,4],[-3,6],[0,6],[2,8],[2,7],[2,5],[3,9],[4,41],[6,28],[5,15],[10,12],[1,12],[-1,22],[11,28],[14,31],[59,59],[32,28],[19,6],[15,2],[7,-26],[-8,-13],[-4,-12],[5,-11],[0,-14],[9,-1],[8,5],[3,4],[5,12],[4,4],[4,2],[12,-1],[35,-17],[8,-12],[2,-7],[-1,-4],[-1,-1],[0,-5],[2,-5],[2,-5],[1,-4],[-3,-2],[-5,-4],[4,-10],[26,-36],[6,-11],[0,-10],[-8,-12],[-8,-7],[-39,-16],[-10,3],[-4,-2],[-4,-9],[15,-20],[9,-8],[19,-6],[23,-16],[16,-18],[4,-6],[1,-6],[0,-6],[-3,-19],[-2,-7],[6,-15],[19,-37],[1,-6],[0,-7],[-1,-8],[0,-6],[3,-3],[20,0],[9,5],[7,11],[2,6],[4,19],[2,2],[3,3],[1,3],[0,4],[-1,2],[-1,2],[0,2],[0,13],[2,10],[5,9],[6,11],[15,31],[8,8],[3,6],[6,13],[4,3],[6,-2],[11,-7],[18,-7],[7,-7],[-3,-12],[-2,-6],[1,-3],[4,-1],[4,-1],[3,-2],[7,-10],[3,-3],[19,-5],[21,-14],[17,-4],[3,-4],[-1,-5],[-1,-1],[-2,-1],[-2,-1],[-2,-3],[-1,-3],[0,-2],[-1,-3],[-11,-12],[-2,-3],[0,-9],[5,-5],[10,-5],[22,-24],[8,-6],[7,-1],[20,1],[27,-4],[-12,-9],[5,-5],[5,-2],[11,0],[19,8],[14,-10],[49,0],[22,-9],[11,-2],[9,-4],[5,-12],[5,-14],[7,-10],[-1,-24],[9,-16],[23,-23],[2,-6],[1,-4],[1,-3],[28,-8],[16,-9],[10,-1],[4,-1],[3,-3],[5,-7],[4,-5],[4,-2],[16,-5],[6,-4],[5,-7],[14,-28],[6,-8],[8,-7],[8,-4],[26,0],[6,-4],[14,-16],[4,-2],[2,2],[16,5],[13,7],[8,1],[8,-1],[8,-4],[8,-6],[9,-13],[3,-2],[13,-1],[4,-2],[-3,-13],[-1,-4],[27,0],[7,-3],[5,-7],[2,-3],[2,-8],[1,-3],[59,-69],[6,-2],[8,-4],[7,-7],[4,-9],[0,-3],[1,-2],[1,-4],[0,-6],[-1,-4],[-4,-7],[-1,-4],[0,-9],[1,-9],[5,-19],[-2,-4],[2,-10],[-3,-6],[-3,-6],[-2,-9],[2,-9],[3,-10],[14,-23],[6,-8],[7,-6],[12,-5],[4,-7],[5,-15],[-4,-16],[-1,-4],[0,-10],[-5,-6],[-23,-7],[-16,-11],[-25,-5],[-7,-4],[-8,-6],[-5,-7],[-3,-3],[-2,4],[-1,6],[-3,-3],[-3,-6],[-2,-3],[1,-8],[-2,-5],[-3,-4],[-2,-5],[2,-7],[6,-3],[26,6],[27,-1],[36,15],[17,4],[24,-1],[13,3],[7,10],[-1,3],[-4,13],[3,6],[5,4],[6,2],[4,-3],[-5,-7],[-2,-2],[10,-5],[21,4],[15,-14],[51,-18],[24,-19],[12,0],[7,10],[-5,11],[-9,12],[-6,11],[8,10],[3,5],[2,6],[-4,11],[-2,4],[18,-4],[18,-12],[17,-17],[13,-21],[2,-5],[1,-4],[2,-4],[23,-5],[19,-14],[7,-9],[-5,-6],[-3,-15],[14,-9],[-10,-8],[-12,-4],[-11,2],[-24,10],[8,-14],[9,-8],[73,-18],[28,-25],[5,0],[11,5],[5,-1],[3,-4],[2,-7],[4,-13],[-3,-4]],[[26388,89560],[13,5],[7,0],[9,-15],[11,-14],[-2,-2],[-3,-2],[-2,-4],[-2,-4],[17,-19],[5,-7],[5,-6],[6,-4],[4,-5],[-1,-8],[9,-11],[4,-6],[-1,-7],[1,-9],[3,-7],[12,-28],[2,-7],[3,-8],[2,-8],[2,-4],[3,-3],[5,-3],[2,-4],[0,-2],[-3,-5],[0,-1],[1,-2],[2,-4],[0,-2],[4,-9],[1,-5],[-4,-6],[-17,-19],[-7,-15],[-4,-5],[-7,-3],[-10,1],[-14,6],[-11,13],[-3,18],[-1,3],[-1,4],[0,11],[-1,7],[-4,6],[-13,11],[-34,16],[-4,4],[-5,10],[-5,6],[-5,7],[-3,12],[-4,34],[-4,10],[5,14],[-3,15],[-6,15],[-5,9],[2,6],[1,6],[0,6],[-1,7],[6,13],[7,8],[8,3],[11,0],[3,-1],[2,-2],[2,-3],[4,-4],[1,-1],[2,-1],[3,-1]],[[26535,89609],[1,8],[0,8],[-1,8],[0,5],[4,4],[7,0],[7,-3],[17,-13],[45,-18],[12,-1],[5,-2],[4,-3],[3,-4],[3,-4],[5,-1],[4,4],[5,7],[4,4],[5,-5],[2,-6],[0,-8],[0,-7],[-1,-5],[5,-4],[11,-4],[31,-26],[16,-5],[9,-7],[8,-9],[6,-10],[3,-26],[-9,-17],[-25,-18],[5,-6],[16,-6],[1,-2],[2,-2],[1,-3],[3,-1],[7,0],[3,-2],[9,-11],[20,-7],[6,-4],[2,-3],[2,-4],[-2,-7],[-1,-5],[2,-2],[4,2],[7,5],[5,2],[50,0],[15,-4],[7,-9],[-6,-4],[-7,-6],[-2,-7],[6,-8],[-3,-4],[-3,-3],[-6,-4],[2,0],[-5,-7],[-10,-6],[-9,-3],[-5,1],[-6,9],[-6,6],[-7,5],[-7,3],[-32,0],[-8,3],[2,8],[9,17],[-9,-2],[-9,-8],[-2,-10],[9,-8],[0,-5],[-10,3],[-19,9],[-9,1],[-15,-12],[-7,0],[-3,14],[2,4],[4,1],[4,0],[3,1],[2,5],[0,4],[-1,4],[-1,5],[5,7],[10,6],[18,6],[0,4],[-11,5],[-29,-5],[11,12],[2,4],[-1,6],[-5,1],[-18,-7],[-25,-25],[-6,0],[-4,3],[-3,5],[-4,4],[-5,1],[-10,-4],[-15,4],[-4,3],[0,7],[4,6],[3,3],[2,5],[2,8],[-2,12],[-4,12],[-2,12],[2,18],[-3,5],[-5,4],[-10,4],[0,4],[1,7],[0,7],[-3,7],[-3,3],[-7,3],[-16,13],[-5,2],[-18,0],[-7,3],[-8,10],[-7,14],[-6,14],[2,0],[-2,4],[2,4],[-2,0]],[[26868,89739],[-4,0],[-2,2],[0,4],[2,6],[4,8],[3,2],[8,-1],[3,-2],[7,-13],[4,-2],[9,-2],[4,-2],[-6,-4],[-3,-3],[-2,-5],[5,-2],[16,2],[3,-2],[7,-11],[5,-3],[33,11],[7,-7],[-10,-8],[-5,-7],[-9,-20],[-5,-6],[-9,-3],[-10,2],[-10,6],[-8,10],[-13,10],[-18,5],[-11,10],[5,25]],[[32664,90259],[10,-13],[-10,-4],[-51,-37],[-8,-11],[-8,-15],[-6,-4],[-14,5],[-5,-4],[-1,-7],[0,-6],[-1,-4],[-7,-2],[-10,3],[-26,26],[22,-3],[5,3],[0,3],[0,15],[1,5],[4,1],[13,1],[6,2],[4,6],[2,9],[3,4],[15,0],[5,2],[-3,6],[-6,5],[-2,6],[4,3],[4,1],[10,0],[4,1],[9,6],[5,1],[26,-1],[6,-3]],[[32356,90340],[5,8],[3,2],[3,0],[25,-17],[8,-10],[-14,-12],[-14,-3],[-86,3],[-18,9],[3,2],[11,9],[9,6],[18,16],[5,3],[10,3],[9,-1],[4,-7],[-2,-19],[11,1],[5,3],[5,4]],[[32289,90458],[-9,-7],[-53,-3],[-10,4],[-6,10],[2,15],[1,6],[10,23],[3,8],[1,9],[-1,6],[2,5],[5,2],[4,-6],[4,-3],[9,-22],[28,-28],[10,-19]],[[29622,90644],[0,-8],[-3,-12],[-5,-11],[-6,-5],[-138,0],[-138,1],[-41,19],[-13,12],[-12,15],[-31,54],[-5,10],[-2,12],[1,27],[2,11],[3,9],[7,6],[21,6],[50,-8],[4,0],[4,3],[3,6],[-1,4],[1,4],[0,3],[2,2],[5,6],[2,0],[5,6],[7,25],[6,6],[8,-3],[16,-17],[9,-4],[2,-3],[-1,-5],[-1,-6],[-7,-5],[-4,-5],[-3,-6],[-2,-7],[6,-8],[26,4],[10,-2],[10,-7],[47,-13],[18,-13],[8,-3],[7,-5],[4,-2],[3,2],[8,8],[4,3],[5,0],[16,-4],[15,4],[23,-4],[21,-10],[9,-14],[-5,-16],[0,-5],[0,-6],[3,-7],[2,-5],[3,-2],[1,-3],[0,-7],[-2,-12],[2,-4],[9,-7],[2,-4]],[[31584,90900],[18,4],[9,0],[4,-8],[-1,-5],[-8,-3],[0,-4],[-7,-3],[-6,-9],[-2,-13],[3,-14],[-3,-9],[-13,-1],[-73,16],[-11,-1],[-5,2],[-4,5],[-2,7],[0,4],[4,3],[5,1],[9,-2],[7,-4],[6,1],[7,11],[7,7],[11,1],[32,-7],[4,1],[3,4],[3,7],[3,6],[0,3]],[[25951,90912],[20,-16],[20,-26],[4,-3],[3,-4],[-2,-8],[-6,-16],[0,-9],[0,-32],[1,-10],[5,-10],[3,-12],[3,-12],[5,-38],[0,-13],[-2,-6],[-9,-49],[-14,-31],[-4,-5],[-9,-5],[-16,-22],[-8,-6],[-12,1],[-11,3],[-4,4],[-4,10],[-3,5],[-11,7],[-22,8],[-9,11],[-4,7],[-10,23],[-2,9],[-1,7],[-3,11],[-1,6],[-1,2],[-1,1],[0,2],[1,3],[2,4],[3,-1],[2,-1],[3,0],[2,3],[2,7],[2,2],[3,1],[4,1],[2,2],[3,3],[1,6],[2,9],[0,1],[-3,17],[-7,7],[-18,6],[-8,7],[-5,7],[0,10],[4,14],[3,4],[14,11],[3,3],[0,8],[-4,13],[5,13],[19,19],[8,11],[6,13],[8,11],[9,9],[8,5],[8,0],[23,-12]],[[29157,90843],[1,-3],[6,-13],[1,-6],[0,-8],[-1,-7],[-7,-7],[-2,-8],[-3,-17],[-5,-14],[-20,-33],[-5,-15],[2,-8],[5,-9],[5,-34],[6,-11],[8,-9],[6,-9],[-5,-24],[-1,-27],[2,-27],[4,-24],[2,-5],[2,-1],[0,-2],[0,-8],[-1,-6],[-6,-14],[-3,-19],[-5,-11],[-15,-28],[-13,-15],[-6,-10],[-6,-7],[-19,-6],[-8,-5],[0,-2],[0,-4],[-1,-4],[-1,-3],[-2,-1],[-3,-1],[-2,-2],[-3,-3],[-5,-11],[-1,-2],[-33,2],[-10,-6],[-2,-5],[-4,-11],[-3,-4],[-5,-4],[-26,-2],[-56,-29],[-8,-2],[-47,4],[-16,-4],[-27,9],[-9,-3],[-17,-11],[-8,-3],[-48,4],[-17,-10],[-9,-2],[-97,9],[-11,9],[-3,4],[-8,6],[-4,7],[-11,22],[-15,49],[2,0],[-5,11],[-6,6],[-7,5],[-7,6],[3,12],[1,9],[-1,9],[-5,11],[6,3],[3,4],[1,5],[-1,5],[-6,16],[-4,9],[-16,55],[-1,12],[2,10],[4,10],[16,56],[9,21],[64,114],[20,28],[8,19],[1,6],[2,3],[6,5],[33,45],[11,12],[109,43],[7,0],[6,-2],[-2,-9],[8,-8],[13,-3],[28,0],[9,4],[16,14],[22,9],[87,-18],[28,-18],[100,-28],[6,-8],[5,-11],[5,-10],[3,-2],[7,-5],[3,-1]],[[28081,90932],[21,-14],[6,-9],[-5,-19],[-12,-13],[-27,-16],[-11,-16],[-10,-6],[-15,6],[-14,13],[-10,14],[2,4],[-3,10],[-1,13],[1,13],[2,16],[-1,1],[1,2],[1,6],[6,7],[3,2],[57,4],[3,-2],[0,-2],[4,-10],[2,-4]],[[27199,90922],[-19,16],[-30,6],[-25,12],[6,8],[20,-9],[8,1],[-1,3],[-3,4],[-1,2],[0,4],[19,0],[10,-4],[7,-9],[-1,-5],[2,-2],[4,-1],[21,2],[6,-2],[0,-3],[-1,-2],[-12,-15],[-5,-5],[-5,-1]],[[29342,90971],[-7,12],[-2,8],[0,10],[3,8],[4,5],[4,3],[11,1],[6,-3],[14,-12],[22,-26],[14,-24],[10,-9],[1,-7],[-4,-11],[-4,-5],[-5,-4],[-4,-6],[-4,-19],[-5,-5],[-7,-1],[-6,2],[-10,12],[-4,15],[3,12],[12,1],[0,4],[-22,13],[-11,9],[-9,17]],[[28162,91040],[-2,-8],[-7,-6],[-25,-18],[-13,-4],[-13,1],[-14,4],[4,7],[2,2],[-7,4],[-24,0],[4,4],[3,5],[1,6],[-2,5],[4,7],[4,0],[5,-2],[4,-1],[5,4],[8,13],[4,3],[24,1],[11,6],[9,14],[-6,8],[-8,4],[-8,1],[-8,3],[2,4],[-36,20],[2,2],[2,1],[5,1],[7,4],[47,-5],[7,-3],[17,-14],[6,-2],[21,1],[7,-5],[0,-5],[0,-1],[0,-2],[0,-5],[-2,-3],[-1,-6],[0,-7],[-2,-8],[-6,-7],[-7,0],[-35,11],[-4,-6],[-2,-8],[-4,-5],[-5,-3],[-4,-2],[7,-3],[19,-2],[4,-5]],[[29209,91083],[-3,6],[-10,22],[18,21],[10,8],[30,-7],[11,-9],[-1,-15],[0,-7],[7,-4],[14,-4],[3,-2],[13,-18],[-6,-5],[-70,4],[-8,3],[-8,7]],[[29211,90989],[12,1],[3,-2],[-2,-7],[-4,-5],[-5,-4],[-7,-3],[-4,0],[0,-4],[4,-1],[6,-2],[6,-5],[1,-9],[-3,-4],[-9,3],[-3,-3],[7,-3],[3,-3],[3,-6],[-9,-1],[-3,1],[-3,4],[-3,5],[-2,3],[-26,-5],[-6,1],[-2,5],[-1,14],[-2,10],[-5,6],[-62,31],[-34,30],[-9,14],[5,16],[-2,0],[2,9],[0,8],[-2,18],[2,10],[17,20],[2,7],[4,15],[3,3],[5,4],[6,7],[6,2],[5,-10],[5,-3],[9,-7],[42,-5],[8,-8],[4,-16],[4,-18],[6,-11],[2,-12],[8,-11],[10,-10],[12,-16],[10,-8],[4,-6],[1,-7],[-3,-8],[-4,-5],[-4,-3],[-14,2],[-7,-2],[-4,-8],[1,-7],[5,-2],[11,1]],[[31109,91196],[86,-30],[9,-7],[0,-3],[-69,5],[-76,33],[-71,11],[-5,5],[2,10],[3,4],[4,1],[3,-1],[6,-4],[21,-8],[32,0],[55,-16]],[[24949,91403],[3,-1],[3,-2],[2,-2],[2,-3],[1,-9],[4,-15],[0,-4],[-3,-5],[-4,1],[-3,5],[1,11],[-14,-5],[-6,0],[-6,7],[-4,10],[-2,9],[0,9],[3,11],[3,-5],[0,-5],[1,-5],[5,-2],[6,3],[4,7],[5,4],[7,-2],[-2,-4],[-1,-2],[-2,-1],[-3,-1],[0,-4]],[[24862,91476],[2,3],[3,1],[2,-1],[2,-3],[2,-5],[-1,-3],[-2,-1],[-6,-7],[-5,-2],[-9,-2],[-9,-4],[-5,-1],[-4,3],[-2,6],[-1,6],[-2,6],[-3,4],[2,3],[1,1],[0,4],[-5,-1],[-5,-6],[-3,-6],[-5,-3],[-1,3],[3,7],[4,7],[5,3],[0,4],[-9,-1],[-3,2],[-1,7],[1,4],[10,13],[-8,0],[0,4],[6,8],[2,11],[-4,4],[-7,-9],[-10,-22],[-6,-9],[-7,-8],[0,31],[2,10],[4,7],[5,5],[22,9],[11,-3],[11,-8],[8,-12],[3,-6],[4,-12],[3,-6],[4,-5],[4,-4],[4,-4],[2,-10],[-3,-1],[-3,-2],[-2,-4],[-1,-5]],[[28033,91261],[-18,-6],[-5,-4],[-14,-16],[-4,-2],[-11,0],[-6,2],[-16,10],[-11,4],[-3,2],[-1,7],[1,7],[1,6],[1,6],[-2,4],[-5,3],[-2,5],[15,9],[12,17],[23,54],[5,8],[6,6],[7,4],[5,1],[11,-1],[6,1],[10,6],[5,1],[19,-1],[5,3],[10,12],[3,3],[10,5],[3,3],[3,7],[0,7],[-1,11],[1,7],[4,8],[21,24],[10,8],[19,-7],[10,3],[-7,11],[-17,13],[-6,13],[2,7],[4,3],[9,2],[5,3],[14,13],[6,3],[17,1],[13,8],[6,1],[13,-4],[27,0],[11,-11],[9,-24],[8,-15],[-1,-5],[-6,-3],[-7,-4],[-9,-12],[-7,-14],[-3,-12],[-3,-7],[-5,-5],[-5,0],[-3,4],[-2,7],[-6,3],[-6,2],[-5,2],[-4,-6],[-1,-8],[1,-20],[-3,-6],[-17,-11],[-6,-6],[4,-18],[-15,-20],[-31,-31],[-1,-5],[0,-13],[-1,-6],[-4,-7],[-17,-7],[-3,-5],[-2,-4],[-1,-5],[-2,-6],[-5,-6],[-7,-3],[-17,-3],[-9,-6],[-32,-5]],[[24930,91509],[0,-12],[-6,-10],[-7,-4],[-4,5],[-2,0],[-2,-14],[-8,4],[-15,18],[0,4],[4,7],[-2,3],[-6,2],[-5,1],[-5,3],[-8,11],[-6,2],[1,8],[-1,6],[1,7],[5,7],[27,14],[5,5],[1,6],[3,3],[9,1],[3,1],[2,2],[2,1],[3,0],[3,-2],[8,-10],[0,-4],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[7,0],[4,5],[-1,7],[-6,8],[3,2],[7,8],[4,2],[-2,-8],[0,-3],[1,-2],[1,-2],[5,-5],[1,-5],[-1,-7],[-4,-5],[4,1],[4,-1],[3,-2],[3,-6],[-2,-7],[-2,-7],[-4,-4],[-10,-4],[-4,-6],[-3,-8],[-4,-8]],[[28696,91576],[11,-11],[2,-6],[-1,-7],[-1,-6],[0,-6],[2,-7],[-7,-5],[-2,-4],[1,-7],[-9,-3],[-16,-14],[-8,-4],[-6,-3],[-12,-17],[-7,-4],[-7,-2],[-6,-6],[-4,-8],[1,-12],[4,-10],[7,-4],[6,-2],[6,-4],[-4,-6],[-4,-4],[-9,-7],[3,-6],[2,-2],[0,-4],[-8,3],[-4,4],[-3,5],[0,9],[-10,2],[-22,-3],[-18,-11],[-6,-2],[-30,17],[-15,21],[-13,25],[-6,25],[2,11],[8,15],[3,9],[1,12],[-2,10],[-3,8],[-1,8],[9,16],[21,11],[38,8],[9,-10],[10,-7],[19,-7],[54,0],[7,3],[6,6],[5,1],[7,-8]],[[31265,91683],[13,0],[6,-3],[8,-11],[7,-3],[4,-3],[-13,-16],[-39,2],[-16,-7],[5,0],[9,-6],[4,-2],[1,-1],[-2,-3],[-4,-4],[-20,9],[-14,-5],[-13,6],[-15,2],[-7,4],[3,3],[0,4],[1,3],[0,3],[4,3],[3,0],[3,-2],[4,-1],[7,2],[14,8],[15,3],[4,2],[2,3],[2,4],[2,11],[1,3],[3,1],[3,0],[2,-2],[2,-5],[1,-2],[12,0],[-2,0]],[[31136,91649],[-16,-3],[-95,37],[6,4],[19,4],[-2,0],[5,3],[9,11],[10,5],[18,20],[17,4],[35,-17],[17,7],[-34,11],[-7,9],[1,7],[4,2],[11,-1],[7,2],[3,-1],[3,-5],[7,-7],[8,-6],[7,-2],[9,-1],[-1,-5],[4,-2],[5,-2],[1,-8],[-3,-6],[-20,-12],[-16,-19],[-9,-15],[-3,-14]],[[28223,91715],[3,8],[-1,7],[-2,6],[0,8],[5,6],[7,-2],[13,-8],[-5,-8],[7,-7],[11,-2],[8,9],[-1,8],[-8,18],[-2,10],[16,1],[5,10],[5,1],[6,-1],[4,-2],[4,-7],[4,-1],[9,-1],[15,-10],[10,-12],[5,-8],[8,-23],[-4,-8],[-6,-3],[-11,-5],[-9,-7],[-4,-4],[-3,-7],[-5,-6],[-4,-2],[-10,2],[-40,-12],[-22,-17],[-21,-8],[-21,-18],[-8,0],[-10,10],[-10,5],[-10,-2],[-33,-26],[-14,-7],[-9,4],[-6,8],[-1,5],[3,7],[5,7],[45,34],[5,5],[16,30],[10,10],[4,5],[4,-1],[19,6],[19,-7],[5,2]],[[27786,91707],[-15,8],[-8,2],[-7,-7],[4,-11],[26,-39],[9,-10],[-7,-17],[-10,-4],[-28,7],[-14,8],[-18,4],[-5,5],[-2,10],[3,12],[4,13],[1,11],[-8,4],[-6,-6],[-13,-28],[-7,-6],[-1,9],[-1,10],[-1,9],[-2,6],[-3,4],[-11,2],[-4,3],[-6,9],[-17,13],[-18,3],[-55,-3],[-10,5],[-5,11],[3,6],[14,10],[5,6],[1,5],[1,3],[1,3],[2,3],[19,-3],[17,-13],[15,-1],[4,-3],[3,3],[4,0],[5,-2],[3,-5],[2,-4],[1,-11],[1,-5],[7,-8],[7,1],[1,8],[-7,11],[3,3],[7,2],[3,3],[-9,1],[-8,4],[-7,6],[-6,10],[-3,6],[-3,9],[1,7],[7,2],[8,5],[11,2],[19,-3],[1,-9],[9,2],[20,11],[7,-2],[10,-6],[10,-9],[3,-10],[-1,-4],[-6,-7],[-2,-5],[2,-5],[3,1],[16,16],[4,1],[26,-14],[30,9],[9,9],[5,2],[8,-5],[5,-1],[4,3],[0,3],[-1,6],[0,4],[0,3],[1,2],[2,1],[1,2],[2,1],[6,0],[3,1],[1,2],[1,8],[1,2],[5,1],[39,-13],[6,6],[16,-4],[13,-13],[-2,-22],[8,0],[6,-3],[5,-6],[5,-11],[-5,-8],[-52,-37],[-22,-7],[-67,-5],[-12,-4],[-6,0],[-5,2],[-7,13],[-2,1]],[[26712,91777],[-9,5],[-9,9],[-5,11],[6,15],[12,8],[79,-16],[12,-8],[-3,-3],[-4,-2],[-11,1],[-13,-8],[-12,0],[-5,-1],[-4,-8],[9,-5],[4,-4],[2,-7],[-12,-3],[-12,3],[-25,13]],[[24485,91842],[14,11],[15,2],[15,-4],[15,-9],[-8,-6],[-28,-7],[-15,-7],[-4,-1],[-2,2],[-6,10],[1,3],[2,3],[1,3]],[[24593,91793],[-3,-9],[-5,-8],[-11,-11],[-7,-1],[-14,10],[-7,3],[-3,1],[-9,13],[-4,3],[-13,7],[0,4],[35,14],[11,8],[5,2],[9,-3],[5,3],[2,6],[1,7],[1,7],[3,4],[5,1],[5,2],[5,1],[4,-4],[-2,-4],[-4,-3],[-7,-4],[4,-5],[-3,-9],[-7,-8],[-7,-3],[9,-11],[2,-6],[0,-7]],[[25810,91918],[-10,3],[-19,15],[-17,5],[-5,2],[-3,4],[0,3],[0,11],[0,4],[-7,7],[-17,8],[-4,7],[7,5],[10,3],[10,0],[7,-3],[17,-2],[27,10],[-10,7],[-3,1],[8,12],[12,-6],[20,-18],[55,-17],[42,17],[15,-4],[4,-5],[9,-16],[7,-9],[4,-7],[2,-8],[-1,-6],[3,-3],[10,-3],[-5,-13],[-7,-6],[-76,-8],[-39,12],[-18,13],[-7,1],[-14,-12],[-7,-4]],[[30136,92527],[40,-1],[6,-5],[-1,-13],[-4,-8],[-10,-13],[3,-12],[-5,-8],[-9,-3],[-52,-6],[-76,-28],[-6,-5],[-8,-11],[-5,-5],[-10,-3],[-13,-2],[-11,2],[-8,8],[0,1],[1,5],[-1,6],[-1,6],[-3,4],[-3,3],[-6,3],[-6,5],[-4,6],[-8,18],[1,3],[-1,2],[0,3],[14,4],[6,-1],[7,-3],[-5,-5],[7,-4],[8,1],[8,5],[6,9],[2,9],[3,22],[3,9],[1,5],[-1,5],[-1,5],[0,4],[2,4],[43,15],[8,-3],[-2,-4],[3,-3],[2,-1],[6,0],[80,-25]],[[29735,92823],[5,-4],[3,-6],[3,-7],[4,-7],[5,-5],[13,-5],[5,-6],[-11,-8],[-23,-1],[-20,-9],[-4,-4],[-1,-9],[1,-4],[4,-12],[0,-6],[0,-2],[-1,-2],[-1,-2],[1,-2],[1,-1],[4,-3],[3,-7],[2,-1],[-1,-2],[-3,-8],[-3,-4],[-7,-2],[-7,-2],[-5,2],[-4,6],[0,5],[2,4],[4,1],[-16,8],[-24,3],[-16,12],[3,33],[-9,4],[-2,4],[1,9],[-4,8],[-18,16],[1,7],[-1,4],[-2,3],[0,2],[3,7],[4,3],[50,23],[10,-3],[10,-8],[6,-9],[-2,-7],[-6,-13],[-1,-7],[-3,-8],[-13,-9],[-3,-7],[2,-10],[5,-7],[4,-2],[2,7],[1,10],[2,4],[4,2],[19,16],[5,6],[8,13],[4,2],[7,-3]],[[29795,92909],[8,-3],[5,-8],[9,-26],[-19,-31],[-11,-11],[-64,17],[-13,17],[7,14],[8,10],[17,17],[53,4]],[[23520,93019],[10,0],[5,-3],[4,-6],[-14,-32],[-3,-12],[0,-9],[-6,-3],[-8,-1],[-11,-4],[-8,2],[-15,6],[6,11],[22,7],[8,11],[-5,2],[-12,-2],[-6,4],[1,2],[1,6],[-1,2],[-1,2],[-1,2],[-1,2],[8,5],[19,8],[8,0]],[[23398,93627],[9,-9],[4,-6],[2,-9],[-2,-9],[-4,-7],[-4,-2],[-7,1],[-7,6],[-16,27],[18,12],[3,0],[4,-4]],[[23078,93546],[-9,2],[-6,6],[-12,16],[19,7],[7,8],[-5,14],[7,9],[18,10],[17,16],[8,6],[9,1],[10,-6],[1,-8],[-3,-9],[-8,-15],[16,-12],[6,-8],[-1,-13],[-15,-16],[-9,-14],[-4,-2],[-5,0],[-14,8],[-7,1],[-20,-1]],[[23035,93783],[8,10],[20,8],[19,13],[13,2],[13,-1],[10,-5],[4,0],[3,-3],[6,-10],[-3,-10],[-9,-13],[3,-5],[8,-1],[8,6],[7,7],[7,4],[3,-9],[17,-25],[3,-19],[-2,-9],[-5,-6],[-4,-6],[-4,-7],[-1,-4],[-2,-9],[-1,-3],[-2,-5],[-3,-3],[-15,-13],[-21,-7],[-41,-3],[-11,3],[-24,20],[-12,17],[-2,16],[-6,14],[-3,9],[-1,11],[3,11],[5,9],[7,8],[5,8]],[[19975,94051],[21,19],[46,6],[48,-4],[26,-15],[-3,-8],[-4,-5],[-6,-3],[-13,0],[-16,-6],[-73,-10],[-8,4],[-2,2],[-6,10],[-8,7],[-2,3]],[[20922,94074],[33,-20],[17,-17],[3,-20],[-2,-3],[-2,-2],[-4,-7],[0,-12],[-6,-8],[-6,-8],[-5,-9],[7,-10],[1,-4],[-2,-8],[-6,-11],[-2,-6],[2,-13],[2,-9],[0,-9],[-6,-11],[-22,-24],[-21,-33],[-3,-10],[6,-6],[-7,-10],[-21,-11],[-8,-8],[-16,-21],[-18,-15],[2,-27],[-9,-12],[-29,-16],[-23,-26],[-8,-4],[-9,2],[-9,7],[-9,5],[-9,-6],[9,-5],[7,-6],[1,-6],[-9,-3],[15,-17],[16,-7],[5,-5],[-15,-4],[-3,-2],[-3,-2],[-2,-2],[-4,1],[-1,6],[-2,5],[-2,2],[-5,1],[-15,-5],[1,3],[1,7],[0,2],[-12,5],[-6,5],[-3,8],[-1,9],[-3,7],[-4,6],[-67,53],[-16,21],[-7,13],[-4,5],[-11,4],[-5,4],[-9,10],[2,7],[1,3],[3,2],[-4,3],[-4,-1],[-3,-1],[-5,-1],[-44,21],[5,3],[9,2],[4,3],[-4,4],[4,4],[-14,13],[-18,9],[-5,5],[-5,10],[5,3],[11,-2],[5,3],[-63,32],[-1,8],[-5,5],[-7,2],[-5,1],[-4,2],[-6,11],[-2,4],[-15,7],[-31,3],[-14,8],[-10,9],[-23,11],[-55,2],[-14,8],[4,13],[8,13],[9,11],[7,4],[10,3],[11,7],[10,10],[25,41],[18,20],[20,12],[122,8],[122,7],[40,15],[54,6],[60,-9],[12,-5],[5,-1],[8,-4],[26,-25],[33,-15],[5,-7],[6,-13],[40,-5]],[[27527,94061],[17,10],[11,28],[-1,29],[-16,15],[0,3],[22,1],[7,4],[3,-1],[21,1],[31,8],[32,0],[31,-8],[58,-36],[6,-1],[6,3],[3,4],[3,9],[4,5],[6,1],[7,-4],[13,-10],[85,-18],[12,-8],[42,-18],[132,0],[6,1],[13,12],[17,5],[9,0],[13,-7],[88,4],[87,4],[6,-1],[14,-9],[18,-4],[38,-21],[121,-29],[6,-4],[17,-19],[7,-4],[30,-2],[1,-2],[2,-3],[2,-3],[9,-8],[4,-4],[-2,-1],[-1,-4],[-1,-3],[18,-20],[18,-16],[-5,-5],[-2,-3],[-3,-5],[8,-13],[37,-20],[16,5],[13,-2],[12,-6],[0,3],[1,1],[2,0],[6,-1],[3,-2],[2,-3],[2,-6],[-14,-5],[7,-12],[9,-10],[20,-14],[10,-11],[0,-9],[-14,-20],[6,-2],[26,-22],[8,-4],[13,-2],[16,-6],[32,-4],[8,-5],[-5,-7],[-12,-6],[-4,-7],[3,-3],[2,-1],[3,-1],[4,0],[-3,-5],[-3,-3],[-8,-3],[4,-7],[9,-7],[4,-7],[-14,-10],[-5,-6],[19,-16],[41,-1],[16,-24],[-5,-3],[-6,-4],[-2,-6],[6,-7],[-11,-12],[-27,-6],[-27,-12],[-96,6],[-19,9],[-11,0],[-13,-5],[-69,6],[-70,7],[-29,16],[-85,4],[-86,3],[-21,-3],[-15,5],[-131,-27],[-19,-13],[-44,-12],[-21,-11],[-64,-22],[-60,-8],[-50,11],[-72,44],[-33,8],[-9,6],[-6,8],[-7,26],[-3,4],[-2,2],[-4,10],[-2,3],[-12,14],[-3,7],[-10,26],[-4,7],[-1,4],[1,6],[9,23],[4,16],[-3,3],[-9,5],[-3,4],[0,5],[-1,6],[1,4],[2,2],[9,2],[6,7],[0,10],[-7,13],[-6,6],[-19,9],[-11,2],[-27,-8],[-20,11],[-31,0],[-44,13],[-17,0],[-6,3],[-7,11],[-3,3],[-8,6],[-3,5],[-1,7],[2,4],[2,4],[3,5],[-13,12],[6,8],[1,2],[0,6],[-1,11],[-2,6],[1,5],[7,18],[4,6],[5,3],[7,0],[21,-7],[6,3],[-5,6],[-18,6],[-4,3],[-17,21],[-2,4],[-4,13],[1,1],[-2,9],[-1,0],[0,2],[-5,8]],[[23244,93386],[1,-11],[3,-7],[1,-6],[-5,-7],[-5,-2],[-11,1],[-6,-2],[-2,-3],[-2,-4],[-1,-3],[-2,-3],[-4,-6],[-6,-5],[-2,-1],[-8,0],[-2,-1],[-2,-2],[-1,-3],[-1,-2],[-40,-21],[-7,-1],[-15,5],[-37,0],[9,-8],[35,-7],[20,-13],[11,-4],[6,8],[3,-2],[2,-2],[2,-4],[1,-4],[-4,-4],[-13,-4],[7,-6],[5,-2],[4,1],[7,3],[0,-12],[2,-16],[3,-16],[4,-9],[-2,0],[5,-6],[1,-10],[-1,-11],[-3,-10],[-8,-7],[-94,-21],[7,-4],[5,-1],[13,1],[8,-2],[15,-8],[9,-2],[41,14],[6,-8],[-1,-19],[-5,-15],[-7,-10],[-10,-3],[-3,2],[-7,5],[-4,1],[-4,-1],[-7,-6],[-9,-3],[-19,-14],[0,-4],[14,-7],[14,6],[14,8],[15,5],[12,1],[5,-3],[2,-10],[-18,-45],[-8,-11],[-10,-7],[-26,-7],[-6,1],[-2,10],[2,8],[5,3],[12,3],[-9,9],[-8,-1],[-9,-7],[-7,-9],[-9,-8],[-10,-2],[-20,2],[-7,-3],[-5,-8],[-10,-21],[-12,-15],[-6,-9],[-1,-9],[-36,-21],[-24,-6],[-38,-22],[-7,-1],[-62,0],[-6,3],[-5,6],[-11,7],[-39,3],[-12,5],[-6,2],[-36,-8],[-13,0],[-21,6],[-9,7],[-23,25],[-4,6],[-2,7],[1,3],[2,3],[3,27],[5,13],[27,36],[2,5],[0,7],[-4,1],[-5,0],[-4,4],[1,1],[0,1],[1,2],[-11,-4],[7,-14],[2,-6],[-6,-1],[-11,0],[-6,-3],[2,0],[-28,-34],[-12,-22],[-5,-26],[1,-2],[1,-1],[1,0],[6,4],[3,-1],[2,-2],[9,-3],[5,-4],[1,-4],[-5,-3],[5,-10],[2,-9],[3,-7],[7,-2],[8,-1],[4,-3],[2,-6],[1,-8],[3,-3],[3,0],[4,-2],[8,-10],[3,-1],[9,-1],[3,-2],[5,-15],[3,-5],[2,-3],[2,-2],[3,-1],[4,2],[2,-3],[12,-2],[5,-4],[-5,-5],[-11,-16],[-9,-17],[-11,-16],[-5,-8],[-7,-10],[-28,-13],[-24,-24],[-3,-4],[-8,-3],[-19,-19],[-9,-6],[-34,4],[-10,-4],[1,-2],[1,-5],[0,-2],[-7,-3],[-3,0],[-3,3],[-13,4],[-11,10],[-33,43],[-6,6],[-8,2],[-7,-2],[-20,-17],[-7,-3],[-26,-2],[-7,2],[-1,5],[-1,6],[-2,9],[-2,3],[-7,8],[-1,3],[-1,8],[-1,5],[-6,12],[-2,7],[2,9],[-14,19],[-13,22],[5,0],[3,3],[3,6],[1,9],[-4,6],[-36,11],[-13,9],[-11,13],[-1,16],[-2,6],[-1,6],[-1,6],[-4,6],[-3,3],[-6,3],[-3,4],[-1,4],[0,4],[1,2],[1,0],[-3,9],[-3,5],[-4,4],[-11,5],[-6,1],[-3,2],[-7,9],[-4,2],[-2,4],[-6,22],[-4,6],[-48,5],[-6,3],[-11,9],[-6,3],[-7,19],[-12,10],[-25,14],[-8,12],[-13,23],[-9,8],[2,0],[-5,2],[-14,10],[4,3],[2,5],[0,6],[1,6],[-6,4],[-8,-2],[-7,0],[-5,15],[2,0],[5,4],[-16,5],[-5,3],[-4,5],[-3,6],[-4,5],[-6,0],[-3,11],[-45,14],[-6,-2],[-6,-5],[-5,-2],[-2,1],[-3,6],[-2,1],[-3,0],[-8,-3],[1,-3],[2,-6],[-4,1],[-3,-3],[-3,-4],[-5,-2],[-3,2],[-14,15],[0,4],[-1,5],[-3,5],[-4,5],[7,8],[3,1],[0,4],[-5,1],[-8,-1],[-4,4],[6,5],[4,2],[3,1],[-8,6],[-19,4],[-9,6],[-10,14],[-4,3],[-3,1],[-18,-6],[-18,-12],[-13,-15],[1,-17],[-6,-4],[-7,-1],[-8,0],[-5,5],[3,0],[2,1],[1,3],[1,6],[-1,3],[-10,7],[2,0],[-8,6],[-20,9],[-8,1],[-6,-3],[-6,-6],[-6,-3],[-5,5],[2,3],[-3,4],[-2,-1],[-2,-2],[-3,-1],[-8,1],[-3,1],[-16,10],[-3,4],[-3,6],[-3,5],[-2,4],[-4,2],[0,2],[0,1],[2,1],[-2,0],[4,3],[2,5],[-1,5],[-5,3],[8,3],[20,-4],[5,1],[-5,10],[-13,2],[-22,-4],[1,2],[2,4],[0,2],[-3,8],[-9,13],[-3,8],[15,0],[-7,9],[-9,6],[-10,4],[-9,1],[-9,5],[-20,17],[-8,-2],[3,-4],[-2,-2],[-9,2],[0,2],[-1,2],[-2,3],[-2,1],[-8,0],[-4,1],[-2,5],[-22,14],[-10,-1],[-4,1],[-2,3],[-2,4],[-1,4],[0,2],[-56,36],[-12,11],[-9,15],[-11,7],[-4,8],[2,2],[2,3],[4,7],[-5,4],[-3,1],[-2,3],[-2,8],[0,7],[1,5],[1,4],[-2,4],[7,12],[18,17],[18,30],[2,7],[0,8],[0,6],[0,4],[2,6],[3,12],[3,6],[3,5],[7,7],[3,5],[10,11],[25,3],[12,8],[-9,1],[-3,2],[9,3],[18,-3],[8,5],[-4,8],[21,-5],[26,6],[9,0],[10,-5],[27,8],[0,-4],[-3,-2],[-6,-11],[5,-7],[6,0],[9,4],[2,-11],[4,-7],[5,-4],[7,-2],[6,-1],[5,1],[6,3],[2,0],[3,-3],[-1,-5],[-2,-6],[-1,-5],[-3,-5],[8,0],[4,-2],[3,-6],[-18,4],[-5,-4],[22,-25],[14,-8],[8,-8],[9,-5],[4,5],[-1,6],[5,6],[8,3],[7,-3],[-4,0],[-4,-1],[-3,-3],[-4,-4],[4,-4],[13,-8],[4,-4],[8,-17],[8,-13],[3,-8],[-4,-7],[8,-6],[12,-7],[12,-3],[8,4],[-3,4],[-6,5],[-2,3],[7,1],[6,-4],[6,-5],[5,-8],[-4,-7],[-2,-6],[-3,-5],[-6,-2],[-2,1],[-5,6],[-3,1],[-13,-4],[4,-1],[19,-15],[10,-3],[45,-4],[17,-11],[5,-2],[4,2],[5,4],[5,2],[6,-2],[5,-4],[5,-3],[10,1],[10,3],[10,7],[8,10],[-4,3],[-13,5],[0,4],[3,0],[1,1],[0,3],[0,4],[3,3],[3,1],[2,-2],[3,-2],[-4,0],[21,-4],[46,4],[22,-3],[2,0],[2,0],[1,-2],[1,-3],[2,4],[2,-3],[2,-2],[3,-2],[2,-1],[5,2],[4,3],[7,9],[12,9],[6,6],[3,11],[-3,22],[-2,5],[-6,6],[-12,3],[-6,5],[8,10],[-1,7],[-14,11],[3,6],[12,11],[-7,3],[-19,-1],[-5,6],[16,24],[-2,2],[-2,5],[-2,2],[9,8],[4,2],[4,-2],[-4,4],[2,0],[6,-7],[0,-1],[2,1],[2,2],[1,3],[1,3],[1,3],[2,2],[2,1],[3,0],[3,-3],[4,-4],[2,-4],[-4,-6],[-4,-4],[-6,-3],[-5,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-3,3],[3,-3],[1,-1],[1,-1],[2,0],[0,-1],[-9,-13],[-1,-5],[5,-9],[7,-7],[9,-6],[8,-2],[9,-1],[-7,8],[3,7],[7,-1],[4,-16],[-3,-6],[-13,-3],[-5,-6],[0,-8],[1,-6],[3,-4],[3,-2],[29,4],[18,9],[14,-5],[4,0],[2,4],[0,4],[-1,3],[-2,2],[0,-1],[-1,4],[-2,1],[-1,1],[4,7],[2,1],[9,3],[0,4],[-6,4],[1,2],[1,2],[0,4],[-36,16],[3,8],[5,0],[11,-4],[-3,6],[-2,4],[2,5],[3,6],[-11,0],[1,1],[4,7],[-6,3],[-14,-3],[-6,3],[7,10],[8,7],[-10,10],[-22,-3],[-10,5],[4,3],[9,2],[4,3],[-9,4],[4,4],[10,1],[5,3],[-10,4],[-14,0],[-14,-4],[-12,-13],[-5,-3],[-4,-3],[-2,-7],[-3,-3],[-8,1],[-12,4],[3,13],[-8,9],[-18,10],[3,4],[4,10],[3,5],[3,2],[12,0],[0,5],[4,3],[11,4],[-5,5],[-7,4],[-6,3],[-7,0],[0,4],[23,4],[8,4],[-1,2],[0,4],[-1,2],[7,5],[13,14],[8,2],[-3,-4],[2,-7],[4,-1],[9,7],[5,0],[5,-3],[9,-9],[8,-11],[4,-3],[5,-2],[21,4],[-5,-5],[-4,-7],[27,-18],[13,-2],[50,3],[12,9],[-14,4],[-29,-2],[-20,13],[-16,6],[-10,12],[-19,16],[-4,5],[-7,15],[-2,4],[-16,11],[-8,12],[-15,13],[-5,3],[-6,0],[-2,-3],[4,-8],[-6,-6],[-2,-2],[5,-14],[0,-2],[4,-1],[7,-4],[3,-3],[-39,-2],[-50,-25],[-55,-11],[-33,11],[-16,12],[-3,6],[4,5],[0,4],[-10,-1],[-62,21],[-8,8],[1,15],[-10,8],[-22,1],[-5,3],[-7,11],[-4,3],[-21,4],[-6,4],[3,2],[2,1],[2,-1],[2,-2],[-3,7],[-6,6],[-12,7],[6,3],[10,-3],[5,0],[6,3],[1,3],[1,4],[15,20],[4,4],[5,3],[5,2],[11,2],[21,-5],[9,5],[4,18],[7,9],[70,-7],[17,5],[5,-1],[4,-4],[11,-16],[6,-4],[15,-8],[14,-20],[2,-5],[3,-11],[2,-5],[11,-9],[27,-5],[10,-10],[1,-8],[10,-7],[12,-2],[5,7],[-5,12],[-12,11],[-30,15],[-4,9],[0,11],[6,11],[3,4],[6,9],[2,5],[0,6],[-2,4],[-1,3],[1,7],[-18,-2],[-9,2],[-8,10],[-4,4],[-6,0],[-5,-3],[-4,-5],[-4,-3],[-6,1],[-6,3],[-5,1],[-15,3],[-7,4],[-4,6],[6,1],[4,3],[4,6],[2,9],[-6,1],[-16,4],[-22,0],[-9,4],[-3,8],[3,7],[9,1],[0,4],[-4,1],[-6,6],[-3,2],[-12,-5],[-4,0],[7,11],[23,7],[8,11],[-7,0],[-3,1],[-3,2],[7,15],[10,5],[23,1],[0,11],[6,0],[13,-7],[-2,0],[18,-3],[10,1],[7,8],[7,10],[9,4],[63,-6],[31,-20],[36,-6],[29,-16],[1,-2],[1,-5],[2,-4],[3,-5],[6,-5],[2,4],[0,6],[-4,7],[2,4],[6,6],[4,5],[2,2],[1,1],[1,3],[1,3],[-1,2],[1,2],[7,6],[17,7],[6,5],[2,7],[2,10],[0,9],[-4,5],[-6,0],[-2,0],[3,-17],[-10,12],[-11,-5],[-21,-22],[-16,-6],[-49,6],[1,2],[1,2],[1,2],[1,2],[-4,2],[-3,1],[-8,0],[7,17],[8,12],[10,6],[16,4],[11,8],[6,2],[19,1],[7,3],[55,-8],[-2,-4],[-4,-4],[-3,-6],[-1,-6],[2,-4],[8,-11],[4,-6],[4,6],[4,-3],[8,-11],[8,-4],[52,-8],[5,-4],[9,-11],[5,-5],[5,-1],[5,1],[5,0],[10,-14],[38,-22],[3,-4],[0,-8],[-4,-5],[-4,-4],[-3,-4],[5,0],[11,-4],[3,0],[4,3],[2,8],[0,10],[3,9],[5,7],[7,1],[14,-2],[38,8],[22,-2],[11,-14],[2,0],[4,10],[8,6],[9,4],[7,1],[1,0],[2,3],[21,2],[19,8],[122,14],[14,11],[19,7],[7,10],[6,12],[9,10],[-2,0],[36,10],[12,-6],[-7,-7],[-15,-10],[-7,-8],[9,-5],[10,3],[19,11],[24,8],[12,-1],[30,-17],[56,-3],[19,-8],[9,-7],[25,-38],[8,-7],[16,-6],[7,-7],[4,-14],[1,-11],[0,-5],[-9,-14],[1,-13],[-7,-9],[-49,-22],[-2,-9],[-12,-10],[-16,-1],[-41,18],[-6,0],[-3,-5],[1,-7],[5,-13],[1,-6],[-14,-7],[-30,13],[-15,-2],[4,-8],[-1,-6],[-4,-5],[-2,-6],[-2,-4],[-1,-3],[0,-2],[2,-5],[3,-5],[5,-3],[4,-2],[5,0],[13,6],[15,13],[15,8],[13,-7],[-2,-4],[7,-6],[9,-3],[35,5],[10,-3],[6,-13],[-6,-4],[-19,-4],[6,-5],[13,-4],[6,-8],[-2,0],[2,-1],[4,-7],[-3,-2],[-2,-3],[-3,-7],[1,-9],[-5,-5],[-9,0],[-11,10],[-9,-1],[-81,-27],[-21,0],[2,-5],[-6,-2],[-15,-1],[-27,-17],[-6,-8],[-1,-4],[0,-4],[-1,-5],[-3,-4],[-89,-71],[-12,-16],[-32,-27],[-17,-4],[-24,-11],[-5,-8],[11,-2],[5,-3],[3,-7],[-1,-3],[-7,-9],[9,-7],[3,-5],[-2,-6],[-3,-6],[-1,-7],[0,-16],[2,-7],[4,-6],[4,-1],[1,6],[1,8],[1,7],[3,5],[3,4],[19,19],[13,20],[13,9],[26,12],[10,12],[5,-5],[5,1],[12,8],[8,2],[30,3],[11,-4],[49,-3],[112,-44],[8,-15],[-4,1],[-2,-2],[-1,-5],[2,-6],[-5,-17],[-3,-5],[-5,-3],[-35,-4],[0,-4],[42,-4],[13,-8],[4,-4],[8,-13],[2,-6],[2,-10],[4,-2],[11,2],[5,-1],[4,-4],[12,-21],[2,-7],[-1,-3],[-23,-14],[-4,-6],[-16,-13],[2,-9],[2,-3],[-2,0],[-3,-3],[-1,-1],[1,-1],[3,-3],[-5,-12],[10,-4],[15,0],[10,4],[38,36],[62,23],[14,0],[6,4],[10,10],[1,5],[-5,3],[22,0],[2,-7],[2,-6],[2,-3],[-4,-5],[-11,-7],[-5,-4],[4,-5],[33,-28],[-1,-13],[2,-14],[6,-11],[7,-7],[-3,-5],[-5,-5],[-2,-6],[4,1],[7,3],[3,0],[3,-3],[1,-4],[2,-4],[1,-5],[8,-12],[3,-7],[1,-11]],[[22431,94208],[-30,6],[-15,10],[-9,16],[15,8],[81,20],[27,-4],[7,4],[-4,2],[-3,4],[-3,5],[-3,6],[11,6],[38,7],[21,14],[5,1],[62,0],[98,38],[125,15],[10,-4],[9,-8],[4,-18],[-14,-23],[-32,-33],[-26,-13],[-26,-7],[-3,-2],[-8,-8],[-2,-2],[-3,-1],[-1,-2],[-3,-7],[-2,-4],[-3,-2],[-2,0],[-9,-7],[-5,-3],[-71,-13],[-70,-13],[-19,18],[-7,-7],[-1,-10],[7,-6],[-5,-5],[-6,-1],[-21,3],[-17,-2],[-15,-7],[-53,9],[-8,7],[7,4],[89,-5],[2,3],[-7,9],[-9,3],[-103,-1]],[[24919,94248],[6,-1],[8,-3],[12,-8],[-12,-26],[-7,-8],[-7,1],[-3,5],[-2,5],[-1,4],[-4,3],[-4,-1],[-6,-4],[-4,-5],[-3,-7],[5,-4],[2,-8],[0,-10],[-3,-10],[-19,-28],[-9,-9],[-10,-19],[-22,-24],[-12,-10],[-43,-50],[-16,-6],[-26,0],[-3,1],[-6,5],[-3,2],[-4,-5],[6,-12],[15,-20],[-4,-8],[-27,-24],[-2,-2],[0,-6],[0,-4],[-1,-2],[-3,-3],[3,0],[-5,-1],[-4,-3],[-4,-6],[-1,-8],[-3,-4],[-20,-14],[-7,-11],[-10,-27],[-6,-10],[-5,-6],[-8,-4],[-7,-2],[-13,3],[-23,-8],[-37,0],[-11,-8],[71,-10],[0,-6],[-27,-41],[0,-3],[-6,-17],[-9,-11],[-17,-16],[-11,-15],[-2,-2],[-2,-2],[-1,-9],[0,-9],[-1,-5],[-2,-3],[-31,-33],[-7,-11],[-11,-24],[-6,-10],[-43,-29],[-6,-7],[-11,-19],[-6,-5],[-21,-9],[-60,-12],[-23,7],[-32,2],[-12,9],[-117,17],[-12,8],[-6,1],[-27,0],[-6,2],[-13,14],[-6,4],[-5,-1],[-10,-8],[-14,-5],[-27,2],[-27,-8],[-77,-4],[-78,-4],[-24,6],[-12,-1],[-9,-9],[-3,-5],[-1,-6],[0,-7],[1,-6],[4,-4],[5,1],[9,7],[11,4],[11,-1],[46,-14],[40,-1],[1,1],[7,7],[2,2],[2,0],[1,1],[2,3],[3,4],[3,2],[4,-2],[2,-6],[-5,-2],[-1,-6],[2,-14],[-2,-9],[-4,-6],[-2,-6],[2,-8],[9,-9],[33,-9],[10,-8],[19,-21],[16,-29],[10,-31],[-2,0],[2,-4],[-3,-9],[-4,-5],[-6,-2],[-5,-1],[-5,-2],[-3,-5],[-4,-13],[-7,-13],[-7,-9],[-17,-13],[-12,-6],[-12,-1],[-11,-5],[-10,-14],[-5,-12],[-3,-4],[-3,-4],[-8,-8],[-3,-4],[-1,-6],[-4,-11],[-23,-32],[-2,-5],[-1,-4],[-2,-11],[0,-3],[0,-7],[0,-2],[-2,-4],[-2,-4],[-1,-2],[-1,-1],[-6,-11],[-36,-7],[-4,-12],[7,-5],[12,-1],[10,2],[7,6],[6,9],[7,7],[8,2],[-13,-24],[12,-12],[-5,-3],[-5,-1],[0,-2],[1,-4],[1,-3],[-8,-2],[-10,3],[-18,12],[-28,-1],[-15,13],[-65,-3],[-7,-5],[0,4],[-4,-2],[-37,0],[-109,-29],[-8,4],[3,5],[15,5],[0,5],[-25,-3],[-4,1],[1,8],[4,12],[1,8],[-1,4],[0,6],[2,6],[10,4],[17,15],[-29,-1],[-2,7],[4,3],[16,-1],[5,2],[9,7],[80,18],[-14,4],[-76,-17],[-17,10],[4,3],[-2,4],[-7,7],[-5,11],[-1,4],[1,8],[2,7],[2,6],[1,7],[1,10],[1,4],[4,4],[1,4],[-1,4],[-1,8],[0,9],[3,12],[0,6],[-2,9],[-3,5],[-4,4],[-4,6],[-5,14],[-2,7],[1,5],[4,3],[21,-5],[-4,4],[-11,9],[9,-1],[4,1],[4,4],[-9,10],[-4,7],[-4,18],[-5,5],[-6,3],[-14,1],[-4,1],[-3,3],[-2,4],[-2,11],[-1,2],[-1,1],[-2,3],[-2,4],[0,4],[1,3],[3,2],[6,3],[-6,6],[-8,13],[-5,5],[-15,5],[-3,4],[-1,4],[0,5],[-1,3],[-26,4],[-13,5],[1,15],[-1,0],[-4,4],[5,7],[7,1],[14,-4],[-4,4],[-13,16],[5,6],[-2,3],[-16,0],[-7,3],[-6,6],[-2,13],[1,17],[3,19],[4,17],[7,10],[-4,4],[-4,6],[-3,7],[-1,9],[-3,5],[-6,4],[-5,5],[-1,8],[4,4],[5,0],[6,3],[4,10],[1,10],[-3,6],[-4,5],[-5,7],[11,19],[5,4],[9,3],[19,-3],[5,5],[-2,2],[-2,3],[-2,5],[-3,3],[-7,1],[-3,2],[1,13],[-3,16],[0,12],[8,0],[0,4],[-4,1],[-4,4],[-1,7],[1,9],[-2,4],[0,5],[2,5],[0,4],[-5,5],[-9,6],[-3,7],[3,0],[3,1],[2,3],[2,4],[-2,7],[1,6],[5,12],[-7,2],[-5,7],[-8,21],[-3,14],[2,11],[7,8],[6,5],[-3,3],[-2,1],[-2,1],[5,9],[-4,8],[-15,11],[9,0],[4,1],[4,3],[-2,3],[-2,3],[-3,6],[10,4],[6,2],[4,-4],[3,-5],[5,-4],[4,0],[4,3],[-4,8],[-13,13],[-12,9],[-23,6],[12,16],[-2,5],[-8,8],[5,3],[9,2],[4,3],[-3,2],[-5,6],[6,8],[7,3],[15,1],[38,22],[4,1],[6,0],[5,-1],[3,-3],[3,-5],[2,-4],[3,-1],[12,9],[9,0],[9,-5],[43,-41],[19,-12],[60,-12],[51,4],[-18,17],[-43,4],[-19,11],[-5,5],[-16,14],[-6,8],[-3,3],[-16,10],[-7,9],[-4,12],[44,12],[0,5],[-7,2],[-12,8],[-6,1],[-9,-2],[-8,-6],[-2,-3],[-3,-7],[-1,-2],[-7,0],[-13,13],[-13,6],[-7,5],[-7,7],[-5,8],[-4,15],[1,17],[4,16],[5,11],[13,10],[57,10],[27,13],[24,5],[12,6],[21,18],[5,3],[19,-5],[53,2],[7,3],[3,3],[5,9],[4,4],[6,2],[126,5],[10,-7],[16,-24],[9,-6],[10,-1],[9,7],[-7,4],[-1,7],[0,9],[-3,8],[10,15],[17,7],[57,3],[53,0],[71,-22],[60,-5],[8,-5],[6,-9],[-4,-9],[5,-5],[6,-1],[2,3],[14,8],[7,1],[35,-20],[24,-4],[16,-9],[15,-14],[13,-19],[-4,-8],[-14,-17],[2,0],[-2,-4],[57,4],[4,4],[-2,0],[2,5],[1,11],[1,5],[3,1],[11,-1],[4,1],[7,5],[57,16],[10,-8],[57,10],[56,-10],[105,-6],[99,-32],[80,-21],[3,6],[1,2],[12,-4]],[[22851,94573],[-9,2],[-5,4],[-2,6],[10,16],[34,16],[4,6],[1,11],[21,9],[8,7],[-6,0],[9,13],[12,4],[24,-1],[27,-14],[4,-4],[-3,-10],[-6,-10],[-23,-31],[-6,-2],[-15,2],[-10,-4],[-41,-27],[-12,-2],[-4,2],[-9,5],[-3,2]],[[23510,94643],[27,-28],[3,-14],[-16,-13],[-10,-1],[-102,22],[-17,12],[-18,7],[-8,10],[15,9],[6,1],[11,-6],[6,-1],[-5,16],[11,11],[15,5],[26,1],[20,-5],[19,-11],[17,-15]],[[21211,95004],[11,-11],[4,-2],[-5,-13],[-11,-12],[-33,-27],[-29,-15],[-83,-16],[-18,-11],[-8,0],[-22,8],[-36,2],[-15,5],[-21,3],[-30,12],[-23,17],[-33,15],[-6,10],[5,11],[11,7],[16,7],[4,7],[6,18],[2,2],[5,3],[1,1],[0,6],[0,2],[1,2],[4,3],[8,3],[4,3],[-6,-1],[-6,2],[-6,3],[-5,3],[0,5],[5,1],[7,4],[3,5],[-2,6],[6,11],[7,8],[54,40],[22,11],[76,2],[16,-11],[29,-5],[5,-3],[15,-17],[21,-5],[4,-7],[-2,-11],[19,-29],[-1,-29],[7,-6],[15,-6],[0,-1],[0,-5],[0,-2],[2,-1],[6,-2]],[[24045,94853],[5,-16],[2,-8],[1,-9],[-1,-9],[-2,-14],[1,-6],[-7,-30],[-1,-12],[-4,-11],[-10,-4],[-20,1],[17,-3],[9,-4],[4,-9],[-2,-9],[-6,-8],[-13,-11],[-20,-10],[-82,-5],[-82,-6],[-10,4],[-10,7],[-5,2],[-38,-10],[-8,-7],[-76,2],[-13,12],[-5,13],[-11,6],[-11,0],[-14,-12],[-7,1],[-14,6],[-13,1],[-7,2],[-6,5],[3,7],[5,10],[2,8],[-70,44],[-4,1],[-4,-2],[-3,-4],[-3,-4],[-2,-3],[-6,-4],[-8,-3],[-8,-1],[-6,4],[23,12],[0,5],[-14,0],[-8,-2],[-5,-7],[-1,-7],[2,-8],[6,-13],[-16,-1],[-8,4],[-2,13],[15,16],[-3,6],[-3,3],[-33,-1],[-12,4],[-10,12],[2,0],[-4,4],[-4,-2],[-3,-4],[2,-5],[0,-4],[-44,3],[-8,5],[5,-1],[4,2],[4,3],[2,8],[-13,0],[-12,5],[-12,8],[-10,11],[2,0],[-17,6],[-7,7],[-5,11],[7,5],[22,3],[-2,9],[-2,3],[-2,2],[-4,-1],[-2,-1],[-6,-5],[-3,-2],[-10,0],[4,10],[7,10],[7,8],[7,4],[-3,7],[-7,0],[-17,-3],[2,-6],[-3,-7],[1,-7],[-12,-13],[-1,-3],[-2,-4],[0,-3],[1,-4],[-1,-5],[-3,-7],[-4,-3],[-10,-3],[-23,0],[-11,6],[-4,10],[4,6],[1,8],[0,8],[-3,7],[11,-5],[7,1],[3,6],[-2,9],[-6,3],[-47,-2],[-7,-3],[-6,-6],[-7,-3],[-7,4],[3,6],[2,6],[3,12],[-3,11],[-2,8],[2,6],[6,4],[-1,6],[-1,2],[15,17],[6,9],[9,19],[0,4],[1,2],[0,4],[1,4],[2,2],[6,-1],[6,-3],[8,-7],[3,2],[2,9],[-2,1],[-3,2],[-2,2],[-2,3],[14,8],[61,12],[15,-5],[26,9],[-6,4],[-6,0],[-12,-4],[-4,2],[-2,3],[1,5],[4,4],[12,4],[24,1],[12,5],[-8,6],[-66,-9],[3,7],[-1,1],[-2,4],[10,1],[30,11],[18,29],[11,8],[9,-13],[-4,-1],[-10,-7],[0,-4],[38,13],[6,7],[-72,13],[-6,-1],[-4,1],[-2,-1],[0,-1],[0,-5],[0,-2],[-13,-6],[-7,-1],[-6,3],[6,15],[11,7],[23,3],[4,-4],[2,0],[1,6],[2,5],[4,1],[22,-2],[7,-4],[5,-6],[0,-8],[6,-2],[17,-2],[4,0],[6,3],[11,0],[7,7],[-2,5],[-7,3],[-16,2],[-8,3],[-7,6],[-5,11],[14,21],[56,29],[19,3],[20,11],[5,0],[6,-3],[6,-7],[4,-1],[4,6],[4,10],[1,4],[4,4],[4,4],[4,1],[4,0],[14,-6],[12,-1],[11,1],[12,5],[3,3],[6,8],[4,2],[22,0],[4,1],[12,10],[7,2],[70,-12],[70,-12],[95,-77],[9,-14],[9,-7],[28,-13],[28,-26],[27,-5],[4,-2],[2,-4],[3,-12],[2,-4],[-8,-6],[-12,-3],[-22,1],[0,-4],[37,-3],[47,-21],[0,-5],[-3,-10],[-4,-7],[-16,-15],[6,-9],[21,-21],[6,-11],[-1,-9],[-6,-8],[-7,-7],[2,-3],[4,-9],[-6,-1],[-10,-6],[-16,-4],[-6,-4],[-4,-6],[6,-3],[19,7],[5,-1],[3,-3],[7,-12],[14,-18],[5,-13],[-2,-13]],[[23173,95145],[-28,-1],[-8,-7],[5,-7],[6,-2],[6,-1],[6,-3],[-9,-8],[-35,-8],[-17,-10],[-8,-1],[1,11],[-8,4],[-17,2],[-8,7],[3,0],[3,0],[2,2],[3,3],[0,5],[-3,3],[-6,3],[-7,13],[-4,5],[-4,2],[0,4],[5,4],[-1,6],[-10,10],[97,41],[10,-8],[39,16],[26,4],[5,4],[1,5],[-3,13],[0,6],[14,15],[24,-6],[44,-24],[16,3],[8,-2],[5,-6],[0,4],[8,-7],[17,-10],[7,-11],[-7,-8],[-4,-3],[-22,-6],[-5,-3],[4,-4],[-4,-7],[-6,-4],[-11,-5],[-4,-3],[-8,-10],[-4,-4],[-11,-4],[-8,5],[-8,9],[-9,7],[-20,9],[-11,8],[-5,11],[3,6],[5,3],[5,2],[3,3],[1,7],[-5,3],[-12,0],[2,-6],[0,-2],[-18,-5],[-9,-5],[-7,-10],[-3,-10],[1,-7],[8,-16],[1,-2],[3,-4],[0,-4],[-7,-3],[-9,-8],[-4,-3]],[[16389,95437],[9,4],[13,2],[10,-3],[4,-11],[-1,-4],[-1,-5],[1,-6],[1,-5],[-2,-6],[-6,-21],[-1,-8],[-3,-8],[-22,-28],[-19,-14],[-9,-3],[-21,-1],[-25,7],[-10,9],[12,10],[37,15],[9,6],[4,1],[5,0],[5,2],[3,3],[1,6],[-3,5],[3,4],[6,13],[-3,5],[-10,11],[1,7],[3,6],[9,7]],[[21424,95339],[2,-3],[-8,-6],[-120,0],[-17,9],[32,16],[6,9],[-17,0],[16,13],[19,4],[37,-1],[-7,4],[-10,2],[-6,4],[1,11],[6,10],[9,7],[9,4],[77,19],[77,19],[24,0],[53,14],[40,-12],[-5,-6],[0,-2],[24,-2],[6,-3],[-1,-2],[-1,-2],[0,-2],[0,-2],[-29,-13],[-83,-15],[-14,-12],[-3,-7],[-7,-22],[-4,-8],[-4,-5],[-28,-16],[-17,-4],[-12,8],[-6,0],[1,-11],[-11,-1],[-5,1],[-5,3],[2,5],[-21,-5]],[[23754,95465],[8,-7],[1,-8],[0,-9],[0,-12],[8,-17],[0,-2],[0,-7],[1,-2],[7,-5],[21,-25],[5,-11],[2,-15],[-6,-7],[-95,-10],[-24,9],[-14,12],[-8,17],[-3,21],[2,25],[-7,3],[-7,6],[-6,8],[-3,12],[16,9],[52,7],[35,15],[2,5],[5,-2],[8,-10]],[[21508,95474],[-104,-21],[-104,-20],[-103,-21],[-31,9],[-24,-3],[-7,3],[-5,14],[-3,3],[-6,3],[-3,4],[43,2],[26,18],[63,3],[50,24],[24,-2],[7,2],[19,14],[7,2],[23,-2],[82,13],[81,12],[26,-8],[6,-6],[3,-13],[-2,-13],[-8,-5],[-60,-12]],[[17282,95417],[-13,-18],[-2,-7],[2,0],[1,-2],[1,-2],[2,-4],[-6,-4],[-11,-4],[-5,-4],[2,-4],[-3,-6],[-8,-5],[-4,-5],[-2,-8],[0,-3],[1,-3],[1,-7],[1,-3],[2,-4],[-1,-3],[-11,-3],[-4,-3],[-6,-8],[-72,-56],[14,-5],[5,-4],[-14,-3],[-100,-55],[-14,-1],[-13,4],[-24,13],[-41,2],[4,7],[5,2],[5,0],[5,3],[-17,5],[-8,-1],[-9,-3],[-4,0],[-13,7],[-10,3],[-29,-5],[-58,22],[0,3],[0,2],[2,4],[-2,0],[21,26],[78,54],[16,6],[6,5],[14,20],[22,18],[12,6],[12,2],[4,15],[15,16],[18,13],[84,30],[31,-3],[10,3],[5,3],[4,6],[7,17],[8,11],[9,2],[10,0],[36,17],[0,2],[-2,6],[27,18],[39,9],[9,-7],[11,0],[12,-3],[22,-13],[-5,-4],[-3,-5],[-3,-15],[-4,-9],[-5,-6],[-12,-9],[1,-10],[-2,-7],[-5,-5],[-5,-4],[-5,-5],[-8,-13],[-4,-5],[-22,-9],[-7,-7]],[[28084,95551],[6,-7],[17,-7],[4,-9],[-2,-6],[-5,-7],[-10,-9],[-79,-40],[-6,-6],[-3,-7],[2,-12],[6,-7],[38,-24],[17,-3],[21,-15],[-6,-7],[-7,-1],[-14,4],[-22,-4],[-6,4],[6,8],[7,5],[-6,4],[-18,-4],[-46,4],[-14,-3],[-28,-14],[5,-7],[7,-2],[6,0],[7,-2],[-24,-20],[-3,0],[-6,3],[0,1],[1,6],[-1,1],[-2,2],[-3,2],[-33,0],[2,5],[3,2],[2,2],[1,5],[-2,6],[-4,4],[-8,4],[-10,1],[-10,-4],[-10,-1],[-8,13],[10,-1],[23,7],[9,6],[5,7],[0,5],[-2,4],[-1,4],[3,6],[5,4],[18,4],[20,22],[5,4],[25,6],[10,8],[6,3],[-1,6],[-1,2],[5,7],[19,6],[11,8],[4,5],[5,9],[12,11],[16,2],[31,-3],[1,0]],[[27409,95567],[-9,-1],[-21,4],[-8,5],[3,3],[23,12],[16,4],[16,0],[14,-7],[-7,-7],[-9,-7],[-18,-6]],[[21163,95498],[-37,4],[17,5],[3,3],[-53,8],[-6,-4],[2,-4],[-80,13],[-8,3],[-4,5],[-12,22],[-7,8],[0,4],[3,8],[6,7],[8,3],[16,0],[5,3],[4,15],[4,3],[31,7],[20,-3],[5,1],[8,5],[47,9],[16,7],[17,-1],[24,4],[33,-2],[18,8],[8,-1],[3,1],[11,4],[100,11],[100,11],[20,-13],[3,-13],[5,-8],[23,-16],[0,-7],[-12,-21],[12,-11],[3,-5],[-26,0],[1,-2],[2,-6],[-19,-16],[-43,-21],[-113,-20],[2,0],[-80,-4],[-80,-4]],[[25172,95742],[-8,-5],[-52,4],[-9,4],[18,13],[11,4],[6,-5],[2,4],[7,-7],[25,-12]],[[26669,95730],[-18,10],[-19,5],[5,14],[1,5],[-2,4],[-6,8],[-2,6],[12,0],[7,-4],[16,-2],[7,-4],[5,-5],[16,-10],[-11,-17],[-6,-8],[-5,-2]],[[21000,95756],[-4,6],[-7,7],[-7,4],[-4,-1],[-6,-6],[-7,-2],[-8,2],[-5,4],[2,4],[-3,2],[-2,3],[-3,7],[3,0],[1,1],[2,2],[2,1],[-7,7],[-15,5],[-7,5],[8,15],[-7,5],[-2,3],[-2,5],[8,0],[83,36],[91,4],[16,-5],[12,-13],[-3,-11],[-34,-32],[9,-3],[22,9],[17,0],[9,19],[7,8],[9,0],[8,-4],[24,-23],[11,-4],[23,-2],[-7,-7],[-2,-5],[-1,-8],[4,-4],[53,-18],[23,2],[12,5],[3,-1],[2,-3],[0,-3],[0,-3],[-2,1],[1,-3],[0,-3],[1,-3],[3,-3],[4,-1],[41,-4],[14,-8],[3,-16],[-4,-5],[-87,-50],[-75,-4],[-76,-4],[-19,5],[-119,-1],[-8,7],[5,5],[12,8],[3,7],[-4,7],[-2,3],[-3,2],[-7,2],[-13,-2],[-6,4],[7,5],[9,9],[5,13],[-4,16]],[[22937,95194],[5,-29],[10,-18],[25,-23],[-6,-4],[-8,1],[-39,16],[-6,8],[-1,5],[0,5],[1,6],[-1,6],[0,5],[2,3],[3,2],[-68,48],[-10,1],[3,-16],[-9,0],[-13,4],[-8,-4],[2,-6],[15,-8],[7,-9],[3,-5],[3,-7],[1,-8],[-3,-5],[-5,-4],[-4,-1],[-6,1],[-3,3],[-3,5],[-3,7],[-1,3],[0,8],[-1,2],[-3,3],[-17,4],[-6,-1],[-3,-6],[3,-9],[-21,0],[-6,-4],[7,-4],[13,0],[7,-4],[-8,-5],[-15,-1],[-8,-2],[10,-5],[22,3],[38,-12],[8,-6],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-3,-2],[-2,0],[-2,1],[-60,0],[-8,-8],[10,-5],[39,-8],[2,-4],[-3,-4],[-6,-3],[-23,-4],[1,2],[0,1],[1,1],[0,4],[-7,-1],[-13,-6],[-6,-1],[5,12],[-9,-1],[-8,-3],[-6,-7],[-5,-13],[3,-3],[3,-1],[7,0],[-6,4],[4,4],[5,1],[5,-3],[3,-6],[-3,-4],[-4,-3],[-4,-2],[-4,1],[4,-10],[8,-5],[9,-1],[6,3],[-2,0],[8,13],[11,11],[12,4],[11,-7],[-17,-8],[2,-4],[-5,-3],[-11,-14],[19,-7],[6,0],[0,4],[-4,8],[3,8],[5,3],[6,-8],[-2,-3],[9,-13],[25,-16],[8,-16],[-12,1],[-5,-2],[-3,-7],[10,-4],[20,1],[11,-6],[-4,1],[-2,-1],[-2,-7],[20,-10],[5,2],[-6,4],[0,4],[4,0],[4,-3],[3,-4],[2,-6],[-20,-13],[-24,-8],[-23,0],[-56,27],[-6,11],[0,5],[4,9],[0,6],[-4,5],[-7,3],[-12,0],[6,-10],[-3,-6],[-16,-9],[2,0],[5,-3],[-5,-4],[-2,0],[5,-10],[8,-8],[21,-12],[10,-2],[5,-3],[2,-4],[2,-9],[2,-3],[2,-7],[0,-12],[-2,-12],[-2,-8],[-5,-3],[-16,7],[-100,-11],[-99,-11],[-11,6],[12,8],[-7,4],[-16,-5],[-7,5],[3,4],[-1,2],[-3,5],[-1,1],[3,7],[2,1],[2,1],[-6,6],[-12,1],[-11,-3],[-7,-9],[7,-9],[1,-8],[-4,-5],[-117,-12],[-9,6],[2,2],[6,6],[-4,10],[4,11],[23,29],[4,8],[-1,7],[-6,6],[-7,-6],[-12,-22],[-4,-5],[-16,-9],[-12,-15],[-3,-2],[3,-10],[13,-6],[4,-8],[-14,3],[-5,-2],[-9,-6],[-33,-4],[-95,11],[-95,11],[-10,5],[-7,10],[-2,12],[1,9],[2,8],[1,10],[-1,9],[-2,6],[-10,11],[4,4],[3,1],[2,0],[0,4],[-15,10],[-17,4],[-6,3],[-4,7],[17,13],[20,5],[111,-3],[9,5],[-7,5],[-14,-1],[-15,5],[-16,0],[-22,6],[-28,-4],[-15,10],[12,3],[12,1],[11,5],[9,15],[-71,-13],[-9,3],[-39,23],[-20,5],[-9,6],[5,5],[32,12],[6,-1],[6,-4],[-6,0],[-15,-4],[-6,-4],[9,-5],[13,-2],[10,2],[3,9],[21,-1],[11,2],[10,7],[-8,4],[-17,3],[-6,9],[4,0],[-13,11],[-14,3],[-28,-1],[0,4],[94,6],[95,6],[9,8],[-84,4],[24,7],[51,-6],[24,11],[-91,13],[0,4],[125,12],[-7,4],[-22,-4],[-23,4],[-7,0],[0,4],[14,0],[54,16],[13,1],[13,3],[11,13],[-55,0],[0,4],[4,1],[11,6],[-3,9],[-1,3],[120,9],[120,8],[13,4],[5,5],[-3,6],[-7,3],[-102,-11],[-102,-11],[7,6],[23,6],[-92,-9],[-93,-9],[-14,-9],[-8,-1],[-14,3],[-35,-8],[-21,5],[-70,-11],[-71,-10],[-11,-7],[-4,-1],[-10,0],[-22,-8],[-16,2],[-20,-8],[-9,6],[6,4],[-10,7],[-12,1],[-85,-18],[-85,-18],[-40,4],[-54,-8],[-64,-25],[-10,3],[0,14],[-5,6],[-7,2],[-14,0],[-4,3],[3,6],[10,11],[-8,7],[-25,8],[-7,6],[-2,5],[3,4],[7,5],[6,2],[6,-2],[9,-6],[9,-4],[29,0],[-4,6],[-11,2],[-5,3],[3,3],[2,3],[3,2],[2,1],[-6,16],[5,1],[9,6],[5,1],[13,-1],[7,1],[5,4],[-3,5],[-4,2],[-4,1],[-4,0],[6,8],[11,3],[77,-3],[39,-16],[9,0],[18,4],[0,4],[-8,-1],[-8,-3],[-7,-1],[-8,5],[6,4],[2,1],[-7,11],[-25,-1],[-8,5],[4,8],[36,17],[-8,7],[-57,-9],[-6,2],[-5,8],[-2,6],[3,5],[5,11],[2,2],[5,3],[10,11],[6,3],[119,21],[4,-1],[4,-5],[6,-13],[4,-2],[4,-1],[13,-8],[20,-5],[16,-11],[23,-8],[11,0],[-1,-1],[-1,-2],[-1,-2],[-1,-3],[1,-5],[1,-3],[-1,-4],[-3,-4],[8,-6],[9,-4],[39,-7],[4,2],[3,3],[3,4],[3,3],[21,11],[46,4],[20,14],[-38,-4],[6,-4],[-10,-6],[-23,0],[-22,-7],[-36,1],[1,6],[7,12],[0,4],[-6,11],[-6,9],[-12,6],[-26,-3],[-12,8],[2,9],[-2,7],[-5,6],[-4,4],[-2,6],[6,7],[23,14],[17,4],[7,5],[9,13],[4,1],[4,1],[3,3],[4,4],[3,5],[-11,1],[-20,-11],[-82,-8],[-19,8],[-18,14],[-15,22],[-3,14],[1,11],[5,9],[6,7],[5,3],[11,6],[5,5],[9,13],[4,3],[55,16],[44,25],[-111,-21],[-6,2],[-12,5],[-70,-5],[-18,11],[8,5],[11,2],[9,4],[2,13],[-5,8],[-11,2],[-22,-2],[7,4],[24,7],[9,6],[1,4],[-14,12],[10,4],[21,0],[9,8],[-7,4],[-15,5],[-7,7],[7,9],[8,4],[10,1],[7,3],[27,17],[10,3],[110,-13],[4,-3],[8,-7],[14,-4],[4,-2],[25,-24],[36,-16],[8,-9],[-3,-1],[-4,-4],[-2,-5],[-2,-6],[2,0],[-10,-24],[-1,-9],[7,-3],[40,-5],[32,-12],[26,-18],[10,-4],[3,-5],[3,-5],[2,-4],[10,-5],[5,-3],[2,-8],[-25,-10],[-7,-6],[89,16],[-10,-13],[-47,-8],[0,-4],[76,-9],[12,-13],[4,-5],[25,-24],[3,-4],[4,-10],[3,-5],[7,-3],[20,-4],[-3,-9],[-6,-4],[-7,-2],[-6,-5],[6,-4],[8,-1],[9,2],[15,8],[4,1],[4,-2],[1,-2],[2,-5],[1,-4],[-3,-3],[0,-4],[1,-4],[1,-2],[4,-5],[4,0],[7,5],[15,14],[40,6],[3,1],[8,10],[4,1],[8,0],[10,3],[3,2],[1,5],[1,5],[4,2],[5,-1],[9,-4],[8,1],[14,8],[-14,6],[-91,-19],[-12,-8],[-1,7],[-3,1],[-3,0],[-4,2],[0,6],[2,4],[4,3],[3,1],[-6,7],[-6,0],[-7,-1],[-7,2],[-1,2],[0,3],[-1,3],[-2,3],[-4,2],[-12,0],[4,2],[3,3],[3,5],[2,6],[-19,1],[-6,6],[-6,14],[-1,6],[-1,6],[-1,4],[-4,4],[-19,10],[-6,6],[28,0],[-1,5],[-1,3],[12,6],[12,-1],[24,-9],[40,-3],[24,-8],[11,-1],[35,13],[27,3],[12,8],[-79,-13],[-7,2],[-10,8],[-4,2],[-29,6],[-25,18],[-6,1],[-49,-8],[-86,25],[-9,10],[4,12],[15,8],[102,-6],[0,4],[-4,0],[-12,4],[2,4],[-19,4],[-6,4],[11,6],[10,-5],[11,-9],[10,-4],[47,-6],[14,6],[-42,7],[-7,5],[6,1],[14,4],[6,4],[-8,4],[-20,-2],[-10,1],[-32,21],[3,4],[9,8],[-8,-1],[-16,-7],[-7,0],[-20,11],[-99,-4],[-80,58],[-6,16],[71,15],[8,5],[-2,2],[-2,2],[-2,4],[-1,4],[5,2],[16,10],[20,4],[43,25],[11,0],[15,9],[17,3],[116,-24],[6,1],[18,13],[7,2],[28,0],[14,-5],[11,-11],[-8,-5],[-20,3],[-10,-2],[45,-7],[65,-52],[10,-2],[0,4],[-2,0],[0,4],[18,2],[9,-2],[7,-8],[-23,-10],[-10,-8],[5,-13],[23,-19],[11,-5],[13,-2],[0,4],[-11,11],[-5,8],[-3,7],[5,6],[21,-5],[7,2],[-4,0],[0,4],[6,3],[10,1],[7,-3],[0,-10],[6,-7],[7,-2],[15,1],[0,5],[-3,-1],[-3,1],[-5,3],[10,9],[-6,8],[-8,8],[-8,6],[-7,2],[-4,2],[-2,5],[-2,5],[-2,4],[-4,2],[-9,0],[-4,2],[4,7],[1,6],[-1,6],[-4,5],[3,0],[3,0],[3,2],[3,3],[-1,1],[-2,5],[-1,2],[15,8],[19,5],[20,-1],[14,-8],[1,-12],[8,-4],[7,4],[-2,16],[33,-3],[18,2],[11,13],[-6,4],[-3,0],[3,3],[4,2],[8,-1],[0,4],[-21,5],[-32,-9],[-27,0],[-15,5],[-7,11],[111,3],[8,-3],[5,-6],[0,-5],[-6,-10],[-1,-7],[3,-3],[25,-11],[29,-4],[14,-5],[8,-1],[-36,-5],[-4,2],[-14,7],[-17,0],[10,-15],[13,-4],[14,0],[12,-3],[9,-6],[3,-1],[2,2],[1,2],[1,3],[4,1],[6,-2],[10,-12],[7,-2],[74,-10],[40,-18],[-5,-7],[-5,-5],[3,-6],[4,-6],[3,-8],[-1,-7],[-5,-5],[-8,-4],[-5,-6],[0,-7],[-1,-3],[-3,-10],[0,-5],[-2,-5],[-7,-9],[-3,-4],[5,-3],[10,-2],[4,-4],[-1,-3],[-1,-6],[-1,-3],[6,-10],[43,-26],[8,-9],[6,-12],[-2,0],[3,-20],[0,-8],[-4,-10],[-4,-6],[-11,-10],[-3,-6],[-2,-6],[-1,-16],[0,-5],[-1,-6],[-2,-4],[-3,-4],[-2,-4],[-2,-12],[-2,-2],[-3,-1],[-2,-4],[-1,-4],[2,-5],[1,-4],[-2,-5],[2,-6],[2,-5],[5,-11],[13,-18],[1,-11],[-5,-9],[-16,-15],[-2,-4],[-2,-5],[-2,-4],[-20,-12],[-17,-3],[-27,-10],[-12,-9],[12,-5],[63,-6],[4,-3],[10,-8],[5,-2],[49,-4],[13,-11],[2,-3],[0,-9],[-2,-3],[-2,-1],[-3,-5],[-3,-10],[0,-10],[-1,-21],[0,1],[1,-2],[1,-3],[0,-2],[-1,-3],[-1,-2],[-2,-1],[-2,-15],[0,-5]],[[21900,95822],[-50,-12],[-97,17],[6,4],[19,4],[19,15],[27,8],[53,3],[14,5],[15,17],[13,1],[9,3],[2,0],[2,2],[0,5],[1,4],[2,3],[3,3],[14,10],[95,14],[106,-12],[-24,-15],[-114,-39],[-115,-40]],[[25090,95912],[-4,-3],[-1,-4],[1,-3],[4,-2],[-5,-12],[-9,-7],[-25,-8],[-6,-6],[-4,-10],[-2,-14],[0,-10],[3,-10],[7,-19],[9,-10],[22,-8],[10,-8],[-10,-1],[-21,-11],[-11,0],[-17,14],[-9,3],[-8,-5],[3,-14],[-11,-3],[-24,5],[-26,12],[-13,10],[-17,30],[-84,84],[-6,10],[-1,11],[6,13],[12,11],[55,19],[37,7],[60,4],[12,-8],[25,-9],[42,-36],[6,-12]],[[20723,95285],[1,-5],[1,-4],[0,-3],[-2,-6],[-4,-7],[-10,-5],[-5,-4],[-3,-11],[-2,-10],[-3,-9],[-7,-7],[-6,-2],[-14,0],[-27,-14],[0,-4],[2,-1],[2,-2],[3,-5],[-6,-1],[-13,-3],[-5,-5],[9,-5],[27,-1],[7,-10],[-4,-2],[-10,-12],[-5,-5],[-13,-8],[0,-5],[8,-10],[4,-5],[3,-5],[1,-5],[-3,-8],[-5,-5],[-7,-2],[-4,-3],[1,-6],[-5,-8],[-21,-9],[-16,-17],[-5,-2],[-3,-5],[-12,-26],[3,-5],[25,-14],[-10,-4],[-4,-5],[1,-8],[-2,-5],[-33,-7],[-10,-6],[-3,-4],[-4,-7],[-2,-7],[4,-3],[12,-4],[5,-5],[2,-7],[-3,-3],[-104,-16],[-105,-15],[-3,-3],[-2,-2],[-1,-3],[0,-2],[-1,-1],[-61,-36],[-63,-3],[-23,9],[-55,5],[-48,23],[-1,10],[-9,10],[-1,4],[2,6],[8,4],[2,7],[-3,15],[-6,9],[-8,5],[-8,1],[-4,-4],[2,-1],[4,-3],[-2,-8],[5,-6],[3,-7],[-8,-11],[-23,-12],[-23,-5],[3,1],[2,1],[1,2],[-4,3],[-7,2],[-6,0],[-4,-5],[-1,-7],[1,-3],[8,-4],[4,-10],[-5,-6],[-14,-7],[5,-2],[10,-2],[5,-4],[-7,-4],[-24,4],[-100,-11],[-22,10],[-7,1],[-5,3],[-8,11],[-66,15],[0,4],[82,-8],[-10,20],[-14,16],[-15,9],[-48,10],[-28,-10],[-5,-5],[-2,-3],[-6,-13],[3,0],[2,-1],[2,-3],[2,-4],[-26,0],[11,-8],[-23,-2],[-78,-25],[-7,-6],[-5,-8],[-3,-8],[2,0],[4,-3],[-11,-3],[-29,-19],[-14,-5],[-83,7],[-32,-10],[-2,-1],[-4,-2],[-10,-11],[-4,-4],[-5,3],[2,4],[-2,3],[-19,-7],[-42,14],[-19,-7],[2,-1],[2,-1],[1,-1],[-4,0],[-3,-1],[-8,-3],[0,-4],[20,-8],[7,0],[-8,-7],[-72,-6],[-12,5],[-6,-2],[-1,-11],[3,-8],[7,-8],[13,-12],[-8,-12],[-44,-13],[-17,-16],[-6,-3],[-26,-3],[-2,-4],[-2,-5],[-4,-5],[-6,-3],[-20,-1],[-23,-13],[-20,0],[-7,-4],[-14,-14],[-5,-1],[-25,5],[-45,-22],[-23,-19],[-81,-15],[-81,-16],[-19,-11],[-22,-3],[-14,-7],[-55,0],[-108,-10],[-54,5],[-65,9],[-67,15],[-20,16],[-113,56],[0,3],[0,1],[1,0],[1,1],[-7,1],[-56,37],[-11,11],[-2,7],[0,8],[5,12],[7,7],[24,10],[21,16],[73,29],[40,4],[21,12],[35,5],[36,-2],[21,10],[24,3],[21,-8],[11,-2],[7,10],[-18,9],[-20,3],[7,4],[3,0],[3,0],[21,1],[6,3],[2,3],[4,10],[15,14],[27,7],[15,8],[45,11],[28,-3],[41,11],[77,0],[58,5],[43,-6],[37,-7],[29,11],[24,2],[8,3],[15,16],[6,4],[-7,8],[-14,-7],[-6,8],[10,7],[9,-1],[19,-6],[11,1],[31,15],[-4,6],[-5,4],[-6,2],[-6,0],[7,4],[13,-5],[7,1],[2,2],[0,2],[0,3],[0,1],[19,8],[8,0],[3,2],[6,5],[9,3],[20,15],[-12,8],[5,3],[8,4],[5,5],[-2,4],[6,4],[15,-1],[5,5],[-1,7],[-8,5],[-42,13],[-39,-4],[-2,-4],[-7,-16],[-4,-7],[-6,-7],[-17,-13],[-16,-5],[-16,-9],[-9,0],[-15,4],[-7,0],[-7,-4],[14,-5],[3,-4],[-32,0],[-6,6],[-9,15],[-6,4],[-3,-1],[-2,-2],[-2,-3],[-33,-24],[-7,-2],[-38,7],[-43,-12],[-36,-4],[-20,4],[-16,12],[6,6],[6,3],[19,6],[14,12],[5,6],[-7,4],[-20,0],[0,4],[8,0],[3,1],[4,3],[-15,11],[-4,1],[-4,-2],[-6,-5],[-5,-6],[-2,-7],[2,-1],[3,-1],[3,-2],[2,-4],[-2,-6],[-3,-3],[-39,0],[-8,5],[-4,5],[-2,5],[2,7],[4,3],[4,3],[3,3],[-1,9],[-7,8],[-9,7],[-7,2],[2,-2],[2,-1],[0,-4],[-10,-3],[-4,-8],[-3,-11],[-4,-15],[9,-10],[3,-4],[1,-5],[-2,-11],[0,-7],[-8,0],[-35,-19],[-46,-9],[-9,1],[-8,7],[-11,20],[-4,4],[-7,-22],[-5,-10],[-7,-4],[-40,-4],[-27,2],[-49,-10],[-7,2],[-1,-2],[-1,-2],[-3,-2],[-61,-2],[-20,10],[1,28],[4,10],[3,3],[4,3],[75,25],[-10,4],[-10,-1],[-42,-16],[-11,0],[-9,8],[18,40],[11,30],[6,14],[8,9],[29,12],[22,3],[20,13],[43,17],[14,1],[0,4],[-6,-4],[-21,4],[-11,-3],[-4,2],[0,9],[-12,-11],[-99,-27],[-7,1],[-6,8],[-13,24],[-19,22],[-9,5],[-6,-10],[4,-2],[0,-6],[-3,-6],[-1,-6],[1,-9],[2,-4],[3,-3],[4,-7],[2,-11],[-3,-12],[-9,-19],[-8,-24],[-2,-5],[-8,-14],[-11,-10],[-16,1],[-16,8],[-11,12],[-1,2],[1,7],[0,2],[-3,3],[-37,12],[-5,7],[-10,-2],[-12,-9],[-7,-8],[0,-7],[4,-2],[6,-1],[9,4],[28,-6],[6,-3],[4,-6],[7,-18],[8,-9],[9,-5],[6,-8],[-2,-14],[-6,-12],[-14,-17],[-6,-10],[-10,-14],[-72,-29],[-72,-29],[-28,-2],[-27,10],[-7,5],[-4,6],[-3,9],[-2,13],[-3,13],[0,4],[3,8],[4,4],[4,3],[3,4],[-2,5],[-1,10],[-5,15],[-8,14],[-9,5],[3,-10],[-6,-10],[-36,-27],[-12,-2],[-21,15],[-36,15],[-4,-1],[0,-5],[4,-7],[4,-3],[9,-1],[4,-4],[-4,-6],[5,-12],[9,-14],[5,-13],[-2,0],[-1,-14],[-10,-12],[-12,-9],[-9,-5],[-15,-1],[-59,16],[-27,17],[-40,9],[-24,12],[0,4],[31,9],[16,9],[11,18],[-10,-1],[-52,-16],[-11,2],[-8,7],[15,16],[9,12],[1,11],[-1,5],[1,6],[1,5],[-4,2],[-58,-16],[-15,3],[-7,-3],[-14,-8],[-4,-4],[-16,-22],[-5,-3],[-23,0],[-35,12],[-16,12],[-4,-1],[-6,-7],[-8,0],[-137,31],[-23,15],[-15,6],[-7,5],[-4,9],[5,4],[2,4],[2,3],[-1,2],[-5,6],[7,8],[9,4],[17,1],[-5,13],[6,13],[69,59],[29,13],[104,0],[105,-1],[22,6],[61,-7],[30,5],[126,61],[90,8],[-6,11],[1,4],[3,8],[5,5],[39,23],[25,4],[6,2],[-14,7],[-89,-29],[-90,-9],[-22,-11],[-58,-9],[-33,-15],[-4,-5],[-100,-1],[-100,0],[-100,0],[-12,4],[-2,15],[5,15],[73,76],[23,16],[100,9],[101,9],[100,9],[4,4],[3,7],[4,5],[5,-2],[4,-2],[42,-12],[97,10],[98,9],[13,8],[6,7],[-2,6],[-6,4],[-6,1],[-117,-7],[-116,-7],[-18,5],[-123,-16],[-4,1],[-1,4],[-6,-4],[-129,17],[-4,6],[-3,7],[-1,10],[2,10],[4,4],[27,9],[17,1],[20,-4],[6,4],[-4,8],[-11,6],[-4,7],[3,1],[7,7],[-13,5],[-32,-9],[-12,12],[-2,6],[1,4],[5,11],[11,15],[0,4],[5,7],[5,2],[6,1],[5,2],[5,7],[3,6],[4,6],[101,26],[60,-1],[30,-10],[47,-3],[61,4],[81,-12],[32,-2],[1,-3],[25,3],[34,-9],[33,3],[12,6],[-11,6],[-25,-4],[-23,6],[-27,0],[-18,18],[-66,17],[-70,0],[-69,1],[-27,9],[-5,4],[-6,13],[-3,3],[5,7],[16,14],[-3,6],[-10,6],[-4,4],[10,8],[101,55],[136,14],[11,4],[22,18],[9,2],[48,0],[-4,-6],[-9,-6],[-5,-4],[87,5],[68,-18],[13,-7],[7,-8],[5,-9],[7,-24],[-8,-12],[4,-4],[-5,-4],[-5,-1],[-11,1],[3,-7],[5,-3],[11,1],[-2,-2],[-5,-9],[0,-3],[1,-1],[2,-1],[-2,0],[14,-12],[21,-12],[6,-10],[-4,-8],[-9,-6],[-9,-9],[11,-3],[9,-8],[8,-5],[25,9],[45,-1],[40,18],[14,3],[14,-1],[7,2],[12,10],[12,5],[38,-1],[11,-6],[6,-1],[46,12],[23,-6],[11,-8],[6,-13],[5,-5],[21,1],[0,-5],[0,-5],[38,1],[21,-11],[22,-4],[9,-6],[1,0],[-6,-5],[-9,-4],[-6,-6],[1,-13],[-7,-1],[3,-7],[18,-18],[3,-6],[2,-5],[3,-6],[15,-10],[69,-13],[73,-35],[24,-3],[6,-6],[6,-12],[-16,-10],[-81,-15],[-31,-16],[7,-5],[6,-3],[-19,-7],[-5,-5],[8,-4],[10,0],[20,8],[3,4],[4,4],[3,3],[5,1],[4,-1],[7,-3],[4,0],[-4,-2],[-8,-3],[-3,-3],[24,-8],[6,2],[11,9],[6,2],[113,7],[3,-2],[-2,-6],[-6,-5],[-5,-3],[-22,3],[-6,-3],[38,-15],[7,-14],[-2,-1],[-2,-3],[-1,-5],[1,-5],[4,-3],[13,2],[5,-4],[2,-11],[-4,-6],[-6,-6],[-4,-10],[3,-1],[3,-4],[3,-4],[1,-5],[-1,-6],[-9,-16],[4,-1],[4,-4],[9,-17],[4,-3],[12,0],[0,-4],[-2,-2],[-2,-3],[-4,-7],[7,-1],[4,-3],[1,-2],[0,-2],[0,-2],[1,-2],[7,-3],[6,0],[5,2],[55,3],[43,16],[96,9],[23,-8],[1,-2],[0,-3],[0,-4],[2,-3],[56,-2],[16,7],[12,-4],[13,4],[18,-2],[136,-13],[136,-14],[24,-12],[8,0],[4,8],[-2,2],[-7,21],[-6,7],[-17,3],[-6,4],[11,8],[13,1],[25,-5],[0,4],[-3,1],[-3,2],[-3,4],[-2,5],[4,7],[10,7],[3,7],[-20,25],[-9,7],[1,2],[1,1],[2,1],[14,-2],[7,1],[6,5],[-8,5],[-28,3],[-7,7],[-3,2],[-5,1],[-16,-1],[1,2],[0,7],[1,2],[-11,7],[-85,17],[-16,9],[4,0],[13,4],[-80,4],[3,6],[10,5],[4,5],[-5,4],[-11,0],[-5,4],[6,7],[7,6],[-4,3],[-8,3],[-7,1],[-5,-1],[-12,-9],[-4,-1],[-10,5],[-15,-12],[-16,5],[-15,11],[-14,11],[14,9],[8,4],[81,17],[9,5],[18,16],[13,6],[30,6],[12,10],[-10,7],[-4,1],[11,4],[28,-1],[7,9],[-8,1],[-16,7],[-8,0],[1,7],[1,2],[0,3],[15,6],[5,3],[-4,7],[-6,4],[-6,3],[-15,9],[-19,6],[-8,7],[-1,2],[1,3],[0,3],[-2,4],[-5,3],[-43,3],[-7,6],[3,0],[4,1],[3,3],[1,4],[-3,4],[-38,10],[-11,-1],[-9,-5],[1,-4],[4,-10],[1,-2],[-3,-4],[-5,-1],[-4,2],[-22,16],[-40,30],[-65,14],[2,8],[9,9],[4,7],[-4,3],[-4,2],[-3,2],[-2,6],[3,5],[-1,5],[-4,4],[-4,6],[3,3],[1,5],[1,6],[-1,6],[5,1],[2,-1],[-1,0],[11,-1],[58,15],[18,13],[11,6],[1,0],[24,0],[11,6],[5,1],[15,-4],[10,5],[18,16],[-8,5],[-32,-1],[0,4],[6,2],[7,5],[7,6],[5,7],[-2,3],[-2,3],[-2,7],[36,-4],[-1,3],[-1,9],[-1,4],[23,8],[7,0],[-2,15],[3,12],[5,8],[7,6],[4,14],[15,10],[29,12],[-1,2],[-2,4],[-1,2],[7,9],[6,4],[14,4],[14,11],[7,1],[-2,0],[49,4],[20,-7],[9,-1],[23,11],[2,3],[1,8],[4,5],[5,2],[5,-1],[3,-2],[6,-10],[16,-11],[5,-6],[-5,-8],[-5,-10],[-1,-7],[6,-3],[38,0],[13,-6],[10,-14],[1,-18],[-6,-10],[-20,-13],[-10,-10],[-6,-2],[-14,6],[-8,0],[-16,-6],[12,-21],[1,-3],[7,-3],[9,-11],[6,-3],[13,-2],[6,-5],[2,-9],[-5,-5],[-16,-5],[-6,-6],[7,-3],[16,3],[6,-4],[-12,-6],[-5,-6],[-1,-6],[6,-7],[16,-1],[7,-6],[-9,-6],[-19,-4],[-8,-11],[7,-8],[8,0],[9,3],[7,-1],[9,-4],[36,-3],[6,-3],[16,-15],[5,-7],[2,-2],[4,-1],[9,0],[4,-3],[-4,-1],[-3,-1],[-4,-2],[-2,-4],[39,-29],[0,-4],[-13,0],[0,-4],[4,0],[-7,-9],[-20,5],[-6,-8],[5,-8],[35,-9],[-9,-9],[-60,-14],[-11,-7],[-9,-14],[4,-11],[-5,-7],[-7,-5],[-5,-5],[5,-3],[10,-1],[6,-5],[-8,-3],[-11,-7],[-9,-9],[-5,-9],[40,8],[54,-4],[34,12],[42,0],[8,-1],[36,-16],[3,-3],[5,-7],[3,-4],[11,-6],[3,-9],[-3,-10],[-7,-5],[-8,-2],[-25,-18],[4,-3],[8,-2],[4,-3],[-14,-9],[-31,-1],[-13,-14],[1,-3],[1,-2],[0,-1],[0,-3],[-9,-1],[-8,-9],[-13,-22],[2,-2],[6,-6],[-2,-4],[13,-4],[16,6],[15,12],[13,14],[13,21],[5,5],[9,4],[99,20],[19,-4],[23,2],[18,-10],[20,0],[9,-6],[-10,-7],[-4,-4],[-1,-4],[-1,-9],[-1,-4],[8,-15],[11,-5],[12,-1],[11,-7],[-5,0],[-8,-2],[-6,-4],[-3,-6],[3,-4],[20,-9],[-4,-10],[1,-15],[5,-14],[4,-9],[4,-6],[5,-6],[5,-1],[1,9],[-1,5],[-4,3],[-3,4],[1,8],[-2,0],[3,10],[2,10],[3,9],[5,8],[-6,3],[18,12],[18,6],[39,3],[-14,8],[-55,7],[-7,7],[-1,12],[5,16],[1,10],[-4,11],[-2,12],[4,14],[10,10],[34,20],[5,5],[12,16],[7,5],[7,1],[74,0],[80,-21],[81,-21],[43,-31],[26,-28],[13,-19],[6,-22],[-6,-12],[2,-11],[10,-22],[-12,-7],[6,-4],[7,-9],[4,-10],[2,-12]],[[18101,95928],[-2,3],[-7,-1],[-3,2],[6,21],[5,4],[58,31],[54,13],[55,-2],[13,7],[96,4],[31,-9],[41,-22],[14,-2],[7,-4],[7,-9],[6,-13],[3,-15],[-10,-3],[-19,-17],[-13,-6],[-9,-11],[-4,-3],[-6,-1],[-44,13],[-82,1],[-82,1],[-25,9],[-85,9],[-5,0]],[[27900,94881],[6,-9],[14,-12],[13,-20],[29,-11],[-6,-11],[-10,-6],[-117,-24],[-17,-10],[-9,-2],[-11,2],[-58,25],[-3,2],[-1,3],[0,4],[3,9],[4,9],[0,9],[-7,9],[-7,4],[-3,-5],[1,-11],[4,-12],[-14,-11],[-6,1],[-7,10],[2,0],[-4,12],[-2,11],[-3,4],[-24,-16],[-4,-7],[7,-12],[9,-7],[70,-25],[0,-4],[-2,-1],[-1,-1],[-3,-2],[2,-3],[3,-7],[1,-3],[-9,-6],[-22,-4],[-9,-10],[26,-15],[7,-9],[-7,-7],[-8,-2],[-6,-3],[-2,-13],[7,-6],[2,-2],[-1,-2],[-4,-10],[11,-3],[-1,-8],[-9,-8],[-11,-5],[4,-9],[-13,-5],[-44,5],[-7,0],[-6,-3],[-12,-8],[-8,-3],[-80,5],[-79,4],[-57,-10],[-33,-21],[-20,-5],[-14,-10],[-17,0],[-32,-20],[-14,-5],[-17,4],[-10,-1],[-24,8],[-27,0],[-35,14],[-9,6],[-54,5],[0,1],[5,3],[4,5],[2,7],[-4,11],[-7,5],[-8,-1],[-6,-6],[1,-1],[3,-4],[-2,-3],[-2,-3],[-2,-2],[-27,-14],[-8,-2],[-11,2],[-10,5],[-5,1],[-12,-2],[-50,17],[-8,8],[-37,44],[-9,18],[-4,23],[1,7],[2,10],[4,9],[3,4],[10,3],[6,7],[-1,7],[-12,3],[1,14],[-5,7],[-8,2],[-17,-4],[-47,19],[-19,18],[-18,13],[-18,-6],[-2,-4],[1,-3],[1,-4],[9,-21],[6,-9],[8,-8],[17,-10],[15,-5],[7,-5],[3,-12],[-3,-9],[-16,-25],[2,-4],[-4,-8],[-9,-6],[-5,-7],[2,-4],[-5,-14],[-2,-12],[-2,-10],[-6,-10],[-6,-4],[-13,-4],[-11,-9],[-5,-2],[-6,0],[-12,5],[-100,-7],[-28,-15],[-31,-6],[-68,3],[-31,-6],[-7,4],[-5,5],[-5,4],[-6,1],[-13,-2],[-28,-11],[-20,5],[-1,2],[-3,6],[-2,6],[-2,12],[-4,3],[-5,3],[-3,5],[0,6],[3,10],[1,6],[-1,6],[-5,16],[9,8],[2,11],[-5,9],[-10,5],[2,-13],[-5,-8],[-9,-7],[-7,-9],[6,-7],[2,-6],[-1,-8],[-3,-12],[2,-2],[2,-2],[2,-8],[-1,0],[-3,-3],[2,-3],[2,-7],[2,-3],[-10,-16],[-15,-8],[-17,-3],[-41,1],[-7,6],[-2,7],[0,4],[1,5],[0,8],[-4,8],[-10,11],[-4,5],[-12,45],[-3,7],[-4,5],[-5,3],[-6,1],[-3,-3],[3,-8],[-2,-1],[-2,-3],[-2,-1],[6,-3],[1,-7],[0,-8],[1,-10],[1,-8],[11,-28],[1,-5],[-2,-5],[-12,-13],[-6,-5],[-14,-6],[-72,-4],[-73,-4],[12,32],[1,7],[-7,9],[-14,10],[-7,7],[5,4],[2,5],[-2,5],[-5,3],[-6,-1],[-6,-4],[-4,-7],[2,-10],[2,-18],[-8,-16],[-11,-12],[-7,-6],[-18,-6],[-17,2],[-61,28],[-14,12],[-2,14],[-6,0],[-4,3],[-2,7],[4,10],[-4,2],[-4,2],[-3,0],[-4,0],[0,-4],[3,-10],[-2,-15],[-1,-14],[6,-6],[12,-6],[24,-26],[13,-4],[0,-4],[-85,-4],[-7,2],[-19,17],[-1,4],[0,4],[-2,2],[-4,-3],[-3,-4],[-1,-4],[1,-3],[3,-4],[-6,-4],[-6,-2],[-13,-1],[2,0],[-41,-2],[-21,9],[-10,25],[11,2],[5,4],[5,6],[-20,-1],[-10,-4],[-8,-11],[-2,-5],[-2,-7],[-2,-6],[-3,-3],[-24,-7],[2,0],[-28,-8],[-15,1],[-11,9],[-3,5],[-1,3],[1,12],[-2,6],[-4,0],[-20,-17],[-10,-5],[-50,-3],[-15,5],[-11,12],[2,2],[-1,2],[-6,-4],[-11,-11],[-9,-3],[-77,11],[-4,5],[-4,7],[-3,11],[-2,9],[0,6],[1,5],[5,25],[3,9],[5,3],[3,4],[8,16],[8,12],[4,7],[1,7],[-1,7],[3,1],[2,3],[1,3],[-1,5],[2,4],[-1,4],[-6,4],[38,4],[0,4],[-7,4],[-32,0],[-4,1],[-7,3],[-3,0],[1,9],[2,7],[4,6],[4,3],[-3,7],[-19,31],[-4,3],[-9,0],[-1,-5],[3,-9],[6,-15],[-3,-8],[-6,-7],[-12,-5],[2,5],[0,6],[-1,5],[-3,4],[-5,2],[-4,-4],[-7,-17],[0,-3],[-1,-3],[-2,-3],[-3,-3],[-5,-3],[-3,-3],[-3,-4],[-2,-6],[-1,-6],[1,-6],[2,-12],[-5,-12],[-11,-15],[-4,-6],[-4,-5],[-4,-4],[-6,-1],[-4,2],[-2,5],[1,6],[2,3],[-2,5],[-5,7],[-3,5],[-1,5],[0,3],[1,2],[0,2],[1,10],[1,6],[-1,6],[-2,6],[-6,5],[-21,12],[-17,13],[-6,2],[4,-12],[6,-10],[7,-7],[8,-3],[-8,-27],[-6,-11],[-7,-1],[-6,4],[-14,4],[-24,14],[-8,1],[6,-5],[12,-17],[26,-15],[4,-6],[-1,-11],[-4,-15],[-5,-13],[-3,-7],[-14,-12],[-14,-3],[-38,3],[-3,-2],[-3,-4],[-3,-10],[-2,-3],[-3,-2],[-40,-4],[2,4],[-7,3],[-6,-2],[-14,-8],[-9,-3],[-30,2],[-31,-7],[-8,3],[-3,7],[-4,18],[-2,6],[-8,3],[-6,-2],[-9,-12],[-7,-5],[-6,-2],[-73,28],[14,10],[3,6],[-45,-14],[-25,2],[-38,22],[-8,10],[-2,8],[-2,9],[-2,9],[-3,7],[7,3],[3,3],[1,6],[-3,-1],[-2,-1],[-4,2],[-5,-4],[-14,-1],[-6,-3],[-3,-4],[-2,-4],[-1,-5],[-2,-3],[-9,-7],[-11,1],[-22,10],[9,20],[27,13],[13,13],[9,21],[4,3],[9,3],[4,4],[2,9],[-1,8],[-2,6],[1,5],[-5,3],[-4,1],[-9,0],[2,0],[-8,-4],[-6,-7],[-11,-18],[-55,-52],[-5,-2],[-5,2],[-4,2],[-5,2],[-4,-1],[-10,-7],[-3,-4],[1,-8],[4,-5],[5,-3],[3,-4],[1,-10],[17,-23],[5,-12],[-51,4],[2,4],[-8,12],[7,9],[-4,16],[-10,9],[-12,-9],[7,-4],[3,-6],[0,-7],[-2,-8],[-6,-8],[-8,-4],[-33,1],[-33,12],[-15,11],[4,4],[11,6],[4,7],[-13,9],[-14,3],[-27,-4],[4,-11],[-6,-3],[-9,2],[-8,4],[5,7],[16,9],[-15,8],[0,-4],[-14,8],[-30,11],[-12,15],[-1,8],[3,7],[6,12],[2,2],[2,0],[1,2],[1,6],[0,5],[0,3],[2,6],[-2,5],[-1,3],[0,2],[1,2],[-4,7],[-5,4],[-10,5],[9,7],[-4,9],[-37,36],[-8,5],[0,4],[4,1],[2,3],[0,6],[0,7],[-4,0],[-3,0],[-1,4],[2,4],[3,0],[3,0],[13,9],[28,-5],[12,8],[-22,12],[-7,8],[16,7],[1,4],[-5,3],[-46,-11],[-12,0],[-13,5],[1,10],[-5,3],[-7,1],[-6,3],[1,2],[1,6],[-8,2],[-17,12],[-9,2],[3,7],[8,7],[2,6],[0,7],[-1,8],[-3,9],[9,22],[3,7],[6,7],[15,7],[7,6],[-9,3],[-20,-5],[-8,2],[22,48],[23,33],[12,8],[5,5],[8,10],[4,3],[30,9],[12,6],[11,12],[-6,5],[-13,5],[-2,6],[3,7],[16,14],[-5,3],[-4,5],[-4,9],[-26,22],[-7,13],[2,4],[14,20],[2,6],[2,7],[1,9],[-4,19],[-3,7],[-6,7],[-10,6],[-23,2],[-40,16],[-8,9],[-3,10],[-3,3],[-4,1],[-10,1],[-5,2],[-4,5],[1,7],[-4,7],[-5,5],[-6,2],[-7,1],[-3,3],[-1,20],[-1,4],[-2,9],[-1,3],[1,3],[2,7],[1,3],[-3,10],[-6,9],[-6,6],[-13,5],[-7,7],[-5,9],[-2,12],[-4,8],[-10,6],[-25,7],[-22,26],[-12,9],[-6,6],[-3,10],[2,1],[6,7],[-1,3],[-1,2],[-1,1],[-1,2],[2,0],[-19,12],[-22,3],[-23,-3],[-84,-42],[-22,1],[4,3],[7,3],[3,2],[-4,8],[-12,0],[-5,-3],[-6,-5],[-10,-14],[-3,-2],[8,-8],[20,-2],[8,-6],[-19,-5],[-39,11],[-27,-5],[-19,2],[-16,-3],[-33,14],[-116,-6],[-17,8],[5,3],[1,1],[-5,7],[-2,1],[1,4],[-23,0],[-3,-2],[-12,-16],[-13,-9],[-42,-9],[-5,-5],[-7,-9],[-5,-3],[-7,1],[-22,8],[-63,0],[2,5],[0,3],[0,3],[-2,5],[2,10],[3,9],[4,4],[19,-10],[53,11],[7,4],[1,3],[-1,2],[0,3],[12,4],[42,0],[11,-7],[-2,-2],[-2,-2],[-2,-5],[5,0],[5,1],[4,4],[3,7],[-11,7],[-79,17],[-9,-7],[-5,-4],[-6,3],[-11,10],[-4,2],[-5,2],[-9,-1],[-3,-1],[-8,-7],[-16,-3],[-9,1],[-6,6],[2,7],[7,4],[8,2],[4,3],[-12,2],[-37,-10],[-75,9],[-6,3],[-14,11],[-22,8],[-18,16],[-19,22],[7,11],[7,3],[73,-1],[10,3],[10,7],[33,33],[4,9],[-9,-1],[-7,-3],[-29,-26],[-9,-3],[-5,4],[0,4],[-7,1],[-25,-8],[-30,0],[1,6],[2,4],[3,3],[3,2],[-10,5],[-21,-6],[-10,3],[-7,5],[-2,3],[-2,5],[-4,5],[-14,5],[2,2],[3,6],[-40,1],[-13,6],[-8,7],[-4,5],[-1,7],[-3,6],[-7,3],[-50,9],[-24,-7],[-29,2],[-15,8],[-11,14],[8,0],[10,4],[9,7],[7,9],[-5,0],[-6,3],[-5,5],[-1,9],[4,6],[6,1],[14,-4],[6,-6],[2,-2],[4,0],[6,1],[3,-1],[18,-12],[-4,-6],[3,-4],[5,-1],[5,-1],[20,8],[10,2],[8,-6],[0,4],[28,-12],[16,0],[11,8],[-4,2],[-14,-2],[-5,2],[-9,5],[-19,5],[-6,0],[-14,-4],[-5,0],[0,4],[6,2],[15,2],[0,4],[-5,5],[2,2],[2,2],[5,0],[4,-2],[6,-6],[3,-1],[29,3],[8,6],[-79,19],[-5,5],[-19,10],[-8,2],[-20,-2],[-10,3],[-8,12],[-4,15],[4,8],[22,7],[16,-2],[15,8],[-11,7],[-12,4],[-24,1],[3,6],[4,2],[10,0],[-2,0],[82,-8],[-2,-8],[4,0],[2,2],[1,4],[2,2],[16,5],[5,5],[8,2],[12,-4],[11,1],[6,11],[-18,0],[0,4],[2,0],[-5,7],[-13,2],[-6,3],[108,10],[30,12],[34,4],[29,-9],[67,0],[6,-3],[13,-8],[13,-3],[20,-15],[13,-5],[52,-5],[13,-8],[7,-2],[118,-5],[2,-3],[1,-4],[0,-3],[-1,-3],[0,-2],[3,-5],[4,-5],[5,-5],[4,-1],[37,2],[12,-6],[2,-3],[0,-3],[1,-3],[3,-2],[3,-2],[33,-1],[21,10],[9,12],[6,4],[6,3],[12,1],[27,-10],[34,-1],[8,-3],[8,-8],[7,-13],[9,-11],[22,-7],[12,-13],[9,-2],[4,-1],[2,-3],[4,-8],[1,-1],[15,-4],[14,-9],[-4,-4],[0,-4],[8,-8],[4,-3],[4,-1],[10,4],[3,0],[3,-8],[2,-12],[0,-23],[-3,-8],[-20,-24],[0,-3],[0,-11],[-1,-4],[-5,-5],[-5,-5],[-3,-6],[3,-8],[-10,-11],[-24,-13],[-12,-9],[-3,-6],[-2,-2],[-5,-3],[-36,-15],[-7,-6],[12,-18],[15,-12],[15,-3],[13,12],[-19,0],[-9,2],[-6,10],[21,14],[35,8],[5,2],[3,4],[5,9],[4,4],[15,10],[5,4],[3,5],[3,11],[2,3],[9,2],[9,5],[16,17],[-1,2],[-4,10],[9,7],[36,1],[9,-5],[29,-3],[25,-11],[9,-1],[47,15],[17,-3],[17,-9],[9,-1],[9,2],[28,12],[22,-2],[40,22],[2,4],[78,9],[78,9],[84,-13],[13,-7],[23,-2],[25,-8],[12,-9],[10,-13],[10,-11],[65,-14],[11,-8],[10,-14],[-3,-4],[-2,-3],[-2,-3],[-3,-2],[4,-7],[4,-2],[9,-3],[-6,-11],[-45,-7],[-75,18],[-7,6],[-8,10],[-7,4],[-6,-12],[1,-1],[3,-3],[-17,-7],[-20,0],[-57,21],[-60,-6],[0,-4],[13,-2],[13,-6],[5,-4],[10,-9],[5,-3],[114,-5],[8,-7],[2,-1],[41,-2],[21,-8],[25,-2],[17,-15],[6,1],[13,8],[17,3],[107,-22],[106,-22],[107,-22],[1,-1],[1,-5],[2,-2],[18,-12],[7,-11],[-4,-14],[-4,-1],[-8,2],[-4,-1],[-2,-2],[-3,-7],[-2,-3],[-6,-4],[-19,-8],[-100,-1],[-99,-1],[-100,-2],[8,-9],[92,-7],[13,-8],[-12,-7],[-14,2],[-26,9],[-128,16],[-129,16],[-21,16],[-104,25],[7,-6],[16,-2],[8,-1],[9,-6],[54,-18],[4,-6],[-3,-7],[-23,-7],[-1,-4],[-15,-8],[0,-4],[12,-3],[34,11],[127,-19],[13,-5],[14,0],[6,-5],[-4,-2],[-9,0],[-4,-2],[-2,-3],[-1,-3],[0,-4],[-1,-2],[-8,-6],[-8,-2],[-18,1],[0,-5],[41,-7],[9,5],[8,8],[10,6],[19,5],[101,-17],[-11,-15],[-17,-6],[-113,1],[-113,0],[-16,-8],[14,-5],[34,5],[13,-8],[-9,-6],[-18,2],[-9,-4],[6,-5],[14,-6],[6,-1],[6,-4],[3,-7],[0,-7],[-6,-3],[-12,-1],[-26,-10],[-12,-9],[2,-6],[4,-7],[1,-7],[-2,-15],[0,-5],[6,7],[0,-4],[6,5],[5,15],[4,5],[-2,6],[-1,2],[6,4],[31,12],[22,18],[5,7],[7,15],[3,4],[7,2],[11,-2],[10,-5],[6,-7],[-9,0],[-4,-2],[-4,-6],[10,-5],[11,2],[30,16],[12,0],[12,-2],[11,-6],[-8,-7],[-9,-5],[-8,-7],[-4,-14],[4,-11],[7,4],[16,18],[21,8],[3,3],[3,9],[6,3],[20,-3],[4,-4],[9,-11],[6,-3],[17,-1],[1,10],[8,15],[1,8],[8,10],[12,5],[12,-2],[10,-5],[-5,-4],[-4,-7],[0,-7],[5,-2],[26,-3],[5,-4],[3,-7],[3,-6],[3,-4],[6,-4],[24,-13],[-6,-13],[-16,-23],[-4,-13],[2,-1],[5,-7],[-1,-2],[-4,-6],[3,-2],[5,-1],[5,1],[4,2],[2,4],[7,12],[4,1],[14,10],[5,1],[6,-1],[5,2],[2,7],[-19,0],[2,3],[2,1],[2,1],[3,-1],[21,-1],[20,-7],[34,-24],[34,-7],[7,-7],[2,-11],[-1,-9],[-7,-14],[-4,-9],[-8,-28],[-6,-15],[0,-2],[-4,-2],[-10,3],[-27,-12],[-67,3],[-5,-9],[-9,-8],[-10,-5],[-8,-2],[14,-5],[31,12],[15,-11],[-10,-6],[-24,3],[-11,-5],[9,-7],[37,3],[9,3],[17,14],[9,3],[58,-1],[5,-5],[5,-9],[7,-21],[2,-3],[8,-3],[1,-5],[0,-6],[1,-6],[7,-4],[23,-5],[4,-3],[-2,-11],[5,-7],[8,-3],[6,-1],[43,4],[0,6],[4,14],[-1,6],[-10,27],[-7,14],[-24,34],[27,12],[13,10],[0,19],[10,5],[10,-2],[20,-11],[9,-3],[27,-30],[42,-28],[30,-9],[6,-7],[1,-9],[-3,-3],[-9,-1],[-13,-7],[-4,-1],[0,-4],[16,-8],[5,-4],[0,4],[4,-3],[3,3],[3,4],[3,4],[52,25],[-2,0],[2,3],[3,3],[4,2],[4,0],[-2,0],[59,20],[22,-7],[10,-8],[1,-11],[4,-8],[25,-16],[8,-3],[-4,-10],[-9,-6],[-9,-3],[-8,-1],[0,-4],[25,-1],[13,4],[10,9],[2,17],[-8,10],[-10,7],[-5,9],[0,10],[2,3],[11,1],[4,3],[9,8],[3,1],[1,3],[2,5],[3,6],[5,3],[27,4],[43,-17],[4,-4],[2,-5],[1,-5],[3,-6],[4,-6],[79,-44],[55,1],[17,-6],[34,-22],[9,0],[-8,-10],[-8,-5],[-55,-22],[60,5],[57,23],[57,4],[49,-8],[82,-4],[0,4],[-6,3],[-2,0],[-2,-3],[-7,6],[-58,7],[-12,5],[-21,16],[-56,11],[-4,3],[-5,6],[-2,5],[3,2],[12,3],[24,11],[82,13],[34,23],[18,3],[-10,-11],[-1,-6],[6,-3],[24,-4],[20,7],[45,-7],[0,4],[-20,4],[-7,0],[1,3],[0,1],[5,4],[2,0],[3,0],[-2,3],[-2,1],[0,4],[23,0],[4,2],[2,4],[1,5],[3,5],[5,2],[18,-2],[6,2],[11,5],[6,2],[0,4],[-5,2],[-4,1],[67,0],[63,-19],[21,7],[-10,5],[-23,0],[-10,4],[5,6],[-1,6],[-6,12],[104,13],[22,24],[9,6],[44,5],[24,18],[4,7],[-18,4],[-5,5],[45,-9],[29,7],[10,-3],[-4,-3],[-11,-5],[20,-9],[45,4],[25,-26],[9,-4],[36,-3],[19,7],[7,0],[15,-9],[8,0],[129,48],[24,0],[10,5],[24,0],[24,8],[113,-12],[113,-13],[112,-13],[4,-3],[1,-8],[-3,-3],[-5,-8],[-3,-2],[-5,-1],[-4,-3],[-20,-22],[-13,-18],[10,-6],[21,2],[10,-2],[11,-6],[23,-4],[72,7],[71,8],[10,-4],[2,-1],[2,-5],[2,-1],[8,-4],[22,1],[32,-12],[12,-10],[19,-4],[9,-5],[5,-11],[-3,-1],[-2,-2],[-2,-4],[-1,-5],[10,-2],[20,3],[8,-5],[-12,-10],[-96,-24],[-10,-11],[101,2],[101,1],[15,-6],[6,-5],[-16,1],[-8,-2],[-6,-7],[15,-16],[9,-5],[10,-3],[11,-1],[5,-2],[3,-6],[-1,-8],[-3,-4],[-4,-1],[-4,-3],[2,-1],[3,-2],[1,-1],[-6,-12],[-18,-5],[-5,-9],[7,-9],[41,-1],[-2,-7],[-1,-2],[-12,-8],[-4,-4],[-1,-13],[-25,-19],[-6,-10],[-34,-6],[-14,3],[-4,1],[-3,-1],[-2,-2],[-1,-2],[0,-3],[-3,-5],[-5,-2],[-11,-2],[-5,-1],[-4,-4],[-3,-4],[-3,-7],[-1,-6],[0,-5],[-2,-4],[-88,-20],[-10,-11],[-6,-3],[-28,0],[26,-15],[8,-7],[10,-5],[21,0],[9,-5],[-22,-5],[-5,-5],[0,-7],[7,-2],[15,3],[16,7],[9,2],[7,-3],[6,-4],[4,1],[4,6],[3,7],[-2,0],[69,28],[10,0],[28,-8],[14,1],[24,-13],[-8,0],[-4,-1],[-3,-3]],[[16856,95596],[-5,5],[-8,11],[-4,4],[-18,11],[-4,7],[-3,9],[-3,45],[-2,4],[-4,1],[-6,-1],[-2,-3],[0,-4],[-1,-7],[-12,-10],[-26,11],[-13,-2],[0,-5],[5,0],[6,-2],[4,-6],[2,-10],[-1,-12],[-4,-4],[-10,-2],[4,-6],[27,-32],[6,-4],[1,-3],[0,-3],[1,-3],[1,-5],[-2,-3],[-13,-3],[-15,2],[-8,-1],[8,-13],[11,-5],[13,-1],[10,-5],[-7,-7],[-64,2],[6,-5],[7,-4],[21,-4],[45,-24],[9,-9],[4,-18],[-3,-19],[-7,-4],[-9,4],[-14,12],[-6,2],[-5,-2],[-6,-5],[-13,-25],[15,-4],[8,-5],[4,-7],[-6,0],[-15,4],[-6,-1],[-3,-4],[-7,-9],[-10,-10],[-24,-14],[-51,-10],[-10,7],[-1,5],[-1,7],[-2,6],[-4,2],[-6,2],[-4,4],[-4,0],[-5,-8],[-7,-12],[-7,-10],[-9,-9],[-9,-7],[-12,-5],[-14,-3],[-14,2],[-11,11],[-3,10],[1,10],[6,20],[0,6],[0,5],[1,5],[1,6],[5,6],[10,10],[4,7],[-15,3],[-2,2],[0,5],[3,6],[0,4],[-6,5],[-34,-5],[2,-2],[3,-5],[1,-1],[-10,-4],[-12,3],[-12,9],[-10,12],[-4,17],[5,11],[18,17],[-6,2],[-18,-8],[-4,6],[2,12],[7,6],[10,3],[6,3],[-9,10],[-28,9],[-15,13],[-5,2],[-4,-1],[-19,-11],[-11,-10],[-6,-15],[3,-21],[-4,-3],[-2,-6],[-1,-8],[0,-8],[10,-17],[5,-5],[2,-6],[1,-11],[2,-9],[3,-4],[1,-3],[-4,-6],[-6,-5],[-5,-3],[-6,4],[-1,8],[3,8],[6,5],[-14,10],[-23,-2],[-24,-9],[-15,-12],[-3,-7],[-4,-19],[-5,-6],[-3,1],[-12,12],[-17,3],[-6,4],[2,2],[4,6],[-10,5],[-4,4],[-4,5],[-4,4],[-16,3],[-37,15],[-37,7],[-8,9],[-55,-7],[-14,4],[-8,0],[-7,-4],[2,-1],[3,-2],[1,-1],[-4,-12],[-1,-6],[2,-2],[2,-1],[1,-2],[-1,-3],[-1,-3],[-2,-1],[-13,1],[-51,-24],[-14,-3],[-54,6],[-31,21],[12,2],[13,4],[12,9],[10,14],[-5,-1],[-8,-6],[-5,-1],[-20,4],[7,4],[20,4],[21,16],[-2,4],[8,10],[6,11],[0,8],[-10,4],[-52,-5],[5,5],[54,12],[-5,3],[-6,1],[-12,0],[0,10],[-8,4],[-18,2],[-28,-14],[-9,-2],[-7,2],[-3,-1],[-1,-7],[-2,-4],[-11,-15],[-10,-7],[-11,-3],[-21,-2],[4,3],[9,4],[4,5],[-6,7],[-2,2],[14,5],[2,5],[1,7],[3,3],[3,1],[4,-1],[-2,5],[-2,3],[-3,3],[-2,1],[5,7],[9,-4],[9,0],[8,33],[11,0],[12,-5],[10,1],[-4,0],[4,9],[7,5],[13,6],[2,4],[-1,7],[-1,6],[-3,4],[5,16],[4,9],[7,7],[40,16],[13,13],[6,3],[116,17],[51,-7],[63,7],[12,6],[1,4],[1,3],[0,3],[-1,1],[2,2],[21,18],[4,8],[-1,24],[12,9],[13,5],[3,11],[16,8],[7,7],[3,11],[1,13],[3,10],[5,6],[7,2],[4,-2],[11,-10],[5,-1],[14,8],[33,7],[29,22],[73,16],[8,5],[3,9],[40,18],[-1,2],[-3,5],[-1,2],[1,2],[3,4],[1,2],[-4,2],[-5,3],[-4,5],[-4,6],[17,14],[39,6],[17,17],[-4,1],[-2,4],[0,4],[4,4],[17,7],[5,0],[-2,14],[3,10],[7,6],[8,2],[20,-2],[10,2],[6,12],[-4,4],[6,3],[13,2],[5,6],[1,7],[0,7],[2,6],[28,10],[21,0],[6,4],[0,12],[8,5],[48,17],[11,7],[4,7],[8,21],[4,4],[1,3],[10,22],[6,5],[10,5],[10,7],[9,5],[9,2],[46,-6],[25,11],[4,3],[8,9],[3,2],[11,-4],[6,0],[17,6],[72,-1],[72,-1],[22,11],[69,6],[0,-4],[-8,0],[-15,-7],[-7,-1],[7,-5],[38,7],[4,-2],[3,-3],[6,-10],[2,-3],[4,-1],[13,1],[5,-1],[14,-7],[39,4],[1,-1],[3,-8],[1,-3],[5,-1],[16,1],[17,-5],[16,-11],[9,-2],[27,10],[26,-5],[8,5],[-15,19],[-9,6],[-12,-5],[-5,1],[-5,2],[-2,5],[3,6],[5,3],[34,-7],[48,-20],[13,-1],[10,7],[-3,1],[-7,7],[12,8],[24,9],[10,11],[-8,5],[-20,2],[-8,-3],[-14,-8],[-7,1],[0,12],[-25,-4],[-15,1],[-6,9],[-5,10],[-33,16],[6,5],[6,4],[13,3],[-2,-8],[4,-2],[5,0],[10,5],[6,1],[13,-1],[6,2],[43,23],[-4,4],[-43,5],[7,5],[138,15],[-2,-2],[-4,-6],[25,-5],[-5,-6],[-1,-1],[31,-1],[9,-3],[32,-18],[10,-3],[-13,-5],[-4,-3],[11,-7],[54,-11],[11,-8],[14,2],[7,-1],[33,-24],[23,-7],[23,-14],[12,-3],[-1,-2],[0,-2],[-1,-2],[-2,-2],[5,-4],[11,-6],[3,-6],[-18,0],[-3,-2],[-7,-5],[-3,-2],[-1,-1],[-2,-8],[-2,-2],[-4,-3],[-40,-5],[-13,-5],[-13,0],[-11,-7],[-10,-4],[-14,-11],[-7,-2],[-89,-10],[-8,-3],[0,-7],[-2,-5],[2,-3],[-7,-10],[-20,-2],[-8,-5],[6,-5],[21,-6],[4,-4],[1,-4],[0,-6],[1,-7],[7,-16],[10,-8],[108,-41],[15,-1],[7,-4],[6,-9],[-5,-9],[-44,-22],[-32,1],[-65,25],[-19,3],[-11,-8],[2,-15],[12,-10],[15,-7],[24,-22],[37,-7],[13,-21],[-1,-6],[0,-5],[1,-5],[9,-9],[16,-23],[3,-8],[-5,-3],[-18,-3],[-6,-4],[-3,-3],[-1,-2],[0,-4],[-1,-2],[-9,-12],[-9,-8],[-68,-29],[-35,-1],[-12,-5],[-7,-2],[-67,3],[-6,-2],[-6,-5],[-7,-10],[-4,-2],[-32,9],[-13,-2],[-19,-15],[-1,-4],[2,-8],[4,-7],[5,-3],[5,-3],[5,-4],[-2,-4],[7,-5],[-1,-7],[-3,-8],[2,-10],[10,-11],[4,-7],[-2,-8],[1,-3],[2,-6],[1,-3],[-4,-6],[-5,-4],[-6,-2],[-5,0],[-5,-2],[-31,-25],[-39,-6],[-15,-11],[-6,-1],[-61,7],[-19,11],[-6,2],[3,14],[-7,5],[-40,0],[-11,3],[-6,11],[4,0],[-39,31],[-14,5],[1,3],[2,3],[4,6],[-1,2],[-4,7],[17,12],[-6,7],[-3,3],[-3,2],[6,11],[29,17],[-3,7],[-11,13],[4,3],[7,3],[3,2],[-15,7],[-4,6],[10,10],[11,14],[-3,3],[-2,5],[-2,6],[-1,6],[3,10],[5,4],[11,5],[27,28],[7,14],[-10,18],[-13,8],[-13,0],[-11,-9],[-14,-16],[-7,-5],[-8,-4],[-10,-1],[-81,4],[0,-4],[6,-6],[3,-7],[0,-13],[-2,-6],[-4,-1],[-47,6],[2,-4],[3,-4],[2,-3],[3,-1],[-1,-2],[-2,-5],[-1,-2],[12,-9],[13,-5],[10,-9],[6,-33],[7,-13],[-1,-7],[-6,-3],[-30,3],[-12,-6],[-3,-3],[-2,-4],[1,-3],[-1,-4],[-2,-5],[-9,-6],[-38,4],[-6,6],[-10,14],[-7,5],[-10,3],[-10,1],[-7,-2],[4,-5],[6,-4],[11,-4],[-13,-3],[-18,1],[-16,-4],[-8,-18],[9,-4],[29,-5],[2,-2],[2,-4],[1,-4],[1,-1],[5,-2],[18,2],[8,-2],[9,-6],[7,-8],[14,-26],[1,-7],[-5,-4],[11,-11],[1,-4],[-3,-5],[-7,-9],[-3,-6],[-10,-12],[-11,-4],[-47,1],[-11,-6],[-8,-13],[-2,-14],[1,-14],[5,-10],[7,-3],[-3,-7],[-12,-1],[-6,-4],[-1,-7],[2,-5],[-1,-5],[-7,-4],[-13,0],[-6,-1],[-6,-7],[0,-2],[0,-5],[1,-3],[1,-1],[-3,-4],[-3,-1],[-7,3],[-11,9],[-6,2],[-11,-1],[-7,2],[-6,4],[-5,5],[-5,12],[0,23],[-4,7]],[[26344,96342],[-5,3],[2,8],[9,13],[-4,8],[-6,2],[-7,1],[-12,9],[-83,4],[5,5],[16,4],[5,3],[9,7],[10,3],[10,6],[6,1],[85,-3],[7,-7],[13,-22],[3,-4],[9,-4],[8,-1],[8,-2],[8,-10],[-15,-10],[-50,-14],[-31,0]],[[25094,96281],[4,-7],[0,-7],[-3,-5],[-37,-31],[-84,-40],[-20,5],[-10,-1],[-10,-3],[-35,-4],[-12,3],[-3,3],[0,3],[6,6],[2,5],[-74,22],[-75,22],[-36,27],[-13,6],[-5,6],[-4,7],[-13,6],[-5,8],[-1,7],[2,7],[4,7],[3,5],[-7,34],[-4,6],[3,8],[2,3],[2,1],[-1,7],[-6,14],[2,3],[2,5],[2,6],[1,6],[4,5],[13,3],[9,-4],[10,3],[27,18],[21,4],[80,-9],[80,-8],[22,-11],[2,-3],[2,-2],[0,-3],[2,-3],[5,-3],[11,-2],[103,-58],[17,-16],[-3,-9],[2,-11],[3,-12],[4,-9],[-3,0],[-2,-2],[-2,-4],[1,-6],[3,-6],[4,-1],[4,1],[4,-2]],[[21001,96184],[-15,-24],[-18,-6],[-37,-3],[-30,-15],[-10,-1],[-9,4],[-9,6],[-16,16],[-12,9],[-13,4],[-27,2],[-23,-8],[-11,0],[-11,8],[4,12],[1,4],[-9,6],[-22,-2],[-11,4],[0,4],[5,-4],[6,-1],[6,1],[5,4],[-10,12],[-10,8],[-22,9],[3,3],[5,1],[9,-1],[0,4],[-23,5],[-13,5],[-8,11],[-2,6],[0,4],[2,10],[4,6],[2,3],[-2,-1],[-6,7],[-8,2],[-17,-1],[2,6],[2,3],[6,4],[-4,4],[-13,8],[8,9],[-6,8],[-23,7],[2,8],[4,4],[5,1],[4,3],[6,9],[2,5],[-3,2],[-6,2],[-12,5],[-24,6],[-5,4],[10,7],[1,5],[-5,4],[4,12],[-5,15],[-9,13],[-8,8],[-41,23],[-11,12],[-1,8],[5,6],[47,17],[72,-8],[13,-9],[27,-11],[71,-54],[70,-55],[9,-12],[3,-17],[-6,-9],[-9,-7],[0,-11],[0,-6],[-2,-6],[0,-4],[4,-2],[58,6],[12,-2],[5,-15],[7,-6],[45,-23],[11,-11],[4,-2],[14,-4],[5,-4],[-4,-3],[-5,-1],[-3,-2],[-3,-7],[8,-5],[7,-1],[7,-2],[4,-12],[3,-11],[-1,-2],[-6,-23]],[[24096,96452],[-23,0],[-11,-6],[-9,-15],[2,-2],[3,-2],[2,-4],[2,-4],[-28,-18],[-1,-4],[-2,-2],[-1,-3],[3,-9],[-1,-5],[-3,-4],[-3,-3],[8,-12],[-7,-14],[-12,-11],[-10,-3],[-18,7],[-9,0],[-9,-3],[-9,-1],[-18,7],[-9,1],[4,-4],[12,-4],[5,0],[-5,-5],[-7,1],[-13,4],[-29,-4],[1,2],[0,2],[0,2],[1,2],[-7,5],[-8,0],[-23,-6],[-39,4],[-28,12],[-115,0],[-115,0],[-115,1],[-115,0],[-25,11],[-4,4],[-9,14],[-50,39],[-7,9],[6,1],[6,3],[3,4],[-6,4],[3,5],[1,3],[-1,4],[-1,5],[9,0],[1,5],[-2,8],[0,7],[7,8],[29,5],[25,14],[17,3],[23,11],[48,6],[9,5],[4,0],[10,-4],[5,2],[32,20],[17,1],[12,-18],[-3,-13],[3,-8],[6,-3],[7,-1],[6,5],[6,8],[5,5],[15,-14],[11,0],[32,7],[28,18],[10,2],[83,-5],[82,-5],[-4,-8],[19,0],[-3,6],[-1,2],[38,-8],[11,0],[21,7],[10,-5],[5,-4],[10,-5],[9,-7],[3,1],[3,3],[3,1],[17,-5],[6,1],[2,4],[3,6],[3,5],[5,2],[48,8],[10,-2],[31,-14],[10,2],[4,0],[11,-9],[6,-2],[21,0],[9,-4],[9,-6],[8,-10],[5,-8],[16,-16],[-30,-12],[-12,0]],[[28452,96578],[-4,-7],[-2,-2],[0,-4],[3,-6],[-4,-5],[-21,-12],[-25,-1],[-25,-9],[-8,3],[-11,14],[-10,16],[19,10],[66,11],[15,-4],[7,-4]],[[21542,96508],[3,0],[3,2],[2,4],[2,7],[-7,1],[-9,5],[-8,7],[-5,7],[5,8],[-1,6],[-8,10],[10,17],[13,10],[14,5],[82,2],[83,1],[22,7],[7,-1],[15,-9],[120,-29],[71,-48],[7,-9],[-8,-9],[-7,-2],[-16,3],[-29,-7],[-54,7],[-16,-6],[-13,0],[-15,5],[-16,1],[-17,-18],[-47,-12],[-108,9],[-31,14],[-44,8],[0,4]],[[18420,96583],[4,-12],[20,-8],[7,-10],[-8,-3],[-33,-24],[-122,-37],[-38,4],[-50,22],[-39,3],[-9,7],[8,4],[30,-8],[-6,13],[-12,8],[-24,7],[-37,25],[-16,5],[-72,60],[5,3],[8,2],[8,0],[14,-6],[6,-1],[6,2],[13,8],[29,5],[8,5],[7,5],[17,21],[50,8],[31,17],[17,2],[13,-11],[-3,-6],[-16,-10],[5,-4],[17,-8],[-13,0],[17,-15],[39,7],[14,-17],[-1,0],[23,-21],[3,-5],[7,-6],[59,-10],[10,-7],[4,-14]],[[19554,96706],[6,-12],[-5,-13],[-16,-20],[-5,-12],[-3,-4],[-28,-12],[-60,-11],[-33,-6],[-28,-14],[-86,-8],[-85,-9],[-18,-10],[7,-18],[28,-11],[7,-11],[9,-11],[87,4],[18,7],[59,-2],[6,-3],[6,-7],[2,-7],[-4,-4],[1,-5],[1,-3],[-7,-15],[-1,-1],[1,-8],[4,-5],[8,-7],[-1,-2],[-1,-4],[-1,-2],[2,-4],[3,-2],[3,-2],[3,0],[-4,-8],[-6,-4],[-13,-4],[-7,-5],[-4,-5],[1,-5],[14,-3],[5,-3],[1,-6],[-2,-10],[-5,-7],[-14,-7],[-20,-16],[-94,-29],[-38,-2],[-10,-4],[-12,0],[-3,-1],[-8,-11],[-14,-8],[-87,6],[-16,6],[-9,0],[-33,-17],[-134,-30],[-30,-14],[-33,-2],[-100,27],[-7,5],[-3,5],[-8,14],[-18,25],[-10,6],[-12,-2],[-14,-6],[-13,-1],[-42,9],[-8,4],[-3,7],[-2,11],[-5,6],[-12,4],[-36,-2],[-10,8],[-2,9],[-1,11],[-2,8],[-6,4],[7,11],[26,8],[9,5],[-6,6],[-19,10],[2,0],[-5,5],[-12,3],[-6,5],[5,2],[5,4],[3,7],[0,9],[-6,8],[-1,3],[2,4],[4,2],[7,1],[-22,12],[-11,10],[-5,19],[3,18],[9,14],[19,17],[-8,8],[28,11],[15,0],[11,-9],[5,-5],[6,-2],[7,1],[7,3],[3,5],[3,6],[3,5],[5,1],[-2,0],[89,25],[89,24],[13,-3],[16,-1],[31,10],[29,-2],[36,19],[6,-1],[4,-8],[3,-5],[9,-1],[9,1],[6,2],[14,9],[31,11],[38,3],[31,11],[20,-5],[55,9],[2,-1],[0,-3],[0,-3],[1,-4],[5,-3],[33,-3],[11,3],[31,18],[98,-1],[98,-2],[85,-1],[26,-14]],[[21416,96825],[19,-5],[9,-6],[5,-11],[0,-6],[1,-4],[0,-3],[-1,-5],[-5,-4],[-19,-7],[-49,-36],[-11,-3],[-41,3],[-10,7],[-4,13],[3,11],[7,9],[51,39],[11,5],[34,3]],[[25539,96930],[3,-17],[-9,-14],[-22,-21],[2,-14],[-3,-14],[-7,-12],[-6,-9],[-10,-12],[-12,-8],[-12,-4],[-13,3],[-7,8],[-2,12],[3,13],[6,10],[11,11],[13,7],[25,5],[-1,4],[-2,2],[-2,1],[-3,0],[-4,2],[0,4],[3,7],[0,8],[0,7],[1,5],[3,5],[4,3],[4,1],[9,-1],[3,2],[5,5],[12,5],[4,0],[4,-4]],[[19650,96934],[-16,-10],[-5,-8],[6,-10],[-9,-9],[-3,-3],[9,-10],[-4,-12],[-18,-18],[-1,-3],[0,-3],[0,-2],[-5,-1],[-23,5],[-88,-13],[-13,5],[-25,15],[-12,0],[-2,0],[-89,-25],[-71,8],[-70,9],[-6,5],[0,9],[-7,4],[-17,3],[-22,14],[-35,10],[-18,-6],[-20,-1],[-7,-6],[4,-6],[6,-6],[6,-5],[5,-2],[-11,-9],[-37,5],[-6,-13],[2,-3],[5,-2],[1,-5],[-1,-6],[-3,-3],[-4,-1],[-96,-3],[-16,9],[-9,10],[-2,4],[-4,12],[-6,4],[-16,6],[-3,3],[-13,1],[-41,15],[-81,-15],[-80,-15],[-6,-5],[-3,-6],[5,-8],[-10,8],[-10,-1],[-61,-19],[-35,-1],[-17,7],[-13,18],[4,5],[-15,8],[32,16],[-1,6],[0,6],[0,5],[-3,3],[5,5],[18,2],[5,3],[9,8],[89,27],[27,14],[53,9],[38,16],[57,10],[32,-3],[30,5],[31,-7],[110,35],[12,10],[-17,12],[34,2],[6,8],[5,5],[31,17],[9,-4],[42,17],[38,6],[14,8],[9,3],[5,5],[3,0],[2,-2],[3,-1],[80,8],[8,-7],[8,-6],[36,-10],[28,-17],[30,-3],[7,-4],[12,-5],[21,-1],[8,-7],[0,-11],[5,-6],[7,-3],[15,-2],[27,-14],[-2,-4],[10,-6],[36,2],[3,-2],[4,-9],[4,-2],[5,0],[11,-6],[17,-14],[3,-4],[2,-6],[-1,-5],[0,-4],[3,-4],[5,-1],[5,1],[5,-1],[2,-6],[-2,-4],[-3,-3],[0,-4],[5,-4]],[[29289,97125],[13,-6],[54,-9],[42,-17],[-7,-13],[-14,-9],[-25,-7],[-100,26],[-3,3],[-1,5],[3,7],[2,1],[6,1],[2,2],[1,3],[2,8],[2,3],[4,4],[19,-2]],[[23080,96541],[-36,8],[-14,-2],[-3,2],[-1,4],[1,5],[1,3],[1,0],[0,3],[1,2],[1,3],[0,4],[-3,5],[-2,2],[-3,3],[-2,7],[8,2],[12,7],[10,10],[6,9],[-97,20],[-25,21],[-66,20],[-15,-1],[-8,1],[-6,8],[9,0],[17,8],[8,0],[-2,3],[-4,7],[-3,2],[8,13],[100,-5],[100,-5],[11,6],[11,11],[-4,-1],[-4,1],[-3,3],[-2,6],[3,0],[2,1],[3,3],[2,4],[-8,5],[-22,6],[-17,-2],[-38,14],[-15,11],[-46,10],[-39,-3],[-82,12],[-17,-5],[-8,1],[-2,8],[1,6],[9,0],[19,-6],[0,4],[2,-4],[2,4],[8,1],[3,3],[-20,16],[-20,10],[-43,10],[2,8],[4,4],[4,2],[5,3],[-5,6],[-11,11],[-6,2],[3,9],[4,3],[5,2],[4,3],[-10,4],[-41,6],[-39,22],[-4,3],[-3,5],[-7,14],[-1,3],[3,11],[6,5],[16,0],[-9,8],[4,5],[5,0],[9,-5],[60,0],[6,2],[6,4],[2,5],[-7,1],[0,4],[2,1],[4,3],[-8,7],[-23,13],[-7,1],[-16,-1],[-7,5],[4,8],[-6,5],[-17,8],[-4,5],[0,17],[1,7],[3,7],[-12,7],[-3,5],[4,2],[7,7],[4,3],[-9,6],[-4,5],[2,5],[57,26],[97,-6],[97,-7],[29,-14],[108,-23],[18,-18],[52,-10],[30,4],[15,-5],[57,-35],[7,-3],[7,1],[14,5],[5,0],[15,-4],[2,-3],[-2,-5],[-5,-6],[-8,-4],[0,-6],[0,-7],[-2,-6],[-4,-4],[-4,-2],[-4,-3],[-3,-7],[102,-28],[11,2],[34,18],[12,3],[67,-9],[55,-25],[40,-8],[51,-31],[17,-5],[4,-5],[9,-13],[-6,-11],[-9,-6],[-136,-52],[-9,-8],[19,-10],[42,-6],[21,-9],[4,-16],[57,-33],[-10,-13],[2,-5],[8,-6],[0,-4],[-5,0],[-5,-2],[-4,-4],[-3,-6],[3,0],[-14,-13],[-11,-18],[-4,-5],[-5,-5],[-15,-7],[-13,0],[-29,7],[-31,0],[-6,-2],[-15,-14],[-6,0],[-14,2],[-12,-8],[-38,-5],[-29,-14],[-77,-12],[-77,-12],[-7,3],[-6,6],[0,2],[1,3],[0,3],[-1,4],[-3,2],[-21,3],[-9,-2],[-18,-12],[-11,-3],[-21,2],[-9,-6],[15,-11],[19,0],[20,6],[15,9],[0,-4],[-23,-8],[17,0],[-3,-7],[-5,-2],[-6,0],[-11,3],[-34,-6],[-20,-14],[-12,-3],[2,0],[2,-1],[2,-1],[2,-2],[-7,-6],[-6,-2],[-14,4]],[[20665,97316],[1,4],[-1,5],[-5,20],[-1,7],[3,9],[10,15],[5,18],[8,8],[23,12],[4,4],[3,5],[0,7],[-5,3],[-11,1],[7,16],[14,3],[70,-21],[132,13],[133,12],[133,13],[18,-13],[79,-24],[23,5],[47,-11],[14,-10],[15,-16],[6,-4],[8,-1],[16,1],[8,-4],[-4,-1],[-3,-3],[-3,-3],[-3,-5],[3,-6],[3,-13],[3,-6],[4,-2],[11,0],[4,-2],[9,-10],[7,-3],[1,-3],[2,-4],[2,-4],[4,-2],[5,-2],[3,-2],[6,-3],[16,-4],[3,-3],[3,-12],[-3,-10],[-6,-11],[-2,-14],[-5,-19],[-24,-10],[-7,-13],[13,-4],[4,2],[3,2],[11,4],[21,-2],[5,-2],[0,-3],[-1,-1],[-1,0],[2,-5],[-15,-16],[1,-4],[3,-4],[2,-2],[3,-1],[-2,-5],[17,0],[3,2],[9,10],[26,22],[6,11],[0,3],[-1,1],[1,1],[0,3],[-3,5],[-6,14],[-4,5],[5,4],[-3,0],[34,4],[4,2],[0,7],[45,4],[45,26],[13,3],[73,-6],[3,-2],[1,-2],[1,-3],[1,-3],[2,-1],[12,-3],[52,-33],[12,-4],[11,-11],[39,-11],[3,1],[2,2],[1,3],[0,4],[1,2],[2,0],[33,-17],[8,-11],[-9,-6],[-26,-29],[-14,-20],[-13,-10],[7,-8],[7,-4],[34,1],[9,-3],[1,-10],[26,-4],[19,10],[21,6],[47,0],[20,13],[34,4],[14,-4],[6,-5],[0,-9],[3,-9],[12,-7],[79,-22],[27,-22],[-10,-12],[-30,-13],[-8,-11],[18,-7],[18,-1],[29,9],[10,-5],[3,-5],[2,-5],[2,-4],[3,-2],[17,-1],[14,4],[13,-1],[12,-5],[8,-9],[-8,-10],[-19,-5],[-7,-9],[8,0],[3,-1],[4,-4],[-4,-5],[-9,-7],[-4,-4],[-3,-5],[-1,-5],[-2,-4],[-4,-3],[-39,-13],[-10,-11],[20,-10],[10,-10],[4,-14],[-2,-10],[-9,-26],[-4,-7],[9,-8],[55,0],[10,-4],[9,-10],[9,-18],[11,-17],[8,-5],[30,-11],[69,-61],[15,-7],[13,-1],[-5,-14],[-1,-4],[0,-11],[0,-5],[-1,-4],[-8,-9],[-20,-7],[-9,-7],[9,-16],[-3,-5],[3,-5],[8,-10],[5,-4],[2,-2],[0,-4],[-3,-3],[-14,-3],[-11,-7],[-11,-10],[-7,-3],[-85,-7],[-86,-8],[-7,-2],[-5,-4],[-7,-10],[-5,-3],[-15,-2],[-48,19],[-47,2],[-30,15],[-61,12],[-5,4],[6,8],[-3,10],[-7,9],[-39,33],[-9,15],[-5,10],[-1,6],[-1,8],[3,10],[6,2],[7,-1],[5,3],[0,13],[-12,7],[-45,17],[-9,8],[-6,12],[0,7],[1,5],[-1,5],[-4,7],[-6,4],[-9,0],[-48,-12],[-7,2],[-58,29],[-92,15],[-92,15],[-106,-27],[-14,1],[-48,18],[-10,8],[-5,14],[6,10],[36,21],[-21,10],[-82,-10],[-82,-9],[-13,-7],[-17,-2],[-16,-5],[-44,-2],[-24,-7],[-38,-20],[-9,-1],[2,-13],[-11,-6],[-72,10],[-72,9],[-59,29],[-15,14],[-6,2],[-6,0],[-7,2],[-6,5],[-13,20],[-34,25],[-3,5],[-12,29],[-1,5],[2,5],[6,7],[12,9],[26,10],[17,13],[50,3],[84,-19],[83,-18],[88,2],[39,-13],[12,-1],[12,3],[8,11],[4,9],[0,5],[-3,2],[-5,3],[-4,6],[5,4],[14,6],[2,-3],[4,0],[7,7],[-3,4],[-4,3],[-4,1],[-4,0],[5,3],[5,5],[-11,5],[-80,-2],[-79,-1],[-9,6],[17,14],[20,8],[119,2],[-11,15],[-3,6],[10,6],[10,2],[31,1],[6,3],[2,6],[-2,6],[-9,1],[-7,15],[-11,6],[-21,2],[-7,-5],[-8,-12],[-8,-7],[-8,4],[1,2],[4,6],[-6,3],[-8,-1],[-31,-14],[-18,-4],[7,10],[9,10],[19,13],[-8,6],[-8,-2],[-9,-4],[-8,0],[-14,8],[-7,0],[-5,-8],[1,-2],[1,-4],[1,-3],[-12,-9],[-15,-5],[-15,0],[-13,6],[4,0],[-6,6],[-24,-1],[-10,7],[21,22],[81,34],[7,5],[0,8],[-7,6],[-47,18],[-5,5],[-2,5],[0,5],[-2,6],[-6,3],[-47,7],[-6,-4],[-3,-7],[-2,-7],[-3,-5],[-20,6],[-13,0],[-11,-7],[-8,-13],[-12,-25],[-7,-10],[-7,-7],[-30,-12],[-27,-21],[-14,-5],[-33,-1],[-14,5],[-8,12],[6,11],[38,27],[3,4],[2,4],[3,3],[4,1],[4,17],[15,20],[23,22],[-8,12],[-10,5],[-58,9],[-125,-25],[-44,8],[-8,7],[-4,10],[3,13],[-1,5],[0,4],[0,4],[-2,3]],[[22180,97846],[-3,7],[-6,6],[-3,7],[4,8],[4,2],[7,3],[4,3],[2,3],[4,8],[2,3],[-2,-4],[12,12],[78,32],[58,-5],[34,-18],[7,0],[85,13],[15,-5],[29,-18],[24,-7],[6,-8],[-2,-1],[-3,-5],[-2,-2],[6,-6],[19,-14],[2,-6],[0,-9],[7,-7],[13,-11],[-5,-3],[-5,-6],[-4,-7],[-3,-8],[-2,-13],[2,-5],[12,-6],[8,-10],[7,-15],[4,-15],[2,-15],[-3,-7],[-5,-7],[-6,-6],[-5,-2],[-2,-4],[-3,-9],[-4,-8],[-6,-4],[-2,-3],[-4,-14],[-2,-5],[-6,-4],[-5,0],[-10,6],[1,11],[-3,7],[-21,11],[-95,18],[-8,6],[5,9],[3,3],[-3,2],[-5,6],[-2,4],[6,1],[6,3],[-2,10],[-1,6],[-2,3],[-75,30],[-9,0],[-25,-8],[-102,-4],[-7,4],[-16,13],[-7,3],[2,6],[8,11],[2,5],[0,5],[0,2],[0,3],[0,5],[-1,3],[-2,3],[-1,3],[0,5]],[[23374,98233],[-83,8],[11,12],[16,5],[93,0],[-2,3],[54,0],[15,5],[15,-6],[72,1],[27,-7],[3,-3],[4,-3],[3,-5],[2,-4],[12,-8],[3,-6],[-60,-15],[-82,10],[-41,16],[-62,-3]],[[23160,97873],[-12,0],[-15,6],[-15,11],[-8,14],[6,2],[3,8],[3,9],[3,7],[11,5],[96,-4],[96,-42],[87,-8],[10,-5],[-2,0],[58,-1],[83,-8],[58,7],[32,0],[117,-38],[11,4],[-11,11],[-7,3],[-15,4],[-16,12],[-24,7],[-29,21],[-16,2],[0,4],[73,36],[127,13],[-5,5],[-107,12],[-3,7],[-11,3],[-12,1],[-9,-2],[-21,-21],[-74,-27],[-123,-9],[-70,30],[-12,1],[6,8],[33,10],[61,0],[16,6],[13,13],[-8,5],[-11,-3],[-21,-10],[-51,0],[-4,2],[-6,8],[-4,2],[-75,-29],[-24,1],[-98,36],[-69,8],[2,4],[22,17],[5,7],[-7,4],[-24,0],[-30,8],[14,13],[17,-3],[16,-7],[16,-3],[1,8],[9,0],[26,-10],[22,-2],[8,4],[-12,10],[-5,3],[7,5],[25,7],[7,-2],[11,5],[42,1],[39,-13],[39,1],[29,-11],[35,-6],[-2,6],[-5,7],[-2,4],[1,1],[4,3],[-9,7],[-22,0],[-34,8],[-12,7],[-17,21],[-74,18],[-12,8],[38,9],[3,2],[4,5],[2,8],[3,4],[5,0],[-19,6],[-10,7],[-5,12],[111,4],[92,-2],[67,9],[20,0],[61,-20],[52,-8],[80,6],[71,-10],[4,2],[4,3],[4,0],[5,-1],[3,-4],[-3,-4],[10,-12],[14,-1],[27,5],[0,5],[-61,32],[-103,15],[-40,-7],[-6,2],[-5,4],[-5,8],[-6,8],[-16,6],[-5,8],[6,11],[9,5],[76,5],[76,4],[-15,12],[-35,-3],[-17,3],[0,4],[1,7],[-6,2],[-15,-1],[-24,-10],[-5,2],[-6,-5],[-50,5],[-92,22],[-4,6],[39,8],[12,8],[-9,6],[-11,0],[-59,-13],[-100,6],[-9,10],[4,4],[-2,4],[12,7],[80,13],[12,8],[-79,2],[-14,10],[52,25],[8,8],[10,32],[18,8],[36,4],[38,17],[11,0],[88,-18],[5,-5],[5,-2],[10,0],[5,-4],[-14,-11],[-2,-5],[3,-6],[5,-3],[10,-3],[11,1],[11,3],[10,6],[9,10],[0,7],[6,3],[8,-1],[10,-7],[9,0],[9,3],[6,3],[6,9],[47,-4],[0,3],[-38,8],[10,6],[36,-6],[-17,9],[-56,4],[-3,1],[-6,6],[-9,2],[-10,6],[-20,5],[-4,4],[5,4],[11,7],[40,-15],[93,4],[92,-21],[0,5],[-3,1],[-1,1],[-4,6],[57,-3],[44,7],[-4,1],[-2,2],[-1,1],[4,3],[8,3],[5,2],[-4,6],[-4,2],[-5,1],[-4,0],[6,7],[10,3],[7,4],[-3,12],[-10,8],[-20,0],[-10,6],[8,7],[2,1],[-100,6],[-55,-10],[-40,1],[-69,8],[-46,12],[-17,11],[4,11],[6,8],[30,17],[2,4],[-3,4],[-4,4],[-3,1],[10,10],[15,3],[73,-5],[73,-11],[19,-13],[10,-4],[-2,-4],[4,3],[8,4],[4,1],[3,2],[3,4],[1,4],[-3,2],[-5,2],[-6,6],[-5,8],[-4,9],[5,3],[6,1],[75,-8],[45,-15],[89,-18],[19,-9],[61,-10],[32,-13],[37,-4],[114,-56],[8,-2],[-3,-5],[-7,-8],[-3,-7],[9,-7],[4,-6],[4,-7],[-8,-5],[-28,1],[0,-4],[57,-23],[51,-36],[0,-9],[-1,-5],[1,-5],[4,-5],[7,-7],[15,-10],[20,-5],[10,-10],[18,-25],[6,-4],[13,-3],[6,-3],[6,-7],[0,-3],[-1,-4],[-1,-6],[7,-15],[11,-10],[106,-27],[26,-28],[2,-1],[4,-1],[-7,-12],[-37,-22],[-4,-11],[10,-6],[14,-1],[11,3],[18,-3],[3,6],[3,3],[17,-10],[135,-12],[17,-16],[6,-3],[5,-1],[36,-26],[10,4],[-2,7],[-18,19],[-6,8],[33,5],[16,-4],[7,1],[1,6],[84,-3],[74,-41],[-10,-12],[-4,-3],[-33,-16],[-8,-10],[12,-3],[26,9],[12,-6],[-12,-17],[-3,-9],[7,-7],[-6,-8],[-10,-6],[-27,-9],[1,-9],[6,-9],[21,-24],[33,-23],[122,-45],[9,-7],[9,-4],[12,-1],[13,3],[9,5],[-16,14],[-3,6],[25,-2],[33,-12],[8,-9],[28,-6],[0,4],[-9,4],[-39,29],[-23,10],[-7,10],[13,0],[13,-4],[11,-7],[5,0],[5,7],[-15,15],[-55,6],[-24,10],[-7,6],[-2,3],[-3,6],[-2,3],[-9,7],[-9,5],[15,19],[2,11],[-9,13],[0,9],[10,12],[14,9],[15,6],[13,8],[7,2],[107,-8],[106,-8],[8,-5],[5,-9],[9,-25],[3,-11],[-2,-22],[2,-13],[5,-11],[4,-6],[2,-7],[-1,-17],[0,-1],[2,-2],[1,-2],[-1,-5],[-2,-2],[-3,0],[-6,0],[-6,-2],[-11,-8],[-99,-14],[-10,-8],[5,-3],[10,-2],[5,-3],[-1,-8],[2,-2],[4,-1],[3,-2],[1,-2],[1,-3],[2,-4],[3,-4],[10,-5],[10,0],[42,12],[132,-5],[10,-19],[3,-9],[6,-9],[12,-12],[25,-13],[8,-8],[-8,-8],[-18,-2],[-17,-7],[-10,0],[-9,-3],[-15,-21],[-8,-6],[-35,-7],[-9,-5],[-5,-10],[14,0],[26,4],[87,41],[12,2],[8,-4],[-3,-16],[-22,-39],[-4,-13],[0,-9],[1,-10],[1,-14],[-3,-8],[-17,-31],[-1,-2],[1,-8],[-2,-4],[-6,-6],[-8,-7],[-62,-22],[-10,-12],[1,-5],[0,-5],[-2,-5],[-3,-5],[16,-11],[17,-5],[17,2],[17,12],[4,6],[9,15],[4,5],[9,5],[38,11],[40,-6],[7,-5],[-2,-11],[-3,-10],[5,-2],[7,3],[5,3],[0,1],[0,5],[0,2],[2,0],[21,0],[-5,13],[-10,7],[-19,8],[27,15],[28,6],[86,-3],[15,-5],[25,-20],[23,-13],[11,-8],[-4,-4],[-2,0],[2,-4],[2,-3],[2,-2],[-5,-4],[-8,-4],[-14,-3],[0,-4],[5,-1],[11,-5],[4,-3],[0,-1],[0,-3],[0,-3],[1,-3],[3,-2],[2,-2],[2,-1],[3,-1],[-9,-3],[-21,-2],[-8,-7],[11,-9],[16,-5],[16,2],[11,10],[7,15],[4,5],[10,5],[1,7],[-2,15],[10,34],[21,14],[25,1],[20,-9],[17,-14],[4,-6],[2,-7],[1,-6],[1,-4],[4,-5],[19,-16],[9,-10],[4,-15],[3,-6],[19,-9],[6,-6],[11,-13],[5,-5],[40,-15],[13,-9],[15,-16],[18,-14],[5,-6],[2,-15],[-10,-6],[-69,-16],[-14,-8],[-13,-14],[-6,-2],[-25,-1],[-14,-10],[-15,-5],[-34,-2],[-12,-8],[-115,-24],[-115,-24],[-16,-11],[3,-6],[-3,-7],[-7,-12],[0,-3],[-2,-10],[-1,-3],[-5,-4],[-37,-9],[-8,2],[-9,7],[-28,27],[-4,7],[-5,17],[-3,2],[-4,1],[-4,-2],[-2,-6],[0,-14],[-3,-16],[0,-6],[4,-13],[0,-5],[0,-3],[0,-3],[3,-5],[7,-8],[3,-6],[-27,-26],[-52,-31],[-24,-7],[-8,-10],[-15,-23],[-29,-26],[-9,-10],[0,-3],[0,-3],[-1,-4],[-1,-3],[-5,-4],[-19,-11],[-7,-2],[-7,2],[-51,28],[-9,8],[-7,12],[-19,39],[-4,11],[-1,12],[3,15],[10,29],[-1,14],[-9,18],[2,2],[1,2],[1,0],[5,3],[20,6],[25,15],[-3,5],[-3,3],[-3,3],[-3,1],[8,7],[10,6],[8,7],[5,13],[-10,3],[-12,-6],[-20,-20],[-4,-6],[-2,-6],[-2,-5],[-6,-4],[-55,-2],[-13,-6],[-10,-13],[-2,-12],[2,-9],[4,-9],[2,-11],[-1,-12],[-7,-21],[-3,-11],[0,-15],[2,-13],[4,-11],[17,-34],[2,-12],[-6,-5],[-45,-3],[-10,-9],[4,-2],[3,0],[2,2],[0,-4],[13,8],[59,-1],[12,-5],[12,-9],[13,-13],[7,-13],[2,-13],[-3,-12],[-27,-35],[-9,-9],[-52,-9],[-14,8],[-74,67],[-1,2],[-1,7],[-2,3],[-3,1],[-12,-1],[-43,4],[-5,-1],[-5,-3],[11,-7],[2,-6],[-6,-7],[4,-2],[3,-3],[1,-5],[-2,-7],[44,-53],[6,-7],[7,-8],[3,-10],[-5,-15],[-3,-6],[-29,-34],[-1,-4],[-1,-11],[-2,-6],[-2,-4],[-3,-4],[-2,-4],[-2,-18],[-4,-13],[-10,-18],[-11,-12],[-12,-3],[-40,6],[-14,7],[-55,48],[-11,19],[-8,8],[-4,6],[-3,8],[-3,4],[-8,7],[-31,15],[-4,4],[-8,12],[-5,5],[-19,11],[-7,2],[-3,1],[-41,41],[-3,5],[-6,15],[-3,5],[-15,9],[-15,21],[2,4],[-7,5],[-9,1],[-9,-2],[-8,-3],[-5,-7],[1,-15],[-5,-4],[2,-7],[4,-5],[8,-8],[-4,-6],[1,-5],[9,-13],[5,-3],[2,-1],[1,-4],[0,-3],[1,-2],[4,0],[-2,-10],[3,-5],[53,-25],[52,-67],[3,-5],[6,-23],[7,-10],[19,-20],[5,-13],[-11,-5],[-11,-2],[-11,1],[-11,5],[-3,3],[-3,4],[-2,5],[-1,7],[-2,8],[-3,5],[-9,4],[-5,1],[-52,-3],[-10,5],[-6,9],[1,14],[-25,22],[-26,12],[-53,7],[-58,-8],[-46,7],[-13,-7],[13,-11],[31,-8],[61,-2],[13,-8],[-8,-6],[-4,-5],[-1,-9],[3,-8],[6,-6],[11,-7],[7,-11],[-3,-11],[-9,-10],[-9,-4],[-70,6],[-78,-6],[-83,18],[-117,9],[-45,24],[-15,3],[-11,5],[-30,-8],[-7,-8],[-3,-3],[-6,-1],[-11,3],[-14,7],[-22,20],[2,9],[-4,4],[-29,0],[-6,3],[9,10],[23,2],[10,4],[-12,10],[-16,-2],[-31,-12],[-32,3],[-30,14],[2,9],[1,3],[-6,5],[-15,2],[-40,19],[-14,2],[-22,19],[-11,17],[6,14],[9,5],[17,-1],[-1,2],[-1,5],[71,-8],[-2,0],[21,0],[11,3],[8,9],[-21,4],[6,4],[7,0],[13,-4],[88,8],[87,9],[32,-6],[8,-4],[12,-2],[5,10],[-3,11],[-10,1],[-15,-4],[-127,15],[-128,16],[-21,10],[-22,5],[-11,-1],[-16,-6],[-6,-1],[-2,-1],[0,-2],[0,-3],[-2,-2],[-9,-4],[-67,-8],[-18,3],[-18,8],[-35,25],[0,4],[8,0],[20,7],[7,5],[-7,6],[-42,-7],[-4,1],[-4,3],[-8,8],[-20,7],[-30,27],[-14,8],[9,9],[59,2],[112,-27],[27,1],[4,2],[3,4],[-1,5],[2,4],[-12,6],[-63,16],[-17,9],[-50,11],[-62,-4],[-29,1],[-8,8],[-7,12],[-8,9],[-9,7],[-20,5],[-58,39],[-6,11],[23,12],[53,11],[25,10],[34,3],[34,7],[11,-3],[5,0],[5,1],[4,4],[5,12],[30,22],[1,11],[9,10],[14,6],[15,3],[28,0],[40,-11],[23,4],[45,-8],[6,2],[12,7],[7,2],[62,2],[66,-9],[113,6],[85,10],[56,9],[37,-1],[75,7],[75,8],[48,1],[39,11],[6,5],[-2,0],[-12,8],[-96,-7],[-78,2],[-87,-13],[-108,-8],[-39,2],[-56,-8],[-75,11],[-75,12],[-12,5],[-7,8],[7,4],[19,18],[10,3],[120,-4],[0,4],[-7,3],[-3,1],[-4,0],[5,2],[7,1],[6,-2],[10,-9],[6,-1],[41,1],[18,7],[6,1],[-1,0],[48,11],[45,0],[91,11],[6,6],[0,-4],[0,1],[1,2],[1,2],[2,-1],[-1,2],[-2,4],[-1,2],[6,7],[1,2],[-11,2],[-47,-10],[-36,0],[-79,-9],[-17,-11],[-7,-1],[-61,6],[-33,-1],[-64,11],[-26,-3],[-15,2],[-9,9],[5,4],[18,5],[21,11],[6,1],[14,-1],[19,7],[14,2],[-5,10],[-11,5],[-88,-5],[-67,-22],[-21,2],[-10,5],[-26,33],[-4,3],[-6,1],[-8,-1],[-5,-1],[-3,-4],[0,-6],[3,-5],[7,-5],[7,-9],[16,-16],[6,-9],[-24,-13],[-83,-16],[5,7],[16,13],[14,18],[8,6],[-1,8],[-5,7],[-4,5],[-7,2],[-7,-2],[-6,-4],[-9,-9],[-10,-6],[-4,-6],[-3,-8],[-3,-5],[-13,-16],[-3,-2],[-5,-1],[-14,1],[-15,5],[-7,1],[-6,-6],[3,-4],[-1,-1],[-5,-3],[4,-3],[4,-1],[4,-3],[4,-5],[-9,-7],[-17,-5],[-18,-13],[-40,-13],[-32,1],[-25,11],[-5,1],[-16,-4],[4,5],[6,4],[4,5],[-2,9],[1,7],[6,7],[37,21],[38,12],[9,0],[0,4],[-70,-4],[-108,20],[-9,-4],[4,-4],[2,-5],[1,-5],[-3,-7],[4,-3],[3,2],[4,4],[3,2],[5,-2],[4,-2],[8,-9],[-13,-3],[-27,-14],[-119,-30],[-6,-11],[-6,-3],[-32,8],[-26,0],[-7,4],[2,5],[4,4],[3,3],[4,1],[0,4],[-9,-1],[-10,2],[-9,4],[-8,7],[6,3],[6,0],[7,-2],[6,-4],[5,-1],[4,3],[9,9],[-4,4],[-28,1],[-3,2],[3,5],[-1,6],[-2,3],[-2,3],[-3,1],[3,1],[5,7],[-20,0],[-9,-4],[-2,-13],[-48,8],[-23,2],[-6,5],[-8,3],[-16,-1],[-7,8],[2,1],[6,3],[-6,3],[-2,1],[8,3],[15,1],[8,4],[-11,11],[-3,1],[-4,1],[-9,4],[-4,3],[6,1],[6,2],[5,5],[4,8],[-5,9],[-3,5],[-1,7],[11,1],[24,9],[123,15],[123,15],[25,15],[82,30],[3,6],[-1,6],[-6,11],[-2,5],[15,8],[4,7],[-2,10],[-5,5],[-7,2],[-7,-2],[-5,-5],[1,-1],[4,-3],[-13,-10],[-44,-5],[-4,-4],[-4,-11],[-3,-4],[-22,-3],[-7,-3],[-14,-11],[-104,-16],[-14,-5],[-92,2],[-91,1],[-78,50],[-13,3],[-11,-1],[-5,2],[-4,7],[0,8],[1,6],[-1,6],[-4,6],[-5,4],[-34,15],[-24,3],[7,7],[15,4],[7,6],[-13,3],[-30,-13],[-12,5],[1,5],[-2,4],[-2,3],[-3,3],[-2,2],[5,6],[5,4],[5,2],[15,1],[8,3],[20,0],[8,-4],[-3,-12],[7,1],[15,9],[8,2],[31,-1],[9,5],[-20,13],[-97,8],[-10,7],[-6,8],[-10,17],[-7,8],[9,7],[71,13],[-49,2],[-16,-5]],[[33031,99227],[0,-14],[-3,-16],[-6,-13],[-6,-5],[-5,-2],[-43,-29],[-99,-17],[-100,-17],[10,-6],[23,-3],[11,-7],[-12,-9],[-24,-6],[-23,-16],[-48,-22],[-37,-4],[-24,4],[-6,-2],[-4,-4],[0,-4],[6,-2],[-7,-9],[-73,-22],[-74,-22],[2,0],[-22,-1],[-111,-34],[-112,-33],[-56,3],[-46,16],[-11,0],[5,-7],[52,-29],[-7,-10],[-11,-5],[-32,-4],[-20,-8],[-113,4],[-28,13],[-11,3],[-35,-5],[-91,8],[3,-2],[2,-3],[2,-3],[2,-5],[-5,-4],[-95,-12],[-96,-12],[12,-6],[38,6],[45,-8],[101,8],[-9,-8],[-134,-31],[-20,7],[-5,8],[-15,1],[-42,-16],[-66,-5],[-65,2],[-125,-7],[-83,-5],[-83,-6],[-75,-8],[-75,-9],[-102,31],[-101,31],[-102,31],[16,-12],[120,-40],[120,-39],[9,-14],[-139,4],[0,-4],[77,-16],[121,11],[121,11],[122,10],[85,-11],[84,-12],[14,-9],[-12,-10],[-82,-14],[-46,-7],[-47,-13],[-106,-20],[-106,-21],[-27,-13],[-31,-4],[-52,-20],[-37,-4],[2,0],[-15,-6],[-31,-1],[-23,-9],[-17,1],[-16,-6],[-24,-4],[-112,9],[-13,-9],[10,-6],[23,0],[10,-6],[-14,-1],[-59,-16],[-33,0],[-63,-15],[-67,4],[-13,-8],[40,-11],[120,11],[-7,-5],[-22,-7],[-21,-11],[-51,-15],[-5,-6],[107,19],[28,21],[14,6],[118,20],[118,20],[117,19],[118,20],[2,2],[80,16],[80,16],[102,13],[86,15],[86,14],[72,11],[62,17],[136,11],[86,14],[108,9],[4,-2],[3,-5],[3,-6],[4,-5],[10,-8],[4,-6],[3,-9],[-4,-6],[-5,-6],[-62,-42],[-118,-34],[-79,-37],[-49,-11],[-26,3],[-56,-16],[-33,-1],[-32,-18],[-39,-11],[-7,-10],[-7,-6],[-47,-18],[-4,-5],[-9,-13],[-5,-5],[-39,-25],[-56,-16],[-101,-43],[-91,3],[-13,-7],[5,-7],[16,-14],[-9,-9],[-11,-7],[-21,-8],[-27,0],[-15,-2],[-8,-10],[5,-5],[-3,-4],[-20,-6],[-16,-9],[-82,-22],[-34,-23],[-20,-6],[-31,-17],[-19,-4],[-33,-22],[-55,-12],[5,-6],[5,-2],[12,0],[-9,-13],[-58,-28],[-10,-8],[-13,-20],[-14,-10],[-4,-6],[-1,-6],[-2,-7],[-2,-5],[-9,-13],[-12,-7],[-81,-25],[-89,1],[-90,1],[4,10],[16,17],[5,9],[-14,20],[-18,14],[-126,56],[-5,0],[-5,-2],[-1,-7],[3,-4],[12,-6],[15,-3],[11,-5],[28,-23],[19,-8],[9,-7],[7,-15],[2,-2],[5,-1],[16,-11],[-19,-9],[-5,-7],[-3,-8],[-1,-8],[2,-6],[5,-3],[-2,0],[122,-35],[16,-13],[-11,-11],[-24,-8],[-21,-22],[-14,-3],[-75,6],[-74,6],[-98,-13],[-71,-20],[-41,-18],[-65,-2],[-29,12],[-4,2],[-14,18],[-8,5],[-18,6],[-46,2],[-47,21],[-13,-1],[-11,-9],[110,-37],[26,-17],[9,-2],[0,-4],[-58,-15],[-79,2],[0,-4],[19,0],[-5,-5],[-2,-2],[-3,-1],[5,-4],[48,-4],[91,4],[35,7],[53,-4],[55,14],[89,18],[99,12],[12,-8],[5,-6],[7,-5],[7,-3],[6,-1],[3,-3],[2,-15],[3,-6],[-12,-11],[-29,-2],[-12,-15],[2,-4],[-10,-10],[-93,-15],[-93,-14],[-11,-7],[-9,-9],[-3,-10],[8,-7],[70,17],[74,-14],[-6,-7],[-16,-15],[-3,-9],[-5,-10],[-19,-4],[-1,-9],[-14,-7],[-67,-16],[-28,-14],[-127,-22],[-22,-10],[-30,-2],[-29,-11],[-44,14],[-66,-4],[-81,18],[-8,7],[1,12],[-4,6],[-11,6],[-4,4],[-4,6],[-2,6],[-3,5],[-5,2],[0,5],[34,-1],[10,5],[-7,4],[-72,0],[-54,9],[-119,-9],[-14,8],[7,6],[9,2],[18,0],[-8,9],[-127,18],[-27,-13],[-72,-7],[-73,-7],[15,-3],[7,-4],[-1,-9],[21,-15],[7,-1],[88,8],[107,-14],[107,-15],[28,0],[27,9],[9,-4],[-7,-7],[-2,-1],[1,-5],[5,-7],[1,-5],[0,-6],[6,-4],[13,-5],[-1,-5],[8,-6],[18,-7],[8,-7],[2,-9],[1,-11],[-2,-10],[-5,-7],[11,-7],[4,-3],[2,-3],[0,-5],[-1,-4],[-2,-2],[-3,-2],[-7,-8],[-4,-2],[-5,-1],[-31,-15],[-41,-5],[-36,4],[-39,-7],[-17,9],[-30,26],[-17,5],[-11,-12],[5,-7],[4,-7],[6,-19],[-3,-9],[-9,-8],[-10,-5],[-70,-6],[-31,7],[-84,-1],[-26,15],[-35,8],[-9,8],[2,0],[3,3],[-8,5],[-11,-1],[-10,-5],[-9,-7],[3,-5],[11,-6],[2,-2],[0,-3],[0,-3],[4,-2],[7,-7],[13,-6],[4,-4],[5,-5],[0,-3],[-5,-6],[-15,-15],[-18,-4],[-135,13],[-31,14],[-7,6],[-7,3],[-8,-9],[2,-4],[-17,1],[-8,3],[-5,8],[2,4],[-1,3],[-2,3],[-3,2],[-7,0],[-20,-13],[-13,-2],[-13,5],[-52,34],[-118,8],[-118,9],[-6,2],[-12,11],[-6,3],[-5,-2],[-4,-3],[-4,-6],[-4,-7],[1,-6],[6,-5],[12,-4],[50,0],[25,-7],[27,7],[50,-11],[36,5],[71,-8],[14,-14],[-13,-6],[-5,-4],[4,-5],[5,-5],[3,-6],[3,-4],[40,-15],[28,-3],[8,-5],[-10,-6],[-66,-6],[-23,7],[-83,2],[-83,2],[-8,-3],[-3,0],[-4,2],[-7,5],[-10,3],[-38,23],[-5,6],[-1,5],[-1,7],[-1,12],[-3,7],[-7,0],[-11,-8],[-15,-3],[-30,9],[-14,-7],[6,-10],[18,-22],[10,-6],[4,-5],[7,-12],[5,-6],[12,-5],[5,-7],[-6,0],[-12,-3],[-78,9],[-78,8],[-26,10],[-12,0],[-18,-2],[-19,-6],[0,-4],[62,-19],[56,2],[74,-24],[11,-8],[-11,-4],[-25,0],[-11,-8],[113,12],[85,7],[75,-11],[58,2],[27,8],[15,-1],[57,-23],[84,-1],[85,-1],[80,-2],[70,8],[92,-10],[-7,-9],[-28,-10],[-52,-1],[-12,-8],[13,-12],[33,4],[13,-9],[-4,-2],[-3,-2],[-8,1],[3,-7],[7,-4],[18,-4],[4,-4],[3,-6],[4,-5],[13,-6],[7,-5],[4,-8],[-2,-8],[-6,-5],[-7,-3],[-83,7],[-82,-10],[-116,26],[-70,5],[-2,2],[-1,6],[-2,3],[-3,1],[-30,0],[10,8],[-2,2],[-4,4],[-2,2],[2,4],[2,2],[3,2],[2,1],[0,4],[-1,1],[0,-2],[-10,11],[-54,21],[-71,-1],[-71,0],[-107,-7],[-62,5],[-135,-1],[-136,-2],[-11,-4],[-9,-10],[12,-7],[15,2],[28,10],[98,-6],[97,-6],[98,-6],[73,0],[68,-9],[101,-6],[-1,-2],[-1,-2],[0,-2],[-1,-2],[12,-4],[4,0],[-8,-11],[-15,-5],[-61,0],[-89,8],[-72,-10],[-53,-1],[-104,-28],[-23,6],[-23,1],[-6,4],[-14,13],[-6,3],[-85,9],[-65,0],[-78,-5],[-79,-4],[8,-5],[123,-1],[71,-1],[71,-1],[41,-12],[9,-7],[9,-10],[-10,-1],[-61,-27],[-6,-11],[-45,-38],[-21,-28],[-18,-14],[-5,-6],[8,-13],[12,-1],[13,6],[8,10],[7,13],[18,21],[67,53],[28,14],[137,20],[137,19],[132,-16],[133,-16],[16,-9],[-6,-3],[-15,-18],[-9,-3],[-122,-13],[-48,-20],[-5,-6],[0,-7],[7,-1],[11,2],[38,17],[114,1],[29,10],[53,-6],[69,-2],[64,-13],[44,-5],[10,-10],[-1,-2],[-1,-7],[20,7],[11,1],[5,-9],[-6,-9],[-27,-6],[-9,-4],[10,-3],[24,0],[6,-9],[-14,-10],[-5,-2],[6,-7],[18,-12],[7,-2],[-9,-7],[-17,2],[-9,-3],[-5,-6],[0,-7],[3,-5],[6,-6],[-3,-3],[-2,-3],[-3,-1],[-3,-1],[8,-7],[10,-3],[9,-1],[9,2],[7,-1],[9,-6],[14,-16],[-47,-1],[-57,-30],[-6,-2],[-43,4],[-59,-15],[-102,6],[-102,6],[-102,7],[-23,-9],[-15,-1],[-7,-2],[-7,-5],[-1,-4],[4,-2],[109,6],[37,-7],[6,-4],[4,-6],[2,-6],[3,-6],[5,-3],[135,-26],[134,-27],[6,-7],[4,-8],[5,-6],[7,-2],[-11,-13],[-14,-6],[-27,-2],[-27,6],[-15,-3],[-12,-23],[-10,-12],[-19,-17],[-15,-7],[-16,-4],[-78,14],[-79,14],[-46,-9],[-68,14],[-9,-1],[-15,-7],[-55,-11],[-8,-10],[11,-9],[15,-4],[28,0],[2,-1],[5,-5],[2,-2],[12,1],[10,-5],[88,-7],[29,-12],[72,1],[73,2],[14,-4],[10,-11],[-2,-10],[-28,-23],[2,-5],[-44,-28],[-17,-20],[-9,-5],[-10,4],[-1,8],[-4,3],[-31,7],[-8,7],[-14,6],[-15,2],[-64,-18],[-4,-4],[-6,-13],[-11,-10],[-58,-7],[-37,-17],[-51,6],[-25,20],[-101,-2],[-101,-2],[-93,36],[-15,-9],[0,-4],[13,0],[6,-2],[5,-7],[-54,-17],[-8,-6],[-6,-9],[4,-6],[15,-6],[4,-5],[3,-4],[4,-3],[6,0],[-2,0],[7,-4],[35,0],[5,-3],[-1,-10],[44,-15],[9,-13],[-4,0],[2,-5],[4,-15],[-6,-4],[-2,0],[2,0],[-12,-5],[-12,-8],[5,-1],[6,-4],[6,-6],[1,-7],[-6,-6],[-14,-2],[-6,-6],[15,-6],[31,4],[15,-10],[1,-2],[1,-2],[0,-6],[1,-5],[5,-2],[21,-1],[5,-4],[6,-7],[-6,-5],[-48,-19],[-13,-2],[-5,-3],[-3,-7],[2,-4],[10,-17],[-21,-24],[-50,-12],[-22,-12],[13,-16],[-6,-11],[-10,-5],[-59,-8],[-53,-27],[-21,-5],[-21,3],[25,26],[8,10],[-6,4],[-7,1],[-14,-1],[-6,-3],[-14,-10],[-10,-5],[-13,-16],[-7,-5],[-15,-3],[-22,-12],[-71,9],[-71,9],[-55,-6],[-29,-17],[-7,-2],[-62,4],[-29,9],[-25,-4],[-20,7],[-25,2],[-24,9],[-39,6],[-54,26],[-11,2],[-1,2],[-4,8],[-2,3],[2,0],[-51,8],[-23,11],[-3,3],[-5,10],[-10,10],[-10,8],[-11,5],[-16,2],[-13,6],[-6,1],[-5,2],[-1,5],[2,6],[3,3],[-6,9],[-23,8],[0,4],[9,0],[5,1],[4,3],[-9,10],[-51,15],[-7,7],[4,13],[-6,9],[-8,7],[-9,3],[-6,-3],[1,-5],[-1,-2],[-1,-1],[-1,-4],[0,-6],[1,-1],[4,-14],[5,-7],[4,-5],[5,-3],[20,-4],[6,-7],[3,-5],[8,-10],[14,-12],[6,-10],[-1,-11],[-8,-13],[-7,-8],[-3,-5],[-2,-7],[3,-8],[6,-4],[12,-4],[26,-17],[27,-10],[76,-1],[7,-7],[3,-18],[-8,-5],[-90,-10],[-90,-10],[-84,15],[-13,-8],[49,-21],[22,-3],[7,-5],[3,-5],[3,-11],[3,-4],[-3,-6],[-2,-1],[-2,-1],[5,-14],[9,-7],[11,-3],[19,1],[36,21],[27,4],[13,8],[104,38],[101,-16],[101,-17],[14,-7],[2,-1],[48,-4],[9,-3],[-9,-10],[-26,-12],[-11,-26],[-27,-14],[-9,-11],[10,-5],[14,4],[82,64],[86,32],[79,-3],[25,-11],[26,-2],[13,-5],[27,-19],[14,-4],[6,-7],[-2,-4],[-2,-4],[-2,-2],[-3,-1],[13,-12],[3,-8],[-5,-8],[-19,-9],[-70,-57],[-9,-13],[-2,-1],[-2,-2],[0,-6],[1,-7],[4,-3],[71,3],[5,-2],[6,-1],[17,8],[11,1],[21,-4],[10,-6],[-2,-3],[-2,-4],[-2,-3],[-5,-3],[0,-4],[0,-4],[0,-3],[-10,-10],[-3,-5],[-3,-9],[68,-9],[7,9],[-5,12],[-3,12],[27,0],[9,3],[8,5],[0,4],[-1,5],[1,12],[9,13],[29,5],[11,6],[-2,2],[-4,4],[-1,2],[4,7],[4,4],[5,1],[6,0],[4,4],[55,7],[12,-1],[49,-34],[7,-10],[0,-7],[-3,-6],[-1,-5],[2,-4],[12,-7],[5,-5],[-17,-13],[7,-6],[20,-6],[23,-16],[-11,-8],[-5,-5],[-3,-8],[-2,-6],[1,-5],[1,-5],[2,-8],[3,-7],[0,-4],[-4,-2],[-2,-1],[-3,-3],[-2,-4],[-2,-3],[0,-11],[3,-6],[9,-8],[-16,-13],[-17,-5],[-34,2],[-6,-2],[-15,-11],[-5,-5],[-5,-9],[-13,-9],[-6,-9],[9,-6],[3,-5],[2,-9],[-60,-17],[-7,-7],[4,-12],[-37,-4],[-18,7],[-16,17],[6,5],[2,3],[2,4],[-2,4],[-2,5],[-2,5],[-2,7],[14,3],[0,4],[-33,0],[-16,6],[-9,0],[-7,-6],[2,0],[-6,-9],[-12,-13],[-5,-10],[-12,-28],[-5,-9],[-9,-9],[-11,-7],[-39,-5],[-6,-3],[-3,-4],[-4,-5],[0,-3],[5,0],[0,-4],[-8,-3],[-11,-10],[-6,-12],[4,-11],[-11,-12],[-15,-3],[-43,12],[-14,0],[-75,-27],[-76,-26],[-26,11],[-14,-1],[-39,-16],[-12,-10],[-6,-2],[-40,2],[-6,-2],[-4,-5],[-7,-12],[-5,-3],[-34,0],[-18,5],[-9,0],[-14,-15],[-37,-11],[-3,5],[0,8],[4,8],[7,7],[23,9],[0,4],[-9,4],[-20,2],[-9,6],[12,7],[3,4],[0,4],[-1,5],[2,5],[3,3],[19,6],[2,4],[16,32],[4,3],[7,3],[8,7],[8,8],[6,9],[1,20],[-15,9],[-19,7],[-13,9],[-8,10],[-8,4],[-8,1],[-19,8],[-34,-1],[3,6],[9,14],[-9,18],[-11,-8],[-12,-17],[-8,-9],[-8,-3],[-15,-11],[-38,-6],[-110,13],[-34,13],[-7,6],[11,12],[8,16],[3,3],[3,1],[2,2],[-2,7],[-19,12],[11,2],[33,18],[13,1],[7,2],[5,7],[2,2],[3,1],[3,1],[1,4],[-1,5],[-2,1],[-2,0],[-26,-13],[-79,-23],[-28,3],[-13,5],[-34,29],[-4,5],[-9,19],[-4,4],[-13,10],[-3,5],[-3,6],[-4,5],[-16,7],[-11,9],[-12,6],[-12,-4],[9,-3],[12,-7],[11,-10],[6,-12],[-4,-4],[7,-5],[13,-6],[7,-6],[-2,-19],[14,-18],[36,-25],[24,-3],[59,-28],[-35,-15],[-5,-13],[4,-11],[22,-27],[-1,-10],[-10,-9],[-30,-14],[-72,-3],[-73,-3],[-4,4],[-10,10],[-41,13],[-28,18],[1,7],[3,5],[7,8],[-4,4],[-2,5],[-1,6],[3,5],[-8,26],[-3,7],[-3,3],[-18,7],[-2,2],[0,1],[0,5],[0,2],[-7,6],[-41,21],[-5,5],[1,5],[-5,13],[0,7],[2,6],[4,6],[7,8],[-7,5],[-5,0],[-6,-4],[-7,-7],[-19,-12],[-3,-8],[2,-10],[5,-7],[27,-16],[2,-3],[3,-9],[3,-4],[7,-7],[16,-9],[7,-6],[4,-7],[2,-6],[0,-18],[2,-11],[6,-4],[6,-3],[3,-6],[-3,-4],[-11,-12],[-3,-6],[2,-3],[1,-1],[3,-1],[3,-2],[8,-10],[-11,-11],[-15,-3],[-116,14],[-5,3],[-2,1],[-1,4],[-1,3],[-1,4],[-1,2],[-12,10],[-26,6],[-7,12],[-29,15],[-14,13],[1,12],[-9,27],[-6,9],[-38,15],[-15,2],[-10,-8],[7,-6],[9,-5],[16,-5],[5,-3],[0,-7],[-2,-8],[-12,-28],[-1,-5],[5,-7],[12,-14],[3,-9],[-3,-3],[-1,-5],[-1,-5],[-1,-3],[-5,-5],[-5,-2],[-87,-8],[-24,3],[-23,9],[-22,14],[-1,15],[-12,19],[-16,16],[-24,14],[-7,1],[-6,-8],[-2,-6],[-1,-18],[-3,-8],[6,-5],[4,-7],[1,-8],[-3,-9],[3,-7],[4,-4],[4,-2],[3,-5],[5,-7],[5,-4],[75,-24],[75,-25],[5,-6],[-1,-8],[-7,-4],[-110,-7],[-110,-8],[-7,4],[-1,3],[0,3],[0,3],[-1,3],[-4,3],[-51,-5],[-8,4],[-16,10],[-8,3],[-10,0],[-38,11],[-39,1],[-38,12],[-21,-4],[-40,3],[-18,7],[-18,1],[-8,5],[2,0],[-10,6],[-2,2],[-1,4],[1,3],[0,4],[0,5],[-2,13],[1,7],[3,7],[47,15],[8,11],[-7,13],[-47,21],[-32,25],[-17,9],[-15,-3],[90,-60],[2,-5],[-5,-4],[-76,-23],[-7,-1],[-7,-1],[-4,-7],[7,-3],[-1,-7],[-13,-24],[-8,-27],[-1,-4],[-1,-3],[-1,-2],[-8,4],[-11,1],[-16,8],[-68,7],[-10,5],[-7,8],[3,5],[6,5],[0,8],[-8,9],[-69,4],[-9,6],[8,11],[3,7],[-1,8],[-7,7],[-18,7],[-4,8],[5,2],[2,7],[2,9],[2,7],[-7,7],[-11,8],[-10,3],[-6,-6],[0,-4],[1,-3],[2,-3],[1,-2],[-2,-13],[-2,-7],[-3,-6],[0,-5],[5,-5],[19,-9],[3,-6],[-2,-5],[-12,-15],[0,-12],[10,-8],[22,-7],[0,-3],[-1,-2],[-1,-3],[2,-4],[-5,-4],[-14,-8],[6,-2],[8,-4],[12,-10],[-6,-4],[-6,1],[-25,12],[-6,0],[-6,-1],[1,-3],[1,-6],[2,-3],[-17,-8],[-21,2],[-20,13],[-11,25],[4,0],[-4,7],[-5,1],[-12,-4],[2,-6],[2,-2],[-4,-3],[-4,-10],[-2,-3],[-5,-3],[-135,17],[-8,6],[4,9],[5,4],[6,2],[6,5],[-4,0],[-2,3],[-3,8],[-3,3],[-4,1],[-7,2],[16,8],[7,6],[-2,6],[3,11],[-5,6],[-8,5],[-6,6],[0,4],[-1,12],[0,5],[-4,6],[-4,3],[-4,2],[-11,8],[-3,4],[-1,7],[2,3],[8,7],[1,6],[-3,13],[-13,15],[-3,9],[0,10],[18,17],[1,5],[0,15],[-2,9],[-5,4],[-8,-4],[-5,-5],[-4,-7],[-9,-16],[-8,-9],[-16,-13],[-6,-12],[10,-7],[25,-38],[-2,0],[-1,-7],[-18,-13],[11,-9],[12,0],[13,-4],[9,-20],[-4,-5],[0,-6],[2,-7],[5,-6],[-27,-23],[-10,-18],[6,-16],[-5,-4],[-7,-1],[-7,0],[-6,3],[-2,5],[1,5],[3,8],[3,13],[4,9],[4,5],[8,2],[-4,5],[-15,17],[1,9],[3,6],[4,5],[4,2],[-6,11],[-7,8],[-7,5],[-7,-3],[-1,-3],[-1,-4],[0,-8],[-2,-4],[-13,-5],[5,-12],[-3,-8],[-12,-13],[10,-9],[3,-6],[-1,-9],[-5,-7],[-22,-10],[-2,-3],[0,-4],[-1,-3],[-4,-2],[-23,1],[-7,3],[-4,5],[1,7],[-4,8],[-6,-2],[-10,-11],[-9,-3],[-10,0],[-10,3],[-8,5],[-5,11],[-2,2],[-43,19],[-5,5],[1,6],[4,5],[3,6],[-2,9],[-3,8],[-5,7],[-6,4],[-6,-3],[-10,-13],[-7,-4],[-15,11],[-16,3],[-7,5],[5,3],[9,2],[3,4],[2,5],[-1,4],[-1,4],[0,3],[6,7],[42,18],[6,7],[2,10],[-2,6],[-5,6],[-3,10],[5,1],[9,4],[5,0],[-1,2],[-2,1],[-3,1],[2,0],[-6,2],[-8,4],[-5,8],[0,10],[-4,11],[-2,5],[-3,4],[0,8],[-2,6],[-8,11],[18,15],[132,44],[6,10],[-5,3],[1,2],[75,20],[22,18],[30,17],[9,1],[12,-1],[11,3],[7,14],[-10,-2],[-32,2],[14,7],[28,3],[28,10],[44,-4],[0,-4],[-2,0],[-3,0],[-4,-4],[10,-4],[74,17],[25,-6],[27,6],[9,-3],[7,-10],[1,-9],[8,-2],[31,8],[26,-3],[12,6],[-34,8],[0,5],[19,18],[9,5],[77,7],[17,-6],[-2,-5],[6,-1],[8,0],[6,-2],[1,-8],[9,-7],[14,-5],[13,-1],[9,5],[-21,14],[-7,2],[0,3],[80,5],[-20,9],[-42,-8],[-20,6],[-8,4],[-57,10],[-7,-5],[4,-4],[-10,1],[-5,2],[-5,5],[4,1],[16,15],[5,3],[33,10],[20,-1],[6,4],[-11,6],[-11,3],[-49,-4],[-13,4],[-9,16],[15,3],[28,17],[14,4],[31,-4],[28,8],[-5,5],[-76,3],[-63,-21],[-92,11],[-11,10],[5,16],[-6,2],[-8,5],[-6,8],[-2,10],[7,11],[24,6],[6,11],[-1,6],[-4,4],[-6,6],[-1,5],[-1,8],[-2,3],[-4,4],[-18,1],[-11,2],[-4,4],[-5,6],[3,0],[3,0],[3,2],[3,2],[-4,4],[-6,1],[-10,-1],[-6,1],[-30,18],[-49,15],[-6,6],[-3,9],[2,9],[5,9],[12,14],[-2,5],[2,4],[0,5],[-2,5],[-2,6],[-5,2],[-6,-2],[-5,0],[-3,8],[14,0],[4,5],[-3,11],[16,5],[5,3],[-3,3],[-29,22],[0,3],[6,-3],[18,0],[0,-3],[-1,-1],[-2,-1],[8,-8],[10,-5],[11,-3],[118,25],[118,24],[96,-9],[50,-21],[59,-10],[66,-26],[40,-35],[27,-12],[5,-14],[11,-20],[7,-9],[3,-6],[1,-6],[1,-7],[2,-6],[2,-3],[4,-3],[2,-4],[-2,-4],[10,-28],[4,-9],[3,-5],[11,-8],[7,-10],[-5,-10],[-16,-19],[12,0],[43,21],[13,1],[6,2],[0,2],[0,3],[0,2],[3,1],[2,0],[3,-2],[3,-2],[2,-4],[-3,-4],[-4,-3],[-4,-1],[-4,0],[2,-5],[4,-4],[4,-2],[4,-1],[4,-2],[10,-11],[9,-5],[111,-11],[18,-5],[49,-31],[82,-12],[-5,11],[-18,10],[-8,7],[3,8],[-3,6],[-6,5],[-5,1],[12,14],[21,0],[39,-10],[82,9],[83,-17],[83,-16],[-2,8],[-4,13],[1,4],[-88,22],[-10,18],[9,8],[50,0],[14,5],[19,13],[22,3],[10,4],[4,3],[5,5],[11,18],[4,2],[12,3],[65,62],[11,4],[4,3],[2,7],[2,7],[1,4],[5,1],[15,7],[28,40],[-2,1],[-6,3],[11,8],[24,11],[9,14],[2,7],[0,10],[1,5],[6,7],[22,11],[-12,12],[5,3],[10,2],[4,4],[-4,3],[-7,8],[-2,5],[2,0],[1,1],[1,2],[-11,11],[-3,6],[15,10],[16,4],[32,-2],[0,8],[4,5],[6,4],[4,7],[-52,-1],[-42,-11],[-30,-20],[-5,-6],[-2,-17],[7,-13],[8,-12],[1,-11],[-7,-7],[-49,-21],[-6,-6],[0,-5],[-2,-4],[-4,-5],[-4,-7],[2,0],[-4,-6],[-20,-9],[-10,-8],[-4,-5],[-17,-39],[-5,-8],[-10,-8],[-25,-14],[-17,-29],[-9,-9],[-71,-43],[-67,-25],[-2,2],[1,4],[3,4],[2,2],[-50,-2],[-69,14],[-119,-8],[-7,3],[-16,11],[-6,7],[2,4],[-3,7],[3,5],[6,5],[51,19],[6,4],[11,14],[24,14],[9,9],[11,20],[0,2],[-3,4],[-2,5],[-4,3],[-4,2],[-4,1],[-1,0],[-1,0],[-1,0],[-1,0],[4,-1],[1,0],[3,-6],[2,-2],[-4,-12],[-1,-3],[-5,-7],[-2,-4],[-8,-9],[-21,-6],[-26,-18],[-64,-22],[-5,3],[-11,9],[-78,22],[-7,7],[2,7],[5,8],[4,10],[-19,10],[-4,5],[39,12],[3,6],[1,9],[2,8],[7,5],[30,-3],[24,10],[7,6],[-7,9],[-11,0],[-11,-5],[-12,-9],[-15,1],[-32,-11],[-18,0],[-15,6],[-5,4],[-1,7],[5,8],[18,16],[19,8],[20,1],[40,-6],[21,3],[17,8],[8,1],[9,-4],[-2,0],[-12,-19],[-6,-11],[5,-2],[59,42],[89,-12],[12,6],[-65,18],[-96,-6],[-95,-5],[-32,-15],[-34,-7],[-5,0],[-5,6],[-1,7],[1,5],[2,4],[4,1],[-46,4],[-7,10],[5,9],[83,33],[83,34],[13,-2],[25,-11],[61,-4],[5,2],[26,16],[16,6],[55,-3],[14,7],[-83,-1],[-42,-13],[-31,0],[-68,26],[15,15],[13,18],[-1,4],[-2,3],[-4,2],[-4,-1],[0,4],[53,-6],[61,21],[64,-8],[51,-18],[51,11],[0,4],[-55,0],[-56,17],[-91,3],[-32,-12],[-22,2],[-6,7],[6,18],[4,6],[14,14],[3,5],[6,13],[12,11],[61,10],[3,6],[-2,8],[-4,3],[-6,-1],[-5,-2],[-8,-7],[-8,-5],[-9,-2],[-9,0],[-8,3],[-15,10],[-8,3],[2,3],[2,2],[2,2],[0,1],[3,6],[4,10],[2,12],[1,10],[3,11],[7,6],[3,6],[-6,12],[20,15],[16,24],[6,6],[6,4],[-8,5],[-9,-5],[-17,-19],[-26,-22],[-7,-8],[0,-6],[-1,-10],[-3,-9],[-4,-4],[-3,-1],[-6,-10],[-3,-3],[-8,-4],[-4,-4],[-2,-6],[3,-1],[1,-2],[4,-5],[-3,-5],[-3,-9],[0,-8],[4,-6],[-5,-7],[-14,-12],[-6,-2],[1,-6],[1,-3],[1,-2],[3,-1],[0,-4],[-9,-2],[-7,-4],[-31,-30],[-11,-15],[-35,-25],[-6,-7],[-2,-6],[-28,-19],[-10,-2],[0,4],[3,0],[3,1],[5,4],[-103,-17],[-102,-16],[-5,2],[-7,4],[-6,7],[1,10],[6,14],[4,6],[5,2],[0,4],[-2,2],[-3,4],[-1,2],[9,5],[29,3],[6,3],[21,22],[23,14],[3,8],[2,10],[4,5],[4,4],[4,7],[-3,0],[-2,1],[-3,3],[8,11],[8,5],[3,8],[-4,17],[2,0],[4,4],[-4,4],[-4,1],[-5,-2],[-4,-3],[2,0],[-2,-4],[-1,-4],[0,-3],[1,-5],[-5,-5],[-11,-7],[-8,-2],[-3,-2],[-2,-3],[-1,-2],[-13,-5],[-3,-3],[-1,-5],[-1,-13],[-1,-6],[-4,-5],[-17,-8],[-26,-20],[-14,-6],[-19,8],[-23,-1],[-13,5],[-6,0],[-6,-5],[-11,-16],[-44,-30],[-12,-5],[-100,2],[-99,2],[-8,3],[-6,7],[12,15],[16,10],[96,12],[0,4],[-31,3],[-21,10],[-19,-9],[-20,-3],[-20,2],[-9,9],[0,6],[6,13],[1,7],[-1,9],[-3,13],[-1,6],[2,16],[3,13],[-1,11],[-8,11],[5,14],[8,10],[90,58],[83,-1],[0,5],[0,7],[-12,9],[-42,-9],[-13,4],[-6,5],[1,6],[36,32],[6,12],[2,17],[6,10],[91,57],[8,1],[8,0],[13,-6],[136,22],[72,-4],[74,26],[30,5],[38,19],[7,2],[16,-5],[37,6],[90,-30],[134,-9],[133,-10],[55,-27],[63,-12],[17,-15],[27,-14],[104,-18],[9,-7],[14,-7],[4,-3],[-4,-4],[4,-5],[13,-4],[4,-3],[2,-4],[1,-4],[3,-4],[8,-6],[20,-9],[18,-3],[18,-9],[10,-2],[22,11],[7,2],[0,2],[-1,2],[-1,4],[-75,38],[-23,23],[28,6],[7,6],[-2,4],[64,-8],[8,4],[-12,14],[-21,5],[-121,-15],[-9,2],[-23,18],[-10,3],[-21,1],[-10,3],[-12,12],[-5,2],[-31,0],[-5,2],[-2,3],[-4,11],[-3,4],[14,8],[63,3],[93,-12],[68,-4],[13,5],[9,6],[85,12],[68,-1],[9,-5],[-19,-6],[15,-2],[12,3],[2,13],[4,0],[3,3],[6,9],[-6,7],[-22,9],[3,7],[10,12],[4,17],[4,6],[4,4],[3,-1],[5,6],[45,27],[-5,5],[-11,3],[-3,4],[-4,-5],[-89,-25],[-17,-9],[-8,-14],[3,0],[-4,-6],[-16,-10],[-19,-19],[-6,-3],[-115,-18],[-7,2],[-14,8],[-99,23],[-101,-6],[-94,1],[-81,17],[-88,-4],[-64,36],[-68,14],[-8,8],[0,14],[5,6],[18,6],[12,9],[42,21],[15,0],[31,-9],[49,-1],[31,-15],[1,-1],[-3,-3],[-3,-9],[6,0],[5,-2],[5,-3],[3,-3],[1,-2],[0,-2],[0,-3],[1,-2],[3,-2],[75,-7],[74,-6],[13,4],[10,11],[-12,7],[-25,-12],[-12,0],[-42,14],[-6,4],[4,3],[2,1],[-10,8],[-42,15],[-23,3],[-9,7],[2,1],[0,2],[1,2],[1,2],[-3,0],[-4,0],[-3,2],[-3,3],[5,7],[7,5],[14,8],[-8,16],[-11,2],[-23,-17],[-16,-7],[-52,6],[3,6],[-1,9],[-4,9],[-4,8],[4,0],[-3,9],[-6,5],[-6,3],[-7,9],[-2,1],[-2,3],[-1,10],[-1,2],[-1,2],[-1,5],[-1,19],[-1,5],[-3,3],[-3,1],[-3,1],[-1,6],[0,12],[0,2],[-5,5],[-23,11],[-28,5],[-53,23],[-4,6],[3,10],[-5,3],[-8,3],[-11,8],[-1,3],[0,2],[0,3],[2,3],[-5,7],[-5,6],[-13,8],[3,7],[5,8],[-43,20],[-41,17],[-85,18],[-65,-7],[-82,21],[-81,12],[-7,4],[-4,5],[-2,5],[0,5],[2,16],[2,5],[4,1],[25,0],[-5,4],[-11,5],[-5,7],[-2,6],[-2,13],[-2,6],[3,9],[2,9],[2,9],[5,7],[10,8],[23,6],[96,-10],[24,-9],[96,-3],[32,-18],[24,-3],[13,4],[9,11],[-47,5],[-27,18],[-98,8],[-22,8],[-136,9],[-26,14],[-12,10],[-1,2],[-1,3],[0,3],[0,3],[-4,8],[-9,11],[-3,8],[-3,15],[3,10],[15,21],[9,9],[2,3],[1,6],[2,6],[2,4],[3,3],[-2,4],[2,6],[2,6],[2,12],[-1,0],[-1,2],[-1,3],[1,3],[3,4],[8,1],[10,5],[76,6],[75,5],[47,-14],[114,-27],[96,3],[95,3],[82,-3],[82,-3],[69,-11],[124,-62],[64,-42],[121,-49],[70,-36],[70,-37],[19,-16],[8,-11],[17,-28],[9,-11],[5,-6],[-2,-2],[-2,-2],[-2,-8],[21,-14],[22,-6],[44,0],[-4,-16],[3,-10],[17,-15],[-6,-4],[-6,-3],[-7,-1],[-6,3],[-6,4],[-7,3],[-6,-2],[-4,-7],[38,-10],[18,4],[37,24],[21,0],[110,-21],[109,-22],[-3,5],[-4,3],[-4,2],[-4,3],[6,7],[75,14],[74,14],[37,-3],[9,2],[46,34],[-90,-5],[-90,-5],[-12,-9],[-121,-12],[-123,39],[-50,-3],[-6,2],[-2,2],[6,14],[1,6],[-17,6],[-17,2],[12,12],[6,10],[-2,12],[-9,21],[-6,10],[-9,6],[-2,6],[1,5],[3,3],[23,8],[35,0],[11,8],[-15,9],[-76,11],[-75,11],[-20,11],[-27,5],[-97,57],[-118,77],[-16,20],[-57,23],[0,3],[13,7],[86,12],[87,12],[76,8],[76,9],[105,4],[116,12],[117,13],[117,12],[16,9],[-5,3],[-10,3],[-4,6],[86,11],[75,3],[76,3],[22,9],[108,-2],[31,9],[32,-5],[32,9],[82,-2],[82,-2],[16,3],[5,5],[-1,1],[-1,3],[2,0],[1,1],[1,2],[1,1],[1,0],[0,3],[-106,6],[-107,6],[-136,-4],[-96,0],[-96,1],[0,4],[15,8],[95,19],[49,20],[87,8],[64,20],[59,5],[29,16],[54,2],[29,6],[12,7],[128,7],[62,10],[103,-1],[79,4],[79,4],[14,6],[9,13],[-29,14],[-52,0],[-69,-9],[-101,10],[-85,1],[-84,0],[-33,-10],[-102,-9],[-101,-9],[-8,1],[-5,3],[-12,8],[7,12],[8,7],[6,9],[-5,19],[-6,8],[-5,4],[-2,5],[5,9],[6,6],[116,55],[12,10],[8,15],[-22,3],[9,11],[17,5],[33,1],[29,7],[28,16],[19,17],[41,21],[49,14],[11,8],[72,12],[47,21],[35,-1],[29,19],[58,16],[4,4],[-13,7],[-18,2],[-128,-29],[-129,-29],[-26,-13],[-88,-18],[-81,-47],[-31,-8],[-25,-12],[-7,-8],[-7,-10],[-6,-14],[9,-6],[4,-2],[5,0],[-13,-7],[-57,-3],[-78,27],[-78,28],[12,-15],[86,-43],[16,-2],[8,-5],[-11,-12],[-30,0],[-13,-4],[-18,-23],[-2,-4],[-4,-10],[9,-6],[9,-2],[10,0],[18,5],[4,-5],[-1,-9],[-7,-8],[-23,-18],[-9,-1],[-19,1],[-9,-4],[-7,-10],[-2,-12],[-11,-11],[-36,-23],[-87,-18],[-36,-20],[-38,-7],[-46,-7],[-77,-21],[-67,-25],[-95,-20],[-93,-4],[-72,-14],[-73,-9],[-73,-9],[-11,-7],[-3,1],[-93,-2],[-53,-9],[-57,5],[-13,8],[-1,16],[7,14],[7,12],[9,9],[10,3],[29,0],[16,4],[15,15],[95,13],[95,12],[34,17],[24,4],[51,33],[-6,5],[-23,-1],[-30,8],[-15,-3],[-29,-14],[-68,-14],[-13,-7],[-17,1],[-7,-2],[-5,-5],[-4,-6],[-5,-5],[-6,-2],[-117,-11],[-84,-15],[-54,2],[-8,3],[-6,5],[6,4],[-3,4],[-9,8],[12,10],[47,7],[58,28],[7,8],[-42,9],[-13,-5],[-13,-13],[-4,-4],[-42,-15],[-13,-1],[-6,-2],[-16,-14],[-13,-4],[-43,8],[5,-4],[19,-8],[-10,-2],[-5,-7],[1,-10],[8,-10],[6,-6],[7,-9],[5,-10],[3,-11],[-6,-8],[-10,-24],[-7,-11],[-12,-9],[-14,-4],[-51,-1],[-88,-15],[-82,13],[-65,-1],[-54,-16],[-119,13],[-28,9],[-41,-6],[-19,7],[20,19],[44,16],[20,14],[-62,-14],[-73,-38],[-19,0],[-88,20],[-87,20],[17,27],[38,39],[104,68],[105,68],[49,20],[32,3],[15,6],[25,0],[36,9],[6,6],[4,2],[54,3],[-4,5],[5,3],[6,2],[6,-1],[12,-8],[8,-1],[92,9],[92,8],[22,9],[129,12],[128,13],[129,12],[15,8],[66,7],[27,12],[-6,3],[-126,-13],[-127,-14],[-126,-13],[-126,-13],[-15,2],[-128,-9],[-128,-9],[-28,-11],[-32,6],[-27,-6],[-80,-10],[-92,-24],[-71,-39],[-21,-19],[-5,-4],[-29,-8],[-17,-18],[2,-4],[-124,-62],[-5,-7],[-4,-18],[-19,-16],[-31,-19],[-52,1],[-67,7],[-53,18],[-57,3],[-77,24],[-68,28],[-85,18],[-71,31],[-56,16],[-18,17],[-3,5],[1,3],[7,5],[24,4],[21,10],[68,3],[46,14],[125,10],[80,0],[81,0],[59,-10],[134,5],[30,10],[92,-1],[67,14],[49,24],[73,9],[44,-5],[8,5],[-13,5],[-7,4],[-5,7],[8,8],[9,5],[30,6],[21,11],[20,5],[20,11],[96,27],[96,16],[20,10],[10,3],[-5,7],[-7,2],[-7,-1],[-7,-3],[-6,-1],[-25,12],[-20,-4],[-65,-3],[-88,-17],[-87,-18],[-91,-30],[-26,-22],[-63,-16],[2,0],[-117,-8],[-126,-25],[-131,6],[-136,-10],[-137,-9],[-136,-10],[-137,-10],[-33,7],[-15,8],[-23,5],[-28,14],[-6,6],[-12,18],[-20,18],[-6,8],[-3,11],[4,2],[11,10],[87,33],[6,-1],[13,-5],[20,5],[14,-1],[53,-21],[12,-1],[87,11],[87,12],[-17,11],[-109,-9],[-52,20],[-71,11],[-35,16],[9,7],[87,13],[44,25],[58,2],[70,35],[29,-8],[10,-1],[9,4],[-8,1],[-16,9],[-8,2],[6,8],[6,3],[110,14],[52,-1],[102,9],[0,-4],[-3,0],[-3,0],[-2,-2],[-2,-3],[10,-5],[13,-1],[29,7],[19,-4],[54,0],[67,-18],[10,5],[-3,1],[-3,1],[-3,3],[-2,3],[-7,6],[-102,15],[-102,16],[-24,-8],[-32,4],[4,4],[-13,9],[-17,3],[-17,-3],[-28,-13],[-30,-6],[-102,-8],[-91,-21],[-57,-10],[-76,-25],[-131,-28],[-26,-13],[-19,-5],[-20,2],[-17,8],[20,8],[-105,29],[7,10],[103,31],[104,32],[31,-2],[6,2],[3,3],[4,9],[4,3],[76,3],[16,19],[-70,0],[-71,-4],[4,6],[5,2],[5,1],[5,3],[-7,4],[-16,1],[-7,3],[-29,21],[-17,5],[-10,-1],[-6,-7],[0,-7],[6,-8],[12,-11],[-7,0],[-22,8],[-26,-1],[-54,11],[-9,-2],[-18,-19],[-14,-5],[-27,0],[-12,-4],[-6,-4],[-4,-7],[1,-6],[11,-20],[-6,0],[-8,-2],[-8,-3],[-11,-8],[-5,-1],[-3,1],[3,5],[-12,6],[-91,-18],[15,8],[2,4],[-1,2],[-8,19],[-11,6],[-75,5],[-17,10],[-19,-2],[-19,9],[4,6],[6,3],[13,-1],[-5,4],[-7,3],[-13,1],[12,6],[26,-4],[14,2],[-12,8],[5,4],[11,2],[5,2],[-4,4],[8,8],[2,4],[-4,4],[6,4],[25,1],[13,10],[24,11],[24,3],[54,-8],[24,4],[19,-3],[5,3],[-26,12],[-8,8],[18,16],[21,7],[78,-2],[10,5],[2,2],[0,2],[0,2],[1,3],[3,2],[5,0],[13,6],[102,14],[86,-9],[-6,7],[-8,4],[26,-1],[35,12],[12,1],[11,-6],[-4,-4],[-9,-1],[-4,-3],[10,-6],[17,-15],[31,-12],[11,1],[5,-1],[4,-4],[-1,-2],[-5,-6],[9,1],[23,-4],[9,-6],[-4,6],[0,1],[3,6],[20,7],[25,21],[9,4],[-8,9],[-57,4],[-7,2],[-4,6],[2,6],[6,4],[13,6],[25,1],[49,-21],[25,8],[-4,8],[2,2],[2,2],[-20,25],[14,10],[91,31],[124,13],[19,7],[10,0],[4,1],[4,5],[3,2],[6,1],[20,-1],[57,-17],[57,9],[60,-9],[49,-28],[6,-8],[-40,-24],[8,-7],[78,-21],[78,-21],[-8,13],[-16,10],[-77,14],[-11,12],[79,8],[0,4],[-7,1],[-34,16],[-2,4],[3,7],[7,5],[93,4],[103,-7],[27,-1],[14,-8],[37,-9],[76,-46],[76,-47],[9,-1],[8,4],[-10,14],[-65,36],[-26,24],[14,11],[115,0],[19,-6],[50,-46],[30,-15],[32,-6],[-40,27],[-36,35],[11,6],[46,-4],[8,-4],[4,-10],[-2,-17],[15,-13],[15,-9],[33,-6],[-5,6],[-18,12],[-2,5],[-3,15],[-3,6],[-11,14],[-137,22],[-137,21],[-137,22],[-137,22],[-37,31],[-5,11],[8,7],[81,12],[55,-6],[96,4],[95,4],[30,18],[15,3],[30,-2],[14,8],[-30,13],[-10,7],[5,5],[11,7],[5,5],[-27,0],[-5,8],[9,20],[-13,9],[-44,-1],[-22,8],[-30,0],[-7,4],[5,7],[6,2],[7,0],[26,11],[98,3],[97,3],[98,3],[13,-5],[10,-13],[-6,-5],[-71,-3],[-12,-7],[118,-16],[38,-16],[-2,-4],[12,-8],[41,12],[73,-7],[73,-7],[69,-27],[12,-12],[3,-7],[0,-3],[0,-3],[1,-7],[3,-8],[6,-5],[84,-33],[5,-5],[13,-18],[5,-4],[-8,-16],[-14,-9],[-28,-4],[0,-4],[95,-2],[95,-2],[96,-2],[43,-15],[11,0],[8,5],[-5,3],[-14,13],[-46,17],[-131,-3],[-12,6],[-59,49],[-47,26],[-3,3],[-1,5],[0,11],[-1,13],[2,3],[5,3],[9,2],[110,-30],[48,0],[75,-34],[76,-21],[76,-21],[-2,0],[136,-31],[135,-30],[1,-8],[12,-4],[14,0],[21,7],[117,-24],[112,-64],[13,-16],[11,-5],[83,-4],[-125,70],[-8,11],[2,4],[-15,8],[-31,1],[-15,8],[6,5],[13,6],[5,5],[-8,6],[-99,15],[-99,16],[-99,15],[-9,9],[-2,6],[0,3],[2,2],[22,9],[5,4],[-117,2],[-132,43],[-131,43],[-132,43],[-4,7],[-1,7],[0,3],[14,17],[51,42],[138,-4],[139,-3],[6,3],[-7,4],[-21,-4],[-93,13],[-3,3],[-103,32],[-28,21],[7,16],[12,8],[72,9],[90,-13],[91,-13],[74,-28],[73,-29],[85,5],[-5,9],[-69,34],[-69,34],[-9,9],[2,3],[-11,14],[-30,6],[-27,17],[-31,6],[-27,15],[-3,5],[5,9],[8,5],[18,4],[107,-9],[108,-8],[107,-9],[10,-10],[-1,-2],[-2,-4],[-1,-2],[32,-12],[10,-8],[-5,-8],[-3,-3],[-3,-2],[8,-12],[14,-6],[50,-8],[13,-6],[8,-1],[7,1],[6,4],[-39,15],[-12,9],[9,10],[14,4],[108,-14],[107,-14],[25,7],[27,-7],[109,4],[12,7],[-129,15],[-129,15],[-128,15],[-10,9],[2,11],[-21,3],[21,11],[68,2],[0,4],[-93,9],[-94,10],[-14,9],[-8,12],[11,4],[22,1],[15,7],[10,0],[4,2],[14,10],[113,10],[114,11],[4,-3],[10,-7],[5,-3],[22,0],[-2,-1],[-3,-2],[-1,-4],[-1,-4],[11,-2],[15,-6],[12,-10],[2,-15],[18,-3],[5,2],[55,39],[25,3],[27,-3],[22,-9],[5,-4],[1,-8],[-2,-6],[-13,-19],[11,-12],[13,6],[14,10],[13,0],[2,-9],[10,-3],[20,-1],[23,-11],[19,0],[0,4],[-8,0],[-12,3],[-11,5],[-7,8],[12,7],[40,-11],[9,1],[2,3],[-4,6],[-5,4],[-18,6],[9,7],[64,13],[99,-18],[99,-17],[53,-36],[6,-10],[-7,-6],[-3,-2],[10,-5],[38,-6],[17,-8],[48,-41],[34,-6],[11,-5],[4,-4],[5,-2],[9,0],[14,-7],[31,-1],[57,-19],[19,-1],[-6,-7],[-8,-5],[-14,-5],[-24,-17],[-19,-6],[-12,-9],[-11,-13],[-9,-15],[4,0],[9,-10],[12,2],[71,41],[70,41],[57,4],[17,11],[-11,7],[-92,17],[-93,17],[2,2],[1,2],[1,3],[-15,0],[-18,5],[-17,10],[-11,18],[23,11],[48,-3],[22,12],[-110,0],[-46,20],[-36,33],[-100,33],[-100,32],[7,9],[8,5],[56,14],[-3,-4],[-3,-3],[-3,-1],[-3,0],[13,-7],[124,7],[124,7],[28,11],[98,-4],[98,-4],[12,-5],[23,0],[3,-1],[1,-4],[28,0],[10,5],[-2,0],[29,6],[119,-11],[119,-12],[40,-23],[11,-1],[-2,-7],[2,-5],[3,-1],[2,-3],[6,0],[5,-2],[15,-11],[4,-4],[7,-12],[10,-12],[114,-33],[115,-32],[114,-33],[-3,4],[-2,1],[0,4],[30,4],[0,4],[-85,19],[-85,18],[-59,31],[-13,2],[4,7],[-17,19],[-9,7],[-33,5],[-23,9],[10,12],[13,7],[38,8],[52,29],[88,14],[13,8],[-35,0],[11,9],[51,5],[24,9],[30,3],[6,-2],[14,-11],[5,-1],[64,18],[89,-2],[90,-1],[12,-7],[-12,-5],[-38,-24],[-9,-14],[9,-11],[54,-23],[0,-2],[-1,-2],[-1,-2],[-2,-2],[104,-19],[104,-18],[-9,11],[-122,50],[-41,6],[-13,6],[6,8],[59,22],[43,6],[6,5],[-3,1],[-3,3],[-2,3],[-1,5],[31,2],[19,-10],[10,-2],[10,1],[10,5],[-4,2],[-8,3],[-3,-1],[20,7],[105,1],[104,1],[105,1],[8,-6],[-5,0],[-5,-2],[-11,-6],[5,-4],[9,-2],[5,-2],[-7,-5],[-18,-4],[-5,-7],[21,0],[-1,-2],[7,-2],[54,1],[9,-6],[-15,-2],[-28,-16],[-15,-2],[12,-7],[111,13],[49,20],[11,-2],[7,-10],[-3,-18],[9,-8],[76,0],[14,4],[-2,0],[29,12],[100,-6],[8,-6],[-7,-11],[-6,-13],[16,-9],[18,4],[19,8],[112,10],[116,-22],[18,9],[-1,7],[5,2],[45,-6],[-9,-8],[-3,-3],[24,-6],[12,1],[18,19],[13,-2],[23,-8],[70,1],[12,-6],[11,2],[6,-1],[-5,-5],[-20,-3],[3,-4],[4,-2],[7,-2],[-6,-8],[-124,-37],[2,-4],[-13,-8],[-84,-11],[-27,-14],[-67,-6],[-14,-5],[-17,1],[-22,-8],[-30,-1],[-23,-10],[-77,-10],[-78,-11],[-16,-9],[-42,-10],[-10,-8],[15,-5],[109,5],[109,6],[109,5],[50,21],[32,3],[12,7],[67,8],[54,-7],[9,6],[-3,3],[-3,1],[-3,1],[-3,-1],[5,11],[9,6],[108,25],[108,25],[99,1],[10,-7],[-4,-6],[-15,-11],[9,-11],[14,-4],[80,-5],[-13,8],[-29,3],[-13,9],[9,3],[35,23],[8,2],[18,1],[-12,9],[-31,-2],[-14,5],[8,4],[21,1],[19,11],[121,6],[12,-6],[-7,-8],[-10,-4],[-52,2],[-9,-6],[14,-7],[49,-1],[-3,-5],[-9,-11],[12,-10],[37,-12],[24,-16],[13,-4],[11,5],[-1,2],[-3,5],[-1,1],[8,5],[18,0],[53,27],[96,-3],[95,-3],[11,-5],[8,-9],[-3,-4],[0,-5],[1,-6],[2,-5],[-15,-11],[-15,-6],[-101,-11],[56,-3],[20,-9],[11,-1],[-1,-2],[-3,-7],[-2,-3],[6,-3],[15,3],[6,-1],[9,-5],[30,-5],[26,-9],[-9,-10],[-11,-3],[-22,1],[3,-8],[113,-11],[10,-14],[-9,0],[-12,-4],[-10,-7],[-8,-9],[0,-4],[1,-4],[1,-4],[-6,-11],[-2,-5],[-3,-4],[-6,0],[0,-4],[8,0],[0,-4],[-60,-5],[-11,-3],[-7,-9],[94,10],[13,7],[24,25],[9,3],[8,1],[2,-1],[2,-2],[0,-7],[2,-3],[6,-3],[19,-1],[-2,5],[-2,3],[-3,3],[-3,1],[7,8],[79,2],[78,2],[0,-4],[-35,-1],[-9,-7],[2,-4],[-3,-3],[-1,-2],[-3,-7],[26,4],[6,8],[-2,1],[-4,3],[44,0],[-1,-2],[-1,-6],[73,-2],[73,-2],[3,-2],[63,-21],[57,-40],[9,-13],[5,-18]],[[27822,81943],[10,-11],[1,-3],[1,-6],[1,-2],[-1,-2],[-3,-4],[-3,-4],[-4,-2],[-5,-2],[-10,5],[-7,-2],[-5,3],[-2,18],[2,15],[4,12],[6,6],[11,-7],[1,-4],[1,-5],[2,-5]],[[27791,82065],[-1,-17],[10,-15],[-1,-13],[-7,-5],[-10,-1],[-10,5],[-7,21],[-7,6],[-4,7],[4,14],[8,7],[19,-1],[8,4],[-1,-3],[0,-3],[0,-2],[-1,-4]],[[27816,82398],[-1,0],[-1,-1],[-1,-2],[-1,-1],[-9,7],[-3,5],[-3,8],[5,-1],[14,-11],[0,-4]],[[27784,83753],[-16,-7],[-8,-1],[-7,2],[-4,4],[-1,1],[1,4],[1,16],[0,4],[11,19],[2,7],[-2,8],[0,4],[8,9],[8,4],[31,2],[5,3],[3,6],[-1,6],[-4,8],[-1,5],[2,2],[2,3],[2,0],[8,-4],[16,-7],[8,-1],[5,2],[8,6],[3,1],[4,2],[6,12],[6,7],[4,11],[5,12],[1,11],[2,12],[3,10],[4,7],[5,5],[0,-5],[-1,-4],[-1,-4],[-2,-3],[-3,-20],[-6,-24],[-14,-38],[-10,-20],[-11,-13],[-72,-64]],[[27890,84090],[4,4],[2,0],[0,4],[-3,3],[-1,4],[0,4],[2,6],[2,3],[1,-1],[1,-3],[2,-3],[0,-2],[2,-9],[0,-2],[2,0],[2,1],[3,-1],[2,1],[2,-1],[2,-8],[0,3],[1,-1],[1,-2],[4,-18],[1,-10],[-3,-4],[3,-7],[0,-6],[-2,-18],[-2,-2],[-6,4],[-4,-7],[-5,-13],[-5,-8],[-4,8],[-1,9],[2,5],[2,4],[2,7],[2,15],[0,2],[2,14],[-3,11],[-10,14]],[[27804,84163],[2,6],[6,11],[5,7],[2,3],[2,-1],[5,-6],[2,8],[3,6],[3,0],[3,-6],[6,-9],[2,-6],[1,-7],[1,-7],[5,-23],[2,-19],[-2,-11],[-5,-6],[-9,-1],[-2,3],[0,7],[1,11],[-1,6],[-2,17],[-1,7],[-3,12],[-19,-7],[-7,5]],[[27835,84480],[-4,3],[-6,11],[-5,12],[-1,8],[3,2],[4,-3],[4,0],[2,16],[3,4],[2,2],[2,3],[-2,6],[-3,-1],[-6,-7],[-3,3],[1,6],[3,10],[2,8],[5,10],[5,9],[5,4],[1,2],[2,4],[2,2],[2,-3],[2,-5],[2,-11],[3,-10],[2,-12],[0,-14],[-2,-10],[-5,-6],[-11,11],[-5,-5],[-2,-11],[0,-29],[-2,-9]],[[27647,85701],[-2,-5],[0,-2],[1,-2],[2,-3],[0,-3],[-1,-3],[-1,-1],[-1,-1],[-3,-9],[-7,-19],[-2,-11],[-2,-9],[-4,-3],[-3,6],[4,16],[-2,0],[6,16],[1,5],[-2,0],[-3,1],[-4,3],[17,20],[6,4]],[[27715,85843],[4,-5],[12,-4],[5,-3],[-2,-5],[-1,-3],[0,-3],[1,-5],[-1,0],[-1,-1],[-2,-3],[-10,-5],[-4,-3],[-4,-6],[-1,-3],[-3,-9],[-2,-4],[-2,-1],[-6,-2],[-6,-3],[-3,-1],[-2,0],[-5,3],[0,2],[2,3],[1,7],[2,5],[5,4],[3,5],[-1,8],[4,3],[3,0],[4,-2],[4,-1],[0,4],[-1,1],[-1,4],[-1,3],[2,3],[3,5],[1,6],[1,6],[1,-3],[1,1],[0,2]],[[27747,85863],[3,7],[5,8],[2,7],[-6,7],[-1,-7],[-2,-3],[-3,-3],[-2,-5],[-2,-2],[-2,-1],[-2,-1],[-1,-5],[0,-5],[0,-4],[-1,-3],[-3,-2],[-4,3],[0,5],[14,41],[5,10],[3,4],[9,5],[7,11],[3,3],[2,0],[3,3],[2,1],[1,-2],[3,-8],[2,-2],[3,2],[3,4],[4,2],[5,-5],[3,-4],[3,-3],[3,-1],[4,0],[-3,-9],[-3,-7],[-9,-12],[-6,-6],[-3,-1],[-3,-1],[-3,-2],[-8,-14],[-13,-8],[-8,-1],[-4,4]],[[31775,76221],[-2,15],[3,3],[13,-2],[-3,-9],[-1,-11],[-4,-8],[-3,-11],[-3,-10],[-6,-3],[3,8],[-2,6],[-2,4],[-3,4],[-3,2],[3,5],[3,3],[7,4]],[[33390,76506],[15,19],[9,11],[-14,-29],[-14,-15],[-14,-10],[-13,-5],[-16,-1],[-15,0],[-16,8],[-11,9],[-4,11],[3,-1],[4,-3],[4,-3],[4,-4],[22,-3],[35,3],[8,4],[6,3],[7,6]],[[31602,76756],[5,6],[3,-3],[0,-6],[-4,-8],[-6,-18],[-16,-32],[-5,-19],[-4,4],[12,39],[8,18],[4,14],[3,5]],[[31427,76958],[3,16],[7,20],[10,6],[6,-2],[3,-10],[4,2],[3,-8],[-1,-5],[-5,2],[-2,-5],[2,-8],[4,-18],[3,-16],[2,-12],[4,-7],[4,-5],[1,-8],[0,-6],[-6,-3],[-5,5],[-1,11],[-3,7],[-3,2],[-4,-2],[-4,5],[-4,-1],[-4,-5],[-8,-1],[-5,-7],[-2,-5],[-3,-14],[-4,-2],[-4,2],[1,14],[3,15],[2,20],[5,13],[1,10]],[[29445,77309],[3,3],[1,1],[17,4],[0,-4],[-1,-3],[-1,-3],[-2,-2],[-1,-2],[-2,-5],[-6,-7],[-4,-8],[-3,-3],[-3,-2],[-7,-2],[-5,-4],[-9,-3],[-17,-1],[-2,1],[-1,2],[-2,2],[-2,6],[0,6],[1,5],[2,4],[4,4],[3,3],[3,1],[21,-2],[3,1],[9,6],[1,2]],[[29475,77354],[4,-1],[3,-3],[2,0],[0,-2],[0,-3],[-4,0],[-2,-1],[-6,-6],[-2,-1],[-2,-1],[-5,1],[-5,1],[0,1],[-1,1],[-2,4],[-4,7],[-2,4],[-1,5],[1,4],[1,1],[1,0],[16,-3],[3,-2],[1,-1],[3,-4],[1,-1]],[[29463,77409],[-1,0],[-1,1],[-1,2],[-1,2],[0,3],[1,3],[1,2],[2,1],[10,7],[1,0],[2,-1],[0,-6],[-4,-7],[-5,-5],[-4,-2]],[[33079,77455],[2,6],[2,1],[3,-3],[3,-4],[-2,-5],[-2,-3],[-3,-1],[-3,1],[-11,-13],[-2,-8],[4,-12],[-6,-6],[-5,-10],[-5,-6],[-5,6],[3,4],[2,5],[1,5],[-3,2],[-8,1],[-3,1],[-4,2],[-3,4],[-4,7],[-4,2],[0,3],[0,3],[-2,7],[2,2],[4,1],[4,6],[6,5],[7,3],[6,2],[14,1],[7,-3],[5,-6]],[[29484,77445],[-2,3],[-1,3],[1,5],[4,9],[6,10],[6,7],[13,24],[5,7],[7,7],[11,8],[3,1],[2,0],[4,-2],[2,0],[14,7],[3,1],[3,-2],[0,-4],[-2,-3],[-6,-5],[-5,-6],[-7,-11],[-1,-4],[-1,-2],[-1,-5],[-10,-26],[-6,-10],[-4,-5],[-3,-3],[-5,-3],[-9,-3],[-17,0],[-4,2]],[[29583,77540],[6,2],[2,0],[1,-5],[-2,-9],[-1,-7],[-6,-30],[0,-11],[-1,-5],[-1,-3],[-5,-11],[-2,-5],[-1,-6],[-1,-6],[-1,-7],[0,-6],[1,-20],[0,-3],[0,-3],[-1,-2],[-2,-1],[-5,-5],[-1,-1],[-1,-2],[-3,-7],[-1,-2],[-2,-3],[-3,-1],[-3,0],[-27,13],[-22,2],[-1,0],[-4,-2],[-10,-9],[-21,-11],[-5,1],[-3,-1],[-1,1],[-3,3],[-1,1],[0,1],[0,2],[-1,1],[4,2],[18,21],[6,5],[1,2],[4,12],[2,3],[2,1],[5,0],[6,2],[2,0],[3,-1],[1,0],[4,2],[14,10],[6,6],[7,12],[6,14],[1,6],[5,13],[2,4],[3,5],[19,23],[4,9],[2,2],[3,2],[2,2]],[[30321,78323],[4,-1],[4,-4],[1,-6],[-1,-9],[-4,-7],[-9,-24],[-4,-6],[-4,-3],[-17,-21],[-22,-19],[-11,-3],[-12,1],[-3,10],[11,17],[25,26],[20,32],[10,13],[12,4]],[[33311,77589],[-4,-1],[-23,-15],[-6,-6],[-3,-9],[-2,-13],[-5,-7],[-7,-4],[-7,-2],[-11,-8],[-20,-24],[-13,-4],[-6,0],[-2,2],[-1,6],[-7,-10],[-3,-4],[-33,-18],[-9,-11],[-3,-2],[-9,0],[-2,-1],[-2,-2],[-2,-2],[-2,1],[-2,4],[0,5],[-1,5],[-2,2],[-21,4],[-5,2],[-1,6],[0,8],[-2,7],[-4,4],[-4,-5],[-3,-8],[-3,-6],[-2,4],[-3,3],[-3,1],[-3,0],[0,-9],[-6,-3],[-15,4],[4,-4],[-2,-7],[-3,-2],[-6,1],[-3,-1],[-8,-11],[-12,-8],[-7,-2],[-5,1],[5,4],[1,4],[-1,4],[-3,5],[-4,2],[-4,-1],[-3,2],[-1,9],[-2,-4],[-1,-7],[-1,-4],[-2,1],[-3,1],[-3,-3],[-4,-5],[-3,-3],[2,-11],[-4,0],[-10,6],[-4,5],[-8,26],[-15,27],[-7,15],[-3,17],[-3,39],[-3,21],[-5,9],[-1,5],[2,32],[-3,10],[-4,8],[-2,8],[2,10],[-2,6],[0,12],[0,7],[-2,2],[-2,4],[-3,5],[-1,6],[3,12],[7,7],[7,6],[4,6],[2,11],[1,17],[2,15],[4,6],[3,4],[13,19],[27,28],[2,2],[1,6],[18,45],[6,21],[4,11],[23,40],[2,8],[2,8],[1,19],[3,9],[7,13],[3,11],[-2,8],[-4,6],[-2,6],[1,6],[3,8],[4,7],[4,3],[-4,-18],[0,-6],[2,-5],[1,4],[2,8],[1,7],[1,5],[9,11],[2,6],[5,21],[13,42],[9,18],[10,13],[12,8],[5,5],[19,36],[14,46],[3,13],[2,4],[3,4],[5,10],[3,0],[6,-5],[11,-2],[3,-2],[2,-4],[2,-3],[2,-4],[4,-1],[7,3],[11,11],[7,2],[4,-5],[-5,-13],[-10,-18],[-8,-22],[-7,-13],[-2,-6],[6,1],[6,-3],[3,-5],[-3,-5],[0,-4],[6,-3],[11,0],[9,1],[6,6],[2,-2],[2,-3],[2,-3],[2,-4],[1,-13],[-1,-18],[-4,-34],[-5,-22],[-1,-8],[-2,-5],[-13,-10],[2,-5],[3,-3],[3,-1],[4,1],[0,-4],[-2,-1],[-4,-2],[-2,-1],[3,-8],[4,-3],[3,-5],[-1,-8],[-1,-4],[-6,-9],[-12,-33],[-11,-60],[-3,-9],[-10,-23],[-2,-8],[-4,-19],[-14,-35],[-7,-31],[1,-6],[1,-3],[13,39],[3,6],[4,3],[14,25],[9,7],[2,1],[5,-2],[1,-4],[-1,-5],[-1,-7],[-2,-11],[-4,-8],[-9,-11],[-38,-74],[-6,-6],[-12,-9],[-4,-7],[-3,-1],[-4,11],[-3,-1],[-6,-12],[-2,-3],[-5,-4],[-12,-7],[-16,-5],[-1,5],[1,4],[3,2],[3,1],[-6,3],[-10,-16],[-18,-35],[-5,-6],[-6,-4],[-24,-10],[-5,-5],[-2,-12],[26,4],[6,3],[5,7],[3,10],[4,9],[18,15],[5,14],[6,2],[13,1],[12,12],[7,4],[4,-6],[-2,-11],[-5,-9],[-6,-9],[-5,-9],[-1,-10],[-1,-13],[-2,-10],[-6,-4],[-3,-1],[-3,-2],[-3,-3],[-2,-4],[-3,-3],[-4,1],[-6,4],[-11,-1],[-6,-3],[-2,-6],[-3,-1],[-15,0],[-5,-1],[6,-4],[2,0],[-4,-6],[-4,-3],[-4,-3],[-3,-9],[4,0],[6,2],[6,4],[3,5],[3,2],[6,0],[4,1],[-2,7],[6,-2],[15,-19],[-3,-4],[-3,2],[-4,4],[-4,2],[-1,-2],[7,-13],[2,-5],[-5,0],[-2,1],[-2,3],[-4,-8],[-3,0],[-3,2],[-2,0],[-4,-6],[-21,-20],[-6,-9],[-3,-12],[1,2],[5,2],[0,-4],[0,-5],[0,-5],[-1,-2],[-3,-1],[-2,-3],[-2,-3],[-2,-2],[2,-3],[2,-3],[14,-5],[9,5],[29,31],[9,3],[11,-2],[11,-7],[8,-12],[2,-10],[-2,-8],[-5,-7],[-6,-14],[-1,-2],[0,-2],[3,-3],[3,-1],[1,2],[-1,3],[-1,3],[6,5],[-2,3],[9,0],[2,3],[3,12],[2,0],[4,-5],[4,0],[0,4],[-3,7],[3,6],[-1,6],[-2,7],[-2,5],[1,10],[2,8],[3,6],[3,5],[5,4],[8,6],[4,6],[3,6],[3,8],[3,7],[4,3],[3,3],[8,14],[8,7],[5,14],[12,7],[9,10],[8,13],[5,13],[-6,-3],[-12,-9],[-9,-12],[-19,-8],[-16,-14],[-6,-4],[-6,-8],[-9,-5],[-3,0],[-4,3],[-2,5],[-3,11],[-2,4],[-4,1],[-3,-1],[-4,0],[-1,6],[3,8],[18,19],[9,13],[5,4],[7,2],[5,4],[16,25],[16,14],[5,7],[16,28],[4,4],[3,5],[9,19],[5,5],[6,0],[6,2],[3,6],[1,12],[-5,-5],[-6,-3],[-12,-1],[-5,-3],[-13,-25],[-45,-59],[-6,-5],[-3,-1],[-3,3],[-1,6],[1,5],[3,3],[5,3],[6,9],[8,20],[19,30],[3,11],[5,9],[35,46],[18,10],[1,-7],[6,-22],[15,-22],[-2,-11],[-22,-40],[4,2],[2,4],[2,4],[2,2],[3,0],[3,-2],[3,-6],[3,-10],[2,-2],[3,8],[1,6],[-1,5],[-1,5],[-1,6],[2,11],[6,11],[6,9],[4,4],[8,-1],[7,-3],[7,-5],[6,-8],[-15,-8],[27,-2],[14,-6],[-1,-20],[3,-3],[9,9],[6,2],[20,-4],[-8,-8],[-7,-12],[-5,-15],[-1,-18],[4,8],[5,6],[6,5],[6,2],[0,-5],[-17,-20],[-7,-14],[-4,-5],[-12,-3],[-1,-5],[2,-7],[3,-8],[5,-5],[6,2],[11,5],[6,0],[2,-2],[2,-3],[-2,1],[0,-4],[0,-8],[2,-5],[5,-6],[1,-2],[0,-7],[-1,-6],[-2,-3],[-3,2],[-11,1],[-21,-18],[-8,3],[-2,-2],[-2,-3],[-1,-3],[-1,-4],[1,-2],[1,-4],[2,-2],[-42,-4],[-8,-13],[0,-5],[0,-1],[2,1],[4,-3],[6,-6],[3,-1],[4,-1],[3,-3],[1,-5],[-1,-6],[-1,-2]],[[32776,77986],[8,-5],[0,-4],[-5,-5],[-10,-15],[-38,-33],[-13,-7],[-4,-1],[-3,3],[-3,6],[-9,13],[3,-17],[-1,-5],[-4,-2],[-5,2],[-9,8],[-5,1],[0,-4],[3,-5],[0,-12],[4,-7],[-10,-4],[-4,0],[-5,4],[9,-17],[1,-8],[-7,-3],[-22,9],[-8,-5],[14,-8],[7,-8],[0,-13],[-4,-4],[-8,-1],[-13,1],[-12,10],[-6,3],[-2,-7],[12,-7],[8,-8],[4,-11],[-7,2],[-14,12],[-7,2],[1,-4],[2,-3],[2,-1],[3,0],[0,-4],[-3,0],[-3,0],[-4,-4],[5,-3],[12,-2],[4,-3],[-2,-6],[-1,-8],[0,-7],[0,-4],[14,-1],[4,-3],[-1,9],[-3,3],[-7,5],[8,2],[7,-10],[3,-17],[-1,-16],[-1,0],[-4,-10],[-2,-2],[-2,0],[-5,0],[-6,-2],[-8,-7],[-4,-3],[0,-4],[4,-1],[13,-8],[4,1],[7,3],[4,0],[-8,-20],[-17,-11],[-39,-4],[-8,3],[-4,0],[-2,-2],[-3,-8],[-1,-2],[-2,1],[-4,6],[-1,1],[-15,5],[-5,4],[-13,16],[4,3],[2,0],[0,4],[-5,2],[-4,3],[-4,4],[-3,6],[-1,6],[4,1],[9,-1],[-6,11],[-24,-6],[-10,3],[6,3],[6,1],[4,2],[6,9],[10,6],[8,16],[6,4],[-4,12],[-4,1],[-6,-6],[-4,-9],[-5,-3],[-2,10],[1,13],[7,6],[-2,6],[-4,4],[-8,7],[-3,-5],[1,-3],[0,-2],[1,-1],[1,-2],[-6,-2],[-7,4],[-8,6],[-15,8],[-3,3],[2,5],[5,9],[1,1],[3,2],[1,1],[2,3],[0,3],[0,4],[1,2],[1,1],[3,-1],[1,0],[1,3],[0,3],[0,4],[1,2],[16,11],[5,9],[-5,0],[-9,-7],[-8,-4],[-8,-11],[-3,-2],[-4,-4],[-7,-17],[-4,-3],[-1,1],[-6,11],[-10,8],[6,-20],[0,-7],[-7,-2],[-2,-2],[-5,-8],[-2,-1],[-11,0],[0,-5],[16,-3],[7,2],[4,13],[8,-6],[1,-5],[-1,-9],[-9,-7],[-8,-4],[-7,-11],[-7,-2],[-7,3],[-15,11],[-10,3],[-7,6],[-4,1],[-2,1],[-1,6],[-1,1],[-6,0],[-2,0],[-3,5],[-4,9],[-3,2],[-2,-1],[-6,-5],[-4,-2],[-3,2],[-3,3],[-3,3],[-2,-2],[-3,-2],[-5,0],[-7,4],[-13,11],[-5,8],[-2,12],[-3,8],[-7,8],[-13,10],[-5,7],[-1,7],[1,3],[5,-4],[-6,19],[18,-10],[7,-2],[-14,17],[4,3],[2,1],[2,0],[0,4],[-8,2],[-21,-1],[-8,7],[-3,-1],[-2,-2],[0,-1],[-2,2],[-3,4],[-1,2],[-5,3],[-2,1],[-6,-8],[-9,-6],[-26,6],[-8,-1],[-4,1],[-2,4],[-1,8],[1,8],[2,4],[3,-4],[1,18],[-1,23],[2,19],[10,5],[-1,6],[-1,2],[5,2],[-1,5],[-2,7],[-2,5],[0,12],[0,6],[2,8],[-16,-26],[-4,0],[-3,3],[-3,4],[-4,2],[-3,1],[-2,1],[-6,8],[-3,3],[-26,0],[-11,-5],[-6,0],[-5,9],[-4,24],[4,24],[9,21],[10,16],[12,14],[5,9],[2,12],[2,13],[3,11],[5,10],[19,32],[30,38],[16,28],[2,-8],[1,-4],[1,-5],[-4,-17],[0,-23],[2,-23],[4,-16],[0,-7],[-14,-27],[-1,-4],[-2,-9],[-1,-3],[-1,0],[-2,0],[-2,-1],[-1,-8],[-1,1],[-3,2],[-1,1],[0,-6],[-1,-5],[-1,-5],[-2,-4],[6,-13],[4,-5],[6,-2],[6,2],[4,3],[4,0],[4,-5],[-1,-4],[-2,-13],[6,-5],[6,-8],[5,-9],[5,-10],[4,-7],[2,-5],[0,-8],[-1,-7],[-3,-1],[-3,3],[-3,5],[1,-7],[2,-5],[2,-3],[4,-1],[4,1],[1,3],[0,4],[2,4],[-1,1],[0,3],[2,2],[3,-4],[2,-4],[1,-4],[-1,-3],[-3,-3],[1,-3],[1,-2],[1,-2],[1,-1],[0,-5],[-3,-1],[-2,-3],[-8,-30],[-4,-3],[-7,-4],[-6,-6],[2,-13],[4,8],[5,4],[12,4],[4,6],[3,2],[2,0],[2,-4],[2,-7],[0,-7],[-3,-2],[-3,-2],[0,-4],[1,-4],[2,-5],[3,-2],[23,-8],[6,1],[3,7],[-4,12],[-6,11],[0,9],[9,5],[0,4],[-6,3],[-2,1],[5,15],[10,6],[10,-1],[29,-13],[4,-5],[1,-1],[1,-1],[3,0],[2,-1],[1,-2],[-1,-3],[0,-2],[0,-4],[-1,-4],[0,-4],[1,-4],[4,0],[7,-15],[3,0],[4,10],[1,8],[-3,5],[-7,0],[7,4],[11,0],[10,-3],[8,-5],[4,-6],[2,-6],[0,-8],[2,-8],[1,0],[6,-7],[4,-8],[2,-2],[2,4],[2,-10],[2,-3],[2,1],[4,4],[0,1],[1,2],[1,3],[1,2],[3,1],[31,-6],[36,2],[28,8],[3,-4],[2,-7],[3,-3],[3,9],[-2,5],[15,6],[50,-11],[0,5],[-26,6],[-7,5],[8,5],[18,1],[7,7],[5,-5],[7,1],[7,2],[44,2],[26,-3],[22,8],[24,-2],[26,-12]],[[32869,78627],[-6,-7],[-2,-4],[-12,-26],[-7,-7],[-6,-4],[-13,-19],[-6,-5],[10,-5],[10,11],[32,61],[9,12],[13,2],[-9,-7],[-9,-11],[-15,-27],[-15,-44],[-4,-3],[-12,3],[-4,-6],[-3,-11],[-3,-11],[-1,-5],[-11,-1],[-4,-3],[-4,-6],[-3,-7],[-4,-18],[-3,-8],[2,-5],[5,-7],[6,-1],[3,11],[3,-8],[4,-6],[4,-3],[12,-5],[4,1],[3,5],[4,8],[-2,-15],[-6,-7],[-9,-2],[-7,0],[-1,7],[-5,-2],[-12,-9],[-14,-1],[-6,5],[-2,12],[7,17],[6,20],[3,6],[2,11],[1,27],[2,12],[4,6],[7,6],[7,3],[5,2],[5,3],[39,57],[2,3],[36,53],[7,6],[9,3],[33,1],[1,-4],[-2,-7],[-3,-5],[-9,-5],[-4,-5],[-2,-9],[-4,-9],[-9,-8],[-9,-2],[-5,5],[7,5],[7,8],[6,11],[3,12],[-8,1],[-8,-1],[-8,-4],[-7,-8],[-11,-20],[-7,-9],[-7,-4]],[[32082,78831],[-2,7],[2,9],[7,16],[0,-4],[0,-3],[-4,-13],[-2,-11],[-1,-11],[0,-9],[-1,-8],[-3,-9],[-6,-13],[-15,-25],[-15,-20],[-2,9],[-3,4],[-4,1],[-5,2],[12,14],[2,5],[-2,7],[-3,0],[-4,-3],[-3,-2],[1,5],[1,4],[2,4],[2,3],[-5,-1],[-3,1],[-1,4],[1,8],[2,5],[3,7],[3,6],[3,2],[17,6],[8,-1],[-3,-12],[6,4],[5,0],[5,2],[5,10]],[[32070,78879],[6,29],[4,8],[7,-8],[2,-13],[2,-10],[0,-11],[-4,-13],[-6,-7],[-17,-13],[-6,-2],[-1,6],[5,15],[8,19]],[[32133,79957],[-4,14],[-9,6],[-6,-4],[4,-14],[-7,2],[-7,6],[-6,9],[-3,9],[-4,8],[-7,4],[-4,5],[6,14],[11,11],[27,10],[16,3],[7,-1],[3,1],[4,3],[2,5],[2,3],[5,1],[22,-1],[29,-17],[8,-2],[2,-1],[13,-12],[69,-17],[26,-10],[25,-3],[39,-10],[46,-23],[23,-4],[22,-17],[23,-8],[7,-7],[9,-16],[3,-3],[13,1],[20,-18],[5,-2],[7,-1],[7,-2],[5,-4],[20,-19],[8,-5],[15,-5],[6,-7],[10,-18],[2,-1],[4,-1],[2,-2],[1,-3],[0,-7],[1,-2],[12,-23],[3,-3],[3,-1],[6,2],[4,-1],[8,-11],[3,-2],[7,-1],[3,-1],[3,-4],[8,-17],[1,-1],[2,-4],[3,-5],[3,-1],[4,-1],[12,-8],[32,-5],[4,-2],[9,-11],[6,-8],[3,-2],[10,3],[6,0],[5,-10],[13,-17],[-2,-8],[2,-5],[8,-8],[1,-3],[1,-9],[1,-4],[2,-2],[6,-6],[3,-7],[8,-22],[7,-11],[7,-8],[-3,-6],[-6,-7],[-3,-4],[-1,-7],[0,-5],[0,-3],[-6,-1],[-5,1],[-3,0],[-15,-17],[-4,1],[-11,7],[-5,1],[-47,-6],[-22,5],[-32,-9],[-8,3],[-8,4],[-5,8],[-6,6],[-20,6],[-25,15],[-49,6],[-56,29],[-58,21],[-20,18],[-13,6],[-18,25],[-16,5],[-8,10],[-6,4],[-5,4],[-17,3],[-34,18],[3,9],[-3,8],[-5,9],[-3,9],[0,11],[-1,10],[-2,8],[-4,9],[-10,17],[-25,36],[-44,43],[-37,23],[-34,16],[-34,23],[-5,7]],[[32254,80198],[-8,4],[-4,10],[1,10],[6,9],[1,-3],[1,-1],[2,-1],[8,-17],[1,-7],[-8,-4]],[[27946,81314],[7,9],[5,4],[6,0],[8,-4],[4,-1],[4,-3],[5,-9],[-12,-12],[-4,-6],[-3,-7],[-1,-8],[-1,-7],[1,-16],[-1,-6],[-2,-5],[-5,-6],[-5,-5],[-6,-3],[-6,-1],[-28,5],[-19,-8],[-2,-1],[-4,-6],[-1,-1],[-3,1],[0,2],[0,4],[0,5],[-10,28],[5,17],[1,4],[4,2],[3,-2],[3,-3],[4,-1],[7,2],[7,6],[6,9],[5,9],[3,3],[8,-1],[3,2],[14,10]],[[27567,81809],[9,-33],[2,-9],[11,-40],[3,-23],[-10,-12],[1,-13],[-5,-3],[-7,3],[-11,14],[-68,18],[-34,29],[-38,25],[-51,10],[-50,25],[-39,23],[-45,19],[-17,21],[-13,8],[2,10],[11,18],[2,3],[6,18],[11,22],[18,22],[6,3],[22,-3],[6,1],[26,15],[14,4],[33,-1],[20,10],[69,-10],[15,-6],[32,-46],[6,-6],[2,-3],[3,-5],[5,-19],[4,-5],[15,-17],[28,-49],[3,-9],[3,-9]],[[27845,82166],[-3,6],[0,2],[0,2],[1,5],[17,-18],[-1,-3],[-2,-1],[-3,-1],[-2,3],[-5,3],[-2,2]],[[27976,82990],[74,16],[-2,-5],[-3,-3],[-32,-14],[-25,-3],[-7,-3],[-7,-8],[-6,2],[-24,-18],[-56,-14],[-43,-29],[-6,2],[4,7],[8,6],[8,3],[7,1],[0,4],[-14,0],[10,13],[12,8],[51,21],[28,2],[6,2],[11,8],[6,2]],[[28524,83408],[19,15],[9,6],[1,-9],[-4,-1],[-4,-3],[-23,-30],[-9,-9],[-7,-4],[-41,-56],[-17,-17],[-17,-5],[8,6],[47,57],[10,16],[9,6],[4,4],[6,14],[4,7],[5,3]],[[28054,83644],[9,6],[5,2],[5,-4],[-9,-11],[-8,-14],[-7,-17],[-3,-23],[-4,-21],[-8,-26],[-10,-21],[-8,-1],[5,7],[5,13],[4,15],[9,43],[7,31],[1,6],[1,19],[2,15],[2,6],[3,3],[4,0],[6,11],[4,-3],[-1,-6],[0,-6],[0,-5],[1,-3],[0,-4],[-4,-1],[-4,-2],[-7,-9]],[[28123,83733],[-6,3],[-5,-7],[-5,-9],[-5,-7],[-15,-7],[-14,-2],[1,8],[2,17],[2,6],[22,46],[3,12],[-5,5],[3,7],[4,7],[2,5],[-4,5],[2,4],[2,12],[-5,0],[2,8],[7,12],[3,13],[3,8],[6,12],[6,6],[10,3],[8,-4],[2,-13],[0,-40],[1,-20],[3,-17],[-3,-6],[0,-8],[1,-9],[0,-9],[-2,-9],[-3,-7],[-2,-8],[1,-9],[-3,-3],[-3,-1],[-4,1],[-3,3],[-5,-9],[-3,-3],[-3,0],[2,4]],[[27904,83660],[4,10],[15,25],[1,10],[-6,7],[-8,2],[-6,-1],[-11,-14],[-38,-78],[-30,-47],[-8,-16],[-1,-6],[-2,-11],[-3,-4],[-4,-1],[-4,-6],[-1,11],[-3,8],[-3,6],[-1,4],[-3,9],[-6,5],[-16,2],[7,23],[4,9],[11,8],[59,114],[51,62],[7,17],[6,23],[10,57],[2,30],[-5,26],[2,1],[0,1],[1,1],[1,1],[0,3],[-1,7],[-1,3],[5,4],[2,-3],[5,-26],[1,-4],[3,-4],[-2,-10],[-2,-10],[0,-19],[-2,-10],[-6,-20],[-2,-6],[0,-4],[-2,-4],[-2,-6],[-1,-6],[1,-15],[0,-6],[-1,-9],[-6,-24],[-3,-7],[-16,-31],[-6,-7],[-2,-5],[-1,-8],[0,-8],[0,-3],[2,0],[3,3],[2,3],[3,12],[3,5],[4,6],[4,4],[9,6],[13,5],[6,4],[6,7],[0,7],[13,68],[10,28],[5,23],[2,27],[3,63],[1,12],[0,32],[8,12],[15,2],[10,-15],[9,-15],[0,-11],[-5,-6],[-7,10],[-3,12],[-10,4],[-7,-10],[-2,-22],[3,-19],[3,-7],[12,1],[9,-5],[6,2],[2,-2],[4,-32],[6,-19],[10,-13],[13,-5],[15,4],[6,-3],[4,-13],[0,-6],[-2,-12],[0,-7],[1,-3],[3,-5],[2,-4],[-7,0],[-1,0],[-3,-8],[-1,-5],[1,-3],[18,5],[-3,-9],[-4,-5],[-5,-3],[-5,-4],[-4,-8],[-4,-18],[-2,-8],[-23,-56],[-10,-52],[-27,-87],[-2,-27],[-4,3],[0,5],[1,7],[3,5],[-2,0],[2,8],[5,25],[9,28],[2,16],[7,19],[2,19],[34,104],[5,25],[1,23],[-8,6],[4,10],[2,8],[-1,5],[-7,-3],[0,-1],[-1,-3],[0,-2],[-1,-2],[-4,-3],[-2,-1],[-3,-1],[-1,-3],[-2,-7],[-13,-68],[0,-7],[1,-3],[4,0],[3,2],[2,2],[2,3],[2,0],[-3,-7],[-1,-3],[-2,-2],[3,-3],[1,-1],[-4,-12],[-11,-24],[-2,-15],[-1,-3],[-6,-14],[-1,-7],[-20,-73],[-18,-51],[1,13],[24,73],[19,89],[0,11],[-1,15],[-3,13],[-4,6],[-5,-5],[-4,-9],[-17,-40],[-29,-99],[-3,-5],[-5,-5],[-24,-49],[-11,-8],[-13,2],[-14,11],[-5,7],[-3,2],[-3,-4],[-26,-50],[-5,-4],[0,-3],[-2,-3],[-3,-2],[-3,0],[5,16],[38,73],[24,61]],[[27804,84147],[9,0],[4,-1],[9,-10],[2,-10],[-1,-11],[-4,-11],[-2,-2],[-4,-1],[-1,-3],[-1,-2],[0,-7],[-1,-3],[-3,-7],[-2,-2],[-7,1],[-8,6],[-3,15],[0,17],[2,15],[2,3],[6,11],[3,2]],[[28355,85015],[29,-14],[33,-32],[8,-2],[0,-4],[-8,-2],[-11,5],[-59,46],[0,3],[7,1],[3,-1],[-2,0]],[[28155,85190],[5,-7],[39,-38],[7,-3],[0,-5],[-48,34],[-15,15],[2,4],[1,2],[2,2],[3,0],[0,4],[-5,4],[-4,7],[-2,10],[0,12],[2,-5],[2,-3],[2,-3],[3,-2],[3,-7],[9,-11],[3,-6],[-2,-3],[-2,0],[-3,0],[-2,3],[0,-4]],[[15753,79377],[6,-7],[4,-6],[1,-8],[0,-6],[2,-3],[6,0],[5,-2],[4,-1],[1,-8],[-1,-4],[-3,-2],[-7,1],[-5,1],[-4,2],[-7,7],[-3,3],[-4,5],[-1,4],[0,10],[0,5],[-3,5],[0,4],[2,3],[4,-1],[3,-2]],[[15808,79351],[-3,-4],[-5,2],[-5,0],[-6,-1],[-3,3],[-4,4],[-5,6],[0,5],[0,5],[0,4],[-2,4],[-2,3],[-2,1],[0,6],[6,-2],[6,-8],[11,-8],[14,-2],[10,-2],[3,-4],[0,-2],[-3,-1],[-4,-3],[-2,-1],[-4,-5]],[[32626,77609],[3,1],[5,-1],[3,1],[-2,-3],[0,-5],[-4,-3],[-6,-4],[-2,-2],[-3,1],[-3,2],[-5,-1],[-2,1],[0,3],[2,3],[6,5],[3,0],[3,0],[2,2]],[[33414,77708],[-2,2],[-3,2],[-9,0],[-6,2],[1,5],[15,10],[8,3],[1,-3],[-3,-4],[-1,-7],[0,-7],[-1,-3]],[[34779,78469],[5,-3],[-4,-9],[-2,-10],[-4,-6],[-4,7],[-1,14],[10,7]],[[34945,78537],[5,14],[6,-2],[3,-8],[-2,-19],[-7,-5],[-9,0],[-3,5],[1,8],[4,2],[2,5]],[[30453,78557],[8,0],[4,0],[-1,-5],[-13,-21],[-5,-6],[-5,-2],[-5,1],[-2,3],[0,6],[1,5],[2,6],[4,5],[6,5],[6,3]],[[35290,78692],[10,-2],[1,-11],[-9,-9],[-8,-13],[-8,-2],[-7,4],[3,11],[18,22]],[[30871,79137],[2,4],[4,1],[1,-1],[-1,-2],[0,-3],[-1,-6],[-5,-4],[-4,0],[-4,0],[0,2],[1,3],[2,4],[5,2]],[[15038,79629],[9,0],[9,-6],[3,-11],[-2,-17],[-2,-22],[-11,-6],[-11,8],[0,9],[-2,7],[-8,2],[-2,12],[2,9],[4,8],[11,7]],[[34485,80202],[1,5],[2,1],[3,-2],[2,-5],[-3,-5],[-3,-3],[-6,2],[-5,2],[1,4],[8,1]],[[34510,80218],[3,0],[6,-1],[5,-6],[3,-10],[2,-6],[-4,-2],[-6,5],[-7,1],[-9,4],[-4,8],[1,6],[10,1]],[[14267,80557],[3,4],[6,0],[1,5],[3,-4],[5,-3],[0,-3],[0,-5],[-4,0],[-4,-1],[0,-5],[-4,-1],[-5,4],[-1,6],[0,3]],[[33649,80574],[3,-12],[1,-14],[-4,-6],[-5,3],[-1,6],[6,23]],[[14249,80576],[1,-3],[5,-2],[2,0],[3,-2],[-2,-4],[1,-3],[3,-3],[-2,-2],[-5,-1],[-3,-1],[-3,3],[-4,5],[1,5],[1,5],[2,3]],[[34097,80578],[5,0],[1,-2],[2,2],[3,0],[2,-3],[3,-4],[2,-3],[-3,-2],[-3,-3],[-5,-3],[0,-4],[-4,-4],[-4,0],[-2,2],[2,2],[4,2],[-2,2],[-4,-1],[-3,1],[-2,4],[1,6],[3,6],[4,2]],[[14506,80614],[9,7],[9,0],[7,-7],[5,-12],[2,-12],[2,-13],[-5,-1],[-15,5],[-7,8],[-8,2],[-10,4],[-5,6],[0,6],[16,7]],[[33760,80777],[10,-5],[-8,-16],[-11,-12],[-21,-12],[-3,-12],[-11,7],[9,16],[12,19],[23,15]],[[33803,80822],[0,-10],[-5,-9],[-10,-11],[-14,0],[0,12],[7,10],[22,8]],[[14323,81253],[1,9],[4,5],[1,-12],[-2,-18],[0,-16],[-3,-14],[-3,-3],[-3,12],[-7,-6],[-4,11],[2,16],[14,16]],[[28048,81332],[2,-1],[5,-2],[-2,-6],[-7,-3],[-15,3],[2,5],[10,4],[5,0]],[[27943,81419],[5,-3],[2,-2],[-1,-4],[-5,-3],[-21,-2],[-7,-2],[0,2],[2,5],[3,5],[10,5],[12,-1]],[[28129,81528],[4,1],[4,1],[-1,-2],[-4,-6],[-4,-4],[-5,-3],[1,-2],[7,-1],[0,-3],[-6,-4],[-3,1],[0,2],[-1,2],[-1,-1],[-2,0],[-2,1],[-1,0],[0,-1],[-2,-1],[-1,1],[1,1],[-1,0],[-1,-1],[-1,3],[1,7],[-1,3],[-1,-3],[-4,-3],[-2,2],[4,5],[5,2],[8,5],[4,0],[5,-2]],[[27893,81594],[3,-5],[2,-1],[-2,-2],[-2,-1],[-8,-3],[-8,-2],[0,3],[5,11],[1,10],[1,3],[3,0],[3,-1],[1,-3],[0,-4],[1,-5]],[[14046,81669],[6,3],[3,-5],[0,-9],[0,-10],[-5,-1],[-4,-5],[-4,4],[3,9],[3,9],[-2,5]],[[34485,81722],[6,-1],[5,0],[1,-5],[0,-11],[0,-7],[-6,-3],[-8,2],[-2,8],[-5,5],[-3,7],[2,7],[10,-2]],[[14068,81776],[7,-8],[5,-6],[-3,-11],[-2,-13],[-5,1],[-5,8],[-1,18],[4,11]],[[34497,81861],[2,5],[4,1],[3,-4],[-2,-5],[-1,-4],[5,1],[1,-5],[-4,-7],[-2,-8],[0,-9],[-4,-2],[-5,9],[-4,10],[-4,9],[0,7],[11,2]],[[34492,81904],[10,9],[6,-3],[4,-8],[1,-10],[-5,-6],[3,-9],[-4,-3],[-8,2],[-4,-5],[-8,0],[-7,2],[-1,7],[0,11],[3,8],[4,6],[6,-1]],[[34464,82149],[4,0],[3,2],[4,1],[2,-8],[10,-2],[6,-2],[3,6],[3,-2],[5,-4],[5,-1],[4,-7],[1,-6],[2,-5],[-1,-3],[-5,5],[-5,4],[-6,0],[-1,-7],[-2,-7],[4,-5],[5,-3],[3,-4],[0,-6],[-5,5],[-6,4],[-2,-4],[6,-6],[3,-4],[-4,0],[-9,8],[-9,4],[-12,3],[-5,6],[-11,2],[-5,6],[-1,10],[-1,7],[4,8],[13,5]],[[13724,82151],[2,-11],[0,-7],[-5,3],[-6,6],[-3,10],[5,5],[7,-6]],[[34124,82268],[6,6],[8,0],[6,0],[4,3],[6,4],[4,-2],[-6,-7],[-4,-9],[-4,-3],[-1,-8],[0,-6],[-2,-4],[-6,-4],[-12,2],[-4,8],[1,11],[4,9]],[[34188,82329],[9,6],[15,0],[5,-10],[-9,-8],[-9,-8],[-10,0],[-8,-7],[-10,5],[-7,17],[2,13],[10,1],[12,-9]],[[13720,82329],[-3,16],[14,8],[16,-7],[17,-17],[8,-8],[-5,-16],[-16,5],[-5,17],[-11,-5],[-15,7]],[[34075,82620],[10,-3],[-4,-4],[-4,-4],[3,-6],[3,-6],[-4,-6],[-7,5],[-8,7],[0,6],[5,4],[6,7]],[[27470,82646],[0,6],[-1,7],[1,7],[1,5],[3,-3],[1,-6],[1,-7],[-1,-6],[-2,-3],[-1,-1],[-2,1]],[[34098,82736],[5,5],[2,-7],[3,-6],[3,-13],[-7,2],[-6,9],[-7,-4],[-6,5],[2,8],[11,1]],[[13662,82737],[7,5],[7,-15],[10,-18],[0,-11],[-15,-5],[-11,5],[-1,11],[-12,-2],[2,12],[13,18]],[[34082,82790],[8,3],[1,-8],[-3,-6],[3,-7],[5,-4],[0,-7],[-4,-14],[-7,0],[-13,-1],[-6,4],[-1,9],[4,11],[1,8],[12,12]],[[13584,82821],[11,-1],[2,-12],[-5,-11],[-6,-3],[-3,8],[1,19]],[[28686,83729],[1,-4],[3,-10],[-2,-7],[-3,-4],[-12,-9],[-1,3],[2,9],[1,9],[-1,8],[0,8],[2,6],[2,2],[4,-8],[2,-2],[2,-1]],[[28375,83820],[-10,-7],[-8,-3],[-4,1],[-12,-8],[-2,0],[2,6],[2,6],[1,2],[1,1],[2,1],[3,-1],[25,7],[2,0],[0,-2],[-2,-3]],[[28476,83896],[1,-1],[1,-3],[0,-3],[-2,-2],[-1,-6],[-4,-18],[-5,-7],[-4,2],[0,6],[0,5],[2,4],[4,4],[2,4],[1,3],[0,4],[1,4],[2,3],[2,1]],[[28108,84023],[-3,2],[-3,5],[-2,0],[-3,2],[3,2],[17,0],[4,1],[4,-1],[3,-5],[-4,-6],[-8,-1],[-8,1]],[[28715,84037],[0,-1],[-1,-2],[1,-2],[1,-10],[0,-4],[-1,-3],[0,-6],[1,-10],[1,-18],[-2,-10],[-6,-11],[-2,-1],[1,7],[0,8],[-1,8],[0,10],[2,13],[3,18],[0,34],[3,-3],[2,-8],[-1,-7],[-1,-2]],[[28707,84268],[0,-2],[-2,-1],[-4,0],[-5,4],[-2,6],[-2,11],[0,5],[-3,13],[-1,6],[1,3],[-3,6],[-1,11],[0,6],[2,3],[4,3],[4,-2],[4,-13],[1,-11],[3,-4],[3,-3],[1,-7],[-2,-5],[-3,-2],[-1,-5],[1,-6],[5,-6],[0,-3],[-1,-3],[0,-2],[1,-2]],[[28259,84344],[1,-1],[2,-2],[-2,-2],[-2,0],[-2,0],[-2,-1],[-1,1],[-1,1],[-1,-1],[-1,-3],[-3,-5],[-4,-3],[-2,-1],[-3,0],[-4,0],[-7,2],[0,2],[2,5],[2,2],[2,-1],[0,2],[1,3],[1,1],[8,6],[3,1],[4,-2],[9,-4]],[[28240,84407],[-12,-10],[-10,-6],[-4,0],[-11,5],[-3,0],[0,2],[1,4],[5,4],[21,15],[10,-1],[5,-6],[-2,-7]],[[28669,84425],[0,5],[-5,12],[-2,9],[-1,6],[-1,6],[-3,5],[-2,6],[2,4],[2,-2],[2,-4],[3,-2],[2,-4],[8,-9],[4,-6],[1,-3],[1,-3],[2,-6],[0,-6],[-1,-5],[-1,-4],[0,-5],[2,-6],[1,-6],[2,-7],[-2,-6],[-4,-2],[-3,3],[-1,11],[-2,4],[-2,6],[-2,9]],[[31233,85062],[9,-38],[-1,-30],[-14,-11],[-15,7],[-7,22],[1,22],[6,22],[12,12],[9,-6]],[[28158,85280],[1,-1],[0,-3],[-1,-1],[-2,1],[-3,-1],[-1,1],[-1,3],[0,1],[-8,0],[-3,-1],[-3,1],[-1,4],[2,3],[1,1],[2,-1],[2,-1],[1,-1],[2,2],[-2,2],[-3,2],[2,2],[9,0],[4,-3],[-2,-1],[3,-2],[1,-4],[0,-3]],[[28083,85311],[1,-6],[3,-7],[0,-1],[-4,3],[-1,2],[0,2],[-1,2],[-2,1],[-4,2],[-3,3],[-1,2],[1,3],[1,3],[0,10],[3,1],[3,-7],[4,-13]],[[30834,85420],[3,-7],[3,-9],[-11,-10],[-16,-6],[-13,-3],[2,8],[8,15],[6,9],[18,3]],[[27624,85476],[4,-3],[1,-3],[-1,-4],[-3,-2],[-8,1],[-1,4],[3,4],[5,3]],[[27633,85822],[2,1],[1,-3],[0,-5],[-4,-5],[-8,-15],[-4,-2],[-2,4],[-1,3],[-3,2],[2,5],[11,8],[1,3],[5,4]],[[27670,85832],[2,0],[3,-2],[-1,-2],[-3,-3],[-1,-4],[-1,-5],[-2,-1],[-3,1],[0,-2],[0,-4],[-2,-4],[-2,-4],[-2,-5],[-4,-3],[-1,6],[3,12],[4,10],[7,7],[3,3]],[[30577,86603],[3,-8],[-11,-9],[0,-12],[-6,-7],[-2,-14],[-7,3],[1,20],[-3,17],[7,13],[8,9],[10,-2],[0,-10]],[[30122,86792],[20,2],[1,-10],[-1,-10],[-7,-2],[-12,-2],[-8,4],[0,13],[7,5]],[[29974,87125],[20,-11],[7,-4],[6,-7],[-12,-3],[-12,-2],[-13,12],[-7,11],[5,9],[6,-5]],[[24222,87156],[8,-7],[-5,-4],[-8,4],[-5,-6],[-8,3],[-3,5],[7,5],[14,0]],[[29885,87210],[8,-4],[16,-10],[-7,-9],[-12,8],[-13,8],[-6,6],[14,1]],[[24266,87223],[1,-12],[-4,-8],[-10,9],[-2,9],[-1,10],[16,-8]],[[31545,87717],[20,-14],[6,-13],[-19,-1],[-23,18],[-21,22],[2,9],[35,-21]],[[31409,87818],[33,-47],[10,-24],[-6,-12],[-11,16],[-17,17],[-22,31],[-18,22],[-10,16],[22,-3],[19,-16]],[[31070,87941],[25,-30],[2,-18],[-22,17],[-16,17],[-8,16],[19,-2]],[[31104,87957],[26,-40],[10,-26],[-18,18],[-20,31],[-17,29],[19,-12]],[[31152,87984],[2,-12],[7,-20],[-13,0],[-13,27],[-11,26],[-3,17],[14,-10],[17,-28]],[[32210,88113],[-6,-18],[-7,-28],[-16,32],[-6,38],[9,8],[26,-32]],[[32162,88278],[12,-22],[-9,-9],[-14,-17],[-2,-22],[-15,9],[-7,18],[0,30],[2,15],[33,-2]],[[28754,88479],[-11,9],[-12,5],[-1,17],[11,7],[9,-2],[1,-11],[7,-11],[-4,-14]],[[28704,88515],[-7,6],[0,7],[10,-1],[11,5],[14,-10],[-9,-9],[-3,-11],[-6,1],[-10,12]],[[31954,88555],[-6,-12],[11,-8],[17,-7],[-15,-12],[17,-9],[-18,-13],[-13,-8],[-14,30],[-7,21],[-3,16],[8,13],[23,-11]],[[31407,89151],[-9,-20],[-9,9],[-5,13],[13,16],[13,11],[6,-12],[-9,-17]],[[25265,89204],[6,5],[3,-4],[1,-4],[6,-5],[5,-3],[-3,-3],[-6,2],[-8,3],[-7,6],[-5,-3],[-4,-2],[-4,3],[0,7],[1,4],[3,-3],[3,-2],[5,1],[4,-2]],[[25436,89252],[13,-9],[3,-6],[-5,-2],[-9,-1],[-10,-1],[-7,6],[-2,5],[1,5],[10,0],[6,3]],[[31268,89403],[12,-3],[-9,-6],[-15,-11],[-14,3],[-26,-7],[-17,-7],[-5,7],[-1,9],[8,6],[14,4],[18,3],[35,2]],[[31726,89379],[-4,-11],[-10,-3],[-7,16],[1,26],[-2,19],[16,-2],[10,-8],[-4,-37]],[[31408,89526],[-9,1],[-7,13],[-19,6],[-9,-6],[-5,-9],[-6,12],[-6,10],[8,7],[19,1],[25,-7],[11,-13],[-2,-15]],[[26383,89605],[5,-5],[-2,-5],[3,-5],[-9,-4],[-9,-1],[-8,1],[-3,5],[1,9],[5,4],[17,1]],[[26779,89580],[-3,-2],[-4,2],[-1,5],[3,3],[2,4],[0,3],[1,2],[2,4],[5,4],[2,0],[-1,-3],[1,-4],[1,-7],[2,-5],[0,-3],[-3,-1],[-1,1],[-1,1],[-2,-1],[-2,-2],[-1,-1]],[[26774,89606],[-2,0],[-1,-2],[-2,-3],[-5,-3],[1,3],[1,5],[-3,4],[-2,5],[1,8],[2,6],[5,-1],[5,-5],[3,1],[1,2],[2,0],[5,-5],[0,-2],[-1,-3],[-4,-2],[0,-3],[-2,-3],[-4,-2]],[[26123,89830],[13,-1],[4,-4],[-1,-7],[-8,-1],[-10,-1],[-3,7],[-2,8],[7,-1]],[[18609,90709],[17,2],[17,6],[19,5],[15,-3],[-15,-8],[-14,-2],[-8,-11],[-12,-5],[-32,0],[-19,-3],[-9,4],[4,9],[37,6]],[[18656,90841],[25,-1],[8,-7],[-12,-7],[-8,-9],[-10,7],[-15,0],[-9,2],[3,9],[3,8],[10,1],[5,-3]],[[12163,91439],[19,-11],[22,-19],[12,-12],[4,-11],[-9,-2],[-13,2],[-9,-7],[-13,5],[-16,11],[0,9],[13,-3],[-1,11],[-12,13],[-7,9],[10,5]],[[27737,91570],[6,-5],[15,-5],[-5,-11],[-12,-2],[-14,10],[-7,17],[2,12],[15,-16]],[[27321,91578],[26,1],[12,-6],[2,-20],[4,-15],[-23,-2],[-29,6],[-8,9],[3,9],[-25,2],[4,-13],[-18,-13],[-14,12],[-6,18],[2,13],[16,10],[35,-3],[19,-8]],[[12304,91634],[32,-25],[-1,-11],[-12,2],[-20,13],[-16,5],[-21,0],[0,8],[15,6],[23,2]],[[27081,91801],[4,-17],[-18,-11],[-38,10],[-34,13],[-10,7],[3,8],[26,7],[28,4],[39,-21]],[[23017,65847],[-8,-81],[3,-23],[-2,-12],[-1,-28],[-2,-11],[-3,-10],[-4,-24],[-7,-37],[-10,-50],[-16,-65],[-39,-125],[-27,-196],[-27,-197],[-15,-256],[-1,-20],[-2,-24],[-2,-120],[-2,-10],[-5,-4],[-20,4],[0,-4],[8,0],[6,-1],[4,-7],[1,-15],[-2,-54],[2,0],[2,16],[1,39],[3,17],[3,-21],[-6,-120],[-4,-57],[-3,-106],[7,-171],[-3,-73],[0,35],[0,9],[-3,-7],[-8,-61],[-3,-9],[-9,-19],[-1,-4],[0,-9],[-1,-3],[-2,-1],[-7,4],[5,-12],[1,-12],[-10,-43],[-1,-9],[1,-9],[2,-4],[4,-1],[3,4],[2,5],[0,7],[-1,18],[1,8],[3,7],[2,0],[0,-6],[1,-9],[0,-17],[-6,-48],[9,-60],[-1,-17],[1,-8],[3,-30],[1,-7],[1,-6],[7,-38],[1,-73],[3,-21],[42,-154],[28,-67],[5,-6],[15,-28],[3,-2],[3,-9],[20,-26],[7,-25],[0,-24],[-4,-25],[-3,-25],[-1,-10],[-8,-27],[-3,-8],[-3,-11],[-2,-13],[-2,-27],[-2,0],[-4,41],[-6,29],[-3,19],[-2,4],[0,4],[5,11],[4,7],[6,6],[5,2],[3,-5],[3,10],[1,9],[1,9],[0,10],[-2,10],[-6,10],[-10,15],[-14,24],[-4,14],[-15,31],[-13,38],[-6,11],[-2,6],[0,7],[-5,40],[-3,14],[-7,10],[-23,82],[-4,19],[1,-13],[5,-22],[3,-6],[2,-12],[6,-32],[2,-24],[2,-50],[5,-39],[4,-51],[5,-23],[22,-80],[4,-9],[5,-5],[4,-1],[4,4],[4,6],[3,-7],[0,-11],[-3,-24],[1,-13],[19,-76],[0,-7],[5,-3],[2,-8],[2,-21],[16,-89],[20,-76],[20,-69],[2,-20],[3,-10],[-2,-2],[-1,-3],[-3,-7],[14,-55],[32,-78],[9,-17],[11,-13],[6,-9],[4,-23],[4,-10],[8,-15],[19,-46],[17,-29],[5,-12],[4,-17],[2,-6],[3,-5],[2,-2],[3,-2],[2,-6],[10,-34],[18,-43],[18,-58],[15,-36],[5,-18],[10,-57],[3,-52],[9,-69],[3,-11],[9,-22],[2,-11],[-3,-14],[0,-9],[4,-19],[2,-23],[2,-12],[4,-11],[6,-8],[23,-40],[4,-5],[7,6],[3,-8],[1,-14],[2,-11],[3,-8],[4,-30],[3,-11],[4,-11],[6,-7],[6,-3],[8,0],[3,-2],[2,-7],[4,-42],[4,-21],[5,-19],[6,-15],[10,-20],[6,-9],[6,-4],[4,-1],[7,-4],[5,-5],[4,-6],[0,-4],[0,-16],[-7,8],[-13,20],[-15,9],[-10,20],[-7,4],[-5,-7],[6,-11],[10,-9],[5,-4],[2,-10],[7,-12],[12,-16],[0,-4],[-5,0],[-8,6],[-4,2],[-3,-4],[1,-8],[3,-9],[3,-4],[5,1],[3,1],[6,6],[1,3],[0,2],[1,3],[3,1],[3,-1],[29,-17],[6,-3],[5,-6],[6,-11],[6,-7],[5,8],[-11,15],[-18,12],[-15,17],[-2,25],[19,-29],[23,-17],[24,-9],[37,-2],[24,4],[19,-1],[5,-2],[5,-5],[10,-17],[24,-33],[3,-8],[2,-13],[2,-7],[6,-6],[36,-11],[5,-5],[13,-2],[6,-7],[5,-17],[8,-46],[6,-18],[18,-37],[7,-16],[13,-57],[2,-1],[9,-13],[3,-3],[9,-2],[9,-8],[8,2],[8,3],[6,2],[9,7],[41,13],[20,11],[7,7],[7,7],[21,10],[5,8],[5,6],[31,20],[-2,-6],[-2,-6],[-3,-6],[0,-8],[2,-3],[23,6],[4,3],[4,5],[3,7],[0,5],[-2,4],[-1,4],[2,5],[1,4],[4,4],[1,2],[4,-2],[4,2],[4,4],[3,5],[2,-11],[6,-2],[18,7],[3,7],[4,19],[-3,13],[-1,3],[-2,0],[-4,-3],[-4,-4],[-1,-3],[-3,-5],[-20,-13],[-2,-3],[-2,-7],[-2,-3],[-12,-4],[-10,-14],[-3,-3],[-3,0],[-3,-1],[-3,-6],[2,11],[5,6],[6,3],[2,6],[3,6],[52,39],[12,6],[30,7],[39,-2],[41,3],[0,-4],[-3,-9],[-2,-5],[-2,-2],[1,-5],[0,-14],[2,-5],[3,0],[4,3],[4,5],[3,4],[-1,-9],[-3,-11],[0,-9],[2,0],[4,13],[2,4],[-2,4],[5,1],[2,9],[-2,10],[-6,4],[-6,2],[0,6],[5,5],[5,3],[45,2],[23,12],[14,16],[13,25],[6,17],[2,7],[1,7],[3,2],[3,-1],[1,-3],[3,-19],[3,-57],[3,-16],[2,16],[-2,10],[0,12],[2,25],[-1,12],[-7,27],[-1,8],[4,4],[7,1],[13,-1],[6,2],[28,14],[23,13],[31,3],[29,6],[35,9],[23,-2],[9,-4],[7,-17],[15,-20],[2,-4],[0,-7],[-2,-7],[-3,-5],[-3,-1],[2,3],[0,5],[-3,-3],[-3,-1],[-8,-1],[-3,3],[1,6],[1,7],[-2,5],[-2,0],[-2,-1],[-5,-9],[-1,0],[-2,1],[-2,1],[-4,-1],[-1,-4],[2,-3],[4,0],[0,-5],[-4,-2],[-3,0],[-4,2],[-3,5],[1,-4],[0,-2],[0,-3],[1,-4],[-2,-3],[-2,-5],[-1,-5],[0,-7],[1,3],[4,5],[5,-8],[3,-3],[4,-1],[6,4],[4,1],[1,-3],[2,-8],[5,-7],[5,-5],[5,-2],[-7,12],[-8,9],[-6,13],[-2,18],[6,-5],[3,-6],[4,-2],[6,5],[-3,-12],[4,-2],[3,-5],[3,-6],[1,-7],[-4,4],[0,-2],[0,-1],[0,-1],[-2,0],[5,-7],[11,-6],[3,-7],[0,-9],[-7,-17],[-2,-9],[2,-8],[5,-10],[6,-8],[3,-2],[3,9],[-1,9],[-3,9],[-2,11],[3,-5],[2,-2],[3,-1],[4,0],[-3,8],[-4,8],[-3,7],[2,10],[7,-8],[17,-9],[8,-8],[6,4],[12,-7],[7,-1],[14,4],[6,3],[5,5],[0,-8],[2,-6],[3,-2],[2,4],[1,7],[-2,18],[0,8],[-2,0],[-1,-4],[-1,-4],[0,-5],[-3,0],[-7,-7],[-2,3],[2,6],[6,15],[2,4],[7,7],[15,12],[8,9],[5,-3],[5,2],[4,4],[4,5],[2,7],[5,18],[1,4],[9,-2],[5,1],[2,3],[2,6],[11,6],[4,6],[-4,4],[-4,-1],[-7,-7],[-13,-7],[-4,-5],[9,45],[0,18],[-5,18],[-5,9],[-2,2],[-4,1],[-2,-2],[-2,-4],[0,-4],[-2,-2],[-6,3],[-8,21],[-5,4],[4,14],[5,14],[7,9],[13,9],[8,13],[8,14],[4,13],[-6,-3],[-19,-30],[-18,-18],[-7,-13],[1,-14],[-3,-3],[-1,3],[-7,-9],[-3,-2],[-5,0],[-6,1],[0,4],[6,16],[14,22],[18,20],[24,30],[33,30],[23,42],[6,6],[12,10],[22,29],[22,57],[6,8],[9,6],[9,16],[8,20],[3,19],[4,115],[3,25],[1,12],[-1,14],[-1,9],[0,10],[2,14],[5,25],[5,17],[16,23],[25,36],[11,24],[3,25],[1,8],[0,10],[-1,11],[-8,32],[-1,7],[0,5],[1,12],[0,45],[2,30],[0,33],[0,13],[4,33],[0,24],[-4,48],[0,26],[6,50],[2,58],[3,15],[16,37],[3,14],[4,32],[7,34],[1,20],[-3,0],[-3,-33],[-5,-21],[-1,-5],[-1,-14],[-4,-17],[-5,-14],[-7,-6],[0,4],[5,15],[18,107],[3,10],[4,9],[32,39],[5,10],[19,13],[9,16],[6,6],[3,2],[9,2],[15,11],[17,25],[4,3],[5,2],[28,21],[30,10],[22,0],[39,14],[53,10],[23,14],[11,2],[6,-4],[3,0],[3,2],[6,5],[2,1],[24,8],[18,11],[12,3],[6,3],[9,8],[34,16],[10,13],[17,31],[6,5],[17,4],[5,3],[10,10],[6,3],[22,0],[4,-2],[10,-9],[5,-1],[5,1],[9,5],[15,4],[5,3],[4,5],[4,3],[18,-1],[-6,4],[-6,3],[-7,0],[-10,-10],[-11,-5],[-2,-1],[1,5],[6,7],[6,4],[8,2],[6,6],[2,1],[4,-1],[13,-7],[23,0],[7,-1],[17,-15],[12,-7],[24,-7],[17,-9],[1,-2],[-2,-4],[-3,-2],[-4,0],[-3,1],[-3,3],[-4,4],[-20,7],[-5,4],[6,-11],[9,-9],[9,-6],[9,-3],[19,0],[9,-4],[5,0],[4,4],[-12,1],[-5,3],[-5,6],[2,3],[18,-5],[16,-11],[6,-1],[8,1],[3,-1],[1,-3],[1,-4],[2,-4],[3,0],[-2,-3],[-1,-1],[-2,0],[-1,4],[-1,0],[2,-7],[5,-1],[13,3],[6,-1],[16,-11],[17,1],[4,-3],[5,-5],[5,2],[20,17],[3,5],[4,12],[2,5],[1,6],[-1,5],[-1,5],[0,5],[0,4],[1,4],[-1,3],[-4,3],[-7,0],[-6,-4],[-7,-7],[-4,-8],[-5,-5],[-7,0],[-7,3],[-5,5],[-2,-5],[-1,9],[-1,4],[-4,-5],[-7,-12],[-6,-4],[1,-2],[0,-1],[1,-1],[-3,-2],[-2,2],[-1,5],[0,7],[9,15],[3,6],[2,3],[2,1],[6,-1],[9,-3],[3,-2],[5,-3],[8,5],[31,30],[6,2],[19,-12],[5,-6],[8,-16],[14,-43],[2,-6],[2,-5],[1,-5],[1,-12],[2,-3],[2,-3],[3,-2],[1,7],[3,1],[6,-4],[7,0],[3,-3],[4,-30],[1,-8],[-1,-9],[-2,-14],[-1,-7],[0,-29],[2,-39],[7,-27],[14,3],[-1,-5],[-1,-4],[-1,-3],[-6,-26],[-1,-4],[-4,-16],[1,-4],[1,-6],[0,-3],[0,-5],[-1,0],[-1,1],[-1,-2],[-2,-2],[-4,-3],[-2,-3],[-1,-4],[-1,-5],[0,-13],[-1,-7],[-4,-32],[-7,-31],[0,-6],[-19,-55],[-26,-58],[-6,-20],[-3,-6],[-15,-20],[-4,-8],[-12,-15],[-15,-32],[-33,-98],[-3,-20],[-4,-2],[-2,-4],[0,-5],[2,-5],[-9,-12],[-6,-15],[-3,-18],[-6,-47],[-2,-25],[1,-50],[2,-13],[6,-25],[2,-12],[-1,-7],[-2,-21],[-1,-2],[-2,-2],[-2,-3],[-4,-26],[-1,-8],[-1,25],[0,6],[1,3],[3,1],[2,4],[2,1],[2,6],[0,8],[1,23],[-5,9],[-1,5],[-1,10],[-1,5],[-2,1],[-2,-1],[-1,-5],[1,-5],[2,-5],[1,-4],[1,-19],[0,-8],[-1,-6],[2,3],[1,2],[3,3],[-12,-35],[-2,-5],[-2,-2],[-2,-5],[-2,-4],[-2,1],[-2,5],[-3,3],[-2,-2],[-2,-8],[-4,-1],[-6,-16],[-5,-21],[-3,-17],[-5,-18],[-3,-19],[-2,-7],[-4,1],[3,4],[3,8],[1,9],[-1,8],[-3,-1],[-15,0],[-3,1],[-2,-7],[-1,-12],[0,-13],[1,-9],[3,-9],[8,-10],[0,-5],[3,-3],[2,-1],[3,-1],[4,1],[-2,-9],[-1,-17],[-1,-11],[5,1],[4,7],[3,8],[3,8],[3,4],[8,5],[4,4],[8,-4],[6,-8],[2,-1],[1,2],[1,4],[0,4],[1,3],[3,0],[2,-3],[1,-1],[2,4],[1,-2],[1,-1],[1,-1],[1,0],[-4,-4],[0,-5],[7,5],[5,11],[0,11],[-4,2],[1,-6],[1,-4],[-3,-2],[-9,0],[-7,2],[-4,2],[-4,4],[6,0],[17,-4],[0,4],[-1,3],[2,15],[1,10],[5,-21],[2,-13],[-1,-6],[-1,-6],[-3,-39],[-3,-11],[-4,-11],[-5,-7],[-5,-3],[-1,-2],[-8,-17],[-2,-2],[-10,-3],[5,3],[2,5],[0,8],[2,8],[-10,-6],[-12,-13],[-11,-19],[-3,-23],[2,0],[2,12],[1,0],[-2,-9],[-4,-10],[-2,-7],[5,-2],[-6,-25],[-2,-14],[3,-6],[5,-3],[3,-4],[3,1],[5,10],[7,18],[3,10],[2,10],[3,9],[6,4],[13,2],[-5,-25],[3,6],[3,8],[3,6],[6,1],[0,-4],[-5,-6],[-5,-9],[-7,-22],[-3,-14],[-3,-32],[-4,-11],[3,-13],[-4,-19],[-6,-29],[-6,-19],[-6,-78],[-10,-72],[-5,-17],[-6,-16],[-6,-18],[-4,-22],[-1,-25],[1,-27],[0,-12],[-4,-12],[-1,-10],[-2,-41],[-2,-14],[-14,-40],[-1,-9],[-1,-8],[-4,-19],[-1,-9],[0,-39],[-2,0],[0,16],[-1,13],[-5,-12],[-3,3],[-1,8],[2,4],[2,7],[2,15],[1,16],[0,8],[-1,-7],[-2,-5],[-1,-6],[-2,-3],[-2,7],[1,5],[2,7],[1,9],[-1,1],[-4,10],[0,2],[0,5],[0,6],[-1,5],[-8,3],[0,1],[-2,2],[1,5],[1,5],[1,0],[-1,10],[-2,6],[-2,3],[-6,1],[-7,4],[-15,17],[-6,4],[-3,4],[-1,9],[0,9],[1,4],[9,22],[-2,13],[3,13],[5,11],[2,10],[0,5],[3,10],[1,7],[-1,1],[-1,3],[-2,3],[0,3],[0,4],[1,4],[0,2],[1,0],[1,25],[0,13],[-2,9],[-3,9],[-2,10],[-2,24],[-6,-11],[-7,-15],[-6,-17],[-2,-16],[0,-8],[-2,-11],[-2,-8],[-3,-4],[-1,5],[0,10],[2,12],[-1,-4],[-3,-7],[-5,-3],[-7,0],[-2,-3],[-12,-22],[-2,-4],[-1,-5],[-1,-7],[6,5],[5,9],[5,11],[3,12],[2,-10],[-1,-8],[-2,-8],[-1,-11],[2,5],[2,5],[3,5],[3,1],[2,-3],[-1,-4],[-3,-4],[-2,-1],[-7,-28],[-6,-18],[-8,-29],[-1,-9],[-6,-19],[-2,-10],[-4,-2],[-1,-1],[-1,-2],[0,-1]],[[25471,61415],[-2,0],[-17,0],[-2,-1],[-2,-2],[-1,-1],[-2,3],[-3,5],[-1,1],[-2,-1],[-3,-3],[-6,-4],[-2,-1],[-3,2],[-3,3],[-3,0],[-8,-13],[-2,-5],[-2,-6],[-1,-18],[-3,-14],[-1,-15],[-1,-7],[-3,-11],[-9,-20],[-3,-10],[-1,-10],[0,-9],[0,-2],[-1,-7],[-3,-9],[-3,-5],[-8,-8],[-8,-12],[1,-2],[1,-8],[-1,-7],[-7,-23],[-1,-6],[-1,-14],[-1,-6],[-2,-9],[-4,-5],[-3,-4],[-4,-7],[-2,-6],[-4,-23],[-2,-6],[-15,-22],[-1,-4],[-1,-13],[-2,-5],[-2,-2],[-11,14],[-4,5],[-4,17],[-2,1],[-4,-1],[-3,1],[-5,7],[-4,9],[-4,9],[-6,4],[-23,-17],[-6,-17],[-2,-24],[0,-51]],[[24376,59084],[-1,3],[-16,38],[-21,41],[-35,73],[-53,113],[-35,81],[-4,15],[0,13],[4,-6],[12,-8],[3,-5],[0,-11],[2,-11],[3,-9],[4,-3],[-3,12],[-2,24],[-3,10],[-4,5],[-6,5],[-6,3],[-4,-2],[-1,10],[-3,1],[-2,-4],[4,-7],[-5,1],[-16,27],[-12,10],[-5,7],[-4,17],[-22,32],[-26,60],[-5,17],[-3,8],[-8,6],[-67,118],[-5,5],[-47,77],[-28,40],[-52,61],[4,4],[6,-1],[4,1],[1,-6],[4,-1],[3,4],[3,8],[-5,14],[-3,13],[-4,11],[-7,6],[-33,15],[-9,10],[-3,4],[-5,9],[-4,9],[-1,8],[-2,17],[-4,3],[-5,-4],[-6,-6],[-12,-3],[-11,7],[-12,13],[-9,15],[-6,14],[-4,5],[-6,2],[-5,-4],[-1,-8],[1,-11],[0,-9],[-2,0],[-2,2],[-2,-1],[1,-4],[2,-2],[4,-1],[0,-4],[-3,-2],[-4,-1],[26,-35],[14,-13],[8,4],[-21,16],[0,4],[7,-1],[11,-9],[6,-2],[7,1],[3,-1],[4,-4],[9,-12],[0,-5],[-3,0],[0,-4],[19,-8],[9,-7],[7,-11],[7,-21],[3,-5],[10,-8],[4,-5],[2,-7],[-106,89],[-4,6],[-9,11],[-13,6],[-26,1],[1,0],[-14,1],[-8,2],[-4,5],[-5,-4],[-6,-1],[-11,1],[-6,2],[-2,6],[1,7],[4,5],[24,16],[11,15],[1,26],[-3,7],[-10,6],[-5,5],[-2,4],[-2,1],[-2,0],[-2,-2],[-1,-10],[-1,-2],[-2,-2],[-3,-2],[-1,-1],[-3,-6],[-2,-4],[0,-2],[-7,-8],[-4,-3],[-5,-15],[-4,-6],[-3,10],[-1,7],[0,7],[3,6],[5,5],[2,6],[-3,9],[-4,9],[-1,7],[0,6],[-2,9],[-2,5],[-3,7],[-4,6],[-3,2],[-7,-2],[-7,-7],[-5,-11],[-12,-37],[-3,-4],[-16,0],[1,-10],[-2,-4],[-3,-1],[-2,-3],[-3,-10],[0,-6],[6,-4],[12,-6],[10,-2],[9,1],[8,1],[4,1],[5,3],[3,4],[5,11],[2,1],[2,-9],[-9,-8],[-12,-6],[-8,-1],[10,-6],[25,2],[8,-7],[4,-13],[-1,-3],[-15,9],[-21,-2],[-15,-5],[-12,-4],[-7,-3],[-13,-4],[-11,0],[-5,3],[-4,0],[-4,-1],[-1,-3],[0,-4],[1,-4],[-3,-3],[-7,2],[-3,-5],[-5,0],[-5,0],[-4,-7],[0,-7],[-6,-4],[-3,-5],[0,-7],[-1,-2],[-4,-2],[-2,-5],[-9,-2],[-4,-6],[-7,-19],[1,-12],[-3,-3],[-4,-8],[-7,-5],[-1,-9],[-2,-5],[-16,-1],[-1,-5],[-21,-5],[-3,-7],[-7,-2],[-2,-8],[-13,-10],[-12,-2],[-8,-3],[-6,-3],[-4,-5],[-2,-3],[0,-7],[-7,-2],[-6,-3],[-7,-4],[-8,-4],[-3,-5],[-20,-9],[-2,-6],[-10,-5],[-8,-10],[-5,-3],[-8,-10],[-3,-1],[-2,-4],[-2,-3],[-3,3],[-3,-5],[0,-9],[-22,-20],[-9,-12],[-14,1],[-20,-1],[-11,5],[-9,2],[-4,-8],[-7,-6],[-4,-7],[-5,-1],[-6,1],[-6,2],[-2,-3],[-16,13],[-19,17],[-34,13],[-12,1],[-23,29],[-17,11],[-9,4],[-7,13],[1,2],[-5,16],[-4,-2],[-7,8],[-16,20],[-13,10],[-17,9],[-5,0],[-17,6],[-6,-7],[-25,7],[-20,13],[-8,-3],[-16,8],[-12,0],[-4,-4],[-2,-4],[-10,4],[-15,6],[-6,5],[-5,9],[-7,4],[-3,5],[-2,4],[-2,2],[-4,7],[-19,28],[-10,13],[-29,33],[-10,6],[-9,9],[-5,11],[16,-10],[9,-2],[4,8],[-5,-1],[-3,6],[-4,5],[-4,-6],[-5,5],[-6,3],[0,1],[-1,3],[-1,3],[-2,1],[0,-1],[-1,-3],[-2,-3],[-2,-1],[-5,1],[-28,19],[-36,13],[-18,13],[-6,5],[-4,2],[-2,2],[0,2],[-4,3],[-1,2],[1,0],[1,2],[-1,6],[-4,12],[-10,18],[-22,42],[-11,30],[-8,18],[-1,4],[-2,3],[-4,-1],[-4,2],[-3,-2],[-2,0],[-2,-2],[-5,-2],[-1,-4],[-1,-5],[0,-2],[-9,4],[-5,0],[-11,9],[-55,36],[-46,25],[-18,9],[-34,10],[-17,1],[-13,-3],[-9,5],[-7,5],[-8,5],[-8,7],[-6,7],[-15,24],[-7,11],[-2,-1],[-2,-4],[-3,3],[-1,3],[-3,3],[3,2],[3,-3],[1,4],[-2,4],[-2,1],[-1,-2],[-3,1],[-2,0],[-2,4],[2,1],[1,5],[1,5],[1,0],[2,1],[0,4],[-2,5],[-2,3],[-4,2],[-5,-4],[-2,-4],[0,-4],[3,1],[1,-2],[-2,-5],[-4,-1],[-2,4],[-1,13],[-2,3],[-7,13],[-1,6],[-9,10],[-20,15],[-14,8],[-14,11],[-19,14],[-24,19],[-68,49],[-24,17],[-17,10],[-19,17],[-15,11],[-18,11],[-15,12],[-15,9],[-10,10],[-4,-3],[-2,7],[3,4],[0,12],[-5,10],[-9,18],[-19,23],[-2,14],[-23,25],[-23,18],[-13,12],[-17,12],[-1,7],[4,1],[1,10],[-2,8],[-3,8],[-11,18],[-8,3],[-7,-5],[-2,9],[-3,0],[-3,6],[-4,0],[-1,10],[-5,4],[-8,5],[-1,22],[-6,21],[-8,10],[-13,20],[-3,15],[-4,7],[-1,12],[-10,25],[-13,11],[-4,3],[-17,21],[-16,15],[-13,9],[-17,-5],[-3,-10],[-6,-8],[-4,-10],[-5,-6],[-3,-5],[-5,0],[-10,10],[-17,17],[-36,21],[-16,12],[-10,2],[-23,17],[-27,4],[-14,6],[-38,33],[-26,26],[-14,12],[-10,1],[-15,2],[-3,9],[-4,-3],[-23,19],[-5,-1],[-14,10],[-5,6],[-10,7],[-5,-2],[-5,7],[-12,14],[-21,18],[-7,25],[-14,69],[-10,23],[-2,4],[-3,6],[-4,7],[-5,7],[-9,10],[-4,2],[-1,6],[7,16],[-4,15],[-9,17],[-17,35],[-44,63],[-8,16],[-30,31],[-25,26],[-17,12],[-9,6],[-6,5],[-6,4],[-4,3],[1,18],[6,2],[2,6],[-2,9],[-6,11],[-4,1],[-3,-6],[-1,2],[0,10],[-3,3],[-5,-1],[-2,-4],[1,-9],[-3,-1],[-2,5],[-3,3],[-3,-8],[-3,-6],[-4,14],[-9,8],[-5,7],[-25,11],[-12,6],[-10,10],[-3,4],[-1,7],[-1,8],[-3,1],[-3,0],[-3,1],[-2,4],[0,3],[-1,3],[-3,2],[-2,0],[-7,-4],[-6,0],[-2,2],[0,16],[2,16],[-1,7],[-4,3],[-2,-1],[-5,-5],[-2,-2],[-3,1],[-2,1],[-1,0],[-3,-6],[-21,23],[-10,14],[-7,16],[-3,27],[-3,13],[-8,7],[0,5],[1,11],[-1,6],[-1,5],[-2,4],[-2,3],[0,33],[-8,15],[-4,0],[-4,-2],[-2,1],[-5,10],[-6,8],[-17,30],[-13,31],[-15,51],[-8,18],[-2,11],[-3,7],[-8,14],[-4,11],[-7,26],[-16,48],[-2,11],[0,7],[-3,11],[0,6],[0,26],[-3,39],[-1,10],[-2,6],[-5,6],[-3,4],[-4,17],[-5,16],[-8,7],[-5,24],[-5,19],[-2,13],[4,10],[30,38],[13,3],[19,0],[4,2],[5,6],[19,3],[9,1],[8,11],[3,11],[6,4],[3,8],[3,8],[2,11],[1,20],[-5,12],[-9,8],[-7,34],[-9,16],[-5,5],[-3,-5],[-5,-9],[-6,-3],[-9,8],[-10,2],[-10,11],[-5,-8],[-3,7],[2,6],[4,7],[2,-1],[3,-2],[5,6],[3,15],[3,8],[1,13],[2,6],[1,4],[3,-1],[4,11],[6,23],[9,15],[4,2],[2,8],[4,8],[3,11],[2,8],[2,8],[3,2],[2,-4],[3,0],[3,-1],[6,11],[4,10],[1,18],[0,15],[-2,9],[2,14],[-1,17],[5,12],[-3,47],[-4,35],[3,27],[3,12],[5,16],[5,5],[-1,6],[-2,11],[-1,12],[-3,8],[-2,6],[-4,5],[-4,1],[-1,-7],[-4,-1],[-5,9],[-11,10],[-20,26],[-6,7],[-9,18],[-4,24],[-24,94],[-24,74],[-4,22],[-2,32],[2,85],[-2,39],[-7,54],[-7,44],[-4,30],[-3,19],[4,6],[-2,8],[-2,8],[-3,3],[-2,-7],[-2,0],[-3,33],[-9,28],[-23,45],[-12,31],[-5,9],[-11,15],[-2,3],[-1,2],[-1,2],[-1,3],[-1,4],[6,16],[-4,-2],[-3,-3],[-4,-5],[-3,-6],[-52,131],[-2,4],[-5,4],[-3,2],[-6,9],[-26,60],[-4,5],[-4,-2],[-3,-4],[-2,-2],[-3,3],[-1,5],[1,22],[-2,8],[-9,30],[-5,8],[-1,4],[4,4],[-1,4],[0,3],[-1,3],[-1,1],[-10,40],[-3,6],[-5,3],[-5,7],[-12,20],[-1,3],[-1,4],[-3,15],[-3,7],[-7,7],[-4,10],[-6,18],[-8,18],[-5,7],[-12,8],[-3,12],[-3,28],[-3,11],[-5,10],[-5,12],[-3,25],[-8,29],[-37,79],[-14,21],[-5,4],[-4,4],[-15,28],[-39,53],[-18,24],[-3,7],[-2,14],[-3,6],[-11,10],[-10,15],[-17,31],[-65,78],[-5,9],[-2,11],[1,6],[2,1],[2,-3],[2,-4],[1,-3],[0,-3],[0,-6],[1,-1],[22,-24],[3,-1],[38,-49],[4,-4],[4,-4],[4,-4],[-3,5],[-8,10],[-4,5],[1,6],[5,-5],[9,-13],[1,2],[1,3],[0,2],[-1,0],[-2,0],[-1,0],[3,7],[3,5],[2,6],[0,11],[-1,8],[-11,47],[-3,6],[-4,4],[-5,1],[-4,-2],[-4,-4],[-3,-7],[4,-2],[8,6],[2,-4],[-1,-5],[-8,-15],[-2,-4],[-9,-6],[-5,7],[-4,11],[-5,8],[-6,-7],[-2,-1],[-2,1],[-2,1],[-6,9],[-1,5],[-1,4],[0,8],[-1,4],[-2,3],[-4,3],[-2,2],[-11,23],[-4,2],[-4,-5],[-5,11],[-6,9],[-7,7],[-7,2],[2,-6],[2,-4],[4,-6],[9,-19],[4,-7],[12,-14],[4,-9],[-8,4],[-21,25],[-24,42],[-3,8],[-1,9],[-1,22],[-1,10],[-3,10],[-3,9],[-3,3],[-1,2],[-2,4],[0,5],[1,1],[3,0],[3,-2],[5,-6],[2,-4],[4,-6],[5,-1],[2,13],[-2,11],[-3,10],[-4,9],[-3,4],[4,7],[0,9],[-2,21],[1,9],[1,8],[4,15],[-3,9],[-11,18],[-4,2],[0,-11],[4,-32],[0,-3],[1,-4],[0,-7],[-2,-19],[-1,-21],[0,-6],[-2,-3],[-2,1],[-1,1],[-1,2],[-2,3],[-2,2],[-1,-3],[0,-4],[-2,-2],[-10,13],[-8,23],[-22,86],[-7,16],[-10,17],[-5,5],[-3,4],[-1,7],[6,0],[6,-3],[5,-6],[2,-9],[17,-39],[3,-17],[1,-3],[2,0],[1,1],[2,2],[0,1],[6,-7],[1,-1],[3,1],[0,5],[0,12],[-1,8],[-3,0],[-3,-1],[-3,3],[1,4],[2,10],[1,3],[3,4],[1,2],[1,-3],[2,-5],[5,-12],[5,-4],[12,-3],[9,-8],[2,5],[1,6],[0,7],[-29,50],[-3,4],[-5,1],[2,-5],[0,-3],[-2,-3],[-4,-1],[-3,1],[-3,4],[-5,11],[-6,21],[-2,4],[-4,-1],[-2,-4],[-3,-3],[-4,3],[-4,-4],[-7,-1],[-8,2],[-5,5],[-1,19],[0,3],[2,-1],[7,-8],[3,-3],[-1,8],[0,17],[-1,8],[-3,6],[-6,6],[-3,5],[-6,-64],[-4,-10],[-1,5],[2,27],[0,9],[-3,12],[-4,9],[-4,6],[-4,6],[-29,22],[-17,21],[-11,7],[-12,2],[-10,0],[7,9],[11,-1],[21,-12],[-7,6],[-11,18],[-8,4],[-15,-9],[-7,-1],[-4,10],[12,0],[2,4],[-3,11],[-1,4],[0,5],[-1,3],[-2,2],[-1,-1],[-4,-6],[-2,-1],[3,18],[1,9],[0,27],[-1,9],[-1,1],[-3,-3],[-3,0],[-9,7],[-1,2],[0,3],[-1,3],[-1,1],[-2,-1],[-2,-3],[-2,0],[-5,1],[-3,3],[-2,-2],[0,-10],[1,-7],[1,-3],[1,-4],[1,-7],[-1,-7],[-1,-4],[-1,-3],[-2,-4],[-5,-6],[-3,-1],[-4,4],[-3,9],[2,-1],[2,2],[0,3],[-1,4],[-3,1],[-13,-2],[-4,-4],[-1,-6],[3,-9],[-8,-1],[-8,11],[-14,31],[6,5],[2,2],[1,6],[2,7],[1,6],[4,2],[9,-7],[3,1],[3,2],[2,-5],[1,-12],[3,-3],[0,1],[1,3],[2,8],[0,3],[0,7],[0,2],[1,3],[2,1],[15,28],[3,9],[0,3],[0,2],[-1,3],[1,3],[1,2],[1,2],[1,0],[1,4],[0,19],[2,11],[11,19],[2,13],[-3,9],[-3,-8],[-6,-23],[-4,-12],[-4,-19],[-5,-8],[-7,-6],[-13,-8],[-6,-8],[-9,-27],[-5,-8],[-7,4],[-8,-8],[-4,0],[-4,6],[-3,14],[-3,12],[-2,6],[-2,3],[-4,1],[-8,8],[-7,10],[-2,-2],[1,-7],[2,-7],[2,-5],[19,-31],[5,-13],[-1,-11],[-7,11],[-6,17],[-7,14],[-10,7],[-31,-2],[-10,6],[6,8],[8,5],[9,0],[8,-6],[-1,11],[1,10],[0,2],[3,5],[0,3],[0,3],[-1,2],[0,1],[-1,2],[-2,7],[-5,7],[-6,6],[-5,3],[-5,-1],[-3,-3],[-2,-8],[0,-34],[-1,-4],[-3,9],[1,10],[1,15],[-1,14],[-2,5],[-6,5],[-1,10],[1,12],[3,23],[1,5],[1,1],[0,11],[0,9],[-1,5],[-3,9],[-2,13],[0,11],[0,27],[2,9],[10,33],[10,22],[5,12],[3,24],[12,41],[5,20],[1,9],[1,6],[2,-1],[1,-7],[-3,-13],[-2,-3],[-1,-5],[-2,-4],[-1,-4],[0,-1],[-1,-8],[0,-13],[0,-6],[-2,-6],[0,-7],[1,-5],[3,-2],[2,5],[2,7],[1,18],[9,31],[1,11],[0,31],[3,6],[5,0],[6,-3],[3,-5],[3,-11],[-1,-11],[-2,-10],[-3,-5],[0,-3],[6,-5],[13,-23],[4,-1],[0,7],[-4,14],[0,8],[2,3],[3,2],[2,3],[-1,8],[-8,-1],[-7,26],[-5,19],[-7,8],[1,-2],[1,-2],[1,-3],[1,-4],[-6,3],[-3,1],[-3,-1],[-8,-17],[-2,-1],[-1,9],[4,42],[-2,23],[-3,23],[-6,14],[-10,28],[-12,17],[-8,24],[-9,14],[-8,6],[-8,2],[-2,4],[3,2],[6,-3],[6,-5],[-1,11],[-3,2],[2,6],[-2,6],[-5,1],[-3,1],[-2,7],[-1,8],[-3,-3],[-4,-5],[-1,11],[-5,2],[-3,-7],[-3,-7],[-1,-6],[3,-3],[3,-1],[3,-1],[1,-4],[-1,-4],[0,-4],[5,-6],[3,-1],[0,-4],[-10,8],[-21,8],[-12,-2],[-4,-6],[0,-6],[-9,3],[-8,8],[-12,9],[-5,7],[-13,28],[-7,21],[-2,20],[-2,21],[-4,13],[-4,18],[-1,9],[-2,8],[-10,27],[1,6],[3,-8],[8,-24],[6,-8],[-7,33],[-1,13],[-2,25],[-9,23],[-4,6],[-5,4],[-5,1],[-4,1],[-2,-1],[-2,-2],[-2,-4],[-2,-3],[-2,-7],[-3,-5],[-8,12],[-16,10],[-12,5],[-7,4],[-7,2],[-6,3],[-7,3],[-9,10],[-4,4],[-10,22],[-9,22],[-12,17],[-5,5],[-10,5],[-6,-1],[0,6],[8,-1],[8,-1],[7,-2],[4,5],[-5,10],[-8,16],[-2,8],[1,2],[1,5],[0,4],[-4,2],[-1,2],[-3,5],[-5,-8],[-3,-4],[-3,0],[-3,3],[-1,4],[0,15],[-1,15],[-8,9],[0,37],[-3,18],[-8,39],[0,19],[3,10],[5,4],[5,2],[3,8],[0,9],[-3,2],[-4,-4],[-2,-7],[2,20],[2,4],[3,4],[4,0],[3,2],[1,6],[-9,2],[-5,4],[-1,9],[4,14],[-4,1],[-3,5],[-1,6],[2,8],[1,-6],[2,-1],[2,3],[1,11],[2,1],[3,0],[14,4],[3,5],[-1,12],[-6,-5],[-16,13],[-7,-1],[3,-6],[-1,-3],[-4,1],[-9,12],[-4,3],[-20,10],[-10,1],[-9,-1],[-11,-5],[0,5],[3,1],[9,7],[-2,8],[-2,5],[0,6],[0,7],[-2,7],[-3,3],[-3,0],[-2,-6],[0,-16],[-1,-10],[-3,-8],[-5,-13],[4,2],[2,-2],[1,-6],[1,-8],[-2,-7],[-2,-10],[-3,-5],[-1,6],[-1,1],[-7,17],[-1,1],[-5,2],[-2,1],[-1,3],[-1,4],[-1,3],[-2,2],[3,6],[2,2],[3,1],[-5,9],[-6,9],[-6,7],[-6,-1],[-6,-3],[-5,-12],[-8,0],[-5,-1],[1,6],[2,4],[-2,6],[-4,5],[-3,-1],[-4,9],[-8,4],[-3,9],[-5,10],[-6,13],[-8,4],[-4,13],[-5,11],[-5,22],[-9,19],[-2,26],[-3,6],[0,1],[-4,-1],[-2,2],[-1,2],[0,4],[-2,8],[-1,13],[-2,6],[-12,20],[-4,11],[-2,12],[2,7],[3,6],[1,11],[-10,-4],[-12,8],[-19,13],[-18,17],[-7,5],[-6,3],[-3,1],[-5,24],[-5,23],[-5,27],[-44,80],[-6,16],[-2,6],[1,4],[3,0],[4,2],[4,7],[3,1],[2,-6],[1,-6],[2,-4],[3,-2],[1,2],[1,5],[1,7],[-1,6],[-3,11],[-4,0],[-5,-2],[-6,1],[-8,14],[-4,10],[-11,8],[-7,4],[-1,11],[-4,3],[1,6],[-4,8],[-7,9],[-2,9],[-2,7],[-2,4],[-2,2],[-4,2],[-6,-1],[-5,2],[-1,4],[3,4],[2,4],[0,6],[-1,5],[-4,25],[0,14],[-4,2],[1,6],[2,8],[3,7],[0,6],[-4,12],[-4,10],[1,6],[-5,8],[-5,4],[3,24],[1,15],[-4,16],[-4,21],[-6,8],[-15,1],[-2,-3],[-2,-3],[-1,-3],[1,-5],[-1,-6],[-2,2],[-4,11],[-11,8],[-5,7],[-2,19],[4,16],[6,23],[2,12],[0,14],[-3,7],[-6,3],[-3,4],[-3,6],[1,13],[-1,11],[-10,15],[-11,18],[-7,35],[-1,7],[-2,6],[-5,-1],[-5,13],[-2,9],[-3,23],[-4,12],[-4,11],[-4,9],[-5,34],[-3,8],[-5,6],[-2,-2],[-4,4],[-6,-4],[-5,4],[-1,8],[3,10],[-1,11],[2,17],[2,15],[-2,9],[-3,8],[-3,10],[0,10],[2,32],[-1,33],[-3,15],[-4,11],[-4,10],[-4,7],[-6,7],[-2,0],[-2,1],[-3,-5],[-1,3],[3,12],[1,18],[-1,25],[-2,23],[-4,17],[-13,27],[-19,34],[-16,45],[-10,37],[-10,66],[-4,18],[5,19],[3,37],[1,23],[-1,20],[-8,42],[0,9],[2,1],[2,-6],[1,-7],[2,-12],[4,-19],[2,-2],[2,5],[5,20],[1,28],[0,26],[1,20],[-5,9],[-7,18],[-7,9],[-7,1],[0,-5],[4,-4],[4,-4],[-2,-4],[-5,3],[-4,6],[-12,12],[-3,13],[-4,8],[-3,16],[-3,-1],[-5,-4],[-4,-1],[4,-9],[3,-4],[4,-3],[2,-4],[-3,-2],[-10,6],[-44,15],[-13,6],[-19,5],[-2,12],[-8,5],[-10,1],[-6,10],[2,3],[5,-1],[3,4],[-3,17],[-5,32],[1,18],[-7,19],[-15,20],[-13,11],[-4,8],[-8,1],[-13,11],[-7,8],[-3,10],[-8,-6],[-3,-1],[-4,-1],[-5,9],[-1,23],[-5,5],[0,-8],[0,-32],[-1,-5],[2,-5],[2,-1],[2,1],[0,1],[3,-7],[-1,-2],[-3,-1],[-4,-11],[-1,-7],[-3,-4],[-3,0],[-2,-6],[-1,-3],[-1,-4],[-3,-8],[-12,1],[-13,0],[-11,1],[-14,11],[-6,10],[-8,5],[-8,8],[-3,6],[-4,8],[-3,4],[-1,7],[-9,9],[-14,16],[-6,6],[-4,2],[-4,10],[-9,6],[-13,24],[-12,26],[-6,3],[-20,-1],[-3,1],[-2,3],[-5,10],[-1,2],[-3,2],[-5,9],[-4,2],[-9,2],[-3,2],[-4,6],[-7,19],[-3,3],[-6,3],[-16,22],[-6,5],[-4,2],[-3,1],[-3,1],[-4,6],[-2,1],[-1,3],[0,7],[-1,7],[-3,3],[-1,-3],[0,-6],[1,-8],[4,-13],[1,-3],[3,-3],[2,-2],[7,-2],[5,-5],[4,-6],[4,-6],[2,-8],[7,-3],[5,-9],[4,-11],[2,-9],[4,-3],[2,-7],[3,-42],[3,-12],[4,-11],[3,-14],[-2,-12],[-10,-21],[-4,-20],[-4,-24],[0,-81],[-6,-36],[1,-33],[-3,-54],[-2,-11],[2,-25],[5,-19],[7,-13],[7,-10],[0,-4],[-5,-9],[0,-13],[3,-10],[5,-8],[19,-16],[4,-5],[1,-3],[1,-4],[1,-6],[0,-20],[1,-6],[0,-10],[-1,-8],[2,-5],[2,-9],[-1,-27],[1,-8],[2,-10],[-2,-5],[-3,-14],[3,-15],[1,-10],[-2,-20],[4,-18],[6,-19],[4,-11],[0,-7],[1,-5],[0,-7],[1,-6],[3,-11],[0,-8],[-2,-11],[0,-12],[2,-10],[-1,-17],[-2,-13],[2,-6],[-3,-30],[-2,-10],[0,-5],[0,-7],[3,-8],[-1,-8],[-2,-13],[-1,-9],[-3,-8],[2,-9],[2,-5],[3,-12],[3,-6],[0,-7],[2,-9],[5,-4],[2,-13],[5,-10],[0,-13],[6,-19],[4,-16],[3,-14],[14,-12],[3,-17],[4,-5],[8,-2],[3,-9],[3,-6],[-2,-16],[3,-13],[2,-3],[-2,0],[-1,-4],[-1,-3],[4,-4],[0,-2],[0,-6],[1,-7],[3,-5],[3,-3],[2,1],[3,-2],[2,-6],[0,-4],[2,-4],[5,-2],[5,0],[2,1],[2,3],[0,3],[1,2],[-2,0],[-1,3],[1,3],[2,-1],[1,3],[0,1],[1,-1],[1,0],[1,1],[1,-2],[1,-2],[1,0],[1,-3],[1,1],[3,1],[2,-3],[2,-5],[2,-1],[0,-1],[3,-1],[2,-3],[1,-7],[1,-4],[1,-1],[1,-3],[1,-1],[1,-2],[0,-1],[1,-2],[2,-1],[1,-1],[2,-5],[0,-1],[2,1],[0,1],[3,-2],[0,-5],[2,-3],[0,-4],[2,0],[2,-4],[2,-5],[0,-1],[4,-3],[2,-4],[2,-1],[6,-6],[1,-8],[0,-3],[2,-4],[1,-5],[4,-1],[1,-1],[0,-3],[2,-2],[0,-2],[2,-2],[3,-1],[3,1],[3,-6],[2,-6],[3,-6],[2,-4],[1,-1],[3,-8],[3,-3],[3,-5],[3,-7],[4,-8],[4,-6],[5,-8],[4,-2],[3,-2],[2,-4],[0,-8],[2,-4],[3,-1],[3,-2],[2,-4],[2,-1],[5,-5],[25,-54],[9,-13],[3,-7],[1,-11],[2,-3],[1,-3],[-4,-8],[-3,-7],[-2,-6],[0,-6],[2,-3],[3,-2],[-1,-9],[2,-6],[1,1],[1,-3],[0,-5],[3,0],[2,1],[0,-6],[2,-8],[3,-7],[3,-1],[2,-7],[2,-14],[5,-15],[3,-9],[-1,-7],[-3,0],[-2,-7],[-1,-2],[-1,-6],[1,-8],[3,-4],[2,-11],[-1,-9],[-2,-3],[-1,-4],[3,-9],[2,-7],[2,-8],[2,-4],[0,-5],[6,-2],[6,3],[1,3],[0,2],[2,8],[-3,4],[-2,5],[2,1],[0,4],[1,4],[1,1],[4,-1],[3,-2],[3,5],[1,5],[3,-6],[-1,-9],[4,-7],[2,3],[0,3],[5,4],[2,-2],[-2,-3],[-1,-1],[-1,-10],[8,-3],[0,-3],[-3,-1],[-1,-4],[2,-4],[2,-6],[2,-2],[-2,-3],[0,-6],[0,-8],[-1,-5],[1,-7],[4,-4],[-1,-10],[7,0],[6,1],[2,4],[3,6],[2,4],[4,4],[3,4],[7,-2],[4,-7],[1,-4],[1,-9],[3,-2],[1,-4],[-1,-8],[3,-4],[0,-8],[-1,-9],[3,-16],[2,-2],[2,-13],[4,-20],[6,-10],[2,-7],[-2,-14],[3,-15],[2,-8],[1,-12],[-1,-11],[3,-14],[6,-6],[1,-4],[4,-4],[7,-2],[1,-6],[9,-7],[9,1],[11,6],[8,5],[5,-7],[-1,-4],[3,-4],[1,-3],[-2,-4],[0,-2],[4,-1],[1,1],[1,4],[4,0],[-1,-6],[1,-5],[-2,-3],[-2,-8],[1,-4],[2,-9],[-2,-8],[-4,-22],[-1,-14],[1,-5],[-1,-9],[2,-7],[4,-7],[4,-5],[0,-5],[9,-20],[1,-4],[3,-1],[1,-3],[-2,-4],[0,-3],[-1,-10],[-2,-3],[-1,-7],[-1,-18],[3,-21],[1,-2],[2,-2],[0,-6],[-2,-6],[-2,-7],[0,-8],[2,-9],[3,-9],[5,0],[2,-3],[0,-8],[2,-9],[-1,-3],[-2,-15],[1,-11],[0,-7],[0,-4],[0,-4],[-1,-2],[-1,-6],[-1,-10],[4,-10],[4,-6],[2,-4],[3,-4],[1,2],[1,0],[0,-4],[2,-8],[-1,-3],[0,-10],[3,-4],[-1,-6],[1,-7],[3,-8],[4,-8],[2,-6],[2,-2],[2,-4],[2,1],[2,0],[2,-4],[1,-5],[3,-5],[0,-5],[6,-7],[1,-7],[8,-8],[7,0],[4,-2],[3,-5],[5,-3],[4,-2],[2,-4],[3,-5],[3,-4],[10,-5],[5,-6],[8,-9],[5,-10],[1,-8],[5,-11],[3,-13],[1,-21],[0,-9],[3,-12],[3,-11],[-1,-7],[1,-7],[3,-9],[4,-5],[2,-9],[2,-7],[5,-2],[1,-7],[2,-14],[3,-5],[3,-13],[3,-6],[-2,-12],[-1,-3],[-1,-4],[0,-5],[5,-7],[3,-7],[4,-7],[1,-5],[3,-3],[5,-1],[6,-10],[7,-7],[6,2],[1,-3],[3,-3],[12,-4],[4,-13],[10,0],[2,-1],[0,-5],[2,-4],[0,-5],[-4,-3],[-3,2],[-5,-7],[-4,-12],[-3,-13],[0,-9],[-1,-12],[4,-16],[5,-7],[3,-2],[1,-5],[4,-10],[1,-11],[3,-4],[7,-5],[2,-11],[11,-18],[2,-14],[0,-9],[0,-4],[-3,-4],[-1,-6],[0,-6],[-4,4],[-4,-17],[1,-12],[4,-2],[7,-10],[3,-10],[1,-8],[0,-5],[1,-6],[5,-3],[4,-6],[4,-10],[4,-24],[6,-11],[7,-8],[6,7],[10,18],[0,7],[-4,5],[-6,16],[-8,14],[-4,4],[-3,10],[-7,8],[-4,15],[-2,-1],[0,5],[0,5],[0,5],[0,16],[-2,7],[0,8],[-2,10],[2,7],[-3,5],[-1,4],[0,5],[-1,3],[-2,5],[1,6],[-2,4],[0,4],[5,1],[2,5],[2,3],[7,-7],[0,-5],[7,-8],[6,-11],[5,-13],[2,-9],[12,-17],[3,2],[1,-8],[2,-5],[2,-4],[1,-4],[6,-4],[0,-4],[5,-4],[-1,-3],[7,-5],[4,-3],[0,-4],[3,-3],[-1,-14],[-1,-13],[1,-14],[-2,-29],[2,-11],[4,-6],[7,-5],[6,-4],[5,-3],[3,2],[0,3],[4,1],[-1,-5],[2,-3],[4,-4],[-2,-2],[-2,-5],[0,-12],[-4,-12],[1,-15],[-1,-12],[2,-12],[7,-8],[2,-2],[2,-3],[0,-4],[-3,-2],[0,-4],[3,-6],[5,-4],[3,-8],[2,-10],[1,-8],[0,-14],[-3,1],[-1,-15],[3,-6],[0,-5],[3,-13],[-1,-7],[1,-10],[3,-4],[2,-8],[0,-12],[2,-10],[3,-9],[5,-8],[0,-7],[1,-7],[0,-6],[-2,-3],[-1,-6],[-3,-6],[-1,-6],[2,-9],[0,-15],[-3,-8],[-4,-6],[2,-11],[1,-12],[3,-10],[1,-5],[1,-9],[-2,-7],[2,-4],[1,-17],[2,-3],[1,1],[1,1],[2,-3],[2,-6],[1,-2],[1,-3],[-1,-3],[-1,0],[-1,3],[-1,3],[-2,2],[0,-3],[1,-9],[1,-7],[0,-6],[1,-4],[4,-4],[3,-8],[4,-3],[2,-3],[3,-6],[1,-5],[2,-2],[1,3],[2,0],[3,-13],[0,-4],[1,-8],[1,-8],[2,-9],[0,-8],[1,-6],[1,-9],[3,-7],[3,-5],[2,-12],[4,-2],[1,-3],[0,-4],[2,-9],[3,-3],[1,-5],[3,-3],[3,0],[1,3],[1,-2],[5,-1],[2,4],[1,-1],[-2,-5],[0,-3],[3,-1],[1,3],[1,1],[2,-3],[2,0],[1,2],[1,0],[1,-1],[3,-2],[1,-5],[-2,-5],[2,-8],[0,-4],[-1,-3],[0,-7],[-2,-1],[0,-7],[2,-4],[2,-10],[2,-4],[1,-14],[1,-6],[4,-14],[1,-10],[2,-4],[5,-4],[0,-4],[2,-4],[1,-5],[-1,-1],[0,-4],[2,-3],[2,-2],[-1,-1],[0,-3],[1,-3],[-1,-3],[-2,0],[-1,-7],[0,-4],[3,-5],[-1,-7],[2,-11],[3,-3],[2,-11],[2,-3],[1,-3],[-2,-3],[0,-10],[2,-10],[3,-7],[4,-3],[0,-2],[1,-2],[0,-3],[1,-3],[1,-3],[0,-3],[1,-4],[1,-8],[4,-3],[0,-3],[5,-3],[1,-3],[0,-7],[1,-4],[2,-4],[3,-1],[3,-1],[0,2],[1,2],[2,-3],[1,-3],[6,-9],[-1,-3],[1,-2],[0,-4],[2,-2],[0,-4],[0,-7],[1,-6],[3,-7],[2,-7],[3,-6],[-1,-4],[3,-2],[1,0],[1,-2],[1,-2],[0,-1],[-2,0],[-1,-2],[2,-1],[0,-3],[3,-6],[0,-3],[2,-2],[-1,-2],[0,-3],[1,-4],[1,-2],[-1,-5],[2,-4],[1,-4],[0,-4],[0,-4],[2,-4],[0,-4],[1,-3],[0,-1],[1,0],[1,-1],[-1,-5],[-1,-4],[1,-2],[-1,-8],[0,-6],[-4,-10],[-3,-10],[-1,-7],[1,-6],[-2,-6],[-4,-1],[-4,-10],[-1,-11],[-1,-14],[-2,-10],[0,-12],[0,-8],[1,-10],[1,-6],[-2,-4],[1,-6],[2,-13],[0,-4],[2,-6],[9,-23],[1,-7],[0,-6],[-2,-5],[0,-7],[1,-5],[-1,-5],[2,-5],[1,-5],[-1,-5],[2,-5],[-1,-8],[7,-18],[1,-4],[4,-5],[-1,-3],[4,-15],[3,-9],[2,-9],[3,-4],[5,-4],[1,-9],[3,-3],[1,-4],[6,-5],[8,-5],[7,-4],[9,-4],[15,-4],[14,0],[6,1],[1,-1],[-1,-4],[-3,-5],[-4,-3],[-4,-4],[-3,3],[-7,8],[-8,4],[0,-4],[2,-4],[-1,-9],[2,-5],[1,-5],[-1,-5],[1,-7],[7,-1],[6,4],[3,-1],[3,2],[0,4],[0,6],[1,4],[1,3],[5,8],[5,11],[2,24],[-3,1],[0,6],[0,5],[-2,3],[-2,2],[1,2],[0,5],[0,5],[-2,1],[0,-6],[-2,-1],[-1,12],[1,3],[-1,4],[1,5],[-1,3],[1,6],[-1,3],[4,0],[1,3],[-2,1],[-1,4],[2,3],[4,2],[3,3],[1,5],[6,0],[7,-3],[1,2],[4,-4],[1,-4],[-2,-2],[0,-8],[1,-4],[3,-1],[3,-6],[3,-2],[2,-4],[2,-7],[0,-6],[2,-5],[1,-4],[8,-5],[2,-4],[3,-6],[3,-1],[4,-6],[4,0],[1,-2],[2,-3],[1,-4],[3,-2],[1,-4],[3,-3],[4,-5],[4,-5],[3,-6],[2,-13],[1,-5],[0,-8],[1,-3],[1,-26],[1,-12],[3,-4],[6,-1],[6,-5],[12,5],[10,8],[5,5],[2,2],[0,-3],[1,-6],[1,-6],[3,-3],[2,-6],[-1,-5],[-1,-2],[0,-5],[-4,-8],[-2,0],[0,-2],[0,-4],[-1,-10],[-1,-6],[0,-8],[2,-11],[2,-5],[3,-3],[1,-2],[1,-3],[3,-3],[1,-2],[2,-4],[3,-3],[9,-20],[5,-10],[3,-11],[4,-6],[-3,-13],[-1,-16],[2,-14],[3,-21],[0,-14],[4,-11],[6,-4],[5,-4],[1,-5],[4,-2],[4,-1],[7,-7],[2,-4],[3,-3],[7,-3],[4,-2],[2,-3],[1,-8],[4,-3],[7,-3],[2,-3],[0,-4],[-2,-5],[-1,-8],[3,-13],[7,-17],[5,-10],[0,-11],[-1,-10],[0,-8],[4,-2],[0,-8],[-1,-7],[-3,-4],[1,-6],[-1,-11],[1,-6],[0,-13],[0,-9],[-2,-8],[-2,-2],[0,-6],[1,-12],[-1,-6],[-1,-6],[-2,-10],[-1,-7],[-3,-4],[-3,-10],[-5,-16],[-3,-4],[-3,-11],[-3,-2],[-2,-8],[-9,-8],[-3,-8],[-9,0],[-5,-6],[-13,-9],[-6,-9],[-5,-6],[-1,-8],[1,-6],[-5,-12],[-8,-2],[-12,-16],[-1,-12],[-5,-10],[-3,-6],[-4,-6],[-3,-1],[-7,0],[-4,-5],[-1,-4],[2,-5],[-11,-1],[-5,0],[-3,3],[-4,3],[-6,7],[-7,13],[-5,9],[-4,11],[-6,18],[0,6],[-3,12],[-2,4],[-2,18],[-1,16],[-12,90],[-2,39],[-2,17],[-3,5],[-2,6],[-7,23],[-2,9],[-3,8],[-2,11],[-9,31],[-3,6],[-8,31],[-13,24],[-14,16],[-33,30],[-15,13],[-20,31],[-29,63],[-17,41],[-10,19],[-5,6],[-3,1],[-1,8],[-3,6],[-11,23],[-6,9],[-9,16],[-6,8],[-2,8],[-7,12],[-12,15],[-6,10],[-9,10],[-10,10],[-15,22],[-15,15],[-45,48],[-1,3],[3,-1],[22,-22],[-5,9],[-10,11],[-9,9],[-4,2],[-5,7],[-3,11],[-10,18],[-5,7],[-7,2],[-8,14],[-7,18],[-2,21],[-6,20],[-1,6],[2,-3],[3,0],[-3,9],[-6,8],[-3,6],[-5,1],[0,-10],[3,-8],[-4,-13],[-7,2],[-3,5],[-4,-3],[-4,-2],[-6,2],[-5,2],[6,-11],[6,-7],[-6,-2],[-2,3],[-3,-2],[-3,-5],[-2,7],[-1,10],[1,7],[1,14],[-5,31],[-4,19],[-5,9],[-6,12],[-5,14],[-7,10],[-3,9],[1,2],[6,-9],[1,2],[0,4],[-6,8],[-5,11],[-4,11],[-2,9],[-1,10],[-2,13],[-3,11],[-4,5],[3,-17],[1,-16],[2,-13],[6,-11],[-2,-2],[-4,-6],[1,-3],[3,-7],[2,-2],[-3,-2],[-2,1],[-2,3],[-1,6],[-5,-11],[-3,9],[-5,30],[2,4],[2,5],[-1,5],[-1,7],[-5,-7],[0,-7],[1,-19],[0,-12],[2,-7],[-6,-1],[-4,6],[-3,7],[-1,8],[-1,11],[0,18],[0,6],[-2,4],[-2,1],[-2,1],[-2,10],[3,3],[5,9],[2,5],[-2,13],[-1,2],[-1,3],[0,5],[1,2],[4,5],[1,5],[-1,3],[-2,8],[-1,7],[0,5],[-2,5],[-2,-3],[-3,-9],[0,-10],[-2,-7],[-2,-8],[1,-11],[3,-11],[-3,-11],[-4,-10],[-3,1],[-1,11],[1,8],[1,15],[-2,4],[-1,2],[0,7],[1,3],[4,1],[1,5],[-2,6],[2,6],[3,12],[2,17],[-1,5],[2,9],[0,7],[-3,0],[0,3],[-3,4],[1,9],[1,6],[-1,9],[0,11],[2,16],[4,16],[5,15],[4,11],[2,9],[0,19],[1,32],[0,17],[-3,3],[0,7],[1,10],[3,6],[0,10],[0,4],[-3,2],[2,7],[7,6],[5,5],[-3,2],[-7,-1],[-3,-3],[-2,6],[3,3],[3,5],[0,11],[-1,22],[-1,12],[2,12],[0,20],[-2,35],[-1,18],[-2,4],[-2,-3],[0,-10],[1,-63],[-2,-26],[-1,-23],[-2,-3],[-1,6],[1,14],[1,34],[-1,78],[-1,33],[-7,20],[-2,24],[-6,19],[-5,39],[-5,23],[-6,12],[-6,15],[-7,8],[-8,-2],[-4,12],[-1,19],[-3,17],[-6,28],[-10,25],[-6,12],[-11,12],[-3,1],[-4,-3],[-2,-6],[-2,-6],[-5,-2],[-16,23],[0,2],[1,9],[-2,6],[-4,-5],[-4,-3],[-4,6],[-3,11],[-1,2],[-4,0],[-12,-1],[-4,2],[-11,29],[-7,9],[-9,11],[-5,8],[-7,10],[-9,17],[-11,17],[-14,15],[-1,7],[0,1],[0,2],[-1,3],[-1,2],[-1,1],[-5,-1],[-5,4],[-4,8],[-7,13],[-5,8],[1,8],[-1,10],[1,6],[0,6],[-2,4],[-3,11],[-3,9],[-5,11],[-3,5],[-3,8],[-3,10],[-2,6],[0,7],[1,7],[4,5],[2,3],[-3,2],[-2,0],[-4,-2],[-4,-3],[0,-7],[-1,-8],[-5,-1],[-3,-2],[2,-5],[-1,-4],[-3,-3],[-3,3],[-2,6],[-2,7],[0,9],[-2,3],[2,3],[5,1],[2,4],[4,5],[3,4],[3,7],[2,7],[4,5],[3,6],[1,11],[2,6],[0,31],[-2,10],[-4,9],[-5,3],[-4,-5],[-4,-13],[-1,-37],[-2,-17],[-8,-15],[-3,5],[-4,-7],[-1,-8],[0,-6],[-1,-4],[1,-5],[0,-7],[-1,-9],[-1,-4],[-4,-2],[-11,16],[-11,11],[-10,5],[-6,1],[-8,0],[-6,0],[-9,-7],[-4,-14],[-2,-9],[-5,-7],[0,-14],[-3,0],[-6,-8],[-6,2],[-11,10],[-8,26],[-17,18],[-2,8],[-1,9],[-5,19],[-10,35],[-7,17],[-10,11],[-7,10],[-9,5],[-14,3],[-4,-2],[1,-8],[-3,-3],[-3,-2],[-3,3],[-13,24],[-4,20],[-5,14],[-9,18],[-9,11],[-9,9],[-8,2],[-8,6],[-10,-2],[-4,-2],[-2,-12],[-7,12],[-8,12],[-13,10],[-7,-10],[-4,6],[2,7],[0,6],[0,6],[-4,3],[-6,5],[-3,-3],[-3,12],[0,26],[1,26],[-2,22],[-5,26],[-6,12],[-2,4],[-7,9],[-5,1],[-5,16],[-9,7],[-14,11],[-10,9],[-5,-1],[-4,16],[-1,3],[-4,10],[-1,3],[-3,16],[-7,11],[-7,6],[-2,-1],[-2,-8],[-3,4],[-1,5],[-4,8],[1,3],[4,-6],[2,1],[2,11],[-1,7],[-2,6],[-2,5],[-3,3],[-4,0],[-2,-4],[-1,-6],[-1,-8],[-3,3],[-6,4],[-2,14],[-3,10],[-6,4],[-4,2],[-4,-7],[-3,8],[-3,7],[-3,11],[0,12],[-3,9],[-1,8],[-1,8],[-1,2],[-8,15],[8,6],[4,-2],[5,-7],[2,-9],[14,-2],[12,6],[11,-4],[4,0],[6,-3],[2,-7],[6,-2],[9,3],[6,-2],[7,-3],[4,0],[1,-6],[3,-3],[5,-2],[6,0],[9,-5],[9,-3],[9,5],[12,3],[9,-8],[9,9],[9,6],[8,11],[3,6],[3,5],[5,8],[5,8],[3,4],[3,2],[2,0],[4,-1],[1,-2],[1,-5],[0,-5],[1,-11],[-1,-9],[-2,-10],[-1,-7],[-2,-6],[2,-9],[7,-17],[5,-5],[6,-12],[5,-6],[8,-3],[5,-7],[7,-6],[4,-7],[3,-9],[2,-4],[0,-6],[2,-3],[3,0],[-1,-6],[1,-5],[2,3],[3,4],[2,5],[1,4],[4,7],[3,7],[1,9],[-2,4],[-2,-3],[-1,4],[0,2],[-1,2],[-2,-2],[-2,0],[0,4],[1,2],[3,1],[3,2],[2,-2],[0,-4],[1,-3],[4,2],[2,-2],[1,-5],[2,-3],[5,-4],[7,-3],[4,1],[1,2],[2,6],[2,5],[1,6],[4,5],[1,8],[-1,5],[-3,5],[-3,1],[-1,3],[-4,4],[-3,1],[-2,2],[0,4],[-2,3],[-1,-1],[-2,-3],[-3,0],[-3,-1],[-2,0],[-1,1],[-3,10],[-2,10],[-2,5],[-2,5],[-2,1],[-1,-2],[1,-5],[2,-9],[0,-7],[2,-3],[2,-5],[1,-7],[0,-4],[-3,0],[0,-3],[0,-4],[-1,0],[-2,3],[-3,0],[-2,-4],[-3,-4],[-4,-2],[-3,1],[-3,2],[-2,6],[-2,4],[0,7],[-1,8],[-2,6],[-3,5],[-3,9],[0,8],[0,8],[0,6],[2,4],[1,7],[5,11],[3,8],[1,7],[-1,2],[-3,1],[-1,1],[-1,2],[2,2],[2,2],[1,4],[-2,1],[-2,2],[-2,3],[-1,4],[1,4],[1,5],[-3,3],[-2,1],[-2,-3],[0,-5],[-2,-4],[-2,-2],[-2,-3],[-3,-3],[-3,1],[-5,-4],[-3,-7],[-2,-5],[-3,-3],[-3,8],[1,9],[1,8],[2,9],[3,5],[5,9],[2,7],[4,9],[2,3],[6,13],[8,24],[6,12],[4,2],[2,-16],[-1,-10],[-5,-7],[-3,-5],[-1,-5],[-1,-6],[4,-9],[2,-10],[0,-6],[7,-20],[3,18],[1,11],[-1,11],[-4,11],[-3,-2],[-1,3],[0,4],[4,5],[4,-4],[5,-9],[2,-8],[4,7],[4,12],[1,6],[-3,0],[-3,3],[-3,7],[-5,1],[-4,-1],[0,10],[0,16],[-1,8],[-2,5],[0,3],[2,5],[4,13],[3,12],[3,10],[3,8],[-1,3],[-1,7],[-1,9],[-3,5],[-3,0],[-2,-5],[-3,2],[-2,5],[-3,3],[2,8],[2,10],[4,13],[5,21],[5,36],[3,17],[2,15],[-2,9],[-4,4],[-2,4],[1,10],[0,8],[-2,4],[-2,5],[-1,5],[-3,7],[-4,5],[-4,1],[-6,-1],[-3,3],[0,9],[1,12],[-1,14],[-2,13],[-2,6],[-3,3],[-7,-1],[-7,0],[-3,-4],[-7,3],[-1,8],[1,1],[0,6],[-1,7],[-7,4],[-4,14],[-9,2],[0,11],[-1,9],[-3,8],[0,11],[-3,10],[-6,-4],[-4,20],[1,12],[-4,11],[-5,-1],[-1,10],[-5,10],[-5,11],[-7,2],[-4,-2],[-2,-2],[-2,0],[-4,5],[-1,10],[-2,11],[-2,6],[-4,0],[-4,-9],[-4,19],[1,20],[-2,9],[-3,10],[-1,11],[-2,8],[-8,5],[-8,6],[-5,-10],[-4,12],[-2,15],[-2,6],[-1,14],[-1,7],[-3,3],[-9,1],[-12,22],[-6,16],[-8,17],[-13,26],[-13,28],[-37,24],[-23,6],[-12,36],[-15,24],[-24,16],[-14,23],[-8,14],[-7,4],[-6,-9],[-6,9],[-5,5],[-3,11],[-7,9],[-6,14],[-7,2],[-21,36],[0,12],[2,15],[1,17],[-1,12],[-2,11],[-1,17],[-6,13],[-2,9],[-4,7],[-5,4],[-13,1],[-1,7],[6,42],[2,32],[-2,18],[-1,4],[-2,8],[-1,5],[0,7],[2,19],[0,26],[-3,26],[-5,20],[-3,17],[-8,13],[-9,11],[-10,8],[-12,1],[8,13],[3,7],[1,8],[-2,9],[-4,9],[-5,8],[-4,3],[2,-9],[3,-7],[2,-7],[0,-10],[-3,-5],[-3,-1],[-1,5],[-4,5],[-2,-3],[-2,-6],[1,-5],[2,-2],[3,-7],[1,-13],[3,-17],[-7,0],[-2,19],[-4,29],[-6,23],[5,88],[-2,61],[-5,31],[0,11],[-3,7],[-11,3],[-13,23],[-6,1],[-7,19],[-5,13],[-2,8],[-7,18],[-5,4],[-11,-6],[-8,1],[-1,20],[4,23],[2,36],[3,35],[-9,42],[-32,71],[-12,40],[-3,8],[-1,2],[-5,10],[-2,4],[-4,3],[-5,9],[-4,2],[-3,4],[-1,4],[-1,4],[-2,6],[-10,16],[-2,6],[-6,9],[-2,8],[1,6],[-1,0],[4,2],[7,0],[-6,12],[1,9],[1,10],[3,16],[-2,11],[-4,11],[-2,3],[-4,4],[-7,1],[-7,17],[-3,8],[12,-5],[8,-10],[5,-2],[5,6],[3,11],[3,11],[2,18],[1,12],[0,12],[-3,9],[-10,4],[-5,3],[-5,12],[-7,7],[-5,1],[-5,4],[0,15],[-1,18],[-3,7],[-10,1],[-10,5],[-7,15],[-3,13],[0,21],[-3,37],[-5,27],[-5,24],[-3,9],[-4,8],[-5,5],[-12,6],[-4,7],[-14,54],[-4,21],[-5,20],[-3,10],[-1,10],[0,11],[-1,13],[0,7],[0,4]],[[18118,61340],[14,0],[1,-2],[0,-4],[-1,-4],[-1,-3],[-2,-2],[-2,-1],[-1,0],[-10,-2],[-5,3],[0,7],[7,8]],[[19181,61603],[4,-3],[4,-8],[2,-11],[0,-10],[-3,-11],[-5,-1],[-6,1],[-5,-6],[-4,9],[-4,6],[-4,5],[-12,11],[0,4],[1,10],[3,14],[4,11],[10,20],[6,-5],[7,-10],[4,-13],[-2,-13]],[[19218,61928],[2,-4],[2,-5],[3,-11],[-7,-11],[-3,-6],[-1,-6],[0,-1],[-1,1],[-1,5],[0,6],[1,5],[4,13],[1,6],[0,8]],[[20493,63101],[0,-12],[-1,-10],[-2,2],[-3,-3],[-7,6],[-2,9],[5,11],[5,-1],[3,2],[1,-2],[1,-2]],[[20443,63193],[5,-1],[4,0],[0,-6],[3,-5],[0,-5],[-5,-5],[-1,-9],[-1,-7],[-4,2],[-8,7],[-4,1],[-4,7],[-6,2],[-3,10],[5,9],[4,6],[3,-1],[3,2],[3,-5],[6,-2]],[[20413,63260],[-1,-5],[1,-6],[0,-4],[-2,-2],[0,-4],[-2,-3],[-1,-4],[-1,-5],[-1,2],[-1,-1],[0,3],[1,4],[-2,4],[-2,1],[-11,8],[-11,14],[0,2],[1,3],[0,4],[-2,6],[-2,8],[-3,7],[-1,4],[2,3],[0,6],[0,6],[-3,6],[5,2],[6,-4],[6,1],[3,-4],[11,-10],[4,-6],[-1,-6],[0,-7],[3,-7],[2,-4],[2,-5],[1,-2],[1,-2],[-2,-3]],[[20371,63366],[0,-4],[2,-2],[0,-7],[-2,-4],[2,-5],[-6,-7],[-3,11],[1,9],[2,8],[2,-2],[2,3]],[[19490,64816],[3,-9],[4,-16],[1,-7],[2,-9],[-1,-11],[-3,2],[-5,2],[-9,2],[-3,3],[1,4],[-4,10],[-4,14],[-4,21],[-3,19],[1,5],[1,5],[-5,24],[1,21],[0,9],[2,-1],[2,-7],[0,-8],[3,-8],[2,-5],[2,-6],[3,-13],[3,-13],[4,-8],[4,-17],[2,-3]],[[19010,64907],[7,-3],[8,-6],[12,-16],[1,-4],[-20,17],[-7,2],[-10,2],[-12,-6],[-7,-2],[-3,4],[3,6],[2,4],[3,-2],[5,1],[8,2],[5,-1],[5,2]],[[18957,64948],[8,-31],[5,-9],[3,1],[1,-5],[-2,-9],[2,-6],[-2,-10],[-3,-8],[1,-11],[-9,23],[-5,11],[-14,19],[-10,17],[-8,13],[-10,11],[-2,4],[-3,2],[-4,9],[-10,9],[-7,5],[-1,4],[5,8],[5,-5],[3,0],[15,0],[7,-1],[4,2],[4,-6],[4,1],[0,-7],[2,-8],[2,-4],[1,-7],[6,-2],[6,-2],[6,-8]],[[19354,64988],[3,-6],[3,-1],[0,-9],[2,-7],[2,-4],[-1,-7],[-4,-1],[-2,-6],[2,-8],[-3,-4],[-1,-5],[-1,-10],[-6,1],[-1,5],[-1,4],[1,7],[-1,3],[-3,1],[-2,-4],[0,6],[-1,4],[5,4],[-1,3],[-2,1],[0,3],[-3,2],[-2,3],[-1,5],[-1,10],[2,4],[-3,4],[0,4],[4,3],[2,4],[-3,-1],[-3,4],[1,6],[-3,-1],[-1,4],[1,5],[-2,2],[-1,4],[4,7],[1,6],[3,-3],[2,-7],[1,-4],[3,-6],[1,-6],[-1,-9],[5,-1],[6,-9]],[[19247,65331],[0,5],[1,1],[1,-1],[2,-5],[3,-17],[5,-8],[7,-2],[8,-4],[6,-5],[0,-4],[2,-3],[3,-4],[-1,-5],[2,-5],[1,-10],[-1,-15],[3,-12],[2,-6],[1,-8],[4,-13],[2,-6],[-2,-2],[-5,-2],[-3,0],[-3,-1],[-2,-5],[-1,2],[1,3],[2,5],[0,4],[-3,3],[-3,5],[-4,4],[0,2],[-3,4],[-3,-1],[-3,-1],[0,4],[1,4],[-2,9],[-3,2],[-1,10],[0,5],[-2,5],[-2,5],[0,5],[0,9],[-2,5],[-4,0],[-3,6],[-2,-1],[-1,7],[0,8],[1,5],[0,7],[1,12]],[[18860,65048],[2,-6],[5,-13],[2,0],[0,-6],[2,-4],[2,-8],[-1,-8],[-2,1],[-7,5],[-3,5],[1,3],[-2,12],[-2,9],[-4,7],[-2,4],[-3,0],[-4,15],[-3,2],[-1,4],[2,4],[0,6],[2,1],[2,-1],[2,0],[2,6],[1,10],[-1,10],[-2,10],[-3,7],[-3,7],[-2,5],[-4,6],[-5,5],[-2,2],[-3,2],[-3,0],[-3,0],[-1,-1],[-2,-2],[-1,-4],[0,-4],[1,-11],[0,-1],[-3,5],[-1,9],[-9,11],[1,6],[0,3],[0,1],[3,2],[4,16],[5,27],[14,78],[5,27],[7,56],[6,42],[0,16],[1,6],[4,0],[1,-26],[-2,-12],[-4,-23],[-4,-13],[-3,-39],[-3,-17],[2,-9],[1,-6],[0,-8],[1,-6],[1,-5],[0,-8],[-3,-3],[-2,3],[-2,-8],[-1,-5],[1,-18],[-3,-4],[2,-15],[2,-6],[2,-5],[-2,-3],[-4,0],[-2,0],[-1,-3],[0,-4],[-2,-4],[1,-5],[1,-9],[0,-4],[3,-4],[3,-3],[1,-4],[1,-2],[2,-1],[0,-1],[-2,-1],[1,-1],[3,-8],[1,-9],[6,-13],[2,-6],[0,-7],[0,-4],[1,-2],[1,1],[3,-11],[-3,-9],[-2,-4],[-2,-5],[-1,-5],[1,-4],[1,-6],[9,-10]],[[19769,65528],[3,-4],[6,-16],[3,-5],[-5,-6],[-9,8],[-10,12],[-7,7],[-2,0],[-3,2],[-2,2],[-2,0],[-17,0],[-4,3],[-2,9],[32,-1],[5,-2],[14,-9]],[[19232,65627],[-6,6],[-6,24],[1,18],[3,12],[3,9],[2,1],[1,-10],[3,-1],[-2,-11],[2,-16],[2,-30],[-3,-2]],[[19144,65866],[3,-1],[0,-6],[1,-2],[0,-6],[0,-4],[-2,3],[-2,1],[-2,6],[-2,1],[-2,7],[-3,0],[-2,-2],[0,-4],[0,-6],[-3,-8],[-3,-6],[-3,-11],[-6,-12],[-2,-6],[1,-3],[-1,-10],[0,-9],[-2,-5],[-2,-1],[-2,-6],[0,-12],[1,-9],[-1,-4],[-3,7],[-2,1],[-3,4],[1,4],[-1,7],[0,5],[4,12],[0,8],[2,19],[0,7],[3,8],[1,7],[2,9],[4,5],[1,6],[0,9],[1,12],[-2,7],[0,5],[4,1],[7,5],[0,6],[2,3],[2,-5],[5,-4],[6,4],[2,5],[5,2],[-4,-11],[-3,-15],[0,-18]],[[19432,66511],[2,1],[5,-3],[9,-8],[8,-11],[5,-18],[-2,0],[-6,17],[-6,8],[-8,8],[-5,2],[-2,4]],[[19276,66648],[0,24],[0,14],[2,14],[2,6],[-2,-23],[1,-27],[5,-11],[13,-8],[-1,-9],[-15,11],[-5,9]],[[18001,67254],[3,-16],[3,-3],[0,-6],[2,-8],[1,-15],[-3,-15],[1,-13],[3,-12],[1,-13],[-1,-12],[1,-6],[-2,-7],[-3,-3],[-1,-4],[-2,-6],[1,-7],[-2,-5],[2,-10],[-2,-8],[3,-9],[-1,-4],[0,-4],[-2,2],[-2,2],[-3,2],[-3,-4],[-3,-2],[-2,5],[-3,-1],[-2,4],[-2,17],[-5,10],[-7,5],[-5,-5],[-4,-1],[-3,-8],[-3,7],[2,20],[5,5],[16,38],[10,26],[-5,18],[-2,21],[2,17],[2,18],[4,7],[6,5],[6,-11],[-1,-11]],[[18640,67453],[10,-3],[15,-21],[4,-8],[2,-4],[1,-4],[5,-4],[1,-5],[2,-2],[-3,-6],[-3,-3],[-2,3],[-1,3],[-2,0],[-2,14],[-3,5],[-6,4],[-3,9],[-7,2],[0,4],[-1,3],[-2,5],[-2,4],[-3,4]],[[18718,67481],[4,2],[2,2],[6,-2],[4,3],[2,-3],[1,-6],[1,-4],[-1,-6],[0,-9],[-2,-8],[-5,-2],[-6,2],[-3,-2],[1,5],[-3,16],[-1,12]],[[18812,67507],[-4,-3],[-5,-10],[-5,9],[-5,2],[-4,-4],[-2,8],[-4,1],[-5,11],[-4,5],[-4,-2],[-2,3],[-6,-1],[-3,3],[0,8],[-7,2],[-1,6],[-7,7],[-8,8],[-3,6],[-3,0],[-3,4],[7,10],[9,10],[4,11],[2,3],[1,5],[1,6],[1,5],[2,7],[-1,6],[-3,5],[-1,25],[1,26],[2,25],[3,22],[2,8],[3,8],[3,7],[4,5],[4,-8],[6,0],[6,9],[5,8],[5,2],[8,-1],[4,2],[4,6],[2,5],[4,3],[-1,-5],[-4,-8],[2,-9],[3,-7],[0,-3],[-1,-5],[0,-5],[-1,-6],[1,-8],[-1,-9],[10,-24],[11,-44],[-5,-21],[0,-19],[-4,-30],[-4,-9],[2,-7],[-5,-12],[-1,-11],[-4,-9],[-1,-10],[1,-13],[3,-2],[2,-7],[-2,-3],[-4,3]],[[18573,67682],[3,-2],[2,-3],[5,-2],[-4,-16],[0,-7],[0,-17],[-2,1],[-4,8],[-3,2],[-3,8],[-9,7],[-2,11],[-5,5],[-4,2],[-4,6],[-2,7],[-2,4],[-1,9],[-4,8],[-4,10],[-3,7],[-3,1],[-2,5],[-4,3],[-5,6],[-3,10],[-7,6],[-5,8],[-7,19],[1,5],[-2,9],[-4,8],[-4,-1],[-5,0],[-4,4],[-2,7],[0,11],[-2,6],[-4,5],[-2,9],[-2,3],[-1,7],[-4,7],[-1,5],[-3,6],[-5,7],[-1,15],[1,13],[5,13],[2,18],[-1,9],[-1,10],[3,2],[1,-3],[2,-3],[4,3],[3,3],[0,4],[4,-1],[0,-7],[3,-1],[6,-2],[4,-8],[9,-15],[3,-16],[7,-4],[0,-5],[3,-5],[0,-4],[3,-8],[4,-12],[-1,-5],[4,-6],[-3,-6],[-4,-7],[-1,-10],[1,-6],[1,-15],[7,-8],[11,-3],[2,-6],[4,0],[2,5],[4,0],[2,-2],[5,2],[5,0],[4,-2],[6,2],[4,-8],[-3,-9],[1,-13],[1,-7],[0,-12],[0,-7],[2,-3],[-2,-6],[0,-13],[0,-17],[1,-5],[3,-12],[1,-4],[-1,-6],[3,-10],[3,-1]],[[18115,69304],[8,-3],[13,-20],[11,-26],[5,-18],[-4,0],[-3,3],[-3,4],[-2,5],[-6,-9],[-13,12],[-10,24],[4,28]],[[25741,61445],[1,5],[1,5],[2,5],[2,5],[-5,-20],[2,-26],[-4,-20],[-11,-31],[-1,0],[1,4],[4,12],[3,8],[2,5],[1,15],[2,33]],[[25758,61567],[4,-9],[2,-28],[0,-15],[-4,-13],[1,17],[-3,48]],[[24555,61587],[13,11],[4,1],[2,-4],[1,-5],[1,-6],[0,-9],[-1,2],[-1,2],[-6,-8],[-3,-3],[-4,-1],[1,4],[2,4],[2,2],[3,2],[-6,-1],[-9,-8],[-4,1],[-11,-31],[-8,-14],[-10,-4],[6,21],[-15,-18],[-8,-8],[-9,-3],[-5,0],[-2,1],[1,4],[4,9],[3,4],[13,11],[7,3],[15,17],[11,14],[13,10]],[[25903,62665],[0,2],[2,0],[1,-2],[1,-4],[-1,-2],[-3,-9],[-10,-34],[-4,-19],[-4,-10],[-9,-14],[-3,-10],[-7,-26],[-1,-11],[-1,-3],[-3,-3],[-3,-4],[-1,-6],[-1,-4],[-3,-6],[-14,-27],[-5,-5],[-2,6],[0,12],[-4,25],[-1,13],[1,25],[3,23],[11,42],[9,24],[2,2],[4,8],[2,2],[3,0],[1,-1],[2,-2],[1,-1],[3,-1],[7,-6],[2,-1],[4,2],[6,7],[4,-1],[5,3],[4,7],[2,9]],[[25916,63024],[-5,8],[-6,18],[-2,18],[2,9],[1,-13],[3,-14],[7,-26]],[[22874,63373],[11,-14],[3,-8],[-2,-6],[-8,2],[-7,20],[-4,27],[-2,23],[4,-8],[2,-12],[1,-13],[2,-11]],[[22829,63925],[5,25],[2,7],[1,-11],[-3,-19],[-6,-17],[-7,-6],[2,7],[4,9],[2,5]],[[17152,67697],[6,-17],[3,-27],[-3,-11],[3,-22],[-2,-26],[-7,-18],[-5,0],[-3,-4],[-2,0],[0,-6],[-3,5],[1,7],[3,2],[-2,14],[-2,9],[1,10],[-1,12],[-5,8],[4,10],[-3,16],[-3,9],[-3,6],[-6,10],[0,9],[-2,9],[-1,10],[1,10],[2,10],[6,9],[7,4],[4,9],[6,2],[5,-5],[-4,-9],[-4,-8],[0,-9],[2,-12],[3,-11],[4,-5]],[[18543,66296],[4,5],[3,-1],[2,-2],[3,-3],[-1,-3],[3,-2],[1,2],[1,2],[2,1],[1,-1],[4,-9],[4,-13],[2,-6],[1,-5],[-3,0],[-2,4],[-3,3],[-7,6],[-9,5],[-7,4],[-3,2],[-2,2],[2,5],[4,4]],[[25093,63718],[-6,6],[-2,4],[1,7],[-2,11],[1,4],[4,3],[6,10],[1,15],[-5,12],[-4,9],[-1,12],[-7,8],[-7,5],[-5,-4],[-1,-8],[-3,2],[1,8],[3,8],[3,10],[5,4],[10,-10],[10,-15],[9,-26],[4,-22],[-3,-30],[-4,-18],[-4,-7],[-4,2]],[[19281,65176],[4,4],[1,3],[1,-2],[0,-7],[0,-2],[1,-3],[0,-4],[-2,1],[0,4],[-1,0],[-2,-1],[-2,5],[0,2]],[[17846,65248],[0,-1],[0,1]],[[19246,65456],[2,0],[3,1],[1,3],[1,-2],[-2,-4],[-2,-8],[-1,-10],[-2,-4],[-2,-3],[-2,0],[0,4],[-2,7],[1,6],[5,10]],[[18859,65562],[1,3],[1,-2],[0,-8],[1,-10],[-1,-15],[0,-11],[-2,-12],[-1,-17],[2,-12],[-1,-10],[-2,-7],[-1,-8],[0,-10],[-1,-1],[-3,4],[-2,5],[1,9],[3,9],[2,20],[1,25],[2,23],[1,11],[-1,14]],[[19150,65690],[0,4],[4,0],[0,3],[2,1],[2,-6],[2,-4],[1,-2],[2,-9],[-1,-6],[-2,-5],[-1,-5],[-2,1],[-3,7],[-1,3],[1,5],[-2,9],[-2,4]],[[19095,65756],[1,-1],[0,-5],[2,-2],[-1,-2],[1,-3],[1,-2],[-1,-2],[0,-4],[1,-3],[0,-3],[-1,-1],[-2,5],[-1,5],[0,6],[0,6],[-1,5],[1,1]],[[19087,65942],[3,6],[2,0],[1,-1],[1,-5],[-1,-5],[-1,-2],[2,-2],[-1,-4],[-3,0],[-2,0],[-1,-1],[1,2],[1,3],[0,2],[-2,3],[0,4]],[[18862,66592],[-4,8],[6,13],[7,-11],[5,-14],[-2,-14],[-4,-9],[-6,3],[-1,12],[-1,12]],[[18919,66714],[-4,5],[1,7],[6,2],[5,-4],[2,-5],[-1,-5],[-6,-1],[-3,1]],[[17999,66988],[2,-1],[3,-5],[4,-5],[2,-3],[1,-5],[-1,-5],[-3,-2],[-1,1],[-1,11],[-3,7],[-5,2],[-3,3],[1,4],[4,-2]],[[19059,67033],[-2,6],[2,6],[4,-12],[2,-9],[-5,2],[-1,7]],[[17890,67240],[2,-5],[2,3],[4,-1],[1,-3],[-3,0],[-1,-4],[-4,-2],[-3,4],[0,3],[0,4],[2,1]],[[18467,67700],[2,0],[2,-2],[0,-2],[-1,-3],[0,-2],[1,-3],[-1,-2],[0,-5],[2,-4],[0,-3],[1,-1],[0,-4],[1,-2],[0,-2],[-2,0],[-2,2],[1,3],[-1,3],[-2,2],[1,3],[0,2],[-1,1],[0,4],[0,4],[-2,2],[0,4],[-2,4],[3,1]],[[18217,68228],[5,0],[0,-10],[1,-5],[-3,-1],[-4,4],[2,6],[-1,6]],[[17746,68530],[1,-1],[2,-4],[0,-3],[-3,0],[-3,1],[0,4],[3,3]],[[17429,69670],[2,-2],[1,-2],[1,-6],[0,-4],[0,-5],[-1,0],[-1,6],[0,5],[-1,2],[-1,6]],[[25471,61415],[0,-3],[5,-8],[-6,-15],[-21,-31],[-2,-9],[3,-9],[4,-1],[13,13],[-1,-9],[-3,-9],[-6,-17],[-2,-5],[1,-3],[2,1],[2,3],[5,11],[9,13],[5,5],[4,1],[7,-1],[8,-8],[3,-3],[6,2],[9,12],[9,6],[3,1],[2,-2],[-1,-9],[-1,-5],[-6,-9],[-6,-5],[-1,-3],[0,-6],[2,-2],[2,2],[2,7],[2,4],[3,2],[3,1],[1,-3],[2,-70],[-2,-54],[-1,-10],[-4,-14],[-1,-9],[-10,-54],[-5,-7],[-12,-46],[2,-16],[-3,-49],[-7,-49],[-2,-10],[-7,-17],[-3,-11],[-2,-13],[2,-14],[3,-7],[10,-11],[2,-8],[3,-5],[11,-5],[3,-4],[-4,-12],[-7,0],[-7,2],[-3,-5],[-1,-9],[-4,-29],[-7,-50],[-3,-60],[0,-12],[-1,-23],[2,-13],[1,-11],[0,-1],[0,-6],[2,-13],[1,-8],[2,-3],[6,-4],[4,-9],[2,-11],[1,-13],[1,-19],[2,-14],[-1,-7],[-2,-2],[-2,1],[-3,-2],[-3,-6],[-4,-9],[-3,-11],[-1,-9],[1,-11],[5,-17],[1,-11],[1,0],[1,-1],[1,-3],[-1,-3],[-1,-1],[-3,1],[-2,0],[-3,-6],[-2,-4],[0,-5],[-1,-3],[-1,-3],[-1,-4],[-1,-6],[0,-7],[1,-9],[1,-6],[-3,-42],[-1,-7],[-3,-5],[-3,-7],[-3,-25],[-1,-7],[-1,-10],[2,-15],[-2,-6],[-2,-5],[-1,0],[-1,9],[8,67],[5,10],[2,6],[-7,-7],[-8,-39],[-6,-15],[2,0],[4,-4],[-2,-2],[-2,-1],[-1,1],[-3,2],[1,-5],[0,-3],[2,0],[3,0],[0,-4],[-3,-4],[-2,-6],[-1,-7],[1,-3],[1,-4],[-5,-9],[-6,-23],[-5,-5],[-1,-3],[0,-14],[0,-3],[-2,-2],[-1,0],[-1,1],[0,1],[-2,-3],[0,-1],[-1,-1],[-1,-3],[-3,-18],[-2,-3],[-2,-2],[-7,-20],[-1,-3],[-1,-8],[-1,-3],[0,-2],[0,-5],[0,-1],[-1,-1],[-2,1],[-1,0],[-1,-2],[-3,-1],[-1,-2],[-1,-2],[-1,-9],[0,24],[-2,0],[-2,-13],[-4,-2],[-4,5],[-2,8],[-1,3],[-2,1],[-2,-1],[-1,-1],[-1,-2],[0,-10],[0,-4],[-2,-2],[-10,-2],[-1,-3],[-2,-2],[-2,-3],[-3,-1],[-4,-4],[-1,-9],[0,-23],[-1,-12],[-2,-9],[-4,-6],[-5,-2],[-2,-1],[-1,-4],[-2,-4],[-1,-11],[-2,-3],[-2,-2],[-3,-3],[-3,-5],[-1,-3],[-1,-4],[-1,-7],[0,-6],[-1,-5],[-7,-5],[-5,-5],[-4,-8],[-3,-8],[-1,-15],[5,-25],[-1,-14]],[[25600,60767],[4,7],[3,-11],[5,-28],[-2,-5],[0,-6],[0,-14],[-2,0],[0,7],[0,2],[-2,-1],[-1,-2],[0,-2],[-1,-4],[0,36],[-1,15],[-3,6]],[[25603,60860],[3,0],[4,-2],[4,-6],[2,-11],[-2,-9],[-5,-24],[-4,-10],[-3,-10],[-4,-5],[-5,9],[-3,-10],[-4,-6],[-3,-7],[-2,-14],[-2,-27],[0,-4],[-2,-6],[-1,-7],[0,-9],[-4,8],[1,2],[0,2],[0,2],[1,3],[0,12],[3,21],[1,28],[2,10],[4,7],[5,7],[6,12],[2,0],[4,-3],[4,-1],[3,5],[2,12],[0,12],[-2,8],[-3,-6],[-3,-3],[-2,1],[0,3],[3,16]],[[25534,60917],[4,-6],[2,-15],[3,-31],[-2,0],[-1,6],[-3,14],[-3,32]],[[25511,60942],[6,5],[15,22],[4,3],[-3,-19],[-6,-12],[-9,-6],[-9,-1],[0,2],[0,2],[2,4]],[[25579,61145],[2,0],[-2,-26],[-6,-23],[-8,-18],[-12,-6],[0,4],[3,0],[1,0],[10,15],[3,10],[2,15],[-5,0],[2,18],[5,37],[0,3],[2,2],[1,3],[0,4],[1,6],[4,31],[2,6],[5,-4],[6,8],[3,-8],[-1,-13],[-3,-7],[-2,-7],[-6,-32],[-3,-10],[-2,2],[-2,2],[0,-6],[-1,-5],[-2,-3],[-2,-2],[0,-4],[2,-9],[2,8],[1,4],[0,5]],[[25529,60844],[5,-8],[2,-8],[0,-6],[-1,-3],[0,-3],[-1,-6],[-2,1],[-1,5],[0,12],[0,3],[-3,-1],[-2,2],[-2,4],[0,3],[-1,2],[0,4],[2,2],[4,-3]],[[25564,61183],[1,2],[1,-2],[0,-6],[-3,-4],[-3,-1],[0,3],[2,6],[1,2],[1,0]],[[25572,61200],[1,-3],[0,-6],[-2,-6],[-2,-4],[-1,1],[0,3],[-1,2],[1,2],[1,2],[2,2],[0,4],[1,2],[0,1]],[[25589,61253],[1,-1],[0,-3],[0,-3],[-1,-6],[-3,-6],[-1,2],[1,10],[1,4],[1,-1],[0,1],[-1,2],[0,1],[1,0],[1,0]],[[27063,56141],[3,-4],[27,-45],[16,-35],[10,-12],[8,11],[-1,-10],[-1,-8],[-8,-28],[0,-7],[0,-8],[3,-5],[3,-5],[2,-4],[0,-7],[-4,-6],[-7,1],[0,-7],[-2,-4],[1,-3],[1,-1],[2,0],[2,-4],[3,-7],[1,-8],[1,-7],[2,-6],[10,-13],[1,0],[2,7],[4,1],[1,2],[-3,11],[4,-2],[1,-6],[1,-7],[2,-6],[3,-1],[2,2],[1,7],[0,9],[2,0],[0,-8],[2,-4],[2,0],[1,2],[0,7],[1,5],[1,2],[2,-4],[0,2],[0,1],[1,1],[1,0],[0,-5],[1,-5],[1,-3],[2,-3],[2,0],[0,4],[2,0],[-1,-9],[0,-16],[-1,-7],[-9,11],[-4,3],[-7,1],[-3,-4],[-1,-11],[1,-11],[2,-6],[0,-4],[-2,1],[-4,3],[1,-9],[7,-7],[2,-6],[-2,-39],[-2,1],[-1,1],[-1,2],[4,-10],[7,-6],[7,-2],[5,6],[10,-7],[3,-4],[0,-5],[4,-14],[2,-3],[0,-2],[1,-4],[1,-2],[1,0],[3,0],[5,0],[13,8],[7,1],[3,-3],[3,-4],[4,-2],[5,2],[4,5],[2,7],[-1,7],[3,2],[3,1],[4,-3],[0,-3],[3,-4],[3,-3],[1,3],[3,2],[16,-16],[5,5],[2,10],[-1,24],[-19,23],[-10,30],[-2,6],[-4,3],[-5,8],[-5,8],[-1,6],[5,-1],[7,-3],[6,-2],[3,8],[-9,9],[-4,6],[2,7],[6,0],[4,-8],[7,-16],[6,-11],[1,-2],[0,-5],[-2,-2],[-3,1],[-2,2],[0,-4],[2,-6],[2,-5],[2,-9],[2,-1],[3,0],[7,-2],[4,-1],[7,-16],[4,-2],[4,-20],[2,-3],[4,-6],[16,-50],[12,-25],[5,-8],[2,-5],[3,-7],[3,-6],[2,-3],[3,-1],[5,-3],[3,0],[5,3],[15,-6],[3,2],[8,0],[6,-9],[15,-2],[11,5],[15,1],[10,3],[13,3],[11,4],[3,-2],[2,1],[3,4],[2,5],[22,16],[21,18],[5,4],[10,-1],[6,4],[3,7],[2,6],[6,16],[3,8],[3,4],[1,2],[1,4],[1,4],[2,2],[5,10],[6,6],[10,13],[4,4],[5,9],[16,17],[20,18],[27,19],[32,5],[4,3],[10,11],[2,3],[10,2],[10,6],[9,8],[8,9],[10,24],[11,20],[7,14],[1,7],[5,19],[7,6],[2,-1],[1,-5],[0,-22],[0,-6],[2,-4],[2,-3],[3,-1],[3,3],[2,11],[0,12],[2,6],[5,-8],[0,5],[-1,10],[-1,5],[1,-1],[1,-3],[2,4],[-3,10],[2,6],[3,-3],[6,1],[6,-6],[5,-18],[2,-7],[-1,13],[-2,10],[0,8],[3,10],[4,8],[8,7],[5,6],[1,2],[0,4],[1,2],[1,1],[2,7],[2,3],[4,6],[2,15],[2,15],[5,4],[2,4],[-1,3],[-3,-2],[-3,-2],[-1,4],[2,2],[1,3],[2,6],[4,4],[3,5],[2,6],[5,3],[5,-1],[5,3],[7,7],[5,-3],[2,-7],[1,-5],[0,-5],[-3,-3],[0,-4],[3,-2],[0,-2],[1,-4],[1,2],[1,1],[1,2],[1,3],[2,0],[2,-3],[2,-2],[5,-3],[1,5],[1,11],[2,-6],[2,-2],[2,1],[2,3],[10,-6],[16,-3],[18,-11],[9,-6],[12,-4],[6,6],[5,3],[6,-1],[5,-1],[5,3],[5,3],[9,2],[10,3],[11,2],[4,-5],[0,-6],[-5,-6],[-3,2],[-3,-5],[-3,0],[-8,-2],[-5,-2],[-3,-11],[1,-14],[1,-19],[5,-4],[5,3],[2,-3],[4,1],[4,1],[3,1],[3,-1],[3,0],[5,-4],[3,-2],[3,-5],[2,-3],[1,-5],[2,1],[4,0],[2,0],[3,-1],[3,1],[2,5],[3,1],[5,-2],[8,3],[2,6],[5,-2],[3,1],[3,2],[4,4],[3,-8],[4,-4],[4,1],[9,-6],[6,2],[4,-6],[4,-2],[4,4],[3,5],[5,4],[4,-2],[6,-8],[4,-3],[9,0],[4,-7],[3,3],[4,-3],[3,-6],[4,-6],[7,-7],[3,-4],[4,-2],[7,-4],[6,-6],[4,-7],[4,-4],[3,-3],[3,0],[3,-2],[4,-5],[4,-5],[5,-6],[5,-2],[4,1],[3,-2],[3,-4],[4,-1],[5,-7],[2,-7],[8,-4],[8,-2],[6,-4],[3,-6],[1,-8],[6,-13],[4,-2],[5,-4],[9,-23],[5,-15],[3,-11],[5,-13],[9,-13],[-1,8],[-2,7],[-3,14],[0,9],[5,-5],[3,-14],[3,-6],[7,-11],[1,-13],[3,-7],[4,-4],[4,-8],[1,-7],[2,-6],[3,-6],[1,-5],[-3,-11],[6,-13],[4,-18],[3,-7],[2,5],[1,-1],[1,-8],[5,-7],[6,-11],[6,-16],[5,-5],[-1,5],[-2,4],[-2,4],[0,6],[1,2],[3,-5],[3,-8],[1,-4],[8,-13],[-1,-11],[5,-9],[2,10],[3,-1],[2,-10],[-1,-10],[0,-9],[-1,-6],[3,-7],[9,-13],[6,-7],[9,-3],[9,1],[5,7],[1,-3],[2,-2],[1,-2],[2,-1]],[[28362,54754],[0,1],[-6,3],[-8,16],[-12,31],[-5,7],[-2,5],[-1,7],[1,6],[1,6],[0,6],[-1,6],[-2,3],[0,-1],[-1,-3],[-1,-1],[-2,2],[-1,4],[1,3],[1,-1],[-3,11],[-2,2],[-2,-4],[-2,0],[-7,16],[-4,8],[-4,4],[0,2],[-1,6],[-1,6],[-3,2],[-2,3],[-1,6],[-2,12],[-2,0],[-1,-9],[-1,6],[0,20],[-1,11],[-3,2],[-3,-4],[-1,-11],[-1,8],[0,5],[1,6],[0,6],[-1,6],[-1,4],[-3,6],[-6,16],[-4,7],[-5,1],[0,7],[-1,5],[-2,3],[-3,2],[3,11],[1,8],[0,8],[-2,10],[-9,27],[-1,7],[-2,19],[-6,16],[-7,14],[-6,13],[-3,19],[-2,19],[-1,7],[1,7],[0,5],[-5,20],[-1,7],[1,11],[4,11],[3,4],[3,-19],[4,-4],[5,1],[3,6],[8,-9],[10,12],[10,22],[4,22],[0,12],[-2,7],[-2,5],[-4,6],[-8,20],[-3,4],[0,5],[8,-2],[2,1],[4,4],[0,5],[-2,1],[-1,2],[0,2],[-1,3],[2,2],[2,6],[2,-3],[3,-7],[2,-2],[2,-2],[3,1],[4,1],[0,2],[3,10],[1,2],[0,16],[0,6],[1,1],[5,11],[1,6],[1,5],[0,12],[1,3],[3,3],[2,0],[1,-2],[2,-22],[0,-5],[3,-5],[5,-5],[5,-4],[4,-2],[3,-4],[2,-9],[5,-28],[3,-8],[3,-5],[5,-2],[1,1],[3,2],[3,-1],[2,-8],[2,-3],[2,-3],[3,-1],[4,0],[0,4],[-5,2],[-4,5],[-3,6],[-2,8],[14,-6],[8,-6],[4,-11],[7,-8],[2,-4],[0,-9],[1,-6],[1,-4],[3,-3],[3,3],[3,-3],[3,-8],[1,-10],[2,-7],[4,-2],[4,2],[3,9],[-8,-1],[-10,27],[-5,-2],[-14,38],[-3,4],[-4,5],[-25,10],[-6,5],[-4,8],[-4,12],[-1,13],[-6,26],[-2,16],[5,9],[-3,4],[-4,6],[-3,7],[-2,7],[-1,10],[1,6],[1,4],[1,5],[0,7],[-2,2],[-3,1],[-3,6],[-1,6],[0,6],[-1,5],[-3,3],[1,-5],[0,-15],[1,-6],[4,-5],[2,-1],[0,-2],[-1,-19],[1,-5],[4,-19],[0,-7],[-1,-5],[-2,0],[-5,18],[-3,10],[-3,4],[-5,0],[-3,-5],[-3,-9],[-1,-12],[-1,-9],[-5,-7],[-5,-5],[-5,-1],[-2,2],[-1,4],[0,6],[0,4],[2,4],[8,8],[1,-2],[1,-1],[2,-1],[0,19],[-1,18],[-5,32],[-2,0],[-2,-8],[1,-6],[3,-4],[2,-6],[0,-11],[-3,-8],[-1,-7],[2,-7],[0,-4],[-1,-1],[-1,-1],[-2,-2],[-1,5],[-2,3],[-1,2],[-1,2],[-1,5],[0,1],[1,0],[1,2],[3,12],[0,5],[-4,4],[1,-8],[-1,-3],[-1,-2],[-2,-4],[-3,-16],[-5,-1],[-2,6],[-3,20],[-2,-5],[0,-7],[-4,-12],[-5,-11],[-4,-2],[-3,10],[-2,35],[-3,12],[2,4],[0,4],[-2,0],[0,-4],[-2,0],[0,12],[-1,0],[-1,-15],[5,-29],[2,-28],[6,-9],[1,-10],[-8,-35],[-1,5],[-2,3],[-2,2],[-1,0],[-1,2],[-7,17],[-3,4],[2,7],[-1,11],[-1,10],[-2,8],[-2,-3],[-1,-4],[0,-4],[-1,-5],[-1,5],[-3,9],[-1,6],[0,9],[2,20],[-2,10],[-8,23],[-4,7],[5,0],[3,-2],[2,-1],[4,3],[-5,8],[-1,6],[0,21],[-17,10],[1,9],[1,3],[-2,0],[-1,-1],[-1,-3],[-2,3],[-3,0],[-2,-2],[-2,-1],[-2,3],[-2,7],[-2,14],[4,7],[1,11],[0,12],[-2,11],[-2,0],[0,-9],[1,-13],[0,-8],[-4,1],[-5,-10],[-8,23],[-8,0],[-6,7],[-5,25],[-4,8],[0,4],[2,0],[0,4],[-5,3],[-2,6],[-2,6],[-3,6],[2,-10],[1,-8],[-2,-6],[-5,-5],[-4,-1],[-3,2],[-5,14],[-2,9],[-1,12],[-2,9],[-36,41],[-15,6],[-7,11],[-1,3],[0,6],[0,3],[2,4],[0,5],[0,12],[0,11],[-2,6],[-6,1],[0,5],[6,1],[5,5],[3,8],[2,10],[1,0],[3,-8],[3,0],[4,8],[6,4],[2,3],[2,6],[-2,-2],[-4,-1],[-2,-1],[-2,-4],[-4,-8],[-1,-1],[-2,1],[-1,4],[-1,3],[-2,0],[-2,-3],[-3,-11],[-2,-2],[-1,-1],[-1,-3],[-1,-3],[-3,-1],[-2,0],[-2,-2],[-2,-2],[0,-5],[1,-4],[4,-2],[3,-5],[1,-12],[-1,-8],[-3,-10],[-4,-7],[-4,2],[-2,2],[-7,4],[0,3],[-1,4],[-2,2],[-1,-7],[-4,-3],[-23,8],[-7,-3],[-2,0],[0,4],[-6,-4],[-16,3],[-6,-7],[-3,4],[-2,0],[-3,-3],[-5,-2],[-3,-2],[-3,-1],[-2,-1],[0,-3],[0,-3],[-1,-1],[-1,-2],[-8,-10],[-1,-6],[1,-5],[-1,-4],[-3,-1],[5,-18],[1,-7],[-4,6],[-4,9],[-4,11],[-1,11],[-2,0],[0,-4],[1,-2],[1,-3],[0,-3],[-2,0],[2,-15],[-1,-13],[-4,-6],[-7,5],[-12,-5],[-4,-4],[1,-7],[0,-4],[-3,2],[-2,3],[-2,1],[-3,-2],[0,2],[-1,1],[-2,1],[0,-4],[1,-2],[0,-3],[1,-3],[-5,1],[-5,-5],[-3,-8],[-3,-9],[-1,-11],[1,-35],[1,-4],[1,-1],[2,-2],[0,-2],[0,-3],[-1,-3],[-1,-4],[0,-4],[-1,-5],[-2,-5],[-1,-4],[-1,-2],[-4,-3],[-3,-2],[-1,-2],[1,-3],[-1,-2],[-5,-3],[-4,-4],[3,-8],[10,-4],[9,7],[8,9],[3,4],[1,3],[2,0],[0,-5],[-1,-5],[-10,-15],[-11,-21],[-5,-5],[-9,-6],[-11,-5],[-2,-6],[1,-7],[-1,-4],[-1,-2],[-1,-1],[-3,-2],[-1,-1],[-5,-8],[-2,-3],[-2,-1],[-2,-3],[-2,-11],[-2,-3],[0,-2],[-6,-11],[-20,-27],[-11,-15],[-12,-14],[-20,-21],[-8,-7],[-13,-4],[-3,1],[-3,2],[-2,1],[-2,-2],[-5,-5],[-2,-1],[-8,4],[-4,5],[-1,4],[1,3],[-3,-2],[0,-3],[1,-3],[-1,-4],[-6,-7],[-17,-37],[-2,-11],[1,-57],[-1,-6],[0,-2],[-2,-6],[4,-4],[2,-12],[2,-11],[2,-5],[4,-2],[11,-10],[3,-5],[10,-6],[5,-21],[4,-25],[4,-17],[27,-45],[17,-32],[25,-69],[13,-50],[3,-17],[0,-12],[-4,-22],[-2,-5],[-4,-2],[-7,-1],[-3,-1],[-19,-15],[-18,0],[-3,-4],[-3,3],[-8,4],[-2,5],[-2,0],[-3,-3],[-9,-5],[0,-4],[4,0],[3,2],[2,2],[3,3],[2,-3],[-20,-14],[-8,-12],[-1,-15],[5,-17],[-1,-5],[-7,-2],[-2,-2],[-2,-2],[-2,-4],[-1,-3],[0,-6],[-2,-2],[-3,-2],[-2,-4],[-2,-5],[1,-4],[-1,-3],[-2,-4],[-2,0],[-5,3],[-3,1],[-34,-9],[-2,-1],[-31,-12],[-22,-1],[-6,3],[-1,0],[-2,-3],[-1,-2],[-2,2],[-1,3],[-2,0],[-4,-8],[-3,4],[-4,16],[-2,2],[-2,3],[-2,2],[-3,1],[-3,2],[0,4],[1,4],[2,2],[1,3],[0,13],[0,5],[1,4],[4,5],[1,3],[1,8],[0,10],[-1,10],[-7,9],[0,11],[3,19],[-2,7],[-10,23],[-1,2],[-2,4],[-1,4],[3,4],[1,5],[0,6],[1,5],[1,7],[-3,9],[-4,7],[-2,4],[0,4],[2,0],[0,4],[-14,28],[-3,4],[-2,1],[-1,2],[1,6],[1,5],[2,4],[3,1],[3,-2],[-1,5],[-3,5],[-4,4],[-2,2],[-1,3],[5,17],[-3,0],[-2,1],[-3,1],[-1,3],[1,0],[1,0],[0,1],[0,2],[-7,3],[-2,9],[0,9],[2,4],[2,1],[1,3],[2,3],[3,1],[3,0],[3,1],[2,3],[0,8],[-2,0],[-6,-8],[-2,16],[1,37],[-6,-24],[-4,-8],[-4,12],[-1,0],[0,-7],[1,-4],[2,-4],[2,-2],[0,-4],[-12,0],[-3,1],[-3,6],[-4,1],[-7,4],[-1,10],[-1,8],[-5,3],[3,-3],[1,-2],[0,-4],[-4,-2],[1,-5],[5,-9],[5,-5],[1,-1],[-1,-5],[-1,-4],[0,-4],[5,-21],[-3,-15],[-6,-13],[-6,-9],[-1,5],[0,3],[0,2],[1,2],[0,5],[-4,0],[-4,0],[0,-5],[3,-1],[2,-4],[3,-11],[-4,-3],[-1,1],[-3,2],[2,-7],[2,-5],[2,0],[4,4],[4,4],[1,-7],[-1,-26],[0,-6],[1,-4],[-1,-6],[-1,-3],[-4,-5],[-1,-4],[-2,0],[-2,4],[-9,10],[-2,0],[-2,8],[-3,3],[-7,-1],[-23,14],[-7,-1],[-1,6],[-2,6],[-2,5],[-2,3],[-7,-4],[-8,2],[-6,6],[-1,8],[3,2],[5,6],[3,6],[-11,7],[-3,-2],[0,-11],[-7,10],[-3,2],[0,5],[2,5],[-2,5],[-2,5],[-2,7],[1,9],[1,7],[4,10],[0,4],[-2,3],[-2,1],[-2,-1],[-2,-3],[-1,0],[-2,4],[0,5],[2,4],[0,4],[-2,3],[-4,0],[1,9],[0,10],[1,6],[5,-4],[0,5],[-2,4],[-3,7],[1,4],[-1,9],[2,7],[-4,-3],[-1,1],[-1,0],[0,-8],[1,-8],[1,-4],[-1,-2],[-2,0],[-2,2],[0,4],[-1,4],[-1,6],[-5,15],[-2,5],[-3,23],[-2,6],[-2,-9],[0,-5],[0,-6],[-3,6],[0,9],[-1,8],[-4,5],[0,4],[2,-3],[3,-1],[1,1],[2,3],[2,0],[1,-2],[3,-2],[-10,37],[-6,16],[-3,9],[-1,11],[-1,0],[-2,-7],[-1,-6],[1,-5],[3,-2],[-1,-5],[-4,-10],[-2,-5],[-2,0],[-5,8],[-22,18],[-2,3],[-12,6],[-4,1],[-3,4],[1,9],[5,16],[-3,-3],[-4,-5],[-3,-7],[-1,-8],[-2,-2],[-4,5],[-6,11],[-4,-6],[-9,1],[-9,6],[-4,8],[-2,0],[-1,-11],[-7,-33],[0,1],[-1,2],[-1,0],[0,-4],[-2,0],[3,14],[0,4],[-3,-2],[1,5],[0,3],[1,3],[2,1],[0,4],[-4,0],[-4,-6],[-4,-2],[-3,2],[-3,8],[-3,2],[0,4],[1,1],[2,2],[1,2],[-3,18],[0,8],[1,6],[0,4],[-2,3],[0,3],[1,3],[1,3],[0,-1],[0,-2],[1,-1],[1,0],[-1,8],[0,6],[2,4],[5,3],[-7,0],[-3,-1],[-2,-2],[-4,-19],[0,-3],[-6,1],[-4,4],[-2,7],[1,13],[-4,-5],[-5,-3],[-5,0],[-5,3],[1,-4],[0,-8],[1,-4],[-5,-1],[-8,-9],[-3,-2],[-5,3],[-4,7],[-1,7],[5,4],[0,3],[-2,2],[-2,4],[0,4],[0,6],[-3,-4],[0,-7],[-1,-8],[-5,-5],[0,-4],[1,-3],[1,-4],[1,-5],[0,-4],[-5,-2],[-2,0],[-2,2],[-7,-3],[-12,7],[-19,16],[-10,5],[-11,0],[-11,-4],[-20,-13],[-8,-10],[-7,-14],[-4,-21],[0,-24],[1,-25],[7,-40],[0,-4],[-4,-8],[-1,-9],[-3,-5],[-5,6]],[[27275,54785],[3,3],[2,-1],[3,-1],[4,-1],[-4,-5],[-3,-16],[-3,-7],[1,-3],[1,-5],[-2,0],[-4,27],[0,5],[-1,3],[0,2],[1,3],[2,0],[1,-1],[-1,-3]],[[27458,54948],[4,4],[5,3],[8,5],[4,-3],[4,-1],[8,0],[-4,-13],[-2,-5],[-3,-3],[-3,-3],[-2,-1],[-3,3],[-1,2],[-2,2],[-2,1],[-2,0],[-3,-1],[-2,-3],[-1,-4],[-1,-3],[-8,-9],[-4,-10],[-1,-2],[-3,0],[-2,2],[-2,1],[-1,1],[-8,-6],[-1,1],[2,7],[3,6],[3,5],[3,3],[10,3],[3,5],[2,7],[2,6]],[[27315,54850],[3,-3],[9,1],[2,-4],[7,-30],[-5,-5],[-6,-3],[-6,0],[-9,11],[-12,2],[-6,3],[-2,5],[-7,16],[-6,6],[-11,21],[-6,29],[-3,4],[0,3],[-2,15],[1,1],[5,0],[3,1],[0,3],[3,13],[1,0],[1,7],[0,6],[0,4],[2,6],[2,3],[5,2],[8,12],[3,3],[0,-2],[2,0],[-1,5],[-1,7],[0,5],[2,0],[0,-5],[1,0],[0,3],[1,1],[1,1],[7,-39],[0,-6],[1,-2],[2,-7],[0,-1],[0,-5],[0,-2],[1,0],[2,1],[1,-1],[2,-3],[2,-2],[1,-3],[0,-10],[-1,-2],[-9,-8],[0,-4],[-2,-17],[-1,-3],[2,-7],[5,-10],[1,-6],[0,-6],[2,-5],[1,-2],[2,3],[2,0]],[[27163,55325],[-6,4],[-4,1],[-1,-3],[0,-5],[0,-3],[2,-10],[-8,12],[-2,1],[-6,2],[-2,1],[-2,10],[3,5],[9,6],[4,-4],[6,-4],[5,-5],[2,-8]],[[27127,55361],[8,-11],[-6,-3],[-10,-11],[-4,-3],[-4,4],[-4,7],[-3,9],[-2,8],[2,0],[6,-1],[15,21],[6,-3],[3,-6],[0,-6],[-3,-3],[-4,3],[0,-5]],[[28029,55390],[2,-7],[1,-13],[2,-5],[2,-1],[1,-2],[-1,-2],[-3,-2],[-3,3],[-4,-4],[0,-5],[2,-3],[0,-5],[-2,-1],[-1,-3],[0,-8],[-4,-1],[-5,21],[1,8],[2,-1],[0,5],[1,8],[-1,5],[2,10],[3,8],[2,1],[1,-1],[2,-3],[0,-2]],[[27121,55259],[1,7],[2,8],[3,6],[3,4],[3,1],[1,-4],[-1,-7],[1,-7],[-6,-5],[-3,-2],[-4,-1]],[[28032,55434],[-3,-3],[-5,8],[-5,8],[3,15],[4,-7],[3,-7],[1,2],[1,6],[1,-2],[-1,-8],[2,-3],[0,-4],[-1,-5]],[[27188,55991],[7,-7],[3,-5],[3,-9],[-5,2],[-6,-5],[-4,-9],[-3,-13],[-1,1],[-3,7],[1,1],[0,2],[0,14],[-1,5],[-3,4],[0,3],[4,-3],[-2,12],[-4,4],[-6,2],[-5,6],[0,3],[2,3],[1,2],[1,-1],[2,-4],[2,-2],[3,-1],[2,1],[2,2],[3,-2],[7,-13]],[[27131,56044],[7,12],[5,4],[5,0],[8,-24],[2,-15],[-4,-10],[0,-5],[1,-2],[0,-2],[0,-2],[-1,-5],[-4,14],[-6,13],[-13,22]],[[28085,55479],[0,6],[1,3],[3,-3],[3,-4],[1,-5],[2,-6],[0,-7],[1,-6],[0,-5],[3,-1],[2,-8],[-1,-7],[-2,-3],[0,-7],[3,-16],[-2,-13],[-3,-5],[0,-5],[-1,-4],[-4,0],[-1,3],[-2,-1],[-2,0],[-2,-1],[-1,3],[0,3],[-1,-3],[-2,-6],[-3,-6],[0,-5],[0,-5],[2,-7],[1,-12],[2,-3],[2,0],[0,-3],[-2,-3],[-4,5],[-3,5],[1,8],[-2,14],[-2,6],[-5,4],[-2,3],[-1,6],[1,9],[2,5],[1,11],[-1,3],[-3,6],[0,4],[1,5],[1,4],[0,4],[-1,10],[0,6],[-3,16],[1,8],[4,0],[2,-3],[12,10],[2,-5],[1,-3],[0,-3],[1,4]],[[27897,55680],[2,4],[2,-1],[1,-2],[-1,-1],[1,-4],[1,-1],[2,-2],[0,-3],[-1,-3],[-1,-1],[-1,3],[-1,2],[-2,-1],[-2,1],[-1,4],[1,5]],[[27342,55864],[1,-2],[1,-1],[1,1],[1,0],[2,-2],[1,-2],[1,-2],[1,-2],[0,-2],[0,-2],[-1,0],[-1,2],[-3,1],[-2,0],[-2,0],[-1,0],[0,3],[-1,3],[-1,3],[1,1],[2,1]],[[27209,55902],[-2,3],[1,2],[1,-1],[1,-4],[2,-2],[2,0],[1,-5],[1,-4],[1,-2],[3,-2],[-1,-4],[-3,-2],[-2,-3],[-1,1],[-3,4],[-2,3],[-1,5],[0,4],[2,7]],[[30187,57487],[-4,-14],[-1,-11],[2,-11],[-8,-1],[-2,-2],[-1,-5],[0,-5],[-1,-5],[-2,-2],[-6,-2],[-16,-18],[-11,-7],[-47,-14],[-52,-34],[-11,-4],[-7,-5],[-6,-7],[-3,-6],[-3,-21],[0,-26],[9,-77],[22,-97],[17,-51],[8,-15],[32,-39],[4,-7],[3,-8],[1,-8],[-2,-2],[-13,-6],[1,9],[-2,8],[-4,5],[-8,3],[-3,2],[-2,1],[-1,-2],[-1,-3],[-2,-3],[-3,-4],[2,-7],[10,-19],[3,-8],[0,-7],[-1,-8],[-1,-8],[3,-24],[5,-24],[5,-21],[7,-19],[9,-16],[11,-13],[-2,-13],[-3,-24],[-4,-12],[1,-5],[1,-6],[-1,-7],[-1,-6],[1,-10],[-2,-12],[-3,-13],[-2,-12],[1,-33],[0,-3],[0,-2],[-3,-5],[-2,-2],[-7,-6],[-6,-14],[-1,-2],[-5,-3],[-4,-5],[-7,-12],[-7,-18],[-16,-63],[-15,-43],[-2,-14],[-4,-6],[-11,-6],[-5,-8],[-3,-10],[-3,-12],[-2,-25],[-7,-24],[-5,-33],[-19,-43],[-4,-18],[1,-8],[5,-24],[4,-10],[19,-41],[6,-19],[14,-67],[-5,6],[-2,11],[-1,13],[-3,11],[-2,-4],[1,-2],[0,-2],[1,-4],[-2,-1],[-2,-2],[0,-2],[-2,-3],[5,-4],[4,-8],[3,-11],[2,-12],[-2,-11],[-5,-1],[-5,6],[-4,8],[-1,-11],[3,-11],[4,-14],[4,6],[7,12],[5,6],[3,-12],[2,0],[0,12],[3,-4],[8,-18],[2,-4],[3,-2],[3,-2],[2,-6],[-9,3],[-7,-6],[-3,-13],[2,-17],[3,21],[1,4],[16,0],[7,-9],[6,-17],[7,-10],[7,11],[-1,-9],[0,-3],[3,-5],[0,-4],[-1,-3],[-4,0],[0,-4],[3,-7],[0,-10],[-1,-11],[-2,-9],[-3,5],[-6,-8],[-10,-21],[2,-5],[3,5],[3,4],[3,-8],[2,2],[2,2],[1,3],[1,5],[3,-6],[-1,-6],[-1,-6],[4,-6],[-5,-1],[1,-8],[4,-16],[-6,-15],[-1,-5],[1,-6],[2,-3],[2,-1],[1,-4],[1,0],[4,-4],[2,-4],[-1,-2],[0,-3],[3,-5],[6,-9],[11,-7],[12,-4],[13,-1],[11,5],[40,26],[27,25],[10,12],[5,14],[4,31],[5,9],[8,19],[2,5],[3,2],[7,2],[2,2],[2,3],[2,2],[2,1],[4,3],[3,8],[2,11],[0,11],[-5,33],[-2,49],[-1,11],[-1,8],[-1,6],[0,7],[2,4],[5,16],[0,7],[5,42],[0,28],[2,4],[1,4],[1,4],[0,2],[-2,10],[-4,9],[-4,10],[-4,11],[-2,15],[3,1],[2,2],[1,5],[-1,5],[-5,11],[-5,17],[-15,39],[-6,8],[-6,-3],[-6,53],[-5,27],[-6,22],[-11,23],[-6,9],[-10,8],[-2,10],[-3,23],[-3,8],[-6,14],[-2,18],[-3,10],[-5,15],[-4,6],[-1,4],[-1,6],[0,5],[1,10],[2,30],[-1,8],[-4,8],[-13,17],[-4,12],[0,15],[1,5],[10,17],[1,1],[-2,1],[-8,27],[0,6],[0,8],[2,16],[0,9],[-1,7],[-2,4],[-5,9],[-3,10],[-2,4],[-3,2],[0,4],[21,2],[9,-2],[9,-8],[3,14],[-2,12],[-2,10],[-1,9],[1,9],[7,9],[3,10],[-7,0],[-3,1],[-3,3],[-3,5],[-5,12],[-4,3],[12,9],[11,3],[23,1],[12,3],[3,3],[30,25],[12,16],[3,5],[16,13],[54,62],[43,24],[8,7],[6,-6],[9,1],[32,8],[5,6],[5,15],[-3,-2],[-2,-4],[-2,-4],[-1,-6],[-1,15],[7,5],[15,-5],[9,6],[21,21],[10,14],[6,0],[10,-3],[14,15],[6,15],[4,16],[0,11],[0,4],[-2,4],[-3,1],[2,4],[4,0],[4,-4],[2,-8],[3,-6],[3,-6],[3,3],[1,6],[1,8],[3,0],[3,-4],[3,-2],[2,-4],[1,0],[1,6],[0,5],[-1,4],[-1,3],[-2,2],[0,2],[0,2],[2,4],[-4,3],[0,8],[-12,8],[-6,1],[-1,2],[1,3],[2,0],[4,1],[-2,4],[-3,3],[-4,2],[-3,4],[-6,9],[11,-6],[8,-9],[7,-8],[5,-5],[3,-2],[4,-3],[5,1],[5,-2],[4,-5],[5,4],[3,6],[6,-4],[1,-9],[3,-3],[3,2],[2,-11],[5,-5],[5,-6],[3,-14],[9,-6],[5,7],[2,8],[8,10],[3,8],[1,13],[-5,20],[1,12],[-3,7],[-4,28],[-2,17],[-7,29],[-1,0],[-1,-11],[-2,1],[-3,6],[-2,4],[-4,-2],[-2,-4],[-1,-4],[-1,-2],[-14,-9],[-6,-1],[1,10],[-11,-11],[-3,-1],[-8,-1],[-4,-2],[-3,-4],[-6,-6],[-18,-3],[-14,-14],[-7,4],[-5,11],[-1,15],[2,4],[3,7],[1,5],[0,4],[0,3],[-1,2],[-1,3],[0,16],[0,1],[-3,7],[-1,4],[2,-2],[4,-4],[2,-2],[0,17],[-1,7],[-1,5],[-3,3],[-1,-4],[-1,-7],[-3,-5],[-1,11],[-6,22],[-1,3],[-2,2],[0,3],[-1,12],[-1,4],[-2,1],[-3,-1],[2,8],[2,22],[0,9],[1,10],[6,18],[1,12],[2,9],[8,21],[3,9],[1,10],[0,17],[1,6],[12,0],[5,3],[5,7],[17,31],[7,7],[6,3],[4,-3],[4,-5],[13,-6],[5,-9],[25,-86],[4,-24],[1,-25],[0,-51],[2,-25],[17,-102],[13,-54],[10,-25],[12,-18],[10,-3],[7,9],[7,12],[10,6],[24,-7],[10,-1],[12,8],[8,11],[4,4],[6,1],[3,-1],[5,-9],[3,-2],[10,1],[3,-1],[17,-15],[4,1],[1,-6],[4,-7],[4,-6],[4,-3],[11,-5],[44,4],[5,-3],[5,-7],[9,-21],[5,-8],[6,-7],[10,-8],[4,-2],[4,-1],[2,3],[1,-2],[7,-6],[1,-4],[3,-11],[7,-11],[21,-23],[6,-9],[5,-10],[2,-9],[2,-6],[19,-17],[1,6],[1,3],[0,4],[2,0],[1,-4],[2,-9],[0,-4],[-2,-11],[3,-15],[11,-33],[17,-71],[2,-16],[-2,-8],[-2,3],[-3,6],[-4,5],[-4,2],[-4,-1],[-3,-3],[-3,-4],[-2,-4],[9,-5],[23,-4],[6,-11],[-3,-11],[-4,-5],[-13,0],[-4,-5],[-1,-12],[0,-13],[3,-37],[9,-52],[4,-14],[6,-23],[2,-10],[10,-24],[10,-20],[12,-9],[34,0],[5,-2],[6,-6],[7,-5],[5,2],[4,4],[5,3],[3,-1],[2,-2],[1,-4],[0,-5],[0,-3],[1,-2],[2,4],[2,6],[1,3],[8,8],[12,5],[36,5],[24,14],[23,3],[24,5],[18,5],[23,-2],[20,5],[16,18],[11,4],[11,9],[6,2],[35,-1],[31,5],[65,9],[32,-2],[3,-1],[3,-5],[15,-5],[5,0],[3,5],[3,8],[4,8],[6,3],[6,-2],[17,-19],[19,-9],[5,-10],[13,-3],[3,-2],[-2,-8],[-6,-8],[-7,-5],[-5,1],[0,-7],[-1,-14],[1,-5],[9,-19],[21,-34],[2,-6],[9,-12],[5,-16],[20,-25],[-4,0],[-4,1],[-3,3],[-2,4],[-2,-3],[-2,-5],[6,-16],[7,3],[7,-9],[12,-22],[7,-6],[8,-2],[16,-1],[-8,11],[-28,25],[-6,17],[80,-73],[34,-22],[9,-3],[32,-12],[39,-16],[11,-12],[11,-6],[3,-2],[0,-4],[-21,14],[-6,2],[3,-8],[5,-7],[6,-4],[12,-2],[3,1],[2,2],[5,5],[8,4],[10,13],[5,4],[6,2],[15,-6],[21,-3],[10,3],[8,10],[3,8],[3,9],[3,22],[0,9],[-2,16],[2,8],[2,-6],[3,-3],[3,-1],[3,1],[-2,-6],[-1,-1],[-3,-1],[4,-8],[4,1],[3,5],[-3,6],[3,5],[8,20],[4,1],[7,6],[5,1],[-1,-4],[0,-2],[-1,-2],[1,1],[3,1],[2,1],[2,-7],[1,1],[2,4],[1,1],[1,1],[3,-1],[6,-6],[3,-1],[6,5],[8,16],[8,5],[5,6],[2,1],[2,3],[0,6],[-1,4],[-8,-8],[-6,1],[-6,4],[-5,6],[2,6],[3,-1],[3,-3],[4,-2],[3,2],[6,8],[4,2],[-1,8],[0,3],[1,6],[-6,0],[0,4],[6,5],[3,-3],[1,-7],[0,-10],[1,-9],[2,0],[2,7],[3,9],[0,15],[11,10],[14,7],[10,12],[3,10],[1,7],[3,6],[6,2],[6,-1],[4,-1],[4,-3],[12,-12],[6,-3],[6,-1],[7,1],[17,7],[5,0],[11,-6],[6,-2],[12,1],[38,19],[8,9],[-7,1],[-7,-1],[-7,1],[-7,9],[-5,8],[-14,14],[-7,4],[-14,1],[-7,2],[-6,7],[-6,5],[-7,0],[-15,-6],[2,2],[2,9],[-4,0],[-3,-4],[-2,-4],[-2,-3],[-4,-2],[-19,3],[-4,-1],[-9,-11],[-2,-2],[-2,-3],[-2,-14],[-3,-3],[-4,3],[-2,8],[-1,8],[0,7],[-2,12],[-5,12],[-4,12],[2,11],[3,3],[2,4],[1,6],[0,7],[1,0],[3,-10],[4,-6],[12,-4],[4,-3],[7,-8],[4,-2],[3,2],[17,17],[3,1],[3,1],[2,-1],[1,-3],[1,-3],[1,-1],[26,0],[6,-4],[5,4],[10,5],[4,3],[3,6],[3,9],[1,10],[1,11],[2,0],[4,-13],[5,-9],[6,-6],[29,-14],[28,-8],[6,2],[12,15],[6,6],[5,-5],[2,0],[1,7],[2,1],[4,-2],[3,-2],[2,3],[1,12],[2,5],[2,-4],[2,-2],[2,0],[2,2],[1,-4],[-1,-3],[5,-5],[3,8],[3,-1],[5,-4],[4,-3],[1,2],[1,5],[2,2],[3,-3],[3,-1],[3,3],[19,27],[3,2],[1,-3],[0,-6],[2,-5],[3,-3],[4,0],[2,1],[3,3],[2,5],[5,-3],[19,3],[6,-2],[11,-9],[7,-2],[6,2],[12,9],[10,3],[30,22],[3,1],[7,-7],[3,-1],[3,-1],[6,-2],[27,-1],[40,-15],[22,-7],[12,-3],[20,-2],[9,-6],[5,0],[3,4],[7,10],[4,2],[18,1],[8,3],[7,9],[3,-7],[8,5],[2,-6],[5,6],[7,5],[8,3],[5,-2],[-4,-5],[-4,-6],[-3,-9],[2,-13],[-2,-3],[-3,6],[-3,-4],[-3,-7],[-5,-4],[-1,-1],[-4,-5],[-2,-2],[-3,0],[-3,1],[-3,-1],[-3,-4],[-17,-4],[-6,-4],[-24,6],[-18,-2],[-4,-4],[-3,-7],[-14,-43],[-6,-10],[-5,1],[-7,8],[-5,-1],[-6,-3],[-6,-2],[-3,1],[-6,5],[-3,2],[-2,0],[-5,-3],[-3,-1],[-6,2],[-18,10],[-16,3],[-64,-18],[-8,-4],[-3,-7],[-3,-10],[-7,-11],[-7,-9],[-4,-5],[0,-4],[8,8],[15,27],[9,10],[10,2],[5,-12],[1,-17],[-1,-16],[2,-18],[1,-11],[-2,-5],[-2,-1],[-4,-3],[-2,0],[-3,2],[-4,8],[-2,2],[-18,2],[-9,-5],[-2,-13],[1,3],[6,5],[2,-15],[1,-6],[3,-4],[-3,-4],[-5,-11],[-4,-5],[6,-7],[-1,-6],[-3,-7],[-3,-8],[16,2],[4,4],[1,10],[-6,24],[2,13],[-3,4],[-1,7],[1,8],[3,5],[5,0],[4,-5],[8,-15],[3,4],[2,1],[3,1],[3,2],[9,10],[2,2],[5,-2],[5,-4],[5,-5],[3,-5],[1,-5],[0,-10],[1,-6],[2,-4],[6,-10],[4,-8],[3,-7],[2,-10],[0,-14],[-2,-17],[0,-7],[3,-13],[1,-5],[1,-2],[2,-2],[2,-3],[1,-10],[3,-10],[0,-4],[-1,-9],[-3,-11],[-4,-9],[-4,-3],[-3,-1],[-6,-2],[-2,-1],[-4,1],[-2,3],[-1,2],[-2,2],[-5,2],[-5,0],[-4,-4],[-1,-8],[-1,-5],[-1,-5],[-3,-3],[-2,-1],[-1,2],[-2,12],[-1,4],[-4,4],[-8,-8],[-4,2],[-1,4],[1,6],[0,6],[-2,4],[-3,0],[-2,-3],[-3,-4],[-1,-5],[-1,7],[-2,4],[-2,3],[-3,2],[-4,-7],[-3,-1],[-8,4],[1,-4],[1,-2],[4,-9],[4,-5],[1,2],[2,6],[2,3],[3,0],[1,-5],[1,-30],[2,-12],[5,0],[-4,8],[1,7],[1,7],[-1,8],[0,3],[1,6],[1,5],[2,0],[2,-3],[-2,-10],[1,-5],[5,-5],[4,2],[3,4],[4,1],[4,-4],[3,-6],[3,-5],[6,-1],[-3,-15],[2,-5],[4,4],[3,10],[-3,19],[0,11],[6,4],[2,-3],[5,-10],[3,-3],[3,-1],[15,8],[7,8],[6,10],[3,11],[0,14],[-4,25],[-2,12],[2,17],[5,4],[6,-4],[6,-7],[12,-17],[6,-19],[7,-49],[2,-10],[3,-9],[3,-10],[0,-12],[3,-12],[1,-7],[-1,-8],[-3,-13],[5,0],[4,-5],[3,-8],[6,-15],[14,-59],[2,-10],[0,-10],[-2,-9],[0,-9],[0,-2],[2,-7],[8,16],[5,20],[8,45],[1,19],[-5,37],[0,22],[5,-8],[5,-14],[10,-42],[2,-12],[1,-84],[-4,-25],[-7,-15],[9,7],[5,20],[3,26],[-2,73],[-2,14],[-6,23],[-2,12],[16,-4],[5,-3],[2,-6],[1,-8],[3,-8],[3,-3],[9,-4],[5,-1],[2,0],[1,2],[-3,6],[-2,2],[-9,5],[-3,1],[-1,4],[-8,17],[-4,5],[-4,2],[-16,1],[-4,3],[-4,9],[3,12],[2,10],[3,6],[3,3],[24,-13],[13,-11],[10,-12],[28,-46],[5,-10],[9,-24],[8,-11],[4,-7],[0,-8],[1,-5],[4,-8],[1,-5],[0,-6],[-3,-18],[-6,-21],[-1,-13],[2,0],[8,33],[4,32],[5,-1],[4,-12],[3,-15],[3,-8],[-2,-12],[2,-49],[2,12],[1,13],[1,26],[-1,7],[-1,5],[-1,4],[-2,4],[-2,6],[-1,14],[-2,6],[-2,3],[-5,2],[-2,3],[-1,4],[-4,13],[-2,6],[-1,5],[-1,3],[3,2],[8,1],[10,-5],[22,-14],[3,-1],[20,-9],[5,7],[-1,9],[-4,8],[-3,8],[-2,2],[-2,3],[-5,6],[0,4],[-1,5],[-4,2],[-3,7],[-2,7],[1,2],[8,-1],[3,-3],[4,-4],[8,-9],[11,-15],[10,-12],[9,-15],[4,-10],[11,-28],[-1,16],[-7,18],[-2,11],[-8,6],[-5,10],[1,1],[5,-7],[3,-2],[6,-1],[3,-4],[3,-6],[8,-18],[4,-10],[4,-8],[5,-9],[4,-12],[4,-6],[5,-9],[13,-22],[7,-10],[2,-18],[6,-14],[4,3],[-5,12],[7,0],[15,-18],[5,6],[2,-2],[10,2],[4,-1],[11,-11],[11,-8],[4,-6],[2,-11],[-2,1],[-1,2],[-1,5],[-1,-19],[1,-5],[2,-4],[2,1],[2,2],[3,1],[4,-2],[6,-5],[6,-8],[4,-7],[3,-6],[4,-13],[4,-8],[1,-3],[1,-3],[0,-4],[1,-1],[3,-2],[1,-3],[3,-12],[1,-15],[0,-15],[-4,-11],[0,5],[-1,3],[-2,5],[-2,-9],[0,-9],[-1,-8],[-4,-3],[-4,-2],[-7,-8],[-2,-2],[-4,-1],[-3,-2],[-3,-2],[-3,-3],[-1,-7],[-2,-3],[-1,-2],[-1,-1],[-6,-3],[-15,-32],[-7,-4],[-5,-8],[-6,-18],[-7,-36],[4,4],[4,7],[2,8],[1,8],[2,5],[23,43],[7,9],[1,-11],[-2,-6],[-4,-9],[-2,-5],[-1,-5],[-1,-13],[-1,-4],[-2,-5],[0,-5],[0,-11],[-2,-6],[-2,-3],[-4,-2],[-2,-2],[-10,-23],[-2,0],[-1,-5],[-4,-17],[-2,-9],[-3,-24],[-1,-10],[2,-12],[0,-6],[-4,-25],[-15,-47],[-4,-25],[-1,-29],[-3,-21],[-7,-12],[-12,0],[-16,11],[-4,2],[-48,-8],[-12,6],[-11,14],[-5,0],[-6,-2],[-4,-7],[0,-11],[2,-7],[15,-18],[10,-4],[3,-2],[2,-4],[1,-4],[1,-2],[3,0],[5,3],[2,1],[1,-2],[3,-8],[4,-8],[2,-2],[4,0],[1,-2],[3,-8],[1,-3],[5,-1],[11,5],[4,1],[3,-5],[2,-8],[1,-9],[2,-7],[3,-6],[7,-9],[3,-9],[9,12],[4,8],[1,10],[2,7],[4,8],[5,7],[4,5],[6,2],[18,-2],[13,5],[6,-1],[1,-8],[-5,-9],[-10,-3],[-3,-11],[0,-13],[0,-6],[1,-5],[3,-3],[1,6],[-1,15],[2,11],[1,2],[3,3],[3,2],[3,-1],[3,1],[1,4],[0,6],[2,6],[1,5],[3,5],[1,7],[0,14],[1,6],[0,4],[0,3],[3,3],[5,-4],[6,2],[5,4],[28,7],[35,8],[5,-7],[1,-6],[4,-6],[5,-6],[3,-4],[6,-2],[17,-2],[18,-9],[5,1],[1,3],[3,13],[5,13],[7,23],[9,8],[48,-7],[11,-6],[11,-10],[10,-14],[5,-5],[12,-4]],[[33051,55569],[1,-2],[1,-1],[1,-1],[2,-1],[1,-15],[-3,-14],[-6,-6],[-7,7],[0,-8],[2,-8],[1,-6],[-24,-6],[-29,5],[-11,-1],[3,13],[4,12],[5,9],[7,2],[6,-3],[9,-16],[6,-5],[-3,10],[-1,0],[1,5],[1,3],[2,3],[0,1],[8,18],[3,3],[18,2],[2,0]],[[33077,55816],[7,3],[6,-3],[5,-7],[5,-9],[-6,-4],[-1,0],[4,-14],[-4,-17],[-8,-16],[-11,-18],[-38,-33],[-6,-4],[15,25],[6,10],[9,29],[3,20],[3,6],[3,4],[4,6],[1,6],[-1,5],[1,6],[3,5]],[[33031,55735],[-3,6],[1,11],[3,14],[1,12],[3,9],[6,5],[7,3],[6,5],[5,11],[10,28],[4,5],[7,2],[15,11],[0,-6],[0,-5],[-1,-5],[-1,-5],[0,5],[-2,-11],[-2,-5],[-4,-1],[-6,0],[-5,-3],[-4,-6],[-23,-46],[-2,-5],[-1,-12],[-2,-5],[-9,-11],[-3,-1]],[[33090,55869],[-4,-11],[-14,-10],[-6,-7],[5,20],[0,20],[2,16],[8,12],[10,6],[5,0],[2,-7],[0,-12],[-2,-11],[-3,-11],[-3,-9],[0,4]],[[33106,55922],[4,6],[6,7],[6,1],[5,-10],[1,-3],[1,-6],[2,-3],[-3,-3],[-4,0],[-5,1],[-8,-11],[-2,-8],[-2,-12],[-3,-9],[-6,-3],[3,15],[2,27],[3,11]],[[32228,56871],[6,-5],[8,-6],[7,-8],[2,-13],[-4,-12],[-7,-1],[-6,6],[0,11],[-7,1],[-4,3],[-2,4],[-1,8],[2,6],[3,5],[3,1]],[[31881,56957],[2,0],[2,0],[1,-3],[-2,-6],[4,-12],[-1,-9],[-4,-5],[-7,-6],[1,6],[1,2],[-6,-4],[-5,-1],[-11,1],[-5,2],[-5,6],[-5,3],[-5,-3],[-6,11],[2,14],[7,11],[7,1],[6,6],[7,-1],[14,-12],[3,-1],[5,0]],[[32264,57064],[1,-12],[4,-22],[1,-10],[9,-35],[2,-16],[-9,4],[0,-4],[0,-8],[0,-4],[-4,6],[-2,2],[-2,-2],[0,-4],[-6,-12],[-8,-31],[-16,5],[-6,-1],[-18,-14],[-5,-6],[1,17],[-5,2],[-6,0],[-5,23],[-6,9],[-7,7],[-4,7],[-7,-14],[-6,-3],[-21,5],[-1,1],[-1,2],[-2,1],[-7,-1],[-3,1],[-11,7],[-6,1],[7,31],[1,7],[1,13],[2,5],[4,1],[6,0],[3,1],[2,2],[4,7],[3,2],[6,-4],[7,6],[7,2],[6,-2],[2,-8],[0,-8],[1,-9],[1,-7],[10,-6],[10,-14],[6,-3],[11,-2],[5,3],[4,11],[1,6],[-1,18],[2,6],[4,6],[1,5],[2,6],[-1,5],[1,4],[2,5],[3,2],[6,1],[3,1],[4,8],[7,18],[4,6],[1,-11],[3,-5],[4,-4],[1,-6]],[[31497,57448],[5,-1],[1,1],[-5,-10],[-10,-3],[-10,3],[-7,10],[8,-4],[7,2],[5,9],[4,17],[3,-4],[1,-6],[0,-7],[-2,-7]],[[31630,57472],[6,1],[2,-4],[0,-11],[-3,-12],[-8,1],[-9,9],[-6,12],[4,4],[5,0],[9,0]],[[32053,57516],[4,-3],[9,-15],[1,-6],[2,-11],[-1,-9],[-2,-4],[-12,0],[-7,3],[-5,5],[0,4],[1,2],[0,1],[-1,5],[3,6],[5,17],[3,5]],[[31458,57445],[4,3],[2,0],[0,-1],[-13,-11],[-1,-3],[-8,-4],[-3,-1],[-3,-2],[-6,0],[-1,3],[6,-1],[4,1],[1,1],[1,0],[17,15]],[[31463,57499],[4,1],[2,-2],[-7,-2],[-1,1],[-4,-2],[-5,2],[-2,0],[-2,1],[-9,2],[1,1],[23,-2]],[[31206,57567],[2,0],[3,-3],[-2,0],[-5,2],[-3,2],[0,2],[1,2],[1,-1],[2,-2],[1,-2]],[[31200,57593],[0,-2],[-1,1],[1,1]],[[31200,57593],[0,1],[1,-1],[0,-1],[-1,1]],[[31200,57606],[1,-1],[0,-2],[0,1],[-1,2]],[[31199,57614],[0,-1],[-1,1],[1,0]],[[31198,57615],[-1,2],[1,-1],[0,-1]],[[32322,59765],[-1,3],[1,1],[1,-1],[1,-3],[-1,-1],[-1,1]],[[32947,55551],[5,-5],[8,1],[8,-1],[2,-11],[1,-10],[0,-13],[3,-7],[4,-4],[5,-6],[0,-8],[-1,-10],[-4,-3],[-4,4],[-7,11],[-2,11],[-4,9],[-7,0],[-10,-1],[-9,4],[-6,10],[-4,6],[-6,6],[-5,1],[-9,7],[1,6],[6,-1],[11,-4],[10,1],[7,8],[7,-1]],[[33126,55633],[5,2],[4,7],[4,6],[4,8],[2,3],[1,-2],[-1,-6],[-3,-11],[0,-12],[2,-10],[4,-4],[8,0],[7,-2],[2,-7],[-1,-10],[-3,-11],[-4,-2],[-5,1],[-6,5],[-6,0],[-5,-3],[-6,0],[-6,0],[-4,-4],[-6,0],[-4,1],[-1,6],[3,8],[3,11],[4,13],[4,12],[4,1]],[[33069,55698],[13,3],[6,4],[3,10],[3,8],[8,0],[15,0],[6,7],[7,6],[1,-8],[-3,-7],[2,-5],[4,-3],[1,-11],[1,-7],[3,-7],[3,-13],[-3,-7],[-7,-9],[-7,-1],[-6,-11],[-4,-16],[-4,-13],[-2,-12],[-6,-13],[-5,-8],[-11,-1],[-10,2],[-7,-3],[-6,-3],[-10,6],[-14,0],[-11,-3],[-5,-6],[-5,-8],[-3,-5],[-3,-4],[-5,0],[-2,5],[1,12],[1,8],[0,15],[1,22],[3,13],[8,20],[9,14],[10,11],[7,6],[10,8],[7,2],[6,2]],[[32685,56345],[3,-6],[2,-15],[-1,-14],[-2,-10],[-4,0],[-3,16],[0,15],[1,10],[1,6],[2,0],[1,-2]],[[32665,56396],[2,-2],[2,-6],[-2,-9],[-3,-3],[-3,6],[-2,10],[-3,19],[0,8],[3,2],[3,-8],[3,-17]],[[32711,56422],[1,-4],[1,-10],[-1,-8],[-3,-6],[-3,-6],[-5,-2],[-4,-1],[-2,-3],[0,8],[3,16],[5,12],[5,5],[3,-1]],[[32593,56609],[2,-4],[2,-9],[0,-11],[-3,-10],[-1,0],[-1,7],[-1,6],[-4,9],[-2,5],[-5,10],[-8,14],[-8,10],[-5,11],[-2,10],[1,11],[0,4],[1,7],[1,5],[2,0],[8,-20],[7,-19],[16,-36]],[[32175,56882],[3,-2],[1,-7],[-6,-8],[-7,-1],[-5,5],[0,9],[4,4],[4,0],[5,-1],[1,1]],[[89159,48930],[3,0],[6,-5],[10,11],[10,-3],[12,-8],[11,-4],[8,0],[4,-3],[2,-3],[2,-3],[2,-3],[3,-1],[7,-1],[3,-2],[2,-4],[3,-12],[1,-4],[4,3],[8,-18],[6,-6],[6,-1],[54,-48],[62,-63],[9,-3],[1,-5],[0,-6],[1,-5],[13,-19],[5,-2],[11,5],[16,2],[2,-3],[16,-28],[1,-6],[-1,-5],[-1,-7],[-1,-7],[1,-6],[2,-1],[7,-1],[3,-2],[9,7],[6,-6],[6,-8],[6,-5],[6,-1],[5,-3],[7,-8],[35,-22],[30,-30],[32,-21],[54,-35],[6,-2],[4,-1],[9,-11],[3,-1],[4,0],[4,-1],[8,-10],[22,-13],[7,0],[9,2],[5,1],[4,-3],[2,5],[5,-4],[19,-4],[3,-2],[5,-8],[3,-2],[4,-1],[59,-22],[13,-9],[4,-7],[16,-34],[3,-17],[1,-4],[2,-3],[5,-4],[2,-3],[2,-2],[8,-6],[1,-2],[3,2],[4,7],[2,-1],[1,-1],[1,-4],[-2,-7],[2,-7],[3,-6],[4,-3],[10,-1],[5,-3],[5,-4],[10,-35],[3,-5],[12,-11],[4,-2],[6,-7],[14,-42],[7,-6],[9,-1],[18,3],[3,-1],[4,1],[6,0],[-2,-5],[-2,-3],[-4,-1],[-3,1],[2,-7],[3,-4],[2,-2],[3,-5],[5,-4],[7,8],[4,-4],[2,-9],[1,-4],[2,-2],[3,1],[1,2],[0,2],[1,4],[3,6],[2,8],[2,8],[-1,6],[9,5],[13,0],[12,-3],[10,-6],[3,1],[15,-1],[4,-2],[3,-8],[4,-9],[2,-10],[1,-12],[0,-50],[2,-7],[4,-7],[3,-3],[2,-3],[4,-3],[35,-12],[11,-8],[7,-14],[5,-7],[8,-5],[7,-9],[2,-3],[0,-2],[0,-1],[1,-2],[0,-4],[0,-3],[-4,-4],[-1,-3],[0,-7],[1,-8],[4,-6],[12,-5],[5,-5],[8,-18],[6,-8],[2,-4],[0,-21],[1,-3],[4,-5],[10,-32],[7,-8],[29,-20],[11,0],[12,6],[12,3],[11,-9],[11,-31],[17,-30],[10,-25],[3,-9],[6,-17],[2,-3],[3,0],[1,1],[2,0],[4,-10],[6,-28],[31,-72],[4,-8],[5,-5],[4,-6],[1,-3],[10,-5],[2,-6],[4,-11],[3,-11],[0,-5],[-4,-5],[-2,-13],[-1,-27],[0,-14],[3,-24],[1,-12],[0,-4],[3,-8],[0,-5],[0,-5],[-2,-7],[-1,-6],[0,-2],[-1,-21],[-1,-13],[0,-6],[0,-25],[0,-11],[-2,-11],[-10,-30],[-2,-13],[1,-5],[1,-9],[0,-6],[0,-8],[-5,-19],[-1,-19],[3,-18],[6,-14],[8,-5],[17,6],[6,-4],[4,-19],[2,0],[1,5],[1,7],[0,5],[2,-2],[1,-1],[1,-1],[3,8],[4,2],[5,0],[3,6],[5,-10],[5,-4],[5,-3],[6,-8],[2,4],[2,1],[1,-2],[1,-3],[3,1],[9,-9],[5,-4],[7,1],[3,-2],[1,-5],[2,-7],[3,-2],[7,-1],[5,-5],[3,-2],[5,3],[3,-4],[2,-5],[3,-3],[3,-1],[5,4],[4,1],[3,0],[3,-1],[5,-7],[2,-3],[2,-4],[3,-2],[4,1],[-2,0],[6,0],[6,2],[5,0],[5,-8],[1,-6],[1,-6],[2,-5],[7,-3],[3,-3],[35,-58],[18,-11],[10,-12],[6,-3],[3,-3],[1,-11],[1,-10],[4,-3],[5,3],[5,3],[6,2],[5,-2],[4,-3],[5,-1],[4,-4],[2,-9],[2,-11],[2,-9],[15,-20],[2,0],[3,-2],[2,-2],[2,-4],[3,2],[4,6],[3,0],[1,-1],[3,-7],[4,-12],[3,-6],[1,4],[3,2],[26,-6],[3,0],[2,1],[3,6],[3,7],[3,5],[4,3],[2,-1],[7,-7],[2,0],[1,1],[0,2],[1,3],[2,2],[1,-1],[2,-3],[13,-10],[13,-4],[5,-5],[4,-6],[3,-7],[1,-2],[3,-1],[1,-2],[1,-3],[1,-6],[0,-3],[2,-4],[8,-8],[19,-39],[8,-28],[2,-6],[5,-6],[3,-13],[2,-16],[3,-9],[6,-20],[21,-22],[7,-15],[1,-8],[0,-6],[-1,-5],[0,-6],[2,-8],[2,-6],[3,-7],[1,-16],[3,-14],[0,-8],[-1,-5],[-1,-4],[-1,-5],[2,-8],[-3,-8],[0,-8],[2,-10],[1,-13],[-1,-2],[-4,-6],[-1,-2],[0,-7],[2,-4],[2,0],[2,3],[-2,-48],[-22,-16],[-49,-5],[-3,-4],[-4,-9],[-3,-3],[-3,0],[-3,3],[-3,2],[-3,-3],[-5,-3],[-18,13],[-7,0],[-11,-6],[-6,-2],[-43,5],[-4,-1],[-1,6],[-3,5],[-2,3],[-4,2],[-4,1],[-14,-1],[-3,-2],[-7,-11],[-5,-3],[-9,1],[-5,-1],[-4,-4],[0,-14],[-5,-25],[-1,-14],[1,-28],[1,-28],[2,-14],[9,-24],[6,-11],[3,-8],[2,-3],[3,-2],[2,1],[4,8],[4,4],[-1,-8],[-1,-6],[-2,-6],[0,-4],[0,-8],[3,-9],[1,-8],[-1,-7],[-2,-14],[1,-8],[1,0],[14,-24],[3,-7],[3,-9],[1,-12],[-1,-28],[1,-9],[2,-6],[-1,-3],[-2,-2],[0,-5],[1,-6],[2,-10],[2,-18],[0,-6],[5,-15],[1,-6],[2,-2],[1,-3],[1,-2],[0,-4],[-2,-2],[-2,-1],[0,-2],[2,-6],[1,0],[2,1],[3,-3],[1,-4],[0,-4],[0,-3],[4,-1],[2,1],[4,11],[2,0],[2,-3],[1,-3],[0,-3],[-1,-3],[17,-9],[8,-8],[3,-14],[2,-6],[2,-3],[3,-1],[2,0],[4,-1],[3,-4],[2,-5],[3,-6],[-2,-5],[2,-2],[3,0],[3,-1],[7,-12],[3,-7],[1,-7],[0,-23],[3,-5],[15,-5],[4,-5],[1,-8],[0,-15],[2,-13],[4,-9],[2,-10],[-2,-11],[13,4],[0,4],[-2,3],[-2,4],[-1,5],[0,8],[7,-12],[6,-13],[4,-17],[2,-38],[3,-10],[3,-7],[5,-4],[5,-1],[8,4],[6,1],[2,-2],[2,-3],[2,-2],[3,5],[2,2],[4,0],[3,-3],[13,-20],[6,-7],[6,-2],[2,-6],[1,-4],[3,-23],[3,-8],[5,-1],[6,3],[5,1],[3,-7],[3,3],[3,1],[7,0],[1,2],[5,4],[3,0],[-2,-8],[-1,-10],[6,-54],[4,-13],[2,-17],[5,-22],[2,-13],[2,-17],[0,-17],[-2,-14],[7,-36],[2,-14],[-1,-10],[-3,-21],[0,-11],[1,-13],[1,-12],[2,-8],[5,-7],[10,-10],[2,-8],[7,5],[5,-4],[5,-6],[3,-3],[2,-1],[3,-3],[1,-5],[1,-5],[2,-4],[10,-7],[2,-5],[3,-15],[3,-9],[4,-9],[1,-10],[0,-40],[3,-40],[2,-5],[2,-1],[2,-2],[2,-4],[1,-3],[-1,-4],[-1,-6],[-1,-3],[1,-3],[2,-7],[1,-4],[3,-24],[5,-22],[7,-19],[10,-12],[24,-9],[10,1],[4,-4],[2,2],[12,6],[5,1],[3,2],[3,2],[6,7],[3,5],[3,7],[1,6],[2,-2],[5,0],[6,0],[4,4],[6,-9],[7,1],[18,9],[2,1],[1,2],[0,2],[1,6],[2,2],[1,1],[2,2],[5,10],[2,6],[4,4],[4,-17],[25,3],[6,-10],[3,3],[2,1],[2,-3],[0,-6],[2,0],[3,4],[2,-4],[2,-6],[1,-8],[-1,-8],[-1,-7],[-4,-11],[2,-1],[1,-2],[1,-1],[2,0],[-5,-3],[-2,-1],[-3,0],[4,-8],[5,-1],[4,-3],[-1,-12],[-3,-9],[-5,-7],[-5,-4],[-4,4],[-3,-6],[-4,-18],[-1,-7],[-1,-13],[-2,-20],[-1,-12],[-2,-9],[-9,-17],[-2,-14],[1,-14],[5,-23],[2,-12],[4,-22],[10,-9],[20,-8],[7,-8],[2,-3],[3,-7],[1,-2],[1,0],[4,1],[1,-1],[3,-7],[1,-1],[9,-8],[-2,-8],[4,-2],[1,0],[22,0],[6,-2],[16,-14],[5,1],[4,7],[3,2],[3,-1],[4,-3],[3,1],[6,6],[3,1],[6,-2],[11,-8],[13,-4],[14,-11],[6,0],[18,5],[7,-2],[3,-5],[4,-18],[2,-3],[2,-1],[2,-3],[2,-9],[0,-9],[0,-1],[-2,0],[-4,-2],[-15,-16],[-6,-5],[-19,-8],[-11,-7],[-6,-1],[-6,5],[-4,-8],[-13,-8],[-4,-5],[-3,-12],[1,-10],[8,-19],[20,-35],[9,-22],[-1,-23],[7,-1],[5,-4],[8,-18],[4,-5],[5,-5],[5,-3],[5,-1],[16,1],[6,-1],[6,-4],[9,-12],[3,-1],[3,0],[3,2],[5,5],[3,1],[2,-2],[2,-5],[3,-11],[9,-5],[2,-3],[5,-12],[5,-9],[3,-5],[11,-4],[12,-9],[6,-3],[5,4],[2,-1],[3,-1],[4,1],[1,3],[11,-6],[7,-6],[3,1],[5,7],[2,1],[12,-3],[-2,-4],[-3,-9],[-1,-3],[2,-6],[6,-9],[2,-8],[3,-3],[7,2],[18,9],[18,2],[5,3],[8,14],[5,4],[8,-3],[-1,-7],[-5,-7],[-12,-6],[-34,-39],[-10,-8],[-10,-3],[-5,0],[-2,1],[-1,3],[-5,-2],[-13,11],[-6,3],[-11,2],[-6,3],[-4,5],[-7,0],[-9,-16],[-6,-23],[4,-20],[2,0],[0,4],[4,-4],[13,-2],[5,-4],[2,-3],[3,-2],[10,-3],[2,-3],[5,-7],[34,-22],[6,-11],[2,-20],[3,-10],[1,-6],[-1,-7],[-5,-5],[-33,-26],[-3,3],[-1,2],[-8,-4],[-4,0],[-2,-2],[-4,-6],[-1,-3],[-3,-7],[-3,-5],[-1,0],[-1,-2],[-1,-3],[-2,-5],[0,-8],[-4,4],[-5,0],[-4,-1],[-4,-3],[-3,14],[-5,4],[-6,-3],[-12,-14],[0,-1],[-2,1],[-3,3],[-2,3],[1,1],[-3,-2],[-3,-4],[-6,-10],[-1,5],[-7,9],[-1,4],[1,4],[2,4],[1,5],[-3,4],[-7,-3],[-7,-5],[-4,-6],[-5,12],[-1,4],[-3,2],[-1,-1],[-1,-2],[-3,1],[-3,9],[-2,3],[-2,0],[-2,0],[-3,0],[-3,4],[5,7],[0,7],[-3,6],[-2,6],[-1,3],[-2,-6],[-2,-11],[-3,0],[-2,2],[-5,6],[1,3],[1,10],[-3,-6],[-1,-3],[-2,0],[-2,6],[-3,5],[-8,6],[2,-8],[-1,-1],[-1,0],[0,-1],[0,-3],[-3,4],[-3,2],[-2,2],[-4,1],[4,6],[4,3],[3,4],[1,11],[-2,-1],[-4,-3],[1,5],[2,3],[2,2],[3,2],[2,-7],[3,0],[7,3],[13,-7],[12,9],[3,2],[0,3],[1,10],[1,3],[1,2],[6,2],[-3,4],[-4,0],[-4,0],[-4,0],[-3,3],[-6,8],[-5,2],[-4,3],[-2,1],[-1,-1],[-2,-6],[-1,-1],[0,-4],[-1,-9],[-1,-10],[-3,-6],[-2,4],[-1,4],[0,5],[0,5],[-1,5],[-1,2],[-1,1],[-1,3],[-3,14],[-1,6],[-3,6],[-7,9],[-15,11],[-6,8],[-6,6],[-9,2],[-19,-1],[-9,-5],[-5,-1],[-7,6],[-3,-4],[-3,-4],[-5,4],[-2,-5],[4,-4],[0,-4],[-9,0],[-2,3],[-1,10],[-2,4],[-3,-2],[-2,-4],[-3,-3],[-5,5],[3,4],[0,4],[-2,2],[-7,3],[-1,5],[0,6],[-1,6],[-13,10],[-3,-3],[-5,-12],[-3,-5],[-4,5],[-5,3],[-6,3],[-5,1],[-4,2],[-20,22],[-4,3],[-7,2],[-5,3],[-3,1],[-5,-2],[-3,0],[-1,2],[-7,-6],[-3,-2],[-3,0],[-4,-3],[-3,-5],[-3,-6],[-2,-3],[-6,-1],[-5,4],[-19,19],[-3,2],[-4,1],[-15,-5],[-3,0],[-5,4],[-4,1],[-3,2],[1,13],[-3,5],[1,2],[1,4],[0,2],[-3,0],[-1,0],[2,7],[2,3],[3,2],[4,0],[1,5],[-2,9],[-4,4],[-2,-8],[-1,-4],[-3,0],[-4,3],[-1,3],[-2,5],[-2,19],[-2,0],[-2,-24],[-2,-11],[-5,-5],[-3,-6],[0,-3],[-2,1],[-3,4],[-13,0],[-7,3],[-3,1],[-2,-2],[-1,-5],[-4,-3],[-4,-2],[-22,0],[-5,-4],[-18,15],[-3,7],[-2,12],[-6,9],[-5,2],[-2,-9],[-4,6],[-4,7],[-4,7],[-5,4],[-3,1],[-5,-1],[-2,0],[-2,4],[-1,8],[-3,5],[-3,-21],[-11,-13],[-13,-5],[-11,7],[-4,-14],[-3,-7],[-4,-4],[-5,7],[-3,11],[-3,12],[-3,10],[-4,6],[-4,-1],[-6,-4],[-6,-1],[0,4],[5,4],[2,10],[0,10],[-4,5],[-2,-1],[-2,-3],[-1,-5],[-1,-12],[-1,1],[-4,8],[-11,5],[-7,-3],[-11,-23],[-1,0],[-5,50],[-3,1],[-3,2],[-3,3],[-2,3],[-1,4],[-3,2],[-4,-1],[-3,1],[-4,5],[-9,21],[-3,9],[-1,9],[-4,8],[-4,6],[-4,7],[-2,9],[-1,9],[-1,25],[-1,12],[-2,11],[-25,69],[-8,16],[-2,7],[-3,10],[-3,9],[-5,6],[-2,-4],[0,13],[-2,10],[-4,7],[-5,6],[-5,4],[-3,1],[-1,-5],[3,-12],[-6,-1],[-9,6],[-9,9],[-6,9],[-1,6],[-2,20],[-1,8],[-4,5],[-3,2],[-4,-1],[-5,-2],[2,-5],[4,-3],[2,-4],[1,-7],[-1,-5],[-1,-4],[-1,-1],[-3,1],[-5,4],[-5,8],[-4,19],[-7,23],[-2,11],[-4,28],[-2,13],[-5,13],[-5,4],[-12,-5],[-3,8],[4,1],[2,4],[1,4],[-1,7],[-3,3],[-2,15],[-1,17],[4,14],[-2,2],[-1,4],[-1,5],[-2,5],[2,2],[6,2],[6,9],[1,1],[2,6],[8,13],[2,7],[0,6],[-1,7],[-1,5],[-2,2],[-4,-1],[-1,-6],[-1,-6],[1,-3],[0,-4],[-9,-19],[-3,-5],[-10,-1],[-8,8],[-9,11],[-9,10],[-3,2],[-6,-2],[-3,0],[-2,2],[-4,5],[-19,9],[-5,4],[-7,10],[-5,13],[-3,14],[-4,12],[1,8],[-1,9],[-1,8],[-2,4],[2,5],[0,11],[2,8],[5,-4],[4,7],[3,7],[1,8],[-1,11],[-4,-8],[-4,-4],[-3,2],[2,10],[-2,2],[-1,3],[-1,4],[0,5],[-2,7],[-3,2],[-4,-1],[-2,0],[-1,5],[0,6],[0,6],[0,5],[-1,8],[-1,5],[-14,32],[-3,10],[-2,8],[-1,6],[-14,17],[-7,13],[-23,74],[-4,18],[0,24],[-1,5],[-2,7],[-1,2],[0,19],[-1,10],[-3,10],[-4,9],[-9,7],[-8,17],[-2,3],[-7,3],[-3,5],[-5,21],[4,7],[-1,9],[-3,10],[-4,6],[3,3],[2,4],[1,4],[-2,6],[-5,-3],[-9,7],[-14,16],[-16,8],[-9,1],[-7,-5],[-6,8],[-17,13],[-4,10],[-1,2],[-1,2],[-1,3],[-1,5],[1,2],[4,1],[1,3],[-1,3],[-1,3],[-1,2],[-1,2],[0,4],[4,14],[-2,0],[-4,-9],[-4,0],[-4,2],[-5,-5],[4,-12],[-5,-5],[-17,1],[-4,2],[-5,11],[-4,3],[-4,-1],[-4,-2],[-4,-1],[-5,4],[0,-4],[-5,4],[-19,-8],[-6,1],[-6,3],[-4,4],[-16,33],[-8,9],[-10,2],[-3,-1],[-2,-2],[-3,-1],[-4,0],[-2,4],[-6,11],[-2,7],[-4,5],[-2,8],[-3,-6],[-2,-9],[1,-3],[-6,-1],[-7,4],[-6,8],[-2,11],[-1,6],[-2,6],[-2,2],[-1,-6],[0,-12],[-1,-4],[-3,-2],[-17,0],[-3,4],[-9,20],[-3,-10],[-3,1],[-3,6],[-5,3],[-2,-1],[-3,-3],[-2,0],[0,2],[-2,5],[0,1],[-3,2],[-3,4],[-2,5],[0,4],[5,11],[2,11],[0,58],[-1,13],[-3,10],[-2,-11],[-1,-29],[-3,-13],[2,-9],[-4,-5],[-5,-2],[-5,0],[-5,3],[-4,7],[-6,15],[-10,16],[-2,13],[-3,7],[-7,13],[-2,-11],[1,-11],[2,-11],[1,-10],[-3,-9],[-6,-5],[-7,0],[-5,3],[-3,6],[-3,10],[-3,11],[-1,8],[0,7],[0,5],[-1,4],[-2,4],[-1,6],[1,14],[-1,7],[-4,10],[-1,-7],[0,-42],[-3,-19],[1,-7],[1,-5],[6,-12],[-1,-6],[-3,-4],[-2,-2],[-1,2],[-2,8],[-7,12],[-3,7],[0,4],[-1,10],[-1,4],[0,3],[-2,3],[-2,2],[-1,2],[-3,10],[-3,19],[-2,8],[-2,0],[1,-11],[1,-22],[1,-9],[4,-16],[1,-9],[0,-20],[2,-15],[1,-6],[3,-7],[2,-8],[1,-9],[3,-7],[6,-15],[2,-14],[-7,-3],[-1,4],[-5,16],[-1,2],[-2,6],[-3,9],[-4,7],[-3,5],[-3,-14],[-5,-5],[-5,5],[-2,16],[-1,17],[-3,17],[-9,29],[1,-16],[3,-17],[2,-14],[-3,-7],[-4,5],[-7,27],[-4,10],[-2,-7],[-3,-5],[-3,-3],[-3,-2],[0,-4],[7,-1],[2,-10],[-2,-13],[-4,-12],[3,-3],[4,-6],[2,-8],[1,-8],[-3,-4],[-10,-8],[-4,-4],[-5,11],[-3,3],[-4,2],[-3,-1],[-3,-2],[-3,-2],[-3,3],[-5,8],[-52,38],[-20,25],[-7,12],[-3,11],[-1,11],[-10,40],[-2,10],[-1,2],[-3,4],[-2,2],[-7,2],[-3,0],[-4,3],[-10,16],[-2,5],[-1,2],[-1,7],[-2,-9],[3,-9],[9,-20],[2,-4],[3,-1],[6,-5],[6,-3],[1,-3],[-1,-4],[0,-4],[4,-24],[23,-81],[2,-12],[1,-13],[0,-14],[1,-14],[3,-10],[7,-19],[14,-43],[4,-25],[-4,-11],[0,-1],[-5,3],[-4,9],[-4,12],[-4,8],[-5,2],[-16,2],[1,-3],[2,-6],[2,-3],[3,-2],[4,-1],[3,-1],[5,-6],[10,-23],[-4,-12],[-5,-5],[-6,-2],[-26,0],[-5,3],[-2,4],[-5,9],[-2,3],[-10,7],[-3,4],[-5,5],[-6,0],[-18,-10],[-16,3],[-5,2],[-3,8],[-5,22],[-3,12],[-4,6],[-5,2],[-8,0],[-1,1],[-2,3],[-4,1],[-1,-3],[1,-5],[1,-4],[3,-3],[2,-2],[12,-2],[3,-6],[1,-14],[2,-11],[5,-9],[23,-21],[3,-8],[3,-23],[16,-60],[2,-15],[-2,-11],[-5,-6],[-5,-1],[-71,-4],[-3,-2],[-7,-10],[-24,-4],[-65,-36],[-6,-1],[-5,3],[-28,26],[-35,12],[-1,1],[-3,3],[-5,-4],[-13,-7],[-6,-1],[-6,-3],[-16,-22],[-6,-5],[-5,0],[-12,2],[-6,3],[-4,8],[-3,11],[-7,58],[-5,16],[-12,5],[-16,-7],[-10,-2],[-2,-1],[-2,-3],[-2,-5],[-3,-5],[-3,-2],[-3,-1],[-3,-3],[-4,-6],[-1,-5],[1,-5],[4,-4],[6,13],[4,5],[4,2],[2,2],[2,4],[2,2],[4,-4],[4,1],[12,7],[7,2],[7,-3],[3,-13],[1,-13],[8,-56],[6,-17],[9,-10],[12,-3],[10,8],[18,26],[10,7],[22,-8],[5,3],[11,-7],[10,-18],[3,-3],[6,-3],[17,-26],[11,-8],[35,-15],[11,-9],[8,-11],[36,-63],[16,-39],[8,-29],[11,-27],[2,-9],[1,-8],[0,-77],[2,-19],[0,-11],[-3,-9],[-6,-13],[-3,-5],[-5,-4],[-8,-5],[-16,0],[-8,-4],[2,-4],[-3,-2],[-6,0],[-4,-2],[-3,1],[-2,-1],[0,-2],[-1,-4],[-1,-4],[-2,-2],[-4,-1],[-25,-17],[-5,-4],[-7,-12],[-6,-9],[-3,-1],[-3,-3],[-2,-7],[-3,-8],[-2,-6],[-6,-7],[-13,-11],[-10,-16],[-29,-25],[-5,-6],[-2,-7],[-15,-18],[-11,-2],[-10,6],[-8,12],[-14,24],[-9,13],[-10,9],[-9,-1],[-7,8],[-4,3],[-7,1],[-4,2],[-12,15],[-14,10],[-4,2],[-3,-2],[-5,-9],[-3,-1],[-10,0],[-39,-6],[-6,-2],[-17,-13],[-5,-3],[-7,-1],[-6,2],[-11,8],[-7,2],[-23,-9],[-7,1],[-3,-4],[-3,-4],[-5,-3],[-4,-1],[-4,3],[-4,6],[-3,4],[-5,-5],[-3,1],[-6,1],[-6,1],[-4,13],[-11,17],[-9,9],[-10,5],[-11,0],[-10,-6],[-22,-36],[-9,-9],[-13,-3],[-10,8],[-30,56],[-9,11]],[[92711,43608],[1,-1],[2,-2],[1,-1],[1,-3],[-1,-6],[-1,-2],[-2,1],[-1,3],[-3,-3],[-1,-1],[-2,1],[-2,3],[-3,-5],[-4,-3],[-3,0],[-4,4],[-1,-8],[-1,0],[-2,2],[-2,1],[-13,0],[-1,1],[-1,4],[-1,0],[-2,-2],[-2,-5],[-1,-2],[-3,-2],[-3,-4],[-3,1],[-1,9],[2,0],[2,1],[2,3],[-1,5],[-1,3],[-2,0],[-3,-2],[-2,-1],[-3,2],[-1,4],[-1,4],[-1,1],[-3,-1],[-2,-1],[-3,-1],[-3,3],[1,3],[1,6],[-2,1],[-1,2],[-1,3],[0,6],[-2,-4],[-3,-6],[-2,-4],[-3,-2],[-10,12],[-5,-5],[-2,4],[-1,9],[0,8],[2,5],[2,5],[2,5],[-2,6],[-3,3],[-2,-2],[0,-4],[-2,-2],[-2,2],[-1,2],[-2,5],[-4,-3],[-4,-6],[-7,-11],[-1,12],[11,10],[0,10],[-3,3],[-6,0],[-3,1],[-2,5],[-4,11],[-2,6],[-2,1],[-3,-2],[-1,0],[-1,5],[1,13],[0,4],[-4,2],[-2,1],[-2,5],[-2,4],[-1,4],[1,7],[1,7],[2,13],[15,-22],[5,-3],[5,3],[3,0],[2,-10],[2,-2],[3,-1],[3,-2],[7,-10],[3,-2],[6,-3],[3,-2],[8,-14],[17,-14],[13,-18],[3,-2],[6,-1],[32,-18],[3,-4],[1,-6],[2,-6],[3,-4],[6,-4],[1,-4],[3,-11]],[[92855,43749],[1,-6],[1,-7],[2,-6],[2,-3],[-2,-7],[-2,-6],[-2,-4],[-4,-4],[-2,9],[-5,5],[-6,1],[-6,-2],[-10,-11],[-4,1],[-1,14],[-2,0],[-1,-15],[-5,-7],[-5,0],[-8,5],[-4,0],[-2,2],[-1,9],[-1,3],[-3,4],[-3,2],[-3,1],[1,4],[2,4],[2,2],[3,2],[-2,3],[-2,9],[2,0],[2,-4],[4,-5],[13,-2],[5,-5],[3,4],[3,-3],[2,1],[0,5],[-2,5],[-2,0],[0,-4],[-1,0],[-3,2],[-1,3],[-1,3],[1,4],[-3,2],[-2,4],[-1,4],[0,6],[5,-3],[8,-1],[11,4],[4,-3],[2,0],[2,2],[3,1],[2,-2],[2,-5],[1,-4],[3,3],[6,-5],[3,-4],[1,-5]],[[92550,43791],[3,4],[1,0],[0,4],[-7,13],[-2,-4],[-2,1],[-1,3],[-1,4],[-10,12],[-4,10],[1,7],[4,3],[3,-4],[4,-6],[13,-6],[13,-18],[5,-2],[-1,-6],[-2,-7],[-3,-4],[-3,2],[-1,-2],[-2,-3],[-4,-2],[-4,1]],[[92446,44173],[2,0],[10,-8],[3,-4],[2,-8],[0,-5],[-2,-4],[-4,-4],[-3,-2],[-12,-2],[-3,-1],[-6,-5],[-2,-2],[-7,1],[-7,5],[-17,14],[-17,8],[-11,17],[0,4],[1,0],[1,1],[1,1],[0,2],[18,-11],[4,1],[3,0],[8,-12],[4,-3],[8,6],[10,10],[9,7],[7,-6]],[[91964,44189],[-7,-13],[-1,-6],[6,-1],[-1,-3],[-3,-7],[-1,-3],[-1,-5],[-4,-1],[-4,5],[-3,12],[-2,4],[-12,0],[-5,2],[-1,-9],[0,-8],[0,-7],[-2,-4],[-3,16],[-1,9],[1,11],[2,6],[3,5],[4,4],[5,1],[15,0],[3,-1],[2,-6],[3,-1],[2,1],[1,4],[0,2],[2,-3],[1,-2],[0,-2],[1,0]],[[91909,44230],[3,-4],[4,-5],[0,-7],[-3,-9],[2,-4],[-1,-6],[0,-8],[-1,-6],[2,-6],[0,-6],[-1,-5],[-3,-3],[-6,5],[-6,5],[-7,1],[-6,-3],[-3,11],[-2,6],[-2,3],[2,4],[4,-6],[4,-5],[5,-3],[5,-2],[6,0],[1,1],[-1,4],[-19,35],[-1,5],[0,6],[3,3],[2,-1],[3,-4],[1,-4],[4,1],[4,0],[3,1],[4,6]],[[91993,44574],[7,11],[12,9],[10,-4],[5,-23],[-1,-13],[-5,-25],[-3,-26],[-8,-34],[-2,-4],[1,-6],[-2,-19],[1,-11],[-6,8],[-10,18],[-5,6],[-28,16],[-14,4],[-5,0],[-5,1],[-3,3],[-1,9],[-1,18],[0,15],[4,3],[2,6],[4,8],[1,7],[-2,3],[-2,3],[-3,6],[-4,11],[-2,0],[1,-15],[-5,-10],[-6,0],[-3,12],[-1,4],[-1,2],[-1,2],[-1,2],[0,5],[0,29],[-1,4],[-6,16],[-1,5],[-1,7],[-2,6],[-2,4],[-6,2],[-1,4],[0,5],[-1,2],[-2,1],[-4,2],[-2,1],[-3,6],[-2,6],[-1,8],[-1,10],[0,10],[1,12],[2,8],[8,-9],[6,-9],[4,-11],[2,-13],[2,-13],[7,-8],[7,-6],[6,-7],[19,-43],[4,-6],[7,-6],[7,-7],[4,-12],[-7,4],[-2,-9],[1,-12],[3,-7],[3,-3],[9,-16],[6,-5],[5,-3],[2,0],[2,3],[2,6],[0,6],[-1,6],[-2,2],[0,5],[4,9],[7,14]],[[91888,44753],[1,-10],[-5,1],[-12,9],[-18,-4],[-6,0],[-9,6],[-10,9],[-11,7],[-12,-1],[-11,-4],[-9,0],[-1,4],[4,9],[10,15],[6,7],[3,7],[0,8],[0,12],[-2,6],[-13,17],[-9,41],[-1,17],[3,14],[6,10],[7,6],[7,1],[16,-18],[10,-6],[3,-7],[5,-14],[8,-11],[5,-4],[4,1],[5,6],[6,1],[5,4],[4,11],[11,-15],[8,-18],[2,-3],[0,-4],[-1,-9],[1,-3],[2,-6],[4,-5],[4,-4],[4,-2],[1,-3],[-2,-23],[-1,-4],[-3,-2],[-1,-2],[1,-6],[3,-5],[3,0],[3,-1],[2,-15],[2,-4],[3,-2],[1,-6],[0,-8],[-1,-7],[-3,-5],[-4,-4],[-2,7],[-5,-7],[-10,-20],[1,10],[2,14],[1,6],[-2,5],[-4,2],[-9,-1]],[[91768,44920],[1,0],[2,-6],[0,-3],[0,-3],[-2,-2],[-1,-3],[-1,-9],[-5,-22],[-2,-7],[-1,-4],[2,-2],[5,0],[0,-6],[0,-4],[-2,-6],[-4,-11],[-8,0],[-7,6],[-7,8],[-1,-1],[0,-1],[-1,-1],[0,9],[0,9],[-2,7],[-3,3],[-4,1],[-11,7],[-3,3],[-1,6],[-2,7],[-2,6],[-11,20],[-1,5],[0,19],[1,17],[3,16],[5,15],[7,12],[7,9],[6,4],[7,-5],[15,-16],[6,-11],[6,-14],[5,-26],[1,-14],[2,-8],[1,-4]],[[92498,45056],[4,-5],[-4,-7],[-2,-6],[1,-4],[-1,-3],[-1,-5],[-3,-2],[-3,3],[-2,5],[-3,4],[-2,-3],[-3,-7],[1,-4],[5,-9],[6,-9],[1,-10],[-2,-6],[-2,-1],[-1,9],[-4,9],[-6,-1],[-7,-12],[-11,-3],[-6,-3],[-2,4],[-4,-1],[-3,9],[-4,10],[-4,4],[-4,7],[-2,8],[-2,5],[-2,-7],[-3,-6],[1,-9],[7,-3],[-1,-11],[-4,-10],[-5,16],[-5,5],[-8,6],[-5,6],[-3,13],[2,8],[6,-10],[7,-1],[-2,9],[1,6],[2,2],[2,1],[2,1],[-3,6],[-2,3],[-3,3],[-6,6],[-8,14],[-6,10],[-5,9],[-7,-6],[-2,4],[-3,7],[-5,6],[-8,7],[-10,-4],[-2,5],[10,8],[0,5],[-1,9],[-6,14],[-6,6],[-7,-10],[-1,-10],[1,-11],[0,-23],[0,-8],[-2,-8],[-2,30],[-7,25],[5,12],[13,15],[5,-2],[13,-28],[23,4],[12,-2],[7,-4],[10,-4],[9,4],[5,-1],[6,0],[5,-1],[4,-4],[2,-8],[4,-3],[5,-18],[5,-7],[9,-5],[5,5],[7,-8],[3,-6],[-1,-15],[7,-5],[6,-8]],[[91975,45277],[4,-5],[3,-11],[2,-12],[-1,-9],[-3,7],[-8,30],[-16,21],[0,3],[1,5],[13,39],[7,31],[1,11],[-1,2],[-5,10],[-4,5],[-2,2],[-16,3],[-5,5],[-2,11],[5,15],[1,5],[1,8],[1,5],[5,11],[4,9],[6,4],[13,2],[1,-3],[-1,-1],[-1,0],[-1,-29],[-1,-12],[-2,-12],[8,-19],[0,-26],[-9,-83],[-1,-15],[3,-7]],[[89890,45354],[6,-4],[4,-10],[3,-13],[0,-13],[-3,-12],[-4,-3],[-3,5],[-2,11],[-1,9],[-5,6],[-32,32],[-6,10],[-4,3],[-4,2],[-3,2],[-2,6],[-1,7],[-18,31],[-15,9],[-8,7],[-3,5],[-6,20],[-3,5],[-6,8],[-3,7],[4,1],[4,2],[3,-1],[10,-25],[5,-7],[24,-11],[23,-18],[7,-2],[2,-2],[2,-6],[3,-10],[27,-47],[5,-4]],[[89827,45480],[-6,6],[-8,13],[-4,13],[6,8],[4,0],[2,-2],[2,-4],[2,-2],[3,0],[9,4],[19,1],[25,-6],[3,-5],[0,-15],[1,-8],[4,-16],[2,-9],[0,-7],[-3,-5],[-5,-2],[-14,0],[-6,3],[-13,14],[-5,11],[-6,4],[-12,4]],[[91124,47150],[6,-15],[2,-16],[-3,-53],[-6,-29],[-2,-15],[-3,2],[-1,2],[0,-4],[0,-8],[0,-4],[-3,1],[-2,-1],[-2,-3],[-2,-5],[-2,7],[0,20],[-2,9],[-2,5],[-4,3],[-8,4],[-9,2],[-4,4],[-4,11],[0,4],[-1,12],[-2,5],[-11,19],[-3,9],[-6,19],[-4,11],[-1,6],[0,4],[2,16],[-1,28],[1,8],[3,7],[7,3],[3,7],[1,-3],[1,-1],[1,-1],[1,-3],[1,2],[1,1],[1,0],[1,1],[3,-7],[6,-15],[4,-7],[4,-4],[11,-4],[7,-6],[7,-8],[14,-20]],[[93314,46537],[2,-13],[6,-23],[1,-15],[-1,-14],[-4,-14],[-5,-12],[-5,-9],[3,27],[0,15],[-2,7],[-2,-6],[-8,-38],[-7,16],[-11,-5],[-10,-15],[-7,-13],[-7,-19],[-3,-7],[-6,-2],[-3,1],[-5,6],[-3,1],[-13,0],[-12,6],[-12,8],[-21,23],[-12,20],[-3,4],[-4,2],[-5,7],[-9,15],[-2,7],[-4,13],[-33,78],[-4,16],[5,0],[2,-2],[2,-2],[5,20],[3,27],[1,29],[-1,25],[-6,28],[-9,15],[-28,17],[-10,12],[-6,11],[-6,5],[-3,4],[-2,5],[-1,4],[-1,13],[-5,24],[-4,11],[-1,3],[-2,6],[-13,12],[-8,20],[-7,10],[-4,6],[-3,8],[-1,8],[-3,8],[-10,16],[-3,12],[0,7],[-1,11],[0,6],[1,6],[2,6],[0,7],[-1,12],[-3,10],[-7,14],[-2,8],[-1,4],[-1,4],[1,6],[5,24],[3,51],[2,12],[1,11],[-4,10],[0,4],[1,1],[0,1],[0,1],[1,1],[5,-10],[2,-2],[2,4],[1,10],[-2,9],[-2,8],[-1,7],[-3,14],[-12,25],[0,12],[10,3],[11,-14],[10,-20],[5,-18],[5,2],[5,-5],[5,-10],[3,-11],[1,6],[2,2],[3,-1],[3,5],[3,-3],[4,-1],[19,0],[3,-2],[-2,-6],[0,-4],[3,-4],[1,4],[1,5],[2,3],[5,0],[1,-2],[0,-5],[0,-5],[-2,-6],[0,-4],[1,-2],[6,-4],[1,0],[1,-8],[1,-13],[8,-18],[5,-27],[5,-13],[1,-2],[2,-2],[1,-2],[3,-8],[1,-2],[0,-6],[-1,-21],[2,-10],[2,-21],[3,-10],[4,3],[5,-3],[4,-5],[5,-3],[14,-32],[1,-2],[1,-3],[2,-3],[1,-1],[3,1],[2,0],[2,-3],[3,-11],[4,-10],[2,-8],[3,-31],[1,-6],[9,-41],[14,-31],[2,-1],[3,1],[3,4],[2,7],[4,-5],[2,-9],[3,-10],[6,-5],[7,2],[1,7],[1,8],[4,8],[0,-5],[-1,-2],[0,-2],[1,-3],[2,-4],[-1,-7],[7,-14],[2,-14],[3,-3],[2,-2],[3,-1],[3,-3],[2,-7],[4,-14],[3,-9],[3,-8],[5,-6],[5,-1],[6,-6],[4,-12],[6,-27],[6,-18],[7,-16],[5,-17],[3,-22],[0,-7],[-2,-11],[0,-7],[1,-7],[2,-13],[1,-6]],[[91138,47286],[7,-9],[6,-17],[0,-17],[-7,-10],[-8,5],[-5,17],[1,19],[6,12]],[[91001,47339],[5,-2],[2,-5],[2,-8],[2,-6],[-2,-10],[-3,-5],[-8,-9],[-6,16],[0,1],[-3,-1],[-1,0],[0,3],[0,2],[0,3],[0,2],[0,6],[3,7],[5,4],[4,2]],[[90891,47349],[0,-14],[2,-14],[3,-12],[4,-7],[0,-4],[-4,-9],[-1,-12],[1,-11],[-2,-9],[-2,-3],[-1,1],[-2,2],[-2,0],[-3,-2],[-7,-10],[-9,1],[-8,12],[-11,28],[-11,16],[-3,8],[-1,9],[0,11],[1,21],[2,13],[3,5],[11,6],[4,6],[4,8],[5,6],[6,1],[9,-23],[4,-6],[7,-7],[0,-3],[1,-8]],[[92979,47383],[0,-18],[-8,-55],[0,-38],[-3,-16],[-6,-7],[2,12],[-5,-3],[-2,-7],[-1,-8],[-4,-6],[-5,41],[-11,58],[-1,17],[-2,14],[0,8],[3,4],[2,4],[1,10],[0,33],[-2,12],[-4,2],[-7,-13],[1,20],[7,22],[8,19],[8,13],[9,-4],[6,-16],[4,-20],[0,-17],[-1,-18],[0,-9],[1,-9],[3,-6],[3,-3],[2,-5],[2,-11]],[[91422,47578],[2,3],[11,9],[3,-10],[-1,-9],[-6,-17],[-3,3],[-4,6],[-3,6],[1,9]],[[90611,47612],[1,10],[2,8],[3,5],[5,0],[4,-13],[2,-7],[0,-9],[-2,2],[-2,3],[0,-3],[0,-1],[0,-1],[-2,0],[1,-10],[-4,-1],[-5,7],[-3,10]],[[91532,47720],[4,-4],[4,-6],[4,-8],[1,-8],[0,-10],[0,-5],[-1,-3],[-3,-2],[-1,3],[0,5],[-1,4],[-2,6],[-1,7],[-2,6],[-4,3],[-4,-2],[-1,-6],[1,-6],[4,-3],[-1,-4],[-3,-3],[-5,-5],[-7,12],[3,13],[8,11],[7,5]],[[90554,47784],[4,-7],[10,-23],[1,-9],[1,-14],[0,-21],[-1,-5],[-1,-6],[-1,-13],[-1,-7],[-3,-5],[-11,-14],[-7,-6],[-7,-4],[-4,4],[-9,17],[-2,5],[-2,9],[-1,9],[0,10],[2,12],[4,25],[3,10],[13,31],[6,6],[6,-4]],[[92337,47896],[-1,-9],[-13,-66],[-1,-20],[2,-20],[8,-37],[3,-23],[1,-25],[-5,-38],[-2,-26],[-18,-59],[-3,-4],[-1,-2],[-5,-20],[-2,-4],[-5,-6],[-5,-14],[-4,-4],[-12,-4],[-9,-6],[-6,0],[-14,7],[-4,1],[-6,3],[-3,1],[-3,-5],[-4,3],[-6,6],[-5,-7],[-1,-12],[0,-70],[2,-15],[3,-10],[14,-24],[2,-4],[0,-6],[2,-4],[3,-3],[5,-3],[11,-31],[2,-10],[5,-22],[1,-14],[-8,-33],[-2,-1],[-1,-4],[-2,-5],[0,-4],[-1,-4],[-3,-1],[-3,0],[-3,-1],[-13,-15],[-2,-3],[-12,-27],[-2,-1],[-9,-3],[-9,-7],[-3,-1],[-5,-4],[-4,-10],[-6,-9],[-7,-1],[-6,6],[-8,22],[-5,8],[-5,3],[-7,1],[-7,-1],[-5,-5],[-6,-19],[-3,-3],[-4,2],[-1,4],[0,6],[-1,6],[-5,6],[-19,0],[-9,3],[-5,-3],[-3,-8],[-2,-13],[2,-10],[2,-8],[2,-7],[1,-2],[7,-1],[2,-2],[8,-16],[0,-10],[-4,-10],[-8,-5],[-6,3],[-5,-5],[-5,-8],[-4,-9],[-2,-8],[0,-12],[-1,-11],[-3,-10],[-2,-8],[-9,-17],[-3,-5],[-9,-8],[-4,-2],[-3,2],[-4,-11],[-10,-16],[-5,-10],[-1,-6],[-1,-5],[-1,-4],[-7,-12],[-2,0],[-1,7],[-15,-12],[-8,-8],[-4,-11],[-4,-15],[-8,-2],[-16,7],[-20,-9],[-3,-5],[-3,-6],[-5,7],[-9,17],[-2,0],[-1,-6],[-2,-7],[-1,-7],[3,-14],[-2,-7],[-2,-7],[-2,-15],[-3,-4],[-5,-2],[-10,-8],[-10,-4],[-2,-2],[-3,-5],[-2,0],[-1,4],[-2,5],[-4,0],[-6,-6],[-5,-9],[-3,-8],[-1,2],[-1,3],[-10,-21],[-6,-9],[-6,-3],[-2,-3],[-7,-16],[-3,-5],[-12,-7],[-7,-2],[-5,3],[-3,3],[-3,-2],[-3,-5],[-2,-2],[-1,1],[-1,3],[-1,3],[-1,1],[-1,-1],[-2,-2],[-11,-5],[-8,-1],[-5,3],[-2,9],[-2,4],[-6,2],[-2,3],[-2,2],[-4,-1],[-5,-7],[-5,-11],[-7,-8],[-5,3],[0,3],[-1,3],[0,6],[0,3],[-2,2],[-1,1],[-4,6],[-2,-3],[-2,-11],[-1,-1],[-3,-3],[3,-6],[0,-6],[-3,-5],[-4,-3],[1,9],[-1,9],[-3,7],[-3,3],[-4,-1],[-5,-4],[-5,-7],[-5,-8],[-3,8],[-3,2],[-2,-2],[-3,0],[-7,1],[-2,-1],[-7,3],[-27,1],[-2,-2],[-5,-8],[-3,-2],[-7,3],[-4,0],[-5,-3],[-1,5],[-11,17],[-3,6],[-1,7],[-4,13],[-4,18],[-16,45],[-7,11],[-27,15],[-5,8],[-3,3],[-5,2],[-5,-2],[-7,-12],[-2,-2],[-3,-2],[-6,-5],[-5,-1],[-8,0],[-4,3],[-2,5],[-2,0],[1,-9],[-1,-11],[-3,-11],[-3,-6],[-3,-3],[-12,-1],[-2,-2],[-4,-4],[-3,0],[0,10],[2,3],[3,-1],[2,1],[-2,9],[2,8],[-2,12],[-4,9],[-7,4],[3,10],[3,8],[2,8],[-2,11],[-2,-12],[-3,-1],[-3,2],[-4,-2],[-21,18],[-11,7],[-8,-4],[-2,3],[-2,4],[2,6],[1,4],[3,4],[2,3],[-2,5],[-1,1],[-2,0],[-3,2],[-1,4],[0,4],[0,3],[-3,1],[-9,2],[-4,-2],[-3,-8],[-2,4],[2,9],[-1,7],[-1,8],[0,6],[-2,7],[-5,0],[-5,-1],[-2,3],[-1,7],[-4,1],[-8,-2],[-5,5],[-6,14],[-4,5],[-7,-12],[-4,-6],[-3,-2],[-6,3],[-8,15],[-4,6],[-6,3],[-13,2],[-5,5],[-3,3],[-3,0],[-4,3],[-1,6],[-9,23],[-5,25],[-2,22],[5,67],[5,21],[8,17],[10,10],[1,1],[0,1],[1,2],[4,-3],[3,-4],[7,-11],[2,-3],[5,-2],[2,-3],[2,-5],[1,-11],[1,-5],[8,-9],[8,3],[8,12],[7,15],[3,5],[4,-1],[9,-6],[9,1],[4,-1],[3,-5],[2,-6],[4,-6],[4,-4],[12,-4],[4,-4],[0,8],[2,3],[5,5],[5,8],[1,1],[5,0],[3,2],[15,18],[21,-20],[4,-7],[5,-1],[20,-20],[4,-5],[2,0],[2,-1],[2,-2],[2,-3],[3,-11],[0,1],[2,-7],[1,-3],[35,8],[7,6],[4,-7],[4,2],[3,7],[5,6],[1,-6],[3,-6],[3,0],[2,8],[8,-11],[2,-1],[2,5],[3,16],[3,3],[5,3],[19,17],[1,-3],[1,-1],[1,-2],[1,-2],[1,5],[3,3],[2,0],[3,-4],[3,6],[1,6],[0,7],[-2,6],[1,0],[1,-1],[0,-1],[0,-2],[2,-2],[2,-8],[0,-12],[-2,-17],[3,-6],[4,-3],[3,-1],[3,3],[3,4],[3,4],[5,1],[2,2],[3,6],[1,8],[0,8],[2,0],[10,-11],[10,-1],[11,8],[9,13],[3,7],[7,25],[2,10],[-1,8],[-3,2],[-3,1],[-3,3],[-2,6],[-5,16],[-2,7],[1,6],[3,12],[1,6],[2,4],[3,6],[2,5],[4,6],[6,7],[5,8],[3,13],[0,7],[0,6],[-2,11],[0,1],[-4,4],[0,4],[2,6],[1,11],[2,10],[1,7],[-1,3],[-2,6],[-1,3],[0,4],[1,2],[1,1],[4,27],[10,13],[12,3],[12,-7],[6,-7],[4,-4],[2,-6],[1,-8],[-1,-5],[-1,-4],[-1,-5],[-3,-10],[-6,-6],[-12,-6],[-5,-8],[-6,-14],[-4,-13],[5,-12],[1,-14],[0,-15],[-1,-9],[-2,-4],[-5,-2],[-2,-2],[-4,-7],[0,-2],[5,-10],[1,-5],[1,-13],[7,-24],[8,-35],[1,-8],[0,-11],[1,-13],[3,-12],[3,-11],[6,-7],[5,-4],[20,-3],[5,-3],[5,-2],[5,3],[2,6],[2,10],[3,9],[3,3],[4,4],[9,14],[3,3],[3,9],[2,3],[1,1],[14,5],[6,1],[5,-2],[17,-14],[5,-8],[3,-9],[1,-12],[3,-12],[5,-8],[5,3],[5,5],[9,2],[4,3],[8,13],[3,9],[3,11],[-2,7],[1,6],[2,2],[2,-3],[9,9],[7,-6],[7,-12],[4,-11],[8,1],[3,3],[3,3],[4,13],[6,3],[5,8],[5,9],[4,8],[3,12],[0,13],[-1,26],[1,13],[3,26],[7,35],[7,22],[7,18],[7,14],[2,2],[4,4],[2,2],[5,14],[4,6],[8,25],[4,8],[1,0],[2,-1],[1,1],[0,1],[0,5],[0,2],[2,2],[8,5],[2,3],[3,5],[3,4],[4,4],[4,1],[3,3],[1,8],[2,18],[2,0],[3,-7],[18,-10],[6,-5],[5,-1],[6,4],[6,11],[11,-12],[11,-17],[5,3],[4,7],[4,9],[5,20],[2,10],[1,12],[1,14],[0,2],[0,1],[1,2],[0,3],[0,4],[-2,2],[-1,1],[0,2],[-1,6],[-4,13],[-1,7],[-1,23],[2,48],[-3,23],[-6,17],[-2,10],[-1,15],[0,25],[-1,12],[-3,13],[-4,10],[-8,14],[-4,9],[-1,5],[0,6],[0,11],[-1,8],[-5,9],[-2,6],[0,6],[0,5],[1,4],[1,3],[-1,6],[-3,16],[-2,14],[1,10],[3,9],[6,12],[4,-3],[15,-6],[11,1],[4,-2],[5,-5],[3,-1],[3,1],[4,2],[2,-1],[0,-11],[5,7],[5,1],[12,-3],[4,-2],[9,-10],[3,-5],[2,-11],[1,-15],[3,-13],[5,-5],[6,-3],[11,-7],[6,1],[4,6],[9,25],[1,12],[-3,10],[-5,9],[-2,8],[3,11],[4,-1],[6,-6],[5,-4],[3,0],[2,2],[3,1],[1,3],[1,1],[7,-3],[3,0],[4,9],[1,13],[2,11],[7,3],[4,-10],[5,-8],[4,-10],[4,-26],[-1,-5],[-4,-2],[-2,0],[-5,3],[-1,1],[-1,5],[-1,7],[-1,5],[-3,0],[-2,-6],[0,-8],[2,-15],[0,-22],[2,-7],[5,-3],[2,1],[2,3],[2,2],[4,-2],[2,-4],[2,-5],[2,-5],[4,-3],[17,-4],[5,0],[12,8],[4,0],[1,-10]],[[90299,48073],[5,-5],[2,-7],[1,-9],[-1,-11],[-1,-9],[-3,-5],[-4,-2],[-6,0],[-4,3],[-3,9],[-1,11],[-1,11],[1,7],[3,2],[2,-2],[0,-1],[5,8],[2,2],[3,-2]],[[92552,48414],[9,14],[3,2],[5,-14],[2,-9],[0,-9],[-2,2],[-1,-1],[0,-1],[-4,6],[-8,6],[-4,4]],[[92583,48475],[7,0],[4,-6],[2,-10],[-2,-12],[-3,10],[-5,1],[-7,-3],[-6,-1],[2,7],[2,6],[6,8]],[[92955,48538],[7,-28],[14,-50],[6,-29],[-2,-11],[-8,34],[-5,32],[-11,31],[-9,33],[-16,21],[11,-3],[9,-9],[4,-21]],[[92402,48625],[1,-3],[4,-2],[1,-3],[0,-6],[-1,-5],[-1,-9],[-4,-20],[1,-11],[-3,-6],[-3,3],[-8,15],[-2,4],[-15,34],[-2,7],[-2,12],[1,13],[6,11],[6,10],[10,3],[11,-7],[0,-32],[0,-8]],[[91941,48718],[3,-1],[3,1],[2,-1],[2,-7],[-5,-2],[-5,-6],[-1,9],[-3,2],[-7,-3],[-12,0],[-14,7],[-6,0],[-4,-11],[-4,4],[-3,-2],[-2,-4],[-4,-2],[-1,3],[2,7],[6,10],[5,-1],[6,9],[12,20],[17,-12],[6,-7],[5,-10],[2,-3]],[[92241,48742],[2,-7],[0,-16],[-4,-10],[-3,-13],[-8,-1],[-5,17],[-4,14],[1,21],[-2,7],[-3,2],[-3,4],[-2,7],[2,0],[-1,8],[3,8],[3,3],[2,-7],[4,-13],[5,-12],[6,-8],[7,-4]],[[92225,48807],[-2,-8],[-5,-6],[-6,-4],[-11,-8],[-3,4],[0,19],[-1,14],[-1,21],[1,28],[6,0],[12,-9],[2,-2],[6,-10],[1,-2],[0,-5],[0,-12],[0,-11],[-5,-5],[1,-1],[1,-7],[3,4],[1,0]],[[92216,48893],[-6,6],[0,15],[5,14],[6,5],[5,-5],[3,-9],[3,-10],[0,-4],[-1,-2],[-1,-4],[-1,-4],[-3,-2],[-10,0]],[[92537,47941],[-2,-33],[-1,-15],[3,-15],[-7,-16],[-16,-29],[-4,-20],[1,-11],[3,-7],[3,-6],[3,-8],[1,-9],[0,-9],[0,-9],[-1,-10],[-2,-5],[-7,-9],[-2,-6],[0,-15],[0,-5],[-2,-6],[-4,-6],[-2,-5],[-2,-7],[-3,-20],[-2,-9],[-3,-5],[-3,-5],[-2,-5],[-2,-9],[-6,4],[-3,-9],[-1,-13],[-3,-11],[-3,18],[-4,18],[-7,14],[-9,11],[1,15],[-8,15],[-10,14],[-6,13],[-2,10],[0,32],[-1,4],[-6,6],[-2,4],[-1,4],[-2,30],[-3,19],[0,8],[5,28],[0,5],[4,63],[-3,14],[1,7],[0,8],[-1,7],[-2,6],[2,12],[0,10],[-2,11],[-7,20],[-14,58],[-1,17],[-2,10],[-5,17],[-6,12],[-2,8],[-1,10],[-1,3],[-4,6],[-1,3],[-1,7],[0,6],[-2,6],[-1,4],[-2,2],[-5,0],[-3,2],[-1,5],[-3,12],[-5,8],[-24,62],[-1,6],[1,14],[0,4],[-2,5],[-5,6],[-6,14],[-3,9],[-4,16],[-4,4],[-5,2],[-4,3],[-1,3],[-2,10],[-1,4],[-3,4],[-5,5],[-7,12],[-5,1],[-6,0],[-41,17],[-11,9],[-38,49],[-54,116],[-5,6],[-17,8],[-17,14],[-2,4],[-1,3],[-1,3],[-1,4],[-2,12],[-1,4],[-4,8],[-18,22],[-5,9],[-2,2],[-13,11],[-6,13],[-3,4],[-5,4],[-5,1],[-4,4],[-2,9],[-6,15],[-6,0],[-2,0],[0,3],[0,2],[-1,3],[-4,5],[-3,7],[-1,1],[-1,5],[0,2],[-4,4],[-1,2],[-2,3],[-3,2],[-10,3],[-2,3],[-3,7],[-4,7],[-1,3],[-3,3],[-3,1],[-7,2],[-7,8],[-6,1],[-22,-8],[-11,0],[-10,6],[-6,14],[0,7],[2,9],[4,4],[4,-6],[6,-5],[5,5],[11,14],[6,-9],[5,9],[0,13],[-7,4],[4,9],[0,6],[-4,4],[-3,1],[-5,1],[-4,2],[-9,9],[6,24],[-1,2],[0,5],[0,4],[6,-6],[3,-6],[2,-7],[2,-6],[9,-11],[2,-1],[1,-7],[3,-5],[7,-6],[7,-19],[3,-5],[2,-2],[12,-4],[2,-3],[2,-2],[2,-2],[1,-2],[2,-13],[2,-5],[3,-3],[3,0],[3,-2],[4,-3],[17,-16],[6,-13],[2,-22],[5,-15],[11,-4],[21,1],[3,-1],[2,-4],[1,-5],[1,-5],[3,-2],[3,1],[2,2],[3,2],[6,-3],[5,-5],[5,-7],[5,-9],[8,-23],[2,-1],[6,0],[3,-1],[16,-25],[3,1],[21,-29],[5,-12],[3,-10],[5,-13],[6,-9],[7,4],[2,-15],[3,-10],[5,-6],[4,-2],[10,1],[3,-1],[6,-6],[3,-2],[4,4],[3,-3],[5,-9],[5,-8],[1,0],[9,0],[2,-2],[4,-6],[1,-1],[4,1],[2,-1],[0,-2],[0,-2],[0,-4],[1,-2],[-1,-7],[0,-3],[1,-1],[2,-2],[1,0],[2,-5],[10,-22],[14,-42],[7,-18],[9,-15],[10,-12],[19,-20],[5,-9],[5,-6],[1,-4],[2,-22],[1,-2],[2,-2],[2,-2],[1,-3],[2,-7],[3,-8],[2,-14],[2,-7],[6,-7],[5,0],[5,6],[3,9],[4,-8],[4,-11],[2,-12],[2,-11],[1,-6],[5,-12],[1,-6],[0,-8],[-1,-5],[-1,-6],[1,-7],[3,-6],[2,-5],[0,-2],[3,-2],[3,-2],[6,0],[7,-3],[5,-7],[5,-10],[5,-9],[6,-5],[5,-4],[5,-3],[6,0],[6,5],[4,8],[3,2],[4,-15],[0,-6],[1,-12],[0,-6],[2,-6],[3,-11],[1,-6],[2,-9],[6,-4],[6,-1],[5,0],[0,1],[4,7],[3,-7],[0,-8],[0,-8],[1,-9],[3,-9],[8,-15],[4,-8],[7,-33],[5,-14],[3,-10],[-1,-4],[5,-5],[7,-11],[6,-14],[2,-13]],[[91795,48970],[2,-9],[-2,-8],[-3,-8],[-1,-10],[0,-10],[1,-8],[1,-6],[2,-6],[-2,-7],[-2,-3],[-6,-2],[-10,-8],[-3,-2],[-3,-2],[-2,0],[-1,6],[-2,6],[-4,-1],[-4,-6],[-3,-5],[-2,2],[-2,3],[-2,3],[-4,-3],[-21,-2],[-2,-1],[-2,0],[-3,2],[-2,4],[-9,20],[-6,7],[-3,4],[-4,30],[-12,29],[-4,7],[-7,-4],[-8,8],[-6,12],[0,9],[2,2],[2,-2],[2,-3],[2,-1],[2,2],[20,30],[5,1],[4,0],[3,1],[3,4],[11,8],[0,2],[4,1],[5,6],[4,1],[7,-5],[15,-19],[6,0],[2,-3],[8,-7],[2,-2],[1,-1],[3,-6],[1,-2],[8,-3],[7,-6],[7,-11],[3,-14],[-2,-18],[3,3],[1,1]],[[91062,49145],[6,-17],[4,-8],[5,-4],[-6,-23],[-5,-10],[-7,-4],[-11,0],[-4,1],[-3,3],[-6,9],[1,4],[0,2],[1,2],[7,-5],[7,6],[4,12],[-2,15],[2,3],[2,5],[1,4],[0,5],[4,0]],[[90953,49295],[2,-4],[1,-9],[-1,-18],[-3,-15],[-8,-3],[-10,1],[-9,-1],[1,3],[3,9],[-6,0],[-3,-3],[-1,-7],[-2,-10],[-1,0],[-3,9],[-2,-10],[-2,-16],[0,-8],[-3,-5],[-9,-24],[-4,-7],[-3,-2],[-3,0],[-2,0],[-4,2],[-10,10],[-2,2],[-6,-3],[-11,-12],[-7,-1],[0,2],[0,2],[2,4],[-9,-6],[-9,-4],[-9,-1],[-32,11],[-1,1],[-2,6],[-2,1],[-2,-1],[-2,-2],[-1,-1],[-2,2],[-2,4],[-2,4],[-2,2],[-2,2],[-2,8],[-1,3],[-2,2],[-1,1],[-5,0],[-7,5],[-2,-1],[-1,-5],[0,-5],[1,-4],[3,-2],[4,-4],[2,-8],[0,-8],[-4,-4],[-11,-4],[-5,2],[-2,10],[-6,-5],[-5,-2],[-3,-5],[-3,-21],[-5,-2],[-5,5],[-4,10],[-2,8],[-3,24],[0,6],[5,11],[2,4],[5,-4],[3,0],[9,5],[2,0],[1,3],[1,8],[-1,6],[-1,7],[-7,18],[-1,6],[-1,6],[0,7],[0,8],[1,2],[4,-4],[1,-2],[2,-4],[2,-3],[3,1],[1,5],[2,16],[2,4],[1,1],[0,1],[1,1],[1,1],[2,-1],[3,-6],[1,-2],[3,1],[5,3],[3,1],[3,-2],[7,-5],[4,-1],[3,2],[11,14],[8,5],[6,1],[7,-3],[6,-7],[7,5],[47,-5],[3,-3],[3,-7],[3,-8],[1,-7],[2,0],[2,10],[3,5],[3,0],[2,-4],[2,-7],[4,-1],[7,1],[12,-10],[2,0],[2,-2],[11,-8],[4,2],[8,0],[7,-3],[4,-7],[2,0],[0,16],[-1,5],[-3,10],[0,4],[-2,5],[-4,6],[-2,4],[4,3],[3,-4],[5,-10],[3,-2]],[[91592,49597],[1,-4],[4,-18],[3,-12],[6,-17],[2,-12],[-4,-1],[-7,-7],[-4,0],[-2,2],[-1,2],[-1,3],[-1,5],[-5,7],[-2,3],[-3,2],[0,-17],[-5,3],[-9,18],[-3,2],[-3,4],[-6,13],[-1,5],[-1,3],[-1,1],[-4,0],[-1,1],[-4,9],[-2,10],[0,23],[9,40],[2,7],[2,-3],[2,-1],[7,0],[2,-2],[6,-14],[17,-20],[4,-9],[1,-7],[0,-6],[0,-7],[2,-6]],[[92830,47826],[8,-7],[6,-14],[3,-16],[0,-17],[-6,-15],[-7,5],[-6,15],[0,16],[2,-6],[2,-13],[2,-5],[3,-5],[2,1],[4,9],[1,14],[-4,15],[-7,11],[-5,7],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,4],[1,2],[2,3]],[[92819,47841],[-1,13],[-3,13],[-1,10],[3,5],[2,-6],[1,-11],[1,-24],[-2,0]],[[92356,48020],[5,-10],[1,-11],[-1,-11],[-3,-12],[-2,0],[-1,1],[-7,4],[-1,1],[0,8],[-1,6],[-2,5],[-3,3],[7,10],[2,6],[3,8],[3,-5],[0,-3]],[[92684,48077],[-2,-4],[3,-26],[-3,-19],[-8,-4],[-7,17],[-1,1],[-1,-1],[-1,0],[-1,4],[0,4],[1,2],[0,3],[2,9],[4,9],[0,3],[3,6],[5,6],[5,1],[1,-11]],[[92699,48101],[5,-1],[3,-8],[-1,-9],[-3,-6],[-4,1],[-3,5],[-3,4],[-5,-2],[2,6],[6,6],[3,4]],[[92248,44309],[1,7],[3,0],[-1,-6],[-3,-1]],[[92185,44343],[0,4],[2,3],[-2,-7]],[[92180,44394],[3,5],[1,-2],[-3,-6],[-1,3]],[[90166,48397],[3,-2],[2,-3],[0,-5],[-1,-2],[-2,1],[-2,0],[-1,1],[-1,2],[0,4],[2,4]],[[90016,48566],[4,10],[6,5],[7,-15],[3,-9],[-5,-11],[-9,5],[-6,15]],[[89671,49443],[0,13],[4,9],[5,2],[4,-6],[-2,-1],[-4,-5],[-4,-6],[-3,-6]],[[91950,44761],[2,-2],[1,-4],[-1,-7],[-3,-4],[-2,2],[0,7],[-2,4],[-1,2],[-1,5],[-8,8],[-4,8],[1,9],[5,6],[6,1],[4,-3],[3,-3],[0,-6],[1,-1],[0,-3],[-1,-10],[-1,-1],[-1,-1],[0,-4],[1,-2],[1,-1]],[[89948,45439],[2,-3],[0,-6],[-3,-12],[-5,-5],[-3,7],[-1,8],[3,5],[3,2],[2,3],[2,1]],[[89909,45501],[0,-6],[2,-7],[-1,-6],[-3,-4],[-6,2],[-6,8],[-10,24],[-13,13],[2,8],[14,2],[11,-5],[5,-8],[3,-11],[2,-10]],[[89905,45667],[5,-7],[3,-9],[0,-10],[-6,-8],[-10,1],[-5,16],[-4,16],[4,10],[7,-3],[4,-3],[2,-3]],[[89909,45700],[3,-7],[3,-15],[-2,-5],[-4,4],[-8,5],[-11,2],[-7,7],[-2,11],[-3,12],[4,7],[9,-1],[13,-12],[5,-8]],[[91996,47573],[5,-6],[5,-10],[0,-9],[-5,-8],[-3,-3],[-7,-2],[-5,1],[-2,4],[-4,5],[-3,8],[0,6],[4,8],[2,3],[5,5],[4,0],[4,-2]],[[89884,48469],[-5,0],[-8,6],[-1,1],[-3,3],[-5,8],[1,6],[1,4],[1,6],[2,4],[5,-2],[7,-8],[7,-10],[2,-12],[-4,-6]],[[91667,49479],[4,1],[1,-2],[-1,-4],[-5,-3],[-7,1],[-4,4],[-1,1],[-3,2],[-2,-2],[-1,-1],[0,-3],[-2,-1],[-3,5],[-2,7],[0,6],[3,2],[6,-4],[3,4],[1,10],[2,2],[3,-7],[2,-9],[2,-6],[4,-3]],[[59690,67934],[-3,-3],[-2,-3],[-2,-4],[-2,-6],[-2,-7],[-1,-6],[-1,-5],[-4,-2],[1,-1],[1,0],[0,-1],[0,-3],[-2,-2],[-2,-3],[-1,-3],[1,-4],[-2,-1],[-1,-1],[0,-3],[1,-3],[-3,-5],[-6,-19],[-2,-3],[-2,-3],[-2,-2],[-1,-3],[-1,-4],[-1,-3],[-3,-3],[0,-3],[3,-9],[-1,-8],[-2,-8],[-2,-8],[0,-30],[-1,-8],[-3,-5],[-4,-4],[-1,-4],[0,-8],[-1,-9],[-2,-10],[-3,-7],[1,-7],[-1,-36],[1,-5],[3,-8],[0,-7],[-1,-7],[-2,-3],[-2,-2],[-7,-7],[0,-4],[-1,-7],[0,-4],[1,-12],[1,-35],[-8,-10],[0,-4],[1,-5],[1,-9],[0,-8],[-2,-7],[1,-2],[1,-3],[2,-7],[-3,-3],[0,-3],[0,-4],[1,-4],[-1,-6],[-1,-4],[-1,-3],[-1,-3],[-1,-11],[-7,-17],[-4,-27],[-11,-32],[-3,-17],[-1,-2],[0,-1],[0,-1],[-1,0],[3,-18],[-3,-11],[-6,-9],[-6,-11],[1,-1],[1,-3],[-4,-4],[-2,-7],[-3,-27],[-1,-6],[-3,-10],[-1,-7],[-4,-15],[-1,-7],[0,-10],[1,-8],[1,-6],[2,-7],[0,-3],[-2,-10],[2,-9],[3,-8],[3,-10],[3,-5],[0,-3],[0,-4],[0,-3],[-1,-1],[-1,-2],[0,-8],[-2,-20],[-4,-17],[5,-17],[-4,-41],[2,-5],[-8,-2],[-2,-2],[-1,-3],[-1,-6],[-1,-5],[-3,-4],[-2,-9],[-2,-1],[-3,-1],[-3,-2],[-3,-1],[0,-3],[1,0],[1,-2],[-2,-9],[-3,-17],[-3,-6],[-2,0],[0,3],[-3,2],[-2,2],[-2,-3],[-1,-13],[-3,-7],[2,-7],[-3,-7],[-6,-4],[-3,-2],[-3,0],[-1,0],[1,-9],[1,-4],[10,0],[0,-3],[-2,0],[0,-5],[2,-2],[1,-3],[1,-7],[-3,3],[-1,1],[1,-2],[0,-1],[1,-1],[0,-4],[-2,0],[-1,5],[-5,12],[-5,11],[-3,4],[-2,2],[-5,3],[-26,6],[-7,8],[-19,43],[-1,2],[-2,-1],[-16,28],[-4,3],[-3,1],[-4,-5],[-3,16],[-2,-4],[-3,6],[-10,15],[-2,2],[-1,1],[-1,3],[-1,5],[0,2],[-2,3],[-2,2],[-5,2],[0,15],[-13,15],[0,11],[-4,6],[-5,12],[-3,13],[0,9],[-1,2],[-1,1],[-1,2],[-1,3],[-1,0],[0,-4],[-2,0],[-1,3],[-3,5],[0,2],[-4,29],[-2,4],[-2,-2],[-2,8],[-6,18],[-3,10],[-36,41],[-2,6],[-1,1],[-7,21],[-5,9],[-3,8],[0,3],[-18,25],[-3,5],[-1,5],[-1,5],[-2,7],[-4,7],[-3,3],[2,4],[0,-4],[2,0],[-2,19],[-5,2],[-2,-8],[5,-9],[-4,3],[-3,8],[-2,11],[-1,24],[-2,10],[-5,17],[3,12],[4,28],[2,13],[-3,8],[-2,5],[-1,12],[-2,2],[-3,2],[-2,3],[-1,11],[-1,27],[-1,7],[0,4],[2,5],[0,6],[-1,13],[0,3],[-1,9],[-1,9],[1,4],[2,4],[-1,8],[-4,6],[-1,0],[-1,6],[-2,5],[-2,1],[-3,-2],[-3,7],[-7,8],[-3,5],[-4,15],[0,4],[-1,3],[-4,6],[-1,3],[-1,1],[-4,13],[-1,1],[-3,2],[0,1],[-1,2],[-1,5],[0,1],[-13,25],[-4,2],[-6,7],[-6,8],[-4,7],[-1,9],[-2,12],[-1,11],[-4,5],[-3,1],[-2,5],[-5,26],[-1,0],[1,22],[-1,10],[-7,7],[-14,18],[2,0],[-1,4],[-1,2],[-1,1],[-2,1],[0,1],[1,2],[1,2],[-1,3],[-1,0],[-2,-5],[0,-4],[0,-4],[2,-3],[-4,0],[2,22],[0,27],[-3,25],[-9,11],[0,4],[2,7],[0,8],[-1,9],[-1,9],[1,8],[2,12],[1,6],[0,10],[-1,6],[-1,5],[-2,6],[-6,15],[-1,7],[-2,3],[-6,13],[-6,5],[2,6],[3,5],[1,2],[0,17],[-4,11],[-11,21],[3,3],[1,3],[-1,3],[-1,3],[1,1],[1,1],[-1,1],[-1,1],[-1,4],[-2,3],[-1,3],[-1,2],[1,2],[1,1],[1,1],[2,0],[0,4],[-1,4],[0,4],[1,5],[-2,0],[-4,-15],[0,-6],[1,-5],[1,-3],[2,-4],[0,-8],[-2,0],[-1,8],[-2,4],[-3,0],[-3,-4],[-5,3],[-6,-6],[-4,-11],[-3,-10],[0,-11],[2,-9],[4,-6],[6,-3],[-5,-7],[-23,-61],[-2,-5],[-3,-5],[-8,-28],[-1,-9],[0,-25],[-2,-10],[-4,-8],[0,-4],[3,-5],[3,-8],[3,-8],[2,-13],[3,-6],[14,-17],[4,-6],[12,-27],[9,-10],[8,-15],[7,-18],[3,-11],[1,-15],[2,-19],[4,-18],[4,-11],[0,-4],[-1,-10],[8,-59],[0,-5],[1,-13],[-2,-5],[-3,-5],[-1,-7],[-3,-2],[-1,-6],[2,-6],[-1,-17],[-1,-21],[2,-7],[8,-16],[3,-8],[1,-6],[0,-12],[1,-6],[7,-13],[1,-1],[11,-31],[10,-3],[6,-12],[4,-18],[13,-88],[1,-12],[3,-3],[13,-14],[7,-12],[3,-8],[3,-10],[2,-2],[3,-2],[3,-2],[1,-4],[2,-12],[8,-29],[2,-4],[0,-3],[0,-1],[-1,0],[-1,0],[12,-19],[6,-13],[-1,-12],[2,-4],[2,-6],[2,-8],[0,-5],[1,-2],[7,-17],[13,-26],[3,-13],[3,-3],[3,-3],[2,-3],[2,-8],[-1,-6],[1,-5],[5,-1],[5,-5],[9,-21],[6,-7],[0,-3],[0,-5],[0,-4],[-1,-5],[3,-3],[3,-2],[3,2],[2,-9],[6,-5],[13,-7],[19,-34],[7,-25],[3,-6],[2,-6],[6,-27],[1,-7],[0,-4],[1,-4],[1,-12],[2,-4],[0,-4],[-2,0],[-4,0],[-3,13],[-7,8],[-7,5],[-6,6],[-2,0],[-2,-8],[0,-5],[0,-4],[2,-7],[5,-10],[3,-8],[1,-9],[2,-4],[4,2],[4,4],[2,-2],[0,-8],[-1,-8],[-2,-8],[-3,-6],[1,-2],[2,-4],[1,-2],[5,-7],[2,-1],[1,-2],[2,-11],[2,-4],[0,-4],[-3,5],[-7,16],[-2,0],[0,-4],[1,-4],[1,-5],[-2,0],[-2,12],[-5,-1],[-5,-8],[-3,-11],[6,-6],[5,-12],[8,-26],[-1,-4],[-1,-5],[0,-5],[0,-7],[5,-6],[12,-11],[4,-7],[1,-5],[0,-13],[1,-6],[2,-5],[5,-10],[2,-6],[1,-12],[2,-26],[2,-8],[9,-17],[11,-14],[12,-10],[5,-8],[4,-10],[1,-6],[-1,-23],[-1,-2],[-2,-3],[-1,-3],[0,-3],[2,-5],[0,-4],[0,-13],[2,-10],[2,-8],[6,-7],[4,-9],[5,-13],[2,-10],[-4,1],[0,-9],[2,-8],[6,-15],[2,-9],[4,-17],[2,-8],[4,-6],[4,-4],[3,-4],[2,-7],[2,-19],[0,-9],[-2,-7],[-5,0],[-3,5],[-2,3],[-4,-12],[0,-7],[0,-11],[0,-10],[1,-8],[0,-16],[-5,-36],[3,-17],[3,-6],[9,-5],[5,-5],[3,-9],[2,-18],[10,-23],[3,-16],[10,-52],[4,-16],[6,-16],[3,-15],[7,-19],[24,-104],[10,-31],[11,-51],[22,-58],[2,-8],[3,-17],[18,-53],[10,-21],[3,-7],[24,-92],[4,-28],[6,-25],[3,-30],[5,-16],[12,-30],[2,-7],[3,-18],[1,-8],[9,-24],[3,-26],[13,-43],[24,-80],[1,-19],[3,-16],[4,-11],[6,-12],[1,-11],[0,-22],[1,-11],[1,-9],[2,-7],[4,-5],[4,-6],[7,-13],[5,-17],[7,-46],[1,-8],[5,-15],[5,-19],[4,-7],[0,-9],[-4,-19],[0,-16],[11,-9],[14,-50],[38,-56],[5,-14],[11,-57],[7,-16],[11,-30],[4,2],[-2,8],[-2,8],[3,1],[5,-11],[8,-7],[10,-20],[4,-17],[1,-17],[8,-10],[9,3],[7,-4],[7,-4],[6,-6],[4,-9],[6,-26],[5,-13],[-2,-6],[-4,12],[-6,12],[-4,0],[-10,-9],[-4,-4],[-6,5],[-5,4],[-5,2],[-4,-1],[-4,1],[-5,4],[-2,5],[-3,7],[-3,2],[0,3],[-5,4],[-6,3],[-2,-3],[-4,-14],[-2,-18],[2,-28],[-3,-25],[-1,-18],[2,-15],[5,-2],[2,-7],[0,-9],[-1,-4],[1,-10],[0,-7],[0,-13],[-1,-25],[0,-51],[-1,-10],[-3,-16],[0,-9],[1,-9],[2,-9],[6,-16],[5,-18],[2,-9],[1,-10],[-1,-28],[3,-28],[2,-22],[2,-20],[13,-43],[4,-17],[5,-22],[4,-54],[2,-9],[6,-21],[11,-28],[8,-8],[-4,9],[-7,27],[5,0],[4,-5],[2,-9],[2,-10],[3,-29],[1,-5],[4,-6],[3,-7],[1,-7],[4,-9],[5,-13],[11,-16],[10,-8],[5,-3],[1,-2],[3,-5],[4,-4],[4,-3],[16,-2],[22,-8],[21,-15],[8,-9],[14,-26],[4,-14],[2,-27],[4,-18],[9,-15],[8,-13],[5,-4],[4,-3],[-1,9],[1,0],[6,-13],[-1,-17],[5,-25],[18,-16],[10,-11],[6,-8],[17,-28],[25,-47],[5,-6],[4,1],[1,3],[1,4],[1,2],[2,-1],[5,-6],[2,-4],[1,-4],[4,-18],[3,-7],[4,-8],[11,-13],[6,-4],[1,-22],[0,-7],[-2,-7],[-2,-6]],[[56986,69217],[-1,-4],[4,-39],[3,-19],[5,-12],[6,-3],[14,-2],[11,-10],[6,0],[12,4],[3,-2],[3,-3],[4,-1],[5,6],[6,3],[9,2],[45,23],[52,32],[12,4],[27,-3],[110,-56],[80,-19],[5,-5],[4,-3],[14,2],[6,-1],[20,-17],[11,-7],[13,0],[10,7],[5,1],[5,-6],[3,-7],[3,-2],[3,0],[3,-2],[8,-8],[17,-10],[19,-4],[7,-4],[4,-6],[2,3],[3,3],[1,2],[3,-1],[17,1],[2,-1],[2,-3],[3,-4],[-1,-2],[0,-2],[1,-4],[2,-8],[1,-3],[1,-1],[1,-2],[0,-9],[1,-3],[2,-7],[3,-18],[3,-8],[6,-10],[8,-8],[9,-6],[18,-5],[6,-5],[7,-2],[6,6],[14,-14],[16,5],[33,29],[4,2],[3,-4],[2,-9],[0,-11],[1,-5],[5,-22],[1,-19],[1,-5],[8,-9],[13,-4],[50,1],[3,-2],[3,-3],[2,-4],[2,-3],[4,-2],[8,2],[6,-1],[12,-6],[6,-1],[5,2],[12,11],[7,3],[5,-2],[5,-4],[4,-6],[4,-6],[2,-3],[10,0],[4,-1],[3,-2],[4,-5],[50,-32],[10,-10],[5,-5],[7,-1],[1,-4],[2,-15],[1,-6],[2,-3],[6,-2],[48,-47],[45,4],[8,2],[38,34],[41,37],[15,20],[11,11],[2,1],[2,6],[2,5],[41,54],[4,16],[8,-3],[8,7],[13,21],[-3,6],[-1,0],[-2,-2],[1,6],[3,4],[2,0],[1,-6],[2,0],[4,6],[13,21],[3,5],[4,3],[6,14],[2,4],[4,1],[2,3],[2,4],[2,4],[-1,0],[-1,1],[0,3],[8,8],[-1,-17],[8,-12],[1,0],[11,-6],[10,-2],[-3,-3],[-3,-6],[-2,-3],[0,-3],[0,-1],[1,0],[1,0],[-3,-4],[1,-5],[3,-4],[3,-3],[11,12],[-1,-7],[1,-3],[3,-1],[1,1],[1,4],[8,14],[1,-3],[1,-1],[1,3],[1,2],[0,3],[0,4],[2,0],[0,-6],[1,-5],[1,-3],[2,-2],[1,4],[3,16],[-4,4],[-4,-2],[-4,-3],[-5,-3],[0,4],[1,0],[2,0],[0,4],[-4,-2],[-16,-2],[0,4],[10,5],[10,10],[17,28],[6,18],[4,24],[1,25],[-3,20],[2,0],[2,-11],[2,-11],[4,-8],[5,-2],[-7,11],[-4,17],[1,11],[10,-11],[8,-10],[9,-7],[10,-2],[12,3],[39,19],[82,54],[0,-4],[-4,-1],[-26,-18],[-21,-22],[-15,-13],[-12,-15],[-1,-1],[-4,-1],[-2,-2],[-11,-13],[-5,-4],[-11,-1],[-2,-3],[-1,0],[-5,-11],[0,-5],[6,-3],[2,0],[2,3],[2,0],[4,-4],[8,0],[7,5],[4,5],[2,10],[6,-3],[6,-9],[3,-8],[2,0],[2,10],[4,11],[5,8],[4,4],[3,2],[3,-3],[3,-4],[4,-4],[3,1],[4,2],[3,1],[4,-4],[-1,0],[-1,0],[0,-1],[0,-3],[4,-1],[4,2],[5,6],[4,6],[-1,1],[-1,-1],[0,1],[0,3],[1,1],[0,1],[1,2],[9,-8],[2,-4],[3,4],[2,4],[3,12],[-2,5],[1,4],[5,7],[0,4],[0,3],[0,3],[2,2],[1,1],[10,-1],[3,-2],[5,-6],[0,-2],[0,-3],[1,-2],[2,-1],[3,1],[1,3],[1,4],[-5,5],[2,2],[2,1],[2,-1],[-6,14],[-11,15],[-13,11],[-13,0],[3,3],[7,5],[24,6],[8,-1],[26,-15],[36,-30],[8,-7],[11,-16],[29,-24],[9,-4],[4,0],[7,1],[42,22],[25,25],[10,7],[11,-1],[9,-8],[4,-16],[1,-7],[9,-22],[4,-17],[4,-10],[9,-15],[3,-2],[7,-3],[3,-3],[7,-14],[2,-2],[4,-4],[11,-16],[3,-3],[-9,3],[-27,32],[1,0],[2,0],[0,-1],[2,-3],[0,4],[-2,3],[-1,1],[-6,1],[-1,2],[-1,3],[-1,2],[-8,8],[-3,4],[-1,0],[-2,0],[-1,8],[-2,7],[-2,6],[-3,4],[4,0],[3,1],[-13,31],[-3,10],[-4,10],[-4,3],[0,-3],[-4,4],[-2,-2],[-1,-6],[-4,4],[0,-1],[0,-4],[0,-2],[-1,1],[-2,1],[-1,1],[0,-4],[-1,-4],[-1,-4],[6,0],[-2,-6],[5,-14],[-1,-8],[2,0],[0,-4],[-2,0],[0,-3],[1,-3],[1,-3],[-2,0],[-1,8],[-2,5],[-3,3],[-4,1],[1,4],[-1,1],[-2,-4],[-2,-9],[2,-1],[1,1],[1,4],[2,-3],[2,-1],[2,0],[0,-4],[-2,0],[0,-5],[1,-3],[2,-3],[2,-1],[3,0],[-2,-4],[-3,-1],[-3,1],[-2,4],[-2,0],[0,-3],[0,-1],[-1,0],[-1,-1],[1,-1],[1,-2],[2,-5],[-4,-9],[-1,-7],[3,-3],[6,-1],[0,-4],[-4,1],[-3,2],[-2,1],[-3,-4],[-1,0],[-2,4],[-2,-1],[-1,-3],[-1,-6],[1,-3],[2,-2],[1,-2],[-4,-3],[0,-4],[2,-6],[-2,-2],[-4,-1],[-2,-4],[0,-8],[1,-5],[3,-2],[3,3],[1,0],[-1,1],[-1,1],[0,2],[4,-3],[2,-1],[2,0],[3,-2],[0,-6],[0,-5],[1,-3],[3,-1],[5,-4],[4,-6],[3,-5],[2,9],[1,4],[2,3],[-1,-5],[0,-4],[0,-3],[1,-4],[-4,0],[0,-4],[4,0],[-1,-2],[0,-1],[-1,-1],[0,-4],[2,0],[0,1],[1,2],[1,1],[0,-1],[0,-1],[1,-2],[1,0],[0,4],[2,0],[-1,-8],[1,-6],[2,0],[2,10],[3,0],[4,9],[6,7],[6,-4],[-4,0],[0,-4],[4,-4],[1,3],[1,2],[2,3],[4,-4],[0,-4],[-2,-3],[0,-2],[0,-7],[3,2],[1,2],[-1,-5],[0,-4],[-1,-2],[-2,-2],[0,-3],[1,-5],[1,-7],[-6,-9],[0,-4],[3,0],[2,1],[2,3],[1,4],[1,0],[1,-6],[0,-1],[0,-4],[2,-3],[3,-2],[0,-4],[-3,-2],[-2,-2],[-1,-3],[-1,-5],[1,-2],[2,-3],[3,4],[2,0],[3,-1],[1,-3],[0,-3],[-1,0],[0,-5],[2,-4],[4,-3],[4,0],[3,4],[0,3],[-4,1],[-3,3],[-2,6],[0,7],[4,-2],[5,-5],[3,-1],[1,-1],[-2,9],[4,0],[2,0],[0,4],[-2,1],[0,1],[0,1],[0,1],[3,4],[1,-4],[2,0],[1,0],[-1,6],[2,4],[3,1],[3,-10],[4,-2],[4,-1],[4,2],[7,7],[3,10],[-1,11],[-5,9],[7,0],[1,0],[1,17],[0,9],[-1,10],[-5,11],[-1,5],[4,4],[-4,5],[-6,4],[-6,1],[-3,-2],[-2,10],[3,-1],[4,0],[7,-3],[12,-4],[3,-5],[2,0],[3,-1],[1,-10],[3,-7],[4,-5],[9,-5],[3,-5],[5,-12],[12,-21],[5,-8],[8,-24],[7,-12],[8,-10],[10,-5],[0,-1],[13,0],[11,2],[21,10],[25,23],[4,6],[12,11],[3,4],[2,0],[0,-4],[-9,-6],[-15,-22],[-9,-4],[-16,-13],[-24,-12],[14,0],[0,-4],[-4,-4],[8,0],[4,3],[1,5],[2,0],[0,-3],[1,-1],[1,1],[2,-1],[17,20],[15,9],[2,4],[2,0],[1,-3],[4,-2],[-1,-3],[-2,0],[0,-5],[3,2],[7,7],[0,4],[-8,0],[0,4],[4,3],[5,-3],[4,-5],[2,-7],[1,-4],[1,-6],[0,-3],[-4,0],[10,-6],[4,1],[4,5],[0,5],[-3,3],[-1,0],[0,5],[10,5],[3,3],[-1,4],[0,5],[2,5],[1,6],[-2,0],[-2,-4],[-6,-8],[0,-2],[-1,-2],[0,-2],[1,-2],[-3,-2],[-7,1],[-6,1],[-5,4],[9,1],[5,9],[3,12],[4,10],[4,3],[7,3],[3,2],[5,10],[3,3],[5,0],[0,-4],[-8,0],[0,-4],[4,-5],[10,-24],[3,-10],[-1,-3],[-4,-2],[-4,-5],[0,1],[0,2],[0,1],[-2,0],[0,-4],[5,-6],[2,-8],[0,-9],[-3,-10],[10,8],[5,2],[4,-1],[2,0],[1,0],[3,0],[0,3],[-4,5],[-2,0],[0,-5],[-2,0],[0,5],[15,10],[4,6],[2,0],[-2,-4],[2,-4],[2,3],[2,0],[2,-2],[1,-6],[3,0],[0,6],[0,5],[-1,1],[4,1],[-2,3],[-3,-1],[-3,0],[-3,2],[30,4],[-2,11],[4,2],[4,1],[0,10],[3,-2],[1,-2],[2,0],[4,2],[11,-11],[5,-3],[20,-4],[6,-4],[0,4],[6,-3],[9,1],[57,27],[54,39],[42,50]],[[59431,66335],[5,0],[1,0],[6,-23],[2,-11],[0,-14],[-4,7],[-2,8],[-8,33]],[[59446,66761],[6,-4],[2,-10],[1,-11],[3,-7],[0,-4],[-2,1],[-4,1],[-5,11],[-1,3],[-6,4],[-3,3],[-2,6],[-3,4],[-7,-6],[-2,4],[-2,7],[-1,7],[1,3],[2,3],[2,1],[3,0],[6,-1],[2,-3],[2,-3],[3,-4],[1,-2],[4,-3]],[[59606,67025],[5,-7],[5,-9],[0,-4],[-10,-2],[-10,1],[-8,6],[-6,14],[0,1],[0,8],[-1,12],[-1,4],[1,3],[0,1],[1,-4],[1,5],[1,4],[2,2],[2,1],[4,-4],[2,-3],[1,-5],[-7,-2],[-3,-3],[-1,-7],[1,-2],[1,-3],[5,-1],[8,3],[3,2],[1,-1],[1,0],[1,-4],[1,-4],[0,-2]],[[59160,68877],[-1,3],[-1,0],[2,2],[1,0],[1,-4],[1,-6],[-3,5]],[[59271,68941],[8,-3],[7,-8],[12,-18],[-6,8],[-43,34],[-8,3],[9,-1],[14,-12],[7,-3]],[[59188,68963],[7,8],[44,-10],[-2,-3],[-3,0],[-9,3],[-8,2],[-8,3],[-10,-5],[-4,2],[-8,-5],[-33,-33],[-6,-9],[3,9],[7,6],[5,5],[3,4],[4,5],[15,12],[3,6]],[[59647,67026],[0,-22],[-7,-7],[-7,4],[-5,9],[5,17],[14,-1]],[[64747,60326],[0,-1],[-6,-6],[-13,-7],[-11,5],[-3,-6],[-3,-1],[-3,0],[-3,-4],[-5,-11],[-3,-5],[-7,-4],[-10,-12],[-11,-4],[-6,-5],[-10,-13],[-5,-4],[-38,-21],[-18,-17],[-31,-45],[-29,-47],[-7,-17],[-4,-11],[-5,-21],[-9,-22],[-2,-7],[-1,-7],[0,-6],[1,-7],[1,-6],[0,-2],[-2,-11],[-6,-14],[-3,-24],[-7,-17],[-1,-10],[2,-12],[4,-13],[3,-14],[-3,-24],[4,-9],[9,-10],[0,-8],[-2,-43],[1,-26],[3,-25],[2,-3],[1,-3],[1,-4],[0,-3],[-2,-6],[0,-3],[0,-4],[-1,-5],[-2,-3],[-2,-2],[-6,-1],[-42,-25],[-2,-4],[-2,-4],[-2,-3],[-2,-1],[-5,-1],[-3,-1],[-21,-18],[-11,-14],[0,-13],[0,-3],[-1,0],[-1,-1],[0,-7],[-1,-1],[-1,2],[-2,2],[-2,2],[-2,4],[-3,1],[-3,-5],[-2,-2],[-14,-6],[-22,-25],[-4,-7],[-1,-9],[2,-11],[2,-7],[0,-4],[-6,-4],[-29,-6],[-6,-3],[-4,-6],[-5,-6],[-6,-16],[-6,0],[-2,-2],[-1,-4],[-3,0],[-14,-13],[-4,-5],[-7,5],[-8,-7],[-7,-10],[-5,-5],[-56,-30],[-60,-24],[-53,-30],[-30,-6],[-26,-23],[-8,-9],[-20,-37],[-4,-5],[-12,-4],[-16,-18],[-18,-26],[-4,0],[-5,4],[-7,-3],[-12,-11],[-5,-4],[-2,0],[-3,-1],[-2,13],[-1,6],[-3,0],[-4,-3],[-18,-4],[-40,-27],[-61,-33],[-33,-37],[-11,-10],[-13,-5],[-6,-5],[-11,-16],[-23,-23],[-11,-15],[-2,-19],[-3,1],[-4,4],[-5,4],[-7,-1],[-6,-7],[-4,-8],[-14,-41],[-5,-21],[-2,-24],[2,-3],[0,-7],[-1,-7],[-1,-4],[-3,-5],[-11,-9],[-3,-4],[-1,-14],[-4,-5],[-5,-2],[-5,-5],[-1,-4],[-1,-5],[0,-14],[-1,-3],[-2,-3],[-2,-4],[-2,-16],[-5,-7],[-11,-9],[-16,-43],[-5,-6],[-2,-2],[-3,-5],[-2,-2],[-2,0],[-2,0],[-32,2],[-5,-3],[-12,-23],[-3,-2],[-2,0],[-3,-1],[-2,-5],[-5,13],[-10,4],[-21,-1],[0,-2],[2,-6],[-12,0],[-32,-20],[1,15],[-4,9],[-6,7],[-4,6],[-2,-5],[-8,8],[-25,13],[-4,-5],[-15,-10],[-4,-1],[-4,-6],[-14,-35],[-13,-14],[-43,-30],[-6,-8],[-22,-50],[-36,-66],[-10,-14],[-65,-41],[-71,-31],[-24,-33],[-34,-28],[-5,-2],[-5,2],[-10,7],[-7,0],[-6,-4],[-12,-11],[-5,-2],[-58,0],[-12,4],[-6,7],[-4,3],[-1,-3],[-2,-2],[-7,-5],[-24,-8],[-47,-4],[-5,-2],[-9,-8],[-4,-2],[-12,1],[-5,-1],[-3,-4],[-39,-18],[-9,-10],[-27,-57],[-7,-12],[-4,-8],[-4,-22],[-13,-35],[-9,-17],[-10,-10],[-48,-24],[-11,-12],[-10,-18],[-4,-10],[-1,-5],[-2,-6],[0,-1],[-2,-10],[0,-11],[-1,-2],[-6,-35],[-1,-6],[2,-24],[-1,-8],[-6,-4],[-6,2],[-6,6],[-4,8],[0,8],[5,4],[5,-1],[5,1],[2,10],[-1,1],[-4,11],[-1,3],[0,2],[0,3],[0,2],[-1,1],[-2,-1],[0,-3],[0,-3],[0,-1],[-2,-7],[-1,-1],[-2,0],[-2,3],[-2,1],[-6,-1],[-3,-2],[-1,-3],[-2,-9],[-5,-8],[-5,-2],[-4,8],[-3,-4],[-1,-5],[1,-15],[2,4],[2,1],[8,-2],[1,-2],[0,-7],[-2,-7],[-4,-6],[-5,-5],[-3,2],[-8,7],[-3,3],[-1,5],[0,2],[-1,2],[-3,3],[-7,2],[-6,-4],[-10,-14],[-1,2],[-1,4],[0,2],[1,6],[-2,8],[-3,8],[-4,6],[-11,9],[-12,1],[-10,-5],[-9,-9],[-14,-26],[-16,-35],[-1,-3],[-2,-7],[-2,-4],[-1,8],[-1,1],[-7,-5],[-8,-4],[-18,-18],[-6,-2],[-6,2],[-5,-1],[-10,-11],[-6,-1],[-6,4],[-3,9],[4,-1],[7,-3],[3,0],[3,4],[0,8],[-2,4],[-3,-4],[-8,2],[-9,-8],[-16,-18],[-8,-5],[-5,0],[-7,5],[-8,-8],[-4,-1],[-6,8],[-5,20],[-4,5],[-5,1],[-5,5],[-8,10],[-4,5],[-5,4],[-6,2],[-6,1],[-4,3],[-11,13],[-5,5],[-10,-1],[-3,3],[-4,6],[-3,3],[-2,1],[-4,-3],[-16,-33],[-1,-3],[-4,-4],[-6,-2],[-6,2],[-2,6],[5,47],[1,23],[-3,21],[-5,19],[-9,16],[-1,6],[-1,7],[-2,5],[-2,4],[-1,5],[0,11],[-1,11],[-2,11],[-2,9],[-10,24],[-2,7],[0,4],[-4,14],[-2,15],[-1,5],[-17,43],[-6,43],[3,18],[3,20],[1,105],[6,19],[1,5],[1,4],[1,4],[3,3],[-4,19],[1,41],[-1,21],[-9,37],[-2,6],[-2,48],[-2,6],[-18,40],[-7,32],[-5,27],[-7,18],[-3,45],[-2,21],[-3,18],[-5,30],[-8,55],[-2,12],[-1,18],[-4,17],[-1,19],[-1,5],[-1,4],[-5,7],[-1,4],[0,7],[1,3],[2,-1],[3,-5],[3,-12],[4,-27],[4,-8],[0,18],[-1,8],[-1,7],[4,24],[-3,20],[-6,18],[-3,19],[1,4],[2,6],[1,4],[0,3],[-1,2],[-1,1],[-1,7],[-2,3],[-2,2],[0,2],[-1,3],[-1,3],[-2,4],[-2,20],[0,7],[-3,21],[-13,35],[-3,21],[-1,12],[0,7],[3,-1],[1,-5],[-1,-4],[0,-4],[0,-7],[2,-11],[3,-12],[4,-11],[6,-7],[0,9],[2,20],[0,12],[-3,21],[-2,19],[-1,8],[-2,6],[-7,14],[-4,8],[-1,10],[-1,14],[1,32],[-1,10],[-4,10],[-10,9],[-9,16],[-5,7],[-6,6],[-6,5],[-6,3],[-6,0],[-4,-5],[-1,-12],[-4,-2],[-6,5],[-5,10],[-1,13],[-1,8],[3,1],[9,-5],[5,2],[3,4],[1,6],[1,8],[0,6],[-3,9],[-1,7],[8,28],[2,7],[1,-8],[0,-10],[-2,-9],[-3,-6],[6,-5],[4,-5],[11,-20],[1,-4],[1,-8],[-1,-11],[1,-4],[4,-3],[0,5],[0,3],[-1,2],[-1,2],[4,9],[2,13],[-1,46],[-2,21],[-5,16],[-1,9],[0,6],[1,6],[0,8],[0,7],[-1,7],[-1,7],[-4,15],[-11,31],[0,5],[4,9],[-3,6],[-2,6],[-2,9],[-1,9],[3,21],[-1,9],[-6,5],[2,9],[3,5],[3,4],[4,6],[2,6],[1,5],[1,6],[0,10],[1,16],[4,12],[5,8],[5,6],[5,9],[3,10],[1,14],[2,81],[-1,27],[-7,83],[-1,44],[-1,4],[-1,13],[0,-1],[0,2],[0,3],[0,3],[-1,3],[-2,6],[-1,2]],[[64791,57648],[5,5],[5,-1],[3,-4],[3,-2],[1,-4],[-9,2],[-4,0],[-4,4]],[[64736,57680],[5,0],[4,-6],[1,-10],[0,-8],[-4,-3],[-5,-1],[-8,7],[-6,10],[-6,4],[1,5],[5,3],[3,-1],[3,3],[3,0],[4,-3]],[[64524,57695],[9,-7],[15,7],[4,-2],[1,-6],[-3,-3],[-3,-6],[2,-4],[3,-10],[-8,3],[-4,-1],[-4,-3],[-13,5],[-12,1],[-2,5],[-3,9],[-2,0],[-1,0],[-6,-3],[-3,-1],[-1,2],[-3,9],[-1,3],[-2,-1],[-5,5],[-4,-1],[-3,-2],[-2,3],[-1,2],[-9,9],[-1,8],[4,2],[4,1],[7,0],[8,-4],[8,-12],[6,-4],[5,0],[8,-3],[12,-1]],[[62063,57975],[4,-4],[0,-2],[2,-6],[-1,-9],[-3,-3],[-2,1],[-3,7],[-2,4],[-3,-2],[-2,2],[-1,8],[2,3],[3,1],[6,0]],[[65130,57898],[7,2],[6,7],[3,-1],[3,-4],[-3,-7],[-8,-5],[-6,-4],[-6,-2],[-3,-5],[0,-16],[-12,-10],[-9,-5],[-11,-9],[-13,2],[-10,-8],[-3,-5],[-5,-15],[-2,-4],[-8,-6],[-8,-14],[-4,-5],[-8,2],[-13,-2],[-4,1],[-5,-2],[-6,-11],[-7,4],[-4,3],[-9,-5],[-11,-4],[-34,-13],[-12,-3],[-17,4],[-15,9],[-12,7],[-6,12],[-5,12],[-4,11],[-4,14],[-7,5],[-12,16],[-29,38],[-6,13],[-1,3],[2,4],[8,-4],[5,1],[6,7],[2,2],[0,6],[3,10],[1,6],[-2,35],[4,3],[4,2],[12,4],[3,9],[3,9],[2,6],[6,1],[15,-6],[9,-2],[7,1],[6,2],[11,-21],[19,-30],[13,-7],[11,-5],[5,14],[3,15],[8,3],[5,-1],[5,-5],[9,2],[10,0],[10,12],[4,3],[6,9],[3,7],[8,1],[3,-7],[4,-6],[6,-8],[4,2],[4,4],[1,-1],[3,-7],[2,-5],[5,-1],[7,-2],[2,-9],[4,-4],[10,-9],[11,-5],[12,-13],[6,-4],[13,-18]],[[61866,58608],[12,18],[5,4],[4,-6],[-1,-11],[-8,-19],[-2,-12],[-3,-6],[-16,-14],[0,7],[0,1],[2,13],[7,25]],[[61877,58799],[2,4],[8,-20],[2,-9],[0,-6],[-4,-22],[0,-18],[0,-11],[-2,-4],[-7,1],[3,16],[-6,5],[-7,8],[-2,4],[-3,7],[-1,2],[-2,12],[3,9],[5,11],[7,8],[4,3]],[[61843,59617],[-7,-10],[-1,-4],[1,-1],[0,-2],[-1,-4],[-3,-4],[-4,-4],[0,-3],[3,-1],[3,2],[4,4],[3,-1],[0,-7],[-4,-23],[-1,-8],[1,-5],[-1,-4],[-1,-3],[0,-1],[2,1],[0,-4],[-6,-17],[-3,-6],[-4,0],[-3,5],[-3,10],[0,14],[3,14],[0,31],[4,10],[3,7],[3,5],[1,5],[1,4],[6,7],[2,-2],[2,-5]],[[45404,59832],[5,100],[-1,52],[-3,119],[3,39],[2,11],[8,30],[2,30],[2,8],[3,16],[0,64],[3,25],[22,117],[6,20],[4,40],[5,20],[13,38],[24,106],[1,15],[4,11],[26,167],[8,72],[3,79],[4,95],[-3,107],[-9,203],[-3,21],[-15,65],[-6,73],[-5,24],[3,14],[-1,16],[-11,83],[-1,7],[-8,39],[-12,41],[-17,39],[-5,10],[-1,1],[-1,4],[-3,1],[-2,1],[-3,2],[-4,6],[-11,7],[-5,5],[-2,7],[-4,25],[-1,11],[-3,11],[-5,9],[-4,9],[4,10],[16,-9],[16,4],[13,16],[10,25],[7,23],[1,11],[3,8],[1,4],[-1,4],[-2,2],[-2,1],[-1,-3],[-1,1],[-16,-35],[-8,-12],[12,48],[-4,-4],[-11,-19],[-4,-9],[-2,-6],[-2,-6],[-1,-7],[2,-7],[0,-4],[-2,-11],[-1,-6],[-1,-1],[-1,-1],[-2,0],[-2,0],[-1,2],[0,1],[0,2],[-1,3],[0,5],[0,15],[0,5],[3,9],[7,15],[2,10],[1,13],[2,6],[4,4],[4,8],[27,81],[1,3],[2,2],[2,4],[0,5],[1,12],[1,5],[1,1],[1,2],[5,11],[1,4],[0,6],[0,5],[-2,5],[-2,4],[2,4],[2,5],[0,5],[0,6],[-4,-5],[-2,-3],[-1,10],[4,14],[-1,8],[-5,7],[-3,-5],[-2,-9],[-1,-5],[-5,-5],[-2,2],[0,8],[1,7],[2,7],[1,5],[17,34],[4,14],[3,18],[-2,14],[-8,30],[-3,16],[2,0],[2,0],[2,2],[1,3],[6,19],[3,12],[1,11],[-1,11],[-2,9],[-8,25],[-2,2],[-4,0],[-2,3],[-1,5],[-1,6],[-1,2],[-5,6],[-8,39],[-2,5],[-3,4],[-2,3],[0,6],[1,2],[1,1],[1,2],[0,3],[-1,3],[-2,7],[-1,11],[-11,55],[-2,8],[-4,4],[-3,7],[0,15],[-1,10],[-5,-4],[-6,8],[0,4],[13,7],[4,4],[-6,1],[-10,-3],[-4,2],[-4,9],[2,4],[-4,17],[-2,3],[-6,5],[-2,-26],[2,-58],[-4,-22],[-2,9],[-4,7],[-7,9],[-2,5],[-4,14],[-2,7],[-4,5],[-9,9],[-2,4],[0,7],[1,3],[2,1],[1,1],[0,5],[-2,5],[0,5],[-1,8],[-3,8],[-8,12],[-1,4],[0,11],[-1,5],[-5,10],[-3,28],[-2,7],[-3,7],[-1,9],[-2,9],[0,9],[-1,-3],[-2,-2],[-1,-3],[-4,8],[-2,9],[0,10],[-2,10],[-2,4],[-2,4],[-2,6],[-1,8],[-2,6],[-6,18],[-2,9],[-1,8],[-1,9],[-3,17],[-6,13],[-4,-4],[-7,-27],[-12,-33],[-2,-4],[-2,-7],[2,-11],[3,3],[0,-10],[-1,-22],[-1,-19],[-1,-5],[-3,-3],[-6,-4],[-2,-5],[-1,-5],[2,-5],[2,-6],[2,-9],[1,-4],[-1,-7],[-2,-25],[-3,-13],[-2,-7]],[[45450,62204],[6,23],[3,9],[3,-7],[-9,-80],[-7,-37],[-11,-34],[-5,13],[-1,3],[0,5],[1,6],[0,6],[-2,6],[-2,10],[2,11],[8,25],[1,2],[-1,17],[1,6],[2,11],[3,9],[5,3],[3,-7]],[[45466,62153],[3,2],[2,-5],[-3,-11],[-5,-9],[-3,-8],[-5,-17],[-9,-28],[-1,0],[1,10],[10,36],[10,30]],[[45423,62155],[2,-1],[0,-6],[-1,-12],[-2,-8],[-1,-5],[-3,4],[-1,13],[2,11],[4,4]],[[45428,62678],[2,-1],[1,-3],[0,-20],[-2,-2],[-4,3],[-2,11],[2,9],[3,3]],[[52723,51061],[0,3],[0,10],[-2,15],[0,7],[3,4],[3,3],[4,1],[4,1],[-2,3],[-3,2],[-4,2],[-4,1],[-2,1],[-7,9],[-4,2],[-11,-6],[-3,2],[-1,6],[1,6],[2,5],[2,3],[-5,-5],[-7,-12],[-5,-13],[-2,-8],[-2,-5],[-9,-4],[-7,-7],[-3,7],[-4,29],[-2,7],[-3,6],[-5,5],[-5,2],[-3,-1],[-4,-4],[-9,-3],[-8,-8],[-4,-2],[-2,3],[-7,15],[-3,6],[0,6],[-1,5],[-3,9],[4,4],[3,7],[3,9],[4,30],[3,11],[3,5],[4,4],[4,12],[3,13],[1,11],[0,23],[1,9],[7,8],[11,21],[5,13],[1,1],[1,3],[1,3],[1,4],[1,6],[3,17],[5,18],[5,9],[4,-2],[3,-7],[6,-4],[7,2],[5,5],[5,7],[6,6],[-5,0],[-12,-17],[-5,3],[-12,24],[-4,17],[3,16],[16,34],[1,2],[2,7],[1,3],[6,8],[2,5],[1,4],[3,12],[1,4],[1,2],[1,4],[1,14],[1,4],[1,3],[1,3],[2,6],[9,21],[3,20],[-1,24],[-7,49],[-3,11],[-1,5],[0,6],[0,6],[2,4],[1,3],[1,4],[2,73],[-1,13],[-2,11],[-2,13],[3,10],[6,8]],[[51562,49607],[-1,7],[-1,7],[1,6],[3,4],[4,-13],[-1,-15],[-4,-7],[-5,7],[2,1],[1,2],[1,1]],[[52478,52691],[7,-20],[3,-10],[1,-12],[0,-12],[-1,-10],[-2,-9],[-2,-8],[-10,-19],[-3,-16],[-9,-24],[-1,-2],[-6,-31],[-5,-9],[-1,-13],[-1,-4],[0,-2],[-8,-10],[-1,-9],[0,-28],[-2,-9],[-13,-31],[-9,-33],[-3,-7],[-2,4],[-7,6],[-1,4],[-2,-2],[-4,3],[-8,9],[-2,-1],[-6,-3],[-3,0],[-3,3],[-6,8],[-3,1],[-6,1],[-7,3],[-5,9],[-2,17],[-2,7],[-2,8],[-2,7],[1,7],[1,5],[2,25],[2,12],[3,15],[5,10],[7,-4],[3,4],[5,0],[10,-4],[5,4],[1,9],[-1,11],[-2,8],[3,4],[5,7],[4,8],[1,7],[2,55],[4,21],[7,25],[10,21],[11,7],[0,-2],[-2,-7],[9,-4],[4,0],[3,4],[6,-4],[9,-3],[9,1],[8,6],[1,-2],[1,-1],[2,-1]],[[45346,58207],[-4,8],[-5,3],[0,4],[1,5],[2,8],[-1,9],[-5,29],[0,7],[0,28],[0,8],[-2,8],[-5,11],[-1,8],[2,9],[-1,3],[-2,14],[2,6],[3,18],[3,4],[3,2],[4,4],[3,5],[16,42],[8,12],[0,-6],[2,-4],[2,-3],[3,-3],[5,5],[5,1],[4,-4],[3,-6],[2,-11],[-4,-2],[-4,0],[-3,-8],[4,-8],[4,-16],[2,-18],[-1,-10],[10,-25],[2,-4],[15,-1],[4,-2],[3,-5],[2,-4],[3,-3],[6,-1],[3,-4],[1,-9],[0,-11],[-1,-8],[5,9],[3,1],[3,-6],[-1,6],[-6,11],[-1,1],[0,8],[-2,5],[-3,2],[-4,-1],[0,4],[8,0],[4,1],[3,4],[3,-12],[3,2],[4,9],[4,4],[6,3],[10,15],[5,3],[8,-5],[1,-12],[-1,-13],[1,-11],[5,-3],[7,4],[9,11],[0,5],[-3,-1],[-3,-2],[-2,-3],[-3,-5],[-2,-4],[-1,3],[-2,17],[0,6],[0,6],[-2,2],[-2,2],[0,3],[-1,5],[0,5],[1,11],[2,7],[11,20],[2,4],[1,6],[1,3],[3,-1],[5,-4],[39,-4],[14,7],[6,1],[3,0],[1,0],[2,-1],[2,1],[2,2],[2,3],[1,2],[1,2],[6,0],[18,-4],[6,1],[16,11],[2,3],[6,8],[2,1],[3,-2],[4,-8],[3,-2],[3,0],[3,1],[3,2],[3,5],[3,6],[4,14],[3,4],[3,0],[3,-2],[4,-4],[2,-4],[3,-2],[3,1],[3,2],[2,1],[6,-3],[3,-7],[3,-8],[3,-6],[9,-7],[12,-1],[10,8],[3,24],[-1,0],[-1,0],[-1,-9],[-2,-7],[-3,-6],[-3,-2],[-5,1],[-9,6],[-5,1],[-4,3],[-4,7],[-7,12],[-2,3],[-3,-1],[-2,-2],[-2,-2],[-3,2],[-2,2],[-2,3],[-1,1],[-4,2],[-3,4],[-4,1],[-5,-3],[-3,-5],[-4,-11],[-3,-4],[-5,0],[-7,7],[-5,1],[-5,-2],[-12,-14],[-10,-6],[-89,-15],[-9,7],[-5,2],[-5,-3],[-5,-5],[-8,-13],[-12,-24],[-3,-4],[-2,-2],[-2,-4],[-2,-1],[-2,3],[0,4],[0,7],[1,7],[-1,6],[-5,-9],[0,-5],[1,-6],[-3,-3],[-1,-1],[0,-4],[2,-1],[1,-2],[1,-1],[-5,-6],[-10,-2],[-9,-1],[-6,1],[-22,11],[-9,1],[2,5],[3,15],[1,6],[-1,8],[-3,12],[0,5],[-1,4],[-5,8],[-2,6],[-3,4],[0,2],[0,12],[2,25],[0,9],[-2,8],[-2,6]],[[81730,63828],[1,0],[-2,-6],[-1,-3],[-2,-4],[-2,0],[0,-6],[2,1],[1,2],[3,2],[1,2],[2,8],[1,1],[1,-2],[2,2],[0,-2],[-1,-5],[2,1],[2,-4],[0,-4],[1,-1],[2,2],[1,-2],[0,-4],[-1,-5],[2,0],[1,-3],[3,-3],[8,5],[1,2],[1,-4],[-5,-8],[-3,-6],[-4,-2],[-3,-4],[-4,-4],[-1,-4],[-3,-4],[-2,0],[-4,11],[-4,-2],[-1,2],[-1,-3],[0,-5],[2,-1],[0,-4],[-2,1],[0,2],[-2,3],[-3,-1],[-1,-3],[-6,-2],[3,-3],[3,-4],[3,-5],[4,-5],[-1,-4],[2,-2],[-2,-7],[2,1],[2,9],[3,6],[1,6],[2,0],[2,-3],[4,0],[1,-3],[-1,-5],[2,-4],[1,6],[3,4],[-3,10],[3,6],[4,2],[-1,5],[7,9],[0,-3],[2,-1],[-2,-6],[3,-1],[1,-9],[-2,-4],[2,-5],[1,4],[1,-9],[2,0],[0,11],[2,12],[2,-4],[0,-5],[1,-4],[4,0],[4,-2],[-1,-5],[1,-9],[-3,3],[-2,1],[-3,-13],[1,2],[3,-8],[1,-13],[-1,0],[0,3],[-3,0],[1,-5],[-1,-5],[-1,-3],[-3,-2],[-1,-8],[-1,4],[0,8],[-3,-4],[-1,4],[-2,4],[1,10],[-4,3],[-1,5],[-2,-3],[-3,-2],[-4,6],[-2,0],[-3,-7],[2,-9],[2,-5],[-1,-4],[-3,4],[0,6],[-2,-2],[-1,-4],[3,-6],[2,-15],[1,-1],[4,-1],[0,-7],[1,0],[2,1],[2,-6],[-1,-3],[-2,-3],[-2,1],[-1,-1],[0,-3],[0,-4],[3,1],[1,-4],[0,-4],[-2,-3],[-2,4],[-3,4],[1,5],[-2,10],[-3,3],[1,5],[0,4],[-3,3],[-1,-10],[0,-5],[-4,-9],[-3,6],[-4,11],[1,-5],[-1,0],[-5,10],[-2,-6],[1,-4],[0,-2],[-2,2],[-1,-4],[-1,-2],[-1,-2],[-2,4],[1,6],[-1,3],[0,3],[-2,0],[0,4],[-2,4],[-4,4],[-4,4],[0,-3],[-3,9],[0,8],[-2,2],[-2,-4],[-5,2],[0,-2],[-3,0],[0,-2],[-3,1],[-2,-1],[-3,-2],[-5,-3],[-2,2],[0,3],[-5,0],[-1,3],[-3,2],[-2,7],[-1,0],[0,5],[-2,-4],[3,-5],[-6,-2],[-2,-4],[-4,4],[-2,0],[-3,4],[1,7],[-2,6],[-4,6],[4,6],[6,1],[2,4],[4,14],[7,5],[5,18],[2,0],[2,-2],[0,-3],[0,-5],[1,2],[3,2],[1,0],[1,2],[-1,3],[0,5],[4,3],[4,2],[1,3],[1,4],[2,1],[2,1],[2,2],[-1,4]],[[81704,63604],[-7,-1],[1,5],[0,18],[-3,0],[0,4],[0,8],[2,-1],[1,-7],[3,-5],[2,1],[0,-3],[-2,-3],[3,0],[3,0],[2,-1],[-3,-4],[-2,-3],[2,-8],[-2,0]],[[81726,63668],[1,-4],[2,1],[2,-2],[3,-8],[2,-3],[0,-6],[-2,-4],[1,-6],[1,-5],[-1,-1],[2,-11],[-3,-1],[-1,2],[-2,4],[-1,6],[0,7],[-2,3],[-2,-3],[2,-1],[0,-5],[-1,0],[-2,-5],[2,-6],[-1,-4],[1,-4],[-3,-1],[-1,9],[1,1],[-1,3],[-3,-3],[-1,2],[1,3],[-2,2],[2,4],[-1,3],[-2,1],[0,5],[-4,-4],[-1,-4],[-1,4],[0,4],[-3,2],[-4,1],[-2,2],[-1,4],[-1,3],[-1,5],[-2,1],[0,4],[1,1],[1,1],[3,3],[2,1],[3,-1],[2,-3],[3,-1],[4,0],[2,4],[3,3],[2,-2],[3,-1]],[[81623,63615],[-2,5],[0,7],[0,7],[0,3],[3,0],[0,6],[2,1],[0,4],[-2,2],[0,1],[3,3],[2,4],[0,1],[3,1],[2,4],[2,8],[5,0],[3,-1],[2,-4],[3,2],[6,8],[4,-2],[2,6],[3,1],[2,7],[5,8],[1,-4],[6,10],[2,-2],[1,-3],[-1,-5],[0,-5],[-1,2],[-2,1],[-2,0],[-1,-10],[-5,2],[0,-8],[3,2],[-1,-7],[0,-15],[-4,0],[-2,2],[3,-9],[-4,-7],[6,-8],[-4,-7],[-5,-4],[-1,4],[0,13],[-3,0],[-2,0],[-4,0],[-5,-8],[-2,0],[-1,-3],[3,-1],[0,-4],[-3,-3],[-3,-1],[-4,7],[0,4],[-2,-1],[-3,-4],[-4,-7],[-4,-3]],[[59355,71217],[-3,-2],[-4,1],[-1,-1],[-4,0],[-6,10],[-4,-3],[-3,-5],[-3,1],[-4,5],[-1,9],[-2,5],[-2,3],[-2,0],[-1,-3],[0,-6],[-2,-1],[-3,3],[-3,0],[-2,0],[-2,-2],[-2,-11],[-1,-4],[-1,-8],[0,-6],[0,-3],[-3,1],[-1,6],[2,14],[2,11],[0,12],[0,10],[-2,6],[-6,16],[-3,10],[-3,12],[-1,8],[-1,7],[-2,3],[-4,-1],[-3,-5],[-2,-6],[-2,-3],[-8,-4],[-5,0],[-3,-3],[-5,1],[-8,3],[-8,2],[-5,4],[-9,7],[-9,-3],[-4,-3],[-7,-12],[-3,-1],[-3,7],[-5,-3],[-6,-6],[-7,-3],[-5,-5],[-7,-6],[-5,-11],[-7,-6],[-3,-1],[-3,-1],[-3,1],[-7,1],[-3,-1],[-2,-2],[-3,-6],[-1,-5],[-5,1],[-2,12],[-5,9],[-5,6],[-10,4],[-4,3],[-4,3],[-3,6],[-2,6],[0,7],[0,4]],[[59086,71305],[9,-2],[9,-5],[7,-8],[7,-5],[11,5],[7,11],[6,15],[4,19],[2,22],[0,40],[-1,17],[-3,19],[7,-2],[11,-12],[6,-3],[17,-6],[20,2],[34,-8],[5,-4],[41,-8],[64,18],[23,23],[12,11],[14,-4],[15,8],[41,28],[11,14],[15,10],[14,25],[8,3],[16,8],[15,8],[11,13],[51,42],[10,7],[3,1],[-1,-2],[-1,-2],[-1,-2],[0,-2],[-1,-17],[-1,-4],[-2,-1],[-7,-2],[-1,-2],[-27,-30],[-24,-37],[-60,-63],[-8,-12],[-6,-15],[-5,-19],[-3,-8],[-4,-5],[-7,-1],[-7,3],[-6,1],[-6,-5],[-7,-20],[-4,-11],[-1,-10],[-2,-46],[4,-5],[11,-20],[2,-6],[2,-8],[3,-7],[9,-14]],[[59447,71235],[-1,-2],[-12,5],[-7,-5],[-4,1],[-3,2],[-2,2]],[[59066,71308],[0,-2],[-1,-6],[-3,-5],[-3,-1],[-3,6],[-1,3]],[[59055,71303],[5,4],[6,1]],[[59447,71235],[3,-4]],[[59080,71306],[6,-1]],[[59066,71308],[3,1],[3,-1]],[[59051,71299],[4,4]],[[59170,70981],[-1,-6],[0,-16],[5,-14],[0,-3],[-24,0],[0,3],[1,12],[-8,27],[-1,10],[-16,7],[-6,1],[-6,-1],[-14,-9]],[[0,515],[9,-2],[116,7],[116,7],[116,7],[116,7],[32,-8],[3,-1],[-3,-4],[-3,-2],[-3,-1],[-3,0],[51,-12],[8,-6],[1,-12],[82,-19],[45,11],[60,-4],[61,14],[96,-3],[97,-2],[96,-3],[-14,-7],[-95,-7],[-15,-9],[71,-16],[71,-15],[-6,-3],[-6,-1],[8,-3],[14,-11],[14,-15],[9,-3],[88,15],[88,15],[16,7],[13,20],[-5,4],[-6,2],[-12,1],[5,12],[8,3],[138,-10],[137,-10],[138,-10],[137,-9],[137,-10],[138,-10],[137,-10],[137,-10],[138,-10],[137,-10],[137,-10],[138,-9],[137,-10],[138,-10],[12,-5],[18,-20],[6,-3],[-11,-16],[30,-29],[10,-6],[71,-9],[71,-9],[8,-15],[-21,-7],[31,-11],[74,14],[74,14],[132,-6],[133,-5],[132,-6],[133,-5],[133,-6],[132,-5],[32,-11],[130,-6],[131,-6],[10,3],[30,16],[138,-15],[138,-14],[138,-14],[139,-15],[138,-14],[138,-14],[138,-14],[138,-15],[55,-33],[58,-13],[-6,12],[-7,9],[-15,12],[19,4],[20,0],[20,-7],[43,-33],[10,-3],[119,-7],[120,-7],[120,-6],[120,-7],[119,-7],[-13,11],[-121,2],[-121,3],[130,2],[130,3],[14,4],[11,13],[-12,8],[-43,1],[8,5],[79,2],[78,3],[-132,23],[-133,24],[-133,23],[-6,4],[-14,19],[-10,7],[-82,18],[-82,17],[15,9],[125,-3],[124,-4],[125,-3],[124,-3],[9,2],[2,0],[-11,6],[-89,3],[113,4],[-10,8],[-36,3],[78,12],[-15,7],[-127,4],[-127,4],[-127,4],[-127,4],[-127,3],[-127,4],[30,5],[8,8],[-130,11],[-130,11],[-130,10],[-130,11],[-130,11],[-130,11],[-130,10],[-130,11],[-130,11],[-130,11],[-130,10],[-130,11],[-8,3],[-5,9],[1,1],[1,4],[1,2],[-3,3],[-51,19],[115,-3],[115,-4],[-14,9],[-95,29],[-136,1],[-137,2],[-136,2],[-12,-8],[-5,-1],[-114,13],[-114,13],[-114,12],[128,-8],[127,-8],[-2,10],[29,10],[134,0],[133,0],[134,0],[134,1],[134,0],[-5,2],[-7,8],[-4,3],[-102,10],[-101,9],[-102,10],[-4,2],[-3,3],[5,7],[13,0],[5,5],[-3,-1],[-32,8],[-13,7],[11,3],[12,5],[-121,24],[-32,17],[-115,11],[7,12],[10,3],[20,-4],[-11,10],[-5,8],[-4,10],[23,9],[121,1],[121,2],[121,1],[-11,11],[-82,24],[2,1],[9,7],[7,2],[15,1],[5,1],[3,4],[-4,4],[-12,3],[-13,8],[-127,34],[-128,34],[-14,13],[-5,3],[-122,18],[-18,10],[-8,2],[-117,-23],[-5,-3],[-10,-8],[-22,-9],[-112,8],[-112,7],[-112,7],[-112,7],[15,-12],[104,-12],[16,-9],[-29,-7],[-109,17],[-109,17],[26,8],[-18,8],[-57,6],[81,-1],[81,0],[-16,13],[-134,6],[-33,12],[-33,22],[-43,19],[-7,11],[21,15],[7,4],[-4,18],[-10,7],[-120,9],[-9,4],[-7,11],[19,9],[63,-1],[-79,10],[-78,10],[-5,2],[-16,15],[-4,2],[-128,22],[-128,22],[-128,21],[-129,22],[-128,21],[13,6],[103,-13],[102,-13],[-122,29],[-122,29],[-122,30],[-121,29],[-122,29],[-122,30],[-122,29],[-86,61],[-9,20],[8,12],[20,1],[101,-31],[100,-32],[101,-32],[122,-1],[64,29],[102,-17],[102,-16],[103,-17],[125,-60],[7,-5],[27,-38],[11,-24],[7,-8],[14,-9],[104,-22],[103,-23],[104,-22],[18,5],[-56,34],[115,-2],[114,-1],[115,-2],[114,-1],[7,5],[9,18],[6,5],[78,-6],[79,-5],[4,1],[20,14],[7,2],[124,-1],[125,0],[125,-1],[125,0],[125,-1],[64,-28],[-5,-9],[-6,-3],[-6,0],[-6,-4],[-2,-1],[-1,-2],[-1,-2],[0,-3],[0,-2],[1,-4],[0,-3],[-2,-7],[-8,-14],[0,-9],[9,1],[36,-13],[12,-9],[21,-28],[8,-5],[2,-3],[-2,-3],[-4,-4],[-2,-2],[1,-10],[10,-8],[11,-5],[122,-12],[18,12],[-13,15],[-4,7],[-6,13],[-2,9],[0,9],[4,8],[6,4],[79,9],[79,8],[37,18],[50,-1],[42,14],[73,-4],[12,-7],[7,-19],[-2,-1],[-3,-2],[-2,-1],[7,-11],[9,-4],[111,-15],[31,-16],[-14,-7],[-41,-7],[14,-13],[66,-17],[117,6],[116,5],[117,5],[116,6],[117,5],[81,-20],[82,-19],[81,0],[25,7],[3,4],[6,16],[7,14],[12,11],[134,13],[134,14],[134,13],[7,3],[13,19],[8,6],[74,34],[75,33],[-30,14],[-133,8],[-133,7],[-134,8],[-16,5],[-10,15],[17,9],[134,7],[135,7],[134,7],[135,7],[134,7],[135,8],[43,22],[-17,31],[101,46],[7,9],[8,27],[6,9],[117,25],[116,25],[116,25],[117,25],[116,25],[117,25],[-4,13],[-6,8],[-15,10],[-6,7],[-12,17],[-7,8],[-25,17],[-23,24],[-122,49],[-122,49],[-123,49],[-11,14],[40,18],[-96,31],[-96,31],[-10,13],[18,13],[67,26],[30,24],[20,9],[73,9],[72,9],[20,9],[19,18],[-8,6],[-20,27],[-7,6],[-8,2],[-38,0],[-6,5],[-8,9],[-9,6],[-65,21],[-4,4],[-8,11],[-4,5],[-15,7],[-113,17],[-50,27],[-114,16],[-115,16],[-114,17],[-114,16],[-115,16],[-25,19],[1,6],[1,6],[5,9],[7,11],[9,6],[85,32],[86,31],[136,8],[136,7],[136,8],[136,7],[136,8],[136,7],[137,8],[136,7],[136,8],[136,7],[136,8],[136,7],[136,8],[137,7],[136,8],[136,8],[136,7],[136,8],[12,7],[10,12],[-9,16],[-12,8],[-87,7],[-87,7],[-13,6],[58,4],[-25,9],[-76,5],[6,4],[6,2],[12,1],[-11,15],[-98,5],[-98,5],[-97,6],[80,5],[80,6],[-78,5],[-78,5],[7,0],[12,9],[6,3],[89,1],[-59,11],[16,9],[130,-2],[129,-3],[-24,6],[-75,2],[-76,1],[-28,15],[-8,2],[-92,1],[-92,0],[-13,5],[62,8],[-20,6],[-61,3],[48,9],[-12,6],[-79,0],[-79,0],[-24,8],[14,11],[52,0],[-101,23],[3,6],[5,4],[4,2],[5,0],[-10,4],[-82,0],[-82,0],[19,11],[61,-1],[-46,9],[128,1],[128,1],[-13,9],[-55,14],[-24,15],[-27,8],[-91,-2],[42,8],[-10,22],[-18,9],[-36,5],[22,17],[22,3],[47,-6],[95,22],[-6,13],[-7,11],[-7,8],[-29,13],[-10,8],[-6,12],[106,-8],[107,-8],[106,-9],[107,-8],[2,1],[1,3],[2,7],[1,3],[3,2],[39,6],[32,13],[138,6],[137,6],[-15,7],[-117,4],[-118,5],[-15,10],[88,1],[87,2],[-15,10],[-94,3],[-94,2],[-94,3],[12,5],[99,-2],[99,-2],[-15,5],[-111,5],[19,2],[18,8],[-6,5],[-20,3],[7,4],[23,2],[-97,7],[5,4],[5,1],[9,1],[-28,11],[-25,1],[-8,6],[82,-2],[52,-13],[132,-2],[-10,-10],[-36,0],[14,-7],[45,1],[-9,-8],[14,-5],[114,-2],[114,-2],[-7,16],[32,6],[-14,5],[-14,2],[-29,-3],[-19,-12],[-8,-2],[-6,0],[-50,15],[-91,-1],[10,7],[77,9],[-132,23],[-22,15],[35,-3],[9,2],[17,8],[9,-1],[-16,8],[48,4],[-114,19],[-114,18],[-113,18],[-20,12],[9,10],[-15,11],[-125,14],[-125,15],[-126,14],[-24,14],[-136,38],[-136,38],[-136,38],[38,17],[30,21],[6,2],[11,1],[12,3],[-12,10],[-14,3],[-130,-38],[-14,1],[-14,6],[-27,20],[28,17],[90,19],[-33,1],[37,19],[-2,2],[-4,7],[-2,2],[78,40],[-18,2],[-80,-16],[-9,1],[-32,18],[-10,-1],[7,-13],[0,-7],[-29,-19],[-63,-19],[-8,2],[-6,9],[-25,25],[-64,-33],[-29,11],[-11,7],[-131,16],[-132,15],[-131,16],[-131,15],[-11,8],[-9,13],[-3,3],[-103,49],[-102,49],[-103,49],[-102,49],[-5,8],[-1,16],[6,11],[8,6],[114,22],[14,9],[-5,9],[-5,6],[-12,5],[18,8],[96,5],[96,5],[97,5],[9,7],[-20,19],[45,1],[26,-15],[18,-3],[58,12],[-17,10],[21,6],[41,1],[19,10],[-11,8],[8,13],[34,10],[-8,16],[-7,17],[27,19],[61,-1],[29,10],[-110,7],[-3,1],[-5,5],[-2,5],[-2,5],[-3,6],[-4,4],[-12,5],[-3,3],[-7,10],[-3,4],[-8,2],[-48,1],[-41,-11],[18,-13],[-4,-5],[-24,-15],[-2,-3],[-2,-9],[-2,-3],[-96,-13],[-26,6],[-11,25],[45,6],[32,-7],[-6,8],[-8,19],[-4,4],[-39,-5],[-26,-18],[-13,-4],[-7,2],[-14,11],[-7,4],[-7,-1],[-13,-10],[-7,-3],[-63,-6],[-52,9],[-26,-6],[-89,0],[-7,3],[-20,15],[-2,5],[0,9],[-33,-4],[-15,5],[-7,-1],[-8,-8],[2,-1],[3,-4],[2,-1],[-8,-15],[-16,-11],[-63,-24],[-65,0],[-16,7],[-26,27],[-88,42],[-87,43],[-7,6],[-14,16],[-9,6],[-25,-1],[-20,15],[-16,0],[-9,4],[-9,7],[-8,8],[-5,11],[-4,11],[-5,8],[-51,20],[-1,10],[5,11],[25,38],[6,5],[16,6],[7,6],[8,8],[5,11],[10,28],[6,12],[14,12],[32,16],[11,20],[-46,25],[9,18],[9,12],[22,21],[-11,16],[-31,15],[-10,19],[1,28],[12,23],[29,30],[-9,14],[-4,5],[-16,12],[-6,6],[-3,7],[3,16],[11,11],[12,8],[82,10],[23,-11],[41,-40],[18,-6],[6,-4],[4,-6],[2,-6],[4,-5],[17,-8],[32,-29],[40,-14],[-3,-3],[-4,-2],[-4,0],[-4,0],[14,-12],[48,-29],[17,-4],[4,2],[7,7],[14,-6],[8,3],[1,6],[0,6],[1,5],[20,0],[99,35],[-13,7],[-51,8],[-11,6],[-21,20],[-6,2],[14,13],[36,5],[18,27],[22,4],[26,16],[26,7],[127,4],[47,-13],[32,-19],[22,-28],[7,-4],[33,1],[8,-2],[4,-1],[2,4],[0,8],[0,8],[5,5],[110,15],[15,-5],[6,-6],[12,-15],[7,-4],[96,1],[58,-14],[7,-5],[13,-14],[7,-3],[78,-12],[79,-12],[60,-50],[-17,-25],[-22,-11],[-124,-4],[-11,-6],[10,-11],[12,-5],[86,-1],[85,-1],[47,-16],[23,0],[17,-4],[5,1],[12,6],[6,1],[7,-1],[5,-3],[10,-8],[6,-2],[49,-7],[-1,11],[-3,10],[-7,16],[9,8],[29,11],[-7,12],[10,27],[-5,13],[18,9],[19,1],[37,-13],[9,-5],[3,-4],[12,-21],[4,-5],[6,-4],[10,-3],[20,4],[132,-16],[39,-21],[-12,-14],[-7,-5],[-7,-2],[13,-13],[116,-30],[25,-19],[127,-53],[8,-5],[14,-17],[16,-11],[12,-17],[7,-5],[42,-3],[13,-8],[13,-11],[8,-3],[33,-3],[67,11],[31,18],[72,9],[-5,2],[-11,15],[-6,3],[-16,2],[-5,4],[-10,9],[-4,4],[-16,8],[-5,5],[-18,12],[-62,0],[3,2],[4,2],[3,0],[3,-1],[-1,3],[-4,8],[39,10],[41,-1],[75,-29],[75,-29],[20,0],[59,19],[-36,54],[6,3],[-3,2],[-4,6],[-2,3],[17,5],[53,-4],[76,19],[75,19],[40,-2],[22,5],[10,17],[-117,24],[-117,25],[-117,24],[-5,3],[-4,7],[-2,16],[3,11],[6,7],[7,4],[56,13],[-47,4],[4,9],[12,16],[13,29],[4,7],[11,8],[12,4],[71,-2],[93,-46],[92,-46],[22,-28],[-3,-35],[22,-23],[11,-8],[11,3],[-20,26],[-6,11],[8,3],[7,-4],[15,-16],[8,-1],[24,19],[28,7],[26,15],[9,2],[9,-1],[-9,16],[-3,11],[3,5],[80,14],[24,-11],[117,-109],[20,-33],[6,-5],[6,0],[12,2],[79,-11],[26,11],[-10,2],[-5,3],[-4,7],[60,1],[80,-28],[10,1],[9,10],[-2,2],[-4,4],[-2,1],[3,4],[4,3],[3,2],[4,0],[-42,17],[-3,3],[0,4],[1,4],[-1,3],[-27,25],[-19,10],[-61,3],[5,2],[9,7],[5,1],[21,-1],[-6,6],[-6,3],[-13,2],[2,2],[2,5],[2,2],[-17,20],[-7,15],[3,13],[10,4],[9,-4],[10,-7],[9,-4],[30,5],[40,-5],[3,1],[1,2],[3,5],[2,2],[2,0],[27,-7],[51,9],[-8,6],[-92,46],[-92,46],[-10,2],[-21,-2],[-32,4],[-41,17],[-20,16],[18,8],[108,-19],[109,-19],[2,-3],[1,-8],[1,-3],[4,-1],[45,13],[10,-1],[-5,11],[-9,7],[-58,27],[7,8],[-1,13],[-5,13],[-7,5],[-61,-1],[-20,6],[-9,7],[-9,10],[-5,14],[6,16],[8,7],[10,1],[19,-7],[20,0],[59,17],[4,2],[7,9],[3,1],[21,0],[-17,16],[-20,8],[-80,9],[-80,8],[-5,3],[-3,3],[-13,22],[-35,19],[-9,2],[-20,0],[-10,5],[-5,15],[10,14],[6,5],[6,2],[-16,6],[-47,9],[-129,59],[-133,-5],[-133,-4],[-21,-9],[-22,-1],[-72,-24],[-110,15],[-110,15],[-110,15],[-13,8],[-7,11],[1,12],[6,13],[8,10],[15,14],[16,8],[18,5],[125,-5],[44,21],[93,22],[-30,12],[-12,10],[0,18],[12,16],[16,10],[46,16],[63,2],[96,-29],[95,-28],[96,-29],[-4,-3],[-3,-2],[-4,-1],[-4,1],[14,-10],[59,-25],[54,-8],[45,-28],[8,3],[6,9],[8,6],[7,2],[8,-7],[13,-22],[7,-9],[40,-20],[8,2],[14,7],[46,-4],[20,-16],[60,-13],[101,18],[-8,15],[-27,33],[-7,14],[-4,5],[-5,4],[-103,33],[-82,51],[-82,51],[8,14],[9,8],[20,7],[-1,3],[-1,8],[-2,3],[25,11],[-1,4],[-2,10],[-1,4],[26,29],[72,20],[107,-7],[107,-8],[-9,8],[8,7],[35,4],[46,21],[84,-2],[56,18],[19,-1],[14,-5],[13,1],[5,2],[8,8],[4,0],[-12,33],[-2,9],[3,9],[4,3],[60,10],[-7,13],[-14,5],[-42,3],[-31,11],[-13,11],[14,6],[60,0],[97,22],[97,23],[99,-7],[99,-7],[7,2],[4,3],[3,4],[3,4],[5,1],[12,-2],[3,1],[2,2],[3,3],[4,7],[-6,9],[-4,9],[-8,22],[14,8],[17,4],[93,-17],[28,-21],[33,-5],[14,-10],[35,-62],[12,-17],[5,-9],[3,-15],[4,-7],[16,-14],[10,-18],[8,-4],[27,1],[4,1],[5,6],[2,6],[3,3],[21,-7],[108,-7],[5,-3],[10,-15],[5,-3],[5,-2],[49,-3],[-36,37],[7,2],[19,-3],[-43,37],[-111,50],[-17,19],[-7,24],[7,15],[19,5],[84,-11],[17,-9],[13,-3],[76,29],[75,29],[17,14],[5,10],[-6,10],[8,12],[9,9],[86,59],[9,3],[14,0],[3,1],[5,4],[18,5],[-1,13],[5,12],[7,9],[6,5],[12,3],[60,0],[41,14],[47,-10],[105,7],[105,7],[104,7],[16,6],[17,15],[6,4],[6,2],[74,-17],[106,-54],[6,1],[5,6],[4,8],[6,5],[7,1],[21,-7],[79,-6],[80,-7],[-5,12],[-5,7],[-13,7],[6,4],[20,1],[-11,11],[-70,20],[-70,21],[-24,15],[-12,2],[3,1],[11,9],[20,7],[4,3],[2,7],[0,9],[-1,10],[-5,19],[-1,11],[0,7],[1,4],[1,5],[-1,15],[1,7],[4,14],[9,19],[11,7],[64,-5],[41,11],[19,13],[35,9],[28,1],[52,-14],[17,-13],[5,-2],[39,0],[4,1],[3,3],[3,5],[3,4],[6,8],[-3,9],[-12,12],[19,22],[38,36],[21,9],[22,3],[114,-25],[115,-24],[8,-9],[-4,-11],[-6,-10],[-13,-14],[-4,-11],[5,-12],[8,-10],[7,-5],[34,-12],[5,-6],[-1,-10],[-5,-11],[-6,-7],[17,-7],[32,9],[18,1],[24,-16],[8,-2],[36,0],[-4,-2],[-2,-5],[-1,-6],[2,-8],[3,-2],[20,-3],[76,28],[76,27],[33,-3],[113,43],[9,0],[6,-5],[6,-10],[8,-6],[15,-9],[15,-4],[135,37],[88,-11],[57,-37],[5,-1],[75,9],[75,8],[11,-7],[6,-1],[38,9],[13,-5],[8,-7],[2,-2],[106,-22],[105,-22],[97,21],[97,22],[3,2],[7,8],[3,2],[12,-4],[132,3],[17,5],[32,24],[17,6],[130,13],[3,2],[6,10],[4,2],[15,-1],[15,-4],[3,1],[8,9],[4,3],[15,0],[31,-9],[77,7],[8,3],[15,11],[7,2],[33,-6],[52,8],[17,-3],[22,-13],[34,-10],[23,-13],[133,-11],[16,8],[9,0],[18,-3],[7,0],[31,15],[15,12],[8,1],[112,-3],[111,-3],[23,-10],[8,-2],[97,13],[11,-4],[4,0],[4,1],[8,6],[4,1],[16,-3],[30,-21],[34,-35],[7,-3],[81,9],[82,9],[34,15],[35,0],[-2,-11],[15,-8],[14,-5],[30,0],[49,18],[31,-6],[75,14],[8,-1],[25,-13],[8,0],[22,12],[7,1],[55,-12],[25,5],[23,-11],[8,-1],[8,0],[2,3],[3,10],[3,4],[8,4],[4,0],[18,-5],[45,2],[4,2],[5,9],[2,1],[50,7],[-4,-6],[-4,-4],[-5,-3],[-5,-1],[16,-5],[16,0],[16,7],[15,12],[6,5],[8,0],[7,-4],[11,-14],[9,-1],[32,5],[31,15],[79,16],[78,16],[31,-10],[40,-3],[98,23],[34,-9],[6,2],[5,5],[12,14],[5,4],[52,11],[22,-5],[20,6],[20,-4],[12,0],[52,23],[14,11],[4,14],[-9,7],[-136,4],[19,37],[26,21],[118,27],[119,28],[24,17],[12,12],[6,3],[7,-2],[7,-6],[20,-27],[2,-12],[-12,-15],[-26,-22],[18,-12],[6,0],[16,5],[7,-2],[5,-10],[-25,-22],[10,-24],[17,-5],[34,9],[16,-4],[32,-15],[41,-7],[55,7],[125,-14],[48,24],[16,4],[46,-5],[24,15],[7,-1],[9,-5],[29,4],[-10,11],[-3,7],[-1,12],[1,10],[3,7],[4,4],[5,3],[20,9],[21,4],[-4,-8],[-2,-7],[0,-7],[3,-8],[8,-12],[26,-27],[19,-12],[21,-6],[65,12],[49,-2],[60,19],[41,1],[10,6],[-4,4],[-5,7],[-3,9],[-2,9],[0,14],[3,6],[4,2],[6,0],[-3,4],[-3,2],[-7,3],[-4,3],[-5,10],[-3,2],[-10,5],[-7,7],[-21,40],[-2,7],[-4,23],[-9,19],[-1,13],[5,12],[7,11],[-11,11],[28,28],[31,18],[-9,13],[36,18],[5,15],[17,7],[64,4],[15,7],[21,16],[46,11],[8,-2],[22,-15],[42,-14],[-8,-20],[-9,-11],[-76,-54],[12,-12],[15,1],[82,32],[78,-1],[8,-2],[6,-4],[34,-38],[4,-12],[-6,-4],[0,-10],[3,-11],[4,-8],[-128,-37],[-18,-11],[8,-5],[31,-7],[16,2],[4,-2],[9,-9],[5,-3],[-29,-22],[-5,-5],[-1,-8],[2,-22],[2,-4],[4,-3],[9,-4],[-15,-24],[20,-10],[20,2],[41,20],[79,18],[-10,-29],[-13,-18],[-71,-43],[-16,-16],[-7,-4],[-114,-24],[-18,-16],[-6,-3],[-50,-13],[-9,-8],[15,-9],[10,-3],[32,0],[50,20],[16,1],[15,-5],[6,-6],[3,-8],[0,-10],[-4,-12],[-5,-6],[-17,-14],[-4,-11],[-5,-34],[-4,-15],[-14,-16],[-34,-14],[-36,-41],[-2,-9],[4,-14],[7,-6],[37,-9],[7,1],[32,17],[21,1],[7,6],[21,29],[7,7],[8,3],[22,-3],[43,10],[16,0],[73,22],[73,23],[14,-2],[39,-14],[14,1],[5,5],[4,9],[3,9],[2,4],[15,4],[90,-10],[5,5],[4,10],[7,3],[14,3],[12,8],[6,3],[74,2],[74,2],[-5,12],[1,11],[4,9],[7,5],[-9,10],[-33,-8],[-12,9],[-12,22],[-14,16],[-31,23],[1,9],[-1,9],[-2,10],[-1,11],[2,10],[5,8],[11,11],[12,7],[93,-6],[18,9],[26,6],[-9,10],[-33,2],[-61,19],[-12,8],[-12,11],[-29,45],[-5,20],[8,17],[-2,1],[-4,4],[-2,2],[5,7],[7,3],[13,1],[46,28],[16,2],[39,-8],[14,2],[7,-1],[8,-4],[32,-4],[22,-14],[30,-11],[2,-3],[6,-8],[3,-3],[17,-4],[16,-7],[7,-8],[5,-10],[4,-7],[9,-2],[9,2],[6,2],[6,10],[9,30],[5,7],[32,-2],[30,-16],[55,-60],[-42,-13],[-13,-9],[5,-5],[5,-5],[11,-7],[6,-1],[34,8],[10,-3],[17,-22],[2,-5],[0,-3],[-3,-6],[0,-2],[1,-4],[5,-12],[3,-15],[-4,-17],[-6,-14],[-7,-5],[-16,2],[-6,-3],[-21,-26],[-1,-7],[8,-9],[7,-6],[5,-8],[2,-10],[-1,-18],[-5,-9],[-9,-8],[-49,-24],[-34,-6],[-15,3],[-7,-1],[-6,-6],[-8,-11],[-35,-44],[-23,-14],[-16,-15],[-7,-5],[-67,-18],[-12,-8],[-23,-24],[-40,-20],[-14,-13],[-6,-15],[23,1],[7,-3],[-8,-9],[-27,-14],[16,-2],[22,3],[5,-3],[11,-10],[16,-10],[17,-4],[8,1],[24,17],[16,5],[95,3],[95,2],[8,-4],[15,-13],[7,-3],[46,-7],[50,11],[26,-7],[9,1],[8,4],[6,6],[28,34],[7,6],[8,-1],[8,-3],[106,-15],[107,-16],[106,-15],[106,-15],[11,-6],[10,-10],[45,-24],[133,6],[7,-3],[13,-11],[7,-2],[27,-2],[8,4],[4,4],[6,10],[4,3],[58,-1],[25,-12],[28,-2],[16,-22],[18,-5],[18,4],[13,10],[6,20],[3,3],[101,19],[102,20],[4,4],[8,10],[3,4],[73,12],[72,11],[6,3],[4,6],[2,3],[-1,3],[0,2],[-1,4],[2,13],[9,7],[11,3],[53,0],[5,-2],[2,-2],[3,-6],[5,-6],[6,-4],[35,-11],[23,-1],[60,22],[65,2],[47,-20],[33,1],[72,20],[71,20],[98,-13],[97,-13],[44,12],[27,-13],[47,5],[26,-4],[61,14],[20,13],[7,0],[29,-10],[16,-11],[10,-16],[3,-17],[-1,-13],[-3,-11],[-7,-13],[-9,-11],[-2,-4],[-2,-6],[-3,-13],[-2,-6],[34,-26],[107,-14],[-3,-13],[1,-11],[5,-9],[7,-2],[24,7],[24,-1],[86,18],[23,15],[31,9],[31,0],[28,-6],[24,-14],[7,-1],[4,2],[13,9],[3,1],[7,-1],[3,2],[8,5],[40,15],[111,16],[116,-21],[3,1],[12,10],[4,2],[48,-3],[36,7],[5,4],[8,13],[5,5],[4,2],[23,6],[22,14],[-8,11],[-13,1],[-26,-6],[-48,1],[86,54],[-32,5],[-97,-30],[-8,1],[-31,16],[-95,20],[8,11],[5,10],[2,14],[-1,27],[2,20],[0,7],[-3,6],[-14,15],[-15,8],[-45,-20],[-8,1],[-31,12],[-40,2],[-61,-13],[-66,10],[-50,21],[-4,4],[-2,6],[2,10],[2,1],[46,9],[16,-1],[28,-11],[16,1],[18,8],[7,8],[7,15],[6,7],[25,15],[-12,15],[-13,7],[-28,10],[1,3],[9,11],[7,8],[3,5],[6,16],[-6,3],[-21,4],[8,12],[9,5],[49,15],[17,23],[4,1],[-4,6],[-5,3],[-4,-1],[-6,-2],[-3,1],[-9,8],[-4,2],[-22,-2],[-7,2],[-4,3],[-13,14],[-5,3],[-5,0],[-32,-9],[-24,5],[-19,-1],[-6,3],[-4,1],[-8,-4],[-4,0],[-17,1],[-17,-2],[-91,-39],[-130,28],[-18,16],[12,12],[6,8],[5,10],[-7,2],[-6,5],[-2,10],[1,13],[5,11],[6,7],[13,10],[10,12],[2,6],[2,7],[-1,6],[-3,1],[-16,-5],[-17,1],[5,7],[8,6],[5,8],[2,11],[-3,16],[-5,14],[-6,9],[-8,3],[2,15],[-4,8],[-13,8],[-8,8],[-5,9],[-4,13],[-2,17],[-9,14],[-20,3],[-35,-5],[-32,3],[-45,24],[-46,-3],[-46,18],[-94,-3],[-32,9],[-14,12],[-7,26],[11,24],[17,22],[9,19],[-4,18],[-12,10],[-32,9],[-4,2],[-3,4],[0,12],[2,11],[-1,9],[-4,7],[13,12],[17,2],[136,-15],[136,-15],[31,-16],[115,-2],[7,-2],[24,-15],[3,-3],[1,-5],[0,-8],[0,-9],[3,-6],[4,-4],[20,-9],[74,-4],[73,-3],[4,2],[2,4],[4,11],[3,3],[3,1],[12,-3],[4,1],[5,8],[4,4],[8,2],[82,-2],[82,-2],[55,18],[23,-3],[8,4],[16,11],[8,4],[-8,8],[-24,16],[25,10],[79,-16],[110,8],[-10,16],[-4,6],[-7,4],[-83,12],[-82,12],[-28,14],[10,14],[13,6],[27,2],[-54,23],[-10,0],[-10,-4],[-8,-7],[-4,-1],[-3,3],[-1,8],[5,20],[0,10],[-2,9],[-4,6],[-5,4],[-5,1],[-125,7],[-125,7],[-125,7],[-26,8],[-134,-12],[-45,19],[-103,-8],[-104,-8],[-75,13],[-4,3],[-2,4],[-2,5],[-2,5],[-22,25],[-16,8],[-20,23],[-8,5],[-28,4],[-5,2],[-6,5],[-6,7],[-2,9],[2,9],[6,9],[13,14],[-3,6],[-3,5],[-4,4],[-3,3],[1,6],[2,7],[4,11],[-14,17],[-6,10],[-6,13],[-8,31],[-5,14],[-8,8],[27,44],[10,11],[71,29],[99,-9],[99,-9],[16,-10],[49,-10],[-6,-6],[-9,-7],[-5,-9],[5,-13],[-3,-6],[-3,-5],[-4,-4],[-3,-2],[10,-12],[-8,-8],[-20,-5],[-9,-4],[-4,-5],[-4,-6],[-3,-4],[-5,-3],[-21,-1],[-4,-1],[-8,-9],[-4,-3],[-20,0],[-45,-21],[11,-4],[84,8],[83,8],[26,-5],[-4,-32],[10,-9],[79,13],[78,12],[24,13],[76,5],[75,4],[30,-20],[78,-33],[17,-2],[15,5],[34,23],[8,2],[25,-3],[47,17],[47,-13],[137,-1],[136,-2],[137,-1],[136,-1],[-24,-39],[-9,-11],[-40,-35],[14,-12],[16,-6],[15,-1],[16,4],[44,34],[42,8],[9,-1],[23,-14],[8,-1],[6,2],[9,-1],[8,-3],[12,-16],[7,-3],[46,-4],[8,-5],[14,-17],[57,-22],[33,-5],[31,-14],[88,-10],[88,-9],[3,4],[3,7],[4,17],[3,5],[13,12],[17,6],[49,0],[32,13],[16,2],[17,-5],[2,1],[7,7],[3,2],[11,1],[53,-21],[118,6],[13,-7],[40,-37],[14,-7],[57,5],[54,20],[39,33],[6,4],[7,2],[15,0],[11,-5],[6,-2],[5,5],[2,4],[1,11],[2,5],[3,3],[5,1],[76,-5],[76,-5],[15,8],[14,4],[15,10],[18,7],[3,0],[5,-3],[3,-5],[1,-6],[4,-7],[7,-3],[49,11],[82,-6],[81,-5],[6,-4],[2,-7],[1,-7],[1,-6],[17,-16],[4,-2],[50,6],[76,-17],[76,-16],[3,-2],[2,-4],[1,-10],[1,-4],[3,-1],[89,16],[30,19],[8,1],[17,-5],[7,2],[49,34],[18,18],[24,25],[6,4],[7,2],[25,-2],[35,10],[12,-1],[28,-9],[15,1],[58,22],[7,0],[19,-10],[45,9],[15,-3],[-9,14],[-6,15],[1,15],[10,12],[43,34],[3,4],[4,7],[3,7],[-3,4],[-12,5],[-4,7],[1,12],[3,33],[2,10],[-3,27],[-17,20],[-52,31],[-18,20],[21,5],[104,-15],[104,-15],[104,-16],[14,-11],[10,-18],[2,-13],[1,-13],[1,-12],[4,-10],[-24,-20],[-25,-14],[-22,-5],[-12,-6],[-7,-10],[-2,-12],[2,-8],[11,-12],[-7,-18],[-10,-11],[-72,-48],[3,-4],[26,-13],[12,-10],[9,-13],[15,-33],[10,-12],[10,-4],[11,3],[29,26],[9,5],[12,2],[10,0],[10,-3],[4,-3],[8,-11],[4,-3],[38,-6],[10,4],[17,15],[49,16],[40,-4],[9,3],[29,16],[5,0],[5,-3],[2,-6],[-2,-11],[-4,-6],[-4,-4],[-9,-4],[10,-18],[11,-7],[38,-5],[13,-6],[6,-13],[-6,-26],[12,-8],[14,-6],[26,-4],[78,7],[20,13],[37,7],[7,6],[6,9],[8,22],[5,7],[6,3],[8,0],[7,-3],[6,-6],[6,-4],[7,2],[42,18],[24,26],[27,15],[29,5],[29,-5],[27,-14],[-17,-7],[-4,-6],[-3,-11],[1,-8],[3,-6],[12,-7],[4,-4],[3,-7],[3,-15],[3,-8],[5,-5],[12,-6],[-11,-11],[3,-8],[4,-2],[5,0],[4,-3],[7,-7],[5,-3],[6,2],[7,6],[8,3],[7,-3],[31,-26],[17,-9],[18,-18],[14,-3],[12,-7],[25,-6],[19,-11],[107,-22],[80,7],[12,4],[6,1],[20,-11],[6,1],[13,9],[7,3],[5,-2],[12,-8],[6,-2],[31,3],[0,-31],[-2,-13],[-7,-4],[-7,0],[-7,-2],[-6,-5],[-7,-8],[4,-7],[11,-4],[6,-5],[-2,-2],[-1,-7],[-1,-8],[1,-6],[2,-5],[4,-1],[29,10],[7,-1],[3,-4],[4,-10],[3,0],[15,10],[6,2],[3,-1],[4,-3],[3,1],[3,6],[5,14],[11,10],[15,-1],[28,-11],[101,-3],[61,-20],[11,-15],[7,-1],[13,2],[70,-34],[21,-20],[18,-12],[20,-6],[20,2],[18,10],[24,26],[6,4],[5,1],[24,-6],[22,0],[132,58],[13,15],[11,23],[6,26],[4,10],[7,6],[-8,15],[-11,8],[-23,11],[-10,9],[-9,12],[-6,13],[-2,13],[0,14],[6,34],[1,14],[-4,10],[-9,7],[12,30],[22,15],[23,5],[94,-14],[10,-7],[4,-6],[6,-13],[3,-6],[5,-4],[28,-6],[60,-47],[34,-5],[11,3],[10,9],[-8,1],[-28,22],[-7,10],[-2,7],[0,6],[0,7],[0,7],[-2,8],[-15,47],[-5,12],[-7,8],[-12,8],[-4,4],[-9,22],[-3,4],[-17,7],[-7,8],[-2,13],[0,10],[-2,7],[0,6],[2,9],[3,7],[3,5],[4,5],[4,3],[32,13],[32,2],[101,-27],[101,-26],[6,-6],[13,-18],[97,-69],[25,-30],[14,-11],[27,-13],[16,-1],[5,-2],[10,-11],[28,-16],[10,-16],[1,-29],[-6,-19],[-8,-13],[-9,-10],[-8,-14],[-2,-7],[0,-5],[1,-3],[0,-5],[-4,-24],[1,-10],[6,-6],[18,-1],[55,17],[15,13],[8,2],[83,1],[63,19],[34,1],[89,32],[9,1],[16,-4],[23,-18],[8,-3],[24,-3],[8,2],[15,10],[14,13],[9,5],[55,2],[9,-3],[19,-15],[17,-20],[6,-14],[-2,-14],[-7,-12],[-59,-46],[-4,-5],[-7,-14],[-4,-5],[-69,-61],[11,-13],[23,-22],[11,-5],[9,1],[8,4],[25,23],[42,25],[49,2],[7,-2],[12,-12],[7,-3],[57,-5],[8,2],[3,4],[7,12],[4,5],[4,1],[68,19],[4,3],[3,5],[5,4],[7,2],[23,-2],[30,11],[8,1],[24,-3],[9,1],[7,4],[49,43],[13,6],[12,2],[100,-12],[35,-16],[12,-12],[10,-15],[11,-12],[14,-1],[28,11],[6,6],[10,13],[6,6],[6,2],[19,-1],[18,7],[6,-2],[42,-30],[22,-5],[21,9],[24,25],[17,5],[9,6],[9,9],[14,26],[8,4],[9,-6],[9,-11],[-2,-10],[3,-7],[5,-3],[4,3],[12,27],[5,7],[13,10],[12,2],[27,-4],[22,6],[6,6],[14,38],[5,9],[6,7],[6,5],[7,3],[67,0],[52,-15],[36,5],[24,-5],[12,0],[8,9],[-17,11],[49,28],[66,9],[39,-3],[31,16],[58,-6],[33,4],[100,52],[50,6],[104,-11],[15,4],[8,0],[22,-13],[8,-3],[7,1],[104,45],[81,11],[80,11],[117,46],[21,-5],[17,2],[31,12],[7,5],[6,8],[7,5],[16,2],[20,23],[73,26],[73,26],[8,6],[21,28],[13,10],[7,1],[7,0],[7,-5],[7,-7],[7,-4],[8,3],[7,7],[7,5],[14,5],[7,6],[-2,12],[-3,14],[-2,13],[2,2],[6,14],[1,3],[3,4],[11,9],[21,30],[31,25],[12,17],[0,3],[1,20],[-1,21],[1,11],[3,10],[5,13],[11,19],[3,4],[12,6],[3,3],[9,16],[15,11],[6,7],[1,25],[4,5],[5,5],[4,8],[0,9],[-1,8],[0,7],[3,8],[5,6],[25,25],[6,8],[5,11],[6,15],[1,13],[-4,13],[-5,13],[-2,13],[2,24],[-1,6],[-3,9],[-2,3],[-3,1],[-4,3],[-4,2],[-2,-1],[-2,1],[-2,8],[-1,10],[-1,4],[-6,6],[-7,4],[-15,3],[-7,5],[-52,65],[6,4],[16,4],[-11,19],[-78,60],[-16,20],[-6,27],[-6,20],[-15,20],[-12,24],[1,33],[5,14],[2,6],[7,11],[9,17],[10,9],[2,5],[3,9],[2,5],[3,4],[5,2],[-4,10],[-8,5],[-16,4],[6,5],[18,5],[-2,13],[-11,22],[-2,12],[4,12],[9,7],[18,5],[-5,9],[-2,11],[2,13],[2,13],[-28,23],[-3,7],[-8,19],[-5,8],[-12,9],[-5,7],[-3,8],[-5,20],[-3,9],[-5,11],[-3,7],[-1,8],[3,8],[4,8],[3,9],[-4,19],[1,8],[1,9],[0,12],[-2,8],[-21,43],[-10,13],[-15,12],[-2,6],[-8,34],[-5,31],[-5,25],[-8,22],[-9,14],[-2,1],[-7,0],[-3,2],[-5,9],[-2,4],[-5,3],[-34,13],[-5,5],[-8,21],[-4,8],[-6,8],[-4,7],[-5,17],[-5,8],[-6,5],[-23,8],[-6,6],[-6,7],[-4,7],[0,12],[1,16],[2,14],[3,7],[-4,11],[-3,10],[0,10],[5,12],[5,5],[6,3],[12,3],[2,6],[1,13],[-4,44],[0,7],[8,26],[2,10],[-2,10],[-4,9],[-5,6],[-24,12],[-5,6],[-2,12],[-2,5],[-16,8],[-4,8],[-5,20],[-5,9],[-5,4],[-11,7],[-14,14],[-4,5],[-4,11],[-3,5],[-15,8],[3,12],[2,5],[42,13],[52,-1],[28,-12],[9,-2],[7,2],[4,2],[1,4],[2,17],[-1,9],[-2,5],[-9,11],[-2,11],[5,9],[10,4],[10,-2],[17,-17],[9,-3],[10,1],[4,-2],[5,-5],[4,-2],[16,3],[2,-23],[14,-5],[27,7],[13,-4],[78,-38],[10,-12],[9,-19],[6,-8],[5,-4],[8,2],[10,13],[13,8],[7,6],[2,8],[-5,8],[-7,5],[-4,7],[-2,9],[4,12],[3,2],[3,1],[3,1],[1,5],[3,29],[3,13],[4,9],[6,6],[6,2],[56,-2],[32,18],[5,7],[5,11],[4,16],[-8,7],[-15,18],[-8,6],[6,8],[6,5],[22,7],[14,10],[6,1],[-8,21],[-15,0],[-16,-7],[-12,-2],[7,12],[8,10],[9,6],[9,3],[-5,15],[-10,5],[-109,12],[-22,16],[-29,30],[-5,7],[-2,8],[1,10],[4,6],[22,12],[91,5],[5,-1],[6,1],[6,6],[10,16],[-5,8],[-2,9],[-1,9],[-3,10],[-2,9],[1,26],[-3,8],[-25,20],[-13,14],[-7,19],[3,21],[14,8],[35,-1],[6,3],[4,7],[3,21],[5,4],[14,0],[-15,11],[-8,8],[-1,11],[5,6],[8,0],[14,-6],[-12,10],[-43,8],[-18,-2],[-8,6],[-2,8],[1,9],[3,8],[5,4],[6,2],[95,-21],[9,7],[3,5],[5,11],[4,4],[18,13],[-14,29],[-4,4],[-18,1],[-12,-5],[-12,-9],[-6,-7],[-5,-3],[-18,4],[-1,13],[-9,15],[-36,34],[-8,17],[-6,4],[-14,5],[5,6],[4,1],[11,-4],[6,-1],[5,4],[10,14],[-25,9],[-8,5],[-2,7],[0,6],[-1,4],[-14,5],[-7,7],[70,25],[40,5],[6,2],[3,5],[2,8],[0,13],[-16,24],[9,9],[9,3],[8,5],[8,15],[-10,-2],[-30,6],[-47,-7],[14,20],[4,3],[66,12],[11,-5],[-11,20],[-38,-6],[-14,8],[12,19],[29,33],[14,10],[17,1],[32,-12],[16,-1],[-3,14],[1,6],[2,4],[4,10],[3,14],[-2,8],[-5,4],[-7,-1],[-4,-4],[-7,-12],[-4,-4],[-5,-1],[-28,10],[-19,16],[-10,4],[-7,0],[-31,15],[-5,0],[-134,-48],[-33,-1],[-5,2],[12,15],[6,5],[7,4],[-9,9],[-10,5],[-9,2],[-11,-2],[35,74],[14,18],[-17,10],[-5,11],[2,17],[7,14],[7,12],[17,18],[-11,5],[-24,-6],[-10,8],[4,7],[14,16],[10,16],[9,19],[1,7],[-2,5],[0,3],[4,4],[2,1],[3,-1],[3,-1],[1,-3],[5,-11],[5,-5],[25,-11],[4,4],[13,21],[3,10],[1,11],[1,18],[2,11],[6,-1],[6,-8],[4,-7],[6,-8],[6,-2],[5,4],[7,6],[-9,17],[-4,10],[1,11],[4,5],[7,3],[8,1],[5,0],[22,-11],[10,-10],[-3,-16],[0,-4],[5,-28],[-1,-9],[-2,-9],[-6,-14],[0,-6],[0,-10],[3,-17],[2,-6],[2,-3],[8,-3],[-14,-21],[-4,-7],[-2,-14],[-3,-7],[-3,-15],[9,-5],[20,0],[17,-16],[8,0],[6,13],[0,5],[0,8],[0,3],[2,7],[8,11],[2,6],[2,9],[0,6],[1,3],[5,-1],[12,-16],[12,-11],[3,-4],[9,-19],[1,-6],[5,-24],[2,-7],[3,-3],[7,-1],[10,6],[3,17],[-1,55],[0,10],[-5,22],[-3,8],[-8,12],[-4,8],[23,17],[-6,4],[-16,17],[-6,3],[-13,1],[-6,3],[4,15],[4,11],[25,45],[3,1],[2,0],[4,2],[6,7],[6,11],[0,13],[-6,9],[-31,20],[5,21],[2,18],[-2,19],[-5,20],[1,17],[10,12],[61,27],[10,1],[46,-5],[4,-3],[2,-3],[2,-11],[2,-4],[2,-1],[8,-1],[5,-3],[4,-4],[7,-12],[5,-6],[3,-2],[10,0],[16,-7],[3,-3],[4,-9],[4,-4],[4,0],[6,4],[4,5],[3,6],[4,4],[10,0],[4,4],[8,14],[-33,25],[-1,5],[4,4],[5,1],[5,-2],[4,1],[4,5],[-1,3],[-8,10],[-1,6],[1,5],[4,11],[5,19],[6,20],[2,7],[-1,9],[7,7],[17,8],[7,6],[-14,12],[-3,1],[-6,-1],[-2,1],[-5,10],[-1,10],[-2,8],[-6,6],[-13,1],[-13,-3],[-12,1],[-12,13],[24,15],[6,2],[5,-1],[5,2],[24,32],[2,9],[-4,11],[-4,7],[-12,12],[26,14],[1,3],[2,11],[2,2],[3,-1],[11,-12],[4,-2],[8,2],[4,-1],[14,-13],[6,-2],[26,0],[37,-15],[14,2],[13,12],[-44,49],[-14,10],[-6,7],[-3,10],[-1,12],[2,12],[4,6],[5,4],[10,4],[58,-3],[3,1],[7,9],[4,3],[23,8],[9,-1],[17,-7],[2,-4],[2,-14],[3,-6],[3,-2],[4,-2],[3,-2],[6,-13],[8,-3],[2,-9],[5,-3],[29,3],[3,2],[9,14],[9,9],[3,6],[2,9],[0,9],[-2,6],[-7,10],[-10,20],[0,4],[-10,0],[-10,2],[-9,8],[-9,15],[6,16],[0,36],[4,9],[9,-1],[17,-15],[47,-27],[5,3],[2,4],[1,20],[-1,4],[-1,5],[-1,4],[1,4],[11,11],[-30,35],[-10,16],[48,-1],[15,-6],[7,-8],[5,-10],[5,-7],[16,3],[16,-8],[8,0],[-6,14],[-15,16],[-6,11],[6,6],[2,2],[-7,14],[-7,11],[-8,7],[-9,2],[40,23],[22,0],[8,-24],[0,-9],[2,-3],[8,-2],[16,-12],[21,-5],[3,1],[1,9],[-3,9],[-8,16],[10,10],[31,4],[-5,12],[-15,5],[-2,14],[-19,-7],[1,3],[1,7],[1,3],[-28,-4],[-39,23],[-8,10],[7,2],[8,6],[8,9],[6,9],[-3,9],[-5,7],[-10,9],[-15,30],[-2,5],[9,-1],[4,0],[3,4],[-1,13],[-7,28],[1,17],[6,12],[17,-2],[7,9],[0,2],[-1,5],[0,3],[1,2],[2,2],[5,4],[7,4],[2,3],[2,5],[3,12],[2,5],[4,4],[13,10],[6,2],[4,-1],[9,-8],[5,-1],[5,1],[4,1],[5,-5],[5,-11],[2,-3],[3,-2],[18,-5],[9,1],[6,2],[2,-1],[8,-7],[13,0],[7,-2],[12,-9],[7,0],[12,12],[8,5],[7,1],[4,-6],[3,-16],[3,-11],[6,-6],[15,2],[12,-12],[6,-2],[7,5],[12,15],[7,4],[-9,24],[7,6],[2,2],[-2,2],[-4,6],[-2,2],[5,7],[-1,5],[-3,3],[-4,1],[-5,0],[-10,-5],[-5,0],[-10,5],[-10,11],[-16,26],[7,10],[30,9],[3,2],[3,5],[3,9],[3,1],[5,-2],[7,-7],[4,-2],[4,1],[3,3],[4,1],[4,-1],[8,-7],[5,-1],[8,6],[13,25],[9,7],[-10,7],[-4,5],[-4,8],[17,12],[15,-6],[40,-50],[3,-2],[6,0],[3,5],[3,7],[4,5],[8,1],[17,-1],[8,3],[-74,59],[6,8],[6,2],[14,0],[6,4],[12,13],[5,0],[-12,17],[-4,10],[-5,17],[1,4],[2,5],[3,3],[3,0],[5,-3],[5,0],[4,2],[5,4],[-3,5],[-3,4],[-4,2],[-3,0],[7,8],[7,4],[7,-1],[8,-4],[-2,-3],[-4,-8],[-2,-3],[15,-21],[7,-5],[0,14],[6,-1],[6,-3],[3,-3],[2,-5],[0,-5],[-2,-3],[-7,-5],[-5,-9],[-2,-13],[-2,-15],[63,-21],[-5,9],[-11,10],[-6,9],[7,2],[6,-1],[13,-6],[-2,9],[-1,9],[0,19],[23,-20],[3,2],[5,8],[3,3],[9,0],[4,3],[4,7],[3,7],[6,17],[-12,15],[6,8],[3,8],[5,6],[7,1],[3,-2],[10,-9],[2,0],[11,6],[-4,6],[-5,22],[-4,10],[4,3],[4,10],[2,2],[6,0],[2,-2],[0,-5],[3,-8],[13,-26],[2,-11],[1,-10],[2,-7],[5,-5],[4,-2],[3,-2],[1,-5],[0,-7],[1,-5],[4,-4],[8,-4],[8,3],[25,28],[-22,18],[-10,14],[0,17],[9,6],[15,-2],[15,-6],[9,-6],[-4,8],[0,12],[1,14],[0,13],[-23,-11],[-9,4],[-7,21],[5,3],[7,10],[4,3],[8,2],[3,2],[4,6],[3,9],[0,6],[2,3],[11,-2],[5,1],[9,6],[-2,-10],[-4,-5],[-10,-5],[2,-8],[3,-1],[5,2],[5,0],[5,-3],[15,-13],[0,16],[7,6],[34,1],[16,4],[-6,3],[-3,6],[-2,10],[-1,13],[5,-1],[2,6],[1,7],[3,6],[4,2],[4,2],[18,-2],[9,2],[7,8],[3,18],[-6,2],[-6,4],[2,12],[3,5],[5,1],[5,1],[-11,31],[25,-6],[8,2],[-1,6],[-3,4],[-2,2],[-3,1],[-3,3],[-5,11],[-3,5],[-29,16],[9,11],[17,5],[10,5],[3,0],[5,-4],[8,-11],[4,-2],[5,2],[9,5],[-2,-12],[8,3],[5,10],[2,14],[-3,16],[56,15],[62,42],[15,-3],[14,4],[8,-1],[49,-26],[4,0],[3,1],[4,3],[1,3],[-1,4],[0,6],[1,5],[4,9],[2,5],[-1,4],[-3,5],[0,4],[1,7],[2,5],[4,3],[3,2],[7,-1],[6,-5],[5,-1],[6,8],[-4,9],[-3,7],[0,8],[3,11],[4,7],[4,2],[5,-1],[4,-5],[4,-10],[-2,-8],[-4,-6],[-2,-7],[2,-11],[4,-4],[16,-1],[14,-7],[15,0],[11,-9],[5,-2],[5,2],[6,4],[6,2],[6,-5],[11,-14],[7,29],[-3,2],[-3,4],[-3,6],[-2,6],[27,23],[1,4],[1,7],[-2,7],[-6,17],[-1,6],[5,9],[7,6],[20,9],[7,1],[6,-1],[6,-4],[13,-13],[7,-4],[5,1],[23,26],[7,3],[8,-2],[7,1],[4,11],[-1,11],[-5,27],[0,13],[5,9],[7,5],[89,26],[89,25],[26,-5],[5,3],[4,8],[1,17],[-4,-1],[-6,1],[-5,5],[-1,9],[4,9],[7,-1],[7,-8],[5,-6],[4,-5],[5,-2],[6,-1],[4,1],[3,4],[5,9],[4,3],[6,1],[3,2],[22,40],[5,5],[18,-1],[85,33],[22,16],[12,4],[23,2],[50,-16],[21,-23],[-2,-39],[3,-2],[4,-6],[3,-1],[-4,-7],[-3,-8],[-6,-17],[23,12],[6,-2],[4,-13],[-4,-11],[-7,-8],[-6,-4],[3,-7],[3,-1],[3,-1],[3,-3],[4,-7],[2,-6],[3,-5],[4,-4],[21,-8],[7,-7],[7,-12],[2,-12],[-2,-12],[-7,-14],[-6,-7],[-7,-3],[-8,1],[-7,4],[-13,13],[-6,1],[-14,-13],[-21,-11],[-8,-1],[-6,6],[-5,13],[-3,15],[1,10],[7,7],[8,5],[6,0],[-3,8],[-3,5],[-3,4],[-4,4],[1,2],[2,7],[1,3],[-5,3],[-9,13],[-7,2],[-25,-5],[-14,5],[-14,11],[-14,6],[-13,-9],[9,-19],[2,-11],[-2,-14],[20,-5],[-10,-12],[-17,-2],[-56,8],[-8,-1],[-4,-7],[-3,-9],[-7,-3],[11,-7],[33,-3],[-3,-2],[-11,-11],[-5,-3],[-7,0],[-2,-1],[-3,-3],[-3,-6],[-2,-3],[-4,-3],[-5,2],[-4,2],[-5,2],[-12,-1],[-6,-2],[-4,-4],[1,-1],[2,-3],[1,-1],[0,-1],[-6,-8],[-2,-1],[-3,0],[-5,0],[-19,8],[-12,-2],[-12,7],[-6,-1],[-5,-6],[-10,-18],[-6,-7],[-33,-22],[-10,-14],[-14,-32],[-6,-7],[-5,0],[-6,1],[-4,-1],[-4,-9],[1,-2],[3,-5],[2,-1],[-14,-23],[-33,-20],[-12,-12],[-12,-18],[-8,-22],[3,-21],[4,-12],[-2,-6],[-10,-10],[-6,-10],[-3,-9],[-6,-24],[-1,-5],[-1,-6],[-1,-5],[-1,-3],[-16,1],[-6,2],[-11,8],[-27,7],[-5,-2],[-2,-3],[-3,-10],[-3,-2],[-3,-2],[-4,-4],[-3,-5],[2,-6],[6,-6],[89,-15],[4,-7],[2,-13],[-4,-10],[-8,-4],[-16,0],[-7,-1],[-14,-10],[-7,0],[4,-13],[8,-12],[9,-8],[17,-2],[9,-9],[5,-16],[-1,-23],[-5,-18],[-9,-8],[-21,-6],[-7,3],[-11,9],[-10,10],[-6,11],[6,8],[2,11],[-2,12],[-6,8],[-6,0],[-38,-17],[-14,-1],[-15,4],[-15,8],[-10,17],[-14,48],[-13,12],[-7,-1],[-8,-3],[-7,-5],[-6,-8],[-12,-23],[-7,-7],[-8,-1],[3,-9],[8,-14],[3,-10],[0,-11],[-8,-22],[-3,-10],[7,4],[6,2],[5,-3],[6,-7],[4,-11],[-2,-10],[-4,-9],[-5,-6],[-13,-4],[-12,3],[-25,13],[3,7],[1,8],[2,27],[-2,36],[-4,6],[-6,3],[-11,2],[-24,14],[-11,3],[-14,-6],[5,-18],[1,-8],[-3,-8],[-4,-7],[-4,-5],[-4,-3],[-40,-19],[-11,-2],[-3,-2],[-3,-10],[-2,-10],[-3,-7],[-5,-3],[-18,20],[-5,3],[-16,4],[9,-40],[4,-9],[3,-6],[2,-6],[-1,-9],[-4,-3],[-6,1],[-11,5],[-6,-1],[-3,-3],[-3,-6],[-5,-5],[-39,-20],[-8,-7],[-10,-13],[-6,-16],[5,-14],[-8,-17],[-24,-20],[-10,-11],[-42,-74],[-12,-14],[-13,2],[-13,5],[-14,0],[-52,-32],[-2,1],[-2,3],[-7,15],[-2,4],[-2,3],[-23,18],[-6,3],[-52,3],[-6,-4],[-2,-10],[3,-48],[2,-8],[2,-3],[2,-1],[9,-11],[5,-4],[11,-4],[14,1],[4,-5],[4,-15],[-15,-7],[-5,0],[6,-18],[0,-14],[-6,-10],[-10,-3],[-20,3],[-19,-3],[-7,2],[-29,29],[-8,1],[-10,-4],[-9,-9],[-7,-9],[9,-12],[-4,-7],[-24,-19],[-7,-3],[-14,-4],[3,-15],[4,-8],[5,-4],[35,-13],[-4,-6],[-4,-4],[-4,-2],[-4,0],[-2,-6],[-1,-13],[0,-14],[1,-8],[8,-9],[21,-5],[8,-5],[3,-6],[5,-17],[3,-5],[11,-4],[12,0],[20,10],[10,1],[9,-9],[-7,-10],[-7,-5],[-35,-5],[-8,1],[-9,8],[-6,-1],[-24,-15],[-6,-1],[-4,-2],[-2,-6],[1,-12],[2,-6],[3,-3],[2,-4],[1,-11],[-3,-15],[-6,-12],[-9,-8],[-8,-6],[-12,-3],[-4,-3],[-3,-5],[-7,-13],[-3,-3],[-17,-3],[-7,-5],[-6,-11],[0,-8],[2,-7],[4,-6],[1,-6],[-1,-7],[-9,-27],[25,-3],[5,-4],[1,-6],[-2,-20],[1,-7],[2,-9],[2,-6],[63,-61],[30,-12],[15,0],[14,7],[10,8],[6,3],[5,-6],[6,-16],[5,-4],[28,-12],[-2,16],[-3,16],[-9,28],[-1,19],[9,7],[11,-1],[66,-38],[8,0],[-2,14],[-1,14],[1,13],[5,11],[-6,11],[-7,15],[-2,14],[6,7],[16,4],[8,0],[6,-5],[7,-12],[23,-25],[3,-7],[4,-16],[3,-4],[5,-2],[9,-2],[4,1],[0,12],[-1,53],[3,7],[6,1],[15,-3],[17,3],[82,-17],[8,-11],[-4,-23],[-11,-23],[-10,-11],[-6,3],[-6,5],[-5,0],[-1,-14],[1,-16],[0,-14],[-3,-9],[-7,4],[-17,15],[-5,8],[-2,5],[-2,13],[-1,4],[-2,2],[-17,3],[-3,0],[-2,-4],[-1,-8],[-1,-4],[-3,-1],[-19,-3],[-5,-6],[-5,-14],[5,-15],[14,-14],[27,-19],[-2,-6],[-7,-13],[-1,-4],[2,-11],[0,-7],[-2,-7],[-17,-33],[-6,-10],[-10,-4],[-17,-2],[-8,3],[-7,9],[-6,16],[1,14],[3,16],[2,19],[-3,13],[-9,11],[-17,13],[-10,3],[-20,-3],[-10,2],[-7,9],[-7,11],[-7,5],[-7,-9],[-2,-15],[-1,-23],[1,-23],[2,-16],[-8,5],[-14,15],[-8,4],[-36,11],[-9,-2],[-5,-6],[1,-10],[6,-14],[8,-15],[9,-13],[4,-9],[-2,-9],[-4,-7],[-2,-6],[2,-8],[9,-15],[-4,-30],[-3,-9],[-6,-8],[-9,-3],[-10,1],[-7,6],[-6,13],[-4,14],[-3,16],[-10,38],[-2,4],[-5,2],[-2,2],[-7,16],[-4,7],[-5,4],[6,17],[2,11],[0,8],[-4,6],[-7,1],[-33,-6],[-9,2],[-12,11],[-9,6],[-10,0],[-20,-7],[-18,1],[-6,-1],[-16,-12],[-6,-3],[-48,-9],[-9,-6],[-11,-14],[-7,-17],[1,-16],[19,-23],[21,-14],[18,-20],[11,-39],[-33,-8],[-16,-10],[-9,-20],[5,-22],[17,-7],[34,-1],[-8,-19],[-2,-10],[0,-13],[14,2],[6,4],[7,7],[0,-17],[-2,-11],[-4,-8],[-7,-5],[-8,-4],[-15,-4],[-15,0],[-6,4],[-35,32],[-3,9],[0,24],[-1,6],[-3,5],[-4,2],[-3,3],[-1,9],[-2,17],[-3,15],[-5,11],[-7,10],[-72,73],[-4,12],[-1,5],[-4,11],[-2,6],[0,10],[1,6],[0,5],[-3,7],[-6,6],[-7,-2],[-12,-12],[-5,-2],[-3,2],[-3,2],[-4,1],[-13,0],[-5,2],[-3,2],[-5,8],[-2,3],[-4,1],[-7,0],[-4,1],[-3,4],[-7,11],[-4,3],[-4,0],[-11,-8],[-14,-1],[-41,15],[8,-9],[8,-7],[-9,-10],[5,-5],[16,-6],[-11,-7],[-23,-1],[-11,-5],[10,-11],[11,-4],[23,-1],[-2,-3],[-3,-6],[-1,-3],[27,-8],[15,-11],[3,-4],[1,-7],[-1,-12],[-2,-2],[-89,8],[4,-17],[12,-9],[23,-6],[-25,-4],[-7,-4],[-4,-7],[-3,-10],[-3,-15],[30,-16],[-5,-9],[-1,-9],[3,-9],[5,-8],[-21,-5],[-6,-4],[-9,-2],[-6,5],[-13,19],[-7,5],[-6,-4],[-4,-10],[-4,-12],[-2,-15],[-2,-3],[-7,0],[-4,-2],[-3,-4],[1,-7],[6,-14],[6,-6],[29,-4],[14,-6],[26,-20],[25,-29],[-1,-3],[-3,-7],[-1,-2],[14,-32],[-10,-21],[-21,-12],[-59,-11],[-20,5],[-22,25],[-9,7],[-8,15],[-5,4],[-10,3],[-7,-9],[-4,-20],[-5,-15],[-19,7],[-22,-3],[-7,6],[-3,12],[0,7],[3,6],[2,12],[2,44],[-21,-10],[-2,1],[-1,2],[-2,1],[-1,-3],[-7,-18],[-9,-11],[-26,-14],[5,-13],[11,-22],[4,-14],[0,-7],[-1,-23],[-1,-5],[-5,-3],[-10,-1],[-8,4],[-5,9],[-5,11],[-7,11],[-14,15],[-8,4],[-9,3],[14,-16],[6,-11],[3,-12],[-3,-12],[-7,-12],[-14,-18],[4,-5],[9,-9],[3,-5],[3,-9],[3,-9],[4,-8],[6,-1],[4,2],[8,8],[5,3],[5,0],[13,-5],[-1,-11],[2,-7],[9,-12],[-21,-8],[-24,-4],[-6,2],[-4,-15],[-17,-6],[-32,0],[16,-21],[60,-15],[12,-27],[-24,-11],[-13,-3],[-11,4],[-10,11],[-5,4],[-5,1],[-5,-3],[-7,-12],[-5,-2],[8,-8],[-8,-12],[-10,-2],[-8,7],[-7,14],[-4,3],[-5,-5],[-11,-17],[-2,-2],[-2,-1],[-2,-1],[-2,-2],[1,-11],[-1,-3],[-11,-4],[-12,1],[-10,9],[-7,20],[0,8],[1,10],[1,9],[-3,7],[-23,17],[2,-8],[6,-13],[2,-4],[-1,-9],[-2,-8],[-4,-7],[-4,-3],[-7,-1],[-9,6],[-7,9],[-6,10],[-9,-34],[11,-10],[11,-6],[5,-7],[1,-22],[4,-11],[-7,-4],[-13,-4],[-7,-4],[-5,-7],[-1,-7],[2,-6],[7,-4],[0,-18],[10,-12],[27,-15],[4,-1],[3,-3],[0,-6],[1,-7],[1,-5],[5,-5],[18,-7],[-3,-7],[-3,-16],[-2,-4],[-51,-10],[-7,-5],[-4,-16],[8,-34],[-4,-19],[-8,-7],[-9,-3],[-19,1],[9,-17],[29,-15],[19,-20],[6,-2],[14,-1],[7,-3],[21,-15],[-15,-17],[-39,-19],[-17,0],[-9,-3],[-4,-3],[-5,-13],[-4,-6],[-8,-4],[-17,4],[-8,-5],[5,-20],[1,-10],[0,-12],[68,14],[2,-3],[3,-4],[3,-3],[4,0],[26,12],[7,-1],[22,-18],[13,5],[27,29],[29,23],[3,5],[4,13],[3,4],[15,9],[-3,-12],[-12,-28],[10,-6],[35,-1],[-1,5],[0,9],[-1,4],[7,-3],[5,-5],[10,-14],[-3,-5],[-1,-5],[0,-6],[2,-6],[-11,-11],[-56,-36],[-12,-4],[-12,4],[-11,9],[-5,1],[-5,-4],[-11,-15],[-12,-10],[-6,0],[-5,2],[-4,0],[-4,-9],[-3,-6],[-6,-6],[-12,-6],[-25,-6],[-3,-5],[0,-10],[3,-11],[2,-8],[11,-9],[12,-3],[59,14],[17,-2],[11,1],[5,-2],[24,-23],[-6,-10],[-22,-22],[-28,-15],[-8,-10],[-7,-8],[-30,-5],[-2,-5],[0,-9],[2,-9],[3,-5],[5,-3],[15,-4],[-2,-20],[5,-7],[17,2],[5,-1],[3,-4],[3,-5],[5,-5],[4,-1],[14,2],[68,-23],[9,0],[16,8],[15,3],[3,-1],[3,-5],[2,-11],[2,-7],[14,-24],[3,-4],[13,-9],[4,1],[3,2],[6,2],[8,0],[26,-11],[-2,9],[-4,7],[-9,11],[11,0],[28,-24],[52,-30],[15,-1],[-2,12],[-4,7],[-23,17],[-12,13],[13,0],[24,-6],[13,2],[-22,24],[-46,25],[-23,18],[13,5],[28,-9],[9,10],[-8,8],[-9,6],[-8,7],[-6,13],[8,2],[25,-9],[-1,15],[4,9],[15,9],[24,23],[7,2],[16,0],[80,21],[80,22],[127,-3],[4,-8],[-4,-15],[-9,-22],[-5,-5],[-9,-1],[-7,3],[-39,26],[-16,6],[-16,1],[-16,-6],[-10,-9],[-28,-40],[-10,-5],[-55,-1],[-10,-5],[-11,-8],[-6,-6],[-4,-7],[-9,-16],[-4,-12],[1,-7],[4,-6],[7,-5],[-5,-4],[-4,-2],[-10,2],[10,-24],[123,-33],[23,-16],[21,-23],[-18,-11],[-45,24],[-21,2],[7,-14],[28,-25],[-6,-11],[-15,-3],[-4,-12],[20,-7],[-11,-6],[-57,-9],[-44,11],[-6,0],[-16,-9],[-4,-6],[1,-9],[5,-9],[4,-5],[5,-2],[12,0],[50,-20],[85,-4],[4,-3],[0,-10],[-7,-14],[-10,-15],[-19,-22],[11,-16],[14,-6],[29,4],[7,6],[6,7],[6,3],[8,-7],[6,-10],[17,-37],[0,-7],[-2,-12],[-1,-13],[4,-13],[12,-18],[7,-8],[7,-4],[46,19],[14,-3],[15,-9],[11,-12],[9,-19],[7,-28],[10,-15],[33,3],[12,-16],[1,-13],[-2,-25],[2,-15],[2,-15],[1,-15],[0,-15],[-3,-16],[-2,-8],[-5,-12],[-2,-7],[-2,-7],[0,-5],[-1,-6],[-5,-14],[-2,-5],[-2,-4],[-11,-12],[-3,-5],[-3,-8],[57,-28],[3,-4],[5,-14],[4,-6],[-4,-2],[-3,-4],[-3,-5],[-2,-7],[8,-7],[9,-4],[18,0],[8,-3],[27,-29],[18,-12],[6,-11],[5,-19],[6,-11],[18,-26],[4,-12],[-4,-14],[-10,-11],[-27,-25],[-3,1],[-7,16],[-5,4],[-12,4],[-19,2],[-4,3],[-8,10],[-4,4],[-6,0],[-16,-3],[-16,5],[-5,-2],[4,-13],[5,-7],[11,-14],[-7,-9],[-17,-4],[-8,-4],[2,-8],[3,-5],[3,-3],[1,-3],[0,-9],[-2,-23],[1,-8],[8,-6],[49,-1],[9,-3],[6,-9],[4,-19],[0,-16],[-5,-13],[-9,-11],[11,-10],[15,3],[43,29],[112,-1],[17,5],[7,-1],[9,-5],[6,-9],[11,-26],[-21,-17],[-70,-17],[9,-8],[6,-10],[1,-12],[-9,-15],[-9,-7],[-42,-18],[-12,0],[-35,10],[-33,-2],[3,-8],[0,-7],[-2,-7],[-4,-6],[28,-8],[9,-5],[-3,-8],[-1,-17],[-2,-7],[-4,-7],[-1,-8],[0,-8],[3,-10],[8,-11],[10,-2],[19,4],[30,-1],[10,6],[3,5],[7,17],[5,6],[5,5],[5,2],[31,5],[70,-8],[7,-9],[5,-14],[-2,-22],[-4,-17],[-7,-17],[-8,-12],[-10,-4],[6,-11],[4,-3],[21,7],[8,0],[15,-3],[-2,-14],[-9,-16],[2,-10],[6,-5],[20,-3],[27,-13],[13,-11],[10,-16],[3,-23],[-12,-8],[-71,9],[-15,-3],[10,-16],[11,-6],[25,-4],[28,-11],[13,-12],[11,-19],[-16,-17],[-16,0],[-70,31],[-19,3],[-16,-8],[10,-6],[5,-4],[8,-15],[4,-3],[12,-2],[41,-24],[-7,-2],[-19,-14],[-31,-14],[-15,-1],[-46,12],[4,-35],[-15,-14],[-36,-2],[5,-32],[-1,-6],[-4,-5],[-25,-13],[-16,-3],[-51,6],[-4,-2],[-7,-8],[-5,0],[5,-12],[3,-6],[4,-2],[110,-5],[22,-8],[10,2],[76,58],[4,7],[1,3],[-1,4],[0,4],[2,3],[23,15],[6,1],[5,-1],[6,-4],[2,-5],[1,-7],[4,-8],[9,-10],[22,-9],[10,-8],[-4,-2],[-3,-3],[-7,-7],[5,-13],[7,-3],[15,4],[17,-2],[17,-9],[-2,-8],[-5,-5],[-9,-7],[5,-10],[9,-9],[4,-10],[-8,-12],[-8,-5],[-9,0],[-27,10],[-25,19],[-4,4],[-7,13],[-3,2],[-18,-6],[3,-6],[4,-15],[2,-6],[21,-20],[-13,-5],[4,-8],[5,-4],[12,-3],[-11,-8],[-2,-4],[-3,-9],[-2,-2],[-64,-3],[-49,12],[-77,-8],[-21,-13],[-11,-4],[-77,-7],[-76,-6],[12,-24],[28,-16],[51,-13],[-6,-12],[-8,-5],[-17,-8],[-35,-28],[11,-20],[16,-2],[33,14],[63,12],[49,25],[16,2],[69,-11],[14,-8],[25,-33],[26,-19],[7,-2],[5,9],[-1,15],[-7,13],[-4,12],[5,12],[16,10],[17,2],[35,-4],[16,4],[33,22],[16,7],[7,-8],[4,-18],[1,-22],[-3,-17],[-7,-8],[-31,-8],[-19,-10],[-20,-5],[-15,5],[-4,-2],[-18,-22],[16,-3],[32,6],[16,-1],[26,-10],[17,-16],[5,-6],[2,-8],[0,-10],[-2,-8],[0,-8],[4,-8],[-5,-7],[-5,-4],[-4,0],[-18,8],[-12,3],[-13,-3],[-38,-23],[9,-7],[76,-4],[10,-6],[5,-13],[-1,-13],[-11,-10],[-40,-11],[-88,6],[-90,28],[2,-13],[7,-8],[16,-9],[3,-5],[-2,-5],[-5,-3],[-3,-3],[-20,-8],[10,-14],[10,-7],[10,0],[12,6],[13,-1],[7,-18],[9,-49],[-11,-8],[-46,4],[8,-15],[37,-12],[10,-10],[4,-8],[1,-6],[-4,-13],[1,-6],[5,-4],[17,-8],[5,2],[6,8],[4,9],[7,20],[5,10],[10,9],[39,3],[36,16],[38,2],[13,-3],[8,-16],[6,-23],[3,-21],[-1,-20],[-5,-22],[-9,-20],[-10,-17],[-6,-7],[-18,-8],[3,-6],[2,-5],[4,-4],[3,-1],[-4,-9],[-37,-46],[-3,-9],[5,-14],[15,6],[29,25],[4,7],[5,10],[6,8],[6,-2],[7,-7],[22,-14],[19,-20],[6,-2],[16,6],[8,7],[6,11],[3,12],[9,22],[21,41],[7,8],[6,3],[7,1],[7,-2],[12,-7],[4,-3],[1,-4],[0,-9],[1,-7],[1,-6],[3,-7],[8,-29],[-4,-19],[-22,-33],[-5,-11],[-4,-13],[-3,-14],[1,-15],[2,-10],[5,-13],[5,-11],[5,-6],[-14,-24],[-19,-12],[-55,-14],[-24,0],[-20,12],[-5,44],[-8,9],[-28,17],[-8,-7],[-3,-16],[-8,-66],[-5,-22],[-5,-12],[-9,-4],[-10,0],[-9,2],[-9,6],[2,13],[2,8],[1,9],[-1,15],[-16,40],[-5,-4],[-2,-13],[-2,-15],[-2,-12],[-4,-9],[-5,-7],[-5,-4],[-6,-2],[-26,3],[-13,6],[-10,11],[-14,27],[-11,17],[-2,11],[3,9],[6,5],[-14,2],[-15,-3],[-10,0],[-7,6],[-14,21],[-3,-3],[-24,-7],[-127,42],[-4,0],[-3,-4],[-3,-5],[-3,-5],[-5,-1],[21,-26],[8,-6],[88,-40],[5,-20],[-12,10],[-27,13],[-52,13],[-13,-4],[51,-17],[30,-26],[21,-13],[18,-16],[8,-23],[-13,-1],[-28,11],[-55,6],[-13,-4],[2,-14],[2,-8],[3,-4],[7,-3],[19,-2],[24,-16],[4,-5],[0,-11],[-2,-12],[1,-11],[8,-11],[13,-5],[13,0],[9,4],[4,5],[7,18],[4,6],[5,4],[5,2],[6,0],[41,-10],[8,-10],[5,-9],[4,-5],[5,-2],[17,8],[5,1],[7,0],[89,-32],[-13,-26],[-16,-15],[-35,-16],[1,-3],[4,-9],[1,-4],[-38,-22],[44,-6],[15,7],[19,19],[7,3],[15,3],[6,-3],[8,-10],[-12,-15],[-10,-18],[-18,-42],[-2,-6],[-5,-21],[-2,-7],[-16,-26],[-5,-7],[-6,-4],[-6,-1],[-56,4],[-33,18],[-3,4],[-2,5],[-1,7],[-1,6],[-4,5],[-13,5],[-29,-12],[-29,6],[-13,-2],[-27,-12],[12,-14],[46,-23],[-19,-14],[-58,-22],[23,-7],[79,16],[12,-3],[12,-8],[7,-13],[8,-6],[74,1],[8,-6],[0,-17],[-9,-20],[-13,-16],[-30,-27],[-45,-23],[-22,-4],[1,6],[2,6],[2,3],[3,3],[-6,2],[-10,-6],[-5,-1],[-6,4],[-4,8],[-1,10],[4,12],[-23,-4],[-7,-5],[-19,-30],[-7,-6],[-16,-2],[-30,7],[-15,-1],[7,-8],[9,-5],[9,-7],[5,-13],[-3,0],[-4,-4],[-2,-1],[4,-10],[8,-2],[59,19],[43,-19],[59,-1],[58,18],[59,33],[29,5],[17,-2],[11,-9],[3,-23],[-11,-19],[-28,-20],[-28,-11],[-4,-4],[-5,-8],[-3,-2],[-4,-1],[-3,-3],[-8,-8],[6,-1],[5,-4],[5,-5],[4,-6],[-20,-29],[-25,-13],[-132,-14],[-14,4],[-13,22],[-6,1],[-7,-3],[-5,-2],[-113,25],[-26,19],[-44,17],[9,-33],[15,-20],[19,-16],[20,-27],[7,-3],[13,-3],[9,-5],[7,-7],[14,-22],[6,-13],[4,-3],[7,-5],[3,-3],[3,-4],[2,-9],[3,-4],[3,-1],[8,0],[5,-2],[3,-3],[2,-6],[-3,-34],[-9,-24],[-13,-18],[-72,-60],[-93,-27],[-17,0],[-13,12],[-5,16],[1,15],[2,15],[-1,16],[-4,14],[-3,17],[1,15],[5,13],[-6,6],[-4,1],[-11,0],[-7,5],[-3,10],[2,10],[5,9],[-7,15],[-10,0],[-20,-15],[-10,-3],[-11,2],[-65,32],[-6,0],[-3,-2],[-7,-6],[-3,-2],[-17,2],[-5,-2],[0,-3],[-8,-28],[40,-40],[12,-20],[10,-27],[2,-15],[-4,-9],[-7,-4],[-22,-3],[-62,13],[-32,18],[-15,-2],[-9,-27],[6,-3],[-7,-9],[-9,-4],[-105,-21],[-18,-12],[9,-5],[16,-1],[9,-2],[12,-11],[6,-2],[77,8],[77,8],[18,-5],[10,-5],[49,-57],[7,-16],[-73,-17],[-24,1],[-22,8],[-11,1],[-90,-19],[-90,-19],[-13,-7],[-12,-1],[-7,-2],[-23,-23],[-12,-7],[-6,-6],[-4,-9],[6,-6],[7,-2],[5,-3],[3,-10],[3,-7],[5,-1],[31,17],[6,1],[24,-9],[97,15],[94,-8],[94,-8],[-6,-20],[-15,-14],[-129,-56],[-128,-56],[-128,-56],[-129,-56],[-70,-2],[-7,-3],[-19,-22],[-6,-6],[-106,-42],[-106,-42],[-21,-15],[-131,-20],[-131,-21],[-131,-20],[-131,-20],[-7,-4],[-5,-7],[13,-9],[5,-5],[8,-12],[4,-5],[6,-2],[19,3],[-106,-18],[-106,-19],[-106,-18],[-106,-19],[-3,2],[-4,5],[-4,2],[-9,0],[-16,-6],[-31,-19],[-23,-5],[-15,-10],[-7,-1],[-13,3],[-49,-20],[-14,-12],[-8,-3],[13,-11],[17,-3],[61,13],[15,-3],[15,-8],[-85,-17],[15,-13],[50,-1],[-10,-6],[-35,-1],[-22,-8],[-11,-10],[-6,-14],[11,-17],[26,-4],[44,6],[-9,-6],[-29,-5],[-18,-10],[-18,-15],[32,7],[10,-3],[-8,-11],[-12,-4],[-88,9],[-69,-20],[14,-5],[45,3],[-7,-7],[-8,-2],[-22,-3],[-24,-8],[-52,9],[-2,-2],[-1,-7],[-2,-2],[-48,8],[-103,-7],[-103,-7],[-97,21],[-97,22],[-46,-9],[-86,19],[-4,-1],[-2,-4],[-2,-8],[-2,-5],[-3,-2],[-4,-2],[-9,-2],[-24,13],[-122,11],[-121,12],[5,-11],[5,-6],[29,-3],[7,-6],[1,-13],[-60,14],[-28,1],[-104,25],[-105,25],[-104,26],[-14,0],[-3,-19],[-17,-4],[-78,25],[-15,0],[16,-11],[3,-5],[2,-12],[-3,-7],[-6,-5],[-15,-9],[-37,3],[-23,11],[-44,35],[-24,7],[-44,-11],[-22,0],[-34,25],[-12,5],[-12,-2],[-11,-11],[-1,-4],[0,-5],[-1,-3],[-2,-3],[-36,-8],[1,-17],[4,-13],[6,-13],[6,-14],[-12,3],[-49,39],[-53,25],[-41,-1],[-14,5],[-14,12],[-25,32],[4,-10],[16,-28],[-8,-7],[-27,0],[5,-14],[5,-10],[14,-18],[-20,10],[-10,8],[-8,12],[-9,16],[-28,37],[-1,-17],[6,-12],[17,-14],[30,-42],[-4,-5],[-1,-6],[0,-16],[-2,-5],[-3,-3],[-7,-5],[12,-19],[94,-57],[41,-59],[15,-13],[33,-15],[8,-8],[4,-11],[-2,-12],[-9,-2],[-30,11],[-4,-1],[-3,-2],[-3,-3],[-1,-4],[3,-5],[39,-30],[30,4],[8,-1],[69,-49],[42,-59],[16,-13],[49,-27],[46,-3],[14,-8],[-11,-9],[26,-29],[9,-7],[26,-7],[7,-5],[19,-26],[9,-8],[2,-4],[3,-9],[3,-6],[3,-3],[19,-7],[6,3],[20,28],[16,16],[15,9],[48,12],[131,-16],[131,-17],[131,-16],[131,-16],[131,-17],[-21,-15],[7,-11],[4,-10],[-1,-11],[-5,-15],[-7,-11],[-66,-60],[-13,-17],[-5,-11],[-3,-5],[-4,-2],[-5,0],[-3,-2],[-7,-8],[-7,-7],[-52,-36],[-9,-12],[-5,-3],[-9,-3],[-4,-4],[18,-8],[-9,-9],[-4,-2],[-6,0],[-1,4],[-1,5],[-3,3],[-7,0],[-23,-16],[-90,-31],[-89,-31],[23,-3],[47,13],[24,0],[-34,-14],[-116,-9],[-117,-10],[-19,-8],[-10,-1],[2,-2],[4,-8],[-5,-11],[-7,-6],[-8,-1],[-7,3],[-4,4],[-2,5],[-1,5],[-3,7],[-3,5],[-8,9],[-19,13],[-137,26],[-137,25],[-137,26],[-137,25],[-138,25],[-20,-9],[-7,-2],[-126,21],[-126,20],[-126,21],[-8,-1],[-39,-18],[-30,-1],[-76,19],[-75,20],[-16,-2],[-57,11],[-44,27],[-53,17],[-53,31],[5,-11],[9,-9],[17,-12],[-13,-23],[-16,-16],[-110,-37],[-67,12],[-75,-5],[15,-12],[129,-37],[130,-37],[130,-36],[130,-37],[129,-37],[130,-37],[130,-36],[129,-37],[130,-37],[13,-16],[1,-32],[2,-6],[6,-8],[1,-5],[-2,-15],[0,-7],[2,-10],[0,-6],[-1,-5],[-4,-6],[-4,-5],[-83,-48],[-11,-12],[-6,-3],[-9,-3],[-117,-11],[-118,-11],[-118,-11],[-117,-11],[-118,-11],[-118,-11],[-117,45],[-117,45],[-117,44],[-117,45],[-117,44],[-16,1],[-7,2],[-111,90],[-110,89],[-110,90],[-16,19],[-9,7],[-9,0],[-3,-1],[-4,-3],[-2,-5],[1,-8],[3,-9],[8,-14],[3,-7],[9,-37],[6,-15],[8,-12],[9,-7],[9,-4],[20,-2],[-3,-4],[-8,-11],[0,-9],[2,-5],[59,-43],[20,-2],[12,-11],[13,-8],[10,-16],[44,-40],[2,-5],[3,-14],[3,-3],[13,-4],[-11,-11],[-17,-8],[-16,0],[-11,11],[2,2],[4,6],[3,2],[-11,16],[-12,15],[-12,11],[-13,4],[-25,-8],[-12,0],[-12,7],[4,8],[5,5],[12,4],[-6,8],[-6,2],[-13,-2],[-57,14],[-6,-4],[-3,-4],[-6,-8],[-1,-4],[0,-8],[1,-7],[3,-4],[4,-2],[-10,-13],[-13,-3],[-26,3],[8,-15],[15,-34],[23,-35],[50,-41],[28,-39],[10,-11],[42,-35],[93,-51],[53,-10],[26,7],[13,-2],[6,-16],[-12,-10],[0,-11],[8,-8],[17,-7],[11,-7],[5,-1],[20,0],[90,-29],[89,-28],[7,-9],[3,-6],[5,-3],[11,-3],[55,-39],[12,-4],[-12,-9],[12,-12],[6,-4],[6,0],[18,11],[7,2],[47,-6],[-32,-17],[-15,-13],[-12,-26],[5,-16],[37,-73],[14,-13],[87,-32],[87,-32],[6,2],[9,6],[7,8],[5,10],[2,16],[-4,11],[-29,26],[-7,8],[-4,10],[0,13],[2,41],[2,12],[12,18],[16,9],[136,-4],[135,-4],[135,-4],[135,-4],[136,-5],[135,-4],[135,-4],[136,-4],[57,-38],[30,-8],[11,-6],[13,-13],[5,-1],[13,-6],[9,-17],[7,-19],[11,-16],[4,1],[5,2],[4,-1],[0,-13],[-4,-16],[-7,-12],[-14,-20],[-6,-15],[-11,-35],[-7,-16],[-14,-21],[-31,-22],[-44,-43],[-59,-35],[-109,-23],[-110,-22],[-126,4],[-126,4],[-126,3],[-126,4],[-126,4],[12,-23],[118,-26],[118,-25],[118,-26],[21,-14],[6,-2],[104,17],[33,-7],[21,-10],[11,-2],[129,20],[129,20],[128,19],[8,-5],[-2,-11],[-5,-14],[-1,-13],[6,-18],[6,-10],[16,-17],[6,-9],[11,-21],[5,-8],[4,0],[4,3],[7,8],[4,2],[4,1],[13,-2],[3,-2],[2,-3],[-11,-12],[6,-6],[18,4],[8,-1],[82,-56],[3,-5],[6,-14],[4,-4],[5,-3],[4,-5],[9,-13],[3,-3],[11,-4],[4,-18],[-6,-13],[-10,-9],[-17,-8],[-35,-10],[-7,-5],[-5,-10],[-6,-15],[17,-15],[50,-24],[22,-1],[6,-4],[6,-6],[28,-11],[32,-2],[28,-17],[22,1],[-10,-12],[-15,-1],[-42,13],[-44,-17],[-104,-11],[-13,-12],[33,-2],[3,-2],[3,-4],[5,-11],[4,-5],[4,-3],[8,-4],[16,-3],[33,9],[38,-1],[26,11],[3,-1],[11,-11],[4,0],[6,3],[4,0],[17,-10],[7,1],[8,4],[8,1],[18,-20],[16,7],[16,13],[15,7],[14,0],[7,2],[32,21],[56,7],[32,14],[16,2],[16,-5],[16,-13],[11,-6],[24,3],[11,-2],[13,-8],[93,-24],[94,-24],[93,-23],[50,4],[-4,18],[-3,7],[-4,5],[13,47],[7,20],[11,16],[15,12],[15,4],[14,-3],[23,-10],[88,20],[89,19],[9,-1],[16,-8],[6,0],[68,31],[44,36],[16,0],[26,-13],[9,-1],[33,9],[108,-28],[9,-6],[7,-10],[3,-14],[-1,-9],[-6,-15],[-1,-9],[1,-10],[1,-8],[1,-8],[-4,-9],[2,-2],[18,-8],[35,-29],[12,-4],[34,2],[-6,-12],[-2,-10],[3,-8],[6,-10],[8,-6],[7,-3],[55,-6],[26,6],[71,-16],[71,-16],[16,2],[45,24],[76,14],[64,-9],[40,-16],[20,0],[18,-13],[31,-7],[-9,-8],[-58,-23],[-34,1],[14,-13],[126,-34],[127,-34],[127,-34],[127,-34],[127,-34],[127,-34],[127,-34],[69,-1],[70,0],[15,-10],[8,-2],[121,-3],[121,-3],[121,-2],[121,-3],[120,-3],[37,-17],[20,-3],[6,-5],[2,-4],[6,-14],[3,-6],[5,-3],[4,-1],[9,1],[-8,-15],[-13,-9],[-13,-4],[-109,-5],[-108,-4],[-109,-5],[-22,9],[46,31],[-27,10],[-28,-5],[-68,-29],[-83,-5],[-14,5],[67,40],[-9,12],[-17,-5],[-43,-33],[-29,-13],[-72,-3],[-71,-3],[13,12],[42,23],[-12,10],[-16,2],[-45,-11],[-56,-34],[-90,-14],[-32,10],[-76,-6],[-4,-2],[-2,-3],[0,-6],[2,-19],[1,-5],[2,-2],[5,-2],[15,-4],[99,-4],[99,-3],[-15,-11],[13,-3],[46,13],[18,-2],[15,4],[107,3],[107,3],[107,2],[-10,-13],[-8,-16],[9,-4],[9,-1],[-11,-14],[-17,-6],[-123,-2],[-124,-2],[-124,-2],[-123,-2],[-124,-2],[-126,-35],[77,-6],[77,-7],[20,-10],[-6,-11],[-8,-6],[-17,-7],[-50,-31],[-6,-10],[-12,-32],[-5,-10],[-16,-17],[8,-11],[46,3],[-7,-10],[-13,-5],[-24,-3],[10,-6],[35,3],[-14,-11],[-46,-17],[14,-11],[75,5],[76,5],[31,18],[39,4],[4,-2],[3,-3],[2,-5],[2,-5],[2,-5],[2,-2],[5,-2],[2,-2],[2,-5],[1,-3],[-1,-3],[-2,-4],[-3,-8],[0,-6],[4,-4],[12,-4],[4,-3],[1,-3],[-3,-12],[3,-5],[5,-2],[85,15],[86,15],[-9,-8],[-10,-6],[10,-15],[14,-4],[83,32],[83,32],[70,-11],[71,-12],[13,6],[25,22],[-11,15],[13,7],[41,3],[2,-13],[7,-4],[75,7],[74,7],[111,-18],[126,25],[127,25],[126,25],[17,-4],[-12,-18],[81,16],[-30,-26],[-85,-39],[-85,-38],[-47,1],[-130,-35],[-66,-34],[-111,-18],[-111,-18],[8,-20],[10,-14],[65,-62],[-5,-16],[-3,-5],[-4,-2],[5,-3],[11,4],[5,0],[5,-4],[11,-11],[84,-62],[3,-3],[0,-5],[0,-5],[0,-6],[3,-6],[41,-48],[-18,-17],[-19,-7],[-40,-3],[8,-9],[12,-2],[55,5],[10,5],[14,15],[6,1],[5,-1],[43,-37],[11,-4],[5,2],[4,6],[7,16],[4,8],[4,5],[41,21],[6,10],[4,24],[4,6],[6,5],[5,2],[5,-2],[5,-5],[12,-24],[9,-12],[10,-3],[11,9],[-7,18],[10,8],[9,-3],[16,-21],[8,-17],[1,-18],[-7,-40],[-11,-28],[-20,-27],[-22,-20],[-17,-7],[-20,-2],[-44,-24],[-39,-34],[-63,-33],[7,-4],[8,1],[16,7],[55,6],[3,-4],[2,-10],[1,-11],[1,-6],[7,-2],[20,9],[45,9],[19,-2],[11,-17],[11,-3],[58,15],[-29,-21],[-30,-14],[44,-17],[15,1],[64,26],[17,1],[45,-24],[80,12],[79,13],[3,-4],[5,-12],[3,-3],[101,-1],[109,67],[110,67],[109,67],[109,67],[55,58],[126,52],[126,53],[126,52],[5,5],[7,9],[84,48],[17,16],[2,2],[0,3],[-1,10],[0,3],[3,4],[19,8],[2,-3],[0,-5],[4,-5],[14,-2],[27,16],[34,0],[17,-8],[15,-1],[4,-2],[1,-4],[0,-4],[3,-4],[6,-4],[46,-7],[14,5],[9,12],[-12,19],[13,8],[3,3],[2,8],[3,19],[3,5],[24,19],[7,4],[36,-1],[3,3],[5,12],[3,4],[16,10],[73,7],[72,7],[18,7],[-7,6],[-26,0],[103,28],[-13,5],[-80,-2],[-13,6],[110,7],[30,-9],[135,25],[8,3],[3,3],[5,7],[5,2],[4,1],[81,-10],[81,-11],[126,29],[127,29],[134,31],[135,31],[8,-1],[49,-20],[121,12],[121,12],[121,13],[121,12],[121,12],[42,-16],[2,1],[4,10],[2,4],[3,0],[83,-18],[127,3],[14,-4],[10,-15],[-1,-3],[-3,-7],[-2,-2],[29,0],[-45,-22],[-44,-8],[6,-10],[10,-6],[10,-3],[8,0],[18,4],[9,1],[19,-15],[11,-2],[11,4],[11,8],[25,29],[9,6],[108,25],[107,25],[14,-5],[-6,-16],[-1,-6],[2,-11],[4,-9],[5,-9],[5,-6],[17,-13],[23,-28],[11,-7],[-4,-4],[-3,-7],[-2,-8],[0,-9],[20,10],[7,0],[-22,-17],[-6,-10],[-4,-13],[-3,-10],[-4,-9],[-59,-48],[-107,-59],[15,-15],[50,-24],[-3,-10],[-4,-5],[-11,-4],[129,-31],[8,2],[-5,7],[27,29],[31,24],[32,4],[39,-46],[16,-3],[137,44],[136,43],[65,38],[29,36],[17,6],[18,-2],[17,-9],[-2,-7],[-2,-6],[-3,-4],[-3,-4],[-2,-6],[0,-17],[0,-7],[-5,-8],[-8,-7],[-14,-8],[19,-8],[20,6],[92,54],[91,54],[2,6],[1,12],[3,5],[19,17],[29,10],[3,6],[-2,11],[-4,10],[-3,5],[-5,5],[-16,9],[6,10],[12,13],[6,9],[-13,17],[-2,5],[0,9],[3,9],[6,15],[7,9],[10,4],[37,7],[10,4],[15,18],[30,6],[78,38],[79,38],[-13,8],[16,20],[5,4],[61,10],[12,5],[12,17],[-7,13],[-4,4],[-5,2],[10,10],[12,24],[9,10],[1,3],[0,5],[0,5],[0,4],[3,2],[2,1],[11,1],[3,1],[1,3],[1,10],[1,4],[1,2],[9,5],[38,35],[131,67],[4,4],[11,19],[5,4],[46,14],[-9,-7],[-10,-4],[9,-8],[96,21],[48,-9],[71,29],[72,29],[9,14],[3,3],[39,13],[15,-1],[7,1],[20,14],[85,27],[86,27],[31,0],[14,8],[-14,4],[2,8],[3,5],[3,2],[4,-2],[6,-4],[58,-25],[43,0],[107,-24],[107,-25],[-4,-6],[-5,-3],[-9,-2],[60,-10],[27,-23],[10,-5],[30,-7],[5,1],[5,2],[15,15],[4,2],[41,2],[19,13],[13,26],[13,7],[63,-18],[-2,20],[12,12],[26,10],[118,8],[6,6],[4,11],[4,5],[28,10],[15,16],[10,5],[3,3],[1,11],[0,4],[2,0],[1,0],[2,1],[11,8],[70,27],[71,27],[-70,28],[30,19],[131,0],[130,0],[131,0],[131,0],[83,36],[-69,18],[-11,16],[14,0],[80,-21],[16,1],[38,-6],[125,31],[125,32],[106,-7],[106,-6],[106,-6],[106,-7],[33,-12],[10,-1],[-10,19],[-20,6],[-36,0],[-102,44],[-101,45],[11,7],[125,2],[126,3],[125,2],[3,2],[5,7],[3,3],[4,0],[42,1],[-20,17],[-20,11],[13,17],[16,7],[136,4],[136,5],[136,4],[136,5],[136,4],[136,5],[136,4],[7,2],[22,13],[9,3],[135,3],[135,2],[135,2],[134,3],[13,3],[28,30],[11,6],[108,5],[107,5],[108,6],[23,11],[-2,3],[-2,6],[-1,3],[20,10],[44,-2],[22,8],[-112,17],[-112,17],[-112,17],[-7,6],[-7,3],[-8,-1],[-16,-6],[-15,-2],[-44,6],[-31,-4],[-17,3],[-11,11],[5,8],[3,5],[1,5],[-1,10],[0,9],[2,7],[3,8],[-132,-39],[-137,9],[-138,10],[-138,9],[-137,10],[-138,9],[-137,10],[-138,10],[-137,9],[-138,10],[-138,9],[-137,10],[-138,9],[6,15],[103,56],[103,56],[103,56],[-13,7],[-12,0],[-44,-27],[-11,-3],[-6,7],[0,5],[4,13],[-62,8],[-130,-14],[-4,7],[-4,16],[29,18],[123,43],[18,20],[-13,12],[-57,-8],[3,6],[4,5],[4,4],[5,3],[-13,18],[-15,5],[-16,-1],[-45,-17],[-3,-3],[-4,-9],[-3,-4],[-5,-2],[-17,-6],[-3,0],[-1,4],[-1,8],[-2,5],[-4,1],[-122,-20],[-123,-20],[-123,-20],[-122,-20],[-123,-20],[-130,21],[-129,21],[-129,21],[8,8],[5,3],[5,1],[-14,16],[-16,8],[-110,27],[-111,27],[-111,26],[-110,27],[-111,27],[-26,21],[-19,37],[-2,13],[-2,28],[-5,29],[1,14],[4,12],[6,12],[2,4],[1,10],[1,4],[18,49],[5,11],[7,9],[2,3],[2,11],[2,5],[57,75],[5,11],[2,6],[1,6],[2,6],[2,3],[24,15],[21,1],[3,1],[2,3],[3,13],[1,2],[3,-1],[7,-2],[42,-3],[7,2],[7,5],[-4,6],[-4,11],[-3,13],[0,11],[4,5],[6,3],[23,5],[3,5],[4,38],[3,11],[14,26],[8,19],[8,18],[12,10],[72,13],[109,-18],[18,4],[25,-4],[2,1],[3,3],[5,11],[4,3],[-53,17],[1,18],[-10,7],[-22,2],[5,10],[1,11],[-3,10],[-7,5],[18,34],[6,7],[24,7],[8,4],[14,14],[13,18],[11,10],[3,3],[3,9],[4,6],[8,9],[14,10],[52,14],[13,8],[31,6],[31,18],[7,6],[33,40],[6,3],[15,0],[6,4],[8,7],[8,3],[9,0],[8,-3],[6,0],[21,12],[17,4],[48,-1],[14,5],[47,38],[126,37],[106,-26],[56,12],[6,4],[4,10],[3,35],[5,10],[28,33],[15,11],[93,25],[93,25],[93,25],[9,-1],[3,3],[2,7],[2,9],[2,6],[4,3],[13,5],[7,6],[24,24],[14,5],[2,4],[3,14],[3,4],[41,19],[21,19],[137,35],[9,4],[19,16],[-1,3],[-1,7],[-1,3],[3,3],[6,11],[3,3],[3,1],[8,-1],[4,1],[17,9],[7,7],[8,12],[5,2],[50,8],[83,43],[96,25],[97,25],[96,25],[62,0],[72,32],[32,7],[66,-5],[26,12],[9,8],[1,2],[1,3],[0,8],[1,3],[7,7],[8,3],[46,-2],[9,3],[24,21],[29,8],[9,5],[23,21],[16,7],[32,7],[47,24],[112,23],[113,22],[113,23],[112,23],[32,14],[131,5],[131,6],[7,4],[8,9],[7,2],[8,0],[15,4],[72,-1],[33,10],[22,0],[8,3],[7,6],[10,18],[7,1],[43,-21],[4,1],[4,5],[6,11],[4,2],[4,1],[63,-36],[1,12],[5,2],[53,-17],[14,1],[14,5],[22,17],[114,-25],[27,5],[26,15],[24,21],[13,7],[24,-2],[12,6],[12,11],[5,1],[7,-2],[12,-7],[6,0],[6,5],[-21,20],[-4,9],[1,13],[7,8],[59,18],[13,10],[13,5],[88,-23],[88,-23],[7,2],[13,10],[6,1],[22,-7],[57,-4],[4,2],[7,6],[3,1],[27,-10],[1,14],[0,13],[64,-11],[11,4],[9,14],[-26,22],[11,6],[93,-23],[8,0],[13,9],[8,2],[6,-1],[19,-9],[14,0],[44,12],[-71,26],[-7,5],[-6,18],[-6,11],[-11,17],[-7,6],[-7,5],[-20,7],[-11,12],[-6,3],[-6,2],[-9,5],[-6,8],[2,12],[6,2],[17,-3],[6,1],[3,3],[3,3],[5,8],[2,6],[1,14],[2,6],[6,6],[8,1],[15,-5],[15,7],[2,25],[1,30],[7,18],[7,1],[6,-3],[6,-1],[7,5],[6,8],[7,7],[14,9],[3,0],[10,-5],[4,-1],[3,3],[6,11],[6,6],[6,4],[14,6],[-5,8],[1,13],[5,11],[6,7],[14,8],[6,6],[6,10],[4,6],[23,12],[17,2],[8,4],[7,9],[-6,5],[-4,6],[-4,9],[-3,10],[-3,7],[-3,2],[-4,1],[-4,3],[-2,3],[-2,6],[-1,3],[-8,10],[-2,5],[0,12],[3,3],[9,-1],[31,10],[29,18],[9,1],[9,-5],[5,5],[2,20],[3,19],[11,3],[-3,9],[-3,8],[-4,6],[-4,3],[2,3],[4,8],[2,3],[-7,26],[12,20],[18,13],[14,6],[119,9],[119,9],[93,-21],[93,-21],[49,-31],[31,0],[7,4],[0,13],[1,1],[4,0],[4,1],[6,-1],[102,23],[-24,13],[-11,12],[-4,18],[1,4],[2,4],[4,5],[1,6],[0,15],[1,6],[4,3],[18,2],[4,4],[1,3],[-1,4],[2,4],[2,3],[11,8],[5,1],[2,2],[2,4],[2,11],[1,4],[6,3],[20,-2],[4,2],[9,10],[5,4],[35,13],[10,9],[16,26],[5,7],[6,5],[23,9],[10,-1],[14,7],[2,3],[0,5],[-1,13],[1,4],[23,15],[10,12],[10,18],[-15,9],[-50,0],[-9,2],[-7,6],[-6,10],[-6,13],[-6,6],[-7,-3],[-15,-10],[-123,-44],[-124,-43],[-136,6],[-6,5],[-12,17],[-6,4],[-55,0],[-16,6],[-10,12],[12,4],[21,-11],[12,-2],[55,27],[79,10],[12,5],[12,12],[-14,15],[-15,8],[-112,24],[-12,-6],[-7,-2],[-26,5],[-18,11],[-7,6],[-4,11],[-1,20],[1,19],[3,16],[5,15],[6,12],[-4,15],[1,11],[4,9],[29,33],[129,65],[5,8],[-1,15],[-5,15],[-4,15],[4,12],[23,26],[7,7],[64,22],[20,13],[7,2],[32,-9],[48,7],[4,4],[7,12],[3,3],[7,2],[54,-5],[28,6],[76,-24],[28,-22],[14,-23],[5,-4],[4,3],[13,17],[4,0],[7,-8],[5,2],[8,8],[9,5],[9,1],[8,-1],[19,-7],[10,-1],[13,5],[9,-3],[5,1],[17,9],[6,4],[-7,8],[-14,9],[-6,7],[9,14],[6,16],[6,12],[12,5],[-38,46],[-39,37],[-10,6],[-4,5],[-1,7],[0,11],[-3,7],[-4,5],[-16,11],[-22,10],[-9,11],[8,6],[7,2],[40,-1],[58,-16],[32,-19],[30,-10],[38,-3],[6,-4],[15,-16],[16,-11],[8,-1],[15,8],[16,-2],[8,3],[17,12],[7,3],[23,1],[7,3],[8,6],[20,23],[8,6],[7,3],[8,1],[3,3],[5,10],[3,3],[5,1],[4,2],[3,5],[4,7],[2,7],[1,5],[1,4],[78,41],[12,0],[6,1],[17,14],[5,3],[7,-1],[19,-5],[6,2],[21,12],[96,29],[95,29],[15,-2],[11,3],[21,14],[5,5],[4,7],[2,10],[4,21],[3,10],[-4,0],[-12,4],[-7,9],[-1,2],[9,5],[3,3],[2,5],[3,11],[2,3],[12,6],[3,4],[2,5],[2,8],[1,7],[-1,2],[7,7],[2,9],[-2,6],[-7,1],[-24,-8],[-6,3],[6,6],[30,14],[2,3],[0,4],[-2,3],[-6,5],[6,8],[28,11],[7,8],[3,2],[23,9],[-6,8],[-6,0],[-6,-2],[-6,1],[3,7],[3,4],[17,8],[15,15],[2,4],[0,1],[-1,3],[0,3],[0,3],[1,2],[11,18],[3,8],[2,8],[-2,10],[-6,8],[2,8],[5,12],[20,30],[-11,16],[-17,7],[-80,-4],[-81,-4],[-62,30],[-65,15],[-46,26],[-6,7],[-44,76],[-10,26],[-4,33],[9,23],[15,16],[24,16],[40,4],[52,21],[20,1],[41,-10],[-11,-17],[-5,-14],[1,-16],[8,-22],[9,-10],[12,-4],[66,-4],[21,-9],[21,-17],[41,-49],[10,-7],[21,-9],[33,-5],[23,4],[22,12],[22,18],[-6,16],[-5,12],[-23,31],[-3,11],[2,12],[6,16],[14,22],[16,16],[69,35],[69,34],[18,15],[13,22],[-12,20],[-17,12],[-34,15],[-38,4],[-20,8],[-7,17],[5,9],[10,8],[36,18],[54,12],[19,-5],[17,-15],[-11,-25],[1,-24],[11,-21],[15,-12],[14,-6],[106,-3],[96,-51],[14,-13],[12,-18],[6,-13],[1,-10],[-4,-10],[-8,-10],[-10,-8],[-18,-22],[-2,-4],[-1,-8],[1,-8],[1,-7],[2,-6],[4,-5],[3,-1],[9,4],[7,1],[14,-6],[7,0],[16,4],[16,0],[8,-4],[21,-27],[-22,-35],[17,-12],[9,-8],[6,-11],[7,-33],[1,-9],[-3,-8],[-14,-19],[8,-2],[7,0],[14,3],[8,0],[13,-8],[38,-10],[5,0],[5,4],[3,8],[0,4],[-1,4],[-1,3],[2,5],[3,4],[6,6],[11,19],[4,5],[19,12],[13,13],[5,4],[6,0],[7,-3],[8,-8],[4,-9],[0,-13],[-5,-15],[76,-9],[8,3],[7,7],[7,5],[8,0],[16,-6],[6,3],[7,11],[5,13],[-3,11],[-7,6],[-24,12],[-7,7],[-7,9],[-4,11],[-1,14],[1,28],[3,11],[36,43],[13,6],[5,6],[2,14],[1,65],[-2,30],[-8,22],[-26,30],[-32,20],[-14,14],[-6,9],[-5,12],[-13,45],[-6,13],[14,17],[15,11],[101,24],[58,-4],[93,-39],[92,-40],[4,6],[9,46],[5,13],[34,46],[16,10],[16,7],[84,17],[94,-31],[6,-7],[22,-35],[3,-10],[-1,-13],[-3,-12],[-4,-7],[-6,-6],[-4,-6],[-16,-38],[-3,-10],[-4,-25],[-3,-7],[-4,-6],[-79,-41],[-6,-6],[-10,-16],[-6,-6],[10,-11],[5,-8],[1,-8],[-4,-10],[-5,-8],[-33,-35],[-12,-9],[-12,-3],[28,-28],[8,-4],[8,1],[15,10],[49,-8],[20,11],[63,-7],[4,1],[11,7],[3,-1],[9,-4],[23,5],[32,-9],[7,1],[14,11],[8,3],[110,-9],[24,6],[31,-6],[59,13],[11,-2],[48,-26],[1,15],[8,2],[18,-9],[39,-6],[-10,14],[-5,17],[2,11],[13,1],[13,-7],[38,-35],[7,-4],[3,-4],[2,-5],[1,-7],[-1,-6],[-1,-6],[0,-7],[0,-13],[2,-2],[17,-4],[6,-5],[9,-16],[5,-7],[6,-3],[16,-4],[6,1],[-7,21],[0,10],[2,10],[6,8],[6,2],[13,-5],[7,-1],[6,3],[4,9],[1,59],[4,13],[3,8],[6,1],[7,-3],[7,-5],[19,-25],[10,-8],[40,-2],[-2,14],[-4,13],[-1,10],[6,10],[8,4],[7,3],[15,1],[30,-10],[14,0],[14,16],[7,-18],[46,-48],[14,-8],[27,-5],[18,8],[6,0],[4,-6],[6,-23],[5,-12],[12,-16],[6,-5],[7,-2],[6,2],[13,8],[5,6],[10,20],[4,1],[12,-10],[7,-4],[6,-1],[6,1],[21,16],[6,3],[7,-1],[34,-15],[5,2],[5,6],[5,1],[20,-19],[6,0],[20,9],[6,6],[12,14],[7,4],[-6,26],[1,11],[3,12],[11,17],[12,14],[12,7],[14,0],[51,-27],[11,-10],[28,-35],[2,-10],[0,-16],[-4,-9],[-5,-5],[-8,-2],[6,-33],[-7,-24],[-13,-23],[-10,-24],[15,-6],[6,-4],[6,-9],[5,-4],[15,4],[8,0],[37,-17],[6,-6],[5,-9],[6,-16],[11,-17],[14,7],[67,78],[68,78],[5,10],[7,22],[5,10],[43,41],[17,8],[33,6],[7,4],[22,28],[8,6],[25,4],[4,3],[12,16],[5,3],[24,3],[38,20],[72,18],[72,18],[2,2],[4,11],[3,3],[13,1],[3,2],[7,10],[6,3],[6,0],[8,2],[24,17],[40,9],[22,16],[56,7],[4,3],[5,9],[4,2],[72,21],[12,9],[5,2],[3,-1],[6,-4],[3,-1],[4,1],[10,7],[6,3],[16,-2],[6,1],[12,5],[19,-3],[43,4],[26,-6],[32,13],[4,4],[6,4],[10,-4],[6,0],[13,5],[68,3],[14,7],[19,2],[23,12],[13,0],[-4,9],[6,2],[5,0],[11,-3],[6,0],[29,12],[23,5],[36,-6],[13,5],[13,8],[5,5],[2,3],[2,7],[2,2],[4,1],[5,0],[3,3],[-1,10],[5,-1],[9,-6],[4,-1],[4,0],[9,3],[32,-1],[64,21],[15,2],[11,-4],[4,0],[4,2],[4,6],[3,7],[0,6],[1,6],[4,3],[15,2],[38,-9],[2,1],[2,2],[3,1],[22,-4],[7,0],[21,11],[7,1],[41,-12],[7,5],[6,9],[9,7],[3,1],[8,-2],[8,2],[3,-3],[3,-5],[3,-4],[9,-1],[48,14],[7,-1],[13,-8],[4,0],[11,10],[4,0],[19,-5],[6,-6],[-2,3],[-3,12],[10,0],[21,-11],[10,3],[2,3],[3,9],[1,3],[3,1],[4,0],[13,4],[6,0],[5,-3],[5,-1],[9,6],[5,2],[6,-2],[19,-12],[6,-2],[16,5],[5,0],[11,-3],[5,0],[1,3],[2,3],[5,3],[-4,15],[4,11],[8,4],[7,-7],[6,-8],[4,-1],[19,20],[5,2],[4,-1],[30,-13],[10,-9],[2,1],[2,3],[2,5],[2,3],[2,0],[13,-3],[4,1],[3,6],[-1,11],[4,-3],[20,-3],[4,2],[7,5],[3,2],[5,0],[13,-6],[18,0],[11,-4],[4,2],[3,7],[4,10],[5,6],[5,-6],[4,-9],[7,-4],[-1,18],[-3,8],[-50,57],[-6,11],[-4,13],[-3,15],[-4,34],[0,20],[3,10],[15,8],[99,16],[16,-8],[7,-10],[2,-14],[-1,-16],[-7,-39],[-2,-6],[-3,-3],[-9,-5],[-3,-4],[0,-15],[3,-19],[4,-18],[5,-11],[7,-10],[7,-5],[49,-2],[33,-11],[8,1],[14,11],[7,4],[7,-1],[25,-8],[29,6],[30,14],[3,4],[5,10],[2,2],[17,0],[9,2],[7,8],[6,13],[1,17],[38,-11],[3,0],[4,2],[7,7],[4,0],[22,-11],[5,0],[6,10],[3,15],[0,15],[-4,11],[-7,5],[-7,3],[-23,3],[-23,15],[-14,18],[3,18],[51,57],[13,8],[15,3],[31,-5],[31,-15],[3,-3],[2,-4],[2,-12],[3,-8],[3,-4],[22,-18],[6,-7],[6,-11],[5,-7],[12,-6],[6,-5],[4,-12],[0,-14],[-3,-15],[-1,-15],[16,2],[14,-6],[28,-26],[25,-30],[6,-6],[86,-42],[10,-7],[4,-2],[15,0],[8,-4],[16,-15],[15,-4],[19,-15],[16,-4],[13,-13],[5,-3],[24,-5],[44,-25],[28,-8],[11,3],[3,-2],[11,-17],[14,-12],[8,-5],[6,1],[17,9],[9,2],[80,-21],[17,1],[34,-7],[8,1],[2,3],[7,14],[2,5],[6,4],[22,7],[3,3],[3,4],[5,17],[4,3],[9,3],[-2,14],[5,28],[-1,35],[6,9],[16,9],[-7,17],[6,9],[6,5],[13,5],[6,4],[4,8],[3,11],[3,12],[9,14],[16,7],[42,4],[22,19],[11,3],[18,-4],[6,1],[18,13],[7,2],[4,18],[16,10],[34,3],[6,5],[-3,10],[-17,26],[-8,5],[-127,23],[-13,12],[-3,12],[5,9],[8,6],[7,3],[17,1],[49,-11],[65,15],[16,-3],[16,-14],[7,-9],[15,-36],[6,-9],[14,-13],[16,-35],[14,-15],[16,-8],[47,-2],[8,-5],[14,-15],[55,-14],[47,3],[18,-2],[3,1],[8,8],[4,2],[9,0],[6,-3],[4,2],[7,16],[5,4],[26,-7],[1,3],[1,3],[0,4],[2,1],[9,1],[4,-1],[7,-4],[4,-1],[8,1],[7,5],[4,2],[8,-4],[5,-1],[5,0],[3,-1],[3,-2],[4,-6],[2,-2],[3,1],[6,4],[9,-1],[18,-13],[9,-3],[16,2],[8,2],[4,6],[5,9],[38,4],[30,-11],[109,-16],[18,3],[8,-1],[20,-19],[18,-7],[17,0],[8,14],[2,18],[-1,6],[-3,7],[-1,5],[0,7],[2,7],[1,6],[14,25],[7,10],[9,6],[46,10],[3,4],[6,11],[4,4],[7,1],[23,-6],[65,14],[16,-3],[14,-12],[3,-6],[3,-7],[1,-7],[1,-9],[-2,-12],[-1,-6],[-4,-4],[-5,-3],[3,-21],[1,-20],[-2,-18],[-6,-19],[-6,-13],[-9,-13],[-8,-10],[-8,-7],[5,-4],[102,8],[15,-14],[-4,-8],[4,-4],[5,0],[5,2],[46,0],[19,9],[6,1],[74,-9],[74,-9],[11,-10],[24,-4],[9,2],[51,-17],[66,2],[1,3],[0,4],[2,5],[10,7],[11,3],[23,0],[-52,76],[-2,5],[-1,5],[-1,4],[-3,3],[-5,4],[-2,3],[-2,5],[17,1],[37,14],[16,13],[19,8],[39,3],[19,12],[6,12],[5,12],[4,10],[10,6],[19,0],[59,-19],[38,-26],[-4,-2],[-4,-1],[-8,2],[-5,0],[-4,-3],[-8,-12],[8,-8],[19,-31],[8,-16],[-5,-8],[-8,-5],[-5,-6],[-1,-9],[-2,-3],[-7,-4],[-5,-3],[-3,-4],[-6,-21],[-1,-7],[-2,-6],[-33,-60],[-7,-8],[-15,-7],[-6,-7],[1,-11],[3,-15],[0,-34],[4,-10],[4,-1],[6,3],[4,0],[5,-2],[4,-5],[8,-12],[5,-11],[10,-28],[5,-8],[45,-32],[77,-19],[17,3],[29,29],[15,0],[32,-12],[36,-4],[12,-6],[10,-1],[22,13],[10,2],[49,-10],[5,0],[21,12],[18,-1],[5,1],[11,8],[5,2],[19,2],[39,15],[11,1],[33,-9],[11,4],[44,31],[-8,16],[-4,17],[2,16],[9,16],[-8,14],[-3,8],[-1,9],[3,10],[5,6],[11,6],[-6,11],[2,10],[22,41],[8,10],[7,5],[25,2],[5,6],[6,17],[0,3],[-2,8],[0,2],[2,7],[8,13],[31,66],[7,9],[16,14],[14,5],[15,-6],[54,-39],[7,-10],[3,-5],[1,-5],[2,-4],[5,-4],[34,-21],[28,-31],[15,-11],[31,-13],[8,-7],[14,-16],[7,-5],[7,-9],[-1,-13],[-5,-12],[-7,-8],[-14,-9],[-87,-8],[-87,-8],[-8,-10],[56,-17],[62,-1],[12,-7],[15,2],[6,-1],[-12,-38],[5,-2],[10,1],[10,-5],[5,3],[5,4],[5,2],[5,-2],[17,-12],[4,0],[9,3],[36,2],[10,-5],[20,-16],[6,-2],[17,-3],[3,-2],[4,-6],[2,-1],[2,0],[5,3],[58,6],[21,-6],[10,1],[8,7],[25,39],[7,16],[-1,15],[4,3],[3,1],[8,1],[4,2],[3,5],[2,7],[4,6],[5,12],[1,14],[-2,12],[-8,6],[9,4],[18,2],[7,8],[7,16],[5,18],[7,40],[11,14],[99,-4],[19,-9],[28,-21],[37,-44],[3,-6],[2,-11],[1,-11],[2,-10],[5,-9],[-31,-35],[-7,-4],[-8,-1],[-7,2],[7,-24],[8,-13],[44,-33],[6,-8],[9,-17],[6,-5],[115,-58],[81,-21],[50,0],[24,-8],[12,0],[-2,3],[-2,6],[-2,2],[8,2],[6,-3],[6,-6],[7,-6],[5,-2],[3,0],[8,6],[4,0],[4,-2],[8,-5],[6,-2],[13,-1],[24,-16],[19,-4],[33,-1],[16,5],[16,11],[14,4],[34,-13],[15,-1],[10,8],[3,0],[4,-2],[3,0],[25,9],[8,5],[11,20],[7,2],[19,1],[7,-3],[3,1],[5,5],[2,5],[3,3],[6,-1],[8,1],[5,6],[5,4],[7,-3],[8,-5],[82,-30],[6,2],[2,10],[-2,10],[0,9],[6,7],[-5,8],[-5,2],[-11,0],[-7,2],[-6,4],[-5,7],[-5,9],[6,9],[6,6],[6,4],[7,0],[13,-5],[6,2],[3,11],[6,-8],[6,3],[5,7],[6,6],[8,2],[8,-2],[8,1],[13,10],[8,2],[3,4],[5,14],[4,7],[3,4],[111,8],[8,3],[8,6],[8,3],[16,-6],[8,1],[9,7],[6,9],[8,6],[9,0],[38,-9],[6,3],[6,6],[16,11],[16,16],[8,5],[23,8],[14,10],[17,-1],[52,14],[4,2],[4,4],[7,11],[4,4],[15,4],[2,3],[3,14],[3,6],[8,5],[26,12],[10,0],[4,3],[5,10],[3,4],[18,13],[1,2],[1,7],[1,2],[3,1],[5,-1],[2,0],[32,12],[41,4],[4,2],[2,4],[2,10],[2,6],[3,3],[5,4],[8,3],[90,16],[1,1],[3,6],[1,1],[2,-1],[4,-7],[2,-2],[7,1],[16,5],[16,0],[24,7],[53,3],[21,-8],[9,1],[55,35],[8,0],[14,-8],[8,-3],[65,-3],[37,8],[23,12],[32,2],[65,32],[42,7],[14,10],[61,18],[13,13],[8,4],[7,3],[56,1],[16,7],[13,10],[6,3],[8,0],[6,3],[4,8],[3,10],[4,10],[6,6],[13,6],[5,9],[2,15],[-2,12],[-5,8],[-8,3],[2,6],[5,13],[1,5],[0,4],[-3,13],[-1,7],[4,0],[3,2],[2,5],[-1,8],[6,0],[3,5],[1,9],[3,9],[3,6],[7,9],[3,6],[4,8],[3,7],[2,9],[1,11],[0,5],[-1,3],[-2,7],[-1,4],[1,4],[2,4],[1,5],[2,31],[-1,9],[-1,4],[-4,13],[-1,4],[1,3],[0,4],[0,4],[-4,38],[-4,16],[-7,9],[-38,32],[-11,16],[-14,12],[-47,73],[-3,7],[-2,8],[-3,6],[-4,2],[10,15],[2,4],[-1,7],[-5,27],[-2,18],[-1,18],[2,16],[15,28],[3,2],[4,1],[7,4],[63,55],[105,49],[139,-3],[138,-2],[24,-6],[18,-23],[6,-40],[-4,-7],[-78,-28],[-2,-4],[-2,-16],[-3,-1],[-5,1],[-4,-8],[-7,-16],[-9,-12],[-40,-37],[-63,-25],[7,-5],[39,4],[3,-3],[5,-14],[3,-5],[16,-13],[15,-6],[122,-6],[8,4],[17,23],[5,4],[33,8],[9,-2],[9,-8],[-12,-4],[12,-12],[4,-2],[19,1],[5,-3],[6,-5],[18,-9],[5,-5],[9,-13],[15,-12],[19,-22],[31,-18],[21,-20],[-7,-11],[-5,-7],[-3,-10],[4,-18],[2,-17],[-3,-15],[-7,-13],[-7,-7],[6,-21],[3,-8],[5,-5],[20,-12],[-7,-25],[-13,-10],[-13,-6],[-10,-15],[2,-23],[12,-17],[33,-22],[7,-1],[14,2],[7,3],[12,8],[13,2],[14,7],[21,1],[41,19],[55,0],[27,8],[14,9],[8,1],[6,-5],[12,-33],[4,-2],[14,9],[44,18],[-10,23],[10,8],[13,0],[24,-9],[56,-5],[13,-5],[2,-2],[0,-5],[0,-6],[0,-6],[3,-14],[4,-6],[37,-28],[16,-23],[6,-4],[-7,-11],[0,-14],[3,-14],[7,-11],[8,-3],[6,4],[5,7],[8,2],[7,1],[23,12],[8,6],[-1,10],[-5,10],[-7,10],[24,31],[59,-15],[29,15],[-13,9],[-6,6],[-6,8],[9,3],[69,2],[-2,-3],[-2,-6],[-1,-3],[2,-1],[4,-5],[2,-2],[-2,-4],[-3,-3],[-3,-1],[-3,0],[7,-16],[16,-2],[55,25],[6,0],[44,-23],[6,-6],[2,-9],[-1,-8],[-7,-4],[-28,-10],[-27,-18],[6,-8],[6,-3],[14,-3],[7,-5],[18,-26],[11,-10],[3,-4],[3,-11],[-1,-6],[-3,-4],[-8,-18],[-1,-6],[5,-2],[16,-3],[10,2],[7,4],[8,3],[9,-4],[8,-8],[6,-8],[19,-34],[7,-7],[34,-17],[8,-8],[0,-15],[21,0],[42,-10],[21,4],[10,6],[5,4],[2,5],[0,11],[-3,5],[-40,22],[-30,32],[-5,16],[2,24],[77,48],[22,2],[9,6],[1,19],[4,-1],[3,1],[4,2],[3,4],[-19,2],[-5,2],[-6,9],[-2,11],[2,28],[7,22],[13,11],[79,12],[12,11],[7,23],[7,18],[14,-6],[-4,-16],[6,-9],[9,-3],[8,-1],[-4,6],[-14,13],[7,13],[10,3],[21,-7],[-3,10],[-3,5],[-3,1],[-5,-3],[-4,1],[-4,8],[-2,11],[-2,8],[23,10],[8,-1],[-16,21],[8,1],[4,2],[2,5],[2,8],[6,25],[2,6],[5,11],[1,5],[-1,10],[-3,5],[-33,26],[-3,5],[3,10],[9,4],[19,2],[-3,19],[-5,11],[-14,20],[21,9],[-21,43],[-8,24],[1,27],[4,17],[4,10],[18,30],[4,12],[7,29],[2,13],[2,3],[11,4],[102,12],[30,16],[7,7],[13,17],[7,5],[15,4],[49,-4],[4,-3],[7,-9],[3,-2],[3,1],[2,4],[3,4],[30,15],[29,34],[13,10],[0,8],[-7,15],[4,2],[8,2],[3,1],[3,3],[5,7],[3,3],[3,1],[25,2],[6,3],[12,11],[23,13],[27,5],[14,8],[11,12],[122,39],[35,-2],[24,14],[26,5],[69,-1],[-3,17],[-1,9],[2,5],[4,5],[10,20],[-8,4],[-2,8],[1,12],[4,13],[3,5],[3,3],[4,3],[3,3],[7,13],[3,4],[4,3],[53,17],[-6,24],[9,-4],[38,7],[31,16],[82,18],[11,-4],[18,-11],[74,8],[10,4],[13,17],[5,3],[18,4],[4,4],[4,6],[5,6],[4,2],[43,-6],[94,11],[8,-2],[21,-24],[9,-3],[7,2],[9,13],[7,4],[25,0],[7,6],[-13,20],[-46,43],[12,29],[16,16],[71,31],[18,0],[18,-8],[8,-1],[8,3],[16,12],[8,4],[28,0],[4,2],[8,9],[4,1],[13,-9],[14,-2],[7,-4],[8,-6],[8,-9],[-3,-11],[-5,-10],[-5,-7],[-6,-3],[8,-12],[10,-4],[22,4],[8,9],[7,13],[7,12],[9,1],[-6,23],[-3,7],[22,25],[8,5],[102,3],[8,-7],[13,-24],[5,-6],[17,-17],[9,-1],[9,9],[-10,19],[-3,11],[-1,12],[2,16],[4,7],[5,3],[37,-2],[15,4],[3,13],[-9,7],[-67,5],[-12,6],[-2,2],[-1,4],[-2,15],[-1,7],[-3,5],[11,18],[-22,15],[7,19],[-3,10],[1,15],[4,15],[4,8],[27,23],[14,8],[14,4],[29,1],[22,-8],[7,-1],[22,8],[14,-2],[14,7],[7,2],[6,-2],[7,-3],[12,-10],[-8,-14],[3,-12],[8,-8],[9,-4],[78,-10],[37,-23],[-31,-15],[-5,-3],[-9,-11],[-4,-5],[-4,-1],[-13,3],[-78,-26],[10,-4],[4,-6],[3,-9],[-2,-4],[-5,-4],[-5,-6],[-2,-11],[13,1],[41,21],[28,-1],[28,-12],[-6,-10],[-10,-10],[-10,-7],[-8,-2],[-10,2],[-8,-2],[-7,-8],[-5,-17],[27,-1],[-18,-12],[-9,-3],[-11,0],[10,-12],[11,0],[10,6],[15,14],[7,9],[5,3],[102,-6],[-6,-18],[-12,-11],[-73,-20],[5,-11],[10,-7],[34,-12],[6,1],[11,5],[2,3],[1,3],[1,3],[25,13],[63,54],[10,4],[62,-2],[9,-3],[40,-36],[20,-7],[20,0],[-3,-10],[-4,-4],[-5,-1],[-6,-2],[-61,-77],[9,-12],[7,-14],[-2,-3],[-4,-6],[-3,-3],[6,-6],[4,-25],[5,-9],[7,-3],[30,1],[5,7],[4,9],[5,10],[25,23],[14,17],[11,20],[10,22],[17,53],[2,13],[2,16],[-2,12],[-6,9],[-13,13],[-3,5],[-4,10],[-7,11],[-1,7],[-1,18],[-6,25],[-1,13],[4,12],[7,8],[7,6],[106,34],[15,10],[8,3],[7,0],[15,-3],[2,5],[5,7],[2,4],[-3,7],[3,8],[4,6],[3,5],[7,5],[20,5],[-1,5],[-7,20],[-3,5],[6,10],[9,0],[9,-2],[8,1],[-15,24],[-26,6],[-47,-13],[7,14],[-6,9],[-7,3],[-6,-1],[-87,-40],[-25,1],[-16,5],[-15,10],[-15,3],[-8,4],[-15,13],[-6,10],[-5,12],[-2,16],[-2,18],[1,17],[5,12],[63,46],[131,31],[15,11],[14,17],[15,12],[15,-7],[4,-7],[12,-25],[2,-11],[0,-22],[3,-9],[-26,-10],[-26,-17],[14,1],[4,-2],[4,-4],[7,-15],[4,-5],[9,-2],[49,14],[85,-3],[9,-6],[8,-9],[8,-15],[3,-17],[-6,-16],[-12,-19],[-10,-26],[-3,-5],[-33,-36],[9,-6],[10,2],[9,7],[8,11],[8,9],[22,2],[9,7],[3,6],[7,17],[3,7],[4,5],[4,3],[4,1],[15,0],[4,3],[5,16],[5,5],[5,2],[5,0],[10,-3],[28,-25],[28,-5],[19,-14],[32,-13],[4,-3],[7,-9],[5,-3],[5,-1],[16,3],[-7,10],[-15,8],[-6,14],[9,4],[9,1],[18,-4],[5,-3],[13,-14],[4,-2],[15,-1],[-17,23],[9,8],[12,2],[23,-4],[-5,6],[-4,7],[-1,8],[4,11],[-8,-4],[-8,3],[-16,11],[-41,9],[-11,10],[-5,2],[-9,1],[-5,2],[-8,2],[-27,-9],[4,5],[2,6],[0,8],[-1,9],[1,8],[3,4],[9,3],[-20,10],[-7,9],[5,14],[13,22],[6,6],[4,2],[3,1],[3,2],[5,15],[3,5],[51,17],[6,7],[13,21],[-15,11],[-3,0],[-6,-7],[-3,0],[-8,4],[-8,1],[-17,-2],[-8,-3],[-13,-11],[-8,-4],[-3,1],[-8,9],[-5,2],[-29,-1],[-17,3],[-13,15],[-5,34],[-2,15],[-5,30],[-2,14],[1,10],[2,7],[6,14],[1,7],[2,19],[2,9],[23,48],[28,33],[32,21],[71,14],[72,14],[14,8],[14,12],[7,4],[8,1],[32,-8],[8,3],[4,11],[4,13],[6,11],[21,25],[38,16],[44,33],[124,39],[87,3],[87,3],[120,37],[34,-1],[93,33],[15,0],[47,-23],[15,-3],[63,8],[131,-16],[131,-17],[119,-57],[39,-47],[5,-5],[6,-2],[14,1],[5,-1],[-4,-18],[7,-19],[12,-16],[9,-10],[25,-13],[5,-6],[15,-25],[5,-6],[5,-3],[6,-2],[6,1],[6,-2],[3,-7],[2,-10],[4,-11],[6,-8],[13,-11],[6,-7],[13,-25],[6,-5],[3,20],[4,12],[6,6],[19,6],[81,-11],[111,-74],[9,-10],[5,-8],[5,-12],[3,-13],[-1,-13],[-9,-16],[0,-7],[9,-17],[2,-5],[-2,-4],[-5,-4],[-6,-2],[-63,-6],[-4,1],[-10,10],[-3,1],[-44,-4],[-15,3],[-33,17],[-16,17],[0,24],[-9,-5],[-5,-7],[-3,-13],[-2,-19],[-33,32],[-9,5],[-19,2],[-8,5],[-11,15],[-4,2],[-5,1],[-10,-1],[-23,6],[-9,-1],[-9,-6],[22,-9],[4,-6],[0,-13],[-6,-8],[-15,-9],[21,-9],[9,-1],[4,-1],[5,-7],[2,-7],[3,-5],[11,6],[5,0],[37,-13],[16,-12],[17,1],[8,-1],[-6,-9],[-36,-10],[4,-12],[3,-6],[2,-1],[5,2],[10,0],[20,8],[8,0],[-42,-24],[20,-16],[10,-2],[33,8],[11,-2],[10,-6],[-10,-17],[13,-5],[-7,-13],[-6,-7],[-7,-4],[-9,-2],[-47,9],[-4,3],[-2,4],[-2,5],[-3,5],[-8,9],[-8,5],[-18,0],[14,-20],[-8,-12],[-27,-3],[-11,-10],[33,-8],[10,-7],[-4,-2],[-4,-3],[-7,-8],[24,-1],[7,-6],[-22,-25],[-22,-18],[-98,-52],[-26,-22],[-8,-33],[117,40],[-3,-20],[-16,-70],[1,-6],[4,-9],[4,-8],[4,-5],[10,-8],[3,16],[3,15],[5,12],[15,25],[9,11],[4,5],[5,15],[3,6],[30,40],[31,32],[34,21],[44,11],[4,-2],[4,-3],[5,-2],[3,3],[3,6],[4,3],[13,1],[86,-23],[18,0],[4,-2],[-14,27],[10,5],[9,3],[33,-3],[4,1],[5,6],[6,12],[4,5],[9,2],[10,-2],[10,-5],[15,-13],[30,-5],[3,-3],[6,-11],[3,-3],[24,-8],[4,-4],[6,-12],[3,-4],[5,-1],[14,10],[14,0],[3,-3],[3,-7],[2,-9],[-1,-9],[-3,-7],[-19,-15],[-9,-11],[-5,-13],[7,-4],[7,3],[56,43],[43,-1],[-2,-22],[10,-5],[65,22],[50,-4],[13,-8],[35,-35],[14,-5],[-13,-26],[-7,-9],[-9,-3],[-74,21],[-39,25],[-9,1],[5,-26],[7,-14],[22,-17],[2,-2],[0,-4],[1,-4],[2,-1],[10,4],[9,1],[10,-3],[40,-21],[32,-31],[11,-4],[9,7],[1,-13],[-3,-8],[-6,-3],[-18,-4],[-6,-3],[-7,-6],[12,-2],[3,-2],[4,-7],[2,-2],[41,6],[12,8],[4,0],[9,-10],[32,-25],[19,-30],[9,-7],[10,1],[12,6],[-12,19],[-11,23],[4,6],[5,0],[9,-5],[5,-1],[6,2],[11,6],[-3,14],[-1,15],[1,13],[6,11],[-5,3],[0,6],[3,5],[6,2],[66,-4],[49,-3],[39,14],[26,3],[18,-4],[21,8],[2,-1],[4,-8],[3,-2],[33,-7],[11,-11],[5,-5],[20,-9],[12,0],[10,-11],[7,-5],[6,0],[5,2],[6,1],[11,-10],[6,-1],[5,4],[5,7],[2,-11],[4,-5],[12,0],[18,-8],[7,0],[-1,-8],[-2,-7],[-3,-4],[-4,-2],[3,-6],[3,-3],[3,-1],[4,2],[2,-1],[9,-14],[7,-6],[9,-2],[93,32],[70,-7],[71,-7],[8,-3],[16,-11],[8,-2],[27,0],[8,-5],[15,-16],[22,-5],[35,-16],[14,5],[6,3],[23,3],[88,61],[7,3],[74,9],[75,9],[54,-14],[32,0],[129,-37],[14,-11],[15,-4],[7,-5],[3,-1],[7,3],[4,0],[5,-2],[8,-8],[19,-9],[112,-17],[111,-16],[111,-17],[112,-16],[111,-17],[3,2],[7,7],[3,2],[26,-7],[6,1],[15,10],[18,5],[34,0],[44,-17],[4,-3],[7,-8],[4,-3],[101,-11],[102,-11],[31,-17],[54,-11],[93,13],[18,-7],[92,23],[13,8],[10,13],[1,4],[2,13],[2,5],[2,6],[4,3],[20,13],[14,4],[56,-5],[16,-7],[7,-8],[3,-10],[-1,-14],[2,-15],[3,-14],[6,-7],[-14,-44],[-9,-47],[-2,-14],[2,-16],[9,-31],[50,-97],[48,-51],[3,-5],[1,-5],[2,-6],[5,-4],[3,-5],[3,-8],[5,-18],[7,-15],[7,-6],[18,-1],[-16,-8],[-5,-5],[-4,-3],[-10,1],[-4,-3],[-9,-12],[-11,-10],[-11,-7],[-10,-4],[-9,0],[-19,4],[-36,-3],[-9,-6],[6,-4],[6,-2],[-20,-6],[-8,-7],[14,-6],[15,-1],[-7,-11],[-7,-30],[-6,-10],[5,-1],[4,1],[10,3],[-14,-13],[-52,-27],[-21,-18],[-15,-5],[-7,-6],[-3,-12],[11,1],[-5,-9],[9,-3],[17,-9],[92,13],[39,-6],[-9,-13],[-31,-25],[8,-3],[8,0],[-14,-15],[-16,-10],[-100,-37],[5,-3],[14,-3],[-3,-5],[-3,-6],[-2,-7],[-2,-7],[14,-2],[95,-40],[9,-16],[1,-29],[-6,-29],[-10,-19],[-14,-9],[-14,-6],[-15,0],[-43,18],[-15,0],[-23,-27],[-13,0],[-67,35],[-14,0],[-7,-4],[-6,-7],[-12,-20],[-5,-7],[-7,-5],[-13,-5],[10,-11],[24,-15],[10,-12],[-42,-23],[-4,-6],[-1,-10],[1,-18],[43,4],[44,-8],[86,-36],[-14,-24],[-14,-18],[-15,-10],[-18,-3],[-38,4],[-19,-5],[-14,-17],[40,-19],[41,-8],[9,-7],[0,-15],[-6,-17],[-8,-14],[-37,-43],[-36,-27],[-37,-14],[-42,-5],[-10,3],[-12,11],[-9,15],[1,12],[-38,36],[-14,21],[-6,5],[-3,4],[-3,7],[-11,37],[-3,15],[-5,12],[-7,4],[-8,-4],[-3,-6],[-1,-10],[0,-16],[-1,-10],[-1,-7],[0,-7],[0,-10],[-1,-7],[-3,-4],[-3,-3],[-12,-19],[-13,-9],[-28,-9],[1,-33],[-13,-14],[-72,-7],[-10,-6],[-3,-9],[0,-14],[2,-20],[-8,-3],[-9,-8],[-7,-12],[-1,-17],[1,-14],[-1,-8],[-3,-4],[-67,-26],[-2,-6],[0,-11],[1,-10],[2,-4],[125,19],[9,-1],[10,-7],[-5,-8],[-20,-14],[6,-13],[6,-2],[7,0],[7,-5],[1,-5],[1,-8],[1,-8],[4,-3],[26,4],[2,-4],[1,-5],[2,-6],[6,-9],[2,-3],[12,-9],[5,-1],[4,0],[5,2],[3,4],[4,2],[11,-8],[7,1],[14,11],[66,19],[9,0],[6,-7],[12,-23],[7,-8],[7,-4],[7,0],[8,3],[9,9],[3,2],[2,5],[3,31],[10,20],[17,12],[49,17],[62,-2],[6,-5],[22,-53],[3,-15],[-1,-17],[-7,-61],[-5,-64],[-2,-13],[-4,-10],[-24,-34],[-7,-6],[6,-9],[-3,-11],[-17,-26],[-3,-11],[-1,-12],[3,-14],[-5,-14],[-42,-49],[2,-3],[3,-3],[3,-1],[3,0],[-24,-26],[-62,-41],[-5,-7],[-6,-12],[12,-10],[4,-1],[14,0],[4,-2],[-41,-26],[-51,-6],[-5,-4],[-2,-9],[3,-18],[-18,-10],[-57,-17],[2,-1],[6,-5],[-4,-8],[-10,-13],[-30,-47],[-17,-17],[-5,-8],[-3,-9],[1,-8],[6,-3],[-1,-7],[-3,-6],[-3,-4],[-4,-3],[5,-5],[5,-3],[11,0],[-2,-10],[-2,-6],[-4,-3],[-5,-1],[8,-7],[2,-10],[-4,-10],[-7,-9],[-15,-11],[-2,-2],[-3,-12],[-3,-5],[-15,-11],[-48,-18],[4,-11],[5,-5],[12,-1],[-38,-27],[-7,-14],[7,-5],[10,-19],[6,-5],[-4,-7],[-1,-6],[0,-7],[-2,-9],[-3,-6],[-3,-4],[-8,-6],[-2,-4],[-4,-11],[-2,-4],[-8,-7],[-8,-4],[-24,0],[-6,-6],[-3,-15],[6,-8],[17,-5],[-2,-6],[0,-6],[1,-4],[2,-6],[0,-4],[-1,-5],[-3,-8],[-2,-13],[0,-28],[-3,-23],[1,-5],[2,-4],[0,-6],[-1,-8],[-2,-8],[-3,-7],[-18,-32],[-4,-11],[4,-6],[-4,-7],[-3,-7],[-3,-9],[-4,-22],[-2,-8],[-11,-22],[-13,-34],[0,-7],[2,-8],[0,-13],[-4,-23],[-2,-11],[-6,-21],[-5,-38],[-9,-39],[-6,-13],[-10,-13],[-22,-17],[-47,-13],[-38,-23],[-4,-4],[-11,-22],[-5,-6],[-38,-22],[-6,-2],[3,-2],[3,-4],[2,-4],[2,-5],[2,-6],[3,-15],[2,-6],[5,-8],[7,-3],[36,-6],[7,0],[16,7],[3,-1],[3,-4],[3,-5],[3,-3],[14,-2],[51,28],[7,1],[8,-3],[7,-7],[7,-3],[7,3],[14,9],[1,-16],[-7,-11],[-17,-16],[9,-9],[11,1],[21,11],[0,-22],[16,-6],[33,6],[134,70],[15,3],[7,5],[8,10],[8,4],[8,1],[9,-1],[2,18],[5,18],[3,17],[-3,15],[12,11],[4,8],[2,14],[2,14],[-1,5],[-2,9],[-2,5],[-5,9],[-2,17],[-6,6],[-15,6],[-7,7],[-4,10],[-2,13],[5,31],[-3,8],[-5,7],[-6,10],[0,11],[8,11],[18,16],[5,10],[3,3],[3,3],[8,2],[12,9],[21,7],[-1,2],[-5,6],[43,41],[22,15],[23,4],[35,-4],[24,-10],[12,3],[81,43],[11,3],[20,-6],[53,6],[47,-10],[-2,-5],[-2,-5],[-3,-4],[-3,-4],[11,-4],[11,3],[11,9],[9,11],[-11,20],[5,16],[3,6],[5,3],[-2,1],[-4,4],[-1,1],[7,14],[9,11],[9,7],[10,5],[12,2],[4,2],[14,12],[5,2],[19,-8],[5,4],[-3,23],[-7,12],[-10,4],[-20,3],[4,19],[4,13],[6,9],[9,5],[5,0],[3,-3],[2,1],[6,19],[2,2],[3,0],[58,9],[27,-5],[26,10],[37,1],[9,3],[35,31],[12,21],[8,8],[-1,3],[-4,8],[-1,3],[2,1],[3,4],[2,1],[-6,4],[-19,0],[-4,2],[-10,13],[-7,3],[-34,8],[-3,3],[0,11],[4,5],[5,2],[62,-3],[45,17],[8,6],[26,24],[18,3],[23,10],[8,-3],[9,-10],[9,-1],[18,15],[-8,6],[-32,12],[-15,12],[-8,4],[4,7],[1,7],[1,7],[1,5],[5,3],[4,0],[9,-3],[6,0],[4,1],[3,4],[5,6],[3,1],[54,-19],[9,1],[26,16],[-35,25],[-3,4],[-5,10],[-4,3],[-16,4],[-36,24],[-6,12],[-1,9],[3,6],[9,8],[4,6],[6,16],[5,5],[-8,13],[-3,8],[-3,10],[7,3],[5,4],[5,7],[5,11],[5,4],[38,5],[16,14],[5,3],[6,2],[-2,11],[2,1],[4,5],[2,1],[-6,6],[-7,2],[-22,1],[-17,5],[-8,6],[2,9],[4,5],[4,3],[5,1],[0,19],[41,94],[12,5],[13,-2],[15,1],[-9,24],[4,2],[8,1],[3,3],[2,7],[4,6],[6,4],[14,-1],[7,5],[6,13],[3,21],[-21,6],[-4,3],[-7,9],[-5,3],[20,34],[7,8],[8,3],[17,2],[8,4],[3,3],[5,7],[4,3],[4,2],[4,1],[8,-2],[9,-5],[14,-15],[9,-4],[-2,22],[12,9],[17,-2],[12,-8],[13,-3],[16,17],[11,25],[-1,20],[4,3],[4,2],[8,3],[-5,6],[37,21],[2,3],[1,12],[1,5],[6,6],[7,2],[7,0],[13,-4],[6,1],[24,14],[5,7],[-1,10],[-4,11],[-2,5],[-6,6],[-1,5],[-1,5],[-1,8],[-9,22],[-24,29],[-10,20],[-8,20],[-1,10],[4,11],[4,7],[12,15],[9,8],[2,4],[1,5],[2,8],[2,4],[3,3],[32,17],[7,8],[3,0],[7,-1],[4,0],[4,2],[3,3],[5,10],[2,2],[3,-1],[7,-7],[4,-1],[4,5],[5,8],[5,6],[6,0],[8,-7],[6,1],[14,8],[-5,15],[-1,7],[2,6],[5,13],[2,13],[0,10],[2,7],[8,6],[19,7],[6,4],[3,5],[5,10],[3,5],[3,1],[6,0],[9,8],[5,-3],[3,-7],[4,-3],[6,0],[7,-2],[5,-5],[8,-21],[6,-4],[21,-3],[6,6],[5,9],[19,21],[20,33],[12,10],[16,6],[12,0],[13,4],[40,-13],[4,-2],[2,-4],[1,-6],[2,-7],[18,-24],[3,-8],[-2,-10],[-13,-42],[8,-7],[9,3],[19,10],[2,-18],[16,2],[30,19],[26,26],[13,8],[15,-4],[-14,-22],[9,-13],[6,-4],[7,3],[19,20],[10,7],[10,1],[9,-7],[16,-26],[8,-11],[9,-4],[9,7],[16,28],[10,6],[-2,16],[4,11],[7,6],[7,1],[7,-5],[5,-8],[7,-28],[2,-4],[8,0],[2,-4],[2,-18],[2,-7],[4,-4],[6,3],[24,21],[9,5],[7,-3],[3,0],[3,2],[10,16],[6,5],[16,6],[12,10],[4,0],[7,-3],[4,1],[7,11],[6,13],[6,10],[9,-3],[-22,31],[-4,9],[-2,15],[-5,17],[-5,16],[-7,8],[3,4],[7,6],[3,4],[1,6],[0,6],[1,6],[5,4],[-2,1],[-7,5],[8,15],[10,1],[11,-3],[9,1],[5,6],[7,16],[5,3],[12,3],[13,6],[37,29],[45,9],[-3,-14],[-2,-12],[1,-11],[6,-6],[6,2],[8,6],[7,8],[16,28],[12,14],[12,9],[22,7],[14,1],[7,-2],[7,-5],[3,-1],[4,2],[5,5],[2,4],[-1,5],[1,11],[-1,8],[-1,5],[0,4],[4,4],[8,5],[8,2],[8,-2],[5,-2],[4,1],[7,10],[-1,3],[-4,7],[-2,2],[11,17],[18,5],[48,-1],[8,3],[15,10],[31,-1],[3,-3],[4,-6],[4,-4],[3,1],[7,9],[7,5],[86,30],[-4,11],[-1,9],[2,8],[5,7],[9,10],[2,5],[7,18],[2,4],[8,4],[26,-1],[-27,15],[6,13],[5,8],[5,5],[8,5],[-27,3],[2,13],[-1,13],[0,12],[5,8],[2,2],[4,8],[2,3],[37,34],[7,3],[57,4],[7,3],[12,12],[7,4],[63,12],[-12,17],[-15,9],[-17,4],[-15,-1],[6,4],[15,17],[3,8],[0,5],[-5,9],[-3,6],[-1,9],[0,10],[1,10],[3,7],[-4,4],[-4,1],[-9,-2],[-1,10],[2,5],[3,3],[4,2],[2,4],[2,15],[1,6],[6,15],[5,15],[2,6],[13,10],[39,51],[107,68],[87,32],[87,32],[31,4],[120,44],[121,43],[16,2],[23,-6],[88,35],[88,35],[16,0],[86,44],[3,-1],[8,-4],[4,-1],[3,2],[16,13],[17,7],[17,2],[32,-12],[2,-2],[2,-4],[3,-3],[4,-3],[3,1],[3,3],[4,1],[10,-3],[4,1],[9,19],[8,8],[25,18],[4,1],[4,3],[8,9],[4,2],[23,-4],[31,7],[7,-3],[13,-14],[7,-5],[7,-1],[26,16],[9,3],[15,-4],[6,1],[15,13],[8,4],[8,1],[8,-2],[14,-8],[7,-7],[12,-16],[7,-5],[23,-8],[40,11],[3,4],[2,6],[2,7],[3,7],[1,3],[-21,13],[-22,3],[-19,12],[-14,39],[1,20],[9,11],[46,17],[11,9],[7,18],[8,14],[13,10],[105,30],[41,23],[3,3],[9,16],[3,6],[9,7],[22,27],[6,5],[15,3],[29,-1],[102,21],[30,-7],[-15,-24],[7,-1],[15,3],[6,-6],[7,-9],[7,-5],[40,-6],[13,-7],[17,-5],[6,0],[4,3],[5,7],[4,1],[36,-10],[7,3],[15,11],[8,2],[15,-1],[28,15],[3,3],[4,13],[2,5],[3,4],[15,11],[8,2],[4,2],[3,5],[3,5],[2,4],[5,3],[15,2],[31,-6],[90,12],[8,-4],[16,-14],[7,-4],[8,0],[61,31],[27,28],[26,19],[102,35],[30,19],[16,3],[16,8],[8,2],[25,-3],[8,3],[19,21],[7,5],[7,3],[47,-1],[8,-3],[7,-5],[3,-4],[2,-4],[3,-8],[2,-19],[2,-5],[5,-4],[24,8],[15,0],[14,3],[47,27],[21,1],[14,6],[3,0],[41,-15],[8,2],[22,11],[9,-1],[26,-12],[17,-2],[32,4],[17,-3],[23,-15],[8,-3],[34,-2],[15,3],[29,23],[15,7],[21,1],[15,-4],[41,14],[17,0],[16,-5],[19,-13],[4,-1],[9,2],[3,-1],[4,-3],[7,-9],[7,1],[8,12],[12,27],[6,7],[14,-1],[7,3],[14,12],[15,8],[11,-2],[3,1],[22,20],[56,35],[15,16],[8,5],[16,3],[65,-16],[16,3],[57,22],[16,12],[23,0],[50,23],[29,-9],[28,2],[14,-6],[43,-44],[14,-4],[24,3],[38,-17],[32,-5],[15,4],[17,9],[27,22],[14,8],[14,-2],[31,-15],[8,0],[23,6],[45,-4],[30,4],[16,-2],[30,-12],[-6,-17],[-3,-7],[-5,-4],[2,-3],[3,-5],[2,-2],[-4,-9],[2,-14],[6,-14],[5,-10],[4,2],[37,34],[8,0],[6,-3],[7,-8],[2,-9],[-6,-8],[14,1],[22,8],[5,4],[3,5],[2,10],[2,5],[3,3],[45,12],[37,18],[5,7],[6,12],[7,12],[8,10],[7,6],[44,18],[23,3],[33,18],[3,1],[4,-2],[7,-5],[11,-1],[7,-2],[13,-10],[8,-3],[22,4],[14,-2],[15,-10],[11,-17],[7,-26],[0,-8],[-1,-7],[1,-7],[4,-3],[37,-7],[8,2],[-3,-5],[-8,-29],[4,5],[6,-1],[11,-5],[5,2],[17,16],[4,2],[9,0],[4,1],[17,9],[19,6],[9,-1],[9,-4],[16,0],[15,16],[14,21],[15,15],[7,-2],[13,-19],[7,-5],[8,2],[16,9],[32,7],[7,-2],[34,-17],[15,0],[101,63],[30,10],[30,-4],[13,-5],[6,-5],[4,-9],[18,-30],[23,9],[6,-3],[2,-18],[1,-5],[3,-8],[3,-4],[3,-3],[4,-2],[7,-2],[15,0],[7,-2],[19,-19],[7,0],[12,12],[18,39],[10,15],[13,7],[25,4],[26,24],[27,14],[12,14],[10,7],[78,0],[3,-4],[4,-11],[3,-4],[3,-3],[-9,-40],[-6,-18],[-8,-12],[13,-11],[24,8],[80,62],[23,7],[20,1],[-4,-20],[-13,-17],[-81,-53],[12,-4],[4,-5],[4,-8],[5,-25],[4,-9],[-32,-27],[8,-8],[4,-2],[4,-2],[4,-3],[1,-6],[0,-21],[2,-20],[4,-13],[7,-5],[8,3],[8,13],[-1,13],[-3,14],[3,17],[7,15],[24,35],[3,8],[2,6],[2,3],[6,0],[3,-2],[3,-6],[6,-12],[4,-6],[3,-3],[14,-5],[3,0],[2,4],[2,11],[5,10],[9,5],[18,3],[9,-2],[5,1],[4,4],[7,13],[4,4],[6,0],[0,26],[12,22],[17,14],[13,6],[-8,-28],[-3,-16],[1,-15],[6,-14],[6,1],[7,11],[5,13],[15,22],[35,23],[17,16],[9,11],[7,5],[7,1],[10,-2],[4,1],[10,5],[4,0],[5,-3],[5,0],[4,3],[10,8],[8,10],[4,3],[6,1],[4,1],[4,1],[14,11],[8,-1],[4,-9],[-3,-21],[6,1],[24,17],[7,-1],[6,-10],[9,-28],[8,15],[10,10],[22,11],[-7,6],[-25,-2],[11,16],[-7,6],[-20,10],[97,8],[9,3],[10,7],[51,59],[8,13],[6,16],[2,10],[1,9],[2,6],[6,2],[11,1],[5,2],[13,13],[2,5],[6,15],[3,7],[3,6],[4,4],[30,9],[10,6],[-85,17],[4,4],[4,2],[8,3],[-3,4],[-2,3],[-4,1],[-3,0],[15,10],[14,13],[13,11],[66,-3],[31,-11],[90,5],[91,4],[49,36],[24,12],[32,6],[55,-11],[15,1],[23,-7],[5,-2],[1,-6],[1,-7],[3,-6],[3,0],[14,5],[3,0],[12,-7],[22,2],[7,-2],[4,-3],[5,-7],[3,-3],[18,-4],[41,-27],[14,-4],[8,1],[25,15],[8,3],[42,-1],[70,-24],[71,-24],[43,-42],[16,-6],[65,-1],[119,-43],[16,4],[3,-1],[13,-12],[11,-1],[4,-3],[7,-10],[3,-3],[112,-36],[112,-36],[5,-5],[1,-5],[0,-7],[0,-7],[2,-6],[4,-1],[4,3],[4,5],[3,5],[7,6],[52,-8],[13,-7],[15,-26],[6,1],[13,8],[97,-4],[60,-22],[28,-17],[96,-14],[6,-6],[13,-19],[6,-12],[3,-11],[-4,-12],[-7,-8],[-15,-10],[-6,-7],[-18,-25],[4,-12],[0,-18],[-1,-35],[4,2],[3,4],[13,23],[3,3],[2,1],[5,-1],[2,0],[3,8],[6,19],[3,8],[4,4],[44,28],[26,33],[8,2],[12,-4],[-2,-15],[3,-11],[11,-15],[5,-12],[4,-13],[4,-10],[7,-6],[8,-1],[7,2],[7,-1],[21,-17],[6,-3],[21,-4],[13,-7],[11,-14],[10,-24],[3,-22],[1,-5],[3,-3],[11,-5],[20,-16],[7,-2],[6,2],[19,10],[10,-1],[3,1],[1,2],[-1,4],[0,4],[1,3],[22,19],[13,8],[7,-1],[20,-11],[7,0],[6,2],[6,0],[7,-4],[13,-11],[6,-4],[62,8],[-1,4],[-3,8],[-2,4],[9,9],[63,14],[-11,14],[28,13],[-7,5],[60,20],[16,11],[27,30],[38,22],[8,2],[7,-1],[17,-8],[14,-11],[14,-16],[7,-5],[7,-2],[24,8],[-2,11],[-6,8],[-11,9],[9,26],[-10,7],[-5,11],[-2,15],[2,22],[-7,1],[-7,0],[24,24],[5,10],[1,27],[4,12],[-25,12],[-6,8],[-5,6],[-4,4],[-10,2],[-5,3],[-4,6],[-3,8],[-3,9],[8,7],[8,13],[14,28],[7,6],[17,4],[6,10],[1,8],[0,7],[1,6],[2,6],[11,11],[11,8],[35,36],[8,4],[16,3],[84,32],[84,33],[64,-1],[127,32],[128,33],[31,16],[91,19],[5,-4],[8,-25],[7,-10],[8,-6],[33,-11],[29,-21],[37,-11],[32,-20],[6,-7],[12,-20],[15,-16],[30,-24],[16,-4],[7,-4],[13,-26],[8,-6],[8,0],[9,2],[9,-5],[10,-27],[8,-5],[5,0],[3,-2],[3,-4],[5,-6],[3,-2],[4,-1],[3,-2],[4,-5],[-6,-6],[-1,-11],[-1,-11],[-3,-10],[-14,-15],[-5,-10],[-3,-15],[7,3],[22,-9],[-2,-2],[-5,-7],[11,-11],[-1,-3],[-3,-6],[-2,-2],[21,3],[-36,-37],[-9,-19],[98,18],[26,-9],[12,-1],[24,14],[40,-6],[13,3],[7,-1],[5,-5],[6,-12],[5,-7],[6,-3],[20,-5],[24,-14],[23,-2],[46,-20],[14,-12],[9,-17],[-4,-18],[4,-8],[5,-6],[2,-5],[0,-5],[0,-6],[1,-5],[2,-4],[7,-5],[3,-4],[3,-11],[5,-9],[-25,-43],[-26,-35],[-59,-50],[-63,-30],[-110,-10],[-46,-27],[-32,-8],[-24,5],[-102,-41],[-7,-7],[-27,-48],[-8,-8],[-17,-12],[9,-5],[10,-2],[-5,-19],[-9,-10],[-20,-10],[-6,-5],[-7,-15],[-5,-5],[-11,-8],[-3,-8],[0,-11],[5,1],[4,-3],[3,-5],[4,-3],[5,0],[16,8],[9,2],[24,-4],[37,7],[88,40],[89,40],[-19,-30],[-5,-13],[12,-7],[12,2],[23,12],[6,4],[5,13],[5,5],[70,23],[42,1],[11,8],[-13,13],[10,19],[12,15],[14,8],[53,-2],[17,7],[23,1],[15,5],[14,12],[7,0],[2,-13],[3,-11],[8,-2],[33,15],[5,8],[4,18],[4,7],[9,0],[9,-4],[14,-11],[8,3],[6,9],[10,27],[5,4],[6,-2],[15,-23],[7,-6],[7,0],[39,15],[9,6],[15,20],[30,21],[29,33],[40,24],[0,-16],[-3,-18],[-8,-33],[-11,-24],[-2,-12],[8,-9],[30,-5],[27,9],[18,-1],[23,11],[16,4],[47,-1],[9,5],[7,8],[7,2],[6,-13],[5,-6],[16,-5],[7,-7],[2,-6],[1,-6],[2,-6],[2,-3],[6,0],[4,2],[37,39],[14,11],[126,22],[17,8],[-8,-23],[-5,-11],[-6,-8],[-30,-26],[5,-1],[3,-4],[2,-6],[1,-9],[37,14],[3,-2],[7,-14],[3,1],[4,4],[5,4],[28,4],[4,-2],[13,-8],[4,0],[8,4],[20,4],[6,-2],[11,-9],[4,-2],[3,1],[4,1],[0,2],[-1,9],[0,2],[3,1],[9,1],[63,25],[9,2],[24,-9],[8,-1],[9,2],[30,19],[45,11],[20,17],[81,20],[15,13],[93,34],[14,-6],[12,-20],[-29,-20],[-111,-39],[-112,-40],[-112,-39],[-112,-40],[4,-3],[4,-2],[8,-1],[-1,-3],[-3,-8],[-1,-4],[12,-22],[4,-3],[10,4],[5,0],[6,-1],[-1,-3],[-1,-7],[-1,-2],[19,-5],[-20,-23],[10,-2],[9,0],[18,6],[22,18],[7,0],[2,-1],[3,-4],[1,-2],[5,-1],[5,1],[4,3],[13,11],[7,4],[7,2],[17,1],[16,-4],[8,0],[79,29],[21,-4],[36,19],[78,17],[79,17],[15,11],[18,4],[84,45],[8,1],[16,-7],[9,0],[102,32],[30,-3],[41,25],[4,2],[7,-2],[4,3],[4,4],[4,3],[9,3],[-1,3],[-1,7],[0,3],[4,1],[4,-1],[3,-4],[3,-6],[2,0],[7,5],[3,-2],[-3,15],[-5,1],[-5,0],[-4,10],[8,5],[22,23],[8,6],[40,15],[29,22],[16,6],[53,8],[16,10],[8,2],[25,1],[75,22],[74,23],[17,-1],[33,-9],[52,-2],[12,3],[9,7],[20,19],[8,12],[3,7],[1,5],[2,4],[5,4],[56,25],[8,-1],[2,2],[1,3],[2,3],[6,3],[4,2],[4,-1],[5,-5],[-8,-9],[5,0],[4,2],[12,12],[2,1],[44,-4],[0,-17],[6,-7],[23,-9],[2,-4],[0,-10],[-1,-6],[-2,-8],[-6,-12],[5,-1],[5,1],[10,4],[5,-1],[7,-4],[5,2],[-2,-3],[-1,-8],[-2,-3],[8,4],[8,1],[16,-1],[2,0],[4,4],[1,0],[2,-3],[4,-10],[2,-4],[4,-4],[4,-2],[5,0],[13,4],[17,11],[7,7],[3,7],[1,6],[2,5],[6,1],[1,-2],[3,-8],[2,-2],[2,1],[41,21],[27,7],[8,5],[14,17],[7,11],[4,13],[2,17],[5,13],[7,9],[8,4],[4,41],[21,18],[82,16],[9,8],[9,11],[36,31],[6,2],[6,0],[5,-1],[4,-5],[4,-5],[4,-6],[18,-5],[7,-12],[4,-20],[2,-27],[17,-18],[5,6],[6,4],[12,3],[11,-3],[8,-10],[2,-11],[-12,-6],[4,-9],[13,-23],[6,-5],[5,5],[3,15],[2,35],[-3,47],[1,10],[8,10],[7,-1],[8,-6],[8,-3],[-5,-19],[-2,-11],[3,-4],[5,-2],[10,-6],[4,-1],[4,3],[13,14],[5,4],[11,3],[5,0],[-10,-10],[4,-13],[6,-1],[12,6],[8,0],[21,-9],[-6,-17],[-3,-4],[-3,-3],[-8,-4],[-4,-3],[-5,-12],[0,-9],[1,-10],[-3,-13],[-6,-10],[-7,-5],[-14,-5],[-7,-5],[-5,-7],[-9,-21],[29,13],[9,2],[17,-7],[4,-4],[7,-14],[4,-5],[-7,-14],[-22,-14],[-10,-11],[-1,-7],[-3,-28],[0,-9],[5,-8],[6,0],[73,22],[4,-1],[22,-23],[-7,-28],[-5,-12],[-5,-10],[23,-14],[-5,-8],[-2,-8],[0,-10],[0,-12],[0,-5],[-1,-4],[-3,-8],[0,-5],[3,-3],[3,-3],[2,-3],[-1,-8],[-1,-12],[0,-11],[5,-6],[4,1],[4,6],[10,25],[3,8],[0,8],[-2,12],[1,8],[4,10],[4,9],[4,5],[46,29],[-8,-30],[6,-6],[3,-4],[1,-4],[-3,-16],[0,-7],[3,-6],[8,-8],[9,-1],[51,12],[22,-4],[39,21],[8,1],[16,-6],[42,4],[2,-2],[2,-6],[4,-24],[2,-4],[15,-11],[6,-1],[6,2],[25,15],[10,2],[7,-4],[2,-6],[3,-13],[2,-5],[31,-15],[7,-1],[29,13],[16,3],[7,6],[5,12],[2,17],[9,20],[17,-5],[52,-46],[3,-6],[4,-20],[7,-11],[10,4],[29,40],[2,4],[1,5],[0,10],[0,5],[2,6],[7,15],[7,10],[45,24],[3,4],[0,9],[-2,10],[-4,9],[-11,21],[3,11],[8,9],[16,12],[4,5],[3,7],[3,11],[3,5],[13,15],[3,13],[-10,6],[-13,2],[-9,-1],[1,15],[10,23],[3,14],[3,9],[8,8],[22,15],[4,8],[5,9],[6,8],[5,10],[4,17],[2,17],[-3,12],[22,19],[21,26],[10,6],[27,4],[7,8],[8,22],[11,11],[37,9],[5,-1],[10,-10],[6,1],[10,7],[-1,-4],[0,-9],[-1,-4],[34,25],[18,6],[10,-11],[5,11],[6,27],[6,7],[22,21],[7,1],[31,-18],[8,-3],[42,-2],[14,-7],[7,-2],[17,4],[7,-2],[4,-4],[6,-11],[3,-4],[4,-2],[7,-2],[15,-2],[4,2],[4,3],[8,10],[4,2],[101,-19],[81,16],[27,23],[92,16],[7,-3],[14,-11],[14,-7],[61,-2],[53,26],[21,24],[8,5],[43,10],[63,-2],[29,-15],[52,2],[9,-5],[8,-8],[5,-11],[5,-14],[5,-8],[7,-6],[8,-3],[4,0],[7,2],[4,0],[16,-13],[15,-6],[6,-6],[11,-25],[6,0],[6,3],[7,-3],[2,-4],[2,-12],[2,-4],[3,-3],[3,-1],[21,8],[7,1],[7,-4],[3,-10],[-5,-9],[-20,-14],[-24,-27],[-9,-17],[-33,-37],[15,-5],[49,17],[-4,-3],[-3,-5],[-2,-6],[-3,-6],[15,-1],[19,13],[96,95],[-7,-18],[37,6],[17,9],[6,-1],[8,-9],[7,-4],[7,1],[40,19],[-1,12],[1,12],[0,10],[-4,8],[6,1],[12,7],[16,15],[3,4],[1,31],[5,22],[3,10],[3,5],[41,-6],[1,-2],[1,-5],[1,-5],[1,-5],[10,-21],[1,-3],[5,-3],[2,-3],[12,-33],[10,-19],[1,-14],[-3,-14],[-3,-13],[10,-4],[9,15],[8,20],[8,11],[15,5],[2,-1],[5,-5],[2,-1],[6,2],[12,9],[6,2],[15,-2],[4,1],[24,13],[13,1],[8,-6],[18,-25],[17,-17],[5,-7],[9,-17],[5,-6],[10,-7],[34,-10],[4,-2],[5,-6],[4,-8],[2,-7],[2,-13],[2,-10],[16,-33],[5,-7],[4,0],[10,17],[4,9],[3,12],[-7,1],[-13,9],[-6,2],[5,34],[9,20],[13,10],[58,12],[131,-13],[12,3],[3,-1],[6,-9],[3,-2],[47,-7],[11,5],[3,1],[3,-4],[6,-13],[4,-4],[4,-2],[11,-2],[7,-4],[18,-15],[3,-4],[1,-4],[2,-4],[7,-2],[3,-3],[6,-6],[8,-5],[34,-6],[2,-3],[4,-13],[2,-4],[4,-3],[-15,-51],[13,5],[12,9],[22,28],[9,8],[12,4],[64,-5],[3,1],[4,8],[3,2],[2,-3],[4,-10],[1,-4],[3,-3],[15,-8],[6,2],[5,2],[43,4],[12,-2],[16,-10],[5,0],[13,6],[23,-3],[21,3],[57,-16],[-4,-18],[3,-11],[7,-5],[8,0],[5,3],[14,11],[4,1],[24,-3],[10,-6],[18,-17],[10,-6],[8,-2],[7,-5],[7,-18],[-7,-7],[-7,-10],[-5,-12],[0,-15],[11,12],[15,11],[13,3],[16,-13],[5,7],[6,11],[6,6],[8,3],[48,0],[8,-4],[6,-7],[12,-22],[2,-2],[2,3],[5,9],[2,8],[-1,6],[0,4],[6,4],[8,2],[15,1],[49,-14],[57,-2],[29,-9],[71,-53],[6,-3],[4,5],[3,16],[8,-6],[7,-2],[8,3],[15,13],[37,20],[112,-12],[31,-16],[30,-29],[5,-10],[9,-23],[5,-10],[2,-1],[4,0],[2,0],[2,-3],[3,-6],[1,-3],[5,-2],[3,0],[3,-3],[4,-8],[12,-13],[17,-7],[96,4],[16,6],[33,28],[131,69],[11,0],[67,-21],[20,-12],[10,-11],[5,-12],[-4,-33],[1,-11],[2,-11],[3,-5],[1,-6],[-3,-13],[-6,-12],[-21,-16],[-8,-11],[81,30],[7,1],[2,-3],[1,-8],[1,-17],[2,-12],[3,-10],[4,-4],[3,10],[5,40],[3,12],[8,17],[12,12],[13,8],[12,5],[27,1],[27,-9],[10,-9],[27,-38],[5,-13],[-9,-26],[-9,-15],[-11,-6],[-16,0],[-12,5],[-13,9],[-13,6],[-12,-5],[6,-14],[5,-7],[6,-3],[16,2],[7,-3],[7,-6],[7,-7],[-2,-8],[-6,-12],[-3,-7],[-5,-25],[-3,-6],[-4,-6],[-12,-9],[-3,-4],[-15,-24],[-6,-7],[-7,-2],[-8,4],[-6,13],[-7,17],[-7,10],[-7,-9],[-2,-7],[1,-6],[0,-5],[-3,-9],[-5,-6],[-5,-1],[-4,-3],[0,-13],[2,-3],[8,-1],[4,-3],[5,-6],[3,-6],[0,-8],[0,-12],[0,-8],[1,-8],[4,-15],[2,-10],[0,-8],[-3,-8],[-10,-22],[-7,-11],[-7,-9],[-12,-11],[-18,-11],[-21,-23],[-8,-15],[-7,-19],[-4,-20],[8,-1],[24,9],[-10,-10],[-2,-7],[0,-11],[0,-7],[-3,-9],[-6,-16],[20,-7],[19,6],[37,30],[-4,-20],[-1,-10],[1,-10],[13,8],[6,-1],[6,-6],[5,-2],[6,5],[23,27],[20,45],[12,18],[24,19],[13,6],[13,3],[45,-5],[15,3],[11,7],[11,12],[31,49],[51,63],[12,8],[12,3],[27,1],[6,-4],[5,-11],[6,-25],[2,-12],[-2,-16],[7,-4],[6,-6],[2,-6],[-1,-8],[-2,-8],[0,-8],[6,-12],[9,-10],[10,-5],[8,0],[12,21],[5,34],[8,30],[17,11],[34,-9],[36,2],[7,-3],[16,-13],[17,-6],[3,-12],[1,-15],[6,-11],[-7,-11],[-26,-26],[5,-9],[13,-2],[6,-8],[5,-9],[10,-14],[4,-8],[10,-10],[12,12],[11,23],[7,23],[9,13],[14,-6],[11,-17],[2,-19],[-7,-23],[-11,-19],[-12,-15],[-12,-10],[7,-21],[12,1],[14,8],[11,-1],[-4,-7],[-1,-7],[2,-7],[3,-8],[2,-1],[4,4],[8,12],[6,6],[7,4],[7,3],[6,0],[-2,-2],[-5,-7],[13,-3],[30,23],[15,-10],[-19,-37],[-47,-51],[-21,-34],[6,-4],[6,-17],[5,-2],[23,8],[26,18],[48,51],[15,11],[11,-3],[3,-9],[1,-14],[0,-14],[-2,-9],[-4,-11],[-6,-8],[-12,-13],[-37,-23],[-15,-20],[-16,-16],[-7,-10],[-1,-10],[4,-7],[8,-4],[12,2],[25,15],[12,-1],[2,-4],[0,-5],[1,-3],[4,0],[40,13],[-2,-10],[-1,-18],[-4,-11],[-9,-12],[-3,-8],[-2,-13],[8,-4],[8,2],[24,14],[3,0],[8,-9],[4,-1],[9,2],[35,19],[5,0],[4,-1],[10,-6],[4,0],[13,8],[31,11],[9,0],[18,-8],[9,-2],[17,4],[8,-2],[10,-22],[9,-6],[19,-3],[-1,-8],[0,-5],[1,-6],[2,-5],[2,-1],[4,4],[3,5],[2,4],[8,3],[15,-5],[7,0],[21,16],[7,3],[7,-2],[8,-6],[3,-10],[-5,-13],[41,-4],[23,12],[26,-9],[3,6],[0,6],[-1,5],[2,5],[4,7],[4,5],[5,3],[5,1],[9,-1],[7,-5],[14,-16],[9,-7],[7,-1],[17,5],[18,0],[7,4],[15,16],[9,4],[9,2],[8,0],[-10,-11],[11,-17],[14,-7],[13,6],[15,26],[8,7],[8,4],[6,2],[7,-1],[19,-19],[84,-40],[14,1],[13,13],[-12,19],[-7,8],[-7,3],[-8,2],[-8,4],[-7,8],[-6,11],[14,10],[12,-7],[24,-28],[14,-7],[100,-2],[21,-7],[8,0],[76,17],[56,35],[15,5],[13,0],[16,-5],[14,-11],[9,-22],[5,-29],[-1,-10],[-12,-25],[-4,-13],[0,-13],[8,-9],[-22,-68],[-9,-17],[6,-6],[3,-10],[2,-10],[4,-9],[23,-30],[11,-23],[5,-7],[2,5],[19,23],[13,1],[10,-7],[21,-26],[6,-5],[5,-3],[18,-2],[18,-9],[3,44],[-1,21],[-6,14],[2,1],[3,3],[1,1],[-6,28],[0,12],[6,9],[4,1],[7,-5],[86,19],[3,-1],[5,-7],[3,-2],[4,1],[2,-1],[6,-6],[7,-5],[17,-5],[18,-15],[16,1],[52,21],[8,-1],[3,-3],[4,-8],[3,-3],[4,0],[8,5],[5,1],[7,-5],[12,-17],[7,-8],[8,-3],[24,8],[7,-2],[28,-18],[6,-7],[13,-18],[14,-17],[15,-9],[16,-2],[23,4],[14,-3],[7,0],[2,2],[1,4],[2,3],[3,2],[8,-1],[3,1],[2,4],[4,37],[0,2],[1,2],[3,4],[7,5],[7,0],[26,-13],[13,-3],[14,1],[26,16],[14,4],[29,0],[-4,16],[-10,55],[-5,14],[-21,42],[11,7],[13,3],[13,5],[8,16],[-12,10],[-25,16],[-9,17],[-4,26],[1,25],[6,20],[11,12],[12,4],[12,0],[12,-3],[12,-6],[20,-16],[18,-4],[6,-4],[10,-11],[5,-4],[11,-2],[0,-3],[0,-5],[3,-3],[49,-27],[20,-20],[12,-8],[13,-5],[10,-1],[15,3],[2,-2],[2,-4],[2,-6],[2,-4],[5,-6],[11,-8],[5,-2],[-2,-17],[0,-9],[1,-6],[9,-9],[3,-6],[4,-8],[-16,-12],[-5,-3],[-5,2],[-12,8],[-51,3],[4,-16],[9,-14],[20,-18],[5,-12],[-4,-17],[-15,-29],[14,-1],[12,10],[22,35],[14,12],[15,-1],[13,-10],[30,-44],[3,-9],[0,-16],[2,-13],[5,-12],[7,-7],[7,-2],[7,4],[12,12],[8,3],[48,-14],[8,-7],[4,-4],[3,-6],[2,-6],[2,-7],[1,-10],[0,-19],[2,-10],[-21,-9],[-6,-6],[29,-3],[5,-2],[5,-12],[7,-10],[15,-15],[36,-17],[7,2],[26,18],[-3,10],[-4,1],[-5,-2],[-5,0],[-4,4],[-11,18],[-20,11],[-8,10],[-1,18],[6,15],[9,6],[41,2],[10,-2],[10,-5],[2,-3],[3,-7],[1,-1],[9,0],[2,-1],[4,-4],[19,-27],[3,-7],[1,-8],[-1,-13],[2,-7],[3,-8],[5,-6],[3,-3],[5,0],[14,9],[6,1],[4,-2],[9,-8],[21,-11],[10,-11],[1,-14],[11,-9],[13,-6],[37,-3],[22,6],[25,16],[6,0],[13,-2],[13,2],[5,-1],[3,-3],[5,-8],[3,-2],[9,0],[9,2],[37,27],[6,0],[26,-10],[5,-5],[14,-30],[15,-21],[23,-40],[8,-18],[4,-20],[2,-14],[3,-11],[5,-4],[10,17],[5,-2],[5,-6],[6,-5],[4,11],[10,8],[22,9],[-17,7],[-13,2],[-6,3],[-4,8],[-1,15],[-1,26],[1,11],[4,10],[5,7],[10,11],[12,9],[4,2],[23,1],[5,-3],[5,-9],[5,-6],[6,-2],[7,3],[6,5],[5,12],[3,8],[4,5],[9,1],[24,-1],[5,-3],[19,-19],[13,-5],[27,0],[12,-4],[37,-35],[1,-4],[0,-5],[2,-6],[10,-11],[14,-9],[14,-5],[11,1],[-1,2],[-5,5],[5,6],[5,1],[5,-1],[13,6],[6,-1],[12,-4],[18,6],[6,0],[6,-5],[6,-5],[22,-29],[6,-10],[6,-22],[8,-13],[8,-20],[5,-4],[5,-2],[7,-7],[5,-2],[3,9],[5,24],[11,15],[13,4],[14,-3],[63,-39],[12,-1],[23,3],[32,-3],[6,-3],[13,-13],[4,-5],[12,-22],[27,-29],[5,-4],[12,-4],[6,-4],[4,-9],[4,-9],[4,-7],[6,-2],[5,-3],[17,-26],[24,-19],[12,-16],[2,-19],[-4,-12],[-6,-7],[-7,-5],[-8,-3],[-21,0],[-15,-7],[-8,-1],[-30,9],[-29,-5],[-21,5],[-7,-1],[-5,-6],[0,-14],[3,-6],[4,-1],[4,-1],[3,-1],[3,-6],[4,-12],[7,-9],[3,-10],[2,-3],[3,-1],[14,2],[21,-4],[7,3],[21,13],[7,0],[21,-11],[116,-36],[2,-4],[1,-5],[1,-6],[3,-5],[-18,-13],[35,5],[11,-4],[9,-9],[9,-13],[9,-15],[12,-26],[5,-7],[18,-12],[3,-5],[2,-7],[5,-11],[10,-13],[9,-10],[5,-14],[-5,-23],[27,-18],[5,-7],[12,-23],[3,-9],[-3,-11],[-6,-8],[-7,-7],[-4,-6],[-3,-15],[1,-11],[4,-4],[6,8],[4,12],[5,9],[5,3],[5,-8],[2,-15],[-5,-21],[2,-14],[10,-14],[13,-10],[25,-12],[-20,-38],[-16,-20],[-4,-7],[1,-7],[3,-9],[2,-11],[0,-9],[-6,-2],[6,-9],[4,-9],[5,-6],[7,-3],[8,1],[36,14],[13,-1],[4,2],[7,8],[4,1],[2,-4],[5,-17],[3,-6],[12,-9],[14,-1],[27,11],[16,0],[16,-9],[15,-14],[14,-18],[-2,-6],[-2,-6],[-3,-5],[-3,-3],[9,-18],[15,-14],[16,-8],[20,0],[7,-4],[12,-14],[5,-2],[8,6],[8,8],[4,10],[-3,4],[-2,5],[-2,6],[-1,7],[5,2],[2,0],[-31,58],[-2,2],[-10,1],[-5,1],[-3,4],[-4,16],[-1,17],[-2,6],[-4,4],[-9,5],[-8,1],[-15,-7],[-8,1],[-4,5],[-2,5],[-4,17],[-1,8],[2,2],[2,3],[1,6],[0,16],[1,8],[1,6],[7,15],[3,10],[1,8],[-2,5],[-9,6],[-3,4],[-1,7],[0,6],[0,7],[-6,15],[2,6],[2,5],[1,4],[0,11],[-1,9],[-2,9],[-3,8],[-3,16],[0,15],[7,32],[2,5],[4,4],[8,6],[3,7],[1,16],[2,4],[31,-9],[6,3],[26,23],[15,5],[61,4],[17,-4],[8,-5],[7,-9],[20,-46],[5,-10],[6,-6],[7,-1],[7,0],[7,-1],[5,-11],[-4,-3],[-4,-2],[-4,1],[-4,2],[6,-25],[12,-18],[14,-11],[13,-5],[15,0],[8,-2],[6,-6],[3,-4],[7,-19],[3,-3],[53,-22],[17,-17],[8,-3],[8,0],[13,3],[30,-7],[6,1],[7,4],[14,14],[15,1],[17,5],[6,-2],[2,-9],[-3,-18],[-1,-11],[1,-37],[2,-10],[6,-7],[7,-2],[7,2],[8,-1],[7,-4],[4,-1],[2,3],[1,7],[2,5],[2,5],[3,3],[3,4],[0,13],[3,6],[6,10],[2,5],[3,7],[5,9],[7,7],[7,4],[6,2],[-43,52],[-5,11],[19,16],[20,7],[20,2],[71,-18],[19,-11],[9,-4],[29,0],[16,5],[4,-2],[3,-3],[5,-5],[10,-7],[11,-4],[65,6],[9,-14],[11,1],[24,12],[12,3],[8,-3],[6,0],[2,-3],[2,-3],[2,-1],[4,1],[5,5],[3,1],[3,-1],[6,-4],[3,0],[-10,-12],[7,-5],[18,3],[9,-1],[-1,-2],[-2,-5],[-2,-2],[108,-42],[-1,13],[4,6],[5,2],[18,0],[5,3],[16,16],[76,20],[11,-3],[2,-3],[4,-9],[3,-1],[78,-4],[12,-8],[12,-12],[6,-8],[2,-7],[-4,-9],[-6,-5],[-14,-4],[-2,1],[-2,5],[-2,2],[-9,-4],[-3,2],[-7,5],[-5,0],[-13,-7],[-26,-1],[-13,-4],[-8,-14],[5,-7],[4,-8],[3,-5],[6,-2],[18,3],[4,-1],[6,-7],[4,-3],[5,-1],[27,4],[14,8],[7,-1],[11,-10],[5,-4],[6,3],[7,5],[7,3],[7,1],[14,-3],[19,6],[96,3],[12,-2],[25,-13],[42,-4],[10,-11],[1,-6],[1,-8],[0,-6],[2,-2],[8,2],[3,-1],[4,-2],[7,-7],[4,-11],[2,-12],[5,-15],[-12,-11],[-97,-4],[-17,-7],[-57,-11],[-13,-7],[-7,-2],[12,-21],[20,-4],[71,20],[102,-6],[7,-6],[13,-24],[7,-7],[35,-19],[-5,-10],[-5,-7],[-6,-4],[-7,0],[-9,4],[-3,1],[-4,-1],[-6,-5],[-3,-1],[-6,3],[-5,4],[-6,2],[-4,-7],[-5,-10],[-6,-6],[-15,-7],[-5,-7],[-2,-9],[2,-8],[5,-3],[98,20],[14,-4],[7,1],[21,9],[26,-7],[7,1],[18,11],[10,8],[5,1],[17,-6],[7,-7],[2,-1],[14,2],[7,-1],[6,-4],[11,-20],[6,-8],[6,-2],[-4,-21],[71,-29],[6,-6],[6,-7],[3,-3],[4,-2],[3,2],[7,9],[4,1],[2,-3],[1,-6],[2,-5],[3,-4],[24,-5],[5,-4],[16,-25],[5,-6],[6,-3],[7,0],[8,-3],[12,-12],[9,0],[-3,-3],[-2,-4],[-2,-4],[-1,-5],[4,-3],[7,-9],[3,-3],[10,-2],[10,-1],[37,9],[11,-1],[8,-7],[22,-24],[3,-5],[3,-4],[4,-2],[20,9],[-1,-11],[3,-8],[11,-12],[5,-8],[4,-9],[5,-7],[6,-2],[7,1],[17,-10],[6,0],[7,3],[6,5],[6,6],[-5,5],[-2,9],[3,8],[5,3],[-4,9],[14,17],[14,12],[-14,61],[-4,10],[-15,25],[-4,9],[-2,9],[-4,22],[2,7],[7,5],[7,1],[5,-3],[11,-29],[2,-4],[6,-1],[2,-3],[5,-9],[7,-20],[16,-24],[9,-19],[12,-33],[5,-8],[10,-13],[28,-50],[-5,-11],[-2,-3],[41,-11],[-2,-1],[-5,-6],[6,-13],[6,-8],[7,-4],[8,-3],[-5,-6],[-1,-8],[3,-9],[4,-7],[4,-6],[6,-5],[7,-4],[5,0],[-6,-15],[-8,-11],[-18,-16],[-22,-27],[-8,-4],[-20,-2],[-9,-4],[-5,-12],[-2,-6],[-4,-3],[-4,-2],[-4,1],[-4,4],[-2,7],[-3,19],[3,0],[3,1],[3,4],[2,5],[-22,25],[-15,8],[-1,5],[-1,5],[-2,4],[-11,9],[-4,7],[-4,9],[-8,9],[-9,-12],[-13,-30],[-32,-35],[25,-5],[7,-7],[-5,-15],[-5,-14],[-6,-12],[-8,-10],[-8,-4],[-17,12],[-9,2],[2,-7],[0,-6],[-1,-6],[-3,-6],[14,-13],[-3,-2],[-2,-4],[0,-5],[0,-6],[-1,-6],[-11,-12],[-2,-7],[0,-5],[-1,-4],[-4,-5],[-4,-1],[-11,2],[-6,-4],[-13,-11],[-7,-3],[-16,-1],[-7,-6],[-2,-15],[5,1],[3,-3],[3,-4],[4,-3],[20,-3],[4,-3],[4,-4],[4,-3],[4,1],[4,0],[8,-6],[5,2],[-5,-12],[-35,-53],[-2,-10],[7,-9],[16,2],[29,14],[5,5],[10,18],[5,6],[35,19],[6,2],[5,-5],[2,-23],[3,-2],[3,-1],[2,-5],[2,-16],[1,-7],[3,-8],[0,-5],[-3,-5],[-5,-9],[-3,-6],[-1,-7],[-1,-17],[-3,-30],[-4,-15],[-4,-8],[-14,-7],[-15,-2],[-14,4],[-14,7],[-21,16],[-14,3],[-12,8],[-6,2],[-36,-1],[-8,3],[-4,2],[-3,3],[-11,16],[-6,5],[-7,2],[-2,-2],[-4,-6],[-2,-2],[-3,1],[-32,25],[-12,4],[-22,-13],[-51,2],[-117,75],[-8,-3],[-10,-11],[-13,-3],[-52,11],[-25,-3],[76,-60],[77,-60],[14,-4],[106,3],[13,-10],[11,-14],[3,-5],[1,-8],[0,-5],[0,-4],[5,-5],[14,-11],[8,-3],[6,2],[15,7],[14,5],[15,-1],[57,-27],[13,-15],[-23,-38],[-25,-31],[-10,-8],[-2,-4],[-3,-17],[-3,-6],[-3,-5],[-20,-21],[-7,-4],[6,-18],[-2,-2],[-4,-6],[-2,-3],[15,-19],[-7,-12],[-7,-10],[-7,-6],[-43,-11],[-3,0],[-3,2],[-3,5],[-2,5],[-4,6],[-4,2],[-19,-2],[-26,-14],[14,-17],[8,-35],[0,-34],[-10,-17],[-39,6],[-18,-3],[-8,5],[1,15],[-14,-2],[-6,3],[-5,8],[1,2],[3,4],[1,2],[-7,9],[-2,9],[2,9],[7,9],[9,8],[1,2],[1,7],[1,3],[3,1],[11,2],[-8,11],[-10,2],[-25,-9],[-10,-9],[-6,-3],[-11,0],[-11,2],[3,5],[3,4],[4,3],[3,1],[-2,12],[-7,4],[-15,-2],[-10,4],[-7,7],[-13,21],[-7,7],[-41,22],[-7,1],[-9,0],[-11,-12],[8,-22],[14,-24],[8,-21],[-2,-15],[-4,-12],[-7,-7],[-6,-3],[-9,1],[-13,11],[-8,4],[-4,0],[-7,-7],[-3,-2],[-4,0],[-26,18],[-8,3],[-7,-2],[-10,-6],[-7,-2],[-16,4],[-9,-1],[-15,-10],[-8,-4],[-17,1],[-7,4],[-14,18],[-8,-2],[-16,-13],[-15,-5],[-92,-3],[-32,15],[-2,3],[-6,20],[-11,22],[-5,9],[-7,8],[-31,16],[-61,14],[-14,10],[-12,16],[13,19],[4,9],[-12,0],[-24,-11],[-24,0],[-7,-2],[-3,-6],[2,-9],[5,-11],[11,-18],[5,-5],[13,-5],[25,-20],[60,-21],[-2,-14],[-4,-10],[-4,-8],[-7,-2],[9,-24],[11,-16],[12,-11],[14,-8],[-36,-64],[10,-21],[13,6],[25,32],[17,15],[33,14],[60,-13],[-1,-4],[-2,-10],[-1,-4],[10,-6],[32,6],[134,-32],[-48,-6],[-37,5],[5,-13],[10,-12],[21,-18],[-10,-9],[-10,0],[-45,16],[-10,11],[-5,2],[-6,-3],[-5,-1],[-12,6],[-5,0],[-32,-6],[-5,-3],[-2,-5],[1,-9],[3,-6],[10,-5],[-14,-14],[7,-3],[16,3],[6,-3],[8,-6],[22,-7],[-15,-12],[-15,-5],[-15,2],[-22,22],[-48,17],[-9,-1],[19,-21],[5,-8],[-6,-20],[-6,-11],[-7,-3],[-23,6],[-11,0],[-2,-2],[-2,-4],[-3,-9],[-3,-3],[-3,1],[-6,7],[1,2],[4,7],[1,2],[-3,6],[-4,4],[-4,2],[-5,0],[14,10],[-11,14],[-12,7],[-13,-4],[-11,-15],[-5,-12],[-4,-14],[-4,-11],[-7,-6],[-9,0],[-24,6],[-2,-2],[-2,-3],[-1,-2],[-4,1],[-4,3],[-9,12],[-55,45],[-15,5],[-13,-7],[7,-14],[28,-29],[-22,-5],[-74,5],[-16,-7],[3,-12],[5,-6],[42,-9],[57,-29],[-3,-7],[-3,-5],[-4,-3],[-4,-2],[21,-1],[11,-4],[8,-10],[-6,-4],[-10,-16],[-6,-3],[-3,1],[-3,3],[-4,0],[-3,-2],[-1,-5],[0,-12],[-1,-5],[-3,-6],[-2,-3],[-32,3],[-6,-3],[-12,-9],[-7,-3],[-74,22],[-25,-5],[14,-17],[14,-11],[31,-12],[-5,-4],[-16,-4],[-5,-3],[-9,-10],[-5,-3],[-22,0],[-22,7],[-64,5],[-17,20],[-2,17],[15,31],[2,20],[-1,4],[-4,6],[-2,3],[1,4],[4,7],[-1,4],[-8,22],[0,9],[4,12],[2,11],[-1,8],[-4,6],[-6,5],[-5,6],[-3,9],[-6,22],[-4,21],[-2,8],[-20,27],[-6,4],[41,35],[12,5],[38,2],[-14,7],[-16,4],[-15,-1],[-14,-6],[-31,-24],[-16,-8],[-18,-1],[-98,38],[-9,-4],[-23,-22],[13,-18],[13,-11],[15,-5],[31,4],[18,-3],[17,-8],[14,-14],[4,-13],[-4,-26],[9,-27],[1,-17],[-3,-33],[-4,-15],[-8,-9],[-9,-4],[-9,-1],[-6,-5],[-7,-13],[-6,-15],[-4,-12],[17,-16],[4,-3],[10,-1],[4,-5],[3,-7],[1,-9],[2,-8],[5,-5],[20,-11],[-16,-20],[-6,-4],[5,-9],[6,-4],[24,-12],[6,-1],[7,2],[-7,17],[31,-21],[36,-13],[-6,-5],[19,-12],[-7,-7],[-8,-2],[-15,-1],[-25,-6],[-10,1],[-2,4],[-1,15],[-2,3],[-45,11],[-20,21],[-64,22],[-17,2],[-17,-3],[-16,-9],[7,-4],[23,-6],[19,-11],[2,-4],[0,-7],[-1,-13],[22,12],[-1,-10],[1,-10],[2,-6],[5,-2],[5,3],[7,12],[5,3],[8,-3],[9,-11],[7,-15],[6,-14],[-13,-8],[4,-6],[6,-3],[11,-1],[-5,-8],[-6,-4],[-12,-4],[20,-14],[-7,-23],[11,-11],[41,-13],[5,-4],[4,-10],[1,-6],[1,-14],[1,-4],[7,-4],[2,-4],[2,-8],[-6,-1],[-2,0],[6,-7],[9,-21],[7,-8],[8,-4],[4,-3],[4,-6],[3,-8],[3,-7],[4,-5],[4,-4],[33,-7],[15,-10],[1,-21],[-2,-14],[-2,-32],[-4,-13],[-6,-6],[-7,3],[-13,19],[-28,33],[-17,12],[-13,-2],[-7,-9],[-7,-5],[-6,-3],[-16,1],[-15,-5],[-7,0],[-7,-1],[-14,-11],[-8,2],[-7,5],[-8,2],[-49,-3],[-10,6],[-13,-2],[-5,1],[-6,5],[-29,30],[-6,3],[-6,0],[-57,-27],[-52,-5],[10,-17],[-32,-19],[-16,-4],[-19,7],[-7,-2],[-3,0],[-4,5],[-2,6],[0,8],[-1,8],[-3,15],[-2,17],[2,15],[6,10],[-18,12],[-10,3],[-10,-5],[0,15],[6,28],[0,14],[-5,12],[-9,2],[-10,-3],[-20,-12],[-25,-22],[-14,-8],[-6,0],[-13,2],[-18,0],[-4,-2],[-3,-3],[-2,-6],[-1,-6],[3,-4],[23,-1],[4,-5],[4,-15],[5,-13],[12,-23],[-15,-27],[-4,-4],[-10,-8],[-21,-30],[-3,-8],[-2,-9],[-3,-8],[-5,-4],[-9,3],[-6,16],[-10,35],[-4,7],[-6,1],[-5,-1],[-5,-3],[-5,-1],[-9,4],[-5,0],[6,-19],[1,-9],[-2,-8],[-2,-3],[-6,-4],[-2,-2],[-2,-5],[-3,-10],[-2,-4],[-11,-11],[-39,-11],[1,-10],[2,-8],[3,-5],[5,-2],[-6,-21],[-7,-14],[-8,-8],[-12,-4],[-10,4],[-20,16],[-11,-3],[6,-8],[19,-16],[0,-23],[10,-13],[15,-6],[41,-3],[14,-7],[12,-12],[-8,-15],[-13,-7],[-25,-2],[4,-7],[4,-2],[11,-2],[-8,-18],[-10,-8],[-21,-4],[3,-13],[6,-9],[7,-6],[6,-3],[8,-9],[-3,-12],[-7,-13],[-7,-8],[-14,-10],[-78,-18],[-65,7],[-30,14],[-6,5],[-13,14],[-6,5],[-7,3],[-8,1],[-30,-7],[-15,-8],[-7,-9],[-10,-21],[-7,-7],[-15,-6],[-138,-1],[-19,-8],[-8,-1],[-9,-4],[-13,-18],[-26,-15],[-35,-7],[16,-12],[80,-18],[14,4],[30,22],[103,-1],[102,0],[102,-1],[5,-6],[15,-26],[3,-9],[3,-13],[5,-16],[1,-14],[-7,-8],[-38,4],[-20,-4],[-12,-18],[8,-7],[8,-4],[7,-2],[29,2],[3,-4],[-1,-8],[-3,-10],[-3,-5],[4,-1],[3,-2],[2,-4],[2,-7],[3,-3],[3,-2],[7,1],[3,-3],[3,-9],[2,-4],[40,-11],[2,1],[3,1],[3,0],[1,-4],[1,-11],[2,-6],[3,-2],[5,-1],[7,0],[7,2],[3,0],[8,-8],[61,-19],[16,-18],[-5,-8],[-11,-10],[-7,-9],[-2,-1],[-1,-2],[0,-4],[1,-6],[0,-4],[-2,-2],[-3,-4],[-9,-4],[-51,3],[-5,-2],[-5,-5],[1,-6],[5,-5],[5,-2],[8,0],[5,-1],[22,-21],[1,-8],[-4,-15],[5,-5],[3,-8],[4,-19],[-24,-11],[-71,19],[8,-9],[27,-14],[-11,-6],[-11,2],[-12,7],[-10,9],[-2,-3],[-15,-10],[9,-8],[31,-9],[-9,-11],[-14,-2],[-27,2],[-28,-4],[-14,-9],[-6,-19],[9,0],[6,-2],[4,-8],[1,-19],[27,-4],[19,-11],[4,0],[25,25],[13,8],[25,3],[3,-1],[3,-3],[2,-3],[3,-3],[3,-1],[30,1],[6,-2],[6,-5],[4,-9],[0,-15],[-4,-10],[-7,-4],[-13,0],[1,-1],[5,-5],[4,-24],[24,-23],[17,-25],[-14,-32],[-31,-29],[-10,-4],[-34,9],[-8,-8],[1,-1],[4,-5],[1,-1],[-5,-3],[-10,-2],[-5,-3],[-2,-11],[-1,-4],[-2,0],[-2,0],[-2,-2],[-8,-22],[8,-7],[11,-4],[73,5],[24,-9],[9,-7],[16,-19],[3,-7],[3,-22],[2,-10],[4,-9],[-6,-1],[-4,-5],[-4,-7],[-3,-10],[-4,-8],[-4,-4],[-5,-1],[-6,1],[-13,8],[-4,1],[-12,0],[-12,4],[-20,1],[-57,-44],[35,-3],[11,-8],[-18,-12],[-61,-8],[62,-5],[-7,-10],[-11,-5],[-20,-2],[11,-14],[11,-2],[42,8],[8,-1],[12,-13],[7,-1],[29,7],[28,-3],[28,4],[13,-3],[26,-15],[-5,-12],[-6,-12],[17,-14],[7,-8],[8,-14],[8,-8],[21,-4],[10,-6],[3,-7],[5,-16],[3,-7],[4,-3],[9,-5],[4,-6],[6,-17],[3,-7],[5,-6],[4,-7],[1,-10],[-1,-11],[-2,-9],[9,-9],[9,-6],[10,-3],[22,-2],[3,-4],[5,-10],[4,-5],[6,-1],[12,0],[-14,-10],[12,-17],[4,-11],[-3,-14],[-6,-6],[-70,-12],[-12,-12],[45,-15],[14,-12],[-17,-19],[-19,-8],[-41,-5],[26,-28],[7,-2],[97,14],[2,-3],[2,-4],[4,-3],[85,-41],[-12,-15],[-22,-3],[-40,6],[-39,-8],[-37,-20],[7,-18],[15,1],[27,11],[86,2],[87,1],[7,-6],[5,-6],[3,-9],[3,-14],[-11,-3],[2,-40],[-14,-19],[-21,-6],[-19,-1],[5,-8],[5,-5],[12,-6],[-5,-14],[-9,-7],[-19,-6],[-33,-21],[-42,-16],[-41,-30],[-11,-3],[25,-3],[51,10],[25,-7],[46,-31],[21,-3],[5,-3],[18,-17],[7,-2],[23,-3],[11,3],[22,17],[94,23],[5,4],[9,16],[5,7],[6,5],[7,3],[7,0],[-6,6],[-16,11],[19,28],[22,18],[31,37],[8,4],[14,0],[13,-5],[5,-4],[7,-7],[6,-8],[3,-10],[0,-16],[-4,-12],[-6,-8],[-68,-37],[7,-7],[24,-10],[16,-10],[17,-6],[25,0],[8,-4],[6,-6],[8,-11],[4,-12],[-5,-8],[2,-1],[4,-4],[2,-1],[-5,-7],[-5,-4],[-10,-7],[11,-21],[16,-12],[95,-29],[60,-2],[61,-20],[121,3],[16,-5],[13,-10],[31,-44],[5,-13],[2,-15],[-4,-12],[-7,-8],[-15,-8],[-22,-7],[-73,-1],[-72,-2],[-36,16],[-12,16],[-49,42],[-30,12],[-90,1],[-89,1],[2,-5],[3,-4],[3,-3],[3,-1],[-49,-11],[-125,0],[-125,0],[-93,-49],[-24,1],[24,-12],[-8,-4],[-16,3],[-7,0],[-5,-4],[-7,-11],[-5,-2],[-14,-1],[-58,13],[-18,-3],[2,-2],[2,-5],[2,-2],[-4,-3],[-4,-2],[-4,0],[-3,0],[1,-3],[2,-8],[1,-4],[-21,-7],[-3,1],[-8,22],[-2,5],[-3,0],[-2,-3],[-4,-3],[-13,0],[-27,7],[-13,0],[-21,-8],[-6,1],[-8,4],[-6,1],[-6,-5],[-7,-10],[-9,-18],[-5,-6],[-6,-4],[-10,-2],[-3,-1],[-1,-5],[0,-7],[0,-8],[-4,-6],[6,-11],[2,-3],[-8,-4],[-21,-23],[-16,-8],[-16,-4],[-19,1],[-9,7],[-6,14],[-7,9],[-18,1],[-7,9],[3,7],[-1,9],[-1,8],[0,4],[19,20],[-12,11],[-14,-2],[-26,-8],[-59,21],[-6,6],[-11,18],[-26,25],[-5,2],[-13,2],[-15,9],[-25,26],[5,7],[12,26],[11,12],[3,7],[-3,13],[-11,12],[-12,-7],[-12,-12],[-11,-5],[-26,9],[-14,1],[-13,-6],[-2,-4],[-4,-11],[-3,-3],[-31,-20],[-7,-1],[10,-6],[5,-13],[4,-17],[7,-15],[5,-7],[4,-8],[7,-18],[4,-7],[15,-9],[-4,-15],[-3,-7],[-3,-5],[7,-6],[25,1],[9,-2],[8,-5],[16,-14],[-7,-12],[-9,-4],[-18,-3],[44,-23],[4,-4],[3,-7],[3,-7],[3,-6],[11,-7],[11,-21],[41,-42],[-80,0],[-79,29],[1,17],[-8,11],[-10,9],[-13,21],[-10,4],[-19,-1],[-5,-1],[-3,-4],[-3,-5],[-4,-4],[-5,-2],[-57,6],[54,-17],[-8,-10],[-4,-6],[-2,-9],[-5,-27],[-8,-6],[-11,-2],[-101,15],[14,-22],[-10,-13],[-90,-42],[30,-18],[-1,-4],[-1,-8],[-1,-4],[10,-9],[-3,-10],[-9,-8],[-11,-3],[6,-16],[10,-5],[23,1],[21,-6],[21,-12],[-6,-10],[-8,-6],[-15,-6],[4,-9],[6,-7],[14,-9],[70,-5],[18,-8],[2,-19],[-6,-5],[-72,9],[-19,10],[-17,0],[-33,-9],[-6,-6],[-5,-13],[-6,-9],[-8,-6],[-47,-10],[-8,-5],[-14,-14],[-7,-4],[-18,-1],[-123,32],[3,-7],[5,-4],[9,-4],[6,-6],[1,-8],[-1,-9],[1,-7],[4,-9],[6,-5],[12,-6],[17,-14],[4,-1],[134,13],[134,12],[-22,-19],[-94,-36],[-94,-36],[-82,-4],[-34,-16],[-47,-8],[11,-3],[24,0],[11,-5],[-8,-12],[-10,-6],[-21,-6],[41,-21],[42,-9],[42,2],[99,36],[11,-1],[25,-20],[47,-10],[46,-25],[16,-1],[130,47],[42,-14],[-6,-6],[-12,-15],[-6,-6],[-121,-31],[-120,-31],[-120,-30],[-121,-31],[-120,-31],[-121,-31],[2,-24],[-15,-15],[-73,-24],[-73,-24],[-10,-8],[5,-15],[18,-5],[77,-2],[4,-3],[8,-8],[3,-1],[120,12],[121,11],[120,11],[120,12],[120,11],[7,-1],[10,-7],[8,-9],[3,-5],[4,-12],[2,-3],[6,-3],[11,2],[5,-2],[7,-6],[17,-23],[-14,-15],[-16,0],[-85,31],[-19,-2],[14,-21],[8,-8],[8,-4],[-14,-10],[-72,-13],[-71,-13],[-17,3],[-21,19],[-8,2],[-32,-11],[-18,-1],[20,-22],[8,-21],[7,-5],[106,-16],[83,20],[83,20],[29,-6],[38,-16],[7,1],[7,4],[8,1],[6,-6],[1,-16],[-2,-5],[-4,-1],[-4,0],[-4,-1],[-2,-6],[-4,-15],[-2,-6],[-6,-6],[-26,-10],[94,-15],[-30,-11],[-100,4],[-100,4],[-100,5],[-33,-9],[-82,2],[-47,15],[-13,-8],[5,-4],[5,-3],[10,-3],[-7,-5],[-14,-16],[-8,-6],[9,-6],[61,14],[118,-11],[119,-12],[-1,-3],[-1,-7],[-1,-3],[79,-14],[-44,-19],[-6,2],[-10,7],[-6,-2],[7,-11],[10,-3],[44,6],[5,-2],[16,-12],[-7,-12],[-100,-9],[16,-11],[5,-8],[-2,-1],[-4,-3],[-2,-1],[15,-12],[49,-18],[-14,-16],[-65,4],[60,-23],[10,-9],[6,-10],[-14,-6],[-43,4],[74,-19],[57,4],[17,-15],[-62,-16],[-109,20],[-110,20],[7,-12],[10,-7],[19,-9],[7,-6],[14,-16],[7,-4],[70,-14],[3,1],[-9,-5],[-53,-1],[-10,-6],[-1,-14],[-15,-12],[12,-7],[14,0],[27,10],[108,11],[51,-17],[-23,-18],[-8,-4],[-33,-3],[12,-7],[-9,-12],[11,-7],[11,3],[24,11],[121,14],[19,-16],[-7,-15],[-7,-8],[-128,-35],[81,-6],[81,-7],[-6,-4],[-18,-4],[16,-12],[120,-8],[-11,-6],[-12,-3],[19,-8],[69,-12],[69,-13],[0,-3],[-1,-7],[0,-3],[15,-5],[-23,-4],[6,-3],[11,-9],[19,-1],[12,-3],[-64,-26],[23,-6],[-33,-9],[-32,-1],[9,-8],[8,-5],[8,-2],[86,8],[36,-7],[-1,2],[-1,6],[-1,2],[10,11],[14,5],[14,-2],[15,-13],[18,-5],[13,-8],[12,-13],[-17,-8],[-17,-4],[-70,4],[-8,-2],[-24,-13],[14,-6],[51,5],[15,-3],[14,-9],[24,-4],[-9,-6],[-10,-1],[-18,2],[47,-30],[49,-14],[-6,-3],[-6,-6],[109,-30],[-9,-6],[-28,-2],[21,-11],[66,-4],[-10,-8],[-33,-3],[81,-26],[-9,-15],[-12,-9],[-127,-16],[-127,-16],[-127,-16],[-127,-17],[-127,-16],[-127,-16],[-127,-16],[14,-17],[15,-14],[16,-10],[16,-6],[110,1],[110,1],[110,1],[110,1],[16,9],[8,2],[67,-6],[46,-26],[41,-8],[4,1],[7,12],[6,4],[82,-18],[-10,20],[-24,17],[-42,20],[32,14],[129,17],[129,17],[129,17],[16,-10],[42,-14],[96,-8],[34,-24],[16,-19],[8,-6],[34,-10],[-6,-9],[-17,-4],[-4,-6],[-6,-19],[-13,-10],[-14,-3],[-11,0],[19,-16],[102,-14],[102,-14],[22,7],[11,-1],[84,-35],[-20,-23],[-7,-5],[4,-1],[5,-3],[9,-9],[6,-4],[6,-2],[11,-1],[91,15],[111,-35],[10,-7],[2,-9],[-5,-8],[-37,-23],[-9,-2],[67,-15],[-11,-12],[-6,-4],[-79,-2],[13,-8],[97,-7],[0,-10],[-2,-7],[-3,-6],[-4,-4],[31,-8],[22,-11],[11,-2],[23,4],[42,18],[43,32],[21,6],[131,-23],[9,-4],[-2,-1],[-3,-4],[-3,-5],[-1,-4],[3,-15],[12,-10],[35,-12],[9,-9],[18,-23],[-2,-1],[-10,-13],[-8,-8],[-9,-4],[-96,2],[-95,2],[29,-23],[98,-7],[-9,-8],[-24,-11],[-73,10],[-74,10],[-6,-2],[-18,-9],[-14,-2],[-71,19],[-71,18],[-66,-4],[7,-11],[9,-5],[136,-24],[135,-24],[-22,-13],[9,-13],[13,-5],[36,-5],[34,9],[15,-7],[5,0],[32,7],[14,-3],[12,-6],[14,-13],[4,-3],[8,-1],[101,18],[100,17],[4,-1],[2,-5],[1,-5],[2,-5],[3,-4],[-4,-8],[-9,-14],[-4,-8],[9,-7],[19,-8],[21,-2],[5,2],[5,6],[3,7],[3,4],[4,2],[4,0],[-12,10],[4,3],[5,12],[3,2],[132,-21],[-12,-5],[2,-5],[4,-3],[3,-2],[4,1],[-2,-3],[-2,-6],[-2,-3],[12,-9],[26,-12],[50,-4],[3,1],[2,4],[5,10],[3,2],[79,6],[3,2],[1,6],[0,5],[2,2],[16,2],[106,-13],[18,-11],[35,-4],[26,-11],[21,-3],[6,-3],[-21,-11],[-21,-6],[-69,-2],[-70,-2],[6,-4],[7,-2],[14,-1],[-12,-9],[7,-4],[91,8],[103,-18],[8,-4],[16,-11],[48,-5],[-6,-8],[-7,-4],[-13,-3],[50,-8],[-9,-7],[-9,-5],[-19,-5],[24,-18],[27,0],[75,24],[126,5],[114,-26],[24,-12],[-1,-2],[-1,-7],[-1,-3],[29,-5],[58,7],[28,-8],[-11,-17],[-109,-38],[33,-13],[118,2],[10,7],[4,1],[8,-2],[4,-2],[7,-7],[3,-1],[94,10],[93,10],[94,10],[41,-23],[89,-20],[-18,-15],[-60,-17],[8,0],[22,-14],[9,-2],[104,13],[129,-14],[129,-14],[129,-14],[129,-15],[23,-9],[-16,-4],[15,-7],[72,-7],[72,-7],[7,-4],[12,-12],[5,-1],[52,16],[34,-2],[-34,-20],[21,-14],[24,-3],[59,7],[25,-7],[135,-8],[110,-43],[10,-9],[-26,-11],[-26,-5],[27,-12],[-99915,-12]],[[96572,4202],[0,-1],[0,-1],[1,-1],[-24,-33],[-23,-23],[-25,-14],[-32,-2],[-96,18],[-12,-3],[-48,-29],[-115,-20],[-34,7],[-15,7],[-12,11],[-17,43],[-14,51],[17,12],[13,4],[11,-5],[9,-13],[40,0],[95,-29],[34,-23],[6,-6],[76,33],[78,57],[17,28],[13,9],[15,2],[15,-6],[11,-16],[1,-15],[4,-16],[11,-26]],[[95447,6146],[11,-2],[6,-7],[4,-9],[2,-11],[-10,-13],[-9,1],[-7,10],[-2,14],[3,6],[2,3],[1,3],[-1,5]],[[95500,6237],[59,52],[72,31],[8,-2],[-3,-3],[-8,-8],[-3,-4],[-2,-7],[-2,-7],[-2,-6],[2,-4],[0,-4],[1,-3],[-43,3],[-14,-6],[6,-7],[0,-13],[-4,-11],[-4,-3],[10,-7],[9,-8],[2,-10],[-8,-13],[-10,-4],[-32,-5],[17,-9],[14,-11],[-16,-20],[2,0],[2,-1],[1,-1],[2,-1],[-7,-9],[-5,-3],[-3,0],[-2,2],[0,3],[0,4],[0,3],[-1,7],[-1,2],[-2,2],[-10,4],[-7,1],[-2,-3],[0,-2],[2,-4],[-9,0],[-9,3],[-9,9],[-3,2],[1,1],[2,2],[1,2],[1,3],[-8,2],[-3,2],[-3,4],[-1,4],[-2,11],[-1,4],[-6,13],[-1,2],[8,6],[27,9],[-3,6]],[[95371,8793],[3,4],[13,13],[16,4],[17,-4],[14,-11],[-14,-8],[-47,-10],[-10,5],[3,1],[2,2],[2,2],[1,2]],[[95788,10590],[-1,-14],[6,-7],[8,-7],[7,-10],[4,-16],[-3,-14],[-7,-13],[-12,-14],[2,-2],[1,-2],[2,-2],[3,-3],[-16,-21],[-16,-12],[-16,2],[-13,17],[0,9],[-1,7],[-3,8],[-3,6],[8,9],[6,15],[4,18],[0,19],[-2,8],[-5,17],[-3,6],[0,3],[1,4],[1,3],[1,2],[-4,20],[0,11],[5,2],[10,-7],[31,-34],[5,-8]],[[95358,10887],[1,-28],[-13,5],[-16,20],[-10,18],[-20,60],[0,1],[0,1],[-1,1],[10,11],[15,-1],[15,-8],[10,-8],[1,-9],[1,-5],[0,-5],[-3,-9],[10,-7],[6,-2],[-1,-1],[1,0],[-1,-1],[0,-1],[1,0],[-8,-8],[5,-13],[2,-4],[0,-1],[1,0],[-5,-4],[-1,-2]],[[37485,14520],[-7,10],[-2,1],[3,8],[1,7],[1,17],[1,-3],[9,-12],[1,-3],[0,-6],[0,-6],[2,-5],[1,-2],[3,-3],[2,-1],[-3,-5],[-4,-1],[-5,2],[-3,2]],[[33531,2968],[2,-3],[-6,-2],[-5,1],[-9,7],[-8,2],[-55,-6],[-4,-1],[-2,-2],[-1,-4],[-2,-6],[-2,-7],[-1,-5],[0,-3],[2,-3],[4,0],[2,-1],[2,-3],[2,-6],[1,-3],[-6,-2],[-11,3],[-6,-5],[-3,-6],[-5,-12],[-4,-4],[-5,-1],[-5,0],[-6,-2],[-4,-10],[0,-2],[0,-5],[-1,-2],[0,-2],[-2,-3],[0,-2],[0,-11],[4,-6],[11,-4],[-12,-3],[-4,-3],[-1,-3],[-1,-2],[1,-9],[-1,-12],[-4,-15],[-5,-13],[-5,-7],[10,-3],[35,10],[4,3],[3,3],[2,5],[-2,4],[-2,3],[5,4],[6,1],[11,-1],[3,-2],[6,-5],[3,-2],[2,0],[4,3],[4,0],[11,-1],[-2,-3],[-4,-7],[-4,-8],[0,-5],[-17,-7],[-5,1],[-1,2],[-1,4],[-1,1],[-2,0],[-3,0],[-3,-1],[-2,-2],[-3,-8],[-2,-2],[-26,-16],[-26,-4],[-4,-2],[-3,-5],[-2,-8],[-5,-22],[25,-6],[22,9],[7,0],[7,-3],[-5,-11],[-2,-3],[-2,-2],[-7,-4],[-9,-9],[-8,-11],[-7,-15],[-3,-4],[-75,-50],[-75,-51],[-81,-26],[-130,14],[-130,14],[-130,14],[-130,14],[-121,53],[-7,10],[-1,13],[2,6],[3,5],[1,6],[-2,7],[-4,5],[-14,8],[-4,4],[-1,3],[0,13],[-1,9],[-3,6],[-4,5],[-16,9],[-90,-4],[-90,-4],[-4,-3],[-3,-3],[-6,-9],[-3,-5],[-4,-2],[-4,-2],[-70,-5],[-10,-6],[2,-1],[2,-2],[1,-2],[1,-3],[-9,-11],[-2,-7],[3,-11],[-1,-4],[-12,-7],[-18,-3],[-134,40],[-135,40],[-134,40],[-134,40],[-134,40],[-14,11],[-2,3],[-3,6],[-2,13],[-2,6],[-2,2],[-2,2],[-1,3],[-1,4],[2,12],[8,11],[53,37],[68,5],[15,4],[3,0],[-1,7],[4,3],[5,0],[8,-1],[4,-3],[4,-4],[4,-6],[-1,-5],[-4,-6],[-7,-8],[1,-3],[5,-10],[-7,-13],[-3,-11],[-1,-4],[7,-14],[10,-8],[69,-22],[129,1],[128,2],[129,2],[129,2],[128,1],[129,2],[129,2],[128,2],[129,1],[73,29],[73,28],[8,10],[3,2],[-73,1],[-19,5],[-5,4],[-3,3],[-3,8],[-2,4],[-4,4],[-23,14],[-1,3],[0,3],[1,2],[2,2],[1,3],[0,8],[-5,5],[-11,7],[-2,4],[-4,11],[-2,4],[-4,5],[-13,10],[-3,5],[0,4],[3,3],[5,2],[8,2],[25,1],[-3,1],[-8,12],[114,1],[6,3],[2,4],[6,10],[1,4],[-3,3],[-18,17],[-44,19],[-13,11],[-2,1],[8,4],[8,3],[96,4],[7,25],[19,15],[132,45],[132,44],[10,-2],[-1,-6],[-3,-6],[-3,-5],[-3,-3],[-2,-1],[-5,0],[-2,0],[-12,-6],[-21,0],[-72,-19],[23,-12],[81,-3],[81,-4],[6,-3],[-3,-8],[-4,-7],[-4,-6],[-4,-4],[4,-4],[6,-2],[5,0],[13,5],[9,-5],[17,-14],[-35,10],[-14,0],[-6,-2],[-5,-5],[-3,-8],[3,-10],[-1,-1],[-1,-3],[-1,-1],[6,-11],[10,-2],[11,3],[8,5],[3,4],[5,1],[15,-1],[6,-3],[8,-9],[-26,0],[-4,-4],[2,-5],[2,-3],[5,-4],[2,-3],[3,-8],[2,-3],[-9,-3],[-3,1],[-3,2],[-8,10],[-4,2],[-5,1],[-15,-5],[-2,-4],[0,-7],[-3,-4],[2,-6],[8,-11],[1,-3],[9,-12],[3,-6],[1,-7],[-2,-8],[-4,-3],[-38,-7],[-7,-5],[11,-15],[3,-2],[3,-2],[105,2],[24,-10],[4,-4],[-3,-7],[-5,-5],[-9,-8],[32,5],[5,0],[4,-3],[0,-1],[0,-4],[1,-2],[1,0],[11,-1],[0,-3],[-1,-2],[-1,-2],[-1,-2],[3,-9]],[[31625,3313],[81,15],[11,-3],[8,-10],[-7,-2],[-34,-19],[-8,0],[-7,3],[-1,0],[-1,4],[-1,1],[-2,0],[-69,-16],[-111,8],[-6,-2],[-6,-3],[15,-13],[17,-7],[87,-12],[44,-26],[27,-5],[90,13],[11,-4],[14,-10],[8,-4],[5,3],[-1,-3],[-6,-7],[5,-2],[3,-3],[2,-3],[-6,-3],[-84,-10],[-8,-5],[-1,0],[7,-6],[96,-20],[4,-2],[3,-4],[1,-7],[0,-6],[-1,-5],[1,-6],[2,-4],[4,-3],[8,-4],[-4,0],[-13,-7],[-60,-16],[-4,-3],[-3,-4],[-7,-9],[-5,-6],[-119,-35],[-24,4],[-23,12],[2,5],[1,1],[-1,5],[-2,2],[-3,3],[-3,2],[17,8],[5,0],[-2,9],[-4,8],[-5,7],[-5,4],[-7,5],[-84,14],[-13,10],[-57,-1],[-10,5],[-5,9],[7,13],[43,32],[3,4],[5,11],[2,3],[-17,-4],[-17,3],[-105,46],[-105,46],[-20,26],[-4,3],[-8,1],[-8,5],[-2,12],[4,7],[6,5],[27,7],[8,-1],[7,-4],[-1,-1],[-7,-9],[18,4],[15,-4],[12,2],[20,-11],[73,0],[74,0],[2,1],[-4,-4],[-14,-7],[25,-1],[4,-2],[11,-7],[23,-10],[83,-3],[84,-3]],[[41071,3293],[-7,-5],[-91,-2],[-29,7],[20,4],[12,6],[-3,2],[-7,0],[-10,8],[-2,0],[7,3],[14,-2],[7,1],[4,3],[0,3],[0,4],[1,8],[1,2],[3,5],[1,2],[-1,7],[-2,3],[-2,3],[-3,4],[9,1],[18,10],[18,6],[20,1],[80,-26],[6,-6],[-3,-15],[-11,-7],[-63,-6],[-4,-4],[-1,-9],[2,-8],[5,-4],[11,1]],[[31046,3515],[26,11],[5,4],[8,11],[4,5],[17,5],[112,8],[77,-14],[77,-15],[3,-2],[-6,-11],[-7,-6],[-28,-15],[-5,0],[-2,1],[-8,5],[-6,0],[-17,-10],[-49,-43],[3,-4],[5,-3],[39,-7],[8,-3],[6,-7],[-1,-2],[-4,-5],[4,-3],[14,0],[-4,-4],[-20,-7],[-13,-10],[-13,-6],[-12,-3],[-129,10],[-128,11],[-17,14],[-27,2],[-6,4],[3,7],[7,6],[9,6],[137,23],[138,24],[12,10],[-9,4],[-48,-1],[-6,2],[-2,2],[-2,3],[0,3],[2,4],[-2,-1],[-25,-5],[-14,5],[-116,-27],[-45,0],[-4,2],[8,7],[51,15]],[[31191,3604],[3,1],[27,-1],[-80,-14],[-81,-14],[-12,9],[53,20],[87,9],[9,-3],[-6,-7]],[[40578,3500],[-19,-22],[-24,-7],[-122,6],[-123,6],[-123,6],[-123,7],[-123,6],[-123,6],[-33,23],[-26,46],[15,-6],[45,-43],[31,-4],[6,-2],[-4,9],[-5,9],[-6,8],[-5,5],[114,16],[113,16],[16,9],[28,27],[16,8],[35,2],[137,-35],[137,-35],[137,-35],[29,-26]],[[29003,3828],[23,14],[16,3],[15,-7],[-1,0],[0,-1],[0,-1],[1,0],[-14,-10],[-6,-6],[-2,-8],[-7,-3],[-5,-4],[-2,-5],[-1,-7],[2,-4],[9,-10],[2,-7],[-3,-6],[-6,-2],[-11,1],[-14,6],[-7,5],[-6,8],[-3,13],[5,13],[8,11],[7,7]],[[31462,4015],[-9,-5],[-30,-5],[-50,-21],[1,-2],[8,-10],[-9,-8],[-29,-15],[-29,-30],[-10,-8],[-11,-4],[-4,-3],[-4,-4],[-5,-12],[-3,-4],[-108,-65],[-107,-64],[-108,-64],[-107,-64],[-5,-7],[0,-2],[1,-5],[0,-3],[-4,-7],[-7,-5],[-82,-42],[-3,-4],[-2,-4],[-3,-9],[-2,-4],[-8,-11],[-29,-16],[-37,-45],[-2,-3],[-2,-7],[-2,-3],[-3,-4],[-10,-5],[5,-3],[12,-1],[22,4],[6,-2],[-77,-16],[-11,-10],[6,-6],[36,-11],[6,-3],[17,-16],[7,-4],[19,-4],[-55,-5],[-4,-2],[-3,-4],[-3,-4],[-2,-5],[24,-22],[-96,-27],[-97,-28],[-102,9],[-102,8],[-102,9],[-32,18],[-31,25],[-30,33],[-7,14],[-2,7],[-1,6],[0,15],[3,15],[5,14],[5,12],[4,35],[18,38],[25,36],[57,58],[111,64],[112,64],[50,2],[13,6],[25,19],[123,24],[38,28],[24,4],[9,4],[29,22],[6,6],[4,3],[118,40],[119,39],[118,40],[119,39],[29,22],[13,7],[81,19],[82,19],[72,-8],[19,-9],[16,-16],[-6,-10],[-9,-5],[-49,-15],[-10,-9],[11,-5],[11,-2],[4,1],[4,1],[4,1],[4,-4]],[[35411,2974],[34,9],[127,77],[127,76],[40,36],[77,39],[40,40],[104,56],[39,40],[14,9],[19,6],[6,5],[2,8],[4,17],[4,8],[-5,9],[-3,2],[1,3],[0,2],[0,3],[1,3],[-9,10],[-12,7],[-8,10],[5,19],[-15,21],[-20,11],[-70,18],[-8,-2],[25,25],[30,48],[12,14],[4,5],[1,8],[-3,12],[3,10],[7,34],[1,10],[-6,12],[-18,6],[-6,9],[12,8],[38,9],[13,10],[12,13],[11,16],[10,19],[-30,-4],[-16,4],[-14,12],[45,53],[-4,1],[-7,-1],[-4,2],[-11,14],[-1,3],[7,4],[15,3],[6,4],[4,9],[5,21],[3,10],[5,7],[41,35],[4,6],[7,15],[4,6],[9,9],[21,12],[86,74],[85,75],[8,13],[1,4],[0,12],[3,7],[4,5],[29,22],[4,9],[-10,6],[8,10],[10,6],[129,40],[128,40],[129,40],[128,40],[120,-9],[119,-9],[119,-9],[11,-7],[128,-42],[128,-42],[127,-42],[97,-61],[97,-61],[14,-15],[10,-23],[4,-33],[-2,-16],[-4,-12],[-12,-19],[-5,-10],[-8,-24],[-20,-47],[-5,-7],[-12,-4],[-111,-12],[-110,-11],[-111,-12],[-40,-11],[-14,-8],[35,-25],[-40,-30],[20,-14],[22,-5],[137,4],[137,3],[137,4],[7,-5],[44,-43],[15,-19],[11,-25],[5,-19],[4,-30],[0,-28],[-7,-15],[14,6],[6,1],[7,-1],[4,-4],[10,-17],[30,-13],[14,-13],[4,-1],[-15,-4],[-45,-30],[11,-17],[44,-28],[13,-11],[10,-13],[0,-4],[1,-5],[2,-6],[1,-5],[4,-6],[14,-12],[5,-6],[3,-6],[2,-7],[2,-8],[1,-8],[1,-8],[1,-17],[-7,-115],[-6,-42],[-9,-38],[-16,-35],[-18,-25],[-19,-16],[-21,-5],[-87,14],[-73,-19],[1,0],[1,-1],[-1,0],[-1,0],[106,-58],[11,-8],[4,-13],[-8,-20],[-22,-21],[-133,-22],[-132,-22],[-132,-22],[-132,-22],[-133,-23],[-132,-22],[-132,-22],[-132,-22],[-132,-22],[-133,-22],[-132,-22],[-132,-22],[-132,-23],[-7,-5],[-4,-7],[0,-9],[2,-11],[3,-1],[11,-12],[1,-3],[-28,-14],[-135,-6],[-134,-5],[-135,-6],[-135,-6],[-135,-5],[-134,-6],[-135,-6],[-135,-5],[-134,-6],[-27,13],[-9,10],[-16,33],[-4,6],[-10,12],[-3,7],[-1,14],[0,16],[2,17],[3,13],[3,9],[4,8],[2,8],[-4,12],[29,24],[15,9],[15,-5],[5,-9],[3,-10],[4,-4],[7,6],[4,9],[5,20],[3,10],[9,13],[64,65],[56,76],[46,23],[-2,7],[-2,5],[-2,4],[-4,3],[14,32],[18,0],[36,-32],[17,-9],[18,-3],[55,3],[54,19],[25,22],[54,31],[17,1],[13,-5],[6,-10],[-2,-14],[-11,-16],[-41,-38],[-13,-3],[1,-1]],[[36317,4352],[-37,-4],[-7,1],[-8,8],[-2,1],[6,6],[26,14],[97,27],[39,23],[9,4],[9,-1],[9,-5],[-6,-1],[-132,-69],[-3,-4]],[[44342,6394],[-1,-5],[-1,-5],[-1,-4],[-7,-16],[-3,-5],[-4,-3],[-14,-6],[-14,-2],[-77,16],[-10,8],[-6,14],[-1,4],[1,8],[0,5],[-2,5],[-5,16],[-20,81],[-6,16],[-8,14],[-14,14],[-17,12],[-49,22],[-115,10],[-85,-15],[-6,5],[41,38],[77,11],[78,12],[28,13],[25,18],[21,22],[17,25],[-1,27],[20,44],[4,28],[10,15],[10,11],[11,8],[46,16],[2,2],[1,4],[1,5],[-1,5],[-1,3],[8,-4],[8,-7],[7,-9],[7,-11],[5,-12],[2,-10],[-1,-11],[-4,-12],[-3,-14],[2,-12],[9,-20],[-13,-15],[-6,-10],[-5,-11],[0,-6],[1,-7],[1,-7],[-7,-17],[0,-10],[2,-10],[1,-12],[-2,-12],[-5,-5],[-5,-5],[-4,-7],[-1,-5],[0,-10],[0,-5],[-2,-8],[-3,-8],[-3,-7],[-3,-6],[8,-15],[15,-38],[8,-17],[43,-52],[7,-14],[6,-17],[3,-19],[0,-19]],[[29493,7009],[6,8],[6,8],[7,2],[6,-8],[-3,-5],[-4,-5],[-4,-4],[-4,-2],[-2,0],[-7,3],[-1,3]],[[30056,7108],[-16,-15],[-18,-8],[-19,0],[-17,9],[-13,17],[4,12],[14,6],[14,2],[26,-5],[13,-7],[12,-11]],[[29476,7167],[52,12],[13,-1],[14,-5],[17,-12],[5,0],[-42,-44],[-5,-7],[-4,-12],[1,-1],[2,-6],[2,-8],[0,-7],[-2,-5],[-4,-6],[-14,-13],[-22,-12],[-15,-18],[-5,-5],[-6,0],[-7,2],[-6,1],[-6,-7],[0,-11],[-4,-5],[-6,0],[-5,3],[-2,6],[-1,7],[-1,8],[2,8],[-23,17],[-4,10],[0,4],[1,3],[1,4],[0,6],[6,4],[35,12],[-4,2],[-8,13],[-5,4],[5,1],[16,0],[22,7],[6,6],[4,4],[2,4],[0,8],[-2,4],[-3,3],[-4,5],[4,17]],[[20920,7181],[14,-12],[13,-8],[10,-9],[6,-17],[-27,-22],[-33,-4],[-31,7],[-24,12],[-15,13],[-10,14],[-17,32],[-6,14],[-6,25],[-4,9],[26,30],[13,8],[16,-1],[6,-5],[15,-23],[54,-63]],[[25030,7306],[3,7],[3,5],[5,4],[6,2],[12,3],[60,-8],[46,-19],[21,-19],[-8,-11],[-33,-18],[-9,-12],[-13,-32],[-8,-12],[-13,-8],[-16,-4],[-30,-1],[-55,15],[-38,-16],[-24,6],[-21,21],[-12,36],[15,28],[19,-2],[34,-25],[12,0],[12,6],[12,11],[9,16],[11,27]],[[29209,7317],[95,-9],[54,-23],[25,-42],[-5,-17],[-41,-49],[-3,-9],[-3,-20],[-2,-9],[-5,-9],[-19,-15],[-2,-26],[-52,-15],[-17,-16],[11,-3],[35,0],[10,-5],[6,-8],[1,-14],[-6,-19],[14,-4],[7,-5],[5,-8],[5,-11],[22,-16],[-6,-11],[-6,-27],[-4,-14],[-6,-11],[-7,-9],[-15,-14],[-21,-5],[-118,53],[-119,53],[-119,53],[-43,37],[-6,13],[-17,49],[-3,12],[6,21],[8,14],[10,9],[50,22],[31,-6],[62,-33],[30,4],[-13,19],[8,12],[17,5],[77,-6],[16,8],[-1,1],[0,1],[1,0],[-48,20],[-55,2],[-26,7],[-56,40],[-16,15],[-4,2],[22,9],[34,5],[5,-1],[4,6],[26,20],[12,3],[30,2],[97,-27],[28,-1]],[[23958,7304],[0,-10],[-6,-8],[-12,-4],[-13,-1],[-38,5],[-20,10],[-16,17],[17,28],[23,4],[46,-22],[13,-10],[4,-5],[2,-4]],[[22741,7420],[25,18],[28,3],[53,-15],[-23,-20],[-30,-5],[-30,6],[-23,13]],[[24749,7345],[-4,-8],[-4,-9],[7,6],[13,1],[20,-3],[8,-6],[5,-8],[3,-12],[2,-16],[-4,-20],[-7,-20],[-16,-33],[-27,-39],[-30,-29],[-50,-26],[-51,-11],[-33,9],[-5,3],[11,40],[2,24],[1,7],[-1,6],[4,17],[2,35],[2,14],[9,5],[9,8],[14,19],[-54,67],[-8,16],[-17,52],[-13,22],[-6,13],[83,35],[96,5],[36,-12],[14,-10],[13,-14],[10,-20],[6,-36],[-8,-28],[-32,-44]],[[24067,7487],[9,11],[14,9],[16,2],[16,-3],[14,-7],[-6,-20],[-8,-13],[-11,-7],[-10,-5],[-11,-1],[-11,4],[-11,7],[-10,9],[9,14]],[[33118,7497],[-7,-8],[-8,-5],[-33,-8],[-6,4],[4,12],[10,15],[2,3],[19,-3],[19,-10]],[[23752,7521],[1,-7],[0,-3],[1,-4],[21,-30],[3,-6],[-30,-15],[-96,-14],[-97,-13],[-20,15],[1,10],[7,12],[13,16],[9,4],[99,28],[63,39],[9,1],[8,-2],[5,-6],[2,-7],[1,-18]],[[45503,7481],[16,-25],[6,-16],[2,-17],[-27,-13],[-27,1],[-24,11],[-17,15],[-12,25],[-9,31],[1,30],[12,23],[17,14],[5,2],[8,-1],[7,-4],[7,-5],[6,-9],[29,-62]],[[30402,7699],[29,-4],[8,-6],[-33,-24],[-18,-1],[-14,18],[12,11],[7,4],[9,2]],[[33261,7709],[6,16],[14,1],[15,-10],[7,-18],[-5,-17],[-15,-2],[-16,10],[-6,20]],[[46483,7795],[26,-25],[12,-16],[9,-23],[-21,-17],[-24,-2],[-25,9],[-38,24],[-12,13],[-8,17],[-5,22],[20,32],[24,1],[24,-16],[18,-19]],[[23472,7643],[20,-11],[-3,-12],[-12,-14],[-9,-14],[-67,-21],[-74,1],[-21,-15],[13,3],[17,-8],[13,-19],[0,-26],[-13,-17],[-18,-5],[-76,6],[-77,7],[-14,9],[-9,11],[-7,6],[-7,-2],[-10,-12],[-4,-15],[-19,-7],[-22,-1],[-53,11],[-12,8],[-6,9],[-6,8],[-5,5],[-8,2],[-94,-30],[-136,-4],[-137,-5],[-25,18],[13,8],[9,11],[16,27],[-120,-10],[-119,-10],[-20,22],[18,20],[42,11],[18,20],[-80,0],[-81,1],[-35,24],[-25,7],[-44,24],[-18,6],[-34,-9],[-14,1],[-10,15],[-111,13],[-111,14],[-110,14],[-22,14],[-10,2],[-49,-18],[-18,0],[-60,17],[-31,22],[-8,37],[5,17],[8,11],[52,26],[115,14],[114,14],[115,14],[115,14],[54,31],[30,3],[29,-13],[23,-30],[-13,-23],[-17,-6],[-74,-7],[-20,-8],[-17,-18],[119,15],[22,-3],[22,-11],[-10,-20],[2,-9],[10,-2],[31,5],[8,5],[8,10],[16,36],[10,10],[14,4],[13,0],[27,-7],[55,-32],[45,-44],[12,-7],[49,-5],[24,-8],[14,-1],[14,5],[-31,47],[-11,10],[-48,19],[-40,29],[-14,3],[8,16],[10,11],[22,10],[11,9],[25,38],[7,5],[8,3],[82,2],[76,-30],[76,-31],[-16,-33],[-20,-18],[-49,-17],[7,-20],[3,-5],[3,-5],[4,-11],[-4,-5],[-6,-11],[-5,-5],[-7,-29],[-3,-5],[-9,-11],[15,0],[7,4],[30,33],[9,6],[17,3],[21,-4],[40,-19],[-5,-3],[-23,-25],[35,1],[17,12],[3,29],[-5,13],[-8,4],[-8,2],[-7,7],[-3,17],[3,24],[4,20],[3,8],[-17,13],[13,9],[29,7],[38,-3],[31,-12],[5,1],[-42,-25],[60,-22],[12,4],[-7,-20],[-6,-12],[-8,-8],[-42,-22],[-7,-7],[8,-6],[6,-8],[10,-23],[4,-6],[12,-13],[22,-10],[24,18],[23,34],[17,34],[7,18],[6,20],[9,42],[10,30],[16,18],[19,7],[18,1],[9,-3],[25,-13],[104,15],[22,-5],[20,-10],[40,-32],[-9,-33],[-5,-15],[-7,-11],[-8,-5],[-9,-1],[-61,12],[-24,-6],[28,-24],[7,-1],[-16,-13],[-16,-8],[-34,-9],[-106,-64],[24,-20],[26,-10],[27,1],[79,42],[135,29],[60,52],[22,5],[18,-17],[-27,-10],[-8,-6],[1,0],[0,-1],[59,-28],[-10,-15],[-14,-10],[-14,-7],[-82,-8],[-82,-8],[-29,-13],[-12,-9],[-10,-11],[1,0],[0,-1],[17,-3],[86,23],[18,-1],[15,-11],[16,-24],[7,-5],[8,-3],[16,-1],[55,12],[15,-2]],[[33186,8392],[-25,-7],[-38,8],[-37,18],[-19,25],[12,21],[28,15],[34,4],[29,-9],[13,-17],[7,-23],[0,-21],[-4,-14]],[[29191,8409],[-113,-23],[-113,-23],[-113,-22],[-59,9],[-17,9],[-8,7],[-5,6],[-4,9],[-18,57],[-3,5],[20,27],[24,19],[76,30],[127,18],[126,18],[19,12],[15,17],[10,21],[2,13],[0,28],[1,9],[8,9],[13,4],[14,1],[13,-5],[10,-9],[41,-56],[22,-55],[8,1],[21,18],[6,7],[1,56],[-5,37],[5,10],[21,1],[20,-7],[19,-12],[21,-21],[5,-4],[15,-5],[-13,37],[-3,6],[8,12],[8,7],[9,3],[9,0],[42,-13],[74,-59],[20,-28],[-3,-19],[-17,-15],[-109,-60],[-108,-59],[-71,-14],[-71,-14]],[[33212,8661],[-3,-15],[-6,-10],[-21,-19],[-48,-23],[-27,-3],[-12,4],[-8,5],[-6,8],[-21,39],[0,6],[2,8],[2,7],[1,1],[-2,8],[0,7],[1,6],[4,6],[15,10],[18,5],[74,3],[18,-6],[14,-14],[2,-5],[3,-20],[0,-8]],[[49047,8696],[-13,5],[-5,3],[-4,6],[4,20],[9,13],[19,21],[27,44],[10,10],[32,19],[43,12],[43,-1],[32,-19],[7,-18],[4,-26],[1,-29],[-2,-21],[-8,-15],[-10,-8],[-23,-7],[-83,-5],[-83,-4]],[[30080,8760],[0,2],[0,1],[0,2],[0,1],[-4,7],[-5,5],[-4,7],[-2,11],[0,4],[1,7],[0,4],[-1,4],[-1,4],[-13,20],[23,16],[14,3],[4,-19],[22,-1],[24,13],[26,6],[25,-19],[-6,-15],[-8,-17],[-10,-15],[-36,-35],[-19,-8],[-11,-1],[-11,3],[-8,10]],[[30342,8835],[1,12],[1,11],[4,9],[7,5],[6,1],[6,-1],[7,-3],[6,-5],[-3,-4],[-2,-4],[-1,-5],[0,-6],[1,-4],[3,-5],[0,-3],[-3,-7],[-5,-5],[-10,-4],[-10,0],[-10,4],[2,14]],[[33026,9036],[-20,-10],[-19,-4],[-12,2],[-11,5],[-11,8],[-11,12],[2,21],[2,7],[2,7],[4,6],[3,4],[4,4],[10,5],[12,-1],[21,-9],[10,-7],[5,-5],[4,-7],[2,-6],[1,-3],[0,-4],[0,-3],[-1,-4],[0,-3],[0,-4],[3,-11]],[[29032,8935],[-58,13],[-26,19],[-13,38],[8,13],[3,20],[4,22],[15,19],[34,16],[103,13],[-2,3],[-9,22],[-4,4],[-4,2],[-25,-1],[-8,3],[-5,11],[132,30],[49,-11],[19,-16],[0,-24],[47,-30],[3,-4],[4,-5],[5,-12],[3,-6],[5,-5],[14,-10],[3,-4],[2,-3],[1,-6],[2,-9],[-3,0],[-10,-7],[-36,-7],[-10,1],[-5,0],[-4,-5],[-2,-8],[0,-8],[2,-8],[3,-8],[3,-5],[11,-11],[-2,-10],[-4,-8],[-5,-6],[-5,-5],[-20,-11],[-13,-14],[-5,-4],[-27,-7],[-85,15],[-85,14]],[[29765,9260],[-9,10],[-22,17],[-7,16],[4,16],[11,15],[26,21],[24,7],[24,-2],[73,-29],[25,-22],[4,-11],[6,-10],[10,-13],[12,-8],[3,-4],[2,-5],[2,-10],[2,-5],[3,-3],[3,-3],[36,-15],[15,-12],[2,-7],[-19,-17],[2,-3],[11,-21],[-9,0],[-9,6],[-21,24],[-9,7],[-4,2],[-3,1],[-3,-1],[-3,-1],[-2,-2],[-2,-6],[1,-3],[3,-3],[1,-5],[0,-6],[-2,-3],[-3,0],[-79,25],[-79,25],[-7,6],[-8,12],[-3,4],[-1,3],[0,3],[-1,10]],[[32845,9338],[3,-6],[2,-7],[1,-6],[0,-4],[-4,-5],[-5,-2],[-10,-1],[2,-12],[-8,-2],[-17,3],[-9,-8],[5,-19],[4,-10],[3,-4],[-3,-3],[-7,-11],[-7,-7],[-2,-5],[5,-12],[2,-2],[-6,-2],[-5,-4],[-2,-8],[2,-14],[-6,-6],[-9,-6],[-12,-2],[-11,2],[-9,7],[-1,5],[2,6],[1,6],[-5,12],[-13,24],[-4,13],[0,5],[1,3],[2,3],[2,3],[1,5],[-1,3],[-2,3],[-1,4],[0,5],[2,8],[0,5],[-4,11],[-19,29],[-12,26],[-44,55],[-11,28],[-8,27],[-11,24],[12,18],[20,7],[23,-1],[52,-22],[28,-24],[12,-15],[8,-18],[44,-46],[12,-6],[-4,-9],[1,-7],[2,-8],[4,-6],[9,-10],[2,-4],[3,-6]],[[30150,7458],[-132,-14],[-132,-13],[-29,21],[1,8],[1,8],[3,6],[2,7],[16,21],[-21,-1],[-11,-3],[-28,-23],[-10,-4],[-10,-1],[-22,8],[-86,72],[-11,12],[-5,13],[3,5],[17,23],[76,54],[40,13],[62,-4],[37,-11],[7,-4],[6,-8],[4,-10],[2,-4],[3,-3],[3,-3],[14,-7],[17,1],[-5,8],[-1,4],[2,6],[2,3],[4,2],[3,1],[10,1],[54,-18],[107,-10],[108,-9],[107,-10],[16,5],[7,3],[1,2],[1,3],[-1,3],[0,2],[0,3],[2,5],[4,2],[8,1],[108,44],[3,3],[6,12],[3,2],[5,2],[2,2],[-19,10],[-33,7],[-4,6],[-3,15],[-10,11],[-13,7],[-13,2],[-77,-22],[-86,-47],[-90,-18],[-51,5],[-40,26],[2,1],[7,9],[-109,36],[4,14],[8,8],[129,21],[128,21],[88,35],[8,5],[2,8],[-1,3],[-4,5],[-2,3],[-1,10],[3,7],[5,6],[4,3],[-4,6],[-19,14],[-9,13],[-6,3],[-6,-1],[-52,-21],[-14,-1],[-14,2],[-38,23],[-25,5],[-25,-4],[-85,-35],[-11,0],[-7,7],[0,3],[-1,6],[0,3],[2,2],[5,2],[2,3],[1,6],[0,7],[-2,18],[-1,2],[-1,1],[-9,-1],[-2,1],[-3,2],[-3,8],[-3,3],[-2,2],[-24,11],[-1,1],[0,3],[-2,5],[-1,2],[0,1],[-33,19],[-8,1],[-7,-5],[2,4],[2,11],[2,5],[-26,19],[1,3],[2,5],[1,3],[-25,6],[-2,-1],[-2,-3],[-1,-8],[-2,-3],[-3,-2],[-10,-5],[-5,-4],[-4,-5],[-2,-8],[2,-10],[-27,-21],[-3,-10],[-25,10],[-9,-1],[-3,-4],[-2,-8],[0,-9],[0,-8],[1,-1],[3,-4],[-2,-8],[-5,-13],[-3,-19],[0,-1],[-8,-15],[-11,-10],[-22,-11],[-24,-5],[-25,2],[-52,17],[-52,28],[-26,9],[-79,-2],[-25,-15],[105,-88],[-79,-49],[-6,-22],[-24,-15],[-31,-10],[-33,1],[-27,17],[-26,46],[-12,13],[-11,2],[-73,-20],[-44,6],[-75,42],[-75,41],[-12,13],[-8,16],[-2,23],[10,21],[15,7],[17,1],[13,5],[-3,11],[20,5],[-3,6],[-5,5],[-11,5],[2,3],[1,3],[1,1],[2,2],[-5,7],[-7,3],[-14,1],[-24,12],[-3,6],[9,15],[14,8],[37,10],[2,10],[6,10],[7,10],[6,5],[12,7],[18,5],[36,-1],[26,-15],[41,-44],[71,-24],[10,0],[18,6],[3,4],[0,9],[-5,6],[-11,8],[-17,17],[3,13],[-1,14],[-5,13],[-8,13],[7,11],[-7,14],[4,14],[15,12],[40,15],[28,0],[75,-43],[18,-19],[9,-14],[49,-34],[15,-23],[18,7],[34,35],[-18,22],[-50,25],[-21,27],[-4,13],[1,13],[4,10],[7,9],[12,7],[50,5],[90,-27],[90,-26],[31,1],[5,2],[5,14],[12,7],[105,-6],[-5,8],[-3,5],[0,6],[2,3],[4,3],[4,1],[2,0],[-39,24],[-81,18],[-80,17],[-44,29],[-20,22],[7,17],[10,8],[41,0],[16,4],[3,3],[6,10],[3,3],[8,3],[71,-7],[38,6],[98,-28],[98,-28],[40,14],[52,40],[4,5],[2,5],[5,12],[2,5],[-5,3],[-6,7],[-4,9],[2,11],[4,4],[5,0],[39,-18],[9,-1],[9,4],[18,14],[8,3],[62,-21],[24,-1],[85,32],[31,-4],[25,-21],[21,-31],[34,-62],[4,-4],[18,-5],[13,0],[2,2],[0,5],[3,0],[8,-3],[0,4],[0,13],[0,2],[2,4],[0,3],[-1,1],[-1,4],[0,1],[1,10],[3,10],[3,9],[5,4],[-8,22],[-2,13],[-1,13],[1,12],[3,9],[9,16],[-5,6],[-1,3],[6,6],[2,4],[1,5],[-2,3],[-14,9],[-5,2],[-3,-2],[-3,-3],[-10,-17],[-2,-4],[-3,-1],[-7,1],[-12,13],[-6,4],[-38,-4],[-4,1],[-12,9],[-53,13],[-83,-8],[-23,7],[-60,32],[-46,6],[-9,7],[-3,3],[-2,5],[-1,5],[-3,14],[-1,3],[-1,3],[-8,5],[4,18],[9,14],[40,39],[3,7],[2,5],[12,13],[4,2],[-6,18],[7,11],[122,40],[123,40],[11,-1],[106,-52],[27,-2],[6,4],[-3,14],[-8,10],[-15,13],[-123,66],[-33,4],[-3,4],[1,3],[1,0],[-3,19],[8,8],[9,2],[4,4],[-1,6],[-1,4],[-2,4],[-3,3],[-10,2],[-67,-19],[-19,1],[-8,5],[-23,22],[-6,3],[-7,1],[-22,-7],[-5,-5],[-1,-9],[0,-1],[2,-4],[0,-1],[-8,-3],[-33,-31],[-6,-2],[-5,5],[-5,0],[-17,-7],[-5,1],[-4,4],[-7,10],[-10,6],[-46,7],[-5,3],[-3,5],[-6,13],[-4,5],[-5,3],[-41,10],[-41,21],[-24,20],[-8,8],[-2,5],[-4,11],[-2,4],[-3,2],[-8,6],[-9,9],[-4,7],[-1,8],[1,5],[10,13],[-5,9],[4,9],[8,8],[5,10],[2,27],[2,2],[-3,4],[-5,5],[-3,4],[-2,6],[0,5],[2,3],[3,2],[-4,8],[-6,9],[-4,8],[4,7],[2,8],[8,7],[33,15],[6,3],[-3,3],[-3,3],[-2,5],[-1,6],[0,3],[3,9],[1,1],[0,14],[5,12],[13,21],[-1,3],[-1,2],[-2,1],[-1,1],[3,11],[2,4],[3,4],[3,3],[10,4],[-5,6],[-15,20],[2,4],[3,3],[3,2],[2,1],[-7,5],[-35,7],[-6,3],[-4,7],[-3,4],[-21,6],[-7,6],[-3,7],[-5,2],[-28,-1],[-5,3],[13,4],[3,6],[-4,10],[-24,27],[-4,4],[4,9],[6,22],[5,7],[-3,3],[-14,22],[-7,7],[-3,6],[1,9],[3,9],[5,7],[34,38],[9,18],[0,3],[85,28],[84,29],[109,0],[25,10],[5,11],[9,6],[76,6],[36,13],[9,1],[10,-4],[24,-30],[43,-15],[15,-16],[2,-7],[1,-7],[0,-14],[1,-9],[2,-7],[5,-13],[-10,-8],[-1,-1],[8,-28],[2,-4],[10,-9],[11,-14],[-9,-2],[-9,-5],[-4,-3],[-2,-4],[-4,-11],[12,-6],[5,-6],[3,-11],[0,-10],[-2,-1],[-4,1],[-4,-3],[0,-3],[1,-7],[0,-3],[-1,-3],[-1,-3],[-4,-4],[-4,-4],[-5,-1],[-5,1],[-4,4],[10,-20],[4,-4],[-1,-2],[-4,-12],[9,5],[9,2],[48,-9],[29,10],[8,-4],[10,-13],[39,-72],[4,-5],[3,-3],[0,-5],[0,-2],[-4,-7],[10,-19],[9,-10],[2,-3],[0,-6],[0,-5],[-1,-5],[2,-6],[3,-4],[13,-8],[27,-24],[-3,-12],[-1,-5],[1,-4],[4,-20],[0,-4],[0,-4],[-1,-2],[-2,-4],[-2,-3],[-1,-1],[3,-11],[2,-11],[-1,-9],[-3,-7],[0,-9],[5,-14],[9,-20],[4,-11],[1,-7],[-2,-8],[-4,-10],[8,-7],[3,-4],[3,-7],[2,-6],[0,-8],[1,-6],[3,-6],[20,-30],[31,-66],[86,-124],[17,-36],[6,-20],[9,-38],[5,-15],[7,-9],[16,-12],[7,-9],[2,-4],[1,-2],[1,-3],[-1,-4],[-2,-5],[-1,-3],[2,-3],[9,-4],[3,-10],[0,-23],[5,-9],[2,-1],[2,-1],[2,-1],[1,-4],[0,-3],[-2,-9],[-1,-2],[3,-3],[8,-7],[6,-13],[1,-2],[-39,-7],[-3,1],[8,-8],[30,-7],[10,-11],[3,-9],[-3,-20],[4,-52],[-1,-4],[-3,-11],[8,-24],[2,-11],[0,-3],[-2,-4],[-2,-4],[-2,-2],[3,-11],[13,-32],[-2,-16],[0,-23],[2,-38],[0,-6],[0,-5],[1,-6],[2,-8],[-9,-5],[-2,-10],[1,-13],[2,-12],[-3,-4],[-1,-4],[0,-4],[-1,-4],[5,-13],[5,-13],[4,-15],[4,-27],[3,-11],[2,-6],[8,-16],[-9,-16],[-4,-18],[-1,-21],[1,-72],[-3,-22],[-9,-15],[-16,-7],[-32,3],[-16,-4],[5,-7],[5,-11],[5,-12],[2,-12],[0,-8],[1,-4],[2,-3],[12,-12],[2,-4],[3,-7],[1,-7],[1,-8],[-1,-8],[-2,-7],[-11,-22],[-5,-20],[-1,-39],[-6,-12],[-17,-7],[-16,5],[-32,16],[-13,2],[-7,-2],[-6,-4],[-3,-7],[0,-7],[3,-6],[3,-5],[-5,-5],[-23,-12],[-17,1],[1,-4],[2,-6],[0,-4],[0,-2],[-2,-4],[0,-3],[1,-3],[2,-6],[0,-1],[-4,-8],[-5,-4],[-5,-1],[-16,2],[-37,-5],[-2,-2],[-1,-3],[-2,-5],[0,-4],[1,-4],[-1,-5],[-3,-5],[-7,-2],[-9,0],[4,-26],[6,-3],[14,-16],[-22,-24],[-118,-27],[-118,-28],[-52,3],[-74,-22],[-34,0],[-7,5],[-5,10],[-2,13],[-1,15],[-3,13],[-4,7],[-5,1],[-6,-1],[-5,-3],[-6,-6],[-3,-1],[-7,-1],[-2,-1],[-4,-6],[-1,-8],[0,-9],[-2,-8],[-6,-7],[-8,-3],[-75,6],[-74,7]],[[33085,9749],[-29,22],[-7,10],[15,14],[24,2],[25,-8],[21,-14],[13,-18],[5,-17],[-7,-12],[-19,-2],[-11,3],[-30,20]],[[31351,10117],[-8,-11],[-10,-9],[-10,0],[-5,16],[4,7],[10,1],[19,-4]],[[31377,10281],[27,8],[13,-3],[12,-11],[-6,-7],[-7,-3],[-27,4],[-6,4],[-6,8]],[[31365,10298],[-5,-10],[-7,-9],[-14,-12],[-9,-4],[-10,-1],[-8,6],[-4,4],[-1,5],[11,11],[5,9],[1,2],[-29,8],[28,12],[14,2],[10,-3],[4,-2],[14,-18]],[[31957,10400],[2,1],[2,6],[2,7],[1,5],[0,5],[-1,5],[-2,8],[12,-1],[39,-9],[-2,3],[-4,11],[8,0],[45,-11],[6,-6],[-24,-24],[-7,-5],[-9,-3],[-8,0],[-7,6],[5,7],[-8,6],[-7,3],[-8,-2],[-21,-15],[-7,-1],[-7,4]],[[31309,10359],[-13,-19],[-16,-11],[-33,-5],[-38,7],[-17,10],[-10,8],[-2,9],[2,2],[11,2],[3,3],[1,3],[1,3],[2,5],[2,3],[5,4],[3,3],[-5,1],[-5,-1],[-13,-9],[-6,-1],[-5,1],[-3,8],[3,11],[7,7],[68,39],[87,-6],[9,-6],[8,-19],[-31,-21],[-6,-19],[-4,1],[-14,-2],[8,-9],[1,-2]],[[31441,10481],[-5,-6],[-6,-5],[-7,-1],[-14,-15],[-20,-13],[-24,-6],[-21,8],[22,18],[16,7],[5,4],[4,8],[2,3],[4,2],[10,3],[11,0],[23,-7]],[[31182,10578],[4,12],[11,13],[12,6],[12,-4],[-8,-12],[-10,-13],[-11,-8],[-10,6]],[[31229,10664],[-14,-22],[-19,-19],[-19,-6],[-13,18],[30,30],[8,5],[10,3],[9,-1],[8,-8]],[[31206,10739],[2,4],[2,3],[3,2],[3,3],[3,8],[2,3],[3,2],[5,0],[5,-5],[2,-7],[2,-10],[0,-9],[0,-3],[-2,-5],[-2,-4],[-3,-3],[-5,-5],[-6,-5],[-7,-1],[-7,3],[-7,5],[3,2],[2,2],[3,3],[1,4],[1,5],[-1,4],[-2,4]],[[31283,10849],[-15,-3],[-16,2],[-31,14],[11,8],[10,27],[10,13],[-3,6],[-2,6],[-1,5],[-2,5],[10,12],[11,4],[11,-1],[27,-14],[5,-5],[1,-3],[1,-2],[1,-3],[1,-3],[1,-3],[3,-5],[1,-3],[3,-11],[2,-4],[-9,-14],[-9,-12],[-11,-9],[-10,-7]],[[30803,10420],[-7,13],[-6,9],[-3,6],[-2,8],[-2,9],[0,15],[3,16],[4,14],[11,26],[14,26],[63,71],[11,19],[1,3],[1,4],[2,13],[21,54],[92,171],[16,19],[128,97],[8,3],[8,1],[9,0],[8,-3],[22,-15],[0,-7],[0,-6],[2,-4],[3,-3],[-7,-8],[-1,-3],[-3,-7],[-1,-3],[-16,-9],[-2,-4],[0,-2],[1,-2],[2,-3],[-6,-7],[-14,-4],[-6,-7],[1,-3],[3,-8],[-18,-6],[-8,0],[-4,-2],[-3,-5],[-1,-4],[2,-7],[-1,-4],[-3,-5],[-4,-3],[-4,-4],[-1,-8],[-1,-2],[-8,-9],[-2,-5],[-1,-12],[0,-7],[3,-5],[20,-19],[5,-9],[-1,-6],[-2,-3],[-2,-3],[1,-6],[-3,-3],[-13,-4],[1,-9],[2,-5],[2,-2],[15,2],[11,-2],[11,-5],[11,-8],[4,-4],[1,-5],[0,-6],[-3,-7],[8,-5],[17,-4],[9,-4],[-2,-2],[-16,-13],[-8,-10],[-5,-2],[-9,1],[-4,-1],[-2,-1],[-1,-2],[-2,-3],[-1,-3],[0,-4],[1,-6],[-1,-3],[-3,-5],[-4,-3],[-9,-4],[-13,0],[-4,-3],[-2,-4],[0,-5],[2,-4],[0,-6],[-1,-4],[-2,-3],[-5,-3],[-29,-8],[-40,-30],[18,-9],[18,-3],[29,3],[14,-6],[5,-21],[-2,-12],[-5,-11],[-26,-36],[-9,-7],[-2,-4],[-2,-4],[-1,-5],[-1,-3],[-3,-3],[-2,1],[-21,15],[-3,5],[-3,4],[-3,4],[-5,2],[-5,-1],[-30,-16],[-6,-6],[-5,-9],[4,-5],[5,-6],[2,-9],[-1,-10],[-5,-9],[-18,-22],[-18,-32],[-4,-6],[-5,-1],[-5,2],[-14,15],[-5,3],[-5,-4],[2,-2],[5,-2],[-3,-4],[-4,-3],[-17,-9],[-40,-7],[-4,1],[-4,3],[-2,4],[-3,7],[-2,7],[1,6],[0,2],[2,1],[0,2],[0,3],[-1,2],[-2,1],[-4,2],[-11,13],[-5,2],[-8,0],[-4,2],[-3,3],[-2,3],[-2,6],[-1,2],[-7,8]],[[31344,11153],[6,7],[3,4],[1,5],[-1,3],[-5,5],[-2,3],[0,7],[2,4],[3,2],[3,0],[7,0],[11,-4],[9,-8],[1,-11],[-4,-6],[-5,-5],[-10,-4],[-10,-2],[-9,0]],[[31360,11229],[-5,6],[3,6],[5,3],[6,0],[4,0],[1,-11],[7,-3],[29,4],[11,-6],[2,-1],[-9,-8],[-10,-5],[-9,-1],[-10,1],[-19,7],[-6,8]],[[31452,11302],[-2,2],[-3,3],[-2,2],[6,11],[10,8],[27,15],[10,1],[4,0],[4,-3],[3,-4],[3,-5],[-4,-7],[-6,-9],[-7,-7],[-5,-1],[10,-13],[3,-4],[3,-14],[-6,-16],[-1,-1],[-17,-16],[-24,-32],[-25,-19],[-7,-3],[-6,1],[-1,3],[-4,6],[-2,5],[6,8],[27,28],[5,8],[1,3],[1,11],[1,11],[-1,4],[0,3],[-2,5],[-1,3],[0,4],[0,3],[2,6]],[[31738,11402],[4,-12],[-3,-1],[-18,-1],[4,9],[1,3],[0,4],[0,4],[0,3],[2,3],[2,2],[3,-3],[3,-5],[2,-6]],[[31694,11457],[2,-2],[1,-1],[0,-3],[0,-3],[-3,-12],[-4,-3],[-23,-8],[-5,1],[-5,2],[8,12],[9,10],[11,6],[9,1]],[[31856,11463],[-7,14],[-1,2],[11,1],[16,-3],[14,-8],[1,-17],[-3,-6],[-4,-3],[-5,-1],[-4,1],[-4,2],[-4,3],[-7,9],[-3,6]],[[31614,11488],[-1,1],[-1,2],[0,2],[0,3],[1,4],[5,11],[3,11],[1,2],[4,1],[12,-4],[6,0],[2,3],[10,14],[-5,4],[-4,6],[-4,8],[0,9],[1,3],[2,4],[1,2],[0,3],[-1,1],[-1,2],[1,2],[2,3],[10,3],[3,3],[7,12],[5,4],[2,2],[1,4],[1,8],[-2,5],[-2,5],[-1,5],[0,1],[4,9],[1,2],[47,20],[8,-1],[13,-10],[7,-3],[16,3],[3,2],[-3,-9],[-6,-13],[-2,-8],[0,-16],[-2,-6],[-3,-6],[0,-1],[0,-1],[4,-14],[-54,-18],[-14,-9],[20,-17],[4,-12],[1,-6],[1,-7],[-1,-6],[-3,-9],[-1,-6],[1,-5],[3,-3],[7,-3],[-5,-6],[-6,-2],[-11,0],[-49,-22],[-14,-2],[-20,7],[-3,4],[2,11],[0,4],[-1,6],[-1,1],[0,1],[-1,2]],[[31798,11696],[-6,-9],[-8,-6],[-23,-8],[-7,1],[-7,5],[-6,9],[3,9],[4,-2],[6,-4],[5,-3],[4,2],[10,8],[6,1],[14,-5],[5,2]],[[33490,11837],[-22,-7],[-37,15],[-36,27],[-18,28],[20,25],[34,-21],[59,-67]],[[32521,12048],[-1,-2],[-9,-8],[-8,-1],[-25,4],[-8,4],[-6,8],[1,4],[1,7],[1,2],[6,3],[7,1],[8,-2],[5,-4],[1,-3],[0,-6],[2,-2],[1,0],[6,4],[5,2],[4,-1],[5,-4],[4,-6]],[[32542,12089],[-15,-9],[-29,4],[-4,2],[-3,4],[10,6],[11,1],[30,-8]],[[32423,12090],[-2,-5],[-2,-20],[-4,-6],[-6,-4],[-15,-7],[-14,-12],[-6,-4],[-24,-7],[-9,0],[-6,6],[3,4],[11,8],[14,14],[13,17],[-10,7],[-6,2],[-5,-2],[20,19],[7,3],[6,-1],[12,-6],[6,1],[3,3],[26,36],[8,7],[7,3],[6,-7],[1,-6],[-1,-5],[-2,-5],[-3,-4],[-22,-19],[-6,-10]],[[32600,12138],[-4,-7],[-7,-5],[-7,-1],[-5,6],[-1,2],[1,4],[0,3],[-3,3],[-9,5],[9,5],[3,4],[4,6],[3,5],[4,3],[4,0],[4,-2],[2,-3],[1,-3],[0,-10],[0,-3],[1,-2],[1,-2],[1,-2],[0,-2],[-1,-1],[-1,-3]],[[32771,12198],[-2,-5],[0,-5],[0,-4],[2,-3],[-4,-5],[-6,1],[-5,5],[-1,8],[3,3],[5,4],[5,2],[3,-1]],[[32736,12224],[3,3],[7,0],[3,2],[2,4],[0,3],[0,3],[1,2],[1,2],[3,0],[1,1],[4,4],[2,1],[2,0],[8,-9],[0,-3],[-7,-13],[-1,-5],[-2,-9],[-1,-4],[-2,-2],[-8,-4],[-4,0],[-3,3],[-5,8],[2,3],[1,2],[1,3],[-6,4],[-2,1]],[[33985,12301],[19,20],[6,-15],[-7,-17],[-18,12]],[[32881,12355],[4,3],[13,3],[5,0],[6,-7],[5,-7],[5,-7],[-2,0],[-8,-7],[-5,0],[-6,1],[-9,4],[-4,4],[3,6],[-2,2],[-5,5]],[[34079,12309],[16,6],[87,58],[6,1],[6,-2],[6,-3],[-19,-23],[-2,-6],[5,-20],[-9,-22],[-14,-19],[-11,-13],[-45,-33],[-23,-6],[-24,8],[-10,8],[-6,8],[-2,10],[-1,12],[0,6],[1,8],[1,8],[3,5],[7,5],[28,4]],[[32526,12259],[1,-2],[16,-23],[4,-3],[-7,-8],[-47,-21],[-6,0],[-3,-2],[-2,-2],[-4,-7],[-2,-3],[-2,-1],[-2,0],[-3,1],[-12,-1],[-6,-4],[-5,-6],[0,-3],[0,-7],[-1,-3],[-1,-2],[-14,-15],[-9,-6],[-1,-1],[-4,-10],[-5,-6],[-5,-6],[-4,-2],[-6,-3],[-6,0],[-4,4],[-1,7],[1,6],[0,4],[-4,4],[-6,2],[-5,0],[-26,-6],[-4,-5],[4,-3],[9,-3],[4,-5],[-6,-1],[-5,-3],[-6,-5],[-22,-25],[-3,-5],[-1,-13],[-5,-3],[-6,2],[-10,6],[-2,2],[-2,4],[-1,6],[0,4],[-1,4],[-2,5],[-3,2],[-7,4],[-50,9],[-8,-2],[-4,0],[-4,5],[-13,18],[-11,12],[-42,4],[-3,1],[-2,2],[-1,2],[0,4],[2,3],[3,1],[5,-1],[4,2],[2,4],[2,6],[3,6],[3,3],[3,1],[2,2],[3,5],[0,6],[0,10],[-2,9],[-2,3],[13,8],[3,1],[16,13],[51,12],[13,19],[-3,4],[-19,18],[1,4],[2,1],[3,0],[3,2],[9,10],[4,1],[37,0],[10,3],[8,8],[-5,9],[-2,1],[4,7],[1,2],[2,1],[2,1],[2,1],[1,3],[0,7],[-4,5],[-10,3],[1,2],[7,11],[24,6],[3,2],[3,4],[1,8],[-2,6],[-3,5],[-2,6],[59,4],[-1,6],[1,3],[3,2],[2,0],[3,-2],[6,-7],[8,-4],[2,-2],[1,-1],[1,-4],[1,-1],[8,-3],[8,2],[8,-1],[7,-8],[-1,-3],[0,-2],[1,-1],[1,-4],[-12,-1],[9,-9],[2,0],[-5,-6],[-30,-12],[-6,-5],[-5,-7],[3,-2],[12,0],[-2,-3],[-4,-3],[-2,-2],[-1,-3],[-2,-7],[-1,-3],[-3,-5],[-11,-7],[8,-6],[7,0],[8,5],[16,16],[8,7],[6,2],[16,-2],[-9,-6],[-22,-29],[-6,-12],[7,0],[6,1],[21,12],[5,1],[4,-3],[-5,-10],[-6,-10],[-30,-29],[-13,-7],[-4,-6],[5,-8],[3,-2],[3,-2],[35,4],[4,-2],[-2,6],[-1,2],[0,4],[15,9],[12,14],[5,3],[5,0],[-6,-9],[11,-3],[3,1],[10,9],[3,1],[2,-1],[2,-1]],[[34208,12402],[38,27],[22,8],[14,-8],[-14,-24],[-22,-19],[-27,-9],[-24,3],[5,4],[4,5],[3,6],[1,7]],[[32872,12466],[-11,0],[-5,1],[-4,3],[-5,5],[-3,6],[2,5],[0,5],[-1,4],[1,5],[2,4],[3,4],[3,2],[2,2],[8,-5],[3,-12],[5,-29]],[[32595,12270],[-9,3],[-10,-2],[-10,1],[-8,9],[8,9],[9,1],[9,-3],[8,0],[18,12],[5,-1],[-14,7],[-7,6],[-4,13],[0,5],[1,3],[1,3],[2,2],[2,1],[3,1],[1,1],[2,2],[2,5],[1,2],[9,6],[2,4],[1,5],[2,10],[1,4],[3,4],[9,9],[4,5],[6,11],[5,13],[2,7],[0,7],[-2,7],[-4,3],[-7,2],[-4,1],[-1,2],[-4,8],[-1,2],[-3,2],[-2,2],[-1,3],[-2,11],[-10,6],[-4,7],[2,7],[2,2],[7,-2],[6,1],[13,8],[8,8],[-2,2],[-9,13],[-10,4],[-2,3],[3,4],[18,8],[1,2],[4,7],[0,1],[29,3],[16,-4],[14,-9],[-2,-4],[-2,-11],[-1,-13],[1,-9],[3,-3],[72,-25],[-5,-8],[-7,-3],[-22,-1],[-15,-5],[-7,-5],[4,-6],[7,-3],[19,2],[2,-1],[1,-2],[2,-4],[1,-3],[0,-2],[7,-1],[2,-1],[-3,-8],[-30,-35],[-6,-2],[-3,-2],[-2,-4],[0,-4],[4,-8],[0,-4],[0,-5],[-2,-4],[-2,-4],[1,-4],[1,-2],[3,-1],[6,0],[-20,-19],[-3,-1],[-2,1],[-5,4],[-2,2],[-3,0],[-12,-6],[2,-2],[1,-3],[2,-4],[1,-4],[-1,-4],[-1,-3],[-1,-2],[-8,-8],[-6,-12],[-3,-1],[-11,1],[-4,-1],[-4,-4],[0,-2],[0,-5],[0,-2],[-6,-4],[-5,7],[-1,10],[4,5],[-9,2],[-4,0],[-4,-4],[-2,-5],[0,-5],[1,-5],[0,-5],[-2,-5],[-9,-10],[-3,-2],[-4,0],[-4,4],[-8,8]],[[32795,12573],[3,3],[3,1],[10,0],[13,4],[-1,2],[-1,4],[-1,2],[4,3],[4,-1],[5,-2],[3,-3],[-4,-4],[-10,-15],[-3,-3],[-9,-4],[-2,-3],[-7,-12],[-2,-7],[3,-3],[-5,-1],[-3,-5],[-7,-11],[-6,-4],[-7,0],[-7,3],[-6,5],[-2,4],[-1,5],[2,5],[2,4],[2,1],[3,0],[2,1],[1,2],[0,3],[1,2],[2,2],[-2,5],[-1,2],[4,3],[12,4],[2,2],[6,6]],[[34024,12366],[5,-8],[2,-7],[-1,-4],[-7,-1],[0,2],[-2,6],[-3,6],[-2,3],[-4,3],[-4,1],[-5,1],[-3,-1],[7,-10],[-4,0],[-4,1],[-10,11],[-4,3],[-3,0],[-4,-3],[6,-13],[1,-7],[-1,-8],[-5,-6],[-5,-1],[-5,2],[-5,-1],[0,7],[1,8],[0,9],[2,7],[3,6],[6,9],[5,7],[4,1],[-9,8],[-10,-4],[-9,-7],[-9,-5],[-5,2],[-9,8],[-5,0],[1,-3],[0,-2],[6,-9],[1,-3],[1,-4],[-1,-8],[0,-4],[1,-5],[2,-4],[3,-7],[-4,-6],[-1,-3],[-1,-5],[-4,2],[-4,-1],[-2,-3],[3,-5],[-4,-2],[-10,2],[-15,8],[-3,3],[3,6],[1,3],[1,4],[0,4],[1,11],[-1,3],[6,1],[3,1],[2,3],[-7,9],[-8,4],[-24,-1],[-3,-2],[-3,-5],[0,-6],[0,-12],[-1,-6],[-4,-7],[-5,-5],[-6,-3],[-5,1],[4,7],[8,11],[4,6],[-7,2],[-6,0],[-5,-4],[-9,-12],[-2,-3],[-3,-1],[-3,-1],[-4,3],[-1,5],[1,5],[0,3],[-23,22],[4,8],[5,5],[12,6],[15,4],[5,-1],[1,1],[1,2],[1,1],[0,2],[0,2],[4,4],[17,2],[10,3],[4,3],[4,6],[-11,7],[-25,4],[-11,5],[2,15],[11,41],[1,9],[-18,10],[-17,-8],[-15,-15],[-14,-8],[-16,1],[-11,4],[0,1],[4,9],[2,1],[6,3],[-11,10],[-1,2],[2,10],[5,5],[5,4],[6,6],[3,9],[3,9],[3,8],[6,5],[8,0],[3,2],[1,6],[-2,4],[-8,10],[8,17],[13,11],[25,8],[7,0],[4,-3],[3,0],[4,7],[0,3],[-2,3],[0,5],[5,9],[4,4],[15,6],[20,-14],[1,4],[1,4],[1,4],[-1,5],[-1,2],[-6,7],[-1,1],[6,5],[7,3],[37,5],[0,-1],[-8,-9],[-2,0],[2,-2],[3,-2],[1,-1],[10,-37],[4,-10],[-12,-4],[-4,-4],[-2,-4],[0,-4],[2,-3],[3,-4],[-2,-4],[-3,-4],[-18,-16],[14,-10],[5,-7],[-2,-4],[-1,-3],[-1,0],[2,-3],[2,-4],[1,-6],[-1,-6],[-2,-4],[-8,-4],[-3,-2],[10,-5],[11,-3],[10,0],[10,2],[-7,27],[4,6],[29,22],[23,26],[13,8],[-1,-2],[-2,-3],[-3,-6],[2,-6],[3,-3],[7,-5],[-9,-9],[-2,-3],[0,-4],[0,-3],[1,-3],[0,-3],[-1,-2],[-2,-2],[-4,-3],[4,1],[101,-38],[-9,-6],[-2,-1],[1,-5],[2,-2],[3,-2],[3,-1],[-9,-7],[-9,-2],[-29,1],[-9,-2],[-2,-2],[-6,-6],[-2,-1],[16,-1],[5,-2],[1,-5],[4,0],[4,0],[3,-2],[-10,-10],[-2,-2],[7,0],[12,3],[12,6],[18,2],[3,-3],[5,5],[8,4],[6,-4],[-2,-14],[-5,-8],[-5,-6],[-25,-9],[-7,1],[-7,3],[3,-5],[-3,-6],[-3,-3],[-4,-2],[-4,0],[-4,1],[-24,14],[-8,2],[-9,-2],[-8,-9],[2,0],[36,-11],[6,-4],[5,-7],[-18,-5],[-39,14],[-14,-19],[3,-3],[46,-8],[5,-3],[5,-4],[14,-17],[3,-5],[1,-4],[-3,-6],[-24,-10],[-9,0],[-4,1],[-4,3],[-1,5],[0,12],[-2,4],[-4,4],[-4,1],[-4,0],[-4,-2]],[[33988,12657],[-15,20],[13,7],[78,9],[1,0],[1,-1],[1,-5],[0,-5],[1,-5],[2,-3],[-12,-7],[-3,-4],[9,-1],[40,18],[11,1],[4,-1],[7,-5],[7,-7],[9,-5],[-2,-3],[-3,-2],[-12,-2],[-2,-1],[-1,-2],[-1,-3],[0,-2],[-2,-7],[-1,-1],[-2,-1],[-5,-3],[-12,-10],[2,11],[0,6],[-2,4],[-2,0],[-17,-3],[-12,-7],[-3,-1],[-4,1],[-30,17],[-4,-2],[-3,-10],[-6,5],[-4,1],[-1,1],[-2,2],[-1,2],[-1,2],[-2,1],[-11,-2],[-4,0],[-2,2],[-2,1]],[[32854,12715],[-6,6],[-17,7],[6,4],[41,-2],[5,-4],[2,-18],[-4,-14],[-7,-10],[-9,-2],[0,2],[-2,14],[-2,5],[-3,5],[-4,7]],[[33087,12652],[-7,1],[-16,-2],[-4,2],[0,8],[1,2],[2,0],[4,-2],[10,-3],[21,1],[11,3],[5,4],[3,3],[2,4],[1,5],[0,3],[-1,3],[-1,4],[-5,4],[-3,5],[-1,7],[2,9],[2,2],[22,0],[4,3],[3,7],[1,1],[0,2],[2,2],[3,2],[-7,5],[-18,-5],[-4,1],[-2,2],[2,5],[-1,6],[-2,5],[-2,5],[-1,2],[-3,3],[-1,2],[1,3],[3,-1],[10,-8],[9,-4],[37,-1],[10,-6],[-3,-2],[-13,-15],[-1,-5],[-2,-2],[-6,-3],[-3,-6],[-4,-16],[-3,-8],[-4,-6],[-1,-2],[1,-9],[6,-10],[8,-8],[5,-2],[-15,-9],[-13,-13],[-4,-5],[-1,-1],[-2,1],[0,1],[0,2],[-1,1],[-3,3],[-4,1],[-3,-2],[-3,-4],[-4,-7],[-1,-1],[-17,6],[-5,4],[8,6],[2,5],[0,4],[-2,4],[-2,2],[-2,2]],[[34017,12756],[-4,16],[-2,6],[-4,2],[24,11],[13,2],[11,-5],[-3,-2],[-10,-27],[-5,-7],[-6,-4],[-7,-1],[-5,3],[-1,1],[0,1],[-1,4]],[[34253,12809],[7,15],[17,6],[20,0],[17,-5],[-30,-27],[-20,-7],[-11,18]],[[33378,12832],[-1,5],[0,1],[7,-1],[4,-3],[1,-2],[1,-1],[1,-2],[-1,-4],[0,-2],[5,-12],[0,-3],[-5,-2],[-6,-2],[-5,1],[-5,3],[-5,6],[-1,7],[3,5],[7,6]],[[34522,12879],[0,-14],[-57,-30],[-2,-18],[-9,-1],[-54,32],[-21,25],[-2,4],[0,3],[1,2],[2,2],[0,3],[3,11],[4,4],[54,15],[57,2],[16,-13],[8,-27]],[[32791,12976],[-7,-13],[-10,-7],[-20,-5],[-54,1],[3,2],[3,5],[3,6],[1,6],[1,9],[-2,7],[-2,6],[-3,5],[2,1],[13,10],[0,2],[-1,4],[0,4],[3,1],[5,-2],[9,-6],[33,-5],[4,-2],[2,-2],[2,-3],[1,-4],[1,-9],[1,-4],[3,-2],[3,-3],[6,-2]],[[34250,13038],[-1,10],[3,8],[5,6],[5,4],[6,4],[7,1],[6,-2],[6,-5],[-5,-23],[-2,-4],[-7,-4],[-9,-3],[-8,1],[-6,7]],[[34678,13039],[9,-2],[11,-8],[9,-14],[3,-22],[-6,-22],[-12,-14],[-18,-9],[-21,-2],[-18,3],[-31,14],[-17,4],[-27,-7],[-12,2],[-46,29],[4,-10],[0,-4],[-1,-6],[-3,-3],[-5,-1],[-4,2],[-4,2],[-3,4],[-3,5],[-3,4],[-4,1],[-4,-1],[-2,-2],[0,-4],[-2,-5],[-2,-5],[-7,-10],[-14,4],[-7,-7],[-7,-13],[-13,-12],[-41,-11],[-13,-6],[-13,-12],[-6,-1],[-10,0],[-16,6],[-2,2],[-3,3],[-2,5],[-3,9],[-2,4],[-4,3],[-5,2],[-4,3],[-4,6],[2,12],[12,10],[22,9],[-13,10],[-2,2],[13,22],[17,17],[35,21],[75,27],[70,0],[25,10],[16,1],[19,-12],[8,-2],[-4,-1],[-4,-4],[-5,-5],[-3,-6],[26,-17],[3,0],[3,3],[3,4],[3,3],[4,2],[63,-10]],[[34292,13101],[-16,18],[-4,11],[5,12],[7,7],[14,9],[7,7],[2,3],[1,2],[1,2],[3,2],[2,0],[43,-16],[58,0],[16,-8],[3,-24],[-9,-17],[-41,-44],[-16,-11],[-17,3],[-20,11],[-39,33]],[[33195,13181],[-8,-10],[-11,2],[-8,11],[-2,15],[-6,5],[-6,2],[-6,0],[-5,-2],[-1,-3],[-3,-11],[-1,-2],[1,-4],[0,-2],[1,-2],[6,-6],[32,-18],[-7,-6],[-10,0],[-18,8],[-6,5],[-6,8],[-4,10],[-1,14],[15,27],[20,-1],[20,-17],[14,-23]],[[32610,13121],[-15,-11],[-8,-3],[-7,0],[7,7],[1,3],[1,4],[1,6],[1,3],[3,3],[7,4],[3,5],[2,9],[3,9],[4,8],[4,7],[8,8],[2,3],[1,4],[0,9],[0,4],[5,9],[9,5],[27,8],[3,2],[5,5],[3,2],[12,0],[-14,-34],[-20,-31],[-48,-48]],[[32914,13271],[-1,2],[-2,2],[-1,3],[0,4],[0,6],[1,6],[1,5],[2,4],[6,8],[7,5],[15,4],[58,1],[-8,-3],[-5,-5],[-3,-7],[1,-9],[-43,-32],[-16,-1],[-9,4],[-3,3]],[[33011,13360],[6,14],[-1,12],[-6,9],[-9,6],[12,5],[37,-14],[16,-2],[16,7],[17,10],[5,4],[3,4],[1,5],[-1,6],[-4,5],[-3,4],[-2,2],[8,17],[4,10],[0,11],[2,0],[24,-19],[1,-1],[1,-2],[0,-3],[0,-4],[0,-3],[-1,0],[9,-16],[9,-9],[10,-5],[32,-2],[10,4],[6,12],[14,-2],[14,2],[15,5],[13,9],[11,10],[5,6],[4,8],[5,14],[3,1],[7,-9],[7,-11],[2,-2],[10,-9],[7,-8],[-14,-15],[-5,-7],[2,-10],[7,-21],[6,-7],[10,-2],[52,11],[-90,-62],[-6,-6],[-27,-15],[-13,-3],[-6,9],[-2,1],[-2,0],[-1,1],[-2,1],[11,27],[0,6],[-9,2],[-10,-7],[-9,-9],[-9,-7],[6,23],[3,6],[2,2],[5,2],[2,2],[9,13],[3,4],[-15,11],[-62,-18],[-22,14],[-8,2],[-10,-5],[-4,-7],[-1,-8],[-2,-6],[-11,-9],[-68,-6],[-15,3],[-14,9]],[[33404,13430],[-2,0],[-1,0],[-1,1],[-2,1],[-1,4],[-2,7],[-2,4],[-4,4],[-37,12],[-18,21],[18,8],[58,-7],[-12,-13],[-3,-4],[2,-4],[3,-3],[2,-3],[7,-4],[4,-1],[3,1],[16,13],[9,1],[9,-3],[7,-9],[-3,-4],[-7,-2],[-3,-2],[0,-12],[-5,-6],[-14,-3],[-16,3],[-5,0]],[[33418,13528],[-1,2],[0,2],[0,2],[1,2],[1,3],[3,1],[21,7],[46,-5],[16,-10],[9,-20],[-1,-2],[-5,-16],[-2,-3],[-1,-2],[-2,-1],[-2,-1],[-15,0],[-14,-5],[-3,0],[-13,7],[-5,1],[-5,8],[-9,13],[3,4],[1,4],[1,4],[2,3],[-3,-1],[-15,-3],[-2,1],[-2,1],[-2,2],[-2,2]],[[33615,13595],[3,-2],[13,4],[8,0],[7,-5],[7,-9],[4,-14],[-55,-23],[-11,0],[-5,1],[-4,3],[-11,11],[-4,2],[-2,2],[-11,11],[-4,3],[8,12],[9,7],[35,16],[8,0],[7,-4],[-1,-6],[-1,-4],[0,-3],[0,-2]],[[33759,13657],[6,-16],[-1,-10],[-5,-6],[-33,-20],[-10,1],[-3,12],[-12,2],[-20,-8],[-10,7],[6,3],[3,3],[3,3],[-4,3],[-12,4],[0,2],[1,3],[0,4],[0,2],[-1,4],[-1,1],[-2,1],[-5,0],[-32,-14],[-4,-4],[-1,-6],[3,-9],[-4,-1],[-5,0],[-8,4],[8,21],[10,15],[65,63],[3,7],[0,4],[-1,2],[-1,3],[1,4],[1,4],[3,3],[3,2],[59,22],[3,3],[2,4],[2,8],[2,3],[6,2],[7,-2],[13,-7],[32,-7],[14,5],[34,23],[12,5],[33,-20],[15,-2],[36,15],[10,2],[4,-3],[2,-5],[1,-7],[-1,-6],[-2,-6],[-4,-4],[-3,-1],[-1,-3],[2,-5],[5,-9],[6,-8],[7,-6],[6,-4],[-48,11],[-7,-1],[-6,-3],[-10,-9],[-20,-22],[-10,-7],[-9,-1],[-42,14],[-5,-1],[-3,-3],[-1,-4],[0,-5],[0,-8],[-2,-5],[-1,-3],[-1,-4],[1,-5],[3,-5],[13,-7],[-4,-10],[-7,-6],[-22,-8],[-8,0],[-6,4],[-4,6],[-9,14],[-8,10],[-2,4],[-1,7],[2,2],[12,-1],[5,2],[9,10],[-8,5],[-8,0],[-15,-6],[-4,0],[-10,8],[-5,1],[-5,0],[-5,-3],[-4,-4],[10,-6],[2,-4],[0,-9],[-4,-8],[-6,-6],[-33,-20],[-4,-4],[6,-3],[6,-1],[12,2],[23,12]],[[34990,14199],[-3,-14],[-3,-11],[-5,-9],[-7,-5],[-6,2],[-23,14],[-7,9],[6,10],[34,43],[3,7],[1,5],[4,16],[0,3],[9,-2],[4,-4],[1,-9],[-3,-6],[-4,-3],[-5,-4],[-2,-10],[0,-6],[1,-3],[2,-2],[2,-4],[1,-4],[0,-3],[0,-10]],[[34700,14289],[29,-8],[90,0],[-5,-2],[-8,-16],[-4,-6],[-5,-3],[-85,-2],[-5,-2],[-4,-5],[-1,-4],[0,-8],[-2,-4],[-2,-4],[-3,-2],[-10,-1],[-2,-2],[-3,-11],[-8,-16],[-9,-7],[-10,0],[-9,6],[-18,18],[-7,12],[-6,17],[9,11],[4,3],[0,1],[-8,7],[-16,10],[-5,5],[10,19],[10,8],[83,-14]],[[37633,14511],[-4,-10],[-9,-5],[-21,-3],[-15,3],[-7,-4],[1,-13],[-5,5],[-23,15],[-3,2],[-1,3],[-3,7],[-1,2],[12,-9],[6,-2],[6,1],[11,4],[5,1],[2,1],[3,2],[1,6],[0,6],[-2,13],[3,-5],[19,-14],[2,0],[1,1],[2,5],[1,2],[2,0],[2,0],[1,0],[5,4],[4,5],[4,3],[5,0],[15,-17],[-16,-6],[-3,-3]],[[37220,14574],[-1,3],[0,3],[1,4],[1,5],[1,4],[1,4],[2,3],[2,2],[3,1],[4,-1],[2,-1],[-2,19],[0,4],[6,2],[5,-1],[18,-12],[3,-1],[2,1],[7,6],[4,1],[9,0],[4,2],[1,3],[1,3],[1,1],[2,2],[2,0],[5,-1],[11,-4],[27,-17],[6,-1],[16,6],[3,0],[8,-5],[16,-15],[5,-11],[-5,-9],[3,-1],[9,-8],[5,-3],[16,4],[23,-4],[-6,-12],[-2,-1],[11,-7],[7,-9],[2,-2],[-5,2],[-3,0],[-2,-1],[-1,-9],[3,-9],[9,-13],[-5,-1],[-7,3],[-11,9],[-10,14],[-6,6],[-7,3],[-13,2],[0,1],[0,3],[-2,5],[-1,1],[-12,6],[-3,1],[-13,-3],[-9,1],[-12,5],[-13,1],[-25,-6],[-11,2],[-7,12],[-2,7],[-2,2],[-1,2],[3,7],[-11,7],[-9,-1],[-31,-22],[-5,-2],[-5,0],[-6,3],[-3,2],[-1,3]],[[4906,1361],[20,-13],[96,-24],[96,-23],[-66,-8],[-9,-4],[-8,-8],[-18,-25],[-9,-9],[-12,-6],[-108,-13],[-119,20],[-119,20],[-7,11],[1,3],[3,4],[1,3],[-8,11],[-59,9],[-26,13],[-5,5],[-3,6],[2,11],[5,7],[12,10],[-5,6],[-6,3],[-36,11],[-6,6],[9,4],[9,1],[-6,6],[-28,9],[17,7],[117,-8],[118,-9],[117,-8],[20,-12],[20,-16]],[[3047,1225],[37,-21],[24,-8],[7,-7],[-17,-7],[-133,12],[-132,13],[-4,2],[-4,4],[-6,11],[-3,5],[-137,42],[-137,42],[-136,42],[-137,42],[-19,12],[22,11],[129,-33],[129,-32],[130,-33],[129,-32],[129,-33],[129,-32]],[[6015,1966],[12,-16],[16,-15],[92,-38],[16,-1],[8,-3],[5,-8],[-31,-27],[-19,-8],[-22,-2],[-8,3],[3,6],[5,3],[9,3],[-9,16],[-11,8],[-79,25],[-85,52],[-84,52],[-5,18],[4,4],[7,2],[24,-3],[71,-29],[70,-29],[4,-4],[7,-9]],[[5397,2146],[-125,10],[-126,9],[-125,10],[-125,10],[-126,10],[-125,10],[-125,10],[-7,7],[1,1],[22,2],[3,2],[-3,4],[-77,21],[-12,9],[6,6],[6,9],[4,10],[3,11],[20,14],[120,15],[121,14],[128,-23],[128,-22],[128,-23],[129,-23],[128,-23],[12,-16],[1,-4],[-12,-7],[-4,-4],[11,-1],[57,-25],[8,-8],[-9,-10],[-12,-4],[-23,-1]],[[7190,3071],[-68,3],[7,4],[7,5],[-16,5],[-12,-1],[-3,3],[-2,3],[-4,8],[-3,3],[-17,10],[-131,20],[-12,8],[3,12],[-128,23],[-51,24],[1,0],[3,4],[10,4],[10,2],[115,-31],[115,-30],[116,-31],[115,-30],[6,-9],[-13,-10],[-48,1]],[[6745,3229],[38,-8],[-10,-7],[-10,-5],[-39,-10],[-10,3],[-7,10],[9,12],[9,5],[20,0]],[[4694,3243],[102,-28],[7,-5],[6,-8],[-12,-12],[-14,-4],[-79,13],[-79,13],[-14,9],[25,2],[17,7],[27,0],[24,-8],[8,3],[-3,5],[-4,2],[-4,0],[-20,10],[-4,5],[17,-4]],[[41772,3145],[-17,-10],[-6,-2],[-22,1],[-22,6],[-5,4],[-3,7],[-6,14],[-4,5],[-23,9],[-13,1],[-11,-2],[-19,-13],[-25,-5],[30,-27],[31,-5],[3,-2],[2,-3],[6,-8],[1,-2],[-54,-23],[-51,-8],[-16,4],[-13,13],[41,3],[10,5],[3,0],[-9,5],[-48,13],[-4,4],[-1,5],[-1,6],[-2,6],[-3,3],[-2,1],[-28,-2],[-6,-6],[2,-2],[3,-5],[1,-6],[-4,-8],[-4,-2],[-5,-1],[-58,19],[-91,8],[-91,8],[-58,23],[-28,4],[-6,3],[5,5],[5,4],[28,9],[5,4],[-25,5],[-53,-11],[-13,1],[-12,5],[48,22],[5,5],[5,6],[-12,4],[-4,2],[-4,4],[-5,9],[-4,3],[-4,2],[-45,2],[46,8],[8,4],[-5,3],[-15,2],[-11,9],[4,2],[11,8],[66,11],[39,-3],[15,-7],[41,-36],[71,-34],[15,-19],[5,-4],[6,-3],[123,-21],[45,2],[37,-8],[19,1],[18,10],[-83,26],[-83,27],[-7,4],[-7,8],[-2,5],[-3,10],[-2,4],[-2,2],[-5,2],[-2,2],[11,12],[13,7],[13,2],[12,-6],[4,-7],[5,-16],[4,-8],[12,-13],[5,-3],[102,-23],[103,-22],[39,-22],[43,-34],[-2,-1]],[[5599,3478],[77,-49],[2,-2],[1,-3],[2,-6],[1,-2],[2,-2],[3,-3],[2,-2],[3,-10],[2,-2],[2,-2],[8,-1],[36,-22],[4,-5],[-1,-6],[-3,-3],[-4,-1],[-7,2],[34,-19],[5,-4],[6,-8],[2,-9],[-3,-10],[3,-6],[5,-5],[59,-41],[5,-10],[-1,-4],[-4,-5],[-1,-5],[1,-2],[3,-1],[3,-1],[-10,-12],[-4,-3],[-7,-3],[-2,-2],[-4,-6],[-2,-2],[-3,-1],[-114,-5],[-114,-6],[-114,-5],[-115,-5],[-128,36],[-128,36],[-128,36],[-128,36],[-128,36],[-129,36],[-24,20],[-102,26],[-62,46],[-39,19],[-7,9],[2,-1],[12,4],[15,-2],[-4,7],[-3,6],[-14,19],[-2,6],[1,7],[3,4],[2,2],[2,3],[-1,9],[-3,21],[0,4],[1,2],[3,4],[1,3],[0,3],[0,4],[-1,6],[11,0],[6,2],[3,7],[0,8],[-4,7],[-4,6],[-4,3],[2,2],[7,5],[3,5],[7,12],[4,4],[4,2],[44,15],[2,1],[2,3],[3,5],[2,2],[5,3],[41,6],[4,2],[1,5],[-16,9],[4,5],[13,6],[10,10],[3,2],[9,2],[3,1],[12,11],[43,20],[3,5],[48,17],[10,9],[-3,3],[-10,19],[19,9],[123,-14],[124,-14],[3,-1],[2,-3],[4,-8],[2,-3],[5,-3],[42,-5],[106,-50],[106,-49],[7,-9],[1,-2],[-4,-3],[-2,-2],[0,-3],[3,-3],[117,-57],[117,-56],[63,-47],[50,-16],[33,-20],[42,-13]],[[8606,4585],[-53,14],[10,5],[-6,1],[-2,1],[-2,3],[32,10],[11,0],[62,-15],[-13,-9],[-26,-9],[-13,-1]],[[8634,4641],[-5,-5],[-7,-2],[-120,9],[-52,25],[-25,21],[8,6],[4,-1],[12,-5],[12,0],[3,-2],[-5,6],[-14,9],[29,5],[44,-6],[23,-9],[4,-4],[3,-6],[1,-2],[-1,-5],[0,-2],[3,-5],[80,-21],[3,-6]],[[8199,4666],[9,-3],[28,2],[-3,-7],[-4,-4],[-4,-4],[-4,-1],[-26,-2],[-93,16],[-92,16],[-92,16],[-5,5],[0,9],[4,4],[5,3],[97,24],[41,-3],[122,-54],[12,-14],[5,-3]],[[7487,4727],[0,-2],[-1,-2],[-1,-2],[-1,-2],[-7,-5],[-7,-2],[-86,20],[-14,12],[9,5],[89,-2],[11,-6],[6,-6],[2,-8]],[[9097,4757],[17,-12],[-4,-4],[-34,-9],[1,-3],[1,-2],[1,-2],[2,-1],[-10,-6],[-11,-2],[-21,5],[1,1],[1,1],[2,3],[-9,4],[-2,2],[-1,2],[-2,4],[-1,4],[1,1],[-27,12],[-3,5],[10,11],[14,3],[74,-17]],[[97019,4600],[10,-6],[9,-9],[5,-11],[2,-14],[-13,-9],[-75,-19],[-38,-36],[-11,-6],[-131,-33],[-87,30],[-94,0],[-95,1],[-17,-14],[-17,-23],[-8,-6],[-52,-17],[-49,-29],[-32,-30],[-28,-9],[-3,1],[-14,13],[10,16],[38,23],[22,31],[7,3],[-106,-5],[-16,7],[16,3],[33,-1],[15,6],[36,3],[19,9],[4,0],[-6,3],[-135,34],[-6,4],[-5,5],[-9,12],[-5,5],[-5,2],[-13,-1],[-5,2],[-11,16],[-3,1],[14,9],[43,13],[9,8],[21,32],[49,40],[6,2],[-21,14],[-7,2],[-8,12],[-41,27],[15,32],[20,18],[43,11],[41,2],[41,-13],[15,-13],[16,-21],[7,-25],[-13,-20],[1,0],[1,0],[-1,-1],[20,-14],[119,-43],[90,13],[91,12],[128,-18],[128,-18],[36,-13]],[[7066,4802],[3,8],[7,6],[26,10],[41,5],[44,-8],[20,-11],[1,-2],[2,-3],[1,-4],[1,-11],[-3,-4],[-39,-10],[-90,11],[-8,5],[-3,2],[-1,2],[-1,2],[-1,2]],[[96364,4910],[12,-4],[6,-8],[0,-7],[-30,-6],[0,6],[-1,9],[-4,7],[1,4],[5,2],[11,-3]],[[8741,4899],[24,-14],[3,0],[-5,-11],[-8,-6],[-127,-15],[-83,18],[-7,6],[-3,10],[1,3],[0,5],[1,3],[-5,6],[-3,6],[-2,6],[-1,5],[25,9],[95,-16],[95,-15]],[[8409,4792],[-31,4],[9,8],[3,3],[-4,-1],[-17,5],[-77,2],[-76,3],[-45,31],[-55,18],[-5,10],[1,7],[4,4],[38,17],[63,12],[-3,6],[-4,7],[-5,5],[-4,1],[6,3],[17,5],[0,-3],[0,-15],[120,22],[34,-5],[18,-9],[4,-19],[18,-6],[70,-53],[-1,-3],[-1,-2],[-2,-5],[2,-4],[2,-3],[5,-5],[-3,-5],[-3,-4],[32,-4],[16,-7],[14,-13],[-7,-8],[-17,-5],[-116,6]],[[9399,4910],[3,-4],[3,-3],[6,-4],[-5,-5],[-6,0],[-31,10],[-7,5],[-10,12],[1,0],[1,2],[2,2],[-1,0],[-7,6],[-6,3],[-5,0],[-3,-1],[-2,-2],[-2,-3],[1,-5],[0,-2],[1,-1],[-3,-5],[-1,-1],[1,-1],[1,-3],[-19,-11],[-135,-34],[-18,1],[-18,9],[12,6],[3,3],[9,11],[-6,16],[-4,5],[-24,23],[9,12],[3,4],[-10,9],[6,7],[9,2],[114,-16],[114,-17],[2,-4],[2,-4],[2,-1],[4,-1],[3,-3],[2,-2],[9,-15]],[[8742,4990],[-52,-6],[-4,-2],[-3,-3],[-4,-9],[-3,-4],[-3,-2],[-42,-6],[-63,8],[-93,41],[24,21],[14,7],[12,3],[71,-6],[70,-7],[4,1],[2,3],[5,5],[2,3],[2,0],[94,-13],[23,-11],[5,-5],[-13,-17],[-16,-5],[-32,4]],[[8269,5001],[-103,-11],[-59,15],[-17,18],[2,6],[5,7],[6,5],[87,7],[86,7],[32,-13],[-1,-4],[-1,-3],[-2,-6],[2,-1],[6,-4],[-10,-11],[-11,-6],[-22,-6]],[[8690,5043],[-6,2],[-10,2],[-5,-1],[-42,10],[-54,27],[-3,1],[42,18],[51,-3],[96,-39],[-1,0],[0,-1],[-13,-10],[-17,-5],[-38,-1]],[[8964,5074],[-73,33],[1,3],[1,1],[-3,6],[-1,4],[-2,1],[17,8],[17,1],[42,-16],[31,-21],[17,-25],[-21,-2],[-26,7]],[[9219,5108],[-2,-3],[6,-5],[6,-7],[4,-7],[3,-3],[3,-1],[-13,-5],[-4,-1],[-73,13],[4,-3],[32,-13],[-5,-2],[-15,0],[3,-3],[8,-3],[13,-9],[22,-10],[-15,-8],[-16,-1],[-31,7],[-58,26],[-3,3],[-5,10],[-3,4],[-4,3],[-11,6],[6,7],[4,3],[3,0],[-7,8],[-2,2],[3,1],[8,1],[12,6],[2,-2],[-5,10],[2,5],[3,4],[-16,5],[6,9],[8,5],[8,2],[22,1],[19,-6],[3,-3],[-2,-4],[-3,-3],[-3,-1],[-3,0],[10,-9],[5,-3],[6,0],[29,7],[6,-3],[-11,-10],[-3,-2],[6,1],[37,-10],[5,-4],[-4,-5]],[[9039,5403],[6,12],[8,6],[18,3],[76,-8],[45,-18],[4,-4],[2,-6],[3,-6],[2,-7],[3,-3],[43,-32],[1,-9],[8,-23],[3,-10],[-14,-10],[-14,-3],[-14,2],[-70,28],[-6,7],[3,-1],[4,1],[8,5],[-12,10],[-86,29],[-6,6],[2,0],[7,5],[13,1],[-31,25],[-6,0]],[[95254,5723],[11,3],[4,-1],[2,-6],[-2,-5],[-20,-27],[-4,-7],[0,-3],[-1,-8],[-1,-3],[-2,-3],[-5,-3],[-2,-2],[-1,-3],[-4,-7],[-2,-3],[-2,-2],[-3,-1],[-17,-4],[-30,7],[-9,6],[-7,10],[39,35],[5,10],[9,6],[42,11]],[[9600,5710],[9,-6],[16,-15],[24,-31],[9,-8],[8,-3],[-5,-11],[-7,-6],[-8,-2],[-30,0],[-88,29],[-88,29],[-30,19],[-9,8],[-1,3],[6,9],[7,7],[40,20],[27,3],[41,-8],[79,-37]],[[95135,5783],[12,18],[11,2],[8,-8],[5,-13],[-13,-13],[-11,-2],[-8,6],[-4,10]],[[13175,6416],[20,2],[21,-8],[18,-2],[4,-2],[-7,-7],[-3,-3],[3,-3],[1,-1],[-3,-6],[-17,-11],[-11,-17],[-16,-8],[-16,-1],[-74,18],[-7,6],[5,6],[2,2],[3,0],[-11,10],[-3,2],[9,-1],[8,1],[6,3],[3,5],[16,-1],[49,16]],[[13633,6383],[-2,-3],[-2,-2],[-5,-4],[0,-7],[-1,-17],[0,-8],[-2,-4],[-1,0],[-1,0],[-2,-2],[0,-2],[1,-2],[1,-2],[-19,-21],[-11,-8],[0,-1],[0,-3],[-1,-4],[-2,-2],[-2,-2],[-30,-3],[-73,21],[-72,21],[-11,-2],[-14,-7],[-8,-1],[-6,5],[-1,5],[-3,5],[-4,4],[-3,2],[-34,8],[-15,8],[1,1],[6,7],[10,4],[3,3],[-5,-1],[-6,3],[-16,15],[-14,8],[-6,0],[46,25],[0,2],[3,4],[6,7],[49,22],[23,-1],[11,2],[4,0],[8,-7],[2,-1],[14,3],[5,-1],[-3,-4],[-10,-7],[7,-9],[9,-6],[119,-32],[39,11],[5,-2],[2,-2],[1,-2],[0,-4],[1,-4],[2,-3],[7,-3]],[[14686,6368],[0,-4],[-1,-4],[-2,-3],[-14,-14],[-10,-7],[-2,-5],[17,-13],[-2,-5],[-7,-7],[1,0],[0,-2],[-4,-7],[-55,-28],[-26,-6],[-12,2],[-98,53],[1,3],[1,4],[0,4],[-1,4],[-3,4],[-9,4],[-3,6],[-6,3],[-4,3],[-1,2],[0,2],[-7,3],[-19,-4],[-6,7],[2,0],[8,6],[2,3],[-1,7],[-4,6],[-4,5],[-3,4],[0,2],[2,2],[1,4],[-3,4],[-8,2],[1,4],[0,4],[-4,12],[-2,10],[-1,4],[-6,12],[-2,5],[4,6],[10,1],[106,-23],[70,-37],[19,-4],[19,5],[8,-1],[29,-11],[3,-2],[2,-3],[3,-8],[1,-3],[5,-2],[9,1],[4,-4],[1,-1],[1,-2],[0,-2],[0,-1]],[[17453,6435],[-32,-13],[-15,0],[-16,7],[9,22],[14,12],[80,16],[9,-1],[7,-5],[-28,-23],[-28,-15]],[[13299,6557],[-6,-10],[-8,-4],[-17,4],[-11,5],[-6,6],[-1,8],[6,3],[14,2],[12,-2],[13,-7],[4,-5]],[[17739,6704],[-16,-22],[-38,-21],[-44,-35],[-35,-13],[-9,-6],[41,-10],[5,1],[-10,-15],[-22,-21],[-51,-19],[-115,-16],[-28,10],[-9,6],[-12,9],[-7,15],[2,22],[6,10],[134,62],[135,63],[24,2],[49,-22]],[[16716,6574],[-19,6],[-9,6],[-2,10],[5,8],[7,3],[14,4],[0,1],[0,3],[2,6],[0,2],[3,2],[5,4],[3,1],[26,4],[9,3],[8,8],[-4,7],[-5,6],[-26,19],[-4,5],[-2,5],[-2,14],[-2,6],[-4,5],[-13,7],[6,4],[13,5],[6,6],[-34,11],[-4,4],[57,4],[33,19],[24,8],[103,-4],[41,-15],[17,-13],[3,-3],[1,-4],[1,-5],[-1,-10],[0,-5],[1,-4],[3,-2],[4,-2],[-21,-21],[-5,-5],[0,-4],[5,-8],[-7,-11],[-9,-8],[-61,-36],[-58,-14],[-4,-3],[-3,-5],[-3,-6],[-3,-5],[-6,-4],[-54,-12],[-35,3]],[[16594,6689],[-2,-2],[-6,-9],[-2,-4],[11,-4],[5,-5],[1,-8],[-2,-5],[-3,-3],[-6,-5],[-101,-43],[-101,-43],[-7,-5],[-5,-6],[-2,-6],[0,-10],[-1,-6],[5,-7],[1,-4],[-1,-5],[-3,-1],[-7,0],[-3,-1],[1,-6],[7,-7],[2,-5],[-3,-4],[-3,-2],[3,-5],[25,-9],[6,-5],[1,-1],[-43,-23],[-106,-13],[-106,-13],[-106,-13],[-60,20],[-31,-4],[-15,3],[-17,9],[-60,17],[-9,7],[-15,16],[-6,12],[2,9],[-7,9],[10,8],[11,3],[53,2],[9,6],[-2,5],[-2,2],[-7,2],[-7,4],[-4,4],[-6,12],[-30,16],[-2,3],[1,4],[-1,8],[0,2],[6,12],[4,2],[4,1],[9,0],[12,4],[1,2],[0,7],[4,3],[13,1],[2,1],[1,2],[0,4],[-2,7],[0,4],[0,2],[2,2],[1,1],[0,1],[0,3],[-1,1],[0,1],[1,3],[1,2],[2,1],[34,20],[15,2],[57,21],[5,5],[1,1],[-10,5],[-20,4],[-43,-4],[-96,16],[-2,2],[-2,4],[-1,4],[-1,4],[-1,5],[-3,5],[-4,3],[-9,2],[-92,-10],[0,1],[0,4],[0,2],[3,3],[25,4],[3,2],[2,3],[-1,6],[-4,5],[-8,7],[-3,6],[1,7],[3,6],[23,27],[20,15],[15,4],[110,-2],[110,-2],[60,-20],[127,-10],[127,-10],[127,-10],[40,8],[31,-12],[15,-14],[-1,-20],[-4,-6],[-6,-4],[-78,-12],[-8,-6],[-3,-1],[25,-10],[100,-12],[7,-6]],[[97211,6933],[-5,-10],[-8,-7],[-16,-11],[2,-2],[1,-6],[0,-8],[-1,-5],[-3,-5],[-5,-4],[-47,-11],[-5,1],[0,8],[0,6],[-1,6],[-3,4],[-4,4],[-4,2],[-28,7],[-13,7],[23,35],[35,39],[3,5],[-8,9],[-4,7],[0,6],[10,12],[0,14],[9,9],[13,3],[12,-4],[6,-12],[0,-16],[1,-15],[9,-9],[3,-16],[9,-17],[19,-26]],[[14591,6913],[9,4],[6,4],[1,6],[-2,4],[0,5],[0,5],[0,5],[-1,4],[-1,2],[-4,3],[-8,9],[-4,7],[-2,6],[-1,7],[2,3],[18,15],[14,24],[20,24],[21,15],[22,9],[11,0],[9,-8],[-2,-3],[-6,-4],[-3,-2],[24,-2],[70,12],[69,12],[118,-16],[5,-5],[23,-28],[17,-15],[95,-31],[9,-9],[-1,-10],[-8,-11],[-8,-9],[1,-5],[5,-8],[24,-26],[14,-11],[62,-19],[6,-6],[4,-11],[0,-12],[-3,-12],[-6,-7],[-7,-4],[-128,-10],[-27,7],[-14,0],[-10,-11],[2,-19],[11,-16],[25,-17],[26,-9],[26,1],[61,19],[30,0],[6,-3],[10,-10],[6,-4],[15,-2],[13,-5],[6,-6],[1,-9],[-2,-2],[-7,-2],[5,-7],[8,-3],[14,0],[18,7],[4,0],[-5,6],[-1,3],[-2,6],[1,7],[1,2],[-1,2],[-3,7],[13,11],[40,12],[36,26],[13,4],[13,-2],[5,-5],[2,-10],[110,-47],[5,-6],[10,-3],[9,-4],[2,-13],[-5,-8],[-48,-26],[9,-16],[13,-9],[56,-16],[-3,-4],[-9,-8],[7,0],[15,-5],[6,-4],[2,-3],[3,-8],[1,-3],[3,-2],[24,-4],[-7,-9],[0,-1],[0,-4],[0,-5],[-1,-3],[-2,-1],[-5,0],[-8,-2],[-5,-3],[-2,-5],[0,-6],[2,-3],[2,-2],[1,-3],[-1,-7],[-5,-5],[-5,-3],[-5,-1],[26,-22],[-7,-9],[-9,-8],[-18,-10],[-22,-1],[-66,29],[-75,-4],[-74,-3],[-117,37],[-10,7],[1,0],[0,1],[-1,0],[36,16],[-84,24],[-85,25],[-8,9],[-2,4],[0,7],[-1,3],[-3,4],[-8,4],[-4,3],[2,1],[2,1],[1,2],[1,2],[-6,4],[-32,5],[-3,3],[-8,9],[-12,9],[-129,47],[6,5],[9,7],[5,12],[-1,14],[-6,7],[-19,5],[-5,9],[1,7],[3,4],[8,5],[2,6],[-1,3],[-26,10],[3,6],[1,2],[-50,3],[-30,11],[-11,0],[-11,-5],[-11,-7],[-9,-11],[9,-20],[0,-4],[-14,-8],[-63,4],[-6,2],[-3,3],[-2,4],[0,6],[3,17],[0,8],[1,13],[9,10],[16,14],[-6,5],[-50,19],[-15,0],[-8,1],[-6,7]],[[69105,7761],[1,-1],[6,-6],[10,-16],[3,-9],[3,-13],[-3,-12],[-6,-9],[-6,-7],[-19,-14],[-80,-30],[-10,1],[-6,9],[15,28],[43,47],[6,13],[2,16],[4,7],[10,8],[12,5],[7,-1],[1,-3],[1,-6],[1,-2],[1,-2],[1,-1],[3,-2]],[[69423,7884],[-3,-13],[-4,-10],[-26,-45],[-3,-11],[1,0],[0,-1],[1,-1],[1,-1],[-3,-3],[-2,-2],[-6,-2],[-2,0],[-7,2],[-2,0],[6,9],[-13,31],[-5,8],[4,4],[7,10],[1,2],[0,2],[0,2],[0,5],[-1,1],[8,9],[3,4],[1,2],[0,2],[0,1],[2,2],[5,4],[7,1],[12,-1],[18,-11]],[[49103,8391],[13,-34],[54,-44],[12,-24],[-26,-7],[-27,-1],[-25,6],[-22,12],[-10,9],[-9,13],[-7,13],[-5,11],[4,5],[3,5],[5,12],[-1,0],[0,1],[-10,15],[12,8],[21,2],[18,-2]],[[49245,8529],[29,-12],[87,28],[48,-10],[13,-9],[-3,-3],[-12,-22],[-4,-4],[-14,-8],[-5,-5],[-5,-6],[-5,-8],[-4,-9],[-7,-20],[-2,-12],[2,-10],[-3,-6],[-73,-69],[-47,-23],[-18,2],[-5,7],[-1,17],[-6,9],[1,11],[-1,8],[-2,8],[-4,8],[6,-1],[7,6],[11,15],[7,5],[17,9],[7,1],[-89,34],[6,2],[5,8],[1,12],[-2,12],[-4,8],[-6,6],[-7,3],[-49,15],[-70,43],[-40,8],[4,27],[12,7],[32,-6],[64,14],[78,-9],[78,-9],[17,-7],[15,-13],[-18,-15],[-46,-21],[5,-16]],[[50542,8657],[13,4],[18,-2],[16,-10],[6,-19],[-8,-15],[-17,1],[-18,11],[-11,15],[1,4],[0,3],[0,3],[0,5]],[[48350,8764],[-11,-25],[3,-20],[23,-30],[-10,-9],[-55,-28],[-9,-1],[-7,5],[-5,13],[1,3],[2,2],[1,2],[-66,59],[-10,16],[28,-9],[16,0],[58,32],[20,2],[21,-12]],[[50894,8782],[12,-26],[-3,-30],[-12,-26],[-14,-19],[-27,-18],[-29,-12],[-59,-9],[-17,4],[-15,12],[-9,19],[-5,27],[19,18],[112,64],[24,7],[23,-11]],[[70055,8655],[5,-10],[0,-4],[-7,-8],[-8,-4],[-22,-2],[-72,18],[-11,10],[-31,53],[-4,9],[-3,9],[-4,20],[-1,15],[0,29],[-2,15],[3,8],[2,3],[3,3],[6,15],[11,15],[13,10],[13,-2],[3,-6],[1,-11],[2,-12],[5,-8],[0,-20],[4,-16],[7,-14],[7,-10],[9,-10],[10,-6],[10,-3],[5,-2],[4,-7],[2,-9],[2,-9],[3,-9],[4,-6],[4,-2],[23,-1],[4,-2],[3,-5],[1,-8],[-2,-7],[-2,-7],[-1,-6],[0,-2],[0,-1],[1,-2],[0,-1]],[[51124,8835],[23,28],[46,11],[48,-4],[29,-19],[13,-45],[-4,-40],[-17,-31],[-22,-17],[-37,-2],[-35,21],[-28,40],[-16,58]],[[51518,8863],[26,16],[26,2],[25,-14],[23,-32],[-22,-22],[-29,7],[-29,21],[-20,22]],[[94947,8872],[6,11],[9,3],[9,-4],[6,-10],[-9,-10],[-9,-2],[-8,4],[-4,8]],[[51742,8942],[20,0],[30,-8],[23,-17],[0,-25],[-9,-9],[-10,-1],[-10,6],[-28,26],[-10,13],[-6,15]],[[57434,8882],[15,-31],[13,-17],[4,-8],[1,-8],[-2,-9],[-7,-29],[-3,-9],[-6,-7],[-12,-4],[-10,1],[-21,9],[-11,1],[-16,-5],[-16,-15],[-14,-3],[-111,35],[-20,14],[-3,12],[-7,9],[-5,9],[-4,10],[-2,9],[8,13],[-1,9],[1,8],[2,7],[4,7],[7,9],[36,25],[6,6],[14,20],[9,9],[13,9],[17,7],[36,4],[36,-9],[17,-10],[7,-6],[5,-7],[4,-9],[9,-34],[7,-22]],[[50391,8991],[7,-14],[4,-19],[4,-32],[0,-1],[-26,-31],[-26,-42],[-5,-17],[-10,-45],[-7,-16],[-9,-6],[-4,11],[-2,22],[-7,26],[-16,29],[-16,19],[-13,26],[-4,52],[11,23],[17,11],[71,14],[18,-1],[13,-9]],[[53052,8987],[3,-18],[-22,-3],[-30,4],[-66,26],[-10,12],[27,4],[72,-8],[26,-17]],[[70177,9017],[6,-6],[16,3],[3,-2],[0,-11],[-47,-40],[-28,-11],[-13,20],[6,9],[6,5],[4,1],[3,-5],[7,3],[6,6],[5,7],[14,26],[5,6],[6,5],[0,-5],[0,-4],[0,-4],[1,-3]],[[54512,9189],[85,-7],[24,-15],[-13,-20],[-72,-31],[-6,-6],[-6,-6],[-5,-8],[-3,-8],[-3,-13],[0,-10],[1,-12],[0,-17],[-4,-14],[-13,-40],[-5,-11],[-14,0],[-63,50],[-58,15],[-27,19],[-10,35],[9,21],[12,19],[14,15],[12,9],[69,28],[76,7]],[[63298,10457],[11,-13],[2,0],[-36,-20],[-72,-13],[-18,3],[-16,9],[14,37],[7,11],[9,8],[11,4],[14,-2],[-4,-10],[-10,-9],[-11,-7],[-7,-3],[57,-12],[10,2],[10,5],[18,14],[3,1],[4,-1],[1,0],[3,-4]],[[83517,10853],[2,-3],[2,-3],[2,-1],[1,0],[6,-2],[9,2],[26,12],[8,0],[-93,-48],[-5,-1],[-6,5],[-3,7],[-1,9],[4,9],[2,4],[5,11],[2,4],[5,4],[5,1],[13,0],[12,-5],[2,-1],[2,-4]],[[83646,10922],[18,0],[0,-4],[-7,-12],[-16,-13],[-24,-12],[-24,-5],[-15,6],[17,10],[29,24],[22,6]],[[73794,10943],[30,-9],[8,-6],[11,-15],[29,-57],[-4,-12],[-14,-15],[-25,-19],[-48,-11],[-7,3],[7,14],[3,6],[5,5],[-7,0],[-68,37],[-10,12],[-8,15],[-8,18],[-6,21],[5,17],[9,8],[10,3],[39,-1],[23,-10],[15,-1],[10,-3],[1,0]],[[63548,10957],[9,-28],[-12,-9],[-47,3],[-54,-18],[-25,-1],[-8,25],[0,9],[2,9],[4,9],[9,8],[11,5],[97,-2],[14,-10]],[[74041,10967],[8,-9],[9,-2],[18,1],[-16,-15],[-34,-23],[-26,-7],[-16,2],[-8,4],[-14,14],[-8,10],[-2,9],[8,15],[10,10],[10,6],[52,6],[5,-1],[-1,-5],[0,-5],[2,-5],[3,-5]],[[73667,11047],[8,-8],[31,-14],[-16,-19],[-24,-5],[-24,6],[-16,18],[6,17],[4,19],[5,14],[12,3],[4,-5],[6,-18],[4,-8]],[[77385,11154],[2,5],[7,5],[11,4],[14,0],[41,-15],[26,-17],[-4,-8],[-28,-27],[-6,-4],[-7,-2],[-17,3],[-17,12],[-14,19],[-8,25]],[[77056,11145],[6,-12],[-9,-4],[-91,15],[-8,6],[-7,8],[10,22],[16,9],[17,1],[33,-8],[17,-12],[5,-5],[4,-6],[7,-14]],[[95173,11110],[-3,-4],[-13,-34],[-3,-4],[-3,-1],[-4,3],[-5,4],[-10,7],[-2,2],[-36,58],[-4,3],[-10,4],[9,8],[5,7],[2,7],[-1,4],[-4,1],[-2,3],[0,5],[2,10],[-1,5],[-2,5],[-3,3],[-6,3],[3,24],[4,2],[68,-110],[4,-6],[15,-9]],[[77862,11306],[1,-4],[2,-8],[0,-4],[-2,-9],[-5,-4],[-11,-3],[1,-1],[4,-5],[1,-2],[3,0],[4,0],[2,0],[-2,-2],[-13,-12],[-19,-6],[-19,1],[-10,6],[-4,10],[4,12],[21,26],[14,15],[8,4],[8,1],[7,-4],[2,-1],[1,-3],[2,-7]],[[76921,11351],[16,-12],[11,-18],[4,-21],[-5,-19],[-29,-23],[-69,-4],[-70,-5],[-14,3],[-5,15],[-12,8],[14,38],[8,16],[12,15],[14,9],[17,7],[19,2],[18,-2],[6,-4],[11,-10],[7,-3],[12,0],[24,9],[11,-1]],[[77999,11515],[48,-6],[10,-5],[5,-10],[-4,-15],[-13,-15],[-17,-8],[-40,-2],[-17,4],[-7,5],[-11,4],[-30,-9],[-18,-1],[-9,4],[-8,9],[38,38],[6,3],[14,4],[29,-5],[24,5]],[[75693,11559],[34,-13],[14,-14],[0,-21],[-25,-19],[-41,-4],[-37,12],[-18,31],[14,23],[18,10],[20,1],[21,-6]],[[77934,11737],[46,13],[57,1],[53,-19],[35,-49],[2,-27],[-8,-20],[-57,-54],[-16,-11],[-114,-12],[-12,4],[7,6],[-1,2],[-3,3],[-6,3],[-38,-3],[-10,3],[-9,9],[-6,15],[-2,23],[9,34],[23,34],[27,28],[23,17]],[[78691,11744],[28,-14],[5,-5],[3,-7],[-1,-8],[-4,-5],[-6,-4],[-16,-5],[-31,2],[-11,5],[-9,9],[-3,9],[3,28],[2,12],[-2,14],[-10,20],[-5,6],[-13,9],[-59,17],[-14,11],[0,4],[-7,28],[9,22],[16,8],[20,-2],[50,-25],[16,-14],[11,-19],[2,-20],[-8,-23],[3,-20],[5,-12],[8,-9],[18,-12]],[[24831,9715],[-1,1],[-1,3],[-3,5],[-2,5],[-2,5],[1,7],[3,3],[1,4],[0,6],[1,5],[1,4],[0,3],[1,2],[2,1],[5,0],[3,-1],[5,0],[2,-1],[4,-2],[4,-6],[3,-6],[0,-2],[0,-4],[1,-4],[0,-5],[2,-4],[-1,-7],[-3,-7],[-2,-1],[0,-1],[-3,0],[-6,0],[-4,0],[-4,-1],[-4,-1],[-2,-1],[-1,0]],[[86537,31752],[-53,45],[-47,31],[-11,2],[-12,-10],[-28,-37],[-44,-28],[-12,-4],[-26,1],[-42,12],[-65,0],[-12,7],[-31,0],[-6,-2],[-16,-10],[-37,3],[-53,-15],[-60,-4],[-19,-11],[-5,-2],[-24,0],[-16,-7],[-6,-1],[-18,1],[-6,-1],[-17,-12],[-4,-1],[-9,1],[-25,-7],[-3,-1],[-17,-10],[-44,-42],[-4,-9],[-9,-6],[-19,-25],[-121,-102],[-56,-39],[-70,-23],[-50,-35],[-6,-2],[-3,-2],[-5,-11],[-1,-2],[-68,-37],[-49,-12],[-6,-4],[-2,4],[-8,-6],[-33,2],[-32,-6],[-9,6],[-8,-6],[-23,-4],[-84,20],[-27,16],[-8,9],[-12,2],[-5,3],[-3,-2],[-11,-6],[-3,-4],[-4,-9],[-2,-3],[-7,-4],[-20,4],[-8,-7],[-14,-13],[-16,-15],[-19,-25],[-36,-50],[-37,-53],[-18,-9],[-38,-22],[-22,-23],[-45,-43],[-17,-10],[-5,-2],[-5,-3],[-27,-57],[-19,-20],[-24,-15],[-11,-6],[-52,-15],[-45,-14],[-12,-8],[-5,-7],[-12,-21],[-3,-5],[-6,-3],[-6,-7],[-10,-18],[-13,-31],[-6,-21],[-4,-20],[-1,-25],[-2,-13],[-3,-9],[-4,-9],[-10,-41],[0,-5],[0,-4],[0,-5],[-1,-6],[-3,-14],[-2,-14],[-5,-27],[-1,-11],[-1,-28],[-3,-12],[-5,-5],[-6,-2],[-6,-6],[-4,-7],[-3,-9],[0,-2],[0,-1],[0,-3],[0,-2],[-2,-3],[-12,-14],[-16,-33],[-4,-14],[-2,-12],[-1,-6],[1,-8],[1,-4],[0,-4],[-3,-6],[-5,-7],[-12,-10],[-5,-5],[-2,-6],[-4,-12],[-1,-3],[-3,0],[-9,1],[-4,-5],[-11,-32],[-4,-1],[-5,5],[-4,7],[-2,7],[-3,5],[-22,5],[-11,-7],[-8,-17],[-13,-33],[-10,-8],[-1,1],[-1,2],[-2,1],[-1,0],[-2,-2],[-3,-5],[-2,-1],[-9,-1],[-2,4],[-4,37],[-6,21],[-8,15],[-10,10],[-7,1],[-4,-2],[-4,-3],[-11,-2],[-21,-15],[-10,-4],[-7,0],[-3,3],[-5,11],[-3,2],[-4,-1],[-8,-7],[-24,1],[-11,-3],[-9,-10],[2,-8],[0,-7],[-3,-7],[-3,-6],[-6,10],[-1,2],[-2,1],[-1,2],[-1,1],[-6,-8],[-3,1],[-28,16],[-11,1],[-10,-6],[-9,-12],[-4,-8],[-1,-7],[1,-20],[-2,-11],[-5,4],[-5,8],[-2,5],[-2,-2],[-3,-6],[-1,-5],[-2,-3],[-26,1],[-6,3],[0,4],[9,16],[0,10],[-6,22],[-2,21],[-2,8],[-2,4],[-6,9],[-7,18],[-2,3],[-3,-1],[-4,-4],[-12,0],[-7,-6],[-9,-19],[-5,-4],[-4,-2],[-10,-9],[-5,-1],[-5,4],[-9,14],[-4,3],[-4,0],[-5,3],[-3,1],[-3,-2],[-3,-4],[-2,-4],[-2,-3],[-6,1],[-4,7],[-3,8],[-5,5],[-3,1],[-7,6],[-5,6],[-3,1],[-6,-2],[-46,4],[-5,-3],[-10,-8],[-14,-2],[-5,-4],[-13,-14],[-1,-1],[-1,3],[-7,7],[-7,5],[-3,1],[-5,-2],[-11,-8],[-5,-2],[-8,0],[-3,-1],[-3,-4],[-6,5],[-8,3],[-14,1],[-8,-5],[-7,-8],[-7,-5],[-7,1],[-5,-4],[-49,0],[-2,-1],[-3,-3],[-2,-5],[0,-5],[0,-4],[-1,-4],[-4,-5],[-29,-20],[-8,-2],[-4,7],[-28,14],[-28,4],[-5,-2],[-10,-9],[-7,-1],[-4,2],[-8,10],[-5,4],[-5,1],[-5,-2],[-5,-3],[-4,-4],[-7,-11],[-4,-4],[-6,-1],[-14,-2],[-14,-10],[-4,-5],[-17,-32],[-8,-9],[-17,-13],[-8,-11],[3,-4],[-2,-6],[-3,-4],[-7,-4],[-2,-5],[-10,-39],[-1,-5],[-10,-13],[-4,-12],[-2,-16],[-2,-16],[0,-14],[4,-13],[7,-5],[7,-3],[7,-7],[-3,-3],[-4,-1],[-6,-4],[-9,-4],[-10,18],[-10,2],[-6,-9],[-3,-15],[2,-17],[5,-11],[-3,-3],[-6,-10],[-1,-3],[0,-3],[0,-3],[-3,1],[-1,2],[-3,10],[-2,13],[-4,4],[-5,-1],[-4,-4],[-3,-4],[-1,-4],[-2,-12],[0,-13],[-1,-8],[-4,-3],[-4,-3],[-3,0],[-1,5],[-1,7],[-1,5],[-2,3],[-4,3],[-3,1],[-5,-2],[-3,1],[-3,3],[-4,8],[-2,2],[-51,15],[-3,-1],[-5,-5],[-2,-1],[-14,3],[-2,0],[12,-22],[2,-6],[-4,-4],[-18,-4],[-6,-3],[-10,-14],[-3,-3],[-4,-6],[-1,-12],[2,-12],[7,-3],[-9,-19],[-5,-7],[-11,-6],[-9,-12],[-6,-5],[-25,-10],[-12,-8],[-10,-14],[-4,-8],[-5,-21],[-4,-10],[-2,-12],[0,-12],[3,-18],[0,-14],[-4,-5],[-12,2],[-22,-3],[-5,-4],[-12,-13],[-9,-2],[-2,-2],[-1,-6],[2,-3],[3,-1],[1,-2],[4,-10],[2,-11],[-1,-9],[-5,-2],[-3,2],[-14,18],[-2,-4],[-2,4],[-3,-4],[-14,-8],[-3,-3],[-2,-1],[-2,-1],[-3,1],[-5,3],[-3,1],[-2,-1],[-5,-3],[-2,-1],[-2,1],[-1,2],[-2,2],[-2,0],[-1,-2],[-2,-5],[-1,-1],[-16,-3],[-4,-3],[-1,-9],[4,-9],[4,-6],[8,-6],[3,0],[1,5],[-1,5],[-1,6],[-1,5],[3,2],[4,-3],[5,-20],[5,-5],[10,3],[3,-2],[-1,-9],[-4,2],[-3,-2],[-6,-8],[-5,-2],[-11,2],[-9,5],[-14,22],[-17,12],[-18,3],[-4,-2],[-8,-7],[-4,-11],[-1,-16],[-1,-18],[-8,7],[-14,20],[-10,5],[-9,2],[-3,2],[-16,18],[-4,5],[-8,8],[-5,4],[-3,-1],[-2,-8],[-5,1],[-11,9],[-5,1],[-2,-1],[-2,-2],[-3,-1],[-3,2],[-3,4],[-3,2],[-5,-4],[-4,-8],[-5,-21],[-3,4],[-6,10],[-3,3],[-5,1],[-7,5],[-4,2],[-3,-2],[-4,-2],[-3,-1],[-3,3],[-3,3],[-4,3],[-5,0],[-3,-3],[-6,-11],[-5,-8],[-6,-2],[-9,3],[-4,3],[-11,14],[-11,5],[-4,3],[-2,-4],[0,-2],[-1,-2],[1,-4],[-20,0],[-3,-6],[-2,-8],[-6,5],[-9,13],[-15,3],[-5,7],[-3,2],[-3,1],[-7,-1],[-2,2],[-7,14],[-11,14],[-5,10],[2,5],[24,-9],[5,-4],[3,0],[1,4],[-1,6],[-3,6],[-3,3],[-10,5],[-4,8],[-4,10],[-4,7],[-1,2],[-2,2],[-2,-1],[-2,-3],[7,-24],[-6,-8],[-13,3],[-11,9],[-12,12],[-42,23],[-21,5],[-3,0],[-5,-3],[-4,0],[-1,3],[1,7],[1,10],[-2,11],[-7,15],[-4,20],[-5,13],[-8,14],[-39,81],[-37,56],[-12,13],[-10,4],[-2,2],[-2,5],[-2,6],[-1,5],[-3,2],[-2,1],[-43,40],[-13,8],[-7,2],[-22,-2],[-6,-5],[-7,-24],[-5,-8],[-3,11],[-25,49],[-2,10],[-1,16],[1,23],[-1,10],[-2,11],[-7,31],[-1,5],[1,13],[-1,82],[-3,24],[0,14],[1,9],[4,27],[2,10],[-4,15],[-4,21],[0,23],[4,16],[7,14],[2,8],[-1,13],[-3,32],[-1,12],[4,0],[12,-10],[7,-15],[6,-18],[8,-13],[10,-10],[11,-7],[11,-4],[13,0],[12,4],[12,8],[10,10],[8,11],[23,49],[16,51],[9,34],[4,29],[2,7],[3,5],[2,0],[3,-3],[6,-2],[7,7],[2,15],[-1,37],[-1,10],[-2,-1],[-1,-7],[-2,-21],[-3,-28],[-2,0],[1,99],[1,57],[-4,51],[-10,75],[-3,49],[-3,20],[0,20],[3,23],[5,18],[12,34],[7,13],[-2,-23],[-15,-34],[0,-28],[8,-44],[7,-24],[6,-5],[2,9],[-1,14],[-6,22],[-3,8],[-1,5],[0,10],[-1,5],[-1,8],[-4,5],[0,4],[2,3],[3,0],[4,-6],[3,-2],[13,-1],[4,6],[1,15],[-1,14],[-5,5],[-5,3],[-2,5],[-2,12],[0,6],[1,4],[3,11],[2,5],[3,22],[0,22],[-4,18],[-7,11],[7,14],[1,7],[-2,11],[-4,7],[-8,8],[-3,10],[13,0],[4,5],[2,13],[1,12],[3,22],[0,13],[-2,6],[-3,8],[-1,6],[1,9],[1,7],[-1,7],[-3,10],[0,11],[4,76],[-6,91],[-6,49],[-5,25],[-21,60],[-15,67],[-27,77],[-20,101],[-19,84],[-21,67],[-16,30],[-4,37],[0,6],[-1,8],[-17,64],[-1,5],[-1,12],[-9,49],[-2,10],[1,22],[-1,12],[-6,46],[-3,18],[-1,2],[-2,7],[-1,3],[1,4],[2,6],[1,4],[0,13],[0,7],[-1,4],[-2,4],[-6,7],[-2,3],[-2,10],[1,14],[1,14],[1,13],[0,6],[-3,12],[-1,14],[-3,5],[-2,5],[-2,5],[-1,21],[7,76],[-1,13],[-4,21],[-1,9],[-2,51],[2,51],[4,46],[5,34],[1,12],[-1,13],[-7,30],[-4,25],[-1,14],[-1,12],[-1,9],[-5,21],[-4,35],[-15,74],[-3,10],[-50,106],[-1,6],[-9,27],[-3,11],[-3,24],[-5,8],[5,22],[1,27],[-2,27],[-17,79],[-6,19],[-24,53],[-15,46],[-1,9],[-2,9],[-13,37],[-4,6],[-10,9],[-4,8],[-22,50],[-3,17],[-2,6],[0,4],[-1,20],[0,6],[-11,67],[-2,25],[0,26],[1,12],[5,23],[1,12],[1,5],[4,13],[1,6],[0,7],[-19,142],[-18,78],[-24,85],[-45,150],[-30,85],[-18,59],[-16,31],[-19,39],[-30,61],[-4,7],[-8,16],[-4,11],[0,13],[-2,13],[2,8],[-4,12],[-4,18],[-7,29],[-9,15],[-10,22],[-5,15],[1,7],[7,-9],[6,-11],[6,-4],[8,-3],[1,-15],[4,-14],[1,22],[1,19],[2,20],[-1,23],[-1,22],[2,19],[4,16],[4,-74],[3,-67],[-1,-24],[2,-21],[4,-12],[4,-16],[1,-12],[5,-3],[-3,19],[-5,26],[-1,19],[3,28],[4,11],[1,65],[-7,34],[2,18],[7,-29],[2,-68],[5,12],[3,-1],[8,-1],[-1,-25],[3,-12],[0,-17],[4,-8],[1,-12],[2,-10],[3,-16],[2,-29],[-4,-14],[1,-20],[-4,-23],[2,-4],[6,6],[0,21],[0,14],[2,10],[3,23],[-4,25],[1,10],[0,13],[4,4],[4,-12],[2,-10],[1,-12],[2,-17],[-2,-18],[2,-17],[2,-20],[-3,-15],[3,-11],[0,-23],[-1,-22],[5,0],[3,8],[1,8],[0,12],[2,6],[5,12],[-1,11],[0,14],[2,4],[5,-25],[0,-11],[0,-16],[0,-13],[-3,-14],[1,-9],[-2,-6],[4,-3],[5,1],[1,-8],[1,-12],[0,-11],[5,0],[0,13],[2,10],[5,3],[6,5],[7,3],[4,5],[2,-8],[9,1],[0,21],[6,6],[5,5],[5,14],[4,17],[1,17],[-2,25],[-2,14],[2,12],[1,21],[-5,14],[-7,14],[-8,17],[-9,15],[-9,2],[-18,10],[-1,12],[0,10],[-3,11],[-6,16],[-10,25],[-10,4],[-1,19],[-1,12],[2,17],[-4,5],[-2,17],[1,18],[-11,13],[2,16],[-2,13],[-2,10],[-3,6],[-3,9],[-4,6],[-2,8],[0,7],[-2,9],[-4,7],[-7,22],[-2,16],[1,12],[1,16],[4,12],[5,18],[3,18],[7,16],[4,19],[3,3],[1,-19],[2,-22],[-1,-14],[3,-10],[4,1],[2,-2],[2,-7],[6,0],[3,-20],[4,-23],[6,-19],[9,-8],[4,-18],[7,-7],[7,-2],[-1,-19],[-2,-11],[2,-12],[1,-4],[5,-4],[3,-3],[1,-12],[-2,-9],[-5,-9],[1,-11],[0,-18],[-2,-13],[-3,-15],[1,-10],[-2,-17],[-1,-26],[-2,-16],[6,-19],[0,-10],[10,0],[1,-7],[8,2],[15,50],[5,25],[3,21],[-4,26],[0,7],[-3,10],[-1,6],[1,8],[0,2],[2,-1],[1,-1],[6,-2],[7,-15],[-1,-13],[-1,-20],[2,-34],[-1,-18],[6,-11],[5,-1],[-3,-30],[2,-22],[4,-19],[0,-14],[2,-15],[2,-13],[14,-35],[13,-27],[5,-7],[5,0],[5,11],[6,9],[3,12],[8,7],[6,4],[3,18],[5,17],[-4,25],[-4,16],[-2,17],[-2,13],[2,17],[2,12],[3,25],[2,2],[1,8],[0,8],[0,6],[-3,13],[-7,23],[-1,15],[1,4],[2,-3],[4,-10],[2,-2],[3,0],[4,2],[3,2],[1,1],[2,-1],[-2,11],[-3,6],[-3,7],[-1,13],[2,11],[4,14],[2,14],[-1,12],[-5,7],[-14,16],[-10,8],[-2,9],[-1,10],[-3,4],[1,10],[-2,11],[-4,8],[-4,4],[-1,2],[-1,12],[-2,2],[-10,12],[-3,8],[-7,38],[-18,48],[-6,23],[-18,87],[-2,13],[-1,10],[-10,33],[-2,15],[-2,7],[-4,6],[-11,14],[-10,7],[-6,12],[-4,14],[-2,20],[-4,13],[-1,12],[-2,7],[0,5],[1,5],[4,8],[1,5],[0,13],[-2,12],[-5,10],[-8,2],[-1,12],[-1,13],[0,12],[3,9],[2,11],[-1,15],[-2,15],[-2,10],[-17,50],[-29,66],[-6,21],[-5,23],[-2,27],[-2,97],[1,13],[2,8],[7,14],[3,12],[0,13],[-3,26],[-2,20],[0,12],[2,10],[4,7],[3,8],[3,10],[1,14],[0,13],[-1,11],[1,10],[9,22],[3,12],[6,52],[4,9],[5,4],[12,64],[1,6],[2,2],[2,2],[2,3],[1,7],[2,2],[7,7],[6,3],[1,6],[2,7],[2,5],[10,14],[3,9],[2,15],[0,4],[3,8],[1,5],[0,40],[3,24],[0,13],[-3,51],[-5,36],[-1,11],[1,14],[1,6],[1,5],[2,5],[3,4],[3,4],[5,13],[1,14],[-1,72],[-1,18],[-5,15],[-3,13],[-4,38],[-13,28],[-3,3],[-3,3],[-4,2],[-5,0],[4,22],[0,13],[-3,12],[-1,4],[0,20],[-1,8],[-1,5],[-1,5],[1,9],[3,5],[6,6],[3,5],[6,26],[4,7],[1,5],[2,27],[2,14],[3,11],[9,21],[3,10],[23,130],[2,13],[0,12],[2,12],[6,21],[7,36],[18,55],[7,13],[9,11],[5,4],[6,2],[5,3],[5,5],[4,2],[4,-6],[1,-12],[-3,-7],[-4,-7],[-2,-9],[-1,-11],[-4,-25],[-8,-109],[-4,-20],[-2,-21],[5,-20],[2,-8],[5,-22],[1,-9],[-3,-22],[-1,-11],[4,-3],[2,6],[2,11],[3,8],[5,-5],[1,-9],[0,-12],[-2,-11],[-3,-1],[-8,-18],[-1,-6],[0,-9],[2,-15],[-4,-23],[3,-16],[7,-10],[9,0],[4,8],[3,13],[4,11],[9,5],[3,2],[3,5],[3,2],[4,-3],[2,-8],[1,-8],[3,-7],[5,-4],[5,5],[3,5],[1,7],[0,14],[1,5],[2,12],[1,7],[0,13],[2,13],[8,35],[2,16],[3,16],[1,4],[7,19],[0,7],[-1,8],[1,5],[2,2],[3,1],[3,2],[2,22],[5,22],[0,12],[-1,5],[-3,7],[-2,4],[0,4],[-1,11],[0,7],[2,5],[4,-9],[6,-12],[3,-6],[13,51],[4,18],[0,1],[1,0],[1,1],[1,2],[1,3],[1,9],[2,24],[2,9],[7,3],[2,2],[4,10],[2,5],[22,16],[42,52],[11,7],[11,-6],[13,10],[3,4],[3,5],[3,5],[3,0],[2,-8],[33,40],[64,50],[7,7],[2,11],[2,10],[4,10],[8,15],[18,48],[7,12],[10,15],[40,37],[3,5],[3,21],[8,21],[5,24],[8,18],[9,15],[6,7],[4,2],[14,13],[9,7],[4,4],[4,6],[10,4],[8,10],[7,16],[4,23],[0,27],[2,7],[6,2],[3,-2],[5,-5],[5,-4],[7,-1],[5,5],[7,13],[4,3],[12,0],[12,3],[5,5],[8,13],[3,3],[2,1],[2,3],[2,4],[2,14],[3,2],[5,0],[10,7],[32,45],[12,25],[10,34],[5,6],[-2,9],[4,3],[3,1],[2,0],[3,-2],[3,-3],[0,-2],[-3,-1],[-4,-5],[-1,-12],[-1,-24],[-2,-5],[-5,-9],[-1,-6],[0,-8],[1,-4],[14,-24],[5,-4],[7,-1],[5,3],[6,6],[6,7],[2,6],[2,5],[30,27],[2,1],[5,-8],[2,-2],[3,1],[3,3],[7,14],[3,6],[2,0],[2,-4],[0,-4],[0,-3],[0,-5],[-2,-9],[0,-3],[0,-3],[3,-6],[1,-1],[2,-7],[4,-7],[21,-17],[11,-6],[11,-3],[24,3],[21,10],[8,8],[10,15],[7,6],[5,-2],[4,-7],[4,0],[3,7],[1,2],[1,-2],[2,-4],[0,-3],[4,3],[11,10],[2,-5],[3,6],[11,8],[6,7],[6,2],[2,2],[3,6],[3,13],[2,5],[3,7],[2,1],[7,2],[2,3],[4,10],[1,5],[-1,11],[1,6],[1,5],[55,77],[4,3],[3,2],[2,2],[2,1],[3,0],[1,-4],[0,-6],[1,-4],[4,5],[6,-5],[5,4],[4,6],[5,4],[3,1],[6,5],[2,2],[4,-2],[1,-5],[1,-5],[3,-5],[4,1],[12,9],[39,15],[1,-1],[3,1],[1,1],[1,1],[1,1],[8,4],[3,1],[3,-1],[2,-2],[2,-3],[2,-2],[4,-1],[5,0],[6,3],[10,15],[6,3],[7,1],[6,3],[7,11],[6,15],[8,31],[21,48],[3,19],[2,13],[3,5],[4,4],[4,6],[9,6],[2,3],[2,5],[1,6],[1,5],[7,9],[7,-3],[12,-21],[-1,16],[1,8],[3,4],[5,1],[6,-2],[22,-14],[11,-4],[7,-1],[5,-1],[12,-9],[5,-2],[2,2],[4,6],[1,0],[3,-3],[2,-5],[0,-5],[2,-5],[10,-13],[7,-6],[5,-3],[7,1],[9,12],[4,3],[1,2],[6,16],[2,1],[6,-3],[3,0],[4,6],[0,6],[0,6],[0,6],[5,6],[6,1],[13,-2],[29,11],[45,15],[47,9],[36,23],[78,62],[43,38],[42,38],[48,67],[10,22],[4,2],[4,5],[33,70],[29,78],[29,90],[5,34],[5,14],[2,8],[1,12],[0,6],[2,6],[4,8],[2,6],[4,28],[6,24],[3,8],[1,14],[1,6],[-1,8],[-2,5],[-3,4],[-2,5],[-2,16],[3,1],[5,-4],[5,1],[2,4],[3,2],[10,1],[2,3],[13,24],[2,10],[1,13],[-2,8],[-3,5],[-8,10],[7,12],[4,9],[7,34],[4,15],[3,6],[4,-2],[4,-5],[4,-4],[6,-1],[6,5],[31,47],[6,14],[3,18],[2,6],[17,16],[6,8],[4,10],[7,22],[1,-2],[1,-3],[2,-3],[4,17],[2,8],[9,6],[20,22],[6,17],[5,20],[2,14],[-1,22],[-2,16],[-4,10],[-9,7],[-8,4],[-10,2],[-9,-5],[-5,-17],[-2,0],[-1,4],[-1,3],[-2,2],[-2,3],[8,19],[3,20],[0,23],[-4,40],[1,37],[0,6],[2,6],[0,7],[-1,6],[-4,10],[-3,12],[-1,6],[-1,15],[-4,18],[0,6],[-3,9],[0,5],[-1,62],[3,70],[4,27],[2,20],[2,10],[3,8],[5,4],[2,8],[14,36],[4,7],[-2,6],[-3,1],[-2,3],[3,12],[3,7],[38,69],[10,13],[-1,-11],[1,-7],[4,-1],[4,7],[1,13],[-2,10],[-1,7],[5,3],[5,-2],[2,-6],[2,-7],[2,-8],[4,-4],[14,-6],[-3,9],[-6,28],[-9,21],[-1,7],[1,7],[1,3],[1,3],[1,3],[1,-2],[1,-1],[1,1],[1,4],[0,8],[0,2],[2,9],[3,6],[3,6],[5,4],[2,-9],[2,-5],[3,-3],[5,0],[2,2],[4,5],[2,1],[7,0],[2,0],[4,5],[3,6],[3,4],[5,2],[4,-2],[13,-11],[-16,30],[-5,16],[0,20],[1,4],[2,9],[1,5],[0,20],[1,6],[2,9],[4,8],[3,4],[8,-2],[4,1],[3,5],[2,7],[1,8],[3,6],[4,3],[3,12],[2,24],[4,21],[6,0],[19,24],[3,-4],[0,-8],[-6,-16],[12,-11],[5,-7],[-1,-10],[-4,-5],[-3,1],[-4,2],[-3,2],[-4,-2],[-1,-5],[-2,-14],[3,-14],[-8,-30],[3,-9],[1,-13],[1,-5],[3,-2],[5,7],[4,1],[1,-6],[0,-14],[1,-16],[4,-10],[7,5],[4,-11],[2,-4],[3,-1],[3,1],[1,4],[1,4],[2,5],[2,1],[0,-6],[-1,-9],[-1,-6],[-3,-4],[-2,0],[-2,-2],[-2,-8],[0,-14],[3,-10],[5,-7],[5,-2],[3,-4],[1,-10],[1,-11],[-1,-7],[-3,-22],[0,-13],[4,-5],[7,-4],[4,-8],[5,-21],[12,-22],[2,-8],[0,-24],[1,-10],[3,-9],[9,-22],[6,-14],[2,-15],[2,-10],[5,-14],[3,-16],[-2,-14],[5,-22],[3,-8],[9,-9],[4,-12],[3,-12],[2,-3],[3,-9],[4,-7],[3,-8],[3,-24],[8,-18],[4,-10],[1,-11],[2,-23],[1,-9],[0,-2],[2,2],[2,6],[1,6],[0,33],[0,4],[-2,9],[-5,21],[0,6],[0,25],[2,26],[1,7],[5,14],[1,7],[0,7],[0,7],[0,7],[1,5],[2,6],[1,6],[0,13],[1,7],[2,5],[3,3],[1,1],[1,-1],[2,-1],[0,12],[-1,7],[-5,10],[-12,36],[-2,31],[1,10],[4,15],[1,9],[3,-7],[3,0],[2,2],[3,1],[4,-1],[2,-1],[3,-8],[1,-4],[3,-27],[1,2],[2,4],[2,2],[4,-3],[6,-8],[5,-10],[2,-9],[0,-6],[1,-6],[2,-5],[2,-3],[3,-5],[6,-6],[3,-3],[4,-10],[3,-12],[4,-11],[5,-4],[7,0],[3,1],[1,5],[-1,5],[-3,2],[-3,1],[-3,2],[-8,16],[-5,19],[-6,46],[-4,20],[-1,12],[2,5],[4,-3],[10,-13],[3,-4],[1,12],[-3,8],[-4,7],[-2,11],[2,9],[8,13],[1,7],[2,9],[5,6],[6,5],[4,6],[3,11],[2,13],[-2,11],[-4,5],[-3,-23],[-5,-11],[-19,-14],[-12,-5],[-7,7],[-10,38],[-1,11],[-3,23],[-2,9],[-5,7],[-9,9],[-4,6],[-9,18],[-5,5],[-24,7],[0,2],[1,5],[5,6],[6,3],[4,6],[-3,13],[11,12],[4,6],[0,11],[-3,6],[-12,-2],[-6,4],[3,-18],[0,-3],[-9,1],[-4,2],[-1,8],[-2,3],[-8,11],[0,1],[-3,7],[-1,0],[-1,2],[-2,2],[-1,3],[-1,5],[12,-7],[4,-1],[3,3],[-2,7],[-6,15],[7,-3],[9,-18],[6,-4],[7,-3],[7,-7],[7,-5],[7,3],[-3,6],[-4,3],[-9,3],[6,7],[8,2],[5,3],[-33,35],[-9,6],[0,5],[9,-4],[3,1],[2,10],[26,-19],[18,-1],[-7,13],[-4,5],[-4,2],[-2,2],[-2,4],[-3,8],[-1,4],[3,3],[3,0],[3,-6],[5,-4],[5,-2],[4,-1],[0,5],[1,9],[0,9],[-1,6],[-4,2],[-11,1],[-3,3],[-1,4],[-2,6],[-3,5],[-2,3],[-3,-2],[-2,-2],[0,-3],[3,-1],[1,-1],[0,-3],[-2,-3],[-2,-1],[-2,2],[-2,3],[-1,4],[-1,3],[-6,7],[-3,6],[-2,7],[7,3],[3,11],[-2,12],[-4,7],[2,14],[2,5],[3,5],[1,-3],[4,-3],[1,2],[-2,12],[27,4],[8,-4],[1,12],[2,-3],[3,-8],[2,-5],[6,0],[1,0],[1,-3],[2,-8],[1,-1],[3,-2],[2,-3],[1,-5],[-2,-5],[-2,0],[-6,4],[-2,-2],[1,-7],[5,-5],[6,-3],[5,-1],[-4,-8],[-8,-4],[-8,-1],[-7,-3],[20,-29],[7,-7],[4,-2],[3,0],[2,-3],[2,-7],[1,-10],[-2,-7],[-2,-1],[-2,6],[-4,-5],[5,-28],[3,-8],[1,8],[2,0],[1,-3],[2,-2],[1,-3],[1,12],[-1,23],[2,10],[-1,9],[4,0],[6,-5],[4,-4],[2,-4],[4,-9],[5,-6],[3,4],[-10,34],[-2,16],[10,5],[0,4],[-6,6],[-6,9],[-6,11],[-3,10],[6,-2],[11,-11],[7,-3],[6,0],[3,-2],[1,-4],[1,-5],[3,0],[6,3],[11,-4],[5,-4],[6,-9],[5,-6],[1,-3],[8,-43],[3,-8],[3,-4],[22,-4],[9,-5],[3,2],[6,25],[6,8],[4,-1],[7,-13],[6,-7],[7,-4],[33,-4],[9,0],[7,7],[2,-4],[7,5],[12,3],[12,-2],[5,-8],[5,-11],[10,-5],[11,3],[7,11],[-6,2],[-12,-4],[-4,4],[-5,7],[-5,3],[-10,4],[-16,18],[-28,11],[-6,0],[-21,-6],[-4,-5],[-2,-2],[-6,9],[0,-1],[-1,-2],[-2,-1],[-4,0],[-5,1],[-3,5],[-2,18],[-1,4],[-1,3],[-1,3],[1,7],[2,12],[1,7],[-1,6],[-3,3],[-1,5],[2,8],[1,8],[0,7],[1,6],[7,3],[2,4],[1,7],[0,43],[1,7],[3,4],[3,-1],[3,-5],[2,-7],[0,-9],[-1,-8],[1,-8],[1,-3],[6,-13],[4,-10],[2,-10],[3,12],[4,16],[7,11],[7,-3],[-2,12],[0,41],[-1,22],[2,7],[7,0],[-3,11],[0,13],[1,22],[3,10],[6,10],[7,2],[3,-11],[2,0],[3,14],[1,12],[2,9],[7,9],[-10,7],[-5,2],[-13,-2],[-3,-2],[-3,-5],[-6,-25],[-8,-16],[-12,-56],[-8,-17],[-1,8],[1,6],[1,6],[1,9],[-1,5],[-2,4],[-2,4],[-2,19],[-5,31],[-4,10],[1,-7],[-1,-7],[-1,-3],[-2,1],[-1,-4],[-2,-3],[-3,-6],[-2,42],[-1,9],[-3,11],[0,13],[0,13],[2,6],[-3,17],[-1,7],[0,5],[1,2],[2,-2],[1,-5],[2,0],[0,7],[0,7],[1,6],[1,4],[4,-20],[2,13],[0,15],[-2,11],[-6,-3],[2,29],[-2,12],[-6,8],[4,2],[4,-3],[4,-4],[2,-1],[1,3],[5,3],[1,3],[0,18],[6,13],[9,1],[9,-8],[8,-13],[3,-3],[6,-2],[5,1],[4,2],[0,43],[0,4],[1,4],[1,2],[2,-2],[1,-4],[-2,-12],[0,-6],[3,-9],[4,-4],[4,3],[3,10],[-5,8],[-1,15],[3,15],[4,11],[9,8],[1,2],[-1,6],[-6,1],[0,7],[-7,-10],[-3,-1],[-2,7],[1,9],[3,2],[3,1],[2,4],[0,9],[-3,2],[-3,0],[-3,2],[-1,4],[0,6],[1,14],[5,-6],[2,-1],[2,-1],[0,1],[0,3],[2,3],[1,1],[1,-2],[1,-9],[0,-3],[2,-1],[10,-5],[1,-5],[-2,-9],[-4,-15],[2,-1],[10,20],[4,6],[2,-2],[3,-9],[3,-2],[3,-3],[-1,-7],[-1,-8],[-2,-6],[6,1],[7,3],[4,0],[6,-3],[4,-5],[7,-17],[1,-4],[1,-4],[2,-2],[5,-3],[2,-2],[1,-2],[2,-3],[-1,-9],[-4,-18],[1,-5],[3,-1],[3,3],[2,4],[2,2],[3,-2],[0,-5],[-1,-5],[1,-4],[6,-5],[1,8],[0,12],[3,9],[6,-3],[20,-30],[8,-7],[-4,9],[-11,18],[-2,7],[-14,24],[0,7],[4,36],[3,5],[4,5],[4,5],[4,1],[0,4],[-4,0],[-4,3],[-3,6],[-2,8],[-1,-12],[-5,0],[-6,7],[-4,7],[-3,-2],[-12,-16],[-9,-7],[-6,-9],[-3,-1],[-4,4],[-1,7],[-1,13],[-1,1],[-1,0],[-1,1],[-1,4],[0,5],[1,3],[3,7],[3,4],[3,3],[1,3],[-1,6],[1,5],[4,4],[3,2],[5,3],[1,3],[2,0],[4,-7],[4,-1],[6,11],[8,24],[-3,3],[-6,3],[-3,2],[-2,-17],[-1,-2],[-2,0],[-2,2],[-2,3],[0,6],[-2,-3],[-3,-11],[0,-2],[-2,-1],[-7,-7],[-12,-21],[-5,-7],[0,10],[1,3],[1,3],[-2,4],[-2,-8],[-2,0],[1,6],[0,13],[-1,2],[1,5],[3,7],[0,5],[-2,2],[-5,-3],[-3,2],[2,14],[1,0],[3,4],[1,2],[1,7],[0,3],[3,3],[3,2],[4,2],[3,1],[2,-1],[4,-6],[6,-2],[2,-3],[4,-8],[7,21],[4,8],[2,-9],[2,9],[1,14],[-1,12],[-5,6],[1,4],[0,11],[-1,13],[-3,8],[4,-1],[3,-3],[5,-8],[2,5],[3,6],[3,2],[3,-5],[0,-10],[-5,-12],[0,-10],[2,4],[1,-21],[4,5],[3,13],[3,3],[0,-2],[1,-3],[2,-3],[1,0],[0,-7],[0,-3],[-2,-3],[0,-6],[4,-22],[1,-4],[1,-4],[4,-18],[3,-7],[2,4],[-1,4],[0,4],[0,6],[2,5],[0,5],[-4,31],[-4,11],[0,10],[5,10],[0,-12],[2,-8],[4,-4],[4,-1],[4,-3],[2,-5],[2,-4],[5,4],[1,-7],[1,-4],[2,-2],[5,-11],[1,-4],[-1,-4],[-2,-4],[4,-8],[7,-6],[5,-1],[0,7],[8,3],[17,-8],[3,7],[0,10],[-2,3],[-8,-3],[-3,2],[-3,6],[-1,6],[0,6],[1,1],[2,1],[2,1],[1,3],[-1,5],[-2,1],[-2,1],[-1,3],[-1,5],[1,2],[3,1],[2,2],[5,9],[7,5],[0,6],[-4,4],[-9,-7],[-5,3],[-3,9],[-2,-1],[-3,-1],[-2,1],[-1,5],[-1,2],[-2,-1],[-1,-1],[-1,-1],[0,-1],[-3,-1],[-2,-1],[-3,0],[-2,6],[0,5],[2,4],[2,7],[-3,0],[-3,-3],[-3,-3],[0,-2],[-3,3],[-1,7],[-3,2],[-2,-1],[-1,-2],[-1,-2],[-3,1],[-2,3],[-3,4],[-1,3],[4,2],[2,3],[1,5],[1,6],[1,3],[3,1],[5,3],[3,0],[1,-3],[0,-4],[1,-4],[4,-1],[4,1],[1,3],[0,5],[-2,7],[6,6],[-3,9],[-8,8],[-10,-3],[-1,6],[-7,3],[-3,8],[-1,31],[-2,5],[-4,-3],[-2,-1],[-1,2],[-1,7],[-1,2],[-2,0],[-1,1],[-1,13],[2,4],[4,0],[3,-1],[3,2],[0,4],[-1,4],[0,5],[2,4],[1,0],[1,-1],[2,-1],[4,1],[-3,9],[1,10],[4,3],[10,-6],[2,1],[0,11],[3,1],[3,1],[5,9],[-5,3],[-7,-2],[-5,1],[-2,10],[3,12],[6,11],[7,5],[5,-4],[2,0],[2,9],[2,5],[1,4],[1,17],[1,7],[2,2],[2,-3],[0,-39],[-1,-7],[-2,-15],[3,12],[5,8],[4,8],[1,12],[4,-8],[9,-47],[0,-4],[1,2],[1,9],[-2,13],[1,6],[5,-3],[0,7],[0,7],[1,6],[3,4],[-2,3],[-1,4],[0,4],[1,6],[8,-12],[-2,16],[0,9],[2,7],[2,3],[2,0],[2,-2],[2,-3],[2,-2],[5,1],[2,-1],[0,-10],[-3,-8],[-4,-6],[-1,-4],[3,-5],[5,0],[5,2],[4,3],[-1,6],[0,5],[1,9],[1,0],[1,0],[1,1],[1,3],[0,3],[-2,3],[0,4],[3,32],[2,14],[1,5],[-2,10],[-4,10],[-2,10],[1,8],[0,6],[-2,11],[0,12],[3,10],[0,4],[-3,5],[0,6],[3,4],[4,-3],[-1,9],[3,3],[5,-4],[2,-16],[2,0],[0,4],[2,0],[2,-8],[8,-9],[4,-7],[0,5],[1,4],[2,3],[2,4],[2,-4],[-2,-5],[-4,-15],[2,-5],[0,-6],[-2,-6],[-3,-4],[-3,2],[-2,4],[-3,3],[-4,-5],[2,-4],[-1,-5],[0,-4],[-1,-3],[4,-58],[3,-9],[0,-19],[-13,-55],[1,-21],[4,7],[12,70],[2,6],[2,14],[0,26],[2,15],[4,2],[2,-7],[-2,-12],[3,-3],[0,-6],[-3,-15],[10,4],[4,4],[1,7],[1,5],[2,1],[2,-2],[1,-4],[-1,-5],[0,-2],[0,-1],[3,-3],[2,2],[1,4],[2,3],[2,0],[2,-5],[0,-6],[-2,-4],[-2,-2],[-5,-4],[5,-21],[-3,-7],[0,-5],[4,-3],[0,-5],[-2,-5],[0,-7],[1,-7],[2,-6],[2,-3],[2,0],[10,-16],[5,-7],[2,1],[2,24],[0,3],[-1,4],[-3,5],[-2,4],[1,4],[1,2],[1,1],[1,12],[1,7],[1,5],[10,-1],[2,-1],[0,-3],[3,-9],[2,-2],[4,2],[0,6],[-1,7],[1,5],[3,1],[5,-6],[2,1],[2,5],[-1,7],[-1,7],[0,7],[-1,7],[-4,9],[-1,5],[0,8],[-1,3],[-2,2],[-3,5],[-1,2],[-2,2],[-1,4],[1,8],[1,-1],[4,3],[3,4],[0,2],[2,2],[5,5],[7,3],[1,5],[0,7],[-1,6],[1,5],[3,5],[0,5],[0,5],[-3,10],[-1,5],[0,8],[1,7],[2,5],[9,3],[1,1],[3,3],[6,12],[1,0],[1,11],[-1,11],[-1,9],[3,5],[-5,23],[-7,10],[-28,0],[-4,4],[-2,10],[0,6],[-3,8],[0,6],[0,5],[1,7],[1,6],[3,-5],[5,-16],[3,-3],[4,2],[0,6],[-1,8],[1,8],[3,4],[8,-25],[6,1],[-1,5],[-1,5],[1,7],[-1,7],[-1,9],[-1,3],[-2,1],[-11,12],[-2,4],[-3,8],[1,1],[3,-3],[8,-4],[2,3],[0,9],[2,7],[3,6],[3,1],[2,-6],[-1,-7],[-2,-5],[0,-4],[8,-3],[2,-1],[3,1],[3,5],[0,-7],[-2,-5],[-4,-8],[2,-1],[3,-3],[1,0],[0,-5],[-4,-3],[-3,-7],[-3,-8],[-1,-10],[5,3],[4,6],[8,15],[3,4],[3,3],[7,6],[-3,-13],[-8,-11],[-4,-9],[8,-2],[5,-7],[1,-8],[-5,-3],[-8,-2],[-1,-6],[1,-7],[-1,-9],[9,5],[4,-3],[0,-10],[-7,-14],[-2,-6],[6,4],[-3,-20],[7,-9],[7,-6],[1,-8],[-2,-2],[-1,-1],[-2,-1],[0,-4],[1,-2],[4,-4],[1,-1],[3,4],[4,5],[3,0],[1,-13],[2,0],[1,10],[1,7],[2,6],[10,4],[0,6],[-3,8],[-4,10],[-2,2],[-1,0],[-3,0],[-1,3],[1,5],[3,9],[1,9],[1,6],[2,4],[6,4],[-2,2],[-1,4],[-1,3],[4,8],[5,0],[4,1],[4,23],[8,13],[3,7],[5,-12],[6,-1],[5,8],[3,10],[5,15],[3,5],[4,-2],[7,-6],[-3,-2],[-5,-5],[-3,-6],[-2,-6],[-1,-6],[-1,-3],[-2,-1],[-2,-4],[-1,-15],[-1,-5],[-8,-17],[-3,-10],[3,-5],[5,2],[9,8],[4,-3],[-10,-23],[3,-5],[3,-12],[2,-4],[4,1],[3,4],[3,3],[3,-4],[1,-6],[-1,-19],[0,-7],[2,-9],[2,-2],[2,-2],[4,-8],[0,18],[0,8],[2,7],[3,3],[3,3],[4,4],[1,8],[0,7],[-1,6],[0,5],[2,7],[1,4],[-2,5],[-1,6],[1,7],[2,-4],[4,-5],[2,-3],[1,-5],[1,-13],[2,-3],[3,2],[4,19],[4,7],[-2,9],[2,8],[3,9],[1,11],[-2,0],[-1,-4],[-2,-3],[-3,-5],[-3,6],[-2,8],[0,8],[2,6],[1,1],[6,-4],[4,-1],[1,6],[3,6],[3,-2],[4,1],[0,1],[8,-7],[4,0],[3,7],[-5,4],[-3,4],[-1,5],[2,4],[4,-1],[7,-3],[-1,6],[-2,4],[-3,2],[-4,1],[-3,2],[-2,6],[-1,9],[-1,8],[-1,4],[-5,13],[-2,6],[-3,24],[-2,8],[5,1],[5,2],[5,4],[2,7],[1,0],[3,-5],[1,-9],[-1,-12],[2,-2],[3,-2],[1,7],[2,4],[3,1],[4,0],[0,4],[-5,5],[-4,8],[0,9],[5,7],[5,-2],[5,-6],[4,-5],[5,4],[-5,7],[-2,2],[2,4],[4,3],[7,4],[7,-18],[4,-7],[5,-3],[2,-4],[1,-9],[0,-19],[4,6],[4,1],[1,-4],[-1,-11],[5,6],[1,-8],[-2,-15],[-3,-12],[9,2],[2,-9],[1,-16],[3,-15],[6,-9],[4,7],[3,13],[5,11],[-3,2],[-1,5],[0,7],[2,6],[4,-5],[2,-7],[0,-18],[1,-9],[2,-1],[2,3],[2,5],[4,18],[3,8],[4,-4],[10,-24],[4,-6],[8,-7],[0,10],[-3,16],[3,9],[4,-2],[2,-7],[2,-8],[2,-3],[4,-1],[2,-4],[1,-5],[2,-6],[1,0],[1,3],[3,9],[3,-7],[3,-9],[3,-11],[1,-10],[0,-6],[-2,-20],[1,-5],[6,-8],[2,-5],[3,12],[4,-4],[4,-11],[4,-5],[4,-3],[8,-15],[4,-7],[1,0],[3,1],[2,-1],[1,-2],[2,-6],[12,-18],[1,-11],[4,-12],[4,-11],[16,-29],[1,-6],[8,-43],[2,-2],[6,-2],[2,-4],[0,-5],[0,-22],[1,-6],[2,-3],[2,-1],[0,3],[1,7],[1,6],[3,1],[3,-5],[2,-10],[-7,-15],[1,-11],[5,8],[3,-2],[5,-14],[10,-13],[4,-8],[-3,-4],[-1,-2],[0,-7],[1,-7],[1,-4],[3,-3],[3,0],[7,6],[1,4],[2,1],[4,-6],[6,-12],[2,-2],[2,-4],[1,-10],[2,-9],[4,-5],[4,0],[3,-2],[3,-3],[12,-23],[4,-6],[6,-2],[4,1],[1,1],[2,-1],[2,-6],[1,-5],[0,-5],[0,-6],[-1,-4],[-4,5],[-4,2],[-4,-3],[-1,-10],[0,-9],[3,-22],[1,-9],[-1,-5],[-3,-1],[-5,0],[-4,-1],[-3,-3],[-6,-9],[6,-5],[-1,-19],[-6,-39],[-1,-7],[-4,-15],[-1,-8],[0,-12],[0,-9],[0,-9],[-5,-16],[-1,-11],[-1,-11],[1,-9],[3,-13],[1,-7],[-2,-61],[-2,-6],[-3,-3],[-4,1],[8,-45],[0,-22],[-5,-23],[-10,-21],[-1,-5],[2,-6],[6,6],[7,10],[4,8],[5,19],[3,25],[2,28],[-1,26],[-4,36],[2,3],[1,7],[-1,8],[1,6],[3,5],[3,-4],[3,-6],[8,-9],[14,-28],[3,-8],[1,-5],[5,-16],[7,-44],[0,-10],[2,0],[2,50],[-1,15],[-4,12],[-10,20],[-3,8],[-3,11],[-1,12],[2,11],[0,4],[-2,25],[-1,4],[-2,2],[-2,4],[-1,26],[6,20],[14,31],[1,1],[2,1],[1,2],[1,3],[-1,7],[0,2],[4,11],[5,12],[2,-4],[2,-15],[4,-50],[2,-10],[4,-5],[-2,19],[0,9],[2,9],[10,-24],[5,-9],[7,-4],[2,2],[1,5],[1,6],[1,6],[-1,7],[0,4],[-2,3],[-1,4],[-7,26],[-1,14],[-3,12],[-1,7],[1,9],[1,2],[2,0],[2,3],[2,3],[1,1],[1,2],[-2,6],[-2,3],[-4,4],[-2,3],[-4,12],[2,4],[12,2],[11,8],[5,6],[4,5],[6,5],[6,-4],[10,-11],[23,-6],[11,-6],[10,-17],[5,3],[6,-3],[7,-5],[5,-3],[24,0],[6,-3],[9,-11],[5,-2],[5,-1],[12,-7],[11,-10],[3,-5],[2,-6],[2,-6],[0,-6],[1,-6],[2,-2],[8,-2],[5,-7],[3,-10],[1,-13],[-1,-10],[-2,-11],[-1,-11],[3,-11],[3,-13],[1,-11],[-2,-11],[-6,-22],[-5,-30],[5,1],[8,32],[6,-1],[-2,-10],[-2,-11],[0,-10],[2,-9],[8,73],[6,4],[0,10],[-3,35],[-1,8],[-2,6],[-1,14],[-1,28],[-4,41],[0,14],[2,4],[4,-4],[4,-11],[2,-15],[1,0],[6,15],[10,0],[9,-10],[4,-15],[29,-17],[5,-12],[1,-3],[4,-29],[3,-5],[8,-9],[3,-4],[2,-9],[4,-21],[3,-9],[1,-8],[-3,-21],[-1,-10],[12,18],[5,3],[4,-2],[2,-6],[0,-17],[1,-11],[2,-2],[5,2],[5,0],[3,1],[2,4],[-1,10],[-2,6],[-17,41],[-2,8],[-7,34],[-2,37],[-3,8],[3,6],[4,15],[1,8],[2,32],[1,5],[4,-2],[7,-9],[4,-2],[9,0],[9,-4],[5,-1],[4,1],[7,4],[6,7],[2,1],[3,1],[1,2],[0,3],[2,4],[12,20],[2,1],[2,3],[5,-4],[8,-10],[0,16],[3,32],[-3,9],[-2,-18],[-5,-9],[-17,-9],[-27,-27],[-10,-2],[9,26],[1,7],[-2,0],[-10,-12],[-5,-3],[-3,-1],[-4,4],[-11,19],[-2,7],[3,11],[-6,7],[-7,11],[-6,12],[-5,26],[0,8],[2,4],[4,0],[10,4],[13,-1],[7,4],[3,11],[2,5],[11,15],[4,7],[-6,-1],[-7,-4],[-7,-6],[-9,-14],[-5,-1],[-12,5],[-2,1],[-6,-1],[-3,0],[-1,2],[-2,3],[-2,2],[-4,1],[-5,5],[-16,28],[-2,1],[-3,-1],[-1,0],[-1,2],[-1,8],[0,2],[-1,1],[-4,2],[-1,1],[-1,4],[-1,8],[-1,3],[-13,16],[-3,6],[4,47],[1,3],[7,17],[2,6],[1,7],[0,6],[0,7],[2,11],[3,8],[12,25],[3,9],[2,10],[1,12],[0,21],[0,6],[-3,11],[-1,5],[2,2],[3,-4],[4,-4],[5,6],[1,-5],[0,-7],[1,-5],[2,-3],[4,2],[3,4],[3,0],[1,-10],[5,15],[-1,18],[-1,16],[3,7],[1,-18],[6,-4],[16,6],[8,5],[5,15],[3,18],[1,17],[-2,11],[-2,6],[-4,5],[-2,8],[0,8],[2,9],[6,16],[15,24],[5,14],[-3,11],[-1,-4],[-2,-5],[-1,-3],[-2,3],[2,9],[-1,10],[-1,20],[1,10],[6,36],[5,19],[1,8],[0,19],[1,9],[1,7],[3,4],[3,2],[3,4],[2,15],[2,10],[2,8],[2,1],[2,-7],[1,-11],[-1,-21],[3,-6],[5,-5],[10,-6],[3,4],[17,11],[6,7],[14,26],[5,-7],[9,17],[14,42],[6,15],[5,7],[5,3],[5,-5],[7,-9],[5,-2],[-3,16],[-3,6],[-5,7],[-6,5],[-6,2],[-2,4],[-4,9],[-4,16],[-15,38],[-2,2],[-6,1],[-3,1],[-1,5],[0,65],[1,9],[2,7],[2,13],[-2,17],[0,17],[5,11],[3,0],[3,2],[2,4],[2,6],[3,-6],[1,-9],[2,-6],[6,-3],[6,3],[10,11],[5,2],[5,6],[4,12],[4,14],[1,11],[0,37],[2,17],[-1,12],[-2,11],[-1,11],[3,13],[3,0],[5,-5],[4,0],[1,3],[0,7],[0,7],[2,3],[3,2],[5,8],[3,2],[3,-2],[11,-11],[5,-3],[-4,12],[-2,8],[0,9],[3,5],[3,-4],[11,-46],[3,-3],[3,-2],[2,-3],[0,-9],[3,3],[3,-1],[2,-3],[3,-2],[0,1],[1,3],[2,2],[1,1],[2,0],[3,-3],[2,-1],[3,0],[3,2],[2,3],[0,6],[-22,14],[0,-2],[-1,-1],[-2,-2],[-1,1],[-1,1],[-1,6],[-1,1],[-1,2],[-3,10],[-1,2],[-1,3],[-2,2],[0,2],[3,3],[2,0],[3,-1],[2,-1],[2,2],[3,6],[1,3],[-1,4],[0,6],[-2,2],[-7,-1],[-1,3],[0,7],[7,38],[0,10],[-4,15],[1,6],[2,5],[6,4],[-2,6],[-4,8],[-2,1],[-4,3],[0,4],[8,9],[9,1],[10,-5],[5,-13],[5,2],[8,-3],[7,-5],[5,-7],[-3,-11],[0,-9],[3,-20],[0,-36],[2,-12],[1,8],[1,8],[1,7],[3,5],[8,-13],[10,-34],[6,-14],[0,10],[-1,3],[0,3],[4,9],[6,-3],[10,-14],[-3,16],[-6,11],[-8,10],[-6,12],[-2,11],[-1,7],[2,3],[5,-1],[6,-2],[8,-10],[5,-4],[-1,10],[-3,8],[-6,12],[-2,2],[-6,0],[-1,2],[0,5],[-2,5],[-3,7],[-4,4],[-3,-5],[-3,-4],[-6,7],[0,5],[1,5],[1,7],[-2,11],[10,4],[-3,8],[2,7],[8,9],[2,5],[1,4],[1,2],[2,2],[3,-1],[1,-2],[1,-3],[3,-3],[25,-8],[7,-8],[0,12],[-1,7],[-5,14],[-1,8],[1,30],[-1,11],[-7,17],[-1,9],[1,12],[3,9],[4,5],[5,0],[3,-2],[5,-8],[2,-2],[2,2],[3,9],[2,1],[3,-5],[3,-9],[3,-7],[7,5],[7,-16],[5,-4],[3,-4],[2,-8],[3,-6],[7,1],[-6,14],[0,7],[0,5],[5,9],[1,4],[0,13],[0,8],[3,22],[1,18],[1,6],[3,6],[2,2],[2,-2],[1,-14],[3,-8],[0,-6],[0,-27],[3,-27],[5,-20],[8,-16],[9,-14],[5,-6],[6,-6],[7,-3],[6,-1],[6,1],[12,6],[6,1],[3,-2],[6,-6],[3,2],[23,7],[22,7],[10,8],[5,6],[7,12],[3,3],[3,3],[3,0],[2,-2],[1,-6],[1,-6],[1,-6],[5,-8],[12,-8],[7,-9],[7,-3],[5,-6],[4,0],[6,6],[10,13],[10,17],[4,13],[1,2],[13,8],[2,5],[2,17],[1,6],[5,3],[3,-6],[1,-9],[1,-10],[2,-18],[5,1],[7,9],[7,6],[4,-1],[3,-2],[2,-6],[9,-34],[2,-12],[0,-3],[1,-3],[0,-4],[-1,-4],[-4,-4],[-1,-5],[-3,-5],[-1,-3],[0,-5],[0,-15],[5,13],[8,16],[5,18],[-8,41],[1,25],[4,20],[7,9],[7,3],[15,22],[5,4],[4,-2],[8,-10],[10,-9],[10,-6],[11,-2],[11,4],[-3,3],[-5,0],[-3,1],[-3,3],[-3,6],[-2,3],[-11,14],[-4,9],[-2,14],[0,24],[7,82],[0,10],[-1,9],[-2,9],[-12,15],[-1,5],[2,10],[11,24],[4,11],[3,20],[3,6],[5,2],[0,4],[-13,11],[-10,3],[-5,5],[-4,6],[-4,8],[-4,9],[0,4],[1,5],[1,8],[-2,6],[-4,4],[-3,5],[1,12],[-5,1],[-5,18],[-16,18],[-6,3],[-12,4],[-7,-2],[-10,-14],[-6,0],[-7,3],[-6,1],[-3,-2],[-1,-2],[-2,-4],[-3,-4],[-2,-6],[-2,-2],[-2,0],[-1,2],[-2,2],[-2,-2],[-8,-14],[-5,-6],[-5,-2],[-6,3],[-4,6],[-3,8],[-3,3],[-1,3],[-2,6],[-1,8],[-1,5],[2,3],[3,0],[2,2],[1,5],[-5,9],[-7,-2],[-7,-1],[-2,15],[-2,0],[-3,-4],[-3,1],[-2,6],[0,9],[6,3],[3,4],[-1,9],[-3,4],[-7,-5],[-3,1],[-2,6],[1,7],[0,5],[-4,3],[-4,1],[-7,5],[-4,2],[-3,-2],[-6,-5],[-2,-1],[-14,3],[0,2],[2,5],[4,4],[5,1],[-5,16],[3,0],[6,-6],[5,-2],[2,8],[-2,12],[-4,12],[-1,13],[2,-2],[6,-1],[2,-3],[3,-5],[2,2],[1,6],[-1,3],[-1,4],[1,8],[2,5],[1,-3],[1,-4],[4,-9],[9,-28],[1,-3],[2,1],[4,5],[6,9],[0,10],[-3,12],[-1,13],[5,-5],[1,4],[-2,13],[0,10],[1,1],[3,-4],[5,-2],[2,-5],[3,-10],[3,-9],[9,-8],[-1,-15],[4,-6],[3,2],[2,7],[3,3],[1,-8],[0,-4],[-3,-10],[-1,-4],[1,-6],[1,-9],[0,-6],[-1,-17],[0,-9],[2,-4],[2,-1],[0,-2],[1,0],[2,3],[0,4],[-1,5],[0,6],[3,6],[3,-14],[0,-17],[0,-18],[6,-12],[8,-3],[0,11],[-3,15],[-1,9],[4,1],[4,-5],[3,-3],[2,7],[0,7],[-2,7],[-5,10],[-2,2],[-1,-1],[-2,0],[-1,4],[0,2],[2,5],[0,4],[0,9],[0,8],[-1,7],[-3,9],[3,7],[-2,12],[-4,12],[-3,5],[-3,6],[0,12],[4,8],[7,-5],[3,-9],[2,-10],[3,-10],[5,-4],[2,-5],[4,-26],[2,-9],[6,-8],[1,8],[-3,22],[-2,24],[2,9],[6,6],[3,-1],[1,-3],[2,-2],[3,6],[0,3],[1,9],[2,6],[1,-4],[1,-10],[9,-41],[1,-2],[-1,-3],[0,-3],[1,-10],[-2,-22],[3,-5],[4,5],[2,10],[3,22],[6,9],[9,-12],[7,-24],[5,-22],[-2,-6],[0,-5],[2,-5],[1,0],[2,1],[2,2],[0,1],[2,-2],[3,-8],[2,-5],[2,-11],[12,-18],[6,-19],[4,-23],[7,-19],[12,-4],[6,4],[6,10],[5,12],[3,17],[2,2],[2,1],[3,2],[3,7],[1,1],[1,2],[0,4],[0,4],[0,3],[7,-1],[6,-8],[4,-3],[2,14],[0,14],[-2,8],[-7,12],[1,6],[2,1],[2,-1],[7,-2],[1,-2],[1,-3],[1,-3],[2,-2],[2,-1],[1,-2],[1,-5],[3,-15],[1,-3],[8,-7],[7,-17],[6,-20],[3,-17],[2,0],[2,-3],[3,-2],[2,-4],[1,-5],[-2,-17],[0,-8],[7,-21],[12,-46],[3,-9],[4,-9],[5,-7],[6,-3],[15,-5],[6,5],[3,20],[4,-2],[8,2],[3,0],[5,-6],[-2,-4],[-4,-4],[-4,-4],[-3,-10],[-1,-8],[3,-6],[5,-3],[6,0],[2,2],[1,4],[3,10],[3,5],[3,3],[2,-3],[2,-9],[-1,-3],[-2,-3],[-2,-4],[0,-4],[2,-2],[3,0],[5,0],[7,-9],[3,-3],[2,6],[2,2],[4,4],[5,5],[2,8],[3,-11],[0,-19],[-2,-21],[-3,-14],[2,-4],[2,7],[3,18],[3,7],[7,7],[1,1],[3,-2],[1,-4],[0,-4],[1,-2],[3,-7],[1,-2],[5,5],[5,2],[1,2],[3,5],[3,23],[5,-3],[5,-1],[5,1],[4,3],[4,7],[10,26],[8,0],[2,-1],[2,-3],[1,-3],[1,-2],[5,-2],[4,-4],[5,1],[4,10],[5,-14],[1,-8],[-1,-3],[-4,-1],[-3,-5],[-2,-7],[-2,-7],[-7,3],[-6,-8],[-4,-15],[3,-14],[13,-19],[15,-16],[11,15],[6,4],[2,7],[1,8],[2,6],[5,3],[4,-2],[3,-6],[2,-8],[0,-3],[2,-2],[1,-3],[1,-5],[-1,-7],[0,-5],[-1,-4],[2,-6],[12,24],[2,4],[1,-4],[4,-20],[1,-6],[2,-4],[4,-2],[4,-4],[0,-8],[-1,-1],[-5,-1],[-2,-2],[0,-5],[1,-4],[2,-4],[1,-4],[2,-7],[0,-6],[0,-13],[0,-4],[-2,-7],[0,-5],[1,-5],[2,-2],[2,2],[3,14],[10,15],[3,6],[1,11],[0,8],[1,5],[6,5],[17,-31],[10,-13],[13,-9],[25,-4],[11,7],[6,1],[3,-8],[3,9],[8,11],[18,37],[2,4],[5,5],[7,3],[6,0],[1,-3],[0,-7],[0,-13],[1,-5],[1,-5],[3,-8],[1,-4],[2,-9],[1,-3],[3,1],[3,2],[3,1],[1,-6],[2,-26],[1,-13],[3,-8],[5,-4],[13,-1],[3,-1],[2,-2],[6,-3],[1,-3],[1,-3],[5,-16],[2,-12],[2,-3],[9,-11],[2,-4],[1,-2],[6,-14],[2,-2],[4,2],[6,6],[5,4],[4,0],[3,-6],[4,-10],[4,-6],[4,-8],[5,-4],[5,5],[-2,10],[-11,14],[-6,14],[11,-1],[7,2],[7,3],[3,-8],[4,-9],[5,-5],[6,5],[4,3],[3,5],[0,6],[-6,-5],[-6,2],[-4,4],[-7,10],[-7,1],[-5,9],[4,7],[8,0],[11,13],[2,2],[3,6],[0,2],[-4,3],[-2,4],[6,10],[8,4],[4,10],[6,-2],[7,4],[1,-2],[-2,-11],[5,-5],[9,1],[7,4],[5,5],[3,11],[0,8],[6,2],[0,-11],[10,-10],[4,0],[10,18],[1,2],[6,6],[2,2],[16,19],[-3,6],[-14,-7],[-4,-2],[-12,-19],[-3,-1],[-3,8],[-2,11],[2,18],[6,18],[2,5],[6,1],[2,-1],[0,-3],[2,-3],[2,-1],[3,1],[1,3],[1,4],[2,4],[4,5],[5,4],[5,0],[5,-5],[10,13],[10,17],[8,10],[1,3],[1,8],[3,2],[3,1],[2,2],[4,13],[-2,11],[-2,10],[-2,13],[3,6],[6,-1],[7,-6],[3,-5],[-4,-23],[-5,-20],[-17,-38],[-9,-22],[-4,-8],[-10,-3],[-2,-3],[-1,-5],[-9,-12],[2,-4],[12,8],[6,4],[18,4],[4,3],[8,9],[6,1],[0,-4],[-4,-5],[-13,-8],[-8,-9],[-10,-19],[-7,-20],[-10,-18],[-3,-4],[-8,-13],[-6,-10],[-5,-10],[0,-23],[5,-20],[5,-8],[5,-9],[2,-7],[5,-20],[6,24],[4,8],[4,-4],[2,0],[2,17],[3,11],[12,17],[9,21],[2,3],[2,-2],[2,-6],[1,-6],[1,-4],[1,-3],[2,5],[3,10],[1,6],[2,1],[4,-1],[3,2],[17,36],[7,11],[-1,-11],[-4,-12],[-5,-10],[-3,-4],[-1,-2],[-3,-9],[0,-3],[-1,-6],[-1,-3],[-9,-11],[-3,-5],[-2,-5],[0,-7],[1,-5],[2,-3],[1,-4],[2,-14],[5,-5],[5,3],[5,6],[4,6],[5,5],[5,0],[2,-13],[-2,-7],[-2,-2],[-3,-1],[-1,-2],[0,-5],[-4,-17],[-10,-25],[-1,-6],[0,-6],[1,-7],[1,-5],[2,2],[4,4],[0,-5],[-1,-13],[2,-13],[1,-12],[3,-6],[5,5],[1,6],[0,5],[1,5],[4,2],[1,-1],[1,-3],[1,-3],[0,-3],[2,-2],[2,1],[1,2],[11,4],[2,0],[3,-3],[3,-10],[1,-2],[6,1],[6,2],[10,9],[9,15],[5,19],[9,47],[8,28],[1,10],[-1,10],[-4,7],[-5,5],[-5,1],[-4,-2],[-6,-2],[-5,-1],[-7,-1],[-3,11],[-2,3],[-8,-3],[-2,3],[-1,10],[2,5],[3,2],[8,3],[2,13],[15,39],[4,9],[6,1],[2,-1],[2,0],[7,16],[7,11],[9,19],[3,5],[3,2],[3,11],[4,-2],[4,-3],[9,6],[4,11],[8,4],[3,4],[0,10],[2,-3],[2,-6],[-1,-6],[-4,-6],[-4,-7],[-5,-6],[-4,-1],[-5,-4],[-5,0],[-3,-5],[1,-12],[2,-9],[3,-3],[4,8],[4,3],[4,-3],[4,-27],[3,-24],[8,-2],[-2,-17],[1,-22],[2,-15],[6,-11],[3,-9],[7,-17],[3,-12],[1,-4],[8,-11],[8,0],[7,10],[6,13],[-2,6],[-2,4],[-7,4],[-4,8],[-3,9],[-6,-8],[1,12],[8,-1],[5,8],[8,5],[6,-5],[7,-13],[5,-12],[7,0],[7,-5],[9,-23],[5,-16],[2,-20],[-1,-16],[6,-4],[5,6],[4,1],[-3,-13],[-2,-3],[-2,-2],[-3,-1],[-5,0],[-6,-7],[-13,-27],[-19,-49],[-3,-10],[-3,-5],[-1,10],[4,10],[5,15],[1,3],[1,6],[0,7],[-2,5],[-3,1],[-2,-3],[-2,-4],[-1,-2],[-8,-9],[-1,-19],[2,-23],[4,-16],[-5,0],[-3,-2],[-8,-23],[-6,-32],[5,-17],[-2,-8],[-6,4],[-12,2],[-5,-7],[-2,-11],[2,-11],[4,-7],[0,-14],[-1,-6],[1,-6],[0,-7],[-3,-7],[-4,0],[-3,5],[-2,8],[0,10],[-3,16],[-1,7],[0,3],[-2,2],[-2,1],[-2,0],[-3,-3],[-2,-4],[0,-8],[2,-7],[0,-8],[0,-6],[-6,-1],[-4,15],[-5,8],[-2,-4],[1,-11],[2,-20],[1,-10],[1,-5],[10,-17],[5,5],[1,-12],[-1,-13],[4,1],[3,0],[12,-16],[7,-9],[1,-13],[5,-12],[-1,-6],[-1,-4],[-3,3],[-2,5],[-1,2],[-3,4],[0,4],[-1,2],[-4,-2],[-6,-18],[-4,1],[0,19],[-3,9],[-4,1],[0,-1],[-2,-6],[0,-1],[-2,0],[-2,5],[-2,-1],[-4,-3],[-1,-3],[0,-8],[0,-4],[1,-5],[2,-3],[1,-2],[4,-1],[0,-3],[0,-4],[3,-12],[9,-5],[-7,-26],[-3,-31],[-5,7],[-5,-3],[-3,-11],[-1,-15],[0,-21],[-2,-9],[-4,-5],[0,6],[0,5],[-2,10],[-2,0],[-2,-7],[-10,-8],[-3,-14],[-6,-19],[-4,-8],[-3,-7],[-3,1],[0,6],[-3,1],[0,8],[7,8],[-1,7],[-2,6],[1,7],[4,0],[3,-4],[5,6],[2,11],[-2,8],[-4,10],[1,18],[-2,9],[1,32],[1,18],[-2,6],[-6,5],[-3,0],[-4,-9],[-2,-8],[-2,-9],[1,-9],[4,-9],[-3,-10],[1,-9],[-1,-6],[-6,-1],[-4,3],[-4,18],[-3,0],[-3,-5],[-2,-7],[2,-10],[2,-9],[0,-9],[-4,-7],[-2,3],[-2,0],[-1,-4],[0,-7],[0,4],[-2,-10],[-3,-1],[-5,-1],[-5,-16],[-3,14],[-3,19],[6,21],[-1,15],[-2,14],[-3,-1],[-9,-20],[-5,-24],[0,-18],[-3,-1],[-3,5],[-2,-1],[-1,-3],[-1,-9],[2,-28],[-1,-12],[-2,0],[-2,15],[-1,16],[-2,14],[-6,12],[-4,-2],[-4,-7],[-3,-26],[-3,-8],[-1,15],[-3,4],[-5,-6],[-4,-10],[-1,-11],[-6,-14],[0,-25],[8,-4],[2,-2],[1,-5],[0,-7],[-2,-3],[1,-7],[4,-1],[7,1],[1,0],[1,-6],[0,-6],[-1,-8],[-5,1],[-3,-2],[-4,-8],[-6,16],[-5,4],[-6,-4],[-1,-11],[1,-14],[0,-15],[3,-21],[-1,-7],[-1,-3],[-2,-3],[-2,-3],[0,-7],[-1,-13],[2,-9],[5,-22],[4,-8],[9,8],[0,-3],[1,-7],[1,-3],[-9,-8],[-2,-15],[5,-15],[9,-6],[10,4],[7,12],[10,28],[1,5],[0,4],[0,3],[3,4],[2,1],[3,-1],[1,-2],[2,-1],[1,-6],[-2,-5],[-5,-10],[-2,-7],[-4,-29],[-8,-29],[2,-6],[0,-8],[-2,-14],[-1,-3],[-1,-2],[-1,-4],[0,-6],[0,-14],[0,-4],[-8,-20],[-11,-14],[-6,-105],[2,-35],[-6,3],[-5,-1],[-5,-5],[-1,-7],[-2,-4],[-7,-3],[-1,-2],[-1,0],[-6,-8],[0,-2],[-8,-13],[-7,-19],[-16,-64],[-2,-12],[-5,-6],[-7,3],[-5,-12],[-15,-56],[-6,-20],[-4,-21],[1,-21],[-5,-7],[-7,-5],[-7,-8],[-3,-9],[-1,-7],[-1,-5],[-5,-1],[-4,2],[-3,3],[-4,1],[-3,-6],[5,-2],[2,-9],[1,-22],[2,-21],[13,-61],[6,-19],[22,-42],[9,-10],[9,-6],[3,1],[5,3],[2,-2],[5,-14],[8,-12],[3,-6],[2,-10],[6,3],[6,-4],[5,-7],[3,-6],[2,-5],[18,-18],[8,-14],[8,-20],[9,-18],[11,-8],[4,-2],[11,-12],[5,-7],[8,-16],[3,-4],[3,-3],[7,-3],[8,-14],[11,-10],[5,-7],[4,-6],[1,-3],[4,-27],[3,-44],[2,-9],[3,-7],[13,-19],[5,-6],[13,-2],[6,-3],[14,-31],[7,-9],[4,-9],[6,-8],[7,-3],[2,2],[3,4],[3,3],[3,-2],[1,-4],[2,-16],[2,-5],[13,-20],[3,-7],[10,-28],[3,-4],[2,-5],[-2,-11],[-2,-12],[-1,-9],[3,-12],[5,-1],[5,6],[2,9],[2,7],[5,0],[12,-5],[9,1],[2,-1],[3,-3],[6,-11],[2,-2],[5,1],[0,3],[-1,8],[2,12],[4,6],[11,12],[2,1],[5,-17],[10,-18],[13,-14],[12,-8],[5,-8],[2,-2],[6,-1],[2,-2],[3,-2],[14,-21],[3,-5],[1,-7],[8,-18],[19,-30],[5,-4],[7,0],[2,-1],[2,-5],[1,-6],[3,-1],[3,1],[2,0],[7,-13],[2,-3],[4,-1],[6,4],[3,1],[6,-2],[30,-23],[8,-12],[12,-7],[4,-5],[9,-30],[2,-9],[16,-49],[2,-7],[4,-15],[13,-24],[11,-19],[13,-19],[1,0],[17,-42],[11,-12],[14,-26],[9,-12],[10,-7],[4,-5],[7,-3],[3,-1],[2,-2],[3,-8],[1,-2],[5,-3],[17,3],[8,-7],[12,-13],[13,-9],[15,9],[28,0],[3,-1],[8,-17],[3,-3],[4,-2],[8,-10],[4,-4],[14,-6],[10,-12],[8,-4],[28,-4],[11,-6],[8,-12],[6,-37],[9,-14],[18,-19],[-5,-19],[1,-30],[3,-31],[3,-21],[12,-48],[9,-23],[9,-14],[12,-7],[24,-4],[10,-5],[3,-4],[7,-13],[10,-10],[2,-4],[4,-8],[12,-18],[12,-25],[6,-11],[8,-5],[8,-2],[23,-14],[7,-1],[4,-6],[3,-6],[26,-19],[2,-6],[6,-22],[10,-19],[3,-3],[33,-6],[34,8],[45,20],[6,5],[2,4],[3,7],[6,2],[12,1],[4,4],[5,5],[7,14],[3,3],[6,1],[3,4],[2,4],[8,10],[8,16],[4,6],[13,4],[2,5],[2,8],[2,10],[3,6],[6,5],[7,4],[5,1],[4,6],[3,12],[7,44],[3,50],[3,22],[2,6],[6,14],[2,18],[1,5],[2,8],[3,38],[-1,11],[-2,11],[-1,11],[3,10],[26,68],[9,51],[2,2],[5,1],[2,1],[2,4],[6,17],[15,33],[2,9],[1,9],[4,20],[3,39],[3,10],[4,-2],[7,24],[2,14],[1,12],[2,12],[0,7],[-1,4],[-2,3],[-1,6],[0,11],[2,8],[6,17],[2,10],[1,12],[4,23],[2,11],[0,24],[1,6],[2,9],[2,12],[16,58],[2,12],[-6,12],[-9,61],[0,5],[1,7],[5,8],[1,7],[1,24],[9,120],[13,101],[23,113],[2,10],[0,20],[1,11],[2,8],[5,1],[-2,12],[3,9],[5,6],[3,10],[0,10],[-2,10],[1,8],[7,0],[-2,11],[1,12],[2,12],[1,14],[-1,12],[-3,12],[-2,9],[-4,7],[0,4],[2,6],[-7,18],[-2,11],[-17,152],[0,38],[-1,10],[-4,21],[-1,12],[0,26],[3,24],[16,91],[3,25],[1,25],[-2,28],[-4,23],[-6,18],[-8,16],[-13,41],[-5,49],[1,53],[15,121],[7,29],[1,13],[1,6],[9,22],[2,9],[8,41],[1,14],[3,-3],[3,-1],[3,1],[3,3],[-4,10],[1,9],[3,7],[1,8],[1,6],[3,11],[0,5],[0,6],[-1,7],[0,6],[-1,2],[-1,4],[-2,3],[-3,3],[-1,3],[-1,4],[-1,3],[-3,6],[-2,7],[-3,16],[-1,9],[-1,41],[-3,25],[-1,2],[-2,2],[-2,3],[-1,5],[0,5],[6,20],[3,9],[3,11],[1,10],[4,-9],[4,6],[6,10],[10,10],[6,13],[4,14],[2,11],[1,9],[7,37],[2,17],[1,10],[3,6],[3,0],[0,-6],[-1,-15],[1,0],[4,14],[5,-3],[4,-10],[4,-10],[3,-35],[0,-26],[0,-13],[2,-6],[3,-4],[8,-29],[-1,11],[1,12],[-1,13],[-4,21],[-2,25],[-3,8],[24,16],[5,9],[-7,-1],[-9,1],[-7,3],[-6,4],[-4,12],[-2,6],[-14,9],[-3,2],[4,8],[11,12],[6,10],[6,4],[3,5],[2,2],[4,0],[6,0],[-7,5],[-5,6],[-3,0],[-5,-11],[-4,3],[-4,0],[-10,-3],[-7,0],[-4,3],[-4,5],[-3,6],[-4,15],[-2,7],[-4,4],[-12,8],[12,16],[4,9],[-1,4],[-13,-2],[-4,2],[-5,8],[-1,-3],[-1,-1],[0,-11],[0,-36],[1,-1],[7,0],[2,-3],[1,-6],[-3,-2],[-6,2],[-12,-11],[-7,0],[-2,13],[1,9],[27,127],[5,37],[2,9],[4,2],[11,-8],[5,0],[3,3],[3,1],[-3,3],[-2,5],[-1,5],[0,8],[-2,0],[-1,-4],[-1,-5],[-2,-3],[-3,1],[-1,7],[1,8],[3,24],[5,23],[4,35],[9,30],[11,23],[11,7],[-2,-12],[-2,-10],[0,-9],[5,-35],[1,-12],[0,-12],[9,36],[4,5],[3,-2],[13,-18],[3,18],[-1,7],[-5,3],[-4,17],[-2,5],[-3,5],[-3,0],[-2,-1],[-3,2],[-2,19],[1,29],[5,50],[12,31],[1,8],[-2,9],[1,15],[34,217],[1,13],[-1,34],[1,13],[1,9],[4,20],[2,22],[-1,50],[-3,49],[2,20],[6,12],[13,6],[2,-5],[3,6],[5,4],[6,2],[6,1],[6,3],[5,6],[7,19],[10,23],[1,8],[1,9],[5,27],[2,10],[4,8],[4,2],[12,-2],[1,2],[5,8],[1,2],[1,1],[1,1],[1,2],[1,0],[1,-1],[0,-4],[0,-4],[0,-3],[4,-5],[10,-11],[4,-6],[1,-4],[-1,-6],[-2,-6],[-1,-4],[-3,-4],[-4,-4],[-2,-2],[-2,-6],[-2,-13],[-2,-6],[-2,-2],[-6,-3],[-1,-3],[-2,-15],[1,-14],[1,-13],[-4,-15],[6,4],[5,9],[3,13],[1,13],[3,7],[7,3],[6,-2],[3,-8],[3,-29],[1,0],[3,1],[3,-2],[2,-11],[-2,-19],[2,-12],[3,13],[6,7],[7,1],[5,-4],[1,-6],[2,-18],[1,-6],[3,-8],[3,-8],[3,-19],[1,-17],[1,-18],[3,-14],[1,-2],[-2,-5],[-2,-9],[-1,-14],[0,-18],[2,-17],[5,-11],[3,1],[3,-8],[2,-11],[1,-9],[1,-6],[4,-12],[1,-6],[-1,-5],[-2,-6],[-3,-7],[-6,-24],[-2,-15],[1,-6],[4,-6],[0,-13],[-1,-26],[1,-6],[4,-11],[1,-7],[2,-78],[-2,-50],[1,-9],[3,-8],[15,-26],[4,1],[9,-20],[5,-5],[8,2],[5,3],[11,11],[7,3],[6,-5],[14,-31],[2,0],[5,1],[8,4],[3,-1],[3,-7],[-3,-6],[-4,-2],[-6,-1],[-27,-90],[-2,-3],[-2,-1],[-2,-4],[0,-11],[0,-2],[2,-16],[-1,-7],[0,-6],[-1,-5],[-2,-5],[1,-2],[1,-4],[2,-2],[-3,-11],[-1,-11],[0,-25],[2,-4],[5,-4],[10,-2],[10,4],[3,-2],[5,-8],[2,-2],[12,-17],[1,-2],[1,-5],[3,-10],[1,-9],[1,-37],[1,-13],[3,-11],[5,-9],[3,-4],[11,-7],[4,-1],[4,-3],[4,-7],[8,-15],[0,-4],[-6,-16],[-3,-11],[2,-5],[1,-5],[-9,-30],[-1,-10],[-3,-33],[0,-33],[-2,-11],[6,16],[2,-4],[4,-4],[3,-1],[3,3],[4,7],[3,0],[3,-3],[3,-2],[7,2],[4,4],[4,5],[5,5],[-13,-53],[4,-19],[1,-25],[-3,-47],[7,-73],[0,-77],[1,-8],[1,-4],[10,-16],[0,-7],[4,-10],[2,-6],[0,-7],[0,-5],[-3,-37],[0,-11],[4,-5],[-1,-11],[-8,-33],[-2,-20],[-3,-35],[-3,-23],[-1,-11],[1,-10],[5,-22],[1,-11],[2,-6],[8,-27],[2,-4],[-1,-18],[1,-7],[2,-6],[1,-6],[2,-5],[17,-28],[2,-7],[3,-36],[-1,-10],[3,-13],[1,-56],[11,-78],[10,-37],[6,-17],[7,-15],[4,-6],[4,-5],[4,-3],[5,-2],[10,-1],[2,-4],[2,-11],[3,7],[3,3],[7,2],[12,14],[10,9],[13,28],[4,6],[5,4],[4,9],[3,10],[2,9],[1,16],[0,16],[1,14],[4,7],[1,-3],[2,-5],[1,-4],[1,3],[1,1],[1,1],[1,3],[1,0],[5,-20],[1,-4],[4,-3],[3,0],[3,0],[3,-5],[38,36],[3,4],[5,28],[1,5],[1,1],[0,5],[0,8],[1,3],[2,-1],[4,-4],[4,-3],[2,-5],[2,-5],[1,-3],[3,-5],[12,-36],[-3,-10],[-1,-13],[0,-24],[2,-12],[6,-1],[6,7],[3,8],[1,-9],[-1,-12],[-2,-11],[-3,-4],[-1,-7],[1,-32],[1,-10],[2,-4],[8,-12],[1,-6],[3,-15],[2,-6],[6,-3],[12,6],[4,-1],[4,-8],[3,-10],[4,-10],[7,-4],[18,-1],[4,-3],[2,-5],[1,-4],[0,-5],[1,-6],[2,-5],[5,-9],[-1,-3],[2,-29],[0,-5],[3,-6],[17,-24],[4,-13],[7,8],[6,-5],[6,-10],[7,-5],[4,-1],[5,-5],[4,-2],[4,1],[7,4],[4,0],[-3,-16],[2,-13],[16,-39],[4,-2],[6,4],[9,0],[-4,-16],[-21,-62],[-2,-12],[-4,-42],[1,-10],[4,-17],[2,-16],[3,-6],[3,-4],[4,-1],[4,2],[2,5],[2,17],[5,-8],[2,-12],[-2,-11],[-11,-9],[-5,-9],[-1,-11],[5,-9],[-3,-6],[-1,-6],[1,-6],[-1,-6],[-2,-2],[-4,-5],[-2,-2],[-2,-10],[-1,-13],[0,-9],[3,4],[2,0],[4,-23],[1,-12],[-4,-6],[-1,-2],[0,-6],[1,-5],[2,-3],[0,-2],[10,-16],[1,-3],[2,-13],[1,-6],[-1,-5],[-4,-12],[1,-3],[1,-2],[11,-50],[3,-8],[1,-8],[-2,-28],[0,-10],[1,-6],[2,-3],[1,-2],[0,-5],[-2,-7],[-3,-12],[-1,-8],[1,-11],[2,-7],[6,-12],[12,-33],[6,-21],[3,-20],[0,-22],[-6,-40],[-1,-21],[6,-8],[1,-3],[2,-15],[0,-9],[-2,-8],[-8,-17],[-5,-19],[0,-44],[-4,-20],[1,-7],[1,-6],[3,-5],[3,-3],[5,5],[5,-7],[2,-12],[1,-12],[2,-6],[10,-21],[3,-20],[5,-11],[1,-3],[1,-9],[3,-10],[4,-9],[13,-23],[3,-4],[7,-6],[2,-4],[2,-5],[1,-13],[1,-6],[3,-5],[5,-6],[3,-4],[5,-28],[5,-6],[4,-11],[1,-5],[-1,-8],[-3,-2],[-3,-1],[-3,-3],[0,-8],[2,-6],[3,-6],[3,-9],[0,-4],[0,-10],[1,-4],[3,-2],[2,1],[2,4],[-3,12],[-1,11],[1,9],[2,4],[2,3],[8,15],[2,6],[5,-7],[3,-6],[3,-1],[7,12],[2,5],[2,3],[2,2],[3,0],[5,-3],[1,-7],[-2,-7],[-1,-3],[-3,-6],[0,-2],[-1,-3],[2,-3],[0,-2],[-2,-13],[-2,-5],[-2,-3],[-2,-4],[-5,-21],[-2,-7],[-1,-13],[0,-11],[2,-9],[4,-4],[2,-5],[11,-43],[2,-12],[1,-13],[0,-14],[2,-9],[10,-30],[7,-37],[3,-9],[5,-9],[3,-3],[2,-6],[-1,-26],[1,-35],[-2,-6],[3,-14],[7,-21],[8,-15],[3,-9],[1,-11],[-2,-8],[-7,-13],[-3,-9],[-1,-13],[1,-38],[-1,-2],[-3,-6],[-2,-7],[1,-3],[2,-3],[0,-6],[0,-7],[-1,-4],[4,-12],[2,-6],[-2,-7],[-2,-20],[-1,-4],[1,-9],[-8,-39],[-13,-52],[-2,-18],[-3,-15],[0,-9],[0,-9],[0,-8],[2,-8],[1,-8],[-2,-14],[4,-16],[22,-51],[5,-8],[3,-1],[9,-1],[3,-2],[3,-6],[1,-9],[0,-17],[7,-41],[-1,-12],[5,4],[6,-3],[5,-4],[2,-3],[4,4],[4,0],[10,-6],[-1,-27],[-1,-24],[-3,-20],[-8,-38],[-4,-70],[-1,-4],[0,-4],[-1,-6],[0,-6],[1,-7],[5,-13],[2,-6],[0,-4],[4,-6],[2,-5],[3,-16],[22,-30],[4,-11],[6,-19],[4,-9],[5,-5],[11,-7],[4,-6],[6,-13],[2,-7],[2,-1],[2,0],[3,-1],[19,-24],[10,-6],[15,12],[4,-6],[5,-17],[7,-15],[4,-6],[3,-3],[6,-7],[7,-14],[8,-10],[10,6],[5,-1],[5,7],[9,19],[3,9],[1,12],[0,12],[-2,12],[2,0],[1,-9],[6,-11],[1,-11],[0,-3],[3,-5],[1,-2],[-1,-3],[-1,-5],[-2,-18],[0,-7],[2,-9],[6,-15],[1,-6],[14,-35],[3,8],[6,-1],[15,-8],[6,-6],[3,-1],[2,1],[7,7],[37,-1],[8,10],[1,10],[-3,12],[-3,10],[-7,8],[-2,9],[1,6],[6,-7],[6,-16],[13,-65],[16,-41],[3,-10],[0,-14],[2,-16],[3,-15],[4,-13],[-1,-16],[3,-14],[0,-10],[-10,-1],[5,-4],[3,-6],[6,-19],[19,-44],[10,-3],[18,-1],[-6,35],[-2,5],[0,6],[-1,39],[20,-13],[6,-13],[4,-53],[4,-17],[7,-13],[8,-13],[6,-6],[6,-2],[12,0],[1,3],[1,5],[0,6],[2,2],[2,0],[2,-3],[2,-1],[2,2],[4,6],[3,-4],[9,-19],[2,-7],[2,-5],[19,-5],[16,-11],[7,-1],[-2,-12],[2,-10],[7,-19],[-6,-3],[-5,-5],[3,-5],[1,-5],[-1,-6],[-3,-5],[7,-6],[3,-3],[7,-20],[1,-3],[2,-2],[10,-14],[8,-6],[2,-5],[-2,-9],[4,-2],[5,1],[5,4],[3,5],[1,6],[-3,2],[-5,0],[-4,4],[3,7],[3,1],[4,1],[3,3],[2,7],[-1,7],[-3,4],[-3,2],[-3,4],[-1,8],[0,9],[2,8],[4,3],[3,-5],[3,-7],[4,-4],[7,0],[2,3],[4,8],[5,7],[2,-4],[0,-33],[2,-19],[4,-15],[7,-3],[-2,-8],[-1,-8],[2,-5],[5,1],[3,5],[0,7],[1,7],[1,9],[3,-5],[1,-5],[0,-5],[-2,-5],[6,5],[2,3],[0,-8],[-1,-6],[-2,-6],[-3,-5],[6,-6],[2,-1],[-1,-4],[-1,-5],[0,-6],[0,-6],[11,10],[5,4],[5,-2],[-1,14],[7,-6],[6,-16],[-3,-12],[2,-4],[3,-8],[1,-2],[1,-6],[2,-2],[3,0],[2,-2],[2,-12],[0,-8],[-2,-8],[0,-9],[3,-18],[5,-11],[15,-20],[-7,-2],[2,-10],[5,-13],[3,-11],[-2,2],[-2,1],[-3,-1],[-2,-2],[-2,6],[-3,2],[-3,0],[-2,-4],[-2,8],[-2,6],[-3,4],[-4,2],[1,7],[1,7],[0,8],[-2,7],[-1,2],[-4,5],[-2,1],[-3,-2],[0,-2],[0,-4],[-2,-6],[-1,-6],[-2,-4],[-4,-1],[-4,2],[-2,4],[-1,5],[-3,6],[-6,3],[1,-9],[3,-15],[2,-12],[-2,-13],[-5,-12],[-6,-8],[-6,0],[2,-9],[2,-9],[6,-14],[0,-2],[1,-8],[1,-2],[1,-2],[4,1],[1,-1],[2,-7],[0,-7],[-5,-13],[5,-4],[4,-19],[6,-5],[1,-3],[5,-14],[0,-5],[2,-3],[3,1],[3,3],[2,1],[3,-2],[2,-3],[2,-5],[1,-6],[1,-26],[0,-4],[-2,-3],[-1,-4],[0,-6],[-1,-6],[0,-5],[-2,-4],[-1,-3],[5,2],[4,8],[4,18],[4,-6],[3,-7],[3,-5],[5,-2],[8,4],[4,0],[2,-6],[6,-12],[4,-5],[1,2],[1,3],[1,2],[4,0],[5,-1],[3,-4],[1,-11],[-4,3],[-6,2],[-3,-2],[3,-9],[1,-10],[-3,-9],[-1,-6],[6,-2],[9,6],[4,0],[2,-8],[3,-6],[11,-2],[3,-7],[1,-9],[3,-8],[3,-5],[4,-1],[0,-4],[8,-21],[0,-21],[-10,-33],[1,-23],[8,-32],[2,-5],[2,3],[2,11],[2,3],[2,0],[0,-1],[1,-3],[2,-5],[0,-2],[0,-2],[-1,-3],[2,-1],[3,1],[1,-1],[2,-8],[0,-6],[-1,-2],[-1,-6],[3,-13],[5,-21],[-2,-5],[-2,-4],[-2,-2],[-3,-1],[2,-7],[9,-3],[4,-6],[-5,-8],[-5,-6],[-4,-8],[-1,-13],[1,-16],[4,1],[11,17],[3,-9],[4,-3],[5,-1],[2,-1],[-1,-18],[1,-9],[5,-4],[0,-4],[1,-8],[3,-5],[6,5],[2,6],[3,17],[3,5],[2,-4],[2,-6],[2,-14],[-15,-30],[-1,-10],[1,-14],[5,-23],[3,-7],[1,-4],[0,-5],[-2,-7],[-2,-1],[-3,-1],[-4,-6],[-2,-10],[1,-13],[3,-12],[3,-11],[2,-6],[2,-3],[1,-4],[1,-8],[0,-5],[-2,-14],[0,-7],[1,-12],[2,-13],[11,-37],[1,-9],[1,-28],[2,-12],[11,-37],[-5,-7],[-1,-4],[0,-6],[6,-3],[1,-12],[1,-3],[7,-16],[-1,-6],[-4,-11],[-1,-5],[1,-2],[14,-10],[1,-2],[2,-5],[3,-8],[2,-9],[3,-6],[5,5],[1,-11],[1,-12],[0,-23],[-2,-15],[-3,-8],[-4,-8],[-3,-12],[9,4],[10,11],[10,14],[5,12],[5,22],[3,6],[5,-6],[7,-19],[4,-12],[1,-9],[2,-7],[23,-39],[2,-7],[2,-19],[6,-19],[7,-14],[6,-7],[-7,54],[-19,90],[-5,13],[-2,14],[0,11],[6,-4],[-2,10],[-4,8],[-1,9],[2,12],[3,8],[5,26],[2,20],[3,8],[3,7],[3,2],[5,2],[10,8],[1,-4],[5,-5],[1,-3],[1,-5],[5,-28],[2,-9],[3,-7],[3,-6],[2,-2],[3,-2],[1,-3],[1,-7],[0,-6],[1,-5],[0,-4],[1,-4],[7,-10],[1,-7],[-4,-7],[5,-16],[6,-10],[23,-14],[4,-4],[7,-12],[5,-5],[8,-7],[5,-5],[2,-5],[5,-12],[4,-7],[5,-4],[14,-8],[6,-8],[21,-37],[2,4],[-5,10],[-4,17],[-3,17],[2,9],[0,4],[-10,16],[-3,32],[3,36],[6,26],[3,-5],[7,-8],[5,6],[4,-5],[3,-8],[-5,-5],[2,-5],[0,-5],[-1,-4],[-2,-2],[3,-2],[3,-4],[3,-5],[2,-5],[2,4],[-2,7],[-1,9],[1,10],[4,6],[1,-13],[1,-14],[3,-13],[3,-9],[2,-2],[7,-5],[3,-1],[2,-3],[1,-7],[-1,-7],[-2,-3],[-7,-19],[-5,-5],[-2,14],[-3,3],[-3,-4],[-2,-8],[6,-9],[-4,-16],[7,3],[4,-3],[1,-11],[-1,-16],[1,-9],[3,-3],[3,3],[3,7],[1,7],[1,8],[0,16],[1,14],[3,3],[2,-7],[1,-16],[-2,-34],[2,-16],[6,1],[2,-12],[3,-15],[1,-10],[-2,-11],[-3,-23],[-2,-24],[-2,-21],[-2,-30],[-1,-5],[0,-2],[1,-7],[-1,-3],[-1,-1],[-5,2],[-6,-2],[-2,-3],[2,-6],[2,-4],[5,-7],[2,-3],[0,-6],[-2,-5],[0,-6],[1,-5],[1,-4],[1,-5],[0,-11],[-5,-49],[1,-22],[10,-13],[-2,-10],[0,-9],[2,-9],[4,-8],[0,3],[1,2],[1,3],[5,-13],[-2,-16],[-6,-13],[-7,-6],[8,-61],[8,-14],[9,-24],[2,-8],[-3,-6],[-5,-3],[-11,1],[0,-4],[6,-2],[6,-4],[4,-8],[1,-12],[3,-11],[6,4],[6,9],[2,4],[6,-1],[8,-11],[7,-2],[4,-8],[4,-19],[8,-7],[9,-17],[3,-7],[4,-6],[4,-20],[2,-11],[1,-15],[1,-5],[1,-6],[4,-12],[1,-1],[3,-6],[6,-6],[12,-6],[2,0],[2,0],[3,0],[1,-2],[0,-5],[1,-5],[1,-5],[1,-3],[1,0],[2,1],[3,-1],[3,-2],[1,-5],[3,-11],[2,-5],[16,-32],[5,-15],[4,-14],[1,-4],[2,-2],[1,4],[2,5],[2,3],[4,0],[5,-3],[4,-5],[5,-9],[2,-2],[1,-3],[2,-6],[-1,-4],[-1,-2],[-1,-2],[-1,-2],[0,-12],[2,-6],[2,-5],[5,-4],[1,3],[0,2],[1,1],[0,2],[-1,5],[3,11],[0,9],[1,-3],[2,-3],[1,-2],[7,3],[7,-8],[6,-12],[7,-8],[-3,22],[-2,9],[-3,10],[-4,5],[-8,9],[-1,6],[2,7],[5,3],[5,1],[5,-3],[3,-5],[3,-7],[4,-6],[5,-2],[0,-4],[-6,-12],[3,-9],[5,-3],[0,8],[3,2],[8,14],[0,-18],[2,-21],[3,-19],[4,-13],[7,-12],[4,-5],[5,-1],[2,0],[0,1],[2,3],[1,4],[0,3],[1,4],[2,1],[1,-5],[0,-14],[1,-5],[2,-6],[6,-8],[1,-5],[1,-10],[17,-104],[16,-61],[7,-10],[10,-36],[8,-16],[43,-62],[6,-3],[5,-1],[17,-11],[9,-13],[9,-21],[6,-24],[2,-27],[0,-51],[2,-12],[20,-60],[1,-5],[3,-7],[11,-13],[1,-11],[-1,-5],[-2,-2],[-6,-1],[-1,1],[-4,3],[-2,0],[-2,-1],[-1,-3],[0,-2],[1,-2],[7,-1],[6,-5],[5,-6],[4,-8],[3,-8],[4,-8],[6,-6],[14,-4],[7,-3],[7,-6],[5,-6],[0,7],[0,8],[0,7],[4,3],[1,-3],[2,-14],[3,-3],[14,-5],[3,-2],[1,-6],[0,-16],[4,-54],[-1,-4],[-11,-13],[-2,-5],[-2,-7],[-1,-6],[6,4],[15,18],[5,0],[1,-9],[-2,-6],[-4,-4],[-2,-3],[2,-7],[4,-2],[2,-4],[-3,-10],[-10,-18],[-4,-10],[-2,-14],[3,-35],[0,-15],[-7,-3],[3,-8],[4,-7],[8,-10],[-4,-3],[-2,0],[3,-11],[4,-8],[6,-4],[5,-2],[11,-36],[2,-12],[2,-24],[0,-11],[-1,-2],[-2,-7],[-1,-5],[0,-6],[0,-19],[2,0],[8,32],[1,7],[0,19],[1,11],[3,9],[-3,9],[-1,3],[5,-4],[1,-7],[2,-17],[6,-31],[3,-10],[7,-5],[9,-1],[7,6],[-1,-9],[-5,-15],[-2,-14],[-5,-22],[-3,-7],[-2,-8],[-2,-25],[-2,-6],[-4,-30],[-1,-9],[-8,-60],[-1,-21],[0,-11],[1,-10],[3,-9],[4,-4],[4,-1],[3,-2],[2,-9],[-4,-18],[-2,-20],[-1,-112],[1,-9],[1,-5],[0,-3],[9,-5],[-2,-29],[0,-10],[2,-19],[1,-7],[2,-3],[-3,-4],[-1,-11],[-1,-12],[0,-9],[0,4],[1,-23],[1,-20],[15,-71],[1,-19],[-5,-13],[-10,9],[-11,-3],[-9,-13],[-8,-17],[-2,-7],[-2,-13],[0,-12],[5,-5],[6,-1],[3,1],[3,2],[3,5],[2,-4],[-1,-27],[-3,-7],[-4,-4],[-5,-8],[-3,-12],[1,-9],[3,-7],[4,-6],[5,-5],[12,-7],[5,-7],[2,-11],[2,-27],[2,-12],[5,-10],[4,-1],[4,0],[4,-3],[2,-7],[3,-7],[3,-16],[1,-6],[0,-4],[0,-4],[6,-14],[1,-4],[0,-37],[2,-9],[2,-7],[6,-12],[1,-7],[0,-1],[2,-13],[2,-6],[1,-2],[1,-2],[8,-16],[3,-9],[-1,-8],[-1,-8],[2,-4],[5,3],[3,11],[2,0],[0,-11],[-4,-30],[0,-10],[0,-34],[-4,16],[-2,-6],[-2,-10],[-1,-11],[1,-10],[3,-3],[2,4],[3,7],[2,5],[2,-19],[1,-55],[4,-11],[5,-11],[6,-22],[1,-1],[7,-17],[8,2],[3,-11],[3,-31],[2,-13],[0,-30],[-7,-84],[-1,-26],[4,-51],[2,-10],[11,-22],[2,-10],[0,-3],[-3,-12],[-1,-5],[1,-6],[0,-7],[0,-7],[-5,-19],[0,-13],[3,-26],[-2,-24],[-6,-17],[-17,-28],[-13,-34],[-6,-21],[-4,-22],[-1,-7],[0,-5],[3,-28],[0,-6],[-1,-3],[-6,-3],[-1,-2],[-1,-7],[-12,-39],[-6,-23],[-2,-25],[2,-22],[5,-13],[1,-8],[-3,-10],[-1,-7],[0,-11],[1,-11],[1,-5],[-3,-12],[-2,-27],[-5,-17],[-1,-7],[0,-12],[0,-3],[1,-6],[0,-4],[0,-3],[-3,-7],[0,-4],[0,-14],[2,-10],[-1,-9],[-7,-22],[-1,-11],[-1,-10],[0,-9],[2,-24],[-1,-5],[-4,-9],[-1,-4],[-1,-27],[-1,-13],[-2,-11],[-10,-26],[-1,-9],[-1,-3],[-4,-10],[-1,-7],[1,-6],[1,-16],[0,-33],[-4,-27],[-15,-50],[3,-16],[-4,-23],[-12,-38],[-2,-10],[-2,-19],[-7,-21],[-2,-12],[-6,-49],[-1,-34],[-3,-11],[1,-2],[-6,-47],[3,-10],[1,-50],[7,-23],[2,-4],[2,-4],[3,-3],[3,0],[1,5],[1,2],[2,-2],[2,-6],[1,-6],[-1,-13],[0,-5],[-1,-5],[-5,-9],[-5,-20],[-2,-22],[2,-10],[3,-3],[1,-5],[0,-10],[-5,-7],[-9,-19],[-8,-26],[-1,-20],[-5,-24],[3,-9],[2,-38],[-13,-28],[-4,-17],[0,-15],[5,-11],[1,-9],[1,-5],[-2,-12],[-8,-13],[-8,-16],[-9,-22],[1,-18],[-3,-15],[3,-11],[-5,-7],[-5,-12],[-7,-17],[5,-9],[-1,-8],[-7,-13],[-9,-23],[-2,-20],[3,-9],[-9,-10],[-6,-15],[-8,-11],[-15,-25],[-18,-58],[3,-17],[-8,-15],[-2,-11],[-2,-12],[-1,-15],[2,-9],[5,-4],[3,-8],[5,-5],[1,-8],[-3,-8],[-3,-8],[-2,-8],[-2,-5],[-2,-8],[0,-8],[1,-10],[3,-1],[4,-4],[0,-4],[-1,-3],[-2,-2],[0,-4],[-2,-7],[0,-9],[-3,-11],[-1,-13],[0,-10],[5,-9],[-38,-28],[-13,-15],[-17,-27],[-2,-17],[-6,-3],[-8,-8],[-7,-14],[-5,-13],[-2,-9],[5,-11],[4,-6],[-4,-1],[-1,2],[-2,5],[-1,2],[-1,0],[-3,-1],[-1,1],[-7,10],[-3,2],[0,-2],[-5,-8],[-2,-2],[-14,-9],[7,-10],[2,-2],[21,0],[3,-1],[3,-3],[2,-2],[-1,-2],[-1,-2],[0,-13],[-1,-5],[-3,-2],[-7,2],[-3,-2],[-2,-7],[-1,-3],[-2,-2],[-3,-2],[-14,5],[-21,-8],[-14,-10],[-16,-16],[-6,-8],[-6,-5],[-9,-17],[1,-16],[-5,-7],[-4,-8],[-6,-7],[-4,-9],[0,-13],[0,-12],[-4,-3],[-5,-5],[-6,-13],[-3,-7],[-1,-7],[-1,-8],[-3,-14],[-2,-20],[-3,-8],[-2,-10],[-1,-10],[-3,-9],[-7,-7],[-5,-15],[-2,-12],[4,-11],[-2,-5],[-11,-16],[-4,-5],[0,6],[4,8],[3,15],[-7,10],[-7,-7],[-10,-19],[-1,-4],[5,-10],[-4,-1],[-4,-2],[1,-7],[2,-6],[2,-2],[4,-2],[4,8],[2,5],[3,-2],[-1,-10],[-3,-8],[-2,-12],[-7,-15],[-4,-10],[2,-5],[0,-5],[-4,-6],[2,-9],[1,-4],[-2,-3],[-4,-2],[2,-9],[-1,-3],[0,-4],[-2,-4],[-2,-3],[-2,-1],[-6,0],[-2,-1],[-5,2],[-2,-5],[-3,-4],[-6,-2],[-4,2],[-7,-8],[-4,0],[-3,9],[-3,15],[-4,-8],[-1,-12],[2,-11],[5,-5],[-2,-5],[-1,-3],[-2,-3],[-3,-1],[0,-4],[7,1],[9,20],[5,2],[3,-5],[-3,-17],[-3,-17],[2,-8],[3,7],[3,9],[2,18],[4,-15],[-5,-30],[-4,-15],[-1,-16],[0,-3],[2,-6],[2,-7],[0,-6],[-3,-14],[-1,-26],[-3,-3],[-4,1],[-3,0],[-4,-8],[-2,-9],[0,-6],[2,-4],[4,-2],[3,4],[2,6],[0,2],[2,-8],[0,-13],[-5,-27],[2,-8],[-4,-18],[-2,-6],[-3,-7],[-2,3],[-8,19],[-3,5],[-6,-3],[-1,-6],[-1,-8],[-3,-8],[-5,-2],[-6,2],[-5,0],[-3,-8],[8,-4],[2,-2],[3,-5],[2,0],[3,9],[17,-4],[3,0],[0,-10],[-2,-3],[-13,-1],[-1,1],[-1,-1],[-2,-4],[-1,-5],[-1,-5],[-2,-4],[-4,-3],[3,-2],[7,0],[2,-2],[0,-6],[-3,-6],[-5,-8],[-10,-15],[-5,-8],[-7,-7],[-12,-16],[-5,-11],[-11,-25],[-8,-24],[-4,-16],[1,-20],[-6,-26],[-1,-26],[4,-21],[-6,-9],[-3,-17],[-4,-9],[-5,3],[4,11],[-2,5],[-4,2],[-2,0],[-1,-2],[-10,-20],[2,-6],[1,-2],[3,-1],[6,1],[3,-5],[8,-13],[4,-6],[5,-1],[-9,-2],[-3,-12],[-7,-74],[-4,-18],[-6,-8],[-9,-6],[-7,-31],[-7,-7],[0,-2],[3,-6],[4,-6],[3,-2],[4,-3],[0,-5],[-4,-4],[-5,0],[2,-6],[6,-5],[3,-6],[-2,-4],[2,-4],[-3,-16],[6,-10],[9,-5],[6,-2],[1,-4],[-3,-19],[0,-14],[-3,-8],[-7,-11],[-2,6],[-4,6],[-2,7],[1,7],[3,9],[-3,13],[1,8],[-5,5],[-5,-2],[-5,-4],[-10,-5],[-2,-8],[-3,-22],[5,-2],[2,-8],[-1,-10],[1,-6],[1,-2],[4,-7],[5,2],[4,4],[4,1],[1,-6],[0,-9],[-2,-10],[-1,-8],[-3,-2],[-2,0],[-2,1],[-1,-1],[-1,-2],[-2,-3],[-2,-3],[-2,-2],[-6,14],[-13,-2],[-7,-5],[-7,-5],[-9,-10],[-2,-5],[-1,-10],[-1,-6],[-2,-4],[-3,-5],[-6,-15],[-3,-10],[-2,-11],[0,-15],[1,-9],[1,-3],[0,-2],[-2,-6],[-8,-12],[-1,-3],[-2,-10],[-3,-9],[-4,-8],[-2,-7],[-1,-12],[0,-31],[0,-6],[-5,-5],[-5,-13],[-11,-36],[-7,-36],[-4,-13],[-5,-5],[-6,3],[-6,8],[-3,-3],[-8,-5],[7,-15],[2,-16],[1,-4],[3,-8],[1,-6],[-1,-14],[-2,-7],[-4,-3],[-7,-4],[-1,-2],[-10,-20],[-1,-3],[0,-8],[3,-16],[1,-10],[-2,-41],[-2,-22],[-5,2],[-7,6],[-5,-8],[1,-5],[0,-3],[-3,-5],[2,1],[1,0],[2,1],[1,3],[5,-5],[4,-8],[3,-10],[-6,-22],[-1,-13],[1,-13],[6,-34],[0,-12],[-3,-5],[0,-3],[2,-13],[0,-7],[-1,-5],[-3,-5],[-5,-8],[-5,-10],[-3,-11],[-3,-12],[-1,-13],[2,-14],[0,-6],[-1,-4],[-3,-12],[-1,-7],[2,-25],[1,-14],[-2,-12],[-8,-22],[-10,-37],[-1,-10],[-1,-11],[0,-13],[-2,-15],[-4,-15],[-5,-12],[-5,-9],[3,-13],[-1,-11],[-7,-20],[-2,-14],[2,-6],[4,-3],[5,-6],[-3,-7],[-3,-10],[0,-12],[1,-9],[3,-5],[1,-4],[1,-5],[0,-7],[0,-5],[-2,-4],[-1,-1],[-1,2],[-2,3],[-4,-5],[-5,-8],[-1,-4],[-3,-3],[2,-7],[4,-7],[5,-3],[4,1],[3,2],[2,0],[3,-3],[11,-15],[2,-5],[2,-9],[1,-19],[1,-9],[10,-28],[0,-5],[-7,6],[-6,4],[-6,0],[-6,-5],[-4,-10],[0,-9],[6,-22],[-4,-24],[0,-22],[3,-23],[5,-25],[-4,-8],[-5,-13],[-16,-10],[-33,-5],[3,2],[1,3],[0,4],[-2,4],[4,9],[-1,5],[-4,-1],[-2,-10],[-4,3],[-11,5],[11,-30],[2,-10],[-3,-8],[-9,-14],[-3,-16],[-10,-25],[-3,-6],[-14,-6],[-2,-4],[-1,-5],[-3,-5],[-5,-4],[-12,-3],[-6,-6],[-1,-3],[-3,-10],[-2,-3],[-3,-2],[-38,0],[-12,-7],[-7,-15],[-2,4],[-2,4],[0,4],[0,6],[-2,2],[-22,0],[-6,2],[-4,6],[-12,-8],[-42,0],[-11,-4],[-32,-1],[-6,-3],[-8,-10],[-4,-2],[-33,7],[-83,-7],[-49,-20],[-59,-36],[-44,-40],[-47,-56],[-54,-83],[-59,-105],[-28,-45],[-27,-58],[-25,-37],[-3,-3],[-1,-3],[-9,-24],[-3,1],[-1,6],[4,8],[-5,3],[-39,-15],[-13,2],[-7,-2],[-12,-14],[-6,-1],[-6,2],[-7,1],[-13,-6],[-7,-6],[-3,-7],[-3,-5],[-6,9],[-5,11],[-1,4],[-5,3],[-26,-4],[-5,-2],[-4,-6],[-12,-24],[10,-17],[1,-4],[2,-10],[3,-6],[1,-1],[5,1],[1,-1],[0,-4],[0,-4],[0,-3],[1,-8],[0,-7],[1,-6],[4,-3],[-2,-12],[2,-6],[5,-2],[4,4],[4,7],[6,15],[5,6],[3,1],[5,-1],[3,2],[1,5],[1,6],[0,5],[1,6],[3,10],[4,6],[4,0],[4,-11],[-2,-8],[0,-10],[0,-17],[0,-6],[2,-4],[1,-4],[1,-4],[0,-5],[0,-2],[0,-2],[0,-6],[-2,-3],[-3,-5],[-3,-7],[-2,-9],[0,-6],[-3,-18],[0,-9],[0,-4],[2,-2],[2,0],[4,4],[1,-2],[4,-22],[-2,-4],[-3,-1],[-5,-3],[-4,-6],[0,-5],[2,-7],[-1,-11],[-3,-5],[-4,-4],[-5,-2],[-4,3],[-8,7],[-4,6],[-3,8],[-1,10],[2,3],[4,3],[1,8],[-2,6],[-11,10],[-3,6],[-7,19],[-4,33],[-19,42],[-25,29],[-21,-7],[-2,-9],[-1,-11],[0,-18],[-3,-3],[-15,-5],[-5,2],[-2,6],[-5,39],[-12,42],[-9,24],[-15,26],[-3,9],[8,-5],[11,-17],[8,-2],[-6,18],[-6,11],[-9,6],[-12,1],[-10,-4],[-16,-19],[-12,-1],[-8,11],[-11,40],[-4,9],[-4,2],[-15,15],[-15,4],[-5,4],[0,3],[6,3],[7,6],[3,8],[-3,8],[3,8],[1,9],[-1,10],[-3,10],[8,8],[3,-1],[3,-3],[2,-3],[1,-1],[6,1],[5,8],[3,7],[2,4],[5,4],[-1,10],[-4,10],[-6,5],[-1,3],[1,7],[1,9],[-1,6],[-4,10],[-8,23],[-3,7],[-5,3],[-5,1],[-13,-4],[-10,0],[-2,-3],[-1,-4],[-2,-1],[-4,6],[-5,3],[-7,-1],[-4,-4],[2,-9],[-2,-5],[-3,-5],[-2,-5],[-2,-15],[-3,-3],[-3,-2],[-2,-6],[0,-6],[5,-9],[1,-7],[0,-14],[1,-16],[-25,7],[-7,-3],[-2,-5],[-1,-7],[-2,-6],[-9,-5],[-3,-7],[-4,-15],[2,-4],[-5,-3],[-20,-3],[-3,-7],[-6,5],[-10,12],[-43,77],[-5,6],[-6,2],[-4,3],[-1,6],[1,4],[2,-2],[3,-4],[10,-3],[5,-6],[10,-18],[5,-4],[13,0],[12,4],[17,14],[8,4],[3,5],[1,6],[-1,6],[0,5],[2,5],[6,8],[1,4],[2,10],[1,6],[2,5],[5,10],[3,10],[13,28],[3,20],[-1,22],[-5,22],[-7,17],[-2,3],[-9,5],[-3,4],[-2,4],[-6,21],[-3,24],[-3,12],[-5,10],[-8,9],[-7,-1],[-1,-18],[-18,4],[-5,-3],[-2,-8],[-1,-9],[-2,-8],[-3,-5],[-5,-3],[-5,-3],[-4,-2],[-3,-4],[-11,-17],[-2,-5],[-4,-7],[-32,-18],[-4,-6],[-3,-8],[-3,-7],[1,-5],[1,-4],[0,-4],[-3,-4],[-3,0],[-3,2],[-2,3],[-2,4],[-8,-5],[-16,-1],[-6,-7],[-3,-16],[5,-7],[15,-1],[25,-11],[9,3],[7,6],[20,23],[14,-13],[6,-11],[-2,-15],[-1,-4],[0,-8],[0,-3],[-2,-2],[-4,0],[-2,-2],[-5,-9],[-2,-7],[-2,-8],[-1,-14],[-11,-4],[-23,2],[-3,-3],[-2,-3],[-2,-2],[-4,0],[-3,1],[-6,5],[-3,2],[-7,-2],[-5,-5],[-26,-33],[-14,-23],[-3,-3],[-6,-1],[-3,-2],[-2,-3],[-4,-10],[-2,-4],[-14,-7],[-1,-2],[-3,-9],[-2,-2],[-12,-4],[-5,-6],[-15,-29],[-1,-3],[1,-5],[0,-5],[-2,-7],[-4,-4],[-7,-3],[-3,-3],[-4,-9],[-6,-26],[-5,-5],[-2,-3],[-3,-5],[-4,-10],[-3,-5],[-28,-16],[-5,-2],[-6,-4],[-3,-9],[-3,-10],[-3,-12],[0,-1],[0,-2],[-1,-2],[-2,-1],[-3,1],[-1,0],[-10,-10],[-3,-5],[-7,-17],[-5,-6],[-6,-3],[-5,5],[-9,16],[-4,3],[-1,2],[-3,9],[-1,2],[-11,7],[-10,12],[-5,3],[-7,2],[-26,-4],[-5,4],[-5,8],[-5,9],[-2,9],[-17,27],[-10,13],[-6,5],[-31,10],[-13,10],[-8,3],[-5,6],[-2,1],[-10,4],[-14,24],[-7,7],[-23,32],[-18,17],[-10,14],[-4,3],[-2,3],[-1,1],[-2,0],[-1,1],[-4,13],[1,3],[-1,3],[-4,1],[-3,-2],[-1,-6],[-1,-6],[-1,-6],[-6,5],[-3,4],[-6,11],[-4,3],[-24,0],[-8,-4],[-4,-11],[-12,-8],[-14,4],[-23,20],[-30,39],[-10,10],[-3,1],[-10,-1],[-4,2],[-6,5],[-29,5],[-11,-3],[-13,-10],[-12,-14],[-4,-18],[2,-9],[6,-11],[2,-8],[0,-8],[-1,-2],[-8,2],[-2,1],[-1,2],[-2,1],[-2,-2],[-6,-10],[-1,-4],[-1,-7],[-2,-5],[-4,3],[-3,7],[-4,15],[-3,7],[-3,3],[-4,3],[-4,1],[-5,1],[-5,-2],[-1,-3],[0,-6],[-2,-7],[-3,-2],[-5,3],[-4,5],[-2,4],[1,5],[4,11],[2,9],[1,4],[-1,10],[-2,8],[-4,9],[-45,70],[-22,27],[-41,34],[-4,6],[-6,3],[-66,-9],[-6,1],[-6,4],[-5,6],[-5,7],[-2,2],[-7,-1],[-2,3],[-3,6],[-2,3],[-6,5],[-21,35],[-6,7],[-11,6],[-5,5],[-1,2],[-1,8],[0,2],[-2,1],[-3,2],[-1,1],[-3,6],[-1,4],[0,8],[-1,9],[-4,18],[-14,40],[-2,11],[-11,38],[-8,14],[-21,28],[-7,15],[0,4],[6,4],[0,11],[-5,12],[-6,6],[-3,2],[-5,8],[-4,2],[-1,0],[-3,3],[-1,1],[-2,-2],[-1,-4],[0,-4],[0,-2],[-9,8],[-54,130],[-7,28],[-8,24],[2,6],[4,3],[5,7],[2,16],[-4,13],[-5,13],[-4,15],[-1,23],[-2,8],[-5,10],[-7,7],[-3,5],[-1,8],[31,31],[9,13],[7,20],[4,22],[2,25],[-2,78],[-1,8],[-34,147],[-26,100],[-19,76],[-6,10],[-9,14],[-11,30],[-2,9],[-3,7],[-51,90],[-21,35],[-10,11],[-9,17],[-8,8],[-10,16],[-9,8],[-9,17],[-9,6],[-14,18],[12,6],[11,-12],[97,-155],[28,-47],[14,-30],[18,-43],[10,-36],[18,-69],[2,0],[-2,26],[-15,64],[-3,23],[-2,9],[-33,74],[-5,8],[-11,7],[-4,8],[-7,17],[-53,82],[-5,3],[-18,26],[-3,6],[-11,12],[-3,4],[-2,11],[2,7],[4,3],[5,-4],[1,15],[2,9],[8,14],[6,8],[5,-3],[9,-15],[4,-4],[5,-2],[4,-5],[2,-11],[-1,-14],[-2,-9],[-1,-6],[2,-10],[2,-2],[3,0],[1,-1],[0,-9],[-2,-4],[-4,-4],[-2,-6],[1,-8],[4,-3],[15,-4],[5,0],[6,8],[1,11],[-1,13],[2,11],[4,12],[-1,9],[-20,32],[-4,4],[-9,4],[-4,4],[-1,7],[3,4],[9,3],[1,3],[1,2],[1,3],[3,1],[3,-1],[16,-7],[3,2],[3,8],[1,7],[-3,7],[-3,7],[-2,7],[4,24],[0,7],[-3,4],[-4,-4],[-6,-12],[-4,24],[-9,15],[-13,7],[-12,2],[1,-3],[1,-2],[1,-2],[2,-1],[-4,-9],[-13,-13],[-5,-8],[-4,-5],[-8,-2],[-8,1],[-5,4],[-13,-10],[-6,-8],[-2,-13],[1,-17],[4,-6],[12,-7],[5,-6],[2,-7],[-2,-5],[-7,-3],[-3,2],[-6,5],[-16,5],[-2,4],[-3,9],[-2,4],[-3,1],[-21,-3],[-3,-4],[4,-11],[5,-3],[20,-1],[3,-1],[3,-3],[4,-10],[3,-2],[4,1],[3,3],[2,0],[6,-6],[-2,-5],[-5,-4],[-7,-1],[-3,1],[-5,2],[-3,1],[-3,-1],[-5,-6],[-3,-1],[-5,3],[-10,11],[-7,2],[-12,-2],[-24,-12],[-6,-5],[-3,-7],[-2,-10],[-4,-8],[-10,-13],[-11,-8],[-26,-7],[-44,3],[0,5],[-4,-6],[-6,-5],[-6,-4],[-6,-2],[-6,2],[-6,5],[-14,24],[0,6],[1,7],[2,15],[2,10],[4,9],[6,7],[27,23],[8,12],[8,18],[7,22],[4,10],[5,5],[4,2],[6,6],[5,6],[3,6],[2,12],[-1,24],[1,13],[2,5],[2,3],[2,4],[2,8],[0,7],[-2,6],[-1,5],[-1,6],[0,11],[2,34],[3,11],[8,21],[2,11],[-1,25],[-5,48],[-1,24],[2,49],[2,12],[4,1],[5,-7],[4,-12],[0,11],[-1,14],[-3,11],[-5,4],[-3,2],[-3,4],[-2,6],[0,6],[-2,3],[-7,4],[-3,3],[-1,6],[0,6],[0,6],[-1,7],[-1,4],[-10,17],[-8,11],[-3,8],[-5,23],[-3,10],[-10,10],[-4,12],[-5,27],[-10,70],[-6,19],[-9,10],[-4,6],[-1,6],[3,12],[-1,11],[-17,40],[-6,9],[-3,-7],[-1,-13],[-3,-11],[-10,-27],[-2,-10],[0,-12],[4,-12],[2,-4],[1,-5],[1,-5],[-11,-29],[-19,-34],[-1,-9],[-9,-57],[-1,-9],[0,-17],[0,-7],[-2,-5],[8,-20],[-4,-12],[-3,-13],[-2,-15],[-2,-41],[-1,-8],[-1,-8],[-5,-14],[-1,-5],[-2,-7],[-5,-12],[-1,-5],[0,-8],[-4,-26],[-7,-35],[-3,-19],[3,-15],[-6,-8],[-2,-7],[2,-20],[-1,-20],[0,-2],[-1,-2],[-8,-7],[-7,-16],[-2,-4],[-4,-1],[-14,8],[-11,16],[-5,6],[-4,0],[-8,0],[-3,1],[-5,6],[-2,1],[-11,0],[-5,-1],[-6,-3],[-6,-7],[-9,-18],[-5,-4],[-20,4],[-6,-4],[-8,-15],[-5,-16],[-6,-10],[-13,0],[-17,9],[-6,0],[-17,-17],[-7,-17],[-11,-7],[-11,1],[-5,14],[-1,3],[-4,5],[-1,5],[0,4],[3,9],[1,6],[2,7],[9,9],[4,6],[-2,4],[2,4],[5,5],[2,3],[1,4],[2,8],[6,21],[0,9],[-1,11],[-3,9],[-1,5],[-1,5],[3,9],[7,11],[1,7],[-2,11],[12,29],[1,10],[3,0],[18,-14],[12,-1],[24,11],[12,1],[6,-3],[2,-6],[3,-4],[14,-6],[5,-6],[4,-4],[8,5],[8,17],[1,20],[0,23],[2,26],[4,17],[2,7],[0,7],[-1,14],[1,7],[9,57],[-4,16],[-1,21],[-4,17],[1,25],[-1,10],[-6,11],[-4,-2],[-4,-8],[-4,-4],[0,5],[6,26],[2,9],[1,1],[4,-1],[1,0],[0,3],[1,6],[2,7],[2,13],[2,43],[0,13],[0,14],[-2,13],[-3,13],[-5,17],[-1,5],[1,5],[2,4],[2,2],[7,-7],[3,-1],[4,8],[8,30],[2,9],[-1,8],[0,5],[-3,13],[-2,6],[-1,1],[3,9],[3,10],[5,10],[6,9],[7,6],[2,6],[1,7],[1,5],[-2,7],[-2,5],[-2,4],[-2,4],[4,5],[4,7],[6,15],[14,23],[3,3],[11,37],[6,19],[5,-3],[2,0],[17,43],[5,17],[7,6],[1,-6],[-3,-10],[2,-8],[7,7],[1,7],[-1,15],[2,15],[0,15],[-2,10],[-3,14],[-4,19],[-3,10],[-3,8],[-3,7],[-3,10],[1,13],[1,9],[-2,9],[-5,12],[-7,18],[-2,20],[3,8],[2,12],[3,12],[4,9],[11,6],[16,22],[2,0],[2,-4],[2,0],[1,1],[3,6],[1,1],[4,-2],[3,-4],[2,-1],[4,5],[1,6],[1,3],[-1,2],[0,5],[0,14],[0,4],[-2,9],[-1,10],[-3,8],[-3,7],[-2,3],[-7,-1],[-2,2],[-2,5],[-1,3],[-16,128],[0,8],[3,6],[7,7],[-11,18],[-2,4],[-1,3],[-2,2],[-2,1],[-3,3],[-3,1],[-1,3],[0,2],[0,3],[0,2],[-1,3],[2,11],[0,5],[-2,5],[-6,11],[-3,8],[-2,9],[1,8],[4,7],[-3,5],[-2,1],[-3,1],[-2,2],[-1,5],[-1,12],[-1,3],[-3,-3],[-1,-9],[-1,-12],[-1,-8],[2,-12],[0,-14],[0,-25],[-2,-14],[0,-6],[7,-5],[3,-6],[2,-8],[1,-8],[2,-24],[0,-40],[0,-6],[-1,-5],[-2,-7],[-3,-14],[-2,-6],[-2,-1],[-2,3],[-1,1],[-2,-7],[0,-5],[0,-7],[1,-6],[5,-13],[1,-7],[-2,-5],[-7,-1],[-4,0],[-2,2],[-6,6],[-8,14],[-5,2],[-7,-6],[-6,-9],[-4,-9],[0,-4],[0,-12],[0,-5],[-1,-4],[-22,-44],[-6,-6],[-6,-5],[-5,-7],[-2,-13],[0,-14],[-1,-12],[-2,-10],[-13,-42],[-1,-11],[-2,-46],[-2,-14],[-3,-11],[-11,-29],[-3,-11],[-15,-67],[-8,-24],[-6,-11],[-5,-4],[-8,-16],[-7,-4],[-13,-3],[-18,-8],[-2,1],[-2,1],[-3,5],[-1,3],[0,4],[-1,5],[-6,8],[-5,2],[-5,-7],[-1,-13],[-1,-5],[-3,-5],[-3,-3],[-2,-1],[-3,-3],[0,-6],[1,-7],[1,-3],[16,12],[5,-1],[-15,-17],[-3,-6],[-6,-7],[-6,-1],[-7,0],[-7,-2],[-5,-6],[-3,-7],[-5,-5],[-7,-2],[-3,-3],[-4,-11],[-2,-3],[-2,-1],[-7,-7],[-17,-11],[-5,-7],[-2,-4],[0,-4],[-1,-12],[-11,-15],[-8,-15],[-5,-6],[-12,-5],[-5,-6],[-17,-27],[-3,-6],[-1,-6],[0,-12],[-1,-6],[-1,-6],[-4,-8],[-2,-6],[-3,-16],[-7,-14],[-17,-59],[-9,-14],[-17,-14],[-6,-17],[3,-9],[-2,-6],[-2,-5],[0,-6],[3,-8],[1,-7],[-1,-18],[-2,-20],[-4,-10],[-4,1],[-2,17],[-3,13],[-7,-3],[-14,-16],[-8,-1],[-4,-3],[-4,-8],[-1,-9],[-2,-17],[-2,-7],[6,-18],[1,-10],[-3,-9],[-6,11],[-5,2],[-5,-8],[-2,-15],[0,-6],[-1,-11],[-1,-7],[1,-5],[5,-10],[2,-7],[-2,-13],[-6,0],[-6,1],[-3,-6],[-1,-6],[-6,-7],[-1,-4],[2,-6],[3,-3],[9,0],[5,1],[6,4],[4,5],[11,20],[1,2],[4,-3],[2,-5],[2,-3],[3,3],[1,6],[0,13],[1,5],[2,3],[2,-1],[2,-4],[1,-8],[0,-26],[-2,-10],[-3,-10],[-5,-9],[-3,-7],[-1,-9],[9,-41],[-1,0],[0,-9],[1,-3],[3,-8],[-2,-6],[-7,-4],[-4,-6],[-5,6],[-5,25],[-4,5],[-3,2],[-7,7],[-4,1],[-1,4],[0,5],[-1,5],[-9,19],[-11,9],[-12,-2],[-10,-17],[-2,-12],[-1,-2],[-1,-2],[-2,0],[1,-5],[1,-7],[0,-6],[-3,-3],[-13,0],[-3,3],[0,7],[0,8],[0,7],[-5,18],[-26,50],[-10,27],[-5,11],[-8,11],[-12,10],[-4,4],[-3,3],[-8,-3],[-3,2],[6,21],[0,7],[-5,11],[-10,17],[-10,13],[-6,3],[-5,-2],[-5,-3],[-6,-2],[-4,-4],[-5,-8],[-5,-5],[-4,5],[1,11],[8,22],[3,10],[1,13],[3,8],[3,5],[4,8],[1,6],[1,7],[1,5],[2,3],[3,-3],[0,-6],[-3,-14],[1,-13],[4,-7],[4,-4],[20,-8],[4,-2],[-5,-7],[-2,-7],[1,-7],[4,-8],[8,-5],[2,-4],[-4,-7],[3,-7],[5,-8],[6,-6],[4,-3],[3,1],[5,6],[17,5],[2,7],[-6,4],[-12,3],[0,7],[1,11],[0,6],[-1,8],[-3,-2],[-3,-5],[0,-2],[-3,-5],[0,-5],[0,-1],[-3,2],[-2,4],[-1,6],[-1,7],[0,6],[0,2],[-1,7],[0,6],[4,5],[1,5],[0,7],[0,7],[-2,12],[-6,17],[-2,9],[-4,78],[-5,32],[-7,25],[-10,1],[-6,11],[-2,6],[-2,7],[5,2],[5,4],[2,7],[-2,7],[1,7],[0,6],[-1,5],[0,7],[0,26],[-2,12],[-4,10],[-7,17],[-8,35],[-4,5],[-6,3],[-4,6],[-21,44],[-16,29],[-17,20],[-3,6],[-6,9],[-2,3],[-5,15],[-2,3],[-9,8],[-2,4],[4,5],[-2,12],[1,11],[3,11],[1,12],[0,27],[-1,12],[-2,12],[-9,39],[-3,24],[-4,10],[-9,16],[-10,21],[-3,4],[-6,6],[-3,3],[-3,10],[5,3],[6,0],[4,2],[0,7],[-3,13],[-3,11],[-4,5],[-6,2],[-18,11],[-7,-2],[-3,-8],[1,-10],[4,-5],[8,1],[3,-1],[2,-6],[1,-6],[2,-4],[2,-3],[2,-5],[-2,-1],[-3,-2],[-2,-4],[-2,-5],[-7,20],[-4,6],[-13,5],[-18,21],[-9,2],[-6,-4],[-6,-7],[-7,-3],[0,4],[-2,6],[-3,4],[-1,-4],[0,-8],[-1,-8],[-1,-6],[-4,-4],[-15,25],[-2,10],[-1,12],[-1,11],[-6,29],[-3,7],[-3,3],[-6,1],[-8,-2],[-3,2],[-3,7],[4,6],[9,4],[4,6],[0,12],[-2,11],[-4,9],[-4,5],[-3,0],[-2,-3],[-1,-3],[-1,-2],[-3,2],[-5,6],[-11,2],[-4,3],[-2,11],[2,3],[3,9],[3,5],[7,10],[3,4],[2,14],[-2,17],[-5,16],[-10,28],[-1,4],[2,7],[4,1],[8,-4],[21,-1],[7,-3],[-4,-9],[-1,-5],[-1,-6],[0,-6],[0,-8],[0,-7],[1,-4],[4,-3],[2,2],[1,14],[2,7],[3,9],[6,8],[2,4],[1,6],[2,12],[4,14],[0,11],[-7,43],[-5,20],[-7,18],[-9,16],[-13,23],[-5,3],[-4,0],[-2,-1],[-3,-3],[-3,-6],[-2,-1],[-5,5],[-3,2],[-6,-4],[-4,-10],[-3,-10],[-3,-4],[-7,2],[-5,3],[-4,-2],[-6,-11],[-2,-6],[-1,-4],[-1,-4],[-4,-2],[-3,-1],[-3,1],[-2,3],[-1,7],[0,3],[2,7],[1,2],[0,2],[-1,7],[0,3],[-1,18],[1,4],[2,12],[4,13],[4,6],[1,-8],[3,-5],[5,1],[5,7],[0,11],[-2,8],[-9,20],[-2,10],[-2,7],[-13,24],[-4,14],[-2,2],[-4,-1],[-3,-4],[-2,-5],[-1,-2],[-4,1],[-2,4],[-1,6],[0,16],[-1,3],[-2,0],[-5,5],[-6,3],[-3,3],[-3,4],[0,1],[0,2],[1,7],[-1,6],[-2,2],[-3,1],[-3,3],[-1,6],[3,4],[2,4],[1,4],[-3,8],[-6,5],[-7,2],[-6,1],[-5,-4],[-1,-11],[0,-14],[-2,-11],[-3,-5],[-3,0],[-12,11],[-4,5],[-1,3],[-1,15],[-3,2],[-7,-11],[-3,-1],[-4,1],[-2,-2],[-1,-8],[1,-6],[2,-2],[7,-2],[6,-6],[5,-8],[1,-7],[-6,-4],[-2,2],[-5,6],[-3,1],[-2,-2],[-1,-4],[-1,-4],[-3,-2],[-15,3],[-9,4],[-6,5],[-7,-14],[-2,-3],[-3,2],[-4,9],[-6,3],[-6,5],[-3,1],[-3,-1],[-5,-5],[-2,-1],[-2,0],[-1,2],[-1,4],[-2,6],[-22,41],[-6,6],[-6,1],[-2,-2],[-2,-4],[-3,-3],[-3,1],[-1,5],[0,9],[-2,7],[-3,4],[-6,3],[-18,28],[-7,14],[-13,21],[-6,3],[-6,1],[-13,-2],[-13,2],[-20,8],[-7,1],[-13,-4],[-6,-4],[-5,-5],[-4,-5],[-2,-12],[1,-8],[3,-7],[4,-10],[-3,-2],[-3,1],[-6,5],[-6,4],[-6,0],[-6,-1],[-14,-11],[-13,-3],[-12,3],[-11,9],[-9,16],[-15,35],[-9,14],[-43,50],[-38,57],[-69,72]],[[85599,41533],[1,-4],[2,-2],[3,-2],[2,-2],[2,-12],[1,-15],[-1,-14],[-2,-8],[-2,5],[-2,4],[-3,4],[-3,3],[-5,10],[-2,7],[-1,9],[0,42],[2,6],[6,-9],[2,-20],[0,-2]],[[85670,41612],[4,-5],[2,-14],[1,-16],[0,-13],[-8,12],[-15,36],[-2,14],[-1,30],[2,8],[5,-3],[4,-10],[6,-32],[2,-7]],[[86008,41677],[1,-7],[-1,-7],[-1,-3],[-5,5],[-1,6],[-5,12],[-1,6],[-1,11],[0,3],[2,-2],[5,-6],[3,-5],[2,-6],[2,-7]],[[85981,41706],[12,-37],[3,-14],[1,-15],[0,-32],[-1,7],[-1,6],[-2,4],[-2,4],[-4,12],[-6,29],[-4,13],[-4,20],[-1,3],[2,7],[2,-1],[2,-4],[3,-2]],[[85138,42253],[6,2],[9,-2],[9,-6],[7,-6],[0,-4],[-4,-2],[-3,2],[-4,3],[-4,1],[-5,-2],[-4,-3],[-3,-1],[-2,6],[0,3],[-2,9]],[[87467,43329],[6,-1],[3,-2],[3,-3],[1,-12],[-2,-11],[-4,-7],[-6,4],[-3,7],[-3,14],[-3,23],[7,-10],[1,-2]],[[87489,43347],[6,-5],[0,-3],[-10,-8],[-4,2],[-4,6],[-3,3],[0,8],[13,3],[2,-6]],[[87533,43405],[-4,-8],[-6,-2],[-8,-4],[-3,7],[2,13],[9,-1],[7,-2],[3,-3]],[[87057,43605],[6,3],[7,2],[6,-2],[2,-9],[-3,-6],[-6,-3],[-11,-2],[-4,-2],[0,-5],[2,-7],[1,-6],[-3,-5],[-3,-2],[-4,0],[-3,3],[2,4],[-3,15],[0,7],[4,3],[2,1],[8,11]],[[87076,43686],[1,-10],[2,-7],[3,-7],[4,-5],[-5,-3],[-5,1],[-5,2],[-4,0],[-4,-3],[-4,-7],[-4,-7],[-2,-7],[0,5],[1,2],[1,6],[1,6],[-1,6],[0,4],[-2,4],[8,2],[6,6],[4,6],[5,6]],[[91110,24868],[-6,1],[-4,4],[-16,25],[-3,6],[-1,10],[-1,9],[-1,4],[-5,-6],[-3,-9],[0,-10],[1,-9],[2,-9],[-8,1],[-4,-7],[-4,-10],[-4,-8],[-6,16],[-20,32],[-1,17],[3,2],[7,7],[4,8],[-23,14],[-5,5],[-2,7],[-3,11],[-2,12],[1,9],[2,4],[9,7],[4,1],[1,2],[1,4],[0,3],[-1,2],[0,3],[0,5],[-2,5],[1,4],[4,2],[6,-1],[3,-1],[1,-4],[0,-18],[-1,-6],[-2,-11],[12,-19],[7,-6],[8,-3],[2,1],[3,2],[2,1],[5,0],[1,0],[4,3],[3,4],[6,9],[-8,1],[-6,6],[-4,11],[-3,15],[3,0],[1,1],[4,3],[0,4],[-8,3],[-1,8],[2,9],[1,8],[-4,5],[-17,-5],[-2,2],[-5,5],[-3,2],[-2,-1],[-9,-4],[-4,4],[-2,4],[-1,5],[-3,4],[-2,1],[-5,1],[-2,2],[-1,4],[0,5],[-1,6],[-2,5],[-3,3],[-3,0],[-14,-9],[-5,-5],[-4,-5],[0,-17],[5,-21],[11,-35],[-6,-16],[-3,-6],[-5,-6],[-15,-8],[-5,-5],[-3,5],[-4,7],[-2,9],[-1,7],[4,9],[4,-6],[3,-9],[3,-6],[5,5],[3,10],[1,9],[-1,5],[-4,4],[0,10],[3,22],[-5,-2],[-6,-6],[-4,-2],[-2,8],[-2,15],[-4,6],[-6,3],[-5,7],[-15,43],[-2,6],[-3,0],[-3,-3],[-3,-4],[2,-6],[3,-6],[2,-2],[5,-9],[4,-11],[5,-21],[6,-17],[0,-8],[-5,-19],[-3,-13],[0,-11],[1,-27],[-3,-2],[-5,7],[-9,14],[-5,-10],[2,-10],[9,-13],[2,-10],[-2,-5],[-5,-5],[-5,-8],[-3,-9],[-1,-9],[1,-9],[3,-22],[0,-11],[0,-23],[-2,-8],[-6,-8],[-6,-3],[-4,3],[-2,3],[-6,3],[-3,4],[0,4],[2,5],[0,5],[-4,2],[-12,-1],[-3,4],[3,11],[4,10],[0,4],[-1,7],[-2,14],[-2,-12],[-6,-10],[-5,-6],[-2,1],[-7,9],[-1,3],[0,25],[-2,15],[-4,1],[-4,-5],[-4,-7],[-2,-10],[-1,-16],[1,-14],[4,-7],[3,-2],[20,-24],[5,-8],[4,-9],[1,-10],[-1,-4],[-3,-5],[-3,-5],[-2,-2],[-4,0],[-1,3],[-1,3],[-2,2],[-5,1],[-6,-3],[-6,-6],[-4,-8],[16,2],[5,-2],[5,-5],[0,-5],[-7,-10],[-3,-7],[-4,-17],[-2,-5],[-5,-4],[-5,-1],[-11,1],[5,-8],[17,-7],[4,-14],[-15,4],[-5,-3],[-2,-11],[1,-4],[2,-4],[2,-5],[-2,-9],[-2,-3],[-4,0],[-4,1],[-3,2],[-2,-15],[3,-5],[6,-2],[4,-7],[0,-10],[-4,-8],[-20,-16],[-2,-1],[-4,0],[-1,3],[1,3],[-2,5],[-6,7],[-6,1],[-6,-3],[-14,-9],[-3,3],[-2,9],[-5,13],[-18,16],[-3,4],[-2,10],[-3,24],[-2,10],[-5,5],[-2,-7],[0,-13],[3,-13],[-4,3],[-2,1],[-7,-9],[-6,-2],[-31,5],[-6,5],[-5,9],[-6,-10],[-3,-5],[-4,-1],[-4,4],[-1,6],[-1,8],[-2,6],[-3,3],[-4,1],[-5,0],[-3,-4],[-2,-7],[0,-9],[-1,-8],[-3,-4],[-2,9],[-3,7],[-3,4],[-3,0],[-9,-6],[-3,-2],[0,-3],[1,-10],[-1,-3],[-2,-1],[-2,2],[-1,2],[-2,1],[-16,-8],[2,42],[-2,18],[-6,19],[-16,20],[-2,5],[2,7],[5,-2],[7,-6],[5,-2],[-2,7],[-6,14],[5,1],[25,-5],[8,-6],[5,-11],[3,-11],[5,-9],[2,7],[-2,11],[0,7],[2,-3],[1,0],[3,-2],[-2,8],[2,2],[2,-1],[2,-1],[3,-3],[4,-11],[3,-2],[2,7],[0,15],[-1,15],[-2,8],[-1,3],[-8,9],[-5,10],[-3,3],[-2,-2],[-8,-26],[-6,-7],[-7,10],[0,4],[-1,13],[0,3],[-4,2],[-2,-1],[-1,-5],[-1,-6],[-2,-14],[-5,1],[-6,8],[-4,7],[-4,9],[-2,10],[-1,10],[-1,14],[-1,3],[-6,6],[-5,9],[-1,-3],[0,-13],[1,-9],[-1,-5],[-3,-2],[-2,0],[-3,-1],[-2,-1],[-2,-3],[-1,-8],[4,-2],[10,2],[3,-3],[-1,-7],[-3,-7],[-5,-3],[-10,1],[-5,2],[-3,5],[-7,29],[-1,4],[1,14],[-1,3],[-8,12],[-3,3],[-2,4],[0,4],[-1,6],[0,4],[-2,2],[-3,4],[-2,7],[0,10],[1,8],[-3,-2],[-3,-2],[-3,-1],[-3,1],[-4,5],[-1,4],[1,13],[1,2],[2,5],[1,5],[-3,2],[-3,1],[-3,3],[-6,9],[-10,31],[-4,5],[-18,1],[-2,2],[-11,26],[-6,19],[-6,21],[-5,31],[-3,10],[-2,4],[-2,3],[-4,2],[-1,3],[-1,4],[1,2],[1,2],[4,11],[0,7],[-3,2],[-1,4],[-5,31],[-1,2],[-6,-1],[-1,1],[-2,7],[-1,8],[-2,6],[-3,3],[-8,2],[-1,5],[10,22],[-8,11],[-6,21],[-4,24],[2,21],[-6,34],[-3,20],[-2,19],[0,34],[-1,7],[-2,14],[-1,10],[4,-5],[4,-9],[4,-10],[1,-7],[2,-10],[3,-4],[11,-4],[3,-3],[2,-2],[2,-8],[1,-4],[1,-5],[2,-5],[7,-4],[19,-24],[3,-5],[1,-7],[1,-23],[2,-22],[4,-21],[2,-6],[2,2],[1,13],[0,43],[7,-8],[3,1],[2,19],[2,10],[6,16],[1,5],[-3,-1],[-4,-3],[-1,-3],[1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,1],[0,2],[1,3],[0,2],[-1,4],[0,4],[-1,5],[-2,4],[-3,0],[-1,-5],[0,-5],[-2,-3],[-5,8],[-16,33],[-5,13],[-5,5],[-1,2],[-2,17],[-4,16],[-1,11],[1,9],[-4,4],[-2,-1],[-6,-7],[0,-1],[-1,-7],[-1,-2],[-4,-3],[-1,-3],[0,-7],[1,-7],[1,-6],[-4,-5],[-2,2],[-10,15],[11,43],[-4,48],[-13,44],[-14,31],[-23,34],[-2,1],[-1,4],[-2,15],[-1,4],[-3,2],[-3,5],[-10,35],[-6,8],[-1,5],[-2,6],[-3,3],[-4,-1],[-3,1],[-1,4],[-2,8],[0,6],[0,16],[-13,63],[-16,41],[-4,17],[-2,3],[-3,2],[-3,5],[-5,10],[2,1],[0,2],[0,2],[0,3],[7,5],[0,16],[-4,17],[-18,55],[-6,12],[3,14],[0,18],[-2,18],[-5,10],[3,24],[-6,19],[-14,31],[4,2],[3,4],[2,7],[1,9],[-5,12],[-1,6],[1,2],[5,2],[4,13],[3,3],[5,1],[4,4],[2,9],[1,19],[0,17],[-5,63],[0,14],[2,12],[6,12],[1,-10],[3,-9],[6,-14],[1,-4],[1,-11],[1,-3],[2,-1],[2,2],[2,4],[2,1],[9,-3],[19,-14],[10,-3],[10,3],[5,0],[4,-5],[4,-8],[3,-4],[9,-6],[5,-14],[2,-2],[3,-1],[7,-5],[5,2],[2,6],[-3,9],[26,-3],[6,3],[4,10],[0,13],[-1,13],[-3,9],[6,-2],[7,-10],[3,-11],[-8,-7],[-2,-4],[-1,-7],[1,-7],[2,-5],[11,-12],[4,-7],[3,-3],[4,-2],[9,-1],[4,-1],[11,-11],[8,2],[14,11],[3,-23],[11,-14],[13,-8],[26,-5],[4,-5],[2,-12],[3,-10],[4,-10],[9,-14],[5,-6],[6,-4],[6,-2],[14,-1],[3,-2],[2,-4],[1,-6],[3,-1],[5,1],[7,-4],[10,-13],[7,-4],[6,-7],[2,-2],[3,-3],[11,-4],[26,-20],[39,-8],[19,1],[19,9],[15,11],[3,-3],[1,-12],[1,-6],[3,-5],[3,-2],[4,3],[-5,8],[3,9],[10,12],[2,5],[4,11],[2,4],[3,3],[6,0],[4,1],[3,4],[5,6],[3,2],[3,0],[3,-2],[3,-3],[3,-3],[3,-7],[3,-13],[1,-11],[-3,-5],[2,-10],[5,-2],[5,-1],[5,-4],[3,5],[3,3],[2,0],[4,0],[3,-1],[3,-4],[3,-1],[3,2],[-4,6],[-3,7],[-4,5],[-14,4],[-6,5],[-3,10],[-2,14],[5,21],[13,8],[14,5],[11,11],[2,3],[2,3],[2,2],[4,3],[1,1],[1,2],[2,0],[2,-1],[1,-5],[1,-2],[37,-10],[11,10],[21,29],[3,-10],[13,9],[3,-6],[0,-7],[1,-4],[2,-2],[8,-2],[1,-4],[1,-6],[2,-5],[10,-3],[11,13],[10,20],[17,48],[1,9],[3,6],[15,10],[5,2],[4,-6],[5,-11],[5,-8],[10,7],[6,-7],[6,-10],[6,-5],[8,3],[10,9],[9,12],[3,14],[1,5],[4,15],[2,20],[2,6],[3,5],[4,4],[2,-3],[1,-1],[7,0],[2,-2],[2,-3],[2,-11],[3,0],[4,4],[4,-3],[3,-5],[6,-12],[5,-16],[3,-6],[6,-3],[9,1],[3,-2],[22,-49],[8,-22],[3,-13],[1,-11],[-2,-6],[-4,-2],[-5,-6],[-3,-6],[-2,-6],[3,-1],[3,-3],[2,-3],[1,-5],[-4,-24],[-1,-4],[-3,-7],[-2,-16],[0,-18],[1,-12],[1,-8],[2,-4],[9,-19],[2,-8],[-2,-8],[-12,-16],[-5,-10],[1,-12],[21,32],[6,0],[-7,-18],[-14,-76],[0,-9],[1,-10],[1,-14],[-1,-8],[-1,-5],[0,-5],[8,-23],[1,-6],[1,-12],[-1,-14],[-3,-14],[-4,-11],[0,-10],[5,-37],[-3,-7],[-6,-10],[-3,-12],[2,-13],[1,-5],[3,-15],[1,-5],[0,-5],[7,-13],[1,-4],[0,-3],[1,-3],[2,-2],[-4,-20],[-3,-31],[-1,-29],[18,-36],[0,-3],[-2,-2],[-2,-5],[-8,-17],[-1,-8],[12,-9],[1,-11],[-2,-22],[-2,-3],[-5,-10],[-1,-3],[-1,-6],[-3,3],[-3,6],[-1,3],[-9,4],[-2,4],[1,5],[5,6],[2,3],[0,4],[2,4],[2,6],[1,7],[-1,4],[-2,5],[-3,5],[-3,4],[8,7],[3,5],[2,9],[-7,0],[-5,4],[-9,16],[-5,6],[-18,10],[8,10],[4,4],[4,2],[4,5],[2,9],[1,10],[-9,8],[-2,9],[-1,8],[-1,4],[-5,-3],[1,-7],[4,-12],[-1,-13],[-2,0],[-3,4],[-4,2],[-4,-5],[0,-8],[2,-9],[0,-10],[-1,-2],[-3,-2],[-3,-2],[1,-4],[2,-6],[2,-2],[2,-3],[4,-2],[13,-6],[-27,2],[-7,-6],[-3,-9],[-1,-14],[0,-27],[-1,-7],[-10,-16],[-1,-6],[0,-7],[-1,-5],[-5,-2],[1,-4],[-1,-8],[-8,-24],[-6,-13],[3,3],[5,11],[4,3],[4,-4],[3,-8],[0,-9],[-7,-12],[-1,-17],[2,-28],[0,-27],[-1,-15],[-3,-6],[-4,-3],[-4,-11],[-4,-3],[-3,3],[-4,14],[-3,4],[0,-7],[-2,-5],[-2,-3],[-4,-1],[14,-27],[1,-12],[0,-10],[0,-4],[1,-4],[2,-3],[1,-2],[0,-1],[0,-16],[0,-8],[-2,-7],[1,-10],[-3,-9],[-6,-7],[-4,-2],[-5,-6],[-2,-12],[0,-14],[2,-9],[-1,-5],[-1,-1],[-1,0],[-3,2],[-4,-15],[-2,-8],[1,-9],[3,-4],[5,-3],[6,0],[5,3],[0,4],[-10,5],[3,13],[8,7],[5,-11],[0,-9],[2,-1],[3,2],[3,2],[2,-1],[2,-1],[1,-3],[0,-5],[1,-5],[3,-5],[2,-5],[-1,-2],[-2,-4],[-1,-5],[0,-5],[1,-1],[2,-2],[1,-2],[1,-3],[0,-12],[-3,-4],[-3,-2],[-4,-4],[-3,-14],[1,-29],[-5,-8],[7,-15],[1,-5],[0,-7],[0,-4],[-4,-9],[6,-1],[4,-3],[1,-6],[-1,-11],[-2,-3],[-2,-2],[-1,-4],[-1,-7],[3,-5],[2,-5],[1,-6]],[[94136,18188],[4,8],[11,6],[4,10],[1,-12],[-3,-36],[-2,-12],[-6,-27],[-3,-20],[-6,-22],[-2,-11],[0,-16],[-1,-8],[-5,-2],[-7,0],[-2,7],[0,3],[2,2],[-2,11],[1,13],[3,20],[1,3],[2,6],[1,4],[-1,2],[0,3],[-1,3],[0,4],[1,6],[1,2],[1,3],[2,5],[3,12],[3,33]],[[90926,24803],[0,-3],[7,-14],[1,-6],[0,-5],[0,-6],[-1,-7],[-2,-5],[-3,-7],[-1,-4],[-2,-7],[-2,-18],[-3,-13],[-3,-5],[-5,2],[-6,8],[-2,1],[-2,0],[-2,1],[-2,3],[0,2],[0,4],[1,3],[1,-1],[-2,11],[-2,4],[-3,1],[1,2],[3,4],[1,2],[-6,9],[-3,-7],[-2,-26],[-3,-12],[-5,-7],[-5,1],[-4,10],[-3,11],[-4,8],[-4,7],[-3,6],[2,11],[5,-2],[14,-23],[3,-3],[2,3],[1,10],[0,23],[-2,11],[-2,6],[2,5],[2,4],[2,1],[3,-3],[4,-12],[3,-5],[2,8],[2,4],[1,5],[-3,8],[-1,7],[2,5],[5,8],[9,20],[5,8],[2,-3],[7,-43]],[[90944,24927],[0,-8],[1,-7],[1,-5],[2,-7],[1,-7],[3,-15],[2,-15],[-3,-7],[-7,3],[-3,1],[-3,-2],[-3,-4],[-2,-2],[-2,4],[-2,13],[3,6],[4,5],[4,8],[-5,8],[-14,4],[-6,6],[-2,8],[4,4],[14,4],[-2,3],[-4,4],[-2,4],[1,12],[4,11],[4,4],[4,-16],[7,-9],[1,-8]],[[91150,25239],[0,-10],[2,-7],[3,-5],[4,-4],[-7,-11],[-13,1],[-9,-1],[4,-18],[7,-12],[-2,-1],[-17,-6],[-4,-5],[-3,-8],[-2,0],[0,12],[4,7],[2,9],[4,21],[-6,1],[-3,9],[0,12],[3,10],[4,6],[8,6],[3,9],[5,-3],[6,-1],[5,-3],[2,-8]],[[91193,25416],[5,-6],[2,-5],[2,-7],[3,-11],[-2,-2],[-1,0],[-3,2],[-4,5],[-3,5],[-4,5],[-9,3],[-1,3],[-4,11],[5,3],[5,-1],[9,-5]],[[90281,26385],[4,-2],[5,-6],[3,-8],[2,-8],[-8,0],[-6,9],[-9,-3],[-15,-14],[-2,0],[-2,1],[-2,0],[-3,-3],[-2,-1],[-2,2],[-1,3],[-1,2],[-1,27],[0,3],[13,25],[4,5],[1,-6],[3,-9],[4,-4],[5,-2],[5,-9],[5,-2]],[[91142,26471],[5,6],[11,4],[4,4],[18,6],[-2,-5],[-2,-7],[-2,-4],[0,-7],[0,-7],[-1,-5],[-3,-2],[-2,-6],[-1,-12],[-3,-8],[-7,6],[-2,9],[-4,3],[-5,0],[-2,2],[-1,3],[-2,8],[-1,4],[0,4],[-1,0],[1,0],[2,4]],[[90219,26532],[0,-4],[0,-44],[-1,-5],[-6,-9],[0,-35],[-7,-5],[-2,9],[-1,5],[0,33],[-1,5],[-4,5],[-1,4],[2,8],[4,1],[5,-1],[4,4],[1,6],[3,29],[1,3],[1,-2],[2,-7]],[[90249,26503],[-7,1],[-4,7],[-4,9],[-4,8],[2,1],[6,1],[2,2],[2,3],[2,6],[1,5],[-3,2],[0,1],[1,3],[3,3],[2,1],[7,0],[3,-2],[3,-2],[5,-7],[0,-5],[-2,-7],[-1,-11],[1,-7],[-1,-2],[-6,-2],[-3,-1],[-3,-3],[-2,-4]],[[91230,26560],[10,-25],[5,-7],[-2,-6],[-3,-2],[-2,2],[-1,6],[-1,-3],[-2,-10],[-6,-3],[0,-1],[-4,-7],[0,-5],[0,-8],[-6,5],[-5,-2],[-4,-5],[-4,-6],[0,20],[-4,20],[-9,1],[-18,-17],[-2,7],[-2,3],[-2,2],[-3,1],[-2,-2],[-3,-5],[-1,-2],[-2,1],[-3,3],[-2,0],[-19,-3],[-6,3],[-3,4],[-3,6],[-2,3],[-5,-1],[-3,1],[-1,6],[1,15],[3,8],[17,16],[5,3],[13,1],[6,-2],[3,-2],[6,-8],[3,4],[2,12],[11,1],[8,3],[3,6],[2,1],[6,7],[1,2],[4,-1],[2,-2],[13,-28],[2,-3],[6,-4],[3,-3]],[[91114,26692],[1,8],[-1,10],[-3,10],[-3,6],[-6,2],[-3,-1],[-2,3],[-1,15],[-2,9],[-5,6],[-6,2],[-5,1],[1,4],[5,20],[1,8],[-1,9],[-4,17],[-1,9],[-2,13],[-5,0],[-10,-11],[-5,2],[-14,19],[4,6],[7,13],[4,5],[12,6],[2,6],[-2,12],[2,2],[5,7],[-3,8],[-2,5],[0,5],[1,5],[3,-1],[3,-5],[2,-2],[4,5],[12,22],[53,-111],[1,-7],[6,-15],[12,-9],[24,-6],[-2,-14],[0,-45],[-2,-12],[-12,-15],[-5,-12],[6,-4],[6,4],[6,7],[3,9],[3,-8],[3,-13],[4,-23],[-1,-11],[-3,1],[-8,14],[-1,-13],[4,-7],[6,-5],[1,-8],[-5,-9],[-6,4],[-5,9],[-6,4],[-6,3],[-3,0],[-3,-3],[-2,-5],[-1,-16],[-2,-3],[-5,-3],[-6,-6],[-6,-3],[-14,9],[-7,8],[-3,11],[6,12],[-9,14],[-4,9],[0,8]],[[90028,26844],[2,-5],[3,-2],[3,-2],[2,-3],[1,-7],[0,-6],[0,-6],[-1,-21],[-1,-6],[-2,-3],[-2,-2],[-1,-6],[-1,-7],[-1,-5],[-2,-4],[-6,-5],[-3,-3],[-2,-5],[-2,-5],[-2,-5],[-3,-1],[-6,-2],[-26,-27],[-6,0],[-4,12],[-2,8],[-2,25],[4,-1],[1,11],[0,24],[-2,15],[-4,7],[-5,4],[-4,9],[0,9],[1,32],[2,7],[4,6],[1,14],[0,25],[-1,3],[-2,6],[-1,3],[0,3],[3,6],[1,4],[-2,14],[1,6],[4,3],[5,3],[6,6],[6,8],[3,8],[-1,12],[-2,14],[-1,13],[3,5],[3,1],[5,3],[3,1],[2,-2],[9,-15],[11,-9],[5,-7],[4,-13],[1,-4],[2,-6],[1,-7],[-2,-26],[1,-15],[4,-24],[1,-12],[-1,-13],[-5,-25],[0,-13]],[[90729,27518],[2,1],[2,1],[3,-1],[2,-1],[-1,-5],[-1,-3],[-2,-1],[-17,1],[-2,-2],[-3,-11],[-2,-3],[-6,-1],[-6,5],[-6,7],[-4,7],[-2,11],[5,1],[12,-6],[13,5],[6,0],[7,-5]],[[90370,27664],[2,-1],[1,-2],[-1,-2],[1,-3],[2,-7],[2,-8],[0,-8],[-2,-6],[0,3],[-1,2],[0,1],[-1,3],[-7,10],[-8,8],[-8,4],[-10,-2],[-2,-4],[-2,-3],[-2,-1],[-2,1],[-5,5],[-1,2],[-5,-1],[-8,-4],[-5,0],[2,7],[10,14],[6,12],[3,5],[4,3],[17,4],[3,1],[1,1],[2,0],[4,-2],[2,-2],[2,-4],[1,-2],[-2,-3],[-2,-1],[3,-9],[1,-3],[-1,-5],[1,-2],[2,-1],[3,0]],[[90400,27778],[3,-3],[3,-4],[8,-22],[-1,-2],[-6,-2],[-12,-2],[-3,-2],[-11,-22],[-6,-7],[-8,4],[-2,4],[-9,7],[-1,7],[0,7],[-3,12],[8,20],[-2,4],[-1,5],[1,4],[2,4],[2,1],[2,-3],[1,-4],[2,-3],[11,-7],[4,-1],[13,6],[5,-1]],[[88368,29259],[-1,-9],[1,-11],[-1,-8],[-7,-4],[-3,-4],[-8,-20],[-3,-5],[-6,0],[-7,3],[-5,6],[-9,14],[-5,3],[-6,0],[-6,-2],[-4,1],[-9,6],[-6,1],[-7,0],[-11,-4],[-23,-18],[-13,-5],[-4,-8],[-2,-12],[1,-13],[1,-4],[1,-2],[1,-4],[1,-5],[-1,-5],[-1,-5],[-2,-3],[0,-3],[-2,-4],[-13,-6],[-17,-21],[-10,-7],[-4,8],[-8,8],[-12,27],[-9,5],[-14,2],[-13,9],[-4,2],[-5,0],[-6,-8],[-2,-12],[-3,-12],[-8,-5],[-5,1],[-9,6],[-5,1],[-8,-4],[-4,1],[-3,7],[-19,-14],[-8,-2],[-9,4],[-6,7],[-2,1],[-3,-1],[-5,-6],[-2,-1],[-6,1],[-3,-1],[-2,-2],[-4,-6],[-2,-1],[-1,1],[-4,0],[-5,-3],[-3,-1],[-3,3],[0,11],[-2,7],[-4,12],[-8,19],[-4,4],[-10,3],[-4,4],[-16,26],[1,6],[0,12],[1,7],[1,3],[2,2],[2,4],[1,15],[1,5],[2,5],[1,4],[2,5],[-1,12],[0,5],[5,7],[6,3],[20,3],[13,12],[8,1],[4,2],[4,6],[3,2],[74,21],[6,4],[14,13],[37,16],[4,4],[3,7],[4,6],[5,3],[5,-2],[23,-14],[2,-1],[3,2],[5,7],[5,0],[7,-1],[5,1],[10,6],[5,2],[4,-4],[6,4],[3,-5],[0,-7],[-4,-5],[-6,-3],[-4,-9],[-1,-8],[5,-4],[9,0],[4,-1],[1,-3],[-7,-17],[-12,-23],[6,-10],[6,-1],[6,2],[11,-9],[7,0],[12,5],[3,3],[2,2],[2,0],[2,-5],[2,-5],[-1,-5],[0,-5],[-1,-7],[2,-11],[5,-4],[7,1],[5,4],[5,5],[3,9],[3,10],[1,10],[3,9],[8,2],[8,-2],[11,-6],[12,-10],[4,-3],[1,-3],[2,-19],[2,-6],[4,-3],[4,-1],[5,0]],[[87901,29654],[4,5],[4,-3],[3,-7],[3,-9],[-1,-4],[-2,4],[-6,0],[-5,2],[-2,4],[2,8]],[[87825,29735],[3,-5],[3,-3],[1,-4],[2,-10],[0,-7],[0,-6],[-1,-2],[-3,3],[-8,2],[-3,10],[0,15],[-2,14],[-13,19],[-3,12],[7,5],[4,-5],[13,-38]],[[88157,30055],[2,-16],[-2,-15],[-4,-8],[-3,6],[-2,7],[2,9],[7,17]],[[87373,30505],[1,-13],[-2,-4],[-4,0],[-5,-3],[-5,-18],[-4,-4],[-2,9],[3,18],[1,5],[0,7],[0,3],[4,4],[8,3],[0,1],[3,1],[1,-2],[1,-7]],[[87101,31329],[-7,5],[1,10],[4,12],[6,9],[5,5],[7,4],[7,3],[7,0],[0,-4],[-15,-8],[2,-9],[2,-3],[-3,-3],[-2,-6],[-1,-5],[-1,-2],[-3,-1],[-9,-7]],[[94178,31804],[7,-1],[4,-9],[3,-10],[3,-9],[-2,-7],[-2,-6],[-3,-2],[-4,3],[4,7],[1,10],[-2,11],[-5,8],[-2,-4],[-1,4],[-1,5]],[[92634,34234],[4,-1],[14,1],[-6,-24],[-6,-29],[-14,-128],[-2,-1],[-4,0],[-4,-1],[-3,-2],[-2,1],[-3,14],[0,9],[2,17],[0,2],[2,3],[1,3],[0,5],[0,5],[-3,8],[0,5],[0,8],[3,18],[0,8],[0,10],[-3,23],[1,9],[6,16],[2,9],[0,17],[1,8],[2,4],[4,-3],[3,-5],[3,-5],[2,-4]],[[92613,34279],[1,10],[-2,16],[-3,15],[-2,7],[-3,6],[-2,13],[-2,37],[2,36],[-1,13],[-2,9],[1,6],[6,7],[9,3],[6,10],[3,3],[4,-2],[1,-10],[0,-14],[-12,-71],[-2,-25],[0,-29],[1,-7],[3,-15],[0,-8],[0,-10],[-1,-9],[-1,-2],[-4,11]],[[81448,35032],[2,-10],[1,-14],[-2,-12],[-3,-7],[-3,3],[-6,6],[-2,19],[-4,23],[-5,12],[-2,6],[-13,35],[-10,15],[-9,56],[-14,30],[-3,12],[3,6],[0,5],[-2,34],[-10,39],[0,33],[1,10],[-1,21],[3,10],[4,9],[4,6],[2,-7],[5,0],[4,2],[2,-4],[0,-5],[0,-16],[0,-12],[4,-22],[6,-24],[2,-30],[0,-21],[6,-18],[5,-29],[8,-30],[5,-23],[-6,-31],[0,-15],[8,-4],[-1,4],[-1,6],[-1,3],[3,1],[3,-7],[3,-11],[3,-10],[2,-4],[4,-11],[2,-5],[1,-6],[1,-13],[1,-5]],[[92489,35505],[8,-21],[4,-14],[-4,-6],[-8,23],[-3,12],[3,6]],[[81404,35509],[-2,13],[7,42],[2,19],[-1,44],[3,20],[8,12],[-2,-21],[0,-11],[1,-5],[-3,-5],[0,-12],[0,-24],[-2,-9],[-5,-21],[-1,-8],[0,-22],[0,-11],[-2,-9],[-1,0],[-2,5],[0,3]],[[81430,35708],[-6,-18],[-2,-10],[-1,-13],[0,6],[-1,5],[0,5],[-1,4],[6,94],[5,28],[2,-12],[0,-15],[-6,-54],[0,-15],[4,-5]],[[92602,35671],[1,-14],[-2,-10],[-3,-10],[-2,-9],[-1,-12],[-22,-103],[-29,-123],[-22,-120],[1,-15],[4,-18],[0,-21],[-5,-18],[-8,-6],[-10,26],[-5,15],[-1,10],[2,11],[-5,28],[0,15],[-8,5],[-3,17],[1,18],[4,9],[6,7],[2,18],[2,36],[2,8],[3,5],[3,3],[2,5],[4,19],[2,7],[3,15],[-3,34],[3,14],[-2,7],[-2,2],[-2,1],[-7,5],[-1,0],[-1,1],[0,6],[2,8],[5,9],[30,41],[9,15],[7,18],[6,18],[4,20],[2,23],[-2,25],[-5,18],[-8,25],[-9,16],[-7,-2],[16,40],[3,2],[8,14],[11,13],[2,4],[2,-26],[-2,-72],[1,-11],[5,-31],[3,-7],[2,-3],[11,-17],[3,-8]],[[92047,36363],[3,-12],[1,-14],[-1,-9],[-6,4],[-1,15],[-2,9],[-6,17],[-2,19],[0,1],[1,7],[2,4],[2,0],[1,-19],[2,-8],[6,-14]],[[92018,36454],[5,-7],[3,-17],[0,-17],[0,-7],[-2,-1],[-1,-3],[-1,-4],[-1,-3],[-1,-2],[0,-1],[-2,-3],[-1,1],[-10,-2],[-2,-1],[-2,1],[-3,5],[-3,9],[-3,7],[-4,7],[-2,22],[-4,11],[-11,28],[-8,11],[-3,7],[-3,11],[-10,26],[-6,17],[-5,11],[10,8],[2,3],[0,4],[-1,5],[2,5],[3,-3],[2,-2],[2,1],[3,2],[2,1],[2,-2],[1,-5],[-1,-6],[1,-3],[5,-3],[12,-5],[2,-7],[3,-3],[6,-2],[3,-4],[-4,-9],[5,-2],[4,7],[4,12],[4,7],[0,-16],[-3,-27],[-1,-13],[1,-14],[3,-16],[3,-13],[5,-6]],[[91590,37239],[2,1],[3,-4],[6,-11],[-3,-2],[-1,-5],[1,-6],[-1,-7],[-6,-18],[-2,-7],[-3,7],[-1,2],[2,6],[0,6],[0,6],[-2,6],[2,6],[2,14],[1,6]],[[91815,37278],[2,-1],[2,-3],[2,-4],[1,-4],[-2,-6],[-2,-4],[-3,-2],[-1,-2],[-1,-5],[-1,-4],[-2,-4],[-2,-2],[-5,-4],[-3,4],[-1,7],[3,10],[-4,6],[-1,2],[-1,-2],[-1,-1],[-2,-2],[2,10],[5,11],[3,12],[-2,10],[-2,5],[-1,5],[1,3],[3,1],[4,-1],[2,-5],[1,-6],[2,-6],[1,-5],[0,-6],[1,-5],[2,-2]],[[91643,37416],[-2,-20],[0,-6],[1,-9],[3,-12],[1,-8],[0,-15],[-2,-18],[-4,-15],[-5,-6],[-3,4],[0,4],[1,5],[0,7],[-1,4],[-1,2],[-1,4],[-1,8],[0,12],[2,14],[2,13],[4,8],[-2,6],[1,7],[3,7],[4,4]],[[91747,37594],[7,4],[3,0],[3,-4],[8,9],[-3,-10],[-2,-10],[-2,-7],[-4,2],[-10,12],[0,4]],[[91749,37631],[0,1],[-1,1],[0,1],[-1,1],[-1,-5],[-1,-2],[-1,1],[-2,2],[-3,5],[-2,1],[-2,-1],[-1,-5],[-1,5],[0,4],[1,4],[2,3],[-1,5],[0,3],[-1,9],[2,0],[3,-9],[7,-6],[5,-7],[-2,-11]],[[82073,38193],[1,-10],[-2,-10],[-6,-18],[0,-5],[0,-5],[-1,-5],[-2,-2],[-1,-1],[-3,-7],[-1,-2],[-1,-8],[-3,-6],[-9,-8],[-2,7],[-3,6],[-3,3],[-2,-2],[-1,-7],[-2,-4],[-3,1],[-3,8],[2,8],[2,25],[5,16],[20,48],[8,14],[6,1],[1,-9],[1,-20],[2,-8]],[[91414,38378],[0,-12],[1,-9],[2,-7],[3,-9],[-6,-3],[-3,-9],[-3,-9],[-5,-7],[-2,2],[-1,4],[-1,5],[0,5],[2,4],[4,0],[3,2],[3,11],[1,10],[0,10],[2,12]],[[91407,38439],[-3,3],[-2,4],[-3,9],[-4,-19],[-2,-5],[-4,10],[-4,-2],[-2,-5],[-3,1],[0,24],[-5,-7],[-2,-1],[-2,0],[-2,1],[-1,3],[1,6],[9,16],[1,8],[-5,3],[3,12],[1,15],[2,13],[4,8],[1,-9],[4,-14],[0,-7],[0,-16],[2,-5],[5,-1],[0,-4],[5,-17],[6,-9],[1,-6],[-1,-9]],[[91376,38540],[-1,-4],[-8,-16],[1,12],[-1,4],[-1,-1],[-1,-3],[-1,1],[0,1],[0,2],[-1,0],[-2,-8],[-2,2],[-2,4],[-1,4],[-1,6],[2,9],[8,20],[-1,1],[-1,3],[-1,4],[1,4],[3,4],[1,-1],[2,-3],[1,0],[4,3],[1,3],[2,4],[1,6],[4,-9],[-2,-12],[-5,-12],[-3,-10],[1,-4],[3,-8],[0,-6]],[[91235,38646],[7,-11],[2,-12],[-1,-14],[-2,-12],[-2,3],[-1,0],[-1,0],[-2,1],[0,18],[0,9],[-1,6],[1,12]],[[90794,39149],[1,6],[1,2],[1,-3],[1,-7],[-1,-14],[0,-6],[-2,-6],[-2,7],[-11,-14],[-5,7],[-2,7],[-2,6],[-2,5],[2,6],[3,3],[4,-1],[3,2],[3,8],[1,-3],[2,-2],[5,-3]],[[90643,39583],[2,-5],[6,-8],[2,-3],[0,-7],[-2,-3],[-2,-1],[-2,-2],[-3,-19],[-3,-9],[-5,-8],[-5,6],[-10,5],[-4,5],[-3,14],[-2,31],[-2,9],[-7,24],[-3,5],[-12,16],[-3,6],[-3,6],[-2,7],[2,13],[6,-1],[15,-12],[12,-7],[2,10],[-2,19],[3,19],[2,-15],[4,-6],[11,0],[4,-3],[-2,-7],[-3,-11],[-2,-11],[0,-12],[2,-9],[6,-18],[3,-2],[4,-1],[2,-3],[1,-6],[-1,-4],[-3,-2],[-3,0]],[[88766,40379],[-2,-9],[2,-7],[3,-5],[1,-4],[-2,-11],[-4,-4],[-9,-1],[-2,-2],[-1,-4],[-1,-2],[-4,0],[-2,3],[-1,4],[0,3],[0,2],[-5,0],[-5,-4],[-3,-8],[-1,-13],[-2,0],[0,3],[0,2],[-1,1],[-1,3],[-4,16],[2,8],[5,4],[6,10],[7,23],[4,9],[2,5],[-1,10],[4,-5],[12,-17],[3,-10]],[[88635,40504],[5,4],[7,5],[6,0],[1,-9],[-3,-4],[-7,-1],[-1,-5],[-1,-8],[-2,-3],[-2,2],[-1,7],[0,5],[0,3],[0,3],[-2,1]],[[88814,40732],[2,-7],[0,-11],[-1,-11],[-1,-8],[-1,3],[-2,6],[-1,3],[-3,-6],[0,-5],[1,-5],[0,-6],[-1,-3],[-3,2],[-5,4],[-6,-2],[-6,-4],[-5,-6],[-2,-9],[-3,7],[-6,21],[-2,4],[0,2],[-3,5],[-2,2],[-1,-3],[-1,-2],[-5,-12],[-3,-1],[-7,-1],[-1,-1],[-1,-7],[3,-4],[3,-2],[3,0],[3,-4],[-1,-7],[-3,-5],[-3,1],[-3,5],[-3,1],[-2,-2],[-2,-6],[2,-18],[0,-6],[-2,-4],[-3,-10],[0,-2],[1,-3],[-2,-7],[-2,-7],[-3,-3],[-3,2],[-4,12],[-3,2],[-4,-5],[-3,-23],[-4,-5],[-5,-2],[-6,-10],[-5,-4],[-18,0],[-3,2],[-2,7],[-8,22],[-3,6],[1,-12],[1,-17],[-1,-13],[-3,1],[-2,-8],[-3,-6],[-3,0],[0,17],[-2,11],[0,6],[1,4],[2,5],[2,6],[1,8],[1,14],[1,11],[2,10],[4,7],[6,11],[2,8],[1,12],[1,6],[2,4],[3,3],[3,1],[2,3],[6,16],[2,6],[6,5],[6,2],[12,0],[32,14],[16,19],[10,4],[6,-2],[3,-4],[1,-7],[3,-7],[4,-5],[5,-2],[10,-1],[0,-3],[-1,-7],[-1,-2],[5,-3],[3,6],[1,8],[3,1]],[[87963,41194],[2,-10],[4,-4],[4,-4],[2,-6],[-2,-10],[-3,-12],[-9,-23],[-2,5],[-4,5],[-3,8],[-3,10],[-1,11],[2,12],[4,6],[5,5],[4,7]],[[87999,41206],[4,-6],[5,-9],[1,-9],[-4,-4],[-3,2],[-2,8],[-3,2],[-3,-2],[-1,-4],[3,-14],[1,-2],[1,-2],[-1,-4],[0,-3],[-2,-2],[-3,-4],[-6,-8],[-3,-2],[-3,3],[1,14],[2,13],[0,13],[-3,16],[5,2],[10,-2],[4,4]],[[88076,41142],[1,-5],[2,-2],[2,-2],[3,-5],[-1,-17],[-3,-11],[-5,-15],[-8,7],[-1,10],[-1,7],[-1,6],[-3,2],[-4,1],[-2,2],[-4,22],[-1,5],[1,13],[-1,5],[-3,0],[-2,-1],[-2,1],[-2,0],[-1,-11],[-1,1],[-1,0],[-1,4],[1,13],[0,10],[1,9],[2,7],[4,9],[3,-9],[2,-5],[2,2],[-2,16],[2,2],[3,9],[-2,13],[3,0],[3,0],[2,-5],[1,-15],[6,-7],[3,6],[2,0],[0,-11],[5,-3],[-1,-20],[0,-24],[1,-9],[-2,-5]],[[87948,41267],[-4,-14],[0,-29],[-4,-14],[-3,3],[-5,-2],[-3,4],[-2,-5],[-2,-2],[-4,-2],[-1,2],[-2,1],[-3,6],[4,4],[0,7],[-1,7],[-3,6],[5,7],[2,4],[1,5],[0,7],[-1,5],[1,3],[5,1],[6,4],[5,6],[5,0],[4,-14]],[[88026,41239],[-4,-2],[-2,-4],[-1,-6],[1,-9],[-2,-1],[-2,-1],[-3,-6],[-1,3],[0,2],[-1,1],[0,2],[1,1],[0,2],[-1,5],[-2,6],[1,2],[2,2],[1,3],[0,2],[1,5],[1,3],[-1,3],[-3,5],[0,2],[1,10],[3,9],[4,8],[3,5],[-2,-14],[1,-13],[5,-25]],[[84560,41436],[1,5],[3,-1],[3,-3],[2,-7],[-1,-6],[-3,-6],[-1,-5],[3,-4],[-3,-5],[-4,1],[-3,3],[-3,1],[-1,-2],[-1,-4],[-1,-3],[-3,-3],[-1,2],[-8,6],[-2,4],[0,2],[0,3],[13,6],[7,5],[3,11]],[[84604,41389],[7,-6],[7,-26],[6,-5],[-4,-5],[-24,-19],[-5,-2],[-3,2],[-1,8],[0,6],[2,2],[3,-4],[6,16],[3,6],[4,3],[-3,0],[-9,4],[-3,-2],[-3,-5],[-3,-1],[2,12],[-4,-10],[-3,0],[-4,5],[-4,5],[3,6],[1,6],[0,5],[0,3],[2,5],[2,3],[2,-2],[3,-6],[-1,6],[0,5],[1,5],[2,5],[-5,0],[3,7],[13,18],[5,3],[-2,-7],[-4,-25],[1,-5],[3,0],[3,-2],[2,-5],[-1,-9]],[[84701,41602],[-1,-6],[1,-4],[2,-3],[1,-1],[1,-10],[-1,-7],[-3,-2],[-4,7],[-1,3],[-2,10],[-1,3],[-2,0],[-4,-1],[-2,1],[-1,11],[2,9],[4,2],[5,-10],[1,6],[1,5],[1,5],[2,4],[2,-4],[0,-7],[1,-6],[-2,-5]],[[87712,41665],[-1,-13],[0,-7],[-4,2],[-6,1],[-6,-10],[-4,2],[-1,4],[3,5],[2,4],[3,5],[1,7],[0,4],[-3,1],[0,3],[2,2],[1,6],[2,3],[6,-2],[3,-7],[2,-10]],[[84776,41900],[3,-2],[0,-5],[-2,-17],[-5,-14],[-1,-4],[1,-7],[5,-15],[1,-9],[-3,-1],[-7,-9],[-1,0],[-1,2],[-2,-2],[-2,-4],[0,-4],[1,-5],[0,-3],[-1,-4],[-2,-2],[-3,12],[-2,5],[-2,3],[-3,-1],[-2,-2],[-1,0],[-1,7],[2,17],[0,18],[2,5],[3,-1],[4,-6],[3,-4],[-1,10],[1,19],[-2,-1],[-5,8],[2,10],[6,8],[4,6],[-1,8],[2,3],[3,-1],[2,-7],[0,-5],[1,-4],[1,-1],[3,-1]],[[88001,42286],[0,3],[1,3],[1,2],[1,2],[-2,-4],[0,-3],[-1,-3]],[[87857,42353],[0,-8],[0,-3],[0,-3],[-2,-4],[-3,-3],[-3,1],[-3,-2],[-1,-9],[4,0],[2,-5],[2,-7],[2,-8],[-5,-1],[-3,-7],[0,-11],[-2,-9],[-3,-5],[-3,-3],[-4,-2],[-3,2],[2,4],[0,3],[0,3],[0,3],[2,3],[-3,7],[-4,24],[-3,6],[-6,-5],[-1,-13],[1,-16],[0,-11],[-9,8],[-2,5],[0,55],[10,-10],[4,-1],[1,10],[1,11],[3,12],[3,10],[5,5],[2,0],[4,-3],[4,-3],[1,-4],[2,-7],[3,-4],[3,-3],[2,-2]],[[88041,42071],[-1,-1],[-1,1],[-1,0],[-1,-4],[0,-5],[2,-6],[0,-3],[1,-2],[2,-5],[1,-5],[-1,-3],[-4,-3],[-1,-7],[2,-8],[2,-6],[-3,2],[-2,-1],[0,-4],[1,-5],[-3,5],[-3,2],[-2,-3],[-1,-8],[-10,11],[-5,2],[-4,-5],[-3,6],[-6,4],[-11,2],[-5,4],[-3,1],[-4,-3],[-11,-14],[-11,3],[-50,38],[-2,1],[-5,9],[-3,2],[-3,-1],[-9,-6],[-7,-11],[-4,-3],[-1,0],[-2,-1],[-2,2],[1,8],[2,4],[6,7],[3,5],[9,7],[3,6],[3,16],[3,6],[1,5],[-1,7],[-3,12],[-2,19],[-1,35],[0,19],[4,34],[1,18],[-1,8],[-3,9],[-2,10],[1,8],[4,5],[4,-4],[7,-13],[2,3],[7,0],[4,0],[4,9],[-2,8],[3,11],[2,-2],[3,-12],[4,-6],[3,13],[2,-3],[4,-5],[0,16],[4,-4],[4,2],[2,7],[-4,8],[-2,-5],[-2,10],[0,10],[-2,8],[-6,0],[2,6],[1,6],[-1,4],[-4,1],[2,5],[2,3],[3,1],[3,-1],[4,-2],[1,-2],[-1,-2],[0,-2],[0,-3],[0,-7],[0,-2],[1,-1],[2,1],[1,3],[0,1],[1,2],[1,3],[2,2],[3,-3],[5,16],[1,6],[1,5],[7,0],[3,5],[2,-10],[0,-13],[-3,-12],[-8,-8],[-2,-6],[0,-8],[1,-6],[3,-4],[3,-1],[3,0],[3,0],[-1,-5],[-4,-12],[2,-9],[0,-7],[1,-6],[4,-6],[4,-3],[14,-5],[5,2],[4,5],[3,9],[1,10],[-1,4],[-2,3],[-2,-1],[-2,-1],[2,3],[1,2],[4,25],[4,-5],[8,3],[5,-3],[1,-4],[3,-8],[1,-9],[1,-7],[-3,-7],[-8,-17],[-3,-8],[-5,-33],[-10,6],[-8,-8],[-7,-16],[-2,-19],[1,-11],[2,-5],[3,-3],[3,-5],[1,0],[3,-3],[1,-4],[-2,-1],[-2,-1],[-2,-2],[-2,-4],[0,-5],[-5,4],[-3,-4],[-1,-7],[1,-9],[-3,7],[-3,3],[-4,-1],[-3,-6],[1,-7],[0,-8],[-1,-16],[3,-24],[0,-7],[2,-4],[3,-2],[5,-1],[8,2],[1,0],[-1,4],[0,9],[2,9],[6,-6],[17,-28],[3,-1],[3,6],[2,6],[2,7],[2,8],[1,9],[2,0],[3,-4],[3,0],[5,3],[4,1],[-3,-4],[-2,-6],[-3,-10]],[[87815,42513],[0,16],[-4,9],[-1,11],[-7,8],[7,-1],[4,-14],[4,-2],[4,-13],[5,-16],[1,-4],[1,-4],[3,-1],[1,-4],[-1,-9],[-8,12],[0,-12],[-4,2],[0,-10],[2,-14],[-4,-13],[-1,-15],[-4,8],[1,10],[4,10],[-2,6],[-2,5],[-3,13],[4,22]],[[88004,43318],[1,-5],[1,-12],[-1,-9],[2,-7],[-2,-4],[-2,1],[-2,6],[-3,11],[1,14],[5,5]],[[86773,43321],[7,-7],[1,-16],[-2,-14],[-6,0],[-13,21],[2,7],[3,5],[5,3],[3,1]],[[87858,43377],[7,-6],[-4,-16],[-9,-15],[-10,-7],[-4,-2],[-3,-5],[-3,-5],[-4,-4],[-4,0],[-5,2],[-4,4],[-2,6],[1,6],[0,6],[0,6],[-1,6],[4,-4],[3,-5],[2,-1],[3,4],[5,12],[2,4],[4,-1],[-1,-3],[-1,-5],[0,-6],[1,-3],[2,1],[5,3],[2,0],[5,5],[6,19],[3,4]],[[87906,43426],[2,15],[0,17],[2,15],[5,10],[0,-11],[-5,-29],[0,-6],[1,-4],[0,-4],[-1,-7],[-2,-3],[-1,-1],[-1,3],[0,5]],[[87945,43514],[4,6],[1,-1],[0,-5],[-2,-7],[-6,-10],[-2,-6],[-2,-8],[-5,2],[-9,-3],[-3,5],[3,8],[2,2],[6,-2],[3,2],[4,6],[6,11]],[[87765,43537],[-2,14],[9,13],[12,12],[8,-6],[-9,-22],[-4,-12],[-6,-5],[-8,6]],[[86838,43572],[6,2],[1,-4],[1,-10],[-1,-7],[-1,-7],[-2,-6],[-2,-4],[-5,-4],[-7,-3],[-7,0],[-4,7],[-4,10],[-5,12],[-1,13],[6,9],[4,1],[3,-2],[4,-4],[3,-3],[3,-1],[8,1]],[[87894,43654],[9,12],[4,7],[3,9],[1,-14],[-2,-12],[-5,-11],[-15,-18],[-3,-2],[-1,-3],[-4,-17],[-14,-14],[-2,-5],[-2,-2],[-1,1],[-2,3],[0,2],[-4,-5],[-3,-8],[-4,-8],[-8,-5],[0,5],[-10,-17],[-5,-4],[1,3],[1,3],[0,3],[2,15],[2,5],[4,2],[5,5],[3,9],[3,12],[4,11],[5,5],[0,-5],[5,-11],[5,-7],[2,5],[1,5],[10,25],[1,-2],[1,-2],[1,9],[4,6],[8,10]],[[86259,43538],[4,2],[7,-8],[12,-20],[4,-8],[1,-4],[-1,-11],[-1,-10],[-3,-5],[-13,-11],[-14,1],[-7,-6],[-7,9],[-9,8],[-9,5],[-8,3],[-5,2],[-6,12],[-5,2],[-4,-1],[-7,-6],[-12,-4],[-25,-21],[-8,-2],[-9,0],[-9,3],[-4,7],[-4,9],[-2,6],[0,5],[2,9],[2,2],[6,-3],[5,5],[0,11],[-2,27],[2,12],[5,-2],[8,-12],[8,-3],[6,4],[5,10],[4,13],[-2,14],[-3,49],[3,8],[1,8],[0,8],[-1,7],[-2,5],[-3,2],[-3,-1],[-5,-2],[7,25],[3,7],[3,6],[7,9],[3,6],[8,30],[3,6],[6,3],[5,0],[5,2],[5,8],[1,-14],[3,-16],[4,-16],[7,-23],[0,-7],[-3,-14],[-1,-10],[1,-20],[2,-9],[14,-20],[4,-14],[1,-17],[0,-18],[-2,-15],[-2,-11],[0,-4],[3,2],[2,3],[2,2],[3,1],[4,-1],[9,-6],[1,-3]],[[86537,43711],[1,-20],[-1,-10],[-2,-7],[-3,-2],[-6,4],[-4,-2],[-3,-11],[-3,-20],[-1,-21],[3,-14],[0,5],[2,-13],[-5,-5],[-7,1],[-3,3],[-1,3],[-6,9],[-3,2],[-2,-4],[-14,-58],[-7,-11],[-3,-13],[-3,-3],[-3,0],[-3,-1],[-8,-9],[-4,-7],[-2,-6],[-2,-5],[-28,-31],[-34,-58],[-5,-5],[-5,4],[-6,16],[-7,13],[-10,11],[-14,10],[-14,17],[-2,2],[-5,2],[-6,5],[-6,6],[-4,7],[-1,3],[3,3],[-1,2],[-1,2],[-3,1],[-1,1],[-14,24],[-8,11],[-2,5],[-3,10],[-2,3],[-5,4],[-7,2],[-5,5],[-2,11],[-1,40],[-1,11],[-1,2],[-3,4],[-2,2],[-6,19],[-2,8],[-6,65],[-1,12],[0,3],[-2,2],[-1,2],[-1,5],[1,7],[0,5],[1,6],[2,5],[-7,16],[-3,10],[-1,12],[0,16],[2,12],[3,10],[4,9],[10,-30],[20,-44],[3,-11],[2,4],[3,5],[3,5],[3,1],[5,-3],[3,-7],[3,-8],[1,-9],[-3,-10],[-8,-17],[-1,-10],[3,-9],[3,-2],[3,3],[3,4],[11,25],[5,7],[3,-8],[-4,-19],[1,-4],[3,-5],[6,-18],[1,-7],[8,29],[17,10],[17,5],[8,15],[4,13],[9,2],[9,-4],[4,-7],[2,-5],[8,-6],[2,-5],[2,-27],[1,-7],[2,8],[6,50],[3,5],[5,4],[6,5],[9,20],[6,5],[2,-11],[0,-13],[2,-12],[2,-12],[12,-36],[0,-5],[3,5],[0,12],[-4,19],[0,6],[0,13],[0,6],[-1,0],[-2,0],[-2,1],[-1,2],[0,4],[2,6],[1,16],[3,12],[4,11],[5,8],[7,3],[5,-5],[3,-11],[1,-15],[-1,-3],[-3,-7],[0,-7],[3,-4],[4,3],[1,6],[1,7],[2,5],[3,1],[3,-3],[2,-4],[3,-2],[3,1],[6,6],[3,1],[4,-5],[2,-9],[1,-11],[-1,-11],[6,-4],[1,-13],[0,-15],[3,-15],[1,-5],[1,-3],[1,4],[6,6],[4,-1],[3,-4],[1,-6],[1,-9]],[[87989,43932],[-5,-32],[-3,-26],[-4,-22],[-1,-19],[-2,-2],[-1,-1],[-1,0],[-6,-7],[-3,-19],[-9,-18],[-3,-26],[-4,-3],[-6,-25],[-13,-31],[-2,-8],[-3,-2],[-1,4],[-2,3],[-2,-2],[-4,-10],[-4,4],[4,8],[2,7],[-5,6],[4,8],[9,13],[9,13],[0,5],[5,11],[0,14],[2,12],[8,28],[11,30],[9,5],[3,22],[3,12],[0,14],[4,6],[2,4],[1,9],[-4,8],[5,13],[1,-2],[1,-1],[1,-1],[1,-1],[1,6],[2,5],[0,-12]],[[86802,43861],[1,5],[2,2],[3,2],[2,3],[0,7],[-2,24],[-1,5],[-4,3],[-2,6],[-2,7],[-2,6],[-1,7],[4,-2],[5,-4],[3,-5],[2,4],[4,2],[5,3],[2,8],[1,11],[1,11],[4,7],[5,1],[-1,-8],[-3,-11],[-1,-7],[0,-8],[2,-8],[3,-15],[-1,0],[1,-5],[2,-7],[2,-8],[0,-6],[-1,-8],[-2,-1],[-2,0],[-3,-5],[-1,-13],[5,-3],[6,-1],[4,-8],[-6,-7],[0,-8],[2,-11],[2,-16],[-1,-16],[-6,-26],[-1,-17],[-9,20],[-1,20],[-3,18],[-5,17],[-11,30],[-1,5]],[[89514,44153],[7,-14],[1,-7],[0,-8],[-1,-2],[-1,0],[-3,1],[-3,0],[-6,-5],[-4,-2],[-3,-3],[-3,-7],[-2,-8],[0,-6],[-10,8],[-2,4],[-3,11],[-4,12],[-2,15],[1,19],[1,3],[1,2],[1,2],[5,1],[1,2],[1,2],[2,4],[5,6],[1,0],[0,3],[3,11],[6,-3],[4,-14],[7,-27]],[[89516,44205],[9,3],[7,-9],[2,-14],[-6,-12],[-8,-5],[-6,9],[-2,15],[4,13]],[[89525,44465],[6,-5],[5,-13],[2,-12],[-2,-6],[-4,-8],[-8,-28],[-4,3],[-3,6],[-4,3],[-5,1],[-3,-2],[-3,6],[-3,7],[-1,8],[-1,8],[3,3],[2,3],[1,4],[0,11],[0,3],[5,7],[6,2],[11,-1]],[[89496,44500],[2,-7],[0,-6],[-2,-25],[-2,-5],[-2,-5],[-2,-12],[-3,-4],[-4,2],[-1,7],[-4,9],[-4,6],[-3,7],[-1,10],[13,41],[4,-2],[4,-4],[5,-12]],[[82127,31430],[1,-14],[4,-25],[1,-14],[-5,3],[-1,1],[-1,14],[-2,15],[-1,12],[4,8]],[[82080,31521],[9,1],[5,-3],[3,-4],[-6,-7],[-4,-4],[-7,3],[-9,-2],[-5,1],[5,7],[7,-1],[2,9]],[[81577,33620],[6,2],[3,6],[2,6],[4,0],[4,0],[-5,-9],[-4,-11],[-4,-6],[-2,-7],[-3,-1],[-1,10],[0,10]],[[90736,39368],[8,1],[1,-5],[-3,-7],[-3,-2],[-3,-1],[-4,1],[-4,3],[-2,0],[-4,1],[-5,-2],[-4,2],[0,9],[4,17],[-1,8],[-1,9],[1,4],[3,-5],[3,-5],[2,-3],[4,-7],[3,-12],[5,-6]],[[89653,44921],[5,-3],[3,-7],[-4,-7],[-4,-6],[-3,-7],[-3,-3],[-5,-2],[-20,0],[-4,2],[-4,5],[-3,10],[3,10],[7,5],[7,0],[8,-3],[7,1],[10,5]],[[89501,44998],[20,-13],[1,-10],[-1,-5],[-5,-2],[-11,-1],[-11,4],[-9,8],[4,12],[12,7]],[[38645,89021],[6,-18],[-4,-2],[-19,12],[-22,3],[-11,7],[-5,12],[-2,7],[-5,-1],[-4,-5],[-2,-3],[-2,-8],[0,-8],[2,-6],[12,-7],[12,-24],[8,-8],[-1,-6],[-1,-2],[6,-6],[2,-8],[-1,-7],[-7,-3],[-32,13],[-6,-3],[0,-10],[1,-4],[7,-8],[3,-6],[10,-25],[2,-3],[4,-3],[11,-1],[6,-2],[0,-5],[7,0],[23,-4],[-3,-3],[-7,-8],[-4,-2],[-9,1],[-4,-1],[-3,-3],[30,-12],[2,-13],[24,-25],[7,-3],[9,-1],[8,-3],[5,-8],[-2,-17],[18,0],[7,-5],[2,-13],[0,-3],[0,-2],[-1,-1],[-2,0],[-1,-1],[0,-4],[2,-7],[1,-6],[2,-10],[-1,-4],[3,-10],[4,-28],[3,-11],[-16,-18],[-5,-10],[8,-4],[10,-2],[47,-24],[4,-5],[4,-7],[1,-2],[0,-11],[1,-5],[2,-2],[0,-2],[-3,-5],[-4,-3],[-8,-2],[-3,-3],[-4,9],[-5,4],[-7,-1],[-5,-4],[-3,-5],[-1,-4],[-1,-3],[-5,-1],[-4,2],[-1,4],[1,6],[2,5],[0,4],[-18,6],[-3,4],[-2,7],[-4,-2],[-8,-7],[-4,1],[-7,6],[-3,1],[-4,-2],[-7,-5],[-4,-1],[1,4],[-9,3],[-10,-5],[-26,-28],[-10,-5],[-31,-8],[-72,10],[1,2],[3,7],[-8,3],[-30,-12],[-12,1],[-6,-2],[-4,-13],[-8,-14],[0,-9],[4,-5],[6,-2],[19,0],[5,-4],[-1,-10],[-2,-7],[1,-3],[15,-19],[3,-2],[84,-17],[7,-5],[4,-7],[6,-18],[5,-8],[6,-3],[7,1],[6,6],[4,10],[-6,6],[-6,6],[3,7],[8,9],[3,5],[2,-4],[6,5],[33,-1],[2,-1],[3,-6],[2,-1],[2,1],[2,2],[2,1],[3,0],[4,-5],[3,-5],[3,-5],[23,-7],[9,-8],[3,-13],[2,-11],[-1,-5],[-9,-4],[-5,-5],[-6,-7],[-3,-6],[-6,-6],[2,-6],[11,-13],[-6,-7],[-6,-1],[-5,3],[-14,14],[-5,0],[-4,-9],[6,-3],[2,-1],[-7,-6],[-27,-6],[9,-8],[13,-3],[14,1],[9,6],[11,-7],[5,-5],[0,-8],[0,-4],[3,-8],[2,-3],[2,-1],[0,-5],[-3,-5],[3,-7],[10,-12],[0,-4],[-9,-4],[-6,-9],[-1,-8],[8,-3],[0,-4],[-1,-1],[-3,-3],[4,-3],[3,-11],[4,-3],[8,0],[4,-3],[2,-9],[-4,-17],[-10,-7],[-22,0],[2,7],[1,3],[3,2],[-7,3],[-9,0],[-6,-5],[1,-15],[-84,15],[-24,12],[-15,16],[-50,14],[-10,6],[-7,9],[-7,14],[-2,2],[-2,10],[-1,4],[-3,4],[-3,3],[-3,2],[-5,-1],[-4,-1],[-1,-2],[1,-4],[1,-7],[-4,-10],[-10,-6],[-17,-6],[-7,-4],[-2,-4],[1,-6],[2,-5],[3,-4],[4,-4],[3,-1],[4,0],[7,6],[3,2],[17,0],[8,-3],[13,-11],[16,-5],[25,-22],[8,-3],[70,-11],[16,-8],[8,-2],[11,-37],[-14,0],[5,-9],[7,-5],[7,0],[6,2],[1,2],[2,2],[3,2],[3,2],[2,0],[3,-1],[2,0],[3,1],[-1,-4],[-2,-4],[-5,-8],[5,-14],[-2,-13],[-6,-8],[-8,-2],[-6,6],[-4,9],[-4,4],[-7,-6],[0,-5],[4,-3],[-4,-1],[-3,1],[-3,1],[-3,2],[-3,4],[-4,9],[-3,4],[0,-6],[0,-4],[-2,-7],[-3,3],[-2,3],[0,4],[-2,5],[-10,16],[-2,-2],[0,-5],[0,-3],[1,-5],[7,-11],[-11,-5],[-21,7],[-10,2],[4,-9],[6,-3],[12,0],[4,-3],[9,-16],[5,-6],[-5,-9],[-8,-3],[-8,1],[-6,3],[-5,5],[-22,42],[-6,7],[-14,13],[-4,2],[-2,-2],[0,-6],[1,-5],[0,-4],[-1,-3],[5,-5],[12,-6],[6,-5],[3,-8],[4,-11],[2,-10],[-1,-4],[6,-3],[13,-11],[7,-2],[13,0],[5,-2],[5,-6],[-4,-4],[-5,-1],[-9,0],[-5,-1],[-9,-7],[-4,0],[-11,0],[-3,3],[-1,6],[-4,17],[-1,3],[-6,5],[-19,24],[-10,16],[-14,16],[-7,11],[-3,3],[-5,1],[29,-50],[11,-22],[8,-9],[3,-6],[2,-10],[-42,33],[-13,16],[-14,27],[-1,-4],[0,-12],[-2,-12],[-4,1],[0,-4],[-3,4],[-5,3],[-6,1],[-5,0],[2,0],[-1,-2],[1,0],[2,-1],[2,-1],[4,-5],[1,-2],[8,-2],[43,-27],[31,-32],[24,-15],[7,-8],[6,-10],[0,-4],[-5,2],[-13,14],[-5,4],[-46,18],[-3,2],[-2,5],[-3,8],[2,3],[-5,11],[-9,2],[-18,0],[-9,4],[-38,46],[-9,21],[-4,5],[-5,0],[-7,-3],[0,-4],[1,-3],[1,-3],[1,-2],[-6,-11],[-32,-18],[-5,-6],[-1,-3],[0,-5],[2,-6],[10,-21],[2,-5],[6,-3],[42,-26],[1,-4],[-1,-6],[-2,-4],[-3,-1],[-25,13],[-5,-4],[0,-4],[8,-4],[4,-3],[3,-5],[0,-2],[-1,-3],[0,-3],[6,4],[19,5],[7,-1],[6,-5],[9,-9],[6,-10],[0,-9],[22,-13],[4,-7],[0,-11],[-3,-11],[-2,-11],[4,-12],[11,-4],[2,-4],[0,-7],[-3,-2],[-7,-3],[-16,-11],[-8,0],[-8,7],[-8,16],[-3,4],[-55,42],[-25,7],[-31,16],[5,-11],[10,-8],[30,-15],[34,-34],[16,-9],[16,-16],[20,-25],[3,-6],[1,-6],[-36,4],[-14,12],[-8,4],[-6,-4],[13,-8],[2,-4],[-6,-4],[-7,0],[-22,8],[-5,5],[-4,10],[-2,10],[-3,4],[-12,4],[-7,-1],[-4,-7],[2,-1],[2,-2],[5,-5],[-5,-4],[-5,3],[-13,21],[-7,24],[-8,15],[-9,12],[-10,6],[-10,0],[4,-6],[4,-10],[4,-12],[2,-9],[-2,-9],[-5,-4],[-7,-3],[-7,-4],[7,-7],[19,-2],[8,-3],[15,-16],[6,-9],[0,-12],[71,-4],[3,-2],[11,-11],[3,-3],[6,1],[7,1],[5,-1],[4,-9],[-3,-2],[0,-4],[1,-5],[2,-6],[-7,-13],[-11,-9],[-12,-1],[-11,8],[-3,7],[-2,-2],[-3,-13],[8,-17],[-2,0],[-1,-1],[-1,-3],[-3,3],[-3,0],[-4,-1],[-4,-2],[10,-5],[7,-7],[3,-4],[0,-3],[-14,-3],[-6,-4],[-5,-2],[-23,10],[-16,2],[-1,2],[-2,6],[-2,6],[-3,2],[-3,-2],[1,-6],[3,-13],[-3,-26],[-12,-4],[-31,15],[-41,1],[-6,4],[-3,7],[1,12],[4,7],[7,4],[7,2],[6,-1],[0,4],[-24,-1],[-4,5],[3,8],[7,9],[8,8],[5,4],[-7,4],[-9,-3],[-9,-7],[-6,-8],[-3,0],[-4,1],[-4,-1],[-2,-4],[1,-9],[2,-5],[0,-4],[-3,-5],[-6,-4],[-8,-1],[-8,3],[-7,4],[-8,4],[-7,-5],[-1,-9],[7,-9],[8,-2],[25,2],[9,-2],[2,-5],[-2,-8],[-13,-18],[-4,-4],[-4,1],[-3,3],[-2,6],[-2,6],[-1,4],[-1,3],[-3,3],[-3,3],[-3,1],[-4,-2],[0,-4],[22,-55],[4,-17],[-5,3],[-3,6],[-3,6],[-3,6],[-4,3],[-4,3],[-4,4],[1,6],[-4,3],[-3,1],[-3,-3],[-1,-7],[1,-9],[4,-6],[10,-7],[-5,-8],[-7,-6],[-7,-3],[-6,0],[2,6],[1,8],[0,8],[-2,3],[-3,3],[-7,23],[-3,5],[-4,1],[-3,-4],[-2,-8],[1,-5],[9,-23],[-5,-12],[-8,0],[-18,8],[-27,1],[-38,10],[-6,7],[-6,8],[-7,6],[-8,3],[-5,-3],[3,-6],[9,-14],[-6,-9],[3,-6],[9,-4],[60,-11],[31,-19],[5,0],[3,-2],[1,-4],[0,-5],[-1,-1],[0,-2],[1,-2],[3,-5],[7,-7],[3,-5],[0,5],[1,8],[-1,4],[7,0],[12,8],[6,-2],[38,-26],[13,-3],[6,-4],[5,-9],[6,-23],[6,-7],[-1,-1],[-2,-6],[0,-6],[-3,-5],[-6,-4],[-5,-2],[-13,8],[-9,9],[-16,24],[-9,4],[0,-4],[12,-14],[5,-9],[4,-10],[-5,-2],[-5,2],[-5,3],[-5,2],[-2,-2],[1,-3],[3,-6],[4,-2],[6,1],[4,-1],[16,-14],[7,-2],[4,-3],[3,-6],[3,-3],[5,4],[-1,2],[-1,6],[6,3],[24,-3],[0,-2],[-2,-6],[5,-5],[0,-6],[-4,-7],[-4,-6],[7,3],[23,1],[0,-4],[-16,-9],[-9,-3],[-6,6],[-17,2],[-22,10],[-5,6],[-9,4],[-1,3],[-3,7],[-1,2],[-5,1],[-8,-5],[-4,0],[-5,3],[-12,18],[-7,2],[-7,1],[-6,1],[-5,7],[0,3],[2,6],[-12,6],[-5,0],[-5,-8],[-5,-2],[-19,16],[-22,1],[-7,5],[-4,1],[0,-9],[0,-11],[-1,-8],[4,-3],[5,1],[4,2],[6,0],[41,-27],[24,-23],[5,-3],[2,-3],[2,-5],[1,-8],[1,-3],[4,-8],[4,-4],[5,-1],[50,9],[3,-5],[14,-12],[6,-3],[18,-1],[-2,-9],[-4,-4],[-5,-2],[-4,-5],[-3,-8],[1,-2],[8,-2],[8,-8],[2,-11],[-1,-13],[-5,-13],[-11,-15],[-3,-5],[0,-7],[2,-2],[4,-2],[2,-5],[-3,-12],[-9,-4],[-11,-1],[-7,-4],[5,-6],[2,-2],[-4,-5],[-3,-6],[-4,-3],[-22,-4],[-5,-2],[7,-5],[17,-4],[5,-7],[-19,-17],[-17,-20],[14,-5],[16,14],[16,20],[14,12],[51,2],[8,-10],[-2,-10],[-12,-15],[-5,-20],[-6,-6],[-7,-3],[-43,5],[-8,-2],[4,-5],[17,-9],[32,-5],[0,-3],[-3,0],[-2,-1],[-1,-2],[-2,-5],[18,0],[-2,-5],[-2,-6],[-4,-10],[-10,-10],[-2,-4],[-5,-11],[-5,-8],[-5,-6],[-7,-5],[-8,-4],[-52,-10],[-9,1],[-3,2],[-10,11],[-13,10],[-3,4],[-4,3],[-5,3],[-4,3],[-3,13],[-4,0],[-5,-2],[-16,-12],[-5,-8],[-3,-8],[4,0],[25,10],[41,-45],[7,-4],[48,-3],[10,3],[18,13],[10,1],[8,-10],[-35,-14],[-3,-3],[-2,-5],[2,-8],[2,-2],[8,0],[6,-5],[4,-7],[-1,-7],[-7,-6],[-7,1],[-14,10],[-8,1],[11,-5],[6,-4],[4,-7],[-25,4],[8,-17],[3,-10],[-2,-5],[-26,0],[-23,-8],[-7,1],[-13,6],[-51,3],[-22,16],[-15,5],[-14,2],[-9,-5],[33,-19],[5,-7],[4,-12],[22,8],[17,-9],[73,3],[-3,-22],[-2,-7],[5,-8],[2,-11],[3,-10],[9,-3],[3,2],[8,6],[4,0],[2,-3],[4,-14],[-4,-8],[-5,6],[-5,1],[-4,-2],[-3,-5],[-1,-1],[-3,-10],[-2,-3],[-1,-1],[-1,-2],[2,-3],[0,-4],[-8,-3],[-14,-1],[-4,-2],[-3,-2],[0,-4],[6,0],[1,-4],[-3,-5],[-5,-3],[-18,-1],[-5,-3],[4,-4],[4,-2],[4,-2],[5,0],[0,-4],[-22,-1],[-41,27],[-21,2],[-10,-2],[-67,8],[-11,-6],[8,-6],[93,-13],[31,-18],[0,-4],[-9,-3],[-11,0],[-11,-2],[-6,-11],[31,1],[7,5],[6,8],[8,0],[15,-6],[2,0],[-1,-2],[-1,-6],[5,0],[2,-4],[2,-6],[4,-2],[4,-1],[3,-3],[3,-5],[2,-7],[-44,0],[-2,-2],[-4,-5],[-1,-1],[-3,0],[-6,3],[-8,2],[-8,8],[-4,3],[-13,3],[-7,-1],[-3,-4],[-3,-2],[-62,8],[0,-4],[11,0],[75,-22],[10,-8],[20,-10],[5,-1],[3,1],[5,4],[3,-1],[2,-2],[1,-4],[0,-4],[1,-2],[17,-12],[0,-4],[-42,4],[-20,8],[-10,1],[-5,-7],[-5,-5],[-68,17],[-10,-6],[-5,4],[-22,-4],[-59,15],[-16,-1],[-11,-10],[9,-6],[20,4],[14,-6],[12,1],[4,-3],[4,-5],[6,-2],[56,6],[1,-1],[1,-2],[1,-5],[1,-1],[14,0],[-2,4],[8,-6],[17,-2],[8,-4],[-4,-10],[-2,-4],[-2,-2],[7,0],[13,9],[8,2],[14,-1],[6,-3],[5,-7],[6,6],[9,3],[10,0],[8,-6],[-5,-2],[-5,-1],[-5,-1],[-2,-7],[5,-3],[12,0],[5,-2],[4,-4],[1,-5],[-2,-4],[-4,-3],[0,-4],[7,0],[2,0],[-11,-10],[-11,11],[-10,13],[-8,-1],[-1,-6],[0,-4],[2,-5],[2,-4],[1,-5],[-1,-5],[-2,-5],[-1,-5],[3,-4],[18,-10],[-70,-21],[0,-4],[-13,-4],[-51,20],[-25,2],[-36,17],[-9,2],[-4,-2],[-2,-4],[1,-13],[1,-5],[2,0],[3,2],[3,1],[87,-21],[8,-11],[-2,-1],[-1,-1],[-1,-2],[-1,-4],[8,5],[9,1],[49,-8],[8,-6],[-2,-4],[4,-4],[4,1],[5,2],[3,0],[6,-1],[0,-6],[-5,-6],[-6,-3],[-27,-4],[-56,21],[-106,12],[-6,-4],[3,-5],[3,-2],[26,-1],[4,-2],[8,-6],[5,-1],[15,-1],[4,-3],[2,-4],[1,-4],[-1,-3],[0,-1],[3,-3],[4,-1],[4,2],[3,4],[7,5],[30,1],[33,-8],[3,-2],[9,-9],[20,-6],[9,-7],[5,0],[3,1],[3,0],[4,-7],[-2,-5],[-16,-25],[-12,-13],[-15,-7],[-15,-1],[-21,10],[-59,6],[4,-9],[5,-3],[12,0],[81,-21],[0,5],[-5,4],[0,4],[7,4],[13,13],[8,4],[6,6],[3,1],[12,0],[-5,-8],[-14,-15],[-3,-7],[1,-12],[-1,-4],[-17,-6],[-71,4],[0,-4],[10,-6],[36,1],[31,-8],[11,0],[-5,-7],[-6,0],[-6,2],[-6,2],[-5,-3],[-9,-11],[-4,-3],[-47,0],[5,-10],[9,-3],[18,1],[-4,-11],[-9,-3],[-9,2],[-17,13],[-4,6],[-2,7],[-2,2],[-10,-5],[-3,-1],[-8,9],[-7,0],[-3,-7],[10,-12],[31,-18],[5,-10],[-23,-5],[-80,38],[-8,6],[-7,9],[-20,40],[-7,16],[0,13],[-1,8],[-2,12],[-3,8],[-6,-5],[-1,-11],[3,-14],[4,-14],[17,-47],[2,-6],[-11,-4],[-5,1],[-9,6],[-104,17],[-7,7],[-10,20],[-7,7],[-6,-5],[2,-8],[5,-8],[2,-6],[-11,-2],[10,-15],[38,-3],[15,-5],[8,-5],[18,-5],[8,-4],[6,-8],[3,-9],[3,-10],[3,-9],[0,-4],[-8,-10],[-3,-3],[9,-4],[5,5],[1,12],[-4,16],[7,14],[13,2],[82,-25],[25,-15],[3,-2],[2,-5],[2,-5],[-3,-3],[-5,-1],[-34,-22],[-6,-7],[2,-1],[2,-1],[3,-6],[-22,-12],[-8,-10],[-3,-3],[-3,-3],[-2,-5],[2,-4],[3,2],[4,4],[3,3],[7,2],[21,18],[8,-1],[12,-10],[7,-2],[-2,5],[-6,8],[-2,3],[-2,8],[0,2],[2,0],[7,8],[15,6],[38,-1],[1,-2],[-4,-3],[-7,-1],[16,-12],[1,-2],[-1,-2],[-2,-3],[-2,-1],[-10,0],[-33,15],[-9,-3],[8,-15],[2,-2],[4,2],[3,2],[4,1],[32,-25],[4,8],[4,0],[9,-8],[-3,-9],[-5,-7],[-5,-3],[-8,-1],[19,-8],[6,-4],[-2,-9],[-4,-3],[-27,7],[-5,5],[-6,-8],[-15,-10],[-7,-7],[12,-3],[36,2],[9,-11],[-3,1],[-3,-1],[-3,-1],[-3,-3],[12,-4],[4,0],[-3,-6],[-1,-3],[-2,-3],[6,-4],[-8,-5],[-7,4],[-6,7],[-6,2],[0,-4],[3,-5],[0,-5],[-1,-4],[-4,-2],[4,-1],[8,-6],[4,-1],[2,1],[2,3],[3,1],[4,-1],[3,-4],[3,-7],[2,-7],[-4,-3],[-3,-1],[-5,-5],[-2,-2],[-7,1],[-24,7],[-17,1],[-8,4],[-7,8],[-7,-5],[-27,17],[-19,-1],[-9,2],[-5,9],[0,6],[-2,7],[-2,6],[-1,3],[-5,1],[-2,-4],[1,-11],[-4,-7],[-10,1],[-18,8],[-6,-4],[-7,-1],[-37,8],[-14,10],[-42,-5],[-4,-2],[-3,-4],[-1,1],[-1,13],[2,9],[3,7],[3,5],[42,44],[0,4],[-13,0],[-4,4],[-2,13],[0,4],[0,4],[0,4],[-1,6],[-3,6],[-3,3],[-4,0],[-2,-3],[6,-19],[1,-5],[0,-5],[-2,-7],[-2,-6],[1,-3],[3,-2],[-1,-6],[-3,-6],[-4,-2],[-3,-2],[-4,-4],[-3,-5],[-3,-6],[-5,17],[-10,19],[-10,14],[-7,-1],[2,-10],[10,-20],[2,-8],[1,-12],[-1,-10],[-4,-4],[-18,7],[-4,1],[1,-8],[5,-8],[10,-9],[0,-4],[-8,-14],[-5,-6],[-6,-4],[-7,0],[-13,4],[-7,0],[-9,-6],[-6,-13],[-4,-17],[-2,-19],[-4,-14],[-9,-18],[-12,-12],[-9,-1],[-9,9],[-3,8],[-1,12],[2,31],[-1,11],[-6,-4],[-4,-6],[-2,-9],[-1,-13],[0,-17],[0,-10],[-3,-5],[-9,-1],[-6,3],[-6,8],[-6,10],[-4,19],[-5,13],[-5,12],[-4,5],[2,5],[10,15],[-8,3],[-7,-5],[-6,-11],[-2,-14],[5,-12],[18,-25],[0,-13],[-7,10],[-20,-3],[-9,5],[3,8],[2,8],[-4,4],[-1,0],[0,4],[1,-1],[6,-3],[-2,6],[-4,4],[-14,9],[-5,1],[-3,-1],[-1,-3],[-1,-2],[-1,-2],[-2,2],[-6,5],[-3,1],[-5,-2],[1,-5],[3,-6],[4,-3],[-6,-6],[-5,0],[-12,10],[3,10],[25,19],[-5,7],[2,5],[7,3],[34,7],[7,5],[43,14],[-2,8],[-3,2],[-8,-3],[-2,-2],[-3,-3],[-3,-2],[-2,4],[0,3],[1,5],[5,12],[20,17],[2,3],[0,12],[2,9],[2,8],[3,6],[5,2],[18,19],[3,7],[2,15],[5,13],[8,9],[9,1],[-1,3],[0,2],[-1,2],[-1,2],[8,6],[3,4],[0,6],[3,4],[7,16],[-2,7],[0,6],[0,7],[2,5],[-17,-41],[-7,-3],[-7,-8],[-11,-22],[-7,-20],[-5,-11],[-4,-5],[-7,-3],[-8,-8],[-8,-10],[-5,-12],[-6,-17],[-5,-5],[-7,-2],[-5,-5],[-3,-10],[-1,-12],[-2,-9],[-5,-7],[-15,-9],[-5,-1],[-24,3],[-8,-3],[-8,-12],[-8,-15],[-9,-10],[-9,5],[3,8],[7,9],[3,7],[-5,-2],[-5,-3],[-3,1],[2,12],[4,9],[12,23],[4,5],[4,2],[6,12],[3,2],[4,1],[18,14],[14,5],[7,4],[-4,12],[0,10],[4,11],[5,10],[1,5],[2,11],[2,6],[2,5],[3,6],[8,10],[0,4],[-13,-6],[-14,-2],[-3,3],[4,8],[34,43],[1,5],[2,3],[4,3],[2,3],[2,6],[2,13],[2,5],[-3,21],[13,18],[28,27],[0,2],[0,1],[-1,0],[-1,1],[-2,0],[-21,-9],[-4,-5],[-3,-12],[-18,-6],[-3,-7],[-3,-20],[-5,-22],[-4,-9],[-5,-10],[-34,-47],[-13,-11],[-27,-8],[-12,-9],[-8,-3],[-7,2],[-6,6],[-6,8],[4,4],[6,4],[0,4],[-6,5],[2,7],[5,5],[2,5],[2,10],[3,10],[4,8],[5,3],[6,7],[23,34],[5,11],[-8,-4],[-22,-21],[-8,8],[-3,1],[-3,-1],[-4,-3],[-1,-3],[7,-5],[1,-9],[-2,-9],[-3,-6],[-4,6],[-3,4],[-3,0],[-3,-7],[0,-2],[0,-4],[0,-5],[-2,-5],[-2,-2],[-8,-5],[-9,-4],[-12,-11],[-12,-4],[-16,-10],[3,8],[7,9],[7,8],[5,3],[5,5],[3,13],[2,13],[2,10],[13,15],[44,25],[11,15],[4,10],[-2,4],[-7,-3],[-19,-21],[-7,-4],[-19,-1],[-2,6],[0,13],[-2,10],[-8,0],[-6,-10],[0,-12],[2,-12],[-2,-11],[-6,-5],[-9,-3],[-8,-4],[-3,-12],[0,-16],[0,-4],[-3,-5],[-1,3],[-1,6],[-1,4],[-4,0],[-2,-3],[-2,-9],[0,-3],[1,-7],[-1,-3],[-1,-2],[-2,-4],[-3,-7],[-5,-7],[-2,-4],[-1,-6],[0,-6],[-1,-6],[-4,-2],[-2,2],[-1,5],[0,7],[0,6],[-2,3],[-3,6],[0,6],[6,1],[0,4],[-5,-1],[-9,-6],[-4,-1],[-5,3],[3,6],[12,13],[4,0],[3,2],[1,8],[-1,5],[-3,4],[-4,3],[-3,1],[3,-8],[-1,-7],[-4,-4],[-14,-2],[-3,1],[-2,2],[-4,8],[-3,2],[1,3],[14,16],[9,6],[4,4],[2,7],[-15,-5],[-2,1],[0,-4],[-19,-1],[-4,-1],[-5,-4],[-4,-8],[-2,-9],[0,-6],[2,-6],[1,-8],[-1,-7],[-4,1],[-3,6],[-1,3],[-5,-1],[-1,-4],[0,-5],[-2,-7],[-2,-10],[-2,-2],[-2,0],[-2,3],[-1,3],[2,6],[-2,7],[-5,12],[-4,3],[-11,0],[-5,2],[20,15],[5,6],[3,-1],[10,8],[10,3],[12,12],[6,2],[11,3],[13,6],[13,9],[9,10],[-8,5],[-10,-6],[-10,-10],[-9,-5],[-21,1],[-10,3],[-10,9],[5,3],[11,-1],[5,1],[4,5],[9,12],[4,4],[40,17],[0,3],[-9,0],[-4,1],[0,3],[-1,3],[1,1],[12,8],[2,0],[6,3],[4,7],[4,8],[4,7],[5,2],[9,3],[4,5],[7,14],[2,1],[5,3],[2,2],[3,3],[20,4],[13,-1],[1,3],[-3,7],[-4,7],[-5,4],[-5,-3],[-4,-4],[-5,-2],[-5,5],[7,7],[2,3],[1,5],[0,7],[0,7],[-1,3],[-6,4],[-6,7],[-5,4],[-7,-7],[1,-5],[2,-3],[4,-6],[2,-7],[-2,-4],[-3,-2],[-3,-3],[-4,-7],[-11,-12],[-5,-4],[0,-12],[-6,-10],[-47,-47],[-6,-9],[-4,-4],[-4,-2],[-12,-2],[-13,-7],[-8,-1],[-7,3],[-7,10],[4,5],[15,11],[10,11],[5,4],[6,2],[-5,9],[-8,3],[-19,-1],[-2,0],[-4,-3],[-7,-7],[-3,-1],[-4,4],[2,0],[0,4],[-6,-3],[-7,-9],[-5,-11],[-3,-12],[0,-24],[-2,-6],[-4,-2],[-5,-2],[-3,-2],[-28,6],[-5,3],[-7,6],[-4,8],[1,11],[11,7],[32,4],[14,24],[33,21],[11,13],[-4,3],[-5,-3],[-20,-16],[-3,1],[-2,3],[0,3],[-1,1],[-3,0],[-1,1],[-2,-1],[-3,-4],[-1,-3],[-2,-8],[-20,-22],[-4,5],[-2,-2],[-2,-4],[-1,-3],[-8,-3],[-9,-1],[-2,3],[2,6],[3,5],[4,3],[3,1],[74,56],[104,30],[12,14],[1,3],[1,10],[1,3],[4,6],[3,4],[3,2],[5,1],[7,3],[14,17],[7,4],[3,0],[7,4],[2,2],[1,7],[-1,6],[-1,7],[0,6],[4,9],[8,8],[4,9],[-3,11],[-9,-12],[-10,-18],[-3,-3],[-4,-6],[-10,-24],[-6,-6],[-4,4],[-7,10],[-5,11],[-3,9],[0,4],[-2,1],[-1,2],[-1,1],[1,4],[3,5],[0,4],[-1,6],[-3,5],[-7,7],[-9,17],[-2,0],[-1,-11],[1,-5],[2,-3],[1,-5],[-5,-14],[0,-6],[1,-7],[7,-21],[1,-6],[0,-1],[1,-1],[0,-2],[-1,-4],[-1,-1],[-14,-12],[-21,-35],[-7,-8],[-37,-28],[-4,-1],[-4,1],[-6,5],[-4,2],[-34,-25],[-19,-9],[-11,14],[7,0],[3,0],[-4,6],[-4,2],[-4,1],[-4,3],[-2,5],[0,5],[2,5],[14,5],[26,24],[48,18],[10,1],[10,2],[7,12],[-15,-1],[-8,1],[-4,6],[3,4],[17,10],[-3,2],[-3,5],[-2,5],[4,3],[8,1],[7,-1],[3,-3],[3,1],[4,-1],[3,2],[0,6],[-3,3],[-18,5],[-9,0],[-3,-3],[-4,-7],[-3,-4],[-3,1],[-2,3],[-3,6],[4,10],[-3,7],[-12,11],[-11,5],[-1,3],[1,5],[2,6],[5,6],[13,21],[5,6],[12,11],[6,3],[0,4],[-14,4],[-7,0],[-7,-4],[-14,-12],[-6,-14],[0,-3],[-10,-22],[-4,-5],[-5,0],[-14,6],[-8,11],[-4,2],[-5,-1],[-12,-7],[0,-4],[8,-2],[15,-8],[11,-4],[5,-4],[3,-5],[0,-5],[8,-5],[10,-1],[9,-2],[7,-13],[0,-6],[-1,-7],[-2,-5],[-5,-2],[-24,5],[1,-8],[3,-6],[3,-4],[4,-3],[0,-4],[-25,-21],[-8,-3],[-21,-3],[-10,2],[-8,9],[1,9],[-3,3],[-23,0],[-5,-2],[-5,-7],[5,-2],[14,-1],[5,-4],[11,-10],[6,-4],[4,-5],[5,-3],[-1,-5],[-5,-6],[-5,-4],[-12,-4],[-7,-9],[-3,1],[-2,3],[-2,1],[-2,2],[1,5],[2,7],[-1,8],[-2,8],[-3,6],[-4,5],[-7,-5],[-2,0],[-2,3],[-5,12],[-4,5],[-6,3],[-10,2],[2,-4],[7,-13],[0,-7],[-3,-4],[-4,-1],[-4,1],[-7,9],[-3,2],[-1,-8],[2,-5],[11,-15],[-9,-7],[-3,-1],[-3,2],[-6,9],[-3,2],[-12,3],[-4,-2],[-6,-10],[8,-9],[2,-6],[-2,-9],[2,-8],[-4,3],[-12,12],[-4,6],[-5,3],[-6,-4],[4,-6],[14,-26],[3,-13],[-4,3],[-3,5],[-6,13],[-1,-8],[-2,-11],[-4,-6],[-5,6],[-5,7],[-12,10],[-5,6],[1,-8],[3,-6],[5,-4],[4,-3],[0,-4],[-7,3],[-13,11],[-7,3],[-24,0],[4,-8],[18,-3],[7,-8],[5,-3],[9,-4],[6,-4],[-4,-7],[1,-11],[-8,-8],[-17,-9],[-4,-4],[-8,-11],[-3,-2],[-22,0],[0,4],[9,5],[4,5],[3,7],[-18,-8],[-8,-1],[3,9],[22,14],[12,14],[-14,-4],[-10,-8],[-5,3],[-3,1],[-6,-6],[-5,-9],[-6,-5],[-6,4],[1,1],[0,1],[1,2],[-6,7],[4,11],[7,10],[14,7],[10,12],[5,2],[-8,16],[-14,-3],[-14,-8],[-10,3],[4,4],[12,7],[5,1],[-7,6],[-15,-5],[-25,-17],[-10,-15],[-5,-7],[-6,-3],[-4,1],[-1,2],[-1,4],[-4,14],[-1,5],[-1,5],[-2,8],[-6,-4],[-7,-8],[-3,-4],[-4,-3],[-23,6],[-1,1],[-2,0],[-2,-4],[-2,-3],[-4,-2],[-9,-3],[-3,-2],[-3,-3],[0,-4],[3,-2],[4,-1],[7,1],[-8,-6],[-9,0],[-28,11],[-7,-7],[-6,-2],[-6,1],[-5,3],[3,8],[-5,0],[-8,-10],[-7,-4],[-15,-14],[10,-2],[20,10],[9,-4],[-10,-12],[-2,-4],[8,3],[16,11],[8,2],[33,0],[3,2],[7,8],[3,2],[34,-6],[8,-5],[2,-9],[-5,-6],[-27,-14],[-24,2],[-25,-6],[-53,5],[-10,5],[-25,2],[-4,4],[9,16],[-7,4],[-8,-4],[-7,-9],[-6,-9],[-6,-9],[-8,-3],[-15,2],[-4,-2],[-9,-6],[-4,-1],[-4,1],[-7,3],[-3,0],[-3,3],[0,6],[3,5],[6,4],[12,11],[24,12],[14,15],[3,1],[3,-1],[2,-8],[3,-3],[5,3],[8,8],[7,9],[3,7],[4,4],[39,13],[5,5],[0,8],[9,7],[4,1],[0,4],[-8,3],[-28,-7],[-16,0],[-2,1],[-1,1],[-2,5],[-2,2],[-3,-1],[-4,-3],[-2,-1],[-1,-1],[-3,-3],[-3,-6],[-2,-2],[-3,-1],[-8,2],[-3,3],[-2,0],[-2,-1],[-5,-6],[-2,-1],[-1,-1],[0,-3],[-1,-3],[-2,-1],[-2,1],[-5,6],[-1,1],[-4,-2],[-9,-8],[-4,-2],[1,2],[0,2],[1,2],[2,2],[-7,6],[-10,3],[-18,3],[-7,-2],[-14,-9],[-7,-1],[-8,5],[1,7],[7,5],[39,12],[4,-2],[10,-7],[4,-1],[13,1],[4,2],[3,8],[3,2],[5,1],[9,6],[4,1],[38,-8],[8,3],[4,3],[2,5],[-1,4],[-2,6],[-3,5],[-2,3],[-4,-2],[-7,-9],[-4,-2],[-2,3],[-4,14],[15,11],[7,9],[6,19],[14,14],[4,8],[-8,-2],[-10,-15],[-9,-6],[-1,-4],[0,-5],[-2,-5],[-4,-3],[-26,-12],[-13,-1],[-4,-2],[-7,-6],[-4,0],[-2,3],[-4,9],[-3,4],[13,19],[6,13],[0,9],[-4,-8],[-10,-13],[-10,-10],[-4,4],[-2,9],[-4,4],[-4,3],[-4,2],[-3,6],[-1,4],[0,9],[5,5],[26,17],[-1,6],[-1,2],[4,4],[-2,4],[-1,3],[-2,1],[-3,0],[0,4],[4,2],[7,9],[2,2],[4,1],[12,7],[25,3],[5,5],[-13,7],[-15,-3],[-29,-16],[-2,8],[-6,0],[-5,-5],[-2,-9],[-1,-13],[-1,-8],[-7,-12],[-3,-3],[-7,0],[-4,-3],[-3,-7],[-4,-18],[-3,-7],[6,-4],[15,-17],[-5,-5],[-16,-3],[-32,3],[-7,5],[1,4],[-1,2],[-2,2],[0,4],[19,4],[19,9],[-6,4],[-2,0],[8,8],[1,4],[1,6],[-1,3],[-6,-7],[-10,-9],[-4,-1],[2,8],[-8,-4],[-16,-15],[-9,-1],[1,2],[1,6],[-10,-1],[-5,1],[-4,4],[6,10],[2,6],[1,8],[-4,-1],[-13,-15],[2,6],[3,10],[-1,4],[10,4],[4,4],[3,8],[-7,0],[-7,-5],[-10,-15],[-6,-11],[-4,-5],[-4,0],[-1,2],[0,9],[-1,5],[9,16],[8,9],[9,3],[31,4],[10,5],[6,8],[-19,0],[-13,-8],[-5,0],[7,24],[0,4],[11,5],[6,1],[8,-6],[12,-2],[4,2],[2,6],[0,7],[-2,3],[-4,-4],[-4,2],[-49,6],[-8,4],[2,8],[-3,-1],[-7,-5],[-3,0],[-4,3],[-13,-1],[3,8],[4,8],[2,8],[-3,5],[-5,-3],[-26,-27],[-15,-8],[-12,-1],[2,14],[-7,2],[-4,-1],[-3,-4],[-5,-8],[-4,-6],[-4,-5],[-6,-2],[-5,0],[0,4],[8,7],[3,3],[4,8],[-1,3],[-29,-4],[-6,3],[4,3],[3,2],[8,0],[3,2],[6,8],[11,4],[22,14],[9,2],[23,-2],[6,2],[13,10],[53,21],[64,10],[7,10],[-68,-8],[7,5],[24,7],[6,7],[3,9],[1,9],[-5,7],[-6,0],[-45,-38],[-45,-12],[-20,-12],[-11,-11],[-19,1],[-8,-3],[-7,-5],[-18,-9],[-7,0],[1,6],[2,4],[3,2],[3,1],[-6,7],[-9,2],[-18,-2],[-3,3],[0,6],[2,6],[1,4],[3,3],[9,3],[4,4],[-5,-1],[-14,5],[-5,-1],[-12,-3],[-34,12],[4,4],[12,8],[5,1],[-7,3],[-3,2],[-2,6],[7,4],[80,-13],[73,17],[18,13],[9,-1],[-7,6],[-7,3],[-6,-1],[-20,-12],[-69,-12],[0,4],[7,2],[3,1],[3,3],[1,6],[-2,4],[-4,1],[-6,-5],[-11,0],[-3,-2],[-3,-3],[-2,-2],[-4,-1],[2,4],[0,2],[-1,3],[-1,5],[0,17],[-1,5],[-1,1],[-1,2],[1,6],[3,4],[4,2],[7,2],[19,13],[10,3],[9,-8],[-7,16],[0,8],[4,6],[5,10],[-9,-6],[-17,-21],[-14,-7],[-5,-4],[-5,-2],[-11,5],[-10,-4],[-6,-1],[4,8],[5,8],[4,9],[-1,8],[-4,8],[0,10],[3,10],[7,8],[8,2],[10,0],[5,3],[-4,12],[4,3],[11,1],[5,6],[1,6],[2,11],[2,9],[4,4],[2,1],[4,6],[3,1],[3,1],[8,3],[25,0],[0,3],[-1,2],[-1,3],[2,4],[-10,8],[-10,1],[-25,-6],[-9,-4],[-10,-8],[-52,-63],[-6,-11],[-2,-14],[4,-16],[0,-4],[-2,-6],[2,-6],[0,-5],[-5,-10],[-6,-6],[-5,-3],[-7,3],[-2,3],[-6,10],[-4,4],[-13,8],[35,65],[4,4],[7,5],[4,3],[0,4],[-6,1],[-5,0],[-5,-1],[-13,-11],[-2,-1],[-2,-3],[1,-11],[-1,-2],[-3,-4],[-3,-9],[-4,-8],[-5,-4],[-11,-1],[-5,1],[-6,4],[3,4],[-5,12],[2,7],[13,10],[-3,3],[-2,1],[-3,0],[0,3],[4,4],[1,5],[0,7],[1,5],[4,2],[9,0],[4,2],[-6,4],[-11,-3],[-6,3],[6,5],[13,4],[9,11],[5,2],[11,2],[25,-4],[5,3],[8,11],[13,9],[21,25],[5,3],[4,-4],[5,-2],[11,0],[5,3],[8,10],[4,3],[0,4],[-24,-4],[-6,2],[-13,6],[-6,0],[10,16],[3,8],[-4,4],[-7,-5],[-12,-23],[-8,-4],[-4,12],[6,23],[11,24],[9,14],[-8,5],[-10,-6],[-9,-13],[-5,-21],[-10,-23],[-1,-8],[1,-10],[1,-9],[0,-8],[-5,-15],[-11,-2],[-11,2],[-9,-7],[-9,-8],[-12,-6],[-13,-1],[-10,4],[5,5],[7,2],[11,2],[-3,7],[-11,4],[-5,5],[6,9],[3,5],[1,6],[-8,-1],[-7,-7],[-6,-11],[-5,-11],[-17,-10],[-4,-2],[-9,-6],[-5,-1],[-9,3],[-10,6],[-5,10],[7,10],[9,1],[19,-10],[8,5],[-18,13],[-4,5],[15,4],[8,5],[5,1],[9,-1],[3,2],[3,7],[-14,1],[-6,-2],[-6,-5],[-5,-3],[-8,2],[-6,5],[-1,6],[-5,1],[-7,-1],[-6,3],[-1,10],[6,4],[21,1],[74,-26],[-4,6],[-22,15],[28,11],[3,1],[3,-1],[3,1],[0,6],[0,4],[-1,3],[0,5],[1,6],[-6,-1],[-5,-5],[-6,-2],[-4,4],[2,5],[0,6],[2,5],[2,4],[0,4],[-12,-1],[-6,-4],[-3,-9],[-2,-12],[-6,-7],[-6,-3],[-6,0],[-18,4],[-14,-1],[-14,-3],[-6,0],[0,4],[8,3],[7,4],[5,6],[5,11],[0,1],[1,6],[1,6],[3,4],[18,3],[11,11],[4,-1],[7,-6],[8,-4],[9,-1],[8,3],[7,7],[6,12],[-3,2],[-2,-1],[-3,-3],[-3,-2],[-3,-1],[-35,5],[-24,-10],[-5,2],[1,7],[8,16],[0,7],[-4,1],[-5,-8],[-5,-10],[-3,-5],[-2,-1],[0,-3],[-1,-3],[0,-1],[-2,-1],[-3,4],[-2,1],[-16,4],[-27,-4],[-2,-1],[-2,-2],[-4,-7],[-3,-2],[-15,3],[9,9],[-1,1],[-4,3],[4,1],[7,-2],[4,1],[2,2],[8,10],[-1,6],[-2,5],[-3,2],[-4,-1],[-1,-9],[-6,-4],[-8,0],[-5,3],[-3,9],[-1,9],[1,19],[-2,7],[-5,-8],[-5,-13],[-5,-9],[-7,0],[-7,4],[-4,6],[5,6],[-8,13],[-4,2],[-7,1],[-4,3],[-8,8],[-3,4],[-4,5],[-4,1],[-4,-1],[-4,1],[-3,4],[-2,3],[-1,4],[-6,16],[-4,8],[-17,17],[-3,8],[4,6],[3,10],[4,22],[3,8],[8,16],[3,8],[2,13],[0,10],[2,8],[7,10],[7,3],[8,2],[6,4],[0,7],[8,10],[3,5],[3,9],[3,13],[2,6],[3,7],[5,5],[11,4],[9,9],[13,9],[-2,0],[-2,2],[-3,2],[2,6],[4,6],[8,8],[0,4],[-12,-5],[-12,-11],[-22,-28],[-18,-14],[-9,-12],[-4,0],[-3,6],[4,11],[-14,0],[0,-4],[7,-11],[-2,-9],[-13,-18],[-5,-13],[-3,-4],[-5,-1],[-3,4],[-1,7],[-3,7],[-6,2],[2,9],[12,21],[1,5],[0,12],[1,2],[3,2],[1,4],[1,6],[0,6],[2,2],[15,24],[6,5],[0,3],[-1,2],[1,3],[5,12],[96,42],[15,13],[11,17],[-18,4],[-10,-2],[-7,-7],[-5,-9],[-49,-36],[-36,-5],[-8,-5],[-15,-39],[-2,-2],[-3,-3],[-3,-4],[-2,-7],[0,-9],[-2,-3],[-4,0],[-3,-3],[-5,-9],[-3,-11],[-4,-8],[-7,-4],[-5,3],[3,7],[5,5],[3,0],[-1,11],[-2,2],[-4,1],[-3,3],[-1,2],[-3,3],[0,4],[10,16],[0,4],[11,25],[2,4],[5,1],[4,5],[5,5],[3,5],[5,13],[3,5],[4,2],[11,1],[5,3],[3,8],[-25,15],[-5,-1],[-2,-6],[-4,-24],[-1,-8],[-28,-18],[-10,-2],[-15,3],[-3,3],[-3,12],[-3,2],[-4,-4],[1,-6],[-3,0],[-3,3],[-4,5],[-4,3],[-9,-4],[-5,3],[34,21],[-1,4],[-1,4],[-1,4],[-2,3],[-1,7],[-3,2],[-4,-1],[-4,-4],[2,-3],[2,-9],[-5,0],[-6,1],[-5,3],[-5,4],[4,8],[2,3],[2,1],[-1,7],[-2,5],[-3,9],[5,1],[12,-1],[3,1],[0,2],[0,3],[1,2],[8,8],[9,6],[9,2],[3,4],[1,6],[-2,6],[-5,1],[0,4],[14,10],[94,24],[-13,6],[-53,-4],[-15,4],[-2,-2],[-2,-7],[-3,-4],[-14,-14],[-9,-5],[-8,-1],[-8,5],[0,4],[1,1],[3,3],[-16,12],[-9,3],[-4,-9],[-3,-6],[-17,7],[-5,-3],[-23,-6],[-6,-4],[-6,-10],[-9,-10],[-9,-8],[-7,-3],[-3,2],[-2,5],[0,7],[1,7],[2,4],[20,19],[7,4],[6,6],[7,11],[-10,-1],[-12,-7],[-12,-10],[-7,-12],[-7,-13],[-4,-6],[-4,-3],[-6,0],[-11,9],[-5,3],[1,4],[1,10],[3,10],[3,4],[3,1],[4,6],[3,1],[2,-1],[2,-2],[2,-2],[2,1],[2,7],[-5,3],[-11,2],[-5,-2],[-3,-4],[-3,-2],[-6,4],[4,9],[4,3],[6,2],[6,7],[-5,3],[-14,-3],[-5,6],[-2,8],[-1,10],[1,8],[3,4],[70,4],[-2,0],[97,9],[4,3],[1,2],[4,9],[2,2],[48,3],[-15,11],[-19,2],[-18,-4],[-24,-15],[-55,-4],[-7,-6],[-3,10],[-4,3],[-5,-1],[-6,-4],[-2,-2],[-3,-3],[-2,-2],[-3,-1],[-4,0],[-9,4],[-11,-1],[-12,-4],[-12,-2],[-10,7],[7,8],[6,13],[6,16],[4,16],[-7,1],[-5,-2],[-4,-7],[-1,-14],[-3,-9],[-6,-12],[-6,-10],[-5,-4],[-10,3],[2,11],[5,12],[3,9],[-8,7],[-12,-11],[-4,10],[12,10],[5,7],[5,9],[5,4],[11,-6],[5,2],[3,5],[5,4],[68,13],[9,6],[5,11],[-18,0],[-68,-17],[-6,1],[-5,2],[-3,3],[-4,13],[-4,11],[-4,11],[1,10],[6,11],[6,-6],[5,5],[4,8],[3,5],[7,-2],[12,-9],[20,-6],[2,-2],[0,-5],[1,-1],[2,1],[4,3],[1,0],[85,17],[4,-5],[-1,-9],[0,-6],[5,3],[4,6],[3,8],[5,19],[-8,4],[-101,-28],[-10,2],[-32,18],[-8,0],[-14,-13],[-9,-4],[-7,-4],[-1,-11],[3,-14],[13,-36],[0,-8],[-9,-3],[-4,2],[-5,8],[-3,2],[-5,1],[-15,11],[-26,4],[-2,-1],[-2,-2],[0,-4],[1,-5],[-3,0],[-3,0],[-5,4],[1,5],[2,4],[3,2],[3,1],[-1,4],[0,2],[-1,2],[20,23],[5,10],[-15,-5],[-5,2],[-6,9],[-39,26],[0,4],[12,8],[41,8],[0,4],[-22,4],[-15,-5],[-2,-6],[-13,-5],[-4,0],[-2,6],[0,9],[3,8],[5,12],[9,9],[80,21],[-6,6],[3,7],[29,24],[44,22],[9,10],[0,4],[-6,-4],[-22,-4],[-40,-20],[-36,-37],[-12,-6],[-17,-4],[-15,3],[-6,15],[4,9],[6,-3],[7,-5],[4,-1],[1,10],[-2,10],[0,8],[9,1],[0,4],[-5,3],[-5,5],[1,11],[-5,5],[-5,5],[2,5],[5,2],[7,0],[6,1],[3,7],[-16,8],[-5,1],[-14,-8],[-5,-1],[-11,4],[-21,17],[-10,4],[10,12],[11,5],[38,-2],[6,-3],[19,-12],[7,-1],[6,5],[-23,20],[8,7],[66,14],[17,-8],[8,-1],[14,13],[28,0],[15,9],[40,35],[8,2],[16,-8],[8,-2],[20,0],[3,-2],[6,-8],[4,-3],[4,1],[4,3],[3,5],[3,6],[4,3],[11,-1],[5,0],[24,21],[8,3],[18,-2],[9,-5],[4,-11],[0,-14],[1,-6],[1,-7],[2,-3],[4,-3],[2,-3],[-2,-6],[0,-4],[5,6],[-1,8],[-4,9],[-2,7],[0,11],[2,8],[3,6],[4,5],[-5,8],[-6,2],[-7,0],[-6,2],[1,2],[3,5],[1,2],[-13,6],[-76,-31],[-25,-2],[-8,-6],[3,13],[3,8],[19,32],[5,6],[7,6],[1,11],[7,11],[16,15],[-8,5],[-9,-2],[-8,-8],[-17,-28],[-6,-7],[-16,-11],[-2,-2],[-3,-5],[-2,-6],[-2,-4],[-8,-2],[-8,-6],[-4,-2],[-14,1],[-5,-1],[-8,-6],[-13,-18],[-87,-28],[-87,-29],[-2,1],[-4,6],[-3,2],[-26,0],[2,4],[-7,3],[-7,1],[-7,3],[-4,8],[5,4],[14,17],[5,3],[11,1],[17,-2],[19,-12],[10,-2],[-7,9],[-21,17],[-10,5],[-10,2],[-6,-3],[-5,-7],[-29,-19],[-5,0],[-4,6],[2,14],[-4,3],[-15,-3],[10,14],[19,6],[69,0],[3,-2],[9,-9],[5,-8],[5,-3],[19,-2],[37,17],[3,4],[11,14],[4,1],[16,0],[4,-1],[8,-9],[4,-2],[2,2],[6,9],[3,1],[5,1],[13,8],[0,4],[-13,4],[-29,-5],[-13,13],[5,2],[5,5],[6,11],[2,2],[4,3],[1,1],[1,5],[1,2],[0,2],[0,4],[0,2],[-2,4],[0,4],[1,3],[6,3],[2,2],[5,13],[4,6],[3,3],[22,10],[12,0],[6,-12],[6,-6],[30,-11],[10,3],[-5,6],[-8,4],[-14,2],[-3,4],[-1,8],[0,9],[-2,7],[12,-10],[38,-18],[3,0],[2,1],[3,0],[7,-5],[12,0],[15,-5],[7,1],[0,8],[4,3],[13,-3],[3,1],[4,2],[2,1],[1,2],[0,3],[0,4],[0,3],[3,1],[8,2],[5,6],[2,0],[1,1],[0,4],[-1,3],[-2,1],[-3,2],[-2,0],[1,3],[1,4],[0,2],[-8,-2],[-6,-4],[-16,-13],[-13,-6],[-8,-7],[-4,-1],[-9,1],[-55,24],[-8,8],[0,4],[7,3],[21,13],[17,7],[9,6],[5,12],[-9,-7],[-29,-6],[-17,-7],[-9,2],[-5,13],[4,3],[6,7],[5,8],[2,7],[-17,-6],[-9,0],[-8,6],[2,4],[-11,3],[-26,-12],[-11,13],[8,7],[14,18],[9,3],[19,-1],[15,-7],[21,-4],[4,2],[10,10],[4,3],[5,4],[4,3],[7,-6],[4,0],[3,2],[3,3],[-8,5],[-7,2],[-24,-5],[-6,2],[-14,7],[0,4],[50,13],[5,-2],[10,-8],[5,-3],[20,-4],[9,-6],[8,-12],[4,-9],[7,-34],[3,-11],[15,-35],[6,-10],[36,-21],[20,-18],[8,-3],[8,-6],[8,-2],[4,-2],[39,-30],[15,-8],[17,5],[2,0],[-3,9],[-8,7],[-9,6],[-7,6],[0,4],[0,15],[-12,7],[-25,2],[-9,13],[-10,10],[-3,2],[-7,2],[-24,14],[-10,7],[-6,6],[-2,9],[-1,7],[-3,8],[-7,19],[-2,6],[-1,7],[0,8],[2,10],[4,5],[4,3],[21,8],[4,4],[0,8],[-8,4],[-15,3],[-6,-2],[-10,-6],[-5,0],[-5,1],[-5,4],[-8,10],[4,13],[1,4],[3,4],[5,4],[5,2],[4,4],[3,6],[-4,8],[4,7],[36,30],[-4,5],[-8,-5],[-9,-8],[-7,-4],[-17,-3],[-10,-6],[-4,-9],[-3,-10],[-7,-13],[-8,-11],[-5,-5],[-5,0],[-2,2],[-2,3],[-3,5],[-3,4],[-2,-1],[-3,-3],[-4,-2],[-44,5],[-6,3],[-4,7],[-3,10],[-4,22],[-2,9],[-4,9],[-12,13],[-5,9],[0,10],[-1,3],[-1,6],[-2,3],[2,5],[-1,4],[-7,8],[4,6],[2,6],[1,7],[-3,5],[-6,4],[-7,0],[-7,2],[-4,10],[0,6],[0,7],[-1,9],[-1,7],[-10,20],[-2,4],[3,7],[24,18],[11,12],[4,8],[-3,2],[-3,0],[-7,-2],[-4,-7],[-36,-25],[-2,-1],[-2,3],[-1,4],[-1,4],[-1,2],[-3,2],[-4,6],[-5,10],[-1,6],[-3,4],[-4,0],[-2,-4],[0,-3],[1,-4],[1,-4],[1,-1],[2,-2],[0,-3],[-1,-4],[0,-3],[4,-14],[4,-12],[7,-8],[8,-3],[-2,-7],[-4,-2],[-9,-3],[0,-4],[12,-4],[5,-4],[2,-10],[0,-5],[-2,-10],[0,-11],[-2,-10],[0,-5],[6,-3],[10,5],[19,10],[11,-6],[-4,-11],[5,-18],[-5,-7],[3,-3],[2,-4],[3,-4],[1,-6],[-4,-7],[-15,-13],[8,-4],[11,-2],[11,-5],[5,-11],[-2,-7],[-4,-4],[-5,-2],[-4,-3],[-2,-10],[3,-4],[10,-1],[7,-6],[-2,-7],[-6,-5],[-8,-2],[-2,3],[-1,5],[-1,6],[-3,2],[-4,-2],[-41,-44],[-8,-7],[-43,-11],[-3,-8],[4,-3],[8,2],[4,-2],[2,-4],[0,-4],[-3,-2],[-34,-8],[-15,4],[-5,0],[10,28],[3,24],[6,7],[7,4],[4,6],[4,11],[5,-1],[7,-2],[7,4],[-2,1],[-6,3],[1,2],[2,4],[1,2],[-7,4],[-10,3],[-10,0],[-32,-19],[-7,-8],[-4,-9],[-5,-14],[-3,-15],[-2,-13],[-2,-5],[-4,-1],[-5,0],[-3,-2],[-10,-16],[-2,-6],[-4,-39],[-1,-6],[-1,-2],[-2,-6],[-2,-6],[-7,-5],[-2,-5],[-2,-7],[-2,-6],[-20,-20],[-7,-23],[-8,-7],[-17,-6],[-5,-5],[-1,-4],[4,-3],[6,0],[0,-4],[-3,-6],[0,-7],[3,-7],[4,-5],[-12,-5],[-5,-4],[-4,-7],[-7,-13],[-3,-6],[-5,-6],[-12,-8],[-6,-3],[-7,-1],[-15,2],[-4,-2],[4,-3],[2,0],[-3,-2],[-8,-3],[-9,0],[-8,-4],[-6,-3],[-6,-1],[-3,7],[0,8],[-4,8],[-2,4],[-3,-9],[-7,0],[-3,12],[-3,8],[4,11],[6,11],[1,11],[-1,9],[-10,4],[2,9],[5,7],[4,10],[4,8],[-8,9],[-3,8],[-3,8],[-6,6],[-3,9],[-1,8],[6,4],[8,-6],[10,-2],[2,8],[4,4],[4,3],[8,3],[1,3],[-2,4],[-12,-4],[-8,1],[0,6],[0,3],[3,7],[-9,-3],[-4,8],[4,8],[13,6],[10,5],[4,3],[4,6],[2,5],[0,2],[-1,8],[-3,-5],[-8,-10],[-8,2],[-4,-10],[-9,4],[-3,9],[-4,8],[-1,11],[2,4],[19,-13],[12,2],[2,7],[-4,4],[-15,5],[-3,3],[-1,5],[-1,7],[-1,4],[-3,3],[-3,0],[6,21],[10,11],[11,4],[11,1],[7,-2],[4,0],[3,4],[8,23],[1,2],[4,1],[3,-1],[2,-1],[2,1],[2,5],[-6,0],[4,11],[6,7],[38,19],[3,1],[8,-2],[4,1],[9,5],[3,3],[2,4],[1,4],[2,3],[4,1],[3,-3],[4,-11],[4,-2],[6,1],[4,2],[4,6],[5,9],[5,8],[12,12],[3,9],[3,8],[8,7],[8,5],[12,4],[7,6],[8,8],[5,8],[-8,7],[-6,-5],[-7,-9],[-9,-5],[-14,6],[-5,-2],[-3,-5],[2,-2],[10,-5],[-19,-9],[-5,-5],[-4,-6],[-26,-25],[-22,-10],[-11,-2],[3,2],[2,4],[2,4],[2,6],[-5,2],[1,3],[5,10],[2,4],[2,11],[1,3],[3,1],[13,-1],[3,1],[3,3],[4,8],[-20,8],[-10,10],[-4,2],[-4,-1],[-4,-3],[-2,-5],[-1,-9],[-2,-6],[-2,-3],[-2,-4],[2,-9],[-9,-3],[-8,-5],[-8,-9],[-6,-11],[4,-1],[4,0],[4,-1],[2,-5],[1,-7],[6,-8],[3,-7],[-3,-2],[-6,-2],[-3,0],[0,4],[4,4],[-9,10],[-6,2],[-4,-2],[-5,-7],[1,-6],[1,-6],[-1,-7],[-3,-4],[-17,-12],[-2,-1],[-7,-3],[-11,0],[-15,-8],[-6,-1],[-5,2],[2,5],[9,10],[16,6],[5,4],[1,2],[4,8],[8,12],[-5,4],[-12,7],[-5,2],[-3,3],[-3,8],[-4,3],[-4,-6],[8,-19],[-10,-19],[-29,-27],[-3,3],[-5,3],[-3,5],[2,8],[10,5],[7,12],[-17,12],[-2,6],[2,10],[4,5],[11,3],[10,9],[6,3],[7,0],[4,2],[6,6],[6,6],[3,7],[-6,4],[-19,0],[5,8],[2,8],[-2,4],[-7,0],[-10,-8],[-4,-2],[-1,6],[-6,6],[-2,2],[4,7],[4,6],[-22,8],[-10,9],[1,15],[6,5],[6,1],[12,-2],[3,-1],[3,-3],[3,-1],[3,3],[2,3],[3,3],[7,4],[0,4],[-5,0],[-8,-4],[-4,0],[-4,3],[-2,4],[-2,9],[-2,5],[-2,2],[0,4],[1,5],[2,4],[11,9],[25,47],[17,22],[-6,0],[-9,-7],[-8,-10],[-10,-19],[-14,-19],[-5,-2],[-5,-5],[-6,-4],[-6,-2],[-6,-1],[-6,2],[-4,4],[0,4],[5,2],[8,7],[11,16],[7,15],[-5,7],[6,9],[0,8],[-4,4],[-6,-1],[-3,-3],[-7,-10],[-3,-3],[-9,-6],[-3,-3],[-3,7],[-2,8],[1,9],[2,9],[-6,-4],[-3,-11],[-2,-13],[-3,-10],[-13,-31],[-5,-8],[-4,-3],[-2,-1],[-6,0],[-9,-7],[-4,-2],[1,7],[5,9],[10,13],[5,8],[-6,0],[2,4],[3,2],[2,2],[3,0],[0,5],[-6,4],[0,3],[1,1],[3,4],[-5,4],[-5,-3],[-4,-4],[-3,-2],[-4,3],[-11,14],[0,4],[5,9],[8,8],[8,5],[7,2],[8,4],[15,17],[9,4],[17,3],[16,9],[22,23],[32,16],[15,2],[4,2],[4,7],[2,3],[7,6],[2,2],[4,1],[9,7],[4,4],[1,4],[1,8],[1,4],[8,6],[19,-3],[8,5],[-7,1],[-11,9],[-6,2],[-15,-3],[-7,1],[-6,10],[8,11],[31,20],[7,2],[6,9],[8,6],[54,21],[101,12],[10,-4],[6,-1],[13,9],[12,-1],[12,-5],[8,-5],[30,-28],[17,-11],[18,-2],[40,8],[-2,3],[-1,3],[-2,3],[-1,3],[-36,-4],[-17,-7],[-8,2],[-5,13],[9,5],[18,-2],[9,2],[0,3],[-2,0],[-6,4],[1,6],[0,2],[1,1],[-24,3],[-13,-3],[-7,-9],[-6,7],[-7,8],[-7,7],[-8,3],[-28,-5],[-58,12],[-53,-13],[-131,-65],[-7,-1],[-8,10],[-6,-3],[12,-25],[4,-15],[-1,-17],[5,-4],[-4,-8],[-17,-20],[-16,-5],[-5,-6],[-6,-3],[-25,1],[-4,-3],[-8,-17],[-3,-4],[-11,-8],[-6,-3],[-7,-1],[-14,1],[-5,-2],[-23,-25],[-5,-2],[-4,3],[-12,21],[4,6],[12,14],[-2,4],[13,21],[2,5],[-3,4],[-7,-5],[-8,-8],[-9,-13],[-6,-5],[-6,-1],[-5,2],[-3,10],[2,4],[11,6],[-9,9],[-3,4],[10,17],[14,18],[12,21],[2,29],[-8,-11],[-7,-13],[-3,-12],[-3,-6],[-3,-3],[-4,-2],[-4,-4],[-4,-6],[-3,-6],[-1,-4],[0,-4],[-1,-2],[-3,-3],[-5,-3],[-2,-2],[-3,-6],[-2,-7],[-3,-5],[-4,-3],[-5,1],[-1,4],[-1,5],[-3,3],[-9,1],[-7,6],[-2,10],[4,15],[5,-1],[10,6],[19,20],[-9,-2],[-20,-13],[-9,2],[7,9],[35,25],[19,7],[9,8],[-7,4],[-9,-3],[-23,-18],[-16,-7],[-7,0],[4,20],[10,11],[22,13],[-10,4],[-4,0],[4,20],[-1,22],[-3,10],[-7,-15],[-11,-41],[-8,-17],[-11,-7],[-3,2],[-8,8],[-3,2],[-3,-1],[-7,-5],[-25,-10],[-52,6],[-14,6],[25,25],[15,6],[21,3],[8,4],[7,6],[11,14],[14,6],[6,5],[-7,4],[-3,0],[-4,0],[-3,-2],[-5,-5],[-22,-11],[-15,-14],[-12,-5],[-36,-4],[-6,2],[-1,5],[3,2],[10,0],[2,1],[5,6],[4,2],[4,6],[7,2],[7,5],[21,9],[5,5],[-10,-3],[-4,-1],[-5,4],[3,5],[7,17],[5,6],[12,3],[17,10],[11,4],[6,-2],[5,-4],[5,-2],[5,4],[-2,4],[-1,2],[-2,2],[5,8],[12,8],[21,8],[12,-4],[24,-20],[44,-12],[13,0],[6,-2],[5,-7],[1,-3],[0,-6],[1,-3],[1,-2],[3,-2],[3,1],[1,5],[2,8],[6,5],[11,6],[0,4],[-12,6],[-1,11],[8,13],[10,10],[61,30],[13,0],[13,-5],[12,-8],[19,-23],[9,-7],[8,5],[-9,15],[-22,19],[-6,6],[-4,9],[8,11],[9,8],[19,10],[0,3],[-18,-3],[-81,-39],[-26,-4],[-8,-5],[-8,-9],[-13,-36],[-5,-5],[-56,0],[-8,2],[-7,8],[-9,15],[-1,6],[6,10],[15,11],[-12,9],[-4,0],[-32,-27],[-6,-2],[-7,5],[-11,13],[-7,3],[1,-9],[6,-20],[-8,0],[-16,-13],[-22,-10],[-6,-7],[-11,-2],[-41,-19],[-8,0],[-7,2],[-7,4],[4,11],[6,2],[15,-4],[0,2],[-1,1],[-1,1],[-3,4],[-29,8],[0,4],[37,20],[10,8],[61,33],[-13,9],[-15,-9],[-17,-13],[-25,-11],[-37,-25],[2,4],[0,4],[-13,1],[-4,-1],[-3,-3],[-6,-8],[-3,-1],[-9,2],[-10,6],[-8,9],[-5,12],[7,1],[5,4],[5,6],[6,4],[7,2],[19,-5],[53,12],[-14,5],[-44,-9],[0,4],[2,2],[1,2],[3,4],[-37,-8],[-11,8],[23,25],[77,44],[30,12],[72,53],[6,18],[1,12],[4,7],[5,4],[55,34],[34,31],[33,5],[52,23],[15,-2],[6,2],[4,8],[-5,0],[-6,2],[-6,5],[-2,5],[2,8],[5,8],[8,9],[2,10],[9,14],[18,22],[10,7],[32,11],[30,18],[43,1],[4,2],[5,8],[-7,0],[-7,2],[-7,4],[-6,6],[18,15],[6,7],[5,4],[15,6],[2,4],[21,25],[7,4],[21,0],[17,-8],[6,0],[-6,9],[-7,7],[9,9],[17,-4],[45,-26],[48,6],[12,6],[6,1],[8,-2],[16,-8],[57,-3],[8,9],[-73,8],[-23,10],[-6,-4],[-9,-10],[-13,0],[-64,32],[13,18],[31,14],[19,14],[13,3],[11,10],[4,2],[10,1],[19,-7],[24,-1],[4,0],[49,-1],[47,-16],[20,0],[17,8],[-8,6],[-21,3],[-27,-3],[-6,2],[-19,11],[-17,1],[-23,-4],[-10,-5],[-3,0],[-3,0],[-5,1],[-17,9],[-17,-1],[0,4],[5,3],[10,7],[5,2],[20,0],[52,13],[5,4],[-10,5],[-76,-22],[-20,-13],[-13,-4],[-9,-6],[-4,-1],[-16,0],[-22,-5],[-56,-37],[-9,-2],[-13,0],[-3,-2],[-7,-10],[-30,-13],[-21,-21],[-18,-5],[-9,-6],[-61,-64],[-72,-36],[-15,-22],[-20,-46],[-12,-18],[-38,-21],[-6,0],[-117,-79],[-46,-59],[-33,-29],[-97,-52],[-27,-5],[-41,13],[-14,-1],[34,17],[12,0],[0,4],[-50,-12],[7,7],[9,12],[6,12],[1,9],[0,4],[14,12],[16,6],[41,4],[57,23],[-25,-4],[-22,5],[-7,-1],[-17,-11],[-28,-5],[-6,-4],[0,4],[-8,-5],[-11,-4],[-10,-1],[-6,4],[-9,14],[0,6],[3,4],[2,3],[1,3],[-4,11],[-11,4],[-2,11],[0,7],[2,4],[1,3],[2,4],[4,16],[2,5],[6,-4],[5,4],[9,18],[5,8],[6,5],[13,6],[0,4],[-8,0],[-11,-8],[-10,-12],[-11,-18],[-2,5],[0,10],[0,4],[2,7],[11,7],[4,5],[-13,12],[3,4],[29,12],[34,0],[3,2],[3,3],[2,3],[12,-8],[11,-3],[21,-1],[0,-4],[-40,4],[7,-7],[9,-4],[27,-6],[8,1],[4,3],[8,7],[49,19],[33,4],[5,-2],[8,-6],[91,-9],[4,2],[4,8],[4,2],[0,5],[-12,5],[-44,-5],[-30,8],[-22,-1],[-5,4],[0,4],[-46,0],[-9,-2],[-19,-11],[-9,-2],[-29,1],[-12,5],[-39,6],[-6,8],[4,1],[8,6],[5,1],[7,0],[3,3],[1,9],[-5,0],[-2,-1],[-2,-3],[-7,4],[-19,-8],[-8,4],[3,3],[12,5],[0,4],[-2,1],[-6,3],[9,4],[39,29],[7,2],[7,0],[14,-6],[25,1],[5,-4],[6,-6],[62,10],[12,9],[6,2],[28,-9],[9,1],[-1,2],[-1,2],[4,3],[4,1],[9,0],[-3,3],[-2,5],[1,6],[2,6],[-23,-4],[-6,1],[-17,7],[-10,-1],[-54,-23],[-6,1],[-10,5],[-6,2],[-15,-2],[-5,2],[-19,16],[4,2],[13,-6],[18,3],[9,-2],[4,1],[7,6],[5,1],[48,1],[15,9],[4,2],[10,-1],[4,2],[13,13],[-1,6],[-4,10],[-4,3],[-4,-2],[-8,-7],[-19,-5],[-5,1],[-10,6],[-4,1],[-20,-4],[-44,-29],[-4,3],[1,7],[5,6],[5,3],[4,2],[0,4],[-3,1],[-7,4],[15,16],[9,6],[8,2],[18,-11],[9,-2],[0,13],[108,-2],[41,-22],[12,-2],[12,5],[6,13],[-27,-3],[-7,3],[-12,14],[-4,3],[-10,0],[-5,3],[6,3],[37,6],[5,4],[-1,0],[-2,2],[-1,1],[1,3],[3,10],[-7,-2],[-13,-5],[-31,-3],[-6,5],[2,5],[1,5],[-2,4],[-3,2],[7,9],[8,8],[0,4],[-11,-1],[-8,-9],[-13,-22],[-10,-9],[-55,-12],[-7,2],[-16,10],[-51,0],[1,6],[0,3],[-9,3],[-73,-7],[-5,-3],[-4,-1],[-17,3],[-54,-4],[-11,4],[2,6],[2,3],[6,3],[-6,4],[-28,6],[-10,9],[-5,2],[-1,2],[0,4],[1,4],[2,2],[16,0],[35,-8],[59,8],[30,-8],[14,2],[13,6],[-9,6],[-86,6],[-4,-2],[-8,-8],[-4,-2],[-5,1],[-15,11],[-24,2],[-11,5],[0,14],[-4,8],[6,5],[19,3],[42,-4],[44,15],[7,5],[2,5],[-9,-1],[-34,-12],[-115,-8],[6,9],[2,3],[-2,0],[-6,4],[8,6],[5,2],[4,0],[-5,4],[2,3],[2,3],[3,2],[2,0],[-7,4],[-2,0],[5,5],[3,0],[4,-1],[5,1],[1,2],[1,4],[1,4],[1,2],[2,1],[36,10],[83,2],[8,7],[-6,0],[-13,4],[-23,-3],[-8,1],[-7,6],[8,7],[11,5],[10,2],[18,-8],[10,2],[19,8],[67,4],[5,2],[9,8],[5,2],[21,-3],[12,6],[9,3],[8,5],[68,18],[6,-1],[11,-6],[6,-1],[5,1],[3,3],[2,4],[3,4],[9,6],[42,9],[21,9],[12,0],[28,-17],[137,-7],[18,-9],[8,-8],[6,-9],[6,-16],[1,-5],[1,-5],[10,-9],[20,-39],[7,-9],[10,-6],[18,-7],[10,0],[38,11],[18,11],[13,3],[18,9],[44,6],[70,-11],[19,8],[1,3],[-1,0],[-1,0],[0,1],[1,0],[-5,3],[-4,0],[-10,-3],[-4,1],[-12,7],[-10,10],[-4,2],[-85,-17],[-78,-35],[-20,3],[-8,6],[-7,8],[-20,31],[-16,15],[-6,14],[-8,26],[-6,10],[-8,4],[-5,1],[-6,2],[-4,5],[1,8],[4,4],[66,8],[21,13],[11,1],[5,3],[5,8],[-119,-20],[-119,-20],[-11,3],[-28,22],[-10,3],[-78,-18],[-15,-9],[-8,-2],[-17,0],[-12,-7],[-69,-19],[-69,-20],[-33,9],[3,9],[10,11],[4,9],[-5,-1],[-17,-9],[-13,-12],[-13,-16],[-11,-4],[-35,0],[-24,-11],[-22,-16],[-26,-13],[-11,1],[0,4],[10,8],[-6,4],[-16,-4],[-7,4],[2,3],[2,2],[3,2],[3,1],[0,4],[-6,1],[-6,3],[2,9],[4,4],[1,5],[-4,16],[2,3],[8,4],[-6,11],[2,10],[8,9],[8,6],[-2,2],[-6,7],[5,7],[6,7],[7,4],[5,2],[3,2],[4,7],[3,3],[2,1],[6,-1],[13,15],[14,7],[28,6],[19,11],[6,2],[2,1],[8,10],[11,8],[51,17],[7,4],[-10,5],[-19,-13],[-9,4],[33,26],[24,5],[12,6],[22,20],[-14,-1],[-8,-3],[-10,-11],[-9,-3],[-8,-1],[-5,3],[7,12],[9,9],[19,11],[22,8],[22,0],[6,-2],[10,-8],[5,-2],[41,7],[10,4],[8,9],[-61,-6],[-21,6],[11,5],[41,1],[24,11],[41,0],[8,-4],[16,-13],[21,-6],[33,-18],[2,-1],[7,0],[2,1],[0,2],[0,4],[0,4],[2,3],[5,-1],[11,-10],[10,-4],[12,-8],[8,-3],[2,-1],[5,-4],[2,-4],[-1,-4],[-1,-3],[0,-4],[7,-5],[30,-2],[62,16],[36,-1],[6,5],[-7,3],[-2,1],[0,4],[18,-1],[9,-2],[17,-14],[57,-26],[9,-8],[5,-2],[11,1],[4,-3],[3,-5],[13,-9],[24,-25],[7,-3],[5,-1],[5,-3],[8,-7],[5,-2],[17,0],[15,-7],[5,-1],[5,1],[11,6],[5,1],[72,-10],[8,-6],[1,4],[-3,4],[8,7],[20,7],[9,7],[-7,-1],[-13,-6],[-39,-6],[-7,2],[-22,11],[-46,-4],[-53,21],[-23,26],[-13,5],[0,4],[7,2],[12,8],[56,16],[45,28],[28,9],[11,12],[6,4],[8,0],[15,-6],[26,-3],[7,-5],[-2,-2],[-2,-3],[-2,-7],[24,-6],[12,1],[10,9],[-10,5],[-19,7],[-19,12],[-50,2],[-9,-2],[-35,-22],[-17,-5],[-24,-17],[-19,-7],[-19,-1],[-36,-12],[-42,-5],[0,5],[8,1],[15,11],[7,4],[-7,5],[-8,0],[-22,-7],[-19,2],[-5,2],[-46,30],[-9,0],[1,6],[1,4],[2,2],[3,0],[4,-1],[2,-2],[2,-3],[2,-1],[7,-1],[18,4],[29,-6],[17,2],[9,12],[-4,0],[0,4],[57,15],[11,11],[12,5],[10,12],[6,2],[62,-1],[18,-11],[6,0],[7,2],[5,4],[1,6],[5,12],[-11,-3],[-15,1],[-15,4],[-12,6],[2,14],[-4,8],[-8,3],[-7,-4],[2,-2],[4,-5],[1,-1],[-9,-4],[-20,6],[-7,-2],[-5,5],[-31,13],[-9,1],[-9,-5],[-5,-10],[6,0],[0,-4],[-18,-8],[-3,-5],[4,-5],[7,1],[12,4],[10,9],[4,1],[7,-1],[17,-13],[6,0],[-15,-6],[-5,-6],[3,-4],[-37,-3],[-7,-9],[11,0],[-9,-7],[-10,1],[-10,5],[-7,1],[-4,-4],[-5,-12],[-4,-4],[-5,-1],[-15,5],[-7,-2],[-12,-5],[-7,-1],[-5,1],[-14,11],[0,4],[12,8],[5,0],[-7,5],[-7,3],[-6,5],[-3,13],[-4,10],[-21,5],[-5,8],[8,0],[32,10],[41,3],[3,-3],[3,-4],[7,-8],[3,-2],[7,0],[5,4],[0,8],[-5,8],[2,1],[4,3],[-21,12],[2,7],[0,7],[-2,4],[-4,3],[6,3],[-57,-7],[-7,-7],[-5,-8],[-7,-7],[-8,-5],[-6,-2],[-8,1],[-3,2],[-9,7],[-10,2],[-6,4],[-3,-2],[-13,-3],[-6,-3],[3,-9],[15,-11],[6,-6],[4,-14],[5,-3],[11,-1],[5,-2],[16,-11],[4,-8],[-7,-12],[-11,-12],[-3,-8],[5,-9],[0,-4],[-12,1],[-6,-2],[-8,-9],[-6,-2],[-6,1],[-4,3],[8,3],[7,6],[2,5],[-7,3],[-5,-2],[-11,-7],[-4,1],[-4,2],[-4,0],[-4,-5],[-5,-8],[-7,-8],[-7,-6],[-6,-4],[-9,-2],[-10,1],[-9,5],[-5,9],[6,0],[0,3],[-7,0],[-4,1],[-3,3],[9,11],[9,5],[39,-1],[4,4],[0,6],[-4,3],[-7,1],[-6,3],[-11,1],[-21,-5],[-4,-3],[-3,-4],[-4,-7],[-4,-3],[-103,10],[-9,6],[-10,18],[-9,4],[-3,3],[3,6],[4,6],[6,8],[16,6],[4,3],[8,7],[10,5],[3,1],[3,-1],[0,-3],[-2,-3],[-3,-1],[65,4],[4,2],[10,8],[12,4],[18,12],[9,2],[18,0],[10,2],[8,6],[-1,4],[2,3],[7,6],[-10,5],[-63,-22],[-23,-16],[-9,-3],[-71,-2],[-9,-2],[-7,-7],[-3,-3],[-33,-9],[-5,-2],[-2,-5],[-6,-11],[-3,-5],[-4,-4],[-5,-3],[-20,-4],[-20,-11],[-10,-2],[-45,4],[-4,-2],[-6,-9],[-4,-1],[-3,-1],[-4,-3],[-3,0],[-9,0],[-17,-7],[-16,-13],[-75,-83],[-68,-46],[-25,-9],[-3,0],[-3,3],[4,7],[-2,2],[-6,0],[-6,5],[-1,4],[5,15],[-4,1],[-4,4],[0,5],[2,6],[-6,7],[5,6],[41,22],[8,2],[0,4],[-38,-9],[30,16],[10,9],[-2,2],[-2,2],[3,4],[3,6],[1,5],[-2,2],[-1,8],[-4,5],[-1,5],[5,6],[-5,-1],[-5,2],[-5,4],[-9,11],[-5,3],[-13,1],[4,9],[26,11],[11,10],[4,2],[4,0],[4,-3],[4,0],[4,3],[-2,2],[0,2],[3,0],[3,-2],[2,-5],[1,-7],[-1,-8],[-3,-3],[-9,1],[0,-4],[7,-3],[14,6],[7,1],[-2,-4],[-4,-3],[-3,-1],[-4,0],[0,-4],[48,5],[9,11],[-39,2],[-12,6],[0,4],[3,5],[12,8],[-7,4],[-16,0],[-7,4],[6,8],[8,3],[15,1],[2,-1],[9,-7],[8,0],[3,-2],[2,-6],[-2,-3],[-4,-3],[-3,-4],[0,-5],[3,-3],[7,-3],[3,-2],[5,-1],[21,3],[0,4],[-16,-1],[-8,2],[-4,7],[38,20],[8,1],[14,-6],[5,2],[-10,9],[-10,6],[-11,1],[-11,-4],[-13,-8],[-3,0],[-1,1],[-1,3],[0,3],[-2,1],[-6,1],[-2,1],[-3,2],[4,2],[9,1],[3,3],[4,5],[5,2],[9,-1],[-12,6],[-5,3],[-3,7],[4,2],[14,2],[11,-4],[24,9],[51,3],[-7,5],[-16,7],[-7,1],[-3,-2],[-3,-5],[-4,-1],[-63,0],[2,5],[1,5],[0,5],[-3,5],[9,2],[14,12],[38,10],[87,-57],[27,-4],[2,-1],[0,-2],[0,-3],[1,-2],[9,-2],[13,6],[78,-8],[11,-7],[4,-1],[6,1],[13,6],[6,1],[5,3],[11,18],[0,3],[-7,0],[-8,-3],[-14,-11],[-10,-4],[-77,11],[-77,10],[-20,11],[-50,42],[-36,20],[-8,10],[5,7],[13,8],[5,5],[-4,7],[-5,4],[-5,0],[-5,-3],[-1,-10],[-7,-4],[-17,-2],[-8,-8],[-4,-2],[-4,4],[0,5],[3,5],[3,5],[3,3],[-6,2],[-12,-8],[-6,-2],[-30,0],[42,20],[43,8],[11,-1],[10,-4],[20,-15],[9,-4],[22,-2],[7,-6],[5,1],[9,-5],[16,-13],[9,-4],[55,-9],[23,-16],[9,-1],[7,6],[-7,1],[-27,14],[-4,4],[-1,5],[5,5],[-7,4],[-23,-4],[-5,2],[-1,3],[1,4],[1,3],[-5,2],[-10,2],[-4,4],[2,3],[1,1],[0,4],[-6,3],[-11,-6],[-7,-1],[2,0],[-7,-1],[-1,6],[2,8],[5,3],[14,4],[4,-1],[9,-6],[4,-1],[22,2],[8,-2],[23,-15],[8,-1],[1,-4],[14,-4],[18,-11],[17,-5],[18,-16],[10,-4],[21,0],[11,-3],[20,-16],[12,-4],[99,7],[100,7],[13,-3],[7,-4],[10,-13],[13,-5],[18,-11],[26,-10],[12,-9],[41,-12],[6,-4],[2,-4],[18,-18],[4,-2],[10,-2],[-1,4],[3,3],[4,1],[8,0],[3,1],[5,6],[3,1],[68,-13],[15,5],[9,16],[-42,-8],[-4,2],[-8,5],[-34,5],[-11,8],[-4,1],[-8,-1],[-4,1],[-3,4],[2,2],[2,4],[2,4],[1,6],[-12,3],[-25,-7],[-12,4],[7,4],[4,5],[1,5],[-7,6],[-8,2],[-17,-4],[-9,2],[-10,7],[-18,2],[-4,3],[-3,3],[-4,6],[-3,3],[-4,3],[-10,2],[-5,3],[7,6],[24,10],[0,5],[-10,-2],[-19,-9],[-10,-2],[-7,1],[-3,3],[-1,7],[-2,4],[-4,2],[-9,0],[-4,2],[-9,11],[-4,3],[-4,-2],[-5,-4],[-4,-2],[-10,11],[-15,5],[-5,4],[-9,11],[-5,1],[0,4],[122,-16],[8,2],[3,3],[-2,5],[-13,12],[-7,2],[-7,1],[-15,-5],[-7,2],[-13,17],[-7,2],[-40,-1],[-7,5],[5,6],[6,2],[33,3],[4,3],[5,5],[10,4],[2,5],[0,3],[0,6],[0,3],[1,4],[6,12],[-2,3],[-2,2],[-2,4],[-1,4],[5,0],[-4,2],[-5,2],[-4,3],[-2,7],[2,7],[3,4],[46,19],[16,2],[4,2],[13,17],[7,4],[8,-4],[-6,-3],[-5,-5],[5,-1],[9,4],[8,6],[4,7],[-21,7],[-106,-55],[-25,3],[-30,-8],[-9,1],[-22,12],[-8,1],[-7,-2],[-15,-8],[8,-5],[16,-5],[14,-18],[8,-4],[47,4],[10,-6],[12,-16],[4,-9],[-7,-6],[3,-4],[3,0],[-25,-8],[-93,-5],[-9,-6],[-5,-1],[-9,0],[-5,-1],[-8,-10],[-4,0],[-10,3],[-63,-8],[-13,-8],[-10,-3],[-25,2],[-15,-13],[-45,-10],[-7,2],[-6,5],[-4,0],[13,14],[4,7],[-6,5],[-16,5],[-7,4],[-4,7],[3,5],[6,5],[5,5],[-9,3],[-27,-11],[-32,4],[-11,-4],[2,0],[13,-7],[20,-2],[7,-4],[5,-7],[-11,-11],[-13,-5],[-14,0],[-12,4],[-2,1],[-3,5],[-2,2],[-4,0],[-7,-4],[-3,0],[-5,3],[2,5],[11,8],[-12,-1],[-6,1],[-5,4],[5,9],[8,7],[38,16],[12,1],[9,-7],[3,2],[3,3],[4,1],[-1,3],[-1,4],[0,2],[9,-1],[4,2],[0,6],[1,0],[2,0],[1,0],[0,4],[-29,-8],[-27,0],[-12,-12],[-67,-17],[-18,1],[-9,4],[-9,7],[-5,0],[-10,-10],[-14,-2],[-9,-10],[-4,2],[-3,6],[-3,7],[7,-3],[2,2],[2,5],[-12,11],[-3,6],[26,11],[14,1],[12,-5],[16,-12],[9,-5],[7,1],[17,16],[18,3],[4,4],[4,5],[6,4],[12,5],[19,0],[6,4],[-4,2],[-5,3],[-3,3],[2,5],[3,3],[3,1],[4,-1],[1,6],[16,0],[6,4],[4,5],[11,8],[21,5],[2,0],[3,-3],[2,-1],[1,2],[1,3],[0,3],[0,1],[24,-4],[7,4],[-16,16],[19,7],[6,1],[-7,5],[-9,0],[-35,-8],[-10,2],[-9,5],[7,6],[118,27],[3,-3],[2,-3],[2,-3],[3,-4],[3,-2],[3,-2],[4,0],[3,0],[-1,3],[0,1],[0,2],[-1,2],[42,18],[22,3],[20,-8],[-10,-6],[-32,-3],[0,-4],[14,0],[0,-4],[-4,0],[-3,-2],[-2,-2],[-3,-4],[7,-4],[19,-8],[6,2],[6,5],[5,4],[13,1],[33,-8],[19,1],[10,11],[0,7],[5,5],[7,2],[5,-2],[0,-4],[-9,-8],[0,-4],[13,6],[13,2],[11,-3],[5,2],[3,9],[-17,0],[0,4],[7,5],[9,4],[9,0],[8,-4],[-4,-5],[42,-4],[7,9],[-2,0],[-5,4],[15,11],[5,1],[0,-3],[0,-5],[-2,-5],[-3,-3],[11,0],[5,3],[0,6],[-2,7],[0,7],[2,6],[4,3],[4,6],[-5,12],[-14,23],[7,0],[7,-4],[16,-14],[7,-11],[3,-10],[2,-4],[3,-2],[9,-4],[5,0],[3,6],[-2,5],[-6,5],[-2,4],[3,6],[15,6],[5,5],[-27,-7],[-7,2],[1,3],[0,2],[1,1],[1,2],[-2,7],[-3,1],[-4,-1],[-4,2],[-2,3],[-6,17],[31,20],[27,4],[5,8],[0,8],[31,17],[-25,6],[-12,0],[-11,-6],[-12,-13],[-21,-13],[-20,-21],[-4,-2],[-23,-8],[-37,8],[-12,0],[3,8],[5,4],[5,2],[6,4],[3,6],[2,6],[3,5],[5,2],[-2,6],[-6,7],[-3,7],[10,7],[22,5],[9,10],[7,9],[15,14],[7,8],[-8,-2],[-11,-5],[-9,-8],[-3,-10],[-6,-4],[-16,0],[-8,-4],[0,1],[0,1],[-1,1],[-1,1],[0,4],[3,6],[3,5],[17,13],[4,5],[2,6],[-1,17],[-2,13],[-4,12],[-7,13],[4,2],[8,-1],[4,2],[-5,16],[-3,7],[-4,6],[13,4],[4,5],[-5,11],[80,-2],[12,-5],[1,-13],[-7,-7],[-37,-5],[-7,-17],[-5,-2],[-8,-1],[-5,-4],[19,-5],[6,0],[0,5],[-2,0],[0,4],[58,22],[19,-6],[-3,-10],[-1,-3],[5,-3],[4,3],[4,3],[4,-1],[13,-12],[4,-2],[-3,-11],[-1,-6],[1,-6],[3,-9],[0,-5],[0,-5],[0,-5],[3,-1],[16,-4],[7,-4],[8,-3],[3,-3],[2,-6],[0,-3],[2,-1],[5,-1],[7,1],[4,4],[0,6],[-6,7],[-2,5],[-1,5],[-1,6],[-1,3],[-4,3],[-4,-1],[-8,-2],[-7,0],[-4,1],[-4,3],[-1,4],[-2,10],[-2,2],[-1,2],[1,4],[3,6],[5,4],[6,2],[6,-1],[4,-3],[9,-15],[5,-3],[5,8],[-6,14],[6,13],[10,6],[9,-4],[3,-11],[-2,-12],[-5,-11],[-5,-7],[14,-15],[7,-2],[5,9],[-2,2],[-3,4],[-2,2],[4,9],[1,5],[-2,6],[7,-2],[3,0],[2,2],[0,4],[-10,20],[-3,5],[-10,5],[-46,-11],[-24,5],[-46,25],[-4,8],[10,8],[45,-8],[30,4],[19,-6],[5,0],[7,9],[4,3],[6,3],[16,4],[5,3],[6,12],[3,13],[-2,11],[-8,5],[-5,-2],[-4,-4],[-3,-6],[-4,-4],[-6,-3],[-17,-1],[2,0],[-7,0],[-12,3],[-6,1],[-12,-4],[-6,1],[-5,7],[6,10],[2,2],[-3,2],[-1,2],[-2,4],[3,3],[0,3],[-2,1],[-3,1],[3,9],[-1,7],[-2,6],[0,7],[5,6],[17,6],[7,8],[-18,5],[-16,-11],[-31,-31],[11,-5],[5,-6],[0,-7],[-3,-5],[-4,-4],[-7,-5],[0,-1],[0,-3],[-4,1],[-10,-1],[-5,4],[5,4],[0,4],[-12,-2],[-22,-18],[-18,-6],[-11,-8],[-5,-2],[-7,-1],[-25,4],[-2,0],[-2,3],[-2,3],[-2,3],[-17,4],[-6,3],[0,3],[10,10],[-2,2],[-3,4],[-1,2],[4,3],[3,0],[8,-3],[3,3],[4,11],[3,2],[20,2],[20,6],[-7,9],[-17,1],[-6,5],[-4,13],[5,5],[17,0],[-1,6],[-1,2],[7,1],[11,-8],[5,3],[-16,24],[-1,9],[4,6],[7,3],[2,7],[1,8],[-2,3],[-2,2],[-2,7],[30,8],[13,9],[7,1],[7,-4],[11,-9],[13,-8],[14,-5],[11,0],[0,4],[-3,3],[-2,4],[-2,6],[-2,7],[13,8],[14,4],[36,-5],[8,2],[16,11],[-7,5],[-31,-5],[-3,2],[-3,4],[-6,9],[-3,1],[-15,-3],[-8,-5],[-16,-15],[-9,-5],[-7,-4],[-13,0],[-14,2],[-9,6],[4,4],[4,1],[9,0],[-15,5],[-14,-9],[-13,-12],[-11,-5],[-6,5],[-2,10],[2,10],[6,4],[5,2],[6,6],[5,8],[-1,8],[0,9],[-4,8],[-5,7],[-5,8],[20,15],[23,-3],[75,-28],[4,4],[-4,8],[-7,8],[-3,8],[7,5],[-21,-6],[-6,1],[-17,14],[-8,3],[-32,-5],[-16,3],[-9,18],[9,11],[24,6],[11,5],[13,15],[4,11],[4,5],[5,-1],[13,-6],[28,-3],[20,-8],[23,2],[12,-3],[5,0],[6,3],[-16,7],[-5,5],[-3,4],[-5,14],[-4,5],[-3,2],[-1,3],[2,6],[2,4],[2,4],[0,4],[-1,7],[-8,10],[-11,4],[-31,3],[-21,8],[-9,7],[7,12],[-5,4],[7,12],[60,2],[13,5],[24,18],[-7,12],[-11,5],[-40,-5],[-4,2],[-4,8],[-2,2],[-4,0],[-2,-2],[-1,-3],[-3,-3],[-3,-2],[-60,-26],[-24,-4],[-37,-16],[-89,0],[-7,4],[9,0],[7,5],[12,15],[5,1],[5,-1],[4,1],[4,5],[7,12],[2,2],[10,-1],[4,-3],[5,-4],[2,-4],[3,-6],[2,-5],[3,-2],[34,17],[-11,9],[-23,-4],[-10,7],[2,0],[5,4],[0,4],[-11,5],[-52,4],[-7,-1],[-4,-3],[-2,-3],[-5,-10],[-27,-33],[-16,-13],[-9,5],[-23,-1],[-5,6],[1,4],[7,13],[3,7],[-2,2],[-3,2],[-4,-1],[-12,-7],[-5,-1],[-58,4],[-25,-7],[-12,0],[-12,5],[-14,19],[-5,0],[-6,-3],[-25,-3],[-24,9],[-6,1],[-1,-1],[-3,-2],[-2,-1],[-2,1],[-4,6],[-10,6],[-24,36],[-10,11],[-5,4],[-6,1],[-3,3],[-3,6],[-2,7],[-2,6],[-9,11],[-87,41],[-86,40],[-84,8],[-85,8],[-50,19],[-16,22],[-10,8],[-20,8],[0,7],[-4,9],[-5,9],[-30,32],[-37,27],[-22,22],[-4,3],[-6,0],[-10,-4],[-5,0],[0,4],[7,8],[4,5],[2,6],[0,7],[1,6],[2,3],[3,4],[10,8],[23,9],[32,25],[23,12],[24,7],[49,0],[13,-6],[12,-3],[19,-12],[14,-1],[28,4],[7,-2],[18,-15],[41,-11],[67,12],[112,-9],[94,-32],[50,-40],[41,-20],[8,-10],[12,-9],[24,-12],[34,-25],[46,-19],[35,-26],[39,2],[60,-19],[36,-21],[65,-6],[48,-18],[13,-1],[12,5],[10,15],[-3,8],[-3,6],[-4,4],[-5,3],[-7,1],[-7,-3],[-7,0],[-6,6],[7,8],[17,17],[1,12],[5,7],[16,14],[4,1],[0,3],[2,2],[1,3],[-2,6],[-2,2],[-6,5],[-3,1],[-6,-3],[-12,-14],[-11,-7],[-3,-16],[-4,-4],[-7,-2],[-14,-19],[-8,-4],[-61,2],[-18,9],[-10,18],[42,0],[-6,9],[-11,7],[-21,8],[-31,-5],[-9,5],[-5,14],[-24,13],[-6,9],[8,7],[25,14],[6,9],[4,4],[3,-1],[2,-5],[0,-5],[0,-6],[-2,-4],[6,-8],[9,-5],[26,-7],[17,-14],[9,-3],[7,0],[3,-2],[1,-8],[2,-2],[3,0],[3,2],[2,2],[1,11],[-4,7],[-6,6],[-3,8],[6,0],[28,-14],[14,-2],[-8,11],[-9,6],[-19,7],[3,5],[5,6],[1,6],[-5,0],[-11,-7],[-6,-1],[-5,1],[-17,7],[6,15],[12,10],[14,4],[34,-8],[10,-12],[6,-3],[17,-2],[3,1],[1,4],[-3,7],[-6,6],[-73,23],[-51,-17],[0,4],[6,6],[0,7],[-2,9],[0,11],[6,15],[1,7],[-5,2],[-6,-4],[-6,-8],[-13,-24],[-2,-2],[-4,-3],[-5,-1],[-53,3],[-8,7],[-5,13],[2,9],[6,5],[8,1],[14,-1],[7,1],[6,4],[3,5],[1,5],[0,5],[1,6],[4,7],[2,2],[23,-5],[19,-11],[17,0],[8,-2],[53,-37],[37,-9],[7,4],[3,3],[3,7],[2,5],[-2,3],[-21,0],[-7,7],[1,17],[-44,14],[-5,5],[-1,6],[-1,7],[6,8],[14,13],[-10,4],[-15,-3],[-15,-7],[-11,-8],[-11,-6],[-14,2],[-14,8],[-10,10],[5,4],[0,4],[-74,13],[-22,13],[-15,-1],[-7,4],[-13,15],[-70,36],[-12,1],[3,5],[10,8],[5,6],[3,3],[4,3],[10,2],[87,-32],[86,-31],[59,1],[11,6],[6,7],[1,15],[4,7],[-79,-4],[-14,4],[-17,11],[-29,5],[-16,8],[-3,4],[4,7],[11,5],[39,-8],[-7,5],[-9,1],[-9,3],[-4,12],[48,16],[0,4],[-33,0],[-46,-19],[-46,-2],[-11,5],[-6,7],[-3,4],[-5,1],[-22,-2],[-2,-2],[-5,-3],[-27,-7],[-11,-8],[-6,-2],[-42,2],[-13,8],[-5,6],[-1,5],[3,4],[7,3],[20,5],[6,3],[5,5],[11,18],[9,9],[34,20],[26,5],[52,-4],[14,3],[7,5],[5,6],[1,6],[0,7],[-1,7],[-2,3],[-37,14],[-6,6],[7,5],[3,3],[4,4],[-30,-4],[-84,-67],[-23,-9],[-28,-22],[-30,-11],[-23,-14],[-16,-3],[-9,1],[-5,3],[-5,6],[-2,9],[1,7],[5,9],[11,12],[40,6],[18,11],[8,10],[4,14],[-4,13],[-6,10],[-2,9],[9,9],[39,20],[20,3],[4,2],[9,8],[5,4],[9,0],[17,8],[76,9],[53,-10],[11,6],[-4,8],[7,5],[6,8],[-3,5],[-6,2],[-84,8],[-118,-37],[-37,-25],[-25,-6],[-26,-14],[-79,15],[-78,14],[0,5],[4,2],[3,2],[5,6],[12,8],[21,6],[6,4],[19,22],[11,7],[122,32],[34,-4],[99,18],[6,4],[5,6],[4,7],[7,16],[7,8],[6,14],[2,13],[-6,3],[2,4],[-27,0],[-7,-4],[-4,-1],[-3,-6],[-6,-15],[-9,-13],[-10,-7],[-74,-23],[-113,15],[1,8],[1,8],[1,7],[-1,7],[-4,4],[-6,0],[-10,-7],[-7,-3],[-84,9],[-83,9],[1,0],[-1,1],[-1,1],[1,2],[14,10],[29,29],[30,9],[15,9],[14,14],[12,19],[-10,5],[-5,3],[-2,7],[2,12],[6,5],[15,4],[4,6],[6,15],[5,7],[13,10],[13,7],[0,4],[-17,5],[-8,-1],[-14,-19],[-53,-33],[-5,-7],[2,-9],[3,-13],[5,-11],[4,-6],[0,-3],[-67,-22],[-11,-7],[-10,-9],[-4,-3],[-4,0],[-3,-3],[-3,0],[-4,3],[-3,3],[11,19],[3,10],[1,14],[-2,11],[-12,17],[-4,19],[-5,12],[-1,6],[-1,4],[-1,5],[0,3],[0,4],[2,3],[1,4],[2,6],[1,5],[1,4],[-3,7],[-2,4],[-20,17],[-61,29],[-7,13],[0,5],[0,7],[0,6],[-3,2],[-1,3],[-8,41],[-3,10],[-4,7],[-1,7],[-5,3],[-6,2],[-3,4],[-1,11],[4,5],[20,6],[51,0],[8,3],[0,4],[-88,-3],[-14,-4],[-11,-14],[10,-14],[13,-14],[10,-16],[-2,-20],[2,-8],[0,-8],[0,-8],[1,-9],[7,-14],[9,-10],[49,-38],[10,-11],[5,-10],[13,-33],[4,-12],[1,-12],[3,-11],[6,-11],[11,-13],[3,-6],[1,-6],[-4,-6],[-4,-4],[-4,-2],[-3,-3],[-11,-17],[-41,-26],[-11,-3],[-42,7],[-16,0],[-8,-10],[12,0],[15,-3],[14,-8],[10,-14],[3,-15],[-4,-11],[-8,-7],[-10,-3],[-31,4],[-5,3],[-10,14],[-4,3],[-2,3],[-1,7],[-3,7],[-4,3],[-12,4],[-6,1],[-6,-5],[11,-7],[3,-6],[2,-9],[-2,-8],[-10,-9],[-4,-5],[6,0],[5,-3],[8,-10],[21,-8],[18,-11],[8,-9],[5,-12],[-1,-12],[-2,-13],[-4,-12],[-3,-8],[-8,-11],[-11,-8],[-35,-8],[-35,-18],[-19,-2],[-12,-7],[-12,-1],[-21,-7],[-32,3],[-21,-11],[-7,1],[-13,4],[-7,0],[-12,-4],[-6,0],[2,0],[-10,2],[-31,17],[-5,5],[-2,6],[4,7],[-12,12],[-31,-1],[-14,5],[-17,23],[-11,9],[-6,-7],[2,-4],[7,-13],[4,-5],[11,-9],[13,-17],[4,-10],[-5,-4],[-42,1],[-32,15],[-14,15],[-17,10],[-11,19],[-30,69],[-3,9],[-1,10],[1,2],[10,-4],[5,1],[5,1],[9,7],[-4,4],[-50,9],[-12,5],[-23,3],[-4,3],[7,13],[8,10],[17,13],[16,5],[47,-5],[-1,4],[-2,9],[-1,4],[31,18],[11,2],[39,-22],[7,6],[-9,4],[-22,24],[-2,14],[5,12],[8,8],[8,3],[125,15],[82,71],[8,12],[4,15],[-1,2],[-2,11],[0,2],[0,3],[1,2],[4,3],[3,5],[3,13],[6,11],[4,15],[3,7],[3,3],[12,8],[-7,6],[-7,-5],[-13,-17],[-13,-11],[-4,-10],[4,-15],[-3,-4],[-8,-5],[-4,-3],[-2,-4],[-3,-8],[-3,-5],[-3,-3],[-3,-3],[-3,-3],[-2,-7],[1,-8],[2,-6],[2,-4],[1,-2],[-4,-4],[-17,-4],[-26,-24],[-19,-11],[-8,-8],[-7,-4],[-97,-3],[-76,34],[-18,3],[3,5],[5,4],[3,5],[2,9],[3,6],[32,12],[29,-1],[14,5],[-8,6],[-28,6],[7,12],[42,21],[37,28],[3,0],[7,13],[50,24],[-13,9],[-4,7],[-2,13],[8,6],[3,5],[3,8],[-5,1],[-3,3],[-3,5],[-3,8],[8,5],[11,0],[30,-9],[25,8],[-5,4],[-6,0],[-11,-4],[-40,7],[-10,6],[-8,11],[6,5],[13,1],[6,6],[-20,-4],[-13,3],[-5,-2],[0,-9],[-7,-5],[-23,-3],[-17,-14],[-4,-2],[-5,-4],[-6,2],[-12,6],[0,4],[12,4],[0,4],[-6,0],[-5,4],[-4,6],[-3,10],[2,4],[-2,4],[1,11],[-3,6],[-5,0],[-2,-6],[-2,-11],[-2,-8],[-1,-6],[5,-6],[-4,-3],[-4,2],[-3,4],[-4,1],[-6,-2],[-12,-8],[-6,-2],[-13,3],[-12,6],[-22,19],[0,5],[39,38],[9,6],[5,1],[14,-9],[6,-2],[14,1],[20,-7],[40,4],[65,-21],[41,9],[32,-2],[12,-5],[6,-1],[38,16],[9,-3],[19,-10],[8,5],[-5,6],[-35,11],[-28,-9],[-45,1],[-23,10],[-5,21],[-6,-4],[-13,-15],[-8,-1],[2,0],[-21,-1],[-12,3],[-2,8],[2,7],[2,7],[1,7],[4,5],[5,3],[18,6],[-1,2],[-1,6],[68,4],[8,5],[-4,7],[-8,2],[-17,-7],[-25,6],[-8,4],[-1,7],[-4,7],[-2,1],[0,4],[7,0],[12,-6],[7,-2],[5,2],[2,6],[1,7],[2,6],[11,5],[24,-10],[11,5],[-10,10],[-12,7],[-24,7],[6,9],[18,-3],[8,4],[7,8],[24,6],[-3,8],[-6,5],[-8,1],[-5,-4],[-6,-10],[-29,-11],[-37,3],[-10,3],[-6,9],[28,11],[5,6],[24,-5],[17,5],[8,5],[7,7],[-7,2],[-6,5],[-6,7],[-4,10],[0,15],[-12,11],[-24,11],[7,5],[2,4],[-1,7],[-3,2],[-14,2],[5,7],[11,2],[3,7],[-9,6],[-9,3],[-8,1],[-30,-9],[-13,-1],[-7,8],[9,24],[2,11],[-9,-4],[-25,-23],[-8,-3],[0,-5],[-3,4],[-6,11],[-6,3],[-12,1],[-1,2],[0,3],[-3,0],[-7,-3],[-19,0],[-7,2],[-12,10],[-7,4],[-55,-10],[-5,2],[-4,6],[-2,4],[0,3],[0,1],[-3,2],[3,7],[5,8],[6,7],[5,1],[18,-8],[20,-3],[10,1],[5,3],[4,4],[2,3],[2,9],[2,4],[5,5],[14,8],[4,8],[-9,-1],[-9,-2],[-8,-1],[-9,8],[8,4],[75,-9],[6,5],[-1,12],[-4,4],[-17,4],[0,3],[1,6],[1,3],[-52,1],[-17,7],[0,4],[5,3],[15,20],[14,2],[1,1],[5,7],[0,4],[-9,-1],[-4,1],[-2,4],[28,31],[6,4],[8,-11],[12,-7],[22,-5],[2,8],[-4,6],[-5,4],[-2,5],[-4,8],[-98,35],[-6,4],[-5,7],[1,2],[1,3],[1,3],[-1,4],[-2,4],[-2,1],[-2,1],[-3,2],[-18,28],[-11,12],[-5,-7],[-8,-5],[-9,4],[-8,8],[-6,9],[9,7],[3,1],[-6,8],[-10,-1],[-19,-7],[-22,4],[-21,10],[-10,9],[3,3],[20,-1],[10,1],[30,15],[-13,8],[-30,-10],[-12,6],[0,4],[11,6],[20,6],[5,4],[-10,6],[-2,2],[-3,9],[-1,5],[2,3],[13,-3],[6,-4],[5,-8],[7,-7],[18,-2],[7,-7],[7,-4],[23,-3],[6,1],[-2,4],[7,6],[-9,2],[-20,-2],[-2,2],[-4,-1],[-3,1],[-2,3],[-3,7],[-2,3],[-4,3],[-4,3],[-5,2],[2,1],[1,3],[-4,3],[-9,5],[-4,4],[-8,21],[-13,23],[29,-4],[17,1],[17,-7],[6,-1],[10,1],[4,3],[5,4],[-4,12],[-7,6],[-24,4],[-17,11],[-19,5],[-8,4],[-16,14],[-10,4],[-21,3],[-7,5],[1,7],[0,4],[-1,6],[2,0],[3,3],[2,1],[-2,2],[-3,2],[-3,0],[-3,0],[7,5],[29,-5],[8,3],[-2,6],[-7,5],[-93,5],[-9,5],[1,6],[-4,3],[-10,-1],[2,4],[12,6],[17,1],[16,5],[12,16],[-28,-5],[-5,5],[15,15],[4,10],[-3,8],[4,4],[6,3],[14,3],[2,3],[0,5],[0,12],[0,7],[1,5],[2,3],[3,1],[3,4],[2,5],[1,6],[-11,4],[-5,-1],[-21,-28],[-85,-43],[-102,-19],[-102,-19],[-5,1],[-2,6],[1,4],[2,6],[3,6],[3,2],[23,4],[21,-7],[7,0],[4,3],[-11,7],[-5,5],[-3,8],[33,-3],[11,3],[25,14],[58,2],[4,2],[8,8],[4,3],[13,1],[4,2],[-2,3],[-2,4],[-2,2],[79,25],[5,11],[-19,4],[-59,-12],[13,14],[1,5],[-30,2],[-10,4],[-10,8],[12,4],[24,-3],[23,10],[96,1],[5,3],[2,9],[-2,3],[-7,8],[-3,1],[-92,4],[-6,-2],[-5,-3],[-5,-2],[-55,24],[-10,0],[0,4],[51,0],[88,19],[35,-4],[7,9],[-27,3],[-5,9],[1,10],[6,7],[12,7],[-9,6],[-55,-6],[-3,1],[-9,10],[-4,2],[-10,1],[-16,7],[-5,4],[-4,8],[20,5],[9,6],[8,9],[0,4],[-64,-3],[-18,11],[3,6],[-2,4],[-11,2],[-5,4],[-10,11],[-6,2],[-13,-3],[-7,-5],[-5,-14],[-6,-1],[-7,3],[-3,7],[3,5],[-4,3],[-9,2],[-4,3],[3,5],[3,3],[2,3],[4,1],[-6,8],[-10,0],[-19,-4],[3,3],[2,3],[2,5],[1,5],[-4,0],[-13,4],[13,13],[8,4],[6,-3],[7,-8],[7,-6],[7,-3],[9,-1],[4,1],[2,3],[2,4],[3,4],[4,2],[8,2],[10,8],[6,3],[14,2],[-6,13],[-10,7],[-37,4],[-4,8],[2,21],[-6,2],[-12,9],[-7,1],[-58,-10],[-7,4],[-3,12],[-3,2],[-11,2],[-3,2],[-2,7],[-7,4],[-36,10],[-31,20],[-9,3],[-42,0],[-9,5],[-3,9],[-4,5],[-19,5],[-23,0],[-12,-7],[-6,-1],[-6,3],[-5,10],[4,9],[6,4],[13,-1],[-3,5],[-4,3],[-8,4],[53,25],[5,8],[-5,10],[-20,10],[-43,-1],[-21,9],[-1,10],[-7,7],[-16,7],[0,2],[2,7],[-19,10],[-10,9],[-3,9],[2,6],[6,1],[10,-3],[6,0],[4,1],[9,7],[-3,4],[-5,3],[-9,5],[5,12],[20,8],[8,8],[-15,5],[-19,0],[-17,-7],[-13,-16],[-6,-10],[-5,-5],[-51,1],[4,11],[7,6],[37,18],[23,1],[8,3],[11,11],[7,3],[31,-1],[9,5],[-1,2],[-3,6],[4,7],[6,9],[5,9],[1,12],[-7,8],[-12,6],[-45,7],[-9,6],[3,15],[7,10],[22,21],[-8,8],[-11,2],[-29,-7],[-10,0],[-10,3],[-8,6],[-3,9],[4,8],[8,5],[7,2],[18,-3],[9,2],[7,10],[-12,7],[-74,2],[-22,-9],[-69,-11],[-10,6],[4,5],[-2,0],[-4,4],[8,10],[-3,11],[-9,8],[-9,0],[-21,-9],[-11,-1],[-10,4],[13,6],[4,5],[0,10],[-4,7],[-6,2],[-12,-1],[9,8],[13,5],[23,3],[-12,19],[-25,4],[-64,-8],[-10,-4],[-9,-7],[-12,-15],[-7,-6],[-3,3],[-2,6],[-3,1],[-4,-3],[-5,-10],[-3,-2],[-4,-2],[-13,0],[-8,4],[-4,7],[5,13],[6,7],[14,12],[6,7],[8,7],[18,4],[5,8],[-14,6],[-19,21],[-6,4],[-6,2],[-7,-2],[-18,-15],[-14,-1],[-6,-2],[1,-9],[-15,0],[-7,3],[-7,5],[8,16],[-5,4],[-18,1],[-19,8],[2,6],[4,5],[2,3],[6,2],[-9,11],[-94,1],[1,12],[-5,6],[-7,2],[-6,0],[-3,-2],[-4,-8],[-3,-4],[-4,-2],[-10,-2],[-7,-8],[-13,-6],[-8,-8],[-3,-1],[-4,0],[-3,2],[-3,3],[-3,6],[-4,5],[-10,1],[-4,4],[1,3],[3,9],[-6,0],[3,13],[1,3],[-23,0],[4,9],[13,4],[4,7],[-5,2],[-2,5],[2,7],[5,3],[-11,9],[-15,4],[-14,0],[-24,-8],[-13,1],[-37,14],[-49,2],[-18,-6],[-48,7],[-28,12],[-6,1],[-21,-1],[-4,4],[-9,13],[-11,5],[-23,0],[-26,-9],[-14,-2],[-8,11],[4,2],[10,10],[-9,9],[-12,6],[-13,3],[-10,-3],[-10,-6],[-5,-4],[-5,-14],[-6,0],[-51,14],[-43,-7],[-11,-10],[13,-13],[0,-3],[-8,-7],[-4,-2],[-5,0],[4,9],[-18,9],[-4,7],[1,8],[7,9],[2,7],[-8,14],[-57,22],[-17,2],[-16,10],[-26,-3],[-7,2],[-14,8],[-7,2],[-31,0],[-1,-1],[-4,-3],[3,-18],[-9,-17],[-21,-22],[-4,-7],[-7,-15],[-4,-7],[-7,-4],[-16,-4],[-6,-8],[2,0],[3,-2],[2,-3],[1,-3],[-2,-4],[-2,0],[-3,1],[-3,-1],[-15,-11],[-61,-13],[-18,5],[-15,16],[-11,23],[-9,29],[3,7],[2,3],[2,2],[-1,5],[-1,3],[-2,1],[-3,-1],[3,7],[3,4],[5,1],[4,0],[0,5],[-42,18],[-30,-2],[3,-7],[8,-10],[4,-8],[-2,-1],[-2,-5],[-2,-2],[6,-3],[1,-8],[-3,-9],[-6,-4],[-6,-3],[-6,-5],[-5,-3],[-12,7],[-8,-4],[-4,1],[-18,16],[-8,3],[-8,-1],[-5,-11],[1,-11],[5,-11],[6,-8],[12,-5],[7,-6],[1,-5],[-7,-3],[-14,8],[-9,1],[-4,-7],[4,-10],[25,-12],[-15,-8],[-14,1],[-14,9],[-14,12],[-15,9],[-48,1],[3,-7],[8,-10],[2,-7],[0,-6],[1,-2],[1,-5],[-1,-3],[-4,-2],[-3,1],[-7,9],[-7,7],[-4,1],[-27,-4],[-21,4],[9,20],[-1,6],[-8,2],[-29,-5],[-5,-7],[3,0],[3,-1],[3,-3],[2,-4],[-11,-8],[15,-27],[2,-9],[-5,-9],[-8,-2],[-5,-4],[3,-14],[-86,8],[3,3],[1,2],[2,7],[-19,0],[-4,2],[-9,8],[-4,2],[-25,7],[-8,6],[9,10],[22,5],[7,9],[1,6],[-2,13],[1,5],[4,3],[6,-2],[4,0],[4,7],[-14,1],[-6,2],[-3,6],[53,10],[8,6],[-25,17],[-27,6],[-79,-11],[-13,2],[-19,12],[-11,1],[-8,-4],[1,-15],[-2,0],[-2,-17],[-13,-9],[-25,-11],[10,-14],[-5,-3],[-11,0],[-9,-7],[6,-7],[5,-7],[1,-9],[-5,-9],[-9,-6],[-29,6],[-4,2],[-6,11],[-3,3],[-4,1],[-13,13],[-9,4],[-11,3],[-10,4],[-7,11],[7,2],[7,5],[7,6],[4,7],[-25,-2],[-13,3],[-2,12],[-14,10],[-17,6],[-34,0],[-13,-5],[-8,-4],[-5,-7],[-4,-4],[-1,-3],[3,-4],[3,-2],[3,-2],[5,-1],[0,-5],[-12,-2],[-27,2],[-12,-8],[2,-4],[-3,-3],[-1,-2],[-2,-7],[61,-10],[9,-4],[7,-8],[5,-14],[-3,-4],[-3,-4],[-7,-5],[7,-10],[67,-20],[13,-8],[16,-6],[20,-17],[16,-5],[11,-9],[6,-2],[3,-2],[6,-12],[4,-2],[-10,-8],[-22,4],[-50,24],[-54,10],[-24,-1],[-6,1],[-14,9],[-94,13],[-94,13],[-94,14],[-19,11],[-56,3],[-1,-3],[-6,0],[-6,2],[-12,7],[-20,8],[-5,4],[-1,4],[2,3],[6,3],[28,9],[-9,11],[-14,3],[-75,0],[13,10],[-7,5],[-14,2],[-31,17],[4,11],[-2,2],[-49,22],[-15,2],[-14,7],[-25,1],[-25,8],[-45,29],[-20,5],[-5,7],[3,4],[2,5],[0,5],[-1,6],[6,9],[7,3],[69,19],[69,18],[49,13],[24,20],[-5,2],[-17,1],[8,6],[37,9],[98,0],[97,-1],[8,3],[5,7],[0,13],[-6,9],[-18,4],[-7,7],[26,10],[5,6],[-27,13],[-6,0],[-65,-19],[-80,-3],[-79,-2],[-64,12],[-28,-5],[-13,3],[-15,8],[-80,16],[-80,16],[-12,8],[-14,3],[-6,3],[-14,13],[-5,4],[4,14],[8,9],[38,16],[8,8],[-1,13],[11,7],[32,32],[15,8],[29,3],[7,4],[5,7],[-52,6],[-8,-4],[-1,-10],[-18,-10],[-23,-20],[-17,-7],[-23,-23],[-99,-56],[-32,-6],[-5,3],[-4,1],[-3,2],[-2,4],[-3,3],[-3,2],[-2,0],[-11,-6],[-5,0],[-47,24],[-4,4],[1,4],[7,8],[-8,3],[-17,-6],[-7,5],[-3,5],[-13,9],[9,6],[35,-2],[-2,5],[39,12],[5,4],[-35,-4],[-78,20],[2,-4],[-12,-5],[6,-11],[-69,35],[-10,19],[3,21],[8,7],[23,-1],[7,2],[1,6],[-1,8],[1,8],[3,3],[6,1],[3,4],[-1,8],[53,11],[25,-6],[59,4],[-15,8],[-48,8],[6,8],[109,9],[108,9],[108,10],[6,-2],[10,-8],[5,-2],[23,4],[118,-11],[117,-11],[12,-5],[19,-2],[1,-2],[-1,-2],[103,10],[103,9],[110,-17],[110,-18],[15,2],[22,-10],[123,2],[27,-11],[14,1],[-6,4],[-16,6],[-3,7],[4,5],[53,6],[13,7],[8,14],[-130,-27],[-125,15],[-126,14],[-125,14],[-62,-12],[-118,15],[-117,16],[-12,10],[102,30],[102,30],[130,2],[129,2],[93,-8],[92,-8],[74,-46],[68,-16],[10,1],[8,5],[-13,13],[-56,6],[-15,11],[-13,14],[-11,20],[-5,4],[1,4],[-18,21],[21,8],[107,-4],[22,5],[16,19],[-6,7],[-2,1],[3,3],[9,5],[-5,5],[-8,3],[-5,2],[-2,4],[-4,9],[-2,2],[-13,2],[-6,4],[-5,6],[4,4],[10,1],[5,3],[-8,5],[-30,-1],[10,5],[5,4],[1,5],[-4,7],[-7,4],[-56,10],[-28,14],[-4,6],[-4,3],[-20,-1],[-11,5],[3,7],[8,8],[6,8],[-16,-4],[-35,-16],[-82,-8],[-6,-4],[6,-5],[-2,-10],[-10,-20],[-8,-11],[-10,-7],[-95,-30],[-106,-8],[-106,-7],[-10,5],[6,22],[0,13],[-6,5],[-9,2],[-29,18],[-32,32],[-11,3],[-13,0],[-24,-6],[57,-55],[4,-8],[1,-10],[-5,-10],[-8,-5],[-81,-17],[-81,-17],[-95,21],[-96,21],[-96,20],[-5,4],[-4,7],[8,1],[16,9],[57,19],[33,3],[44,21],[24,2],[32,11],[6,9],[-7,18],[12,13],[-8,4],[-9,-6],[-17,-14],[-33,-14],[-78,-6],[-5,-2],[-14,-10],[-84,2],[-84,2],[-9,7],[7,10],[87,36],[29,27],[14,7],[12,0],[7,-3],[42,4],[6,4],[-27,13],[-59,-6],[-26,9],[-10,0],[-13,-3],[-23,-13],[-29,-28],[-9,-4],[-88,-3],[-88,-4],[-33,14],[-3,4],[4,7],[5,4],[47,20],[7,11],[-10,9],[-17,2],[-18,-5],[-27,-12],[-14,-3],[-30,4],[10,19],[1,6],[-2,10],[-5,2],[-53,-10],[-13,-7],[-14,-5],[-14,5],[-26,17],[-26,7],[-27,1],[1,7],[1,3],[1,3],[-30,25],[-4,7],[3,8],[6,7],[6,5],[0,4],[-79,4],[-7,3],[-13,14],[-5,4],[-23,3],[-8,3],[-19,20],[-12,8],[-45,2],[9,12],[12,2],[23,-6],[23,3],[23,9],[-6,7],[-17,9],[0,5],[8,0],[9,4],[-3,3],[-3,1],[-4,1],[-3,-1],[8,4],[18,-1],[8,5],[-3,0],[-1,2],[-4,6],[13,14],[19,3],[37,-5],[-13,10],[-96,6],[10,5],[-1,2],[-1,2],[-1,2],[-1,2],[2,8],[3,5],[3,2],[11,2],[34,15],[10,8],[5,12],[-18,8],[-6,0],[5,10],[18,7],[5,12],[-10,-1],[-4,2],[-3,3],[-2,4],[14,12],[90,11],[90,11],[107,50],[94,0],[29,-12],[69,-4],[8,-3],[6,-7],[3,0],[4,7],[-1,1],[-3,2],[-2,1],[6,18],[-1,6],[-3,12],[16,10],[72,13],[14,7],[18,-3],[15,8],[92,10],[7,5],[-3,4],[-7,3],[-7,0],[15,13],[17,5],[130,2],[22,-5],[6,3],[4,6],[20,17],[14,6],[7,6],[-4,4],[7,5],[5,1],[19,-9],[17,1],[9,-2],[21,-14],[7,-2],[29,0],[-7,6],[-15,7],[-7,7],[0,2],[-1,7],[-1,3],[-2,3],[-4,3],[-4,2],[-2,-1],[-9,-3],[-50,11],[-7,5],[8,15],[10,8],[21,10],[138,28],[138,29],[78,-23],[24,10],[-18,7],[-3,6],[4,7],[6,4],[51,9],[10,-3],[4,1],[1,4],[-3,4],[-2,1],[-2,3],[-2,7],[78,-14],[13,1],[-2,6],[-2,3],[-7,4],[6,3],[2,1],[-2,3],[4,4],[4,0],[9,-4],[3,1],[3,2],[3,0],[4,-6],[-1,-1],[-3,-3],[-2,0],[9,-11],[10,-3],[11,4],[9,10],[-3,8],[5,1],[8,-5],[7,-9],[-2,-3],[-2,-3],[-1,-5],[-1,-5],[13,4],[25,18],[13,3],[-10,-10],[-11,-7],[7,-4],[9,3],[15,12],[9,5],[25,1],[4,-2],[7,-8],[4,-3],[5,0],[9,7],[3,2],[30,2],[10,-2],[-1,-4],[-1,-9],[1,0],[-1,-4],[5,-3],[13,-1],[23,7],[20,-8],[39,1],[-5,10],[-7,2],[-8,1],[-7,3],[71,-1],[9,6],[-18,-1],[-9,2],[-3,5],[-4,1],[5,9],[9,7],[46,18],[8,7],[-4,0],[-4,1],[-3,4],[-2,7],[11,8],[14,4],[21,0],[7,4],[-5,7],[-4,5],[4,5],[15,4],[1,2],[2,2],[2,3],[3,1],[3,2],[4,8],[4,2],[40,9],[9,7],[16,4],[7,4],[6,9],[-4,4],[6,8],[15,6],[7,6],[-5,3],[-6,1],[10,14],[36,13],[17,13],[8,12],[3,15],[0,16],[-1,11],[-3,8],[-7,10],[-10,7],[-22,5],[-10,6],[7,7],[16,11],[5,10],[-16,17],[-18,12],[5,7],[14,5],[6,4],[-17,9],[-9,7],[-5,8],[16,0],[0,4],[-9,0],[-20,7],[-8,5],[8,5],[29,4],[-3,6],[-11,14],[12,8],[-3,9],[5,8],[13,11],[-8,12],[-26,17],[8,9],[98,16],[97,17],[60,38],[12,2],[48,-9],[26,4],[10,8],[-100,4],[-5,2],[-4,6],[-4,7],[-5,5],[7,18],[2,9],[-2,7],[-6,2],[-6,1],[-6,-1],[-5,-5],[-1,-8],[2,-7],[1,-5],[-1,-2],[-9,-7],[-12,-28],[-9,-6],[-6,-2],[-24,-18],[-125,-19],[-106,14],[-40,-22],[-115,-28],[-55,5],[-10,7],[-10,14],[-10,10],[-23,5],[-18,12],[-16,1],[-8,3],[-4,3],[-4,2],[-4,0],[-15,-19],[-14,-6],[-138,-8],[-9,9],[7,4],[-2,7],[-11,10],[-6,8],[1,4],[11,8],[-8,2],[-15,8],[-7,2],[-24,-4],[-52,15],[-12,14],[4,3],[4,1],[9,-1],[-7,9],[4,3],[2,1],[3,0],[-4,6],[-4,5],[-5,4],[-9,3],[2,5],[9,9],[6,8],[2,7],[-2,4],[-8,1],[8,12],[36,13],[11,-1],[5,2],[16,10],[6,1],[-2,0],[8,2],[37,15],[34,24],[35,5],[2,3],[3,6],[3,3],[9,3],[4,4],[-2,0],[-1,1],[-2,1],[-1,2],[2,4],[2,4],[3,2],[3,2],[-15,-1],[-8,2],[-4,5],[3,8],[7,4],[85,17],[86,16],[9,5],[5,9],[2,9],[3,8],[6,3],[73,-1],[73,0],[8,5],[-54,13],[-5,6],[5,7],[19,9],[69,14],[69,15],[14,8],[6,6],[1,2],[0,3],[0,4],[1,3],[2,1],[6,2],[3,2],[2,3],[3,4],[2,4],[-16,16],[6,10],[11,4],[56,3],[11,7],[-2,1],[-4,4],[14,8],[-15,5],[-9,6],[-3,9],[5,9],[10,4],[65,5],[23,14],[54,0],[34,11],[53,6],[28,33],[29,15],[13,3],[6,3],[17,1],[24,-11],[19,-21],[3,-27],[9,-14],[25,-43],[16,-16],[52,-30],[10,-12],[9,-18],[11,-15],[26,-12],[11,-10],[11,-3],[12,14],[-5,5],[-25,5],[-6,3],[-2,5],[5,7],[-10,5],[-10,8],[-17,23],[-11,10],[-35,21],[-9,9],[-38,65],[-5,13],[2,13],[-3,9],[-5,9],[-3,13],[49,22],[13,9],[48,10],[40,-1],[19,-7],[79,-4],[79,-5],[96,-42],[85,-37],[11,7],[-7,12],[8,6],[36,3],[16,6],[66,-2],[9,8],[14,7],[6,1],[2,1],[3,8],[2,2],[3,2],[12,-2],[-13,11],[-28,12],[-13,10],[-18,21],[-8,13],[-6,15],[2,2],[6,4],[4,2],[-38,19],[-4,9],[4,4],[127,52],[10,8],[8,11],[-4,10],[-15,10],[-28,11],[-14,1],[-8,2],[-4,7],[0,9],[-1,4],[-3,3],[-39,24],[-19,24],[-23,7],[-10,12],[-2,12],[-19,14],[5,13],[7,5],[36,24],[104,29],[104,29],[14,-1],[14,5],[14,0],[13,6],[74,10],[88,-13],[41,-19],[65,4],[74,-11],[74,-11],[13,-8],[6,-13],[3,-16],[8,-8],[9,-5],[8,-5],[-17,-9],[-7,-9],[0,-15],[8,-11],[12,-7],[103,-26],[103,-27],[68,1],[14,-3],[29,-17],[1,-3],[-1,-8],[89,-33],[12,-8],[-6,-5],[-16,0],[-7,-3],[11,-15],[14,-6],[82,-11],[15,-7],[25,-1],[12,-5],[39,-27],[8,-2],[24,1],[-3,7],[-16,9],[-12,14],[-5,4],[-124,22],[-10,4],[-9,9],[1,13],[-24,14],[3,13],[-8,7],[-21,9],[-16,3],[-56,33],[-40,8],[-19,17],[-109,9],[3,6],[1,2],[-6,9],[-23,11],[-24,21],[-28,39],[-6,2],[-10,7],[4,8],[0,9],[-2,8],[-5,4],[-37,8],[-57,21],[-47,3],[-121,27],[-11,14],[119,30],[119,31],[78,0],[-4,8],[9,6],[83,11],[83,11],[95,7],[95,6],[21,11],[26,-2],[35,13],[75,6],[10,-3],[20,-14],[11,-3],[-5,-7],[-2,-2],[10,-12],[12,0],[13,7],[8,10],[-3,8],[15,16],[5,2],[8,11],[5,3],[20,1],[6,-1],[8,6],[95,-7],[95,-7],[5,-1],[4,-3],[4,-4],[-5,-4],[-6,-1],[-6,0],[-11,4],[-1,-2],[2,-9],[0,-3],[-1,-2],[1,-2],[2,-3],[3,-1],[32,-6],[14,-14],[8,-4],[5,10],[-3,9],[-34,16],[13,8],[4,4],[-11,13],[-14,10],[-14,7],[-14,2],[-61,-9],[-8,5],[11,5],[60,5],[27,12],[113,16],[112,15],[97,-31],[4,-5],[3,-6],[6,-7],[7,-5],[17,-4],[8,-5],[12,-13],[11,-4],[4,-3],[7,-9],[16,-15],[11,-5],[6,-6],[6,-8],[5,-4],[6,-6],[14,-8],[6,-8],[1,-7],[-1,-17],[1,-7],[-12,-8],[-5,-7],[-3,-7],[3,-8],[6,-6],[11,-9],[10,-16],[4,-14],[-2,-16],[-16,-47],[-6,-11],[-6,-7],[-30,-19],[-13,-14],[-3,-3],[0,-3],[0,-4],[1,-6],[-2,-3],[-12,-7],[11,-12],[2,-6],[-5,-6],[1,-3],[2,-6],[1,-3],[-8,-31],[1,-13],[3,-6],[31,-17],[19,-7],[39,-4],[-24,11],[-25,6],[0,4],[46,4],[5,8],[-8,7],[-6,14],[-10,32],[3,11],[6,5],[15,5],[54,44],[53,20],[9,8],[9,9],[19,16],[5,7],[0,15],[0,10],[-2,11],[-2,9],[-3,10],[-3,8],[-11,12],[-5,10],[2,8],[7,6],[7,3],[11,2],[43,-4],[17,-8],[53,-6],[36,-17],[58,-2],[16,-10],[3,-3],[17,-8],[92,-11],[93,-11],[82,-30],[83,-30],[15,-13],[125,-34],[14,-9],[4,-5],[1,-5],[0,-14],[0,-5],[4,-7],[6,-3],[73,-19],[85,21],[-62,5],[-10,4],[-7,9],[0,3],[0,4],[0,6],[-1,5],[-3,4],[-4,3],[-81,21],[-81,21],[-37,24],[0,4],[6,4],[-7,8],[-8,2],[-17,-1],[-43,11],[-48,33],[8,13],[112,-16],[111,-17],[112,-17],[20,7],[30,1],[48,25],[11,0],[-8,12],[-103,41],[-103,41],[-104,40],[-41,34],[-8,15],[-9,36],[-4,8],[-2,19],[-10,14],[-56,43],[-3,4],[1,6],[-1,12],[-6,2],[-6,4],[-5,6],[4,8],[117,-6],[116,-7],[116,-6],[117,-7],[116,-7],[27,-13],[36,-35],[14,-9],[104,-24],[104,-25],[104,-25],[13,-10],[-2,0],[4,-4],[-6,-9],[-7,-8],[11,-7],[93,1],[113,-26],[113,-27],[114,-26],[11,-12],[-12,-12],[4,-7],[4,-4],[5,-1],[4,0],[-6,-8],[-15,-1],[-7,-4],[6,-4],[28,0],[73,-24],[74,-23],[5,-5],[11,-15],[4,-2],[6,-1],[15,-6],[22,-16],[4,-1],[104,-8],[22,-11],[11,-2],[9,5],[-13,8],[7,5],[97,17],[13,14],[8,1],[15,-1],[-16,5],[-34,0],[-16,8],[4,3],[6,1],[11,-1],[-6,3],[-12,2],[-5,4],[7,3],[3,0],[-16,6],[-32,-4],[-15,7],[3,2],[8,3],[4,3],[-12,6],[-24,3],[-12,7],[10,4],[48,-6],[5,2],[3,3],[5,10],[3,3],[-14,9],[-103,-2],[-12,10],[6,4],[-2,7],[-5,11],[-3,6],[59,2],[92,35],[-30,1],[-17,6],[-23,21],[-37,17],[-3,6],[2,7],[23,32],[39,21],[92,16],[79,-12],[80,-12],[14,-7],[119,-4],[120,-4],[10,-8],[0,5],[1,-3],[8,-5],[-2,-3],[-1,-3],[-1,-3],[-1,-3],[110,0],[-8,10],[-103,19],[-104,19],[-28,-11],[-16,0],[-84,19],[-83,19],[-8,7],[-6,11],[10,10],[23,5],[11,5],[-10,7],[-47,9],[-24,11],[-49,7],[-20,11],[-11,3],[-20,1],[-4,0],[-11,3],[-2,2],[-1,3],[-1,3],[-1,1],[-12,3],[-13,6],[-4,5],[-6,12],[-4,5],[-31,11],[-24,2],[-6,2],[-12,9],[-6,2],[-12,0],[-25,8],[-25,18],[-54,17],[-25,2],[-77,26],[-23,17],[-7,9],[6,4],[76,2],[76,2],[29,9],[23,-8],[14,-9],[135,-2],[135,-1],[135,-1],[135,-1],[135,-2],[135,-1],[-27,-17],[-8,-11],[76,-22],[11,-6],[8,-12],[8,-17],[-18,-23],[-2,-11],[11,-11],[6,-4],[5,-4],[16,-20],[4,-3],[4,-1],[26,-2],[7,6],[9,26],[-8,12],[-15,10],[-9,9],[10,8],[-4,4],[10,18],[-5,10],[-24,13],[-16,18],[-13,3],[-21,11],[9,11],[13,3],[67,-3],[19,-9],[70,-12],[14,-7],[8,-12],[-2,-3],[121,-34],[33,-25],[30,-1],[82,-4],[6,-3],[-3,-7],[4,-7],[22,-17],[33,-12],[-7,-8],[-8,-6],[-7,-9],[1,-14],[7,-9],[37,-15],[-1,-2],[-1,-6],[35,-6],[10,8],[3,12],[-2,8],[-5,6],[-7,4],[-14,5],[-6,6],[1,14],[6,8],[26,12],[-5,6],[-23,2],[-28,13],[-9,9],[-4,6],[0,6],[4,6],[5,4],[5,4],[16,4],[6,4],[3,5],[0,7],[-3,7],[-7,10],[-1,4],[0,3],[-1,3],[-3,3],[-8,7],[-102,22],[-72,-8],[-65,22],[-32,3],[-14,9],[-129,6],[-130,6],[-129,6],[-130,6],[-129,6],[-130,6],[-129,6],[-130,6],[-17,6],[-17,14],[-65,14],[0,-3],[55,-21],[0,-4],[-28,-12],[-93,9],[-93,10],[-12,-3],[3,-6],[2,-1],[2,-1],[0,-4],[-89,-6],[-16,5],[-17,-1],[-16,7],[-113,19],[1,4],[2,4],[2,3],[3,1],[-12,6],[-51,10],[-25,12],[-13,1],[13,8],[120,-16],[120,-16],[-68,35],[-132,13],[6,10],[10,3],[35,-2],[5,5],[-3,13],[22,6],[89,0],[9,10],[11,11],[19,0],[20,-7],[32,-19],[92,-19],[92,-20],[12,-15],[-3,-5],[-4,-3],[-2,-4],[1,-4],[103,20],[113,-9],[113,-10],[113,-9],[8,-5],[0,2],[0,2],[9,-2],[25,3],[0,3],[-122,17],[-122,16],[-122,16],[-122,16],[-3,4],[4,5],[-6,3],[-11,-1],[-6,2],[0,1],[0,3],[0,3],[-1,1],[-2,0],[-4,3],[-29,3],[-43,17],[-9,7],[0,8],[9,6],[11,5],[11,2],[7,-3],[-6,-2],[0,-5],[4,-6],[6,-3],[38,6],[21,16],[6,2],[5,-1],[10,-7],[98,-28],[13,4],[-5,4],[-5,4],[6,1],[6,3],[0,4],[-6,0],[-5,2],[-10,6],[11,11],[17,2],[125,-14],[124,-15],[-1,0],[6,-3],[9,-2],[9,1],[4,6],[4,4],[109,-11],[110,-11],[-8,7],[-104,18],[-104,18],[-104,18],[103,1],[103,2],[102,1],[0,4],[-41,-2],[-12,6],[29,4],[0,4],[-95,0],[0,4],[15,2],[5,2],[-2,4],[-1,0],[0,4],[82,6],[83,5],[43,-18],[9,-7],[12,-6],[88,8],[26,-11],[28,-4],[25,-11],[26,-2],[10,-12],[-50,-31],[-13,-18],[73,28],[84,-12],[67,-34],[29,-4],[78,-29],[14,-12],[116,-4],[116,-5],[116,-5],[120,-37],[-2,-1],[-4,-5],[-2,-2],[8,-18],[12,-12],[26,-13],[52,-12],[11,-14],[-3,-3],[0,-3],[2,-4],[2,-2],[6,-2],[7,1],[12,5],[-15,12],[4,5],[6,5],[20,13],[4,4],[0,6],[-45,-4],[-28,5],[-7,8],[-3,3],[-1,3],[-1,5],[0,20],[-11,10],[-25,11],[1,0],[-7,6],[-20,2],[-32,14],[-7,6],[6,8],[8,5],[127,1],[126,0],[127,1],[127,1],[-12,5],[-25,1],[-52,13],[-108,1],[-108,1],[-108,1],[-11,7],[4,6],[129,10],[128,11],[129,11],[128,11],[15,7],[-6,4],[-101,-2],[-101,-2],[23,4],[6,5],[-18,6],[-89,6],[-24,-4],[-8,4],[17,4],[6,4],[-80,0],[-80,0],[-46,4],[-7,6],[-6,8],[-36,14],[8,8],[10,4],[20,1],[-2,5],[-2,5],[-3,3],[-3,3],[4,2],[9,2],[4,0],[0,4],[-8,0],[-11,4],[-10,7],[-7,9],[2,3],[6,9],[4,4],[13,9],[-19,7],[-17,13],[8,5],[11,2],[12,-1],[18,-8],[122,-19],[122,-20],[21,8],[-21,18],[-47,6],[-22,13],[10,5],[30,7],[-2,7],[-3,5],[-4,3],[-4,1],[13,10],[92,5],[107,-21],[108,-22],[13,-9],[12,-13],[5,-3],[71,-18],[13,6],[-55,13],[-3,6],[-7,4],[-17,2],[14,8],[45,4],[-14,10],[-89,17],[-13,9],[32,-1],[10,6],[-4,2],[-5,1],[-8,0],[7,11],[13,6],[139,0],[138,0],[139,0],[75,20],[75,20],[7,-1],[14,-7],[6,-6],[4,-6],[4,-6],[3,-6],[6,-4],[6,-1],[7,0],[5,4],[5,5],[2,7],[1,6],[2,5],[6,5],[7,3],[9,1],[9,-3],[7,-6],[1,-7],[1,-7],[1,-6],[12,-5],[12,-11],[73,-25],[2,-6],[1,-5],[3,-3],[26,0],[13,5],[12,11],[-13,7],[-61,17],[-12,7],[-10,14],[2,2],[2,2],[17,9],[106,7],[105,7],[106,7],[105,7],[23,-9],[56,-3],[0,-5],[-7,0],[-13,-4],[-7,-4],[2,0],[4,-4],[-2,-2],[-4,-6],[77,11],[77,11],[33,-11],[121,-2],[121,-2],[31,11],[128,-14],[128,-13],[128,-13],[1,-2],[4,0],[3,0],[4,-2],[3,-2],[-7,-3],[-7,-6],[14,-13],[18,-6],[19,1],[14,6],[-5,10],[-2,2],[118,8],[20,-5],[12,-15],[-44,-8],[-28,7],[-15,0],[-27,-7],[11,-7],[90,-26],[114,9],[-20,0],[-42,12],[-20,0],[17,10],[127,-18],[126,-17],[127,-17],[126,-17],[127,-17],[127,-17],[-9,-11],[-11,-6],[-32,-6],[-22,-11],[-15,-4],[-14,-11],[-16,-4],[-129,-4],[-130,-5],[-129,-4],[-129,-4],[-130,-4],[-129,-4],[-130,-5],[-129,-4],[-130,-4],[-129,-4],[-43,-19],[-118,-9],[-118,-9],[-117,-8],[-21,9],[-31,4],[-27,13],[-138,16],[-138,16],[-12,-8],[39,-4],[29,-14],[29,11],[87,-20],[87,-21],[5,-4],[2,-8],[-3,-4],[-128,-9],[-27,-12],[-117,-8],[-117,-8],[-116,-8],[-117,-9],[-116,-8],[-117,-8],[-14,-7],[22,-8],[47,4],[21,-5],[-7,-5],[-28,-10],[-1,-5],[-2,-7],[-4,-5],[6,-5],[7,-3],[0,-4],[-23,-9],[-13,-9],[-6,-13],[7,-9],[16,-3],[26,2],[-6,8],[-6,6],[-2,6],[9,9],[28,8],[8,8],[-10,8],[-3,4],[6,5],[94,30],[129,5],[128,4],[51,-20],[7,-10],[3,-16],[-4,-12],[-32,-14],[14,-2],[45,13],[10,11],[-3,11],[-9,22],[-2,10],[8,10],[30,12],[131,13],[22,9],[122,2],[121,2],[4,4],[93,-1],[20,-6],[4,-3],[5,-5],[2,-7],[-4,-6],[1,-2],[1,-2],[2,-2],[6,-4],[8,0],[14,4],[5,3],[1,3],[0,5],[2,7],[10,14],[12,5],[12,3],[20,9],[105,15],[105,15],[106,15],[43,17],[128,-6],[127,-6],[128,-6],[127,-6],[3,-14],[14,-7],[16,-1],[11,2],[43,18],[127,-3],[31,-10],[106,2],[106,2],[19,11],[123,16],[123,16],[123,17],[54,-7],[51,-26],[-29,-5],[-7,-7],[-2,-8],[2,-6],[18,-15],[34,-9],[4,-2],[3,-4],[1,-4],[1,-4],[0,-4],[-3,-1],[-7,-2],[-30,-22],[-55,-26],[-6,-5],[-4,-6],[0,-7],[6,-5],[-11,-12],[-122,-37],[-88,-4],[9,-5],[29,-4],[22,5],[29,-4],[19,10],[96,23],[96,22],[96,22],[63,-8],[53,11],[6,3],[12,4],[17,0],[17,-5],[9,-9],[-13,-1],[-26,-10],[-12,-1],[6,-14],[25,-16],[9,-14],[-9,-11],[-21,-5],[-10,-5],[63,7],[9,5],[8,9],[-3,9],[6,7],[18,8],[77,8],[48,-8],[10,-8],[0,-13],[20,-7],[47,4],[18,-19],[7,-4],[26,7],[16,-1],[8,3],[5,7],[-1,10],[23,-4],[46,-19],[58,-10],[19,-12],[20,-7],[39,-3],[9,-4],[17,-1],[9,-3],[0,-10],[45,-5],[41,-18],[38,-9],[4,-5],[2,-7],[-2,-4],[-9,-9],[-4,-6],[-9,-11],[-13,-5],[-24,-2],[-84,-35],[-84,-13],[-46,-21],[8,-5],[17,-7],[6,-8],[-8,-8],[-59,-23],[-130,-10],[-129,-9],[-130,-9],[-14,-9],[-138,-6],[-138,-7],[-138,-7],[-138,-7],[-138,-7],[-138,-7],[-138,-7],[-138,-7],[-138,-7],[-139,-6],[-138,-7],[-138,-7],[-6,2],[-9,12],[-6,2],[-82,2],[-47,15],[-95,4],[-95,4],[-94,4],[-46,3],[-12,-7],[124,-8],[124,-8],[123,-7],[23,-8],[32,-3],[16,-6],[5,-4],[7,-9],[5,-4],[19,-8],[-11,-8],[-104,-16],[-104,-15],[-104,-16],[-10,-5],[-7,0],[-3,-1],[-3,-3],[-4,-7],[-2,-2],[-15,-5],[-76,-2],[-77,-2],[-8,-8],[-10,-5],[-20,0],[-21,-9],[-24,4],[-136,-28],[-32,-18],[-28,-7],[-3,-2],[-2,-5],[-2,-9],[-2,-12],[-1,-11],[2,-8],[6,-6],[16,0],[6,-4],[2,-7],[-1,-8],[-4,-16],[14,-9],[16,-2],[30,6],[99,-1],[1,14],[3,11],[6,7],[49,34],[71,24],[121,9],[122,9],[29,11],[30,-1],[29,13],[104,10],[13,6],[77,11],[3,-1],[5,-5],[3,-1],[50,4],[0,-20],[1,-8],[4,-4],[58,8],[7,5],[2,4],[2,5],[2,5],[1,7],[0,8],[1,2],[2,2],[2,1],[9,1],[56,17],[71,0],[32,8],[32,-3],[44,14],[17,0],[24,-5],[15,3],[71,-2],[33,19],[16,3],[125,-6],[124,-6],[125,-7],[125,-6],[124,-6],[125,-7],[125,-6],[-4,-11],[-13,-16],[-5,-10],[12,-9],[8,-18],[3,-23],[-7,-21],[-4,-6],[-5,-4],[-9,-4],[-112,-25],[-112,-24],[-111,-24],[-112,-25],[-41,-25],[-40,-8],[-27,-11],[-5,-6],[6,0],[57,-10],[5,-2],[3,-5],[-1,-7],[-8,-12],[-2,-8],[6,-3],[11,-11],[6,-3],[10,-1],[107,40],[107,39],[38,-2],[132,26],[132,27],[9,-2],[9,-4],[8,-2],[9,5],[12,13],[13,7],[76,21],[76,21],[81,-19],[19,3],[9,5],[5,8],[8,21],[5,9],[-5,4],[1,8],[-4,14],[2,10],[-3,2],[-4,5],[-2,5],[1,6],[3,3],[17,8],[6,10],[-2,9],[-11,19],[22,14],[1,5],[0,4],[1,4],[8,6],[11,2],[20,-1],[-2,-4],[-6,-5],[-3,-3],[10,1],[9,3],[28,19],[109,6],[109,6],[109,6],[108,7],[17,-4],[10,-8],[48,-51],[8,-12],[6,-14],[3,-12],[1,-7],[-2,-6],[-7,-18],[-1,-2],[1,-9],[2,-4],[3,-3],[4,-6],[1,-4],[3,-11],[4,-14],[0,-3],[-1,-3],[-1,-10],[-2,-7],[-11,-5],[-2,-7],[-1,-11],[-4,-13],[-5,-11],[-8,-6],[2,-4],[-5,-8],[-10,-29],[-11,-21],[-5,-12],[-77,-62],[-78,-61],[-67,-19],[-7,-6],[-3,0],[-1,-7],[-1,-22],[-3,0],[-12,-6],[-8,-3],[-17,0],[-4,-1],[-3,-4],[-1,-6],[-1,-7],[0,-8],[1,-6],[-48,-15],[-32,-3],[-3,-2],[-2,-5],[-1,-8],[0,-5],[-1,-3],[-4,-4],[-18,-6],[-123,-84],[-7,-3],[-13,1],[-24,-13],[-3,-4],[2,-8],[3,-4],[9,-6],[3,-6],[0,-9],[-3,-7],[-12,-13],[-11,-5],[-15,-11],[-39,-13],[3,-5],[7,-4],[2,-4],[0,-8],[-4,-5],[-37,-14],[-20,-1],[-10,-3],[-38,-24],[-9,-11],[-4,-10],[4,-9],[5,-2],[86,38],[86,39],[27,2],[16,7],[5,14],[-10,6],[-4,1],[6,12],[12,7],[35,11],[6,6],[0,9],[-3,7],[-16,13],[2,4],[63,30],[123,19],[4,3],[4,4],[3,7],[7,18],[2,2],[8,3],[33,-9],[16,1],[19,6],[3,3],[3,5],[2,11],[2,6],[7,8],[27,6],[94,47],[21,16],[6,4],[115,21],[25,26],[29,6],[9,8],[2,6],[1,16],[2,6],[4,5],[117,54],[116,55],[5,7],[-60,19],[4,6],[7,4],[37,11],[-19,14],[4,8],[8,6],[54,15],[18,-3],[0,-19],[0,-6],[1,-7],[2,-3],[3,-1],[65,3],[20,-8],[7,-1],[0,-5],[8,0],[30,8],[19,0],[17,-3],[7,-5],[4,-1],[-6,-8],[-67,-24],[-9,-8],[-3,-5],[-1,-5],[-1,-6],[-1,-7],[-1,-3],[-3,-6],[-1,-4],[-3,-11],[-1,-3],[-11,-17],[-26,-14],[-10,-16],[12,-2],[111,38],[112,38],[37,2],[14,-4],[15,-11],[14,-4],[43,5],[66,-21],[5,-4],[12,-15],[17,-7],[6,0],[4,4],[-1,8],[-11,25],[3,1],[64,-22],[5,-4],[12,-18],[4,-2],[11,-1],[11,2],[20,10],[69,3],[-2,7],[-3,5],[-8,8],[-2,4],[-3,4],[-1,6],[-2,6],[8,2],[49,0],[7,5],[9,8],[9,6],[25,4],[6,8],[-6,8],[-11,2],[-31,0],[-14,5],[-3,0],[1,2],[4,9],[3,2],[5,3],[7,2],[12,-2],[5,1],[4,3],[13,14],[4,3],[31,4],[41,-9],[29,5],[4,3],[3,6],[-4,5],[-21,21],[6,4],[5,9],[3,13],[1,13],[92,4],[3,10],[2,6],[3,2],[51,-8],[27,5],[6,5],[-1,6],[1,7],[2,7],[3,3],[4,2],[69,2],[70,2],[15,-4],[-1,-2],[-1,-1],[-3,-2],[13,-5],[120,-1],[119,0],[119,-1],[120,-29],[120,-28],[38,4],[32,-5],[30,-13],[35,2],[75,-17],[76,-18],[44,-23],[34,-28],[3,-4],[7,-16],[4,-5],[4,-2],[69,-8],[15,-9],[-5,-9],[-67,-43],[-74,-17],[-73,-16],[-6,-4],[-2,-4],[-6,-10],[-3,-4],[-5,-4],[-11,-4],[-41,-24],[-16,-5],[-12,-6],[2,-11],[-1,-7],[-2,-3],[-84,-30],[-84,-29],[-4,0],[-9,3],[-4,0],[-24,-17],[-5,-6],[-4,-6],[-4,-10],[-2,-3],[-3,-1],[-92,-11],[-109,11],[-132,-18],[17,-12],[80,-33],[20,-16],[-7,-27],[-12,-13],[-26,-21],[-91,-22],[-29,3],[-82,-11],[-83,-11],[-5,-2],[-6,-8],[-10,-23],[-7,-6],[-116,-3],[-115,-4],[-29,12],[-98,2],[-98,1],[-7,3],[-23,25],[-9,6],[-10,2],[-62,-4],[5,-22],[1,-15],[-5,-8],[-44,5],[-61,-12],[-64,-31],[-71,-11],[-75,9],[-100,35],[-59,2],[-20,8],[-65,10],[-105,-29],[-104,-30],[-81,-1],[-82,-1],[-10,-3],[6,-7],[7,-3],[109,-1],[8,-2],[5,-6],[2,-8],[0,-10],[0,-20],[15,3],[21,18],[102,41],[102,41],[130,-27],[16,-8],[33,-2],[46,-19],[78,-10],[78,-11],[17,-8],[104,6],[103,6],[115,42],[10,-1],[10,-5],[35,-26],[70,-29],[91,-13],[90,-12],[11,-11],[-9,-9],[-134,-67],[-4,0],[-4,2],[-3,3],[-10,14],[-4,3],[-4,-1],[-4,-4],[-3,-6],[-1,-8],[2,-7],[5,-5],[10,-5],[4,-3],[-12,-11],[-3,-3],[-1,-2],[-17,-9],[-111,-10],[-12,-7],[-65,-5],[-37,19],[-9,2],[-81,-17],[-81,-17],[-110,12],[-110,12],[-30,12],[-70,9],[-43,19],[-82,-5],[-45,-23],[-25,-35],[-15,-10],[-109,-24],[0,-5],[50,-5],[7,-3],[-6,-8],[-18,-16],[-7,-3],[-32,-2],[-9,-6],[21,-7],[21,-13],[-77,-62],[-10,-13],[-6,-5],[-2,-4],[-2,-5],[20,-12],[66,2],[4,-1],[3,-4],[2,-6],[1,-7],[1,-5],[0,-6],[2,-6],[6,-8],[14,-2],[6,-5],[1,-8],[0,-8],[-2,-7],[1,-8],[2,-4],[4,0],[6,3],[23,-1],[7,5],[2,5],[3,12],[3,5],[3,2],[83,25],[6,0],[5,-3],[21,-14],[31,-12],[14,-10],[1,-8],[-3,-1],[-4,-4],[-5,-11],[-3,-4],[-35,-22],[2,-10],[4,-10],[3,-9],[0,-14],[-4,-3],[-11,-15],[-14,-9],[-4,-6],[-4,-9],[-4,-24],[-3,-9],[-15,-23],[-2,-7],[3,-4],[15,-6],[4,-4],[4,-6],[3,-7],[0,-8],[-1,-5],[-6,-13],[-5,-17],[-3,-5],[-12,-20],[-7,-7],[-3,-6],[-1,-7],[4,3],[9,13],[15,16],[20,27],[7,5],[16,-1],[8,3],[4,10],[-1,4],[-1,9],[-1,4],[0,4],[0,4],[1,4],[0,5],[3,6],[3,6],[4,4],[4,-1],[0,-5],[4,-4],[3,-5],[2,-7],[1,-9],[0,-15],[0,-4],[-1,-5],[-2,-5],[-1,-5],[0,-6],[3,1],[6,8],[4,3],[4,0],[4,-1],[4,-3],[3,-3],[0,-2],[1,-4],[0,-2],[55,-4],[18,-14],[-2,-7],[-2,-2],[-17,3],[-8,-4],[-4,-3],[-3,-5],[0,-8],[2,-8],[8,-12],[3,-6],[-10,1],[-21,-4],[-10,5],[-9,9],[-5,2],[-5,0],[-5,-5],[-3,-8],[-3,-19],[-5,-12],[-9,0],[-17,10],[-9,2],[-7,-3],[-16,-15],[-8,-1],[-15,16],[-8,1],[-5,-5],[-9,-13],[-4,-4],[-5,-2],[-18,2],[-11,-1],[-5,-3],[-3,-3],[-10,-11],[-21,-8],[-9,-9],[1,-14],[5,-9],[29,-28],[4,-9],[1,-11],[-3,-10],[-5,-7],[-24,-19],[-12,-5],[-87,-1],[-26,7],[-22,12],[-9,1],[-54,-15],[-4,-3],[14,-12],[6,-9],[3,-11],[-33,-5],[-73,9],[-6,-2],[-2,-7],[16,-12],[18,-17],[4,-2],[-5,-6],[-65,-19],[-27,-17],[-4,-7],[88,-3],[7,-3],[6,-8],[-2,-10],[-5,-9],[-6,-7],[-44,-36],[-5,-9],[-2,-9],[-1,-11],[-3,-11],[-6,-13],[-33,-32],[-19,-36],[-1,-4],[-1,-5],[1,-9],[3,-8],[7,-14],[7,-28],[-8,-14],[-28,-10],[4,-7],[8,-12],[2,-9],[-1,-12],[-6,-6],[-13,-4],[-67,-37],[-5,-6],[2,-5],[22,-19],[4,-9],[1,-12],[-4,-8],[-6,-6],[-11,-7],[-44,-14],[-7,0],[-3,-1],[-2,-5],[1,-4],[5,-10],[1,-5],[-2,-2],[-12,-15],[-3,-6],[-3,-13],[-2,-6],[-7,-8],[-7,-6],[-7,-8],[-4,-14],[88,-12],[43,9],[4,-1],[9,-5],[-2,-6],[-40,-54],[-2,-7],[4,-1],[4,1],[4,2],[3,3],[9,15],[46,47],[17,7],[-11,1],[-13,7],[-8,14],[2,22],[7,16],[115,115],[7,2],[49,-2],[101,-46],[102,-47],[19,-13],[84,-18],[84,-17],[17,-11],[12,-3],[16,-11],[4,-1],[10,-1],[5,-2],[3,-4],[12,-15],[14,-10],[8,-9],[4,-2],[-5,-10],[-11,-2],[-21,1],[-6,-3],[-34,-29],[-29,-10],[-7,2],[-8,8],[-84,44],[-85,44],[-20,6],[-46,-8],[-22,-16],[-5,-1],[-129,-4],[3,-13],[10,-8],[119,-37],[19,-13],[0,-2],[0,-2],[0,-2],[0,-2],[-17,-2],[-19,4],[-18,-3],[-3,-2],[5,-2],[5,-5],[1,-8],[-3,-7],[-4,-2],[-20,3],[-77,29],[-21,1],[-9,-4],[2,-8],[5,-4],[12,-3],[10,-6],[86,-20],[86,-19],[6,-4],[3,-6],[-4,-5],[-78,-8],[-8,-5],[-3,-7],[9,-2],[67,8],[70,-9],[70,-10],[21,-19],[6,-3],[38,-6],[8,-7],[3,-11],[3,-32],[12,6],[5,-1],[30,-17],[6,0],[21,2],[14,-1],[9,-4],[5,-1],[3,3],[-6,10],[-3,4],[-3,3],[0,4],[1,2],[1,2],[1,3],[0,3],[1,21],[2,17],[1,9],[13,1],[56,-17],[58,1],[17,-3],[8,-4],[7,-7],[13,-17],[5,-4],[23,-8],[10,-7],[8,-18],[8,-30],[3,-16],[0,-17],[-3,-34],[-1,-12],[4,-28],[0,-9],[-2,-7],[-10,-16],[-3,-8],[-6,-18],[-4,-8],[-9,-10],[-22,-6],[-8,-14],[-2,-7],[-1,-8],[-1,-7],[-2,-4],[-5,0],[-6,4],[-10,11],[-8,6],[-3,0],[-3,-6],[-1,-8],[1,-11],[2,-20],[-14,14],[-14,16],[-8,5],[-15,3],[-7,6],[-6,6],[-6,4],[-25,8],[-4,3],[-13,13],[-9,3],[-91,-4],[-15,5],[-5,4],[-13,17],[-3,2],[-17,-3],[-18,3],[-69,28],[-91,3],[-5,-1],[-10,-5],[-11,-2],[-55,17],[-21,-3],[2,-7],[0,-5],[-2,-3],[-43,-16],[-3,-2],[-7,-7],[-3,-2],[-4,1],[-20,9],[-44,9],[-87,-9],[-43,10],[-63,-7],[5,-8],[9,-2],[26,0],[42,-9],[102,8],[16,-2],[24,-14],[9,-2],[24,5],[8,-5],[-46,-9],[-28,-20],[-7,-3],[-7,-1],[-4,2],[-9,5],[-10,2],[-2,2],[1,2],[-19,2],[-10,-3],[-8,-8],[8,-5],[18,2],[7,-5],[-29,-8],[-5,-6],[-3,-6],[-47,-30],[-47,-7],[9,-9],[10,-7],[-7,-6],[-10,-1],[-20,7],[-24,23],[-3,3],[-4,10],[-3,4],[-10,10],[-10,14],[-7,6],[-32,13],[-8,5],[-16,23],[-6,4],[-6,3],[-19,2],[-57,-14],[0,-4],[10,-1],[10,-4],[4,-5],[1,-3],[-1,-4],[1,-4],[4,-7],[12,-10],[4,-7],[-14,-7],[-48,7],[-32,-4],[-16,-10],[-11,-18],[6,-10],[8,-6],[8,-4],[41,0],[8,-7],[3,-3],[3,-3],[1,-3],[-5,-4],[-9,-6],[-2,-3],[3,-8],[15,-13],[5,-8],[-1,-6],[2,-4],[9,-5],[19,-15],[3,-1],[4,0],[4,0],[2,3],[0,5],[-2,3],[-2,2],[-7,9],[0,4],[4,5],[-3,2],[-2,2],[-2,4],[-1,5],[10,3],[11,6],[13,15],[9,6],[11,3],[12,0],[10,-5],[-5,-3],[-2,-1],[7,-8],[36,4],[19,-7],[18,-13],[-8,-7],[-37,-7],[-11,-5],[-23,-1],[10,-8],[13,-7],[13,0],[6,10],[15,11],[20,-3],[38,-20],[-94,-26],[-7,-10],[57,6],[20,11],[10,3],[12,-5],[-5,-13],[-13,-12],[-13,-7],[-98,1],[-23,6],[-10,8],[-11,12],[-12,10],[-25,0],[6,-6],[17,-14],[-8,-10],[-11,-2],[-23,3],[26,-15],[9,-1],[27,6],[26,-13],[80,10],[80,10],[8,-2],[2,-3],[-2,-5],[-6,-7],[10,-12],[1,-7],[-15,-17],[-7,-12],[-4,-12],[-2,-13],[-4,-12],[-4,-7],[-2,-4],[1,-2],[13,-8],[29,-8],[28,12],[11,1],[0,4],[-3,0],[-10,4],[5,13],[10,6],[12,1],[9,-4],[-6,-3],[-17,-5],[14,-6],[66,13],[9,-4],[47,-34],[34,-7],[7,-5],[20,-20],[7,-2],[16,0],[9,-2],[7,-6],[-7,-5],[-25,-3],[5,-8],[47,12],[14,-4],[4,0],[0,4],[-10,1],[-28,15],[-22,4],[-3,2],[-6,8],[-2,2],[-54,20],[-4,5],[-2,3],[-2,6],[-2,6],[-21,-5],[-8,2],[-14,17],[-7,3],[7,10],[10,4],[37,-6],[56,-29],[29,-7],[27,-14],[51,3],[21,11],[81,7],[25,-8],[24,-24],[18,-36],[8,-4],[-1,-6],[-14,-30],[1,-3],[1,-6],[-11,-2],[-20,5],[-47,-2],[-76,-42],[-120,-1],[-120,-1],[-120,-2],[-13,-6],[-12,-2],[-13,2],[-29,11],[-9,7],[-16,22],[-7,3],[-9,-4],[1,-4],[0,-3],[1,-3],[2,-2],[-9,-11],[-3,-5],[4,-3],[17,-1],[-2,0],[3,-2],[3,-4],[2,-4],[2,-3],[4,-3],[6,-1],[75,2],[76,2],[101,0],[101,-1],[22,-8],[13,-1],[32,-14],[110,6],[52,-27],[29,-36],[4,-6],[16,-23],[21,-13],[42,-14],[-8,-5],[-30,8],[-19,-1],[-7,-6],[3,-13],[-13,-12],[5,-9],[25,-15],[-5,-11],[5,-9],[17,-13],[7,-7],[6,-10],[4,-11],[1,-12],[1,-5],[0,-7],[0,-15],[1,-8],[5,-15],[2,-7],[1,-8],[0,-5],[-1,-4],[-3,-6],[-2,-7],[-1,-16],[0,-7],[-6,-33],[-4,-16],[-7,-16],[-10,-16],[-6,-6],[-12,-6],[-13,-17],[-4,-4],[-81,4],[-8,4],[-15,13],[-11,5],[0,3],[1,5],[-1,3],[-3,3],[-4,2],[-3,2],[-3,5],[7,4],[2,5],[-1,4],[0,5],[4,6],[6,4],[10,4],[-5,8],[-7,5],[-20,6],[-21,15],[-8,3],[-38,-3],[-27,-14],[-74,-12],[-12,4],[-39,28],[-48,13],[-38,22],[-10,9],[-5,20],[-6,14],[-13,10],[-107,58],[-82,23],[-83,22],[-5,-5],[1,-5],[5,-4],[93,-37],[93,-36],[51,-38],[-10,-5],[-133,20],[-132,19],[-18,11],[-2,4],[0,1],[1,3],[-1,4],[-2,4],[-4,-1],[-4,-5],[0,-7],[2,-7],[10,-11],[96,-15],[95,-15],[96,-16],[8,-4],[4,-5],[9,-20],[11,-11],[93,-29],[9,-10],[17,-11],[10,-13],[5,-4],[50,-15],[25,-16],[12,-33],[-48,-10],[-85,10],[-21,-10],[-30,-2],[-111,-70],[-50,-11],[-3,1],[-9,7],[-9,4],[-3,2],[-3,4],[-2,3],[-1,5],[0,8],[-5,14],[-11,10],[-117,51],[-25,1],[7,-10],[19,-5],[18,-10],[37,-12],[57,-32],[-4,-10],[-5,-6],[-13,-5],[6,-4],[19,-4],[4,-2],[13,-14],[28,-11],[28,-1],[44,13],[109,66],[24,-2],[26,-10],[27,-2],[30,5],[15,-1],[14,-8],[-1,-1],[-3,-3],[0,-18],[-20,-26],[-2,-11],[7,-13],[2,-7],[2,-6],[-1,-12],[-2,-6],[-9,-9],[-8,-4],[-3,-5],[0,-10],[1,-5],[4,-6],[6,-8],[20,-20],[10,-13],[2,-10],[-4,-5],[-11,-5],[-8,-11],[-28,-20],[-85,4],[-6,-4],[7,-7],[15,-4],[94,0],[8,2],[9,9],[14,2],[19,9],[48,-8],[41,5],[13,-2],[23,-8],[5,-3],[8,-11],[3,-2],[2,-1],[7,-6],[3,-1],[10,4],[12,-1],[6,-3],[8,-17],[12,-4],[22,0],[3,3],[18,18],[20,12],[11,4],[23,20],[13,4],[13,-3],[13,-8],[11,-13],[-11,-21],[-1,-9],[6,-10],[-6,-6],[-21,-6],[9,-3],[11,2],[10,0],[5,-12],[-2,-1],[-3,-2],[-1,-1],[4,-6],[5,-2],[10,0],[26,-8],[21,-1],[11,-3],[9,-9],[-9,-5],[-11,-10],[-9,-12],[-2,-13],[-5,0],[-13,-3],[-5,-3],[-3,-5],[1,-3],[2,-4],[1,-6],[-2,-10],[-4,-6],[-45,-37],[-3,-4],[-2,-6],[-2,-1],[-70,-17],[-80,12],[-80,12],[-6,10],[1,4],[1,3],[1,2],[-1,5],[-1,1],[-3,5],[-2,2],[0,7],[0,12],[-1,6],[-4,5],[-7,8],[-7,10],[-7,7],[-7,11],[-5,2],[-4,-1],[-14,-6],[-3,0],[-1,2],[-3,8],[-1,2],[-8,2],[-17,-5],[-8,0],[-19,8],[-48,-8],[-119,13],[-66,-8],[-21,-8],[-16,0],[-50,19],[-4,6],[-2,5],[-4,13],[-2,6],[-7,10],[-47,32],[-10,2],[-9,-6],[10,-10],[38,-26],[2,-2],[2,-4],[3,-9],[11,-19],[20,-16],[5,-2],[4,-4],[1,-7],[0,-7],[-7,-5],[-2,-5],[-4,-9],[-4,-4],[-37,-24],[-25,-9],[-43,1],[-26,-11],[-38,10],[-6,-1],[-3,-3],[1,-3],[14,-2],[19,-11],[50,8],[27,-3],[9,-25],[-6,-12],[-11,-11],[-11,-7],[-15,-5],[-13,-8],[-7,-2],[-11,0],[-5,-3],[-5,-5],[8,-4],[20,8],[8,0],[5,-4],[4,-7],[6,-13],[-5,-10],[-15,-6],[-29,-5],[-23,5],[-17,-8],[-3,-5],[3,-6],[6,-3],[30,-4],[17,-11],[50,-8],[-2,0],[7,-1],[16,-7],[12,-8],[0,-3],[-2,-4],[-3,-10],[4,-2],[1,-3],[0,-5],[-3,-6],[9,-8],[20,-8],[9,-8],[-2,-4],[15,-29],[-6,-15],[-1,-3],[0,-4],[2,-7],[0,-3],[-1,-4],[-4,-4],[-1,-4],[0,-7],[1,-8],[1,-7],[3,-2],[1,-3],[0,-7],[0,-13],[-1,-6],[-2,-5],[-1,-5],[2,-6],[3,-3],[8,7],[3,-2],[6,-2],[6,7],[12,17],[-2,10],[-4,8],[-9,14],[1,1],[1,1],[1,1],[1,2],[-2,2],[-1,4],[-1,6],[0,6],[0,2],[-2,5],[0,3],[1,2],[2,5],[1,3],[-1,5],[-2,5],[-1,5],[1,6],[1,4],[-2,5],[-5,7],[-2,5],[-2,5],[-1,4],[-4,4],[-4,1],[-11,1],[-4,4],[-1,5],[5,9],[-1,6],[-2,5],[-3,2],[-7,3],[1,3],[1,2],[0,2],[2,2],[-2,14],[10,11],[24,11],[54,3],[126,-51],[125,-51],[89,6],[13,-3],[7,-3],[5,-6],[1,-7],[1,-6],[1,-5],[5,-2],[-3,-6],[-3,-2],[-3,-3],[-2,-15],[-3,-4],[-3,-3],[-27,-2],[-12,-5],[-9,-9],[3,-6],[4,-4],[4,-2],[4,-1],[0,-3],[-17,1],[-9,-3],[-2,-11],[1,-4],[7,-10],[2,-3],[3,-11],[2,-5],[2,-2],[1,-3],[1,-6],[-2,-5],[-2,-2],[-2,-3],[1,-5],[-1,-8],[-11,-15],[0,-9],[9,-7],[22,1],[7,-6],[1,-11],[-5,-13],[-8,-11],[-6,-7],[-26,-10],[-102,3],[-103,2],[-48,18],[-25,2],[-21,-20],[3,0],[1,-1],[8,-9],[6,-9],[1,-10],[-6,-8],[-7,-2],[-15,1],[-14,-7],[-21,-4],[-51,-24],[-40,-32],[-28,-15],[-30,-2],[-89,23],[-89,23],[-16,9],[-23,4],[-5,2],[-30,27],[-63,22],[-10,6],[-18,19],[-10,7],[-65,33],[-21,18],[-6,4],[-14,3],[-6,5],[-2,6],[-5,14],[-3,12],[0,21],[-2,6],[5,13],[9,3],[18,-4],[42,4],[21,-8],[33,4],[15,-4],[24,-13],[11,-10],[13,-8],[60,-15],[79,-43],[51,-7],[13,8],[34,6],[34,21],[54,12],[-10,3],[-33,-4],[-13,-7],[-17,0],[-48,-24],[-53,-4],[-18,7],[-20,23],[-56,23],[-8,0],[2,0],[-109,47],[-76,1],[-10,4],[-9,7],[-31,33],[-7,5],[-8,0],[-30,-10],[-22,-13],[-4,-2],[-17,3],[-5,-3],[2,-15],[-4,-6],[-8,-3],[-9,-6],[-7,-9],[-3,-10],[-7,-23],[27,-57],[-7,-8],[-7,-3],[-9,0],[-135,42],[-12,10],[-3,9],[5,13],[3,11],[-2,10],[-6,9],[-50,19],[-47,42],[-4,1],[-14,-1],[-3,0],[-2,2],[-2,3],[-1,3],[-1,3],[-1,2],[-16,39],[-4,5],[-7,4],[-22,8],[-14,12],[-5,0],[-3,-1],[-5,-3],[-4,-6],[-1,-6],[3,-7],[38,-30],[8,-13],[-3,-11],[6,-9],[26,-15],[20,-18],[26,-7],[57,-28],[-2,-4],[2,-10],[0,-6],[-3,-9],[-3,-3],[-1,-3],[5,-10],[10,-11],[14,-9],[43,-12],[3,-1],[2,-6],[40,-14],[3,-4],[-2,-9],[-4,-7],[-5,-3],[-79,-6],[-80,-5],[-57,-42],[5,-4],[11,3],[4,-4],[-4,-6],[-1,-8],[2,-6],[0,-4],[-5,-5],[-32,-11],[-38,-32],[-16,-8],[-32,-2],[-24,-8],[-51,-1],[-8,4],[-41,41],[-22,13],[-23,5],[-5,-2],[-11,-9],[-5,-1],[-22,-1],[-51,10],[-96,61],[-16,25],[-9,6],[-20,0],[-4,-2],[-14,-14],[-10,-4],[-4,-4],[-3,-8],[22,2],[11,-2],[15,-19],[44,-34],[59,-16],[-2,0],[5,-2],[14,-10],[6,-2],[20,2],[87,-16],[13,-10],[1,-15],[-4,-3],[-35,-3],[-12,-6],[-5,-4],[-2,-5],[-2,-5],[-1,-8],[-2,-3],[-12,-9],[-13,-15],[-11,0],[-31,10],[-14,9],[-22,5],[-14,7],[-12,2],[-30,-5],[-10,5],[-46,-16],[-57,2],[-19,-4],[-15,-15],[14,-7],[56,6],[12,-3],[7,-10],[-2,-18],[2,-4],[-2,-5],[13,-31],[1,-6],[-2,-7],[-3,-5],[-16,-15],[-19,-6],[-6,-6],[12,-7],[12,7],[11,10],[21,9],[2,7],[-1,29],[1,5],[2,6],[4,9],[1,6],[-2,5],[-2,4],[-2,5],[5,10],[10,8],[31,12],[123,-27],[15,0],[14,9],[31,39],[13,8],[124,3],[31,-7],[46,-31],[93,-16],[93,-16],[1,-5],[1,-7],[1,-7],[3,-4],[12,-11],[-6,-17],[-9,-7],[-10,-5],[-17,-22],[-9,-6],[-26,-7],[-4,-3],[-4,-4],[-3,-5],[-5,-3],[-104,6],[-12,-4],[-11,-11],[-7,-10],[-19,-18],[-33,-20],[-26,-9],[-26,-2],[-25,4],[-92,46],[-51,6],[-89,-28],[-13,0],[-34,20],[-13,2],[-10,-1],[-9,-9],[7,-7],[59,-18],[8,5],[6,-2],[43,12],[68,2],[48,-23],[7,0],[10,-2],[19,-11],[-40,-15],[-36,-3],[-11,-8],[-14,-6],[-5,0],[16,-8],[103,24],[12,-8],[-5,-13],[-10,-36],[-7,-12],[-18,-17],[-8,-12],[3,-1],[9,1],[9,5],[48,61],[6,14],[9,7],[24,-6],[58,15],[9,10],[39,22],[16,15],[12,7],[24,5],[13,-4],[24,-17],[13,-4],[24,8],[7,-4],[2,-4],[3,-12],[2,-4],[1,-4],[4,-3],[11,-5],[22,0],[5,-2],[9,-8],[5,-2],[42,-4],[4,-2],[12,-11],[21,-9],[5,-7],[-10,-11],[-2,-6],[2,-9],[3,-6],[2,-6],[1,-5],[-3,-5],[0,-4],[4,0],[5,-1],[4,-4],[4,-3],[-4,-8],[-2,-3],[-2,-2],[6,-4],[13,7],[6,-3],[-3,-11],[-4,-4],[-6,-2],[-15,-9],[-19,-6],[-33,-17],[-68,-20],[-108,-4],[-108,-4],[0,-4],[9,-4],[40,-10],[86,8],[22,-6],[9,0],[7,-3],[-3,-9],[-36,-59],[-8,-9],[-9,-13],[-2,-4],[0,-7],[0,-9],[3,-9],[6,-16],[-4,-6],[-9,-9],[-4,-5],[5,-3],[7,1],[7,3],[12,7],[3,4],[2,6],[0,10],[-1,7],[-2,4],[0,5],[1,9],[3,7],[4,5],[3,6],[-2,10],[9,12],[22,20],[15,22],[8,6],[38,10],[7,-1],[2,4],[24,8],[20,18],[7,2],[6,-2],[12,-12],[7,-2],[4,1],[11,7],[4,0],[11,-4],[23,5],[8,-5],[19,-26],[30,-23],[18,-8],[11,4],[-2,2],[-6,7],[9,-2],[44,-35],[8,-4],[29,0],[3,-2],[9,-5],[8,-2],[9,1],[6,-3],[3,-13],[-5,-2],[-6,0],[-5,1],[-3,4],[-2,-2],[-2,-1],[-2,0],[3,-6],[4,-2],[21,0],[5,3],[-1,8],[5,5],[5,-5],[4,-7],[5,-4],[-1,-6],[-1,-2],[2,-13],[-27,-28],[-3,-12],[3,-2],[5,1],[9,5],[19,16],[9,4],[10,1],[8,-3],[4,-3],[131,-47],[6,-5],[-6,-11],[-8,-5],[-9,-3],[-8,-5],[15,-10],[8,-3],[7,3],[8,6],[7,2],[8,-2],[20,-11],[70,-21],[18,-13],[17,-6],[9,-6],[2,-4],[4,-5],[0,-6],[-5,-5],[-7,-4],[-33,-8],[-18,-10],[-2,-15],[-13,-16],[-50,-26],[-27,-21],[-13,-16],[-8,-18],[2,-4],[1,-10],[11,-1],[20,7],[6,3],[12,11],[10,4],[9,12],[4,2],[10,3],[71,40],[12,2],[21,13],[11,2],[2,-15],[-5,-11],[-10,-10],[-10,-8],[-10,-5],[-3,-8],[-2,-3],[-3,-1],[-6,-2],[-16,-9],[-3,-4],[-1,-11],[7,-24],[-2,-12],[1,-5],[5,-4],[6,0],[4,7],[1,7],[-1,4],[-2,2],[-3,-1],[0,4],[6,1],[7,4],[13,10],[7,2],[16,-9],[8,0],[-1,3],[0,1],[0,2],[-1,3],[5,10],[11,7],[7,7],[4,9],[-1,5],[-1,5],[1,9],[4,3],[22,13],[8,2],[7,-2],[5,-8],[-5,-12],[6,-4],[68,16],[-3,-4],[-3,-4],[-7,-4],[-2,-7],[-7,-4],[-14,-1],[9,-8],[-6,-9],[-18,-2],[-31,-13],[-8,-8],[17,-9],[12,0],[4,-4],[-14,-14],[-35,4],[-16,-3],[-6,-3],[-20,0],[-6,-3],[-12,-14],[-5,-3],[0,-5],[-6,-28],[-1,-7],[0,-6],[1,-6],[9,-23],[1,-8],[1,-11],[0,-4],[-2,-3],[-1,-2],[1,-7],[2,-4],[8,-8],[4,-4],[-4,-8],[-1,-5],[-1,-11],[1,0],[2,-3],[1,-4],[-1,-1],[-2,-2],[-1,-3],[-2,-8],[11,-4],[12,0],[11,8],[4,19],[2,10],[0,6],[-3,2],[-4,2],[-1,4],[2,8],[13,35],[6,9],[43,36],[7,3],[14,0],[14,-4],[6,-5],[6,-7],[6,-4],[5,4],[-2,5],[-2,5],[-2,4],[-3,2],[15,-4],[5,2],[-3,14],[7,-2],[7,-13],[7,-1],[2,4],[1,5],[2,5],[4,2],[3,-1],[3,-4],[2,-5],[2,-6],[-8,-8],[-18,-9],[-9,-7],[11,-5],[22,5],[11,-4],[-6,-5],[-16,-4],[-6,1],[0,-5],[34,-2],[8,-9],[-7,-2],[-13,-9],[-21,-4],[-7,-4],[-4,-6],[-1,-7],[3,-1],[5,2],[5,4],[6,4],[20,-2],[-4,-4],[-8,-5],[-6,-9],[-4,-3],[-6,-3],[6,0],[18,8],[35,0],[0,-4],[-99,-33],[5,-4],[11,-1],[5,-3],[0,-4],[-2,0],[-6,-4],[7,-4],[8,2],[7,7],[6,9],[5,2],[8,-3],[8,-6],[4,-7],[-5,-3],[-2,-1],[0,-4],[7,-1],[6,-6],[12,-17],[-5,-9],[-4,-13],[-6,-8],[-8,3],[-12,22],[-7,8],[-10,1],[3,-8],[3,-8],[1,-7],[-3,-6],[8,-1],[24,-15],[-9,-6],[-103,-20],[-11,-5],[-48,-5],[10,-10],[91,14],[23,-5],[5,5],[-2,4],[7,1],[12,6],[6,1],[16,-1],[9,-3],[6,-8],[-1,-6],[-1,-8],[1,-7],[5,-4],[-5,-4],[-18,-8],[-8,-3],[-17,-2],[-15,-9],[-29,-2],[0,-5],[21,-3],[53,18],[8,-6],[-20,-13],[-9,-10],[2,-10],[17,16],[10,5],[8,-4],[-10,-8],[10,-3],[18,16],[8,-5],[-11,-16],[-28,-23],[-12,-14],[3,-5],[8,-9],[3,-2],[2,-2],[-2,-4],[-5,-7],[-3,-8],[-3,-2],[-22,-1],[-6,1],[-11,7],[-4,0],[-1,0],[-2,1],[-5,-1],[5,-10],[8,-6],[9,-4],[8,-1],[11,1],[32,14],[4,0],[4,-1],[1,-3],[0,-10],[-2,-3],[-7,-2],[-14,-11],[-5,-1],[-9,0],[-4,-2],[-3,-6],[7,0],[6,3],[6,1],[6,-4],[10,6],[14,-2],[12,-8],[8,-12],[-61,0],[0,-4],[6,-4],[31,-3],[7,-4],[7,-6],[-4,-3],[-6,-2],[-11,1],[2,-5],[2,-4],[6,-7],[-7,-4],[-31,0],[2,-3],[1,-2],[2,-7],[-7,-5],[-2,-9],[3,-7],[8,1],[15,10],[7,2],[9,-4],[0,-5],[-15,-8],[6,-5],[24,-3],[4,-7],[3,-2],[7,6],[4,0],[4,-2],[3,-3],[-17,-28],[-6,-6],[-12,-10],[-10,-15],[-7,-5],[-8,-4],[-17,-1],[-3,0],[-7,5],[-1,2],[-13,-4],[-28,-25],[-14,4],[-3,8],[4,9],[9,13],[3,9],[0,4],[-2,3],[-20,14],[-15,2],[-15,-5],[-42,-28],[-16,-4],[-11,5],[-6,10],[-4,19],[-1,22],[3,19],[-2,3],[2,5],[-9,35],[-2,4],[-5,7],[-2,5],[0,3],[1,3],[1,21],[6,34],[1,9],[1,6],[2,10],[1,12],[-1,9],[-5,5],[-9,0],[-8,-2],[-6,-3],[-12,-12],[-1,-5],[-1,-7],[-1,-4],[-5,-10],[-1,-7],[1,-7],[5,-9],[-4,-4],[-14,-8],[2,-5],[-2,-5],[0,-3],[1,-2],[2,-3],[1,-5],[-1,-4],[-2,-4],[-1,-4],[2,-8],[5,-7],[10,-9],[2,-6],[2,-8],[2,-9],[0,-8],[-1,-8],[-2,-6],[-1,-6],[0,-8],[-2,-8],[-3,-21],[-3,-9],[-6,-9],[-8,-4],[-99,1],[-22,-8],[-69,9],[-94,61],[-18,5],[-17,10],[-34,26],[-25,27],[-13,18],[-3,15],[-2,0],[-2,2],[-1,3],[-1,6],[-3,11],[-15,21],[-5,10],[-7,34],[-2,22],[-2,9],[-1,10],[1,15],[7,23],[1,10],[-5,9],[-3,5],[-1,5],[-1,4],[-2,5],[-8,13],[-45,49],[-22,16],[-17,16],[-4,6],[-1,8],[4,13],[-8,4],[-10,-1],[-9,2],[-4,10],[3,7],[16,23],[-6,13],[-10,-3],[-10,-9],[-10,-5],[-15,0],[-3,-1],[-3,-8],[-2,-3],[-6,-3],[-6,-2],[-6,1],[-5,4],[0,3],[-5,1],[-10,0],[-5,-1],[-10,-6],[-5,-1],[-17,-1],[-7,4],[-14,21],[-17,10],[-9,6],[-8,16],[-3,4],[-10,10],[-3,5],[-7,8],[-17,2],[-6,6],[-5,6],[-13,8],[-5,6],[-4,9],[-5,7],[-6,6],[-7,5],[-5,2],[-16,-2],[-12,4],[-5,0],[-2,3],[-17,5],[-3,2],[-3,3],[-3,2],[-4,1],[-22,-4],[-11,1],[-23,11],[-10,-1],[-22,-7],[-23,-1],[-12,4],[-10,11],[-8,21],[-5,6],[-7,0],[-2,-3],[-3,-3],[-3,-5],[-1,-4],[-3,-24],[-9,-10],[-27,-7],[-52,0],[-8,7],[-17,4],[-17,9],[-61,52],[-5,6],[-10,26],[0,3],[0,1],[2,0],[-5,9],[-29,21],[-11,1],[-5,3],[-10,10],[-12,4],[-42,33],[-2,9],[5,12],[-77,46],[-14,18],[-4,-3],[-6,-13],[-5,-3],[-6,-1],[-17,1],[-16,7],[-18,4],[-5,1],[-34,32],[-36,18],[-27,24],[-8,5],[-9,2],[-4,-2],[-2,-5],[-1,-5],[-2,-4],[-4,-3],[-8,-3],[-3,-3],[0,-4],[9,-3],[18,5],[9,-4],[6,-4],[26,-8],[28,-33],[-12,-9],[-18,-8],[-6,-11],[9,-12],[83,-9],[82,-9],[11,-7],[6,-13],[-14,3],[-26,11],[-13,2],[-4,-3],[-5,-5],[-3,-6],[1,-2],[18,-2],[88,-45],[89,-45],[-1,-6],[-7,-14],[-2,-6],[-2,-6],[-2,-5],[-3,-5],[-5,-4],[-13,-1],[-49,7],[-15,-2],[-35,-22],[-12,-3],[-23,12],[-12,2],[-7,-10],[16,-4],[5,-4],[-9,-6],[-119,-10],[-23,8],[-5,-4],[0,-1],[1,-1],[0,-2],[-1,-4],[20,-10],[71,7],[71,6],[30,15],[25,3],[17,7],[73,-12],[74,-12],[-5,-10],[-8,-7],[-23,-9],[-16,-1],[-6,-6],[31,-21],[4,0],[1,7],[7,9],[14,7],[25,6],[15,-1],[46,-15],[14,2],[6,-2],[10,-11],[5,-2],[46,4],[21,13],[35,-8],[15,7],[31,-11],[13,0],[27,8],[58,-8],[21,-9],[20,-19],[18,-23],[10,-10],[9,-4],[17,1],[5,-1],[2,-3],[2,-5],[2,-5],[3,-3],[-1,-9],[-1,-31],[-3,-7],[-21,-23],[-2,-11],[-9,0],[-46,27],[-11,2],[-9,-5],[12,-12],[40,-24],[4,-4],[-6,-12],[-22,-8],[-8,-7],[-4,-5],[-17,-5],[-17,-11],[-19,-4],[-6,-4],[-6,-5],[-8,-10],[-4,-4],[-5,-2],[-21,0],[-21,-8],[-17,0],[-6,-3],[-3,-3],[-6,-13],[-4,-4],[-11,-1],[-4,-3],[-9,-9],[-11,-6],[-112,-23],[-90,8],[-28,-8],[-70,4],[-3,8],[-10,23],[-6,9],[-46,55],[-4,6],[-2,8],[-1,7],[-2,5],[-4,4],[-5,2],[-5,-3],[-3,-4],[-4,-3],[-16,0],[-5,-4],[3,-11],[12,-15],[6,-10],[10,-22],[6,-8],[16,-5],[10,-5],[9,-8],[7,-9],[6,-13],[-5,-6],[-19,-1],[-11,2],[-27,18],[-32,0],[-5,2],[-8,8],[-4,2],[-10,-1],[-36,-12],[-13,1],[-5,2],[-8,8],[-4,2],[-20,-4],[-10,-5],[-3,-8],[84,-17],[11,-10],[2,-17],[13,0],[3,2],[3,1],[20,-10],[0,-8],[-4,-9],[-5,-8],[-6,-14],[-6,-30],[-4,-15],[-9,-16],[-30,-39],[-11,-8],[-14,-4],[-27,0],[0,-4],[6,-7],[7,-4],[14,-1],[0,-4],[-7,-4],[-12,-13],[-15,-5],[-15,-9],[-8,-2],[-20,2],[-7,-2],[-3,-3],[-8,-7],[-4,-2],[-33,4],[-89,-26],[-7,-8],[-4,-2],[-27,5],[-7,-2],[-7,-4],[-3,-8],[0,-1],[0,-3],[13,-8],[2,-4],[0,-5],[-3,-3],[-2,-3],[-2,-5],[26,0],[22,11],[8,1],[7,3],[12,14],[7,3],[8,2],[26,11],[59,3],[9,2],[14,16],[9,1],[18,-2],[32,4],[-3,-5],[-2,-3],[-3,-1],[-4,1],[2,-7],[2,-3],[2,-2],[-1,-3],[-6,-12],[-4,-4],[-2,-6],[3,-10],[3,-6],[15,-14],[11,-7],[36,9],[17,-1],[119,21],[120,21],[33,-8],[44,7],[29,15],[16,2],[59,-5],[13,-8],[45,-48],[-5,-7],[-7,-5],[-6,-3],[-17,-2],[-2,-4],[1,-8],[-69,-24],[-7,-1],[-36,7],[-22,15],[-11,1],[-13,-12],[-17,-6],[-16,-15],[-10,-5],[-23,-4],[-10,-4],[-28,-31],[-5,-8],[-6,-5],[-75,-24],[-21,-16],[-11,-6],[-24,-4],[-56,31],[-41,1],[-2,-3],[-15,-3],[-30,-25],[-16,-5],[-26,9],[-4,-5],[2,-10],[6,-9],[7,-7],[6,-2],[19,4],[23,0],[38,12],[34,0],[7,-4],[13,-20],[9,-5],[6,-5],[3,-2],[3,0],[7,4],[19,2],[16,11],[58,13],[12,-1],[8,-7],[1,-6],[0,-7],[-2,-13],[0,-8],[1,-5],[2,-4],[3,-3],[9,-6],[37,7],[9,3],[7,9],[26,57],[3,9],[-2,4],[-2,3],[-2,7],[2,6],[3,5],[1,5],[-2,8],[23,21],[8,3],[13,-4],[6,0],[7,4],[20,24],[7,5],[11,2],[58,-6],[7,-4],[20,-19],[59,-8],[14,8],[11,9],[70,30],[21,18],[123,42],[8,7],[21,5],[15,8],[16,1],[10,-3],[3,-6],[-10,-11],[-11,-4],[-23,-1],[-10,-8],[34,0],[-4,-4],[-11,-8],[-2,-6],[-1,-2],[-3,-6],[-1,-7],[3,-9],[0,-2],[3,-3],[2,-1],[25,0],[4,1],[2,4],[2,5],[2,6],[4,5],[35,29],[7,3],[9,-1],[11,-4],[10,-8],[4,-10],[1,-7],[2,-6],[3,-4],[4,-1],[3,2],[1,4],[0,3],[1,3],[10,4],[10,-5],[10,-7],[19,-7],[19,-14],[7,1],[5,-6],[23,-8],[2,-4],[1,-4],[0,-4],[1,-3],[2,-1],[10,1],[58,-8],[11,-7],[40,-7],[6,-4],[4,-7],[4,-4],[5,-2],[12,-2],[3,-2],[5,-6],[9,-3],[18,10],[11,-4],[7,-5],[22,-1],[7,-2],[13,-8],[6,-2],[110,0],[110,0],[110,1],[8,5],[15,4],[22,11],[28,4],[4,-3],[4,-7],[1,-5],[-3,-2],[-5,-5],[-13,-22],[-2,-6],[-23,-20],[-15,-22],[-11,-6],[-12,-11],[-6,0],[-4,7],[-1,7],[-3,6],[-4,3],[-6,1],[-2,-1],[-1,-7],[0,-6],[-2,-4],[-2,-3],[-4,-1],[-12,2],[-4,-5],[-1,-15],[-4,-3],[-43,4],[-7,-3],[-5,-8],[-6,4],[1,5],[1,3],[2,2],[2,2],[-7,0],[-14,5],[-7,0],[-4,-3],[-5,-4],[-3,-6],[-2,-6],[4,-9],[9,-3],[24,-4],[5,-2],[2,-4],[-1,-2],[-8,-7],[-7,6],[-24,3],[-5,4],[-10,16],[-10,9],[-9,1],[-8,-5],[-7,-9],[13,-16],[2,-6],[-2,-6],[-6,-2],[-36,6],[-12,-2],[-11,-10],[3,-1],[6,-3],[75,-7],[12,-12],[4,-1],[3,-4],[-2,-9],[-2,-4],[-21,-15],[-9,-2],[-21,5],[-20,10],[-8,9],[-15,22],[-10,8],[-10,5],[-10,-1],[-5,-5],[0,-2],[4,-2],[6,0],[4,-2],[5,-8],[8,-7],[5,-12],[5,-13],[1,-6],[2,-6],[-2,-1],[-27,6],[-17,-7],[-62,-11],[-83,14],[6,-6],[57,-16],[7,-7],[4,-10],[2,-11],[3,-9],[6,-6],[13,-8],[0,-4],[-11,-5],[-21,-2],[-10,-5],[0,-3],[22,-1],[8,-4],[-7,-16],[-12,-11],[-34,-20],[-35,14],[-3,7],[-1,9],[-3,9],[-5,7],[-6,2],[-4,-4],[-2,-11],[-4,-6],[-7,0],[-54,16],[-14,10],[-7,2],[-6,-3],[41,-27],[18,-2],[8,-4],[4,-7],[4,-8],[3,-10],[0,-10],[-2,-6],[-7,-2],[-13,2],[2,-7],[1,-3],[2,-2],[-4,-4],[0,-4],[4,-2],[8,-4],[4,-2],[-4,-6],[-7,0],[-35,14],[-2,4],[-21,-3],[-7,3],[7,-8],[-1,-10],[-6,-10],[-14,-18],[-9,-5],[-8,0],[-9,6],[0,4],[11,4],[-6,3],[-24,-3],[-23,8],[-6,5],[-1,3],[-3,10],[-3,3],[-7,-1],[-2,-2],[1,-5],[-2,-4],[-1,-2],[0,-1],[-3,-1],[2,-4],[10,-11],[11,-6],[9,-10],[8,-22],[-4,0],[-11,-3],[-9,-6],[-12,-1],[-6,-2],[0,-5],[8,-3],[25,3],[6,-1],[3,-5],[0,-6],[-6,-8],[-11,-7],[-38,-1],[0,4],[2,1],[1,1],[1,1],[2,1],[0,4],[-7,-1],[-25,3],[-12,9],[-35,12],[-7,-2],[0,4],[-4,-5],[-21,-8],[-5,-4],[-2,-4],[2,-4],[3,-8],[-17,2],[-4,-2],[-2,-7],[3,-3],[57,-2],[-3,0],[15,-2],[6,-5],[4,-9],[-2,-5],[-1,-4],[0,-6],[1,-6],[-8,-4],[-18,-1],[-8,-6],[5,-4],[5,-3],[6,-2],[5,0],[-10,-13],[-19,0],[-19,7],[-11,10],[1,4],[-2,0],[-7,-4],[-13,-4],[10,-10],[14,-22],[8,-8],[-3,-11],[-5,-5],[-14,0],[0,-5],[2,0],[0,-4],[-9,2],[-10,7],[-5,9],[6,7],[-36,0],[-30,19],[-9,2],[-10,-5],[28,-27],[2,-8],[-9,-7],[-21,-7],[11,-6],[33,2],[9,-5],[5,-8],[-1,-8],[-10,-3],[-42,4],[-18,-4],[0,-2],[-3,-11],[-1,-3],[8,-5],[25,-3],[6,-4],[-3,-8],[-11,-15],[-11,-3],[-34,10],[-9,-9],[14,-8],[-4,-2],[-7,-2],[-3,-2],[-3,-1],[-4,0],[-2,0],[3,-5],[0,-4],[-28,-25],[-34,-5],[-7,3],[-5,4],[-13,-5],[-6,1],[-4,3],[-12,1],[-5,-2],[-3,-1],[-1,-2],[-5,-7],[-1,-5],[1,-3],[2,-3],[1,-3],[2,-3],[2,-1],[2,-2],[0,-6],[-1,-3],[-3,-1],[-3,-1],[-3,1],[0,-4],[6,0],[-5,-12],[-11,-10],[-25,-12],[-10,0],[-4,1],[-3,4],[-5,7],[-3,2],[-8,-1],[-20,-13],[-10,-3],[-10,2],[-8,6],[-3,8],[7,13],[-14,2],[-28,-40],[-20,9],[-11,-3],[-10,-7],[-6,-6],[0,-6],[2,-12],[-1,-2],[-4,-2],[-7,-5],[-2,-1],[-24,8],[-5,5],[-6,5],[-18,-2],[-14,4],[-7,-2],[-4,-5],[6,-9],[15,-9],[8,-5],[4,-11],[-6,-2],[-10,2],[-11,-5],[-39,3],[-20,6],[0,4],[3,3],[6,6],[2,4],[-26,0],[-8,-6],[-6,-11],[-7,-9],[-18,6],[-8,-6],[-2,-7],[43,-16],[-8,-9],[-31,-2],[-10,-5],[-9,6],[-20,9],[-8,11],[-4,13],[-2,12],[-4,8],[-9,1],[-11,-4],[-1,-8],[2,-12],[-2,-14],[0,-6],[5,-15],[-1,-8],[-3,-2],[-4,4],[-5,9],[-4,-6],[-3,-7],[-4,-6],[-5,-2],[-4,3],[-12,11],[-14,18],[-13,4],[-25,1],[3,-4],[9,-5],[5,-3],[3,-5],[8,-16],[0,-4],[-11,-8],[-42,12],[-17,0],[3,-14],[-3,-6],[-6,-1],[-6,1],[-7,0],[-6,-4],[-5,-5],[-6,-3],[0,-4],[2,-1],[3,-3],[2,0],[-6,-10],[-8,-1],[-36,12],[-9,0],[-5,-5],[-2,-11],[-1,-15],[-27,18],[-9,2],[0,-11],[-7,2],[-28,20],[-5,6],[-6,4],[-7,1],[-6,-4],[-2,-8],[1,-8],[5,-9],[7,-5],[7,-3],[5,-4],[4,-12],[-11,-18],[-7,-7],[-8,-3],[-5,5],[-19,29],[-1,2],[-4,-3],[-10,-5],[-1,-4],[-2,-7],[-1,-18],[-3,-7],[-8,-2],[-17,10],[-8,-8],[8,-6],[14,-9],[5,-10],[0,-4],[-8,7],[-10,3],[-19,3],[-4,1],[-14,11],[-10,3],[-4,4],[-3,5],[1,6],[6,14],[-19,-4],[-4,2],[-10,5],[-12,4],[-2,6],[0,8],[0,9],[-1,13],[-2,5],[-4,1],[-4,4],[-4,7],[-2,7],[-3,3],[-5,-1],[-7,-10],[-2,-2],[-10,-4],[-9,-1],[-5,-3],[-4,-6],[-1,-13],[-4,-7],[-7,-3],[-6,-6],[2,-14],[5,-7],[14,-13],[2,-4],[-2,-3],[-5,-3],[-7,-2],[-4,0],[-7,0],[-16,12],[-9,4],[-9,1],[-21,-3],[-8,-6],[4,-8],[8,0],[16,4],[7,-2],[8,-5],[7,-8],[5,-10],[1,-2],[-1,-4],[1,-5],[1,-5],[2,-2],[5,-2],[2,-2],[16,-26],[-6,-5],[-7,-4],[-10,8],[-4,1],[-3,-2],[-3,-4],[-3,-4],[-2,-3],[-5,-1],[-14,5],[-5,-1],[-8,-6],[-4,-1],[-18,1],[-7,5],[-8,11],[-3,7],[-1,6],[1,13],[3,17],[0,9],[-2,5],[-16,1],[-59,20],[-41,-1],[7,-9],[83,-33],[5,-7],[4,-25],[3,-10],[1,-10],[-4,-7],[7,-4],[5,-5],[-9,-5],[-11,-1],[-11,3],[-7,7],[1,3],[1,1],[2,1],[-8,-2],[-14,-9],[-7,-2],[-11,0],[-4,1],[-5,6],[-2,1],[-10,5],[-4,0],[-10,-8],[-3,-1],[-14,4],[-7,1],[-6,-5],[2,-2],[5,-6],[-5,-7],[-22,6],[-5,-5],[-2,-3],[-6,4],[-8,9],[-4,0],[-2,0],[-1,-2],[-1,-5],[-3,0],[-5,3],[-5,2],[-14,10],[-61,24],[-12,9],[7,7],[9,2],[17,-1],[-8,7],[-11,3],[-10,-2],[-9,-4],[-3,-1],[-4,-4],[-1,-6],[2,-10],[5,-5],[13,-4],[5,-7],[-7,-5],[-9,-3],[-31,0],[-6,3],[-6,9],[1,2],[0,1],[1,1],[-21,-3],[-2,3],[-1,6],[-2,10],[-1,1],[0,8],[0,3],[4,9],[3,6],[2,3],[-1,2],[-4,5],[-4,3],[-4,0],[-3,2],[-2,7],[4,0],[5,2],[3,4],[-1,7],[4,3],[6,-2],[5,-4],[21,-3],[8,1],[6,5],[-5,6],[-6,4],[-7,2],[-86,8],[-3,-1],[-7,-6],[-3,-1],[-6,0],[-6,2],[-5,6],[-2,10],[-2,6],[-12,13],[-3,8],[0,9],[1,6],[-1,6],[-6,7],[-13,6],[-3,5],[-1,13],[2,7],[6,17],[2,9],[-7,6],[-4,0],[-4,-6],[-12,-26],[-4,-5],[-5,-2],[-17,14],[-4,6],[2,6],[5,19],[-9,12],[-2,4],[-1,6],[-1,12],[-2,6],[-3,9],[-11,22],[-5,6],[-9,3],[-8,-4],[-4,-11],[2,-16],[5,-9],[7,-7],[8,-4],[7,-1],[-6,-3],[-2,-17],[-8,-4],[-23,1],[-9,3],[19,-48],[12,-18],[15,-11],[31,-14],[17,2],[7,-7],[4,-11],[3,-12],[5,-7],[1,-10],[25,-51],[-5,-4],[-7,3],[-6,5],[-24,12],[-47,5],[-13,7],[-4,-1],[0,-3],[0,-11],[0,-5],[3,-5],[5,-2],[4,1],[8,9],[6,1],[12,-4],[38,-24],[-2,-2],[-2,-6],[25,4],[14,-3],[6,-11],[2,-8],[6,-11],[2,-8],[0,-5],[-2,-4],[0,-6],[2,-9],[-6,1],[-17,7],[-4,-1],[-9,-7],[-6,0],[2,-7],[4,-4],[9,-5],[-1,-7],[-3,-4],[-3,-3],[4,1],[9,1],[-3,-9],[-4,-5],[-3,-5],[0,-10],[4,-5],[12,-3],[4,-8],[-6,0],[-15,4],[1,-3],[1,-10],[1,-3],[-8,0],[-8,7],[-6,2],[-2,-15],[4,-3],[7,-10],[6,-9],[-4,-5],[-37,7],[-10,11],[-6,3],[-25,-8],[-28,0],[-6,-3],[-1,-6],[3,-8],[4,-8],[-10,-7],[-24,-6],[-10,-7],[3,-9],[-3,-7],[-5,-5],[-20,-12],[-2,-3],[-2,-4],[-2,-3],[-8,-3],[-6,-6],[-16,-5],[-8,-7],[-35,-2],[-22,9],[-7,1],[-8,-1],[-4,-4],[-2,-10],[2,-8],[6,-4],[5,-2],[16,-1],[8,-3],[5,-8],[-3,-2],[-7,-9],[-1,-4],[-2,-5],[-4,-3],[-4,-2],[-3,-2],[-12,-18],[-6,-6],[-7,-2],[-10,-1],[-4,1],[-11,11],[-4,1],[-8,-7],[2,-11],[7,-9],[7,-6],[-10,-12],[13,4],[6,-1],[2,-9],[-3,-8],[-6,-7],[-12,-7],[0,-4],[18,-9],[3,-3],[-1,-8],[-4,-3],[-4,-1],[-3,-3],[-5,-12],[-4,-4],[-5,-2],[-9,-1],[-5,2],[-2,7],[4,5],[-3,6],[-5,2],[-3,-6],[-3,-1],[-15,2],[1,-2],[1,-2],[0,-2],[0,-2],[-6,1],[-7,3],[-7,1],[-6,-5],[9,-8],[-1,-1],[0,-1],[-1,-2],[7,-3],[35,-5],[0,-4],[-4,0],[-11,-4],[0,-4],[6,-1],[5,-2],[2,-5],[-4,-8],[4,-9],[13,-8],[4,-8],[-33,-8],[-18,0],[-4,2],[-3,3],[-2,4],[-3,3],[-2,0],[-2,-1],[-17,-18],[0,-3],[4,-4],[18,6],[5,-1],[16,-11],[-5,-14],[-4,-6],[0,-5],[9,-8],[-6,-8],[-3,-6],[-1,-6],[1,-4],[3,-5],[2,-5],[-2,-6],[-3,0],[-13,12],[-4,1],[-13,-1],[2,0],[-4,-1],[-3,-4],[-3,-5],[-1,-8],[-2,-6],[-5,-3],[-29,-7],[-11,-6],[-7,-9],[12,-3],[11,6],[10,3],[9,-14],[-1,-1],[1,-3],[-6,-4],[-62,4],[5,-5],[18,-11],[2,2],[6,-7],[1,-3],[-8,-5],[-8,2],[-8,5],[-8,2],[-7,-4],[2,-6],[6,-6],[7,-4],[-3,-6],[-7,-10],[-2,-5],[-7,-23],[-1,-8],[1,-7],[3,-11],[2,-9],[2,-4],[4,-3],[4,0],[4,1],[3,-2],[0,-7],[-3,-10],[-7,-5],[-5,2],[2,13],[-12,5],[-3,3],[-3,6],[-3,6],[-3,4],[-5,0],[2,-7],[6,-21],[3,-4],[0,-2],[-1,-4],[-2,-2],[-3,2],[-3,6],[-3,3],[-2,1],[3,-24],[-8,-7],[-14,3],[3,-8],[-1,-1],[-1,-2],[-1,-1],[5,-8],[-1,-5],[-8,-8],[-4,-5],[-4,-7],[-3,-7],[1,-5],[-11,-20],[-4,-5],[-6,-2],[-3,4],[1,8],[6,17],[3,17],[2,7],[0,7],[-3,5],[-5,1],[-5,-7],[2,-9],[-2,-8],[-14,-23],[-4,-5],[-4,12],[-3,8],[-2,9],[4,18],[0,10],[-2,9],[-3,8],[-3,17],[-4,-8],[-2,-16],[2,-9],[0,-4],[-12,-19],[-4,-3],[-7,-3],[-4,-4],[10,0],[5,-4],[4,-8],[-4,-5],[-9,-4],[-4,-3],[6,-12],[19,-9],[7,-12],[-12,-11],[-3,-5],[-3,-4],[-13,2],[-5,-6],[-2,-10],[-1,-12],[-3,-9],[-6,-2],[-1,-3],[-4,-1],[-12,1],[-5,-2],[-4,-2],[-8,-9],[0,-4],[4,0],[2,3],[3,3],[3,2],[3,0],[5,-3],[2,-1],[0,-4],[-2,-9],[-4,-10],[-3,-5],[-4,0],[-4,3],[-8,15],[-3,3],[-2,-4],[-1,-7],[1,-7],[0,-12],[3,-2],[1,-2],[0,-3],[-13,-1],[-3,-5],[-3,-6],[-3,-5],[-5,0],[-6,3],[-2,4],[1,1],[2,2],[2,3],[0,5],[-1,4],[-3,3],[-3,-1],[-3,-2],[-3,-2],[-18,-3],[2,0],[-1,-1],[-3,1],[3,-6],[5,-5],[2,-6],[-5,-9],[-6,-5],[-7,-2],[-42,28],[-3,5],[4,7],[2,10],[1,11],[1,10],[-2,7],[-5,-2],[-9,-11],[-1,-2],[-2,-9],[-1,-2],[-6,0],[-2,-1],[-3,-2],[-2,-8],[1,-9],[0,-7],[-4,-5],[2,-6],[3,-2],[4,1],[4,-1],[15,-12],[21,-9],[6,-7],[-8,-11],[-15,-4],[-27,3],[-37,24],[-10,4],[-9,0],[-4,1],[-4,3],[2,5],[2,6],[-1,7],[-2,2],[-4,-1],[-5,-4],[-8,-11],[1,-2],[1,-6],[-25,0],[-5,5],[-6,19],[-6,5],[-5,2],[-5,7],[-13,21],[-6,6],[-6,5],[-6,3],[0,4],[4,3],[5,1],[5,2],[3,7],[-22,-3],[-5,4],[-5,-3],[-8,-11],[2,0],[1,-4],[4,-5],[6,-5],[5,-2],[3,-3],[7,-11],[5,-4],[7,-9],[3,-1],[5,1],[3,-1],[3,-4],[2,-4],[0,-4],[-1,-5],[2,-4],[-4,-7],[-5,-6],[-10,-7],[0,-4],[19,4],[5,0],[4,-3],[8,-7],[4,-2],[10,-2],[3,-2],[0,-4],[-10,-6],[-23,-4],[-9,-11],[18,4],[4,-2],[2,-6],[2,-6],[4,-5],[3,-7],[2,-8],[1,-6],[0,-7],[-4,-8],[1,-5],[-7,0],[-6,2],[-4,7],[1,11],[-2,2],[-2,3],[-3,7],[-1,2],[-1,8],[0,2],[-6,5],[-7,3],[-7,0],[-5,-4],[4,-6],[9,-2],[4,-4],[1,-4],[3,-16],[-6,-9],[-10,0],[-20,5],[-8,7],[-11,-1],[-9,-8],[-6,-15],[7,2],[14,5],[7,1],[30,-12],[4,-4],[-11,-6],[-13,-2],[-22,8],[-7,0],[0,-4],[3,0],[2,-1],[3,-3],[-10,1],[-5,-2],[-2,-7],[5,0],[9,-4],[5,0],[0,-4],[-4,0],[-3,0],[-4,-2],[-3,-2],[0,-4],[2,-2],[4,-4],[2,-2],[0,-4],[-26,-18],[-16,-6],[0,-5],[1,-1],[3,-3],[-12,-14],[-4,-2],[-4,1],[-8,7],[-6,-2],[-6,-4],[-7,-2],[-7,4],[6,13],[2,8],[-2,4],[-10,-13],[-6,-5],[-3,7],[2,7],[3,9],[1,7],[-3,3],[-3,-1],[-5,-8],[-2,-2],[-4,-1],[-10,1],[0,-4],[2,-1],[6,-3],[-3,-8],[1,-12],[-2,-9],[1,-4],[1,-4],[-10,2],[-5,8],[-1,14],[-1,37],[1,15],[4,12],[8,9],[-5,9],[-8,-1],[-17,-8],[-20,5],[-9,-1],[-8,-7],[4,-5],[5,-4],[5,-3],[5,-1],[3,1],[3,1],[2,1],[2,-3],[0,-3],[-1,-2],[-2,-3],[-9,-27],[-4,-3],[-41,-15],[-16,-14],[-6,-2],[-41,0],[4,-8],[5,-1],[7,2],[7,-1],[-6,-19],[-3,-5],[-6,-6],[-30,-16],[-7,-1],[-5,2],[-3,7],[5,10],[-4,8],[2,-1],[1,1],[-1,5],[-3,5],[-5,6],[0,2],[-1,8],[-1,2],[-2,2],[-4,2],[-2,2],[0,10],[4,12],[6,11],[2,8],[1,6],[4,11],[1,7],[-2,5],[-3,2],[-5,0],[-3,-1],[-5,-7],[-2,-11],[1,-12],[4,-11],[-5,-3],[-5,5],[-5,7],[-5,4],[-3,-4],[3,-8],[8,-17],[-4,-7],[-5,-5],[4,-6],[4,-10],[3,-8],[-4,-4],[-28,4],[0,-4],[31,-18],[11,-3],[-3,-15],[-5,-13],[-6,-7],[-9,-1],[-7,4],[-7,8],[-7,5],[-8,-1],[0,-4],[17,-12],[7,-8],[3,-3],[4,-1],[-6,-5],[-8,1],[-70,48],[-25,29],[-6,4],[-18,8],[-11,12],[-3,0],[-1,-2],[-2,-11],[-1,-3],[-5,-4],[-12,-1],[-6,-3],[-4,-7],[-4,-6],[-4,-3],[-6,4],[0,4],[4,2],[4,8],[2,8],[3,6],[3,3],[7,5],[3,4],[2,4],[3,9],[3,4],[-13,6],[-4,5],[4,9],[-3,1],[-4,3],[-3,4],[1,6],[3,6],[11,10],[7,5],[24,-2],[-4,3],[7,17],[4,5],[6,2],[12,-3],[3,1],[0,4],[-2,7],[0,2],[-1,4],[-1,5],[0,5],[2,5],[2,3],[2,2],[13,18],[6,6],[9,5],[35,43],[6,1],[11,-2],[6,1],[6,3],[11,8],[0,4],[-7,10],[-6,4],[-49,-14],[-8,3],[-10,11],[-8,2],[-7,-3],[-12,-11],[-6,-1],[-11,3],[-22,13],[-17,5],[-13,9],[-5,6],[-3,8],[-2,7],[-3,18],[-1,2],[-2,-2],[-1,-6],[-1,-7],[0,-4],[1,-14],[0,-2],[-3,-5],[-6,-2],[-8,-1],[-3,3],[-2,2],[-2,2],[-2,0],[0,2],[0,3],[-12,-2],[-27,3],[-10,-7],[-2,-8],[-1,-5],[1,-11],[106,-27],[5,-4],[9,-9],[5,-3],[0,-4],[-15,-20],[-6,-4],[-6,-1],[-5,3],[-2,5],[4,5],[0,4],[-29,-4],[-7,2],[-7,4],[-6,1],[-6,-7],[15,-9],[10,-12],[10,1],[5,-5],[-8,-8],[5,-2],[0,-4],[-3,-6],[-4,-4],[-3,-2],[-6,0],[-3,-2],[-2,-3],[-4,-12],[-4,-5],[-5,-5],[-5,-3],[-8,-1],[-6,-3],[-3,0],[-2,1],[-2,4],[-1,4],[-1,2],[-6,-1],[-1,-6],[2,-7],[5,-6],[5,-2],[15,1],[10,6],[3,-2],[2,-7],[1,-10],[-3,-5],[-6,-3],[-4,-4],[2,-6],[0,-11],[2,-11],[1,-12],[0,-13],[-4,-7],[-8,-6],[-9,-4],[-5,-1],[1,7],[2,9],[-1,9],[-3,3],[-2,-2],[-7,-8],[-4,-2],[0,4],[0,4],[0,3],[-1,1],[-4,-1],[-2,-3],[-4,7],[-4,0],[-2,-4],[2,-11],[3,-2],[7,-5],[2,-3],[-1,-5],[-1,-4],[-3,-4],[-2,-1],[-29,0],[-13,5],[-11,15],[3,4],[1,7],[-1,7],[-7,6],[-4,13],[-2,3],[-3,2],[-7,6],[-4,1],[-7,-1],[-2,-1],[-3,-2],[9,-20],[1,-9],[-1,-9],[-1,-8],[-1,-7],[3,-8],[5,-6],[39,-24],[5,-7],[0,-2],[-2,-6],[12,-1],[32,-11],[5,-3],[1,-7],[-1,-9],[-2,-7],[-4,-2],[-18,4],[2,-5],[4,-7],[2,-4],[-1,0],[-2,0],[-1,0],[2,-6],[1,-2],[0,-3],[-5,-10],[0,-2],[0,-4],[1,-5],[1,-5],[-5,1],[-4,3],[-4,5],[-4,3],[-6,-1],[4,-7],[6,-7],[4,-3],[-3,-18],[-7,-5],[-10,2],[-9,6],[-1,4],[-3,1],[-9,0],[-3,-1],[-4,-3],[-3,-1],[-1,2],[-4,5],[-1,1],[-4,-4],[-2,-22],[-3,-10],[-3,-3],[-4,-2],[-4,-1],[-3,2],[-2,4],[0,4],[0,5],[1,5],[2,15],[5,6],[7,4],[7,6],[-7,3],[-11,-5],[-5,2],[-1,3],[-2,9],[-1,4],[-3,2],[-2,-2],[1,-4],[2,-4],[-3,-8],[-2,-4],[-1,-5],[1,-3],[1,-4],[1,-5],[-1,-3],[-4,-2],[-4,2],[-5,4],[-2,3],[1,4],[3,13],[-5,2],[-7,1],[-4,-2],[2,-5],[0,-5],[-14,-1],[-4,1],[-5,7],[-4,7],[-5,3],[-6,-4],[-2,-13],[8,-10],[12,-7],[9,-2],[3,1],[2,2],[2,1],[3,-4],[3,-1],[1,-2],[-1,-8],[1,-2],[5,-12],[2,-7],[-2,-5],[-3,1],[-10,9],[-4,2],[-25,0],[-6,1],[-9,12],[-5,4],[-3,-1],[-3,-3],[-3,-3],[-5,-17],[-8,-6],[-10,1],[-7,8],[3,1],[1,1],[0,1],[2,1],[-9,-2],[-9,-4],[-16,-15],[1,13],[1,4],[-5,8],[-7,24],[-4,7],[-5,11],[-2,3],[-3,0],[-3,-3],[-3,0],[-15,17],[-12,3],[-11,7],[-7,21],[-7,-16],[3,-6],[8,-4],[8,-7],[2,-5],[6,-15],[6,-10],[2,-6],[-1,-8],[5,0],[4,-2],[3,-5],[1,-8],[-2,-6],[-5,-2],[-10,2],[-3,3],[-6,12],[-4,1],[-3,-4],[-1,-8],[2,-9],[2,-7],[-2,-6],[-3,-4],[-3,-1],[-3,6],[-2,8],[1,6],[1,7],[1,8],[1,9],[0,4],[-1,1],[-3,-2],[0,-1],[-2,-11],[-2,-2],[-6,-6],[3,-14],[-2,-9],[-4,-4],[-6,-2],[-7,4],[-6,7],[-10,18],[2,2],[2,2],[0,4],[-5,1],[-6,3],[-5,6],[1,9],[3,5],[6,5],[2,4],[-6,3],[-5,-3],[-5,-6],[-5,-2],[-5,4],[-10,16],[-6,4],[-3,-1],[-5,-3],[-5,-4],[-3,-5],[3,-5],[19,-19],[-7,-4],[-6,5],[-7,8],[-7,4],[-8,-3],[-4,-7],[0,-8],[8,-7],[0,-4],[-13,1],[-6,-3],[-6,-6],[30,-11],[3,-5],[1,-7],[-5,-5],[-5,0],[-11,9],[-6,2],[-3,-4],[0,-9],[2,-9],[2,-6],[-6,-3],[-6,-1],[-7,3],[-32,29],[-7,11],[-4,4],[-5,2],[-5,-1],[-5,-4],[-5,-6],[-4,-6],[0,-3],[3,-4],[6,-6],[3,-2],[2,-6],[2,-4],[2,-4],[3,-3],[0,-3],[-11,3],[-13,7],[-12,4],[-11,-7],[-2,0],[7,-16],[17,-12],[45,-14],[12,2],[12,-2],[11,-10],[6,4],[5,-2],[4,-6],[3,-9],[-23,8],[-8,-3],[2,-17],[-16,-5],[-3,-5],[3,-4],[16,-14],[3,-7],[2,-8],[-1,-7],[-5,-3],[-2,-1],[2,-3],[3,-6],[3,-3],[3,-1],[7,-2],[-3,16],[5,0],[16,-12],[0,-4],[-6,0],[0,-4],[2,0],[2,-1],[3,-3],[-4,-3],[-15,-1],[-8,-3],[-3,0],[0,3],[-3,3],[-3,3],[-4,3],[-3,-1],[-3,-5],[-1,-8],[1,-6],[3,-5],[-2,-4],[-3,-5],[-3,-3],[-4,0],[-11,4],[-4,-1],[-4,-3],[-1,-3],[17,-5],[15,-8],[-8,-10],[-8,-2],[-16,3],[-17,9],[-9,0],[2,-13],[-2,-4],[14,-5],[5,-4],[-3,-7],[8,-4],[20,2],[8,-6],[-6,-4],[-6,1],[-7,2],[-6,1],[-30,-6],[-5,-3],[-4,-6],[-1,-10],[2,-8],[2,-7],[-2,-4],[-8,3],[1,2],[1,6],[-12,-1],[-5,-3],[-4,-8],[0,-10],[-6,-2],[-5,5],[0,7],[-7,12],[-7,13],[-8,12],[-8,4],[10,-21],[1,-10],[-3,-3],[-6,0],[-7,3],[-4,5],[-10,15],[-25,17],[-10,14],[3,9],[-3,4],[-8,-1],[-5,-1],[-2,-5],[-4,-14],[2,-4],[-4,-6],[-7,-23],[1,-10],[-2,-5],[-3,0],[-4,10],[-11,14],[1,1],[1,2],[1,2],[0,3],[-24,8],[-8,0]],[[37611,85981],[3,8],[8,6],[9,0],[3,-6],[0,-12],[-7,-7],[-10,1],[-6,10]],[[37680,85993],[-5,-11],[-9,-7],[-7,2],[-2,16],[1,6],[4,12],[2,18],[2,8],[6,13],[-8,-2],[-5,-13],[-3,-16],[-5,-12],[-5,-3],[-4,1],[-2,4],[0,9],[2,8],[6,9],[1,9],[1,15],[1,14],[3,11],[7,7],[9,0],[14,-5],[12,-7],[7,-8],[4,-4],[4,-8],[5,-17],[3,-5],[2,-3],[0,-3],[-2,-7],[-3,-3],[-11,-3],[-11,-13],[0,-2],[-1,-5],[-1,-6],[-3,-3],[-3,2],[-2,4],[-2,6],[0,6],[1,3],[6,10],[2,6],[-8,-4],[-7,-11],[-3,-12],[7,-6]],[[37721,86066],[-3,2],[-7,7],[-2,4],[0,11],[5,11],[6,5],[4,-7],[3,-4],[3,-6],[1,-7],[-2,-7],[4,-8],[4,-8],[10,-13],[7,-5],[14,-6],[7,-5],[-7,-3],[-29,0],[-4,3],[-3,6],[-6,22],[-2,6],[-3,2]],[[37415,86087],[4,14],[6,11],[6,3],[7,-12],[0,-2],[0,-3],[-1,-3],[1,-4],[-11,-7],[-6,-1],[-6,4]],[[37457,86229],[5,-13],[-2,-10],[-8,-18],[-3,-21],[0,-3],[-4,-2],[-8,-9],[-12,-7],[-14,-22],[-7,-5],[-16,-4],[-3,3],[7,13],[-2,8],[2,10],[4,19],[2,8],[1,9],[2,39],[1,9],[5,4],[7,-1],[6,-5],[11,-15],[4,12],[7,6],[8,-1],[7,-4]],[[37484,86229],[-11,0],[-6,3],[-4,9],[0,18],[10,9],[26,1],[0,-2],[0,-2],[-2,-4],[-5,-19],[-4,-9],[-4,-4]],[[37501,86247],[2,14],[4,9],[6,1],[7,-10],[-1,-1],[-1,-2],[0,-2],[0,-3],[-2,-6],[-2,-6],[-6,-10],[-8,-17],[-3,-6],[-15,-16],[-9,-5],[-6,1],[4,4],[4,6],[2,7],[-1,8],[8,2],[8,6],[6,10],[3,16]],[[37400,86286],[2,-12],[-3,-5],[-5,-3],[-5,-5],[1,-5],[-3,-2],[-5,1],[-5,3],[3,4],[4,3],[3,4],[3,12],[3,5],[4,1],[3,-1]],[[37229,86399],[-1,7],[6,0],[40,-6],[8,-5],[-2,-6],[-5,-5],[-5,-3],[-4,4],[-3,0],[-17,-10],[-10,-4],[-8,1],[-3,8],[4,19]],[[37252,86416],[-21,-1],[-6,-1],[-5,-4],[-11,-17],[-5,-6],[-7,-4],[-3,0],[-3,0],[-3,3],[-2,4],[-3,1],[-3,0],[-4,-4],[-2,0],[-7,13],[-3,3],[9,7],[74,10],[3,-2],[2,-2]],[[37046,86448],[8,9],[10,4],[10,-3],[6,-10],[-7,0],[-5,-4],[-4,-3],[-19,-3],[-2,2],[3,8]],[[37145,86460],[3,-1],[2,-3],[2,-3],[1,-5],[-19,-9],[-11,-11],[-12,4],[-6,-4],[5,-3],[16,-14],[0,-12],[-28,5],[-2,1],[-2,3],[0,6],[-2,2],[-3,2],[-7,1],[12,18],[19,18],[20,11],[12,-6]],[[36856,86484],[1,-7],[4,-1],[4,1],[4,-1],[13,-8],[-6,-10],[-11,3],[-21,11],[3,5],[3,3],[6,4]],[[36943,86480],[4,-6],[2,-6],[-1,-6],[-5,-2],[-3,3],[-6,10],[-4,3],[2,7],[4,2],[4,-1],[3,-4]],[[36882,86484],[1,8],[7,0],[8,-3],[5,-5],[-3,-6],[-7,-2],[-6,2],[-5,6]],[[37138,86488],[-7,-12],[-11,-9],[-11,-1],[-6,10],[20,16],[7,1],[2,-1],[2,-1],[4,-3]],[[36890,86501],[6,6],[20,10],[5,0],[-1,-18],[-9,-7],[-11,2],[-10,7]],[[36894,86521],[-4,-6],[-7,-8],[-7,-4],[-3,4],[2,10],[6,6],[7,2],[6,-4]],[[36896,86525],[4,8],[7,5],[6,6],[0,10],[11,0],[-3,-9],[-4,-10],[-7,-6],[-7,-3],[-7,-1]],[[36930,86533],[4,10],[7,8],[7,5],[7,-2],[0,-3],[-1,-1],[-1,-1],[-6,-7],[-11,-4],[-6,-5]],[[37068,86474],[-4,-4],[-5,-1],[-10,-1],[-3,1],[-2,2],[-2,2],[-3,-1],[-2,-2],[-1,-2],[1,-2],[2,-2],[-12,-8],[-16,-7],[-15,0],[-9,11],[44,33],[38,15],[19,22],[78,36],[-5,-7],[3,-3],[6,-2],[5,-3],[1,-9],[-3,-6],[-36,-28],[-9,-3],[-15,7],[-2,-1],[-1,-5],[-2,-2],[-1,-2],[-3,-3],[-3,-6],[-5,-8],[-4,-3],[-4,-2],[-11,1],[-5,-2],[-4,-5]],[[37075,86590],[6,4],[8,-3],[14,-9],[-1,-1],[-1,-2],[-1,-1],[3,-20],[-6,-7],[-11,-1],[-8,8],[2,8],[0,8],[-5,16]],[[36622,86629],[-7,5],[-3,1],[-11,-8],[-13,0],[-14,3],[-8,5],[2,3],[-1,2],[-1,1],[-3,2],[7,9],[14,4],[15,-1],[22,-8],[12,0],[5,-2],[16,-10],[-5,-4],[-6,-1],[-11,0],[-8,-2],[-2,1]],[[36407,86752],[6,14],[18,9],[21,2],[13,-8],[-3,-4],[-24,-1],[-7,-4],[-9,-9],[-4,-3],[-9,-2],[-5,0],[-3,2],[1,1],[5,3]],[[36475,86813],[36,3],[10,-7],[2,-15],[-5,-7],[-14,-6],[0,2],[1,7],[1,3],[-15,-10],[-5,-2],[-5,0],[-14,12],[-16,-5],[-10,0],[-6,9],[29,15],[11,1]],[[36343,87010],[4,1],[7,-4],[7,-6],[4,-5],[0,-12],[-1,-9],[-2,-5],[-7,-3],[-7,2],[-20,15],[5,4],[4,7],[6,15]],[[35920,87838],[5,4],[6,-1],[5,-6],[-1,-11],[-4,-5],[-4,-11],[-5,-15],[-5,9],[-17,17],[5,6],[10,6],[5,7]],[[35921,87852],[-2,-6],[-3,-1],[-3,0],[-3,-1],[-6,-4],[-6,-6],[-7,-5],[-7,0],[-8,4],[-5,9],[-4,11],[-1,8],[4,6],[13,9],[3,2],[4,10],[3,4],[3,1],[12,-12],[5,-22],[8,-7]],[[35973,87883],[3,-5],[3,-6],[1,-6],[-5,-2],[-25,-6],[-8,-8],[-5,-2],[-3,1],[-5,2],[-3,3],[-3,6],[-1,7],[1,3],[6,7],[14,23],[9,5],[9,-8],[2,-7],[2,-3],[4,-1],[4,-3]],[[35537,88469],[11,10],[24,2],[12,4],[4,-14],[-14,-20],[-17,-7],[-10,2],[-4,-12],[-11,13],[5,22]],[[35887,88684],[-5,-25],[-11,-14],[-26,-18],[-12,-16],[-11,-20],[-7,-21],[-5,-9],[-7,-3],[-5,-6],[-4,-24],[-4,-6],[-7,-3],[-14,-14],[-8,-4],[-6,2],[-9,6],[-7,8],[0,11],[8,6],[17,-10],[9,2],[-3,5],[-3,4],[-8,3],[5,11],[8,0],[9,-1],[7,2],[-9,13],[-3,8],[3,5],[1,5],[2,4],[2,2],[4,1],[3,2],[2,3],[2,6],[-2,4],[-4,2],[-3,2],[-4,0],[7,8],[11,9],[9,10],[0,13],[2,11],[5,8],[10,14],[-1,4],[-1,7],[0,7],[3,3],[43,0],[10,-4],[7,-13]],[[35750,88597],[-6,-3],[-7,0],[-6,2],[-10,11],[-6,0],[-22,-8],[-3,2],[0,4],[2,4],[3,2],[12,2],[6,3],[5,7],[-2,2],[-1,2],[-1,2],[0,2],[12,2],[12,6],[-2,16],[20,33],[3,16],[48,5],[0,-5],[-1,0],[-1,-1],[-1,-1],[-10,-14],[-4,-7],[-4,-9],[-1,-6],[0,-16],[-1,-6],[-9,-8],[-11,-22],[-4,-6],[-10,-11]],[[37859,85945],[13,-12],[6,-8],[-2,-9],[-3,-1],[-4,3],[-2,4],[-2,3],[-3,-2],[-9,-15],[-1,1],[-2,2],[-2,1],[-1,-2],[-1,-2],[-1,-6],[0,-2],[-4,-2],[-3,-3],[-3,-1],[-3,6],[2,8],[0,1],[-2,4],[6,8],[4,9],[0,7],[-6,0],[-5,-6],[-5,-9],[-3,-11],[2,-11],[-5,-9],[-7,-8],[-7,-3],[-6,2],[-4,8],[0,10],[8,26],[1,3],[0,3],[-1,5],[-3,4],[-2,-3],[-1,-6],[-1,-6],[-4,-4],[-6,-4],[-4,-5],[2,-9],[-10,-9],[-13,-7],[-11,1],[-6,15],[0,5],[1,11],[1,5],[1,5],[10,17],[12,16],[4,8],[14,19],[13,-5],[14,-12],[15,-8],[8,-1],[7,-5],[14,-14]],[[37998,85985],[-4,1],[-3,-1],[-3,-1],[-3,-3],[9,-7],[-5,-5],[-9,1],[-4,-3],[-4,-7],[-1,0],[0,6],[-2,8],[1,4],[-1,2],[-3,1],[-1,-1],[-1,-4],[0,-9],[-2,-7],[-2,-6],[-4,-3],[-4,2],[0,2],[1,2],[1,4],[10,39],[3,5],[8,-1],[8,-5],[9,-6],[6,-8]],[[37775,85997],[-16,-21],[-6,-2],[-4,-4],[-9,-19],[-5,-6],[-3,6],[0,8],[3,22],[0,13],[-2,0],[-2,-9],[0,-11],[-5,-23],[-2,-6],[-4,-3],[-12,-3],[-8,-8],[-6,-2],[-11,-1],[-3,3],[-13,18],[7,5],[6,8],[11,19],[10,10],[2,4],[1,10],[3,4],[4,3],[4,4],[7,3],[48,-6],[8,-4],[-3,-12]],[[37950,85997],[5,-6],[-3,-13],[-6,-12],[-6,-5],[-5,2],[-1,6],[-1,5],[-2,3],[-4,-3],[-3,-6],[-1,-8],[1,-7],[-6,-3],[-6,-1],[2,4],[1,8],[5,20],[-2,4],[3,8],[1,13],[3,12],[6,8],[9,-2],[12,-7],[6,-10],[-8,-10]],[[38007,86046],[6,-1],[6,-3],[-2,-4],[-1,-3],[-3,-3],[-2,-2],[5,-8],[-4,-12],[-9,-10],[-9,-3],[-5,3],[-2,4],[-3,5],[-3,5],[-5,3],[-10,1],[-4,4],[-2,4],[-1,5],[-1,5],[-4,2],[-2,-2],[-1,-5],[-2,-4],[-2,1],[-2,2],[-8,4],[-21,15],[-11,4],[-10,-3],[0,-4],[14,-2],[8,-4],[5,-6],[-1,-8],[-2,-11],[-2,-10],[-2,-4],[-4,-4],[-1,-16],[-5,-4],[-3,-4],[-1,-8],[-3,-7],[-7,-1],[-3,1],[-3,2],[-3,3],[-3,4],[-2,4],[0,3],[0,3],[-2,10],[0,4],[0,4],[-3,4],[-3,3],[-2,-1],[-2,-3],[0,-7],[0,-9],[0,-5],[-3,-3],[-7,0],[-14,2],[-7,4],[-6,5],[-6,3],[-17,10],[-5,7],[10,11],[6,4],[24,11],[2,-1],[12,10],[-19,0],[-9,-6],[-9,4],[-4,0],[-11,-7],[-4,-1],[-4,1],[-4,3],[-3,4],[-3,6],[-4,4],[-8,2],[-20,12],[-6,7],[1,10],[-6,8],[2,9],[7,8],[7,3],[125,-30],[125,-31]],[[36744,86452],[4,2],[15,-2],[-9,-10],[-10,-7],[-10,-5],[-14,-3],[-4,-2],[-5,-4],[-6,-8],[-6,-4],[-5,-2],[-4,1],[2,7],[2,5],[4,4],[4,0],[-6,11],[-8,-4],[-7,-10],[-6,-5],[-19,-2],[-9,4],[-1,10],[-4,-1],[-4,1],[-3,1],[-4,3],[2,4],[2,3],[3,1],[3,0],[-2,5],[-1,1],[-2,1],[-2,3],[-3,3],[-2,-3],[-2,-4],[-1,-2],[-6,1],[-1,2],[0,5],[-1,8],[-4,5],[-13,11],[3,5],[6,1],[11,-2],[42,10],[8,9],[4,2],[11,-3],[4,-4],[0,-6],[4,-11],[5,2],[5,6],[4,3],[22,-4],[4,-4],[-2,-6],[-3,-4],[-7,-6],[4,-3],[2,-1],[2,0],[0,-3],[-9,1],[-4,-1],[-3,-3],[0,-6],[5,-4],[10,-2],[4,-4],[3,3],[3,6],[5,5]],[[38118,86537],[42,-4],[-7,-8],[-12,-7],[-21,-5],[-40,8],[-12,0],[3,2],[5,6],[6,1],[15,7],[21,0]],[[38196,86862],[3,8],[9,13],[10,7],[7,-8],[-9,-4],[-6,-14],[-7,-9],[-7,7]],[[38310,87114],[-3,-9],[0,-8],[1,-8],[-2,-6],[-5,-4],[-16,-6],[3,-8],[3,0],[5,1],[4,-3],[0,-7],[-4,-3],[-9,0],[-27,-12],[-7,4],[3,1],[8,7],[19,28],[-2,4],[2,2],[4,6],[0,9],[7,8],[9,4],[7,0]],[[38249,87527],[3,4],[4,1],[4,-2],[2,-6],[-5,0],[12,-10],[19,17],[11,-12],[-4,-10],[-2,-10],[2,-8],[4,-8],[-7,-1],[-6,-4],[-7,-3],[-7,4],[2,4],[-4,3],[-10,4],[-5,5],[-1,6],[-3,19],[-2,7]],[[38323,87641],[12,-10],[36,-2],[0,-4],[-6,-1],[-11,-6],[-6,-1],[-6,2],[-11,11],[-6,3],[-44,-8],[-5,-4],[8,-5],[9,-2],[19,3],[8,4],[4,0],[3,-4],[0,-7],[-3,-3],[-3,-3],[-3,-4],[1,-1],[4,-7],[-22,0],[-5,3],[-9,11],[-5,3],[-8,0],[-2,0],[-2,-2],[-2,-3],[-1,-3],[-1,-1],[-5,0],[-3,4],[-1,7],[2,10],[-14,-17],[-5,-4],[-1,1],[-1,2],[-1,1],[-1,1],[-1,-2],[-3,-5],[-1,-1],[-3,-1],[-2,-2],[-3,1],[-2,5],[0,2],[-2,3],[-3,5],[-1,7],[4,12],[2,4],[-12,0],[11,19],[12,16],[4,1],[14,-8],[17,4],[64,-15],[6,-9],[-14,0]],[[38356,87670],[14,-7],[7,0],[7,2],[-6,-11],[-11,-6],[-11,0],[-6,9],[-4,14],[-1,7],[0,6],[5,3],[7,-2],[12,-7],[-2,-7],[-4,-1],[-4,1],[-3,-1]],[[38448,87785],[7,5],[11,2],[12,-1],[7,-3],[-5,-16],[0,-8],[5,-1],[-15,-20],[-3,-7],[-8,-20],[-2,-4],[-4,-5],[-4,-2],[-2,7],[2,8],[10,12],[3,7],[-6,0],[-11,-12],[-4,3],[0,1],[0,2],[0,2],[7,20],[1,6],[-1,5],[-1,6],[0,7],[1,6]],[[38464,87828],[7,9],[9,6],[19,5],[8,-3],[12,-16],[6,-5],[-7,-13],[-14,-4],[-15,2],[-15,8],[-3,2],[-7,9]],[[38552,87872],[-31,5],[7,-10],[23,-9],[8,-6],[-17,0],[-9,2],[-20,0],[-9,4],[-15,14],[-7,11],[0,12],[8,9],[9,2],[28,-9],[25,-20],[0,-5]],[[38570,87948],[11,-25],[2,-12],[-6,-6],[-10,4],[-8,12],[-15,29],[2,-17],[4,-13],[0,-8],[-12,-3],[-8,9],[-14,30],[-8,-2],[5,-6],[2,-8],[-1,-9],[-4,-6],[-7,-2],[-7,2],[-7,5],[-6,7],[-7,8],[-19,27],[-33,30],[-13,16],[-5,3],[-11,4],[-20,19],[-5,10],[1,13],[7,9],[10,5],[28,2],[5,-2],[8,-9],[9,-5],[3,-4],[1,-3],[2,-9],[1,-4],[4,-5],[13,-9],[5,-2],[9,4],[5,-2],[12,-11],[2,-4],[1,-9],[-1,-6],[-8,-9],[46,0],[5,-1],[7,-4],[6,-6],[5,-14],[14,-13]],[[35771,88083],[2,-1],[1,-1],[1,-2],[1,-4],[-11,-9],[-42,-11],[0,4],[11,8],[2,4],[1,4],[1,10],[0,3],[7,5],[9,0],[10,-4],[7,-6]],[[38674,88161],[25,6],[5,-6],[-7,-13],[-5,-5],[-5,-3],[-21,0],[-6,4],[-4,11],[4,5],[7,1],[7,0]],[[38702,88501],[4,-2],[3,0],[3,3],[4,4],[-3,-12],[-5,-2],[-13,6],[-65,0],[-24,-7],[-5,2],[-3,8],[-2,3],[-2,2],[0,4],[3,1],[2,2],[0,4],[-2,5],[4,2],[7,2],[3,2],[2,4],[3,7],[2,3],[6,5],[35,10],[29,-4],[12,-7],[-3,-3],[-2,-5],[-4,-12],[1,-2],[3,-5],[1,-1],[-5,-5],[-6,-3],[4,-4],[3,-1],[12,2],[1,-1],[-3,-5]],[[38849,88660],[-4,-4],[-7,-11],[-3,-6],[4,-7],[-2,-3],[-3,0],[-3,4],[-3,4],[-29,3],[-25,8],[-9,8],[-4,1],[-5,3],[-4,4],[-2,6],[1,7],[4,8],[0,5],[-1,6],[-4,3],[-5,3],[-3,2],[-2,4],[-2,5],[-1,5],[-1,7],[8,-1],[2,4],[-2,7],[-10,14],[-2,7],[-1,8],[-2,9],[2,0],[-3,7],[-3,4],[-8,6],[4,4],[0,4],[-5,2],[-14,13],[-10,16],[-18,18],[-9,16],[-5,11],[-1,7],[0,7],[-4,8],[-8,11],[11,15],[16,5],[15,-3],[17,-21],[13,-7],[11,-16],[20,-17],[-3,-2],[-3,-2],[-2,-4],[-2,-4],[3,-6],[7,-6],[4,-5],[-3,-4],[13,-13],[3,-7],[-6,-9],[-4,-2],[-4,1],[-3,1],[-4,0],[-4,-2],[-4,-4],[-2,-3],[11,-5],[13,-14],[15,-7],[4,-8],[2,-11],[3,-10],[-3,-1],[-6,-3],[-2,0],[-3,2],[-6,8],[-3,2],[-7,-2],[1,-5],[8,-13],[-2,-1],[-6,-8],[10,-10],[14,-6],[36,-7],[13,-9],[12,-11],[9,-13]],[[39014,89153],[-3,2],[-4,0],[-3,-1],[-3,-3],[8,-12],[-2,-4],[1,-1],[9,1],[4,2],[4,1],[5,-4],[-8,-5],[-7,-3],[-7,1],[-43,24],[-19,4],[-3,2],[0,5],[2,4],[5,1],[0,14],[7,6],[7,-2],[-1,-10],[6,-4],[28,0],[4,-1],[9,-5],[4,-2],[10,1],[3,-3],[3,-6],[-13,-3],[-3,1]],[[39661,89309],[12,5],[18,-1],[17,-7],[7,-15],[-2,-9],[-6,2],[-6,5],[-5,3],[-8,-3],[-13,-10],[-8,2],[2,0],[-4,3],[-3,5],[0,6],[3,6],[-1,1],[-1,4],[-2,3]],[[35295,89354],[14,1],[7,-3],[4,-8],[-2,-11],[-3,-8],[-4,-7],[-21,-19],[-11,-4],[-12,-10],[-6,2],[-19,5],[-11,3],[-7,10],[-9,10],[-2,5],[4,7],[6,6],[6,4],[66,17]],[[39740,89366],[-6,-6],[2,-4],[11,-7],[-4,-8],[-8,-5],[-16,-3],[2,-8],[1,-8],[-1,-5],[-6,1],[-6,5],[-13,6],[-6,6],[10,8],[3,4],[-4,4],[-7,2],[-12,1],[-2,2],[-5,9],[-4,2],[-3,0],[-2,2],[-3,6],[31,18],[5,8],[4,2],[4,-2],[14,-13],[5,-1],[-1,-6],[-1,-2],[18,-8]],[[39781,89479],[6,-10],[-2,-6],[-5,-6],[-4,-6],[0,-6],[5,-31],[-11,-11],[-6,-2],[-6,6],[-3,10],[-5,4],[-6,2],[-6,4],[2,2],[2,2],[2,3],[1,5],[-12,1],[-5,2],[-6,5],[8,0],[8,3],[15,9],[14,18],[7,5],[7,-3]],[[39596,89433],[-2,3],[-4,4],[-4,3],[-2,0],[-1,-4],[3,-4],[3,-4],[2,-4],[1,-6],[-1,-4],[-1,-4],[1,-6],[3,-4],[12,-5],[-17,-4],[-5,-4],[7,-7],[24,6],[9,-5],[4,-3],[4,-2],[3,-4],[0,-9],[-3,-7],[-10,-3],[-4,-7],[1,-6],[-4,-4],[-11,-1],[2,8],[-2,5],[-5,2],[-4,-4],[1,-1],[1,-4],[2,-2],[-8,-3],[-2,-1],[0,-3],[0,-5],[-1,-3],[-3,-2],[-5,2],[-2,5],[-1,6],[-1,4],[-6,-1],[-3,-10],[-3,-11],[-9,-3],[2,9],[2,4],[-2,1],[-6,7],[4,4],[-4,3],[-3,2],[-19,5],[-5,-1],[-1,-3],[4,-9],[2,-4],[3,-2],[4,0],[5,-2],[4,-4],[2,-6],[-21,-18],[-9,-2],[-5,2],[-10,8],[-14,5],[-4,-1],[2,-6],[-7,-4],[-9,7],[-8,11],[-4,10],[1,7],[-1,7],[-1,8],[-1,7],[-1,4],[-1,1],[-1,2],[-4,7],[-1,1],[0,2],[4,21],[2,9],[0,12],[3,14],[6,4],[8,-1],[8,1],[4,8],[6,27],[4,5],[4,2],[14,7],[17,4],[1,1],[-1,3],[0,3],[1,1],[15,0],[10,-3],[5,-3],[18,-24],[7,-7],[18,-6],[10,-6],[8,-21],[26,-16],[-6,-3],[-30,1],[-5,5],[-5,7],[-4,9]],[[39936,89508],[-1,-9],[3,-5],[11,-6],[-4,-8],[-6,-8],[-6,-3],[-3,6],[-3,-2],[-3,-2],[-4,0],[-3,0],[1,-6],[0,-2],[-11,-12],[-7,-1],[-6,9],[0,19],[2,8],[4,3],[9,3],[6,4],[2,4],[2,6],[4,3],[13,-1]],[[39791,89500],[12,15],[22,13],[23,6],[12,-6],[-1,-14],[-4,-11],[-13,-13],[-4,-1],[-4,2],[-3,0],[-2,-7],[1,-5],[2,-5],[5,-7],[-2,-5],[-1,-5],[0,-5],[3,-5],[-10,-10],[-4,-2],[-3,6],[-25,-2],[2,10],[13,12],[-1,8],[-2,4],[-4,13],[-2,4],[-10,10]],[[40124,89678],[7,14],[12,7],[27,4],[-3,-6],[-6,-5],[1,-5],[-9,-12],[-10,-10],[-10,-2],[-11,7],[1,2],[1,2],[0,2],[0,2]],[[40592,90043],[3,4],[2,0],[2,-3],[1,-6],[-2,-7],[-5,-3],[-25,-1],[-5,5],[-1,16],[2,14],[5,-2],[5,-7],[4,-5],[2,7],[-1,13],[2,10],[10,-6],[1,-7],[-2,-8],[-4,-6],[-5,-3],[3,-4],[4,-3],[3,0],[1,2]],[[40701,90259],[8,6],[21,6],[9,0],[-10,-19],[-10,-13],[-11,-7],[-9,7],[5,7],[3,3],[3,2],[-9,8]],[[40764,90360],[0,-2],[0,-2],[1,-2],[1,-2],[-10,-8],[6,-7],[2,-8],[-2,-5],[-8,4],[-13,20],[4,9],[7,9],[7,5],[5,-7],[-2,-2],[0,-1],[1,0],[1,-1]],[[41746,90872],[3,-2],[2,-4],[0,-3],[-3,-4],[0,-8],[-3,-6],[-5,-4],[-12,-3],[-16,-11],[-9,-2],[-9,1],[-8,4],[-16,10],[-4,6],[-2,9],[-2,12],[9,9],[10,5],[20,3],[16,-7],[25,-2],[4,-3]],[[35250,91009],[10,-3],[8,-7],[9,-3],[8,5],[-5,4],[-12,12],[-5,7],[1,7],[5,3],[11,0],[7,-5],[5,-13],[5,-9],[7,2],[-2,4],[5,-1],[5,-4],[4,-7],[2,-10],[-3,-8],[-6,-6],[-7,-6],[-11,-12],[-7,-3],[-32,-2],[-6,2],[-1,9],[-2,2],[-9,2],[-11,7],[-3,1],[0,9],[-1,7],[-4,4],[9,2],[17,8],[9,2]],[[35601,91099],[-7,0],[-7,-1],[6,5],[5,-2],[3,-2]],[[35567,91117],[5,6],[32,-5],[5,-3],[0,-4],[-25,0],[-7,-4],[1,-5],[2,-2],[2,-2],[-36,-11],[-18,-12],[-5,-1],[-4,2],[-7,7],[-4,4],[-10,2],[-34,-6],[-9,3],[-2,-1],[-8,-9],[-3,-2],[-3,3],[-1,6],[-1,7],[1,4],[6,12],[9,3],[19,-2],[9,4],[16,10],[9,2],[33,-6],[7,-6],[-6,-5],[-13,-5],[-4,-7],[3,-3],[3,-3],[3,-2],[3,1],[0,3],[4,4],[21,8],[5,5],[2,10]],[[35458,91121],[-6,9],[-6,3],[-7,-1],[-18,-11],[-42,-9],[-4,-3],[-6,-3],[-18,5],[-56,-12],[-34,-17],[-17,-4],[7,22],[8,13],[11,8],[56,7],[17,7],[-5,4],[-18,-4],[0,4],[60,16],[-2,1],[-2,2],[-1,2],[0,4],[34,0],[-1,-1],[-1,-2],[-1,-2],[-1,-3],[78,3],[4,2],[5,5],[3,0],[6,-4],[6,-2],[13,-1],[-3,-2],[-3,-1],[-3,-1],[-3,1],[-10,-4],[-2,-3],[-8,-12],[-8,-7],[-8,-9],[-7,-5],[-7,5]],[[35771,91874],[8,4],[16,-2],[15,5],[19,-1],[3,-2],[21,-14],[7,-2],[18,4],[9,0],[8,-8],[-2,-3],[-4,-10],[33,3],[5,-8],[0,-8],[0,-5],[-2,-3],[-27,-27],[-7,-9],[-4,-3],[-6,0],[-9,7],[-4,1],[-4,-3],[-13,-18],[-8,-7],[-2,-6],[2,-14],[0,-7],[0,-7],[-1,-5],[-5,-12],[0,-6],[0,-9],[8,-24],[2,-11],[-8,-5],[-6,-1],[-13,-5],[-19,-17],[-6,-2],[-9,2],[-12,5],[-9,10],[1,14],[1,2],[-13,25],[-4,11],[-7,29],[-3,8],[-10,4],[-4,4],[0,6],[6,11],[3,5],[3,2],[15,-1],[7,4],[-3,14],[16,20],[9,8],[18,8],[24,22],[8,11],[-12,-2],[-11,-4],[-21,-14],[-14,-6],[-41,6],[11,9],[30,12],[8,11],[-3,-1],[-3,1],[-3,1],[-2,3]],[[35304,91537],[-8,3],[-76,-21],[-22,-16],[-63,-21],[-11,-10],[-6,0],[-4,2],[-10,10],[-4,3],[-25,-3],[-32,5],[-7,9],[-5,18],[-11,7],[-62,10],[-19,15],[-3,4],[-1,7],[-2,1],[-7,7],[-2,3],[2,10],[3,5],[10,5],[-2,2],[-6,6],[6,3],[6,-1],[11,-6],[6,-2],[38,3],[58,-10],[32,8],[6,6],[3,-1],[4,-3],[4,-1],[60,-1],[8,5],[-45,3],[-12,9],[0,4],[2,4],[6,16],[3,7],[9,16],[10,11],[23,3],[11,4],[0,4],[-21,0],[-38,-10],[-8,-8],[-5,-2],[5,-12],[-7,-14],[-11,-12],[-8,-7],[-24,-10],[-12,0],[-13,6],[28,19],[8,10],[-9,4],[-49,-21],[-9,0],[-7,8],[8,13],[14,10],[11,12],[-1,14],[-5,6],[-8,5],[-8,4],[-5,-1],[-3,-3],[-1,-4],[1,-4],[2,-5],[0,-4],[-1,-4],[-1,-4],[-1,-2],[-38,-4],[-33,10],[-7,2],[-19,-6],[-110,16],[-10,6],[-15,12],[1,3],[2,10],[-12,2],[-15,7],[-14,12],[-8,15],[2,0],[2,1],[2,2],[1,1],[-2,9],[3,6],[20,10],[8,2],[8,-2],[9,-5],[5,4],[27,4],[7,-2],[5,-4],[9,-14],[8,-5],[25,-7],[14,-13],[8,-3],[6,4],[-30,28],[-16,6],[-4,5],[-3,5],[-11,11],[-3,2],[-51,9],[-27,16],[-5,27],[11,7],[5,1],[22,0],[-11,12],[-4,5],[-3,6],[-2,8],[0,7],[11,5],[11,8],[6,3],[28,2],[12,-9],[104,-26],[6,4],[-8,10],[-11,6],[-60,12],[-70,39],[-9,10],[-9,18],[-1,2],[-3,53],[3,16],[7,9],[7,8],[6,10],[5,4],[26,7],[54,28],[34,7],[8,-4],[110,-16],[37,-18],[78,-11],[33,-14],[10,-7],[20,-3],[18,-17],[22,-11],[14,-14],[11,-7],[7,-10],[11,-22],[9,-12],[28,-29],[19,-28],[10,-12],[27,-9],[31,-19],[24,-5],[34,-17],[28,-3],[-2,0],[61,-20],[17,-16],[6,-12],[2,-9],[-3,-7],[-12,-23],[-2,-2],[-4,-1],[-9,-4],[-3,-3],[37,-20],[11,3],[1,3],[3,-4],[1,-7],[-5,-6],[-9,-8],[-6,-11],[-33,-41],[-8,-4],[-12,-9],[-12,-13],[-38,-18],[-17,1],[-134,-57],[-19,0],[-4,-4]],[[34800,92150],[-38,-7],[-20,4],[-16,15],[-3,6],[-3,8],[-3,8],[-2,23],[-1,6],[2,2],[62,-19],[32,-26],[5,-8],[3,-11],[-4,-3],[-14,2]],[[35649,92353],[10,-3],[34,-26],[-8,-11],[-14,1],[-77,39],[1,8],[3,4],[7,4],[6,-4],[24,-6],[9,-5],[5,-1]],[[35606,92483],[11,-4],[30,-25],[23,-3],[6,-5],[-8,-12],[-10,-7],[-10,-2],[-49,5],[-24,8],[-46,-4],[-13,8],[-6,11],[2,10],[3,12],[2,14],[7,10],[13,5],[15,1],[20,-3],[23,-16],[11,-3]],[[35028,92566],[-18,11],[-6,10],[2,17],[6,14],[10,10],[18,15],[13,16],[12,4],[5,6],[28,34],[9,4],[12,-16],[25,-43],[14,-17],[6,-11],[5,-11],[2,-11],[0,-11],[-5,-13],[-6,-12],[-7,-11],[-9,-9],[-9,-3],[-43,-3],[-57,25],[-7,5]],[[35421,92673],[-10,-2],[-12,-5],[-11,-9],[-8,-10],[-2,-7],[0,-7],[0,-5],[0,-5],[-7,-6],[-82,-9],[-5,2],[-31,25],[-5,2],[-4,6],[-4,14],[-10,39],[-2,15],[2,11],[10,4],[11,3],[34,17],[78,-10],[79,-10],[5,-4],[11,-22],[6,-6],[-7,-13],[-12,-6],[-24,-2]],[[35196,92836],[-31,5],[-9,7],[-5,12],[-3,32],[-3,13],[11,8],[11,3],[72,-2],[17,-6],[6,-1],[17,5],[60,-1],[5,-2],[-14,-15],[-27,-16],[-46,-14],[-8,-8],[0,-3],[1,-4],[0,-5],[-1,-4],[-3,-3],[-14,-6],[-18,0],[-18,5]],[[34531,93060],[11,6],[12,3],[12,1],[27,-10],[8,-5],[7,-9],[-11,-18],[-15,-15],[-16,-10],[-14,0],[-24,7],[-8,6],[-11,15],[-5,5],[-7,3],[6,11],[28,10]],[[34709,93298],[2,-6],[1,-3],[2,-2],[-4,0],[-8,7],[-5,0],[-4,-4],[-2,-6],[-2,-8],[-3,-6],[-6,-4],[-13,-4],[-6,-4],[-3,-6],[-7,-15],[-3,-6],[-20,-17],[-11,-6],[-16,-4],[-9,-6],[-5,-1],[-5,2],[-9,10],[-5,4],[-26,2],[-10,7],[3,16],[10,9],[52,15],[4,6],[0,7],[-7,2],[-20,-5],[-20,2],[-6,3],[-2,6],[3,5],[5,2],[6,-3],[46,-5],[10,5],[21,15],[11,4],[16,0],[2,2],[15,20],[4,3],[25,5],[8,-1],[0,-9],[-1,-12],[-3,-11],[-5,-5]],[[34499,93517],[-10,5],[-11,8],[6,4],[-6,3],[-7,1],[-7,-4],[-3,-9],[1,-8],[3,-6],[8,-10],[-6,0],[-10,7],[-5,1],[-7,-2],[-11,-8],[-7,-2],[-26,4],[-6,4],[-3,5],[-3,7],[-3,6],[-5,2],[0,5],[9,3],[19,-2],[8,5],[7,6],[20,8],[8,0],[-3,8],[-2,2],[-3,2],[8,5],[30,-1],[25,6],[7,2],[2,-4],[-1,-5],[5,2],[12,7],[5,0],[5,-2],[2,-3],[-5,-3],[-4,-1],[-5,-3],[-2,-6],[4,-6],[-4,-7],[-4,-9],[-4,-9],[-7,-3],[-3,-1],[-7,-4],[-4,0]],[[34516,93473],[-22,2],[-8,-2],[4,15],[5,10],[7,5],[31,7],[12,7],[8,13],[1,13],[-2,10],[1,6],[9,3],[19,1],[17,9],[12,2],[7,11],[36,10],[30,-12],[4,-1],[4,4],[-25,7],[-7,6],[-2,8],[5,2],[5,2],[59,-14],[5,-7],[-3,-4],[-19,-9],[-6,-7],[-2,-8],[-2,-9],[-2,-8],[-6,-3],[-4,-2],[-8,-5],[-19,-4],[-5,-3],[-11,-12],[-3,-5],[0,-5],[0,-5],[-1,-4],[-6,-7],[-6,-3],[-5,-4],[-4,-10],[0,-5],[2,-5],[-1,-5],[-5,-1],[-3,0],[-2,2],[0,4],[2,6],[-9,5],[-6,-8],[-5,-11],[-5,-6],[-4,-3],[-8,-8],[-3,0],[-8,7],[-3,5],[-3,7],[6,6],[25,10],[-8,3],[-23,1],[-6,6],[-5,8],[-5,5],[-7,-3],[-1,-3],[0,-3],[0,-3],[-1,-3],[-4,-5],[-3,-2],[-5,-1],[-5,0]],[[34553,93723],[6,3],[14,2],[4,4],[101,-32],[16,-10],[9,-14],[-4,0],[-4,-1],[-3,-4],[-3,-5],[-4,-5],[-46,-6],[-9,5],[4,9],[-2,7],[-9,8],[1,3],[1,6],[0,5],[-2,2],[-2,-1],[-2,-3],[0,-5],[-2,-3],[-7,-6],[-9,-5],[-18,-5],[-7,2],[-20,14],[-21,5],[-5,7],[23,23]],[[34435,94039],[7,-6],[11,11],[6,-3],[4,-2],[2,-4],[1,-5],[3,-5],[3,-4],[23,-11],[25,-4],[16,-11],[13,-3],[4,-3],[5,-10],[2,-3],[8,-2],[9,0],[9,-5],[5,-13],[-22,-4],[-11,-4],[-5,-13],[2,-1],[1,-1],[1,-2],[1,-4],[-10,-1],[-3,1],[-3,3],[-2,5],[-2,3],[-3,2],[-6,-2],[-5,-3],[-5,-2],[-6,2],[5,11],[8,1],[9,-2],[7,5],[2,10],[-4,6],[-7,2],[-5,0],[3,2],[3,5],[2,6],[1,7],[-17,-10],[-7,-2],[-8,4],[0,2],[0,3],[0,2],[-1,1],[-3,1],[-6,3],[-14,2],[-5,4],[-3,7],[2,0],[5,3],[-8,7],[-17,-3],[-9,1],[-25,16],[-9,4],[5,7],[7,3],[7,1],[4,-5]],[[34409,94191],[-10,-1],[-10,-7],[-10,-11],[-3,-1],[-20,-4],[-9,2],[-2,10],[3,2],[3,4],[3,4],[2,6],[-5,4],[-78,-14],[-12,1],[-9,14],[17,11],[-7,11],[-25,-6],[-8,8],[42,24],[9,-6],[84,-17],[84,-17],[6,-5],[3,-8],[-3,-12],[-9,-5],[-36,13]],[[34300,94587],[-58,-1],[0,2],[-102,-5],[-28,-9],[-87,5],[-13,6],[0,3],[98,13],[99,12],[22,10],[15,3],[26,-6],[26,-11],[-1,-4],[-1,-2],[-4,-2],[22,-4],[-5,-8],[-9,-2]],[[30695,95829],[4,-4],[3,-2],[1,-2],[-3,-7],[-4,-3],[-12,-3],[-16,-9],[-23,-5],[-94,14],[-5,6],[4,9],[11,5],[117,14],[10,-3],[7,-10]],[[30117,96301],[16,0],[19,6],[17,1],[13,-15],[-9,-10],[-37,-6],[-16,-11],[-24,-1],[-10,-7],[-4,-1],[-119,4],[0,4],[3,0],[4,3],[3,3],[-2,3],[-30,8],[-20,-2],[-68,21],[-14,13],[4,8],[7,3],[48,9],[0,2],[0,1],[-1,1],[8,5],[30,-1],[3,-1],[5,-5],[3,-2],[17,4],[105,-21],[21,5],[8,-3],[20,-18]],[[30456,96318],[63,-2],[21,-6],[-10,-6],[-22,1],[-21,-6],[-116,-3],[-116,-2],[-8,3],[-8,6],[-8,13],[-8,9],[-30,13],[4,3],[5,1],[19,-1],[21,4],[43,-2],[21,8],[75,-17],[75,-16]],[[35201,99133],[-17,12],[-4,6],[3,33],[26,24],[54,19],[74,-8],[64,-24],[-13,-4],[2,-6],[3,-4],[15,-20],[4,-3],[14,-8],[114,-37],[114,-37],[115,-36],[11,-11],[-3,-3],[-10,-2],[-16,-5],[-112,5],[-113,5],[-29,13],[-90,18],[-22,10],[-112,14],[-20,10],[-28,4],[-12,11],[0,3],[-1,7],[-1,3],[-2,4],[-3,3],[-5,4]],[[37630,99276],[21,-7],[9,-10],[-1,-15],[-4,-4],[-24,-11],[-51,-11],[-100,-55],[10,-15],[36,-20],[47,-38],[-10,-11],[-15,-6],[-58,-7],[-15,3],[-61,38],[-4,15],[-28,19],[-134,34],[-135,35],[-134,34],[-34,19],[-2,3],[-2,6],[2,4],[-11,19],[-19,23],[-19,16],[-14,-1],[-6,6],[-32,10],[-55,47],[-51,6],[6,7],[8,4],[117,0],[116,1],[14,-4],[6,0],[7,4],[-5,7],[-22,10],[74,1],[75,1],[93,-22],[93,-23],[94,-22],[0,-5],[-2,0],[0,-4],[30,0],[88,-30],[19,-14],[83,-37]],[[36707,99495],[-133,5],[-10,4],[-9,7],[-4,11],[1,14],[1,9],[4,6],[8,5],[22,6],[108,-20],[108,-20],[18,-10],[-10,-12],[-15,-4],[-89,-1]],[[39045,99686],[38,-5],[3,-3],[0,-4],[-5,-8],[-11,-12],[-49,-27],[-40,-6],[-19,3],[-8,5],[-21,4],[-38,27],[-20,6],[-74,4],[-12,4],[-11,8],[1,3],[1,5],[-7,1],[-14,9],[-7,2],[-6,3],[-6,8],[-3,7],[4,3],[78,-2],[77,-3],[43,-22],[106,-10]],[[38860,99657],[14,-17],[5,-3],[13,-2],[12,-5],[23,-17],[-117,14],[-117,14],[-55,25],[-35,4],[-10,3],[-26,21],[-81,25],[-10,-1],[2,5],[-2,0],[15,6],[80,-2],[79,-1],[14,-8],[17,-20],[8,-4],[23,-4],[41,-21],[62,-4],[22,-6],[16,0],[7,-2]],[[39212,99727],[7,-3],[41,-25],[6,-5],[-77,-6],[-9,6],[2,0],[-125,24],[-126,24],[-6,4],[-10,13],[-40,19],[-81,3],[-80,3],[-10,7],[-1,12],[5,12],[9,9],[14,5],[45,-5],[0,4],[-19,2],[-19,6],[15,4],[53,-9],[20,-12],[63,-18],[62,1],[29,-14],[26,-21],[28,-14],[89,-13],[89,-13]],[[43489,91772],[25,3],[14,-3],[11,-8],[8,-27],[1,-7],[-4,-11],[-10,-4],[-57,6],[-18,12],[-13,23],[9,7],[12,5],[22,4]],[[42719,92260],[5,-1],[2,-3],[5,-11],[6,-6],[14,-1],[6,-3],[-7,-6],[-2,-3],[-1,-5],[2,-6],[-16,-15],[-8,-4],[-21,-1],[-7,2],[-4,4],[-5,7],[-11,3],[-6,4],[1,2],[3,4],[2,2],[-2,3],[-4,9],[6,1],[10,9],[5,2],[5,-1],[10,-6],[6,-1],[0,4],[-3,2],[-7,6],[4,4],[4,3],[4,1],[4,1]],[[42300,92363],[-6,8],[-2,9],[0,11],[2,15],[-3,8],[-2,9],[-1,10],[2,9],[9,9],[13,5],[24,2],[7,-1],[13,-6],[7,-1],[70,4],[-2,-3],[-3,-2],[-2,-2],[-2,-1],[-3,-5],[-11,-11],[-10,-17],[-3,-4],[-12,-8],[-24,-8],[-23,-18],[-25,-13],[-7,-2],[-6,3]],[[42967,92367],[1,-8],[4,-12],[4,-13],[0,-14],[-5,-6],[-5,-2],[-12,0],[-15,-7],[-42,-5],[-23,-15],[-12,-2],[-25,1],[-11,-3],[-39,-35],[-10,-4],[-19,-3],[-1,2],[-1,2],[-1,3],[-2,1],[-13,0],[-2,3],[-6,18],[-9,5],[-12,1],[-12,-3],[-18,-13],[-43,-9],[-13,-11],[-7,-3],[-97,-4],[-5,2],[-4,3],[-4,1],[-5,-2],[-2,-3],[-2,-4],[-2,-4],[-3,-1],[-97,-15],[-97,-14],[-97,-14],[-13,4],[-6,13],[3,9],[7,7],[24,16],[5,5],[3,5],[-3,7],[-15,9],[-4,14],[5,8],[9,6],[14,16],[10,4],[69,9],[8,4],[19,29],[7,8],[18,14],[11,4],[7,8],[3,2],[6,1],[34,16],[8,8],[8,14],[18,25],[23,9],[112,2],[99,25],[6,4],[11,13],[5,4],[40,11],[17,13],[89,42],[7,0],[0,-5],[-2,0],[0,-1],[0,-3],[0,-3],[1,-6],[1,-17],[0,-2],[-3,-8],[-3,-3],[-3,-3],[-4,-6],[13,-8],[47,-5],[6,-3],[21,-23],[4,-6],[6,-24],[-3,-5],[-3,-3],[-2,-3],[-4,-1],[5,-6],[12,-4],[4,-6],[0,-10],[-5,-4],[-25,-3],[-7,-3],[-3,-7],[2,-6],[5,-1],[29,0],[10,-4],[1,-9]],[[42899,92580],[7,3],[7,0],[13,-3],[4,-4],[5,-9],[2,-4],[6,0],[6,3],[5,1],[6,-4],[-4,-2],[-3,-5],[-2,-6],[2,-2],[5,-2],[5,-4],[4,-6],[3,-9],[-7,1],[-6,4],[-12,12],[-1,-12],[-4,1],[-4,7],[-4,8],[0,5],[-4,8],[-4,8],[-4,3],[-14,-4],[-7,2],[-5,10],[1,0],[1,1],[1,2],[1,1],[1,-4]],[[43903,93363],[3,-9],[2,-3],[-9,-11],[-12,-2],[-13,3],[-29,17],[-27,5],[-5,4],[2,2],[0,2],[1,2],[1,3],[-8,-1],[-13,-10],[-8,-2],[-78,22],[-9,-1],[-14,-6],[-10,-8],[0,-2],[2,-2],[1,-6],[3,-3],[1,-2],[0,-3],[-1,-1],[-1,0],[0,-2],[1,-8],[2,-5],[16,-13],[97,-30],[8,-11],[-6,-16],[4,-5],[6,0],[6,2],[5,7],[-1,6],[7,3],[17,-1],[15,-6],[17,-2],[-5,-5],[-16,-11],[-15,-18],[-6,-3],[2,-7],[2,-4],[7,-5],[6,-8],[3,-6],[-6,-4],[-10,-12],[-5,-4],[-14,-2],[-76,8],[-21,12],[0,4],[16,9],[7,7],[5,12],[-13,5],[-4,-3],[-9,-13],[-4,-5],[-11,-6],[-11,0],[-10,4],[-23,18],[-40,18],[-8,6],[-5,7],[-9,16],[-10,13],[-81,33],[-81,33],[-32,4],[-40,22],[-13,4],[-13,-1],[-4,-4],[-7,-10],[-4,-3],[-3,2],[-3,4],[-2,5],[1,6],[6,6],[11,4],[5,7],[-7,13],[-11,9],[-9,6],[-12,2],[1,-3],[-7,-8],[-12,7],[-23,21],[-12,4],[-6,3],[-5,8],[-2,5],[-5,19],[-1,6],[-2,14],[-1,6],[1,8],[0,6],[0,7],[-1,8],[-4,15],[-5,14],[-12,24],[5,10],[9,6],[10,3],[130,13],[36,-13],[24,0],[23,-13],[135,2],[3,0],[2,-2],[2,-4],[2,-6],[3,-3],[10,-13],[6,-20],[9,-8],[8,-5],[4,-6],[5,-6],[24,-6],[5,-12],[33,-11],[7,-12],[-2,-2],[0,-2],[-1,-2],[-1,-2],[36,-16],[10,1],[9,3],[8,7],[3,0],[1,-7],[3,-7],[6,-4],[12,-1],[7,-3],[14,-11],[40,-15],[5,-4],[3,-6],[1,-6],[-5,-4],[-2,-2],[-4,-3],[-2,-5],[-2,-6],[49,12],[11,-3],[10,-7],[4,-12],[-3,-19],[0,-4]],[[43111,93652],[3,-1],[3,-1],[1,-2],[-2,-5],[-5,-8],[-23,-12],[3,-8],[1,-12],[-1,-11],[-1,-10],[-7,-10],[-12,-1],[-27,5],[-15,10],[-54,17],[-9,8],[9,-1],[21,4],[8,5],[3,3],[4,10],[3,3],[5,3],[20,-3],[6,2],[11,8],[6,2],[49,5]],[[43908,93546],[8,-2],[6,-7],[1,-7],[-7,-8],[1,-1],[0,-1],[-1,-3],[2,0],[-7,-2],[-21,-2],[-4,3],[-3,6],[-7,-1],[-12,-4],[12,17],[-7,2],[-9,-1],[-10,-4],[-6,-6],[-3,-4],[-26,9],[-108,-7],[-11,3],[-8,8],[29,4],[1,8],[-5,4],[-22,0],[-9,5],[-8,7],[3,8],[-1,5],[-3,5],[-5,2],[2,4],[-9,8],[-96,35],[-27,-4],[-25,5],[-33,-3],[2,0],[-42,-2],[-29,15],[-31,7],[-97,-2],[-96,-2],[-7,5],[-7,11],[-3,13],[3,14],[11,11],[105,7],[105,6],[21,10],[42,1],[87,25],[88,-21],[29,0],[7,-2],[14,-9],[136,-25],[44,-29],[2,0],[1,1],[0,3],[2,3],[1,1],[8,-2],[6,-4],[7,-1],[8,7],[3,-9],[6,-2],[6,-1],[4,-4],[1,-3],[0,-4],[1,-3],[2,-3],[-8,-5],[-18,-4],[-7,-11],[2,-2],[6,-6],[-3,-2],[-9,2],[-4,-1],[-11,-7],[-24,-7],[-8,-6],[8,-5],[7,0],[6,2],[6,-1],[0,-1],[1,-3],[1,-2],[2,-2],[23,-5],[4,-2],[5,-5],[-4,-3],[-13,-5],[2,-6],[3,-2],[8,0],[2,1],[2,1],[1,2],[3,-2],[4,-5],[1,-1]],[[44076,93789],[34,-1],[9,-7],[-2,-1],[-2,-1],[-1,-3],[0,-3],[-39,-12],[-19,-1],[-18,13],[28,15],[10,1]],[[43187,93730],[-9,3],[-26,-4],[-7,2],[-21,14],[-37,3],[-49,23],[-102,2],[-40,16],[-24,17],[-12,4],[-1,1],[-1,2],[0,4],[0,3],[3,4],[2,2],[13,2],[12,8],[7,2],[2,2],[10,16],[23,21],[38,14],[8,8],[0,8],[-3,7],[-2,7],[2,8],[6,11],[8,5],[109,4],[109,4],[18,-6],[108,-32],[108,-32],[108,-33],[5,-12],[-13,-6],[-119,16],[-119,15],[-119,16],[-119,15],[-6,-2],[-5,-5],[7,-4],[8,2],[7,4],[7,0],[7,-2],[18,-7],[106,-16],[17,-11],[19,5],[69,-19],[69,-19],[6,2],[6,-5],[95,-6],[95,-5],[25,-15],[8,-2],[20,6],[-7,-6],[-13,-20],[-5,-4],[-138,-14],[-137,-14],[-138,-14],[-16,7]],[[44346,94443],[15,-12],[8,-3],[6,2],[8,-5],[12,-2],[10,-3],[2,-14],[-8,-13],[-84,-14],[-84,-15],[-30,2],[-42,-15],[-67,-5],[-3,1],[-36,28],[-73,21],[-73,21],[-13,10],[-2,14],[7,15],[1,3],[4,8],[1,2],[11,10],[1,1],[3,-1],[2,0],[1,3],[0,4],[0,3],[0,2],[5,6],[5,5],[82,31],[83,31],[74,-4],[3,-1],[3,-2],[2,-2],[2,-7],[6,-3],[18,3],[86,-12],[4,-2],[6,-9],[4,-5],[11,-8],[4,-6],[2,-8],[-1,-5],[-5,-5],[-1,-5],[0,-6],[2,-3],[3,-1],[3,-4],[1,-4],[1,-2],[1,-3],[4,-5],[15,-12]],[[44795,94668],[3,0],[1,-3],[-2,-5],[-4,-2],[0,-2],[0,-2],[0,-1],[-2,1],[6,-12],[-2,-9],[-6,-6],[-18,-9],[-90,2],[-7,-4],[3,4],[1,3],[1,3],[-10,5],[-5,4],[-4,6],[5,6],[16,7],[18,16],[49,24],[14,0],[17,-3],[8,-5],[4,-8],[-10,-5],[-4,-4],[-3,-7],[11,1],[5,1],[5,4]],[[44896,94715],[15,1],[4,-1],[-2,-3],[-2,-2],[-3,0],[-2,1],[-3,-1],[-3,-2],[-6,-6],[0,-4],[9,-7],[6,-11],[1,-10],[-10,-4],[-34,0],[-5,2],[1,6],[-4,7],[-7,8],[-4,5],[0,10],[-3,7],[-5,6],[-4,6],[34,-8],[27,0]],[[44497,94821],[12,-2],[7,-4],[3,-7],[-1,-8],[-5,-6],[-11,-6],[-28,-36],[-21,-10],[-22,-24],[-11,-7],[-14,-3],[-32,4],[-21,11],[-29,5],[-64,42],[-5,10],[6,8],[18,16],[5,7],[4,10],[3,10],[2,12],[-2,11],[-6,9],[-11,14],[3,8],[11,5],[23,19],[39,9],[42,-6],[24,-12],[26,-4],[8,-4],[5,-7],[-2,-8],[-5,-6],[-53,-21],[-7,-9],[2,-8],[5,-4],[6,-2],[5,0],[1,4],[1,5],[2,6],[3,3],[3,-3],[4,0],[7,3],[9,-1],[3,-1],[0,-2],[7,0],[51,-20]],[[45189,94966],[-17,-21],[-6,-14],[4,-18],[3,-3],[3,0],[3,-1],[1,-6],[-1,-2],[-8,-5],[-18,-6],[-19,-1],[5,-4],[0,-8],[-2,-8],[-5,-6],[-7,-7],[-10,-6],[-9,-2],[-8,5],[4,2],[3,4],[3,5],[1,7],[0,10],[-1,3],[-10,1],[-25,8],[-23,-4],[0,4],[2,0],[-7,11],[-12,3],[-61,1],[-22,-12],[-75,-19],[-104,13],[-19,-5],[-5,6],[-3,10],[-2,12],[2,5],[-1,4],[-1,5],[0,7],[2,8],[4,6],[19,27],[2,4],[-2,6],[-14,14],[10,2],[4,7],[0,34],[-4,18],[-10,8],[-10,5],[-7,11],[42,1],[8,3],[15,11],[4,1],[8,-3],[3,0],[34,11],[7,-1],[25,-20],[7,-7],[3,-10],[0,-2],[4,-2],[16,-3],[28,6],[15,8],[10,11],[-2,5],[-1,5],[0,5],[1,5],[-1,5],[2,5],[3,4],[3,2],[3,10],[12,1],[14,-5],[9,-6],[3,-2],[7,-11],[4,-4],[15,-8],[6,-7],[-2,-8],[10,-8],[3,-4],[-8,-12],[-40,-20],[-41,4],[-6,-4],[8,0],[3,-2],[4,-3],[-24,-4],[-6,-2],[-3,-6],[0,-6],[25,-7],[26,14],[3,-3],[0,-7],[-2,-4],[-2,-3],[-5,-12],[-1,-1],[9,-14],[5,-6],[6,-5],[5,-3],[11,2],[3,-2],[2,-3],[1,-3],[0,-4],[1,-2],[11,-9],[12,-7],[26,-4],[33,10],[3,3],[2,3],[0,5],[-2,3],[-3,2],[-1,2],[4,14],[10,2],[12,-3],[11,-1],[11,5],[11,1],[10,-3],[11,-11]],[[44847,95510],[-1,-7],[1,-16],[0,-10],[-5,-17],[-1,-8],[6,-7],[-5,-11],[-9,-13],[-8,-7],[-7,7],[0,10],[4,12],[3,12],[-2,12],[-65,126],[-9,26],[0,19],[3,12],[-3,10],[-13,17],[-44,81],[-7,24],[2,25],[8,16],[11,7],[12,1],[55,-7],[15,3],[-2,4],[-3,2],[-2,2],[-3,0],[3,3],[1,1],[0,4],[-42,4],[-14,-4],[0,6],[-4,6],[-5,7],[-4,5],[-1,9],[-1,11],[-2,9],[-10,8],[3,9],[6,9],[5,6],[8,3],[8,1],[7,-3],[8,-5],[6,-8],[48,-29],[7,-8],[7,-13],[4,-13],[0,-15],[-3,-16],[-12,-25],[-2,-7],[0,-9],[2,-7],[2,-5],[2,-8],[-1,-13],[-1,-14],[-1,-14],[1,-15],[2,-8],[0,-16],[2,-9],[2,-8],[3,-9],[16,-29],[3,-9],[0,-10],[-3,-9],[-6,-6],[-4,-7],[2,-10],[7,-23],[3,-8],[11,-16],[1,-5],[1,-5],[4,-8]],[[44998,96447],[-62,1],[-11,11],[11,5],[26,38],[39,25],[6,11],[2,20],[4,12],[7,8],[10,6],[8,3],[38,5],[6,-1],[1,-5],[18,-26],[5,-12],[-5,-16],[-19,-21],[-4,-7],[-8,-23],[-3,-7],[-14,-16],[-19,-7],[-36,-4]],[[44060,96582],[-3,5],[-3,6],[0,6],[2,7],[8,13],[10,11],[10,8],[13,4],[5,6],[29,9],[5,-1],[6,-3],[-2,-1],[0,-3],[-1,-2],[-1,-2],[-6,-1],[-8,-5],[-6,-8],[3,-10],[-5,-6],[-10,-6],[-5,-7],[-1,-2],[0,-3],[0,-7],[-1,-1],[-24,-12],[-7,0],[-8,5]],[[44633,96593],[8,-3],[8,-8],[6,-10],[1,-11],[-7,-12],[-13,-3],[-108,29],[-108,28],[-108,29],[-4,7],[6,6],[8,4],[65,-3],[12,3],[12,6],[18,2],[11,5],[5,0],[6,-3],[5,-7],[8,-19],[5,-8],[3,-4],[42,-21],[108,2],[11,-9]],[[44674,96660],[13,17],[5,11],[-2,11],[-14,9],[-19,5],[-17,11],[-7,24],[6,0],[20,-15],[13,-5],[7,-1],[57,11],[20,10],[5,0],[-3,-10],[-5,-7],[-6,-6],[-5,-7],[-1,-10],[1,-12],[4,-8],[5,0],[-60,-66],[-12,-7],[-5,-1],[-5,1],[-3,4],[-1,10],[1,9],[2,8],[3,8],[3,6]],[[44339,96743],[-15,-5],[-47,3],[-59,25],[7,4],[21,5],[8,4],[37,27],[13,5],[10,-1],[10,-5],[10,-9],[8,-12],[6,-13],[1,-12],[-3,-9],[-7,-7]],[[44598,96781],[-14,1],[-5,5],[4,11],[-16,12],[-20,3],[-5,6],[-3,11],[0,14],[1,14],[2,12],[5,8],[6,-2],[13,-13],[25,-17],[8,-10],[3,-8],[8,-25],[3,-8],[3,-4],[3,-1],[5,0],[-26,-9]],[[44745,96925],[7,-22],[0,-7],[-3,-1],[-3,-2],[-4,-3],[-2,-3],[7,-16],[1,-6],[-5,-5],[-5,-1],[-22,1],[-5,-2],[-5,-4],[-2,-9],[2,-9],[5,-7],[39,-23],[5,-6],[0,-7],[-4,-6],[-5,-3],[-25,-6],[-13,-6],[-7,0],[-4,8],[-51,19],[3,8],[1,8],[-1,8],[-1,10],[-3,11],[-8,16],[-3,8],[7,12],[9,10],[89,54],[3,-1],[1,-4],[1,-4],[1,-10]],[[44934,97028],[-4,-7],[-18,-15],[-44,-18],[0,-2],[1,-4],[1,-3],[-12,-5],[-15,-1],[-15,5],[-10,13],[6,8],[19,8],[17,17],[14,9],[17,6],[37,-2],[8,-5],[-2,-4]],[[44943,97099],[-9,8],[-2,7],[3,9],[-2,4],[9,17],[13,10],[13,1],[12,-8],[10,-14],[8,-9],[1,-8],[-11,-12],[-38,-20],[-7,-10],[-2,8],[1,4],[1,5],[0,8]],[[44687,97083],[-8,-5],[-45,-4],[-22,6],[-32,22],[-19,3],[-7,5],[-2,8],[8,12],[119,82],[11,2],[11,0],[7,-5],[-1,-2],[0,-2],[0,-2],[-1,-2],[-30,-8],[3,-3],[2,-3],[0,-5],[-1,-5],[3,-3],[11,3],[22,0],[-8,-11],[-28,-8],[-10,-10],[3,1],[3,0],[3,-2],[3,-3],[-5,-6],[-4,-4],[-5,-2],[-5,0],[9,-6],[34,6],[-2,-4],[6,-4],[-15,-9],[-51,1],[5,-8],[11,-3],[12,1],[16,5],[20,-3],[8,-4],[-6,-6],[-26,-11],[3,-4]],[[45129,97274],[-41,3],[-6,-3],[4,-7],[2,-2],[-5,-4],[-7,-3],[-13,-1],[5,-6],[2,-2],[-5,-4],[-7,-3],[-12,-1],[5,-5],[-4,-5],[-19,-7],[-6,0],[-7,1],[-6,3],[4,4],[5,3],[10,2],[-6,8],[-7,6],[-4,9],[2,17],[8,15],[34,22],[15,32],[6,4],[11,6],[11,9],[11,4],[11,-10],[10,-2],[30,-22],[5,-7],[-1,-11],[-3,-11],[-9,-25],[-3,-1],[-10,1],[-3,-1],[-4,-5],[-3,-1]],[[44787,97831],[8,0],[14,5],[24,18],[6,3],[116,22],[117,22],[21,-2],[107,-44],[3,-3],[2,-3],[-15,-15],[-8,-10],[-4,-10],[-66,-60],[-67,-60],[-94,-29],[-86,-4],[-23,13],[-73,21],[-73,20],[-19,11],[-25,21],[-39,10],[-6,0],[15,13],[58,20],[23,14],[10,2],[21,-1],[10,3],[-1,7],[-3,6],[-7,10],[-7,18],[-5,6],[41,8],[8,-1],[4,-2],[8,-8],[3,-4],[1,-7],[1,-10]],[[44577,97865],[-37,-5],[-3,3],[-11,18],[17,10],[4,6],[-3,3],[0,2],[3,7],[1,2],[4,2],[2,2],[1,3],[-1,3],[0,1],[-1,0],[1,3],[0,8],[1,5],[2,4],[8,6],[21,15],[39,10],[39,-2],[131,-42],[9,-7],[-4,-3],[-10,-3],[-5,-3],[-104,-24],[-104,-24]],[[45074,98792],[-18,12],[-116,45],[-19,16],[7,6],[9,4],[120,6],[6,-6],[6,-9],[8,-5],[16,-4],[28,-19],[15,-15],[7,-5],[16,-5],[17,-12],[8,-2],[0,-3],[-12,-7],[-98,3]],[[44594,99004],[-38,22],[-11,14],[-4,9],[-3,13],[-2,14],[3,11],[5,5],[32,9],[32,1],[13,-4],[14,-8],[14,-5],[47,-28],[7,-13],[5,-15],[12,-8],[24,-9],[67,-58],[8,-13],[5,-16],[-16,-4],[-99,7],[-115,76]],[[31451,98201],[-4,0],[-3,1],[-3,0],[-3,1],[-7,3],[0,3],[-4,2],[-7,0],[-1,1],[-3,0],[-2,0],[-1,1],[0,1],[-3,2],[-3,2],[-1,2],[-2,1],[0,1],[-2,1],[0,3],[-2,0],[0,6],[-1,0],[0,2],[-2,1],[0,2],[-1,0],[-1,4],[-1,0],[-1,1],[0,3],[2,0],[0,1],[3,1],[2,0],[1,0],[1,0],[11,0],[2,0],[3,-1],[2,0],[2,0],[3,-1],[2,0],[3,-1],[3,0],[3,-1],[1,0],[4,-1],[2,0],[13,-5],[4,-2],[3,-1],[1,-1],[3,-3],[0,-1],[4,-2],[14,-5],[0,-1],[5,-1],[1,0],[4,-2],[0,-1],[2,0],[1,-1],[4,-1],[1,-1],[0,-5],[-3,-2],[-3,0],[-7,0],[-2,-1],[-16,0],[-2,0],[-2,-1],[-3,0],[-3,0],[-3,-1],[-3,-1],[-2,-1],[-3,-1]],[[31577,98333],[-5,0],[-3,0],[-6,2],[0,1],[-2,1],[0,2],[2,1],[3,0],[4,0],[3,0],[4,-2],[3,0],[4,-2],[0,-1],[-4,-2],[-3,0]],[[0,40894],[0,12],[3,6],[4,5],[10,5],[-3,-12],[-3,-7],[-5,-5],[-6,-4]],[[0,40674],[0,30],[2,8],[8,11],[1,7],[3,2],[10,7],[4,1],[0,-4],[-2,-1],[-1,-2],[0,-2],[2,-3],[0,-5],[-2,-1],[-1,-1],[-2,-1],[-2,0],[-1,-3],[-2,-6],[0,-5],[3,-3],[2,-3],[-4,-8],[-5,-8],[-13,-10]],[[0,40528],[3,10],[20,45],[5,6],[6,4],[4,-2],[2,-7],[3,-17],[1,-10],[0,-6],[3,-5],[3,-4],[1,-5],[-1,-5],[-10,-20],[-3,-10],[-1,-6],[0,-13],[-1,-1],[-2,0],[-2,-2],[-17,-22],[-9,-16],[-5,-19],[0,105]],[[0,40674],[99999,0],[-2,-1],[-1,0],[-1,2],[0,5],[0,7],[4,16],[0,1],[-99999,-30]],[[0,40424],[99999,-1],[-2,-6],[-3,-6],[-4,-5],[-4,-3],[-3,-2],[-4,0],[-3,2],[-1,9],[-5,9],[-2,8],[2,9],[3,7],[7,11],[10,30],[1,8],[2,10],[6,24],[0,1],[-99999,-105]],[[0,40894],[99999,0],[-17,-33],[-2,-1],[-5,-1],[-3,-2],[-2,-4],[-3,-9],[-1,-5],[-4,-7],[-2,-5],[0,-2],[-2,-3],[-4,-14],[-11,-33],[-5,-7],[0,-12],[-5,-18],[-7,-16],[-6,-6],[-6,-4],[-27,-37],[-1,-4],[-2,-4],[-1,-9],[0,-7],[0,-9],[-1,-10],[-2,-8],[-3,-6],[-7,-9],[-3,-5],[-2,-4],[-3,-11],[-2,-2],[-4,-3],[-2,-3],[3,-6],[1,-10],[-1,-11],[-3,-9],[2,-4],[5,6],[5,3],[4,-1],[3,-8],[4,6],[7,15],[4,3],[3,1],[3,3],[3,5],[1,5],[1,8],[3,3],[3,1],[3,2],[0,3],[1,8],[1,2],[1,1],[3,1],[1,2],[2,6],[3,15],[2,5],[3,3],[2,2],[2,2],[1,5],[1,5],[3,3],[4,2],[9,13],[6,9],[2,9],[3,4],[14,14],[2,4],[1,4],[1,3],[2,2],[4,0],[1,-3],[0,-5],[3,-14],[-1,-5],[-2,-5],[-2,-4],[-3,-17],[-10,-37],[0,-3],[1,-7],[-1,-2],[-1,-1],[-3,1],[-1,0],[-6,-16],[7,-1],[5,-7],[3,-11],[0,-14],[4,1],[5,-2],[4,-6],[1,-9],[-3,-4],[-4,1],[-9,7],[1,-4],[2,-9],[1,-3],[-4,2],[-2,2],[-4,-6],[-3,2],[-1,8],[1,8],[-10,1],[-4,3],[-3,8],[-6,-4],[-6,1],[-5,2],[-4,1],[-3,-2],[-4,-8],[-4,-2],[-3,0],[-3,-1],[-1,-4],[-1,-7],[-2,6],[0,2],[-2,0],[-3,-12],[-10,-14],[-4,-11],[-5,9],[-5,1],[-12,-6],[-9,0],[-5,-3],[-4,-5],[-10,7],[-7,1],[-22,-4],[0,2],[3,4],[2,8],[2,8],[5,3],[4,4],[-2,8],[1,8],[-3,4],[-9,4],[-7,11],[-5,6],[-2,-3],[-3,0],[-21,-17],[-5,-7],[-9,-14],[2,-10],[-2,-8],[-3,-7],[-4,-4],[-9,5],[-5,-15],[-7,-42],[7,9],[3,1],[5,-2],[-3,-7],[-7,-11],[-3,-6],[-2,0],[-4,3],[-11,6],[-3,5],[-2,5],[0,4],[-1,4],[-5,2],[-2,4],[-1,5],[0,6],[-2,0],[0,-12],[-4,5],[-3,1],[-3,-2],[-3,-4],[-11,-20],[-2,-6],[-2,-23],[-2,-4],[-3,-2],[-1,-4],[4,-6],[-10,-14],[-1,-2],[-8,-1],[-3,1],[-5,4],[-3,7],[-3,17],[-3,19],[0,16],[-3,11],[-6,12],[-3,13],[2,18],[-6,5],[-2,4],[-1,7],[-17,-17],[-8,-3],[-8,12],[2,2],[0,2],[-3,6],[0,7],[1,3],[2,-3],[2,0],[-1,11],[3,10],[10,15],[0,-12],[2,5],[1,7],[1,4],[3,-4],[2,9],[3,14],[1,10],[-6,-7],[-4,1],[-3,7],[-2,11],[10,8],[3,0],[2,-3],[3,-9],[2,-4],[3,-2],[9,-2],[9,-11],[2,-1],[4,1],[1,3],[1,3],[2,5],[15,27],[4,4],[3,-6],[1,-17],[4,3],[1,4],[-1,15],[1,7],[8,24],[1,-3],[1,-6],[0,-4],[2,3],[2,3],[0,4],[0,7],[2,0],[3,-8],[3,6],[3,9],[3,6],[3,3],[-1,7],[-2,9],[-1,9],[1,-2],[4,-2],[1,-1],[1,11],[3,0],[2,-4],[2,-2],[4,1],[7,5],[13,3],[15,11],[8,4],[9,-1],[3,1],[0,2],[2,8],[1,3],[2,1],[5,2],[2,2],[5,0],[8,-4],[8,-2],[5,8],[4,-7],[2,2],[2,6],[4,3],[2,-1],[2,-9],[2,-1],[2,0],[1,1],[1,0],[2,-1],[0,8],[-2,9],[-2,7],[-3,4],[3,5],[3,2],[3,0],[2,-3],[2,10],[2,10],[3,6],[4,-6],[2,10],[1,9],[1,8],[4,5],[10,-1],[4,3],[-4,10],[3,0],[3,-3],[2,-6],[1,-7],[3,21],[1,7],[1,-7],[3,-3],[3,-2],[3,-4],[2,5],[2,1],[2,-4],[1,-6],[0,9],[1,3],[2,1],[2,-1],[2,2],[0,4],[1,5],[0,1],[1,0],[2,-1],[1,-2],[1,-1],[5,0],[2,1],[1,5],[2,4],[6,6],[9,10],[1,-9],[1,-14],[2,-7],[3,3],[6,11],[4,2],[3,-2],[1,-3],[-1,-4],[-3,-3],[3,-2],[4,0],[1,-2],[3,9],[10,17],[2,5],[20,18],[5,0],[-99999,-12]],[[392,39145],[2,-9],[4,-8],[5,-5],[4,2],[-1,-12],[-5,1],[-10,11],[-2,5],[1,11],[4,11],[8,1],[-2,-6],[-2,-1],[-2,0],[-4,-1]],[[286,39238],[0,14],[3,8],[4,1],[4,-10],[0,-16],[-4,-10],[-5,0],[-2,13]],[[38,39238],[4,25],[10,-2],[7,-17],[-6,-18],[-2,20],[-6,2],[-5,-9],[1,-11],[2,-12],[-4,-2],[-3,7],[2,17]],[[343,39697],[4,-8],[1,-10],[-1,-10],[-3,-5],[-10,0],[-3,1],[-2,3],[-1,3],[-2,1],[-5,9],[5,17],[10,10],[7,-11]],[[264,39836],[5,-6],[1,-14],[0,-8],[-5,-3],[-4,4],[-2,7],[-3,14],[5,8],[3,-2]],[[474,39879],[3,-3],[6,-8],[4,-9],[2,-10],[-3,-11],[-6,-6],[-7,0],[-7,2],[-8,8],[-2,19],[6,16],[12,2]],[[288,40297],[8,-8],[5,-6],[2,-8],[-5,-19],[0,-4],[-5,-3],[-6,-10],[-4,-12],[-1,-11],[-4,7],[0,11],[4,12],[4,6],[-1,8],[1,4],[2,2],[1,3],[0,8],[0,3],[-3,5],[-3,3],[-6,2],[-3,3],[-1,4],[0,12],[-1,5],[4,-4],[3,-6],[3,-6],[6,-1]],[[99937,39145],[3,-5],[2,-10],[1,-12],[1,-10],[-8,-4],[-4,0],[-4,1],[-1,2],[0,6],[2,2],[0,1],[1,5],[2,-2],[3,-1],[1,-1],[-1,9],[-3,9],[-1,7],[6,3]],[[99563,39244],[2,0],[10,-3],[3,-3],[2,-7],[2,-11],[-1,-10],[-5,-6],[-5,-6],[-1,4],[-3,1],[-6,2],[1,-5],[1,-4],[-1,-4],[-3,-3],[-3,2],[-6,1],[-7,0],[-5,-3],[1,4],[1,8],[0,4],[-2,-2],[-2,-1],[-2,1],[-2,2],[2,3],[1,4],[1,2],[-7,5],[-7,-6],[-12,-20],[-5,-2],[-4,0],[-3,-2],[-2,-6],[0,-12],[0,-3],[-1,9],[-3,-4],[-1,-7],[1,-6],[2,-3],[4,-2],[1,-5],[-1,-15],[0,-4],[-2,-4],[-3,-3],[-2,1],[-3,3],[0,6],[1,15],[-4,-7],[-2,-1],[-4,0],[-2,-6],[-2,-5],[-2,-4],[-4,-1],[-4,1],[-8,6],[-3,1],[-6,-8],[-4,-1],[-1,9],[-2,0],[-2,-3],[-3,2],[-3,4],[-3,5],[8,17],[5,3],[6,-4],[3,5],[1,13],[2,6],[3,3],[3,0],[16,-8],[2,1],[2,4],[0,6],[1,6],[3,4],[4,-5],[2,5],[1,10],[0,11],[4,13],[10,8],[11,1],[8,-6],[2,17],[2,2],[4,1],[2,1],[1,3],[1,3],[2,1],[3,-1],[2,-2],[3,0],[3,3],[2,-8],[9,-1],[2,-9]],[[99590,39291],[2,-5],[1,-5],[0,-4],[-1,-6],[-4,2],[-2,-6],[-1,-6],[-3,1],[-7,11],[0,7],[3,8],[0,5],[3,6],[6,3],[4,-2],[-1,-9]],[[99983,39480],[2,-4],[1,-3],[-2,-7],[-7,-3],[-3,-6],[-5,-8],[2,-5],[4,4],[1,0],[1,-7],[-5,-9],[-1,-12],[-5,-3],[-2,10],[-1,10],[-3,5],[-2,6],[-5,6],[-1,7],[5,5],[11,8],[11,5],[4,1]],[[99346,39518],[1,-7],[1,-7],[0,-14],[2,-29],[-4,6],[-4,10],[-2,11],[-2,10],[0,9],[0,4],[4,11],[1,-2],[1,-1],[1,0],[1,-1]],[[99477,39591],[2,11],[3,1],[3,-5],[2,-11],[-1,-13],[-3,-8],[-4,-2],[-5,7],[2,1],[1,1],[0,2],[-1,4],[1,3],[0,2],[0,3],[0,4]],[[99817,39811],[4,-17],[1,-31],[-3,-24],[-9,11],[-2,7],[-3,16],[-1,7],[-5,13],[-2,7],[-2,11],[-1,-7],[1,-12],[-1,-4],[-2,-1],[-1,4],[-2,17],[1,17],[-1,2],[-2,10],[-1,6],[3,-4],[2,0],[6,10],[1,0],[2,-1],[4,-1],[4,-6],[7,-25],[2,-5]],[[99841,39932],[0,-3],[0,-2],[-2,-3],[1,-4],[1,-5],[0,-6],[0,-5],[-2,-6],[-2,3],[-2,11],[-2,5],[-2,7],[-1,8],[1,8],[5,-5],[5,-3]],[[99645,39973],[5,-15],[5,-7],[5,-3],[-1,-4],[0,-2],[-1,-2],[-2,4],[-2,-2],[-1,0],[-2,4],[-3,1],[-5,23],[-1,11],[3,-8]],[[99659,40030],[2,3],[4,3],[5,-6],[3,-14],[1,-8],[1,-8],[1,-8],[-1,-9],[-1,-7],[-2,-6],[-7,-4],[-3,-2],[-5,-4],[-3,10],[-1,10],[-4,23],[3,18],[7,9]],[[99723,40034],[-2,8],[0,6],[2,3],[4,-5],[1,-6],[4,-18],[1,-9],[-3,0],[-1,7],[-1,6],[-2,4],[-3,4]],[[99641,39815],[-1,-5],[-2,-8],[-1,-4],[0,-8],[0,-6],[-1,-8],[-2,-8],[-4,-6],[-2,-4],[-14,-15],[-7,-14],[0,12],[-8,-6],[-3,-2],[3,10],[0,2],[-1,6],[-2,1],[-1,0],[-2,4],[-3,0],[-8,-8],[-4,-3],[1,-12],[-5,-7],[-6,-4],[-3,1],[0,9],[1,3],[-1,2],[-4,9],[-3,3],[-3,1],[-3,0],[1,-3],[0,-2],[-1,-5],[-1,-4],[-2,-2],[-3,-1],[0,2],[-1,3],[-1,2],[-2,1],[-2,0],[-3,-3],[-2,-1],[-2,-2],[-2,-4],[-2,-4],[-3,-2],[-4,-1],[-2,-1],[-1,-2],[-2,-4],[-1,-4],[-1,-8],[-1,-4],[-3,-3],[-6,-4],[-2,-3],[-8,-20],[-5,-8],[-5,-3],[-2,0],[-2,-4],[-6,12],[-21,-15],[-9,3],[-4,0],[-2,1],[-2,3],[-1,-3],[-4,-5],[-4,-1],[-3,3],[-3,1],[-5,-5],[-3,-2],[-1,10],[-1,3],[-2,-1],[-3,-3],[-1,-3],[-2,-2],[-1,2],[-6,10],[0,4],[-2,3],[-12,7],[-23,13],[-7,2],[-8,4],[-15,14],[-7,-2],[-8,8],[-4,1],[-14,-2],[-2,1],[-3,3],[-2,3],[-1,4],[-2,2],[-19,10],[-9,8],[-6,19],[-2,-4],[-1,6],[-1,12],[0,6],[-1,4],[-1,2],[-1,5],[-1,7],[-1,4],[-5,5],[0,4],[1,5],[-2,5],[-1,5],[-1,6],[0,5],[4,10],[1,6],[0,8],[-1,4],[-2,4],[0,6],[1,12],[5,5],[13,1],[7,6],[2,3],[3,6],[0,5],[0,5],[-1,6],[0,20],[1,8],[1,1],[1,-1],[10,-6],[2,0],[3,6],[1,4],[-1,4],[-1,5],[0,6],[-1,12],[-1,6],[0,5],[-3,3],[-2,2],[-2,4],[-2,14],[3,6],[5,4],[3,11],[1,4],[6,3],[3,3],[1,7],[-1,6],[1,6],[3,5],[3,-7],[2,2],[2,7],[-2,7],[2,8],[3,8],[2,2],[3,-6],[2,0],[11,20],[11,14],[1,2],[1,1],[0,3],[1,3],[2,1],[2,0],[2,-2],[1,-1],[-1,-1],[-2,-5],[1,-10],[2,-11],[2,-6],[2,3],[-2,8],[-1,7],[0,7],[1,7],[2,3],[9,11],[2,2],[11,-8],[1,3],[1,7],[1,7],[1,3],[3,2],[1,3],[2,2],[6,2],[1,3],[1,3],[3,3],[1,1],[1,-1],[0,-8],[0,-6],[0,-6],[-2,-5],[-2,-5],[5,-2],[4,4],[3,8],[4,6],[6,-8],[8,-1],[8,2],[6,3],[8,8],[4,5],[3,6],[3,5],[7,0],[4,5],[9,-3],[10,4],[9,10],[2,17],[6,-4],[8,-8],[6,-9],[3,-9],[1,-7],[3,-12],[0,-8],[-2,-6],[-7,-15],[-2,-7],[3,-3],[0,-5],[-1,-5],[-2,-3],[3,1],[8,19],[5,4],[6,-1],[6,-5],[5,-7],[3,-11],[0,-5],[-1,-7],[1,-4],[1,-1],[5,-9],[1,-2],[1,-2],[11,-17],[3,0],[3,0],[3,-2],[5,-7],[8,-21],[2,-4],[6,-2],[6,-4],[5,-8],[3,-11],[0,-14],[-3,-12],[-3,-9],[-2,-11],[-1,-6],[0,-5],[-1,-5],[1,-5],[2,-4],[5,-7],[2,-3],[0,-7],[-1,-6],[0,-6],[2,-5],[4,2],[2,-2],[-1,-4],[-2,-4],[3,-3],[2,-4],[0,-6],[-2,-8],[-1,2],[-2,2],[0,-2],[1,-10],[-8,-5],[1,-16],[5,-19],[3,-8],[6,-1],[2,-3],[2,-5],[3,-7],[1,-4],[0,-2],[1,-2],[2,-1],[2,2],[2,4],[1,4],[0,3],[2,0]],[[99192,40257],[7,-6],[4,0],[4,6],[4,-12],[-2,-1],[-1,-2],[0,-3],[-4,-12],[-4,-7],[-3,-2],[-3,6],[-1,10],[2,8],[0,6],[-3,4],[0,5]],[[99847,40230],[-1,-15],[-2,-14],[-3,-11],[-4,-10],[-7,-13],[-2,4],[0,35],[-1,9],[-1,9],[-2,8],[1,8],[-1,8],[2,6],[12,4],[2,1],[3,0],[3,-5],[0,-3],[1,-21]],[[99241,40354],[1,4],[3,16],[2,-7],[0,-8],[-1,-7],[-3,-6],[-2,-11],[-8,-12],[-1,-9],[-1,2],[-1,1],[-1,1],[-1,4],[-3,-4],[-2,-4],[-1,-5],[0,-7],[-7,3],[0,5],[3,-1],[1,1],[-2,5],[0,9],[0,7],[2,3],[3,2],[1,6],[0,7],[1,5],[2,4],[6,10],[3,2],[0,-2],[3,-11],[2,-3],[1,0]],[[99289,40480],[-9,-14],[-2,-6],[3,-4],[-1,-5],[-1,-4],[-1,-4],[-3,-4],[0,4],[-2,5],[-4,12],[2,5],[7,7],[-2,9],[3,3],[6,-1],[4,-3]],[[99536,40524],[-1,-12],[2,-6],[-1,-3],[-7,1],[-5,-4],[-2,7],[-1,21],[2,0],[2,-3],[4,-1],[7,0]],[[99321,40593],[6,0],[3,-5],[1,-8],[-2,-11],[-2,-6],[-5,-7],[-1,-5],[-1,-3],[-17,-29],[-4,-9],[-2,-10],[-3,3],[-1,1],[-1,-3],[-3,-3],[-2,-1],[-2,3],[0,4],[2,14],[0,6],[2,0],[3,-7],[6,5],[10,23],[13,22],[4,13],[-4,13]],[[99976,40606],[-9,0],[4,3],[2,1],[1,2],[0,8],[1,2],[3,0],[3,2],[3,4],[2,6],[0,-12],[-2,-9],[-3,-6],[-5,-1]],[[99607,40655],[2,-3],[3,-1],[2,1],[2,3],[-2,-6],[-2,-5],[-4,-3],[-5,1],[-2,1],[-1,1],[-1,2],[8,9]],[[99822,40801],[4,-2],[3,-2],[-3,-4],[-4,-1],[-5,1],[-5,4],[0,4],[10,0]],[[99200,43075],[2,-9],[-5,-6],[-6,-3],[-5,0],[-4,3],[-4,2],[-5,1],[-4,-2],[-1,9],[-1,3],[4,-2],[4,1],[7,10],[5,-4],[10,0],[3,-3]],[[98503,37612],[-5,8],[-2,10],[1,7],[6,0],[3,-4],[2,-8],[-1,-8],[-4,-5]],[[356,38228],[-2,4],[-2,4],[1,4],[1,5],[0,-5],[1,-5],[2,-4],[2,-3],[-1,0],[-2,0]],[[493,38720],[-1,3],[0,4],[1,4],[3,4],[-1,-4],[-1,-4],[-1,-7]],[[439,39118],[5,21],[2,3],[1,-11],[0,-12],[-2,-3],[-3,0],[-3,-4],[-1,1],[0,2],[1,3]],[[306,39290],[-2,-2],[-3,-2],[-2,0],[-2,1],[3,6],[4,5],[3,4],[4,2],[-1,-4],[-1,-4],[-2,-3],[-1,-3]],[[415,39416],[-3,9],[2,7],[3,3],[3,-5],[1,-6],[-2,-5],[-2,-4],[-2,1]],[[188,39946],[-4,7],[1,11],[4,9],[6,1],[5,-10],[0,-12],[-5,-8],[-7,2]],[[234,40123],[-4,8],[-1,11],[3,8],[5,1],[3,-7],[1,-11],[-1,-9],[-6,-1]],[[234,40241],[0,11],[3,3],[3,-2],[2,-8],[-1,-7],[-2,-4],[-3,1],[-2,6]],[[96148,20347],[19,-7],[6,-5],[-4,-3],[-8,-3],[-7,-5],[-4,-1],[-4,1],[-2,-5],[-38,4],[-2,3],[-1,4],[-3,5],[-6,8],[-3,4],[-2,8],[5,-1],[5,-4],[7,-9],[4,0],[21,7],[4,6],[2,1],[3,-1],[8,-7]],[[97013,19366],[3,-14],[0,-6],[-4,-5],[-3,-6],[-2,-8],[-9,-8],[-8,1],[-10,2],[-3,4],[-6,5],[-4,3],[-3,6],[-3,2],[-3,-4],[-7,9],[-3,6],[2,5],[6,0],[10,-4],[9,-3],[2,11],[2,11],[5,11],[4,6],[7,7],[5,0],[3,-4],[-1,-5],[3,0],[4,-3],[2,-5],[9,-5],[5,-9],[-5,-2],[-7,2]],[[96178,20503],[-5,-6],[-3,1],[-4,3],[-5,-4],[3,-4],[2,-6],[3,-15],[-2,2],[-4,1],[-2,2],[2,-9],[1,-4],[-3,-2],[-5,-10],[4,2],[5,0],[4,-2],[4,-4],[-7,-4],[-14,2],[-8,-2],[0,-4],[6,0],[9,-7],[6,-1],[-2,-10],[-3,-10],[4,-1],[7,2],[4,-1],[-1,-5],[-1,-5],[1,-6],[1,-5],[-3,1],[-4,-1],[-3,0],[0,-4],[4,0],[5,-4],[4,-4],[3,-4],[-1,-10],[-3,-10],[-5,-5],[-4,3],[-6,8],[-9,4],[-8,6],[-5,12],[-3,-6],[-3,-4],[-7,-6],[2,8],[3,9],[1,9],[-1,9],[-3,6],[-4,5],[-4,1],[-3,-7],[2,-3],[3,-5],[2,-5],[-3,-3],[-3,2],[-7,6],[-4,0],[3,-5],[3,-4],[2,-4],[2,-7],[0,-9],[-2,-6],[-3,-4],[-4,-1],[-5,0],[-3,2],[-4,5],[-3,7],[-2,0],[-4,-6],[-7,-12],[-2,33],[10,24],[38,36],[5,11],[4,14],[1,18],[2,13],[3,15],[1,13],[-6,10],[5,2],[3,2],[4,1],[5,-3],[4,-1],[13,4],[4,3],[-1,-4],[0,-8],[-1,-4],[5,0],[12,4],[-1,-4],[1,-7],[2,-7],[2,-3],[-11,0],[-3,-1],[-1,-4],[0,-4],[-1,-5]],[[99677,21079],[1,-10],[-1,-10],[-3,-10],[-1,-10],[0,-10],[-1,-4],[-2,-1],[-12,1],[-9,3],[-6,9],[0,16],[3,7],[12,20],[4,5],[4,2],[4,0],[4,-3],[3,-5]],[[1071,24265],[2,-2],[6,-8],[-9,-10],[-3,-8],[-1,-12],[-10,-11],[-6,-4],[1,8],[-1,2],[-2,5],[-1,2],[1,2],[-1,2],[1,4],[4,16],[1,4],[-3,8],[-4,3],[0,3],[3,6],[4,4],[6,2],[5,0],[4,-2],[1,-2],[1,-4],[0,-4],[1,-4]],[[1005,24472],[-1,-4],[-2,-2],[-2,1],[-1,5],[1,14],[-1,7],[-2,6],[5,5],[5,11],[5,13],[1,11],[-5,12],[-9,4],[-15,1],[-15,4],[-7,-3],[1,-14],[5,-7],[26,-9],[-21,-27],[-1,-7],[9,-21],[2,-7],[1,-8],[-1,-8],[1,-7],[7,-8],[10,15],[2,-13],[1,-10],[1,-5],[5,-10],[3,-4],[8,-3],[3,-3],[4,-14],[-8,-5],[-12,-1],[-8,-2],[-2,-4],[-8,-4],[-7,-10],[-12,-9],[-2,-12],[-2,-1],[-17,0],[-6,2],[-2,5],[-1,13],[-2,11],[-6,23],[-2,3],[-3,2],[-1,3],[2,4],[6,5],[17,20],[3,6],[1,6],[6,7],[6,9],[-2,14],[-12,36],[-6,11],[-7,8],[-3,3],[-4,1],[-4,-2],[-3,-3],[-3,-1],[-3,2],[-2,-4],[2,-8],[-3,-2],[-4,1],[-4,-3],[-8,6],[-20,-10],[-8,12],[4,11],[5,4],[6,2],[6,7],[0,4],[-2,5],[0,5],[4,3],[0,-2],[7,-9],[3,-2],[25,5],[6,6],[3,11],[1,10],[2,6],[6,3],[2,-1],[6,-6],[3,-1],[12,1],[4,-1],[18,-15],[7,-2],[62,8],[0,-3],[-4,0],[-3,-4],[-2,-7],[0,-10],[-12,11],[-11,-9],[-10,-19],[-14,-36],[-2,-10],[-1,-12]],[[581,33130],[-5,-3],[0,4],[0,8],[0,6],[-5,8],[-2,4],[-2,7],[5,0],[5,-1],[5,-3],[4,-3],[4,-5],[3,-5],[5,-17],[-4,5],[-5,-1],[-3,-4],[-2,-8],[-3,8]],[[2447,44929],[-1,3],[-1,4],[-1,4],[-1,4],[2,-3],[2,-5],[1,-5],[0,-5],[-1,0],[0,2],[0,1]],[[2087,45397],[-2,6],[-2,7],[3,-5],[2,-6],[1,-7],[-1,-7],[0,3],[-1,9]],[[96287,22047],[-1,-4],[-3,-12],[2,-5],[1,-6],[1,-7],[0,-7],[-2,3],[-2,3],[-3,9],[-2,1],[-10,-3],[0,4],[14,22],[5,2]],[[96504,22498],[4,8],[6,7],[7,1],[2,-8],[-3,-5],[-7,-7],[-7,-3],[-2,7]],[[96585,22763],[-3,-4],[-4,-2],[-4,2],[-2,8],[1,8],[3,4],[5,0],[3,-1],[4,-5],[-3,-10]],[[96830,22794],[4,-13],[-3,-12],[-6,-10],[-3,-6],[1,7],[-1,5],[-3,5],[-3,8],[5,1],[4,2],[3,5],[2,8]],[[96721,22607],[13,-12],[3,-6],[1,-4],[-2,-2],[-3,0],[-2,0],[-2,2],[-2,8],[-2,2],[-6,1],[-2,-4],[2,-15],[-3,-3],[-10,6],[4,-9],[-21,0],[-17,-4],[-7,-5],[-18,-24],[-5,-10],[-4,-4],[-4,0],[-5,3],[-4,5],[-4,4],[-10,-3],[-4,1],[-3,7],[-1,9],[-3,4],[-5,-8],[-5,-1],[-2,-2],[0,-3],[-2,-14],[-4,5],[-15,-17],[-8,-4],[5,-8],[9,2],[17,10],[-4,-11],[-3,-8],[-8,-14],[0,15],[-4,0],[-5,-8],[-4,-9],[-5,-4],[-9,-3],[-10,-1],[-5,3],[-2,11],[2,15],[3,15],[3,9],[3,4],[6,1],[5,7],[10,7],[-5,5],[0,5],[2,6],[1,8],[0,9],[-1,6],[0,7],[2,8],[3,6],[3,4],[7,7],[4,2],[4,-1],[3,-3],[4,-1],[5,8],[-2,15],[-2,15],[2,13],[3,3],[8,0],[4,5],[5,12],[1,6],[1,8],[-2,14],[-3,12],[-10,21],[-1,7],[1,5],[2,4],[1,5],[0,3],[-1,3],[0,3],[-2,3],[-1,4],[1,3],[1,3],[0,4],[2,16],[4,9],[6,3],[8,0],[8,-4],[4,-1],[4,3],[3,6],[4,1],[13,-10],[5,-6],[5,-8],[25,-52],[4,-6],[4,-4],[4,-6],[2,-8],[3,-2],[6,-5],[4,-8],[-6,-7],[6,-5],[0,-3],[-7,-4],[-25,4],[2,8],[-16,1],[-5,-4],[3,-12],[-1,-6],[-14,-28],[7,1],[10,18],[6,5],[3,-2],[8,-8],[7,-3],[11,-7],[-1,-4],[-1,-3],[-2,-3],[-2,-2],[0,-4],[3,0],[15,8],[4,0],[4,3],[2,1],[1,-2],[0,-5],[3,-4],[2,-3],[2,-2],[-1,-6],[-2,-15],[-1,-4],[-3,-2],[-3,0],[-3,2],[-4,0],[0,-4]],[[96308,23455],[5,-6],[4,-11],[2,-14],[1,-13],[-1,-13],[-3,-9],[-5,-5],[-7,-2],[0,3],[-2,6],[-2,3],[-2,-10],[-3,-3],[-2,0],[-2,1],[-2,6],[-1,12],[-1,12],[0,7],[-4,11],[-5,-1],[-17,-30],[-4,-5],[-6,-3],[1,8],[3,10],[3,10],[3,4],[1,2],[3,9],[3,9],[3,1],[7,0],[22,11],[5,1],[3,-1]],[[96381,23723],[2,-21],[4,-20],[10,-40],[-9,-3],[-4,2],[-4,8],[-5,4],[-6,3],[-5,4],[-3,8],[-3,8],[0,4],[2,3],[0,2],[2,6],[17,40],[0,-2],[0,-2],[1,-2],[1,-2]],[[98438,26126],[5,-1],[0,-5],[0,-6],[1,-8],[-2,-8],[-2,-18],[-2,-7],[-4,-4],[-5,-1],[-5,1],[-5,0],[-4,-3],[-7,-10],[-2,-3],[-5,-2],[-14,2],[2,2],[3,5],[0,1],[3,0],[7,-1],[3,3],[14,26],[5,-8],[6,4],[4,10],[0,11],[-3,-4],[-4,1],[-2,4],[-2,7],[5,0],[3,5],[4,4],[3,3]],[[98272,26244],[4,3],[1,4],[1,6],[-2,7],[-3,-6],[-1,-2],[-1,7],[-1,7],[1,8],[1,6],[5,-6],[3,-7],[4,-6],[6,-1],[0,4],[-4,4],[-3,7],[-2,7],[-1,10],[1,9],[3,22],[2,5],[1,0],[1,-5],[0,-5],[3,-1],[1,8],[2,5],[2,3],[4,-4],[0,-8],[0,-11],[1,-10],[2,6],[9,4],[4,7],[-9,0],[6,8],[3,5],[2,7],[3,17],[2,3],[1,-8],[0,-9],[-1,-8],[-3,-15],[2,-6],[0,-4],[-1,-2],[-2,-2],[-4,-8],[-1,-3],[-1,-6],[-1,-15],[-1,-7],[-2,-1],[-5,1],[-2,-2],[-3,-7],[-2,-3],[-7,-4],[-1,-2],[-2,-4],[0,-4],[-1,-3],[-4,-4],[-4,-3],[-4,0],[-3,3],[1,2],[0,2],[0,2],[0,3]],[[97985,24839],[2,-8],[-2,-14],[-1,-15],[-1,-31],[-2,-4],[-2,-8],[1,-13],[5,-37],[8,-35],[0,-9],[-4,6],[-3,1],[-1,-3],[2,-9],[4,-5],[17,-7],[-8,-5],[-18,-2],[-8,-5],[-8,-10],[3,-5],[8,-2],[6,-3],[6,12],[10,4],[10,0],[5,-2],[1,-8],[2,-9],[3,-5],[1,2],[2,16],[2,15],[7,-8],[2,-5],[1,-10],[-1,-16],[1,-4],[4,2],[2,5],[2,7],[2,6],[4,3],[4,-1],[4,-3],[3,-5],[1,-8],[8,14],[4,3],[1,-11],[3,-6],[4,-5],[3,-7],[0,-4],[0,-5],[-1,-4],[-1,-3],[1,-4],[2,-6],[1,-3],[1,-16],[-1,-17],[-2,-17],[-4,-14],[-3,8],[-7,-14],[-5,2],[-2,-13],[0,-4],[-2,5],[-3,1],[-2,-2],[-2,-4],[-2,8],[-3,13],[-1,8],[0,9],[1,5],[-1,4],[-3,8],[-1,8],[0,8],[0,8],[-4,3],[-4,-3],[-2,-6],[1,-7],[4,-5],[-4,-16],[-1,-16],[3,-16],[9,-21],[-1,-2],[-6,2],[-19,0],[-3,4],[-7,12],[-6,-4],[-4,4],[-5,13],[-11,17],[0,8],[5,11],[-5,-1],[-8,-5],[-22,-5],[-8,-7],[-16,-2],[-25,-14],[-11,-3],[-2,3],[1,6],[3,4],[3,3],[8,2],[41,22],[5,1],[4,2],[-2,4],[-8,8],[-4,2],[-8,-2],[-5,3],[-2,3],[-3,8],[-3,4],[-7,6],[-7,-2],[-7,-5],[-8,-2],[-5,-7],[-3,-14],[-1,-18],[0,-14],[1,-9],[0,-3],[0,-3],[-4,-7],[-3,-3],[-23,-6],[-3,1],[-6,-2],[-5,-9],[-13,-7],[-5,-8],[-29,-21],[-54,-60],[-8,-3],[-5,2],[-4,-1],[-3,-3],[-21,-23],[-10,-3],[-5,-3],[-3,-5],[-3,-5],[-3,-5],[-8,-3],[-7,-9],[-3,-1],[-5,-3],[-5,-9],[-3,-5],[-2,-5],[-7,-4],[-3,-4],[-17,-28],[-7,-6],[-6,3],[-4,-4],[-3,-4],[-2,-6],[-1,-6],[-15,-43],[-1,-7],[0,-33],[-2,-11],[-3,-9],[-9,-15],[0,-5],[0,-7],[-1,-6],[-3,-2],[-3,-1],[-8,-8],[6,-11],[2,-21],[0,-44],[3,-29],[1,-10],[-2,-11],[-3,-5],[-4,-3],[-3,-7],[8,-2],[3,-15],[0,-19],[-3,-35],[-2,-12],[-4,-9],[-2,-7],[-3,-9],[-1,-9],[-19,-54],[-30,-48],[-15,-49],[-7,-42],[-4,-13],[-3,-15],[4,-7],[5,-7],[-1,-14],[-10,-18],[-3,-8],[0,-6],[1,-7],[1,-7],[-4,-11],[-8,-8],[-6,-9],[2,-15],[-3,-7],[-3,-3],[-4,0],[-5,6],[1,-7],[1,-6],[2,-11],[-5,-7],[-3,-2],[-10,0],[-6,-3],[0,-6],[4,-5],[7,-2],[-7,-21],[-2,-3],[-3,-2],[-4,-3],[-5,-8],[-3,-1],[-1,1],[-2,0],[0,-5],[0,-6],[0,-3],[1,-2],[3,0],[4,-2],[4,-4],[3,0],[4,6],[5,-6],[7,-6],[6,-6],[0,-8],[-5,-6],[-13,-4],[-6,-4],[-5,-13],[-2,-4],[-3,-1],[-3,-1],[-3,-2],[-3,-15],[-10,-11],[-3,-10],[5,4],[10,4],[9,11],[12,8],[4,5],[4,14],[4,7],[3,4],[4,1],[3,3],[3,8],[3,-8],[1,-9],[-1,-32],[-2,-8],[-5,-3],[-6,-1],[-5,1],[-1,-1],[-3,-3],[-2,-4],[0,-4],[0,-4],[-58,-9],[-23,-12],[-21,-22],[-16,-35],[-5,-14],[-1,-7],[0,-17],[-3,-11],[0,-6],[-3,-12],[-4,-12],[-7,-9],[-6,-5],[-14,-9],[-7,-7],[-6,-11],[-5,-11],[-5,-9],[-39,-40],[-9,-20],[-4,-31],[1,-16],[-2,-6],[-8,-4],[-6,-9],[-2,-2],[-5,2],[-9,5],[-5,1],[-5,-1],[-8,-5],[-4,-2],[4,-2],[22,-2],[-5,-21],[-9,-8],[-10,-6],[-9,-12],[-4,1],[-7,4],[-8,3],[-6,-4],[-3,-5],[-15,-13],[2,-2],[2,-7],[2,-3],[-8,-4],[-9,4],[-9,1],[-5,-13],[-6,6],[-1,2],[-10,2],[-5,0],[-3,-4],[-6,-9],[-3,-4],[-4,-1],[-9,-2],[-4,0],[-4,6],[1,12],[0,7],[-1,0],[-3,1],[-3,-4],[0,-13],[-3,-4],[-1,-3],[0,-3],[-2,-2],[-9,0],[-5,3],[-2,5],[-2,6],[-2,3],[-4,-1],[0,-5],[1,-7],[-1,-8],[-8,-6],[-9,4],[-9,7],[-8,4],[-9,-1],[-5,1],[-4,7],[-7,37],[0,6],[-2,7],[-3,0],[-9,-4],[-28,-9],[-10,0],[3,7],[3,2],[4,1],[4,2],[-6,6],[-7,2],[-14,1],[3,-9],[3,-5],[2,-4],[-4,-7],[1,-1],[2,-5],[1,-2],[-15,-7],[-48,7],[4,11],[1,2],[3,3],[4,2],[9,0],[4,-2],[3,-7],[8,-2],[5,3],[-7,11],[-8,4],[-24,-1],[-11,11],[-6,2],[-2,-10],[2,-13],[8,-16],[3,-10],[-7,2],[-10,18],[-7,4],[-1,3],[0,6],[-2,5],[-7,4],[-2,3],[-1,5],[-1,7],[9,4],[3,0],[3,-2],[0,-1],[0,-3],[1,-4],[2,4],[15,18],[2,16],[-2,19],[-5,14],[-7,0],[2,-15],[-2,-14],[-6,-9],[-5,1],[-4,9],[-5,24],[-15,41],[-5,7],[-8,3],[-27,-7],[-4,-3],[0,-7],[1,-7],[-1,-3],[-4,2],[-5,3],[-5,3],[-3,-2],[-8,2],[-6,0],[-2,-6],[-2,-6],[-3,-2],[-3,1],[-3,1],[-4,3],[-2,1],[-2,-1],[-4,-6],[-2,-1],[-3,2],[-3,4],[-2,6],[-4,2],[-2,5],[-4,11],[-3,4],[-6,6],[-3,4],[3,4],[4,2],[4,3],[2,8],[-14,28],[-7,17],[0,12],[-4,5],[-12,2],[-5,2],[-13,13],[-4,2],[-32,5],[-2,-1],[-2,-4],[0,-10],[-1,-5],[-3,-9],[-2,-8],[0,-8],[-2,-9],[-3,-7],[-5,-2],[-9,1],[-5,-2],[-8,-8],[-4,-2],[-6,1],[-11,6],[-6,1],[-5,-2],[-2,-2],[-2,-2],[-2,-2],[-1,2],[-1,4],[-1,2],[-4,1],[-17,12],[-5,0],[-5,-1],[-5,0],[-18,8],[-39,-1],[-18,5],[-16,17],[-8,16],[-1,6],[1,4],[8,5],[3,3],[11,18],[9,20],[8,28],[4,12],[6,5],[8,3],[13,16],[7,6],[0,4],[-6,-1],[-17,-16],[-12,-6],[-7,-6],[-4,-7],[-1,-7],[1,-4],[1,-4],[-1,-6],[-1,-1],[-9,-14],[0,-3],[-1,0],[-2,6],[0,2],[1,5],[0,5],[-3,4],[-4,-18],[-9,-8],[-20,-6],[0,10],[1,9],[3,5],[4,-4],[1,19],[3,13],[5,9],[8,7],[17,6],[7,6],[5,13],[-10,-7],[-9,-5],[-4,1],[-6,2],[-4,3],[-1,4],[16,28],[2,6],[1,4],[-3,5],[-3,-1],[-3,-4],[-3,-4],[-1,-2],[-1,-4],[-1,-5],[-1,-3],[-5,-5],[-1,-3],[-8,-18],[-1,-6],[-4,-7],[-26,-11],[-4,-4],[-7,-11],[-2,-2],[-2,3],[-2,7],[-1,8],[0,4],[1,7],[-1,8],[-1,12],[0,53],[2,14],[4,6],[18,4],[19,0],[-2,-4],[2,-5],[7,9],[8,4],[18,0],[7,2],[15,8],[7,2],[8,-2],[4,0],[3,4],[3,5],[2,3],[6,7],[13,9],[6,6],[4,13],[-12,-7],[-4,-1],[-20,3],[-26,-11],[-7,3],[5,18],[4,6],[5,5],[14,7],[5,5],[-27,-6],[-5,2],[-2,14],[0,13],[3,10],[7,4],[7,3],[14,11],[8,2],[15,-8],[8,-1],[6,9],[-10,-1],[-4,3],[-3,6],[18,9],[8,9],[2,15],[-37,-30],[-23,-6],[-15,-13],[-3,-1],[-6,-2],[-3,-1],[-5,1],[-2,2],[-4,11],[0,9],[11,34],[5,35],[2,9],[13,10],[13,-8],[14,-14],[12,-4],[-3,14],[-5,15],[-4,5],[-3,-14],[-6,7],[-11,8],[-4,6],[-4,6],[-1,7],[2,7],[3,10],[10,15],[6,7],[3,-2],[2,-10],[5,-7],[12,-9],[-3,-3],[-2,-3],[-2,-5],[-1,-5],[9,1],[8,6],[7,1],[8,-12],[2,-6],[1,-5],[0,-6],[-3,-8],[-7,-8],[-3,-6],[3,-2],[9,1],[3,3],[4,6],[2,8],[1,8],[2,3],[7,-11],[4,-3],[3,-5],[2,-14],[5,-20],[1,2],[1,2],[2,-3],[3,-3],[2,-2],[-1,19],[-15,28],[-28,42],[4,9],[5,4],[28,12],[5,0],[3,-5],[5,-14],[4,-6],[5,-2],[6,-1],[5,4],[3,7],[-5,3],[-10,-1],[-3,4],[-3,6],[-1,3],[1,11],[1,7],[3,2],[0,1],[-11,0],[-10,-8],[-7,-2],[-23,-4],[-5,4],[0,8],[-3,12],[-2,12],[-5,6],[-1,7],[-1,26],[2,10],[6,7],[9,-1],[6,-7],[11,-23],[3,-4],[5,-2],[4,0],[3,4],[-2,4],[-10,12],[-10,20],[-6,8],[-7,1],[11,27],[7,10],[6,-3],[11,-26],[0,-9],[0,-8],[0,-6],[3,-5],[2,8],[-1,12],[1,4],[4,3],[17,-3],[-4,8],[-16,8],[-6,6],[-4,10],[-4,10],[0,10],[4,9],[6,4],[8,-4],[7,-5],[7,-3],[6,-5],[7,-9],[6,-5],[4,7],[-5,2],[-34,29],[-3,5],[1,9],[5,8],[14,18],[5,4],[5,1],[6,1],[-1,2],[-3,7],[-1,3],[21,19],[9,1],[4,-18],[1,-3],[2,-3],[2,-4],[1,-6],[-1,-6],[-3,-11],[0,-6],[2,-8],[3,-6],[3,-7],[-2,-11],[10,-2],[5,1],[-1,7],[-1,3],[-1,4],[-1,5],[0,4],[-1,4],[-6,8],[0,6],[0,9],[0,9],[-2,9],[-2,6],[-4,19],[0,7],[3,21],[8,13],[10,2],[9,-13],[2,-8],[-1,-4],[-2,-4],[-2,-9],[-2,-11],[1,-8],[3,-7],[5,-6],[0,13],[3,9],[3,8],[2,10],[-1,12],[-7,13],[-2,10],[-3,8],[-1,4],[6,4],[3,5],[2,2],[4,-3],[5,-11],[4,-7],[5,-5],[8,-3],[-5,4],[-11,20],[-7,10],[-1,6],[2,9],[5,5],[15,7],[2,3],[2,9],[1,3],[2,2],[5,2],[2,3],[8,13],[8,5],[8,-3],[12,-17],[10,-8],[3,-6],[9,-27],[2,7],[1,9],[-1,9],[-2,8],[-2,2],[-6,6],[-7,12],[-2,2],[-1,1],[-2,1],[-1,4],[-1,4],[1,16],[-2,17],[-2,9],[-2,7],[7,15],[23,40],[8,11],[10,10],[7,14],[-1,19],[25,0],[2,3],[3,10],[1,9],[-1,2],[-3,5],[-7,4],[0,4],[13,7],[6,5],[10,18],[17,18],[11,17],[9,18],[1,4],[0,6],[1,7],[2,7],[3,5],[3,4],[3,3],[3,3],[-2,1],[-5,7],[5,4],[6,3],[17,1],[10,4],[10,8],[5,6],[3,4],[4,4],[7,-2],[2,2],[7,10],[5,-4],[4,-10],[6,-10],[13,-3],[16,8],[15,14],[17,26],[13,14],[5,8],[5,6],[18,15],[4,6],[1,5],[1,6],[1,5],[2,3],[7,7],[3,2],[5,4],[11,20],[5,5],[5,3],[21,21],[13,7],[8,6],[3,9],[2,5],[3,4],[3,4],[3,2],[7,1],[3,-1],[2,-1],[3,1],[3,4],[4,6],[11,5],[9,11],[12,-3],[6,1],[14,17],[6,3],[4,4],[10,23],[4,7],[1,7],[1,7],[5,11],[7,2],[4,5],[0,8],[2,13],[6,11],[6,8],[37,29],[3,9],[3,16],[6,3],[4,6],[2,9],[2,9],[3,3],[7,5],[7,8],[4,3],[4,1],[3,-1],[6,-6],[4,-1],[18,44],[-9,3],[-7,-12],[-6,-16],[-7,-7],[5,26],[10,17],[7,9],[3,9],[0,4],[20,2],[6,5],[2,4],[-2,5],[5,6],[4,9],[4,5],[6,-4],[1,10],[3,2],[2,5],[11,11],[25,13],[11,14],[9,2],[4,0],[3,1],[2,5],[4,6],[3,4],[10,8],[5,9],[10,23],[5,5],[5,6],[23,65],[4,6],[3,1],[5,4],[5,6],[2,7],[5,12],[2,5],[3,2],[5,4],[4,11],[7,21],[5,5],[20,64],[6,11],[3,9],[0,19],[2,13],[14,33],[6,27],[7,87],[5,22],[1,14],[3,14],[2,5],[9,18],[4,11],[3,13],[5,38],[3,11],[3,20],[6,22],[-2,7],[-2,-5],[-1,5],[-1,3],[0,28],[4,5],[17,-4],[19,5],[6,-1],[2,0],[13,10],[27,27],[7,13],[2,3],[4,2],[4,-2],[3,2],[2,14],[2,3],[3,3],[2,5],[4,9],[10,37],[2,3],[1,1],[1,2],[1,12],[0,2],[1,1],[1,2],[2,5],[2,6],[1,6],[0,7],[3,9],[7,10],[9,8],[5,4],[-1,5],[0,6],[1,5],[4,12],[0,7],[0,13],[1,14],[2,6],[2,-2],[1,1],[3,3],[3,2],[4,0],[-6,17],[-1,7],[-3,66],[1,7],[2,13],[1,6],[-2,31],[0,64],[-2,18],[0,11],[3,4],[3,1],[3,1],[2,4],[3,12],[7,14],[1,3],[0,7],[1,2],[2,3],[2,1],[2,0],[1,1],[1,3],[1,3],[1,4],[2,2],[1,0],[3,-1],[2,1],[4,5],[8,9],[3,2],[1,2],[15,18],[28,56],[12,19],[10,7],[-5,-20],[0,-6],[4,-3],[1,3],[2,5],[2,4],[5,-3],[2,1],[2,3],[2,3],[-1,9],[8,6],[1,5],[-3,6],[-1,2],[-4,-5],[-4,-4],[-4,-1],[-3,2],[10,23],[13,10],[55,5],[18,-4],[17,-8],[9,-1],[-7,-4],[-60,8],[-4,-2],[-3,-6],[-3,-13],[-3,-23],[-2,-11],[-4,-6],[2,-12],[-1,-5],[-4,0],[-5,1],[4,-16],[2,-2],[4,-3],[2,-3],[0,-10],[-4,-18],[2,-9],[2,3],[5,5],[4,-17],[10,-16],[24,-31],[3,-2],[4,3],[7,8],[1,1],[4,1],[1,2],[-1,7],[1,3],[4,7],[2,0],[3,-7],[4,9],[4,6],[4,-1],[3,-9],[2,-8],[0,-5],[-2,-12],[2,-5],[0,-5],[-4,-6],[5,-2],[4,1],[4,-2],[3,-9],[-1,-3],[-3,-26],[1,-11],[1,-5],[-1,-4],[-3,-8],[-6,-11],[-7,-9],[2,-3],[2,-1],[2,1],[3,3],[3,-30],[1,-9],[2,-9],[3,-8],[2,-8],[-1,-9],[-1,5],[-2,5],[-2,4],[-3,2],[-2,-21],[1,-6],[4,-7],[2,-4],[1,-7],[2,0],[3,7],[2,-7],[2,-24],[4,-16],[0,-5],[-2,-4],[-4,-3],[-1,-5],[2,-8],[4,-5],[7,-3],[12,0],[6,2],[6,4],[10,15],[10,9],[4,9],[11,24],[17,27],[7,5],[3,9],[3,2],[2,-2],[0,-5],[-1,-5],[-1,-5],[10,7],[5,5],[3,7],[5,14],[2,4],[2,0],[3,-2],[2,-1],[2,7],[-2,6],[2,9],[5,7],[4,3],[5,-3],[4,-8],[3,-11],[1,-11],[1,0],[2,6],[1,1],[2,-1],[1,-6],[4,4],[-4,14],[4,7],[7,4],[7,5],[2,7],[0,6],[-2,4],[-4,2],[-10,-12],[-2,1],[0,8],[0,4],[5,9],[2,3],[6,6],[3,3],[3,2],[14,4],[2,3],[6,15],[7,8],[-1,-27],[6,-3],[1,2],[9,14],[0,3],[1,8],[1,2],[1,1],[4,2],[14,13],[2,0],[3,0],[4,-1],[2,-3],[3,-16],[-5,-2],[-13,6],[2,-8],[-2,-4],[-3,-5],[-1,-8],[-3,2],[-3,0],[-3,-2],[-2,-4],[1,-3],[1,-3],[1,-1],[2,-1],[-4,-7],[-9,-5],[-9,-1],[-4,7],[-4,1],[-8,-2],[-5,-6],[7,-12],[-4,-4],[-3,-5],[1,-4],[4,-3],[-1,-7],[-1,-7],[-3,-6],[-2,-4],[2,-5],[3,-1],[3,3],[1,9],[7,15],[0,3],[18,6],[10,0],[7,-6],[-3,1],[-2,-1],[-2,-4],[-1,-6],[0,-5],[-3,0],[-2,2],[-2,1],[-2,1],[-2,2],[-1,0],[-1,-5],[0,-2],[2,-4],[0,-2],[0,-6],[-2,-2],[-1,0],[-3,2],[-2,-14],[-4,-4],[-4,-2],[-3,-9],[4,0],[5,-3],[5,-6],[1,-9],[0,-6],[-3,-13],[-1,-7],[-3,-7],[-8,-7],[-15,-7],[1,-7],[2,-4],[2,-3],[2,-2],[30,28],[10,5],[0,4],[-4,2],[-4,0],[-3,1],[-2,5],[12,2],[6,0],[4,-4],[4,-3],[7,1],[7,4],[4,4],[-2,2],[-4,6],[17,-2],[8,3],[6,11],[-32,-1],[-5,-3],[0,-2],[0,-2],[-1,-3],[-2,-1],[-2,0],[-1,1],[-2,1],[-1,2],[2,8],[-15,-10],[-7,0],[-3,18],[2,10],[2,5],[4,4],[3,5],[1,4],[-1,4],[0,3],[2,2],[3,0],[1,2],[1,4],[-1,6],[10,-4],[-3,-9],[-1,-9],[2,-18],[5,14],[2,11],[4,7],[8,0],[-5,12],[-1,5],[5,12],[0,9],[-2,7],[-5,0],[-2,-6],[-1,-9],[-2,-6],[-3,2],[-9,15],[-2,7],[10,0],[-2,8],[-1,6],[2,2],[4,-3],[1,12],[5,-3],[10,-17],[6,-7],[6,-2],[5,2],[4,11],[5,-8],[4,4],[3,9],[-1,11],[4,-2],[5,-7],[3,-9],[1,-8],[0,-7],[0,-5],[-1,-2],[-6,-1],[-1,-3],[0,-4],[1,-5],[5,-7],[5,3],[5,8],[6,12],[11,19],[4,2],[2,-8],[-2,-10],[-14,-37],[-2,-6],[0,-11],[-1,-5],[-1,1],[-4,-3],[-3,-5],[0,-1],[-1,-2],[-2,-2],[-3,0],[-1,6],[0,24],[-1,3],[-2,-5],[-2,-7],[-1,-6],[-4,3],[0,-5],[2,-7],[2,-6],[6,-11],[2,-5],[1,-9],[-1,-1],[-3,-2],[-1,-1],[0,2],[-6,-6],[-2,-4],[-2,-4],[-2,-3],[-3,-1],[-15,0],[-7,-4],[-5,-8],[-3,3],[-4,1],[-3,-2],[-2,-6],[-4,2],[-5,-2],[-5,-5],[-4,-6],[-1,-7],[7,1],[8,3],[3,3],[6,-3],[4,3],[4,5],[5,6],[3,0],[3,-2],[3,0],[5,6],[6,2],[3,2],[2,-6],[4,-5],[4,-4],[4,-2],[3,1],[4,6],[3,2],[8,1],[5,5],[12,14],[-4,-15],[-4,-14],[-2,-4],[-6,-8],[-2,-6],[-2,-6],[-1,-5],[-2,-5],[-8,-4],[-7,-8],[-4,-2],[1,6],[5,12],[1,4],[-3,2],[-6,-10],[-4,2],[2,8],[-8,-9],[-5,-14],[-4,-17],[-6,-16],[-6,-15],[-2,-7],[1,-11],[3,-18],[0,-9],[-2,-9],[6,-2],[3,-8],[1,-7],[-1,-4],[1,-2],[3,-3],[3,1],[2,12],[-2,3],[-2,12],[-1,9],[4,-5],[15,-43],[1,-8],[1,-8],[1,-6],[2,-11],[0,-6],[6,-32],[1,-4],[3,-11],[6,-5],[7,-2],[6,3],[-2,-14],[-20,-60],[-5,-12],[-32,-55],[-22,-37],[-8,-21],[-3,-14],[-2,-12],[0,-18],[0,-10],[-3,-6],[-2,-6],[-2,-7],[0,-3],[-6,-11],[-5,-16],[-5,-8],[-13,-13],[-6,-9],[-8,-23],[-2,-2],[-2,0],[-4,0],[-3,-10],[-1,-4],[-3,-4],[-3,-4],[-2,-5],[0,-9],[1,-6],[4,-9],[2,-5],[-2,-5],[-2,-4],[-5,12],[-3,3],[-5,2],[-3,-2],[-6,-9],[-3,-2],[-4,-4],[-14,-28],[-6,-23],[-4,-26],[-7,-22],[-12,-10],[0,-4],[2,0],[1,-1],[1,-2],[2,-1],[-22,-74],[-3,-20],[-4,-13],[-5,-10],[-9,-8],[0,-6],[1,-11],[0,-7],[0,-3],[0,-3],[-2,-8],[-3,-5],[-2,-2],[-2,-3],[-1,-8],[-1,-4],[-2,-4],[-12,-12],[-3,-2],[-8,-2],[-12,-9],[-1,-6],[-1,-7],[-1,-5],[-3,-4],[-13,-16],[-38,-15],[-9,-6],[-8,-15],[-21,-25],[-4,-11],[-6,-25],[-7,-16],[-1,-5],[1,-8]],[[98657,28711],[6,6],[2,-2],[2,-6],[3,-8],[-2,-3],[-4,-2],[-3,-5],[-1,-6],[3,-12],[0,-6],[-1,-4],[-1,-2],[-4,1],[-2,0],[-6,-3],[-5,-2],[-6,2],[-12,7],[3,5],[-7,10],[-2,1],[-4,-6],[-3,-1],[-1,7],[1,10],[2,7],[2,-1],[14,1],[3,-3],[3,-6],[3,-3],[5,6],[12,18]],[[98846,28780],[-2,-1],[-2,-1],[-2,-1],[-2,1],[-1,0],[-2,1],[-3,3],[-1,2],[0,2],[1,3],[0,1],[1,2],[0,2],[-1,2],[-2,3],[-2,1],[-2,2],[-1,6],[7,5],[2,-5],[3,-16],[3,0],[2,-2],[2,-4],[2,-6]],[[98569,28918],[4,4],[4,-3],[4,-7],[2,-8],[2,-14],[-1,-6],[-4,-2],[-10,0],[-3,2],[4,6],[0,6],[-2,15],[0,7]],[[98647,29046],[2,-4],[2,-5],[2,-6],[0,-8],[-2,-4],[-5,-3],[-4,-1],[-4,0],[-5,13],[4,11],[7,7],[3,0]],[[98760,28983],[5,-13],[2,-3],[-5,-20],[-3,-5],[-4,-1],[-2,5],[-1,7],[0,7],[-1,7],[-4,-2],[-4,-4],[-3,-1],[-2,7],[0,15],[-1,5],[-2,3],[-3,-1],[-6,-2],[1,5],[-1,4],[-1,3],[-2,4],[-6,-3],[-8,5],[-6,12],[-2,15],[7,-15],[2,-2],[3,5],[0,7],[-1,8],[1,7],[2,10],[-3,5],[-6,5],[-3,10],[8,0],[4,2],[3,6],[-6,10],[-1,12],[3,9],[8,2],[2,-2],[3,-4],[2,-5],[0,-8],[2,-3],[8,-11],[-6,-4],[1,-7],[4,-7],[7,-8],[7,-5],[3,-1],[3,-2],[-2,-6],[-2,-6],[-2,-5],[-1,-9],[-1,-6],[0,-7],[3,-10],[1,-2],[2,-2],[1,-1],[2,-1],[1,-1],[0,-2],[-1,-3],[1,-2]],[[99153,27014],[2,-11],[2,1],[1,-4],[5,-4],[7,-9],[2,-3],[4,-4],[4,0],[10,2],[9,-4],[-1,-8],[-5,-12],[-3,-14],[-1,-5],[-3,-4],[-4,-4],[-6,-4],[-2,-7],[-7,-39],[0,-2],[1,-3],[0,-4],[-1,-4],[-1,-1],[-4,-3],[-2,-2],[-3,-11],[-9,-52],[-6,-24],[-4,-10],[-1,-6],[-1,-7],[1,-15],[0,-4],[-1,-3],[-4,-9],[0,-3],[-5,-20],[-7,-22],[-11,-27],[-12,-18],[-2,-2],[-3,2],[-2,5],[-3,2],[-3,-3],[-7,-17],[-2,-9],[-1,-12],[2,5],[2,4],[2,2],[3,1],[-17,-59],[-4,-43],[-4,-13],[-7,-1],[-7,3],[-5,-3],[-17,-43],[-16,-27],[-2,-7],[-1,-6],[-1,-7],[-2,-6],[-5,-18],[-2,-2],[-5,-1],[-2,-2],[-1,-5],[-11,-45],[-6,-17],[-10,-39],[-5,-28],[-4,-12],[-14,-9],[-6,-11],[-4,-13],[-3,-13],[-9,-54],[-6,-22],[-28,-63],[-43,-57],[-10,-17],[-14,-16],[-16,-14],[-61,-77],[-19,-12],[-5,-6],[-9,-16],[-5,-3],[-21,-3],[-4,3],[-3,19],[-4,6],[1,9],[-1,6],[-2,6],[-2,7],[-1,9],[5,44],[-1,6],[-3,4],[-34,21],[-7,1],[-7,-3],[-7,-7],[-13,-24],[-3,-3],[-3,-1],[-4,2],[-6,7],[-4,6],[-1,5],[4,12],[-1,9],[-1,11],[-1,15],[2,12],[6,23],[2,16],[-4,13],[-7,3],[-8,-2],[-6,-4],[-4,-6],[-3,-6],[-3,-7],[-1,-10],[13,-5],[4,-6],[-2,-13],[-2,-5],[-3,-4],[-3,-1],[-3,4],[-3,2],[-3,-4],[-3,-6],[-4,-2],[-13,4],[-13,11],[-10,17],[-3,21],[3,11],[5,5],[13,4],[4,6],[11,22],[7,10],[7,25],[4,6],[6,4],[4,7],[3,0],[3,-15],[4,5],[1,5],[0,7],[-1,7],[-1,2],[-4,7],[-2,8],[2,4],[4,2],[4,11],[4,2],[3,2],[4,4],[3,6],[2,5],[2,7],[1,6],[1,15],[6,27],[2,9],[17,29],[15,42],[13,48],[8,40],[3,10],[2,12],[1,34],[2,13],[0,3],[0,4],[0,4],[1,1],[2,0],[2,1],[2,2],[-2,9],[-1,9],[0,9],[0,5],[3,10],[3,34],[1,24],[0,6],[-2,5],[-4,14],[-4,39],[-5,31],[-3,16],[-5,14],[-21,36],[-6,16],[-25,48],[-19,20],[-16,12],[-7,2],[-12,0],[-10,-1],[-23,14],[-17,3],[-7,3],[-7,7],[-29,46],[-6,11],[-16,42],[-11,20],[-14,13],[-15,8],[-47,12],[-16,9],[-38,47],[-10,18],[-9,23],[-5,28],[-2,27],[2,27],[4,28],[8,27],[12,17],[29,21],[71,74],[6,3],[37,-4],[14,7],[12,15],[33,58],[4,13],[3,21],[2,14],[1,8],[0,18],[1,5],[0,2],[5,2],[-2,10],[1,9],[1,9],[1,10],[1,102],[2,23],[10,37],[4,21],[2,23],[1,35],[3,21],[0,12],[-1,11],[-2,10],[-2,11],[2,8],[4,-4],[5,0],[5,1],[5,3],[0,-6],[1,-6],[2,-4],[2,-4],[2,0],[0,9],[4,-6],[4,-7],[4,-5],[5,5],[-2,3],[-6,10],[8,4],[8,-2],[8,1],[5,13],[-5,0],[-2,-1],[-2,-4],[-2,5],[0,12],[-5,8],[-8,4],[-5,-2],[-3,-7],[-1,-6],[-1,-4],[-5,-1],[-3,3],[0,9],[1,9],[1,7],[3,6],[2,2],[3,1],[3,3],[9,16],[5,6],[0,11],[-3,10],[-7,1],[-4,-10],[-3,-14],[-3,-7],[-8,9],[-1,11],[2,56],[8,28],[13,8],[16,1],[15,4],[-1,5],[-2,3],[-2,3],[-3,1],[4,5],[3,7],[1,8],[-2,9],[-12,-13],[-1,-2],[-1,-7],[-2,-3],[-1,1],[-1,2],[-2,1],[-9,-7],[-4,10],[-18,116],[-16,66],[-3,27],[0,6],[2,7],[3,4],[9,3],[3,4],[3,11],[2,13],[4,12],[7,4],[0,3],[-1,4],[-3,2],[-4,-3],[-3,-4],[-5,-6],[-2,-4],[-8,-24],[-4,-3],[-6,9],[-5,11],[-11,45],[-3,19],[-6,21],[-1,5],[-2,13],[-12,38],[-2,17],[5,0],[8,-3],[11,6],[4,-2],[3,-5],[-1,-7],[-3,-6],[0,-4],[14,-47],[1,-19],[4,-14],[5,-7],[3,14],[-4,15],[0,9],[3,5],[8,-3],[4,1],[4,5],[-6,0],[-14,4],[-5,4],[5,4],[15,22],[2,-1],[-1,-13],[12,24],[6,8],[7,2],[11,-21],[3,-4],[4,3],[1,6],[-2,9],[-2,7],[1,6],[-15,10],[-5,7],[-4,-2],[-3,7],[-2,12],[-2,8],[-7,-14],[-4,6],[-1,13],[3,7],[3,2],[4,4],[3,6],[1,7],[-18,5],[-19,-2],[-9,-4],[-8,-10],[-2,-7],[-2,-14],[-1,-7],[-3,-6],[-2,0],[-7,10],[-4,-10],[-6,-9],[-6,-4],[-6,5],[-3,10],[-11,68],[-6,55],[-5,27],[-15,45],[-38,83],[-8,27],[-2,28],[1,6],[1,6],[2,3],[4,1],[-3,-16],[-1,-8],[2,-9],[4,16],[3,6],[4,3],[4,-5],[4,-19],[6,-9],[6,-20],[4,-4],[4,-3],[3,-5],[0,-7],[-4,-5],[11,-8],[3,-1],[0,-1],[-3,-3],[-4,-3],[-4,-1],[3,-3],[1,-5],[0,-6],[-2,-6],[4,0],[2,-2],[6,-6],[0,4],[0,8],[0,4],[3,-8],[2,-14],[3,-6],[3,12],[3,-1],[1,7],[1,9],[1,9],[2,4],[4,7],[2,5],[-5,-2],[-1,-2],[-3,12],[3,26],[-2,7],[-3,-9],[-1,5],[0,31],[0,2],[1,3],[5,9],[-2,6],[-4,7],[-2,6],[1,7],[6,9],[0,4],[-9,9],[-2,0],[-4,-10],[-4,-6],[-2,-2],[-17,-3],[-8,4],[-7,10],[-1,19],[3,-4],[3,14],[3,2],[3,-5],[5,-3],[12,2],[5,3],[5,5],[4,8],[4,4],[8,7],[7,12],[3,2],[2,0],[2,2],[1,8],[-1,3],[-1,0],[-1,1],[-1,4],[-3,-5],[-3,-4],[-4,-2],[-1,0],[-3,-1],[-3,-2],[-6,-11],[-3,-3],[-3,7],[-4,-6],[-6,-9],[-5,-4],[-7,2],[-4,3],[-2,3],[-1,10],[2,3],[9,-5],[4,-7],[2,-1],[2,15],[4,19],[7,15],[1,6],[1,4],[0,5],[1,9],[5,-4],[3,1],[1,6],[-3,9],[-3,3],[-10,5],[1,-18],[-4,-20],[-6,-16],[-8,-7],[4,10],[1,2],[-3,2],[-3,-1],[-2,0],[-1,6],[-1,9],[-2,2],[-2,-2],[-2,1],[-4,2],[-1,0],[-1,2],[0,8],[0,6],[1,7],[2,11],[-4,0],[-3,-4],[-6,-12],[1,16],[-4,1],[-12,-17],[3,-5],[0,-13],[4,-2],[5,0],[3,-1],[3,-4],[3,-7],[-2,-9],[0,-6],[3,-2],[2,1],[1,3],[2,6],[3,0],[3,-5],[5,-13],[-10,-5],[-2,-1],[0,-6],[-2,-3],[-2,-1],[-3,0],[-2,2],[-4,8],[-3,2],[-3,1],[-1,2],[-7,17],[-3,9],[-3,8],[-4,8],[-6,2],[-13,0],[-2,4],[-2,6],[-4,7],[-5,7],[-4,2],[-4,5],[-2,11],[0,23],[-2,9],[-8,14],[-3,18],[-4,7],[-8,11],[10,16],[3,9],[-2,15],[-1,4],[-3,5],[-3,4],[-2,0],[-1,-8],[2,-6],[3,-4],[1,-3],[-1,-13],[-11,-10],[-1,-9],[14,-35],[2,-6],[6,-6],[2,-14],[2,-15],[2,-11],[2,-6],[3,-13],[2,-6],[3,-3],[4,-3],[3,-4],[2,-11],[3,-5],[2,-3],[3,-4],[15,-40],[3,-4],[5,1],[4,0],[2,-7],[-6,-5],[3,-7],[6,-10],[3,-13],[-3,-12],[-5,-8],[-13,-10],[-13,-1],[-7,21],[-9,57],[-36,85],[-10,35],[-63,146],[-62,147],[-2,11],[2,10],[9,21],[2,10],[1,13],[2,14],[3,8],[6,-5],[1,6],[1,2],[2,-5],[3,-7],[3,-5],[4,-3],[1,4],[-1,21],[1,8],[7,-21],[2,10],[0,12],[1,11],[5,8],[3,0],[1,-3],[2,-1],[4,4],[1,4],[2,12],[4,14],[-10,-6],[-3,2],[0,7],[0,5],[-2,2],[-3,1],[-1,-4],[0,-21],[-3,9],[-4,28],[-5,-9],[1,-11],[3,-11],[2,-10],[-1,-10],[-5,-6],[-5,1],[-7,8],[-3,0],[-1,-2],[2,-12],[-2,-2],[-3,-2],[-2,-1],[-3,-3],[-1,2],[-4,9],[-2,0],[-3,-3],[-5,-8],[2,-8],[-2,-4],[-3,-3],[-3,-5],[0,-3],[1,-3],[1,-2],[-1,-44],[-1,-5],[-2,-1],[-3,4],[-23,58],[-4,16],[2,10],[9,19],[-2,0],[-4,0],[-1,0],[5,11],[2,6],[2,7],[-8,-2],[-6,-10],[-3,-13],[-2,-15],[-3,4],[-9,18],[-1,6],[2,5],[10,13],[3,7],[-4,2],[-8,-8],[-5,-2],[-5,2],[-4,6],[-6,15],[-12,21],[-2,8],[1,11],[4,4],[5,-3],[5,-4],[9,22],[6,28],[1,30],[-4,30],[-9,37],[-4,10],[-16,29],[-5,13],[-9,39],[-4,6],[-5,4],[-56,132],[-11,17],[-24,25],[3,5],[2,4],[3,11],[-1,5],[0,10],[1,6],[5,-6],[6,-6],[16,-1],[7,-8],[4,7],[8,3],[9,10],[31,-5],[5,2],[3,5],[3,5],[3,2],[5,-8],[-8,-9],[-3,-12],[1,-32],[-1,-8],[-1,-5],[-2,-2],[-5,-1],[-1,3],[-1,7],[-2,7],[-4,3],[0,3],[1,7],[1,3],[-6,3],[-2,-1],[-2,-15],[-1,-13],[-2,-4],[-4,5],[-1,-6],[-1,-4],[-2,-4],[-2,-2],[3,-6],[8,-11],[1,6],[2,6],[2,4],[3,1],[-2,-9],[-1,-4],[-1,-4],[3,-4],[3,0],[2,3],[2,6],[1,-7],[1,-8],[0,-34],[1,-4],[2,4],[4,14],[0,17],[-1,17],[-5,13],[8,-7],[4,-29],[2,-34],[4,-24],[9,-18],[11,-18],[9,-20],[3,-24],[-14,28],[-5,8],[1,-21],[11,-21],[37,-38],[0,-7],[-6,-13],[-2,-5],[-1,-6],[0,-24],[1,-3],[1,0],[4,0],[9,-5],[2,0],[2,6],[1,7],[1,6],[4,2],[4,8],[-1,16],[-4,29],[2,13],[5,4],[7,2],[7,7],[1,8],[0,7],[-1,6],[0,3],[3,6],[2,0],[2,-4],[1,-8],[0,-5],[0,-5],[-2,-10],[9,7],[3,2],[-2,-7],[1,-4],[4,-10],[-11,-8],[-12,0],[-2,-2],[-2,-10],[1,-11],[3,-10],[3,-8],[3,-9],[5,-8],[5,-5],[7,-2],[13,3],[5,-4],[5,-12],[4,10],[0,3],[-3,6],[-3,6],[-3,7],[0,9],[2,11],[4,0],[4,-6],[3,-9],[3,6],[4,1],[3,-3],[3,-13],[4,-3],[8,0],[1,1],[1,3],[1,3],[2,1],[3,-1],[1,-4],[-1,-3],[1,-4],[2,-4],[0,-4],[1,-3],[3,-1],[2,-1],[2,-1],[3,-2],[-3,-4],[-2,-5],[-1,-6],[-1,-6],[-6,-8],[-3,-5],[0,-5],[10,-14],[6,1],[1,2],[-1,4],[0,5],[6,20],[0,4],[0,9],[0,3],[2,3],[5,2],[5,4],[4,1],[8,-1],[-1,-3],[3,-7],[4,-10],[12,-15],[4,-10],[2,-14],[4,-11],[8,-3],[16,4],[7,-3],[7,-9],[5,-12],[2,-15],[-11,-6],[-3,2],[-1,5],[0,7],[-2,6],[-1,-1],[-2,-3],[-3,0],[-4,8],[-6,-6],[-3,-4],[3,-4],[5,-14],[-10,-2],[0,-8],[4,-6],[6,4],[3,-4],[2,-1],[4,1],[2,4],[4,-9],[-1,-8],[-2,-8],[-1,-7],[2,-8],[11,-19],[1,-5],[1,-7],[1,-16],[0,-2],[2,7],[2,9],[1,8],[6,-5],[2,-2],[4,-1],[-1,3],[-1,6],[0,3],[4,0],[2,-3],[2,-3],[2,-2],[3,2],[0,6],[-1,6],[-2,2],[-6,2],[-8,3],[-7,6],[-3,10],[2,-4],[4,6],[7,1],[14,-3],[-1,6],[-1,2],[3,0],[3,-1],[3,-1],[0,-2],[3,3],[1,2],[0,3],[1,5],[8,15],[8,12],[3,-15],[-3,-12],[-4,-12],[-1,-13],[2,-14],[5,-7],[6,-1],[6,1],[0,-4],[-3,-8],[9,-18],[-4,-6],[-2,1],[-8,15],[-9,12],[-2,4],[4,-13],[11,-40],[6,-8],[5,-1],[6,-3],[0,1],[0,2],[1,1],[1,0],[1,-2],[1,-5],[1,-1],[2,-5],[7,-20],[1,-8],[-11,-2],[2,-7],[14,-21],[14,-25],[2,-14],[-4,-20],[-4,4],[-12,4],[-5,0],[-3,-3],[4,-7],[11,-10],[-2,0],[-4,-4],[7,-3],[3,-2],[2,-5],[-1,-6],[-3,-5],[-3,-2],[-3,-2],[16,-17],[3,-7],[0,-7],[-1,-14],[0,-5],[7,-22],[-8,-4],[-5,6],[-6,10],[-6,7],[2,11],[-8,5],[0,9],[-4,-1],[-7,-5],[-4,-2],[-2,1],[-3,6],[-2,1],[-1,-2],[-2,-8],[-1,-2],[-5,0],[0,1],[1,5],[0,10],[-1,9],[-1,7],[-3,7],[-3,6],[-1,-13],[1,-32],[-1,-10],[-1,-6],[0,-8],[0,-7],[2,-5],[5,-1],[2,5],[2,7],[2,7],[5,1],[18,-4],[6,-3],[5,-11],[-1,-11],[-5,-12],[-6,-11],[4,-8],[1,-15],[0,-15],[0,-11],[4,-7],[12,-16],[5,-5],[4,-1],[7,0],[3,-3],[3,-8],[-1,-5],[-1,-5],[-1,-7],[1,-14],[3,-7],[4,-6],[5,-9],[16,-42],[9,-17],[11,-14],[7,-5],[1,-3],[-2,-8],[0,-2],[1,-1],[1,-1],[-1,-2],[-1,-1],[-1,0],[-1,2],[0,1],[-1,-2],[-1,1],[-1,-1],[-1,-7],[2,-10],[7,-5],[7,-2],[7,-3],[-8,-3],[-23,2],[-5,-1],[1,-8],[3,-25],[5,-15],[0,-11],[0,-10],[-1,-10],[-6,28],[-4,12],[-8,5],[5,-26],[0,-10],[-6,-1],[0,-4],[2,-1],[3,-3],[2,-3],[2,-5],[-2,-6],[-6,-6],[-1,-4],[-1,-8],[4,-11],[0,-7],[0,-13],[1,-1],[4,-7],[3,-3],[4,-2],[7,-1],[12,8],[3,0],[3,-4],[-1,-3],[-13,-13],[-7,-4],[-4,0],[-12,8],[6,-10],[4,-15],[17,-89],[-6,3],[-4,6],[-4,2],[-7,-7],[-2,3],[-1,4],[0,4],[1,5],[-5,3],[-4,16],[-4,0],[-10,-9],[-4,-5],[-5,-9],[0,-4],[2,0],[10,2],[5,-2],[-3,-4],[-4,-5],[-2,-4],[1,-5],[5,-5],[1,-2],[0,-3],[0,-25],[1,-8],[4,-4],[2,3],[0,8],[0,8],[1,6],[2,-5],[2,7],[2,6],[3,4],[4,4],[4,1],[13,-5],[18,0],[6,-7],[-1,-18],[-3,-7],[-3,-4],[-1,-5],[1,-11],[2,-8],[1,-4],[2,1],[3,6],[7,65],[2,0],[6,-28],[2,-13],[0,-16],[6,3],[7,0],[4,5],[-5,14],[-1,10],[7,3],[8,-2],[6,-4],[4,-13],[-3,-27],[3,-11],[4,-2],[4,3],[3,3],[5,3],[6,8],[2,-1],[1,-3],[2,-1],[9,8],[2,1],[3,-2],[6,-9],[4,-2],[2,-2],[10,-21],[2,-6],[1,-7],[1,-9],[0,-13],[-4,-41],[1,-14],[4,-13],[4,-11],[4,-9],[10,-10],[13,0],[12,5],[11,9],[2,4],[1,4],[2,3],[3,1],[3,-3],[1,-6],[-1,-13],[2,-12],[4,-7],[4,-1],[6,5],[-5,3],[-3,6],[-1,9],[-2,18],[-2,16],[-1,8],[-5,17],[0,9],[0,31],[-1,8],[-2,4],[-6,37],[-2,7],[-3,7],[-3,6],[-7,8],[-3,6],[-2,6],[-1,6],[-1,6],[-4,6],[6,4],[7,-3],[6,1],[4,10],[-9,-1],[-4,1],[-4,4],[3,2],[4,2],[3,2],[1,6],[-2,0],[-2,2],[-2,1],[-1,2],[14,6],[4,7],[-1,15],[-4,-5],[-2,-3],[-2,6],[-1,6],[0,6],[1,6],[-6,18],[2,15],[4,15],[-2,13],[-2,2],[-3,1],[-3,2],[-1,5],[-1,2],[-5,12],[-5,5],[-10,6],[-5,8],[-2,8],[-2,9],[0,23],[2,9],[5,0],[7,-3],[9,4],[2,-3],[1,-5],[2,-5],[1,-5],[1,-2],[1,-2],[2,-2],[6,-9],[3,-1],[7,14],[5,-11],[3,-15],[0,-15],[-6,-12],[5,-8],[7,0],[5,-3],[2,-15],[1,-15],[-1,-8],[-3,2],[-4,6],[-2,-2],[-1,-5],[1,-7],[3,-2],[8,2],[4,-2],[1,-6],[-1,-6],[-1,-6],[-1,-6],[2,-17],[3,-2],[12,15],[-4,3],[-2,1],[2,5],[3,2],[4,-1],[3,-4],[4,-3],[4,4],[7,9],[5,3],[4,1],[3,-3],[4,-7],[3,-1],[4,4],[3,1],[0,-10],[-1,-8],[-3,-2],[-8,2],[-1,-3],[-6,-18],[-3,-4],[-7,-5],[-4,-5],[-4,-10],[-4,-12],[3,-5],[0,-4],[-1,-5],[0,-4],[3,-6],[4,-3],[2,0],[0,6],[4,7],[-2,18],[4,8],[6,-5],[11,4],[6,-9],[1,-7],[0,-15],[1,-6],[5,-10],[1,-5],[1,-7],[2,-29],[-1,-19],[0,-3],[0,-6],[-1,-6],[-3,-7],[-1,-6],[2,-4],[3,3],[3,7],[2,4],[5,-11],[-1,-15],[-4,-15],[-5,-13],[0,-5],[2,-2],[4,-2],[3,-2],[0,-7],[0,-17],[1,-8],[-2,3],[-2,5],[-2,6],[-1,6],[-2,0],[1,-15],[2,-12],[1,-11],[-4,-7],[9,-7],[3,-6],[3,-11],[3,-23],[1,-23],[1,-10],[5,-18],[1,-9],[1,-4],[4,-5],[1,-5],[0,-8],[-1,1],[-2,4],[-3,-1],[-2,-10],[3,-3],[11,-3],[4,-4],[5,-5],[5,-7],[4,-7],[3,-7],[4,-18],[2,-7],[8,-13],[4,-7],[1,-10],[-10,13],[-3,3],[-5,0],[-4,-1],[-4,2],[-5,7],[3,3],[9,5],[-10,11],[-4,8],[-4,7],[-6,6],[-7,1],[-13,-4],[2,-4],[2,-6],[2,-3],[-1,-3],[-1,-4],[-1,-5],[1,-4],[2,-4],[1,-1],[2,1],[1,0],[1,-2],[3,-1],[1,-1],[1,-3],[-1,-4],[-1,-3],[-1,-2],[2,-14],[0,-2],[2,-3],[1,-1],[5,-1],[2,2],[2,2],[1,3],[1,2],[4,-5],[3,-7],[1,-8],[3,-9],[4,5],[3,-3],[3,-7],[2,-3],[4,3],[2,6],[2,5],[5,-2],[4,-4],[1,-5],[1,-7],[-1,-10],[2,-6],[3,1],[5,2],[4,1],[-4,28],[-6,18],[-2,8],[4,3],[6,-8],[9,-30],[7,-7],[8,-3],[17,-14],[8,-3],[3,-3],[6,-11],[4,-3],[8,0],[2,-2],[1,-4],[2,-2],[3,4],[55,-68],[12,-9],[17,-5],[17,-11],[19,-5],[15,-16],[26,-6],[10,-10],[-16,0],[-3,-1],[2,-4],[13,-15],[3,-3],[4,-1],[4,3],[0,7],[-1,8],[-2,6],[5,2],[3,-2],[2,-5],[3,-3],[19,0],[0,-1],[3,-9],[2,-2],[1,1],[1,2],[2,1],[1,2],[0,4],[0,4],[2,2],[3,1],[8,3],[25,3],[7,7],[5,8],[21,23],[9,12],[3,6],[1,6],[0,15],[4,14],[1,6],[2,3],[12,11],[4,11],[3,21],[3,11],[4,8],[2,5],[1,7],[2,4],[28,14],[5,0],[5,3],[4,7],[6,17],[5,4],[12,2],[5,4],[4,7],[1,5],[-1,7],[-4,9],[11,-4],[69,-5],[6,-4],[4,-5],[-4,-6],[0,-4],[3,-3],[5,-9],[3,-4],[5,-3],[5,-2],[9,1],[4,-2],[5,-9],[4,-2],[8,1],[4,-1],[4,-4],[4,-6],[6,-10],[5,-12],[-1,-10],[-2,-6],[-5,-15],[-11,-18],[-5,-28],[-4,-14],[-10,-12],[-4,-13],[-8,-37],[-3,-10],[-5,-10],[-2,-6],[-1,-6],[2,-14],[4,-12],[3,-13],[-1,-16],[-5,-7],[-5,-8],[-3,-9],[7,-25],[-1,-12],[-3,-11],[-5,-11],[-1,-12],[4,-12],[5,-10],[3,-8],[-1,-7],[-2,-5],[-5,-8],[-1,-8],[-1,-13],[-2,-8],[4,-2],[3,-4],[1,-6],[0,-9],[-2,-5],[-10,-9],[-1,-5],[0,-38],[-2,-5],[-31,-59],[-28,-41],[-5,-5],[-11,17],[-7,3],[-7,-3],[-6,-7],[-3,-2],[-1,1],[-1,0],[-1,-7],[0,-4],[1,-6],[1,-3],[5,-9],[2,-6],[0,-7],[-5,-15],[-2,-13],[0,-31],[-3,-35],[-4,-17],[-1,-24],[-2,-9],[3,-12],[-2,-9],[-4,-9],[-2,-11],[19,-4],[9,-8],[4,-15],[-15,-25],[-7,-30],[-2,-19],[-3,-7],[-5,-6],[-4,-8],[-8,37],[-2,19],[0,17],[2,10],[2,10],[3,8],[2,7],[0,7],[-4,4],[-5,0],[-4,-9],[-2,2],[-9,10],[-4,2],[-44,4],[-45,2],[-3,2],[-3,4],[-3,1],[-7,-11],[-51,-41],[-38,-31],[-4,-7],[-1,-13],[-3,-13],[-3,-12],[-7,-15],[-10,-18],[-7,-8],[-1,-2],[-3,-17],[-3,-7],[-2,-7],[-1,-7],[0,-11],[1,-10],[2,-5],[3,-4],[3,-7],[2,-12],[2,-55],[1,-11]],[[95550,38597],[1,-6],[0,-5],[-1,-5],[-1,-5],[-2,9],[-5,-3],[-2,4],[-3,15],[0,4],[2,5],[2,14],[2,1],[2,-4],[3,-17],[2,-7]],[[96533,37104],[3,-11],[3,-6],[3,-9],[0,-15],[-3,5],[-4,14],[-2,1],[-2,-4],[0,-8],[2,-14],[-4,-13],[-9,2],[-16,13],[2,15],[0,34],[2,12],[5,2],[7,-3],[8,-7],[5,-8]],[[96333,37205],[3,2],[3,0],[3,-4],[2,-6],[0,-7],[0,-4],[-2,-1],[-2,4],[-2,-4],[-1,-2],[-4,-3],[0,-3],[5,-2],[0,-4],[-3,-4],[-2,0],[-2,1],[-4,2],[-3,4],[2,8],[2,7],[1,6],[0,5],[4,5]],[[96704,37777],[2,-12],[0,-21],[-2,-23],[-4,-17],[2,-27],[-1,-12],[-4,-6],[-3,-1],[-10,-6],[-8,-9],[-12,2],[-10,10],[1,17],[-6,5],[-8,3],[-7,1],[-6,-5],[-1,1],[0,2],[-1,2],[0,3],[3,4],[3,6],[3,8],[1,10],[-2,5],[-6,14],[-2,6],[-2,10],[-1,16],[-1,10],[-2,10],[-8,23],[5,4],[3,2],[4,-1],[4,-1],[7,-7],[4,-2],[5,8],[18,25],[1,-7],[-5,-16],[-2,-11],[2,-10],[3,-11],[4,-9],[3,-5],[8,-4],[10,2],[10,7],[8,7]],[[96228,38199],[2,1],[8,-1],[-2,-5],[-3,-3],[-7,-4],[-1,3],[-2,2],[-2,2],[-2,1],[2,3],[2,1],[2,1],[3,-1]],[[96508,38017],[3,-6],[5,-8],[1,-8],[-9,-6],[-2,-9],[0,-22],[0,-12],[-2,-8],[-3,-5],[-5,-6],[-4,4],[-7,0],[-5,5],[-3,18],[-2,2],[-4,2],[-5,2],[-2,6],[0,10],[-2,3],[-25,5],[-8,6],[-8,12],[-6,15],[-1,4],[0,5],[-2,5],[-5,4],[-2,6],[0,8],[2,8],[-11,20],[-2,8],[17,-2],[5,2],[6,6],[3,7],[5,16],[8,20],[3,12],[-2,13],[-3,4],[-15,12],[-21,-5],[0,6],[1,13],[3,12],[6,6],[9,3],[2,-1],[2,-3],[2,-2],[3,-1],[3,0],[3,2],[2,4],[1,6],[1,6],[9,6],[21,-23],[4,-1],[2,-10],[-3,-11],[-3,-10],[-2,-11],[0,-7],[2,-16],[4,-16],[-1,-7],[-4,-12],[-1,-7],[1,-5],[2,-2],[3,-2],[3,-3],[3,-6],[2,-3],[7,-5],[3,-1],[3,0],[2,-1],[1,-7],[1,-3],[2,-6],[1,-3],[-3,-10],[-1,-6],[0,-5],[3,-6],[3,-3],[3,0],[3,-2]],[[96287,38374],[3,-5],[7,-8],[2,-4],[-2,-6],[-3,-2],[-8,0],[-3,-2],[-3,-4],[-2,-6],[0,-6],[-1,-2],[-4,-22],[-2,-7],[0,-9],[1,-17],[1,-4],[4,0],[8,2],[-11,-41],[-4,-11],[-4,-6],[-7,-6],[-6,-4],[-6,-1],[-2,4],[-2,4],[5,4],[4,6],[7,14],[4,13],[2,8],[1,10],[0,36],[1,9],[3,8],[4,12],[3,12],[1,11],[-1,11],[-6,15],[-2,5],[-1,-1],[-2,-2],[1,5],[3,6],[4,4],[4,1],[3,-3],[2,-7],[2,-8],[2,-6]],[[96397,37300],[0,-5],[-2,-1],[-2,0],[-1,-4],[0,-4],[2,-4],[1,-5],[0,-5],[-1,-4],[-2,-14],[-2,-8],[-2,-4],[-2,-5],[0,3],[-1,3],[-2,-2],[-1,-3],[-4,-3],[-1,-2],[0,-3],[2,-5],[-9,-14],[-5,-4],[-7,2],[5,4],[3,3],[1,5],[-4,0],[-2,-1],[-2,5],[-2,8],[-2,8],[-1,2],[-1,7],[-2,-4],[-1,-8],[-1,-5],[-2,3],[-2,5],[-1,7],[-2,6],[2,0],[2,3],[-2,8],[-3,-2],[-2,-8],[-1,-17],[0,-3],[0,-3],[1,-7],[0,-1],[5,-7],[-3,-2],[-3,2],[-4,2],[-1,0],[-1,-3],[-2,-3],[-2,-3],[-2,-1],[-7,3],[-3,7],[0,8],[5,6],[0,4],[-5,-1],[-6,1],[-4,6],[2,11],[-2,3],[-4,-3],[-6,5],[-6,9],[-3,8],[-1,1],[-6,-6],[-3,-1],[-3,1],[-6,6],[-3,3],[-1,6],[2,3],[1,4],[-3,5],[-2,2],[-8,3],[-3,-1],[-3,-9],[-2,-13],[-3,-9],[-5,3],[-1,-3],[0,-1],[-1,0],[2,-11],[-3,-3],[-4,3],[0,5],[1,5],[0,15],[2,6],[0,4],[-4,0],[-4,1],[-3,5],[-2,7],[9,-1],[4,2],[2,6],[-5,1],[-2,5],[1,19],[-3,-1],[-6,2],[-2,-1],[-1,-4],[-1,-10],[-1,-3],[-4,-1],[-1,-3],[-1,-4],[-2,-6],[-2,-2],[-2,4],[1,6],[2,6],[-3,4],[-6,13],[0,4],[1,2],[1,2],[1,3],[0,5],[-1,0],[-3,-6],[-7,4],[0,-6],[-5,-4],[-5,3],[-4,5],[-5,0],[0,11],[-3,9],[-4,6],[-3,2],[-4,4],[-3,7],[-3,1],[-5,-12],[-3,4],[-3,4],[2,3],[0,4],[1,4],[0,6],[1,0],[3,-5],[3,-3],[2,2],[0,10],[-2,5],[-5,5],[-2,6],[7,0],[3,-1],[3,-3],[0,6],[-2,4],[-2,2],[-3,0],[-1,4],[0,8],[1,7],[1,1],[-2,14],[-4,5],[-9,6],[-4,-4],[-1,2],[0,5],[3,5],[-3,3],[-2,4],[-1,6],[0,7],[-4,-5],[-2,-6],[0,-15],[-1,-3],[-3,0],[-3,1],[-2,0],[1,-3],[0,-7],[-2,-5],[-4,5],[-4,11],[-2,5],[-9,7],[-6,19],[-4,4],[-2,2],[-2,2],[-3,6],[-2,2],[-1,-1],[-2,-2],[-2,-1],[-8,1],[-2,3],[-1,9],[6,-5],[-2,5],[-8,16],[0,4],[1,6],[1,4],[-3,2],[-3,-1],[-1,-4],[0,-5],[1,-6],[-4,3],[-1,6],[0,9],[-1,10],[-2,6],[-3,5],[-2,7],[0,11],[-2,0],[-2,-9],[-3,-8],[-4,-5],[-4,-3],[0,12],[0,7],[-3,3],[-5,-1],[0,-2],[0,-2],[0,-3],[-2,-2],[-1,1],[-37,37],[-9,15],[3,12],[0,5],[-4,-3],[-2,1],[0,4],[4,2],[-4,6],[-5,-2],[-4,-5],[-5,-3],[-5,2],[-29,26],[-4,6],[-2,8],[-3,19],[0,3],[-6,1],[-3,4],[-8,12],[-2,1],[-2,0],[-2,1],[-1,4],[-4,8],[-1,2],[-10,37],[-1,5],[1,3],[0,3],[-2,3],[0,1],[-2,0],[-3,-2],[-1,-1],[-1,-9],[-3,-2],[-2,2],[-1,9],[-3,-4],[-2,-3],[-2,0],[-3,3],[5,11],[-1,10],[-4,5],[-6,-2],[2,9],[-1,6],[-7,9],[-2,-8],[1,-12],[-2,-8],[-3,-4],[-3,2],[-2,4],[-2,6],[1,5],[0,5],[1,5],[2,5],[-2,5],[-2,2],[-2,0],[-3,3],[-1,4],[-2,7],[-21,50],[-1,8],[0,12],[0,10],[-1,10],[-2,7],[-5,-4],[0,8],[1,1],[1,3],[0,4],[-2,0],[-1,1],[-3,3],[2,5],[-1,2],[-2,0],[-3,-3],[0,-7],[-4,-1],[-2,5],[-1,9],[-2,1],[-3,-2],[-3,-3],[2,-6],[-2,-4],[-2,-4],[-5,28],[-3,11],[-5,6],[5,7],[-2,6],[-6,4],[-5,7],[5,1],[2,4],[0,5],[-1,6],[-3,4],[-4,1],[-2,3],[-1,9],[-1,0],[-5,-6],[-4,4],[-7,14],[-2,1],[-6,1],[-3,2],[-1,3],[-4,13],[-6,3],[-5,6],[-12,25],[-8,11],[-4,8],[-3,9],[2,1],[4,-2],[4,4],[3,9],[-2,8],[-4,5],[-5,2],[-4,6],[-6,28],[-5,7],[-9,40],[-1,-2],[-2,0],[-1,-1],[-1,-1],[-3,11],[-18,23],[-4,13],[-3,24],[-1,8],[-1,10],[-4,5],[-3,3],[-3,5],[-1,12],[3,2],[7,-6],[3,6],[1,10],[0,19],[-1,4],[-3,7],[-3,8],[-4,3],[-13,1],[-3,3],[2,8],[0,8],[-2,4],[-4,-4],[2,-6],[-2,-6],[-3,-6],[-2,-2],[-4,2],[-2,6],[0,5],[-3,3],[-4,6],[1,12],[5,8],[9,-5],[2,7],[-1,7],[-5,13],[3,3],[2,6],[1,8],[-2,8],[-4,6],[-4,-1],[-3,-4],[-5,-1],[0,4],[2,3],[1,2],[1,7],[-4,3],[-1,5],[0,8],[1,8],[3,0],[3,0],[6,-6],[5,-9],[4,-10],[3,-14],[3,-4],[6,-5],[20,-49],[5,-8],[12,-15],[6,-2],[6,5],[2,0],[4,-16],[3,-7],[5,-1],[-3,7],[-4,20],[-2,20],[1,4],[2,0],[50,-38],[9,-16],[15,-38],[4,-8],[5,-8],[6,-6],[5,-2],[9,-16],[3,-3],[8,-6],[4,-7],[8,-21],[4,-4],[3,-5],[10,-28],[14,-26],[3,0],[8,-11],[4,-8],[-1,-8],[5,-7],[11,0],[5,-9],[5,-4],[10,-16],[30,-12],[1,-1],[2,-6],[2,-2],[0,1],[2,2],[2,2],[1,0],[4,-2],[1,-2],[1,-3],[2,-5],[7,-11],[2,-8],[-1,-9],[2,-25],[3,-8],[4,-6],[5,-5],[3,-6],[2,-9],[2,-2],[15,-4],[5,-4],[1,-3],[-1,-19],[-2,-14],[-1,-3],[-1,-5],[1,-4],[1,-3],[0,-4],[1,-11],[3,-6],[9,-14],[8,-8],[3,-6],[4,-8],[2,-2],[7,-1],[2,-2],[1,-3],[-1,-7],[1,2],[1,0],[1,0],[1,3],[8,-15],[4,-7],[1,-7],[1,-2],[1,-1],[1,-5],[-4,0],[-5,2],[-4,4],[-3,6],[1,-6],[2,-6],[4,-6],[3,-2],[3,-4],[2,-9],[2,-9],[1,-7],[7,-5],[17,-9],[5,-10],[8,4],[7,-8],[6,-14],[2,-14],[5,2],[3,-25],[5,-10],[-3,12],[0,4],[1,5],[3,3],[3,0],[2,-4],[2,-7],[1,5],[1,6],[-1,7],[-3,6],[5,-3],[4,-10],[9,-36],[2,-10],[-1,-5],[-6,3],[2,-6],[11,-14],[-1,-6],[2,0],[3,2],[2,2],[-1,7],[-1,6],[-2,4],[-2,5],[-2,14],[0,11],[2,4],[5,-6],[9,-19],[3,-2],[7,-1],[2,-3],[1,-4],[-2,-2],[-3,-1],[0,-3],[1,-2],[2,-2],[2,0],[1,-7],[0,-11],[1,-7],[6,7],[6,0],[4,-5],[14,-26],[2,-2],[4,-2],[1,-2],[3,-10],[10,-13],[10,-10],[22,-14],[0,-4],[-8,0],[0,-4],[2,-2],[1,-4],[0,-3],[1,-3],[2,-2],[4,-1],[9,-5],[4,-4],[4,-11],[10,-16],[2,-4],[0,-11],[2,-5],[2,-2],[5,-4],[-2,-4],[6,-11],[12,-28],[6,-6],[5,-7],[7,-16],[7,-9],[3,8],[9,-13],[4,-3],[0,-4],[-2,-3],[-2,-3],[-3,-1],[-3,-1],[0,-5],[3,-2],[8,2],[3,-1],[3,-3],[3,-2],[1,3],[2,-11],[3,-6],[5,-2],[6,-2],[16,-8],[4,-4],[14,-22],[3,-8],[3,-11],[0,-5],[0,-15],[-2,-3],[-1,-5],[-1,-3],[5,-1],[2,-3],[2,-6],[4,-12],[10,-15],[1,-7]],[[95617,38544],[4,-12],[-5,2],[-8,9],[-6,9],[-2,11],[0,26],[2,0],[12,-33],[3,-12]],[[95466,38779],[4,-10],[0,-4],[-7,-14],[-8,38],[-1,13],[0,24],[-2,9],[-4,6],[2,7],[4,-5],[3,-8],[6,-28],[2,-19],[1,-9]],[[97594,37237],[1,-1],[-1,-2],[-1,1],[1,2]],[[62292,38403],[-1,19],[3,21],[20,82],[6,19],[17,32],[7,17],[5,18],[4,23],[2,18],[0,25],[-2,20],[-5,1],[-3,17],[-1,4],[-2,2],[-4,1],[-2,1],[-4,7],[-3,9],[-3,10],[-1,10],[1,8],[5,21],[2,6],[2,8],[1,10],[0,20],[-1,6],[-1,6],[0,5],[0,7],[1,3],[5,6],[2,4],[1,11],[1,9],[2,6],[6,2],[4,11],[-1,23],[-6,39],[-4,19],[-5,18],[-13,25],[-2,7],[-3,20],[-5,19],[-25,68],[-5,19],[-2,20],[2,35],[3,18],[0,37],[0,1],[-1,4],[0,3],[0,4],[3,5],[0,3],[2,14],[0,6],[-1,19],[-7,41],[-13,73],[-20,56],[-18,53],[-2,18],[0,118],[-11,115],[0,39],[8,73],[2,26],[-2,9],[-7,13],[-3,27],[-18,51],[-2,14],[0,18],[3,37],[3,17],[14,48],[5,24],[2,2],[3,-4],[2,5],[2,17],[21,68],[5,9],[2,9],[1,8],[1,28],[8,0],[6,22],[10,51],[2,6],[7,16],[2,5],[2,14],[2,6],[5,10],[3,12],[5,24],[7,22],[10,22],[8,23],[3,27],[-2,11],[-5,26],[-1,12],[1,14],[4,7],[2,-3],[1,-15],[4,16],[2,16],[0,17],[-2,16],[-11,33],[-4,17],[-1,20],[1,7],[3,9],[2,8],[3,6],[2,6],[0,8],[1,33],[1,8],[2,6],[5,2],[9,0],[10,4],[60,-12],[8,3],[3,0],[7,-12],[5,-5],[5,-3],[4,2],[2,7],[2,6],[2,5],[4,5],[4,2],[8,2],[4,4],[-3,4],[16,16],[9,10],[5,15],[9,32],[7,16],[6,13],[7,9],[18,15],[10,15],[2,-3],[1,-9],[0,-19],[5,-33],[1,-3],[0,-5],[0,-4],[-2,-12],[0,-10],[0,-8],[2,-5],[4,-2],[5,3],[3,6],[2,8],[3,6],[9,7],[4,6],[2,9],[-1,5],[-5,4],[-3,7],[-3,10],[0,8],[3,5],[45,10],[2,1],[2,2],[4,5],[2,-17],[2,-6],[1,-1],[0,-2],[0,-9],[-3,-17],[1,-6],[4,5],[2,-11],[2,1],[3,10],[-3,31],[1,6],[5,9],[2,7],[-1,1],[1,15],[0,6],[1,4],[1,5],[0,6],[-2,7],[-3,5],[-2,6],[2,8],[9,19],[9,13],[3,0],[5,-4],[4,-2],[4,0],[4,-1],[10,-13],[6,2],[17,20],[4,3],[4,1],[4,1],[6,-2],[2,-5],[-1,-20],[1,-9],[1,-5],[2,-2],[4,-2],[2,-1],[5,1],[3,0],[7,-9],[7,0],[0,4],[-3,7],[-2,10],[1,6],[3,6],[2,6],[0,10],[-7,-7],[-6,-10],[-4,-4],[2,13],[4,14],[5,12],[7,11],[6,8],[7,5],[6,3],[14,0],[7,-2],[3,-2],[2,-4],[0,-7],[0,-7],[1,-5],[2,-5],[-3,-11],[-1,-10],[-2,-8],[-5,-8],[6,-10],[4,-9],[4,-11],[10,-42],[4,-11],[6,-10],[0,6],[0,7],[0,7],[2,4],[2,-1],[3,-12],[3,-3],[5,2],[2,11],[0,13],[-2,10],[8,2],[5,-11],[5,-14],[5,-9],[3,4],[-3,16],[-6,25],[-6,5],[-11,22],[-7,5],[-9,-1],[-3,1],[-5,6],[1,4],[3,4],[3,6],[8,24],[1,12],[-3,9],[-3,0],[-4,-1],[-3,0],[-1,5],[0,9],[4,17],[4,21],[5,12],[12,20],[18,41],[6,10],[1,-3],[0,-3],[1,-3],[0,-4],[3,4],[8,15],[11,18],[4,6],[6,9],[8,2],[7,0],[6,3],[-4,6],[-8,4],[-1,6],[3,7],[16,8],[28,43],[21,39],[12,7],[8,9],[4,2],[2,-2],[1,-5],[0,-5],[0,-16],[1,-3],[3,-15],[2,-6],[3,-5],[5,-5],[9,-8],[5,-6],[0,-8],[-3,-7],[-4,-15],[-4,-7],[-4,-5],[-3,-7],[-12,-51],[-4,-20],[1,-14],[3,-1],[2,8],[3,19],[3,6],[5,4],[10,3],[10,7],[8,10],[9,5],[9,-6],[10,8],[4,6],[1,10],[-1,4],[-2,1],[-2,0],[-2,1],[-3,3],[-1,3],[-4,18],[-4,38],[0,3],[-1,2],[-4,1],[-2,-1],[-8,-8],[-1,8],[1,6],[2,15],[-4,-1],[-3,0],[-2,3],[-1,12],[-5,5],[-2,5],[-1,14],[3,13],[7,22],[10,17],[12,16],[10,19],[6,35],[4,10],[14,28],[6,7],[6,4],[7,2],[3,6],[1,14],[-2,12],[-4,2],[-3,-5],[-2,-10],[-3,-3],[-4,-1],[-3,4],[-4,13],[1,0],[9,28],[34,76],[4,6],[2,-2],[1,-7],[2,-7],[6,-14],[0,-6],[-1,-36],[1,-9],[1,-3],[2,-1],[2,-3],[1,-6],[-1,-1],[-3,-15],[-16,-39],[-4,-13],[-3,-18],[-3,-73],[1,-7],[4,-4],[3,1],[9,11],[3,4],[5,16],[3,17],[3,15],[8,13],[3,-5],[1,6],[0,15],[1,10],[20,79],[2,17],[1,7],[9,19],[1,5],[0,11],[1,5],[2,3],[5,5],[1,2],[7,15],[2,9],[1,8],[2,9],[4,5],[4,6],[1,12],[12,-34],[6,-10],[3,-3],[9,-5],[3,-4],[1,-7],[0,-14],[1,-8],[4,10],[0,13],[-2,12],[-4,6],[8,13],[7,-2],[6,-12],[2,-19],[-1,-41],[2,-11],[4,15],[2,18],[0,24],[-3,22],[-5,9],[-4,3],[-3,6],[-7,13],[-5,6],[-4,-1],[-9,-11],[-3,-3],[-4,-1],[-4,1],[-4,8],[-2,8],[-2,8],[-2,4],[-8,-23],[-3,-7],[-3,-3],[-2,5],[-5,21],[-2,7],[1,2],[3,6],[0,4],[0,6],[-1,3],[-2,3],[-4,20],[0,4],[1,2],[0,1],[-3,6],[0,1],[0,26],[2,20],[3,18],[6,16],[7,8],[2,5],[1,9],[0,18],[1,6],[3,6],[6,5],[13,-20],[9,1],[4,2],[5,-1],[3,1],[2,7],[2,10],[1,10],[0,8],[-1,14],[-2,16],[-5,14],[-5,7],[4,8],[5,-4],[12,-17],[2,-2],[3,-2],[2,-3],[2,-5],[0,-7],[-2,-6],[-2,-6],[-1,-7],[-1,-15],[-4,-31],[-1,-15],[0,-5],[0,-10],[2,-7],[4,0],[2,5],[0,6],[-1,7],[1,6],[2,3],[3,5],[3,5],[0,5],[-2,6],[-2,6],[-2,8],[0,7],[2,13],[7,21],[2,12],[0,14],[-1,14],[-2,10],[-11,8],[-7,9],[-10,20],[21,23],[0,8],[-13,18],[-11,9],[-3,5],[-7,29],[-5,38],[2,33],[13,12],[-3,9],[-4,3],[-2,6],[-1,15],[1,12],[2,18],[4,12],[5,-4],[5,-1],[2,15],[1,26],[3,5],[2,4],[3,0],[3,-6],[-2,-4],[-2,-5],[-2,-7],[2,-9],[1,2],[3,1],[2,1],[-2,-7],[1,-7],[2,-3],[3,3],[1,5],[0,5],[2,5],[4,4],[-5,11],[-1,5],[11,0],[4,-7],[2,-15],[1,-17],[1,-10],[8,7],[4,-5],[2,-12],[2,-14],[4,-27],[1,-10],[0,-4],[0,-4],[1,-3],[5,-4],[-1,-4],[-3,-7],[3,-12],[7,-11],[9,-9],[6,-3],[8,4],[8,11],[3,14],[-4,16],[2,9],[0,31],[1,10],[6,19],[1,8],[-6,21],[-2,10],[6,5],[3,-3],[8,-25],[1,11],[3,11],[3,8],[2,6],[4,3],[5,2],[5,0],[4,0],[0,2],[0,7],[0,3],[6,-12],[3,-4],[3,1],[-1,6],[-4,20],[-3,17],[-4,13],[-2,7],[-1,8],[0,8],[1,16],[4,-2],[3,-5],[1,-7],[3,-6],[0,-9],[5,-8],[15,-12],[3,-1],[3,1],[3,3],[3,2],[4,-1],[3,-2],[3,-1],[10,6],[10,12],[9,17],[7,18],[-5,12],[4,16],[11,27],[-1,7],[-4,14],[-1,9],[0,19],[1,10],[6,47],[4,16],[7,22],[3,9],[1,10],[1,7],[1,7],[3,9],[4,7],[3,3],[-1,15],[4,39],[1,15],[-2,8],[-5,14],[-2,7],[-2,8],[-1,7],[-2,26],[-1,7],[-4,13],[-2,2],[-1,-1],[-2,1],[-1,6],[0,6],[2,3],[1,3],[1,4],[0,5],[-2,7],[0,5],[3,14],[1,2],[-2,7],[-3,1],[-4,-4],[-4,-4],[0,17],[-3,10],[-9,17],[-4,24],[-2,8],[-1,-11],[-12,11],[4,6],[5,16],[3,1],[3,-3],[3,-2],[7,-1],[10,-4],[5,-11],[9,-33],[3,-4],[4,3],[4,6],[3,6],[1,9],[1,32],[1,3],[3,13],[0,3],[-1,8],[1,5],[2,8],[4,5],[4,3],[3,-4],[2,11],[3,5],[3,4],[4,9],[4,-11],[3,8],[4,15],[4,8],[4,-8],[4,4],[4,9],[1,11],[0,5],[-1,4],[-1,5],[0,6],[2,7],[2,4],[2,2],[2,4],[3,1],[0,3],[-1,8],[-3,6],[-1,1],[-3,-1],[-3,2],[-1,3],[-1,3],[-1,4],[-2,3],[-3,1],[-11,-1],[4,11],[11,7],[4,10],[5,-6],[9,-27],[1,5],[3,-5],[0,12],[-2,13],[-4,10],[-6,2],[1,6],[2,4],[2,3],[1,3],[3,3],[0,1],[0,2],[-1,4],[0,4],[1,4],[8,20],[5,5],[5,-2],[3,-4],[7,-19],[2,-8],[0,-17],[2,-7],[5,-15],[1,-15],[-1,-15],[2,-18],[4,-21],[1,-9],[-2,-1],[-10,25],[-3,1],[-2,-5],[-2,-7],[-2,-4],[-3,2],[-4,7],[-2,8],[0,8],[-3,-3],[-2,-5],[-2,-5],[-1,-7],[4,-4],[-1,-7],[-5,-17],[4,0],[6,-2],[5,-4],[3,-5],[-1,-4],[-4,-7],[-1,-3],[0,-5],[1,-6],[2,-2],[2,5],[3,10],[2,3],[2,-4],[3,-9],[0,-3],[-2,-4],[0,-4],[3,-1],[6,-1],[2,1],[2,3],[2,11],[-4,16],[1,8],[5,6],[4,-4],[8,-26],[0,-7],[1,-7],[0,-8],[3,-10],[3,-6],[2,-8],[0,-13],[2,8],[2,5],[3,2],[4,1],[5,-1],[1,-4],[2,-4],[4,-10],[2,-7],[0,-7],[-2,-3],[-4,2],[-3,3],[-3,1],[-3,-6],[6,-12],[4,-9],[3,-1],[6,14],[7,-36],[2,-13],[1,-16],[-1,-7],[-3,1],[-2,6],[-1,8],[0,16],[-1,-16],[4,-34],[-2,-13],[-2,-6],[-1,-6],[0,-7],[1,-7],[2,-10],[2,1],[2,4],[3,1],[4,-6],[6,-10],[5,-12],[2,-11],[1,-7],[2,-13],[1,-6],[-1,-8],[-3,-13],[-2,-8],[3,3],[2,1],[3,-1],[2,-3],[1,7],[2,5],[2,5],[1,17],[2,5],[3,1],[4,-3],[-1,-6],[-1,-2],[4,-2],[4,-4],[3,-5],[7,-14],[1,-4],[-1,-15],[0,-5],[4,-16],[2,-6],[4,-2],[4,0],[4,0],[2,-5],[0,-12],[-2,-3],[-3,-2],[-1,-4],[4,-11],[4,-4],[4,-3],[3,-5],[1,-12],[1,-8],[7,-16],[1,-6],[1,-32],[-3,-48],[1,-9],[1,-12],[0,-9],[1,-8],[8,-23],[1,-10],[-1,-25],[1,-9],[4,-5],[3,2],[3,4],[3,-1],[2,-9],[0,-10],[-2,-20],[1,-16],[4,-34],[3,-17],[1,-3],[3,-5],[1,-3],[1,-5],[-1,-11],[0,-5],[1,-12],[1,-4],[1,-2],[1,-2],[1,0],[1,-1],[2,0],[0,-3],[0,-3],[1,-3],[1,-7],[-3,-20],[2,-10],[2,-6],[6,-28],[3,-20],[3,-118],[5,-44],[1,-17],[0,-21],[-3,-17],[0,-10],[-1,-21],[1,-12],[2,-7],[7,-14],[4,-17],[1,-17],[-4,-46],[-3,-18],[0,-9],[0,-11],[4,-28],[2,-66],[7,-32],[1,-21],[-2,-20],[-6,-7],[2,-7],[7,-8],[4,-5],[2,-8],[2,-10],[3,-38],[20,-91],[5,-16],[13,-34],[3,-10],[3,-20],[3,-6],[3,-5],[4,-5],[3,-15],[3,-19],[1,-38],[0,-3],[-2,-10],[-2,-9],[0,-4],[0,-4],[1,-6],[-1,-4],[-2,-15],[-1,-5],[1,-6],[0,-5],[1,-4],[-2,-5],[-3,-7],[-1,-4],[-2,-21],[-5,-29],[-1,-11],[-1,-16],[-25,-97],[-2,-17],[3,-3],[-2,-8],[-20,-54],[-7,-33],[-3,-8],[-4,-2],[-5,1],[-4,0],[-4,-7],[-6,30],[-4,9],[-7,-2],[-14,25],[-5,12],[-2,18],[-1,30],[-1,5],[-3,2],[-4,7],[-4,8],[-2,6],[-2,8],[-1,10],[-1,10],[0,9],[1,10],[2,8],[1,7],[-3,9],[-2,4],[-2,2],[-1,0],[-3,1],[-1,1],[-8,22],[-1,7],[2,19],[0,10],[-2,30],[0,4],[1,3],[1,4],[-2,5],[-2,1],[-5,1],[-7,-7],[-10,-3],[-18,0],[-9,-6],[-6,-12],[-16,-46],[0,-15],[6,-34],[0,-9],[0,-8],[-3,-16],[-1,0],[2,-7],[4,-7],[3,-8],[2,-19],[4,-20],[2,-30],[2,-18],[5,-16],[0,-7],[-1,-10],[-2,-10],[-8,-31],[-3,-17],[0,-20],[2,-19],[4,-17],[7,-14],[18,-14],[8,-10],[6,-19],[2,-17],[-6,-56],[-1,-23],[2,-20],[5,-9],[3,-4],[0,-9],[-1,-23],[-1,-8],[0,-5],[0,-20],[-2,-8],[-14,-52],[-8,-20],[-13,-20],[1,-27],[2,-13],[4,-13],[6,-11],[6,-6],[6,-2],[8,1],[-9,-10],[-8,-6],[-17,-5],[-7,-8],[-13,-3],[-6,-2],[-5,-7],[-3,-9],[-19,-77],[-13,-74],[-14,-69],[-2,-42],[1,-9],[8,-28],[13,-146],[2,-38],[-3,-41],[-10,-70],[-14,-90],[0,-10],[0,-10],[2,-9],[1,-4],[3,-7],[1,-5],[1,-7],[-2,-3],[-3,-2],[-2,-4],[-9,-33],[-7,-117],[-2,-8],[-5,-13],[-2,-8],[-7,-40],[-16,-69],[-14,-110],[-22,-101],[-10,-31],[-25,-186],[-36,-181],[-9,-93],[-1,-14],[1,-22],[-9,-54],[-2,8],[-4,9],[-3,6],[-3,-6],[1,-7],[7,-19],[2,-9],[-1,-8],[-23,-96],[-16,-86],[-7,-44],[-15,-93],[-28,-211],[-3,-9],[-3,-10],[-3,-9],[1,-8],[4,7],[2,-2],[1,-8],[-1,-9],[-2,-9],[-4,-17],[-2,-11],[0,-20],[-3,-20],[-10,-47],[-1,-9],[-1,-18],[-4,-50],[-4,-22],[-4,-14],[-35,-226],[-36,-164],[-35,-163],[-4,-39],[-9,-40],[-12,-157],[-5,-36],[-1,-56],[-10,-65],[-10,-58],[-7,-87],[-33,-198],[-3,8],[-2,7],[-1,1],[-3,-8],[-3,-13],[2,-3],[4,-1],[5,-5],[1,-16],[-14,-125],[-15,-80],[-5,-17],[-2,-4],[-4,-6],[-2,-2],[-3,-2],[-1,0],[-1,-3],[0,-2],[1,-2],[0,-3],[0,-2],[-2,-15],[-4,-19],[-1,-4],[-16,-86],[-2,-4],[-4,2],[-6,5],[-1,-3],[4,-33],[-7,-95],[-24,-115],[-7,-22],[0,-9],[0,-18],[-2,-9],[-14,-22],[-4,-18],[2,-38],[-3,-15],[-3,7],[-2,8],[-1,9],[0,9],[-2,-9],[0,-8],[0,-9],[0,-11],[-1,-11],[-2,-5],[-8,-6],[-5,-6],[-8,-14],[-13,-32],[-3,-3],[-1,3],[-2,13],[-4,1],[0,-1],[-1,-1],[-16,-23],[-6,-11],[-3,-4],[-8,-6],[-3,-4],[-4,-11],[-3,-5],[-2,1],[-3,2],[-3,0],[-3,-7],[-2,-3],[-19,-11],[-5,1],[-9,5],[-28,7],[-32,-1],[-42,-20],[-55,-47],[-35,-35],[-39,-42],[-27,-51],[-6,-8],[-6,-5],[-6,-1],[-14,-25],[-19,-8],[-79,-7],[-4,-2],[-4,-4],[-4,-2],[-5,2],[-3,6],[-2,23],[-3,10],[-8,12],[-30,22],[-8,12],[-4,8],[-3,18],[-5,8],[-21,30],[-18,17],[-11,6],[-30,9],[-29,3],[-41,16],[-5,6],[-4,23],[-9,19],[-2,13],[5,-4],[5,-8],[9,-20],[5,-8],[5,0],[2,7],[-1,13],[-4,-2],[-4,4],[-7,14],[-5,6],[-4,4],[-5,2],[-5,0],[-10,8],[-16,36],[-10,9],[-9,0],[-3,2],[-22,29],[-4,13],[-1,46],[-3,20],[-20,54],[-3,19],[3,53],[-3,20],[-3,10],[-12,25],[-1,2],[-2,3],[-1,5],[-1,5],[-1,12],[-1,5],[-9,16],[-19,25],[-9,18],[-9,42],[-5,89],[4,102],[-5,57],[1,6],[2,11],[1,5],[-1,7],[-3,18],[-2,23],[-2,11],[-4,11],[4,12],[0,42],[1,18],[6,12],[19,16],[5,13],[-1,10],[-4,15],[1,11],[4,8],[1,4],[2,10],[0,5],[-1,6],[-3,8],[-7,12],[-5,15],[-12,22],[-2,2],[-2,1],[-2,1],[-2,4],[-1,3],[-1,13],[-3,21],[-1,53],[-3,44],[-4,25],[-8,16],[-19,28],[-3,8],[-4,19],[-4,7],[-5,8],[-10,21],[-6,18],[-3,13],[-1,8],[-2,24],[-3,16],[-2,31],[-3,17],[-1,21],[-2,5],[-4,10],[-1,5],[-2,14],[0,14],[1,27],[-3,55],[-4,28],[-6,27],[-1,6],[1,6],[0,6],[-2,14],[-3,14],[0,12],[6,10],[8,1],[6,-11],[2,9],[-1,10],[-1,11],[0,11],[-10,0],[-3,24],[-1,53],[1,7],[3,12],[0,6],[0,14],[1,6],[1,2],[1,2],[1,4],[1,0],[1,1],[1,1],[1,2],[-2,16],[0,8],[2,7],[1,7],[3,6],[3,-8],[0,-10],[-1,-22],[5,16],[1,28],[0,30],[1,23],[3,11],[19,44],[5,8],[5,1],[6,-7],[0,158],[2,15],[6,27],[2,15],[2,-10],[2,0],[5,10],[8,8],[4,11],[1,1],[15,0],[11,6],[5,-3],[5,-4],[5,-3],[7,6],[8,12],[7,16],[2,15],[2,17],[10,56],[10,115],[18,68],[6,11],[9,5],[5,9],[15,56],[3,24],[3,28],[4,26],[7,19],[0,-5],[0,-4],[2,-7],[6,32],[4,11],[12,19],[4,8]],[[63876,40532],[1,9],[0,9],[1,9],[3,8],[3,6],[11,12],[-1,-14],[-10,-43],[-8,-45],[-13,-61],[-10,-28],[-8,-35],[-5,-13],[-2,16],[1,16],[7,29],[1,8],[0,8],[1,16],[1,11],[2,7],[6,15],[19,60]],[[63425,42557],[2,-4],[4,-6],[3,-6],[0,-7],[-1,-5],[-3,-2],[-3,-2],[-3,0],[-1,1],[-1,3],[-1,3],[0,2],[-2,-1],[-4,-4],[-10,4],[-3,3],[-4,6],[-2,0],[0,-8],[-1,0],[-1,1],[0,1],[-1,1],[-3,7],[-2,13],[-1,25],[1,12],[1,10],[0,7],[-4,3],[3,8],[4,-2],[4,-4],[4,3],[2,-4],[3,-2],[2,-1],[3,2],[0,5],[-1,4],[-2,5],[-1,5],[0,12],[2,7],[3,3],[5,0],[5,-3],[2,-7],[0,-10],[-3,-10],[3,-3],[2,-12],[2,-14],[1,-6],[3,-4],[-1,-10],[-4,-11],[-1,-8]],[[83572,53771],[3,-1],[5,-9],[4,-12],[1,-10],[-3,-13],[-5,-2],[-8,6],[-2,3],[-3,6],[-3,8],[-1,5],[1,6],[4,6],[3,5],[4,2]],[[83861,54043],[7,7],[4,0],[0,-7],[-1,-3],[-7,-8],[-12,-9],[-3,1],[-15,21],[-6,13],[-2,11],[5,-2],[14,-19],[7,-5],[9,0]],[[84941,54584],[1,-5],[-1,-6],[-2,-7],[-2,-14],[-2,3],[-4,11],[-3,12],[-2,25],[-3,15],[-1,6],[-1,22],[-2,3],[-2,0],[-6,5],[-1,0],[-1,3],[-1,7],[0,6],[1,7],[2,5],[2,2],[2,6],[1,30],[2,9],[2,2],[2,-1],[2,-5],[1,-5],[5,-9],[5,-7],[4,-9],[1,-13],[-2,-76],[1,-13],[2,-9]],[[84158,54842],[-6,2],[-2,2],[2,-10],[1,-6],[-1,-4],[-2,-4],[-2,0],[-2,0],[-1,0],[-8,-13],[-4,-4],[-2,-1],[-4,-1],[-1,-1],[-2,-3],[-1,-7],[-1,-3],[-4,-1],[-3,2],[-2,6],[-3,9],[-1,15],[0,23],[2,19],[7,8],[4,-4],[4,-9],[3,-7],[4,0],[2,6],[1,8],[0,7],[3,3],[6,-4],[5,-8],[5,-11],[3,-9]],[[83680,56173],[2,-2],[0,-2],[-7,-17],[-3,-7],[-3,-4],[1,5],[2,12],[2,3],[3,2],[1,6],[2,7],[2,5],[0,-3],[0,-2],[-1,-1],[-1,-2]],[[84996,56206],[4,-6],[-2,-12],[-4,-23],[1,-7],[0,-9],[-2,-9],[-2,-3],[-5,-2],[-2,0],[2,9],[-2,4],[-3,1],[-3,0],[0,4],[3,0],[1,0],[0,4],[-6,8],[0,-4],[0,5],[0,6],[2,13],[2,4],[1,2],[1,2],[0,5],[0,5],[0,7],[0,4],[-3,9],[0,14],[2,13],[5,5],[1,-4],[1,-4],[0,-5],[3,3],[1,2],[0,-10],[0,-14],[0,-12],[4,-5]],[[85157,54793],[3,-3],[9,-11],[2,0],[-2,-11],[-6,-19],[-2,-10],[-1,-5],[-2,-1],[-2,-2],[-2,-2],[-2,-5],[-6,-32],[-2,-6],[-8,-18],[-5,-14],[-2,-16],[0,-21],[-4,-12],[-10,-2],[-11,5],[-8,7],[-7,-13],[-4,-17],[-2,-18],[0,-15],[2,-7],[7,-14],[3,-5],[1,-9],[0,-13],[0,-11],[-3,-4],[-8,7],[-5,16],[-6,38],[-7,17],[-9,9],[-6,-5],[1,-25],[-2,0],[-1,4],[-3,8],[-1,-12],[3,-13],[4,-12],[4,-21],[5,-9],[5,-8],[3,-6],[1,-13],[-4,-24],[-4,-52],[-1,-87],[-4,-47],[-2,-54],[-1,-9],[-4,2],[-1,8],[-1,30],[-1,7],[-10,14],[-1,5],[0,7],[1,8],[-1,6],[-6,28],[-4,9],[-1,12],[-4,75],[1,14],[3,36],[0,13],[-3,21],[-1,13],[0,16],[-1,7],[-3,3],[-7,5],[-6,6],[-10,32],[-2,11],[2,28],[0,12],[-3,13],[-16,34],[-4,9],[-1,9],[-2,24],[-11,58],[-1,23],[1,13],[0,12],[-2,9],[-4,2],[-1,1],[-5,-3],[-17,-25],[-17,-20],[-3,-6],[-2,-5],[-3,-11],[-1,-13],[2,-39],[-1,-12],[-1,-6],[-2,-7],[-1,-5],[-1,-6],[-10,-20],[-8,-10],[-9,-5],[-9,-9],[-6,-21],[-1,-26],[-1,-13],[-3,-6],[-13,-32],[-6,-22],[-4,-26],[-2,-28],[-1,-28],[1,-10],[4,-23],[1,-12],[2,-5],[5,-4],[3,3],[-1,17],[10,-13],[12,-33],[7,-15],[5,7],[6,-5],[4,-10],[2,-11],[0,-23],[1,-9],[8,-36],[3,-8],[1,-5],[1,-7],[-1,-13],[1,-7],[1,-4],[2,-7],[14,-77],[1,-11],[0,-12],[-1,-13],[-3,-11],[-1,-6],[2,-12],[-1,-6],[-1,-5],[-2,-17],[-5,-26],[-20,-52],[-27,-80],[-17,-64],[-5,-12],[-5,-10],[-4,-4],[-4,-1],[-14,2],[-4,2],[-2,7],[0,47],[-2,12],[-2,9],[-2,6],[-4,4],[-6,1],[-2,2],[-1,5],[-1,6],[-1,6],[-1,6],[-3,3],[-3,2],[-2,2],[-3,12],[1,9],[2,9],[2,9],[0,9],[2,10],[5,16],[11,27],[4,18],[0,23],[-1,10],[-4,22],[0,7],[-3,5],[-3,1],[-3,0],[-10,0],[-4,7],[-3,3],[-3,-2],[0,-5],[0,-15],[-1,-6],[-2,-8],[-9,-58],[-7,-40],[-5,-14],[-6,0],[-13,6],[-11,-8],[-7,3],[-28,29],[-7,4],[-12,11],[-3,0],[-4,0],[-3,0],[-7,5],[-18,23],[-2,-4],[-8,8],[-3,4],[-1,4],[-1,6],[-1,4],[-2,2],[-4,3],[-39,47],[-15,14],[-34,31],[-5,7],[-7,14],[-4,11],[-3,22],[-4,10],[-18,42],[-7,22],[-5,21],[-4,30],[0,13],[-2,12],[0,7],[1,3],[4,1],[1,2],[0,4],[0,52],[-1,13],[-5,37],[1,16],[1,12],[-1,13],[-6,5],[0,-2],[-3,-9],[-2,-3],[-1,2],[0,2],[-1,1],[-2,2],[-2,4],[-2,5],[-1,5],[0,7],[2,11],[0,5],[1,63],[3,29],[12,59],[6,13],[5,3],[6,7],[11,14],[10,19],[5,10],[3,16],[5,10],[2,6],[0,5],[0,19],[0,15],[1,12],[6,22],[-4,7],[-4,0],[-8,-3],[-4,3],[-2,10],[-1,5],[-3,3],[-3,9],[-13,60],[-8,24],[-13,18],[-2,1],[-15,23],[-13,15],[-2,-4],[-5,4],[-6,3],[-1,0],[-12,1],[-7,3],[-4,8],[-15,42],[-6,9],[-6,3],[-6,1],[-12,10],[-2,1],[-6,2],[-18,-2],[-5,-2],[-7,-6],[-6,-6],[-4,-6],[1,-21],[8,-16],[6,-18],[-3,-27],[-3,-6],[-3,-6],[-3,-4],[-3,-4],[-10,-4],[-2,-2],[-1,-5],[0,-6],[0,-13],[-1,-2],[-6,7],[-3,1],[-2,-10],[4,-12],[5,-11],[3,-10],[2,-14],[4,-8],[5,-7],[4,-9],[2,-12],[0,-14],[-2,-12],[-3,-9],[-2,-2],[-4,2],[-8,13],[-9,9],[-4,6],[-8,18],[-3,10],[-4,6],[-1,3],[0,13],[0,5],[-1,4],[-5,4],[-5,-1],[-5,-5],[-3,-8],[-1,-8],[-4,-4],[-4,-1],[-4,3],[-8,16],[-4,11],[-1,11],[1,13],[4,5],[5,1],[5,4],[3,10],[0,12],[-3,10],[-7,4],[-3,7],[-2,15],[0,16],[-1,11],[-3,5],[-3,-5],[-3,-11],[-4,-11],[-7,-17],[-2,-7],[0,-6],[1,-6],[0,-7],[-1,-3],[-4,-5],[-1,-2],[0,-4],[1,-3],[1,-2],[0,-5],[-2,-11],[-4,-13],[-2,-8],[0,-9],[0,-18],[-1,-6],[-3,-3],[-2,2],[-1,3],[-3,2],[0,1],[-7,3],[-2,8],[-4,23],[-3,5],[-3,-2],[-4,-7],[-3,-8],[-2,-6],[0,-9],[1,-5],[0,-5],[-4,-6],[-3,-3],[-4,-1],[-5,0],[-4,4],[2,7],[-1,5],[-2,2],[-1,0],[0,-1],[-1,-1],[-2,-1],[0,1],[-1,3],[1,3],[1,2],[1,0],[-1,14],[1,7],[4,2],[5,-6],[1,13],[-2,8],[-3,8],[-2,9],[-2,37],[-1,10],[2,7],[2,12],[1,13],[0,10],[-3,9],[-6,1],[-12,-3],[-2,4],[-4,12],[-3,4],[-13,0],[-2,-1],[-6,-6],[-3,-1],[-6,-8],[-24,-39],[-7,-17],[-12,-34],[-2,-11],[-1,-7],[6,-3],[5,4],[4,-1],[0,-15],[-2,-8],[-3,-10],[-4,-9],[-3,-5],[2,21],[0,3],[-3,1],[-3,-5],[-2,-8],[-1,-6],[-3,-6],[-13,-16],[-3,-12],[1,-13],[5,-12],[2,-11],[-1,-11],[-3,-6],[-5,-18],[-3,-5],[-3,0],[-3,0],[-4,-2],[-5,-15],[-4,-27],[-4,-50],[-1,-28],[-1,-11],[-12,-34],[-9,-53],[-4,-14],[-6,-9],[-3,-8],[-1,-2],[-6,0],[-3,2],[-13,10],[-22,24],[-6,13],[-11,46],[0,49],[10,46],[20,37],[9,9],[2,3],[1,4],[1,6],[-1,5],[-2,2],[-3,6],[1,16],[3,26],[0,19],[0,6],[2,7],[3,10],[1,5],[0,14],[3,9],[3,6],[5,5],[3,6],[5,10],[3,9],[-9,8],[-1,11],[3,21],[0,26],[-1,13],[-4,6],[-2,7],[2,16],[7,26],[24,63],[7,26],[3,9],[3,5],[8,12],[9,5],[10,13],[22,16],[7,2],[4,-5],[1,5],[2,3],[2,0],[2,-4],[5,5],[22,9],[10,10],[4,4],[5,20],[3,9],[1,-6],[2,-14],[6,-7],[6,-2],[7,0],[27,10],[3,5],[3,2],[7,0],[3,1],[3,2],[6,7],[16,28],[3,14],[-4,11],[-10,14],[-1,4],[-1,12],[0,4],[2,3],[5,7],[1,0],[0,3],[2,3],[1,4],[0,7],[0,6],[-1,13],[0,7],[2,10],[6,18],[1,10],[1,7],[3,10],[4,8],[4,6],[4,3],[21,7],[10,6],[5,0],[1,-2],[2,-8],[2,-2],[3,-1],[16,3],[5,5],[4,8],[4,14],[1,4],[4,28],[2,6],[4,2],[2,-1],[1,-2],[2,-2],[2,1],[1,2],[4,6],[2,3],[-1,7],[-9,22],[-2,7],[-1,5],[2,3],[4,2],[4,0],[2,-3],[1,0],[7,-9],[5,-7],[3,-2],[3,1],[3,3],[1,-30],[2,-15],[5,1],[1,-2],[1,-1],[4,-3],[2,-2],[1,-4],[2,-12],[3,5],[0,6],[0,6],[1,7],[2,5],[4,11],[-4,7],[4,5],[5,-2],[-1,-10],[22,-11],[4,-3],[2,-5],[2,-10],[2,0],[2,5],[2,-2],[2,-11],[-1,0],[4,-19],[1,-3],[1,-8],[12,-30],[4,-21],[4,-25],[2,-27],[1,-72],[5,-34],[-1,-12],[-3,-7],[-29,-56],[-6,-6],[-12,-1],[-5,-6],[-2,-15],[0,-1],[0,-6],[-2,-11],[0,-7],[1,-1],[1,-2],[3,3],[4,4],[1,3],[10,12],[37,62],[3,2],[6,2],[4,6],[6,16],[7,11],[9,8],[10,5],[33,0],[12,4],[9,9],[3,8],[4,18],[4,9],[1,6],[-1,6],[-2,6],[-1,6],[0,8],[1,5],[3,10],[0,2],[-1,6],[1,3],[1,3],[1,3],[1,3],[3,12],[1,6],[0,22],[2,13],[4,24],[6,20],[8,20],[9,15],[11,10],[7,0],[2,-6],[0,-9],[1,-9],[1,-1],[7,-3],[0,-1],[2,0],[3,-2],[4,-6],[8,-20],[3,-4],[5,-3],[16,-1],[-2,-11],[-2,-12],[-2,-13],[0,-13],[2,0],[2,16],[4,10],[5,4],[8,-6],[2,5],[4,8],[1,1],[4,2],[1,1],[0,3],[-1,4],[-1,3],[0,2],[1,18],[1,6],[1,4],[3,11],[1,6],[0,11],[-6,21],[-1,12],[1,13],[4,7],[3,7],[3,10],[-2,11],[0,13],[2,26],[0,51],[-2,26],[1,14],[2,11],[3,6],[2,5],[4,3],[3,-2],[3,-4],[3,0],[3,2],[3,0],[5,-3],[6,-5],[4,-7],[2,-7],[3,-5],[22,-26],[2,-4],[6,-17],[5,-6],[5,-19],[4,-6],[3,0],[6,8],[6,4],[4,6],[3,9],[3,50],[-1,12],[-1,3],[-2,4],[-1,3],[0,6],[0,7],[3,12],[1,7],[0,8],[0,4],[2,4],[2,5],[3,1],[2,-6],[4,-14],[8,-23],[6,-9],[6,-4],[18,-2],[12,-5],[6,-1],[6,3],[15,18],[3,6],[2,14],[2,20],[0,63],[-1,10],[-2,6],[-2,6],[-1,7],[0,6],[0,10],[0,5],[-1,6],[-2,11],[-2,16],[-5,19],[-2,17],[-1,5],[-2,3],[0,2],[0,19],[0,3],[-1,9],[-6,33],[-1,6],[-1,12],[-10,80],[0,11],[1,10],[1,10],[14,47],[1,6],[3,-8],[5,-10],[5,-8],[9,-5],[8,-8],[6,-1],[-1,-15],[2,-16],[3,-18],[2,-15],[3,-10],[6,-11],[8,-7],[6,2],[-1,-2],[0,-2],[0,-2],[-1,-2],[3,0],[2,-3],[2,-5],[3,-1],[6,2],[3,-1],[5,-13],[2,-4],[3,-1],[16,-5],[5,-6],[10,-18],[2,-2],[4,0],[3,-1],[1,-5],[1,-5],[2,-7],[1,-6],[3,11],[1,5],[2,0],[0,-10],[-1,-5],[-1,-5],[-2,-4],[-3,-3],[-8,-5],[-2,-5],[-1,-8],[2,-5],[3,-4],[3,-3],[5,-1],[3,1],[7,8],[0,-23],[1,-20],[4,-18],[13,-29],[2,-2],[3,-2],[4,1],[6,6],[9,6],[10,22],[6,6],[5,-1],[2,-9],[-2,-11],[-5,-19],[-2,-14],[-2,-27],[0,-19],[-2,-27],[1,-7],[3,-3],[4,0],[2,-2],[2,-6],[3,-14],[2,-7],[20,-42],[3,-13],[0,-7],[3,-23],[-1,-8],[0,-6],[4,-4],[-1,-5],[-1,-5],[-1,0],[-2,-14],[-3,-15],[-5,-12],[-6,-4],[-10,-15],[-2,-1],[0,-9],[2,-5],[6,-7],[0,-3],[-1,-2],[-1,-1],[0,-2],[-4,3],[-3,1],[-6,1],[-3,-3],[-7,-11],[-9,-9],[-6,-14],[-2,-14],[5,-12],[5,-27],[3,-8],[3,-1],[9,1],[5,-4],[3,0],[3,4],[-6,7],[-1,5],[1,4],[4,0],[3,-3],[4,-2],[3,5],[6,-6],[18,-6],[0,1],[1,2],[1,1],[2,0],[0,-1],[1,-5],[2,-8],[6,-9],[1,-6],[-2,-8],[1,-2],[1,-3],[1,-3],[-7,1],[-3,-2],[-1,-5],[-1,-14],[1,-2],[4,2],[1,-10],[-2,-11],[-7,-19],[-1,-1],[-3,-4],[-2,-5],[1,-2],[2,-3],[3,-16],[3,-4],[4,-2],[2,-5],[-3,-15],[-9,-22],[-2,-10],[2,-11],[5,-5],[4,3],[4,5],[9,6],[10,18],[1,-6],[-2,-51],[-1,-9],[1,-8],[3,-12],[-7,-8],[-3,-22],[1,-23],[5,-15],[-5,-11],[-11,-17],[-3,-13],[0,-7],[0,-8],[2,-17],[4,-14],[5,-11],[9,-11],[1,-3],[1,-6],[7,-21],[6,-8],[14,-3],[6,-5],[-2,-13],[-1,-13],[-1,-29],[1,-13],[6,-30],[2,-28],[2,-13],[0,-11],[-3,-12],[-3,-5],[-3,-2],[-3,-5],[0,-9],[1,-2],[6,-10],[-2,-13],[-1,-28],[-3,-12]],[[84803,56374],[3,-19],[0,-3],[-2,-2],[-2,-4],[-1,-3],[-4,1],[-1,3],[-1,4],[0,4],[-1,5],[-7,17],[-10,36],[-10,12],[-5,9],[-2,9],[-4,26],[0,13],[4,8],[3,0],[2,-3],[5,-9],[12,-9],[3,-5],[3,-11],[4,-40],[2,-7],[4,-9],[4,-10],[1,-13]],[[84549,56801],[2,-7],[0,-7],[1,-15],[-3,-8],[-22,-23],[-4,8],[1,8],[3,9],[2,10],[1,8],[1,9],[1,9],[3,7],[3,4],[4,0],[4,-5],[3,-7]],[[84573,56814],[11,-12],[4,-16],[-3,-14],[-13,-6],[-15,10],[0,21],[8,17],[8,0]],[[84950,56827],[2,-9],[-1,-6],[-4,-5],[-4,-1],[-5,0],[-3,1],[-2,3],[-3,7],[-3,4],[-10,10],[-6,7],[-1,15],[2,16],[6,7],[7,-6],[3,-29],[5,-10],[4,-2],[9,1],[4,-3]],[[83230,57025],[2,-7],[2,-8],[1,-8],[0,-9],[-2,0],[-2,3],[-2,-1],[-2,-2],[-2,-4],[-1,10],[-3,6],[-4,3],[-1,3],[-1,23],[1,8],[11,-10],[3,-7]],[[83225,57103],[4,-6],[1,-5],[-1,-5],[-5,-10],[-6,-9],[-1,-2],[-4,4],[-1,7],[1,8],[1,5],[1,0],[5,5],[1,2],[0,3],[2,2],[2,1]],[[84610,57318],[6,-6],[1,-12],[-2,-21],[-2,-7],[-5,-3],[-17,1],[-7,4],[-5,-1],[-1,-5],[-1,-3],[-2,0],[-2,2],[-1,4],[0,3],[-1,3],[-9,20],[-4,11],[-7,40],[-2,13],[-1,6],[-6,15],[-1,5],[5,-1],[14,9],[3,1],[11,-2],[7,1],[3,-1],[5,-4],[5,-6],[4,-9],[3,-21],[7,-30],[2,-6]],[[84670,57358],[2,-6],[2,-5],[3,-3],[4,-2],[-1,-6],[0,-6],[0,-14],[-1,-7],[-2,-5],[-2,-2],[-7,16],[1,2],[-1,6],[-2,3],[-4,-7],[-4,20],[2,-1],[2,-3],[0,10],[-3,9],[-3,7],[-4,3],[-3,2],[-1,7],[-1,7],[-1,6],[-2,6],[0,5],[3,11],[2,0],[0,-1],[3,-6],[10,-12],[1,-2],[1,-3],[0,-3],[1,-4],[1,-4],[4,-4],[0,-5],[0,-9]],[[83971,61369],[5,-16],[2,-24],[-1,-26],[-4,-25],[-5,-19],[-7,-19],[-4,-9],[-10,-13],[-9,-17],[-2,-4],[-1,-8],[0,-7],[1,-5],[1,-5],[0,-5],[0,-20],[2,-20],[0,-7],[-12,-110],[0,-6],[1,-13],[0,-5],[-2,-8],[0,-4],[1,-4],[4,-9],[0,-5],[1,-52],[1,-15],[9,-44],[1,-15],[2,-11],[5,-14],[5,-15],[-1,-15],[2,-6],[0,-10],[2,-8],[3,-4],[1,1],[1,2],[2,1],[3,0],[5,-10],[2,-2],[4,0],[7,6],[4,2],[4,-4],[2,-18],[4,-6],[-1,13],[4,-6],[6,-16],[2,-15],[-5,8],[-3,2],[-1,-5],[0,-8],[3,-17],[1,-7],[-1,-9],[-3,-18],[0,-8],[2,-9],[7,-11],[2,-8],[1,3],[2,2],[1,3],[5,-3],[2,6],[3,4],[5,-7],[3,-11],[0,-11],[-2,-11],[-4,-10],[-1,-5],[-1,-7],[-1,-7],[-2,-3],[-2,-3],[-3,-14],[-3,-46],[1,-10],[-4,-18],[-8,-41],[-13,-48],[-3,-17],[-5,-25],[-2,-7],[-4,-9],[-7,-30],[-3,-11],[-10,-16],[-2,-6],[-2,-3],[-1,-6],[0,-5],[-1,-12],[0,-3],[-5,-7],[-2,-8],[0,-7],[3,-17],[2,8],[1,4],[1,0],[-1,-20],[-10,-38],[2,-15],[5,9],[4,7],[0,-8],[-7,-25],[0,-3],[0,-9],[0,-4],[-2,-1],[-4,-2],[-2,-1],[-7,-20],[-10,-16],[-9,-19],[-1,-1],[-1,-1],[-1,-4],[0,-4],[0,-5],[0,-4],[0,-3],[-3,-13],[-12,-15],[-6,-12],[-1,4],[5,16],[3,11],[1,12],[2,7],[14,19],[1,9],[2,14],[2,12],[9,11],[2,11],[-1,10],[-8,1],[-6,-5],[-2,-8],[-1,-10],[-1,-11],[-1,-9],[-5,-6],[-11,-7],[-16,-17],[-4,-3],[-10,-3],[-10,-6],[-3,-5],[-3,-7],[-4,-5],[-9,-5],[-3,-3],[-3,-3],[-2,2],[-2,2],[-3,-1],[-19,-33],[-1,-7],[-10,-24],[-14,-15],[-4,-7],[-3,-10],[-2,-12],[-2,-25],[0,-14],[5,-21],[1,-12],[3,-5],[6,-1],[7,-4],[3,-12],[-2,-8],[-12,-29],[5,-2],[2,-2],[3,-4],[-11,-12],[-4,-8],[-2,-10],[-2,-11],[-3,-9],[-15,-26],[-2,-7],[-3,-38],[-1,-11],[-3,-9],[-10,-29],[-5,3],[-3,3],[-2,-3],[-3,-15],[0,-27],[3,-24],[6,-21],[8,-13],[7,-8],[4,-8],[2,-11],[5,-60],[2,-7],[4,-6],[9,-30],[2,-10],[1,-16],[3,-16],[4,-14],[5,-13],[-1,-2],[-3,-5],[-2,-1],[12,-29],[2,-6],[2,-5],[17,-28],[4,-9],[0,-6],[-5,-2],[-10,-1],[-6,-3],[-6,-4],[-4,-8],[-2,-9],[0,-26],[1,-11],[10,-71],[1,-21],[3,-23],[2,-10],[4,-9],[12,-23],[2,-11],[1,-8],[-1,-20],[1,-5],[5,-10],[1,-5],[0,-10],[-2,-9],[-2,-7],[-3,-5],[0,-4],[3,-6],[10,-31],[19,-28],[19,-41],[5,-8],[42,-34],[40,-19],[1,16],[-3,11],[-11,22],[5,3],[26,-14],[1,1],[0,8],[-1,10],[1,3],[4,2],[0,3],[-6,4],[-11,27],[-5,6],[-7,6],[-6,13],[-5,17],[-2,17],[3,-4],[1,-3],[0,-5],[2,0],[0,13],[3,9],[10,10],[4,-3],[1,10],[0,14],[1,8],[3,-2],[1,-12],[-1,-14],[-1,-9],[2,-5],[1,-7],[0,-8],[1,-8],[-1,-2],[1,-3],[2,-4],[1,0],[1,3],[1,3],[1,3],[1,-7],[0,-7],[0,-15],[6,5],[4,8],[3,10],[1,14],[-1,4],[-4,12],[-1,4],[1,7],[2,5],[2,-1],[1,-7],[2,0],[0,6],[0,4],[-1,4],[-1,2],[5,0],[3,4],[0,7],[-3,8],[0,5],[4,18],[2,7],[2,-8],[2,3],[3,8],[1,9],[4,-4],[4,4],[3,7],[4,6],[3,0],[3,-3],[7,-10],[-1,3],[-3,10],[7,1],[13,-11],[7,-3],[-1,-8],[2,-6],[3,-1],[2,7],[1,-9],[2,-6],[3,-1],[2,8],[7,-2],[4,-2],[-5,15],[0,14],[2,6],[5,-7],[2,5],[2,-10],[3,-8],[3,-2],[5,11],[1,-3],[2,-3],[2,-2],[4,-1],[0,-1],[0,-3],[1,-3],[4,-10],[2,-2],[4,0],[8,-3],[6,-8],[8,-22],[0,-3],[0,-4],[0,-3],[1,-2],[4,0],[1,-1],[2,-3],[6,-20],[3,-5],[11,-24],[2,-8],[3,4],[3,-2],[3,-6],[1,-8],[-1,-9],[-2,-7],[-2,-9],[1,-12],[6,-12],[7,-8],[1,-9],[-1,-27],[2,-16],[0,-4],[-1,-6],[-2,-1],[-2,-2],[-2,-4],[-2,-6],[-2,-24],[0,-6],[1,-21],[4,-12],[6,-8],[6,-12],[2,0],[6,6],[7,1],[14,-3],[3,1],[9,8],[3,3],[10,24],[1,7],[1,4],[1,4],[0,3],[-2,8],[-3,22],[-4,13],[0,8],[9,14],[1,3],[2,3],[2,8],[1,9],[0,8],[-3,-6],[-3,-18],[-3,-4],[-4,0],[-2,1],[-13,16],[-3,7],[-2,10],[3,5],[5,4],[2,4],[-4,5],[6,5],[1,7],[-3,15],[2,3],[6,-4],[9,-9],[0,4],[-1,1],[-3,7],[8,-1],[2,1],[0,4],[-2,11],[1,2],[4,-4],[2,-8],[2,-22],[-4,-2],[-1,-7],[1,-7],[2,-2],[5,10],[2,3],[3,2],[-1,-4],[-3,-12],[3,2],[1,1],[2,-3],[-1,-11],[5,-16],[-2,-10],[2,-5],[1,-6],[1,-7],[0,-7],[2,0],[1,8],[2,6],[2,7],[0,12],[6,-3],[4,-4],[2,-6],[2,-11],[12,2],[21,-16],[19,-8],[9,30],[6,-22],[8,-20],[11,-15],[20,-18],[1,-2],[0,-2],[1,-2],[4,-2],[6,0],[4,-2],[1,-4],[4,-17],[5,-9],[1,-7],[-2,-8],[-5,8],[-1,3],[-2,5],[-1,0],[-1,-2],[-1,-6],[-4,4],[-5,3],[-9,1],[-3,-5],[-4,-11],[-5,-11],[-6,-5],[-5,2],[-10,11],[-15,5],[-6,0],[-3,-4],[-2,-5],[-6,4],[-6,8],[-5,3],[-5,-3],[-3,-8],[-8,-49],[-1,-13],[2,-1],[2,-2],[-1,-3],[-1,-3],[0,-3],[0,-6],[1,-7],[2,-2],[2,2],[3,5],[9,-25],[1,-3],[2,-5],[17,-18],[4,-9],[7,-26],[1,-2],[4,-5],[0,-3],[0,-6],[1,-5],[1,-17],[3,-13],[5,-10],[5,-4],[5,-5],[3,-13],[4,-26],[1,11],[3,-3],[3,-8],[3,-8],[-19,2],[-6,-5],[-2,-15],[-1,-10],[-1,-8],[-1,-8],[1,-9],[5,-17],[-1,-7],[-6,-4],[0,-4],[1,-5],[0,-3],[-1,-5],[6,-6],[2,-1],[4,0],[2,2],[5,8],[1,2],[11,28],[1,5],[1,5],[2,4],[3,2],[3,-2],[3,-8],[3,-2],[3,0],[2,-2],[1,-3],[0,-5],[2,-1],[10,-5],[3,-4],[5,-7],[4,-8],[1,-7],[12,-23],[3,-4],[3,6],[6,24],[1,9],[3,2],[6,-3],[7,-6],[3,-4],[1,-10],[-1,-11],[-2,-7],[-4,4],[-3,-9],[-2,-7],[-2,-16],[-5,-22],[-1,-5],[1,-9],[4,-14],[2,-37],[0,-11],[-3,-71],[-2,-9],[-8,-11],[-2,-8],[1,-10],[1,-6],[0,-5],[-4,-6],[2,-4],[2,-12],[-3,-2],[-5,-7],[-3,-3],[-4,0],[-9,0],[-7,6],[-7,13],[-7,26],[0,6],[-1,1],[-2,-2],[-2,-1],[-4,10],[-6,5],[-2,9],[-2,12],[-6,21],[0,12],[1,12],[1,12],[-2,15],[-4,6],[-4,4],[-6,8],[7,0],[6,4],[4,8],[3,12],[3,-3],[4,-10],[2,-3],[3,-2],[1,0],[2,1],[3,1],[3,2],[1,4],[0,6],[1,6],[3,2],[3,-1],[3,-2],[2,-1],[4,4],[5,9],[3,10],[1,11],[-2,15],[-6,4],[-13,-5],[-5,2],[-8,9],[-5,2],[-3,-5],[-2,-12],[-2,-12],[-1,-8],[-7,-15],[-5,-6],[-6,-4],[-3,-3],[-1,-1],[-2,2],[-3,5],[-1,2],[-2,-3],[-3,-10],[-2,-3],[-1,-1],[-1,-3],[-2,0],[-1,8],[-2,8],[3,2],[2,4],[0,4],[-3,2],[-7,-1],[-1,-1],[1,-4],[1,-5],[0,-6],[-6,12],[3,12],[4,13],[-1,3],[-2,-2],[-3,-1],[-3,-1],[-2,-5],[0,-5],[-2,-5],[-2,-5],[0,-3],[-1,0],[-3,0],[-5,2],[-3,2],[-2,2],[-8,19],[-3,6],[-5,6],[-3,2],[-2,1],[-3,2],[-2,5],[-5,12],[-5,6],[-5,20],[-3,4],[-6,2],[-5,2],[-4,1],[-7,-5],[-8,-10],[-6,-4],[-3,4],[-1,10],[-2,11],[-1,10],[2,8],[-4,21],[8,46],[-2,22],[-4,11],[-10,15],[-5,11],[-1,5],[-1,9],[-2,6],[-7,16],[2,16],[-3,20],[-5,17],[-7,8],[-7,4],[-15,20],[-8,4],[-5,1],[-6,6],[-4,1],[-3,3],[-7,13],[-17,26],[-4,3],[-3,4],[-9,22],[-4,7],[14,24],[-14,32],[-7,12],[-8,9],[0,-4],[-2,4],[2,4],[3,0],[-1,5],[-4,6],[-4,5],[-11,5],[-2,3],[-3,-6],[-4,-1],[-4,4],[-2,7],[0,3],[2,3],[1,3],[-1,5],[-8,18],[-3,4],[-4,3],[-4,1],[-1,4],[0,8],[-2,5],[-3,-4],[-2,6],[-3,9],[-1,3],[-1,2],[-6,-16],[-15,2],[-7,5],[-5,9],[-1,-8],[2,-9],[4,-8],[3,-3],[1,-5],[14,-40],[3,-11],[-1,-7],[-1,-9],[0,-12],[2,-22],[-6,3],[-1,-11],[2,-27],[1,-14],[5,-13],[10,-21],[20,-25],[4,-9],[-1,-10],[-7,6],[-11,19],[1,-9],[7,-24],[13,-30],[3,-10],[2,-12],[3,-24],[1,-22],[0,-24],[1,-7],[1,-4],[1,-4],[1,-4],[0,-12],[0,-7],[0,-5],[-2,-2],[-2,-2],[-3,-2],[-1,-4],[-3,-7],[-6,-7],[-7,-6],[-5,-2],[-4,6],[-19,32],[1,12],[3,21],[0,9],[-5,34],[-27,76],[-1,4],[0,8],[-1,4],[-6,11],[-1,5],[-8,7],[-2,8],[-4,10],[-17,0],[0,8],[-5,4],[-9,1],[-4,5],[-1,5],[-1,10],[-2,6],[-2,5],[-15,51],[-7,17],[-9,14],[-2,-12],[-4,3],[-5,8],[-4,5],[-5,-1],[-1,1],[-10,20],[-3,4],[-4,2],[-3,1],[-3,2],[-6,10],[-3,5],[-3,3],[-9,5],[-4,9],[-3,11],[-4,9],[-3,0],[-10,8],[-4,4],[-2,-8],[-5,-6],[-1,-8],[-2,-3],[-13,-7],[-2,-3],[-4,-9],[-2,-1],[-5,3],[-2,0],[-3,-6],[-8,-5],[-5,-8],[-2,-2],[-2,-1],[-5,-1],[-1,0],[-3,-4],[-8,-19],[-6,-14],[2,-41],[-2,-15],[3,0],[2,-1],[3,-3],[-8,-19],[-1,-3],[-12,5],[-4,1],[-5,-6],[-16,-25],[-5,-12],[-5,3],[-4,5],[-1,2],[-7,7],[-4,1],[-5,1],[-2,1],[-3,3],[-3,3],[-4,1],[-9,-5],[-4,-3],[-4,-5],[-3,2],[-7,3],[-2,3],[-1,6],[1,3],[1,3],[1,7],[1,14],[1,10],[0,10],[-4,22],[-1,2],[-5,8],[-4,3],[-3,2],[-3,-2],[-22,-52],[-2,-3],[-2,3],[-1,7],[-1,7],[1,3],[3,3],[1,7],[1,7],[1,3],[4,1],[2,3],[1,5],[0,8],[-5,9],[-1,3],[0,7],[1,12],[1,7],[0,10],[-1,10],[-2,8],[-3,6],[-5,4],[-25,6],[-11,6],[-6,1],[-6,-4],[-2,-8],[1,-11],[4,-12],[2,-12],[-5,-2],[-12,4],[-2,-8],[1,-11],[2,-12],[2,-12],[-2,-6],[-4,5],[-6,16],[-2,21],[-1,50],[-4,22],[4,2],[3,6],[2,6],[-1,3],[-3,3],[-1,9],[1,35],[0,16],[-4,13],[-7,4],[0,5],[4,4],[0,6],[-2,5],[-4,5],[2,0],[2,1],[4,3],[0,4],[-4,7],[2,11],[5,11],[2,10],[2,9],[4,5],[11,4],[4,3],[5,5],[3,7],[1,7],[2,3],[7,6],[2,3],[6,20],[24,49],[3,3],[3,0],[6,-1],[2,2],[5,11],[7,11],[3,8],[1,11],[-1,14],[-6,20],[-3,13],[-2,24],[-1,8],[-9,23],[-1,7],[-2,4],[-13,11],[-1,3],[0,4],[-1,3],[-3,2],[-27,2],[-17,6],[-2,1],[-2,1],[-4,4],[-3,5],[-1,7],[0,20],[0,10],[-2,9],[0,-20],[0,-5],[-1,-2],[-3,-6],[-1,4],[-1,1],[-2,-5],[4,40],[-1,9],[-5,1],[-2,-11],[-1,-27],[-6,7],[-2,-8],[0,-6],[0,-23],[-2,-38],[0,-12],[11,-26],[1,-6],[-1,-7],[-1,-9],[5,-42],[2,-27],[-3,-23],[-7,-15],[-10,-4],[-3,2],[-2,2],[-2,1],[-3,-1],[-1,-2],[0,-4],[-2,-4],[-4,-2],[-1,2],[-1,4],[-1,5],[-13,7],[-2,3],[-5,14],[-2,17],[1,35],[-1,20],[-2,11],[-12,16],[-3,-4],[-3,0],[-2,3],[-1,5],[-2,0],[-9,26],[-3,19],[5,8],[3,2],[-2,5],[-6,7],[1,6],[2,6],[3,5],[2,5],[2,-1],[1,2],[2,5],[1,7],[-5,1],[-2,1],[-1,3],[0,7],[-1,3],[-2,1],[-4,-1],[-3,5],[-2,8],[-3,4],[-4,-8],[1,-14],[-1,-21],[-2,-19],[-4,-11],[-4,0],[-5,2],[-4,4],[-2,4],[-1,7],[-7,5],[-3,6],[2,2],[1,2],[1,4],[1,5],[-1,-2],[-4,-3],[-7,45],[-2,22],[2,54],[-1,24],[-9,85],[-3,5],[-2,3],[0,6],[1,10],[0,13],[-1,5],[-6,18],[-5,20],[-2,9],[-16,32],[-3,11],[1,5],[4,5],[1,4],[0,5],[0,4],[-2,9],[5,-7],[6,3],[5,9],[1,13],[0,5],[-1,4],[-2,4],[-1,1],[-1,3],[-1,7],[-1,7],[-2,4],[-1,-2],[-1,-6],[-5,22],[-1,8],[1,7],[4,15],[1,8],[-1,18],[-5,8],[-5,8],[-4,15],[6,3],[1,9],[-2,25],[1,10],[2,9],[0,9],[-1,12],[-4,25],[-3,12],[-4,8],[-7,4],[-5,-8],[-3,-9],[-4,1],[-1,-2],[-3,-6],[-4,17],[0,68],[1,10],[4,25],[1,12],[-1,5],[-4,9],[-1,6],[0,19],[0,7],[5,38],[2,25],[2,12],[3,9],[3,6],[2,0],[3,-1],[1,1],[5,6],[1,2],[4,2],[6,2],[7,-4],[3,-10],[0,-12],[-7,-55],[4,-5],[12,-7],[3,-3],[2,-5],[8,-17],[3,-4],[6,0],[3,-1],[4,-4],[5,-11],[2,1],[1,-2],[2,-38],[2,-12],[4,-8],[5,-6],[13,-7],[6,-1],[6,3],[5,7],[3,2],[10,2],[4,-6],[-2,-17],[3,6],[3,13],[3,6],[2,-2],[3,-2],[3,2],[2,6],[-2,4],[-4,-1],[-4,-3],[-2,0],[1,8],[10,17],[2,9],[2,7],[5,11],[1,7],[0,24],[-1,14],[-3,13],[-9,24],[0,-12],[-2,5],[-1,3],[-2,4],[-7,97],[-3,23],[2,30],[-3,14],[-4,14],[-2,11],[3,6],[0,-3],[1,-1],[2,0],[3,0],[0,4],[-2,7],[1,13],[1,13],[5,21],[-1,13],[-2,13],[-1,13],[1,13],[0,5],[1,6],[2,7],[2,4],[2,3],[3,5],[21,66],[2,12],[1,15],[-6,102],[0,2],[-3,9],[-1,5],[0,9],[3,25],[-1,34],[1,4],[5,11],[2,7],[1,5],[1,6],[0,6],[-3,21],[-9,44],[0,13],[-12,6],[-5,5],[-2,11],[6,72],[2,5],[6,2],[5,4],[3,9],[1,11],[0,8],[-2,9],[-3,7],[-2,6],[2,9],[7,16],[1,9],[1,13],[-1,25],[0,8],[7,19],[6,26],[1,7],[0,10],[0,13],[-1,13],[-2,7],[1,8],[16,67],[-1,-1],[-1,3],[-1,3],[0,3],[1,2],[1,1],[2,1],[0,2],[1,8],[9,31],[3,19],[2,23],[0,25],[-3,22],[-3,16],[-1,10],[3,9],[6,12],[5,9],[5,2],[12,-5],[5,1],[13,9],[5,2],[5,5],[1,12],[0,13],[1,11],[4,8],[5,5],[6,1],[5,-4],[4,-11],[7,-24],[5,-8],[5,0],[6,3],[4,6],[2,5],[2,5],[11,11],[4,3],[3,0],[6,-1],[3,1],[2,3],[4,6],[3,3],[3,-2],[2,-3],[3,-2],[7,-1],[3,-2],[2,-5],[1,-5],[2,-4],[14,-14],[7,-14],[27,-29],[4,-6],[4,-5],[9,-6],[21,-28],[2,-2],[4,-1],[1,-1],[2,-4],[2,-5],[2,-5],[13,-9],[6,-15],[4,-16],[6,-11],[0,4],[-4,9],[0,12],[2,8],[5,-2],[3,-6],[50,-40],[12,-5],[6,0],[16,4],[3,3],[15,17],[11,35],[3,6],[6,2],[2,6],[1,20],[7,42],[2,7],[12,2],[6,0],[4,-4],[3,-9],[1,-24],[1,-10],[2,-6],[8,-14],[3,-3]],[[83402,53589],[1,-9],[-4,-37],[-2,-23],[-1,-13],[-3,-8],[-4,3],[-3,4],[-2,6],[-1,9],[2,18],[0,8],[-2,5],[-2,-1],[0,-4],[-1,-5],[-1,-3],[-1,0],[-5,0],[-2,3],[-2,5],[-2,7],[-1,6],[-3,-9],[0,-19],[-3,-8],[-4,-4],[-4,2],[-4,3],[-3,3],[-5,-2],[-3,-5],[-1,-7],[-2,-7],[-2,-1],[-3,0],[-2,0],[-1,-5],[-2,-18],[-4,-8],[-3,2],[-3,4],[-3,2],[-2,-4],[-4,-11],[-3,-2],[-8,0],[-4,-3],[-2,-3],[-3,0],[-3,6],[0,8],[0,20],[-2,9],[3,5],[2,3],[10,6],[8,9],[2,4],[2,1],[10,12],[3,15],[3,5],[8,2],[7,6],[2,1],[3,2],[4,10],[3,1],[2,-2],[2,-1],[3,2],[0,3],[1,11],[2,4],[7,10],[3,7],[3,4],[6,5],[6,7],[3,3],[2,-1],[2,-5],[1,-6],[0,-31],[1,-5],[2,0],[2,2],[2,1],[2,-4]],[[83496,54248],[2,-2],[1,-5],[1,-6],[1,-5],[-1,-12],[-6,-40],[-1,-6],[-2,-5],[-3,-2],[-4,-1],[-11,4],[-3,3],[-2,6],[1,4],[3,3],[4,0],[2,3],[2,7],[2,7],[0,6],[1,4],[4,14],[2,12],[2,6],[2,4],[3,1]],[[83970,54398],[10,-12],[1,-6],[-4,-8],[-5,-4],[-13,-1],[-6,-6],[-2,-7],[-3,-9],[-2,-9],[-1,-9],[-2,-27],[-3,-10],[-6,-4],[-6,-1],[-6,-2],[-18,-15],[-5,-2],[-12,0],[-9,-3],[-2,1],[0,13],[-1,5],[-1,4],[-19,35],[0,31],[-2,11],[-5,5],[-6,1],[-5,5],[-3,16],[1,15],[4,9],[4,5],[28,5],[3,2],[2,9],[11,10],[5,10],[2,4],[5,2],[8,1],[2,-1],[2,-2],[4,-9],[2,-3],[3,-3],[7,-3],[4,-1],[0,-2],[2,-6],[2,-5],[3,-3],[13,-4],[2,-3],[2,-3],[1,-3],[2,-3],[3,-3],[7,-4],[2,-3]],[[82926,54619],[-4,4],[-1,-6],[3,-14],[-3,-5],[-4,0],[-8,5],[-8,2],[-3,4],[-2,10],[0,7],[1,5],[2,5],[5,3],[5,-2],[3,2],[3,3],[4,1],[4,-2],[2,-5],[3,-13],[-2,-4]],[[82523,55242],[-1,-12],[-1,-5],[1,-3],[3,-8],[-2,-4],[-2,-3],[-2,-4],[0,-9],[3,-21],[1,-12],[0,-3],[-2,-6],[0,-2],[0,-11],[0,-1],[2,-4],[0,-2],[-1,-1],[-1,-1],[-2,-5],[0,-1],[-1,-6],[-3,-8],[-5,-6],[-4,-2],[3,-10],[-3,-4],[-4,1],[-4,4],[2,10],[-2,9],[-6,19],[-5,30],[0,3],[2,80],[3,-4],[0,-6],[0,-6],[2,-4],[4,0],[2,7],[1,9],[2,4],[12,5],[5,0],[3,-7]],[[82508,55248],[-3,6],[-2,6],[-1,5],[-4,3],[9,16],[5,4],[3,-7],[3,-19],[0,-4],[-2,-2],[-3,-1],[-3,-2],[-2,-5]],[[82546,55313],[6,-1],[4,-6],[0,-7],[-5,-3],[-7,4],[-3,8],[1,6],[4,-1]],[[82590,55399],[8,-12],[0,-17],[-2,-18],[3,-15],[-2,-7],[-3,-6],[-3,-2],[-3,3],[-8,-8],[-3,13],[-1,21],[-2,15],[2,8],[1,18],[1,7],[3,-3],[2,0],[2,2],[3,4],[0,-2],[0,-1],[1,0],[1,0]],[[82567,55394],[3,4],[2,0],[1,-5],[-1,-7],[-5,-11],[-8,-11],[-7,-1],[-2,15],[2,7],[15,26],[-1,-8],[0,-2],[-1,-2],[2,-5]],[[84661,55918],[3,-4],[3,-10],[1,-12],[-2,-16],[1,-10],[-1,-9],[-4,-8],[-2,-2],[-2,-2],[-2,1],[-2,9],[-2,0],[-3,1],[-2,1],[-17,17],[-7,14],[-3,20],[3,21],[8,14],[9,5],[11,-7],[5,-14],[2,-7],[3,-2]],[[84360,55897],[1,0],[3,-4],[2,-5],[-1,-2],[-4,-10],[-1,-3],[-3,-1],[-8,1],[-2,-1],[-1,-2],[-1,-3],[0,-4],[-1,-5],[-3,0],[-4,3],[-6,0],[-4,2],[-5,4],[-23,34],[-2,8],[1,7],[7,14],[5,-6],[6,2],[7,8],[8,14],[2,3],[2,4],[0,9],[1,7],[4,3],[4,0],[4,-3],[2,-8],[4,-18],[3,-4],[4,-3],[-1,-8],[-3,-8],[-1,-4],[0,-7],[1,-4],[3,-10]],[[85045,56291],[3,-7],[1,-10],[0,-8],[-7,-5],[-4,-8],[-3,-3],[-2,-1],[-8,1],[-11,9],[-3,0],[2,-12],[-4,6],[-5,10],[-7,20],[0,2],[1,3],[0,3],[-1,4],[-1,2],[-2,0],[-2,1],[-2,5],[4,0],[3,0],[3,3],[3,6],[-3,2],[-4,5],[-2,6],[1,9],[17,57],[1,6],[0,5],[-1,5],[0,6],[2,6],[5,8],[3,-2],[12,-59],[3,-32],[0,-7],[-1,-6],[-4,-8],[-2,-6],[5,-1],[4,-3],[3,-5],[3,-7]],[[84601,56315],[-5,-5],[6,-13],[15,-23],[-7,-30],[-1,-8],[-3,-3],[-7,0],[-7,3],[-4,2],[-1,5],[0,6],[-1,5],[-4,1],[-1,-4],[-9,-19],[-3,-3],[-3,-2],[-3,-4],[-1,-7],[-1,-8],[0,-6],[-1,-6],[-2,-6],[-8,-13],[-12,-11],[-13,-7],[-9,-2],[-11,1],[-43,-6],[-36,13],[-12,9],[-6,8],[-2,10],[1,12],[1,12],[1,11],[-3,7],[-5,2],[-6,0],[-5,2],[-2,10],[1,14],[2,13],[5,24],[4,8],[9,18],[2,9],[1,7],[2,2],[4,-3],[2,2],[2,4],[1,6],[2,4],[9,7],[12,6],[12,11],[5,19],[0,12],[1,9],[4,7],[8,3],[0,5],[-1,5],[1,5],[2,4],[4,5],[1,3],[5,12],[2,4],[5,4],[10,5],[12,0],[19,5],[5,-6],[1,-24],[4,5],[4,15],[4,5],[1,-8],[2,-11],[3,-8],[3,2],[13,-24],[4,-4],[8,1],[3,-2],[5,-7],[8,-9],[3,-6],[-1,-15],[0,-10],[-1,-6],[-3,9],[-1,-11],[0,-9],[-1,-5],[-2,-11],[4,-8],[4,-11],[0,-10],[-5,-4]],[[84921,56340],[1,-11],[-2,-8],[-4,-4],[-6,2],[-4,7],[-1,9],[0,10],[-1,11],[-2,4],[-8,5],[-3,7],[3,0],[1,0],[-3,4],[-1,2],[0,3],[2,3],[0,4],[-7,0],[-3,10],[1,14],[3,13],[1,-5],[2,-2],[2,1],[1,8],[-1,3],[-4,9],[-1,6],[-2,0],[-1,-7],[-2,-1],[-2,3],[-3,1],[-2,-3],[-2,-5],[-3,-5],[-4,1],[-2,6],[0,8],[-1,7],[-4,3],[0,3],[0,16],[0,5],[4,4],[2,11],[1,13],[-2,9],[2,2],[2,0],[2,-2],[2,-4],[-1,9],[-2,8],[0,8],[3,7],[-1,2],[-1,2],[-1,2],[-1,3],[1,9],[-2,11],[-1,9],[7,3],[3,1],[2,4],[0,13],[-1,5],[-1,3],[0,2],[2,5],[1,1],[2,1],[2,-2],[1,-7],[2,-1],[3,1],[2,3],[1,5],[1,23],[2,15],[1,6],[3,3],[3,1],[2,-3],[4,-14],[4,-19],[-1,-21],[-5,-41],[-1,-15],[-1,-5],[-1,1],[-2,1],[-2,-2],[0,-8],[2,-5],[4,-7],[2,-8],[-3,-9],[2,-4],[-3,-4],[1,-6],[3,-4],[5,2],[-2,-16],[-1,-11],[2,-8],[4,-12],[2,-7],[1,-7],[-1,-8],[-2,-9],[-2,-8],[-2,-3],[1,-5],[2,-23],[-3,-10],[2,-10],[5,-9],[3,-8]],[[83319,56749],[6,-5],[8,-8],[3,-9],[-6,-6],[0,-4],[1,-5],[-3,-6],[-4,-1],[-5,4],[-1,-4],[0,-3],[-1,-2],[0,-3],[-7,19],[-3,5],[1,-12],[2,-11],[0,-12],[-1,-9],[-2,-2],[-4,1],[-2,0],[-2,-6],[-1,-3],[-2,-2],[-5,-1],[-4,-2],[-4,-5],[-4,-1],[-5,6],[-2,9],[-1,13],[0,25],[-3,-3],[-3,2],[-1,3],[0,2],[12,18],[2,7],[7,25],[2,6],[2,3],[2,2],[3,-1],[8,-11],[8,-7],[9,-6]],[[84086,56827],[7,-24],[0,-32],[-5,-33],[-9,-47],[-6,-20],[-9,-16],[-11,-7],[3,17],[-3,-1],[-4,-7],[-2,-5],[-2,-2],[-5,-8],[-3,-2],[-2,2],[-1,6],[-2,12],[0,3],[1,7],[-1,3],[-1,1],[-4,2],[0,1],[-2,1],[-2,6],[-1,6],[4,3],[3,0],[3,0],[1,3],[1,7],[1,5],[5,4],[2,5],[-5,2],[-2,10],[0,13],[2,10],[3,8],[5,18],[3,8],[4,5],[5,2],[4,4],[3,23],[3,8],[4,7],[3,8],[8,-13],[4,-3]],[[84325,56884],[1,-3],[-2,-28],[-2,-11],[-8,-23],[-5,-24],[-8,-78],[-4,-13],[-23,-53],[-3,-10],[-4,-17],[-5,-26],[-1,-13],[-1,-39],[-1,-12],[-9,-36],[-1,-14],[0,-14],[-1,-12],[-2,-11],[-12,-40],[-3,-14],[-2,-4],[-2,-4],[-1,-3],[-3,-26],[-8,-19],[-4,-10],[-2,-14],[4,-101],[-1,-14],[-1,-6],[-1,-9],[-2,0],[-2,1],[-2,-3],[-1,-15],[12,-17],[-2,-16],[-2,12],[-5,-6],[-3,-12],[5,-7],[8,-2],[3,-6],[0,-10],[2,-14],[4,-8],[5,-8],[6,-9],[4,-27],[5,-12],[6,-10],[4,-11],[2,-24],[-3,-27],[-5,-25],[-16,-47],[-1,-9],[-2,-8],[-19,-25],[-4,-2],[-10,0],[-3,-1],[-6,-5],[-6,-3],[-4,-5],[-3,-1],[-12,7],[-9,20],[-7,24],[-11,58],[-2,40],[-1,11],[-3,10],[-7,14],[-5,7],[-5,3],[-18,2],[-6,2],[-12,14],[-4,2],[-2,2],[-3,5],[-2,6],[-1,4],[-4,2],[-3,0],[-3,2],[-1,3],[-2,8],[-6,14],[-5,9],[-6,28],[-4,6],[-3,3],[-2,5],[-8,37],[-3,8],[2,6],[-1,5],[-5,10],[-1,-3],[-3,-3],[-1,-2],[0,8],[2,15],[0,9],[-2,-2],[-4,-4],[-2,-2],[0,23],[2,22],[0,19],[-4,17],[0,4],[3,6],[10,40],[5,27],[4,5],[6,1],[11,6],[7,0],[18,-7],[5,-5],[4,5],[14,7],[5,6],[15,33],[7,10],[6,-7],[5,6],[7,19],[2,11],[-1,15],[-3,25],[-2,25],[4,72],[-3,26],[-11,47],[-2,25],[3,10],[5,5],[5,3],[3,4],[1,6],[10,21],[6,30],[1,6],[10,37],[1,12],[-1,38],[-1,3],[-4,7],[-1,3],[1,12],[0,5],[1,5],[2,7],[8,18],[3,3],[12,2],[6,2],[5,4],[23,31],[12,11],[13,-1],[1,-2],[0,-4],[2,-4],[2,-2],[5,0],[1,0],[3,-5],[5,-9],[4,-3],[3,1],[7,7],[3,0],[4,-4],[-1,-4],[-1,-6],[0,-6],[2,-3],[3,2],[2,5],[3,4],[4,2],[3,-1],[3,-3],[9,-5],[6,-4],[3,-9],[2,-24],[2,-5],[4,-11],[0,-1],[1,0],[1,-1],[1,-2]],[[84457,56886],[-1,-15],[-5,-23],[-2,-13],[1,-24],[8,-48],[1,-22],[-1,0],[-2,-2],[-2,-3],[-1,-3],[0,-3],[2,-1],[0,-4],[0,-46],[-1,-11],[-8,-37],[0,-5],[3,-9],[-1,-5],[-6,-9],[-1,7],[-1,4],[-2,1],[-2,-3],[0,-6],[0,-21],[-3,-2],[-15,-17],[-5,-7],[-6,-20],[-3,-4],[-7,-1],[-7,-2],[-4,-6],[-5,-16],[-15,-25],[-2,-9],[-1,-13],[-1,-9],[-3,-7],[-3,-6],[-3,-2],[-3,-3],[-2,-3],[-1,-4],[-1,-4],[-1,-5],[0,-5],[0,-47],[-4,-31],[0,-12],[-2,-5],[-2,-3],[-3,-1],[-1,-3],[-26,-126],[-1,-23],[-5,-29],[-2,-11],[-2,-5],[-5,-7],[-3,-4],[-2,-6],[-4,-14],[-14,-36],[-4,-6],[-4,-5],[-4,0],[-2,13],[-2,33],[0,13],[14,165],[11,55],[1,11],[1,15],[-1,3],[-6,6],[-1,3],[1,18],[1,4],[3,3],[1,-2],[1,-4],[1,0],[1,4],[1,5],[0,13],[1,15],[4,10],[10,17],[10,23],[4,14],[3,27],[13,37],[5,38],[2,9],[5,10],[23,66],[2,10],[0,2],[1,3],[2,4],[0,7],[-2,19],[1,7],[2,12],[7,18],[3,24],[4,13],[4,12],[11,25],[5,17],[18,110],[5,19],[-1,13],[-3,21],[2,10],[3,8],[2,9],[0,14],[2,0],[1,-5],[1,-2],[4,-5],[-3,31],[-2,7],[-1,9],[2,11],[3,11],[14,38],[7,11],[8,-5],[0,-4],[-1,-17],[-4,-17],[-1,-11],[-1,-22],[-2,-11],[-8,-21],[-4,-10],[3,-3],[1,-4],[0,-4],[1,-2],[6,1],[2,1],[3,3],[-1,-12],[3,-35],[-1,-13],[-2,-19],[1,-11],[3,-14],[1,-6],[-1,-6],[-4,-14],[-1,-6]],[[84388,57090],[3,-8],[2,-6],[-1,-4],[-18,-4],[-1,-2],[-3,9],[-7,38],[-1,14],[1,7],[2,6],[4,12],[4,5],[2,-2],[2,-6],[8,-47],[3,-12]],[[83241,56719],[12,-12],[3,-8],[-4,-14],[-2,-2],[-7,-4],[-3,-2],[-5,-19],[-3,-3],[-12,-23],[-5,-15],[-4,-4],[-6,-1],[-11,0],[-3,0],[-5,4],[-3,0],[-3,-3],[-9,-11],[-6,-3],[-5,-3],[-6,-9],[-20,-40],[-8,-24],[-5,-25],[-5,-56],[-7,-17],[-10,-9],[-13,-7],[-3,-3],[-5,-7],[-3,-2],[-3,-1],[-7,1],[-3,0],[-3,-3],[-6,-7],[-3,-3],[-3,-1],[-6,-2],[-13,-2],[-8,-4],[-7,-7],[-8,-12],[-7,3],[-6,-6],[-5,-13],[-2,-15],[2,-18],[5,-25],[3,-16],[-2,-32],[-4,-3],[-4,3],[-4,6],[-1,8],[1,11],[-1,3],[-5,1],[-3,-4],[0,-9],[1,-11],[-1,-9],[3,-3],[2,-5],[0,-5],[-1,-7],[7,2],[5,-8],[-1,-9],[-7,-1],[0,-9],[-2,-12],[-2,-11],[-3,-7],[-1,-5],[-1,-5],[-1,-3],[-6,-2],[-1,-3],[-22,-73],[-9,-21],[-2,-6],[-1,-11],[-3,-11],[-11,-30],[-1,-3],[-11,-14],[-2,-2],[-4,-5],[-14,-31],[-5,-16],[-3,-6],[-5,-2],[-11,0],[-3,-2],[-6,-8],[-4,-3],[-17,-1],[-4,-5],[-3,-3],[-7,-7],[-1,-2],[-2,-18],[-4,-16],[0,-3],[0,-7],[0,-2],[-1,-1],[-2,0],[-2,-1],[0,-5],[-1,-11],[-3,-14],[-6,-26],[-12,-38],[-4,-6],[-25,-28],[-19,-33],[-19,-42],[-5,-8],[-6,-3],[-6,-1],[-4,-3],[-3,-4],[-5,-4],[-6,-1],[-16,5],[-7,-6],[-2,-14],[0,-24],[-2,-13],[-8,-21],[-1,-13],[-1,-6],[-3,-4],[-3,-1],[-1,3],[-1,5],[-4,1],[-26,-17],[-9,-9],[-7,-11],[-1,-3],[-2,-10],[-1,-3],[-10,-6],[-2,-10],[-4,-8],[-7,-12],[-7,-17],[-2,2],[-1,16],[1,7],[3,12],[1,12],[2,5],[2,4],[1,3],[0,6],[0,12],[0,9],[0,7],[0,3],[1,3],[2,3],[2,15],[2,11],[6,20],[0,1],[-2,12],[5,-3],[2,9],[1,12],[3,6],[3,3],[4,7],[4,10],[3,8],[-4,0],[6,19],[5,10],[11,7],[5,8],[4,11],[20,64],[6,15],[22,40],[5,17],[2,13],[2,9],[4,5],[6,2],[4,6],[2,1],[1,-5],[1,-4],[3,-1],[3,1],[3,2],[3,5],[2,5],[3,20],[1,1],[1,3],[1,4],[-1,5],[-1,5],[3,7],[12,15],[3,3],[5,6],[6,28],[4,6],[12,-3],[6,1],[6,6],[0,-7],[0,-6],[1,-4],[3,-3],[3,6],[3,6],[5,16],[3,6],[20,28],[2,3],[1,5],[-2,13],[1,6],[4,8],[7,6],[6,8],[6,34],[17,24],[6,21],[8,15],[1,4],[1,3],[1,3],[2,4],[0,6],[0,13],[1,6],[3,8],[3,-3],[3,2],[5,9],[2,2],[2,1],[2,2],[1,10],[1,2],[2,0],[2,3],[2,5],[22,35],[2,7],[3,16],[13,26],[3,10],[1,7],[1,9],[2,10],[11,28],[2,6],[-3,13],[5,9],[14,14],[1,6],[10,44],[2,6],[2,-19],[0,-9],[-3,-4],[-1,-4],[4,-8],[6,-4],[3,6],[1,5],[2,4],[2,3],[1,2],[2,7],[0,3],[-1,2],[-5,20],[-1,9],[-1,12],[2,10],[1,3],[6,-1],[3,2],[6,8],[4,2],[8,-3],[4,1],[5,6],[2,9],[1,10],[-1,10],[-2,8],[2,1],[0,2],[1,-1],[2,-2],[3,6],[4,5],[4,3],[5,2],[-1,9],[2,8],[1,7],[-4,4],[-3,-2],[-3,-4],[-4,-1],[-2,7],[1,7],[3,9],[3,8],[3,5],[4,1],[5,-2],[4,-3],[4,-4],[2,7],[0,7],[1,4],[6,2],[-2,8],[-2,4],[-2,4],[1,8],[1,4],[6,4],[2,5],[0,-7],[-1,-2],[-1,-4],[2,-7],[2,-35],[2,-4],[5,6],[8,16],[3,13],[1,3],[2,3],[3,1],[2,2],[3,13],[9,5],[4,9],[-3,6],[-3,7],[-3,7],[1,8],[6,-4],[5,5],[6,10],[2,9],[8,79],[-1,8],[-4,9],[-1,3],[-1,5],[-1,4],[-2,2],[-2,-1],[-3,-7],[-2,0],[-3,6],[-1,8],[0,16],[-1,8],[-4,7],[-4,4],[-4,4],[8,21],[1,3],[-2,6],[-4,4],[-2,4],[3,10],[-4,6],[2,5],[4,-1],[1,-14],[2,0],[1,3],[1,5],[1,-4],[2,-3],[1,0],[2,3],[2,0],[-1,-7],[-1,-2],[-2,-3],[4,-16],[-6,0],[2,-6],[3,-2],[3,1],[4,3],[-2,-13],[1,-5],[3,-5],[3,-10],[2,0],[0,5],[2,0],[1,-12],[5,-6],[5,-4],[2,-9],[1,-6],[2,-4],[2,0],[2,5],[2,-5],[2,-6],[2,-7],[0,-4],[1,-3],[4,0],[3,3],[0,5],[-1,5],[-2,5],[-3,18],[-2,4],[1,9],[2,8],[2,4],[-2,6],[-4,7],[-5,5],[-4,2],[-5,0],[-4,2],[-5,6],[-2,12],[1,6],[2,11],[1,3],[-3,1],[-3,-1],[-4,1],[-2,5],[1,35],[1,8],[0,5],[2,0],[1,-7],[1,-5],[3,-2],[3,1],[-2,13],[-7,24],[-1,16],[3,7],[3,-8],[4,-13],[5,-7],[2,-1],[3,-2],[3,-1],[2,4],[1,7],[0,17],[4,15],[-2,7],[-2,4],[-1,-1],[-5,12],[-1,8],[-2,9],[4,-1],[4,7],[2,9],[2,9],[0,13],[-2,28],[1,10],[1,3],[1,2],[1,3],[0,4],[1,2],[1,0],[2,-2],[0,-2],[4,9],[2,7],[1,6],[1,17],[1,8],[2,6],[3,2],[2,-6],[1,-9],[1,-8],[0,-10],[0,-4],[1,-6],[1,-7],[2,-5],[2,-4],[1,2],[2,3],[1,3],[4,-21],[1,-24],[-2,-25],[-5,-24],[-7,-24],[-1,-12],[4,-14],[6,-13],[3,-8],[3,-26],[-1,-5],[-3,-3],[-6,7],[-4,2],[-2,-3],[-3,-17],[0,-7],[0,-7],[2,-13],[0,-7],[-1,-6],[-1,-11],[0,-7],[1,-6],[2,-9],[1,-13],[1,-6],[2,-5],[3,-2],[4,2],[2,2],[2,3],[1,2],[3,1],[1,1],[2,2],[2,-8],[0,-8],[-2,-8],[0,-7],[1,-18],[0,-22],[-1,-12],[-1,-9],[0,-6],[4,-4],[6,1],[4,5],[3,0],[4,-14],[-2,2],[-3,0],[-2,0],[-2,-2],[1,-5],[1,-3],[0,-4],[0,-4],[4,-8],[2,-24],[2,-11]],[[83296,57289],[2,-21],[-2,-23],[-4,-21],[-6,-16],[-3,5],[0,8],[1,8],[2,7],[-3,1],[-5,3],[-2,0],[-2,-7],[-2,-5],[-3,-3],[0,2],[-2,6],[-3,5],[-2,2],[-3,3],[-1,11],[-4,3],[3,10],[4,-5],[3,-11],[5,-6],[3,4],[1,10],[0,18],[2,-6],[3,-10],[2,-4],[2,5],[1,2],[2,-2],[1,-5],[2,9],[1,9],[-1,7],[-4,3],[3,4],[3,3],[3,1],[3,-4]],[[84797,56583],[1,-13],[-1,-14],[-3,-10],[-9,-4],[-19,17],[-5,-2],[-2,-12],[0,-18],[2,-16],[2,-9],[-9,7],[-8,18],[-5,23],[-2,19],[-5,12],[0,2],[-1,3],[0,22],[-3,6],[-6,5],[-5,-1],[-3,-10],[3,-18],[2,-80],[7,-38],[2,-25],[3,-26],[0,-12],[-3,-5],[-4,3],[-15,25],[-1,3],[-1,8],[-4,3],[-4,1],[-2,2],[-5,10],[-2,7],[-3,6],[-7,2],[-12,0],[-6,3],[-4,5],[-4,20],[2,23],[4,24],[2,22],[0,14],[-2,16],[-4,13],[-6,6],[-3,6],[-1,15],[0,16],[2,27],[1,5],[1,5],[4,9],[1,4],[0,27],[1,12],[7,36],[1,12],[0,27],[-6,57],[-2,6],[-9,18],[-2,4],[-1,11],[-3,11],[-7,20],[-12,19],[-2,4],[-1,10],[-5,4],[-5,1],[-6,-1],[-5,-4],[-4,-7],[0,-9],[3,-10],[1,-12],[-3,-13],[-4,-12],[-3,-6],[-3,-3],[-2,1],[-11,16],[0,2],[-5,-3],[-1,2],[-2,16],[-1,3],[-3,-2],[-4,0],[-3,-2],[-1,3],[0,12],[1,7],[4,11],[1,10],[-1,11],[-2,5],[-3,4],[-2,8],[-1,10],[2,9],[2,7],[2,9],[2,8],[1,4],[-1,5],[-1,7],[-2,37],[0,54],[-5,-1],[-5,6],[-4,11],[-1,11],[0,5],[5,6],[0,5],[-4,3],[-3,3],[-2,4],[3,4],[-1,5],[-2,6],[-2,7],[-1,9],[-4,13],[-4,36],[1,10],[1,0],[6,6],[1,2],[3,-4],[7,-20],[17,-29],[5,-12],[10,-37],[1,25],[2,12],[3,-2],[9,-13],[3,-8],[7,-37],[7,-16],[10,-9],[13,-1],[10,6],[8,10],[14,25],[11,31],[4,5],[2,-1],[6,-5],[3,-1],[1,1],[0,5],[1,1],[2,-1],[1,-2],[0,-3],[0,-1],[7,1],[2,-1],[3,-4],[6,-11],[2,-2],[2,-6],[-1,-14],[-1,-14],[-3,-9],[0,-8],[0,-7],[1,-3],[1,-1],[0,-6],[1,-3],[1,-2],[1,-1],[1,-1],[2,-2],[3,-3],[2,0],[2,-2],[1,-15],[1,0],[1,5],[1,7],[2,0],[0,-18],[0,-6],[-1,-6],[-2,-9],[-1,-4],[1,-7],[2,-11],[1,-6],[-1,-19],[5,-55],[-1,-25],[-11,-73],[-2,-28],[2,-25],[4,-7],[17,-17],[6,-4],[3,-3],[1,-5],[2,-17],[11,-27],[1,-5],[5,-5],[1,-12],[-3,-30],[0,-7],[3,-14],[1,-7],[-1,-23],[1,-8],[2,-8],[3,-12],[4,-7],[2,7],[2,0],[3,-9],[2,-9],[2,-11],[0,-16]],[[84213,57269],[1,-8],[-1,-8],[-2,-9],[-2,-9],[2,-17],[-1,-9],[-3,-11],[0,-3],[0,-2],[-5,-2],[-1,-3],[-1,-4],[0,-4],[0,-1],[0,-16],[-2,-12],[-1,-9],[1,-21],[1,-6],[2,-3],[2,-3],[1,-9],[-2,-8],[-5,-8],[-1,-10],[-6,6],[-7,4],[-6,-3],[-3,-32],[-4,-11],[-5,-7],[-7,-6],[1,-7],[-1,-5],[-6,-8],[1,6],[-1,6],[-1,4],[-2,1],[-2,-3],[-1,-13],[-1,-5],[-3,-1],[-2,2],[-2,2],[-3,1],[-1,-1],[-6,-11],[0,8],[-7,-6],[-7,-12],[-7,-13],[-2,-11],[1,-19],[3,-15],[1,-15],[-3,-18],[-7,-20],[-5,-9],[-5,-4],[-2,2],[-5,5],[-2,1],[-2,-1],[-6,-7],[-3,-1],[-3,-4],[-4,-4],[-4,-7],[-1,-3],[-3,-9],[1,-2],[0,-2],[0,-4],[-3,-4],[-1,-13],[-13,-6],[-26,-2],[-23,-8],[-3,-1],[-4,-6],[-1,-1],[-9,1],[-3,-1],[-4,-3],[-3,-7],[-3,-2],[-3,0],[-3,2],[-3,0],[-3,-4],[-12,-20],[-3,-5],[-3,0],[-3,0],[-3,-2],[-8,-12],[-17,-61],[-2,-3],[-5,-9],[-9,-9],[-9,1],[-5,20],[0,25],[11,44],[4,25],[0,13],[-2,37],[-2,9],[-7,17],[-2,13],[0,11],[4,17],[2,19],[5,30],[19,66],[2,28],[0,100],[-1,13],[-2,14],[0,13],[2,12],[3,11],[1,12],[2,70],[1,3],[2,3],[1,4],[6,97],[-2,21],[-4,18],[-7,6],[-9,0],[-10,4],[-10,8],[-4,3],[-6,1],[-11,0],[-5,1],[-3,4],[1,1],[0,5],[3,8],[3,7],[2,3],[1,5],[1,12],[0,12],[-1,7],[1,8],[1,5],[3,3],[4,0],[2,3],[3,11],[2,3],[2,0],[2,4],[1,0],[2,-2],[2,-4],[1,-4],[1,-2],[10,-6],[2,-4],[7,-18],[5,-10],[6,-9],[7,-6],[31,-14],[10,-9],[9,-14],[7,-11],[3,-4],[12,-2],[3,-3],[11,-35],[3,-7],[4,-2],[3,-5],[13,-28],[17,-13],[4,-7],[2,-6],[0,-3],[1,-10],[2,-9],[5,-5],[2,1],[3,6],[4,4],[0,5],[-1,5],[0,4],[1,9],[1,2],[4,-5],[4,-9],[1,-2],[4,1],[-3,7],[0,3],[2,3],[3,3],[5,13],[1,5],[-1,2],[-1,2],[-1,2],[9,2],[11,-1],[10,-5],[7,-8],[2,-9],[1,-9],[2,-7],[3,-3],[4,-2],[12,-11],[-14,-20],[-5,-13],[0,-11],[7,-6],[8,8],[7,12],[8,6],[7,4],[10,17],[13,8],[8,11],[6,14],[4,15],[2,0],[0,-35],[-2,-10],[-2,-1],[-3,-1],[-3,-2],[-1,-4],[0,-6],[2,-3],[2,0],[3,1],[-2,-9],[2,-2],[6,3]],[[83339,57513],[8,-13],[6,-4],[3,-2],[-2,-2],[-8,-2],[0,-6],[1,-8],[-4,-8],[0,-4],[1,-1],[3,-3],[0,4],[3,-2],[2,-4],[2,-3],[1,-4],[-6,-12],[-2,-4],[4,-12],[-5,-19],[-10,-16],[-8,-1],[-5,-10],[-3,10],[-1,17],[1,15],[4,-5],[1,-3],[1,-4],[2,0],[0,9],[-1,3],[-1,4],[4,8],[3,8],[1,8],[-2,8],[-2,-3],[-2,0],[-2,3],[-1,-12],[-4,-5],[-4,0],[-4,5],[-2,8],[-3,17],[-3,4],[2,2],[2,5],[2,1],[-3,10],[-7,14],[-3,9],[-2,8],[-4,28],[2,-1],[2,-2],[1,-1],[2,0],[0,-1],[1,-1],[1,-2],[1,0],[1,1],[1,3],[-1,3],[-1,1],[1,5],[3,9],[4,2],[3,-12],[9,-12],[-1,-6],[5,-2],[13,0],[2,-1],[0,-3],[-1,-3],[-7,-3],[2,-4],[3,-5],[1,-1]],[[83429,57594],[2,-8],[-2,-6],[-2,-3],[-4,-4],[-4,-1],[-1,1],[-2,2],[-2,3],[-5,0],[-3,-3],[-4,-4],[-3,-2],[-4,3],[-3,6],[-3,3],[-4,-3],[-1,9],[-3,3],[-5,0],[-4,4],[-2,-5],[2,-7],[0,-6],[-1,-7],[-1,-8],[-3,3],[-1,0],[-1,-2],[-1,-5],[-2,0],[-4,16],[-3,4],[-12,-4],[-5,3],[-5,7],[-5,8],[-4,18],[-8,19],[-1,12],[0,9],[-1,7],[-1,6],[-3,7],[-2,6],[0,8],[-1,9],[-4,7],[-3,-5],[-3,-7],[-2,-8],[-1,-8],[-4,4],[1,5],[3,5],[2,6],[0,8],[0,6],[0,9],[1,11],[4,5],[5,3],[5,7],[-7,0],[-3,-1],[-2,-3],[0,23],[2,8],[6,1],[5,-4],[2,-9],[0,-10],[1,-5],[4,-3],[10,-3],[5,-2],[4,-6],[8,-13],[7,-15],[2,-3],[2,-1],[5,-1],[2,-2],[-3,-1],[-2,-4],[-1,-5],[1,-6],[6,0],[15,-24],[7,-8],[1,6],[1,3],[3,1],[3,-2],[0,55],[1,0],[4,-11],[2,-9],[1,-9],[-1,-16],[2,-7],[4,2],[4,0],[2,-10],[1,1],[0,1],[1,3],[8,-17],[4,-10],[1,-8],[-1,-8],[-2,-3],[-2,-2],[-3,-5],[-1,-8],[1,-3],[2,1],[2,6],[1,0],[1,-1],[0,-1],[0,-3],[2,5]],[[84079,57815],[0,-8],[-5,-43],[-3,-7],[-4,-8],[-5,-6],[-4,-3],[-1,2],[-5,12],[-2,3],[-6,3],[-2,4],[-7,25],[-5,11],[-6,5],[-7,1],[-5,5],[-4,8],[-2,10],[0,21],[6,13],[10,5],[31,0],[11,-5],[3,-3],[1,-4],[2,-12],[2,-8],[2,-7],[5,-14]],[[84919,57072],[5,-18],[9,-20],[5,-19],[-5,-17],[-3,4],[-6,7],[-3,4],[-2,20],[-1,2],[0,1],[0,4],[0,10],[0,3],[-2,1],[-4,4],[-1,3],[-4,7],[-5,5],[-2,-5],[-9,-12],[-3,-2],[-3,2],[-1,6],[-1,7],[-2,5],[-3,3],[-2,-2],[-2,-3],[-3,-2],[-1,-4],[-1,-21],[-1,-7],[-8,14],[-5,8],[-3,0],[-5,-13],[-3,-5],[-5,-4],[0,9],[-2,6],[-3,0],[-2,-7],[-7,13],[-3,3],[-10,3],[-1,3],[-2,5],[-3,-2],[-8,-7],[-1,-4],[-2,-6],[-3,-10],[-1,-4],[-1,-1],[-2,1],[-2,2],[-2,5],[-2,7],[-1,8],[-2,32],[-2,25],[-8,22],[-11,10],[-12,2],[-13,-2],[-11,5],[-3,16],[2,48],[0,5],[1,4],[0,4],[1,3],[-2,3],[-5,10],[-2,2],[-4,0],[-2,2],[-4,5],[-3,7],[-3,7],[-1,9],[-4,-19],[-3,-2],[-5,1],[-4,3],[-3,5],[-2,7],[-2,9],[4,4],[2,6],[2,6],[3,5],[5,2],[4,1],[1,3],[-4,10],[16,0],[4,4],[4,9],[4,11],[2,8],[0,9],[-1,9],[-1,9],[1,8],[6,13],[5,13],[1,-3],[5,-5],[-1,14],[-2,12],[-5,8],[-7,2],[-4,-3],[-12,-14],[-5,-3],[-10,12],[-16,50],[-11,7],[0,4],[2,0],[2,0],[-3,3],[-1,1],[4,16],[1,-1],[2,-2],[1,-1],[2,-4],[-2,12],[-3,6],[-5,1],[-4,-10],[-5,1],[-3,5],[5,6],[-2,5],[-1,3],[-3,-1],[-2,-3],[-1,16],[0,8],[-2,6],[-14,31],[-11,9],[-11,6],[-8,-3],[-8,9],[-13,19],[-13,33],[-6,12],[0,1],[1,0],[0,3],[-6,8],[-5,17],[-13,97],[-19,87],[0,8],[0,7],[2,7],[3,6],[3,2],[2,-3],[13,-20],[1,-1],[3,0],[7,7],[3,1],[1,-1],[7,-7],[5,-3],[17,-1],[1,0],[4,-5],[0,-1],[1,-2],[1,1],[2,2],[1,1],[6,-1],[6,-3],[23,-4],[53,8],[2,2],[3,4],[2,8],[-1,6],[-3,5],[-1,7],[0,4],[5,-3],[4,-7],[3,-7],[2,-3],[4,4],[5,6],[4,2],[2,-10],[2,1],[6,-5],[5,-6],[1,-4],[2,-1],[1,-2],[2,-1],[4,0],[2,2],[3,4],[3,4],[1,4],[1,13],[3,2],[8,-5],[2,1],[3,2],[3,2],[2,-3],[7,-14],[13,-18],[7,-12],[0,-10],[3,-7],[6,-7],[3,-7],[3,-15],[2,-5],[4,-8],[-5,-6],[-5,-14],[-1,-14],[6,-11],[-2,-3],[-1,-3],[-1,-7],[0,-3],[8,10],[3,2],[0,-5],[0,-4],[0,-4],[-2,-3],[4,-3],[2,2],[6,9],[-2,-11],[3,-3],[10,2],[6,-6],[9,-15],[4,0],[2,-6],[6,-16],[3,-16],[0,-7],[-5,5],[-2,-3],[-7,-3],[-2,-2],[2,-2],[2,-3],[2,-3],[1,-4],[-7,-4],[-4,-3],[-2,-5],[-1,-11],[3,-3],[9,1],[0,-2],[-1,-4],[0,-2],[2,-4],[4,-8],[2,-8],[0,-6],[-9,-17],[-3,-6],[-3,-13],[-5,-13],[-2,-10],[0,-11],[0,-13],[1,-4],[3,-17],[-1,-18],[1,-6],[2,-4],[7,-14],[1,-6],[-1,-5],[-2,-3],[-8,5],[-2,-10],[0,-11],[6,5],[3,0],[3,-12],[2,-22],[0,-15],[-3,-3],[-3,-1],[-3,-9],[3,-3],[0,-6],[-2,-8],[-1,-8],[1,-5],[2,-2],[2,0],[2,-3],[1,-4],[0,-14],[1,-9],[1,-6],[6,-19],[2,-9],[0,-9],[-3,-9],[2,-1],[2,-1],[1,0],[3,2],[1,-15],[2,-6],[2,-3],[2,-2],[5,-9],[4,-2],[1,-3],[3,-7],[3,-7],[2,-1],[0,-15],[-1,-10],[-2,-7],[-17,-27],[-3,-12],[0,-22],[4,-11],[8,-2],[9,7],[-4,11],[-1,9],[4,1],[13,-20],[5,-6],[4,-9],[1,-17]],[[84459,57458],[1,-10],[2,-11],[2,-12],[-1,-10],[-4,-1],[-4,10],[-6,24],[-3,8],[-10,17],[-7,6],[-6,14],[-10,7],[-4,8],[-5,17],[-4,-4],[-5,2],[-10,10],[-7,-7],[-6,7],[-5,11],[-3,5],[1,8],[1,5],[3,3],[4,0],[-4,16],[-1,-5],[-1,-3],[-1,0],[-3,8],[-3,8],[-4,6],[-7,7],[-2,8],[0,7],[5,1],[-6,4],[-5,-1],[-4,2],[-3,24],[-4,9],[-8,19],[-4,13],[-2,3],[-8,7],[-2,3],[-5,4],[-7,-1],[-6,-4],[-4,-5],[-4,-7],[-8,-26],[-3,-15],[-2,-8],[-3,-6],[-2,-3],[-3,-1],[-2,-2],[-2,-9],[-15,-37],[-24,-46],[-6,-7],[-3,7],[1,12],[1,14],[3,12],[2,5],[3,1],[2,4],[0,6],[0,7],[0,8],[2,6],[2,5],[2,7],[-1,22],[2,11],[4,-4],[2,8],[2,6],[3,4],[4,2],[2,3],[-1,6],[-4,11],[4,5],[3,4],[3,5],[-1,11],[-9,1],[-6,-1],[-6,-5],[1,4],[-1,18],[1,2],[0,1],[8,22],[1,8],[1,18],[4,29],[1,14],[-1,9],[-1,5],[-3,4],[-4,6],[-3,69],[1,7],[2,2],[3,-2],[3,-4],[4,-4],[8,-2],[4,-3],[3,-4],[2,-4],[2,-3],[3,-1],[0,-1],[0,-3],[-5,2],[0,-9],[5,-21],[-2,-5],[-3,-5],[-3,-7],[-2,-10],[1,-7],[4,4],[5,14],[3,0],[1,1],[1,3],[0,6],[0,2],[1,7],[2,7],[1,0],[2,4],[5,1],[5,-2],[4,-3],[9,-19],[4,-7],[5,-5],[10,0],[1,-2],[4,-10],[2,-5],[2,-11],[4,-11],[4,-5],[0,-4],[-3,-1],[-2,-3],[-1,-6],[0,-7],[10,10],[4,2],[2,-10],[1,-3],[2,-2],[4,0],[2,-1],[3,-4],[2,-4],[2,-6],[18,-63],[7,-16],[-1,26],[2,9],[6,-8],[9,-19],[3,1],[3,5],[3,1],[2,-7],[0,4],[3,-12],[14,-49],[2,-2],[4,-3],[2,-3],[1,-5],[3,-20],[1,-5],[12,-31],[3,-10],[1,-10],[-5,6],[-5,19],[-6,7],[1,-6],[2,-4],[3,-10],[-3,-5],[1,-7],[6,-16],[7,-31],[1,-8],[0,-14],[-2,-16],[0,-6]],[[83966,57935],[5,-19],[4,-22],[-1,-21],[-8,-16],[-5,11],[-2,11],[-1,11],[0,12],[0,2],[-1,3],[-1,4],[0,3],[1,3],[2,2],[1,3],[2,12],[1,5],[3,4],[0,-8]],[[83920,57971],[9,-5],[2,-6],[0,-9],[-1,-3],[-4,2],[-2,-3],[0,-6],[2,-33],[-2,-19],[-6,-40],[-2,-44],[-5,-42],[-9,-43],[-2,-6],[-2,-11],[3,-8],[4,-7],[0,-9],[-4,8],[-2,-5],[-5,-9],[-1,-4],[0,-31],[-2,0],[-5,14],[-2,9],[2,10],[-8,1],[-1,10],[1,29],[3,-14],[3,-2],[4,6],[2,13],[-1,7],[-3,3],[-3,1],[-3,3],[-11,24],[-3,4],[1,21],[3,24],[3,12],[9,7],[4,18],[1,22],[0,20],[-1,35],[1,12],[6,12],[16,9],[8,8],[3,15]],[[84385,57799],[1,-12],[1,-7],[-2,-4],[-2,2],[-2,5],[-2,6],[0,6],[-1,5],[-9,17],[-41,129],[-1,5],[0,8],[2,0],[3,-3],[1,8],[1,11],[1,8],[3,0],[3,-5],[4,-13],[14,-17],[3,-1],[-1,-4],[0,-2],[-3,-2],[4,0],[3,-3],[2,-4],[2,-6],[-1,-10],[2,-12],[3,-11],[2,-9],[1,-10],[4,-19],[3,-31],[1,-3],[1,-2],[0,-7],[0,-13]],[[84244,58088],[1,-29],[21,-47],[4,-25],[-9,15],[-19,54],[-6,13],[-4,6],[-10,4],[-5,6],[-21,38],[-2,8],[-1,1],[-5,11],[-1,3],[-2,2],[-1,4],[0,5],[-1,5],[-7,9],[-17,9],[-7,14],[-2,33],[0,7],[4,6],[5,1],[4,4],[1,14],[3,-2],[4,-3],[6,-10],[3,-5],[2,-7],[4,-13],[6,-25],[7,-11],[1,-3],[1,-7],[4,-14],[0,-7],[1,-2],[4,-19],[5,-9],[7,-9],[7,-5],[5,5],[5,-5],[1,-6],[2,-6],[2,-8]],[[83756,57993],[1,-7],[1,-9],[1,-10],[3,-9],[0,-5],[0,-15],[-1,-1],[-1,0],[-2,-2],[-11,-33],[-3,-7],[-7,-9],[-2,-1],[-2,1],[-1,-1],[-1,-5],[1,-10],[0,-4],[1,-4],[-2,-5],[-1,5],[-1,-4],[-1,-3],[1,-4],[1,-6],[-5,-6],[0,-17],[3,-18],[5,-11],[0,-4],[-11,6],[-5,0],[-1,-11],[2,-4],[0,-5],[0,-5],[-2,-6],[3,-2],[1,-4],[0,-4],[0,-6],[-8,11],[-3,9],[-4,-4],[-7,-12],[-3,-2],[-4,-4],[-5,-10],[-7,-30],[-1,-3],[-4,0],[-6,13],[-4,3],[-17,0],[-5,6],[-4,14],[-2,17],[2,16],[2,-10],[2,-5],[4,-1],[4,4],[-2,2],[-2,0],[-2,-2],[-2,10],[0,2],[-5,9],[-2,-1],[0,-12],[-5,5],[-6,10],[-5,11],[-3,13],[-7,14],[-2,2],[-2,4],[-12,42],[-3,4],[-3,7],[1,14],[3,24],[-1,12],[-1,12],[-3,10],[-7,18],[-5,21],[-4,9],[-6,5],[-6,0],[-4,3],[-1,14],[-1,7],[-1,11],[0,6],[-1,7],[-5,16],[0,5],[2,4],[1,3],[1,4],[0,5],[-1,29],[-2,18],[-3,33],[-5,18],[-12,35],[-9,38],[-6,16],[-13,9],[-5,14],[-5,4],[-10,-2],[-2,3],[3,11],[-8,14],[-5,17],[-4,19],[-2,42],[-2,9],[-3,4],[-2,0],[-5,-2],[-2,-2],[-2,-3],[-2,-3],[0,-3],[-2,-3],[-5,-10],[-4,-1],[-4,3],[-3,6],[-3,9],[-3,10],[0,10],[1,13],[3,12],[4,11],[6,7],[6,5],[6,1],[20,-10],[16,-1],[4,1],[3,2],[3,-1],[5,-6],[3,-2],[5,-2],[11,1],[6,-3],[4,-6],[5,5],[3,-3],[5,-10],[5,-1],[4,2],[9,7],[24,12],[8,8],[3,-7],[3,2],[2,3],[1,11],[4,-3],[2,1],[2,2],[0,-3],[2,-2],[-1,-5],[-2,-4],[-2,-2],[-3,-1],[2,-5],[3,-7],[3,-6],[3,-2],[2,-5],[7,-23],[4,-5],[18,2],[5,-7],[-1,-19],[2,0],[0,4],[1,9],[1,3],[1,4],[0,1],[3,3],[2,3],[4,2],[3,4],[2,8],[2,0],[6,-22],[32,-56],[12,-38],[4,-6],[6,-2],[5,-5],[3,-9],[0,-12],[0,-6],[-2,-7],[-1,-6],[1,-6],[4,-4],[3,0],[3,3],[3,1],[6,-1],[7,-2],[5,-6],[2,-12],[-1,-12],[-4,-8],[-9,-13],[-4,-11],[-2,-13],[0,-14],[3,-36],[0,-10],[-3,-24],[1,-8],[-2,0],[2,-17],[0,-37],[3,-13],[7,-20],[1,-5]],[[83916,58415],[1,-5],[5,-7],[2,-6],[-3,-17],[-16,-35],[-6,-17],[3,-12],[-3,-11],[-9,-15],[-4,-2],[-4,7],[-4,8],[-3,5],[-3,3],[-9,17],[-3,2],[-4,0],[-3,2],[-2,5],[-5,15],[-9,19],[-1,6],[1,14],[0,4],[-1,9],[0,31],[1,9],[2,5],[8,28],[0,6],[1,16],[1,4],[4,2],[4,-8],[6,-19],[1,4],[3,5],[2,4],[4,-9],[6,-3],[6,4],[2,12],[4,-5],[3,-6],[1,-6],[-2,-8],[4,3],[4,-3],[1,-6],[-3,-6],[1,-2],[3,-4],[2,-2],[4,6],[6,-3],[5,-9],[2,-10],[-1,-3],[-2,-1],[-3,0],[0,-5],[0,-10]],[[83405,58590],[2,-3],[2,0],[2,-3],[1,-6],[-5,-8],[-1,-3],[-2,5],[-2,7],[-2,6],[-3,3],[-4,2],[-1,4],[-1,5],[-2,5],[-3,4],[-3,3],[-3,1],[-3,0],[-2,2],[-3,9],[-9,6],[-5,10],[-2,14],[-1,14],[0,7],[1,4],[2,3],[3,0],[4,-3],[7,-7],[6,-8],[1,-6],[4,2],[6,-2],[5,-6],[5,-6],[9,-31],[-1,-7],[-3,-4],[-1,-6],[2,-7]],[[84560,58685],[0,-4],[-4,-5],[-4,-7],[4,-4],[1,-7],[1,-9],[2,-8],[-6,-4],[-2,0],[2,-7],[0,-5],[0,-17],[-2,-12],[0,-6],[5,-17],[0,-9],[-6,-5],[-6,1],[-3,-1],[-1,-5],[0,-11],[-5,-36],[1,-8],[-5,6],[-3,12],[-4,9],[-3,-3],[-4,2],[-5,-2],[-4,-4],[-4,-6],[-2,-8],[-2,-12],[-2,-10],[-3,-5],[-5,4],[-15,29],[-9,13],[-4,3],[-6,0],[1,8],[-1,9],[-2,7],[-3,7],[-1,7],[3,7],[7,8],[7,13],[5,17],[4,20],[3,23],[-3,34],[2,9],[2,10],[0,10],[-4,23],[-1,10],[0,5],[1,3],[3,5],[1,5],[0,5],[-3,9],[0,9],[2,9],[2,8],[3,-9],[4,2],[6,11],[2,3],[2,1],[2,0],[3,-3],[5,-11],[5,-13],[3,-14],[3,-15],[1,-25],[2,-1],[3,-5],[3,-10],[-2,-4],[1,-4],[1,-2],[0,-3],[2,0],[4,16],[8,-7],[17,-29]],[[83917,58821],[13,-17],[6,-12],[3,-13],[-2,-14],[-5,0],[-6,7],[-10,18],[-19,25],[-11,21],[-3,3],[-5,6],[-5,14],[-4,15],[-2,10],[1,8],[2,5],[3,1],[3,-1],[2,-2],[1,-3],[2,-7],[36,-64]],[[83953,59233],[4,-6],[2,-12],[0,-13],[-4,-5],[0,3],[-22,33],[-7,3],[-4,3],[-2,4],[-1,7],[-2,7],[0,3],[5,-3],[1,3],[3,5],[1,-7],[2,-4],[3,1],[3,2],[10,0],[-2,-3],[-1,-5],[-1,-6],[2,-6],[2,-5],[3,0],[5,1]],[[83890,59359],[6,-1],[5,-5],[3,-10],[-1,-12],[-6,15],[-3,3],[-4,-2],[-3,-6],[-1,-6],[1,-4],[3,4],[2,-15],[0,-7],[-3,-4],[-9,-12],[-1,-2],[1,-3],[0,-21],[1,-6],[1,-8],[5,2],[3,-10],[2,-15],[3,-37],[0,-8],[-6,-29],[-5,-10],[-7,-7],[-6,-3],[-6,5],[-2,13],[0,16],[2,14],[5,2],[0,24],[-4,27],[-6,12],[-4,3],[-2,7],[1,21],[-1,6],[-6,20],[-2,5],[-5,3],[-2,0],[-1,3],[2,39],[2,14],[3,6],[8,-11],[6,-2],[2,11],[2,5],[5,1],[12,-3],[4,-6],[2,3],[3,-2],[2,-7],[-1,-10]],[[83718,61664],[8,3],[4,-1],[3,-6],[2,-4],[3,-3],[2,-1],[3,0],[-7,-10],[-6,-5],[-7,-4],[-24,-4],[-7,2],[-4,9],[-1,8],[1,3],[5,1],[15,10],[10,2]],[[83880,61713],[4,-6],[2,-8],[-1,-7],[-7,-7],[-6,-17],[-3,-8],[-10,-17],[-4,-10],[-2,-12],[-2,-5],[-5,2],[-4,6],[2,8],[0,12],[6,9],[3,10],[-6,13],[3,7],[2,10],[1,8],[-1,4],[2,2],[4,13],[3,5],[1,-1],[2,-2],[2,-1],[1,2],[1,1],[4,4],[1,1],[3,-2],[1,-5],[1,-5],[2,-4]],[[83669,61826],[2,-3],[2,-3],[1,-4],[3,-24],[3,-22],[2,-21],[-4,-16],[-10,18],[-3,10],[-2,12],[1,15],[4,25],[1,13]],[[83756,61912],[4,-9],[0,-2],[1,-2],[0,-2],[1,-3],[0,-5],[-1,-2],[-2,0],[-3,0],[-2,0],[-1,-3],[-1,-4],[-1,-3],[-2,-2],[-8,6],[-2,4],[-10,12],[-2,1],[-2,0],[-2,1],[-2,2],[-1,5],[-4,14],[-9,21],[1,3],[4,2],[4,3],[4,12],[16,-12],[5,-1],[5,2],[4,4],[4,1],[2,-7],[0,-28],[0,-2],[0,-2],[0,-4]],[[83882,62064],[1,-2],[3,-2],[1,-4],[0,-2],[-1,-8],[-2,-20],[-2,-9],[-5,-4],[-4,3],[-6,13],[-5,7],[-2,4],[-1,5],[0,7],[1,1],[2,0],[6,2],[4,-2],[2,1],[2,2],[4,6],[2,2]],[[83844,62519],[5,1],[6,-9],[3,-11],[0,-10],[-6,-12],[-2,-2],[-3,0],[-4,28],[0,8],[0,4],[1,3]],[[83891,62603],[2,-1],[3,-3],[1,-5],[0,-5],[-2,-5],[-9,-14],[-7,-11],[-1,-4],[1,-8],[1,-4],[1,-4],[-1,-7],[-4,-8],[-5,-4],[-5,4],[-1,13],[1,10],[12,34],[1,6],[4,7],[4,7],[4,2]],[[83854,62770],[-3,-15],[-4,-15],[-6,-12],[-8,-5],[-4,7],[1,16],[4,17],[5,17],[4,20],[2,6],[3,4],[3,0],[2,-6],[2,-8],[0,-9],[0,-8],[-1,-9]],[[83189,53342],[1,-11],[4,-19],[1,-10],[0,-11],[-1,-9],[-1,-9],[-9,-40],[-2,-6],[0,37],[1,34],[-1,40],[-3,18],[-3,17],[3,2],[3,-2],[3,-5],[2,-6],[1,-5],[0,-5],[1,-5],[0,-5]],[[83671,53917],[3,-3],[1,-3],[-1,-6],[-1,-1],[-8,1],[-10,-8],[-4,1],[-3,11],[0,8],[2,8],[3,5],[3,3],[4,-1],[4,-4],[4,-5],[3,-6]],[[83716,54026],[6,-3],[5,-8],[2,-10],[-2,-13],[-3,-3],[-3,0],[-2,-2],[-1,-7],[0,-10],[-1,0],[-10,-3],[-2,-1],[-3,-5],[-8,-18],[-2,-4],[-4,0],[-2,3],[-3,5],[-2,8],[-1,7],[1,6],[-1,5],[-6,16],[-11,-1],[-23,-22],[-5,-7],[-2,-2],[-2,0],[-2,3],[-4,11],[-1,2],[-11,5],[-3,-2],[-10,-14],[-5,-6],[-3,-1],[-3,2],[-2,3],[0,4],[0,3],[0,3],[-2,2],[-3,2],[-2,2],[-4,13],[-1,11],[1,10],[3,12],[5,10],[10,9],[8,12],[6,1],[3,3],[6,18],[2,4],[3,1],[10,-1],[5,1],[5,-1],[3,-2],[6,-8],[4,-2],[5,-6],[6,-30],[5,-9],[5,3],[4,8],[6,5],[12,-11],[6,-1],[12,0]],[[83785,54412],[0,-40],[-2,-13],[-2,-4],[-1,5],[-1,13],[-2,9],[-3,8],[-2,7],[2,3],[3,5],[2,11],[3,5],[3,-9]],[[83637,56922],[0,-13],[-4,-19],[1,-11],[-6,-3],[-8,1],[-5,9],[2,18],[2,3],[10,13],[5,10],[2,1],[1,-9]],[[83412,57535],[-1,-2],[-3,-1],[-1,-1],[-1,-4],[0,-4],[1,-3],[1,-4],[-2,-16],[0,-6],[1,-6],[2,-11],[1,-5],[-3,-5],[-4,12],[-5,29],[-9,37],[3,1],[12,11],[3,0],[2,-2],[2,-4],[1,-5],[0,-11]],[[83723,57613],[2,-9],[1,-10],[-1,-9],[-3,-7],[-5,-1],[-3,6],[-3,9],[0,10],[0,4],[1,12],[0,6],[-2,4],[-1,4],[2,6],[-1,5],[0,1],[2,-2],[11,-29]],[[83321,55729],[1,-2],[-1,0],[0,2]],[[83324,55729],[0,2],[1,-1],[0,-1],[-1,0]],[[83323,55733],[0,-1],[0,-1],[0,1],[-1,1],[1,0]],[[83324,55735],[0,1],[0,-2],[-1,0],[0,1],[1,1],[0,-1]],[[83811,58118],[-1,-1],[0,-1],[0,-2],[1,-3],[-1,-2],[-2,0],[-1,3],[-1,0],[-2,0],[-2,6],[-2,3],[0,3],[0,6],[2,7],[3,2],[4,-2],[1,0],[2,-4],[2,-7],[-1,-5],[-2,-3]],[[83635,58483],[-5,3],[-8,15],[0,4],[3,0],[1,-2],[3,1],[3,3],[2,-1],[2,-5],[0,-14],[-1,-4]],[[83870,62945],[-1,-1],[1,6],[0,-5]],[[83873,62975],[1,4],[1,-3],[-1,-7],[-1,6]],[[83286,53325],[6,-8],[1,-6],[-2,-1],[-5,0],[-4,5],[-2,7],[6,3]],[[83287,53350],[-4,-1],[-6,11],[-3,15],[1,9],[3,4],[3,-3],[2,-5],[6,-6],[2,-10],[0,-8],[-2,-5],[-2,-1]],[[83276,53465],[-1,-1],[-1,-2],[-1,-4],[-3,-2],[-6,-4],[-2,5],[1,11],[5,21],[4,7],[4,6],[3,-1],[-1,-8],[1,-7],[1,-6],[0,-8],[-1,-7],[-2,-2],[-1,2]],[[84838,53683],[1,-3],[0,-8],[0,-17],[-1,-6],[-2,0],[-4,2],[-5,-1],[-5,-2],[-3,3],[-2,5],[-3,4],[0,3],[2,5],[5,13],[5,5],[8,0],[4,-3]],[[83571,53848],[6,-6],[1,-5],[-3,-2],[-4,-4],[-5,-4],[-6,-1],[-3,-2],[-2,2],[-1,7],[3,10],[7,6],[4,0],[3,-1]],[[83584,53880],[3,-3],[4,-12],[-2,-13],[-4,-7],[-5,6],[0,19],[4,10]],[[84400,56180],[5,-7],[2,-6],[-2,-7],[-5,-12],[-11,-17],[-5,-4],[-6,-2],[-4,3],[-3,15],[-3,4],[0,3],[3,1],[3,3],[1,4],[4,5],[4,6],[11,9],[6,2]],[[84612,56475],[-3,-10],[0,-9],[1,-8],[-3,-5],[-3,2],[-5,-2],[-3,-10],[-2,-5],[-3,4],[-1,6],[0,5],[-1,7],[0,8],[1,3],[2,-1],[2,0],[2,4],[1,3],[1,-1],[3,1],[4,6],[1,3],[2,2],[4,1],[0,-4]],[[83742,57497],[10,-6],[4,-6],[-2,-5],[-6,-6],[-6,0],[-5,3],[-3,2],[-2,1],[-1,1],[-1,3],[-1,-1],[-3,-3],[-1,2],[1,5],[3,7],[4,4],[3,0],[6,-1]],[[84501,57624],[6,-4],[0,-6],[-5,-2],[-3,-5],[-6,-7],[-4,-1],[-4,3],[-1,6],[2,7],[4,6],[4,3],[7,0]],[[83642,57693],[4,-13],[1,-6],[-1,-3],[-3,-1],[-3,2],[-2,5],[-3,2],[-1,6],[-2,8],[-2,8],[-5,6],[-4,18],[6,16],[8,-7],[2,-13],[3,-20],[1,-4],[1,-3],[0,-1]],[[84490,57812],[-5,10],[-3,13],[-1,13],[0,7],[2,-1],[5,-8],[5,-14],[1,-15],[-4,-5]],[[84485,58278],[-4,2],[-6,0],[-4,2],[-8,7],[-1,4],[5,4],[8,6],[3,4],[4,0],[11,-6],[6,-6],[3,-11],[0,-10],[-4,-3],[-9,5],[-4,2]],[[84468,58323],[-4,-4],[-2,-2],[-1,-3],[-2,-6],[-3,-5],[-1,-1],[-4,-2],[-3,1],[-5,3],[-6,4],[-5,1],[-5,4],[-5,9],[-2,7],[0,5],[-1,3],[0,2],[1,1],[13,-1],[7,-7],[2,2],[2,1],[4,0],[0,-1],[1,0],[2,-6],[2,-2],[1,2],[0,3],[1,2],[2,1],[2,-2],[4,-2],[4,-3],[0,-3],[1,-1]],[[84413,58331],[2,-9],[2,-8],[-1,-4],[-5,-5],[-3,-1],[-2,9],[-2,4],[-3,12],[-1,7],[2,10],[0,11],[-1,7],[-3,9],[1,2],[3,3],[2,0],[12,-8],[2,-3],[2,-2],[2,-1],[0,-6],[-7,-16],[-2,-11]],[[84388,58385],[-7,15],[-1,7],[5,-2],[4,-5],[5,-6],[2,-5],[1,0],[3,0],[1,-3],[-3,-7],[-4,-2],[-6,8]],[[84002,59191],[2,-4],[1,-9],[-6,-11],[-7,-3],[-6,-1],[-9,2],[-1,10],[7,8],[6,4],[5,5],[4,2],[4,-3]],[[83334,60104],[1,-8],[1,-8],[-2,-5],[-3,-2],[-4,6],[-1,5],[-6,9],[-5,15],[-3,4],[-1,5],[1,6],[5,9],[3,2],[2,1],[0,3],[1,3],[2,4],[3,-1],[2,-3],[1,-4],[1,-4],[2,-11],[0,-26]],[[72743,54670],[0,-10],[3,-21],[1,-12],[-2,-24],[-13,-94],[-1,-9],[0,-13],[-1,-11],[-4,-16],[-1,-8],[-1,-10],[-6,-18],[-2,-8],[2,-14],[-3,-18],[-26,-87],[-9,-19],[-16,-24],[-6,-4],[-7,-8],[-51,-86],[-10,-11],[-34,-26],[0,9],[-2,4],[-1,-1],[-2,-1],[-1,-4],[0,-10],[-2,-4],[-2,-1],[-3,-3],[-6,-8],[-6,-6],[-29,-13],[-14,-10],[-16,-6],[-7,-6],[-4,-12],[-7,3],[-5,-4],[-3,-2],[-10,-17],[-11,-17],[-5,-12],[-11,1],[-5,-1],[-4,-3],[-4,-5],[-6,-10],[-2,-1],[-2,-1],[-5,4],[-5,5],[-3,2],[-2,1],[-16,-4],[-4,2],[-3,5],[-1,6],[-1,4],[-1,3],[-5,-6],[-4,-1],[-8,3],[-1,0],[-2,1],[-1,3],[-1,3],[-2,1],[-1,-1],[-1,-2],[-1,-1],[-2,0],[0,1],[-1,0],[-1,6],[-1,1],[-1,0],[-2,2],[-11,9],[-5,2],[-4,1],[-6,11],[-1,1],[-3,3],[-2,-5],[-5,9],[-23,51],[-2,3],[0,1],[0,2],[-1,2],[0,5],[0,3],[-1,2],[-3,7],[-13,58],[0,5],[0,5],[0,5],[0,3],[-3,10],[-2,28],[-5,19],[-3,28],[-2,10],[0,1],[-1,2],[-2,2],[0,3],[0,4],[1,1],[2,-1],[-2,32],[0,2],[-6,32],[-24,129],[-3,45],[-1,4],[0,43],[1,1],[2,14],[1,7],[0,7],[-13,100],[2,15],[-1,-9],[2,-6],[1,-4],[1,-5],[3,-20],[1,-5],[2,0],[0,6],[1,2],[1,0],[0,18],[-1,8],[-1,7],[-1,2],[-4,1],[-2,3],[0,1],[-1,4],[1,4],[1,5],[0,4],[-13,211],[-2,8],[1,3],[1,0],[2,-3],[0,10],[2,12],[0,6],[1,6],[-2,9],[-2,8],[-1,5],[0,6],[0,21],[-6,67],[-1,7],[-3,15],[-3,31],[-5,24],[-7,67],[0,19],[1,-2],[1,0],[0,-2],[1,11],[-1,35],[-2,10],[5,6],[4,12],[3,14],[2,11],[1,7],[8,28],[0,-1],[-4,-20],[-5,-20],[1,-5],[0,-1],[2,-4],[3,-3],[3,0],[-3,-16],[-2,-12],[-2,-2],[-1,0],[-1,-2],[0,-6],[0,-14],[0,-4],[-5,-32],[0,-6],[0,-12],[5,-12],[2,-3],[-6,-25],[9,-13],[13,-3],[6,10],[-1,11],[-2,8],[-1,3],[-1,3],[-2,6],[-3,4],[-1,7],[9,37],[0,7],[-1,5],[-1,4],[-1,5],[-1,7],[1,12],[0,5],[0,1],[-1,5],[-1,1],[0,1],[-1,2],[1,7],[1,5],[4,10],[0,7],[1,12],[3,25],[2,58],[2,6],[2,4],[1,4],[1,8],[0,25],[1,12],[4,8],[5,6],[3,8],[1,3],[3,19],[0,1],[1,5],[2,12],[3,58],[-7,36],[1,7],[0,42],[-1,14],[0,7],[-2,5],[-1,6],[3,3],[3,2],[3,1],[16,31],[8,9],[4,6],[2,15],[3,14],[2,21],[9,49],[0,3],[1,7],[2,14],[0,34],[0,6],[0,3],[-3,1],[-8,9],[-3,6],[-2,11],[0,2],[-2,14],[0,7],[4,8],[6,6],[7,5],[5,2],[3,2],[6,18],[0,1],[1,1],[3,3],[2,2],[3,1],[-2,10],[-2,5],[-2,4],[-4,9],[-5,8],[-21,26],[-4,11],[9,-1],[9,-7],[16,-21],[16,-8],[5,-6],[6,-12],[2,-6],[-4,-4],[1,-4],[1,-4],[-2,-4],[6,-8],[14,7],[25,21],[7,-2],[15,-8],[17,-17],[13,-5],[-19,27],[-6,7],[-6,2],[-1,1],[-1,1],[-5,8],[-2,2],[-1,1],[-3,0],[-3,-1],[-2,-1],[-1,-1],[0,-3],[-1,-1],[-4,6],[-1,1],[-10,-1],[-2,2],[-20,36],[-8,11],[-3,3],[-15,13],[-5,7],[-3,0],[0,-15],[2,-4],[3,-5],[2,-6],[-2,-7],[-2,-1],[-2,2],[-2,3],[-5,6],[-10,19],[-6,5],[3,-7],[5,-10],[3,-7],[-7,3],[-6,6],[-14,15],[-10,18],[-7,5],[0,1],[-3,3],[-2,2],[0,-4],[-3,4],[-1,6],[-1,7],[-1,7],[-2,7],[-1,3],[-3,8],[-2,7],[6,6],[11,21],[5,5],[22,-4],[11,3],[4,-1],[2,-8],[0,-13],[1,-4],[2,-2],[2,0],[7,-4],[1,-2],[2,-5],[3,0],[2,2],[1,1],[1,0],[1,0],[2,-2],[1,-2],[8,-17],[25,-57],[8,-11],[20,-20],[1,0],[0,4],[-10,11],[-25,42],[-20,49],[-10,11],[-16,8],[-4,7],[-1,9],[6,5],[2,1],[6,2],[12,1],[5,-2],[4,-6],[2,-19],[3,-8],[36,-91],[6,-8],[11,-13],[76,-131],[1,-1],[2,-7],[3,-9],[6,-11],[3,-11],[-3,-4],[-2,2],[0,1],[-3,7],[-2,2],[-5,2],[-2,-1],[1,-5],[1,-2],[14,-28],[6,-7],[-3,8],[-1,7],[1,4],[4,2],[1,-2],[3,-19],[3,-11],[11,-44],[-3,1],[-5,5],[-4,0],[-2,-8],[2,-3],[5,-1],[4,-6],[1,-13],[2,0],[0,3],[1,2],[1,1],[2,2],[1,-12],[0,-2],[4,-19],[5,-17],[6,-7],[0,-1],[1,-1],[0,-4],[-2,-4],[-2,-2],[-1,2],[-3,10],[-3,4],[-8,4],[-4,4],[2,-6],[1,-3],[10,-20],[0,-11],[3,-5],[-3,-6],[-2,-7],[4,-7],[5,1],[4,7],[2,11],[2,10],[10,-26],[9,-32],[4,-8],[5,-3],[4,-7],[6,-31],[2,-3],[1,-4],[7,-6],[3,-16],[4,-31],[1,6],[1,2],[1,-1],[3,-3],[-1,-5],[8,-18],[3,-9],[0,-11],[-2,-4],[-3,-3],[-3,-6],[2,1],[2,1],[1,1],[1,1],[6,-28],[1,-14],[-7,-3],[1,10],[-2,7],[-3,2],[-2,-11],[1,-8],[2,-5],[1,-6],[-2,-9],[-2,2],[-3,5],[-5,7],[-5,2],[-4,-4],[-4,-10],[1,-6],[5,2],[6,10],[4,-9],[3,-11],[4,-9],[7,-4],[12,1],[5,6],[-3,14],[7,7],[3,2],[3,-1],[3,-4],[4,-7],[2,-8],[2,-24],[4,-30],[0,-8],[0,-8],[-3,5],[-4,16],[-3,3],[0,-4],[1,-19],[0,-2],[2,-7],[2,-2],[1,-2],[4,0],[3,-3],[2,-22],[2,-16],[0,-3],[1,-9],[1,-6],[6,-42],[2,-27],[-5,-15],[-3,25],[0,3],[-5,25],[-2,0],[0,-19],[0,-6],[0,-1],[0,-3],[0,-4],[1,-2],[3,-2],[0,-1],[2,-13],[5,-7],[5,0],[2,13],[1,0],[2,-7],[1,-2],[2,-21],[2,-8],[3,-7],[2,-7],[4,-17],[1,3],[2,3],[1,2],[1,-5],[-1,-3],[0,-2],[1,-2],[0,-1],[0,-3],[2,3],[3,3],[1,2],[1,-3],[0,-4],[0,-5],[-1,-5],[0,-4],[0,-3],[2,-8],[3,-6],[3,-3],[2,-8],[-2,0],[0,-1],[-1,-1],[-1,-1],[-1,-7],[-1,-6],[3,-20],[2,-5],[4,-9],[6,2],[2,0],[2,-12],[2,-8],[1,-2],[12,-27],[4,-13],[0,-11],[-6,-4],[-3,4],[-6,18],[-4,7],[-5,3],[-3,0],[-3,-7],[-2,-13],[3,-3],[3,-1],[3,2],[2,6],[3,-2],[3,-3],[1,-3],[1,-2],[0,-6],[3,-8],[4,-7],[3,-7],[3,-11],[-2,-3],[0,-3],[1,-5],[1,-5],[2,4],[-1,8],[3,-2],[6,-10],[2,-5],[5,-27],[0,-2],[-2,-15],[0,-1],[0,-1],[2,-5],[0,-3],[-1,-4],[-2,-3],[-1,-4],[1,-5],[1,-4],[1,-3],[1,-3],[2,-4],[-3,-5],[0,-2],[0,-2],[3,-1],[2,6],[2,0],[2,-24],[0,-9],[2,0],[0,9],[1,8],[1,7],[1,5],[0,4],[0,1],[0,4],[0,1],[2,-1],[2,-5],[1,-5],[1,-12],[4,-15],[7,-50],[-1,-139]],[[72704,55006],[0,7],[-1,4],[-1,6],[-1,6],[0,6],[1,6],[0,5],[-1,7],[3,-7],[4,-17],[2,-8],[1,-3],[2,-15],[7,-23],[3,-10],[5,-52],[0,-12],[-4,-7],[-4,6],[-1,3],[-1,1],[0,3],[0,3],[0,1],[1,38],[-1,13],[-3,5],[-1,5],[-10,29]],[[72142,55844],[-3,3],[-1,6],[0,5],[4,3],[13,0],[5,-3],[6,-3],[12,-10],[11,-14],[9,-19],[-4,2],[-8,8],[-5,2],[7,-17],[6,-14],[2,-9],[-6,2],[-5,7],[-3,7],[-2,4],[-3,3],[-11,22],[-6,5],[-5,5],[-5,3],[-2,1],[-6,1]],[[72147,56096],[-2,-5],[-3,-4],[-7,-1],[-6,5],[-3,7],[0,24],[1,6],[2,0],[1,-5],[2,-7],[4,-3],[6,-1],[2,-2],[3,-14]],[[72193,56165],[-5,7],[-4,13],[-7,29],[3,10],[1,13],[2,10],[6,3],[3,-2],[0,-5],[-1,-7],[0,-8],[0,-8],[0,-6],[0,-1],[0,-1],[1,-5],[2,-3],[1,-2],[1,-1],[5,1],[1,-2],[0,-9],[1,-4],[3,-4],[5,-4],[3,-4],[0,-1],[1,-5],[-2,-4],[-3,0],[-4,3],[-3,3],[-2,1],[-5,-6],[-3,-1]],[[30894,57634],[10,-21],[1,-5],[-2,-4],[-6,-2],[-7,-1],[-6,1],[-7,7],[-14,21],[-15,9],[-9,11],[-8,14],[-4,13],[-2,12],[-4,4],[-5,1],[-5,3],[-4,9],[-8,30],[-3,4],[-4,5],[-3,5],[-2,8],[1,21],[0,12],[-3,10],[2,5],[1,2],[2,0],[1,-3],[12,-11],[5,-6],[5,-10],[3,-11],[3,-27],[3,-12],[10,-20],[12,-13],[35,-17],[4,-6],[1,-7],[1,-12],[2,-7],[7,-12]],[[30556,57918],[17,-27],[3,-7],[3,-13],[10,-26],[0,-16],[-3,-5],[-5,0],[-6,5],[-5,8],[6,0],[0,4],[-9,10],[-19,35],[-6,5],[-3,3],[-1,6],[0,6],[3,10],[1,6],[-1,10],[-2,8],[-1,7],[4,4],[11,-28],[3,-5]],[[29722,63174],[-9,-10],[-3,-6],[-3,0],[0,6],[0,7],[-2,12],[-3,11],[-1,12],[3,5],[6,4],[5,6],[5,12],[4,6],[3,-3],[3,-9],[3,-5],[6,-6],[5,-5],[3,-6],[-1,-12],[-6,-6],[-10,-3],[-5,-9],[-3,-1]],[[29683,63714],[-5,2],[-2,4],[0,6],[6,7],[-2,5],[0,2],[2,6],[1,8],[-1,6],[0,6],[3,5],[5,-13],[2,-3],[5,-1],[0,1],[1,3],[3,3],[1,1],[2,0],[5,-3],[2,-1],[7,-5],[14,-19],[7,-1],[-2,4],[-2,9],[9,-9],[5,-2],[3,3],[4,-7],[4,-4],[5,-1],[7,0],[2,-2],[2,-4],[3,-9],[3,-3],[6,0],[2,-3],[2,-10],[-1,-12],[-3,-10],[-5,-4],[-5,3],[-13,25],[-5,9],[-5,5],[-5,2],[-7,1],[-3,-1],[-4,-3],[-2,-1],[-3,1],[-2,3],[-2,3],[-2,2],[-6,-3],[-11,-11],[-7,-3],[-2,1],[-2,3],[-2,3],[-1,1],[-11,5]],[[29592,63846],[-2,0],[-12,7],[-5,3],[-6,2],[0,3],[5,1],[4,1],[7,-3],[6,-6],[3,-8]],[[29542,62943],[1,11],[-4,8],[-3,6],[0,6],[10,-9],[6,4],[4,4],[4,5],[8,5],[2,12],[6,11],[3,11],[6,-3],[6,6],[8,0],[3,1],[2,2],[3,5],[4,11],[3,5],[1,-2],[1,-13],[5,-10],[5,-15],[8,-7],[17,-11],[6,8],[6,6],[14,7],[7,16],[5,23],[14,44],[4,11],[6,7],[6,-5],[2,-11],[-1,-13],[-5,-64],[-2,-16],[-18,-45],[-9,-52],[-6,-6],[-21,-18],[-12,4],[-3,-2],[-3,-3],[-5,-8],[-2,0],[0,5],[2,3],[-4,6],[-6,2],[-15,-17],[-9,1],[-17,-8],[-12,10],[-18,4],[-4,-2],[-4,-4],[-2,-5],[-1,-5],[-1,-5],[-2,1],[-3,4],[-4,9],[-1,6],[0,10],[-1,14],[-5,17],[0,3],[1,4],[8,2],[4,6],[2,13]],[[29365,63896],[-1,-16],[-8,-25],[-10,-23],[-9,-13],[3,25],[8,17],[9,15],[8,20]],[[29445,63888],[-1,4],[-4,12],[9,-5],[2,-3],[1,7],[2,5],[2,2],[3,-2],[1,3],[1,1],[1,0],[0,4],[-2,2],[-1,1],[-1,2],[-1,4],[14,0],[7,2],[7,6],[1,-3],[0,-2],[0,-1],[1,-2],[-6,-23],[-3,-6],[-1,6],[-1,5],[-1,3],[-3,2],[1,-8],[2,-8],[3,-4],[4,4],[1,-8],[3,-45],[1,-9],[4,-15],[-5,-2],[-2,-10],[-1,-13],[-1,-11],[-3,-7],[-4,-8],[-4,-7],[-4,-3],[-3,-5],[-9,-35],[-15,-24],[-2,-3],[-3,0],[-17,-14],[-7,-3],[-4,-7],[-7,-23],[-2,-4],[-8,-13],[-3,-3],[-6,-2],[-5,-5],[-9,-17],[0,5],[0,21],[1,6],[3,2],[11,-2],[3,2],[8,15],[0,4],[-3,4],[0,4],[6,6],[2,2],[-2,1],[-1,1],[-1,2],[0,4],[5,5],[9,9],[6,2],[1,2],[3,9],[4,5],[0,7],[-1,8],[0,6],[5,4],[8,1],[6,4],[3,9],[2,14],[3,7],[5,3],[6,2],[11,8],[7,14],[3,19],[-4,24],[-8,11],[-20,1],[-8,9],[-5,8],[1,2],[3,11],[2,3],[2,2],[2,2]],[[29364,63933],[-18,53],[1,1],[1,2],[0,2],[0,3],[3,0],[5,3],[2,1],[3,-2],[8,-10],[3,-2],[6,-1],[3,-1],[7,-13],[1,-5],[1,-10],[0,-5],[1,0],[4,0],[1,0],[0,-2],[2,-6],[5,-4],[10,-1],[6,-3],[-2,8],[6,-3],[17,-13],[-21,-37],[-1,5],[0,1],[-3,2],[0,10],[-5,-2],[-7,-4],[-21,10],[-2,5],[-5,10],[-2,-7],[-3,-6],[-3,-3],[-2,1],[2,13],[0,7],[-3,3]],[[29537,64144],[-25,-10],[-12,0],[-5,18],[21,-4],[15,3],[6,-3],[0,-4]],[[28985,64363],[9,-2],[12,-6],[10,-11],[5,-14],[-10,7],[-12,4],[-10,8],[-4,14]],[[28945,64410],[4,-19],[10,-15],[24,-17],[-4,-9],[-7,4],[-12,13],[-14,2],[-5,6],[2,12],[-5,7],[-5,10],[-5,5],[-4,-5],[-10,20],[-10,15],[-12,7],[-14,-2],[0,4],[8,5],[2,1],[-1,6],[-2,5],[1,3],[-3,4],[-3,7],[0,8],[2,6],[3,-1],[3,1],[2,3],[1,1],[3,-2],[1,-3],[2,-8],[3,-6],[4,-3],[4,-2],[6,0],[-1,-3],[0,-2],[-1,-2],[-2,-1],[19,-38],[13,-15],[3,-2]],[[29206,64079],[3,-6],[2,-15],[2,-18],[0,-23],[-1,-7],[-1,-2],[-4,2],[-1,4],[-2,20],[-1,-1],[-3,-3],[-2,15],[-8,28],[-3,25],[-2,8],[-10,22],[-3,6],[-3,3],[-32,13],[-7,8],[-3,6],[-20,25],[-4,3],[0,6],[2,5],[1,5],[3,5],[1,0],[3,-9],[8,-7],[3,-9],[-7,2],[-3,2],[2,-7],[3,-6],[3,-3],[4,0],[3,-4],[5,-9],[3,-3],[3,-1],[5,-1],[2,2],[-1,6],[-16,35],[-2,10],[1,16],[2,11],[3,10],[1,9],[0,14],[-2,16],[-3,14],[-4,9],[-1,-3],[-3,-5],[0,14],[-10,17],[0,14],[-4,1],[-3,3],[-2,4],[2,8],[-6,8],[-2,10],[-2,27],[-6,28],[-2,3],[-2,-2],[-2,-3],[-3,-2],[2,29],[-2,8],[-6,-9],[3,8],[1,3],[2,2],[-4,2],[-2,-4],[-2,-7],[-4,-4],[0,5],[3,5],[2,7],[2,9],[-1,11],[2,-1],[1,-2],[2,-2],[1,-3],[16,-53],[4,-5],[5,-11],[5,-14],[2,-11],[4,-40],[3,-10],[5,-11],[16,-63],[0,-6],[2,-5],[1,-13],[0,-26],[2,-29],[5,-17],[8,-11],[23,-18],[10,-16],[18,-39],[-1,-3],[-1,-6],[-1,-3]],[[29194,64509],[14,8],[10,0],[4,-3],[6,-9],[-3,-9],[-1,-8],[-3,-4],[-6,0],[0,-3],[2,-5],[-5,0],[-7,4],[-3,9],[-5,-5],[-9,0],[-5,-3],[-1,13],[1,8],[5,4],[6,3]],[[28798,64667],[-4,9],[-5,21],[-5,13],[-3,18],[-3,10],[-1,6],[0,8],[7,-9],[16,-72],[-2,-4]],[[29314,64696],[-2,-7],[-4,-24],[-1,-6],[-18,-4],[0,4],[5,12],[3,18],[1,21],[-1,18],[0,14],[3,9],[5,5],[5,4],[2,3],[1,3],[2,2],[2,-1],[4,-15],[1,-2],[0,-6],[3,-8],[1,-4],[-1,-5],[-1,-12],[-1,-5],[-11,-39],[-1,7],[1,6],[2,12]],[[28366,64793],[-3,-5],[-15,-14],[-5,-1],[-1,4],[-2,8],[0,8],[0,6],[3,1],[3,-2],[4,-1],[1,6],[3,2],[15,20],[1,2],[5,5],[3,2],[11,0],[-1,-6],[-2,-3],[-5,-3],[-2,0],[-1,2],[-1,1],[-3,-3],[-2,-6],[-3,-16],[-3,-7]],[[28355,64838],[-4,0],[-2,-5],[0,-8],[2,-8],[-4,2],[-7,-2],[-4,0],[-3,3],[-4,5],[-1,5],[4,4],[7,2],[7,7],[6,3],[3,-8]],[[28760,64809],[-5,0],[-3,3],[-12,30],[-3,8],[0,8],[5,-5],[2,-7],[2,-9],[3,-7],[3,-6],[3,-2],[3,-4],[2,-9]],[[28465,64643],[2,-8],[-1,-23],[1,-10],[-5,-21],[-3,-3],[-7,4],[1,-8],[5,-8],[1,-8],[0,-8],[-2,-9],[-2,-8],[-1,-4],[-9,-6],[-7,6],[-6,9],[-7,3],[5,-11],[0,-5],[-3,-8],[-2,0],[-4,13],[-9,4],[-17,-1],[9,8],[-1,11],[6,-1],[14,-10],[2,11],[3,8],[4,5],[15,14],[4,7],[0,6],[-5,4],[-5,-5],[-5,-9],[-4,-4],[-16,-20],[1,-2],[0,-2],[-6,1],[-7,19],[-6,4],[19,13],[9,11],[1,13],[-4,-9],[-5,-3],[-15,-1],[-4,-1],[-3,-3],[-3,-2],[-4,2],[-2,5],[-2,7],[-4,40],[0,15],[1,6],[-4,3],[0,6],[1,8],[0,8],[-3,7],[-4,4],[-2,4],[2,5],[0,4],[-6,7],[-17,13],[2,5],[2,4],[4,-5],[1,1],[1,5],[-1,2],[1,6],[-1,3],[0,2],[2,6],[3,2],[8,5],[3,5],[1,5],[2,15],[1,4],[9,2],[4,2],[2,5],[1,4],[1,4],[2,8],[4,6],[11,10],[4,8],[7,8],[3,-8],[2,-9],[2,-8],[4,-3],[1,-4],[-2,-7],[-17,-28],[-7,-7],[-9,-3],[0,-4],[5,-1],[2,-4],[-1,-5],[-5,-2],[-1,-3],[3,-5],[7,-9],[4,4],[2,-6],[-1,-11],[-5,-17],[0,-8],[-2,-6],[-4,-4],[5,-3],[5,8],[8,34],[6,13],[3,8],[1,12],[0,15],[1,14],[4,9],[5,-2],[4,-12],[4,-15],[3,-10],[3,-9],[2,-9],[1,-10],[1,-20],[1,-12],[0,-5],[0,-7],[-1,-11],[-1,-7],[1,-3],[4,-11],[1,-6],[-1,-7],[-2,-4],[-2,-3],[-1,-2],[-3,-3],[-6,0],[-5,-4],[-1,-15],[10,13],[5,5],[6,-2]],[[28398,64876],[-6,-7],[-3,2],[-2,6],[2,5],[6,6],[5,8],[5,4],[6,3],[5,-1],[1,-2],[3,-4],[1,-4],[0,-5],[-2,-4],[-3,2],[-3,4],[-2,2],[-5,-1],[-3,-2],[-5,-12]],[[29079,64812],[2,-9],[5,-34],[-13,8],[-6,1],[-6,-1],[-13,-5],[-4,-5],[-5,-8],[-7,-2],[-7,10],[-3,12],[6,6],[4,2],[6,6],[5,8],[3,8],[5,0],[3,16],[-2,19],[-5,10],[-8,3],[-6,9],[-15,47],[-2,17],[-5,15],[-2,8],[-1,19],[-5,14],[-7,9],[-9,1],[1,6],[0,7],[-1,8],[0,7],[-2,7],[-1,3],[-2,2],[-13,21],[-8,8],[-3,4],[-2,5],[0,4],[1,5],[6,14],[2,1],[4,-1],[2,-2],[8,-14],[7,-6],[3,-3],[3,-7],[3,-38],[1,-11],[3,-6],[4,-8],[4,-10],[4,-18],[8,-28],[15,-44],[5,-8],[11,-11],[5,-9],[7,-28],[2,-4],[3,-4],[12,-26]],[[28478,65270],[-5,5],[-5,1],[-5,-1],[-4,1],[-4,10],[3,12],[6,9],[7,6],[4,1],[9,7],[4,1],[12,-1],[12,4],[4,0],[4,-3],[7,-8],[11,-5],[-3,-7],[-30,-26],[-6,0],[-9,8],[-2,-5],[-3,-7],[-4,-5],[-3,3]],[[28235,65073],[3,4],[2,4],[0,6],[-2,6],[4,11],[5,-1],[3,-7],[2,-13],[0,-10],[-1,-9],[-2,-8],[-3,-7],[-5,-7],[0,-1],[0,-6],[1,-6],[2,-2],[8,10],[4,2],[2,5],[0,13],[5,-5],[0,-11],[-1,-12],[0,-11],[5,-5],[3,7],[0,13],[-1,12],[3,-3],[3,-3],[2,-2],[1,4],[0,8],[-2,6],[-3,5],[-2,5],[0,3],[0,9],[0,4],[-2,4],[-4,8],[-2,4],[-1,9],[-1,9],[-1,6],[-4,-3],[3,-5],[1,-9],[-1,-23],[-2,6],[-2,10],[-2,9],[-4,4],[0,4],[0,10],[3,18],[4,9],[6,9],[4,12],[-1,15],[3,3],[7,3],[2,4],[1,7],[3,15],[1,8],[3,0],[-1,5],[-2,6],[-2,5],[1,5],[1,8],[3,8],[2,4],[2,7],[0,17],[-3,26],[-3,19],[-6,25],[-3,22],[3,13],[4,0],[11,-4],[4,-3],[3,-6],[2,-7],[2,-5],[5,-3],[4,4],[4,6],[5,4],[4,-4],[4,-5],[4,-4],[3,-5],[3,-8],[-4,-9],[0,-11],[2,-9],[4,-7],[-3,-24],[-1,-14],[1,-7],[6,-1],[4,-5],[3,-9],[17,-82],[13,-35],[4,-10],[5,-4],[3,-4],[10,-20],[3,-9],[0,-10],[0,-15],[-1,-13],[-2,-8],[-1,-12],[2,-14],[6,-25],[1,-21],[-2,-15],[-7,-10],[-10,-3],[-5,-2],[-2,-6],[-3,-7],[-3,-5],[-8,-2],[-2,-5],[3,-13],[-3,-7],[-11,-13],[-5,-3],[-9,-1],[-4,-3],[-10,-15],[-2,-5],[1,-5],[1,-5],[0,-4],[-2,-4],[-3,-2],[-2,2],[-3,4],[-1,4],[-4,16],[-1,20],[-3,18],[-7,7],[-8,7],[-2,18],[2,40],[-5,-8],[-4,-8],[-4,-6],[-7,-2],[-6,2],[-35,39],[-16,30],[-6,12],[-3,14],[4,1],[5,6],[6,6],[2,5],[1,8],[2,0],[3,-4],[2,-2]],[[28844,65373],[8,-10],[4,-9],[1,-11],[-2,-50],[-1,-10],[-1,-5],[-1,-6],[-2,-4],[-3,-2],[-1,-2],[-1,-11],[1,-11],[3,-15],[2,-10],[-2,-28],[-1,-12],[-7,-21],[-1,-8],[-1,-41],[1,-23],[4,-19],[-9,8],[-5,19],[-3,21],[-4,17],[-5,6],[-12,10],[-5,6],[-6,13],[1,6],[4,1],[28,-9],[2,1],[1,4],[1,5],[1,4],[5,8],[1,6],[1,8],[0,14],[-2,-4],[-4,-9],[-3,-5],[-1,6],[0,15],[2,27],[2,10],[1,3],[1,4],[8,14],[2,4],[2,34],[0,13],[-5,27],[-9,14],[-10,10],[-9,14],[-23,65],[-7,11],[-10,8],[-22,9],[-12,11],[-17,31],[-11,7],[-6,1],[-11,5],[-5,2],[-6,-3],[-10,-11],[-4,2],[7,14],[4,23],[4,44],[-2,0],[10,0],[4,-1],[3,-3],[-3,-9],[-1,-9],[0,-11],[0,-12],[5,11],[3,-5],[2,-12],[3,-6],[5,-3],[35,-53],[11,-11],[12,-6],[13,-1],[5,-2],[4,-7],[15,-39],[16,-32],[18,-25]],[[28383,65694],[-3,1],[-4,8],[-4,15],[-6,12],[-2,8],[2,5],[4,-2],[2,-6],[11,-36],[0,-5]],[[28461,66049],[-1,-5],[-8,-18],[1,14],[-1,8],[-2,8],[0,11],[2,-3],[8,-12],[1,-3]],[[28169,66185],[-5,-6],[-6,-6],[-5,-7],[-2,-4],[-6,-1],[-3,-2],[-11,2],[-11,7],[-7,13],[-12,14],[-29,58],[-13,21],[-3,9],[3,0],[2,-2],[2,-2],[2,-4],[36,-44],[8,-22],[6,2],[4,2],[9,-8],[7,0],[6,6],[6,7],[3,4],[4,4],[2,2],[1,5],[3,6],[1,7],[4,7],[4,13],[5,6],[-1,7],[-7,8],[-11,4],[2,7],[7,17],[2,7],[2,25],[5,-7],[5,-12],[4,-12],[1,-11],[6,-6],[22,-17],[6,3],[13,-6],[14,-5],[9,-1],[4,11],[6,5],[8,-7],[6,-2],[10,8],[13,-4],[9,6],[9,7],[5,2],[18,0],[4,4],[3,6],[2,8],[2,7],[5,3],[0,-11],[-1,-12],[-1,-12],[5,-21],[0,-11],[-2,-10],[-5,-4],[-2,1],[-5,8],[-3,3],[-3,1],[-18,-2],[-17,-7],[-38,-15],[-15,0],[-59,-28],[-5,-2],[-5,-3],[-8,-14],[-6,-3]],[[28385,66404],[-5,2],[-22,-3],[-9,-7],[-6,0],[1,2],[1,1],[2,1],[10,13],[13,4],[26,-1],[25,-11],[15,-2],[6,9],[15,-13],[12,-17],[51,-95],[6,-7],[6,-4],[9,-1],[-2,-7],[-4,-2],[-9,0],[4,-16],[6,-13],[7,-8],[17,-6],[8,-7],[13,-19],[10,-11],[3,-5],[3,-8],[2,-11],[0,-9],[-4,-5],[0,-4],[-1,-26],[1,-10],[3,-6],[4,-4],[4,-2],[-4,-14],[0,-4],[1,-7],[1,-4],[1,-3],[1,-3],[0,-5],[1,-2],[-1,-2],[-2,-5],[-2,-4],[-3,-2],[-5,-2],[1,3],[1,9],[-9,-2],[-8,-10],[-8,-13],[-6,-13],[-3,-15],[-2,-45],[0,-12],[-3,-33],[2,-48],[-1,-42],[-10,-19],[-7,8],[-7,16],[-4,19],[-2,12],[-5,8],[-20,8],[-6,15],[5,0],[5,3],[4,6],[3,15],[4,2],[4,1],[3,3],[10,22],[7,11],[7,6],[-2,4],[-1,5],[-1,6],[0,7],[-1,4],[-2,4],[-2,4],[-1,6],[2,7],[2,5],[3,6],[1,8],[0,16],[-1,8],[-5,9],[9,25],[0,5],[-3,7],[0,42],[4,0],[3,4],[2,5],[2,7],[1,3],[-1,12],[1,4],[2,2],[2,2],[1,2],[3,9],[1,11],[-2,8],[-10,5],[-6,6],[-26,7],[-5,6],[-3,10],[-3,15],[1,3],[0,5],[0,5],[-4,8],[-1,7],[-1,3],[-1,1],[-2,-3],[-1,-3],[-2,-1],[-5,1],[-5,3],[-2,6],[2,9],[-5,20],[-12,41],[-8,17],[-5,6],[-6,5],[-6,0],[-5,-5],[-5,-4],[-6,3],[-17,10],[-5,1],[-11,0],[-3,2],[-8,10],[-5,4]],[[27912,64384],[0,-1],[-6,8],[0,2],[6,-9]],[[27899,64414],[3,-7],[-1,-1],[-11,25],[2,-2],[7,-15]],[[27981,65594],[1,-6],[-1,6]],[[27975,65606],[0,2],[3,-6],[0,-3],[-3,7]],[[28966,63618],[1,-4],[1,-7],[-2,-5],[-4,0],[-2,5],[-2,8],[0,5],[1,0],[2,-1],[2,-2],[-1,3],[-1,10],[1,2],[1,-4],[3,-10]],[[28959,63638],[-1,-1],[-1,2],[1,15],[1,-1],[0,-10],[0,-5]],[[28941,63718],[1,-3],[1,-7],[0,-4],[-2,5],[-2,9],[-1,9],[1,1],[1,-6],[1,-4]],[[29550,63854],[4,5],[3,-4],[-4,-15],[-5,-2],[2,16]],[[29136,64592],[1,-3],[0,-6],[-1,-8],[-2,-2],[-2,10],[2,8],[2,1]],[[28369,64888],[9,2],[1,0],[-1,-5],[-3,-8],[-5,-5],[-5,5],[0,8],[4,3]],[[28674,65002],[0,-4],[0,-8],[-2,-3],[-3,3],[-1,8],[0,10],[3,2],[2,-5],[1,-3]],[[28371,65517],[-4,0],[-3,0],[-5,0],[0,1],[2,3],[2,2],[2,0],[3,0],[4,0],[3,4],[3,6],[0,-1],[-1,-6],[-3,-7],[-3,-2]],[[27986,65734],[1,-7],[1,-12],[-1,-5],[-1,3],[-1,-2],[-4,-2],[0,5],[2,9],[-1,3],[-4,-7],[-2,-5],[-2,-4],[0,-8],[3,-5],[4,-3],[3,-5],[-1,-3],[-8,2],[-3,0],[-1,3],[1,9],[2,11],[3,12],[6,9],[3,2]],[[28543,66151],[2,-3],[0,-2],[0,-1],[0,1],[-1,0],[-1,-1],[1,-1],[-1,-1],[0,-7],[1,-7],[-2,-2],[-1,0],[-1,0],[-2,2],[-1,7],[-2,4],[-1,3],[0,3],[1,-1],[2,2],[1,3],[2,2],[3,-1]],[[28374,66223],[1,3],[3,5],[1,-2],[-3,-6],[0,-3],[0,-3],[-2,-4],[-1,-7],[-2,-5],[-1,0],[-1,2],[-1,2],[-3,9],[-2,5],[0,5],[1,2],[9,4],[1,-3],[-3,-6],[0,-2],[2,2],[1,2]],[[29872,63324],[7,2],[0,-17],[-5,-21],[-8,-9],[0,4],[3,6],[2,11],[1,12],[0,12]],[[30136,63324],[-5,7],[-13,11],[-5,11],[2,1],[1,1],[1,2],[0,3],[10,-12],[4,-4],[7,-4],[6,-4],[5,-9],[3,-12],[-2,-15],[-3,-2],[-4,8],[-7,18]],[[30054,63373],[-6,-1],[-3,3],[-2,10],[-1,6],[-1,22],[2,0],[3,-1],[2,-2],[5,-6],[2,0],[3,1],[2,1],[17,-5],[8,3],[4,1],[4,-4],[2,-7],[7,-29],[-5,3],[-3,8],[-2,10],[-3,7],[2,-13],[5,-21],[2,-11],[-3,-1],[-3,4],[-5,14],[-2,-6],[0,-3],[-2,0],[-4,16],[-7,5],[-18,-4]],[[29906,63381],[-1,7],[3,19],[0,10],[6,-6],[18,-32],[3,-3],[6,0],[5,2],[4,3],[4,7],[2,6],[3,2],[6,-7],[0,-4],[-7,-15],[-2,-5],[-2,8],[0,4],[-8,-8],[1,-1],[1,0],[1,-1],[1,-2],[-4,-5],[-7,2],[-4,-2],[0,9],[-11,-18],[-5,-1],[-3,15],[1,0],[2,-5],[3,-3],[2,1],[-1,7],[-1,3],[-10,9],[1,-8],[-1,-6],[-2,-4],[-4,-3],[-1,4],[0,3],[0,2],[1,4],[0,-3],[1,0],[1,-1],[1,7],[3,13],[2,8],[-6,-9],[-2,-3]],[[29994,63442],[-2,5],[1,6],[0,5],[-3,4],[1,5],[2,3],[2,3],[2,1],[17,0],[1,0],[4,-3],[2,-1],[3,-2],[1,-5],[-1,-9],[3,-35],[4,-12],[8,-1],[-5,-9],[-5,2],[-4,7],[-4,3],[-2,2],[-3,3],[-4,6],[-1,5],[0,8],[4,14],[1,7],[-2,10],[-4,-5],[-7,-15],[-1,-5],[-3,-1],[-3,1],[-2,3]],[[30239,63210],[2,-9],[1,-15],[-2,-15],[-3,-9],[-2,11],[1,13],[1,13],[2,11]],[[30086,63084],[2,2],[2,2],[-1,-5],[-5,-5],[-1,1],[3,5]],[[30101,63095],[2,3],[0,-8],[-2,-9],[-2,5],[2,9]],[[30219,63108],[3,0],[2,-3],[-2,-8],[-4,-7],[-1,2],[1,11],[1,5]],[[30139,63243],[1,-3],[-1,-20],[1,-13],[-3,-8],[-4,-3],[-5,6],[0,10],[3,5],[3,-1],[2,3],[0,14],[2,10],[1,0]],[[29965,63412],[2,2],[0,-2],[-2,-4],[-2,0],[2,4]],[[29973,63429],[2,2],[1,-3],[0,-5],[-2,-3],[-2,-2],[-1,4],[2,7]],[[83862,65245],[-20,-46],[-3,-10],[-2,-14],[-2,-15],[-1,-16],[1,-15],[3,-32],[0,-8],[-2,-8],[1,-17],[3,-12],[7,-9],[8,-2],[0,-4],[-3,1],[-3,-1],[-3,-2],[-2,-3],[3,-10],[1,-13],[-1,-12],[-6,-7],[-1,-5],[1,-6],[2,-5],[1,-6],[-3,-5],[-7,-7],[-7,-17],[0,-6],[0,-15],[-1,-5],[-1,-5],[-1,-6],[-1,-13],[0,-4],[-1,-3],[-1,-2],[1,-4],[1,-2],[1,-3],[1,-3],[0,-2],[-2,-5],[-6,-12],[-6,-17],[-5,-8],[-2,-4],[1,-4],[-1,-3],[-7,-11],[-3,-5],[-3,-12],[-3,-25],[-7,-23],[-2,-9],[0,-9],[2,-11],[2,-5],[1,-2],[1,-3],[0,-6],[-1,-8],[-4,-12],[-1,-7],[0,-13],[-4,-33],[-6,-36],[-9,-82],[-5,-20],[-12,-133],[-4,-54],[-3,-10],[-7,-20],[-3,-10],[-2,-13],[-2,-23],[0,-21],[-1,-20],[-5,-21],[-2,-4],[-5,-7],[-2,-5],[-1,-5],[-2,-12],[-5,-17],[-3,-27],[-3,-13],[-10,-30],[-2,-6],[-14,-24],[-4,-8],[0,-6],[0,-13],[0,-6],[-1,-6],[-2,-7],[-5,-13],[-5,-9],[-17,-23],[-12,-24],[-3,-3],[-2,-6],[-5,-28],[-3,-10],[-9,-21],[-3,-13],[-2,-25],[-5,-35],[-10,-35],[-2,-12],[-1,-33],[0,-31],[1,-108],[-2,-15],[-3,-12],[-3,-5],[-4,-8],[0,-18],[1,-19],[0,-12],[-5,14],[-7,11],[-8,7],[-9,4],[0,-13],[-2,-5],[-4,1],[-4,7],[0,5],[1,14],[-6,20],[0,5],[0,4],[0,7],[0,22],[1,7],[3,7],[0,6],[-21,108],[-2,6],[-6,14],[-4,21],[-2,6],[-9,13],[-3,4],[-1,1],[-2,1],[-1,8],[0,3],[-5,6],[-10,10],[-5,6],[-5,9],[-3,3],[-3,3],[-1,-1],[-2,-1],[-3,0],[-13,21],[-13,36],[13,-32],[-1,15],[-3,8],[-1,7],[-6,13],[-10,17],[-3,9],[-2,10],[2,9],[2,9],[-2,12],[-3,12],[-5,16],[-5,21],[-1,9],[0,6],[2,8],[0,5],[-1,2],[-1,2],[-1,3],[-1,5],[-3,10],[-1,4],[-2,28],[-1,13],[-2,8],[-4,8],[5,7],[3,13],[-1,10],[-7,2],[-1,-4],[-1,-7],[-2,-5],[-4,0],[-1,5],[0,14],[-1,5],[-4,4],[-2,-4],[-2,-6],[-3,-2],[-3,5],[-1,8],[1,7],[1,5],[3,3],[4,1],[3,2],[1,6],[-1,3],[-10,5],[0,4],[8,0],[-1,6],[-4,7],[-3,7],[1,8],[2,3],[3,2],[2,5],[-1,9],[-2,6],[1,6],[2,8],[2,5],[0,5],[0,5],[4,18],[1,4],[3,1],[-4,5],[2,9],[4,0],[3,3],[2,-1],[-1,7],[-2,-3],[-2,1],[-3,0],[0,7],[3,11],[4,1],[5,0],[-4,21],[-4,17],[2,8],[0,4],[-3,3],[0,3],[2,5],[1,5],[4,11],[-9,-1],[0,18],[5,10],[0,34],[0,25],[3,21],[5,16],[1,20],[3,18],[1,6],[7,17],[1,6],[0,3],[6,9],[2,6],[2,15],[1,6],[8,14],[2,6],[3,16],[4,16],[6,33],[3,9],[3,7],[3,3],[2,2],[2,3],[0,6],[1,6],[6,8],[1,6],[1,21],[1,6],[3,5],[12,27],[0,2],[1,7],[3,5],[3,14],[3,25],[10,33],[3,20],[3,12],[14,30],[8,16],[2,9],[1,13],[2,12],[6,21],[2,13],[2,5],[7,4],[2,5],[1,5],[1,5],[5,9],[5,7],[6,3],[7,-3],[-1,12],[3,7],[4,8],[2,12],[1,3],[4,4],[1,11],[6,23],[2,6],[1,4],[0,3],[-1,4],[-1,4],[2,6],[2,4],[1,5],[1,8],[1,6],[2,6],[3,4],[2,2],[0,2],[1,6],[2,13],[2,6],[10,29],[7,17],[8,13],[19,12],[5,6],[4,6],[4,5],[10,7],[21,7],[12,4],[5,4],[7,11],[1,2],[3,0],[3,0],[4,-2],[2,-5],[1,-6],[2,-3],[3,3],[-3,11],[-7,12],[-3,4],[1,6],[2,3],[2,2],[1,2],[2,10],[3,12],[7,12],[11,10],[11,5],[12,-2],[4,-7],[11,-29],[4,-15],[1,1],[3,1],[3,1],[2,-1],[0,-2],[-1,-3],[-1,-3],[0,-5],[1,-2],[4,-6],[1,-2],[2,-3],[4,-3],[48,-23],[4,-4],[-2,-7],[0,-6],[0,-11],[3,-18],[3,-8],[2,-2],[7,2],[4,0],[4,-3],[4,-4],[3,-5],[-22,-21],[-6,-10]],[[83767,63525],[5,-8],[2,-5],[0,-5],[-6,-4],[-8,6],[-7,10],[-4,8],[1,5],[0,6],[-1,5],[-2,4],[21,0],[0,-4],[-1,-2],[-1,-5],[0,-6],[1,-5]],[[82886,64992],[8,3],[8,-13],[5,-26],[-1,-18],[-4,-9],[-8,9],[-5,3],[-8,-2],[-8,-9],[-4,-12],[-4,-4],[-4,4],[-3,0],[-2,2],[-1,5],[0,1],[2,6],[1,3],[0,4],[0,5],[-1,9],[-1,8],[-1,5],[2,1],[8,8],[11,-14],[7,2],[1,18],[2,11]],[[83235,64448],[5,-18],[1,-8],[-1,-6],[-2,4],[-2,3],[-3,1],[-4,-4],[-3,-1],[-2,-2],[-1,-3],[-1,-8],[-1,-2],[-5,-6],[-5,-1],[-5,3],[-5,10],[1,6],[3,-7],[5,-2],[4,3],[4,6],[-3,1],[-2,3],[-1,3],[-2,5],[-1,-2],[0,-1],[-1,-1],[0,8],[0,8],[2,0],[2,-1],[8,10],[5,3],[-1,-9],[-1,-3],[4,3],[4,-1],[2,0],[2,6]],[[83187,64448],[4,21],[3,7],[4,-8],[-2,-3],[-2,-7],[-3,-18],[0,-4],[1,-4],[-1,-3],[-3,-1],[-2,0],[-2,-1],[-1,-1],[-1,-2],[-4,0],[0,4],[2,3],[2,1],[2,0],[3,2],[0,4],[0,10]],[[83214,64462],[-1,7],[-2,6],[-5,9],[6,9],[4,-4],[3,-5],[1,-7],[-2,-4],[1,-8],[-2,-4],[-2,-2],[-1,3]],[[83738,63889],[-1,8],[0,2],[11,1],[1,-1],[1,-4],[-1,-8],[-1,-4],[0,-3],[0,-3],[0,-3],[-1,1],[-2,0],[-1,0],[0,1],[-3,2],[-3,11]],[[83339,64358],[14,29],[12,28],[2,2],[-9,-31],[-5,-9],[-3,-7],[-4,-8],[-3,-4],[-5,-8],[-3,-3],[4,11]],[[86050,69302],[2,-9],[2,-12],[1,-11],[-4,-5],[-3,-5],[-9,-31],[-4,-19],[-3,-4],[-6,-10],[-5,5],[-5,7],[-1,11],[5,4],[4,20],[8,18],[4,4],[6,4],[4,9],[2,12],[2,12]],[[86571,69703],[-1,-12],[5,-9],[4,-12],[-7,-9],[-3,-3],[-3,-1],[-2,-2],[-1,-5],[-2,-16],[-1,-14],[-1,-3],[-1,-1],[-3,-4],[-2,-12],[-4,-29],[-5,-21],[-3,-29],[-6,-37],[-9,-56],[-11,-63],[-3,-17],[1,-11],[-1,-7],[3,-15],[3,-10],[8,-5],[-1,-6],[-4,-9],[-1,-5],[-7,-66],[2,-18],[-9,-13],[-4,-8],[-1,-9],[-1,-1],[-3,-12],[-2,-5],[0,-8],[1,-3],[1,-3],[0,-2],[0,-13],[-1,-3],[-3,-7],[-1,-4],[-3,-28],[-1,-6],[-4,-9],[-1,-5],[0,-4],[-1,-4],[-2,-3],[-1,2],[-1,1],[-2,1],[2,4],[0,2],[0,2],[-11,-3],[-5,-1],[-5,4],[-1,5],[0,9],[0,6],[-2,4],[-5,11],[-2,5],[-1,0],[-2,1],[-6,-3],[-5,7],[-3,4],[-6,-1],[-6,-3],[-10,-8],[-4,-6],[-3,-8],[-5,-15],[-4,-23],[3,-5],[10,-5],[6,-4],[6,-6],[1,-7],[-1,-4],[-6,-8],[-2,-9],[5,-3],[9,7],[2,-5],[-20,-32],[-8,1],[-7,-4],[0,-12],[-3,-8],[-5,-18],[-3,-9],[-3,-6],[-4,-6],[-5,-5],[-5,-3],[-10,-7],[-7,-3],[-7,-2],[-8,-6],[-5,-7],[-2,-5],[-11,-6],[-9,-17],[-4,-8],[-6,-1],[2,39],[7,13],[11,12],[4,6],[6,39],[-3,10],[7,23],[3,19],[2,30],[-1,11],[-3,17],[-4,18],[-6,19],[-12,14],[-3,16],[3,25],[-3,11],[-16,5],[-5,5],[-2,2],[-4,4],[-2,7],[7,16],[6,6],[7,-3],[7,1],[7,-3],[3,-10],[-1,-16],[1,-4],[4,-2],[3,0],[3,2],[5,10],[6,19],[3,23],[-1,21],[-8,14],[-11,-1],[-14,10],[-12,-6],[-8,-20],[-1,-6],[-1,-15],[-1,-5],[-8,-16],[-2,-6],[-3,-20],[-4,-15],[-4,-17],[-3,-24],[0,-11],[1,-13],[8,-34],[4,-24],[3,-11],[4,-5],[4,-3],[5,-15],[11,-3],[0,-8],[-3,-20],[-1,-10],[-2,-12],[-5,-5],[-5,-4],[-5,-10],[-3,7],[-3,0],[-4,-2],[-4,-1],[-4,4],[-1,4],[0,9],[-3,13],[-3,9],[-12,13],[-43,3],[-6,-1],[-8,-5],[-7,1],[-3,9],[-1,11],[-1,8],[-3,13],[-4,7],[3,0],[5,-1],[0,7],[-3,10],[-7,14],[-9,12],[-6,6],[8,7],[2,1],[2,0],[4,-3],[2,0],[4,-3],[5,-12],[4,-6],[4,14],[14,24],[3,19],[3,9],[3,22],[2,19],[-3,15],[4,12],[0,11],[-3,10],[-8,16],[-11,30],[-3,5],[-13,15],[-5,3],[0,5],[-3,13],[3,22],[2,5],[9,-6],[4,-3],[-8,14],[-3,9],[5,16],[1,26],[-1,12],[-3,13],[-3,5],[-1,3],[-4,8],[-1,11],[4,5],[5,13],[0,15],[-7,12],[8,16],[11,8],[9,-20],[5,3],[6,8],[3,6],[1,4],[3,15],[0,1],[1,2],[2,2],[1,2],[0,8],[0,2],[20,40],[3,15],[1,3],[3,4],[1,3],[1,6],[-1,5],[0,5],[3,12],[2,1],[7,-13],[3,7],[0,7],[-1,17],[1,4],[7,18],[6,6],[3,15],[-1,15],[-5,9],[2,6],[4,2],[8,0],[-3,8],[-6,9],[-1,7],[2,5],[19,31],[5,10],[3,15],[-8,-1],[-45,-15],[-5,-4],[-3,4],[2,8],[5,7],[19,17],[6,10],[3,3],[5,-1],[4,3],[2,1],[3,0],[0,5],[-4,3],[-3,6],[-2,7],[0,6],[0,4],[1,4],[4,8],[1,3],[-1,3],[-1,2],[-1,4],[-3,12],[-21,31],[-13,24],[-8,9],[-2,10],[-2,39],[0,26],[-2,11],[1,8],[-1,3],[-1,2],[-2,1],[-1,0],[-2,1],[-5,8],[-2,4],[-2,7],[0,5],[0,3],[-8,2],[-6,3],[-4,0],[-3,0],[-9,18],[-5,5],[-6,-17],[-11,-14],[-8,-14],[-6,5],[1,-11],[4,-10],[4,-18],[12,-37],[5,-10],[-1,-12],[-4,-2],[0,-13],[-4,-8],[-7,-4],[-4,-8],[-4,-4],[-6,-5],[-2,-3],[4,-4],[3,-8],[6,-8],[7,0],[4,2],[14,18],[18,0],[9,-11],[3,-14],[6,-24],[0,-7],[1,-20],[-1,-5],[-5,-13],[-1,-8],[2,-9],[-5,-12],[-10,-10],[-10,0],[-3,-4],[0,-7],[-1,-4],[-5,-2],[-1,-7],[-3,-3],[-7,-1],[-4,-7],[-5,1],[2,6],[-1,9],[-4,4],[-2,5],[-5,4],[0,12],[0,14],[4,-2],[3,3],[4,7],[3,4],[3,5],[3,6],[3,6],[-1,11],[-3,3],[-3,3],[-1,4],[1,3],[1,6],[-3,5],[-9,2],[-2,-4],[-4,0],[-9,3],[-8,-6],[-4,-7],[-5,-8],[-6,-3],[-5,-4],[-6,-2],[-2,5],[0,6],[-1,1],[-3,-4],[2,-7],[-4,-10],[-7,-18],[-4,-10],[-2,-11],[-6,-8],[-5,-5],[-4,-1],[-1,-4],[-1,-10],[-7,-11],[-6,-8],[-1,-6],[-2,2],[-4,2],[-3,-4],[-3,-3],[-2,8],[5,6],[3,2],[4,3],[2,4],[3,15],[3,9],[3,9],[1,9],[-1,3],[-3,-3],[-2,4],[0,4],[3,2],[2,4],[3,2],[2,-6],[3,4],[4,14],[-10,-2],[0,8],[-5,22],[-3,5],[-3,2],[-1,4],[-1,7],[-1,7],[-5,2],[-3,-5],[-3,-2],[-3,12],[-7,8],[-3,9],[-2,9],[-1,6],[0,7],[-2,7],[-2,6],[-2,5],[-4,2],[-2,18],[0,13],[4,7],[2,8],[-1,8],[1,10],[2,3],[1,18],[5,14],[11,-8],[4,-12],[0,-1],[-1,-5],[1,-2],[2,3],[2,4],[1,-2],[1,-4],[-1,-4],[-4,-13],[-1,-9],[1,-8],[3,3],[4,13],[9,-4],[4,-9],[3,-9],[-2,-5],[0,-6],[0,-14],[0,-9],[-2,-5],[-2,6],[-2,14],[-2,0],[1,-21],[4,-6],[1,-10],[-4,-6],[6,-7],[2,-3],[2,-5],[3,-3],[1,-4],[2,2],[1,3],[4,4],[1,4],[3,9],[14,-9],[15,-11],[4,2],[-5,11],[-15,39],[0,17],[2,8],[3,14],[-1,12],[-9,12],[-9,16],[-8,-5],[-5,-7],[-3,0],[0,12],[-7,9],[-3,-4],[-3,-8],[-4,0],[-4,5],[-1,6],[-3,15],[2,0],[3,-2],[-1,11],[0,5],[4,3],[-1,5],[-3,0],[-5,-10],[-2,6],[0,8],[0,8],[-3,2],[0,-13],[-1,-13],[-1,-4],[-2,1],[-4,1],[-2,-7],[-2,-1],[-2,15],[6,2],[1,7],[-1,6],[-2,5],[-3,3],[-3,3],[1,5],[0,3],[-1,3],[-2,5],[-2,-3],[-3,-1],[-3,2],[-5,8],[-3,2],[-7,0],[-3,8],[3,18],[1,10],[2,3],[2,-1],[3,5],[-1,3],[-1,7],[-4,12],[2,16],[1,13],[3,6],[8,-12],[6,1],[8,22],[2,-5],[-1,-17],[7,-5],[12,7],[18,-10],[2,-10],[1,-16],[2,-6],[3,-5],[4,-3],[-1,8],[-2,13],[2,19],[3,11],[3,7],[-2,7],[2,4],[-15,17],[-5,11],[-3,6],[3,8],[2,8],[4,2],[5,-11],[1,-7],[2,-7],[4,-3],[3,3],[-2,8],[-6,15],[-2,19],[5,11],[-1,12],[5,-8],[5,-2],[6,7],[9,-9],[5,-12],[-1,-5],[-3,-8],[-1,-6],[3,-4],[3,6],[1,-6],[0,-6],[2,-5],[4,-3],[8,-2],[3,3],[3,6],[2,14],[3,6],[8,7],[5,3],[3,-2],[3,4],[1,2],[4,1],[4,3],[3,5],[2,8],[-4,-1],[-9,-3],[-2,1],[-1,9],[-2,1],[-4,1],[-1,3],[0,4],[2,5],[3,5],[2,1],[3,0],[3,2],[5,7],[-1,7],[2,7],[3,-1],[3,0],[2,1],[2,2],[2,4],[1,15],[4,-4],[3,-3],[1,-6],[-3,-5],[2,-10],[3,-4],[2,-2],[6,2],[1,-5],[-3,-9],[2,-3],[4,-4],[1,-1],[1,3],[2,0],[1,3],[3,8],[4,0],[8,-1],[4,4],[5,1],[2,7],[1,8],[1,12],[-1,5],[-1,6],[-5,-6],[-5,-8],[-4,-3],[-3,4],[-4,3],[-1,4],[-3,-2],[-4,5],[-1,10],[1,5],[3,-1],[2,-9],[3,-4],[6,-2],[12,9],[4,7],[4,8],[3,6],[5,3],[2,6],[4,9],[1,12],[-1,10],[-3,1],[-2,5],[0,7],[1,3],[3,2],[2,4],[2,4],[3,18],[2,-4],[3,1],[7,7],[2,5],[1,4],[2,2],[4,2],[13,-2],[6,1],[6,9],[8,22],[3,2],[3,1],[3,-1],[4,-3],[7,7],[10,0],[10,-3],[-2,-11],[4,3],[8,0],[2,-7],[3,-11],[4,-4],[5,2],[3,4],[5,11],[2,12],[8,12],[8,5],[3,-6],[-1,-12],[-2,-8],[-1,-3],[0,-4],[-3,-8],[3,-6],[-1,-8],[-4,0],[1,-5],[0,-5],[-1,-5],[-2,-3],[-4,-6],[-1,-8],[0,-2],[2,-2],[5,-2],[6,2],[-1,-20],[1,-4],[1,-15],[3,-12],[8,-26],[4,-17],[5,-11],[6,-7],[4,2],[8,-3],[11,-3],[9,-5],[10,-2],[8,-13],[11,-1],[12,-4],[14,4],[2,5],[10,16],[4,9],[2,12],[5,9],[6,5],[8,3],[6,0],[5,1],[5,-3],[5,-6],[6,1],[5,-1],[7,-15],[6,-22],[5,-15],[2,-11],[1,-13],[-3,-16],[2,-16],[-3,-13],[-5,-18],[-1,-14],[-2,-2],[-7,6],[-4,4],[-5,-4],[-1,-8],[0,-9],[-1,-8],[-7,-3],[-2,-2],[-1,-9],[-6,-2],[-5,0],[-3,3],[-4,9],[-7,-2],[-3,-14],[4,-39],[5,-8],[5,-3],[18,-1],[12,11],[12,-11],[3,10],[15,-10],[16,-6],[8,5],[10,10],[5,-2],[-6,-17],[-3,-13],[0,-9],[-2,-4],[-4,-3],[-5,-11],[-1,-10],[-5,-15],[9,-8],[7,9],[9,0],[3,-2],[-7,-9],[-5,-9],[-1,-7],[5,-5],[2,3],[5,-1],[2,-5],[4,-1],[1,7],[1,7],[2,1],[2,-10],[2,-5],[3,-4],[2,-1],[3,2],[1,4],[2,13],[5,-16],[-2,-8],[-7,-3],[-10,1],[-5,0],[-2,-11],[-4,-10],[-1,-17],[3,-4],[6,-10],[4,0],[2,-9],[3,2],[3,1],[2,-1],[1,-4],[2,-1],[4,3],[0,-3],[1,-3],[2,1],[3,9],[8,-3],[5,-2],[1,-6],[-5,2],[-6,-5],[-5,-2],[-9,-12],[-3,-9],[1,-4],[3,-2],[1,-4],[-3,-10],[-2,-4],[-3,-2],[-2,-4],[-3,-6],[4,-1],[8,2],[2,-3],[-2,-8],[-5,-7],[-5,-4],[-4,0],[-5,-9],[-13,3],[-2,-12],[0,-16],[-1,-2],[0,-3],[-1,-2],[-1,-2],[-1,-1],[-1,-10],[0,-9],[-2,-3],[-4,10],[-4,3],[-1,-8],[-5,-5],[-3,-11],[-4,-5],[-1,-3],[-1,-3],[0,-1],[1,-2],[0,-4],[-1,-7],[-5,-16],[-1,-3],[-4,-3],[-6,2],[-1,-3],[-2,-10],[-4,-18],[0,-7],[3,-7],[5,1],[2,-2],[5,-10],[-6,-11],[-6,-3],[-4,3],[-6,2]],[[87413,70503],[9,4],[5,3],[3,-3],[-5,-5],[-9,-7],[-10,-9],[-4,-8],[-9,-2],[-3,-10],[-8,-1],[-2,-16],[-7,-2],[-2,-10],[-23,-27],[-14,-10],[-8,-11],[3,-7],[-7,-13],[-1,-8],[-2,-4],[-3,-3],[-4,2],[-4,-4],[1,-10],[-1,-8],[-4,-7],[-7,-13],[-8,-28],[-8,-50],[-2,-22],[-3,-17],[0,-8],[-2,-16],[0,-13],[-4,-7],[-5,19],[-4,14],[-4,-2],[-6,3],[0,12],[-7,15],[-12,26],[-4,19],[-8,5],[-7,7],[-8,14],[-4,20],[-20,4],[-25,12],[-7,10],[-19,-5],[-18,-8],[-5,-8],[-12,-9],[-22,-19],[-4,-14],[1,-10],[-4,-7],[-7,-5],[-7,-2],[-4,-1],[-3,-1],[-2,-2],[-3,-5],[-5,-13],[-2,-1],[1,10],[-2,2],[-2,2],[-5,-6],[-7,-11],[-4,-12],[1,-12],[-1,-7],[0,-5],[2,-4],[1,-4],[0,-3],[1,-2],[1,-3],[-1,-4],[-1,-2],[-1,-2],[-1,-2],[-1,-14],[-3,-7],[-4,-7],[-4,-4],[1,-13],[2,-4],[-4,-5],[-2,7],[-4,0],[-7,-15],[-9,-29],[-7,-16],[-2,-8],[0,-9],[0,-5],[-2,-3],[-5,6],[-6,6],[-9,-9],[-5,-22],[-2,-22],[4,-27],[-2,-21],[-3,-4],[-8,1],[-2,-7],[1,-10],[-1,-12],[4,-5],[2,-7],[2,-4],[6,-9],[3,-9],[3,-10],[0,-12],[-7,-5],[-5,5],[-2,3],[-1,4],[-3,11],[-1,5],[-5,7],[-7,4],[-6,-2],[-3,-13],[-3,10],[-4,0],[-4,-5],[-4,-7],[-5,-5],[-5,0],[-6,3],[-4,4],[-8,13],[-5,9],[-13,-6],[-10,-16],[-2,12],[1,16],[6,16],[5,18],[8,16],[4,8],[1,7],[-19,0],[-4,-2],[-2,1],[-12,14],[-5,3],[4,-8],[-6,1],[-4,4],[-4,-1],[-1,-12],[1,-1],[3,-5],[1,-2],[-5,-4],[-4,2],[-4,5],[-5,19],[6,10],[-3,12],[4,9],[1,5],[-5,18],[-3,10],[-9,2],[-6,4],[-6,-20],[-4,1],[5,15],[-1,8],[3,7],[12,-10],[6,2],[3,7],[-6,0],[2,9],[0,7],[-2,6],[-3,2],[0,4],[6,-1],[1,1],[1,2],[2,4],[1,4],[-3,2],[-8,1],[-3,3],[-1,8],[0,7],[6,4],[-2,6],[-4,4],[-4,5],[-2,-6],[-4,-1],[-2,9],[7,4],[8,-3],[3,0],[1,-8],[5,-6],[2,-7],[5,7],[-1,10],[4,9],[6,3],[3,5],[-3,9],[-4,5],[5,7],[-5,1],[-4,-4],[-2,6],[-3,2],[-2,4],[0,8],[6,8],[5,2],[1,4],[-11,1],[-19,-7],[-5,3],[-3,4],[-3,2],[2,7],[2,2],[4,1],[2,3],[1,3],[1,17],[-5,-8],[-4,8],[0,13],[5,11],[0,4],[-4,0],[1,5],[2,4],[2,2],[3,2],[-11,13],[-5,1],[-5,-1],[-3,-2],[-4,-3],[-4,4],[-8,-10],[-7,-4],[-11,-11],[-9,-9],[-9,-11],[-2,-9],[-3,-6],[-4,0],[-4,4],[2,10],[-10,-12],[-13,-13],[-4,2],[5,10],[6,6],[12,20],[11,6],[5,-2],[4,3],[-3,5],[0,5],[4,5],[8,5],[6,0],[6,6],[6,0],[8,12],[33,30],[5,7],[2,10],[1,5],[8,17],[3,4],[6,10],[28,21],[5,8],[7,9],[9,16],[5,24],[0,17],[-2,17],[3,21],[2,16],[2,16],[12,4],[0,14],[4,13],[0,24],[8,10],[13,16],[4,9],[16,7],[1,10],[2,6],[-1,10],[-5,1],[-3,0],[0,6],[5,-2],[4,0],[4,13],[3,-10],[2,-2],[1,-4],[3,-4],[15,-33],[8,-36],[3,-10],[2,-9],[3,-6],[6,-5],[5,-5],[5,-1],[8,6],[10,4],[9,5],[2,11],[8,5],[6,-1],[6,5],[5,0],[6,-4],[15,2],[6,-3],[14,-9],[7,-1],[5,4],[5,6],[4,7],[3,8],[4,8],[9,15],[4,9],[2,11],[2,27],[-1,25],[-1,10],[-3,8],[-3,8],[-5,7],[-4,5],[-4,6],[-4,11],[6,-6],[8,-7],[8,-3],[4,3],[5,-9],[8,5],[9,12],[6,11],[8,11],[17,14],[8,9],[3,6],[2,9],[2,7],[4,3],[2,0],[5,3],[3,1],[2,-2],[4,-5],[5,-2],[4,-5],[3,-2],[2,0],[5,3],[2,0],[10,-4],[2,4],[3,13],[5,-10],[1,4],[1,9],[1,5],[4,1],[3,-4],[1,-6],[1,-7],[0,-17],[2,-6],[4,-2],[2,3],[6,13],[2,4],[5,-8],[7,-4],[3,-7],[-4,-17],[11,-11],[3,-1],[4,-3],[6,-11],[4,-2],[7,2],[4,0],[1,-4],[1,-5],[3,-6],[7,-10],[8,0],[7,10],[18,-2],[6,5],[3,1],[4,12],[1,-7],[-3,-7],[-2,-8],[5,1],[5,10],[5,4],[-2,-9],[-3,-9],[-1,-5],[0,-4],[1,-4],[-6,-2],[3,-1],[3,-3],[4,1],[-2,-8],[-3,-9],[-1,-6],[0,-3],[-5,-14],[0,-16],[1,-10],[-1,-2],[-2,-11],[-1,-4],[1,-5],[1,-12],[1,-5],[2,-3],[4,1],[0,6],[3,1],[4,-14],[3,-10],[10,-11],[-2,-5],[4,-3],[-1,-10],[1,-9],[-4,-6],[-1,-5],[-4,-3],[-3,-4],[-4,-13],[4,-4],[16,1],[0,-4],[-3,0],[-3,-3],[-2,-1],[0,-4]],[[86977,71854],[4,-12],[-3,-15],[-7,-15],[-5,-10],[-1,17],[1,18],[4,13],[7,4]],[[86969,71859],[0,3],[6,-5],[-6,-3],[0,5]],[[86964,71865],[4,0],[0,-6],[0,-4],[-4,-2],[-4,-3],[-2,-10],[1,-6],[0,-5],[0,-3],[-3,-4],[-2,-1],[-3,2],[-2,2],[-1,3],[0,6],[0,3],[-2,1],[-2,0],[-3,-3],[1,-6],[3,-11],[-3,-6],[-4,1],[-4,5],[-4,8],[5,12],[13,17],[6,12],[5,-4],[5,2]],[[87061,70869],[-3,-13],[-20,-45],[-4,-7],[-8,-7],[-4,-2],[-3,1],[-2,5],[2,5],[3,2],[4,1],[2,3],[3,10],[-3,7],[-6,3],[-7,-1],[0,5],[5,7],[-2,11],[-6,4],[-5,-30],[-4,-8],[-5,-6],[-4,-7],[6,-8],[2,-12],[-2,-11],[-5,-5],[-2,1],[-3,6],[-2,1],[-1,-1],[-3,-6],[-6,-3],[-6,-12],[-3,-2],[-4,4],[-2,10],[1,24],[1,0],[3,5],[4,11],[3,4],[1,-5],[0,-10],[-1,-7],[6,2],[4,20],[5,2],[0,5],[-4,6],[-5,5],[-3,2],[-3,-1],[-3,1],[-3,3],[-3,-5],[1,-18],[-7,-11],[-11,-6],[-30,-5],[-8,-6],[-8,-10],[-5,14],[-5,-4],[-5,-12],[-6,-6],[-4,-2],[0,-4],[2,-6],[2,-6],[-2,-5],[-4,-1],[-8,-1],[-7,-3],[-13,-16],[-8,-1],[-1,3],[-1,4],[-1,4],[-1,1],[-2,-1],[-2,-2],[0,-3],[-1,-2],[-8,-7],[-3,0],[-3,7],[4,8],[-2,8],[-5,8],[-3,15],[-4,8],[-1,2],[0,8],[1,5],[0,4],[-1,7],[2,1],[3,3],[2,0],[-1,7],[-2,4],[-6,6],[-5,-5],[-5,-3],[-6,0],[-10,11],[-6,-1],[-10,-10],[-9,-13],[-25,-53],[2,-8],[2,-12],[1,-9],[0,-13],[-1,-15],[-3,-6],[-4,-4],[-3,-10],[-1,-26],[3,-23],[1,-21],[-9,-19],[-7,-5],[-4,-2],[-2,-5],[0,-14],[1,-11],[6,-23],[1,-9],[-4,-7],[-12,-12],[-8,-13],[-6,-6],[-4,-1],[1,11],[6,8],[1,2],[2,9],[1,5],[2,-6],[3,0],[3,3],[1,9],[-1,11],[-3,5],[-3,4],[-3,5],[-5,5],[-18,11],[-6,2],[-1,2],[-7,18],[-3,3],[-8,6],[-3,3],[-6,10],[-5,6],[-5,-2],[-6,-14],[4,0],[0,-4],[-10,0],[-3,3],[-1,10],[8,11],[5,9],[0,4],[-3,1],[-4,5],[-16,11],[-11,-7],[-4,2],[-3,-4],[-9,-7],[-3,-1],[-8,0],[-1,2],[-1,3],[-1,1],[-2,-6],[2,-7],[1,-7],[-1,-7],[-4,-3],[-2,-1],[-1,1],[-1,2],[0,4],[-1,5],[-1,0],[-2,-2],[0,-1],[-9,5],[-2,2],[-5,10],[-3,2],[-4,-3],[2,-5],[0,-3],[-2,-4],[-3,-4],[0,-4],[-1,-2],[0,-2],[-1,-3],[-2,-2],[-2,1],[-2,4],[-1,4],[-1,4],[-2,-6],[-1,-4],[-2,-1],[-3,3],[3,8],[0,10],[-1,9],[-3,4],[-2,-3],[-7,-26],[-7,-16],[-3,-6],[-13,-15],[-4,-2],[-3,8],[-2,-2],[-2,-1],[-2,1],[-1,4],[-1,6],[-1,0],[-2,-2],[-2,-2],[0,-1],[-2,-3],[-2,-3],[-2,-1],[-2,2],[-1,5],[-2,6],[0,7],[1,5],[0,2],[-2,1],[-10,13],[-5,18],[-9,4],[-10,6],[-6,-19],[-13,-26],[-10,-15],[-1,-14],[-3,-5],[-5,6],[-1,5],[-4,3],[0,8],[5,-1],[3,14],[-1,7],[2,9],[1,6],[-1,7],[-2,4],[2,15],[-3,7],[-7,1],[-1,6],[-1,8],[-2,6],[0,7],[3,9],[3,6],[4,4],[3,5],[3,10],[1,8],[-1,5],[-1,4],[-2,15],[-4,12],[0,7],[-1,2],[-4,6],[-2,5],[1,5],[2,4],[1,4],[1,18],[1,7],[2,7],[3,-2],[5,-1],[4,1],[2,4],[1,2],[12,5],[4,4],[6,3],[-4,7],[-4,0],[-11,4],[-2,2],[-2,-5],[-1,-2],[-3,2],[1,7],[3,7],[3,5],[4,7],[4,-2],[4,-6],[-1,-6],[3,-3],[3,-1],[4,1],[4,3],[3,3],[4,3],[7,-7],[4,-2],[5,1],[2,-20],[4,-5],[5,-1],[2,6],[3,9],[-5,10],[-1,4],[1,7],[6,-2],[4,2],[7,3],[5,2],[4,-6],[4,-11],[-4,0],[-4,6],[-3,1],[-3,-2],[-2,-5],[-2,-7],[-1,-8],[-1,-8],[2,1],[4,5],[2,1],[13,1],[11,6],[3,13],[8,0],[14,5],[0,18],[3,7],[9,14],[1,6],[-2,11],[2,3],[6,2],[11,15],[4,8],[4,9],[1,7],[1,13],[2,3],[6,-1],[3,-1],[-1,5],[0,10],[1,11],[5,3],[4,-4],[7,-3],[4,5],[1,5],[2,3],[9,-2],[9,2],[13,6],[9,7],[5,5],[4,5],[2,14],[1,5],[2,8],[6,2],[1,4],[7,11],[9,14],[11,15],[7,17],[3,6],[6,-2],[2,7],[0,13],[14,21],[5,10],[8,10],[16,22],[5,13],[10,3],[6,5],[7,8],[3,18],[8,11],[6,8],[3,6],[-1,6],[5,9],[1,9],[17,22],[8,12],[9,7],[1,8],[5,3],[7,6],[12,7],[5,6],[4,10],[3,10],[2,15],[1,11],[0,7],[-1,9],[-5,4],[-6,8],[-2,6],[3,6],[6,2],[7,3],[6,0],[9,0],[4,2],[1,2],[-2,5],[-6,4],[3,1],[5,3],[6,2],[8,8],[9,7],[8,3],[16,1],[7,3],[6,-1],[1,15],[5,2],[7,-3],[5,4],[2,9],[3,7],[4,4],[4,-3],[3,7],[0,8],[4,-2],[4,-7],[6,-9],[4,-5],[9,6],[5,0],[5,6],[2,-2],[-2,-6],[1,-2],[3,-1],[2,2],[6,4],[5,1],[6,1],[5,-5],[-4,-4],[-3,-2],[-4,-3],[-4,-2],[-4,-8],[-1,-2],[0,-7],[2,-7],[1,-8],[8,-9],[10,-9],[9,-3],[5,-3],[6,-1],[5,2],[6,20],[14,11],[10,8],[15,6],[14,-7],[28,-11],[50,7],[27,13],[7,-10],[39,10],[17,6],[7,4],[6,7],[3,12],[14,5],[2,0],[3,1],[4,9],[10,6],[15,10],[9,9],[11,11],[14,-7],[16,3],[12,-1],[21,2],[9,-1],[4,-2],[6,-3],[2,-7],[6,8],[5,-1],[1,-6],[4,2],[5,-3],[3,-2],[5,8],[2,2],[3,2],[-1,7],[8,10],[6,0],[5,2],[5,5],[11,14],[-1,8],[14,7],[14,5],[7,2],[5,6],[7,-9],[3,-11],[4,-5],[4,-11],[4,-14],[0,-10],[-2,-8],[-5,6],[-6,-7],[-3,-12],[-2,-8],[-2,-5],[-8,-16],[-5,-13],[0,-12],[3,-3],[3,1],[0,10],[4,6],[3,9],[4,5],[2,-13],[3,-2],[1,-2],[-2,-4],[-3,0],[-3,1],[-1,-10],[18,-17],[4,3],[2,4],[3,-10],[-1,-8],[-2,-5],[-2,-11],[-1,-5],[2,-7],[3,4],[3,10],[3,10],[5,-1],[7,-6],[2,4],[0,14],[-8,-3],[-7,5],[-3,16],[6,10],[4,2],[8,1],[4,2],[2,5],[3,6],[1,6],[7,7],[-2,-9],[-1,-9],[5,-4],[3,-4],[-1,-9],[1,-6],[-1,-4],[0,-2],[3,-1],[2,1],[2,5],[2,10],[0,-11],[-1,-11],[1,-8],[5,-3],[8,-1],[3,1],[2,2],[6,5],[2,7],[6,9],[6,7],[6,-5],[-1,-3],[-7,-5],[-2,-17],[-3,-4],[6,-3],[15,6],[7,0],[4,5],[3,8],[0,12],[-8,-7],[-3,11],[-5,3],[4,10],[9,5],[3,-4],[2,-9],[6,1],[5,-11],[4,-3],[7,5],[-3,2],[-2,5],[-4,13],[1,4],[3,1],[3,-5],[3,3],[5,3],[-1,4],[-2,4],[-2,4],[-1,8],[-1,3],[-4,8],[-1,7],[3,1],[5,-7],[3,-5],[4,-4],[10,4],[2,-6],[3,-4],[5,6],[3,7],[6,-2],[3,3],[0,7],[-5,7],[2,13],[1,8],[-1,7],[-4,-1],[0,17],[7,6],[10,15],[4,-11],[0,-5],[2,-9],[2,-11],[-1,-7],[-3,0],[-2,-7],[5,-6],[1,-7],[6,2],[2,10],[2,3],[0,4],[0,8],[3,7],[0,5],[0,11],[2,10],[0,10],[-4,11],[-3,10],[-2,8],[-6,8],[-10,19],[-5,8],[1,17],[-1,13],[-6,15],[-4,7],[2,16],[6,7],[4,8],[5,19],[4,14],[3,18],[14,30],[4,14],[3,9],[4,14],[-4,13],[1,4],[6,1],[5,-1],[10,7],[22,34],[6,15],[13,11],[10,15],[13,25],[59,136],[13,40],[20,83],[2,11],[0,14],[-2,4],[-3,4],[1,5],[2,10],[2,17],[-2,12],[-5,8],[-3,20],[-3,4],[-1,13],[3,30],[-2,9],[-3,4],[-3,-1],[-1,-7],[-5,1],[-2,7],[1,16],[2,13],[3,10],[4,8],[-2,6],[4,7],[4,11],[2,9],[-3,8],[-1,16],[8,20],[10,9],[16,15],[11,5],[6,-5],[9,0],[30,29],[8,3],[5,12],[6,8],[40,22],[11,4],[12,-8],[3,-7],[-2,-11],[1,-7],[3,-5],[0,-8],[-2,-4],[-7,-4],[-5,0],[-6,2],[-5,-4],[-4,-4],[-2,-9],[-2,-20],[3,-14],[5,-1],[-1,-9],[0,-8],[-2,-7],[-5,-8],[-2,-5],[-6,0],[-12,5],[-16,-11],[-5,-13],[-6,-13],[0,-12],[-4,-5],[-6,-3],[-2,-8],[-3,-4],[-10,7],[-5,6],[-4,6],[3,7],[1,4],[-3,-1],[-2,-5],[-4,-2],[-1,-5],[-3,-9],[-6,-15],[-4,-17],[5,-3],[-1,-13],[-2,-4],[-5,0],[0,-13],[-2,-7],[4,-4],[5,2],[6,5],[5,-1],[8,-17],[5,-3],[7,5],[5,24],[4,4],[3,-2],[2,-11],[-2,-34],[2,-33],[-8,-17],[0,-14],[-11,-26],[5,-21],[13,-14],[8,-13],[13,-8],[8,-9],[11,-2],[13,4],[16,-4],[9,3],[5,12],[9,10],[3,16],[4,11],[1,10],[2,9],[-1,12],[3,14],[6,7],[14,13],[25,9],[26,10],[35,26],[25,16],[28,31],[15,12],[7,11],[6,13],[18,-6],[12,5],[10,8],[23,28],[31,54],[31,33],[8,15],[5,19],[7,25],[11,28],[16,24],[8,19],[5,22],[12,75],[5,22],[9,18],[20,28],[36,42],[2,5],[7,0],[11,2],[23,19],[7,8],[18,23],[29,53],[4,11],[2,11],[9,122],[3,22],[5,25],[10,32],[14,58],[6,25],[7,19],[25,38],[9,20],[7,23],[12,73],[11,54],[3,18],[2,21],[2,10],[3,11],[1,11],[1,25],[1,18],[4,22],[4,15],[9,7],[9,17],[7,47],[7,58],[3,114],[0,18],[-5,25],[0,14],[-3,18],[-7,16],[-10,17],[-13,11],[-12,-3],[-4,-6],[-2,-7],[-3,-6],[-5,-2],[-19,0],[-2,5],[-4,15],[-2,7],[-6,12],[-1,13],[4,4],[-5,5],[-1,16],[1,11],[12,-14],[16,-12],[6,-1],[12,14],[10,20],[21,64],[4,26],[-1,12],[4,19],[2,8],[3,58],[1,12],[-4,8],[-3,6],[-10,15],[-5,9],[-1,10],[1,25],[-1,26],[0,14],[-3,6],[-1,9],[-4,9],[-10,-1],[-6,4],[1,11],[6,10],[5,10],[7,2],[4,14],[6,5],[3,9],[4,14],[3,15],[14,15],[6,-1],[7,-10],[4,-3],[4,0],[5,3],[4,7],[12,15],[6,-5],[6,3],[5,7],[3,10],[7,37],[4,37],[2,10],[0,15],[1,12],[0,17],[1,0],[5,-14],[2,-4],[4,-3],[2,-4],[3,2],[-2,14],[-1,5],[2,4],[2,1],[3,-2],[3,0],[-1,5],[-1,3],[-6,-1],[-3,0],[-5,0],[-1,4],[-1,3],[-2,-3],[-2,-2],[-1,2],[0,15],[-1,8],[-6,16],[-5,5],[-4,1],[-5,2],[-1,6],[3,3],[7,1],[6,-3],[5,8],[2,13],[1,12],[-1,6],[1,6],[0,15],[3,5],[-1,8],[1,4],[5,-7],[5,-6],[4,-2],[5,-9],[7,-16],[7,-9],[6,0],[8,9],[4,13],[6,3],[13,-3],[11,-15],[3,-14],[-2,-16],[-1,-17],[-1,-6],[0,-7],[2,-13],[1,-18],[4,-20],[5,-66],[8,-25],[14,-11],[13,2],[9,17],[6,10],[5,18],[-2,4],[0,7],[1,5],[1,2],[-2,1],[-3,-1],[-2,1],[-2,4],[3,2],[3,0],[0,5],[0,4],[3,3],[-1,4],[1,3],[3,11],[2,2],[4,-1],[3,-8],[7,-1],[3,-2],[2,-8],[2,-5],[5,-5],[0,-4],[-1,-1],[-1,-3],[0,-5],[1,-2],[3,0],[6,-3],[6,-7],[4,-2],[3,1],[3,-3],[1,-7],[3,-8],[3,-3],[5,-5],[4,0],[6,4],[4,7],[6,12],[12,45],[2,17],[2,39],[2,10],[-1,5],[2,7],[3,4],[2,6],[2,11],[-2,18],[-4,16],[-6,15],[-8,16],[-6,8],[-6,0],[-3,-8],[-2,-5],[-2,-5],[0,-3],[2,0],[1,4],[2,3],[1,1],[0,-2],[-1,-3],[-2,-7],[-10,-13],[-5,-2],[-6,-8],[-4,-8],[-7,2],[-8,5],[-3,-1],[-4,2],[-4,-4],[-5,-10],[-11,0],[-5,-6],[-4,2],[-3,-1],[-10,-11],[-4,-10],[-4,0],[-9,9],[0,24],[0,7],[3,6],[2,17],[-1,10],[3,15],[2,15],[1,11],[0,5],[3,4],[3,16],[1,14],[2,18],[5,7],[9,22],[3,5],[1,3],[2,12],[0,7],[-2,7],[1,2],[1,6],[2,5],[3,-8],[7,-6],[4,-8],[4,-7],[4,-4],[3,-2],[5,-2],[12,-2],[12,-10],[9,-18],[5,-10],[6,-6],[1,-5],[3,-6],[11,-12],[11,-8],[12,0],[9,4],[9,7],[8,11],[6,9],[4,7],[4,7],[1,-2],[0,-4],[-1,-4],[1,-5],[-1,-2],[-2,-3],[0,-2],[2,-3],[-1,-6],[-4,-7],[-1,-9],[-2,-12],[-3,-10],[-4,-34],[-1,-15],[0,-6],[-4,-35],[1,-14],[1,-6],[-1,-7],[0,-8],[1,-6],[-3,-37],[1,-31],[0,-26],[1,-7],[3,-62],[5,-54],[4,-33],[9,-45],[4,-12],[2,-7],[8,-14],[4,-4],[4,0],[3,5],[5,1],[1,-5],[2,-7],[10,-12],[16,-30],[3,-5],[8,-17],[1,-12],[5,-5],[3,-9],[1,-6],[4,-15],[1,-4],[1,-7],[2,-5],[5,-10],[7,-23],[4,-15],[-2,-7],[-3,-2],[-3,-5],[-1,-6],[1,-5],[3,-5],[8,-5],[3,-4],[3,-12],[-3,-7],[-5,-8],[-3,-12],[2,-14],[3,-9],[18,-28],[3,-2],[3,-2],[3,-3],[1,-13],[1,-6],[1,-6],[-1,-6],[-4,-7],[0,-4],[2,-11],[2,-5],[2,-4],[2,-5],[1,-18],[1,-8],[6,-36],[1,-3],[0,-3],[0,-5],[1,-4],[-1,-5],[-3,-6],[-1,-2],[-2,-14],[-1,-27],[0,-8],[-4,-13],[-1,-9],[1,-8],[13,23],[7,1],[-2,-5],[0,-4],[0,-3],[2,-4],[-3,-10],[1,-6],[8,-13],[1,-1],[1,-2],[1,-4],[0,-6],[-1,-2],[-2,-2],[-1,-4],[-1,-2],[-10,-21],[-5,-4],[-9,-6],[-4,-6],[5,-10],[8,1],[6,8],[3,11],[2,4],[4,-4],[2,-7],[-4,-3],[-1,-4],[-1,-8],[0,-10],[-2,-4],[-6,-1],[-2,-1],[-3,0],[-3,-1],[-2,-3],[-6,-9],[-3,-4],[7,-6],[-3,-8],[-8,-9],[-6,-9],[6,-4],[6,4],[5,6],[4,6],[1,-14],[-6,-9],[-13,-10],[2,-3],[2,-4],[1,-5],[-2,0],[-5,0],[-2,0],[-1,-8],[1,-8],[9,0],[4,1],[0,-1],[0,-12],[-5,-9],[-8,-5],[-6,2],[1,-9],[3,-3],[9,0],[-3,-10],[-6,-7],[-7,-3],[-7,-1],[5,-8],[13,-17],[1,-7],[-6,-5],[-15,9],[-5,-8],[12,-11],[3,-6],[-3,-2],[-4,-1],[-3,-1],[-4,1],[0,-5],[3,-3],[4,-5],[2,-6],[-2,-2],[-11,4],[-11,-2],[-6,1],[-5,6],[0,-9],[2,-7],[2,-6],[2,-7],[-4,1],[-2,-1],[-4,-8],[4,-3],[2,-5],[-1,-6],[-4,-2],[-4,2],[-3,5],[-3,7],[-2,6],[3,3],[2,5],[-11,1],[-4,-7],[1,-12],[1,-25],[7,-29],[1,-13],[-6,8],[-1,3],[-1,8],[-1,3],[-1,2],[-2,-1],[-2,-2],[-2,-1],[-5,0],[-3,-2],[-1,-5],[0,-11],[1,-12],[0,-5],[0,-4],[-4,-8],[-12,-15],[-2,-7],[3,-3],[1,-4],[3,-9],[5,-8],[2,-6],[-2,-9],[-2,-2],[-1,2],[-2,3],[-1,0],[-2,-2],[-3,-9],[-3,-3],[-7,-4],[-3,-3],[-5,-7],[0,-3],[3,-6],[4,-3],[13,-1],[0,-4],[-2,-8],[-2,-9],[-2,-3],[-12,-17],[4,-7],[4,-9],[5,-4],[4,8],[3,-9],[2,-9],[0,-10],[-1,-12],[-4,1],[-2,4],[-1,5],[-1,6],[-4,-23],[-2,-5],[2,-2],[1,-2],[0,-2],[1,-3],[-7,-3],[-3,-3],[-1,-4],[2,-6],[0,-6],[0,-4],[3,-6],[3,4],[6,2],[5,-2],[3,-8],[-4,3],[-4,0],[-3,-3],[-2,-8],[7,-7],[1,-12],[0,-13],[4,-9],[-2,-4],[-3,-17],[-2,2],[-8,13],[-2,2],[-4,0],[-2,2],[0,4],[0,4],[2,3],[0,3],[-3,5],[-9,7],[1,4],[3,13],[-3,5],[-3,0],[-2,-1],[-4,-1],[-3,2],[-3,3],[-6,10],[-6,4],[-8,-1],[-20,-8],[-8,-5],[-6,-8],[-2,-14],[0,-14],[-1,-1],[-5,0],[-1,4],[-5,25],[-2,-3],[-2,-1],[-3,1],[-2,3],[-5,-6],[-4,-9],[-3,-10],[-2,-12],[3,3],[3,0],[3,-2],[1,-5],[-1,-5],[-2,-3],[-3,-3],[-3,-3],[-9,-20],[-9,-23],[-5,-21],[-12,-72],[-2,-25],[0,-25],[4,-43],[0,-2],[7,-23],[10,-30],[3,-21],[1,-8],[3,-6],[1,-8],[0,-12],[-1,-5],[-3,-8],[0,-3],[1,-4],[4,-9],[1,-6],[3,-160],[-1,-19],[-6,-44],[0,-18],[-2,-8],[0,-55],[-1,-7],[-5,-19],[-3,-52],[-4,-21],[-10,-17],[-2,-1],[-7,-3],[-9,-10],[-7,-4],[-4,-8],[-2,-2],[-3,-3],[0,-7],[0,-10],[-2,-6],[-1,-6],[-11,-31],[-3,-10],[-13,-89],[-16,-46],[-4,-20],[-4,-43],[1,-9],[3,-23],[1,-9],[-3,-16],[-10,-19],[-4,-13],[0,-22],[4,-50],[8,-39],[10,-49],[40,-121],[12,-28],[3,-11],[3,-3],[2,-1],[1,-1],[3,-3],[1,-5],[-3,-14],[-2,-6],[-4,5],[-2,5],[-3,6],[-7,-3],[-9,-7],[-14,-9],[-1,10],[-15,-6],[-18,-22],[-32,-51],[-16,-44],[-11,-65],[6,-31],[2,-16],[-3,-25],[-1,-22],[-2,-15],[-4,-12],[-8,2],[-5,-13],[1,-10],[-4,-7],[-5,2],[-2,8],[-5,-9],[-7,2],[-4,-13],[-10,1],[-13,2],[-6,3],[-8,-15],[-1,-13],[-7,-10],[-6,0],[-9,-12],[-9,-11],[-2,-7],[-2,-11],[-3,-8],[0,-10],[-1,-11],[-2,-7],[-3,-6],[-4,-7],[-8,-2],[-5,-1],[-3,2],[-4,-2],[-4,-1],[-1,3],[-4,4],[0,6],[0,8],[-4,5],[-8,6],[-7,1],[-1,5],[0,7],[4,0],[5,-1],[3,-1],[4,2],[3,3],[2,5],[4,1],[5,-3],[2,3],[1,5],[-1,8],[-3,5],[-6,3],[0,6],[3,6],[1,7],[0,6],[-3,11],[-1,7],[1,21],[-5,14],[1,7],[-1,9],[1,8],[8,9],[4,6],[0,13],[-5,15],[0,13],[-11,7],[-8,5],[0,3],[6,-1],[6,7],[0,11],[4,7],[2,10],[13,-7],[4,8],[0,9],[-2,18],[4,6],[8,5],[5,8],[6,2],[7,9],[4,10],[6,13],[8,18],[5,-2],[2,9],[1,7],[-4,0],[-1,11],[-1,11],[-4,7],[-5,9],[-4,6],[-7,11],[-3,-2],[-4,7],[-9,2],[-8,-6],[5,-15],[-7,-7],[-5,-6],[-1,5],[-3,1],[-3,4],[-2,0],[-4,4],[-2,-5],[-1,-9],[-4,5],[-1,9],[-4,0],[-1,-11],[-4,-10],[-4,9],[1,14],[-3,7],[-2,-13],[3,-18],[4,-12],[0,-7],[4,-17],[-3,-8],[0,-8],[0,-1],[-3,-6],[-9,-10],[-8,-12],[-8,-2],[-6,4],[-4,-2],[-2,-6],[5,-4],[5,-5],[2,-4],[-1,-8],[1,-11],[-3,1],[-7,5],[-4,-5],[2,-8],[4,-7],[-1,-22],[-1,-7],[0,-10],[-1,-7],[3,-7],[2,7],[3,-4],[5,-14],[11,-2],[3,-9],[-5,-10],[1,-2],[0,-2],[1,-2],[-2,-9],[-10,1],[-7,-9],[-1,-9],[2,-11],[3,-6],[2,-6],[-3,-2],[-3,-1],[-7,3],[-4,-5],[-3,2],[-1,4],[1,7],[0,12],[-4,17],[7,6],[-2,4],[-4,3],[-2,9],[-8,17],[0,5],[-2,6],[-3,1],[-2,12],[-4,-4],[-6,1],[-6,-2],[-5,8],[-15,3],[-23,-9],[-13,-4],[-14,-7],[-14,-13],[-10,-17],[-1,-30],[4,-28],[-10,8],[-9,-24],[-3,-20],[-1,-13],[9,-3],[-2,-11],[-1,-11],[-3,-8],[4,-14],[9,-5],[3,-14],[1,-22],[-2,-20],[-6,-2],[-5,-7],[-3,-8],[-1,-8],[-3,-12],[-4,-10],[-2,-8],[-3,-6],[-4,-2],[-3,-6],[-2,-5],[-3,-8],[1,-7],[-2,-4],[-2,-8],[-1,-10],[1,-11],[1,-9],[-3,-3],[-2,0],[-3,4],[-6,5],[-13,-19],[-9,-9],[-8,-10],[-4,4],[-4,6],[-3,8],[-6,12],[2,10],[-2,4],[-2,3],[-2,2],[-2,2],[-1,5],[0,11],[-1,12],[4,5],[1,6],[4,2],[-5,18],[-3,19],[3,9],[1,10],[0,2],[0,12],[-2,6],[2,8],[4,7],[4,1],[-3,9],[-2,6],[-2,14],[-1,14],[4,14],[3,14],[11,-2],[8,-3],[6,1],[5,0],[4,6],[-15,29],[-5,12],[-9,13],[-17,8],[-13,2],[-9,-7],[-8,-6],[-14,-1],[-9,-11],[-7,-27],[-8,-11],[-1,-18],[3,-6],[0,12],[4,5],[3,-2],[-5,-22],[-12,-12],[-11,-9],[-8,-7],[-10,-9],[-3,-8],[-2,-9],[-3,-8],[-2,-12],[0,-5],[3,-12],[-4,-11],[-3,-5],[-6,-20],[-12,-15],[-10,-16],[-4,-31],[-2,-11],[2,-12],[7,-3],[4,-8],[-2,-5],[-12,4],[-39,32],[-23,7],[-20,0],[-28,-16],[-30,18],[-25,4],[-13,0],[-34,-6],[-24,-12],[-55,-34],[-13,2],[-14,-7],[-4,-1],[-4,0],[2,7],[2,4],[3,12],[3,17],[6,11],[8,-16],[1,-4],[1,-4],[3,5],[0,3],[5,4],[4,4],[4,3],[9,10],[12,14],[5,4],[6,16],[5,-2],[0,-12],[-1,-10],[2,-1],[2,10],[0,12],[6,-3],[2,3],[-8,6],[3,11],[1,7],[-1,4],[-7,14],[-5,7],[-3,-3],[-6,3],[-6,4],[-5,-8],[-3,3],[-1,-11],[-1,-11],[-5,-4],[0,12],[-4,-1],[-4,4],[-6,0],[-5,-2],[-4,-5],[-4,5],[-6,-5],[-6,2],[-3,2],[-5,11],[-2,4],[-5,10],[-5,4],[1,15],[6,24],[-1,15],[-3,-7],[-3,-16],[-5,-14],[-2,-9],[-2,-11],[-3,-31],[3,-7],[3,-10],[7,-7],[3,-13],[0,-10],[-7,2],[-9,7],[-10,10],[-6,7],[-3,8],[-1,9],[3,11],[1,11],[2,9],[0,9],[-2,12],[-4,9],[-4,0],[-2,14],[0,15],[0,11],[1,9],[2,11],[3,10],[4,11],[2,10],[4,11],[1,16],[1,11],[-4,2],[-4,-18],[-2,-13],[-2,12],[0,9],[-4,2],[3,-28],[-7,-3],[-1,13],[-3,0],[0,-15],[-6,-2],[-7,4],[-2,-2],[-6,2],[-12,-15],[-6,-10],[-3,-9],[0,-4],[-1,-6],[-1,-3],[1,-3],[5,-1],[-5,-6],[1,-11],[-3,-14],[-6,-21],[-14,-31],[-9,-21],[-2,-26],[-1,-11],[-1,-13],[1,-3],[3,-9],[1,-2],[3,-3],[-1,-7],[-1,-8],[0,-6],[3,-9],[5,-3],[12,0],[6,-3],[4,-7],[4,-8],[4,-7],[21,-24],[14,-11],[3,-5],[3,2],[4,0],[4,-2],[2,-4],[2,-7],[1,-6],[1,-6],[2,-6],[4,-2],[3,0],[2,0],[3,-6],[0,-7],[-2,-21],[-4,3],[-3,0],[-3,-2],[-2,-5],[1,-4],[2,-4],[3,-1],[4,0],[-5,-7],[-1,-4],[-2,-5],[2,-6],[2,-10],[1,-11],[-1,-9],[-3,-4],[-10,-6],[-4,-2],[-5,1],[-6,3],[-6,5],[0,7],[4,2],[6,-2],[5,-4],[4,-4],[-1,4],[0,5],[-1,3],[4,-4],[2,12],[-3,8],[-5,3],[-6,-3],[1,-4],[0,-2],[-1,-2],[0,-4],[-9,12],[-5,-7],[-8,-3],[-7,3],[2,9],[4,12],[-5,2],[-8,-5],[-8,-7],[5,-3],[0,-7],[-3,-7],[-9,-6],[-4,-6],[-5,-1],[-5,10],[-1,-4],[-1,-1],[-1,-2],[0,-5],[-8,7],[-3,1],[-1,-7],[-2,-6],[-2,-3],[3,-10],[-3,0],[-9,5],[-12,-14],[-3,-6],[-9,0],[-14,-12],[-10,-18],[-1,-17],[4,-4],[2,-2],[1,-4],[-2,-8],[-1,-3],[-3,-2],[-2,-2],[-2,-1],[-3,3],[-4,11],[-2,2],[-2,-3],[-4,-12],[-3,-5],[0,-4],[4,0],[3,-2],[1,-5],[1,-7],[5,-9],[3,-7],[-1,-3],[-1,-3],[0,-16],[0,-5],[-4,-3],[-3,3],[-3,7],[-2,6],[-3,-7],[-4,-6],[0,-4],[6,-2],[2,-8],[-2,-6],[-4,4],[-2,-10],[-2,-4],[-9,-3],[-2,-1],[-2,-5],[-2,-7],[-2,-2],[-3,0],[-6,1],[-10,-27],[-14,-67],[-7,-28],[-1,-2],[-2,-18],[-6,-6],[-1,-10],[-6,-5],[1,-8],[6,-6],[-4,-9],[-9,-18],[-5,-3],[-3,-8],[-16,-9],[-5,-5],[-3,-6],[-4,-13],[2,-12],[-1,-7],[-4,2],[-4,-7],[-1,11],[4,10],[-1,8],[-27,5],[-9,3],[-41,27],[-12,6],[-10,14],[-3,5],[-3,7],[0,8],[1,6],[-3,11],[-2,4],[-1,1],[-3,5],[-5,2],[-4,8],[4,14],[10,2],[7,2],[-3,7],[-14,19],[-6,5],[-2,7],[-5,-1],[-8,10],[-9,1],[-1,10],[-9,9],[-7,14],[-5,22],[-10,11],[-5,-2],[-10,-3],[-2,-3],[1,6],[2,4],[-3,3],[2,2],[4,0],[0,8],[-3,7],[5,7],[4,7],[-1,3],[-5,0],[-1,11],[5,8],[6,1],[4,3],[7,7],[2,9],[0,8],[-2,6],[-6,5],[-6,5],[-5,1],[6,20],[1,1],[2,2],[1,1],[0,3],[0,5],[-2,9],[7,1],[11,-2],[1,9],[-3,9],[-4,13],[-5,-1],[-3,25],[-5,8],[-7,11],[-9,4],[3,11],[9,19],[29,15],[13,20],[7,12],[11,19],[9,23],[6,10],[0,14],[0,6],[5,3],[2,6],[3,4],[1,10],[0,13],[1,18],[-3,15],[-1,14],[3,20],[-4,-4],[-5,-3],[-5,5],[-6,12],[-7,-1],[-8,-1],[0,-15],[-9,-2],[0,14],[-10,-6],[6,-24],[-8,3],[-2,13],[-5,-1],[-1,-14],[-20,-7],[-9,-7],[-9,-2],[-8,10],[-11,0],[-5,1],[-6,14],[-9,6],[-5,8],[-15,18],[-9,6],[-11,15],[-5,6],[-13,6],[-36,-6],[-2,1],[-2,2],[-1,1],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-1,0],[-4,1],[-3,2],[-1,5],[0,8],[-2,-1],[-2,-2],[-1,-3],[-1,-4],[0,-5],[-1,0],[-1,0],[-2,-1],[-7,-17],[-2,-3],[-4,0],[-3,3],[-2,4],[-3,1],[-3,-2],[-3,-5],[-2,-7],[1,-6],[-8,-1],[-14,7],[-8,1],[-7,6],[-4,0],[3,-9],[2,-3],[15,-6],[-2,-1],[-6,-1],[-2,-2],[-5,-14],[-1,-2],[-3,-1],[-4,-6],[-5,-2],[-2,-1],[-5,-6],[2,-3],[3,0],[2,0],[3,3],[-3,-13],[-9,-10],[-9,-7],[-8,-3],[-4,3],[-6,11],[-6,3],[-9,-1],[-4,-1],[-7,-8],[-5,-3],[-3,-6],[1,-10],[3,-3],[5,5],[7,15],[5,3],[5,1],[4,-2],[3,-7],[0,-10],[-3,-7],[-5,-5],[-3,-6],[0,-2],[1,-1],[1,-5],[-8,5],[-5,-13],[-3,-19],[-5,-14],[-22,7],[-10,0],[1,-15],[-9,3],[-4,12],[-3,15],[-7,11],[-2,-3],[-2,3],[-1,6],[0,6],[-2,-4],[-5,3],[-4,-3],[-4,-6],[-8,-5],[-13,-11],[-3,-4],[0,-4],[-2,-4],[-2,-2],[-6,-1],[-2,-3],[-1,-2],[-2,-2],[-17,-13],[11,23],[4,12],[-6,5],[-3,-1],[-6,-8],[-4,-2],[-7,0],[-3,-3],[-1,-10],[2,-3]],[[89970,76621],[5,-4],[12,0],[5,-2],[-9,-5],[-13,4],[-23,13],[1,4],[6,0],[6,-2],[6,-3],[4,-5]],[[90490,76164],[4,0],[9,-5],[3,-3],[-2,-5],[-2,-2],[-6,-1],[-3,-2],[-5,-12],[-4,-2],[-10,-4],[-3,-2],[-4,-7],[-3,-2],[-8,3],[-4,-2],[-3,-3],[-1,-6],[-3,-6],[-7,-11],[-2,-5],[-2,-6],[-2,-15],[-2,-7],[-2,-4],[-7,-16],[3,-4],[-3,-2],[-6,1],[-5,3],[-7,7],[-5,-1],[-9,-4],[-28,-1],[-6,-5],[-6,-10],[-8,-5],[-21,-5],[-5,-2],[-3,-5],[-2,-8],[1,-11],[3,-2],[5,0],[5,-3],[-3,-5],[-3,-3],[-10,-1],[-1,-3],[-1,-4],[-2,-5],[-6,-6],[-7,0],[-13,6],[5,-14],[2,-7],[-2,-7],[-2,-4],[-4,-2],[-19,-5],[-9,1],[-9,5],[-7,11],[0,6],[0,7],[-1,7],[-5,2],[-3,1],[-2,0],[-1,1],[-2,-2],[-2,-2],[-3,-8],[-2,-2],[-2,-3],[-3,-7],[-3,-9],[-1,-7],[2,-9],[4,-6],[4,-6],[4,-6],[-12,-6],[-39,15],[-22,-3],[-7,-7],[-9,3],[-20,11],[-3,3],[-2,5],[-2,5],[-1,7],[-1,6],[-4,2],[-6,-1],[-39,-15],[-39,-30],[-43,-48],[-27,-52],[-42,-57],[-18,-34],[-35,-88],[-28,-80],[-5,-25],[-1,-28],[3,-34],[0,-13],[0,-13],[-2,-13],[-7,-48],[-3,-12],[-8,-11],[-3,-27],[-4,-8],[-4,3],[-6,8],[-6,9],[-3,6],[-2,11],[-7,12],[-7,10],[-43,46],[-56,31],[-59,55],[-24,12],[-49,57],[-17,27],[-15,28],[-29,6],[-23,24],[-15,28],[-5,5],[-6,2],[-19,18],[-26,10],[-24,-1],[-25,-8],[-33,-22],[-46,-57],[-8,-6],[-5,-8],[-4,-2],[-3,-1],[-3,-1],[-3,-3],[-22,-24],[-5,-9],[-16,-36],[-4,-7],[-3,-2],[-4,-1],[-3,1],[-3,2],[-2,3],[-3,6],[-1,5],[1,3],[11,-4],[2,2],[1,6],[-3,4],[-8,4],[-6,7],[-2,4],[-2,5],[-3,24],[-46,85],[-13,9],[-7,0],[-18,-5],[-20,6],[-7,-1],[-12,-9],[-11,-16],[-10,-19],[-16,-43],[-6,-24],[-4,-25],[-2,-27],[3,-27],[8,-15],[29,-24],[9,-12],[20,-36],[5,-4],[7,2],[10,5],[18,3],[6,2],[5,5],[17,-19],[4,-16],[14,-30],[4,-8],[11,-11],[4,-8],[19,-38],[5,-7],[5,-5],[6,-3],[7,-1],[7,-3],[6,-6],[22,-32],[4,-11],[-2,-5],[-13,-3],[-6,-4],[-5,-5],[-17,-28],[-10,-7],[-13,6],[-24,22],[-14,7],[-14,0],[-12,-12],[-6,-3],[-3,8],[2,9],[5,5],[3,6],[-2,11],[-5,8],[-7,3],[-7,-2],[-5,-7],[-3,-10],[-4,-26],[-3,-11],[-17,-14],[-2,-4],[-4,-4],[-14,-7],[-5,-3],[-6,-22],[3,-48],[-3,-19],[-9,-11],[-35,-18],[-4,-6],[-5,-9],[-4,-11],[-2,-12],[-3,-10],[-7,2],[-13,10],[-3,-1],[-5,-3],[-2,-1],[-3,2],[-8,9],[-3,2],[-3,5],[-3,11],[-4,24],[-9,34],[-1,13],[2,13],[5,18],[4,37],[15,38],[3,24],[1,2],[6,-1],[3,1],[2,6],[1,5],[0,13],[0,4],[-1,5],[-1,3],[1,3],[2,3],[3,2],[1,7],[0,10],[1,4],[-2,9],[-1,11],[-1,11],[2,9],[-9,17],[-14,41],[-9,15],[-28,20],[-5,10],[0,3],[-2,3],[-5,17],[-3,3],[-8,5],[-13,16],[-3,7],[-3,14],[-3,24],[2,11],[3,12],[12,31],[3,13],[3,27],[0,26],[-4,44],[3,23],[9,22],[11,8],[27,2],[7,3],[4,5],[12,23],[2,3],[3,2],[3,1],[3,2],[2,6],[7,23],[4,8],[5,3],[6,-8],[6,-17],[4,-7],[6,-2],[6,8],[2,13],[1,14],[2,6],[5,5],[4,11],[7,24],[4,9],[19,30],[12,12],[5,10],[1,11],[-2,9],[-5,9],[-2,13],[-2,9],[-13,30],[-9,16],[-11,13],[-8,17],[-3,23],[9,44],[14,0],[7,2],[5,7],[1,5],[1,6],[1,6],[2,3],[4,-1],[4,-4],[3,-5],[2,-2],[5,-3],[23,-28],[5,-7],[9,-17],[5,-7],[20,-15],[3,-4],[4,-9],[3,-3],[4,-2],[28,7],[22,13],[6,2],[3,-4],[-3,-7],[-2,-11],[5,-10],[3,-2],[10,-2],[12,-8],[6,-2],[6,-5],[4,-2],[5,1],[4,1],[7,6],[21,26],[19,31],[7,18],[7,22],[5,26],[0,27],[-4,16],[-15,37],[-3,16],[0,12],[4,10],[4,11],[-5,23],[-2,6],[1,11],[-7,26],[-2,13],[2,11],[4,14],[8,22],[4,7],[7,6],[6,5],[12,3],[5,3],[5,5],[16,20],[9,17],[7,20],[5,28],[2,24],[1,25],[-4,124],[3,21],[22,66],[13,103],[1,26],[-4,73],[-8,71],[-9,42],[-37,124],[-4,25],[3,26],[2,4],[5,11],[2,5],[2,7],[0,5],[1,6],[6,15],[0,10],[-3,19],[0,9],[0,10],[3,9],[5,8],[3,-4],[2,-4],[0,-7],[1,-8],[1,-5],[3,-1],[7,4],[13,3],[13,6],[10,10],[3,2],[2,3],[0,7],[0,8],[1,6],[4,10],[7,9],[7,3],[5,-7],[4,-17],[3,-7],[4,-3],[4,-5],[11,-32],[11,-17],[24,-28],[11,-15],[88,-167],[21,-68],[5,-12],[9,-10],[14,-35],[54,-94],[9,-8],[11,-29],[17,-18],[21,-35],[24,-29],[6,-3],[4,-3],[11,-18],[5,-7],[12,-5],[3,-3],[5,-18],[0,-3],[7,-14],[3,-3],[41,-38],[62,-38],[0,-4],[-23,5],[-4,-5],[2,-4],[6,-10],[2,-4],[4,-23],[2,3],[2,2],[4,-7],[3,-3],[4,-2],[41,-1],[2,-2],[8,14],[4,6],[5,2],[33,-2],[10,-7],[5,-7],[0,-2],[-4,-1],[-5,-5],[-4,-7],[-6,-29],[10,-7],[4,0],[3,3],[3,6],[4,9],[2,10],[1,9],[4,17],[8,5],[5,-7],[-2,-17],[4,-18],[2,-7],[5,-3],[2,-5],[5,-19],[2,-4],[3,-3],[11,-14],[5,-3],[10,-5],[39,-10],[47,-6],[13,4],[12,12],[32,54],[25,46],[3,6],[20,20],[13,21],[5,3],[5,6],[13,39],[11,16],[6,10],[2,12],[2,4],[2,2],[3,0],[2,-12],[5,-14],[2,-6],[-1,-26],[-6,-22],[-16,-33],[-4,-13],[-2,-28],[-3,-10],[-25,-50],[-7,-19],[-6,-21],[-5,-22],[3,-10],[-2,-12],[-3,-12],[-2,-13],[-4,-9],[-1,-6],[0,-8],[1,-5],[11,-39],[4,-9],[18,-31],[4,-8],[3,-10],[2,-12],[0,-13],[1,-4],[4,-6],[2,-10],[3,-14],[8,-50],[5,-23],[10,-20],[13,-16],[-9,-3],[-17,24],[-8,3],[-3,-5],[0,-6],[1,-7],[5,-2],[5,-2],[4,-4],[2,-4],[-5,-2],[5,-9],[8,-7],[9,-4],[24,-3],[7,-5],[7,-9],[1,7],[-3,4],[-3,5],[-1,8],[2,4],[10,15],[12,20],[3,4],[7,3],[4,3],[2,4],[1,4],[1,4],[4,4],[4,1],[13,-1],[2,1],[4,6],[1,1],[2,0],[1,-2],[1,-1],[1,-1]],[[84392,64915],[6,2],[10,-3],[11,-6],[6,-8],[1,-15],[-6,-20],[-12,-29],[-6,-1],[-29,14],[-17,3],[-5,6],[5,16],[1,-1],[1,-1],[2,-2],[2,7],[3,-2],[3,-5],[4,2],[2,6],[1,21],[3,21],[1,5],[1,6],[2,0],[2,-2],[2,-4],[6,-10]],[[84167,64964],[3,-3],[1,-6],[-2,-7],[-4,-5],[-3,2],[-11,-2],[-2,3],[0,6],[1,7],[3,4],[4,-1],[10,2]],[[84535,65028],[1,-7],[-2,-6],[-2,-5],[-3,-10],[-9,-28],[-4,-25],[-2,-26],[-3,-23],[-9,-16],[-9,-2],[-10,5],[-5,11],[5,15],[-3,4],[-1,7],[-1,6],[-5,3],[-5,2],[-3,4],[0,4],[5,2],[2,4],[3,10],[1,3],[3,1],[2,-3],[0,-5],[1,-2],[3,-4],[2,-3],[3,-1],[7,0],[3,2],[2,3],[3,8],[3,11],[2,9],[5,4],[3,5],[9,35],[4,11],[2,1],[2,-4]],[[89265,65150],[2,-7],[-2,-2],[-4,-1],[-3,-2],[-3,-6],[-5,-14],[-4,-5],[0,20],[1,8],[2,7],[3,4],[6,1],[4,0],[3,-3]],[[84829,65146],[5,-2],[6,-6],[5,-7],[2,-7],[-2,-5],[-6,-3],[-11,-3],[-23,0],[-12,4],[0,11],[1,7],[3,33],[1,22],[-1,7],[-3,10],[4,-2],[3,-3],[1,-2],[1,-2],[2,-7],[4,-17],[2,-7],[1,-4],[9,-17],[2,-1],[6,1]],[[86459,65793],[6,-10],[-2,-2],[-2,-5],[-1,-5],[0,-6],[-2,-5],[-3,0],[-3,2],[-5,4],[0,7],[2,9],[5,9],[1,3],[2,0],[2,-1]],[[85224,66076],[0,-6],[-1,-6],[-1,-5],[-2,-4],[0,-2],[0,-3],[0,-2],[-2,-1],[-2,1],[-1,2],[-2,3],[-1,4],[-2,8],[-5,5],[-6,3],[-4,5],[-2,8],[2,6],[5,4],[5,2],[3,1],[5,-2],[5,-5],[4,-7],[2,-9]],[[89497,66250],[-3,-1],[-2,-4],[0,-5],[2,-6],[-6,8],[-6,18],[-8,34],[2,1],[2,-1],[2,-3],[1,-5],[2,-3],[3,-1],[4,1],[0,-4],[-4,-5],[1,-5],[3,-2],[4,-1],[0,-4],[-2,-2],[0,-1],[0,-1],[0,-4],[2,2],[1,1],[1,-2],[1,-5]],[[85648,66339],[-1,-2],[-1,-4],[0,-4],[2,-4],[0,-5],[-1,-5],[-2,-3],[0,-3],[-4,-15],[-1,-2],[1,-7],[-1,-3],[-1,1],[-1,0],[-1,0],[-9,-29],[-6,-12],[-7,-4],[-12,-2],[-4,-2],[-2,-4],[-3,-6],[-2,-7],[-1,-6],[1,-1],[2,-1],[1,-2],[0,-6],[-1,-4],[-1,-2],[-1,0],[-7,-5],[-5,-1],[-5,0],[-5,4],[-5,-13],[-15,-29],[-3,-4],[-3,-1],[-3,-2],[-1,-10],[-2,-2],[-19,0],[-3,-1],[-2,-2],[-4,-10],[1,-5],[3,-2],[3,-4],[2,-8],[1,-17],[1,-7],[3,-8],[6,-9],[2,-8],[-5,-3],[-5,3],[-6,5],[-6,3],[-3,-4],[-14,-50],[-2,-10],[-1,-11],[2,-7],[5,0],[5,2],[4,-1],[-3,-12],[-5,-16],[-6,-11],[-5,2],[-4,-5],[-5,-16],[-4,-3],[-16,0],[1,22],[-5,42],[0,13],[6,-1],[5,11],[4,15],[2,12],[5,-1],[4,9],[2,11],[1,7],[-1,12],[-4,27],[-1,12],[1,14],[2,6],[5,1],[9,0],[3,0],[4,3],[1,6],[1,0],[4,15],[1,4],[9,10],[11,6],[9,9],[7,19],[0,11],[-2,7],[-4,5],[-13,4],[-2,7],[0,9],[0,10],[-2,20],[0,5],[2,0],[9,0],[13,1],[6,-2],[4,-8],[0,-5],[-2,-5],[-1,-6],[1,-8],[3,-3],[3,0],[12,6],[15,17],[-3,11],[3,7],[11,16],[1,4],[2,12],[2,2],[2,1],[1,2],[2,8],[10,13],[3,7],[1,11],[4,19],[1,13],[21,-43],[1,-10]],[[89497,66514],[4,3],[4,1],[3,-3],[3,-6],[-2,-20],[-5,-6],[-5,7],[-5,16],[9,-9],[-1,6],[-1,4],[-2,4],[-2,3]],[[85749,66729],[1,-2],[0,-1],[1,-1],[-3,-7],[-7,-9],[-4,-7],[-4,-15],[-3,-5],[-4,2],[-1,-9],[-2,-1],[-3,1],[-2,-1],[-4,-5],[-4,-2],[-4,2],[-3,5],[-2,6],[0,7],[0,8],[1,5],[1,5],[1,2],[3,0],[4,1],[10,-3],[6,1],[4,4],[4,7],[14,12]],[[85829,66940],[3,-5],[4,-5],[3,-5],[2,-8],[-2,-9],[-6,-18],[-3,-12],[-4,-7],[-4,-5],[-4,-3],[-5,3],[-2,9],[-1,8],[-1,4],[-6,4],[-1,8],[2,16],[-5,33],[1,7],[2,10],[1,22],[2,3],[4,3],[9,8],[5,-12],[3,-34],[3,-15]],[[85915,67122],[8,3],[6,-10],[1,-12],[-8,-5],[-4,9],[-1,2],[-1,2],[-2,-1],[-1,-2],[0,-1],[0,-3],[-1,-4],[-2,-3],[-1,3],[-1,1],[-2,8],[0,1],[-4,1],[-5,-2],[-3,1],[-1,5],[-1,14],[0,6],[-8,20],[-1,9],[4,3],[9,0],[-2,-11],[3,-3],[10,2],[-1,-4],[-2,-5],[-2,-5],[0,-4],[4,-6],[6,-5],[3,-4]],[[86119,67273],[0,-10],[-3,-15],[-4,-15],[-3,-9],[-5,-4],[-6,0],[-12,8],[17,27],[12,13],[4,5]],[[86029,67325],[1,-3],[2,-4],[1,-3],[0,-6],[-2,-3],[-2,0],[-2,0],[-2,0],[-3,-5],[-12,-9],[-4,-2],[-1,-1],[-1,-3],[-1,-4],[-1,-3],[-2,-2],[-6,-6],[-8,-25],[-5,-6],[-1,-2],[-9,-16],[-3,-3],[-7,5],[-4,0],[2,-8],[-2,-7],[-2,-4],[-3,-3],[-3,-2],[3,-6],[7,-9],[3,-6],[-14,-17],[-3,-1],[-1,-13],[-4,0],[-4,3],[-6,-4],[4,-4],[3,-8],[1,-9],[-1,-4],[-3,3],[-8,14],[-14,18],[-2,7],[1,9],[-1,8],[-3,7],[-3,-9],[-4,0],[-10,9],[-9,3],[-4,3],[-4,6],[0,3],[2,3],[3,1],[2,0],[3,-4],[7,5],[10,-5],[8,0],[5,17],[-10,0],[-4,4],[-3,8],[4,5],[3,5],[3,4],[7,3],[2,2],[5,8],[4,8],[1,1],[7,2],[6,-1],[5,3],[4,13],[6,-4],[5,3],[4,7],[3,10],[1,-6],[3,-4],[4,-3],[3,-3],[5,22],[7,12],[18,19],[-3,-21],[1,-6],[4,-2],[3,3],[3,7],[6,19],[-1,2],[-1,5],[0,5],[1,4],[5,-1],[2,-8],[3,-20]],[[86031,68032],[9,3],[2,-9],[-3,-14],[-6,-9],[-2,14],[-1,7],[1,8]],[[86081,68162],[1,-17],[8,-12],[-1,-2],[-1,-2],[-16,3],[-3,9],[-3,6],[-2,14],[5,8],[7,-5],[1,1],[1,-1],[1,0],[2,-2]],[[86298,68458],[-2,-21],[-6,-29],[-12,-22],[-7,-10],[-9,-3],[-8,-2],[-9,-1],[-13,8],[-3,9],[-5,22],[-6,28],[-2,16],[-1,17],[3,2],[10,0],[5,14],[5,11],[2,10],[6,0],[3,6],[7,-11],[12,-8],[9,-14],[11,-5],[10,-17]],[[86402,68734],[3,0],[0,-10],[3,-14],[4,-10],[-4,-8],[0,-19],[2,-23],[-7,-22],[1,-11],[0,-19],[-2,-8],[-3,-5],[-1,-10],[0,-9],[-5,-4],[-4,1],[-3,-11],[-3,-8],[0,-14],[-4,-10],[0,-9],[-1,-5],[3,-4],[1,-7],[-2,-7],[0,-6],[2,-9],[-4,-8],[0,-8],[-6,1],[-5,-3],[-5,-2],[-4,-6],[-2,-7],[-4,0],[-1,6],[-3,7],[1,8],[2,10],[-1,16],[-3,10],[-1,12],[1,6],[3,-3],[2,-1],[2,10],[7,13],[8,22],[3,18],[2,14],[0,9],[0,19],[-2,8],[1,5],[-2,5],[4,8],[4,10],[5,16],[0,7],[4,3],[2,13],[0,13],[6,17],[3,8],[2,3],[1,2]],[[86153,69541],[6,0],[3,-4],[2,-12],[-1,-7],[-5,-24],[-1,-6],[-5,-2],[-4,4],[-2,9],[1,10],[-3,6],[-2,9],[-1,11],[1,8],[2,3],[3,0],[6,-5]],[[86224,69724],[9,7],[4,1],[3,-8],[-9,-12],[-12,-56],[-8,-13],[-1,3],[0,6],[0,13],[-1,7],[-3,-2],[-6,-7],[-11,-1],[-5,-2],[-7,-5],[-5,15],[-3,9],[1,8],[1,4],[2,1],[4,1],[2,3],[6,11],[6,8],[4,4],[10,6],[6,8],[2,0],[2,-3],[1,-4],[1,-4],[2,0],[5,2]],[[86155,69744],[8,-14],[3,-25],[0,-50],[1,-5],[1,-4],[0,-4],[-1,-16],[0,-5],[-1,-3],[-3,-6],[-2,-3],[-7,-5],[-1,-4],[-6,-22],[-1,-3],[-6,-5],[-3,-4],[-6,-15],[-4,-5],[-7,-7],[-6,-6],[-5,0],[0,6],[4,31],[-3,-5],[-4,0],[-2,1],[-5,-5],[0,3],[0,6],[2,3],[8,15],[6,6],[4,1],[3,0],[3,1],[3,6],[-3,0],[-2,1],[-4,3],[-6,-4],[-5,5],[-3,11],[-2,13],[1,7],[1,5],[2,4],[2,4],[-2,9],[2,12],[3,12],[4,9],[3,13],[-2,12],[-6,18],[4,0],[2,-3],[2,-3],[3,-2],[4,1],[6,6],[7,3],[5,4],[5,3],[6,-1]],[[85799,69820],[4,-10],[2,-6],[0,-1],[-1,-2],[-5,0],[-6,1],[-11,-6],[-1,8],[-6,3],[-1,-2],[-3,-1],[-1,-3],[-1,-6],[1,-3],[1,-1],[5,-9],[-1,-7],[-1,-7],[-5,-9],[-4,5],[-6,14],[-6,0],[-14,-1],[-3,-6],[-9,11],[-6,2],[1,10],[2,7],[1,5],[1,5],[2,5],[2,1],[1,-2],[0,-13],[1,-5],[0,3],[4,16],[0,6],[1,6],[-1,7],[-1,6],[0,2],[-1,3],[-1,2],[0,4],[1,3],[1,6],[-2,10],[3,9],[2,4],[5,0],[2,-7],[4,-16],[2,2],[4,4],[6,3],[10,10],[2,7],[6,7],[1,-10],[0,-5],[0,-5],[5,-2],[4,-2],[2,-10],[-2,-23],[3,-9],[7,-8]],[[88830,70093],[6,-7],[7,-4],[7,-6],[4,-11],[-2,-8],[-7,-17],[-3,-4],[-4,1],[-5,4],[-4,6],[-3,13],[-9,23],[-1,9],[3,7],[4,3],[7,-9]],[[85860,70006],[3,-3],[17,13],[3,-12],[-2,-11],[-5,-5],[-5,-12],[-6,-1],[-5,-10],[-2,-8],[0,-9],[2,-9],[0,-4],[-1,-7],[-3,0],[-5,3],[-1,-8],[2,-5],[0,-8],[-1,-5],[-6,2],[1,12],[-2,12],[0,20],[2,8],[-4,14],[-3,3],[-10,4],[-2,2],[0,7],[5,4],[6,8],[4,-8],[6,8],[-4,12],[2,23],[5,3],[0,-15],[3,1],[2,2],[0,11],[-1,8],[1,12],[5,4],[1,11],[-2,8],[-1,6],[4,24],[2,-4],[0,-11],[-1,-5],[-1,-6],[2,-5],[2,-3],[-2,-12],[-1,-11],[-3,-9],[-1,-11],[-1,-11],[1,-17]],[[85987,70256],[2,-26],[-2,-8],[-4,-10],[-4,-8],[3,-4],[-3,-8],[-4,-3],[0,-6],[-3,-4],[0,-9],[-3,-12],[-12,-28],[-10,-12],[-10,-5],[-5,5],[-4,1],[0,6],[2,14],[3,-9],[6,-9],[5,2],[1,5],[-1,2],[-2,3],[-3,1],[-2,6],[2,8],[3,7],[6,-2],[-2,10],[-1,13],[9,12],[1,17],[0,14],[15,6],[4,14],[2,-2],[2,-6],[4,6],[-4,7],[0,9],[9,3]],[[86733,70483],[3,-5],[6,-8],[0,-2],[-5,-2],[-6,2],[-8,8],[-5,-2],[2,9],[4,4],[5,-1],[4,-3]],[[86048,70471],[7,-5],[0,-8],[-5,-8],[-6,-1],[-7,0],[-4,-12],[0,-11],[-3,2],[-6,9],[-3,8],[1,8],[-3,4],[-4,-4],[-2,7],[-1,10],[9,-7],[2,-1],[0,4],[-7,11],[-1,12],[0,7],[6,-1],[-2,11],[2,10],[2,6],[1,7],[3,-6],[19,-10],[0,-5],[-2,-8],[0,-6],[1,-6],[4,-6],[5,-4],[-2,0],[-2,-3],[-2,-1],[0,-3]],[[86731,70527],[-1,-3],[-1,-2],[-3,-3],[-2,12],[-4,13],[-2,14],[4,14],[7,5],[7,-2],[7,-5],[6,-6],[7,-20],[4,0],[4,4],[6,8],[1,0],[5,-1],[1,1],[2,3],[1,7],[1,2],[4,1],[7,-1],[4,0],[-3,-6],[-6,-14],[-2,-1],[-3,2],[-7,-4],[-2,-3],[-1,-4],[-1,-15],[0,-6],[-1,-6],[-3,2],[-7,0],[-2,2],[-1,5],[0,5],[0,6],[-3,5],[-2,-5],[-3,5],[-2,-3],[-1,-6],[-1,-4],[-4,-1],[-4,3],[-4,-2],[-2,4]],[[88746,70641],[2,19],[8,12],[9,0],[5,-14],[-4,-19],[-7,-12],[-8,-1],[-5,15]],[[86820,70647],[-6,7],[-15,-1],[-7,4],[5,10],[7,7],[3,9],[-3,15],[3,6],[3,4],[4,2],[3,0],[2,-4],[-1,-3],[0,-2],[-1,-2],[-2,-1],[3,-7],[0,-7],[0,-7],[1,-8],[7,6],[1,-11],[-3,-14],[-4,-3]],[[86943,70728],[-9,-9],[-3,3],[2,12],[2,3],[5,2],[1,3],[0,6],[-1,4],[-2,2],[-3,1],[5,12],[6,10],[6,3],[4,-13],[3,-18],[-1,-12],[-5,-9],[-10,0]],[[85919,70771],[1,8],[8,0],[1,-4],[-1,-5],[-5,-4],[-2,-8],[1,-10],[1,-7],[-5,-6],[-3,-1],[0,-3],[2,-2],[-1,-7],[-1,-9],[0,-7],[-1,-2],[-2,-1],[-1,-5],[0,-7],[-2,-10],[-3,-3],[-1,-5],[-3,-4],[-1,-5],[-3,1],[-1,-4],[-3,-3],[-2,5],[-1,1],[-3,7],[-3,2],[-3,-4],[-2,-1],[0,24],[2,14],[-1,15],[2,19],[2,4],[0,9],[2,14],[1,25],[2,8],[5,-1],[1,-4],[-1,-5],[0,-11],[2,0],[2,3],[2,1],[4,4],[4,0],[-1,5],[-1,4],[3,0],[3,-3],[3,-6],[0,-11],[3,-5]],[[88685,70839],[3,4],[3,7],[3,2],[0,-10],[-1,-19],[-4,-19],[-4,-8],[-4,11],[0,7],[3,21],[1,4]],[[87500,70965],[7,-10],[0,-7],[-3,-8],[-4,-8],[-2,-13],[-3,-15],[-8,-12],[-7,-18],[-8,-21],[-1,-22],[-1,-5],[1,-7],[0,-7],[5,-7],[1,-10],[2,-7],[6,-13],[3,-10],[-6,-4],[-8,-4],[-7,-7],[-8,-5],[-6,-6],[-9,-15],[-14,-5],[-6,-1],[-1,11],[-6,5],[-1,2],[4,11],[2,8],[-10,-6],[-6,13],[-2,14],[3,8],[4,15],[6,-3],[5,4],[21,70],[7,8],[5,5],[3,4],[1,4],[3,10],[1,6],[4,12],[11,9],[4,3],[7,18],[5,13],[6,3]],[[85958,70972],[3,-6],[4,-7],[0,-6],[-1,-5],[-3,-15],[-5,-23],[-12,-20],[-6,-17],[1,-17],[-6,-11],[-1,-9],[5,3],[5,9],[0,-4],[-2,-8],[-1,-4],[1,-10],[3,-7],[3,-2],[-2,-8],[-4,-4],[-2,-4],[-3,-10],[-7,-4],[-5,2],[-6,12],[5,6],[6,-4],[1,17],[-4,3],[-5,-11],[-3,0],[0,11],[0,7],[1,7],[-3,-5],[-3,-6],[2,-10],[-2,-3],[-4,7],[-7,-3],[-5,3],[2,7],[7,1],[3,3],[1,23],[-2,11],[2,5],[3,1],[1,-1],[2,4],[4,8],[-1,3],[-4,-8],[-4,-1],[-1,7],[4,15],[4,19],[6,9],[0,4],[-5,11],[-5,-3],[0,8],[4,11],[1,9],[4,27],[4,0],[7,0],[5,-2],[3,6],[5,12],[5,1],[-2,5],[1,6],[4,-1],[4,4],[4,0],[1,-5],[3,-5],[2,-4],[-1,-9],[-2,-3],[-2,-3],[2,-1],[3,-2],[0,-7],[-2,-9],[-2,-2],[-3,3],[-3,-1]],[[88726,71067],[6,-5],[3,-9],[2,-11],[1,-14],[-1,-14],[-1,-7],[-3,-1],[-6,0],[-17,15],[-2,10],[0,28],[1,18],[13,-5],[4,-5]],[[86947,71798],[3,7],[6,-4],[6,-8],[4,-7],[-4,0],[-11,0],[-1,1],[-2,3],[-1,4],[0,4]],[[87046,71952],[4,-10],[-1,-29],[-2,-7],[-3,-3],[-2,7],[-3,0],[-3,-3],[-2,-4],[3,-4],[1,-6],[-1,-6],[-3,-4],[-2,0],[-11,4],[-6,0],[-2,2],[-13,20],[-3,2],[-1,6],[2,37],[4,11],[23,27],[0,-7],[2,-3],[3,-1],[3,-1],[0,-2],[1,-5],[1,-3],[2,-2],[3,-2],[2,-2],[1,-4],[2,-5],[1,-3]],[[88460,73015],[10,-2],[13,6],[9,-1],[0,-23],[-2,-11],[-12,-32],[-3,-11],[-4,-22],[-3,-9],[-33,-38],[-29,-18],[-6,-1],[-3,1],[-3,3],[-2,4],[-1,6],[1,6],[3,3],[13,4],[3,4],[1,8],[0,26],[3,10],[9,17],[4,9],[-8,18],[-19,-11],[-4,17],[0,14],[1,13],[2,11],[3,11],[11,27],[5,19],[5,9],[5,6],[3,6],[12,23],[7,9],[12,33],[2,4],[3,2],[7,0],[2,-3],[0,-6],[-4,-39],[-5,-36],[-12,-47],[-2,-11],[0,-11],[2,-7],[2,0],[2,10]],[[88763,75487],[4,-7],[-3,-12],[-9,-22],[-2,-16],[0,-14],[-1,-14],[-5,-13],[-10,-16],[-3,2],[-3,5],[-1,6],[0,7],[-1,5],[-1,5],[0,13],[0,5],[-3,7],[-1,6],[1,11],[3,11],[4,9],[4,5],[3,1],[6,3],[3,0],[4,2],[8,9],[3,2]],[[90363,76286],[10,-10],[4,-7],[1,-5],[-4,-4],[-10,-4],[-3,-4],[-2,-8],[-3,-2],[-3,2],[1,10],[3,5],[8,6],[4,5],[-36,28],[24,-7],[6,-5]],[[90124,76493],[2,0],[-2,0]],[[89257,77221],[2,-8],[-2,-6],[-3,-6],[-2,-8],[-2,-3],[-10,-11],[-4,-1],[-5,2],[-15,14],[-9,12],[-5,14],[4,12],[-1,3],[-2,6],[-1,3],[10,17],[4,3],[6,3],[9,-5],[9,-9],[7,-11],[10,-21]],[[89180,77386],[5,-5],[1,-10],[-4,-61],[-2,-17],[-4,-17],[-2,8],[0,3],[2,5],[-7,21],[-4,14],[-1,12],[2,29],[-1,6],[-8,20],[2,2],[1,1],[2,-1],[1,-2],[1,-3],[4,-11],[3,0],[5,4],[4,2]],[[89130,66589],[-1,9],[2,3],[1,-4],[-2,-8]],[[85502,66303],[0,-17],[-7,-3],[-7,6],[-1,10],[3,3],[8,-2],[4,3]],[[85553,66514],[2,0],[-2,-15],[-5,-16],[-7,-13],[-7,-5],[3,9],[14,32],[2,8]],[[86171,68515],[7,-4],[5,-10],[0,-7],[-6,0],[-2,-7],[-6,-2],[-5,11],[0,8],[-1,5],[-5,-4],[-2,9],[-4,5],[-2,7],[6,0],[7,-8],[3,3],[5,-6]],[[87323,70933],[-1,-5],[1,-5],[1,-7],[1,-7],[-1,-17],[-6,-32],[-2,5],[-2,3],[-4,1],[-4,0],[0,3],[6,2],[1,5],[-3,4],[-6,-3],[-4,-7],[-2,-10],[-4,-9],[-5,-2],[1,21],[-1,7],[-6,5],[-5,-1],[-5,-3],[-4,0],[-3,8],[3,4],[0,6],[0,7],[1,7],[8,-5],[7,4],[12,13],[3,2],[10,2],[10,4],[3,0]],[[89292,64815],[2,2],[2,0],[1,-4],[-1,-4],[-2,-1],[-2,3],[0,4]],[[92769,64854],[3,4],[1,-3],[-1,-5],[-1,0],[-2,1],[0,3]],[[89246,65522],[-4,6],[-1,8],[1,6],[4,1],[2,-4],[1,-6],[-1,-7],[-2,-4]],[[86469,65838],[3,2],[5,-4],[2,-6],[-1,-6],[-2,-2],[-2,0],[-2,2],[-3,7],[0,7]],[[85339,66222],[3,1],[2,-2],[1,-6],[-2,-5],[-3,0],[-3,-1],[-2,3],[2,6],[2,4]],[[85681,66488],[0,-12],[-2,-4],[-4,0],[-6,6],[-1,2],[-2,1],[-1,3],[0,4],[1,2],[2,0],[2,5],[4,4],[4,-2],[2,-5],[1,-4]],[[89496,66546],[-1,7],[0,10],[2,6],[2,-1],[1,-6],[0,-6],[-2,-6],[-2,-4]],[[89498,66814],[-5,8],[1,4],[3,-2],[1,-10]],[[89466,66884],[-1,6],[1,2],[1,-3],[-1,-5]],[[85620,66973],[1,-4],[1,-2],[0,-7],[-3,5],[0,9],[1,-1]],[[85997,67910],[-1,5],[1,6],[2,3],[0,-1],[1,-1],[1,0],[1,-2],[1,-7],[0,-7],[-4,0],[-2,4]],[[85979,68178],[0,4],[2,1],[2,-1],[2,-3],[1,-4],[0,-2],[-4,-2],[-1,2],[-2,5]],[[86095,68216],[0,-3],[1,-1],[-2,-4],[-5,3],[-3,2],[-3,6],[0,1],[-1,2],[1,3],[0,2],[3,4],[-1,5],[1,0],[3,3],[1,-7],[2,-6],[3,-10]],[[88973,68527],[3,0],[3,-4],[-2,-5],[-4,-1],[-1,4],[0,3],[1,3]],[[85951,68737],[1,1],[1,-2],[-1,-2],[-1,3]],[[86095,68736],[4,-4],[0,-5],[-3,-6],[-3,-3],[-3,0],[-4,4],[-1,1],[0,2],[-1,5],[1,3],[2,2],[3,4],[1,2],[3,-2],[1,-3]],[[88900,69091],[0,1]],[[88900,69092],[1,-1],[-1,0]],[[88900,69091],[-1,0],[0,2],[1,-1]],[[88820,69688],[1,11],[4,-17],[-5,6]],[[88693,70398],[-1,0],[1,0]],[[88783,70537],[2,-8],[0,-4],[-2,-5],[-3,-2],[-5,1],[-3,5],[-1,10],[4,9],[5,1],[2,-4],[1,-3]],[[88714,75060],[1,-2],[1,-3],[-2,-6],[-8,-6],[-1,2],[-1,8],[0,5],[1,3],[2,0],[2,-1],[5,0]],[[92767,64866],[-3,-10],[-4,11],[4,3],[3,-4]],[[84778,65184],[2,-6],[2,-12],[-4,-6],[-10,-3],[-5,2],[-3,7],[1,8],[2,2],[2,1],[1,6],[1,6],[4,1],[4,-4],[3,-2]],[[85380,65994],[0,-2],[0,-4],[-1,-8],[-1,-8],[-1,-8],[-2,-6],[-2,3],[-1,7],[0,6],[0,3],[1,12],[2,8],[3,1],[2,-4]],[[89473,66890],[1,2],[1,-3],[-2,-5],[0,6]],[[86092,69342],[-2,-2],[0,-3],[1,-3],[-1,-4],[0,-4],[1,-2],[0,-2],[0,-4],[-2,-4],[-3,0],[-3,-1],[-3,-5],[-4,1],[-2,4],[-2,1],[-1,2],[0,3],[-1,4],[-2,5],[0,4],[2,3],[-1,1],[-3,-2],[-2,-6],[-3,-1],[-1,2],[0,4],[1,6],[3,7],[3,4],[6,-3],[10,-16],[2,-2],[1,4],[-1,6],[1,3],[4,1],[2,-1]],[[86178,69599],[5,-4],[1,-4],[-1,-4],[-2,-6],[-3,-5],[-3,-2],[-3,-1],[-2,-3],[-1,2],[0,6],[0,6],[2,6],[1,3],[2,1],[0,1],[1,2],[3,2]],[[86234,69774],[2,-4],[0,-6],[0,-10],[-2,-6],[-4,-2],[-2,-2],[1,-5],[-2,2],[-3,5],[-1,7],[2,7],[-1,5],[-3,3],[0,4],[4,12],[1,0],[0,-2],[1,1],[2,3],[3,2],[2,-2],[2,-4],[-1,-4],[-1,-4]],[[86822,69860],[2,-5],[1,-5],[-1,-5],[-2,-4],[-4,-3],[-1,2],[-1,8],[0,7],[1,7],[1,3],[2,-2],[1,-1],[1,-2]],[[85805,69905],[0,-2],[2,-8],[0,-4],[-4,-8],[-3,-9],[-2,-1],[-3,1],[-5,5],[-2,2],[-1,6],[0,19],[0,4],[0,4],[3,1],[3,-3],[2,-7],[0,-6],[1,-4],[1,-1],[1,1],[0,2],[-1,2],[0,5],[-2,5],[-1,6],[2,2],[7,-9],[2,-3]],[[85819,69938],[1,-6],[1,-13],[-1,-7],[-2,-1],[-1,-3],[1,-2],[0,-4],[-1,-5],[-1,0],[-1,5],[-1,2],[-3,1],[-1,2],[1,2],[0,3],[-1,3],[-1,2],[-2,2],[-3,9],[-2,1],[-2,-2],[-1,4],[3,5],[5,-2],[4,-9],[2,-1],[-1,7],[1,2],[2,-3],[1,3],[1,6],[1,3],[1,-2],[0,-2]],[[85840,69953],[1,-4],[0,-2],[-1,-20],[-1,-4],[-2,0],[0,5],[-1,1],[-2,4],[-2,1],[-4,-3],[-2,1],[-1,3],[-1,2],[0,1],[-1,9],[0,5],[2,1],[5,-5],[1,0],[0,3],[-2,3],[-1,3],[0,4],[-1,2],[0,3],[1,1],[0,2],[0,2],[2,0],[5,-3],[3,-5],[1,-4],[1,-6]],[[85870,70190],[2,-9],[2,-4],[0,-5],[-4,-6],[-2,-7],[-2,0],[-5,1],[-3,4],[-2,3],[-1,0],[-2,0],[1,5],[3,9],[4,3],[3,1],[4,6],[2,-1]],[[85987,70305],[5,2],[1,-5],[-3,-6],[-4,-3],[-4,1],[-3,3],[-2,-1],[-1,-3],[-1,0],[-3,0],[1,6],[5,8],[5,6],[3,0],[1,-4],[0,-4]],[[86844,70613],[1,-1],[0,-7],[-1,-6],[0,-4],[-1,-2],[-1,-3],[0,-6],[-4,-6],[-5,-3],[-4,4],[0,8],[2,7],[3,5],[2,2],[1,1],[2,2],[4,6],[1,3]],[[86970,70708],[1,1],[1,-3],[-2,-6],[-14,-25],[-5,-4],[-3,4],[0,11],[1,8],[2,2],[1,0],[2,0],[-1,5],[-2,8],[2,8],[6,3],[4,-4],[2,-4],[2,-3],[3,-1]],[[86871,70722],[5,-5],[1,-7],[-1,-6],[-3,-3],[-2,-1],[0,1],[0,4],[-2,1],[-2,0],[-7,6],[-3,5],[2,6],[4,2],[5,-2],[3,-1]],[[86922,70769],[2,4],[1,-5],[-1,-14],[-3,-11],[-1,-7],[-3,-5],[-6,-2],[-5,-1],[-4,4],[-2,8],[1,7],[2,3],[1,1],[8,6],[3,0],[3,4],[4,8]],[[86760,70785],[1,-5],[1,-5],[0,-3],[-6,-10],[-8,-13],[-5,-3],[-3,4],[0,5],[5,15],[4,8],[4,5],[4,3],[3,-1]],[[87142,70840],[3,-7],[0,-8],[-1,-5],[-2,-2],[-2,-3],[-1,-2],[-2,2],[-2,7],[1,7],[3,8],[1,3],[2,0]],[[87556,70860],[10,14],[5,-11],[-10,-11],[-3,3],[-2,5]],[[87235,70886],[-3,2],[0,2],[0,1],[2,3],[3,0],[4,6],[4,1],[1,-1],[2,-4],[2,0],[0,-1],[0,-5],[-5,-13],[-2,1],[-3,3],[0,1],[-5,4]],[[88025,70899],[2,4],[2,-1],[0,-4],[-1,-5],[-4,-4],[-2,-3],[-1,5],[-2,5],[6,3]],[[88024,70920],[2,4],[4,1],[-2,-5],[0,-4],[-4,-2],[-4,-5],[-5,-2],[-2,3],[4,4],[7,6]],[[87999,71124],[3,0],[4,-9],[0,-7],[-3,-2],[0,-4],[-2,0],[-2,22]],[[88068,72472],[-1,-4],[0,-5],[0,-6],[-2,-4],[-4,-4],[-5,0],[-5,-3],[-4,-4],[-3,0],[-4,-3],[-1,0],[-2,7],[-6,11],[-3,10],[2,4],[2,-2],[1,-4],[2,-2],[1,3],[2,1],[3,0],[2,2],[2,3],[2,0],[2,-1],[3,-3],[2,-4],[3,1],[2,2],[3,7],[4,2],[2,-4]],[[84334,65713],[-1,0],[0,4],[1,-4]],[[84317,65726],[-4,0],[-5,-2],[1,7],[4,2],[2,0],[2,-7]],[[84353,65825],[0,-1],[-1,2],[1,-1]],[[34402,78182],[-1,-3],[-2,-3],[0,-3],[-1,-4],[4,-3],[2,-1],[-7,-5],[-7,-3],[-8,1],[-5,7],[6,13],[3,6],[5,5],[3,2],[5,1],[4,-2],[-1,-8]],[[34368,78242],[11,-14],[-4,-18],[-11,-17],[-16,-17],[-3,-2],[-4,3],[-2,8],[1,4],[0,5],[-5,6],[-1,7],[5,9],[10,14],[4,23],[-2,24],[-14,48],[-1,9],[-1,22],[-1,9],[0,6],[2,7],[3,5],[3,4],[4,0],[3,-3],[-5,-6],[-3,-5],[0,-7],[4,-6],[5,-4],[9,-3],[15,-17],[0,-6],[0,-8],[-1,-8],[-4,-5],[-1,-6],[-2,-5],[-3,-3],[-2,1],[0,3],[-1,3],[-1,1],[-2,0],[-4,-4],[-4,2],[-2,0],[0,-6],[1,-3],[2,-1],[1,1],[3,-2],[1,0],[2,-1],[1,-2],[1,-4],[-1,-3],[-1,-2],[-1,-2],[0,-24],[2,-7],[2,-3],[8,0]],[[45954,89784],[-13,-13],[-49,-20],[-22,-14],[-26,-6],[-9,-6],[-6,-10],[7,-2],[3,-3],[1,-5],[2,-1],[6,-11],[1,-3],[2,-3],[-1,-7],[-4,-10],[-2,-4],[-27,-22],[-4,-2],[-18,-1],[-7,-6],[-5,-13],[9,-6],[4,-2],[16,-1],[4,-4],[1,-11],[-3,-2],[-5,-5],[-3,-2],[6,-4],[31,-1],[18,-7],[13,1],[23,18],[14,2],[6,-3],[6,-6],[3,-9],[2,-13],[2,-7],[4,-3],[3,0],[2,-3],[1,-6],[3,-14],[0,-6],[-1,-2],[-3,-4],[-2,-2],[0,-3],[1,-6],[-1,-3],[-6,-14],[-1,-4],[-3,-3],[-18,-20],[-21,-13],[-6,-7],[1,-11],[-6,-8],[-14,-14],[8,1],[8,5],[13,15],[-5,-12],[-8,-13],[-3,-11],[10,-4],[10,2],[22,11],[59,15],[22,10],[11,2],[9,-8],[-12,-25],[-7,-6],[1,-5],[2,-5],[1,-2],[1,-2],[7,-4],[17,-10],[5,-6],[-15,-4],[-8,-6],[-7,-15],[-14,-15],[-6,-13],[-21,-22],[-4,-8],[-3,-9],[-2,-10],[4,5],[6,13],[3,3],[3,1],[9,9],[3,4],[5,9],[35,46],[6,4],[7,-2],[22,-14],[-4,5],[-8,8],[-3,6],[61,-32],[8,-1],[30,7],[5,-1],[4,-3],[2,-7],[0,-6],[-1,-4],[-4,-1],[0,-4],[9,1],[3,-2],[3,-3],[0,-4],[0,-6],[-2,-7],[2,-4],[3,-3],[5,-4],[13,17],[7,4],[8,-2],[2,-2],[0,-4],[0,-3],[0,-2],[2,-1],[4,1],[2,0],[9,-10],[2,-3],[1,-13],[-4,-8],[-6,-6],[-2,-5],[0,-4],[3,-11],[1,-5],[-2,-2],[-10,-7],[3,-3],[0,-5],[-1,-5],[0,-7],[-9,-6],[-26,4],[-11,-6],[7,-5],[22,-7],[1,-10],[-7,-6],[-8,-4],[-14,0],[-6,-2],[-12,-6],[-23,-4],[-7,-4],[4,-6],[44,15],[14,-1],[26,6],[9,-2],[14,-8],[7,-7],[2,-7],[2,-3],[-7,-5],[-11,-16],[-6,-3],[-35,-8],[-38,0],[-16,-4],[-17,0],[9,-6],[32,6],[43,-4],[19,4],[10,0],[3,-2],[-1,-4],[-4,-7],[-1,-3],[0,-3],[0,-2],[-1,-3],[-11,-5],[-9,0],[-9,-4],[0,-4],[22,4],[5,-4],[0,-4],[-3,0],[-3,-2],[-2,-3],[-2,-3],[9,0],[2,-1],[3,-3],[1,-3],[1,-1],[3,2],[5,8],[2,2],[0,2],[9,14],[11,13],[1,-9],[0,-13],[-1,-12],[-2,-7],[0,-4],[5,-4],[2,-5],[-2,-7],[-5,-9],[-6,-4],[-11,-3],[-6,-5],[5,-8],[3,-5],[-1,-3],[-4,-2],[-9,-8],[-4,-2],[-20,4],[-18,-3],[-5,3],[-3,6],[-2,8],[-3,7],[-5,3],[-4,2],[-9,5],[-15,5],[-15,14],[-9,3],[2,-7],[3,-5],[3,-3],[3,-2],[-10,-10],[-56,-2],[0,-4],[87,-8],[3,-2],[4,-5],[4,-5],[1,-6],[2,-3],[13,-11],[29,-12],[5,-9],[-11,-8],[-14,2],[-24,11],[-28,-5],[-17,7],[-5,-2],[17,-11],[40,-8],[18,-14],[2,-3],[2,-6],[1,-5],[-3,-2],[-4,-2],[-7,-8],[-4,-2],[-29,10],[-8,-7],[30,-11],[5,-4],[0,-7],[-8,-2],[-31,1],[-9,4],[-2,-3],[-2,-2],[-6,-4],[0,-4],[9,-10],[4,-6],[4,-8],[-4,-2],[-13,-10],[-62,-12],[-9,2],[-6,4],[-4,4],[-8,23],[-7,6],[-7,14],[-4,3],[-22,5],[3,-4],[3,-1],[6,0],[4,-3],[0,-6],[-2,-6],[-1,-5],[4,-5],[15,-7],[4,0],[0,-4],[0,-8],[3,-9],[6,-8],[3,-4],[14,-4],[6,-5],[-3,-7],[1,-4],[-46,15],[-14,-11],[4,-5],[11,-5],[6,-6],[2,-7],[0,-5],[-3,-5],[-5,-3],[-37,0],[-4,-4],[4,-8],[5,-7],[3,1],[3,-7],[6,-3],[5,-1],[1,5],[12,2],[17,24],[9,6],[1,-3],[-4,-7],[-25,-28],[-4,-7],[-1,-5],[-1,-13],[-1,-4],[-9,-15],[-1,-6],[0,-3],[1,-2],[0,-4],[0,-3],[-2,-2],[-1,-1],[-1,-1],[-1,-4],[-1,-3],[-3,-9],[-1,-2],[-29,-3],[-20,-6],[-7,-3],[12,9],[25,6],[13,5],[-7,4],[-31,5],[-2,-1],[-1,-2],[1,-8],[-1,-2],[-2,-1],[-6,-6],[-4,-1],[-1,-2],[-6,-10],[-3,-3],[-15,-9],[-6,-6],[-6,-7],[-4,-8],[2,7],[1,3],[1,3],[0,4],[-2,0],[-2,-6],[-4,-6],[-5,-3],[-3,-2],[-1,-2],[1,-4],[2,-4],[3,-2],[6,1],[2,1],[3,2],[1,-8],[3,-8],[-6,0],[-9,-10],[-5,-2],[-13,1],[-6,2],[-5,5],[-9,10],[-5,4],[-6,2],[-2,-2],[-5,-8],[-3,-2],[-3,1],[-4,2],[-3,1],[-4,-4],[4,-4],[-3,-3],[-3,-1],[-7,0],[5,16],[0,4],[-8,-2],[-5,0],[-2,4],[-1,9],[-3,6],[-4,2],[-3,-3],[0,-4],[2,-3],[2,-2],[1,-5],[1,-6],[-4,3],[-8,2],[-4,3],[0,4],[3,8],[-4,13],[-7,11],[-6,5],[-6,6],[-11,4],[-7,2],[5,-4],[10,-3],[5,-3],[3,-7],[5,-14],[3,-5],[-2,-3],[-3,-1],[-2,1],[-3,3],[0,-5],[6,-4],[1,-9],[-2,-11],[-5,-8],[-6,-4],[-16,4],[-6,-4],[4,-3],[4,-1],[9,0],[-7,-6],[-18,-6],[-16,-1],[-17,-6],[-7,-6],[-1,3],[-2,3],[-1,3],[-7,-10],[-25,-19],[23,7],[6,-3],[-10,-7],[-72,-21],[-10,-9],[13,0],[0,-3],[-17,-14],[-6,-2],[-3,-2],[-10,-11],[-6,-4],[-3,-3],[-2,-5],[-3,6],[-3,1],[-2,-3],[-3,-4],[0,-4],[3,0],[0,-4],[-16,-11],[-6,-1],[1,8],[-15,-10],[-7,-9],[-4,-9],[4,-1],[4,3],[3,4],[-7,-14],[-4,-5],[-20,-16],[-14,-20],[-8,-4],[3,1],[4,3],[3,5],[1,7],[-42,-33],[-37,-10],[-6,1],[-4,5],[2,-3],[2,-3],[3,-1],[2,-1],[-5,-3],[-4,-1],[1,-6],[-1,-8],[-1,-7],[-3,-3],[-1,2],[-1,4],[0,8],[-1,2],[-5,4],[-10,14],[-3,2],[-4,2],[-3,-2],[0,-5],[0,-9],[0,-11],[0,-7],[-1,-4],[-4,2],[-1,5],[2,15],[-1,6],[-2,6],[-2,4],[-1,-4],[0,-15],[-1,-8],[-1,-7],[4,-5],[-1,-4],[-5,-3],[-5,0],[3,13],[0,6],[-2,5],[1,5],[1,2],[1,1],[3,2],[0,3],[-1,3],[-1,0],[2,16],[0,9],[-1,4],[-1,2],[-3,5],[-3,2],[-2,-3],[0,-15],[0,-7],[3,-5],[-5,-4],[-5,1],[-5,-1],[-3,-8],[4,-6],[1,-7],[2,-6],[5,-5],[-5,-6],[-11,-3],[-20,1],[-4,1],[-10,7],[-4,-2],[-3,-4],[-3,0],[-1,10],[-34,-20],[-39,-12],[-25,-6],[3,4],[1,5],[0,7],[-1,6],[-2,-9],[-4,-6],[-4,-1],[-4,4],[1,-4],[0,-1],[0,-1],[1,-2],[0,-5],[-36,-24],[3,13],[7,7],[9,4],[8,0],[0,5],[-19,9],[-6,7],[-2,-8],[1,-3],[1,-5],[-7,-5],[-7,1],[-7,3],[-8,1],[6,-5],[0,-3],[-7,0],[-3,-1],[-3,-4],[-5,3],[-5,-4],[-4,-6],[-1,-7],[-2,-10],[-4,-8],[-5,-2],[-5,6],[-3,-5],[-2,-5],[2,-5],[4,-1],[4,1],[5,6],[5,1],[21,-3],[8,3],[-12,-22],[-7,-6],[-8,4],[1,1],[1,0],[0,2],[-11,0],[0,-5],[-7,0],[-5,-3],[4,1],[2,-2],[1,-4],[-1,-7],[21,1],[4,3],[-7,-20],[-10,-18],[-13,-13],[-28,-13],[-18,-13],[-18,-4],[-9,12],[4,5],[8,2],[2,4],[4,6],[4,3],[9,1],[0,4],[-8,0],[-15,-5],[-8,1],[-19,11],[-5,1],[1,-4],[-2,-1],[-1,-1],[-1,-2],[3,-4],[6,-10],[2,-2],[3,-4],[1,-8],[1,-9],[1,-4],[11,0],[7,0],[5,-1],[-60,-9],[-34,-16],[-59,-15],[-14,1],[-53,16],[-23,-6],[-8,2],[3,0],[2,1],[1,3],[-10,2],[-5,2],[-4,4],[-6,-8],[-37,8],[-4,1],[-14,11],[-23,4],[-32,21],[-45,12],[-9,8],[4,0],[2,3],[0,2],[-4,3],[-3,0],[-5,-3],[-3,-1],[-27,4],[1,-3],[28,-5],[-73,4],[-5,8],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,3],[-1,0],[-2,1],[2,-8],[-21,-1],[-11,3],[-42,34],[-4,4],[4,-3],[4,-1],[5,1],[4,3],[-3,1],[-7,3],[-3,0],[1,10],[1,2],[-5,-7],[-5,-3],[-5,1],[-6,6],[0,3],[9,-3],[-3,9],[-5,5],[-6,4],[-5,6],[-4,10],[-3,7],[-3,4],[-7,-1],[0,-4],[10,-13],[5,-10],[4,-9],[-18,16],[-9,10],[-5,14],[1,1],[3,3],[-2,3],[-4,10],[8,8],[9,5],[18,3],[9,-4],[15,-16],[10,-1],[-5,6],[-7,11],[-4,4],[-21,12],[9,14],[1,6],[-1,8],[-3,3],[-3,-3],[1,-4],[0,-4],[-3,-6],[-12,-14],[-8,-9],[-5,-5],[-7,-2],[-2,-3],[-1,-5],[1,-7],[-1,-6],[-2,-6],[-1,-1],[-13,7],[-12,10],[-10,4],[-19,15],[18,0],[3,-2],[7,-6],[4,0],[1,3],[3,1],[10,0],[0,4],[-8,0],[0,4],[1,0],[2,0],[1,0],[0,4],[-20,-5],[-7,1],[0,4],[10,11],[2,18],[-3,16],[-11,3],[0,-4],[8,-3],[-1,-8],[-5,-9],[-11,-14],[-6,-5],[-8,-1],[-7,4],[3,-10],[1,-2],[-12,11],[-25,16],[-35,13],[-12,8],[-7,3],[-7,5],[-5,9],[1,5],[0,5],[-3,14],[22,-1],[12,2],[8,7],[-21,0],[-13,7],[-5,1],[-14,-3],[-3,-3],[-3,-3],[-9,-9],[-3,-2],[0,-4],[14,-6],[8,-5],[3,-9],[-6,3],[-12,1],[-13,-1],[-8,-3],[-4,-6],[3,-11],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-81,-10],[-10,6],[-9,10],[-9,5],[-9,2],[-46,-16],[-12,-1],[-4,1],[-14,-5],[-75,16],[-6,-4],[-5,-7],[-5,-5],[-6,4],[4,4],[-7,0],[-10,-6],[-9,-3],[-5,-5],[-3,-2],[-3,0],[-27,2],[-6,-2],[-2,-2],[-1,-2],[-2,-3],[-2,-1],[-4,2],[-4,8],[-3,2],[2,6],[2,4],[2,4],[0,6],[-1,7],[-2,3],[-3,2],[-3,5],[4,6],[5,22],[3,4],[12,0],[2,2],[-1,6],[-3,0],[-6,-4],[-6,2],[-6,4],[-4,7],[-2,12],[4,11],[1,5],[0,7],[0,12],[0,5],[0,5],[1,5],[3,4],[4,3],[4,-2],[8,-9],[10,-6],[8,-11],[6,-14],[4,-15],[-4,0],[5,-7],[6,-2],[28,-1],[6,1],[5,5],[-4,4],[2,5],[4,4],[3,3],[4,2],[14,2],[10,7],[3,1],[3,-1],[7,-6],[4,-1],[7,2],[14,11],[23,5],[8,5],[6,9],[3,-3],[1,-1],[2,2],[2,2],[0,4],[-5,5],[-7,4],[-7,2],[-4,-2],[3,9],[7,5],[7,0],[6,-2],[-3,-1],[-5,-4],[5,-2],[6,-1],[5,1],[5,2],[0,5],[-6,0],[4,3],[2,1],[-17,15],[-10,4],[-9,1],[8,6],[42,-7],[2,-2],[1,-3],[2,-2],[9,-5],[4,1],[4,4],[-3,-1],[-3,1],[-3,1],[-2,3],[3,5],[2,1],[2,2],[-5,4],[7,3],[10,-3],[4,0],[5,0],[6,12],[-10,-5],[-5,-1],[-2,4],[2,7],[4,4],[9,4],[-5,3],[-9,1],[-8,-1],[-7,-3],[2,10],[-3,4],[-5,2],[-8,-1],[-3,-1],[-2,-1],[-2,-3],[-11,2],[8,6],[3,5],[-1,9],[17,11],[8,9],[6,10],[5,12],[3,4],[4,3],[6,1],[13,-2],[5,0],[-6,2],[-2,3],[-2,0],[11,8],[6,3],[7,1],[38,-9],[6,1],[5,7],[3,5],[-12,-7],[-7,3],[0,4],[3,0],[2,1],[4,3],[1,3],[-1,0],[-1,0],[0,1],[1,0],[-50,3],[-24,-5],[-21,-18],[-1,-2],[-1,-4],[-1,-3],[-3,-3],[-2,-2],[-5,-2],[-3,0],[-4,-2],[-13,-8],[-4,-5],[-10,-9],[-13,2],[-25,9],[0,4],[11,7],[11,10],[10,12],[6,3],[6,-3],[5,5],[12,3],[5,4],[-24,2],[-8,-2],[-5,-4],[-5,-1],[-4,3],[-5,10],[4,6],[0,7],[0,8],[2,9],[2,1],[3,-2],[1,0],[2,10],[1,5],[4,8],[0,7],[7,6],[32,15],[16,1],[-1,5],[-3,3],[-3,1],[-4,0],[0,3],[5,5],[10,13],[10,4],[4,5],[3,2],[4,1],[11,-1],[-1,-11],[6,-1],[7,-1],[4,-6],[3,-4],[23,-1],[-4,3],[-10,-1],[-5,1],[-4,4],[-6,10],[-5,3],[11,4],[0,4],[-28,0],[0,4],[16,9],[5,5],[4,1],[22,-3],[0,4],[-21,4],[-7,0],[-18,-15],[-7,-1],[0,4],[7,7],[3,4],[2,6],[-12,-11],[-3,-2],[-2,-3],[-2,-14],[-3,-3],[-3,-2],[-12,-10],[-14,-5],[-5,-4],[2,-8],[-8,3],[-8,-2],[-16,-13],[-7,-7],[-4,-3],[-4,2],[-3,6],[0,6],[4,13],[-5,-2],[-3,-7],[-1,-9],[0,-9],[-1,-3],[-7,-11],[-1,-5],[0,-5],[0,-3],[-2,-4],[-10,0],[-2,-2],[-1,-2],[-2,-2],[-3,-1],[-2,0],[-5,2],[-5,5],[-4,8],[-3,9],[-2,-4],[-2,-2],[-2,-1],[-3,-1],[4,7],[3,10],[1,8],[-2,7],[1,1],[2,3],[-2,2],[-2,2],[-2,1],[-3,0],[1,2],[3,6],[0,3],[-13,-8],[-8,-4],[-6,1],[-5,7],[-2,10],[1,9],[4,6],[0,4],[-5,0],[-3,5],[-3,5],[-1,2],[-4,2],[-4,4],[-4,5],[-2,6],[6,-3],[8,-7],[7,-4],[7,5],[-6,0],[2,7],[3,4],[3,3],[4,2],[-3,4],[-1,0],[0,4],[32,15],[8,10],[0,4],[-17,-14],[-9,-4],[-9,-2],[-8,-5],[-8,-8],[-8,-5],[-6,5],[4,3],[8,10],[5,5],[3,5],[3,6],[-2,4],[3,1],[1,2],[4,5],[-7,7],[-8,2],[-18,-1],[4,8],[-5,0],[1,6],[6,12],[2,7],[-3,-1],[-2,-2],[-3,-4],[-1,-5],[-2,5],[-2,2],[-3,0],[-3,-3],[0,-4],[-15,4],[-5,-2],[-8,-9],[-4,-2],[0,-4],[2,-1],[5,-3],[-25,-5],[-7,5],[7,-1],[3,1],[2,2],[-1,3],[-2,5],[-4,5],[-2,2],[-30,0],[5,-5],[14,-8],[0,-4],[-7,0],[-13,11],[-8,1],[2,0],[-35,3],[-33,0],[-39,3],[-16,15],[-15,1],[-27,-5],[0,-2],[-5,-8],[-2,-2],[-3,-3],[-3,-2],[-3,-1],[-33,10],[3,2],[4,2],[3,0],[-5,2],[-10,-5],[-9,-10],[-1,-12],[-5,-14],[-8,-6],[-20,0],[-6,-2],[-12,-6],[-6,-1],[-20,11],[-4,6],[-4,1],[-3,3],[-1,10],[-2,5],[-12,18],[-5,9],[-4,10],[-8,25],[2,5],[6,-6],[5,2],[10,12],[5,3],[31,7],[6,0],[22,-14],[30,-4],[3,1],[5,8],[3,2],[11,0],[3,2],[10,15],[12,3],[25,-4],[0,5],[-2,2],[-1,1],[0,2],[-1,3],[12,1],[3,-4],[-2,-10],[4,-2],[2,3],[3,4],[3,0],[1,-6],[0,-8],[1,-4],[5,6],[5,-4],[5,2],[4,6],[1,6],[-1,6],[-2,7],[-1,9],[1,8],[7,10],[12,2],[23,-4],[-3,-7],[-3,-4],[-8,-5],[1,-3],[1,-5],[-3,-1],[-2,-2],[-2,-4],[-2,-5],[15,-21],[-2,9],[0,8],[1,6],[3,6],[2,1],[5,1],[2,2],[2,3],[2,8],[1,3],[8,9],[8,1],[7,-6],[7,-10],[4,6],[6,4],[17,3],[16,11],[-4,3],[-20,-3],[0,4],[11,3],[21,19],[11,3],[-1,-3],[-2,-1],[4,-2],[5,-2],[0,-5],[0,-1],[0,-2],[-4,-5],[-8,-5],[-3,-3],[3,-1],[5,0],[5,2],[4,3],[2,-11],[2,-5],[9,-4],[13,-10],[4,-2],[0,4],[-3,2],[-3,3],[-7,11],[7,9],[5,3],[5,0],[1,8],[5,3],[23,-1],[23,4],[37,-6],[25,-12],[3,2],[4,5],[3,1],[21,0],[5,-2],[6,-4],[6,-2],[1,0],[5,4],[7,-4],[31,4],[7,6],[0,7],[-5,6],[-8,2],[3,7],[3,3],[4,1],[5,5],[4,7],[11,30],[1,20],[-9,9],[-12,-1],[-8,-8],[0,-4],[2,0],[0,-5],[-42,-32],[-14,-5],[-79,14],[-20,14],[-3,2],[-1,-1],[-4,-2],[-26,-4],[-7,3],[-5,6],[4,2],[8,2],[6,6],[2,-3],[2,-2],[6,0],[0,5],[-7,4],[-7,0],[-13,-4],[3,8],[5,9],[9,11],[13,6],[5,5],[-1,9],[4,2],[10,-2],[3,3],[8,14],[8,5],[31,8],[26,18],[10,11],[18,8],[6,7],[-1,0],[-1,1],[0,2],[4,0],[7,-7],[4,0],[-2,9],[-1,3],[17,9],[36,10],[10,6],[7,3],[-27,-8],[-9,0],[-20,4],[-17,-4],[-5,0],[5,9],[6,7],[-10,9],[-3,6],[-2,9],[-3,-2],[-4,-1],[-4,-1],[-4,0],[1,-8],[-2,-3],[-4,1],[-3,2],[-2,6],[-6,14],[-3,5],[1,-10],[0,-9],[-3,-7],[-4,-7],[-5,-5],[-3,-2],[-2,-1],[-1,-3],[-2,-5],[-2,-6],[-3,-2],[-10,-1],[-5,1],[-8,11],[-16,13],[-12,6],[-1,5],[5,9],[6,4],[31,6],[13,8],[7,2],[3,3],[1,6],[0,7],[0,5],[3,4],[3,4],[6,4],[-8,-2],[-21,-26],[-9,-7],[-9,-4],[-20,-1],[0,4],[12,7],[3,4],[0,5],[-5,-1],[-4,-3],[-8,-9],[-5,-2],[-4,3],[-3,3],[-5,1],[0,-5],[3,-4],[-1,-6],[-4,-4],[-16,-6],[-4,2],[-3,11],[0,9],[1,8],[0,7],[-3,10],[-6,21],[-3,7],[-4,-5],[1,-4],[-1,-6],[1,-6],[4,-13],[0,-5],[-1,-4],[-6,-11],[-3,-4],[-3,0],[-4,6],[-6,11],[-2,1],[-2,-16],[-2,-4],[-3,-3],[-3,1],[-3,2],[-2,5],[-6,18],[-1,10],[2,10],[6,11],[-3,3],[-1,0],[-1,-2],[-3,-1],[-7,5],[-5,0],[-1,-1],[-2,-4],[0,-3],[3,-13],[3,-7],[7,-46],[-4,-3],[-4,1],[-6,2],[-5,0],[0,4],[2,5],[-1,4],[-4,3],[-3,1],[-10,-3],[-3,1],[0,5],[-2,0],[-7,0],[0,5],[7,6],[12,15],[7,3],[-2,7],[-5,4],[-10,6],[-1,-14],[-6,-11],[-7,-6],[-6,4],[-2,7],[-1,7],[-1,6],[-3,2],[-1,-4],[-1,-19],[-1,-5],[-6,-7],[-17,-4],[-8,-4],[-15,7],[-8,8],[1,8],[0,4],[-8,-4],[-5,-12],[0,-13],[5,-7],[0,-5],[-4,-3],[-6,-9],[-4,-4],[-4,-1],[-19,2],[-7,3],[-5,1],[-4,2],[-3,4],[-3,5],[-2,0],[-2,0],[-1,-1],[-3,-3],[1,0],[1,-1],[2,-3],[-8,-3],[-15,-10],[-37,-7],[-9,4],[0,-7],[-1,-2],[-2,-1],[-2,-2],[-11,-16],[-51,-13],[-12,2],[-12,7],[0,4],[2,5],[-1,4],[-3,4],[-3,3],[5,0],[2,-1],[2,-3],[1,11],[-5,5],[-7,0],[-2,-8],[-7,9],[-43,15],[-79,-7],[-10,2],[-6,9],[12,7],[6,5],[3,6],[3,5],[17,9],[5,5],[1,9],[0,11],[1,9],[9,5],[5,5],[4,2],[7,-1],[27,-15],[8,-1],[4,-2],[16,-18],[10,-6],[20,-5],[4,-5],[5,-7],[4,-5],[9,-4],[8,0],[16,8],[-13,-1],[-7,2],[-5,2],[-4,6],[-4,7],[-5,6],[-5,2],[-14,14],[-7,11],[-9,11],[-5,8],[42,-7],[27,-15],[9,-2],[-6,9],[-7,8],[-8,5],[-12,4],[-15,9],[-12,4],[-7,5],[-9,13],[-12,20],[-1,8],[1,7],[-1,7],[-3,7],[12,9],[12,-1],[117,-57],[3,-3],[5,-9],[7,-5],[2,-3],[3,-11],[-1,-6],[-3,-7],[-2,-8],[5,-3],[6,5],[11,14],[2,-3],[4,-5],[3,5],[15,-3],[7,2],[0,4],[-3,1],[-1,1],[-2,6],[5,0],[12,8],[5,0],[4,0],[5,0],[3,4],[-33,-3],[-15,5],[-11,6],[-3,4],[-5,7],[-3,7],[3,3],[17,7],[4,-2],[4,-3],[23,3],[7,5],[6,2],[12,-4],[6,-1],[5,5],[-3,3],[-2,1],[-2,0],[0,3],[13,8],[4,5],[-15,-2],[-9,-4],[-12,-9],[-75,2],[-15,5],[-9,8],[-15,-5],[-3,3],[-4,6],[-16,16],[-9,16],[-6,19],[1,18],[12,12],[5,0],[16,-8],[21,-4],[5,-3],[9,-10],[5,-3],[5,-1],[18,5],[34,-13],[11,0],[20,-12],[11,-4],[9,4],[-23,7],[-7,8],[-23,1],[-7,4],[-13,11],[-29,6],[-6,4],[-15,18],[-8,4],[-4,5],[-6,2],[-12,11],[-12,14],[-2,5],[0,18],[1,9],[5,8],[11,3],[14,-3],[51,-26],[14,-4],[10,5],[2,-9],[3,-8],[5,-5],[6,-2],[0,3],[-5,7],[-9,18],[-5,4],[-7,1],[-13,6],[-6,1],[-3,2],[-9,10],[-16,13],[-9,11],[9,7],[24,2],[18,-3],[25,-17],[-7,5],[-11,16],[-6,3],[-27,-1],[-6,5],[0,4],[3,4],[4,6],[4,4],[3,1],[2,1],[11,1],[5,3],[0,8],[7,3],[43,-11],[28,-18],[9,-2],[5,-4],[7,-9],[5,-11],[-1,-8],[2,-13],[14,19],[5,2],[3,-2],[3,-3],[3,-8],[6,-6],[0,-3],[0,-9],[2,-9],[0,-6],[-2,-5],[-4,-7],[-2,-1],[-12,-21],[-3,-6],[2,0],[6,9],[15,16],[6,8],[1,5],[2,5],[1,4],[3,2],[4,-2],[2,-4],[4,-14],[-1,-3],[-1,-2],[4,4],[4,5],[5,4],[4,-4],[-5,-14],[-6,-14],[-8,-11],[-9,-6],[11,1],[5,2],[4,5],[6,16],[4,9],[3,2],[4,-16],[-2,-17],[-3,-14],[2,-8],[9,28],[0,14],[1,15],[2,14],[3,10],[2,4],[2,1],[19,-1],[2,-2],[0,-8],[2,-5],[3,-3],[10,-10],[10,-16],[2,-2],[0,-3],[-1,-13],[-1,-6],[-2,-6],[-2,-3],[0,-2],[2,-2],[-15,-35],[-3,-11],[2,-5],[4,1],[7,23],[18,43],[2,12],[0,5],[6,0],[4,-5],[3,-9],[4,-7],[2,0],[2,1],[1,0],[3,-5],[-1,-5],[-1,-4],[0,-4],[4,-3],[0,3],[1,6],[2,4],[2,-1],[0,-4],[-2,-20],[-2,-7],[-6,-11],[-3,-7],[0,-4],[11,6],[10,33],[9,6],[0,4],[-5,6],[-4,11],[-2,13],[-2,11],[-4,8],[-5,8],[-6,6],[-6,2],[3,8],[1,7],[2,7],[4,6],[5,2],[5,0],[5,3],[4,8],[-6,-1],[-14,-6],[-5,-4],[-5,-2],[-23,10],[-16,14],[-66,25],[-20,18],[-11,27],[13,7],[41,9],[9,0],[29,-8],[8,0],[3,-1],[1,-2],[1,-3],[2,-2],[7,-7],[4,-1],[4,3],[-2,3],[-1,2],[-3,8],[14,0],[7,2],[12,8],[14,1],[6,5],[-37,-5],[-12,5],[-5,5],[1,1],[4,0],[5,4],[3,5],[4,3],[4,2],[5,0],[0,4],[-6,4],[-4,-2],[-11,-10],[-14,-6],[-16,-2],[-13,3],[-3,1],[0,6],[2,5],[6,5],[1,5],[1,12],[2,3],[3,4],[14,5],[-12,-2],[-10,-6],[-22,-20],[-5,-3],[-11,-2],[-4,4],[2,8],[5,8],[3,4],[0,5],[-9,-4],[-5,-3],[-5,-5],[-11,-18],[-2,-1],[-7,-7],[-44,10],[-11,6],[-8,9],[-4,3],[-2,4],[4,6],[10,0],[14,-4],[12,1],[6,19],[-8,1],[-9,6],[-8,8],[-6,9],[9,6],[8,-3],[9,-7],[8,-4],[-2,7],[-1,3],[-2,3],[30,4],[2,-1],[2,-2],[2,-7],[2,-3],[6,-1],[2,4],[-1,6],[-4,3],[-5,2],[-14,10],[28,0],[5,-1],[10,-9],[13,-4],[10,-11],[5,-3],[7,1],[11,11],[7,4],[-1,2],[-1,6],[11,4],[9,-6],[9,-9],[19,-8],[4,0],[1,8],[-2,5],[-7,5],[-2,5],[9,-1],[8,-7],[7,-12],[2,-14],[5,-9],[23,-11],[7,-11],[-4,-6],[3,-3],[12,-2],[0,-5],[-5,2],[-2,-3],[0,-5],[0,-6],[1,-3],[2,-4],[1,-5],[-4,-4],[0,-4],[3,-4],[4,3],[4,3],[5,2],[4,0],[3,-2],[2,-4],[3,-2],[2,4],[4,7],[5,1],[2,-4],[-2,-8],[20,2],[5,-2],[3,3],[2,1],[3,-2],[2,-2],[1,-2],[10,-14],[-2,-5],[-17,-12],[4,-2],[3,2],[4,3],[4,2],[4,-1],[13,-9],[4,-5],[2,-2],[3,0],[6,3],[2,1],[18,-8],[-1,-2],[-1,-6],[5,-3],[2,-7],[0,-7],[-3,-3],[1,-4],[2,-6],[0,-3],[1,1],[0,-10],[1,-11],[2,-4],[4,-3],[4,0],[5,3],[5,1],[3,-4],[1,-9],[-3,-7],[-3,-7],[-2,-6],[3,1],[5,2],[3,4],[2,3],[0,10],[0,4],[-6,12],[4,4],[9,4],[13,1],[2,-2],[1,-5],[2,-4],[1,-2],[5,-2],[-4,-5],[-5,-4],[-3,-1],[-2,-6],[1,-4],[6,-8],[7,-5],[30,7],[8,-2],[6,-3],[5,-7],[4,-12],[-39,-4],[-8,-5],[-29,-8],[-4,0],[5,-8],[8,1],[15,7],[26,5],[9,-5],[-4,-5],[-12,-7],[0,-4],[30,7],[7,-5],[4,-12],[1,-10],[-3,-8],[-8,-4],[13,-9],[0,-4],[-14,-28],[-5,-8],[-8,-7],[-28,-9],[0,-5],[6,0],[10,2],[5,-2],[15,-8],[4,-4],[-23,-24],[-8,-5],[-38,1],[-2,3],[-5,7],[-1,2],[-6,4],[-5,7],[-3,9],[0,5],[-7,8],[-9,4],[-9,0],[-8,-4],[6,-1],[13,-7],[4,-4],[1,-2],[5,-10],[2,0],[0,-8],[0,-4],[-3,-4],[-3,-5],[4,-4],[3,-3],[1,-3],[1,-8],[3,-4],[3,-3],[2,-1],[5,-4],[46,1],[8,-4],[4,-8],[-3,-7],[-14,-20],[-6,-5],[0,-4],[14,6],[17,14],[14,3],[6,-25],[-6,-22],[-14,-21],[-16,-15],[-13,-5],[0,-4],[28,10],[11,8],[6,2],[6,-1],[4,-3],[8,-12],[10,-9],[3,-6],[-2,-10],[4,-2],[1,-4],[-1,-6],[0,-8],[2,-13],[0,-9],[-1,-12],[0,-6],[10,-31],[4,-6],[-1,-1],[0,-1],[-1,-2],[6,-5],[5,-10],[3,-11],[-2,-11],[0,-3],[4,-4],[2,1],[3,3],[2,8],[-4,14],[-1,10],[-1,4],[-2,6],[-5,9],[-2,5],[4,7],[2,2],[-1,5],[1,4],[3,3],[2,3],[2,10],[0,8],[-6,45],[-1,18],[3,9],[9,-5],[6,-10],[8,-25],[8,-15],[2,-4],[2,-4],[9,-3],[4,-3],[2,4],[-7,14],[-7,18],[-5,20],[-2,17],[-1,14],[0,10],[1,9],[1,3],[3,5],[2,3],[3,17],[1,4],[8,15],[31,22],[17,20],[6,2],[5,2],[4,2],[1,6],[3,1],[3,-2],[5,-7],[1,0],[4,0],[1,0],[1,-5],[-1,-2],[-1,0],[-1,-2],[-2,-23],[0,-12],[2,-9],[-3,-10],[-1,-10],[3,-7],[7,3],[-3,11],[0,9],[4,5],[6,-5],[3,-4],[0,-2],[0,-4],[1,-7],[-1,-4],[-1,-4],[0,-3],[1,0],[5,-3],[2,-1],[2,-5],[1,-4],[1,-4],[3,-4],[4,-2],[3,-1],[3,-1],[4,1],[1,0],[5,4],[2,6],[2,9],[3,13],[-3,2],[-4,8],[-3,2],[-10,-1],[-5,1],[-3,4],[9,3],[9,1],[3,1],[8,6],[4,1],[3,-6],[-1,-26],[4,-8],[-1,9],[3,7],[2,7],[-4,9],[4,8],[8,11],[5,7],[1,5],[0,9],[2,5],[2,2],[5,0],[6,1],[-6,2],[-4,7],[-1,8],[4,4],[4,2],[3,6],[1,9],[1,10],[-2,15],[-6,14],[-7,11],[-6,6],[0,4],[7,6],[-3,18],[-7,19],[-10,21],[-2,5],[-2,21],[-2,9],[-3,8],[-4,6],[-5,5],[5,6],[3,9],[2,10],[-4,7],[6,5],[6,1],[12,-2],[3,1],[5,5],[2,2],[4,1],[10,-1],[5,3],[10,11],[5,3],[13,-5],[3,0],[3,0],[6,5],[2,-13],[4,-8],[5,-4],[7,-4],[-2,-4],[2,-3],[3,-4],[2,-9],[4,-9],[12,-19],[1,-6],[1,-4],[2,-4],[3,-2],[-1,-2],[-2,-5],[-1,-2],[6,-7],[7,-7],[5,-7],[-1,-11],[5,-4],[15,-3],[11,-6],[4,0],[3,-1],[3,-4],[2,-2],[4,0],[1,-1],[2,-4],[0,-4],[1,-4],[1,-4],[6,-12],[2,-4],[1,-8],[1,-16],[2,-6],[6,-8],[14,-3],[6,-8],[2,13],[2,4],[8,-1],[1,-1],[4,-5],[2,-1],[3,-1],[8,0],[-2,-1],[-2,-2],[-1,-3],[1,-5],[2,0],[5,3],[3,4],[3,8],[3,17],[2,17],[0,15],[-2,14],[-4,15],[-8,20],[-1,4],[-16,16],[0,4],[1,6],[2,5],[4,2],[5,1],[5,3],[6,5],[4,6],[-3,4],[-3,5],[-2,5],[-3,13],[0,2],[1,2],[3,4],[5,6],[16,7],[37,6],[13,-9],[7,-1],[-1,10],[3,2],[2,1],[2,1],[3,-1],[-1,-2],[-1,-6],[6,-2],[9,-8],[6,-1],[-4,2],[-2,4],[-2,4],[-2,6],[2,0],[0,3],[-1,1],[-3,3],[-1,1],[0,3],[2,5],[3,13],[2,7],[3,3],[9,8],[25,8],[9,-4],[-2,-19],[5,2],[4,5],[6,13],[-1,6],[-1,2],[5,3],[8,-1],[14,-6],[-2,-9],[-5,-12],[-1,-9],[3,0],[20,18],[8,-2],[7,-7],[6,-7],[5,-4],[2,-4],[-3,-10],[-8,-15],[4,0],[4,1],[4,2],[2,4],[4,2],[3,-3],[4,-4],[3,-2],[4,-4],[3,-11],[2,-12],[3,-9],[-5,-17],[-2,-11],[1,-4],[19,-5],[13,-7],[21,-3],[3,-2],[3,-4],[4,-10],[7,-4],[2,-7],[1,-6],[3,-8],[0,-3],[1,-2],[2,-1],[6,1],[2,0],[2,-2],[3,-8],[0,-5],[0,-16],[1,-7],[5,-11],[2,-4],[0,-25],[0,-4],[3,-1],[8,-11],[13,-12],[-1,-8],[1,-10],[3,-9],[5,-1],[3,7],[0,11],[-2,11],[-3,7],[-2,2],[-6,4],[-2,2],[-1,7],[1,4],[1,2],[1,4],[0,5],[0,4],[-1,5],[1,6],[2,2],[5,4],[1,2],[2,11],[-1,9],[-9,29],[0,1],[0,9],[0,2],[-2,0],[-2,-1],[-1,1],[-6,10],[-2,2],[0,1],[-1,1],[-1,1],[-1,1],[-1,-1],[-3,-6],[-1,-1],[-3,2],[-9,10],[-3,4],[3,8],[-1,8],[-4,6],[-8,5],[-5,12],[-4,6],[0,4],[2,0],[0,4],[-7,17],[-4,27],[2,28],[7,17],[4,2],[25,-2],[3,-2],[7,-5],[4,-1],[12,1],[4,-1],[0,-2],[0,-1],[-1,0],[-1,-1],[11,-6],[27,7],[12,-5],[2,-5],[3,-11],[2,-5],[3,-1],[12,1],[5,-2],[8,-11],[6,-3],[3,-3],[11,-14],[4,-7],[4,-17],[3,-8],[9,-6],[5,-6],[7,-12],[10,-25],[4,-7],[1,11],[-3,9],[-3,8],[-3,9],[5,-1],[7,2],[6,3],[5,4],[-26,-2],[-6,5],[44,1],[3,-3],[2,-7],[4,-11],[2,0],[1,5],[0,4],[-1,4],[-2,4],[0,3],[3,3],[4,4],[1,7],[-1,7],[5,5],[2,3],[1,4],[0,3],[0,10],[0,7],[4,8],[7,8],[8,6],[7,2],[3,4],[1,7],[1,7],[-2,3],[-3,1],[2,5],[5,8],[8,7],[17,5],[3,11],[7,-6],[28,-3],[7,-4],[1,0],[5,-11],[11,-25],[0,-3],[0,-2],[0,-1],[0,-3],[-4,0],[0,-4],[3,-2],[4,-1],[3,0],[4,3],[-2,1],[-4,3],[10,7],[35,8],[10,-2],[-5,0],[-4,-2],[-4,-2],[-4,-4],[3,-3],[5,-8],[2,1],[6,11],[3,5],[4,2],[7,-7],[6,-11],[6,-8],[9,-2],[0,3],[-9,6],[-4,4],[-3,4],[-2,8],[0,6],[-1,5],[-6,4],[13,8],[19,5],[12,7],[6,0],[-25,-13],[-7,-7],[24,8],[6,0],[7,-5],[10,-14],[8,-1],[0,4],[-10,9],[-5,6],[-2,7],[1,9],[3,8],[4,6],[5,4],[0,2],[0,1],[1,3],[2,5],[2,5],[1,6],[-1,9],[-2,5],[-3,4],[-4,9],[-1,2],[-2,1],[-2,0],[-1,3],[-1,5],[0,5],[0,3],[-8,6],[-2,4],[2,11],[-1,0],[-3,0],[1,2],[2,4],[1,2],[-2,2],[-1,3],[-3,7],[6,0],[0,4],[-5,6],[-5,19],[-8,8],[2,8],[6,7],[6,1],[2,-4],[0,-4],[1,-4],[3,0],[1,2],[1,6],[2,5],[3,3],[8,3],[5,0],[0,-5],[-2,-7],[1,-5],[3,-4],[3,-2],[-1,3],[0,3],[0,2],[-1,4],[4,1],[8,6],[3,1],[4,-3],[3,-5],[3,-3],[5,-1],[-4,-4],[-2,0],[5,-4],[5,1],[6,2],[1,1],[0,4],[4,4],[2,6],[4,4],[0,-2],[2,-7],[3,-1],[3,4],[3,11],[2,3],[6,2],[8,0],[16,-6],[3,2],[13,5],[23,-20],[13,-5],[-3,-5],[-5,-3],[-3,-4],[-2,-9],[3,1],[1,-1],[0,-3],[-6,-5],[1,-1],[3,-5],[2,-2],[-4,-5],[4,-1],[10,2],[11,-2],[5,2],[0,-3],[-1,-6],[0,-3],[26,0],[5,-2],[5,-4],[2,-5],[0,-6],[0,-3],[5,-16],[-11,-19],[-7,-8],[-8,-6],[3,-8],[4,3],[3,-2],[4,-3],[9,-4],[1,-4],[-1,-6],[-2,-8],[4,-4],[20,-1],[10,4],[3,0],[2,-3],[2,-4],[2,0],[1,1],[3,2],[1,-6],[1,-5],[3,-4],[8,-3],[8,-8],[9,-6],[6,-8],[5,-5],[7,5],[-2,1],[-1,1],[-1,2],[5,3],[3,7],[3,9],[0,12],[-1,12],[-1,8],[2,6],[8,4],[34,0],[20,6],[1,4],[0,6],[2,4],[20,11],[3,8],[2,9],[4,7],[11,9],[8,5],[23,4],[7,-2],[11,-8],[6,-2],[53,8]],[[45069,88204],[2,-3],[0,-5],[-2,-7],[-4,-6],[-2,-1],[2,3],[1,3],[0,3],[-2,2],[-3,0],[-12,-4],[0,5],[9,8],[5,2],[2,1],[4,-1]],[[44997,89890],[7,-8],[2,-1],[-1,-6],[-5,-3],[-5,7],[-1,9],[3,2]],[[44371,88043],[1,-3],[2,-6],[-2,-7],[-3,-6],[-3,-3],[-2,2],[-1,5],[-2,5],[-2,7],[1,6],[5,3],[7,0],[1,-1],[-2,-2]],[[44894,89563],[2,-3],[4,-8],[0,-7],[-3,-2],[-4,1],[-2,2],[-2,4],[0,4],[-2,7],[-3,9],[2,2],[5,-5],[3,-4]],[[13855,35624],[3,2],[3,0],[2,-2],[2,-4],[-3,-1],[-3,0],[-2,2],[-2,3]],[[15337,35863],[-3,-2],[3,2],[2,0],[0,-2],[0,-3],[0,2],[0,2],[-2,1]],[[14353,36064],[7,-6],[4,-18],[0,-19],[-3,-9],[-6,7],[-6,17],[-2,18],[6,10]],[[13682,36301],[1,0],[0,-2],[-2,-3],[-1,-1],[0,3],[0,2],[1,0],[1,1]],[[12176,37427],[-3,-4],[-3,-2],[7,12],[0,-2],[-1,-4]],[[12117,37756],[-2,3],[-3,0],[-2,-1],[-3,-4],[3,7],[3,2],[4,-2],[0,-5]],[[12069,37834],[5,3],[2,-4],[-1,-7],[-4,-6],[3,7],[-1,3],[-2,3],[-2,1]],[[12045,37831],[-3,8],[-1,3],[2,0],[1,-2],[1,-4],[0,-5]],[[12018,37848],[-1,2],[-1,3],[-1,0],[-2,-3],[2,6],[2,0],[2,-4],[1,-7],[-1,0],[0,1],[0,1],[-1,1]],[[10996,38854],[2,2],[3,-3],[4,-6],[1,-6],[0,-8],[-3,-4],[-3,-3],[-4,-2],[5,8],[3,6],[-1,7],[-7,9]],[[11333,39010],[-1,3],[0,2],[-1,3],[-2,1],[3,0],[2,-3],[0,-6],[-2,-5],[1,5]],[[11445,39046],[-2,1],[-1,0],[-1,3],[3,1],[2,0],[1,-2],[-2,-3]],[[10759,39097],[4,8],[4,-2],[3,-9],[-1,-11],[-1,9],[-2,6],[-4,2],[-3,-3]],[[10910,39138],[8,9],[7,-7],[2,-13],[-7,-5],[5,11],[-3,6],[-7,2],[-5,-3]],[[11444,39357],[2,-4],[0,-2],[0,-2],[-10,11],[2,0],[2,-1],[4,-2]],[[10252,39897],[3,9],[3,-2],[3,-15],[0,-1],[-1,3],[-2,5],[-1,6],[-1,-5],[-1,-3],[-2,0],[-1,3]],[[8151,40006],[4,8],[0,-6],[-1,-7],[-3,5]],[[10711,40184],[-1,5],[-3,4],[-4,2],[-4,1],[6,2],[5,-4],[2,-10],[0,-2],[0,-7],[0,-4],[0,3],[0,1],[-1,9]],[[11544,40185],[-6,0],[0,4],[0,2],[1,4],[3,10],[6,5],[-8,-15],[-1,-4],[0,-1],[2,-1],[1,-1],[2,-3]],[[10254,40399],[-2,4],[-1,2],[-1,3],[3,0],[3,-2],[2,-4],[2,-5],[-1,-1],[-2,0],[-1,2],[-2,1]],[[8449,40410],[2,2],[1,0],[1,1],[-1,-4],[-4,-7],[0,2],[0,2],[1,4]],[[7240,40522],[2,-6],[2,-8],[0,-6],[-1,0],[-2,7],[-3,19],[-2,8],[2,0],[1,-3],[1,-5],[0,-6]],[[9944,40610],[1,4],[3,-2],[3,-6],[2,-7],[-3,2],[-2,3],[-4,6]],[[7710,40731],[-3,-4],[-3,2],[1,4],[5,-2]],[[9472,41060],[-14,29],[10,-14],[5,-9],[-1,-6]],[[10864,41101],[8,2],[2,0],[-2,-2],[-5,-11],[-3,1],[-2,2],[0,4],[2,4]],[[8819,41073],[-6,8],[-2,14],[1,12],[4,4],[1,-3],[3,-14],[2,-5],[3,-5],[0,-5],[-3,-4],[-3,-2]],[[9309,41111],[1,-7],[1,-4],[-1,-3],[-2,11],[-1,5],[-2,5],[1,-2],[3,-5]],[[7077,41101],[1,7],[-1,4],[-1,4],[-3,1],[3,2],[2,-4],[0,-6],[1,-7],[-1,-3],[-2,-3],[-1,1],[2,4]],[[9819,41154],[5,1],[3,-4],[1,-7],[-3,-5],[-3,0],[-2,4],[-1,5],[0,6]],[[9595,41302],[4,0],[2,-2],[1,-3],[-2,-4],[-5,8],[-18,7],[-8,11],[19,-14],[7,-3]],[[9390,41374],[-2,-18],[1,11],[1,14],[-1,5],[-1,4],[-1,2],[-3,3],[1,0],[2,-3],[2,-1],[1,-3],[1,-7],[-1,-7]],[[9272,41444],[-5,5],[4,-2],[3,-5],[3,-8],[1,-8],[-3,9],[-3,9]],[[9095,41449],[4,0],[1,-2],[1,-5],[-2,3],[-1,1],[-1,1],[-2,2]],[[8950,41458],[2,2],[3,-3],[3,-6],[4,-4],[-12,11]],[[9039,41515],[-15,24],[-5,7],[6,-6],[5,-7],[9,-18]],[[8908,41539],[-1,2],[-1,2],[0,1],[0,3],[2,-8]],[[9466,41922],[-3,-3],[-3,-2],[-3,-1],[-3,0],[9,4],[3,2]],[[10785,42066],[-2,-4],[-2,4],[-7,15],[3,-3],[8,-12]],[[8965,36332],[0,5],[5,3],[5,3],[12,1],[-1,-4],[-2,-3],[-1,-2],[-2,-3],[-9,-3],[-3,0],[-4,3]],[[8477,36637],[7,-5],[2,-9],[-4,-9],[-12,-2],[-3,3],[-2,6],[0,10],[1,3],[4,2],[7,1]],[[12494,36779],[6,1],[9,15],[7,4],[-2,-8],[-10,-24],[-3,1],[-2,1],[-5,6],[0,4]],[[7948,37191],[3,-1],[2,-6],[3,-8],[1,-5],[-1,-15],[-1,-16],[-2,-3],[-1,-1],[-1,0],[-1,16],[-3,14],[-2,13],[3,12]],[[10924,37643],[6,7],[5,-8],[8,-27],[-7,-9],[-8,5],[-5,14],[1,18]],[[10922,39940],[-13,-16],[-9,-14],[-7,-16],[-3,-3],[-5,0],[-4,2],[-3,3],[0,7],[1,7],[3,14],[6,12],[6,21],[10,13],[20,19],[6,8],[7,-2],[2,-12],[-3,-12],[-5,-10],[-9,-21]],[[8560,39969],[6,-15],[4,-27],[-2,-26],[-10,-14],[-4,2],[-15,9],[-5,4],[-9,24],[-7,26],[-2,21],[-2,4],[-2,0],[-2,-4],[-1,-6],[-1,-2],[-6,-2],[-16,-11],[-6,0],[-4,1],[-9,7],[-16,5],[-3,4],[-5,35],[-2,5],[-3,4],[-2,10],[-2,12],[-1,11],[2,28],[8,17],[11,9],[13,7],[12,2],[13,-4],[11,-10],[10,-13],[2,-6],[3,-8],[1,-9],[1,-11],[-1,-39],[1,-12],[7,-17],[11,-6],[22,-5]],[[8390,40127],[3,-3],[0,-6],[-6,-26],[-4,-16],[-6,-10],[-5,0],[-7,7],[-8,12],[-6,14],[-2,11],[3,7],[5,5],[5,0],[2,-5],[1,-6],[2,0],[2,2],[1,2],[2,1],[2,2],[2,1],[3,-4],[1,7],[2,4],[4,1],[4,0]],[[8054,40539],[1,5],[2,-1],[3,-4],[1,-7],[0,-4],[0,-8],[-1,-5],[-3,1],[0,-4],[-1,-2],[-2,-2],[-2,0],[-5,9],[-2,4],[-1,5],[2,8],[3,3],[3,0],[2,2]],[[7922,40557],[4,1],[5,-2],[5,-5],[2,-4],[3,-15],[17,-46],[-4,-5],[-10,-11],[-4,-2],[-2,4],[-2,0],[0,-6],[-1,-3],[-2,-2],[-2,-1],[-3,0],[-5,7],[-3,20],[-2,54],[1,9],[3,7]],[[8048,40575],[5,-19],[0,-3],[-2,-2],[-2,-4],[-3,-4],[-4,-2],[-1,7],[-1,7],[1,7],[3,14],[2,7],[1,1],[1,-9]],[[7928,40622],[0,-19],[-1,-8],[-3,3],[-2,2],[-15,14],[-2,3],[0,4],[2,21],[3,7],[6,2],[8,-1],[-1,-5],[-1,-3],[6,1],[3,-1],[1,-2],[0,-2],[2,-5],[0,-3],[-1,-3],[-2,-2],[-3,-3]],[[7839,40711],[4,4],[3,-7],[2,-12],[0,-13],[-4,0],[-4,8],[-2,11],[1,9]],[[9337,40930],[8,5],[6,-8],[2,-14],[-3,-15],[-8,2],[-6,7],[-3,10],[4,13]],[[11472,44295],[10,-1],[4,-2],[4,-5],[4,-19],[0,-23],[-4,-19],[-10,-4],[-4,4],[-2,10],[0,11],[4,20],[-1,9],[-5,19]],[[11366,44607],[4,-3],[3,-5],[3,-6],[-1,-2],[-2,-1],[0,-2],[-1,-3],[0,-2],[-2,-2],[-3,-1],[-1,-1],[-4,-9],[-6,-23],[-4,-8],[-3,10],[0,11],[1,12],[-1,11],[3,7],[3,14],[5,10],[6,-7]],[[11434,44701],[6,1],[-1,-6],[-14,-25],[-6,-5],[-7,-4],[-11,-2],[-15,1],[-3,1],[-2,2],[-3,1],[-3,-1],[-2,-2],[0,-18],[-1,-10],[-3,0],[-4,3],[-11,5],[-5,7],[-4,8],[-2,7],[-2,8],[0,9],[1,8],[8,6],[25,29],[10,4],[8,-3],[3,-12],[4,-8],[5,-5],[6,-3],[5,-1],[7,-3],[3,-1],[3,1],[2,3],[2,3],[1,2]],[[11090,44948],[6,-13],[3,-3],[4,4],[-3,-18],[-3,-20],[-3,-16],[-9,-7],[-5,5],[-13,40],[5,8],[5,10],[6,9],[7,1]],[[11246,45208],[3,-8],[-1,-8],[-5,-6],[-5,-3],[-12,-1],[-5,-5],[-4,-10],[2,9],[-2,8],[-2,9],[-1,9],[9,22],[2,0],[2,-7],[2,0],[5,3],[3,-2],[9,-10]],[[11097,45244],[8,-14],[2,-7],[0,-13],[-1,-9],[-4,1],[-6,10],[-2,-13],[-4,-9],[-6,-2],[-4,8],[-2,0],[-3,-7],[-11,-7],[-3,-5],[-1,-10],[-3,2],[-4,7],[-5,7],[-2,8],[-3,28],[-1,11],[0,5],[-3,5],[-1,4],[4,22],[9,3],[35,-12],[9,0],[2,1],[4,5],[2,2],[0,-3],[0,-2],[-1,-1],[-2,-5],[-3,-10]],[[10919,45723],[-2,-8],[-3,-7],[-2,0],[-3,7],[0,22],[6,17],[9,7],[10,-5],[-4,-7],[-2,-1],[-5,-2],[-2,-5],[-2,-18]],[[9921,34137],[-1,-3],[-4,-7],[-1,-2],[1,-1],[0,-11],[1,-1],[-2,-7],[-2,-4],[-3,-1],[-4,5],[-2,10],[-1,18],[3,16],[6,4],[5,-6],[2,-5],[2,-5]],[[11431,37517],[-23,0],[5,5],[6,-2],[6,-2],[6,-1]],[[12373,37720],[-19,25],[6,-2],[5,-4],[5,-8],[3,-11]],[[11518,38106],[4,10],[1,6],[-7,36],[-1,3],[-1,1],[-5,-3],[1,2],[3,2],[1,0],[2,0],[6,-20],[2,-26],[-6,-11]],[[12135,39474],[0,1],[0,3],[0,4],[-1,4],[-1,5],[-3,3],[-3,3],[-9,6],[-2,2],[-2,3],[-1,3],[-3,5],[-13,14],[-3,2],[-1,-3],[0,-5],[0,-2],[-1,2],[0,3],[-1,2],[-2,1],[6,5],[9,-7],[8,-11],[4,-9],[14,-11],[7,-10],[-2,-13]],[[10924,39563],[0,2],[-2,7],[-4,7],[-16,15],[-5,8],[-2,7],[-1,2],[7,-11],[19,-21],[2,-8],[2,-8]],[[11952,39595],[-26,57],[7,-7],[8,-15],[8,-19],[3,-16]],[[10882,39681],[-7,21],[-13,20],[-6,24],[-3,7],[-12,21],[2,-4],[11,-10],[7,-27],[6,-12],[8,-12],[5,-12],[2,-16]],[[10395,40034],[3,12],[-20,41],[7,-9],[10,-15],[5,-16],[-5,-13]],[[10163,40131],[-7,11],[-10,5],[5,1],[5,-3],[4,-5],[3,-9]],[[9616,40115],[-15,40],[5,-6],[3,-9],[7,-25]],[[9561,40175],[-2,8],[-1,7],[-1,9],[0,11],[4,-35]],[[10170,40598],[-18,26],[-15,-1],[-12,3],[24,4],[6,-3],[6,-9],[9,-20]],[[10119,40618],[-14,2],[-11,18],[-11,12],[10,-4],[15,-25],[11,-3]],[[10051,40675],[-2,1],[-7,26],[-9,14],[-9,7],[-6,5],[1,0],[6,-3],[9,-3],[4,-4],[8,-19],[3,-11],[2,-13]],[[9929,40711],[-1,12],[-1,4],[-8,21],[4,-6],[5,-10],[2,-11],[-1,-10]],[[9896,40793],[-9,6],[-5,-2],[-3,8],[2,-1],[0,-1],[0,-2],[4,3],[5,-2],[4,-5],[2,-4]],[[9588,40788],[-5,7],[-8,34],[-7,16],[-6,29],[-4,30],[-4,14],[-2,29],[0,-10],[2,-14],[3,-12],[3,-5],[2,-7],[2,-31],[2,-7],[1,-5],[11,-27],[7,-33],[3,-8]],[[9552,40963],[-27,-5],[14,11],[8,3],[5,-9]],[[10408,40930],[2,14],[4,15],[4,14],[4,10],[-14,-53]],[[11080,41008],[-2,9],[-7,1],[-8,-10],[6,11],[7,3],[5,-4],[-1,-10]],[[9676,41024],[-19,36],[4,-6],[15,-30]],[[9706,41052],[-5,26],[-15,48],[-9,12],[8,-3],[4,-11],[7,-27],[8,-18],[2,-11],[0,-16]],[[8876,41588],[-2,8],[-4,8],[-5,9],[-7,9],[-18,11],[12,-2],[12,-7],[10,-14],[2,-22]],[[8714,41649],[-5,13],[-12,11],[6,-2],[8,-5],[5,-7],[-2,-10]],[[9668,41787],[-3,-8],[-5,-8],[-5,-6],[-5,-2],[-1,7],[3,16],[6,25],[-5,-30],[-2,-13],[6,3],[11,16]],[[9373,41884],[3,13],[2,12],[-9,12],[8,-2],[3,-11],[-1,-13],[-6,-11]],[[9721,41876],[14,28],[12,14],[6,13],[-7,-6],[-12,-2],[-13,-7],[5,7],[7,3],[12,2],[6,7],[3,2],[2,-2],[-1,-6],[0,-3],[-6,-9],[-9,-11],[-3,-2],[-2,-4],[-9,-18],[-5,-6]],[[9487,41961],[1,12],[-5,2],[-15,-2],[16,6],[6,-3],[-3,-15]],[[12017,37845],[-1,-1],[-1,2],[1,-1],[1,0]],[[11351,38152],[-2,-2],[0,-1],[-1,0],[3,3]],[[9970,40566],[8,3],[4,-8],[3,-11],[1,-6],[-4,7],[-3,11],[-4,5],[-6,-11],[0,3],[0,2],[1,5]],[[61875,40357],[-8,7],[4,4],[6,-2],[-2,-9]],[[69429,21130],[-5,1],[-3,3],[-3,4],[-4,4],[-5,2],[-8,3],[-3,3],[0,4],[12,6],[12,-3],[14,-23],[9,-9],[3,-8],[-2,-7],[-4,1],[-13,19]],[[69109,21248],[-2,-8],[-4,-4],[-4,0],[-5,4],[-14,0],[-7,2],[-6,6],[5,12],[3,4],[5,0],[5,-1],[9,-7],[5,0],[9,3],[2,-2],[-1,-9]],[[69330,21333],[-4,-3],[-4,-1],[-4,2],[-4,6],[30,23],[10,1],[0,-4],[-6,-6],[-4,-13],[-5,-10],[-9,5]],[[69219,21459],[2,7],[3,4],[3,3],[3,4],[9,20],[6,10],[8,8],[8,5],[8,0],[-3,-13],[-9,-11],[-3,-9],[22,7],[4,-1],[-1,-8],[-3,-9],[-4,-8],[-3,-5],[-10,-11],[-4,-7],[1,-9],[3,-11],[-4,-6],[-6,-4],[3,-5],[-24,-15],[-5,5],[0,30],[-1,8],[-2,17],[-1,4]],[[69229,21536],[1,-13],[3,1],[2,-2],[-1,-6],[-2,-2],[-3,-3],[-2,-3],[-3,-9],[-4,-17],[-5,-13],[-3,-5],[-3,-3],[-3,2],[-2,5],[1,2],[3,21],[3,16],[5,15],[6,11],[7,3]],[[69295,21520],[-5,4],[-5,7],[-4,10],[-3,11],[10,0],[13,-15],[9,-1],[-2,-8],[-3,-5],[-5,-2],[-5,-1]],[[69596,21343],[6,-22],[-4,-28],[-9,-24],[-16,-29],[-20,5],[-9,6],[-7,-8],[-1,-10],[-6,-6],[23,-15],[20,-21],[-25,5],[-24,-5],[-13,47],[-28,13],[-11,-6],[-11,-6],[-13,-1],[-13,4],[-20,7],[-21,-5],[15,-10],[14,-15],[-3,-2],[-4,-3],[6,-10],[7,-9],[-7,-4],[-6,-2],[-9,12],[-8,15],[-7,3],[-5,-7],[0,-10],[5,-19],[-16,18],[-18,11],[6,-14],[9,-9],[6,-8],[2,-9],[4,-4],[4,-6],[1,-14],[2,-12],[22,-17],[24,-6],[22,-14],[22,-14],[-20,27],[-5,31],[12,6],[13,3],[12,-5],[11,-7],[21,-3],[8,-26],[-19,-24],[-25,-2],[17,-7],[13,-14],[-8,-19],[-15,1],[-11,-5],[-8,-12],[-15,-1],[-16,9],[-23,-1],[-20,13],[-10,23],[-9,22],[-2,25],[-1,24],[-11,13],[-13,-2],[4,-8],[0,-12],[-9,14],[-10,4],[10,-23],[12,-22],[-1,-33],[-14,-17],[-10,5],[-10,8],[-17,2],[-17,5],[-14,18],[-12,21],[-14,2],[-12,0],[-6,24],[-9,20],[-6,-5],[2,-12],[-2,-1],[-2,-2],[6,-14],[3,-16],[-13,10],[-11,25],[3,-17],[3,-16],[3,-9],[-6,-8],[-1,-15],[-10,12],[-3,25],[-5,12],[-4,-24],[9,-37],[-11,-28],[-11,-11],[-12,-7],[-3,2],[-2,3],[-5,-1],[-5,-1],[-13,0],[-14,-1],[-11,5],[-7,20],[0,15],[3,12],[0,22],[6,17],[7,17],[5,16],[-5,14],[12,13],[10,19],[-8,20],[-1,17],[-7,3],[-11,-1],[14,22],[19,3],[-1,10],[1,10],[-9,-4],[-16,-5],[-5,13],[4,3],[5,1],[-16,16],[-5,25],[-2,10],[1,8],[5,-8],[6,-10],[13,19],[21,17],[-21,-2],[-15,10],[6,8],[7,5],[-11,0],[-10,0],[1,8],[1,8],[-9,4],[2,17],[11,4],[9,-8],[-4,22],[0,31],[13,-1],[12,-5],[-7,18],[-8,17],[-7,16],[-7,14],[-2,11],[7,5],[11,10],[11,-1],[1,13],[1,12],[8,9],[1,17],[-4,8],[5,15],[5,16],[16,10],[17,-3],[-4,-7],[6,-13],[-2,-12],[11,-8],[-37,-43],[-21,-56],[5,6],[4,6],[6,3],[7,-5],[-3,20],[9,6],[4,-14],[15,39],[21,22],[6,-2],[4,-9],[-9,-12],[-13,-9],[8,-14],[8,14],[-1,-23],[-9,-20],[-14,-15],[-7,-24],[8,9],[8,7],[-8,-32],[-17,-22],[-4,-22],[-2,-25],[10,-6],[9,-6],[-3,42],[13,27],[11,-9],[7,-21],[1,-21],[2,-18],[10,-7],[8,7],[30,17],[24,40],[3,-10],[2,-11],[-2,-12],[-3,-6],[4,-6],[5,5],[14,51],[19,25],[0,-16],[2,-15],[5,-5],[-9,-9],[-4,-12],[14,1],[11,-9],[-9,-8],[-12,-8],[17,-6],[0,-15],[-16,-5],[-16,-3],[-6,5],[-6,4],[-24,6],[-17,-22],[-7,-10],[-9,-10],[4,-6],[8,6],[8,8],[19,20],[14,-9],[-12,-10],[-13,-8],[18,-8],[-2,-11],[9,-3],[7,-12],[10,0],[0,-2],[0,-2],[-17,-4],[-17,-13],[24,3],[23,3],[21,7],[20,4],[-18,-22],[-22,-11],[18,-4],[18,1],[11,16],[10,16],[1,-11],[3,-10],[7,18],[9,11],[-1,10],[-1,8],[6,3],[6,-1],[0,11],[6,4],[6,4],[4,9],[11,7],[11,7],[16,8],[17,-10],[-1,-6],[-2,-6],[15,1],[11,15],[11,33],[17,13],[20,-1],[19,-10],[13,-14],[2,-29],[5,-22]],[[69075,21674],[3,-8],[-4,-5],[-7,-2],[-6,3],[-3,4],[4,4],[7,4],[6,0]],[[69113,21686],[-5,-7],[-3,6],[0,12],[4,9],[7,2],[3,-7],[-1,-9],[-5,-6]],[[64398,23005],[3,-4],[2,-4],[4,-12],[-12,-24],[-10,3],[-4,0],[-4,-3],[-9,2],[-6,6],[-5,9],[-5,11],[-4,15],[3,9],[19,21],[7,-1],[5,-8],[2,-14],[2,-4],[5,-1],[7,-1]],[[63937,23189],[4,5],[22,8],[3,-9],[4,-10],[1,-12],[-2,-12],[-4,-6],[-4,0],[-11,6],[-6,2],[-4,6],[-2,10],[-1,12]],[[71528,28070],[11,2],[9,-14],[3,-18],[-6,-11],[-8,-5],[-9,11],[-4,18],[4,17]],[[71536,27546],[4,-9],[1,-4],[-2,-4],[-2,-1],[-5,2],[-1,3],[-2,10],[1,5],[2,2],[3,-2],[1,-2]],[[61216,37249],[0,5],[2,-1],[0,-13],[-5,-14],[-6,-1],[-2,3],[-2,7],[-1,10],[2,6],[3,2],[3,1],[2,-2],[0,-6],[-1,-3],[-1,-3],[-1,-3],[2,-4],[3,1],[3,6],[-1,9]],[[61035,37770],[0,1],[1,-1],[-1,0]],[[65142,41060],[2,2],[0,-5],[-2,3]],[[63135,43620],[3,9],[2,-11],[-5,2]],[[62919,44713],[-1,-7],[-2,-8],[-3,-6],[-3,3],[0,6],[2,6],[4,5],[3,1]],[[63196,44717],[0,9],[1,2],[1,-3],[-2,-8]],[[64814,47260],[2,-6],[1,-3],[0,-4],[-1,3],[-1,3],[-1,7]],[[65460,48225],[2,-13],[-2,0],[-2,7],[2,6]],[[62915,44928],[5,-8],[3,-6],[-1,-3],[-4,-3],[-9,-15],[-6,-6],[-20,1],[-23,-14],[-18,-2],[-7,39],[6,-16],[12,-8],[13,2],[9,10],[5,0],[7,5],[7,7],[4,5],[2,-5],[2,5],[2,-3],[3,-2],[0,5],[-2,4],[-2,5],[-1,7],[0,8],[13,-12]],[[62856,44932],[0,2],[0,1],[-1,1],[-1,0],[0,3],[1,0],[10,7],[10,-1],[11,-4],[10,-1],[-5,-9],[-8,-3],[-9,3],[-5,5],[-3,-4],[-7,2],[-3,-2]],[[65624,46210],[3,31],[3,12],[5,6],[-1,-13],[-3,-13],[-7,-23]],[[65389,47710],[-2,1],[0,3],[1,0],[0,2],[-3,1],[-2,-1],[-3,2],[-1,2],[0,2],[2,0],[1,1],[-1,3],[4,8],[2,1],[3,1],[3,3],[1,4],[1,5],[2,2],[1,8],[0,10],[2,1],[1,0],[2,-1],[3,-6],[1,-7],[-1,-2],[-1,-7],[0,-4],[0,-7],[0,-3],[-1,-1],[0,-1],[2,0],[3,-8],[6,-9],[6,-8],[3,-7],[-2,-16],[1,-4],[1,-14],[-3,-1],[0,-7],[2,-11],[1,-8],[2,-4],[1,-8],[-6,0],[-4,5],[-3,13],[-2,6],[-2,2],[-2,-2],[-2,2],[1,11],[5,0],[2,3],[-2,5],[-1,4],[0,5],[-1,3],[-3,1],[-3,9],[-2,7],[-4,1],[-5,6],[-2,3],[-2,1]],[[65349,47805],[-5,-3],[-4,10],[-1,14],[1,11],[4,-3],[5,-7],[3,-11],[-3,-11]],[[65476,47905],[-3,2],[-4,1],[-2,4],[0,4],[-2,9],[4,3],[2,1],[2,0],[4,-8],[3,-3],[5,-2],[2,-5],[2,2],[4,-1],[3,-7],[-5,0],[0,-5],[-1,-7],[-2,-4],[-3,0],[-4,3],[-3,6],[-2,7]],[[64650,46328],[1,-7],[-1,1],[0,1],[0,2],[0,3]],[[65383,47003],[0,-7],[0,-2],[0,2],[0,7]],[[65378,47710],[1,0],[1,-2],[1,-2],[0,-1],[-1,1],[-2,0],[0,2],[-1,1],[1,1]],[[65388,47705],[1,-1],[1,-1],[0,-2],[0,-2],[0,-1],[-1,0],[-1,3],[0,1],[0,1],[-1,1],[0,1],[1,0]],[[65416,47728],[1,0],[1,-4],[0,-2],[-1,0],[-1,1],[-1,1],[-1,1],[0,3],[0,1],[1,0],[1,-1]],[[65417,47733],[1,0],[0,-2],[1,0],[1,-2],[-1,-1],[-1,1],[-1,1],[0,2],[0,1]],[[65415,47745],[1,1],[1,0],[1,0],[1,0],[1,-1],[-1,-2],[0,-3],[-2,-1],[-1,-2],[-1,0],[0,2],[0,3],[0,2],[0,1]],[[65475,47935],[1,2],[2,0],[4,-1],[1,0],[0,-3],[-2,0],[0,-3],[0,-2],[-4,2],[-2,5]],[[65461,47906],[1,0],[0,-3],[-1,0],[-1,2],[1,1]],[[65457,47895],[0,-1],[1,-3],[-1,0],[-1,3],[1,1]],[[65462,47977],[1,-1],[2,-1],[-1,-1],[-2,0],[-2,1],[1,1],[1,1]],[[65508,47901],[4,-3],[1,-8],[2,-5],[-2,-2],[-1,-4],[-1,-5],[-2,1],[-3,5],[0,8],[1,7],[1,6]],[[65518,47913],[2,-1],[2,-6],[1,-5],[-2,0],[-1,3],[-2,5],[0,4]],[[65518,47933],[1,0],[0,-4],[1,-4],[-1,0],[-1,5],[0,3]],[[65533,47903],[1,-2],[0,-3],[-1,-4],[-1,1],[0,4],[1,4]],[[65538,47758],[1,-1],[2,-3],[0,-3],[-1,-1],[-2,0],[-2,4],[0,2],[1,1],[1,1]],[[98065,51264],[-4,-3],[-1,0],[-2,1],[13,13],[7,4],[19,3],[2,2],[-5,3],[3,4],[3,-2],[2,-6],[0,-7],[-2,-3],[-4,0],[-6,3],[-6,0],[-8,-1],[-6,-4],[-5,-7]],[[7831,43727],[3,-9],[4,-17],[1,-15],[-6,-4],[-3,11],[-2,13],[0,13],[3,8]],[[6695,47143],[5,5],[4,-4],[2,-6],[-3,-3],[-10,-3],[-5,4],[-3,12],[3,0],[2,0],[2,-2],[3,-3]],[[6941,48073],[14,9],[6,0],[-2,-13],[-2,-4],[-1,-6],[0,-7],[1,-7],[-3,0],[-3,9],[-4,3],[-2,2],[-4,6],[-2,5],[2,3]],[[2312,48792],[-9,5],[-1,1],[5,-3],[9,-4],[1,-2],[2,-3],[0,-1],[5,-10],[1,2],[0,1],[1,0],[0,3],[-8,27],[-3,8],[-4,4],[-5,6],[-5,2],[-2,-8],[-1,4],[0,4],[1,4],[2,4],[10,-10],[8,-13],[6,-18],[1,-11],[1,-6],[-1,-7],[-4,4],[-2,7],[-3,5],[-4,4],[-1,1]],[[99106,48925],[8,-4],[7,-11],[3,-12],[-3,-5],[-3,4],[-16,28],[2,2],[1,0],[1,-2]],[[98883,48986],[-2,4],[-1,5],[2,-2],[2,-3],[1,-3],[1,-4],[-1,0],[-1,0],[0,1],[-1,2]],[[98774,49360],[3,-13],[-4,-16],[-1,7],[1,24],[-3,8],[-5,15],[-1,7],[2,-4],[8,-28]],[[98626,49619],[3,-15],[0,-21],[-2,-20],[-6,-13],[-7,2],[-2,13],[4,16],[7,10],[0,-4],[-3,-4],[-3,-6],[-2,-7],[0,-8],[3,-5],[3,3],[2,7],[1,4],[2,6],[0,16],[-1,16],[-4,10],[2,4],[0,-2],[1,-1],[2,-1]],[[99002,49680],[4,-8],[5,-16],[4,-19],[2,-18],[-4,7],[-2,9],[-2,11],[-2,10],[-5,14],[-3,8],[-1,10],[2,0],[1,-2],[1,-6]],[[98890,49680],[4,-17],[-1,-15],[-2,4],[-2,3],[-6,5],[0,4],[3,-1],[7,-7],[-1,10],[-2,9],[-7,13],[-5,15],[-2,5],[-4,1],[0,-3],[1,-2],[1,-3],[-4,3],[2,5],[4,3],[6,-3],[3,-13],[5,-16]],[[98545,49757],[2,-26],[2,-10],[-7,4],[-2,12],[1,22],[-1,8],[-9,31],[3,-1],[2,-1],[1,-3],[2,-3],[1,-11],[5,-22]],[[98465,50049],[0,-6],[4,-16],[2,-25],[0,-4],[-1,-5],[-3,-9],[-3,4],[-1,4],[1,3],[3,2],[-1,-4],[0,-1],[1,-4],[4,10],[0,1],[-1,11],[-5,21],[-4,55],[4,-13],[0,-24]],[[98454,50098],[3,-2],[3,-4],[1,-4],[-3,-2],[-4,4],[-13,21],[-3,8],[4,0],[2,-6],[8,-13],[2,-2]],[[98227,50549],[-3,5],[1,8],[6,11],[1,12],[-1,4],[-3,4],[-5,5],[6,1],[2,-1],[2,-5],[0,-5],[0,-5],[-1,-9],[-5,-25]],[[98286,50735],[16,-18],[7,-11],[2,-11],[-15,23],[-10,10],[-8,-1],[1,4],[1,3],[2,3],[2,2],[2,-4]],[[98052,50964],[0,-3],[0,-1],[0,-2],[-1,3],[-1,1]],[[98050,50962],[1,1],[1,0],[0,1]],[[98050,50962],[-1,0],[-1,0],[-1,2],[-1,3],[2,0],[0,-2],[1,-1],[1,-2]],[[98052,50964],[2,6],[4,9],[3,13],[7,12],[2,15],[2,6],[2,7],[1,8],[-3,7],[-5,8],[-5,6],[-5,3],[0,-2],[0,-6],[-1,0],[0,7],[-1,5],[-2,5],[-1,3],[4,0],[3,-9],[14,-19],[3,-6],[1,-4],[0,-9],[-5,-18],[-4,-6],[-10,-29],[-6,-12]],[[98050,51376],[-1,0],[-1,2],[-1,1],[-1,1],[-2,14],[-1,29],[-3,10],[4,-4],[3,-18],[3,-35]],[[98065,51522],[0,-20],[-2,-16],[-7,-4],[-2,1],[-1,1],[-1,2],[9,3],[3,13],[0,18],[-3,19],[1,0],[0,1],[0,1],[0,1],[3,-20]],[[98049,51584],[11,-32],[1,-4],[-13,31],[-4,16],[-2,5],[-5,9],[-1,5],[0,6],[2,-9],[8,-12],[2,-6],[1,-9]],[[6336,51514],[3,-6],[1,-12],[-1,-9],[-4,3],[-3,-3],[-2,-3],[-3,-2],[-3,0],[-4,2],[-2,4],[-2,4],[-3,4],[-2,8],[-2,2],[-6,1],[-28,18],[-11,11],[-9,15],[-7,14],[-6,8],[-2,-4],[-3,0],[-5,4],[-5,10],[1,17],[2,2],[8,10],[4,1],[2,-2],[1,-2],[-1,-1],[-3,-4],[-4,-8],[-1,-10],[4,-11],[2,-1],[4,1],[4,0],[1,-6],[2,-4],[3,-1],[6,0],[6,-6],[2,0],[-3,7],[-3,5],[-3,2],[-2,4],[-2,7],[3,-2],[3,0],[2,4],[0,11],[3,-5],[1,-6],[0,-6],[2,-6],[3,-3],[2,5],[-1,8],[-4,13],[-1,6],[1,5],[1,5],[3,-4],[2,1],[-1,11],[3,-4],[0,-5],[0,-6],[1,-5],[3,-4],[1,2],[1,4],[3,3],[1,4],[1,5],[1,4],[-1,5],[-2,2],[-5,3],[-8,8],[-10,15],[-1,2],[-2,3],[-3,6],[-3,3],[-1,-7],[-2,-4],[-3,1],[-2,5],[-1,9],[4,5],[6,0],[14,-8],[11,-18],[17,-10],[4,0],[-1,-6],[-1,-6],[-1,-4],[-5,-4],[-1,-5],[-1,-13],[-1,-28],[6,-15],[10,-10],[11,-14],[4,-7],[4,-6],[4,-4],[5,-2]],[[97985,52265],[6,-5],[5,4],[4,7],[3,9],[4,4],[11,2],[5,4],[0,-4],[0,-3],[-2,-6],[-10,5],[-9,-12],[-7,-14],[-4,-3],[-2,2],[-2,3],[-1,3],[-1,4]],[[98044,52330],[1,-3],[1,-2],[0,-3],[-6,-3],[-13,-13],[-4,0],[16,16],[5,8]],[[5754,52764],[2,-5],[3,-12],[4,-10],[1,-5],[-1,-6],[-3,-6],[-6,-6],[-6,-3],[-7,1],[-6,8],[-2,12],[5,0],[13,-8],[3,3],[0,7],[0,8],[-2,6],[-2,4],[-7,7],[-3,3],[-2,6],[-1,13],[-2,4],[-3,1],[-4,-2],[-2,-5],[-2,-6],[7,-29],[-12,13],[1,24],[9,18],[9,-4],[3,-9],[2,-6],[0,-6],[1,-7],[4,-2],[3,1],[3,-2]],[[2160,47801],[3,-7],[3,-2],[4,2],[4,3],[-8,-11],[-7,8],[-1,12],[9,3],[-1,-2],[0,-2],[-1,-1],[-5,-3]],[[1526,47693],[2,-3],[-1,-2],[-3,3],[-2,5],[1,0],[3,-3]],[[1520,47696],[-2,2],[-2,4],[1,1],[1,-3],[2,-4]],[[1528,47692],[-4,8],[-4,6],[-3,1],[-1,3],[1,2],[4,-5],[6,-13],[1,-2]],[[2428,47838],[4,1],[3,-4],[1,-7],[-2,-5],[-3,0],[-3,2],[-1,6],[1,7]],[[2474,48615],[1,6],[1,6],[1,-11],[-1,-8],[-2,-1],[0,8]],[[97093,49952],[-1,1],[0,1],[-1,0],[-1,-1],[-1,1],[0,1],[0,2],[0,3],[0,1],[0,1],[0,2],[1,2],[1,1],[1,1],[2,0],[1,0],[1,-3],[1,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1]],[[98135,51674],[-1,3],[0,1],[-1,1],[-1,1],[-2,1],[-2,-1],[0,-4],[1,-10],[0,-5],[0,-4],[-1,-4],[-2,-1],[0,1],[1,2],[0,3],[0,4],[0,3],[-1,6],[0,3],[1,6],[0,4],[1,3],[1,2],[2,0],[1,0],[1,-2],[2,-3],[1,-4],[0,-1],[1,-5],[0,-12],[2,-12],[2,-5],[0,-2],[1,-1],[1,-2],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-3,2],[-5,2],[-2,2],[-1,2],[0,7],[0,2],[0,2],[1,0],[1,-1],[0,-2],[0,-3],[0,-3],[2,-2],[5,-3],[1,0],[2,0],[1,0],[1,0],[0,2],[0,2],[0,3],[-2,3],[-1,2],[0,1],[0,1],[0,2],[-1,5],[0,6],[0,3],[0,4],[-1,4]],[[5442,53259],[-2,4],[1,3],[3,1],[3,-1],[3,-5],[-1,-4],[-3,-1],[-4,3]],[[96694,53786],[1,-2],[3,-1],[1,2],[2,4],[0,6],[0,5],[-1,4],[2,-7],[-1,-10],[-3,-6],[-4,5]],[[97700,54083],[1,-2],[1,-3],[3,-6],[1,-2],[-2,0],[-3,0],[-1,2],[-1,5],[1,6]],[[97752,54674],[2,3],[1,4],[0,4],[-2,4],[4,-4],[-1,-8],[-4,-7],[-5,-1],[1,2],[1,1],[3,2]],[[96856,53178],[14,10],[2,5],[7,18],[-3,-14],[-4,-12],[-7,-6],[-9,-1]],[[97107,53905],[6,7],[2,3],[2,6],[1,7],[3,18],[2,28],[3,15],[5,11],[7,9],[5,10],[5,12],[-4,-22],[-16,-22],[-3,-23],[-2,-18],[-3,-24],[-6,-18],[-7,1]],[[97785,54055],[-6,1],[-7,-2],[-6,0],[-4,9],[1,-1],[2,-1],[2,-1],[9,-1],[9,-4]],[[97709,54599],[-7,2],[-12,18],[-8,4],[-12,-4],[-6,5],[-5,19],[3,-8],[3,-5],[4,-3],[18,2],[4,-2],[12,-21],[6,-7]],[[97608,54680],[-7,-9],[-20,-6],[-9,-10],[-8,0],[-9,3],[-39,37],[-7,12],[4,9],[0,-5],[1,-4],[1,-7],[47,-40],[3,0],[7,3],[6,4],[30,13]],[[96876,54798],[20,0],[-4,-10],[-6,1],[-13,6],[-14,6],[-6,4],[1,9],[4,-8],[7,-4],[6,-4],[5,0]],[[96826,54854],[-4,6],[-2,10],[0,12],[2,8],[1,-8],[2,-19],[1,-9]],[[96361,57086],[-2,-10],[-6,-6],[-6,0],[-5,8],[10,2],[9,6]],[[96975,53809],[1,6],[1,-1],[-2,-5]],[[97719,54648],[1,1],[0,2],[1,1],[1,0],[-2,-7],[-3,-7],[-2,-6],[-4,-5],[2,5],[6,16]],[[96934,54955],[0,4],[1,2],[-2,5],[-3,2],[-4,0],[2,1],[2,1],[2,0],[2,-2],[1,-5],[0,-2],[0,-3],[0,-5],[-1,2]],[[96500,55396],[1,-7],[-2,2],[1,5]],[[96591,55637],[0,3],[0,3],[1,2],[2,3],[0,-4],[-1,-2],[-2,-5]],[[97458,55739],[-2,-7],[-2,1],[0,1],[1,6],[1,1],[1,0],[1,-2]],[[97288,56066],[0,10],[1,0],[1,-5],[-2,-5]],[[97464,56554],[0,8],[1,0],[0,-7],[-1,-1]],[[95982,57359],[1,0],[1,-1],[1,-3],[1,-4],[-4,8]],[[95911,57396],[0,8],[1,1],[1,-3],[-2,-6]],[[96946,59122],[1,0],[-1,-4],[-3,-6],[-3,-4],[3,7],[3,7]],[[33055,56806],[-6,2],[-3,-11],[-1,-18],[0,-17],[5,-36],[1,-18],[-8,-14],[1,-17],[1,-11],[2,-32],[2,-8],[2,-8],[5,-15],[10,-16],[-8,-18],[-4,-31],[0,-34],[2,-30],[-6,2],[-6,-4],[-7,-8],[-5,-9],[-4,-7],[-7,-5],[-12,-6],[-3,-1],[-4,0],[-17,5],[-6,-1],[-18,-7],[-22,4],[-24,-4],[-11,4],[-3,-1],[-7,-7],[-4,-1],[-5,-3],[-3,0],[-4,1],[-2,3],[-3,4],[-3,4],[-5,3],[-6,2],[-24,0],[-7,-2],[-5,-5],[-4,-7],[-5,-7],[-6,-4],[-5,0],[-6,8],[3,8],[9,10],[1,2],[3,2],[9,4],[2,4],[3,9],[4,7],[5,4],[21,14],[2,1],[10,11],[9,15],[0,18],[3,4],[4,0],[15,-5],[11,1],[4,0],[3,3],[3,6],[4,8],[2,8],[1,12],[0,4],[-1,6],[-1,9],[-1,11],[-1,4],[-2,4],[-1,3],[0,3],[1,1],[1,0],[0,2],[0,4],[-2,12],[-1,4],[0,9],[1,11],[4,19],[2,22],[0,23],[-3,22],[-7,18],[2,4],[-11,15],[-5,6],[-8,7],[-6,3],[-14,2],[-2,1],[-1,3],[-2,7],[14,21],[4,4],[11,-2],[13,6],[7,0],[1,0],[4,3],[2,6],[1,2],[2,-7],[2,0],[0,2],[0,6],[2,0],[0,-3],[0,-1],[1,-2],[1,-2],[-2,-4],[2,1],[1,3],[2,2],[0,2],[6,0],[2,4],[6,13],[1,3],[4,1],[1,0],[15,-4],[32,0],[3,4],[4,7],[16,4],[5,5],[36,8],[12,-4],[-12,-44],[-14,-38]],[[33186,57192],[2,-4],[0,-15],[-1,-18],[-2,-13],[-3,1],[-2,0],[-2,-8],[-2,-1],[-3,1],[-3,0],[0,-2],[-4,-12],[-1,0],[-7,-9],[-2,-3],[-3,-4],[-3,0],[-4,1],[-2,1],[-17,-18],[-5,-3],[-7,-13],[-5,-4],[-2,9],[-4,-4],[-4,1],[-2,6],[0,9],[3,3],[3,1],[4,3],[2,8],[2,7],[24,33],[5,10],[3,5],[3,3],[9,7],[8,4],[3,4],[4,1],[4,-5],[2,0],[6,13],[3,5]],[[32885,57703],[2,-10],[1,-8],[-1,-30],[-1,-4],[-1,-4],[-2,-9],[0,-4],[2,-10],[-1,-2],[-1,-1],[-1,-4],[-1,-4],[0,-5],[-1,-6],[-12,-13],[0,5],[-2,-3],[-2,-3],[-1,-4],[-1,-6],[-2,1],[-3,2],[-2,2],[-2,3],[-3,-6],[-5,-2],[-5,1],[-4,2],[9,13],[2,4],[1,8],[-1,7],[-1,7],[-1,8],[2,13],[5,24],[1,10],[16,41],[6,2],[6,-2],[6,-7],[0,-2],[-2,-4]],[[32936,57845],[-5,4],[-4,-3],[-5,-5],[-5,-4],[1,4],[2,9],[1,4],[-1,0],[-3,0],[1,2],[1,6],[6,-4],[4,10],[3,14],[4,8],[2,-10],[0,-10],[-1,-12],[-1,-13]],[[33001,58190],[-4,-8],[-5,-18],[-4,-6],[2,0],[-2,-4],[-2,4],[-2,3],[-3,1],[-3,0],[0,4],[4,-3],[7,3],[0,5],[-2,4],[-1,3],[2,5],[8,10],[3,6],[1,-3],[0,-2],[0,-2],[1,-2]],[[33009,58255],[-5,-8],[-7,7],[-17,25],[-2,17],[0,20],[4,16],[-1,2],[-1,6],[8,3],[3,13],[2,17],[3,14],[4,5],[3,2],[3,0],[7,-2],[2,-2],[1,-4],[2,-9],[3,-26],[0,-36],[-4,-36],[-8,-24]],[[32933,57936],[3,-4],[1,-5],[-2,-3],[-3,-1],[-3,0],[-2,4],[2,3],[0,2],[-1,2],[1,2],[2,1],[2,-1]],[[32967,58011],[0,-2],[1,-6],[-2,-4],[-1,-3],[-1,-6],[-2,-3],[-2,0],[-3,2],[1,2],[3,1],[1,4],[0,5],[0,6],[3,3],[2,1]],[[33002,58090],[2,9],[3,-1],[-3,-11],[-1,-4],[-1,0],[0,7]],[[33492,58263],[-1,-20],[-7,-15],[-5,-8],[-4,-5],[-6,-13],[-2,0],[-2,0],[-1,-1],[-2,-2],[-3,10],[-5,6],[-6,3],[-4,0],[-2,1],[-4,5],[-3,13],[-4,26],[-2,80],[1,9],[2,8],[4,9],[5,4],[5,-6],[3,-12],[2,-6],[2,-9],[5,-24],[4,-11],[5,-8],[7,-11],[4,-5],[6,-4],[5,-5],[3,-9]],[[33087,58767],[1,-18],[0,-15],[-4,-46],[1,-26],[-3,-29],[-1,-4],[-1,-1],[-3,-2],[-2,-2],[-1,-5],[-2,-23],[-2,-3],[-1,-1],[-1,0],[-5,14],[-21,17],[-5,11],[-1,4],[-1,3],[-1,5],[1,9],[1,6],[-1,12],[0,4],[-1,3],[0,3],[-1,6],[1,7],[3,11],[0,5],[2,8],[6,20],[3,13],[7,21],[1,3],[3,3],[1,3],[1,3],[1,11],[1,4],[7,20],[4,6],[5,-4],[-1,-10],[2,-5],[3,-4],[2,-5],[1,-7],[1,-25]],[[32954,59472],[-3,2],[0,5],[1,14],[0,18],[0,2],[-2,7],[-3,8],[-1,7],[0,15],[-2,11],[-4,17],[0,4],[-1,11],[-1,6],[-6,13],[-1,5],[-1,5],[-1,6],[-2,5],[-1,2],[-2,3],[-1,7],[0,15],[-1,4],[-1,3],[-2,3],[0,6],[2,4],[4,6],[2,6],[-2,1],[-3,3],[-3,0],[3,7],[3,25],[5,0],[4,0],[3,-3],[3,-5],[5,-14],[3,-5],[5,5],[3,1],[14,-11],[0,-4],[2,-9],[3,-10],[1,-5],[5,-13],[0,-1],[3,-21],[0,-22],[-2,-17],[1,0],[2,-2],[1,-2],[-2,-21],[1,-19],[0,-5],[-1,-23],[-6,-21],[-2,-3],[-1,-1],[-1,0],[-3,0],[-2,1],[-2,-1],[-2,-3],[-1,-8],[-4,-3],[-1,-4],[0,-1],[-1,-4],[-4,-2]],[[2908,60395],[3,2],[1,0],[-2,-3],[-1,-1],[-2,-1],[-1,0],[0,1],[2,1],[0,1]],[[5547,50247],[6,2],[-1,-6],[-3,-4],[-2,8]],[[976,50586],[1,0],[1,1],[1,0],[0,-3],[-1,-2],[-1,1],[0,2],[-1,1]],[[983,50603],[1,-4],[-2,2],[1,2]],[[934,50938],[-1,7],[0,1],[1,2],[0,-3],[0,-7]],[[96282,61889],[3,0],[2,2],[1,5],[-2,7],[4,-5],[1,-8],[-2,-5],[-7,4]],[[742,67177],[2,-2],[0,-1],[-1,-1],[-3,0],[2,4]],[[734,67179],[-2,-4],[-2,-3],[-2,-3],[-3,0],[1,5],[2,4],[3,1],[3,0]],[[2908,60379],[2,0],[-5,-6],[-2,-1],[0,2],[0,2],[5,3]],[[2913,60386],[0,1],[0,-1]],[[29160,61377],[1,-1],[2,0],[1,-1],[1,-2],[1,-1],[0,-2],[0,-1],[-1,0],[0,-4],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[-1,0],[-1,3],[0,3],[2,0]],[[4983,53956],[1,-3],[-1,-5],[-3,-2],[-5,1],[-1,2],[1,0],[1,2],[3,4],[-1,0],[-1,-1],[-1,0],[-2,1],[-2,1],[-1,1],[1,1],[8,0],[3,-2]],[[4889,54287],[4,0],[0,-9],[-4,0],[0,9]],[[32737,60386],[-1,-4],[-1,-8],[1,-2],[0,-3],[1,-4],[1,-4],[0,-3],[-1,-5],[-1,-4],[-2,-3],[-3,-1],[-14,8],[-3,23],[3,29],[4,25],[4,-3],[2,-1],[2,1],[-1,-11],[2,-11],[4,-10],[3,-9]],[[32810,60566],[1,7],[-1,6],[0,5],[5,5],[-2,1],[-6,7],[3,6],[5,4],[6,4],[-2,8],[0,7],[3,6],[4,5],[9,-2],[3,-11],[2,-12],[5,-7],[0,5],[1,4],[3,7],[1,-5],[2,-3],[3,-1],[3,1],[-1,-3],[-1,-2],[-1,-2],[-2,-1],[1,-9],[3,-4],[3,1],[4,4],[2,0],[2,-3],[1,-3],[1,-7],[-2,1],[-4,-1],[-2,0],[3,-6],[2,-3],[2,-4],[-1,-7],[-3,-10],[-3,0],[-4,4],[-5,2],[-2,-2],[0,-5],[2,-15],[-3,-7],[-4,4],[-5,9],[-2,4],[-1,-1],[-6,-5],[-4,-2],[-6,0],[-3,2],[-9,11],[-2,5],[2,8]],[[32822,60889],[-3,-4],[-2,8],[0,24],[-2,11],[-1,9],[-2,10],[1,11],[1,-2],[0,-2],[1,-4],[1,-7],[5,-11],[1,-7],[0,-8],[-1,-7],[0,-5],[3,-4],[2,11],[0,15],[-2,13],[-5,6],[-2,7],[2,11],[4,4],[5,-14],[-2,-3],[-2,-1],[4,-3],[6,4],[3,-1],[5,-7],[4,-10],[3,-10],[2,-10],[2,-17],[0,-10],[0,-9],[-2,-12],[-2,-2],[-3,1],[-5,-4],[-2,11],[-5,8],[-12,10]],[[32611,60658],[6,-1],[5,-3],[4,-8],[2,-13],[0,-5],[0,-14],[0,-5],[-2,-7],[-1,-3],[-5,-2],[-13,2],[-4,22],[3,25],[5,12]],[[32597,60695],[4,-5],[3,-9],[0,-10],[-6,-5],[-4,5],[-3,22],[-5,7],[-4,9],[-2,1],[-9,-1],[-4,1],[-9,8],[-12,15],[-8,19],[2,19],[2,2],[0,1],[1,1],[1,0],[4,3],[1,2],[1,4],[27,-34],[7,-15],[5,-25],[3,-11],[5,-4]],[[32067,60982],[-8,-1],[-6,-4],[-11,-11],[-6,-4],[-58,-17],[-5,-3],[2,10],[1,8],[-1,25],[1,7],[2,5],[11,-7],[6,6],[6,8],[7,3],[0,-2],[11,-14],[6,-5],[3,-3],[2,-5],[7,11],[10,5],[11,-2],[9,-6],[0,-4]],[[32027,61333],[-2,-2],[3,-8],[-2,-14],[-9,10],[-14,-3],[-4,8],[4,13],[5,4],[5,3],[-1,4],[2,3],[10,-5],[4,-2],[4,-4],[5,-5],[1,-6],[-3,-1],[-8,5]],[[31980,61316],[-2,-6],[-9,7],[-3,4],[-3,10],[-1,-6],[-2,4],[-6,-2],[-5,1],[-3,8],[-9,-6],[-4,9],[8,9],[7,4],[10,-1],[4,-6],[3,1],[-5,7],[-2,5],[6,-3],[10,-12],[10,-12],[5,-13],[-4,-1],[-2,1],[-3,-2]],[[32544,61060],[-3,5],[-3,9],[-1,8],[0,6],[2,-3],[19,-6],[-2,-6],[-4,-7],[-3,-6],[-5,0]],[[31151,61197],[3,-6],[0,-4],[-1,-4],[-3,-10],[-1,-3],[-1,-2],[-1,-5],[-1,-2],[-3,0],[-2,0],[-1,2],[-2,5],[-8,9],[-2,8],[2,9],[3,3],[16,1],[2,-1]],[[31848,61197],[-3,5],[-4,-2],[-5,-4],[-22,-11],[-4,-4],[-6,4],[-9,-2],[-8,2],[-4,17],[4,0],[2,0],[5,1],[6,4],[5,6],[4,7],[2,3],[22,7],[4,-1],[10,-7],[14,-1],[4,-3],[3,-7],[-3,-2],[-7,1],[-2,-2],[-5,-7],[-2,-4],[-1,0]],[[31867,61295],[-4,12],[-12,22],[0,2],[7,0],[8,-3],[7,-7],[3,-10],[-1,0],[-3,0],[2,-4],[-3,0],[-2,1],[-2,3],[0,4],[-2,0],[2,-10],[1,-4],[-1,-6]],[[31769,61295],[-1,-7],[2,-5],[3,-2],[3,4],[0,-5],[0,-5],[4,-9],[-3,-4],[-1,-5],[-2,0],[-3,8],[-3,0],[-1,-6],[3,-8],[-3,-4],[-3,1],[-5,5],[-5,-3],[-5,-5],[-5,-3],[-5,-4],[-5,-10],[-9,-31],[-1,-16],[-4,-10],[-1,-2],[-7,-2],[-1,-4],[2,-18],[-5,-10],[-10,-13],[-15,-10],[-6,0],[-6,3],[-6,1],[-3,-1],[-9,-7],[-2,0],[-8,0],[-6,-3],[-16,-17],[-3,-1],[-3,0],[-3,0],[-2,-3],[-2,4],[0,1],[0,3],[3,2],[1,3],[-2,3],[-2,4],[-6,-10],[-3,-2],[-4,2],[-7,2],[-3,1],[-1,4],[-1,4],[-2,3],[-3,4],[-3,1],[-4,0],[-7,-4],[-8,-11],[-5,2],[-6,8],[-4,11],[-5,6],[-5,-2],[-4,-1],[-3,-3],[-4,-2],[-9,-1],[-3,-3],[-3,-4],[-3,-1],[-5,5],[-2,-3],[-2,-2],[-1,7],[-5,1],[-12,-3],[-2,1],[-8,6],[-11,0],[0,8],[-3,3],[-3,-2],[-4,-4],[0,-5],[4,0],[-3,-9],[-6,-6],[-6,-3],[-6,-2],[-9,0],[-4,-1],[-3,1],[-1,0],[-1,-3],[-1,-4],[0,-5],[-5,1],[-4,6],[-6,13],[-6,1],[-6,2],[-7,0],[-4,2],[-4,-6],[-4,-5],[-5,-2],[-3,1],[-9,2],[-7,6],[-3,-4],[2,-14],[-3,0],[-4,13],[-1,6],[0,16],[7,6],[2,3],[2,1],[2,2],[1,5],[-1,3],[-3,3],[-3,-2],[-4,4],[0,11],[2,5],[3,4],[-1,6],[-1,10],[3,6],[0,19],[2,22],[2,5],[3,4],[1,7],[-1,6],[-4,7],[-4,28],[-3,11],[-6,3],[-5,2],[-5,18],[-2,8],[-3,11],[1,4],[8,5],[6,5],[5,5],[4,5],[7,11],[1,13],[-3,10],[-1,15],[5,14],[14,8],[15,-1],[10,-9],[29,-12],[29,8],[4,-1],[11,-8],[4,0],[11,5],[15,3],[8,-2],[7,-6],[5,2],[17,0],[12,-7],[23,10],[22,-14],[13,8],[14,-10],[3,5],[4,-1],[2,-5],[1,-4],[2,-2],[3,3],[2,6],[3,-2],[-1,-7],[6,-6],[0,-6],[2,-7],[4,-1],[10,6],[0,4],[-5,1],[-5,6],[-4,8],[-3,7],[18,-12],[4,-2],[4,-2],[4,-2],[4,4],[2,8],[7,-3],[12,-7],[5,6],[3,-2],[4,-5],[8,-4],[5,-6],[5,-10],[3,3],[3,5],[1,-1],[0,-3],[-1,-3],[-1,-5],[2,1],[3,3],[2,2],[4,-14],[5,-5],[4,5],[7,-12],[10,-2],[5,7],[2,4],[2,3],[3,-1],[0,-4],[-3,-29],[-1,-25],[1,-7]],[[32498,61291],[6,2],[3,0],[0,-4],[-5,-19],[-2,-6],[-4,-4],[-7,-4],[-17,-22],[-1,2],[-2,3],[-1,3],[-6,-10],[-4,-2],[-5,0],[7,17],[2,3],[4,3],[7,2],[3,3],[5,12],[3,10],[5,8],[9,3]],[[32381,61481],[0,5],[1,-1],[-1,-4]],[[32045,61370],[-2,-7],[-4,-7],[-5,1],[-4,0],[-6,1],[3,7],[5,1],[3,8],[2,7],[1,9],[6,7],[4,-3],[6,3],[3,-2],[9,3],[9,-2],[3,-6],[-1,-3],[-3,1],[-4,2],[-4,-4],[-1,-4],[-3,-4],[-2,-2],[-2,1],[-2,2],[-2,1],[-2,0],[0,-2],[-3,-5],[-2,-4],[-2,1]],[[32116,61414],[-2,-5],[-5,-9],[-6,-7],[-4,-1],[7,19],[2,10],[-1,12],[1,0],[1,-1],[0,-2],[1,-1],[16,1],[5,3],[-2,-9],[-5,-6],[-5,-3],[-3,-1]],[[32128,61558],[-12,2],[-5,3],[-3,8],[25,0],[10,-7],[4,-20],[-3,1],[-16,13]],[[32064,61342],[0,-5],[0,-8],[-1,-1],[-1,5],[-3,3],[-4,2],[-1,2],[3,1],[2,1],[1,0],[1,1],[3,-1]],[[32019,61398],[1,-2],[1,-4],[-2,-3],[-8,2],[-4,0],[1,5],[8,3],[3,-1]],[[32074,61422],[1,-1],[0,-6],[0,-3],[-1,-6],[-1,-3],[-1,2],[1,4],[-1,6],[1,5],[1,2]],[[28815,61137],[2,-10],[2,-11],[5,-14],[5,-11],[7,-12],[-3,-4],[-14,-8],[-10,-11],[-6,-3],[-5,2],[2,3],[1,2],[1,7],[-5,-3],[-4,-14],[-5,-3],[-5,3],[-5,4],[-5,3],[-8,-6],[-22,-4],[-15,5],[-2,-1],[-3,0],[-2,0],[-3,4],[-1,6],[-1,6],[0,6],[-3,3],[-2,1],[-1,4],[-2,3],[-1,4],[-9,4],[-2,2],[-4,4],[-6,-1],[-10,-5],[-4,-1],[-15,1],[0,4],[31,4],[-2,3],[-1,3],[-4,2],[-8,0],[-6,0],[-6,7],[-5,6],[-3,4],[-1,-6],[-2,-6],[-3,-8],[-1,-5],[-4,1],[-1,-4],[-1,-14],[-5,-36],[-4,-10],[-4,-6],[-4,0],[-2,2],[-2,3],[-3,3],[-16,0],[0,4],[6,4],[-3,5],[-4,11],[-3,4],[-3,3],[-8,2],[-7,-5],[-7,-8],[-4,-18],[-1,-6],[2,-16],[-2,-2],[-4,-4],[-2,-2],[1,-3],[1,-6],[0,-4],[-3,3],[-3,0],[-3,-2],[-2,-4],[5,-7],[5,-2],[5,1],[6,4],[3,-23],[-1,-10],[-7,-4],[-6,0],[-5,3],[-5,5],[-24,44],[-5,12],[-21,25],[-6,5],[-7,1],[-5,-4],[-6,-8],[-6,-1],[-12,7],[-12,4],[-37,-4],[-2,1],[-6,8],[-10,9],[-2,4],[-1,5],[-3,15],[-1,5],[-1,4],[-5,3],[-1,3],[-1,12],[1,15],[-2,13],[-7,5],[-19,0],[-5,4],[-6,31],[-3,6],[-2,3],[-3,3],[-2,1],[-2,4],[-1,7],[-2,14],[-5,21],[-7,8],[-20,-1],[-13,4],[-4,0],[-3,-4],[-2,-3],[-2,1],[-7,6],[-4,2],[-9,5],[-5,1],[-5,3],[-4,6],[-4,9],[-1,11],[2,5],[4,6],[2,5],[0,7],[0,18],[1,5],[2,7],[0,5],[1,2],[4,1],[3,3],[2,7],[3,5],[5,-3],[2,17],[9,16],[10,6],[7,-11],[4,10],[5,0],[5,-4],[6,-2],[18,4],[6,0],[3,-2],[2,-2],[3,-1],[3,1],[3,4],[0,4],[0,4],[2,6],[6,17],[3,5],[5,5],[11,3],[13,0],[23,-10],[19,-9],[27,-1],[12,-6],[19,-3],[8,-4],[5,-7],[9,5],[14,0],[15,-3],[10,-6],[1,-2],[1,-8],[2,-2],[1,0],[2,1],[1,2],[0,1],[12,-4],[2,-2],[4,-8],[2,-2],[9,-1],[9,3],[5,2],[4,-2],[6,-5],[3,-1],[16,1],[3,4],[5,1],[4,-1],[3,-1],[2,-5],[-1,-7],[0,-8],[3,-5],[10,-13],[9,-10],[1,-6],[3,-16],[1,-5],[3,-3],[5,-3],[15,-2],[4,-2],[4,-5],[6,-10],[4,-6],[5,-3],[9,1],[5,-7],[1,0],[1,-3],[2,-2],[2,-2],[21,0],[2,-1],[2,-9],[1,-2],[20,-8],[11,-8],[1,-12],[8,-16],[6,-18],[9,-39]],[[27462,61932],[5,-1],[5,-4],[3,-7],[1,-15],[-6,-8],[-8,-3],[-9,5],[-7,-2],[-6,-2],[-5,-2],[-4,-6],[-5,-8],[-3,0],[-18,4],[-5,1],[-5,-1],[-3,-5],[-3,6],[1,9],[1,4],[1,7],[1,10],[0,8],[-2,8],[-4,7],[-3,4],[1,7],[1,5],[4,3],[5,-4],[0,-8],[2,-10],[3,-11],[-1,-12],[4,-10],[7,0],[5,4],[1,7],[2,8],[2,-2],[4,-2],[0,2],[-1,2],[-1,4],[2,-4],[-1,2],[0,2],[0,2],[1,2],[-1,2],[-1,3],[-2,7],[5,-1],[10,-9],[6,-2],[15,4],[6,0]],[[27767,62139],[8,0],[8,6],[4,-6],[-1,-1],[-2,-3],[-8,-4],[-20,-22],[-10,3],[4,11],[5,5],[5,9],[7,2]],[[27813,62139],[19,17],[10,11],[6,3],[4,-3],[1,-9],[-13,-14],[-22,-13],[-11,-7],[6,15]],[[32034,69651],[8,-12],[-2,-6],[0,-5],[-2,2],[-1,3],[-4,2],[-1,-3],[-2,4],[-5,-7],[1,-5],[3,-2],[5,-3],[-6,-5],[-5,-7],[-7,-9],[-4,-4],[-2,-6],[-6,-9],[-7,-7],[-7,-5],[-4,1],[-3,0],[-5,5],[-1,8],[-1,7],[2,-2],[0,4],[1,6],[-1,5],[2,-1],[1,3],[1,-3],[2,-3],[-3,-4],[-1,-7],[0,-2],[1,-2],[5,-1],[0,-2],[-4,1],[0,-4],[2,-5],[3,0],[4,3],[1,4],[2,1],[5,5],[6,7],[1,2],[-5,-1],[-3,2],[-2,7],[1,2],[8,-3],[5,5],[3,1],[3,6],[1,0],[5,0],[2,4],[2,4],[-2,3],[-3,-2],[-3,-3],[0,-3],[-2,0],[0,3],[1,6],[4,5],[3,7],[4,6],[6,9]],[[31995,69592],[1,0],[2,-2],[2,-2],[-1,-1],[-2,1],[-3,-1],[-3,0],[0,4],[1,1],[2,-1],[1,1]],[[70481,19016],[8,-4],[7,-1],[7,1],[-42,-17],[-15,-19],[-8,-5],[-20,-3],[-9,2],[-10,10],[-2,4],[-8,16],[-9,29],[-2,9],[2,6],[-3,3],[-2,5],[0,4],[3,4],[-5,5],[-5,2],[-16,2],[-4,4],[-4,8],[-1,12],[9,4],[8,8],[9,-14],[2,0],[2,-7],[4,-7],[5,-5],[2,3],[1,9],[3,4],[4,-1],[4,-7],[-4,-3],[3,-10],[6,-1],[7,4],[5,7],[5,-4],[16,-1],[6,-6],[3,-4],[7,-3],[3,-3],[2,-4],[4,-10],[2,-2],[7,-11],[3,-6],[10,-7]],[[47242,26575],[6,-10],[2,-4],[1,-9],[-8,-7],[-12,9],[-20,27],[0,4],[2,10],[3,4],[3,2],[13,1],[4,-1],[2,-5],[3,-16],[1,-5]],[[46581,28516],[3,7],[1,2],[13,-2],[5,-6],[4,-7],[6,-6],[-1,-5],[-1,-3],[-2,-2],[-2,-2],[-9,-16],[-5,-7],[-4,0],[-7,14],[-9,13],[3,6],[5,14]],[[48410,41048],[4,1],[8,0],[3,3],[3,-10],[2,-9],[0,-9],[-1,-8],[-2,-10],[-4,-5],[-3,-4],[-4,-6],[-1,4],[-1,1],[-1,2],[-1,2],[-4,-9],[-5,-5],[-5,-1],[-4,4],[-3,8],[1,6],[2,7],[1,8],[2,9],[4,9],[5,7],[4,5]],[[46012,45800],[2,-9],[10,-16],[5,-11],[-3,-4],[-7,-6],[-3,-4],[-3,-3],[-7,-1],[-4,-2],[-4,3],[-2,7],[0,7],[-1,7],[3,9],[4,20],[4,7],[1,-4],[1,-3],[1,0],[3,3]],[[66054,38493],[-1,-14],[-1,-16],[-3,-18],[-1,-9],[2,-9],[-7,-5],[-8,-12],[-4,-14],[2,-10],[0,-4],[1,-5],[1,-3],[-1,-6],[-2,-1],[-2,0],[-1,-1],[-4,-14],[-2,-6],[-4,-5],[-23,-15],[-23,-7],[-9,1],[-13,9],[-7,1],[-6,-5],[-16,29],[-4,8],[-1,8],[4,4],[7,-3],[4,1],[2,8],[1,17],[0,6],[-3,3],[2,14],[0,33],[2,18],[2,10],[6,26],[2,4],[1,2],[6,11],[3,2],[6,4],[2,2],[5,10],[1,11],[0,11],[4,16],[4,21],[1,6],[2,4],[7,12],[2,2],[4,0],[1,2],[2,4],[1,5],[3,2],[5,-2],[12,-7],[3,-4],[2,-6],[-2,-10],[1,-6],[2,-6],[2,-10],[3,-8],[1,-7],[1,-4],[1,0],[3,1],[1,-1],[4,-5],[0,-4],[-1,-19],[3,-6],[2,-5],[3,-16],[5,-13],[2,-7]],[[65701,44352],[0,2],[0,1],[1,1],[2,0],[2,-14],[7,-23],[0,-12],[-6,14],[-5,17],[-1,8],[0,6]],[[67632,38816],[5,-2],[-2,-12],[-5,-13],[-9,-6],[-6,-2],[-4,-5],[-5,-6],[-5,-7],[-8,17],[-1,1],[0,11],[3,5],[3,3],[9,12],[9,6],[10,3],[6,-5]],[[62163,43181],[2,-2],[15,-21],[3,-10],[-1,-5],[-4,-1],[-7,0],[-18,8],[-20,1],[-4,3],[-2,5],[1,10],[-1,6],[-3,4],[-2,3],[-2,3],[-1,8],[0,21],[1,9],[5,-4],[4,-4],[12,-5],[5,-3],[14,-20],[3,-6]],[[62369,43225],[-1,-72],[-1,-11],[-3,-4],[-3,2],[-3,5],[-2,6],[-1,5],[0,8],[-2,4],[-20,29],[-3,8],[-1,9],[-5,4],[-11,5],[-17,19],[-2,4],[-11,13],[-4,9],[4,0],[4,-2],[7,-6],[5,-3],[9,-2],[3,-3],[2,2],[3,3],[1,3],[8,-4],[8,14],[4,22],[-1,20],[3,2],[4,5],[3,2],[1,1],[1,2],[1,1],[2,0],[2,-2],[2,-9],[1,-2],[12,-79],[1,-8]],[[62073,43469],[1,-6],[2,-7],[6,-18],[0,-5],[-3,-11],[-1,-6],[0,-4],[-1,-3],[-2,-3],[-3,-2],[-3,-1],[-4,1],[-1,4],[-2,7],[-15,31],[-5,3],[-11,2],[-3,1],[-4,4],[-5,9],[-2,6],[-1,5],[0,5],[-2,6],[-7,15],[-3,9],[-1,15],[1,5],[2,7],[6,19],[0,6],[-1,6],[0,7],[3,105],[0,7],[-2,6],[3,11],[3,14],[3,12],[3,0],[12,8],[7,2],[5,-4],[3,-9],[3,-10],[1,-10],[-6,-111],[2,-24],[12,-37],[5,-24],[0,-6],[0,-13],[0,-6],[1,-4],[2,-4],[2,-4],[0,-6]],[[51855,50711],[7,-9],[6,-15],[5,-17],[3,-16],[2,-16],[-1,-9],[-1,-11],[-2,-12],[-2,-7],[-7,-14],[-4,-8],[-7,-28],[-2,-2],[-3,-1],[-1,-3],[1,-10],[-2,-2],[-3,-2],[-2,-1],[-4,-10],[-1,-2],[-9,-1],[-1,1],[-3,-21],[-3,-9],[-4,10],[-2,-11],[-3,-1],[-2,6],[-2,10],[0,1],[2,10],[0,5],[-1,6],[-1,3],[-1,1],[-1,2],[-10,67],[-2,6],[2,5],[0,6],[0,12],[1,4],[5,14],[1,5],[1,4],[0,4],[10,21],[2,2],[11,8],[8,15],[9,12],[11,-2]],[[52072,51461],[-1,-2],[-3,-3],[-3,-4],[-2,-6],[4,-2],[4,-4],[1,-5],[-2,-2],[-4,-2],[-1,-5],[0,-13],[-1,-12],[-2,-6],[-2,-2],[-3,-2],[-1,-3],[0,-5],[-1,-7],[0,3],[-1,4],[-1,2],[-1,-2],[-2,-3],[-3,10],[-4,3],[-4,0],[-3,4],[-1,18],[1,11],[2,-1],[5,4],[2,6],[1,7],[0,10],[1,11],[4,9],[5,4],[5,-2],[8,-2],[3,-2],[0,-9]],[[43137,59294],[3,-6],[2,-8],[1,-10],[0,-10],[-1,-10],[-2,-4],[-3,-3],[-1,-6],[-3,0],[-2,6],[-5,7],[-2,7],[-2,-4],[1,6],[1,5],[-1,5],[-1,5],[4,0],[-1,11],[3,4],[5,1],[4,4]],[[43251,59304],[-2,-6],[1,-7],[1,-7],[1,-6],[-2,-6],[-10,-19],[-12,-9],[-10,3],[-10,10],[-16,28],[-4,11],[-1,12],[1,12],[4,15],[5,12],[7,10],[17,18],[5,4],[6,1],[6,-3],[3,-7],[3,-9],[4,-20],[3,-29],[0,-8]],[[43484,59367],[0,-3],[1,-2],[1,-2],[2,-1],[-2,-9],[-2,-5],[-6,-10],[2,-4],[-3,-10],[-1,-9],[-3,-7],[-4,-3],[-2,-1],[-4,-2],[-2,-1],[-2,1],[-3,2],[-2,1],[-9,0],[-8,2],[-7,5],[-7,6],[-11,19],[-4,10],[0,20],[-3,4],[-5,3],[-4,4],[0,3],[-2,13],[-1,2],[-1,3],[-1,3],[0,5],[0,4],[4,15],[1,5],[0,8],[-4,20],[3,2],[2,4],[1,6],[0,7],[1,6],[1,4],[1,3],[1,3],[-1,10],[-2,12],[-3,9],[-4,4],[2,1],[6,6],[-4,4],[-2,0],[8,13],[2,0],[0,-5],[1,-2],[0,-2],[1,-4],[5,7],[4,-5],[2,-11],[-4,-7],[4,-11],[4,-6],[10,-11],[-3,-4],[5,-2],[3,-4],[4,-15],[8,-19],[5,-6],[4,1],[1,-3],[1,-2],[0,-1],[2,-2],[-1,-1],[2,-3],[2,-4],[1,0],[3,1],[1,-1],[0,-2],[-1,-4],[1,-2],[11,-45],[1,-2],[1,0],[1,-2],[1,-4]],[[43575,59537],[2,-7],[0,-9],[0,-16],[3,-34],[0,-16],[-5,-15],[-1,-1],[-5,-2],[-1,-1],[-1,-3],[-2,-7],[-1,-2],[-4,-1],[-4,2],[-6,7],[-6,10],[-3,7],[-2,7],[1,8],[2,7],[1,7],[-2,7],[4,5],[2,7],[-2,7],[-4,1],[1,8],[6,10],[4,14],[-1,2],[0,1],[-1,2],[4,3],[4,5],[0,-2],[0,-6],[2,4],[1,1],[1,3],[2,-4],[-2,-4],[4,-4],[6,3],[3,-4]],[[43699,60012],[1,-1],[2,-5],[1,-7],[-1,-3],[-1,-2],[-1,-6],[0,-5],[-5,-7],[-15,-25],[-10,-11],[-5,-3],[-16,-2],[-3,1],[-3,2],[-4,7],[-3,2],[-10,10],[-4,6],[-1,13],[0,11],[1,11],[3,8],[4,3],[6,10],[-3,52],[2,19],[1,-5],[1,-3],[4,-5],[5,-5],[7,-5],[6,-1],[3,5],[2,9],[5,2],[16,-8],[3,-3],[3,-4],[1,-4],[2,-12],[1,-2],[5,-4],[1,-10],[-1,-23]],[[43314,60309],[6,-9],[3,-4],[1,3],[0,-21],[-3,-1],[-20,-1],[-21,20],[-12,6],[-11,-9],[-4,-10],[-8,-30],[-2,-22],[-3,7],[-4,22],[-1,5],[-2,4],[-2,5],[0,8],[0,6],[-1,5],[-2,3],[-2,1],[-7,4],[-4,10],[-2,13],[3,13],[16,12],[3,-1],[3,-3],[4,-4],[6,-12],[4,-4],[2,0],[16,5],[3,-1],[10,-10],[2,-1],[23,-4],[6,-5]],[[43630,60297],[-3,45],[-4,17],[-6,-6],[-1,9],[-1,11],[1,11],[3,6],[0,4],[-4,2],[-1,6],[-1,8],[0,18],[6,9],[13,18],[2,-5],[5,-9],[1,-5],[-1,-2],[-1,-7],[-2,-6],[0,-2],[1,-1],[1,-2],[-1,-35],[1,-11],[1,-4],[4,-7],[1,-4],[-1,-6],[-1,-12],[0,-6],[-1,-3],[-2,-4],[-1,-3],[0,-3],[1,-5],[0,-3],[1,-1],[-2,-5],[-2,-2],[-2,-2],[-4,-3]],[[43077,60475],[0,-2],[2,-6],[4,-5],[4,-3],[1,-3],[1,-8],[1,-8],[0,-6],[-5,-7],[-6,-5],[-8,-3],[-7,-1],[-2,-1],[-2,-6],[-2,-1],[-2,1],[-17,14],[-3,3],[-2,4],[-1,6],[-4,-4],[1,13],[3,10],[4,7],[4,3],[9,0],[3,4],[-1,8],[8,9],[1,4],[2,0],[2,-9],[3,1],[4,8],[3,-3],[3,-6],[1,-5],[-2,-3]],[[43042,60558],[-2,-6],[-17,-16],[-8,-16],[-5,-15],[-7,-10],[-12,-3],[-11,0],[-3,-2],[-2,-2],[-3,0],[-3,6],[-1,7],[0,39],[-4,14],[-1,2],[-5,2],[-1,2],[-2,10],[1,9],[7,16],[4,5],[4,1],[4,0],[2,0],[3,4],[7,13],[5,5],[7,8],[6,4],[17,17],[5,2],[3,-2],[3,-5],[7,1],[4,-3],[3,-4],[1,-4],[0,-14],[1,-3],[7,-3],[1,-2],[1,-3],[4,-7],[1,-4],[0,-6],[-2,-6],[-10,-23],[-1,0],[-2,-2],[-5,-4],[-1,-2]],[[54041,71724],[4,-12],[1,-14],[-2,-9],[-3,3],[-5,-8],[-1,-5],[0,-7],[-5,3],[-1,1],[-9,2],[-14,7],[-12,11],[-5,14],[-1,2],[-4,4],[0,3],[0,18],[-2,21],[-1,9],[-3,6],[3,6],[4,4],[4,2],[4,1],[0,-5],[-2,-1],[-2,-1],[-4,-6],[22,-4],[5,-3],[9,-14],[8,-5],[2,-5],[0,-5],[0,-6],[2,-1],[8,-6]],[[53960,71834],[7,-4],[9,-10],[5,-10],[-3,-5],[-5,0],[-8,-6],[-4,-2],[-6,1],[-5,3],[-6,4],[-4,5],[1,6],[-1,7],[-1,5],[4,2],[17,4]],[[49421,79642],[4,-5],[13,-9],[0,-6],[1,-3],[2,-3],[1,-2],[-3,-3],[-1,-4],[0,-5],[0,-6],[-1,-6],[-2,0],[-2,2],[-3,2],[-8,0],[-5,3],[-6,9],[-3,2],[-2,2],[-2,0],[-3,-3],[-2,-6],[-2,-7],[-2,1],[-4,5],[-3,2],[0,-1],[-6,-3],[-3,-1],[2,13],[-2,14],[-2,11],[0,7],[3,2],[4,-2],[5,-4],[4,1],[3,1],[3,2],[3,4],[2,-3],[6,-2],[3,-3],[2,3],[2,1],[4,0]],[[49283,79780],[6,4],[5,6],[6,3],[5,-5],[-2,-5],[-4,-11],[-1,-12],[-2,-10],[0,-2],[0,-1],[-3,-4],[-2,-2],[-2,0],[-2,2],[-2,0],[-27,0],[-1,2],[1,3],[2,3],[3,1],[-1,8],[1,3],[4,0],[3,1],[13,16]],[[49343,79753],[2,-4],[1,-7],[-3,-6],[-3,-4],[-1,1],[1,3],[0,3],[0,4],[0,3],[0,2],[1,2],[1,2],[1,1]],[[49395,79921],[2,-1],[0,-4],[-5,-7],[-4,-3],[-4,-1],[-3,2],[2,7],[4,3],[3,0],[4,4],[1,0]],[[49318,79774],[2,1],[0,-6],[-2,-7],[0,2],[0,6],[0,4]],[[48718,82483],[-2,8],[-3,0],[-3,-2],[-4,-2],[-4,2],[-5,9],[-4,2],[-6,-4],[-6,-7],[-5,-5],[-7,3],[0,4],[1,2],[1,1],[2,0],[2,1],[-1,12],[10,16],[2,11],[0,17],[1,8],[3,9],[1,6],[0,4],[0,2],[6,2],[7,6],[6,9],[8,9],[4,7],[12,37],[7,16],[10,12],[15,11],[10,3],[5,3],[5,2],[5,-3],[-2,-8],[-5,-22],[0,-8],[2,-5],[1,-10],[2,-4],[2,-1],[5,-1],[2,-2],[2,-3],[1,-6],[1,-5],[-3,-2],[-1,-2],[-4,-10],[-2,-2],[-2,-5],[-2,-5],[-1,-5],[-2,-2],[-7,-5],[2,-16],[-6,-9],[-10,-7],[-8,-9],[1,-7],[-16,-13],[-4,-7],[-1,-4],[-4,-2],[-5,-2],[-3,-2],[-2,-4],[-4,-16]],[[55632,86087],[6,-12],[-4,-11],[-4,-11],[2,-11],[-3,-4],[-2,2],[-2,3],[-3,3],[-9,6],[-2,2],[-1,10],[2,10],[3,9],[2,8],[6,-18],[4,-7],[1,7],[-3,12],[1,4],[6,-2]],[[55455,86133],[1,-4],[5,-6],[2,-4],[1,-4],[0,-3],[1,-11],[-1,-5],[-3,-1],[-2,1],[-2,-1],[-4,6],[-6,13],[-5,5],[2,-10],[1,-9],[-1,-9],[-4,-8],[-6,-3],[-5,2],[-5,9],[-3,12],[-1,6],[0,2],[1,3],[4,3],[1,5],[0,6],[0,6],[0,6],[2,3],[5,7],[2,4],[3,3],[4,0],[4,-2],[6,-6],[1,-4],[2,-5],[0,-7]],[[55674,86160],[2,-2],[1,-3],[0,-3],[1,-4],[-14,-29],[-3,1],[0,3],[1,4],[0,4],[1,3],[0,7],[-2,4],[-8,-7],[-2,5],[0,9],[4,8],[5,2],[9,-6],[5,4]],[[55782,86140],[-7,4],[-3,15],[2,13],[5,0],[2,-3],[9,-6],[2,-3],[-1,-7],[-3,-4],[-4,-2],[-4,1],[2,-8]],[[55613,86136],[4,-9],[2,-3],[-3,-2],[-3,0],[-2,-1],[-3,-4],[-1,-4],[-3,-8],[-1,-2],[-3,-1],[-2,1],[-2,3],[-3,1],[-11,0],[-3,3],[1,9],[2,8],[1,6],[6,6],[14,1],[4,8],[-11,0],[-10,-4],[-8,-9],[-5,-20],[-2,0],[1,15],[-4,7],[-4,6],[-2,11],[3,10],[6,12],[1,10],[-10,2],[0,-4],[2,-7],[-2,-11],[-6,-5],[-8,7],[1,-11],[4,-11],[6,-10],[4,-5],[-2,-4],[-2,-5],[0,-5],[1,-6],[-15,7],[-4,6],[1,3],[1,2],[-1,7],[-7,-2],[-4,-2],[1,-6],[3,-7],[4,-6],[5,-4],[7,-4],[3,-4],[2,-4],[2,-2],[3,1],[2,3],[2,4],[2,4],[-3,-19],[-1,-9],[0,-8],[1,-2],[2,-2],[2,-2],[1,-5],[-2,-6],[-3,0],[-7,4],[-11,-1],[-5,-5],[1,-8],[1,-10],[-2,-3],[-3,1],[1,6],[-5,19],[-4,5],[-7,0],[-3,-2],[-1,-4],[-1,-3],[-2,-3],[-4,-1],[-4,1],[-2,2],[0,6],[-5,4],[-5,-2],[-4,-6],[-3,-8],[-4,17],[-10,26],[-5,14],[-2,18],[-1,7],[-3,3],[-1,5],[-6,24],[5,0],[5,-1],[2,-5],[-1,-10],[3,6],[1,7],[2,5],[3,2],[4,1],[10,7],[-2,3],[-1,3],[-3,6],[6,-2],[2,-2],[2,2],[1,0],[2,-2],[-4,-17],[-4,-13],[1,-5],[2,-4],[2,-5],[2,-15],[2,-4],[4,-2],[2,4],[1,7],[-1,8],[-1,6],[5,-3],[5,-6],[2,17],[6,8],[1,8],[0,12],[2,8],[2,-9],[0,-4],[0,-5],[2,-2],[3,0],[3,3],[2,3],[-1,10],[-2,9],[-3,6],[-4,5],[-2,4],[-1,3],[-1,0],[-2,-5],[-3,-10],[-3,-4],[-2,2],[-4,10],[-4,8],[-5,4],[-7,1],[4,3],[3,5],[2,6],[2,6],[6,7],[6,3],[6,0],[7,-2],[2,-8],[1,-11],[3,-8],[12,3],[7,-3],[6,-6],[5,-8],[-2,12],[-1,4],[4,-1],[9,-5],[3,1],[3,2],[3,-3],[6,-10],[14,-6],[4,-6],[-3,-16],[5,2],[1,2],[4,-4],[6,-3],[11,-1],[-10,-20],[-1,-8],[-8,-4]],[[55798,85952],[-2,2],[-2,6],[3,5],[4,2],[3,0],[3,-4],[2,-7],[2,-7],[-3,-3],[-6,3],[-4,3]],[[55828,85969],[-4,0],[0,-1],[4,-3],[2,-6],[-2,-3],[-14,9],[-4,4],[-1,3],[0,1],[2,2],[4,3],[12,-4],[3,0],[2,-1],[0,-3],[-4,-1]],[[55724,86029],[1,-1],[2,0],[-1,-1],[-3,-1],[-1,0],[2,-2],[0,-4],[-1,-4],[-2,-4],[-3,-5],[-3,-1],[-7,8],[-1,-2],[-2,-4],[-4,-2],[-4,0],[-3,4],[1,7],[7,14],[4,5],[4,1],[3,-1],[2,2],[2,0],[1,-2],[0,-3],[1,0],[2,1],[2,-1],[1,-2],[0,-2]],[[55673,86035],[7,6],[3,1],[-3,-16],[-5,-9],[-8,-2],[-4,4],[4,8],[6,8]],[[55700,86031],[-1,-3],[-5,-4],[-8,3],[-1,10],[6,2],[9,2],[1,0],[-3,1],[1,2],[4,2],[3,-1],[-2,-4],[-3,-5],[-1,-5]],[[55745,86080],[1,-3],[0,-5],[-2,-4],[-2,-1],[-5,4],[-5,9],[0,8],[2,3],[3,1],[1,-1],[3,-3],[3,-5],[1,-3]],[[55745,86138],[6,-6],[3,-6],[-2,-5],[-6,-3],[-5,3],[-2,3],[0,7],[2,6],[4,1]],[[55771,86196],[-10,-8],[-2,1],[-1,4],[0,2],[1,5],[0,3],[3,6],[0,2],[2,2],[1,3],[0,3],[2,1],[4,0],[3,-3],[1,-6],[-1,-5],[-1,-6],[-2,-4]],[[55633,85989],[6,13],[10,12],[7,-1],[10,-5],[10,-3],[3,-5],[-13,-9],[-9,1],[-8,-1],[-4,-2],[0,-9],[-5,-5],[-6,3],[-1,11]],[[55564,86040],[10,6],[9,13],[8,-5],[9,1],[9,-14],[5,-17],[3,-13],[1,-5],[-4,-9],[-7,-8],[-3,-3],[2,12],[-3,4],[-6,-4],[-8,-2],[-5,4],[3,6],[2,6],[-5,7],[-7,0],[-6,7],[-9,2],[2,12]],[[55857,86287],[2,-3],[1,-7],[-3,-7],[-2,-2],[-4,4],[-2,7],[2,4],[3,4],[2,0],[1,0]],[[48151,86829],[-6,-1],[-7,6],[-10,16],[-25,24],[-12,18],[1,15],[-7,9],[-9,14],[-6,15],[-1,10],[-1,3],[-3,9],[6,0],[0,2],[-1,1],[-1,1],[10,7],[5,1],[4,-4],[-5,-6],[-2,-2],[2,-3],[3,-1],[3,0],[3,0],[-13,-12],[0,-4],[24,3],[8,-10],[17,-2],[6,-7],[1,-8],[-3,-5],[-5,-1],[-4,4],[-3,4],[-5,2],[-4,0],[-2,-4],[5,-2],[4,-5],[2,-5],[3,-4],[2,-1],[6,2],[3,-1],[3,-4],[1,-3],[-1,-4],[-3,-2],[0,-4],[12,-6],[-1,-5],[-3,-1],[-3,1],[-3,0],[-10,-6],[-5,-1],[-6,2],[0,-4],[3,-1],[3,-2],[2,-4],[1,-5],[4,7],[5,2],[11,-1],[-1,-2],[-1,-6],[6,-3],[4,-8],[1,-11],[-2,-7]],[[48163,87081],[-4,-6],[-2,-4],[1,-2],[0,-3],[0,-17],[-1,-2],[-2,-4],[-3,-5],[-3,-1],[-2,1],[-18,39],[-4,4],[-25,5],[-4,2],[-4,4],[-2,7],[-1,11],[-6,14],[-2,10],[6,-2],[12,-5],[6,-1],[8,1],[4,-1],[2,-3],[4,-7],[3,-2],[22,-6],[3,-5],[2,-8],[8,-8],[2,-6]],[[47948,87243],[-7,7],[-5,13],[-1,12],[7,1],[10,-10],[3,-2],[2,-1],[7,1],[2,1],[1,3],[0,3],[1,1],[3,1],[5,6],[19,5],[0,-4],[-2,0],[0,-4],[11,-8],[4,-1],[3,-2],[4,-9],[3,-4],[7,-3],[7,1],[7,-2],[5,-9],[-3,-7],[-3,-8],[-3,-6],[-6,-3],[-5,1],[-4,2],[-5,1],[-5,-4],[3,-2],[2,-1],[2,-1],[3,0],[-16,-8],[-5,-4],[2,6],[2,2],[-2,8],[-4,8],[-3,3],[-5,-3],[3,-2],[3,-4],[3,-5],[-1,-5],[-3,-1],[-12,9],[-17,4],[-12,8],[-4,0],[0,4],[27,0],[-6,5],[-7,4],[-15,3]],[[47993,87288],[-2,3],[-1,3],[-1,4],[1,6],[2,2],[2,0],[1,2],[2,8],[0,6],[1,5],[5,2],[-6,9],[0,12],[4,23],[1,-3],[2,0],[1,0],[1,-1],[20,-4],[9,-6],[4,-8],[3,-15],[14,-26],[0,-14],[9,-3],[16,-14],[14,-4],[2,-4],[1,-5],[-2,-6],[-3,-5],[-3,-4],[-4,-2],[-3,-1],[24,1],[4,-8],[4,-9],[1,-6],[-2,-3],[-16,0],[0,-4],[10,-5],[18,1],[8,-8],[-3,-7],[-2,-10],[1,-8],[9,-6],[-1,-5],[-1,-7],[1,-10],[-9,-4],[-9,10],[-8,12],[-17,12],[-15,25],[-10,6],[-4,2],[-2,4],[-2,7],[0,9],[-2,6],[-4,5],[-5,5],[-5,3],[-21,4],[-5,2],[-3,6],[0,6],[5,2],[-3,7],[-4,-1],[-4,-4],[-5,-2],[-2,1],[-8,8],[-3,3]],[[48040,87359],[-3,3],[-3,4],[-2,3],[-1,4],[3,4],[3,0],[3,-3],[3,-1],[6,3],[10,8],[13,3],[3,-2],[3,-2],[2,-3],[3,-2],[3,-1],[2,-6],[-5,-4],[-7,-4],[-3,-4],[0,-10],[1,-8],[2,-7],[5,-5],[-3,18],[1,7],[21,7],[7,0],[4,-8],[-2,-1],[-5,-3],[21,-4],[3,-3],[-2,-6],[-5,-5],[-6,-2],[0,-5],[3,-1],[6,-5],[2,-2],[3,1],[5,3],[3,1],[15,-6],[12,-8],[1,-4],[-4,-2],[-7,-1],[-17,3],[-5,-3],[0,-4],[34,-18],[10,-11],[-14,2],[-15,7],[0,-4],[6,-2],[6,-4],[9,-10],[0,-4],[-5,0],[-5,0],[-5,-3],[-4,-6],[1,-1],[2,-2],[1,-1],[0,-4],[-2,-2],[-1,-3],[0,-3],[1,-4],[-10,7],[-3,13],[0,15],[-2,14],[-5,10],[-7,13],[-9,7],[-8,-2],[7,-8],[8,-7],[7,-10],[3,-15],[-5,-13],[-11,9],[-22,28],[-11,-1],[-3,3],[-2,3],[-6,6],[-2,1],[-3,3],[-18,30],[-9,30]],[[48184,87300],[-10,13],[-3,9],[1,10],[2,4],[1,0],[1,-2],[1,-2],[2,1],[1,3],[0,3],[1,4],[0,5],[-1,16],[0,5],[-4,12],[-2,11],[1,9],[9,5],[-3,-4],[8,-24],[10,-16],[12,-12],[14,-9],[-5,-9],[-8,-1],[-9,3],[-6,7],[-2,-4],[10,-15],[6,-5],[5,4],[1,-11],[1,-3],[2,-3],[0,-4],[-5,-3],[-6,-2],[-5,2],[-4,5],[-8,16],[-4,5],[-4,-2],[6,-20],[2,-7],[1,-4],[-2,0],[-2,1],[-3,3],[-1,2],[-1,2],[0,2]],[[47900,87251],[3,-4],[3,-2],[-3,-1],[-3,0],[-23,2],[-1,4],[8,5],[8,0],[8,-4]],[[48244,87369],[8,0],[4,-3],[0,-4],[-8,-8],[2,-6],[0,-6],[-2,-3],[-2,-4],[-4,-2],[-4,-1],[-5,1],[-3,6],[-3,7],[-1,7],[3,5],[5,2],[10,9]],[[48170,87359],[2,-5],[0,-9],[-4,-3],[-6,3],[-6,8],[-3,5],[-7,19],[-3,14],[1,13],[4,5],[5,-5],[2,-9],[12,-28],[3,-8]],[[48151,87343],[2,-2],[2,-7],[-1,-6],[-4,-1],[-5,3],[-4,6],[-2,10],[-3,9],[-2,3],[-6,9],[-7,14],[-2,5],[-5,15],[0,8],[2,3],[4,-4],[4,-7],[8,-19],[19,-39]],[[48219,87379],[2,-3],[2,-6],[-1,-5],[-2,-4],[-5,-2],[-9,3],[-8,9],[-7,11],[-4,10],[-2,15],[-4,4],[-3,7],[4,5],[7,-2],[4,-4],[2,-8],[3,-9],[3,-6],[4,-6],[2,-5],[0,-4],[1,-4],[3,1],[3,4],[3,0],[2,-1]],[[76906,43255],[1,-3],[-6,-6],[-4,11],[-2,17],[-1,14],[2,0],[0,-6],[0,-4],[2,-10],[-1,-6],[1,-7],[3,-3],[5,3]],[[76917,43245],[-3,2],[-1,2],[0,3],[3,0],[2,3],[2,5],[0,7],[2,-7],[0,-6],[-2,-6],[-3,-3]],[[79361,44292],[3,-3],[0,-9],[-1,-11],[-1,-14],[0,-12],[-2,-9],[0,-14],[-1,-7],[-5,-1],[-1,10],[-2,10],[-1,8],[-4,4],[-6,2],[-6,-1],[-6,-3],[-1,7],[3,3],[2,11],[-1,8],[0,8],[4,-3],[5,-6],[8,-1],[4,8],[4,10],[5,5]],[[70129,46097],[1,3],[1,1],[1,2],[1,5],[1,-3],[0,-3],[0,-4],[-1,-5],[-2,-6],[-8,-15],[-3,-4],[-2,17],[2,34],[-2,14],[-2,3],[-7,8],[-2,1],[-2,3],[-6,17],[3,-1],[14,-20],[4,-7],[1,-14],[-1,-51],[2,6],[7,19]],[[70134,46159],[3,-10],[-2,-8],[-3,-8],[-1,-10],[0,-4],[0,-4],[1,-5],[-1,3],[-1,5],[-1,4],[1,5],[4,18],[-2,14],[-6,14],[-5,17],[3,-4],[10,-27]],[[69819,46530],[3,0],[-2,-2],[-1,0],[0,1],[0,1]],[[69794,46686],[0,7],[0,2],[2,2],[0,-5],[0,-2],[-1,-2],[-1,-2]],[[69816,46800],[1,5],[1,3],[2,3],[2,0],[-1,-6],[-2,-7],[-2,-3],[-1,5]],[[69936,47248],[-2,4],[-1,1],[3,-1],[1,-1],[0,-2],[-1,-1]],[[70061,47314],[2,6],[0,-4],[-1,-1],[-1,0],[0,-1]],[[69926,47340],[3,9],[0,-5],[-1,-3],[-1,-1],[-1,0]],[[69933,47368],[2,2],[-1,-3],[-1,1]],[[69990,47370],[-1,1],[0,1],[0,2],[1,0],[0,-1],[0,-2],[0,-1]],[[78877,51293],[7,-3],[4,-3],[1,-4],[-3,-11],[-5,-12],[-6,-10],[-6,-4],[-7,-1],[-5,-5],[-10,-14],[-1,-3],[-1,-2],[-2,-1],[-3,-2],[-7,1],[-3,2],[-2,3],[-2,8],[-6,6],[-7,3],[-6,2],[-12,-1],[-5,3],[-2,8],[1,9],[9,25],[1,11],[1,7],[3,6],[4,5],[3,1],[6,-2],[6,2],[8,8],[4,3],[7,-1],[7,-5],[21,-23],[8,-6]],[[96661,33285],[4,-5],[-1,-10],[-2,-10],[-4,-4],[-1,-1],[0,-2],[-1,-2],[0,-3],[-1,9],[-3,5],[-3,0],[-2,-6],[-2,0],[0,7],[-1,5],[-1,6],[1,4],[2,6],[0,4],[-1,2],[-4,-1],[4,8],[6,-2],[5,-7],[5,-3]],[[6129,37513],[4,-2],[3,-6],[6,-14],[0,-6],[-3,-5],[-4,-2],[-4,-1],[-4,1],[-3,3],[-2,5],[-2,7],[1,7],[3,7],[2,5],[3,1]],[[6192,38763],[0,-12],[0,-17],[0,-15],[-4,-8],[0,8],[-1,6],[-2,3],[-2,5],[0,8],[1,5],[6,14],[2,3]],[[6128,45151],[-6,0],[-5,3],[-5,7],[-3,7],[1,3],[18,-16],[0,-4]],[[5612,37923],[5,-1],[6,-2],[4,-6],[2,-9],[0,-12],[-1,-6],[-1,-4],[-8,2],[-1,0],[-5,5],[-11,-2],[-4,7],[2,4],[2,11],[0,7],[3,4],[7,2]],[[6302,38533],[-2,-9],[-2,-5],[-4,2],[-2,9],[0,11],[3,3],[4,-3],[3,-8]],[[6089,38629],[-1,-11],[-4,-4],[-5,2],[-4,9],[-2,14],[5,2],[6,-5],[5,-7]],[[6037,38725],[-4,6],[1,-1],[1,-2],[2,-3]],[[6031,38738],[-2,-4],[-1,0],[1,1],[2,3]],[[5854,39058],[-3,3],[-4,6],[-1,5],[2,2],[2,-3],[1,-6],[1,-4],[4,2],[0,-2],[-1,-1],[-1,-2]],[[3938,44025],[2,1],[1,0],[1,0],[-1,-5],[-2,-1],[-1,1],[0,4]],[[5282,44321],[-3,5],[0,2],[4,-6],[12,-25],[-13,24]],[[5253,44527],[5,4],[-1,-5],[-4,-5],[0,6]],[[5615,39318],[4,1],[3,-5],[0,-5],[-1,2],[-1,4],[-1,1],[-2,-11],[0,-2],[1,-13],[-2,-6],[-3,0],[-2,6],[-1,7],[2,11],[1,4],[2,6]],[[1679,39474],[4,-3],[2,-4],[2,-5],[3,-5],[0,-6],[0,-12],[-2,-6],[-5,12],[-3,-3],[-2,-3],[0,-5],[3,-5],[-2,-6],[-2,-6],[-4,2],[-2,-7],[-2,-10],[0,-10],[-3,4],[-2,7],[-2,14],[4,3],[1,7],[-2,7],[-1,3],[-4,-6],[0,-8],[-2,-6],[-4,4],[0,-3],[-1,-1],[-1,0],[-2,0],[-3,17],[5,9],[8,9],[4,16],[2,4],[4,2],[5,1],[4,-1]],[[1413,37860],[1,-22],[0,-9],[-1,-22],[0,-37],[-2,-6],[-4,5],[-2,9],[-4,8],[-8,12],[0,4],[2,1],[2,3],[-1,6],[-1,8],[2,7],[5,5],[2,4],[3,10],[0,4],[2,9],[3,6],[1,-5]],[[1371,37960],[3,-5],[1,-4],[-1,-10],[-2,-5],[-16,-23],[-1,-5],[1,-7],[1,-6],[0,-6],[-1,-7],[-2,-4],[-3,-2],[-3,-2],[-6,3],[-3,5],[-5,17],[-3,7],[-14,13],[-2,-4],[-7,8],[-4,3],[-3,1],[-3,3],[-6,20],[-4,16],[2,14],[7,11],[7,5],[-4,-8],[-4,-8],[-2,-8],[4,-8],[3,-3],[3,0],[15,6],[3,-1],[2,-3],[2,-3],[2,-4],[1,-6],[-4,-6],[-2,-5],[1,-6],[3,-2],[3,2],[2,4],[3,3],[4,-2],[5,-5],[2,-2],[4,2],[2,7],[1,8],[4,8],[3,2],[4,2],[3,1],[4,-1]],[[1566,38743],[4,3],[3,5],[2,8],[1,9],[2,-1],[3,-2],[1,-2],[-3,-10],[0,-12],[-1,-9],[-6,-1],[-2,2],[-1,3],[-2,3],[-1,4]],[[1370,38796],[4,-7],[2,-16],[0,-18],[-4,-12],[0,4],[-1,-4],[-2,3],[-1,2],[-3,3],[0,2],[0,2],[-4,19],[0,5],[1,12],[2,5],[2,0],[4,0]],[[1582,38783],[5,6],[2,8],[3,8],[3,7],[2,-9],[-1,-7],[-2,-7],[-1,-8],[-2,-7],[-4,-1],[-4,4],[-1,6]],[[1594,38844],[4,-3],[1,-6],[-2,-5],[-4,2],[-3,9],[-3,15],[-2,11],[4,-2],[2,-5],[1,-13],[2,-3]],[[1214,41255],[5,-8],[-2,-17],[-6,-13],[-8,1],[-5,12],[1,12],[5,9],[10,4]],[[1052,37249],[2,-2],[2,-3],[-1,-2],[-1,-2],[-1,0],[-2,2],[-1,4],[0,3],[2,0]],[[1485,39326],[-3,9],[1,9],[3,4],[5,-3],[2,-8],[-1,-6],[-3,-5],[-4,0]],[[516,42034],[10,-21],[0,-3],[4,-2],[13,-14],[0,-5],[-15,3],[-3,-3],[-3,4],[-7,2],[-3,3],[-5,17],[-3,17],[2,9],[10,-7]],[[1068,42647],[3,-13],[4,-10],[1,-10],[-3,-12],[1,-2],[1,-2],[0,-4],[-4,-1],[-1,-6],[2,-15],[-2,-7],[-3,-2],[-4,3],[-3,4],[0,9],[-3,10],[-1,10],[4,7],[-2,13],[2,11],[4,10],[4,7]],[[2166,42420],[1,-6],[1,-7],[0,-13],[1,-12],[3,-7],[1,-7],[-1,-13],[-3,-9],[-3,-8],[-3,-8],[-1,-14],[1,-13],[0,-6],[-2,-3],[-6,0],[-3,1],[-3,3],[-4,8],[-3,6],[-2,3],[-6,-1],[-14,-10],[-43,-10],[-3,4],[-3,8],[-2,4],[-4,6],[-3,3],[0,5],[-1,6],[-3,12],[0,7],[-2,7],[-3,4],[-4,4],[-3,3],[-6,19],[-3,9],[-7,6],[-3,5],[-4,8],[-1,3],[-1,6],[0,3],[-2,2],[-4,-1],[-1,1],[-3,8],[-4,14],[-2,13],[4,6],[10,0],[10,-9],[10,0],[6,2],[6,7],[3,2],[7,1],[3,2],[8,8],[3,2],[22,0],[5,2],[12,8],[6,3],[7,0],[6,-3],[6,-5],[5,-10],[16,-39],[1,-2],[-1,-7],[0,-3],[2,-2],[3,-3],[1,-3]],[[2343,42209],[13,2],[14,-14],[8,-22],[-3,-19],[1,-2],[2,-6],[-8,-1],[-19,5],[-12,-3],[-5,1],[-6,6],[-5,-5],[-4,1],[-9,4],[-5,0],[-11,-8],[-3,0],[-3,2],[-1,3],[-1,5],[-1,5],[-3,3],[-5,2],[-5,6],[-5,3],[-4,1],[-11,-3],[-5,0],[-4,3],[-4,6],[-6,19],[-3,8],[-3,-2],[-2,0],[-5,14],[-3,4],[-6,2],[-6,5],[0,13],[2,13],[3,10],[22,16],[23,8],[13,-1],[12,-6],[39,-32],[12,-3],[6,-5],[5,-7],[3,-11],[0,-6],[-2,-4],[-1,-4],[1,-6]],[[94583,43519],[17,-21],[5,-13],[-6,-10],[-4,0],[-2,2],[-2,1],[-4,-3],[-1,-4],[-2,-12],[-2,-5],[-4,1],[-4,8],[-3,10],[-3,6],[-4,-4],[-1,0],[-2,1],[-10,15],[-2,4],[-3,25],[-2,11],[-6,9],[-3,2],[-6,1],[-3,1],[-3,4],[-1,4],[1,4],[0,4],[-1,6],[1,5],[-1,4],[-3,5],[-3,3],[-3,1],[-3,1],[-2,-1],[-2,-2],[-2,-10],[-2,-4],[-3,-1],[-3,0],[-6,1],[-4,4],[-11,13],[-6,3],[2,7],[0,2],[-5,8],[-4,-1],[-4,-4],[-3,-3],[-5,3],[-4,6],[-8,21],[-1,8],[-1,4],[-2,5],[-1,3],[2,10],[2,7],[5,11],[2,7],[1,-2],[1,-1],[1,0],[1,-1],[4,-9],[3,-4],[3,-3],[3,0],[7,0],[2,-2],[6,-11],[6,-7],[15,-16],[8,-13],[10,-10],[8,-13],[6,-6],[12,-8],[12,-10],[30,-47]],[[94389,43783],[5,-1],[5,-3],[3,-6],[1,-10],[-7,6],[-5,2],[-5,5],[-4,11],[2,1],[2,-1],[1,-1],[2,-3]],[[94927,44386],[1,6],[-1,2],[-2,1],[-1,1],[-3,14],[-1,8],[4,7],[6,-10],[5,-17],[0,-15],[-6,-7],[-2,1],[-1,2],[0,3],[1,4]],[[95103,44060],[3,3],[2,-5],[0,-7],[-4,-4],[-4,2],[-3,2],[-3,0],[-4,-4],[-2,3],[-3,1],[-5,0],[-4,2],[-19,16],[-7,-2],[-6,-12],[-3,4],[-4,1],[-7,0],[-3,1],[-2,3],[-2,4],[-2,3],[-12,11],[-4,8],[-3,2],[-3,-1],[-8,-6],[-3,1],[-3,3],[-11,7],[0,-1],[-1,-2],[-4,-1],[-2,1],[-3,6],[-1,1],[-2,2],[-2,4],[-2,10],[-2,-8],[0,-4],[-6,9],[-4,2],[-4,-3],[0,4],[-2,5],[-1,3],[-3,-2],[-2,4],[-2,6],[1,4],[-3,7],[-3,1],[-4,-1],[-3,2],[-2,5],[-1,7],[-2,6],[-4,2],[-1,4],[-4,7],[-4,5],[-2,-2],[-1,-5],[-3,4],[-5,11],[0,5],[-1,3],[-2,3],[-3,1],[1,5],[-1,4],[-1,4],[-3,4],[-2,-6],[-3,-2],[-4,1],[-4,2],[6,37],[-3,4],[-1,6],[0,6],[-1,6],[-2,1],[-5,-2],[-4,-1],[3,7],[2,10],[0,8],[-5,4],[3,15],[2,6],[2,3],[2,2],[-1,2],[-2,4],[-1,1],[-5,-1],[-1,0],[-2,4],[-2,4],[-1,3],[-4,2],[-8,0],[-3,1],[-1,5],[-2,2],[-4,1],[-6,-1],[-1,-2],[-2,-3],[-1,-2],[-2,-1],[-2,0],[-2,3],[-7,2],[-3,2],[-3,5],[-1,9],[3,13],[-2,6],[2,3],[0,2],[1,1],[1,2],[-2,9],[0,13],[3,11],[5,4],[1,-2],[2,-1],[2,-2],[1,-3],[15,6],[30,-28],[30,-39],[16,-29],[5,5],[4,-5],[5,-18],[4,-6],[5,-1],[4,1],[4,0],[3,-3],[8,-11],[2,-4],[2,-6],[6,-1],[7,3],[4,6],[10,-8],[5,0],[4,4],[2,-5],[4,-11],[3,-5],[4,-2],[9,2],[4,-2],[2,2],[1,12],[2,3],[2,1],[3,0],[6,-5],[7,-22],[3,-5],[3,-4],[3,-9],[5,-32],[2,-4],[2,-3],[1,-1],[2,-3],[1,-19],[3,-9],[3,-7],[10,-14],[3,-7],[1,-10],[0,-33],[-1,-3],[-1,-2],[-2,-3],[-2,-3],[-1,-4],[2,-15],[8,-3],[11,1],[9,-3]],[[96436,44615],[-2,10],[1,6],[3,-1],[3,-7],[1,-8],[0,-5],[-3,0],[-3,5]],[[96413,44664],[4,1],[1,-2],[-1,-1],[-4,2]],[[94993,44636],[-4,7],[-4,13],[-3,16],[-3,41],[1,8],[2,9],[4,1],[3,-1],[4,3],[0,-5],[0,-3],[-2,-4],[-1,-4],[0,-2],[-1,-2],[2,-9],[3,-48],[0,-10],[-1,-10]],[[94831,44895],[-1,-1],[-3,-2],[-2,-1],[0,13],[-1,11],[-6,21],[2,3],[1,0],[2,-7],[4,-9],[10,-12],[2,-6],[1,-9],[8,-25],[7,-30],[3,-9],[2,-5],[2,-13],[2,-6],[3,-6],[2,-7],[4,-13],[2,-11],[0,-10],[0,-22],[1,-10],[4,-19],[0,-14],[-1,-13],[-3,-11],[-2,-2],[-1,12],[-12,27],[-2,14],[-2,7],[-3,3],[-3,-2],[-2,-16],[-3,-11],[-5,11],[-4,13],[-4,15],[-2,12],[0,37],[0,34],[-1,13],[0,8],[5,17],[-1,9],[-2,10],[-1,12]],[[94673,44644],[0,-18],[-8,-10],[-21,-9],[-10,-7],[-6,-7],[-5,-8],[-20,10],[-18,18],[-6,3],[-12,-5],[-3,2],[-3,6],[-2,6],[-2,6],[-1,1],[-4,-1],[-1,0],[-1,2],[-1,8],[-2,3],[-8,7],[-2,3],[-5,3],[-31,3],[-23,-8],[-13,0],[-7,2],[-3,0],[-3,-2],[-2,2],[-6,2],[-6,3],[-6,1],[-6,3],[-9,10],[-5,3],[-5,-2],[-5,-4],[-4,0],[-6,8],[-13,28],[-5,7],[-7,8],[-1,3],[1,6],[0,3],[-1,3],[-3,1],[-1,2],[-1,5],[-1,6],[0,5],[-2,2],[-5,2],[-1,4],[1,5],[0,6],[-2,13],[-4,12],[-4,11],[-4,10],[-4,7],[-2,4],[-1,5],[4,4],[2,5],[2,6],[-1,6],[-4,12],[-1,6],[0,7],[2,15],[0,7],[-1,7],[-1,7],[-3,6],[-1,2],[1,4],[3,6],[1,20],[2,9],[4,3],[4,3],[18,22],[9,-7],[10,-13],[15,-29],[11,-17],[2,-5],[1,-9],[3,-10],[4,-9],[4,-7],[5,-4],[6,-1],[10,1],[3,1],[3,2],[2,4],[2,3],[3,1],[3,-1],[6,-6],[6,-3],[3,-1],[3,0],[3,3],[5,8],[2,1],[6,-1],[9,-6],[6,-1],[1,1],[3,6],[1,1],[2,0],[2,-3],[2,-1],[21,0],[1,1],[3,3],[1,0],[1,-1],[1,-3],[2,-3],[5,-5],[6,-16],[11,-9],[5,-10],[7,-26],[11,3],[12,-12],[12,-18],[7,-17],[2,-10],[1,-12],[1,-25],[1,-5],[3,0],[5,3],[3,-1],[3,-3],[6,-8],[9,-5],[3,-3],[0,-6],[0,-8],[1,-8],[3,-3],[1,-3],[1,-6],[-1,-13],[1,-6],[2,-3],[1,-4],[2,-5]],[[94396,45038],[-4,3],[-2,10],[-1,12],[2,11],[2,1],[1,0],[2,0],[1,3],[2,-11],[1,-13],[0,-12],[-4,-4]],[[94514,45046],[3,2],[3,4],[3,5],[2,5],[3,29],[3,12],[5,-1],[7,-28],[3,-4],[5,0],[3,-1],[2,-3],[3,-4],[-4,-8],[-4,-15],[-4,-5],[-2,-5],[-6,5],[-5,7],[-6,4],[-5,-3],[1,-8],[-4,-5],[-7,-3],[-5,-1],[1,5],[0,4],[-2,2],[-3,2],[1,5],[3,3],[6,0]],[[94220,45106],[3,1],[5,14],[3,5],[0,-3],[0,-1],[-1,-2],[-1,-2],[0,-6],[0,-1],[0,-5],[-2,-5],[-1,-6],[2,-2],[3,2],[0,-15],[-5,-10],[-12,-12],[0,16],[1,11],[5,21]],[[94470,45106],[-2,1],[-1,2],[-1,3],[-1,4],[3,2],[5,1],[5,3],[3,9],[2,-5],[1,5],[1,4],[-1,3],[-1,5],[1,3],[1,0],[1,-3],[5,-5],[6,1],[4,-1],[4,-12],[3,0],[2,10],[5,-2],[6,-8],[4,-10],[2,-13],[-2,-17],[-4,-15],[-4,-9],[-1,4],[-1,2],[-1,0],[-3,-2],[0,7],[-2,5],[-2,4],[-3,0],[0,-3],[1,-9],[-1,0],[-5,15],[-3,6],[-5,-3],[-4,-4],[-5,0],[-5,2],[-4,4],[-1,4],[0,5],[0,5],[-2,2]],[[94212,45129],[2,1],[6,-4],[-9,-40],[-4,-8],[-14,-8],[-2,3],[-2,6],[-2,4],[-3,-5],[-7,21],[0,7],[9,0],[-2,8],[1,6],[3,2],[3,-4],[0,8],[2,-1],[4,-3],[0,7],[-1,5],[-2,5],[-3,4],[4,0],[3,-3],[2,0],[2,2],[1,5],[2,-8],[0,-7],[1,-5],[3,-5],[1,1],[2,6]],[[94465,45126],[-3,6],[0,6],[2,7],[1,8],[-1,16],[1,4],[4,2],[5,-12],[1,-8],[0,-12],[-4,4],[-2,-5],[-4,-16]],[[93781,45297],[6,-6],[4,-12],[-1,-13],[-7,-5],[-2,1],[-10,11],[-14,8],[-14,13],[-7,10],[1,10],[10,-4],[5,0],[4,4],[1,-5],[3,8],[1,3],[2,2],[2,-1],[2,-3],[1,-3],[2,-1],[4,-3],[3,-6],[2,-5],[2,-3]],[[93951,45273],[8,-6],[0,-6],[-1,-4],[-2,-4],[-6,-3],[-6,-10],[-4,-4],[-5,18],[-2,3],[-2,3],[0,8],[2,15],[1,5],[8,13],[1,6],[2,6],[1,8],[0,9],[2,0],[0,-13],[2,-8],[2,-14],[1,-14],[-2,-8]],[[93904,45419],[6,3],[7,0],[5,-4],[3,-9],[0,-13],[0,-4],[-2,-5],[-3,-2],[-3,1],[-3,-1],[-1,-5],[-1,-2],[-5,-4],[-1,-4],[2,-3],[5,-2],[2,-3],[2,2],[1,1],[3,1],[-4,-10],[-1,-3],[-3,-3],[7,-13],[-3,-14],[-11,-22],[-3,-11],[-2,-3],[-2,-3],[-5,-3],[-2,-2],[-4,-1],[-6,2],[-6,4],[-2,3],[-1,4],[-2,3],[-3,3],[-1,3],[-2,6],[-1,3],[-8,15],[-2,4],[0,30],[2,21],[1,3],[2,4],[1,5],[0,8],[8,-10],[3,0],[1,10],[2,-1],[1,-1],[0,-7],[3,8],[-1,6],[-2,6],[0,9],[2,4],[10,8],[2,1],[1,1],[1,2],[2,-4],[0,-4],[-3,-4],[-1,-4],[1,-5],[2,-5],[3,-3],[3,3],[3,6],[3,4]],[[93710,45390],[-1,0],[-2,2],[-1,1],[-2,-3],[0,-3],[0,-13],[-2,-17],[0,-9],[1,-8],[10,-23],[6,-8],[6,-4],[0,-4],[-4,-2],[-5,1],[-5,2],[-4,5],[-3,7],[-2,2],[-3,1],[-2,3],[-1,5],[1,7],[0,5],[-2,7],[-8,22],[-3,4],[-4,3],[-6,8],[-6,8],[-2,8],[1,8],[2,8],[2,6],[3,4],[7,8],[4,7],[5,22],[8,16],[9,12],[5,-1],[5,-7],[4,-11],[3,-15],[1,-17],[-1,-4],[-4,-10],[-3,-20],[0,-2],[-1,-2],[-1,-4],[0,-2],[-2,-3],[-1,0],[-1,0],[-1,0]],[[94357,45431],[3,-6],[0,-4],[-3,-6],[-3,-3],[-2,-1],[-3,1],[-3,3],[-4,4],[-2,3],[-4,9],[-3,11],[-3,3],[-3,-6],[-4,9],[-5,5],[-3,7],[0,16],[2,15],[4,10],[5,6],[8,1],[8,-4],[3,-9],[-1,-28],[1,-12],[4,-9],[8,-15]],[[95204,45502],[-2,6],[1,3],[3,-1],[3,-2],[0,-3],[-2,-1],[-1,-1],[-2,-1]],[[94821,44774],[-14,21],[-3,1],[0,10],[-2,9],[-11,30],[-2,6],[0,6],[-1,11],[-1,7],[-3,10],[-13,29],[-19,20],[-7,16],[-13,4],[2,10],[-8,19],[-4,6],[-2,1],[-4,-1],[-2,2],[-1,4],[0,10],[0,4],[-7,12],[-15,15],[-6,14],[-21,78],[-4,29],[-4,14],[1,5],[1,3],[-1,4],[-1,4],[0,9],[-5,30],[-4,12],[-11,49],[-1,8],[0,32],[-1,5],[-9,42],[5,7],[8,15],[5,3],[0,5],[-6,31],[-11,31],[-2,6],[-3,3],[-10,20],[-3,9],[-3,26],[6,9],[10,-2],[10,-8],[6,-11],[2,-2],[3,1],[3,4],[1,4],[-1,5],[-8,12],[1,5],[2,4],[2,2],[2,0],[0,-4],[7,0],[3,-5],[6,-15],[3,-6],[3,-4],[2,-5],[3,-10],[1,-7],[1,-5],[0,-6],[1,-3],[4,-5],[1,-2],[9,-31],[15,-32],[11,-20],[6,-19],[3,-11],[1,-11],[-2,-12],[-5,-7],[-7,-5],[-5,-6],[2,-8],[1,-8],[0,-7],[-4,-16],[0,-8],[1,-8],[0,-8],[1,-9],[6,-10],[1,-6],[2,-6],[4,2],[6,6],[3,-2],[7,-12],[3,-6],[0,-4],[-1,-3],[-1,-4],[2,-5],[2,-3],[2,0],[1,2],[0,1],[7,-7],[7,-10],[6,-13],[5,-15],[-3,3],[-3,-5],[-1,-7],[2,-3],[4,-3],[3,-7],[2,-10],[-2,-9],[3,-3],[1,-3],[0,-5],[0,-6],[0,-7],[2,-1],[2,0],[2,-3],[1,-2],[2,-2],[2,-4],[0,-6],[-1,-3],[-6,-11],[5,-5],[1,-3],[1,-4],[4,3],[3,-2],[2,-6],[-1,-7],[2,-1],[5,-4],[0,-4],[-7,-3],[-3,-1],[-1,-3],[0,-7],[2,-7],[1,-3],[2,-5],[1,-21],[4,-7],[-4,-4],[-2,4],[-1,6],[-3,2],[-2,-3],[0,-6],[3,-7],[11,-24],[3,-10],[8,-46],[3,-5],[3,-5],[4,-11],[5,-21],[3,-46],[0,-13],[-1,-7],[-3,-2],[-5,4]],[[93645,45569],[1,-20],[3,-8],[4,-4],[0,-5],[-9,10],[-4,22],[-5,20],[-11,5],[1,2],[2,4],[1,2],[-5,5],[-5,8],[-2,8],[4,4],[4,-7],[7,-1],[7,-3],[3,-12],[1,-7],[3,-23]],[[93668,45561],[-2,0],[-1,8],[-2,2],[-2,0],[-3,2],[-1,4],[-2,17],[-3,10],[-3,9],[-4,7],[-6,6],[2,4],[-3,0],[-1,2],[0,2],[0,4],[7,-5],[7,1],[6,-1],[5,-11],[3,-12],[2,-16],[1,-17],[0,-16]],[[93558,45699],[1,-10],[2,2],[5,-26],[-7,1],[-8,15],[1,18],[6,0]],[[93832,45399],[3,-5],[3,-7],[1,-10],[-2,-11],[-2,0],[0,10],[-2,6],[-2,4],[-1,3],[-1,8],[-3,8],[-6,14],[-7,9],[-15,2],[-7,7],[-13,18],[-6,17],[-1,2],[-1,8],[-2,14],[-1,8],[0,36],[2,-6],[1,-7],[1,-17],[1,-7],[7,-4],[1,-5],[1,-6],[2,1],[2,5],[1,8],[-2,6],[-6,13],[-3,19],[-3,15],[-4,13],[-5,9],[-4,2],[-2,-2],[-3,-2],[-4,-2],[-2,2],[-2,5],[-2,0],[-2,-7],[-3,4],[-2,0],[-4,-4],[-1,-1],[-2,-2],[-1,-1],[-10,0],[-10,2],[-3,-2],[-2,-8],[-2,-11],[-3,-11],[-6,-7],[-5,2],[-10,12],[-3,-2],[-1,0],[-2,55],[1,4],[4,12],[1,3],[4,0],[4,0],[2,3],[3,5],[1,-8],[2,-2],[2,2],[2,4],[1,5],[0,13],[1,6],[-1,7],[2,8],[6,16],[3,9],[4,20],[3,7],[11,25],[5,6],[4,4],[9,4],[4,4],[0,-3],[0,-1],[1,0],[1,0],[19,-23],[7,-2],[-2,-10],[1,-8],[2,-7],[1,-9],[0,-23],[0,-11],[2,-9],[-2,-11],[0,-7],[7,-12],[2,-10],[-1,-7],[-1,-7],[1,-7],[2,5],[1,-1],[2,-3],[2,-1],[2,2],[4,4],[2,2],[5,3],[5,0],[4,-3],[8,-13],[1,-2],[2,-5],[0,-4],[2,-12],[3,-10],[7,-10],[3,-9],[0,-15],[0,-5],[2,-5],[4,-7],[2,-4],[2,-10],[2,-21],[1,-10],[2,-2],[1,0],[2,-1],[1,-5],[0,-6],[-1,-5],[-5,-19],[-1,-4],[-1,-6],[0,-6],[1,-5],[0,-5],[1,-4],[-17,14],[-7,1],[0,-3]],[[93502,45689],[2,-15],[0,-9],[-2,-7],[2,-13],[0,-14],[-4,-12],[-4,-5],[-3,7],[-7,43],[-4,14],[-1,13],[2,28],[-3,30],[0,13],[5,6],[4,-8],[4,-8],[1,-7],[2,-13],[3,-14],[2,-10],[1,-11],[0,-8]],[[93639,45658],[-14,-2],[-14,25],[-11,35],[-5,28],[1,7],[1,8],[2,13],[7,21],[1,5],[4,8],[8,7],[10,5],[6,2],[13,-14],[10,-21],[5,-25],[3,-28],[0,-29],[0,-10],[-5,-24],[-4,-17],[-6,-8],[-6,14],[-2,-2],[-2,0],[-2,2]],[[93557,45898],[2,-9],[-5,-19],[-10,-29],[-5,-10],[-7,-14],[-4,-17],[2,-14],[3,-7],[0,-7],[-2,-5],[-4,-3],[-1,2],[-2,4],[-3,2],[-4,-4],[-1,0],[-1,12],[1,12],[-1,9],[-13,7],[-1,10],[3,25],[-1,4],[-2,4],[-3,4],[-1,2],[-4,16],[-2,4],[-5,4],[-2,1],[0,2],[0,2],[-3,14],[-2,2],[-3,-4],[-6,26],[2,27],[8,22],[11,14],[4,-2],[2,-2],[3,-1],[2,5],[1,-5],[1,-4],[4,-7],[1,-3],[-1,-3],[0,-2],[5,-1],[1,-2],[0,-3],[0,-4],[1,-3],[3,-2],[2,-4],[3,-14],[2,-4],[6,-4],[-2,-4],[4,-9],[6,5],[6,-4],[6,-8],[6,-4]],[[93213,46133],[4,-5],[4,-6],[2,-7],[3,-6],[-5,-12],[-6,-3],[-14,3],[-5,5],[2,10],[7,21],[2,-1],[2,0],[4,1]],[[93281,46312],[9,-4],[2,-2],[4,-11],[0,-8],[-2,-8],[-1,-10],[-2,-4],[-5,-3],[-5,-1],[-3,2],[-5,-9],[-4,1],[-5,1],[-5,-5],[-3,2],[-3,7],[-2,3],[-8,5],[-1,3],[0,8],[7,33],[3,-3],[0,9],[2,11],[5,3],[-1,5],[0,3],[1,4],[3,-3],[10,-17],[9,-12]],[[93365,46373],[2,-3],[6,-3],[2,-2],[-3,-4],[-3,-1],[-3,2],[-3,3],[0,-9],[-2,-9],[-2,-8],[-3,-7],[-1,5],[0,2],[-1,2],[0,3],[-2,-4],[-2,-3],[-3,-2],[-3,1],[5,6],[4,8],[1,5],[-2,4],[-1,4],[-1,6],[1,8],[1,3],[3,1],[2,1],[-2,4],[-2,3],[-1,0],[-4,11],[-3,12],[1,12],[8,10],[6,0],[0,-4],[-4,-2],[-3,-5],[-2,-7],[-1,-9],[3,-5],[4,-2],[4,-4],[-1,-7],[4,-13],[1,-3]],[[96367,43576],[0,-9],[0,-11],[15,2],[2,-23],[-21,-3],[-6,-2],[-5,1],[-8,2],[-4,12],[-3,6],[-4,3],[-1,5],[-5,12],[-4,9],[0,10],[2,6],[3,3],[6,6],[5,0],[6,-1],[7,3],[6,-3],[12,-9],[-3,-19]],[[96265,43787],[-6,-14],[-3,-1],[-2,-1],[-3,1],[-2,3],[0,4],[0,5],[2,5],[1,4],[0,8],[-4,-5],[-4,-6],[-1,5],[0,14],[4,11],[5,9],[4,3],[4,-4],[5,-7],[2,-8],[0,-12],[-2,-14]],[[96151,44137],[-3,-7],[-1,-12],[-10,-8],[-4,-7],[-5,-5],[-3,-5],[-5,1],[-2,-1],[-7,6],[-4,-6],[-2,-3],[-3,1],[-10,-3],[-12,-29],[-8,-26],[-4,7],[1,17],[-3,8],[-4,1],[-7,-14],[-9,1],[-3,14],[-1,23],[0,12],[5,8],[2,8],[4,10],[2,0],[-1,-21],[4,-9],[3,-2],[1,8],[0,9],[1,15],[5,14],[8,17],[13,1],[20,-4],[9,8],[9,-4],[5,-5],[1,-3],[1,-2],[8,2],[8,-1],[1,-14]],[[94023,45963],[4,-4],[4,-8],[3,-10],[-1,-7],[-4,-1],[-4,6],[-3,8],[-2,8],[-3,-8],[-5,2],[-11,14],[1,-6],[3,-14],[-3,0],[-7,4],[-6,0],[0,3],[-1,9],[-3,8],[-6,4],[-1,2],[-1,4],[-1,4],[1,2],[3,-1],[4,-2],[2,-1],[0,-1],[3,-1],[1,2],[-1,6],[0,3],[1,3],[3,0],[2,-4],[3,-3],[7,-3],[4,-9],[4,-5],[6,-3],[4,-1]],[[94404,45429],[9,-13],[3,-10],[-4,-7],[-2,1],[-9,11],[-2,1],[-3,-1],[-1,0],[-1,3],[-1,4],[-1,4],[-5,4],[-3,10],[-6,4],[-2,4],[-4,11],[-8,15],[-3,6],[-1,5],[1,6],[-1,3],[-4,2],[-3,4],[-13,24],[-23,11],[-10,12],[-7,6],[-6,11],[-5,5],[-4,3],[-4,-3],[-10,12],[-5,3],[-4,-3],[-3,14],[-3,7],[-3,3],[-4,1],[-3,3],[-3,5],[0,8],[-6,-5],[-6,3],[-6,6],[-26,40],[-2,1],[-4,-1],[-2,0],[-1,4],[0,5],[0,5],[0,3],[-3,1],[-1,-2],[-1,-3],[-1,0],[-8,8],[-2,0],[-4,-1],[-1,1],[-1,1],[-1,8],[0,3],[-3,3],[-3,1],[-1,4],[-1,8],[-2,-3],[-6,-5],[0,12],[-3,9],[-4,5],[-5,3],[-16,16],[-2,22],[-2,11],[-5,-3],[-8,4],[-4,6],[2,8],[-3,7],[-3,5],[-2,0],[-3,-8],[-3,8],[-3,21],[-4,8],[-4,7],[-5,3],[-4,-2],[-3,10],[-12,14],[-5,8],[-1,8],[0,7],[1,5],[0,7],[0,24],[-21,39],[-15,16],[-2,9],[0,10],[2,7],[4,-1],[6,-8],[27,-20],[2,-3],[3,0],[3,7],[3,6],[4,-3],[1,2],[0,1],[1,1],[2,1],[2,-12],[4,-8],[11,-9],[1,3],[2,4],[2,4],[1,1],[4,-2],[1,-6],[1,-8],[2,-6],[5,-11],[4,-5],[2,-3],[2,-3],[5,-18],[5,-6],[4,-12],[2,-5],[4,-5],[10,-8],[5,-6],[8,-15],[6,-7],[-3,-12],[2,-10],[4,-6],[4,4],[12,-10],[3,-5],[2,-7],[1,-9],[2,-5],[3,3],[8,-12],[6,6],[5,2],[5,0],[7,-4],[-4,-3],[1,-6],[3,-5],[2,-2],[5,-1],[3,-3],[1,-5],[2,-7],[5,7],[2,-5],[3,-9],[2,-5],[9,-2],[4,2],[2,8],[5,-5],[2,-3],[2,-4],[5,6],[2,-6],[3,-12],[3,-11],[4,-7],[8,-9],[4,-6],[0,-1],[4,-3],[0,-2],[1,-5],[0,-1],[13,-22],[26,-32],[54,-86],[1,-6],[-6,-13],[-6,-17],[-2,-3],[-2,3],[-4,2],[-3,-1],[-2,-4],[0,-3],[5,-7],[2,-10],[2,0],[3,3],[2,5],[3,-5],[8,-24],[2,-9],[1,-9],[0,-12]],[[93989,45999],[-2,6],[-2,6],[-3,6],[-9,5],[-5,8],[-4,2],[-2,3],[-1,7],[2,6],[2,0],[2,-4],[3,-2],[3,-4],[1,-6],[4,2],[3,-3],[7,-11],[3,6],[6,-1],[7,-6],[5,-7],[-3,-3],[-2,-4],[0,-6],[1,-7],[-12,5],[-4,2]],[[93780,46085],[2,-5],[-2,-4],[0,-6],[0,-7],[2,-7],[-7,12],[-1,-9],[-3,-3],[-8,0],[0,4],[1,2],[3,4],[2,2],[-11,7],[-4,4],[-2,0],[-7,0],[-3,1],[5,7],[5,6],[7,-3],[8,2],[7,-1],[4,-11],[2,5]],[[93967,46080],[-1,-5],[-1,-6],[0,-6],[0,-7],[-4,5],[-2,4],[-2,-21],[-4,6],[-2,8],[-3,6],[-6,1],[0,3],[4,9],[2,0],[2,-1],[7,14],[6,3],[0,-16],[1,1],[2,1],[1,1]],[[93826,46083],[0,-9],[4,-22],[2,-8],[-8,-1],[-4,1],[-4,4],[-2,-1],[-2,-2],[-2,-1],[-2,1],[-2,6],[-2,1],[-5,7],[3,15],[9,23],[13,-10],[2,-4]],[[93757,46127],[0,-15],[-1,-7],[-3,-4],[-8,0],[-3,-5],[-7,-28],[-1,7],[-1,4],[-2,0],[-2,-2],[-4,6],[-6,3],[-13,2],[-5,4],[-4,8],[-1,11],[2,14],[-2,-2],[-2,-3],[-3,-7],[-2,2],[-2,-2],[0,-8],[-5,6],[-10,7],[-6,7],[-15,2],[-2,0],[-2,-6],[-4,0],[-4,6],[-3,18],[-3,9],[-4,8],[-3,3],[-2,-3],[-6,-4],[-4,-1],[3,8],[-3,10],[-4,8],[-6,5],[-6,2],[-3,3],[-5,8],[-26,64],[-1,6],[-1,7],[-1,6],[-2,3],[-4,2],[-2,5],[-3,14],[-11,32],[-3,4],[-3,6],[-10,35],[-4,7],[-14,15],[-4,2],[-3,4],[-31,57],[-1,2],[-6,10],[-1,8],[-3,33],[1,12],[2,8],[9,16],[5,2],[6,-2],[6,-4],[3,-8],[2,-2],[2,-3],[1,-5],[1,-5],[3,0],[2,2],[1,1],[11,-7],[7,-11],[15,-35],[4,-7],[12,-18],[12,-7],[17,-25],[12,-12],[10,-4],[5,-5],[3,-2],[3,-4],[2,-7],[1,-4],[2,-1],[3,0],[3,-1],[3,-5],[6,-17],[10,-19],[3,-8],[0,-11],[1,-25],[3,-27],[5,-22],[2,-8],[3,-6],[3,-8],[1,-11],[4,6],[2,3],[2,-11],[4,-7],[5,-5],[5,-2],[4,-4],[3,-8],[1,-10],[1,-8],[1,-6],[4,-3],[8,-6],[3,-4],[4,-5],[3,-8],[2,-7],[1,0],[1,10],[2,0],[3,-4],[3,-2],[6,0],[3,1],[10,8],[5,0],[4,-5],[1,-14]],[[96891,43205],[3,0],[1,-9],[-2,-2],[-4,-3],[-2,5],[2,5],[2,4]],[[96039,44298],[-2,-2],[-2,1],[-2,6],[0,7],[1,4],[2,3],[4,-3],[2,-7],[0,-6],[-3,-3]],[[94620,45796],[3,-21],[-1,-1],[-3,1],[-5,16],[-2,7],[2,7],[3,1],[1,-3],[2,-7]],[[96384,43591],[0,-5],[-2,-9],[-4,-7],[-5,-2],[-2,7],[1,10],[4,8],[5,0],[3,-2]],[[96180,44391],[4,0],[4,-5],[-3,-11],[-5,-11],[-4,-1],[0,9],[0,8],[-2,0],[0,4],[2,12],[1,13],[-1,11],[2,-3],[-1,-29],[2,2],[1,1]],[[93484,45855],[1,-2],[3,-4],[-1,-9],[-6,-6],[-5,6],[0,5],[2,6],[3,5],[3,-1]],[[99774,45411],[3,7],[1,7],[-1,5],[-1,7],[0,10],[1,12],[2,-8],[0,-14],[2,-8],[1,-5],[-3,-6],[-5,-7]],[[99549,45690],[-2,1],[1,8],[2,10],[2,7],[-3,-26]],[[99208,46207],[0,2],[-1,2],[0,2],[1,-4],[0,-3],[0,1]],[[98975,46737],[2,8],[1,0],[-1,-3],[-2,-5]],[[99261,46845],[-1,4],[0,2],[-1,1],[4,-1],[2,-2],[0,-3],[-4,-1]],[[98925,47098],[-2,8],[1,1],[3,-5],[2,-12],[-4,8]],[[99973,44903],[0,-11],[0,-1],[-1,12],[-1,8],[1,-1],[1,-7]],[[99962,44936],[2,-2],[1,-8],[0,-1],[-2,7],[-1,4]],[[99633,46033],[-4,17],[-1,5],[7,-12],[1,-5],[0,-6],[0,-3],[-3,4]],[[70322,50066],[3,-4],[-2,0],[0,1],[-1,3]],[[70334,50072],[-1,-2],[-1,-2],[0,-2],[-2,-1],[0,4],[1,1],[3,2]],[[70312,50081],[0,-6],[-1,1],[0,1],[0,2],[1,2]],[[70344,50099],[-4,-10],[0,6],[1,6],[1,2],[2,-4]],[[70346,50121],[-1,-11],[-2,4],[0,5],[0,5],[3,3],[0,-1],[0,-2],[0,-1],[0,-2]],[[70398,50302],[2,-6],[1,-3],[0,-4],[-2,4],[-1,3],[0,3],[0,3]],[[70304,50605],[1,-2],[1,-1],[0,-2],[0,-4],[-1,2],[-1,1],[0,1],[0,2],[0,3]],[[70335,50612],[2,-2],[-1,-3],[-1,2],[0,3]],[[70287,50630],[0,-1],[1,-6],[-1,1],[0,1],[0,1],[0,1],[0,3]],[[70382,50639],[-2,-4],[0,4],[1,1],[1,-1]],[[70273,50650],[0,-1],[1,0],[0,-1],[-1,-1],[-1,2],[1,1]],[[70420,50699],[-2,-4],[0,3],[0,1],[1,0],[1,0]],[[70266,50709],[0,-1],[0,-5],[-1,2],[0,1],[0,1],[1,2]],[[70261,50764],[0,-6],[-1,3],[0,1],[1,2]],[[70414,50771],[0,-1],[0,-5],[-1,1],[0,1],[0,2],[1,2]],[[70385,50850],[0,-2],[0,-1],[-1,-1],[0,2],[0,1],[1,1]],[[70381,50922],[0,-2],[0,-1],[-1,-1],[0,2],[0,1],[1,1]],[[70375,50972],[0,-2],[0,-1],[0,-1],[-1,2],[1,1],[0,1]],[[70230,52549],[1,-2],[0,-1],[-1,-1],[-1,1],[1,1],[0,2]],[[70220,52552],[0,-1],[1,-1],[0,-1],[-2,0],[0,1],[1,1],[0,1]],[[70257,52573],[-4,-6],[1,4],[1,2],[1,0],[1,0]],[[70261,52613],[0,-2],[1,0],[0,-1],[-1,-1],[-1,1],[0,1],[1,0],[0,2]],[[70192,52677],[0,-2],[1,-2],[0,-1],[-1,-2],[0,1],[-1,1],[0,1],[0,2],[1,2]],[[70410,52804],[-2,-4],[-1,-1],[0,2],[1,1],[2,2]],[[70195,52840],[0,-1],[0,-1],[1,-1],[-1,-1],[-1,1],[0,1],[-1,0],[1,1],[1,1]],[[70418,52900],[0,-6],[-1,2],[0,1],[0,1],[0,1],[1,1]],[[70269,52996],[0,-1],[1,-1],[0,-1],[-1,0],[0,2],[0,1]],[[70472,53096],[0,-1],[-1,-1],[1,2]],[[70472,53107],[-1,-2],[1,1],[0,1]],[[70382,53119],[0,-5],[-1,1],[0,1],[0,2],[1,1]],[[70390,53215],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,2],[0,1],[1,2]],[[70413,53267],[0,-2],[0,-1],[0,-1],[-1,1],[0,1],[1,1],[0,1]],[[70271,53369],[-2,-9],[0,6],[0,2],[1,1],[1,0]],[[70254,53371],[2,0],[-1,-1],[-1,1]],[[70401,53414],[-3,-1],[1,3],[1,0],[0,-1],[1,-1]],[[70253,53451],[-1,-2],[0,1],[1,1]],[[70257,53452],[0,-1],[-1,0],[0,-1],[1,2]],[[70290,53503],[-1,-2],[1,2]],[[70291,53510],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,2]],[[70302,53526],[0,-1],[-1,-1],[1,2]],[[70306,53533],[1,-1],[1,0],[-1,0],[-1,1]],[[70238,53572],[0,-2],[-1,0],[1,2]],[[70314,53576],[0,-2],[-1,0],[1,2]],[[70416,53577],[-1,-1],[-1,0],[2,1]],[[70442,53598],[-3,-4],[-1,-1],[-3,2],[2,2],[2,1],[1,0],[2,0]],[[70308,53608],[0,-1],[-1,-1],[1,2]],[[70408,53613],[-2,-1],[1,1],[1,0]],[[70452,53628],[-1,-1],[-1,0],[2,1]],[[70457,53634],[-2,-1],[1,1],[1,0]],[[70264,53640],[0,-2],[-1,0],[1,2]],[[70387,53645],[1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[-1,1],[0,1],[0,1],[0,1]],[[70367,53649],[0,-1],[1,0],[1,0],[-1,-2],[-2,0],[-1,1],[1,1],[1,0],[0,1]],[[70375,53684],[-2,0],[0,-1],[1,2],[1,-1]],[[70426,53698],[0,-1],[-1,0],[1,1]],[[70378,53705],[0,-2],[-1,-1],[1,3]],[[70261,53708],[0,-2],[0,-1],[-1,-1],[0,2],[0,1],[1,0],[0,1]],[[70281,53723],[0,-2],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[1,0],[0,1]],[[70406,53753],[-1,-1],[-1,0],[2,1]],[[70279,53853],[-1,-1],[0,-2],[0,-1],[-1,0],[0,3],[0,1],[1,0],[1,0]],[[70263,54230],[0,-1],[1,0],[0,-1],[0,-2],[-1,1],[0,1],[0,1],[0,1]],[[70247,54291],[1,-2],[0,-1],[1,0],[-1,-1],[-1,1],[0,2],[0,1]],[[70304,50115],[2,-5],[2,-6],[1,-7],[1,-7],[-2,0],[-5,22],[-1,11],[4,4],[0,-5],[-1,0],[-1,-2],[0,-2],[0,-3]],[[70378,51530],[1,0],[2,-1],[-1,-4],[-1,1],[0,2],[-1,2]],[[70388,51539],[1,-2],[0,-3],[0,-1],[-1,0],[-1,0],[0,2],[0,1],[1,2],[0,1]],[[70403,51552],[3,-1],[-2,-3],[-1,0],[0,2],[0,2]],[[70421,51561],[-2,-3],[-3,-6],[-1,1],[1,2],[1,1],[1,2],[3,3]],[[70426,51577],[-1,-5],[0,-1],[0,2],[0,2],[1,1],[0,1]],[[70347,51590],[-2,-2],[0,3],[0,1],[1,-1],[1,-1]],[[70431,51614],[-1,-12],[-1,-6],[-2,-5],[0,-1],[3,20],[1,4]],[[70430,51640],[0,-6],[-1,1],[0,2],[1,3]],[[70365,51649],[1,-1],[1,-1],[0,-1],[-1,-2],[-1,1],[0,1],[0,1],[0,2]],[[70428,51670],[0,-3],[-1,0],[1,2],[0,1]],[[70385,51674],[0,-3],[-1,1],[1,2]],[[70431,51703],[-1,-6],[0,2],[0,1],[1,1],[0,2]],[[70435,51719],[5,0],[-1,-1],[-1,-1],[-3,-5],[-2,-2],[0,3],[0,2],[2,4]],[[70289,51753],[0,-1],[-1,0],[1,1]],[[70306,51765],[0,-2],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[1,1]],[[70309,51772],[1,-1],[1,-3],[-2,0],[0,1],[0,1],[0,2]],[[70263,51817],[-1,-2],[-1,1],[2,1]],[[70257,51848],[0,-7],[-1,2],[0,2],[0,1],[1,2]],[[70373,51860],[0,-2],[-1,-1],[1,3]],[[70375,51913],[2,-7],[2,-7],[0,-1],[0,-8],[-1,-8],[-3,26],[0,5]],[[70365,51954],[0,-7],[-1,0],[0,1],[0,2],[0,1],[1,3]],[[70317,51982],[0,-2],[-1,0],[1,2]],[[70249,52058],[1,-1],[1,0],[0,-3],[-1,1],[-1,0],[0,2],[0,1]],[[70242,52065],[0,-6],[-2,2],[0,1],[1,1],[1,2]],[[70283,52093],[3,2],[-1,-4],[-1,0],[-1,2]],[[70375,52115],[0,-2],[0,-1],[0,-1],[-1,2],[0,1],[1,1]],[[70388,52119],[-2,-6],[0,4],[1,2],[1,0]],[[70429,52183],[1,0],[0,-1],[0,-2],[-1,3]],[[70377,52189],[0,-1],[1,-1],[0,-1],[-1,0],[-1,1],[0,1],[1,0],[0,1]],[[70279,52219],[2,-4],[-1,-1],[0,1],[0,1],[-1,3]],[[70434,52220],[0,-1],[-1,-5],[0,2],[0,1],[1,3]],[[70440,52224],[-3,-7],[1,4],[1,2],[1,1]],[[70241,52228],[-1,-5],[0,-1],[0,1],[1,5]],[[70250,52296],[0,-1],[1,-1],[0,-2],[-2,0],[0,1],[0,1],[1,2]],[[70447,52310],[0,-3],[-1,-1],[1,4]],[[70271,52312],[0,-1],[0,-1],[1,-1],[-1,-2],[-1,1],[0,1],[1,1],[0,2]],[[70289,52368],[0,-1],[1,-1],[0,-2],[-2,0],[0,1],[1,1],[0,2]],[[70286,52396],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[1,2],[0,1]],[[70231,52431],[0,-1],[1,0],[0,-1],[0,-1],[-2,-1],[0,1],[1,1],[0,2]],[[70421,52460],[0,-1],[0,-2],[0,3]],[[70485,52513],[1,-2],[-1,1],[0,1]],[[70418,52543],[0,-3],[0,1],[0,2]],[[70264,52681],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[0,1],[1,1],[0,1]],[[70262,52704],[0,-2],[1,0],[0,-1],[-1,-2],[0,1],[-1,1],[1,1],[0,2]],[[70262,52742],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,1],[0,1],[0,1],[1,1]],[[70399,52748],[-1,-1],[-1,-2],[0,1],[0,2],[1,0],[1,0]],[[70400,52791],[0,-1],[-1,-1],[1,2]],[[70373,52806],[-1,-2],[0,1],[1,1]],[[70394,52909],[0,-2],[-1,0],[1,2]],[[70429,52982],[2,-3],[-1,-5],[0,-10],[-3,-17],[-4,-7],[-4,-5],[-7,1],[-3,2],[-12,10],[0,3],[22,-2],[3,3],[1,10],[2,13],[4,7]],[[70262,52996],[4,-2],[-2,-1],[0,1],[-2,2]],[[70443,53041],[-1,-1],[-1,0],[2,1]],[[70447,53054],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,2],[0,1],[1,2]],[[70454,53058],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,2],[1,0],[0,1]],[[70463,53072],[0,-2],[0,-1],[0,-1],[-1,-1],[0,2],[0,1],[1,2]],[[70265,53098],[0,-9],[-2,0],[-1,0],[-1,5],[4,4]],[[70431,53206],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,1]],[[70452,53679],[1,-5],[1,-5],[0,-5],[-1,-5],[-2,16],[1,4]],[[70279,53705],[-1,-1],[0,-2],[-1,-1],[0,3],[0,1],[1,0],[1,0]],[[70245,53723],[-1,-1],[0,-1],[0,-1],[-1,2],[0,1],[1,0],[1,0]],[[70282,53797],[0,-2],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[1,0],[0,1]],[[70281,53832],[0,-1],[0,-2],[-1,-1],[-1,2],[1,1],[1,1]],[[70386,53868],[0,-1],[-3,-13],[0,4],[3,10]],[[70273,53887],[0,-3],[-1,-2],[1,5]],[[70383,53902],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-2],[-1,2],[0,1],[1,2],[0,2]],[[70271,53913],[-1,-6],[-1,2],[0,2],[1,0],[1,2]],[[70402,53929],[-4,-6],[-1,0],[2,4],[1,2],[1,0],[1,0]],[[70267,53943],[0,-1],[1,-8],[-1,2],[-1,2],[1,5]],[[70396,53970],[0,-1],[0,-2],[0,-1],[-1,0],[0,2],[0,1],[1,0],[0,1]],[[70258,54005],[0,-8],[-2,4],[1,2],[1,2]],[[70385,54005],[2,-7],[-3,2],[0,2],[1,3]],[[70254,54012],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[0,1],[1,-1],[1,0]],[[70347,54072],[-1,-2],[-1,0],[2,2]],[[70347,54089],[-1,-2],[0,1],[1,1]],[[70338,54101],[0,-1],[-1,-1],[1,2]],[[70352,54116],[0,-2],[0,-1],[-1,-1],[0,2],[0,1],[1,0],[0,1]],[[70338,54125],[-1,-2],[0,1],[1,1]],[[70352,54135],[0,-6],[-1,2],[0,2],[1,1],[0,1]],[[70287,54155],[-2,-2],[1,1],[1,1]],[[70344,54165],[0,-2],[1,-1],[0,-2],[-1,-1],[-1,1],[0,2],[1,1],[0,2]],[[70313,54193],[-1,-2],[-1,0],[2,2]],[[70337,54198],[0,-1],[-1,-3],[-1,-1],[2,5]],[[70300,54206],[0,-2],[-1,0],[1,2]],[[70332,54217],[0,-2],[1,0],[0,-1],[0,-3],[-2,1],[0,1],[1,2],[0,2]],[[70312,54220],[-2,-2],[1,1],[1,1]],[[70329,54231],[-1,-1],[0,-1],[0,-1],[-1,1],[0,1],[1,1],[0,-1],[1,1]],[[70283,54241],[0,-1],[1,0],[0,-1],[0,-1],[-2,0],[0,1],[1,1],[0,1]],[[70191,54267],[0,-1],[-1,-2],[0,1],[0,2],[1,0]],[[70250,54284],[1,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[0,1]],[[70291,54284],[-1,-3],[-1,-1],[2,4]],[[70267,54354],[-1,-1],[0,-1],[-1,-1],[0,1],[0,3],[1,0],[0,-1],[1,0]],[[70256,54358],[0,-2],[1,0],[0,-1],[0,-1],[-1,1],[0,2],[0,1]],[[70285,54368],[0,-2],[0,-1],[1,-1],[-1,0],[-1,2],[0,1],[1,0],[0,1]],[[70290,54391],[-1,-1],[0,-1],[-1,-1],[0,1],[0,3],[1,0],[1,-1]],[[70296,54419],[-2,-5],[0,4],[1,1],[1,0]],[[70307,54443],[-1,-2],[-1,-2],[0,-2],[-1,0],[0,4],[1,2],[2,0]],[[70287,54473],[0,-2],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[1,0],[0,1]],[[70254,54475],[0,-1],[0,-1],[-1,0],[0,3],[1,0],[0,-1]],[[70321,54489],[2,0],[0,-1],[0,-1],[0,-2],[-3,-18],[-3,-8],[-3,-7],[1,10],[4,16],[2,11]],[[70328,54515],[4,-2],[-2,-3],[-2,-1],[-1,2],[1,4]],[[70276,54521],[-1,-1],[0,-1],[0,-1],[-1,1],[0,3],[1,0],[1,-1]],[[70317,54522],[-1,-2],[-1,0],[1,3],[1,0],[0,-1]],[[70270,54528],[0,-1],[0,-2],[0,-1],[-1,2],[0,1],[1,1]],[[70304,54528],[0,-1],[-1,-1],[0,-1],[0,3],[0,1],[1,-1]],[[70267,54533],[0,-1],[-1,-1],[0,-1],[0,3],[0,1],[1,-1]],[[70307,54554],[-1,-2],[1,-1],[0,-1],[-1,0],[-1,2],[0,1],[1,0],[1,1]],[[70337,54567],[-1,-8],[-1,-8],[-1,-4],[-1,5],[0,5],[1,6],[1,4],[2,0]],[[70257,54590],[0,-2],[-1,-1],[1,3]],[[70332,54598],[-1,-12],[-1,1],[0,5],[0,4],[1,2],[1,0]],[[70247,54610],[0,-2],[0,-1],[0,3]],[[70271,54632],[0,-1],[1,-8],[-1,3],[0,3],[0,3]],[[70263,54649],[0,-4],[0,2],[0,2]],[[70253,54670],[0,-6],[-2,4],[0,1],[1,0],[1,1]],[[70245,54679],[0,-1],[0,-1],[-1,-2],[1,4]],[[96371,50179],[5,-4],[0,-12],[-2,-13],[-3,-7],[-6,2],[-3,14],[2,14],[7,6]],[[95284,53633],[1,-3],[2,-2],[2,-1],[1,-5],[-1,-7],[-5,-18],[-2,-5],[-4,-2],[-3,2],[-3,3],[-4,2],[-6,0],[-4,1],[-4,3],[-2,10],[4,10],[13,24],[5,8],[6,3],[4,-7],[0,-3],[0,-9],[0,-4]],[[93969,54578],[1,-5],[3,-3],[2,1],[3,3],[4,-30],[0,-6],[-2,-2],[-6,1],[-1,-1],[0,-7],[3,-11],[0,-7],[-1,-9],[-2,-6],[-4,-2],[-13,-4],[-5,1],[-3,6],[-6,-4],[-4,5],[-3,9],[-2,6],[1,8],[0,8],[-1,7],[-3,6],[1,2],[2,6],[-8,1],[-2,9],[2,20],[2,6],[6,0],[4,3],[1,14],[6,-6],[2,-2],[3,3],[2,0],[2,-2],[2,-1],[7,0],[3,0],[0,-2],[5,-6],[2,-6],[0,-1],[-3,-2]],[[92107,54842],[9,5],[4,-3],[4,-10],[0,-9],[-1,-11],[-3,-5],[-3,9],[-2,0],[-3,-4],[-3,1],[-4,2],[-4,1],[1,2],[1,1],[2,1],[3,2],[7,4],[2,4],[-2,6],[-6,-2],[-2,6]],[[92187,54887],[2,3],[2,-1],[3,-2],[4,0],[-2,-7],[-5,-7],[-5,-5],[-5,-1],[0,7],[1,6],[1,11],[1,-1],[1,0],[2,-3]],[[88386,56141],[-3,-11],[1,-8],[3,-3],[6,5],[-1,-6],[-3,-10],[-4,-8],[-3,-4],[-4,3],[-2,12],[-4,-3],[-2,-5],[-15,-51],[-4,-8],[-1,14],[3,20],[4,18],[5,8],[2,4],[2,20],[2,7],[4,5],[1,-4],[1,-16],[1,6],[0,6],[2,5],[1,4],[3,3],[3,4],[2,0],[0,-7]],[[93001,51019],[2,-1],[1,-2],[-1,-3],[-3,0],[-1,4],[1,2],[1,0]],[[92975,51041],[2,3],[3,-2],[-1,-3],[-4,0],[0,2]],[[92997,51045],[1,-3],[-1,-2],[-2,0],[-2,3],[0,3],[2,1],[2,-2]],[[93021,52692],[-1,9],[5,7],[0,-10],[-4,-6]],[[92996,52715],[1,-9],[-5,-6],[-1,9],[5,6]],[[92685,53600],[1,7],[3,7],[5,4],[2,-1],[0,-5],[-4,-6],[-5,-4],[-2,-2]],[[93655,53889],[0,1],[-1,1],[0,1],[1,1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[91476,54436],[0,4],[0,3],[1,3],[1,3],[0,-4],[0,-3],[-1,-3],[-1,-3]],[[93870,54448],[1,6],[1,2],[2,0],[0,-3],[-1,-2],[-3,-3]],[[92182,54803],[-1,22],[0,9],[2,-5],[1,-6],[0,-7],[-1,-7],[-1,-6]],[[91440,54835],[-2,6],[2,0],[0,-1],[0,-2],[0,-3]],[[91779,55548],[-1,6],[1,0],[1,-2],[-1,-2],[0,-2]],[[91574,55548],[-1,7],[0,10],[3,7],[3,0],[0,-5],[-1,-8],[-3,-7],[-1,-4]],[[91699,55786],[1,5],[1,1],[2,-1],[-1,-3],[-1,-1],[-1,0],[-1,-1]],[[89031,56254],[2,4],[3,1],[0,-2],[-2,-5],[-3,-2],[0,4]],[[42429,15258],[1,6],[2,4],[3,1],[27,1],[0,-4],[-3,-5],[-1,-6],[-1,-5],[-17,0],[-6,2],[-5,6]],[[42408,15270],[2,-6],[0,-6],[2,-5],[4,-3],[-3,-1],[-3,1],[-3,1],[-3,3],[-8,5],[-7,7],[-3,7],[9,5],[13,0],[0,-2],[0,-3],[0,-3]],[[42602,15525],[10,3],[9,-4],[18,-15],[-7,-8],[-6,-6],[-7,-4],[-7,-2],[-10,3],[-6,10],[-1,13],[7,10]],[[42705,15863],[1,-5],[4,-10],[1,-4],[-2,-12],[0,-6],[-1,2],[-1,1],[-1,0],[-12,10],[-36,14],[-8,16],[1,3],[2,4],[2,6],[1,7],[2,4],[4,2],[29,0],[9,-3],[9,-9],[-4,-20]],[[42659,16232],[-7,1],[-8,5],[-6,8],[-3,10],[10,16],[5,4],[6,-3],[1,-4],[2,-12],[3,-5],[3,-3],[5,-1],[8,0],[-4,-7],[-5,-3],[-10,-6]],[[42574,16678],[5,7],[7,-1],[6,-8],[5,-10],[-2,0],[0,-1],[-1,-1],[-1,-2],[-2,4],[-3,-1],[-5,4],[-9,9]],[[42458,16905],[4,-1],[6,-5],[5,-5],[1,-7],[-4,-5],[-16,-5],[-9,3],[-3,3],[-1,8],[2,6],[5,4],[5,3],[5,1]],[[42330,17133],[5,8],[6,3],[6,-2],[6,-5],[0,-4],[-4,-3],[-4,-8],[-3,-6],[-4,4],[-6,10],[-2,3]],[[39699,18214],[4,1],[5,-6],[9,-13],[0,-4],[-2,0],[-1,-1],[-2,-2],[-1,-1],[-7,-2],[-3,0],[-3,2],[0,4],[5,0],[-11,8],[-1,8],[2,3],[3,1],[3,2]],[[39420,18488],[2,7],[5,2],[10,-1],[-11,-7],[-3,-1],[-3,0]],[[40025,18083],[-8,-1],[6,-16],[12,-12],[14,-9],[11,-3],[0,-5],[-4,-1],[-4,-3],[-3,-5],[-1,-4],[-3,-2],[-5,0],[-9,4],[-6,-12],[-8,-4],[-9,3],[-8,4],[-13,14],[-8,5],[-9,1],[3,-6],[3,-5],[4,-3],[4,-1],[4,-2],[5,-10],[4,-5],[3,-2],[3,-1],[7,0],[3,-2],[5,-8],[3,-3],[0,-4],[-3,0],[-3,0],[-3,1],[-2,3],[0,-3],[1,-6],[1,-3],[-8,0],[-3,2],[-3,6],[-1,-7],[1,-4],[0,-5],[-3,0],[-6,3],[-3,1],[-2,-2],[-2,-3],[-3,-3],[-8,0],[-4,1],[-3,4],[-2,7],[3,0],[2,1],[3,3],[-11,8],[-13,21],[-5,3],[-7,6],[-10,15],[0,8],[-3,-1],[-4,9],[1,9],[-3,10],[-2,12],[-10,22],[-21,36],[-3,4],[-4,1],[-4,2],[-4,3],[-2,4],[1,7],[4,7],[1,5],[-3,8],[-7,8],[-7,6],[-5,2],[-8,0],[-3,-2],[-5,-8],[-4,-2],[-4,1],[-4,3],[-4,7],[-4,7],[-3,6],[-29,16],[-2,1],[-2,-1],[-2,0],[-1,3],[0,2],[1,7],[1,1],[0,3],[1,4],[1,3],[-1,4],[-1,1],[-1,-1],[-1,2],[-4,6],[-6,4],[-6,2],[-5,0],[2,4],[-6,4],[2,6],[2,3],[4,0],[4,-1],[-7,10],[-11,0],[-22,-6],[-3,2],[-11,7],[-5,6],[-3,3],[-1,3],[0,4],[1,5],[1,5],[-3,2],[-4,2],[-4,3],[-4,5],[-4,4],[-2,2],[-5,-3],[-3,1],[-5,4],[-6,2],[-5,0],[-8,-6],[-17,-3],[-5,-2],[-5,-5],[-2,4],[-2,2],[-3,1],[-3,-3],[-3,9],[1,4],[21,11],[4,0],[-5,9],[-16,8],[-4,11],[12,0],[13,5],[23,16],[-7,4],[-25,-1],[-10,-3],[-4,1],[-6,6],[-3,1],[-26,0],[-7,-2],[-2,-6],[2,-6],[6,-2],[-5,-3],[-22,-6],[-11,2],[-6,-1],[2,2],[1,4],[1,2],[-4,3],[-9,13],[10,8],[5,5],[4,7],[-5,2],[-9,-1],[-5,3],[17,12],[8,8],[5,13],[-33,0],[-16,-4],[-5,2],[-5,5],[-4,1],[-15,-8],[-9,-1],[-7,7],[-6,3],[-10,-14],[-6,1],[1,5],[1,6],[2,4],[4,1],[-2,5],[-1,2],[-2,1],[-3,0],[5,4],[14,0],[14,7],[6,1],[6,-2],[9,-8],[5,-2],[6,1],[6,4],[6,5],[5,6],[0,6],[6,0],[7,-2],[6,-4],[-3,-1],[-1,-2],[-1,-3],[-1,-6],[55,2],[20,8],[11,2],[0,-4],[-17,-12],[2,-4],[-2,-8],[-6,0],[6,-7],[4,-4],[5,-1],[7,0],[2,0],[5,3],[2,1],[17,0],[16,-14],[3,-1],[1,10],[5,2],[5,0],[4,3],[-1,6],[4,1],[6,0],[4,1],[-5,-9],[2,-3],[4,0],[3,0],[0,-7],[-3,-4],[-7,-6],[2,-5],[-1,-5],[-1,-5],[-2,-5],[8,1],[6,8],[5,10],[6,10],[6,4],[9,3],[8,-1],[2,-11],[-12,-14],[-5,-8],[4,-6],[6,2],[22,18],[-1,2],[-3,5],[-1,1],[5,3],[7,-1],[14,-6],[8,-5],[2,-3],[0,-6],[-3,-7],[1,-7],[-2,-5],[2,-4],[3,-1],[3,2],[1,4],[1,15],[1,5],[7,3],[28,-7],[-2,-4],[5,0],[3,-1],[3,-3],[0,-4],[-2,-5],[-1,-2],[-1,-5],[-5,3],[-5,1],[-4,-2],[-5,-6],[8,-3],[3,-2],[-1,-4],[-3,-1],[-7,0],[-4,-2],[8,-6],[8,1],[17,8],[16,5],[2,-4],[3,-6],[3,-3],[4,5],[2,-4],[0,-2],[0,-3],[-2,-4],[-4,5],[-4,0],[-9,-5],[-4,-4],[-23,-22],[-2,-1],[-2,-1],[-1,-4],[0,-2],[2,-4],[0,-4],[-2,-6],[7,-1],[5,1],[5,3],[19,20],[7,4],[5,-7],[3,5],[4,-2],[2,-8],[-1,-9],[-2,-2],[-3,0],[-2,-1],[-1,-5],[0,-3],[2,-2],[1,-3],[-2,-6],[3,-6],[1,-6],[-1,-7],[-3,-6],[11,17],[6,4],[5,-2],[7,-17],[5,-8],[6,-2],[5,5],[0,8],[-3,10],[-2,12],[-1,4],[-6,10],[-2,5],[-1,3],[-1,5],[0,7],[18,-8],[9,-7],[1,-9],[4,1],[3,0],[2,-2],[1,-5],[1,-7],[0,-4],[0,-4],[-3,-4],[8,-8],[0,-2],[-4,-4],[-2,-12],[4,-3],[23,1],[-1,-8],[0,-7],[-2,-7],[-5,-2],[2,-6],[2,-4],[2,-2],[4,-1],[0,-5],[2,-3],[4,-2],[3,-2],[2,1],[4,3],[2,-1],[4,-7],[7,1],[3,-2],[1,-5],[1,-7],[2,-4],[3,-2],[-5,-6],[-6,-6],[-12,-18],[3,-4],[5,-9],[3,-2],[5,-2],[25,2],[4,3],[8,8],[3,2],[3,-1],[-1,-7],[-5,-18],[-6,-15],[-2,-1],[7,-27],[1,-13]],[[42163,16883],[5,6],[6,-1],[1,-6],[-5,-6],[-7,0],[0,7]],[[33418,19551],[5,-4],[-1,-8],[-4,-8],[-5,-4],[-2,0],[-3,-3],[-2,-3],[-3,-9],[-2,0],[-3,5],[0,7],[0,1],[0,1],[0,1],[-1,0],[3,5],[3,8],[1,9],[-1,11],[-4,7],[-4,4],[-4,5],[-2,10],[2,11],[3,-5],[4,-16],[14,2],[6,-2],[4,-8],[-1,-3],[-2,-4],[-1,-4],[0,-6]],[[33001,19783],[-3,-1],[-8,-8],[0,-3],[3,-2],[2,-1],[3,1],[3,2],[-6,-15],[-10,0],[-10,9],[-8,13],[1,2],[2,2],[3,1],[2,-2],[6,-2],[5,-6],[1,2],[1,8],[1,3],[0,4],[2,3],[2,2],[3,-1],[2,-2],[2,-4],[1,-5]],[[33070,19706],[-8,-4],[-6,1],[-13,7],[1,6],[1,2],[-4,0],[-2,4],[-1,5],[-1,3],[-3,1],[-5,1],[-3,2],[-1,1],[-1,2],[-1,1],[-1,0],[2,13],[-2,8],[-4,5],[-5,2],[5,8],[3,4],[5,1],[11,-1],[2,1],[3,10],[5,11],[4,4],[4,3],[1,0],[3,0],[1,0],[2,-2],[1,-2],[0,-3],[1,-1],[6,-4],[2,-4],[-1,-6],[-6,-6],[-13,-11],[-5,-10],[-1,-5],[2,-1],[20,9],[8,10],[6,4],[4,7],[3,13],[-1,5],[-3,2],[-1,2],[3,7],[3,5],[3,0],[2,-3],[1,-8],[0,-5],[-1,-6],[-2,-6],[-1,-3],[-2,-6],[-1,-14],[0,-7],[-2,-7],[-6,-17],[12,0],[-3,-5],[-2,-11],[-1,-5],[-4,-3],[-13,-4]],[[32980,19864],[6,0],[10,-6],[5,-2],[-4,-4],[-11,1],[-5,-3],[-2,-6],[-1,-7],[0,-18],[-3,2],[-4,3],[-3,5],[-1,6],[2,12],[2,8],[3,5],[6,4]],[[33435,19828],[-7,-12],[-19,-23],[-29,-56],[-6,-16],[-2,-9],[-3,-7],[-5,-5],[-12,-5],[-18,-17],[-2,17],[-1,3],[-7,1],[-3,2],[-2,2],[-1,7],[-3,0],[-3,-3],[-1,-4],[-1,-6],[3,-12],[-1,-5],[-5,-5],[-24,3],[-7,-5],[-3,-1],[-2,6],[1,3],[5,7],[2,5],[-18,-10],[-5,-5],[-3,-11],[2,-9],[3,-10],[2,-13],[-1,-9],[-4,-7],[-22,-35],[-3,-4],[-7,0],[-8,9],[-6,-1],[1,-1],[0,-3],[0,-4],[0,-2],[-2,-2],[-2,3],[-2,3],[-5,5],[-5,11],[-2,2],[-3,2],[-5,6],[-4,0],[-2,-2],[0,-4],[1,-4],[7,-5],[4,-8],[4,-11],[1,-10],[-11,-18],[-16,-12],[-15,2],[-9,24],[3,-1],[3,-1],[3,0],[2,2],[-5,5],[-7,10],[-6,12],[-3,9],[3,2],[3,6],[2,6],[-5,3],[-28,1],[-3,-1],[-2,-5],[1,-2],[4,-1],[3,-1],[6,-3],[6,-9],[6,-11],[2,-9],[-16,0],[-4,1],[-3,2],[-1,5],[-13,22],[-3,4],[-4,1],[-3,0],[-4,1],[-5,7],[-9,16],[-5,6],[-13,3],[-4,7],[2,14],[3,6],[7,-2],[15,-8],[12,-1],[3,-3],[1,-6],[0,-6],[1,-5],[5,1],[-4,20],[19,3],[18,9],[0,4],[-9,7],[-8,2],[-6,4],[-6,15],[24,1],[13,-5],[5,-12],[2,0],[1,4],[1,3],[4,6],[0,-7],[2,-5],[2,-2],[3,3],[2,4],[3,1],[3,-2],[8,-2],[3,-2],[4,-5],[5,-6],[2,0],[3,6],[-4,4],[0,4],[7,0],[8,2],[7,4],[6,6],[8,18],[1,2],[1,3],[-2,5],[-3,2],[-4,-3],[-10,-12],[-13,-7],[-14,0],[-11,9],[22,-2],[5,4],[2,2],[6,3],[1,3],[1,5],[2,6],[3,4],[2,3],[-3,7],[0,5],[2,4],[1,4],[-1,6],[-1,13],[0,8],[3,10],[6,7],[8,3],[6,-2],[-3,-5],[-2,-4],[-5,-7],[9,3],[3,0],[2,-5],[-1,-6],[-5,-16],[3,-3],[8,-10],[0,10],[3,7],[3,4],[5,-1],[-3,9],[-1,7],[1,19],[1,6],[2,3],[3,2],[3,-1],[2,-2],[2,-10],[2,-4],[2,0],[2,3],[2,1],[1,-6],[2,-2],[2,3],[9,10],[1,11],[-1,12],[1,9],[-8,3],[-6,-2],[-7,-3],[-7,-2],[-16,3],[-7,-3],[2,-13],[-3,-6],[-2,0],[-2,2],[-3,1],[-13,-11],[-3,-2],[-13,0],[-4,-2],[-2,-5],[-1,-5],[-2,-4],[-6,0],[-3,9],[-2,10],[-5,5],[-6,4],[-6,9],[-3,12],[0,12],[4,10],[5,-1],[5,-6],[28,-11],[8,0],[6,4],[13,13],[7,3],[21,-3],[20,10],[6,-1],[11,-16],[7,-4],[16,-2],[-5,11],[-6,6],[-8,3],[-7,0],[-6,4],[-16,25],[-3,2],[-6,3],[-3,3],[-7,16],[-7,1],[-41,25],[-4,4],[-3,13],[0,7],[2,3],[17,0],[13,-5],[3,3],[-4,12],[-6,8],[-7,5],[-8,4],[-10,2],[-8,-1],[-4,0],[-8,7],[-4,1],[-3,2],[-3,3],[-2,5],[0,4],[1,7],[-1,7],[-4,13],[3,-1],[3,0],[2,2],[3,3],[9,-8],[31,-17],[9,-8],[29,-32],[23,-15],[24,-5],[46,12],[-7,10],[-19,3],[2,13],[6,10],[7,8],[1,8],[2,3],[3,-5],[1,-3],[2,-15],[17,19],[9,5],[9,-4],[0,-4],[-2,-2],[-1,-1],[0,-3],[-1,-2],[26,-6],[8,-6],[-4,-3],[-5,-1],[-10,0],[8,-12],[15,0],[52,16],[5,3],[9,11],[6,2],[0,-4],[-19,-19],[-8,-5],[13,-9],[13,0],[28,13],[-2,6],[-4,5],[-3,4],[-4,1],[-2,4],[0,17],[0,8],[2,-1],[5,1],[2,0],[-1,2],[0,7],[-1,3],[4,0],[5,-2],[5,-3],[1,-5],[3,-4],[28,-16],[7,-7],[4,-8],[-12,1],[-4,-3],[-3,-10],[1,-8],[4,-1],[4,2],[4,-1],[-7,-6],[-13,-19],[-6,-7],[-2,6],[-3,2],[-3,-1],[-4,-3],[0,-4],[1,-4],[0,-3],[-2,-10],[2,2],[5,2],[0,-4],[-8,-16],[-1,-4],[-1,-16],[-2,-4],[-4,-3],[-7,-11],[-3,-3],[-4,3],[-1,5],[0,6],[1,7],[-9,-14],[-5,-5],[-3,3],[-16,-21],[8,1],[-1,-6],[-10,-17],[-12,-30]],[[33361,20087],[-4,-4],[-2,0],[0,-4],[4,-7],[-3,-6],[-7,-3],[-5,0],[-6,5],[-4,6],[-4,8],[-3,9],[13,6],[4,0],[4,-2],[11,-8],[2,0]],[[33286,20034],[-20,-5],[-4,1],[-5,3],[-4,6],[-1,8],[4,8],[7,5],[13,3],[3,-3],[6,-11],[3,-3],[4,1],[3,1],[4,3],[3,4],[-5,6],[-15,12],[-11,4],[-13,13],[-4,5],[-4,9],[-1,4],[3,3],[5,1],[2,-4],[2,-5],[2,-6],[6,-6],[7,-4],[7,-1],[7,1],[15,5],[7,-3],[3,-12],[2,-3],[2,-6],[0,-6],[-3,-3],[-10,-17],[-5,-13],[-1,-3],[-3,1],[-8,6],[-3,1]],[[33940,19856],[11,5],[5,1],[6,-2],[0,-4],[-7,-1],[-29,-18],[-5,-2],[-19,0],[-4,-2],[0,-5],[-4,-4],[-3,-2],[-43,-7],[-21,5],[-11,-1],[0,-4],[3,-1],[10,-7],[5,-2],[14,-2],[0,-4],[-8,-3],[-16,1],[-8,-2],[-19,-16],[-8,-1],[6,-3],[6,0],[17,11],[19,1],[-4,-7],[-7,-7],[-8,-5],[-11,-4],[-22,-18],[-13,-8],[-25,6],[-15,-2],[-10,-4],[-44,1],[-7,3],[-9,12],[-13,7],[-6,7],[-6,4],[-3,4],[-1,5],[-1,7],[-2,5],[-3,2],[-3,-3],[-3,-9],[-2,-9],[-1,-5],[1,-8],[4,-7],[5,-6],[13,-5],[11,-8],[10,-10],[5,-12],[-4,-10],[8,-3],[15,6],[9,-1],[10,-4],[8,-8],[0,-12],[8,-8],[-15,-13],[-4,-7],[3,-4],[2,-5],[1,-7],[3,-20],[-1,-6],[-2,-2],[-4,-1],[-3,3],[-9,22],[-3,6],[-3,5],[-4,4],[-5,1],[-3,1],[-3,6],[-2,1],[-1,-1],[-1,-3],[-1,-3],[-3,-1],[-3,1],[-4,2],[-2,1],[-4,-2],[1,-5],[1,-5],[0,-4],[-4,-6],[-8,-7],[-4,-5],[-5,-5],[-3,7],[-3,20],[-5,-9],[-4,5],[-2,11],[-2,9],[-6,4],[-6,-2],[-5,0],[-2,10],[-5,-3],[-4,1],[-8,11],[-2,4],[-2,2],[-2,1],[-3,-2],[-1,-3],[-1,-3],[-2,-4],[-4,-2],[-4,-1],[-3,1],[-4,2],[-3,3],[-2,2],[-2,3],[-3,0],[-2,-1],[-4,-5],[-3,-2],[-2,-3],[1,-7],[4,-4],[8,7],[15,-5],[4,-4],[1,-8],[0,-9],[2,-3],[5,1],[4,2],[4,1],[5,-4],[-10,-16],[10,1],[5,-2],[4,-4],[-4,-5],[-11,-6],[-4,-5],[-2,-11],[4,-3],[7,0],[16,8],[5,0],[1,-6],[-3,-5],[-14,-11],[3,-8],[6,-8],[4,-7],[-4,-10],[-6,-2],[-7,4],[-12,10],[-7,1],[-6,-1],[-6,1],[-5,8],[-2,5],[0,5],[-1,5],[-3,5],[-3,3],[-4,1],[-3,2],[-3,6],[-5,-3],[-11,17],[-5,2],[-2,-3],[-1,-7],[-1,-12],[-2,-4],[-3,4],[-5,10],[-6,-6],[3,-10],[9,-16],[-1,0],[-2,-4],[-2,-5],[-1,-6],[2,-4],[3,-1],[7,-1],[7,-5],[4,-7],[2,-9],[-2,-11],[-1,-2],[-4,-6],[-1,-6],[3,-2],[1,-3],[6,-9],[2,0],[-2,-11],[-6,4],[-9,15],[-7,5],[-14,3],[-6,7],[1,12],[-3,7],[-6,4],[-13,5],[-4,5],[-1,7],[7,10],[-5,3],[-9,-4],[-4,3],[-1,3],[0,8],[0,3],[-9,13],[-10,10],[-3,4],[-3,5],[-2,7],[1,6],[2,2],[2,0],[3,-2],[2,-2],[6,-9],[2,-2],[5,1],[3,4],[1,7],[-4,8],[12,4],[5,4],[2,9],[-5,3],[-5,6],[-5,7],[-2,8],[0,6],[2,2],[2,-1],[3,-5],[3,-2],[4,-1],[7,1],[-4,12],[-2,4],[-4,4],[5,3],[10,2],[5,3],[0,5],[-16,5],[-7,7],[0,11],[6,6],[9,-4],[10,-8],[7,-2],[6,8],[-4,7],[-8,7],[-3,7],[1,7],[4,0],[4,-1],[4,2],[2,5],[0,5],[-2,4],[-4,2],[5,4],[21,11],[5,-8],[4,7],[3,27],[5,-6],[4,-1],[10,3],[-5,14],[0,6],[26,25],[5,-8],[3,4],[4,8],[4,4],[22,5],[4,-1],[2,-5],[0,-5],[-1,-5],[1,-6],[1,-4],[2,-4],[2,-4],[1,-6],[-1,-5],[-2,-6],[-1,-4],[2,-9],[0,-5],[-1,-5],[-1,-4],[5,2],[5,2],[5,4],[2,8],[-1,9],[-4,10],[-2,10],[1,16],[-4,5],[-3,7],[2,12],[2,3],[3,1],[3,1],[1,5],[-1,6],[-2,0],[-3,0],[-6,5],[-19,10],[-13,14],[-6,14],[5,10],[8,12],[3,21],[14,-37],[9,-12],[6,16],[-8,14],[-2,13],[5,7],[10,-5],[-7,9],[-25,16],[-6,5],[1,9],[3,10],[3,7],[4,4],[2,-1],[6,-5],[2,-2],[3,0],[9,4],[3,2],[1,6],[1,6],[1,2],[19,1],[6,3],[6,5],[2,8],[-1,8],[-8,15],[-3,11],[-3,4],[-3,4],[-2,2],[-1,3],[-3,18],[5,-4],[9,-14],[5,-3],[6,-1],[13,-7],[23,-19],[6,-1],[14,0],[4,-2],[2,-3],[4,-3],[4,0],[0,4],[-1,7],[4,6],[6,5],[27,3],[5,-3],[4,-5],[12,-5],[5,-6],[12,-20],[2,-9],[1,-12],[1,-8],[-1,-6],[-7,-8],[-5,-3],[-7,-2],[-7,-1],[-6,2],[-2,7],[-5,20],[-4,5],[-5,-1],[-4,-7],[-8,-16],[9,0],[2,-8],[-3,-26],[3,-4],[18,13],[6,-1],[1,-6],[0,-8],[-1,-8],[-1,-7],[1,-10],[1,-4],[4,0],[1,1],[2,6],[2,1],[1,-2],[1,-9],[1,-3],[4,-3],[5,0],[3,3],[3,6],[5,-4],[4,-6],[2,-9],[0,-11],[2,-8],[4,-10],[4,-9],[4,-4],[5,4],[-2,9],[-7,16],[3,7],[6,-2],[12,-9],[-2,13],[-7,6],[-7,4],[-4,7],[2,4],[4,4],[3,5],[-2,7],[-3,3],[-9,-5],[-4,0],[-3,5],[0,5],[0,5],[-1,6],[-1,3],[-2,4],[-2,0],[-1,-5],[-1,-6],[-3,-3],[-3,-1],[-3,0],[-3,2],[1,5],[5,9],[13,34],[3,6],[3,2],[8,8],[3,2],[59,6],[15,7],[8,-1],[8,-2],[3,-4],[3,-6],[4,-24],[2,-4],[3,-3],[9,-19],[3,-4],[3,-3],[8,-3],[-2,-6],[-6,-5],[-2,-6],[7,0],[3,-5],[-3,-7],[-7,-4],[-34,7],[-24,18],[-5,2],[-3,-5],[4,-14],[-15,8],[-18,-12],[5,-11],[9,-9],[11,-6],[8,-2],[16,5],[7,-6],[26,-4],[11,-4],[8,-8],[4,-14],[-5,-7],[-12,-6],[-19,-5],[0,-4],[16,-8],[7,0]],[[33403,20099],[-12,4],[-2,2],[-2,5],[-1,5],[1,4],[4,1],[7,4],[7,-3],[7,-6],[7,-4],[28,5],[3,-1],[0,-3],[0,-2],[0,-3],[2,-4],[1,-4],[2,-3],[4,-1],[2,2],[1,4],[1,3],[1,3],[3,3],[2,1],[2,0],[7,-3],[4,-8],[3,-12],[2,-13],[-7,-2],[-7,-5],[-16,-1],[-6,4],[-10,20],[-7,4],[-31,4]],[[33397,19481],[5,10],[7,4],[9,0],[1,-7],[-6,-3],[0,-8],[-5,-6],[-3,-8],[6,-6],[11,2],[7,5],[3,-7],[-7,-7],[-5,-8],[-3,-8],[-7,5],[-6,5],[-5,6],[-7,-1],[-3,7],[-6,6],[8,10],[7,2],[-1,7]],[[33773,19678],[4,-5],[0,-1],[-1,0],[-1,-5],[-1,-4],[-3,-1],[-5,3],[-3,0],[0,-2],[2,-6],[-1,-2],[-3,0],[-1,-2],[3,-2],[3,2],[3,3],[0,-1],[-1,-5],[-1,-6],[1,-6],[2,-6],[0,-4],[-1,-2],[0,-4],[2,-5],[-1,-2],[-6,1],[-2,3],[2,4],[0,4],[-2,0],[-3,-2],[-4,3],[-4,4],[-6,5],[-1,3],[0,5],[-1,5],[-4,4],[-2,5],[2,4],[3,4],[4,2],[4,2],[3,2],[2,1],[1,1],[-2,2],[1,2],[4,0],[3,-2],[2,-3],[1,-2],[2,-1],[2,1],[2,2],[-1,4],[2,1],[1,-1]],[[33422,19695],[2,-3],[0,-6],[-2,-4],[-3,-2],[-2,1],[0,2],[-1,2],[-1,2],[-1,0],[-2,-1],[-1,3],[2,7],[-1,4],[1,7],[4,4],[2,-1],[1,-4],[-1,-5],[1,-4],[2,-2]],[[33404,20072],[4,-6],[4,-5],[7,-7],[1,12],[6,-2],[1,-9],[7,-5],[10,-2],[1,-7],[-8,-2],[-11,-7],[-8,-7],[-8,-1],[-8,7],[1,9],[5,6],[-6,3],[-11,-3],[-9,7],[-2,6],[8,1],[8,2],[2,10],[6,0]],[[33185,20099],[4,-6],[1,-7],[-2,-6],[-1,-1],[-1,4],[-1,3],[0,2],[-4,2],[-5,2],[-6,6],[-3,13],[4,5],[8,-9],[4,-6],[2,-2]],[[33040,20225],[1,-3],[1,-3],[-2,-1],[-4,2],[-9,6],[-4,1],[-3,1],[0,3],[2,3],[2,3],[0,2],[-2,6],[0,5],[4,-1],[4,-5],[3,-7],[2,-4],[1,-4],[0,-2],[4,-2]],[[97177,38542],[6,-9],[4,-5],[3,-6],[3,-11],[-3,-14],[-2,-8],[-2,-5],[-3,-3],[-7,-3],[-2,-3],[-3,6],[-3,3],[-7,4],[-9,8],[-4,6],[0,13],[2,15],[3,10],[4,2],[7,3],[8,0],[5,-3]],[[97064,38926],[9,-10],[4,-6],[6,-5],[-2,-7],[-10,-25],[-2,-26],[-2,-13],[-2,-6],[-6,1],[-12,7],[-4,5],[-12,27],[-2,5],[-6,0],[-2,2],[-1,4],[-1,6],[-2,5],[-2,3],[-1,2],[0,5],[-10,27],[-1,6],[0,9],[0,16],[2,14],[3,6],[2,4],[0,7],[-1,14],[1,7],[1,5],[2,4],[3,4],[6,3],[10,1],[5,4],[4,-8],[1,-8],[-2,-10],[-1,-13],[4,-44],[2,-9],[6,-4],[7,-4],[6,-5]],[[97037,39256],[-2,-15],[-6,-7],[-6,-6],[-3,-10],[-6,9],[-24,27],[-4,1],[-3,-3],[-2,1],[-9,5],[-2,2],[-3,6],[-7,10],[-5,4],[-15,11],[-1,10],[5,26],[0,8],[-1,7],[-2,6],[-2,6],[0,4],[1,43],[2,12],[4,12],[8,12],[11,7],[11,-1],[10,-10],[3,-9],[1,-12],[0,-22],[1,-10],[4,-5],[12,-3],[0,1],[1,1],[2,1],[1,1],[1,-1],[0,-5],[3,-3],[1,-4],[1,-5],[1,-4],[-3,-1],[-18,-9],[7,-17],[1,-6],[2,-1],[8,-9],[3,-4],[8,-9],[6,-11],[4,-13],[1,-18]],[[96818,39993],[3,-1],[3,0],[2,2],[2,3],[0,-10],[-8,-35],[-2,-15],[-2,-7],[-4,-3],[-7,-3],[-1,-1],[0,-3],[-2,-3],[-2,-1],[-1,1],[-2,3],[-1,3],[-1,1],[-19,-10],[-2,0],[-5,6],[-1,4],[-1,6],[-1,2],[-3,-8],[0,5],[-2,6],[0,5],[-1,-1],[0,-1],[-1,-2],[-2,2],[-2,-1],[-2,-2],[-1,-3],[1,20],[-1,0],[-3,-7],[-5,-4],[-10,-5],[0,4],[5,7],[6,4],[5,6],[2,12],[-3,-3],[-2,0],[-1,3],[-1,12],[-1,2],[-2,0],[-2,2],[-4,5],[-4,1],[-3,-2],[-4,-4],[-2,-4],[-4,-13],[-2,-3],[-3,-2],[-2,3],[0,6],[-4,5],[1,7],[6,29],[4,8],[7,10],[3,7],[11,33],[7,13],[8,3],[2,-4],[1,-6],[1,-4],[5,6],[19,7],[5,-2],[4,-6],[0,-3],[1,-11],[1,-2],[3,-1],[1,-3],[3,-8],[2,-11],[2,-12],[2,-9],[6,-5],[1,-5],[3,-12],[1,-3]],[[96723,40058],[0,18],[9,17],[10,7],[6,-10],[-4,-2],[-6,-7],[-4,-3],[-6,-8],[-3,-6],[-2,-6]],[[96755,40137],[2,17],[3,3],[3,-7],[4,-11],[2,-21],[-4,-3],[-6,9],[-4,13]],[[96774,40362],[-1,-3],[-1,-4],[-2,-4],[-9,-4],[-3,-1],[-3,3],[2,7],[3,7],[3,4],[11,11],[3,0],[7,-4],[-3,-3],[-7,-9]],[[96821,40435],[-4,1],[-3,3],[-1,5],[1,8],[0,13],[5,9],[7,1],[6,-11],[-8,-25],[-3,-4]],[[96719,40512],[-3,5],[-9,16],[-1,6],[0,16],[0,6],[-5,8],[-2,5],[0,5],[1,7],[1,22],[1,10],[2,4],[2,3],[1,4],[1,7],[0,6],[-1,4],[-1,9],[2,-4],[2,1],[2,2],[2,1],[3,-2],[1,-2],[1,-3],[1,-2],[2,-5],[5,-22],[3,-5],[0,-4],[1,-9],[1,-10],[2,-6],[3,1],[4,6],[3,1],[2,-1],[3,-2],[1,-2],[2,-3],[3,-9],[1,-9],[3,-7],[5,-3],[1,-3],[1,-7],[3,-7],[5,-3],[14,1],[7,-5],[4,-13],[-3,-3],[0,-8],[2,-9],[-1,-8],[-3,3],[-2,-3],[-15,17],[-5,10],[-4,5],[-6,3],[-4,1],[-11,-5],[-9,-10],[-8,-6],[-11,5]],[[96757,40675],[-4,2],[-2,7],[-3,15],[8,4],[3,0],[4,-4],[3,-9],[0,-9],[-3,-6],[-6,0]],[[96725,40711],[3,22],[3,5],[7,2],[-2,-9],[-1,-21],[-2,-9],[-4,-6],[-5,0],[-2,6],[3,10]],[[96716,40788],[-3,-2],[-5,-4],[-3,-2],[-4,3],[-3,5],[-4,5],[-4,2],[-3,-2],[-7,10],[-4,2],[-4,-4],[-3,7],[-9,11],[-4,8],[-4,5],[-5,4],[-3,5],[1,8],[-4,7],[4,8],[7,7],[8,3],[4,6],[3,2],[12,0],[6,6],[10,22],[4,4],[2,4],[4,23],[2,2],[6,4],[6,-13],[4,-19],[6,-37],[1,-19],[5,-11],[20,-21],[2,-5],[0,-9],[-2,-7],[-9,-15],[-30,-3]],[[96614,40746],[2,0],[3,-7],[1,-10],[2,-6],[-6,-14],[-2,-2],[-4,-1],[-2,-4],[-1,-6],[-3,-7],[-2,-5],[0,-5],[0,-5],[-3,-3],[-4,0],[-2,5],[-1,6],[-2,6],[-3,1],[-7,3],[-2,1],[-1,5],[-4,0],[-5,-1],[-2,0],[-5,5],[-6,-5],[-6,-8],[-3,-6],[2,-4],[0,-2],[1,-1],[3,-1],[-3,-8],[-3,-3],[-7,-1],[-6,-13],[-2,1],[-2,3],[-1,0],[-1,-8],[-2,0],[-2,6],[-8,6],[-3,13],[-4,7],[-3,8],[-1,13],[2,0],[1,-4],[2,-3],[2,-3],[3,-1],[-1,9],[-2,12],[-2,11],[-7,19],[-1,6],[-1,9],[1,11],[-1,3],[-1,4],[-2,2],[-1,1],[-1,1],[-1,13],[0,36],[2,8],[-3,28],[0,4],[0,10],[-1,5],[-1,1],[-2,1],[0,2],[-2,10],[-10,32],[-4,-5],[-1,-3],[-2,4],[-5,-11],[-12,-17],[-7,12],[-4,3],[-3,-3],[-1,6],[-1,6],[-1,6],[0,6],[-3,6],[-2,4],[-2,5],[-1,8],[1,14],[9,33],[-2,39],[1,7],[1,5],[0,5],[1,3],[3,1],[9,13],[30,-25],[0,-21],[17,-43],[-5,-21],[3,-3],[3,-4],[1,-6],[-2,-7],[3,-5],[2,-5],[3,-5],[5,-4],[5,-8],[2,-2],[1,3],[0,5],[-1,10],[1,1],[2,-6],[4,-13],[0,-5],[-2,-6],[0,-5],[6,-6],[2,-2],[2,0],[1,3],[0,2],[1,1],[1,2],[1,-7],[1,-7],[2,-6],[2,-5],[3,-4],[7,-4],[3,-4],[7,-12],[3,-10],[4,-4],[8,6],[2,-3],[1,-1],[0,-4],[-2,-9],[5,-11],[12,-20],[7,2],[4,-13],[3,-29],[-6,-20],[0,-11],[4,-6],[0,11],[2,7],[2,6],[3,6]],[[96445,41142],[-5,0],[-4,4],[-8,12],[-4,3],[-8,4],[-3,5],[-5,16],[1,16],[5,12],[9,4],[20,-5],[10,-6],[1,-11],[-4,-18],[2,-17],[1,-14],[-8,-5]],[[96432,41267],[5,5],[4,0],[0,-3],[-3,-2],[0,-4],[2,-1],[1,-4],[0,-3],[-2,-4],[7,-7],[0,-11],[-4,-6],[-6,4],[-1,-3],[-1,-1],[-2,-1],[-4,2],[-3,2],[-7,9],[14,28]],[[96717,41280],[2,-6],[2,-1],[1,-3],[1,-9],[-2,-36],[0,-10],[4,-19],[0,-18],[1,-8],[6,-38],[2,-31],[2,-9],[3,-13],[1,-11],[1,-23],[-1,-21],[-3,-15],[-8,-9],[-7,-1],[-3,4],[-1,8],[-1,24],[-5,36],[-3,45],[-7,34],[-2,21],[-1,23],[1,24],[7,47],[2,47],[6,1],[1,-27],[1,-6]],[[96649,41354],[-1,-11],[-2,-7],[-19,-32],[-6,-5],[-29,1],[-6,4],[-10,9],[-1,7],[2,10],[34,67],[6,4],[5,2],[14,11],[23,8],[7,-2],[1,-6],[-7,-13],[-3,-9],[-4,-12],[-3,-13],[-1,-13]],[[96422,41608],[-6,14],[-1,7],[5,-3],[7,-12],[5,-2],[-3,-5],[-2,-3],[-3,1],[-2,3]],[[96692,41598],[1,5],[1,3],[0,3],[-2,5],[-1,6],[1,7],[2,6],[2,3],[4,-4],[3,-10],[2,-12],[1,-8],[0,-14],[4,-33],[0,-6],[-1,-12],[1,-6],[3,-19],[0,-7],[0,-21],[1,-5],[4,-10],[1,-5],[-1,-40],[2,-9],[-1,-11],[-2,-17],[0,-17],[-2,-18],[-3,3],[-3,0],[-7,-3],[2,14],[-1,15],[-3,28],[2,21],[0,63],[-3,14],[-7,91]],[[96427,41269],[-11,-26],[-2,-4],[-2,-2],[-3,-2],[-3,0],[-3,1],[-5,5],[-3,2],[-10,3],[-12,-1],[-11,-6],[-6,-13],[2,-5],[-2,-1],[-6,2],[-3,-4],[-2,-5],[-1,-5],[-2,-6],[-5,-5],[-7,1],[-6,6],[-4,11],[3,11],[0,15],[-3,12],[-9,9],[-4,9],[-7,20],[-3,18],[-1,5],[-8,15],[-1,5],[-1,8],[-4,11],[-1,5],[1,6],[2,12],[2,17],[4,24],[1,13],[-1,27],[-1,14],[-7,20],[-1,11],[-1,25],[-3,23],[0,8],[3,10],[-5,3],[-3,9],[-2,11],[0,11],[-1,10],[-6,19],[-3,10],[-5,45],[1,10],[2,9],[1,15],[-1,14],[-1,8],[7,33],[0,14],[1,7],[8,6],[2,4],[1,2],[4,-5],[1,-5],[2,-16],[1,-3],[3,-3],[1,-6],[1,-7],[0,-7],[1,-1],[7,-17],[2,-14],[2,-7],[5,-6],[12,-18],[-3,-6],[1,-13],[5,-29],[3,-28],[1,-29],[0,-7],[1,-4],[2,-3],[1,-4],[4,-74],[3,-5],[7,0],[13,3],[7,0],[3,0],[1,5],[4,12],[2,4],[3,5],[2,5],[1,8],[1,65],[0,8],[-2,9],[3,9],[5,6],[4,3],[21,-4],[0,-5],[-5,-2],[-2,-5],[-1,-7],[1,-25],[-1,-6],[-4,-7],[5,-2],[2,-7],[1,-20],[5,-29],[1,-11],[6,10],[4,2],[5,-4],[-1,-11],[5,-48],[-2,-9],[-2,-2],[-1,-2],[3,-9],[1,-2],[5,-3],[2,-3],[1,-3],[2,-14],[0,-11],[-2,-9],[-1,-4],[-2,8],[-2,0],[2,-20],[5,-30],[6,-27],[7,-12],[2,-3],[1,-6],[-1,-6],[-1,-5],[-2,-4],[-2,1],[-2,2],[-3,1],[-10,0],[-4,-3],[-5,-8]],[[96531,42095],[3,-1],[17,-17],[2,-5],[2,-5],[-1,-32],[-1,-5],[-2,-3],[-7,-25],[-4,-9],[-3,-3],[-3,-1],[-19,3],[-3,-3],[-4,1],[-4,3],[-3,3],[-2,2],[-1,3],[1,7],[3,12],[-2,33],[1,10],[2,5],[3,4],[6,11],[2,1],[3,-1],[4,0],[3,3],[4,8],[3,1]],[[96514,42227],[0,12],[-2,8],[-2,6],[-6,9],[-6,20],[-2,13],[0,15],[3,13],[3,10],[6,7],[12,11],[4,0],[4,-5],[5,-11],[8,-32],[3,-5],[-3,-9],[-2,-3],[1,-8],[3,-3],[2,-2],[3,-3],[1,-2],[2,1],[0,-1],[1,-4],[-1,-3],[-2,0],[-2,1],[-1,0],[-5,-7],[-5,-6],[-6,-3],[-7,-1],[1,-1],[1,-1],[0,-2],[-2,-4],[3,-14],[-3,-10],[-6,-1],[-3,15]],[[96583,42404],[3,-4],[1,-8],[0,-10],[-1,-7],[-2,-2],[-5,-4],[-6,-2],[-4,0],[-2,-6],[-3,-1],[0,6],[10,28],[4,7],[5,3]],[[96479,42469],[2,-8],[3,-3],[4,2],[3,5],[-1,-16],[-3,-6],[-5,0],[-6,1],[-3,9],[-3,10],[0,9],[4,9],[7,4],[5,-6],[0,-8],[-7,-2]],[[96270,42631],[4,8],[6,4],[6,0],[3,-8],[0,-11],[-4,-8],[-5,-4],[-4,2],[-2,4],[-2,3],[-1,5],[-1,5]],[[96270,42679],[-2,-1],[0,-3],[0,-3],[0,-5],[-1,-2],[0,-2],[-1,-2],[-2,-2],[-4,5],[-3,6],[-1,9],[1,13],[1,16],[1,6],[-1,5],[-2,3],[-1,3],[0,7],[9,-5],[2,-3],[2,-6],[1,-13],[1,-5],[0,-4],[-1,-3],[-1,-4],[0,-4],[2,-6]],[[96297,42501],[-4,24],[4,4],[4,-9],[-4,-19]],[[2819,39238],[7,-1],[1,-3],[8,-44],[3,-13],[-4,-3],[-2,-5],[-5,-12],[-12,-16],[-2,2],[-2,-2],[-5,-8],[-1,6],[-2,2],[-3,1],[-4,-1],[1,2],[1,2],[1,2],[1,2],[-1,10],[-1,2],[-6,5],[0,10],[6,19],[0,4],[-1,3],[-1,3],[0,5],[1,3],[1,0],[1,0],[2,3],[6,22],[9,1],[3,-1]],[[2614,42022],[4,7],[2,-3],[0,-8],[-5,-4],[-16,-2],[-4,-2],[-7,-11],[-11,-30],[-7,-12],[-2,4],[-11,16],[-8,8],[-2,4],[12,15],[4,2],[10,0],[4,1],[7,17],[10,5],[12,-1],[8,-6]],[[2927,42046],[5,-4],[1,-9],[-2,-6],[-3,3],[-2,-5],[-3,-2],[-2,1],[-3,2],[-1,-5],[-2,-3],[-2,0],[-3,0],[0,7],[-1,6],[-2,5],[-2,2],[4,7],[6,2],[12,-1]],[[3288,41863],[-3,6],[3,2],[1,-1],[-1,-7]],[[2868,42075],[2,4],[3,0],[3,-2],[3,-3],[-7,-7],[-3,0],[-1,8]],[[2480,43924],[0,-5],[-3,-3],[-1,4],[0,5],[4,-1]],[[87297,54659],[2,-1],[1,-2],[0,-4],[1,-4],[-2,-3],[-2,-10],[2,-8],[-1,-2],[-3,0],[-2,-2],[-4,-12],[-3,-5],[-1,3],[2,11],[10,39]],[[87350,54789],[-4,-2],[1,-5],[2,-6],[1,-5],[-1,-4],[-4,-2],[-5,0],[-3,-3],[-7,-14],[-4,-3],[-3,1],[-3,4],[-2,6],[0,7],[0,11],[1,2],[9,-20],[1,1],[4,4],[10,19],[2,5],[0,7],[-1,7],[0,4],[2,-1],[2,-2],[1,-3],[1,-3],[0,-5]],[[87352,54830],[5,-3],[7,-6],[4,-9],[-2,-12],[-2,-2],[-3,6],[-2,9],[-1,5],[-4,3],[-3,-2],[-5,-9],[0,8],[0,8],[2,4],[4,0]],[[87401,55041],[4,-20],[1,-28],[-2,-28],[-3,-20],[-6,-16],[0,-4],[3,-8],[0,-4],[-1,-3],[-3,-15],[-6,-18],[-2,-12],[2,-23],[-1,-8],[-1,-2],[-2,1],[-3,1],[-3,3],[-1,1],[-2,-2],[-2,-8],[-2,-2],[-3,1],[-1,2],[-1,4],[-2,14],[-2,19],[-2,9],[-2,3],[-2,0],[-1,1],[1,8],[1,6],[1,7],[3,4],[2,3],[2,-7],[2,-1],[3,4],[1,8],[-1,5],[-2,5],[-5,7],[3,4],[3,11],[4,5],[0,3],[0,8],[0,1],[3,11],[3,8],[5,4],[7,1],[7,4],[1,10],[-2,31],[-2,11],[-1,7],[1,3],[3,-1],[2,-4],[1,-4]],[[86427,52274],[6,7],[6,1],[2,-7],[-3,-9],[-5,-6],[-7,-2],[-2,6],[3,10]],[[86727,53604],[-2,9],[2,1],[2,-3],[-2,-7]],[[87266,54547],[-4,8],[-3,12],[1,9],[6,1],[3,-6],[2,-10],[-1,-9],[-4,-5]],[[86608,52233],[4,-2],[2,-8],[-5,-7],[-5,2],[-1,7],[3,6],[2,2]],[[87418,55265],[4,0],[1,-9],[-2,-14],[-5,-5],[-2,6],[0,9],[4,13]],[[90245,58548],[3,-14],[5,-7],[6,-3],[5,-1],[0,-7],[-4,-16],[-9,-26],[-10,-18],[-17,-24],[-7,-15],[-4,-24],[-3,-55],[-7,-22],[-4,-4],[-6,-1],[-5,4],[-3,10],[-3,10],[-1,3],[-2,23],[-1,4],[-1,3],[-2,3],[-2,2],[3,6],[2,6],[1,8],[0,10],[-1,5],[-1,6],[-2,5],[-3,5],[2,4],[2,3],[1,-3],[4,1],[17,20],[4,7],[15,18],[3,7],[2,7],[2,8],[6,40],[2,7],[3,7],[5,5],[4,1],[1,-8]],[[90334,58868],[13,11],[8,2],[3,-13],[-1,-7],[-2,-5],[-2,-3],[-4,-1],[-3,-2],[-2,-6],[-1,-7],[-3,-5],[-5,-6],[-3,2],[-2,5],[-5,2],[-9,-2],[-4,1],[-2,3],[3,11],[8,10],[8,7],[5,3]],[[90457,59396],[1,-8],[0,-8],[-1,-8],[0,-9],[1,-5],[4,-9],[0,-6],[-1,-16],[-5,-16],[-5,-8],[-6,7],[-1,8],[-1,16],[-2,9],[-3,9],[-1,4],[1,7],[3,14],[6,15],[6,10],[4,-6]],[[90496,59511],[3,3],[5,-1],[2,-5],[-4,-7],[-3,-4],[-2,-7],[-5,-25],[1,-5],[2,-7],[-2,-6],[-1,-3],[-2,1],[-3,3],[-3,-6],[-2,-8],[0,-8],[2,-8],[2,-8],[-4,0],[-5,4],[-1,1],[-6,-3],[-3,2],[-1,8],[1,9],[3,22],[0,8],[0,7],[1,5],[2,6],[1,2],[6,4],[1,3],[0,7],[0,2],[4,4],[7,4],[4,6]],[[90474,60163],[2,-9],[-2,-5],[-4,-1],[-7,-2],[-4,1],[-3,2],[-3,5],[-2,7],[1,5],[2,4],[5,1],[3,-2],[9,-3],[3,-3]],[[90491,61233],[11,0],[4,-4],[3,-6],[1,-8],[-1,-9],[-3,-6],[-3,-4],[-3,-5],[-13,-25],[-4,-5],[-6,1],[-2,13],[7,8],[3,14],[2,28],[4,8]],[[90461,61558],[-8,14],[0,24],[5,13],[10,-1],[4,-10],[2,-7],[0,-7],[0,-11],[-1,-7],[-3,-5],[-5,-4],[-4,1]],[[90496,60345],[-6,12],[5,3],[5,-4],[-4,-11]],[[90514,60707],[-5,11],[4,3],[5,-5],[-4,-9]],[[90514,60873],[-6,6],[-1,10],[2,7],[4,1],[4,-5],[1,-7],[0,-7],[-4,-5]],[[90390,62108],[-4,5],[-3,7],[0,7],[4,3],[4,-3],[1,-6],[0,-7],[-2,-6]],[[90347,62320],[-3,2],[-3,4],[-1,6],[1,6],[2,6],[1,-3],[1,-6],[0,-3],[2,1],[3,1],[2,1],[1,-2],[-1,-5],[-1,-4],[-2,-3],[-2,-1]],[[90253,62620],[-2,6],[-1,8],[1,7],[4,2],[3,-4],[0,-7],[-2,-7],[-3,-5]],[[64041,65982],[12,-20],[3,9],[4,6],[2,-9],[2,-14],[4,0],[-3,-7],[0,-11],[-6,-3],[2,-34],[-1,-53],[-4,-65],[-3,-13],[-8,-25],[-2,18],[-3,19],[-4,19],[-6,17],[-12,26],[-2,17],[6,19],[1,9],[2,9],[-2,22],[-4,22],[-5,16],[-1,7],[0,10],[3,28],[2,7],[4,3],[6,0],[4,-2],[4,-4],[4,-3],[11,9],[2,-2],[1,-8],[2,-6],[1,-2],[0,-2],[-1,-7],[-3,-1],[-8,2],[-4,-3]],[[92886,38015],[-1,1],[1,0],[0,-1]],[[82046,56532],[-1,1],[1,0],[0,-1]],[[81770,56207],[0,1],[1,2],[1,0],[0,-2],[0,-2],[-2,-4],[-1,1],[0,2],[1,2]],[[81674,56399],[0,2],[0,1],[2,2],[1,-1],[-2,-4],[-1,0]],[[81767,56496],[-1,0],[-1,2],[1,2],[1,3],[1,0],[1,-2],[0,-2],[-2,-3]],[[81795,56609],[-1,3],[1,4],[1,0],[0,-1],[1,-3],[-1,-2],[-1,-1]],[[81767,56610],[-1,2],[-1,3],[1,1],[2,-3],[0,-2],[0,-1],[-1,0]],[[81792,56622],[-1,1],[0,2],[0,2],[1,0],[1,-1],[1,-2],[-2,-2]],[[82174,56827],[1,0],[0,-3],[0,-1],[-1,0],[-1,-1],[-2,-3],[-1,1],[-1,3],[1,4],[1,0],[3,1],[0,-1]],[[82177,56879],[-2,1],[-1,2],[0,2],[1,1],[2,0],[1,-1],[1,-3],[0,-2],[-2,0]],[[81743,57008],[-2,2],[0,1],[2,3],[1,0],[2,-2],[-2,-4],[-1,0]],[[81949,57047],[-2,1],[-1,3],[0,2],[1,-1],[2,2],[1,-2],[-1,-3],[0,-2]],[[81766,56254],[0,2],[1,-1],[-1,-1]],[[19663,56571],[1,-8],[-3,-4],[-2,6],[-2,9],[2,2],[4,-5]],[[81543,63595],[3,-1],[2,0],[0,-3],[-1,-2],[-1,-1],[-1,0],[-1,-6],[2,-1],[1,-1],[2,1],[0,-1],[-1,-2],[1,-1],[2,0],[0,-2],[0,-1],[0,-2],[-1,-1],[-2,2],[1,-3],[-1,-1],[-1,1],[-1,1],[-1,-3],[0,-3],[0,-3],[-2,2],[-2,-2],[0,-1],[-1,0],[-1,1],[-1,3],[2,1],[-1,16],[-3,5],[0,2],[1,5],[1,1],[1,0],[3,2],[1,-2]],[[81535,63618],[2,3],[-1,2],[0,-1],[-1,-1],[-1,3],[1,1],[2,0],[0,2],[1,2],[1,-2],[0,-1],[2,-1],[1,-1],[0,-3],[1,-2],[-2,0],[-1,-1],[1,-1],[0,-1],[2,2],[-1,-3],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-3],[-1,0],[-1,0],[-1,-3],[-1,0],[-1,-3],[-2,6],[1,1],[0,3],[1,2],[1,5]],[[84332,43109],[0,-6],[-6,1],[0,6],[6,-1]],[[27780,59824],[1,0],[0,-1],[-1,1]],[[28156,59863],[-1,2],[1,2],[0,-4]],[[82709,59444],[0,-1],[0,-1],[-1,1],[1,1]]],\"bbox\":[-180,-85.22193775799991,180,83.63410065300008],\"transform\":{\"scale\":[0.0036000360003600037,0.0016885772698826986],\"translate\":[-180,-85.22193775799991]}}\n"
  },
  {
    "path": "freedata_gui/src/assets/countries-110m.json",
    "content": "{\"type\":\"Topology\",\"objects\":{\"countries\":{\"type\":\"GeometryCollection\",\"geometries\":[{\"type\":\"MultiPolygon\",\"arcs\":[[[0]],[[1]]],\"id\":\"242\",\"properties\":{\"name\":\"Fiji\"}},{\"type\":\"Polygon\",\"arcs\":[[2,3,4,5,6,7,8,9,10]],\"id\":\"834\",\"properties\":{\"name\":\"Tanzania\"}},{\"type\":\"Polygon\",\"arcs\":[[11,12,13,14]],\"id\":\"732\",\"properties\":{\"name\":\"W. Sahara\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[15,16,17,18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]]],\"id\":\"124\",\"properties\":{\"name\":\"Canada\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-19,48,49,50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[-17,58]],[[59]]],\"id\":\"840\",\"properties\":{\"name\":\"United States of America\"}},{\"type\":\"Polygon\",\"arcs\":[[60,61,62,63,64,65]],\"id\":\"398\",\"properties\":{\"name\":\"Kazakhstan\"}},{\"type\":\"Polygon\",\"arcs\":[[-63,66,67,68,69]],\"id\":\"860\",\"properties\":{\"name\":\"Uzbekistan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[70,71]],[[72]],[[73]],[[74]]],\"id\":\"598\",\"properties\":{\"name\":\"Papua New Guinea\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-72,75]],[[76,77]],[[78]],[[79,80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]]],\"id\":\"360\",\"properties\":{\"name\":\"Indonesia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[90,91]],[[92,93,94,95,96,97]]],\"id\":\"032\",\"properties\":{\"name\":\"Argentina\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-92,98]],[[99,-95,100,101]]],\"id\":\"152\",\"properties\":{\"name\":\"Chile\"}},{\"type\":\"Polygon\",\"arcs\":[[-8,102,103,104,105,106,107,108,109,110,111]],\"id\":\"180\",\"properties\":{\"name\":\"Dem. Rep. Congo\"}},{\"type\":\"Polygon\",\"arcs\":[[112,113,114,115]],\"id\":\"706\",\"properties\":{\"name\":\"Somalia\"}},{\"type\":\"Polygon\",\"arcs\":[[-3,116,117,118,-113,119]],\"id\":\"404\",\"properties\":{\"name\":\"Kenya\"}},{\"type\":\"Polygon\",\"arcs\":[[120,121,122,123,124,125,126,127]],\"id\":\"729\",\"properties\":{\"name\":\"Sudan\"}},{\"type\":\"Polygon\",\"arcs\":[[-122,128,129,130,131]],\"id\":\"148\",\"properties\":{\"name\":\"Chad\"}},{\"type\":\"Polygon\",\"arcs\":[[132,133]],\"id\":\"332\",\"properties\":{\"name\":\"Haiti\"}},{\"type\":\"Polygon\",\"arcs\":[[-133,134]],\"id\":\"214\",\"properties\":{\"name\":\"Dominican Rep.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141,142,143]],[[144]],[[145]],[[146,147,148,149,-66,150,151,152,153,154,155,156,157,158,159,160,161]],[[162]],[[163,164]]],\"id\":\"643\",\"properties\":{\"name\":\"Russia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[165]],[[166]],[[167]]],\"id\":\"044\",\"properties\":{\"name\":\"Bahamas\"}},{\"type\":\"Polygon\",\"arcs\":[[168]],\"id\":\"238\",\"properties\":{\"name\":\"Falkland Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[169]],[[-161,170,171,172]],[[173]],[[174]]],\"id\":\"578\",\"properties\":{\"name\":\"Norway\"}},{\"type\":\"Polygon\",\"arcs\":[[175]],\"id\":\"304\",\"properties\":{\"name\":\"Greenland\"}},{\"type\":\"Polygon\",\"arcs\":[[176]],\"id\":\"260\",\"properties\":{\"name\":\"Fr. S. Antarctic Lands\"}},{\"type\":\"Polygon\",\"arcs\":[[177,-77]],\"id\":\"626\",\"properties\":{\"name\":\"Timor-Leste\"}},{\"type\":\"Polygon\",\"arcs\":[[178,179,180,181,182,183,184],[185]],\"id\":\"710\",\"properties\":{\"name\":\"South Africa\"}},{\"type\":\"Polygon\",\"arcs\":[[-186]],\"id\":\"426\",\"properties\":{\"name\":\"Lesotho\"}},{\"type\":\"Polygon\",\"arcs\":[[-50,186,187,188,189]],\"id\":\"484\",\"properties\":{\"name\":\"Mexico\"}},{\"type\":\"Polygon\",\"arcs\":[[190,191,-93]],\"id\":\"858\",\"properties\":{\"name\":\"Uruguay\"}},{\"type\":\"Polygon\",\"arcs\":[[-191,-98,192,193,194,195,196,197,198,199,200]],\"id\":\"076\",\"properties\":{\"name\":\"Brazil\"}},{\"type\":\"Polygon\",\"arcs\":[[-194,201,-96,-100,202]],\"id\":\"068\",\"properties\":{\"name\":\"Bolivia\"}},{\"type\":\"Polygon\",\"arcs\":[[-195,-203,-102,203,204,205]],\"id\":\"604\",\"properties\":{\"name\":\"Peru\"}},{\"type\":\"Polygon\",\"arcs\":[[-196,-206,206,207,208,209,210]],\"id\":\"170\",\"properties\":{\"name\":\"Colombia\"}},{\"type\":\"Polygon\",\"arcs\":[[-209,211,212,213]],\"id\":\"591\",\"properties\":{\"name\":\"Panama\"}},{\"type\":\"Polygon\",\"arcs\":[[-213,214,215,216]],\"id\":\"188\",\"properties\":{\"name\":\"Costa Rica\"}},{\"type\":\"Polygon\",\"arcs\":[[-216,217,218,219]],\"id\":\"558\",\"properties\":{\"name\":\"Nicaragua\"}},{\"type\":\"Polygon\",\"arcs\":[[-219,220,221,222,223]],\"id\":\"340\",\"properties\":{\"name\":\"Honduras\"}},{\"type\":\"Polygon\",\"arcs\":[[-222,224,225]],\"id\":\"222\",\"properties\":{\"name\":\"El Salvador\"}},{\"type\":\"Polygon\",\"arcs\":[[-189,226,227,-223,-226,228]],\"id\":\"320\",\"properties\":{\"name\":\"Guatemala\"}},{\"type\":\"Polygon\",\"arcs\":[[-188,229,-227]],\"id\":\"084\",\"properties\":{\"name\":\"Belize\"}},{\"type\":\"Polygon\",\"arcs\":[[-197,-211,230,231]],\"id\":\"862\",\"properties\":{\"name\":\"Venezuela\"}},{\"type\":\"Polygon\",\"arcs\":[[-198,-232,232,233]],\"id\":\"328\",\"properties\":{\"name\":\"Guyana\"}},{\"type\":\"Polygon\",\"arcs\":[[-199,-234,234,235]],\"id\":\"740\",\"properties\":{\"name\":\"Suriname\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-200,-236,236]],[[237,238,239,240,241,242,243,244]],[[245]]],\"id\":\"250\",\"properties\":{\"name\":\"France\"}},{\"type\":\"Polygon\",\"arcs\":[[-205,246,-207]],\"id\":\"218\",\"properties\":{\"name\":\"Ecuador\"}},{\"type\":\"Polygon\",\"arcs\":[[247]],\"id\":\"630\",\"properties\":{\"name\":\"Puerto Rico\"}},{\"type\":\"Polygon\",\"arcs\":[[248]],\"id\":\"388\",\"properties\":{\"name\":\"Jamaica\"}},{\"type\":\"Polygon\",\"arcs\":[[249]],\"id\":\"192\",\"properties\":{\"name\":\"Cuba\"}},{\"type\":\"Polygon\",\"arcs\":[[-181,250,251,252]],\"id\":\"716\",\"properties\":{\"name\":\"Zimbabwe\"}},{\"type\":\"Polygon\",\"arcs\":[[-180,253,254,-251]],\"id\":\"072\",\"properties\":{\"name\":\"Botswana\"}},{\"type\":\"Polygon\",\"arcs\":[[-179,255,256,257,-254]],\"id\":\"516\",\"properties\":{\"name\":\"Namibia\"}},{\"type\":\"Polygon\",\"arcs\":[[258,259,260,261,262,263,264]],\"id\":\"686\",\"properties\":{\"name\":\"Senegal\"}},{\"type\":\"Polygon\",\"arcs\":[[-261,265,266,267,268,269,270]],\"id\":\"466\",\"properties\":{\"name\":\"Mali\"}},{\"type\":\"Polygon\",\"arcs\":[[-13,271,-266,-260,272]],\"id\":\"478\",\"properties\":{\"name\":\"Mauritania\"}},{\"type\":\"Polygon\",\"arcs\":[[273,274,275,276,277]],\"id\":\"204\",\"properties\":{\"name\":\"Benin\"}},{\"type\":\"Polygon\",\"arcs\":[[-131,278,279,-277,280,-268,281,282]],\"id\":\"562\",\"properties\":{\"name\":\"Niger\"}},{\"type\":\"Polygon\",\"arcs\":[[-278,-280,283,284]],\"id\":\"566\",\"properties\":{\"name\":\"Nigeria\"}},{\"type\":\"Polygon\",\"arcs\":[[-130,285,286,287,288,289,-284,-279]],\"id\":\"120\",\"properties\":{\"name\":\"Cameroon\"}},{\"type\":\"Polygon\",\"arcs\":[[-275,290,291,292]],\"id\":\"768\",\"properties\":{\"name\":\"Togo\"}},{\"type\":\"Polygon\",\"arcs\":[[-292,293,294,295]],\"id\":\"288\",\"properties\":{\"name\":\"Ghana\"}},{\"type\":\"Polygon\",\"arcs\":[[-270,296,-295,297,298,299]],\"id\":\"384\",\"properties\":{\"name\":\"Côte d'Ivoire\"}},{\"type\":\"Polygon\",\"arcs\":[[-262,-271,-300,300,301,302,303]],\"id\":\"324\",\"properties\":{\"name\":\"Guinea\"}},{\"type\":\"Polygon\",\"arcs\":[[-263,-304,304]],\"id\":\"624\",\"properties\":{\"name\":\"Guinea-Bissau\"}},{\"type\":\"Polygon\",\"arcs\":[[-299,305,306,-301]],\"id\":\"430\",\"properties\":{\"name\":\"Liberia\"}},{\"type\":\"Polygon\",\"arcs\":[[-302,-307,307]],\"id\":\"694\",\"properties\":{\"name\":\"Sierra Leone\"}},{\"type\":\"Polygon\",\"arcs\":[[-269,-281,-276,-293,-296,-297]],\"id\":\"854\",\"properties\":{\"name\":\"Burkina Faso\"}},{\"type\":\"Polygon\",\"arcs\":[[-108,308,-286,-129,-121,309]],\"id\":\"140\",\"properties\":{\"name\":\"Central African Rep.\"}},{\"type\":\"Polygon\",\"arcs\":[[-107,310,311,312,-287,-309]],\"id\":\"178\",\"properties\":{\"name\":\"Congo\"}},{\"type\":\"Polygon\",\"arcs\":[[-288,-313,313,314]],\"id\":\"266\",\"properties\":{\"name\":\"Gabon\"}},{\"type\":\"Polygon\",\"arcs\":[[-289,-315,315]],\"id\":\"226\",\"properties\":{\"name\":\"Eq. Guinea\"}},{\"type\":\"Polygon\",\"arcs\":[[-7,316,317,-252,-255,-258,318,-103]],\"id\":\"894\",\"properties\":{\"name\":\"Zambia\"}},{\"type\":\"Polygon\",\"arcs\":[[-6,319,-317]],\"id\":\"454\",\"properties\":{\"name\":\"Malawi\"}},{\"type\":\"Polygon\",\"arcs\":[[-5,320,-184,321,-182,-253,-318,-320]],\"id\":\"508\",\"properties\":{\"name\":\"Mozambique\"}},{\"type\":\"Polygon\",\"arcs\":[[-183,-322]],\"id\":\"748\",\"properties\":{\"name\":\"eSwatini\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-106,322,-311]],[[-104,-319,-257,323]]],\"id\":\"024\",\"properties\":{\"name\":\"Angola\"}},{\"type\":\"Polygon\",\"arcs\":[[-9,-112,324]],\"id\":\"108\",\"properties\":{\"name\":\"Burundi\"}},{\"type\":\"Polygon\",\"arcs\":[[325,326,327,328,329,330,331]],\"id\":\"376\",\"properties\":{\"name\":\"Israel\"}},{\"type\":\"Polygon\",\"arcs\":[[-331,332,333]],\"id\":\"422\",\"properties\":{\"name\":\"Lebanon\"}},{\"type\":\"Polygon\",\"arcs\":[[334]],\"id\":\"450\",\"properties\":{\"name\":\"Madagascar\"}},{\"type\":\"Polygon\",\"arcs\":[[-327,335]],\"id\":\"275\",\"properties\":{\"name\":\"Palestine\"}},{\"type\":\"Polygon\",\"arcs\":[[-265,336]],\"id\":\"270\",\"properties\":{\"name\":\"Gambia\"}},{\"type\":\"Polygon\",\"arcs\":[[337,338,339]],\"id\":\"788\",\"properties\":{\"name\":\"Tunisia\"}},{\"type\":\"Polygon\",\"arcs\":[[-12,340,341,-338,342,-282,-267,-272]],\"id\":\"012\",\"properties\":{\"name\":\"Algeria\"}},{\"type\":\"Polygon\",\"arcs\":[[-326,343,344,345,346,-328,-336]],\"id\":\"400\",\"properties\":{\"name\":\"Jordan\"}},{\"type\":\"Polygon\",\"arcs\":[[347,348,349,350,351]],\"id\":\"784\",\"properties\":{\"name\":\"United Arab Emirates\"}},{\"type\":\"Polygon\",\"arcs\":[[352,353]],\"id\":\"634\",\"properties\":{\"name\":\"Qatar\"}},{\"type\":\"Polygon\",\"arcs\":[[354,355,356]],\"id\":\"414\",\"properties\":{\"name\":\"Kuwait\"}},{\"type\":\"Polygon\",\"arcs\":[[-345,357,358,359,360,-357,361]],\"id\":\"368\",\"properties\":{\"name\":\"Iraq\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-351,362,363,364]],[[-349,365]]],\"id\":\"512\",\"properties\":{\"name\":\"Oman\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[366]],[[367]]],\"id\":\"548\",\"properties\":{\"name\":\"Vanuatu\"}},{\"type\":\"Polygon\",\"arcs\":[[368,369,370,371]],\"id\":\"116\",\"properties\":{\"name\":\"Cambodia\"}},{\"type\":\"Polygon\",\"arcs\":[[-369,372,373,374,375,376]],\"id\":\"764\",\"properties\":{\"name\":\"Thailand\"}},{\"type\":\"Polygon\",\"arcs\":[[-370,-377,377,378,379]],\"id\":\"418\",\"properties\":{\"name\":\"Laos\"}},{\"type\":\"Polygon\",\"arcs\":[[-376,380,381,382,383,-378]],\"id\":\"104\",\"properties\":{\"name\":\"Myanmar\"}},{\"type\":\"Polygon\",\"arcs\":[[-371,-380,384,385]],\"id\":\"704\",\"properties\":{\"name\":\"Vietnam\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[386,386,386]],[[-147,387,388,389,390]]],\"id\":\"408\",\"properties\":{\"name\":\"North Korea\"}},{\"type\":\"Polygon\",\"arcs\":[[-389,391]],\"id\":\"410\",\"properties\":{\"name\":\"South Korea\"}},{\"type\":\"Polygon\",\"arcs\":[[-149,392]],\"id\":\"496\",\"properties\":{\"name\":\"Mongolia\"}},{\"type\":\"Polygon\",\"arcs\":[[-383,393,394,395,396,397,398,399,400]],\"id\":\"356\",\"properties\":{\"name\":\"India\"}},{\"type\":\"Polygon\",\"arcs\":[[-382,401,-394]],\"id\":\"050\",\"properties\":{\"name\":\"Bangladesh\"}},{\"type\":\"Polygon\",\"arcs\":[[-400,402]],\"id\":\"064\",\"properties\":{\"name\":\"Bhutan\"}},{\"type\":\"Polygon\",\"arcs\":[[-398,403]],\"id\":\"524\",\"properties\":{\"name\":\"Nepal\"}},{\"type\":\"Polygon\",\"arcs\":[[-396,404,405,406,407]],\"id\":\"586\",\"properties\":{\"name\":\"Pakistan\"}},{\"type\":\"Polygon\",\"arcs\":[[-69,408,409,-407,410,411]],\"id\":\"004\",\"properties\":{\"name\":\"Afghanistan\"}},{\"type\":\"Polygon\",\"arcs\":[[-68,412,413,-409]],\"id\":\"762\",\"properties\":{\"name\":\"Tajikistan\"}},{\"type\":\"Polygon\",\"arcs\":[[-62,414,-413,-67]],\"id\":\"417\",\"properties\":{\"name\":\"Kyrgyzstan\"}},{\"type\":\"Polygon\",\"arcs\":[[-64,-70,-412,415,416]],\"id\":\"795\",\"properties\":{\"name\":\"Turkmenistan\"}},{\"type\":\"Polygon\",\"arcs\":[[-360,417,418,419,420,421,-416,-411,-406,422]],\"id\":\"364\",\"properties\":{\"name\":\"Iran\"}},{\"type\":\"Polygon\",\"arcs\":[[-332,-334,423,424,-358,-344]],\"id\":\"760\",\"properties\":{\"name\":\"Syria\"}},{\"type\":\"Polygon\",\"arcs\":[[-420,425,426,427,428]],\"id\":\"051\",\"properties\":{\"name\":\"Armenia\"}},{\"type\":\"Polygon\",\"arcs\":[[-172,429,430]],\"id\":\"752\",\"properties\":{\"name\":\"Sweden\"}},{\"type\":\"Polygon\",\"arcs\":[[-156,431,432,433,434]],\"id\":\"112\",\"properties\":{\"name\":\"Belarus\"}},{\"type\":\"Polygon\",\"arcs\":[[-155,435,-164,436,437,438,439,440,441,442,-432]],\"id\":\"804\",\"properties\":{\"name\":\"Ukraine\"}},{\"type\":\"Polygon\",\"arcs\":[[-433,-443,443,444,445,446,-142,447]],\"id\":\"616\",\"properties\":{\"name\":\"Poland\"}},{\"type\":\"Polygon\",\"arcs\":[[448,449,450,451,452,453,454]],\"id\":\"040\",\"properties\":{\"name\":\"Austria\"}},{\"type\":\"Polygon\",\"arcs\":[[-441,455,456,457,458,-449,459]],\"id\":\"348\",\"properties\":{\"name\":\"Hungary\"}},{\"type\":\"Polygon\",\"arcs\":[[-439,460]],\"id\":\"498\",\"properties\":{\"name\":\"Moldova\"}},{\"type\":\"Polygon\",\"arcs\":[[-438,461,462,463,-456,-440,-461]],\"id\":\"642\",\"properties\":{\"name\":\"Romania\"}},{\"type\":\"Polygon\",\"arcs\":[[-434,-448,-144,464,465]],\"id\":\"440\",\"properties\":{\"name\":\"Lithuania\"}},{\"type\":\"Polygon\",\"arcs\":[[-157,-435,-466,466,467]],\"id\":\"428\",\"properties\":{\"name\":\"Latvia\"}},{\"type\":\"Polygon\",\"arcs\":[[-158,-468,468]],\"id\":\"233\",\"properties\":{\"name\":\"Estonia\"}},{\"type\":\"Polygon\",\"arcs\":[[-446,469,-453,470,-238,471,472,473,474,475,476]],\"id\":\"276\",\"properties\":{\"name\":\"Germany\"}},{\"type\":\"Polygon\",\"arcs\":[[-463,477,478,479,480,481]],\"id\":\"100\",\"properties\":{\"name\":\"Bulgaria\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[482]],[[-480,483,484,485,486]]],\"id\":\"300\",\"properties\":{\"name\":\"Greece\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-359,-425,487,488,-427,-418]],[[-479,489,-484]]],\"id\":\"792\",\"properties\":{\"name\":\"Turkey\"}},{\"type\":\"Polygon\",\"arcs\":[[-486,490,491,492,493]],\"id\":\"008\",\"properties\":{\"name\":\"Albania\"}},{\"type\":\"Polygon\",\"arcs\":[[-458,494,495,496,497,498]],\"id\":\"191\",\"properties\":{\"name\":\"Croatia\"}},{\"type\":\"Polygon\",\"arcs\":[[-452,499,-239,-471]],\"id\":\"756\",\"properties\":{\"name\":\"Switzerland\"}},{\"type\":\"Polygon\",\"arcs\":[[-472,-245,500]],\"id\":\"442\",\"properties\":{\"name\":\"Luxembourg\"}},{\"type\":\"Polygon\",\"arcs\":[[-473,-501,-244,501,502]],\"id\":\"056\",\"properties\":{\"name\":\"Belgium\"}},{\"type\":\"Polygon\",\"arcs\":[[-474,-503,503]],\"id\":\"528\",\"properties\":{\"name\":\"Netherlands\"}},{\"type\":\"Polygon\",\"arcs\":[[504,505]],\"id\":\"620\",\"properties\":{\"name\":\"Portugal\"}},{\"type\":\"Polygon\",\"arcs\":[[-505,506,-242,507]],\"id\":\"724\",\"properties\":{\"name\":\"Spain\"}},{\"type\":\"Polygon\",\"arcs\":[[508,509]],\"id\":\"372\",\"properties\":{\"name\":\"Ireland\"}},{\"type\":\"Polygon\",\"arcs\":[[510]],\"id\":\"540\",\"properties\":{\"name\":\"New Caledonia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[511]],[[512]],[[513]],[[514]],[[515]]],\"id\":\"090\",\"properties\":{\"name\":\"Solomon Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[516]],[[517]]],\"id\":\"554\",\"properties\":{\"name\":\"New Zealand\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[518]],[[519]]],\"id\":\"036\",\"properties\":{\"name\":\"Australia\"}},{\"type\":\"Polygon\",\"arcs\":[[520]],\"id\":\"144\",\"properties\":{\"name\":\"Sri Lanka\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[521]],[[-61,-150,-393,-148,-391,522,-385,-379,-384,-401,-403,-399,-404,-397,-408,-410,-414,-415]]],\"id\":\"156\",\"properties\":{\"name\":\"China\"}},{\"type\":\"Polygon\",\"arcs\":[[523]],\"id\":\"158\",\"properties\":{\"name\":\"Taiwan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-451,524,525,-240,-500]],[[526]],[[527]]],\"id\":\"380\",\"properties\":{\"name\":\"Italy\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-476,528]],[[529]]],\"id\":\"208\",\"properties\":{\"name\":\"Denmark\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-510,530]],[[531]]],\"id\":\"826\",\"properties\":{\"name\":\"United Kingdom\"}},{\"type\":\"Polygon\",\"arcs\":[[532]],\"id\":\"352\",\"properties\":{\"name\":\"Iceland\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-152,533,-421,-429,534]],[[-419,-426]]],\"id\":\"031\",\"properties\":{\"name\":\"Azerbaijan\"}},{\"type\":\"Polygon\",\"arcs\":[[-153,-535,-428,-489,535]],\"id\":\"268\",\"properties\":{\"name\":\"Georgia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]]],\"id\":\"608\",\"properties\":{\"name\":\"Philippines\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-374,543]],[[-81,544,545,546]]],\"id\":\"458\",\"properties\":{\"name\":\"Malaysia\"}},{\"type\":\"Polygon\",\"arcs\":[[-546,547]],\"id\":\"096\",\"properties\":{\"name\":\"Brunei\"}},{\"type\":\"Polygon\",\"arcs\":[[-450,-459,-499,548,-525]],\"id\":\"705\",\"properties\":{\"name\":\"Slovenia\"}},{\"type\":\"Polygon\",\"arcs\":[[-160,549,-430,-171]],\"id\":\"246\",\"properties\":{\"name\":\"Finland\"}},{\"type\":\"Polygon\",\"arcs\":[[-442,-460,-455,550,-444]],\"id\":\"703\",\"properties\":{\"name\":\"Slovakia\"}},{\"type\":\"Polygon\",\"arcs\":[[-445,-551,-454,-470]],\"id\":\"203\",\"properties\":{\"name\":\"Czechia\"}},{\"type\":\"Polygon\",\"arcs\":[[-126,551,552,553]],\"id\":\"232\",\"properties\":{\"name\":\"Eritrea\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[554]],[[555]],[[556]]],\"id\":\"392\",\"properties\":{\"name\":\"Japan\"}},{\"type\":\"Polygon\",\"arcs\":[[-193,-97,-202]],\"id\":\"600\",\"properties\":{\"name\":\"Paraguay\"}},{\"type\":\"Polygon\",\"arcs\":[[-364,557,558]],\"id\":\"887\",\"properties\":{\"name\":\"Yemen\"}},{\"type\":\"Polygon\",\"arcs\":[[-346,-362,-356,559,-354,560,-352,-365,-559,561]],\"id\":\"682\",\"properties\":{\"name\":\"Saudi Arabia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]]],\"id\":\"010\",\"properties\":{\"name\":\"Antarctica\"}},{\"type\":\"Polygon\",\"arcs\":[[570,571]],\"properties\":{\"name\":\"N. Cyprus\"}},{\"type\":\"Polygon\",\"arcs\":[[-572,572]],\"id\":\"196\",\"properties\":{\"name\":\"Cyprus\"}},{\"type\":\"Polygon\",\"arcs\":[[-341,-15,573]],\"id\":\"504\",\"properties\":{\"name\":\"Morocco\"}},{\"type\":\"Polygon\",\"arcs\":[[-124,574,575,-329,576]],\"id\":\"818\",\"properties\":{\"name\":\"Egypt\"}},{\"type\":\"Polygon\",\"arcs\":[[-123,-132,-283,-343,-340,577,-575]],\"id\":\"434\",\"properties\":{\"name\":\"Libya\"}},{\"type\":\"Polygon\",\"arcs\":[[-114,-119,578,-127,-554,579,580]],\"id\":\"231\",\"properties\":{\"name\":\"Ethiopia\"}},{\"type\":\"Polygon\",\"arcs\":[[-553,581,582,-580]],\"id\":\"262\",\"properties\":{\"name\":\"Djibouti\"}},{\"type\":\"Polygon\",\"arcs\":[[-115,-581,-583,583]],\"properties\":{\"name\":\"Somaliland\"}},{\"type\":\"Polygon\",\"arcs\":[[-11,584,-110,585,-117]],\"id\":\"800\",\"properties\":{\"name\":\"Uganda\"}},{\"type\":\"Polygon\",\"arcs\":[[-10,-325,-111,-585]],\"id\":\"646\",\"properties\":{\"name\":\"Rwanda\"}},{\"type\":\"Polygon\",\"arcs\":[[-496,586,587]],\"id\":\"070\",\"properties\":{\"name\":\"Bosnia and Herz.\"}},{\"type\":\"Polygon\",\"arcs\":[[-481,-487,-494,588,589]],\"id\":\"807\",\"properties\":{\"name\":\"Macedonia\"}},{\"type\":\"Polygon\",\"arcs\":[[-457,-464,-482,-590,590,591,-587,-495]],\"id\":\"688\",\"properties\":{\"name\":\"Serbia\"}},{\"type\":\"Polygon\",\"arcs\":[[-492,592,-497,-588,-592,593]],\"id\":\"499\",\"properties\":{\"name\":\"Montenegro\"}},{\"type\":\"Polygon\",\"arcs\":[[-493,-594,-591,-589]],\"properties\":{\"name\":\"Kosovo\"}},{\"type\":\"Polygon\",\"arcs\":[[594]],\"id\":\"780\",\"properties\":{\"name\":\"Trinidad and Tobago\"}},{\"type\":\"Polygon\",\"arcs\":[[-109,-310,-128,-579,-118,-586]],\"id\":\"728\",\"properties\":{\"name\":\"S. Sudan\"}}]},\"land\":{\"type\":\"GeometryCollection\",\"geometries\":[{\"type\":\"MultiPolygon\",\"arcs\":[[[0]],[[1]],[[3,320,184,255,323,104,322,311,313,315,289,284,273,290,293,297,305,307,302,304,263,336,258,272,13,573,341,338,577,575,329,332,423,487,535,153,435,164,436,461,477,489,484,490,592,497,548,525,240,507,505,506,242,501,503,474,528,476,446,142,464,466,468,158,549,430,172,161,387,391,389,522,385,371,372,543,374,380,401,394,404,422,360,354,559,352,560,347,365,349,362,557,561,346,576,124,551,581,583,115,119],[421,416,64,150,533]],[[17,48,186,229,227,223,219,216,213,209,230,232,234,236,200,191,93,100,203,246,207,211,214,217,220,224,228,189,50,15,58]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[59]],[[70,75]],[[72]],[[73]],[[74]],[[77,177]],[[78]],[[546,79,544,547]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90,98]],[[133,134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[144]],[[145]],[[162]],[[165]],[[166]],[[167]],[[168]],[[169]],[[173]],[[174]],[[175]],[[176]],[[245]],[[247]],[[248]],[[249]],[[334]],[[366]],[[367]],[[482]],[[508,530]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[523]],[[526]],[[527]],[[529]],[[531]],[[532]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[554]],[[555]],[[556]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570,572]],[[594]]]}]}},\"arcs\":[[[99478,40237],[69,98],[96,-171],[-46,-308],[-172,-81],[-153,73],[-27,260],[107,203],[126,-74]],[[0,41087],[57,27],[-34,-284],[-23,-32],[99822,-145],[-177,-124],[-36,220],[139,121],[88,33],[163,184],[-99999,0]],[[59417,50018],[47,-65],[1007,-1203],[19,-343],[399,-590]],[[60889,47817],[-128,-728],[16,-335],[178,-216],[8,-153],[-76,-357],[16,-180],[-18,-282],[97,-370],[115,-583],[101,-129]],[[61198,44484],[-221,-342],[-303,-230],[-167,10],[-99,-177],[-193,-16],[-73,-74],[-334,166],[-209,-48]],[[59599,43773],[-77,804],[-95,275],[-55,164],[-273,110]],[[59099,45126],[-157,177],[-177,100],[-111,99],[-116,150]],[[58538,45652],[-150,745],[-161,330],[-55,343],[27,307],[-50,544]],[[58149,47921],[115,28],[101,214],[108,308],[69,124],[-3,192],[-60,134],[-16,233]],[[58463,49154],[80,74],[16,348],[-110,333]],[[58449,49909],[98,71],[304,-7],[566,45]],[[47592,66920],[1,-40],[-6,-114]],[[47587,66766],[-1,-895],[-911,31],[9,-1512],[-261,-53],[-68,-304],[53,-853],[-1088,4],[-60,-197]],[[45260,62987],[12,249]],[[45272,63236],[5,-1],[625,48],[33,213],[114,265],[92,816],[386,637],[131,745],[86,44],[91,460],[234,63],[100,-76],[126,0],[90,134],[172,19],[-7,317],[42,0]],[[15878,79530],[-38,1],[-537,581],[-199,255],[-503,244],[-155,523],[40,363],[-356,252],[-48,476],[-336,429],[-6,304]],[[13740,82958],[154,285],[-7,373],[-473,376],[-284,674],[-173,424],[-255,266],[-187,242],[-147,306],[-279,-192],[-270,-330],[-247,388],[-194,259],[-271,164],[-273,17],[1,3364],[2,2193]],[[10837,91767],[518,-142],[438,-285],[289,-54],[244,247],[336,184],[413,-72],[416,259],[455,148],[191,-245],[207,138],[62,278],[192,-63],[470,-530],[369,401],[38,-449],[341,97],[105,173],[337,-34],[424,-248],[650,-217],[383,-100],[272,38],[374,-300],[-390,-293],[502,-127],[750,70],[236,103],[296,-354],[302,299],[-283,251],[179,202],[338,27],[223,59],[224,-141],[279,-321],[310,47],[491,-266],[431,94],[405,-14],[-32,367],[247,103],[431,-200],[-2,-559],[177,471],[223,-16],[126,594],[-298,364],[-324,239],[22,653],[329,429],[366,-95],[281,-261],[378,-666],[-247,-290],[517,-120],[-1,-604],[371,463],[332,-380],[-83,-438],[269,-399],[290,427],[202,510],[16,649],[394,-46],[411,-87],[373,-293],[17,-293],[-207,-315],[196,-316],[-36,-288],[-544,-413],[-386,-91],[-287,178],[-83,-297],[-268,-498],[-81,-259],[-322,-399],[-397,-39],[-220,-250],[-18,-384],[-323,-74],[-340,-479],[-301,-665],[-108,-466],[-16,-686],[409,-99],[125,-553],[130,-448],[388,117],[517,-256],[277,-225],[199,-279],[348,-163],[294,-248],[459,-34],[302,-58],[-45,-511],[86,-594],[201,-661],[414,-561],[214,192],[150,607],[-145,934],[-196,311],[445,276],[314,415],[154,411],[-23,395],[-188,502],[-338,445],[328,619],[-121,535],[-93,922],[194,137],[476,-161],[286,-57],[230,155],[258,-200],[342,-343],[85,-229],[495,-45],[-8,-496],[92,-747],[254,-92],[201,-348],[402,328],[266,652],[184,274],[216,-527],[362,-754],[307,-709],[-112,-371],[370,-333],[250,-338],[442,-152],[179,-189],[110,-500],[216,-78],[112,-223],[20,-664],[-202,-222],[-199,-207],[-458,-210],[-349,-486],[-470,-96],[-594,125],[-417,4],[-287,-41],[-233,-424],[-354,-262],[-401,-782],[-320,-545],[236,97],[446,776],[583,493],[415,58],[246,-289],[-262,-397],[88,-637],[91,-446],[361,-295],[459,86],[278,664],[19,-429],[180,-214],[-344,-387],[-615,-351],[-276,-239],[-310,-426],[-211,44],[-11,500],[483,488],[-445,-19],[-309,-72]],[[31350,77248],[-181,334],[0,805],[-123,171],[-187,-100],[-92,155],[-212,-446],[-84,-460],[-99,-269],[-118,-91],[-89,-30],[-28,-146],[-512,0],[-422,-4],[-125,-109],[-294,-425],[-34,-46],[-89,-231],[-255,1],[-273,-3],[-125,-93],[44,-116],[25,-181],[-5,-60],[-363,-293],[-286,-93],[-323,-316],[-70,0],[-94,93],[-31,85],[6,61],[61,207],[131,325],[81,349],[-56,514],[-59,536],[-290,277],[35,105],[-41,73],[-76,0],[-56,93],[-14,140],[-54,-61],[-75,18],[17,59],[-65,58],[-27,155],[-216,189],[-224,197],[-272,229],[-261,214],[-248,-167],[-91,-6],[-342,154],[-225,-77],[-269,183],[-284,94],[-194,36],[-86,100],[-49,325],[-94,-3],[-1,-227],[-575,0],[-951,0],[-944,0],[-833,0],[-834,0],[-819,0],[-847,0],[-273,0],[-824,0],[-789,0]],[[26668,87478],[207,273],[381,-6],[-6,-114],[-325,-326],[-196,13],[-61,160]],[[27840,93593],[-306,313],[12,213],[133,39],[636,-63],[479,-325],[25,-163],[-296,17],[-299,13],[-304,-80],[-80,36]],[[27690,87261],[107,177],[114,-13],[70,-121],[-108,-310],[-123,50],[-73,176],[13,41]],[[23996,94879],[-151,-229],[-403,44],[-337,155],[148,266],[399,159],[243,-208],[101,-187]],[[23933,96380],[-126,-17],[-521,38],[-74,165],[559,-9],[195,-109],[-33,-68]],[[23124,97116],[332,-205],[-76,-214],[-411,-122],[-226,138],[-119,221],[-22,245],[360,-24],[162,-39]],[[25514,94532],[-449,73],[-738,190],[-96,325],[-34,293],[-279,258],[-574,72],[-322,183],[104,242],[573,-37],[308,-190],[547,1],[240,-194],[-64,-222],[319,-134],[177,-140],[374,-26],[406,-50],[441,128],[566,51],[451,-42],[298,-223],[62,-244],[-174,-157],[-414,-127],[-355,72],[-797,-91],[-570,-11]],[[19093,96754],[392,-92],[-93,-177],[-518,-170],[-411,191],[224,188],[406,60]],[[19177,97139],[361,-120],[-339,-115],[-461,1],[5,84],[285,177],[149,-27]],[[34555,80899],[-148,-372],[-184,-517],[181,199],[187,-126],[-98,-206],[247,-162],[128,144],[277,-182],[-86,-433],[194,101],[36,-313],[86,-367],[-117,-520],[-125,-22],[-183,111],[60,484],[-77,75],[-322,-513],[-166,21],[196,277],[-267,144],[-298,-35],[-539,18],[-43,175],[173,208],[-121,160],[234,356],[287,941],[172,336],[241,204],[129,-26],[-54,-160]],[[26699,89048],[304,-203],[318,-184],[25,-281],[204,46],[199,-196],[-247,-186],[-432,142],[-156,266],[-275,-314],[-396,-306],[-95,346],[-377,-57],[242,292],[35,465],[95,542],[201,-49],[51,-259],[143,91],[161,-155]],[[28119,93327],[263,235],[616,-299],[383,-282],[36,-258],[515,134],[290,-376],[670,-234],[242,-238],[263,-553],[-510,-275],[654,-386],[441,-130],[400,-543],[437,-39],[-87,-414],[-487,-687],[-342,253],[-437,568],[-359,-74],[-35,-338],[292,-344],[377,-272],[114,-157],[181,-584],[-96,-425],[-350,160],[-697,473],[393,-509],[289,-357],[45,-206],[-753,236],[-596,343],[-337,287],[97,167],[-414,304],[-405,286],[5,-171],[-803,-94],[-235,203],[183,435],[522,10],[571,76],[-92,211],[96,294],[360,576],[-77,261],[-107,203],[-425,286],[-563,201],[178,150],[-294,367],[-245,34],[-219,201],[-149,-175],[-503,-76],[-1011,132],[-588,174],[-450,89],[-231,207],[290,270],[-394,2],[-88,599],[213,528],[286,241],[717,158],[-204,-382],[219,-369],[256,477],[704,242],[477,-611],[-42,-387],[550,172]],[[23749,94380],[579,-20],[530,-144],[-415,-526],[-331,-115],[-298,-442],[-317,22],[-173,519],[4,294],[145,251],[276,161]],[[15873,95551],[472,442],[570,383],[426,-9],[381,87],[-38,-454],[-214,-205],[-259,-29],[-517,-252],[-444,-91],[-377,128]],[[13136,82508],[267,47],[-84,-671],[242,-475],[-111,1],[-167,270],[-103,272],[-140,184],[-51,260],[16,188],[131,-76]],[[20696,97433],[546,-81],[751,-215],[212,-281],[108,-247],[-453,66],[-457,192],[-619,21],[268,176],[-335,142],[-21,227]],[[15692,79240],[-140,-82],[-456,269],[-84,209],[-248,207],[-50,168],[-286,107],[-107,321],[24,137],[291,-129],[171,-89],[261,-63],[94,-204],[138,-280],[277,-244],[115,-327]],[[16239,94566],[397,-123],[709,-33],[270,-171],[298,-249],[-349,-149],[-681,-415],[-344,-414],[0,-257],[-731,-285],[-147,259],[-641,312],[119,250],[192,432],[241,388],[-272,362],[939,93]],[[20050,95391],[247,99],[291,-26],[49,-289],[-169,-281],[-940,-91],[-701,-256],[-423,-14],[-35,193],[577,261],[-1255,-70],[-389,106],[379,577],[262,165],[782,-199],[493,-350],[485,-45],[-397,565],[255,215],[286,-68],[94,-282],[109,-210]],[[20410,93755],[311,-239],[175,-575],[86,-417],[466,-293],[502,-279],[-31,-260],[-456,-48],[178,-227],[-94,-217],[-503,93],[-478,160],[-322,-36],[-522,-201],[-704,-88],[-494,-56],[-151,279],[-379,161],[-246,-66],[-343,468],[185,62],[429,101],[392,-26],[362,103],[-537,138],[-594,-47],[-394,12],[-146,217],[644,237],[-428,-9],[-485,156],[233,443],[193,235],[744,359],[284,-114],[-139,-277],[618,179],[386,-298],[314,302],[254,-194],[227,-580],[140,244],[-197,606],[244,86],[276,-94]],[[22100,93536],[-306,386],[329,286],[331,-124],[496,75],[72,-172],[-259,-283],[420,-254],[-50,-532],[-455,-229],[-268,50],[-192,225],[-690,456],[5,189],[567,-73]],[[20389,94064],[372,24],[211,-130],[-244,-390],[-434,413],[95,83]],[[22639,95907],[212,-273],[9,-303],[-127,-440],[-458,-60],[-298,94],[5,345],[-455,-46],[-18,457],[299,-18],[419,201],[390,-34],[22,77]],[[23329,98201],[192,180],[285,42],[-122,135],[646,30],[355,-315],[468,-127],[455,-112],[220,-390],[334,-190],[-381,-176],[-513,-445],[-492,-42],[-575,76],[-299,240],[4,215],[220,157],[-508,-4],[-306,196],[-176,268],[193,262]],[[24559,98965],[413,112],[324,19],[545,96],[409,220],[344,-30],[300,-166],[211,319],[367,95],[498,65],[849,24],[148,-63],[802,100],[601,-38],[602,-37],[742,-47],[597,-75],[508,-161],[-12,-157],[-678,-257],[-672,-119],[-251,-133],[605,3],[-656,-358],[-452,-167],[-476,-483],[-573,-98],[-177,-120],[-841,-64],[383,-74],[-192,-105],[230,-292],[-264,-202],[-429,-167],[-132,-232],[-388,-176],[39,-134],[475,23],[6,-144],[-742,-355],[-726,163],[-816,-91],[-414,71],[-525,31],[-35,284],[514,133],[-137,427],[170,41],[742,-255],[-379,379],[-450,113],[225,229],[492,141],[79,206],[-392,231],[-118,304],[759,-26],[220,-64],[433,216],[-625,68],[-972,-38],[-491,201],[-232,239],[-324,173],[-61,202]],[[29106,90427],[-180,-174],[-312,-30],[-69,289],[118,331],[255,82],[217,-163],[3,-253],[-32,-82]],[[23262,91636],[169,-226],[-173,-207],[-374,179],[-226,-65],[-380,266],[245,183],[194,256],[295,-168],[166,-106],[84,-112]],[[32078,80046],[96,49],[365,-148],[284,-247],[8,-108],[-135,-11],[-360,186],[-258,279]],[[32218,78370],[97,-288],[202,-79],[257,16],[-137,-242],[-102,-38],[-353,250],[-69,198],[105,183]],[[31350,77248],[48,-194],[-296,-286],[-286,-204],[-293,-175],[-147,-351],[-47,-133],[-3,-313],[92,-313],[115,-15],[-29,216],[83,-131],[-22,-169],[-188,-96],[-133,11],[-205,-103],[-121,-29],[-162,-29],[-231,-171],[408,111],[82,-112],[-389,-177],[-177,-1],[8,72],[-84,-164],[82,-27],[-60,-424],[-203,-455],[-20,152],[-61,30],[-91,148],[57,-318],[69,-105],[5,-223],[-89,-230],[-157,-472],[-25,24],[86,402],[-142,225],[-33,491],[-53,-255],[59,-375],[-183,93],[191,-191],[12,-562],[79,-41],[29,-204],[39,-591],[-176,-439],[-288,-175],[-182,-346],[-139,-38],[-141,-217],[-39,-199],[-305,-383],[-157,-281],[-131,-351],[-43,-419],[50,-411],[92,-505],[124,-418],[1,-256],[132,-685],[-9,-398],[-12,-230],[-69,-361],[-83,-75],[-137,72],[-44,259],[-105,136],[-148,508],[-129,452],[-42,231],[57,393],[-77,325],[-217,494],[-108,90],[-281,-268],[-49,30],[-135,275],[-174,147],[-314,-75],[-247,66],[-212,-41],[-114,-92],[50,-157],[-5,-240],[59,-117],[-53,-77],[-103,87],[-104,-112],[-202,18],[-207,312],[-242,-73],[-202,137],[-173,-42],[-234,-138],[-253,-438],[-276,-255],[-152,-282],[-63,-266],[-3,-407],[14,-284],[52,-201]],[[23016,65864],[-108,-18],[-197,130],[-217,184],[-78,277],[-61,414],[-164,337],[-96,346],[-139,404],[-196,236],[-227,-11],[-175,-467],[-230,177],[-144,178],[-69,325],[-92,309],[-165,260],[-142,186],[-102,210],[-481,0],[0,-244],[-221,0],[-552,-4],[-634,416],[-419,287],[26,116],[-353,-64],[-316,-46]],[[17464,69802],[-46,302],[-180,340],[-130,71],[-30,169],[-156,30],[-100,159],[-258,59],[-71,95],[-33,324],[-270,594],[-231,821],[10,137],[-123,195],[-215,495],[-38,482],[-148,323],[61,489],[-10,507],[-89,453],[109,557],[34,536],[33,536],[-50,792],[-88,506],[-80,274],[33,115],[402,-200],[148,-558],[69,156],[-45,484],[-94,485]],[[6833,62443],[49,-51],[45,-79],[71,-207],[-7,-33],[-108,-126],[-89,-92],[-41,-99],[-69,84],[8,165],[-46,216],[14,65],[48,97],[-19,116],[16,55],[21,-11],[107,-100]],[[6668,62848],[-23,-71],[-94,-43],[-47,125],[-32,48],[-3,37],[27,50],[99,-56],[73,-90]],[[6456,63091],[-9,-63],[-149,17],[21,72],[137,-26]],[[6104,63411],[23,-38],[80,-196],[-15,-34],[-19,8],[-97,21],[-35,133],[-11,24],[74,82]],[[5732,63705],[5,-138],[-33,-58],[-93,107],[14,43],[43,58],[64,-12]],[[3759,86256],[220,-54],[27,-226],[-171,-92],[-182,110],[-168,161],[274,101]],[[7436,84829],[185,-40],[117,-183],[-240,-281],[-277,-225],[-142,152],[-43,277],[252,210],[148,90]],[[13740,82958],[-153,223],[-245,188],[-78,515],[-358,478],[-150,558],[-267,38],[-441,15],[-326,170],[-574,613],[-266,112],[-486,211],[-385,-51],[-546,272],[-330,252],[-309,-125],[58,-411],[-154,-38],[-321,-123],[-245,-199],[-308,-126],[-39,348],[125,580],[295,182],[-76,148],[-354,-329],[-190,-394],[-400,-420],[203,-287],[-262,-424],[-299,-248],[-278,-180],[-69,-261],[-434,-305],[-87,-278],[-325,-252],[-191,45],[-259,-165],[-282,-201],[-231,-197],[-477,-169],[-43,99],[304,276],[271,182],[296,324],[345,66],[137,243],[385,353],[62,119],[205,208],[48,448],[141,349],[-320,-179],[-90,102],[-150,-215],[-181,300],[-75,-212],[-104,294],[-278,-236],[-170,0],[-24,352],[50,216],[-179,211],[-361,-113],[-235,277],[-190,142],[-1,334],[-214,252],[108,340],[226,330],[99,303],[225,43],[191,-94],[224,285],[201,-51],[212,183],[-52,270],[-155,106],[205,228],[-170,-7],[-295,-128],[-85,-131],[-219,131],[-392,-67],[-407,142],[-117,238],[-351,343],[390,247],[620,289],[228,0],[-38,-296],[586,23],[-225,366],[-342,225],[-197,296],[-267,252],[-381,187],[155,309],[493,19],[350,270],[66,287],[284,281],[271,68],[526,262],[256,-40],[427,315],[421,-124],[201,-266],[123,114],[469,-35],[-16,-136],[425,-101],[283,59],[585,-186],[534,-56],[214,-77],[370,96],[421,-177],[302,-83]],[[2297,88264],[171,-113],[173,61],[225,-156],[276,-79],[-23,-64],[-211,-125],[-211,128],[-106,107],[-245,-34],[-66,52],[17,223]],[[74266,79657],[-212,-393],[-230,-56],[-13,-592],[-155,-267],[-551,194],[-200,-1058],[-143,-131],[-550,-236],[250,-1026],[-190,-154],[22,-337]],[[72294,75601],[-171,87],[-140,212],[-412,62],[-461,16],[-100,-65],[-396,248],[-158,-122],[-43,-349],[-457,204],[-183,-84],[-62,-259]],[[69711,75551],[-159,-109],[-367,-412],[-121,-422],[-104,-4],[-76,280],[-353,19],[-57,484],[-135,4],[21,593],[-333,431],[-476,-46],[-326,-86],[-265,533],[-227,223],[-431,423],[-52,51],[-715,-349],[11,-2178]],[[65546,74986],[-142,-29],[-195,463],[-188,166],[-315,-123],[-123,-197]],[[64583,75266],[-15,144],[68,246],[-53,206],[-322,202],[-125,530],[-154,150],[-9,192],[270,-56],[11,432],[236,96],[243,-88],[50,576],[-50,365],[-278,-28],[-236,144],[-321,-260],[-259,-124]],[[63639,77993],[-142,96],[29,304],[-177,395],[-207,-17],[-235,401],[160,448],[-81,120],[222,649],[285,-342],[35,431],[573,643],[434,15],[612,-409],[329,-239],[295,249],[440,12],[356,-306],[80,175],[391,-25],[69,280],[-450,406],[267,288],[-52,161],[266,153],[-200,405],[127,202],[1039,205],[136,146],[695,218],[250,245],[499,-127],[88,-612],[290,144],[356,-202],[-23,-322],[267,33],[696,558],[-102,-185],[355,-457],[620,-1500],[148,309],[383,-340],[399,151],[154,-106],[133,-341],[194,-115],[119,-251],[358,79],[147,-361]],[[69711,75551],[83,-58],[-234,-382],[205,-223],[198,147],[329,-311],[-355,-425],[-212,58]],[[69725,74357],[-114,-15],[-40,164],[58,274],[-371,-137],[-89,-380],[-132,-326],[-232,28],[-72,-261],[204,-140],[60,-440],[-156,-598]],[[68841,72526],[-210,124],[-154,4]],[[68477,72654],[7,362],[-369,253],[-291,289],[-181,278],[-317,408],[-137,609],[-93,108],[-301,-27],[-106,121],[-30,471],[-374,312],[-234,-343],[-237,-204],[45,-297],[-313,-8]],[[89166,49043],[482,-407],[513,-338],[192,-302],[154,-297],[43,-349],[462,-365],[68,-313],[-256,-64],[62,-393],[248,-388],[180,-627],[159,20],[-11,-262],[215,-100],[-84,-111],[295,-249],[-30,-171],[-184,-41],[-69,153],[-238,66],[-281,89],[-216,377],[-158,325],[-144,517],[-362,259],[-235,-169],[-170,-195],[35,-436],[-218,-203],[-155,99],[-288,25]],[[89175,45193],[-4,1925],[-5,1925]],[[92399,48417],[106,-189],[33,-307],[-87,-157],[-52,348],[-65,229],[-126,193],[-158,252],[-200,174],[77,143],[150,-166],[94,-130],[117,-142],[111,-248]],[[92027,47129],[-152,-144],[-142,-138],[-148,1],[-228,171],[-158,165],[23,183],[249,-86],[152,46],[42,283],[40,15],[27,-314],[158,45],[78,202],[155,211],[-30,348],[166,11],[56,-97],[-5,-327],[-93,-361],[-146,-48],[-44,-166]],[[92988,47425],[84,-134],[135,-375],[131,-200],[-39,-166],[-78,-59],[-120,227],[-122,375],[-59,450],[38,57],[30,-175]],[[89175,45193],[-247,485],[-282,118],[-69,-168],[-352,-18],[118,481],[175,164],[-72,642],[-134,496],[-538,500],[-229,50],[-417,546],[-82,-287],[-107,-52],[-63,216],[-1,257],[-212,290],[299,213],[198,-11],[-23,156],[-407,1],[-110,352],[-248,109],[-117,293],[374,143],[142,192],[446,-242],[44,-220],[78,-955],[287,-354],[232,627],[319,356],[247,1],[238,-206],[206,-212],[298,-113]],[[84713,45326],[28,-117],[5,-179]],[[84746,45030],[-181,-441],[-238,-130],[-33,71],[25,201],[119,360],[275,235]],[[87280,46506],[-27,445],[49,212],[58,200],[63,-173],[0,-282],[-143,-402]],[[82744,53024],[-158,-533],[204,-560],[-48,-272],[312,-546],[-329,-70],[-93,-403],[12,-535],[-267,-404],[-7,-589],[-107,-903],[-41,210],[-316,-266],[-110,361],[-198,34],[-139,189],[-330,-212],[-101,285],[-182,-32],[-229,68],[-43,793],[-138,164],[-134,505],[-38,517],[32,548],[165,392]],[[80461,51765],[47,-395],[190,-334],[179,121],[177,-43],[162,299],[133,52],[263,-166],[226,126],[143,822],[107,205],[96,672],[319,0],[241,-100]],[[85936,48924],[305,-172],[101,-452],[-234,244],[-232,49],[-157,-39],[-192,21],[65,325],[344,24]],[[85242,48340],[-192,108],[-54,254],[281,29],[69,-195],[-104,-196]],[[85536,51864],[20,-322],[164,-52],[26,-241],[-15,-517],[-143,58],[-42,-359],[114,-312],[-78,-71],[-112,374],[-82,755],[56,472],[92,215]],[[84146,51097],[319,25],[275,429],[48,-132],[-223,-587],[-209,-113],[-267,115],[-463,-29],[-243,-85],[-39,-447],[248,-526],[150,268],[518,201],[-22,-272],[-121,86],[-121,-347],[-245,-229],[263,-757],[-50,-203],[249,-682],[-2,-388],[-148,-173],[-109,207],[134,484],[-273,-229],[-69,164],[36,228],[-200,346],[21,576],[-186,-179],[24,-689],[11,-846],[-176,-85],[-119,173],[79,544],[-43,570],[-117,4],[-86,405],[115,387],[40,469],[139,891],[58,243],[237,439],[217,-174],[350,-82]],[[83414,44519],[-368,414],[259,116],[146,-180],[97,-180],[-17,-159],[-117,-11]],[[83705,45536],[185,45],[249,216],[-41,-328],[-417,-168],[-370,73],[0,216],[220,123],[174,-177]],[[82849,45639],[172,48],[69,-251],[-321,-119],[-193,-79],[-149,5],[95,340],[153,5],[74,209],[100,-158]],[[80134,46785],[38,-210],[533,-59],[61,244],[515,-284],[101,-383],[417,-108],[341,-351],[-317,-225],[-306,238],[-251,-16],[-288,44],[-260,106],[-322,225],[-204,59],[-116,-74],[-506,243],[-48,254],[-255,44],[191,564],[337,-35],[224,-231],[115,-45]],[[78991,49939],[47,-412],[97,-330],[204,-52],[135,-374],[-70,-735],[-11,-914],[-308,-12],[-234,494],[-356,482],[-119,358],[-210,481],[-138,443],[-212,827],[-244,493],[-81,508],[-103,461],[-250,372],[-145,506],[-209,330],[-290,652],[-24,300],[178,-24],[430,-114],[246,-577],[215,-401],[153,-246],[263,-635],[283,-9],[233,-405],[161,-495],[211,-270],[-111,-482],[159,-205],[100,-15]],[[30935,19481],[106,-274],[139,-443],[361,-355],[389,-147],[-125,-296],[-264,-29],[-141,208]],[[31400,18145],[-168,16],[-297,1],[0,1319]],[[33993,32727],[-70,-473],[-74,-607],[3,-588],[-61,-132],[-21,-382]],[[33770,30545],[-19,-308],[353,-506],[-38,-408],[173,-257],[-14,-289],[-267,-757],[-412,-317],[-557,-123],[-305,59],[59,-352],[-57,-442],[51,-298],[-167,-208],[-284,-82],[-267,216],[-108,-155],[39,-587],[188,-178],[152,186],[82,-307],[-255,-183],[-223,-367],[-41,-595],[-66,-316],[-262,-2],[-218,-302],[-80,-443],[273,-433],[266,-119],[-96,-531],[-328,-333],[-180,-692],[-254,-234],[-113,-276],[89,-614],[185,-342],[-117,30]],[[30952,19680],[-257,93],[-672,79],[-115,344],[6,443],[-185,-38],[-98,214],[-24,626],[213,260],[88,375],[-33,299],[148,504],[101,782],[-30,347],[122,112],[-30,223],[-129,118],[92,248],[-126,224],[-65,682],[112,120],[-47,720],[65,605],[75,527],[166,215],[-84,576],[-1,543],[210,386],[-7,494],[159,576],[1,544],[-72,108],[-128,1020],[171,607],[-27,572],[100,537],[182,555],[196,367],[-83,232],[58,190],[-9,985],[302,291],[96,614],[-34,148]],[[31359,37147],[231,534],[364,-144],[163,-427],[109,475],[316,-24],[45,-127]],[[32587,37434],[511,-964],[227,-89],[339,-437],[286,-231],[40,-261],[-273,-898],[280,-160],[312,-91],[220,95],[252,453],[45,521]],[[34826,35372],[138,114],[139,-341],[-6,-472],[-234,-326],[-186,-241],[-314,-573],[-370,-806]],[[31400,18145],[-92,-239],[-238,-183],[-137,19],[-164,48],[-202,177],[-291,86],[-350,330],[-283,317],[-383,662],[229,-124],[390,-395],[369,-212],[143,271],[90,405],[256,244],[198,-70]],[[30669,40193],[136,-402],[37,-426],[146,-250],[-88,-572],[150,-663],[109,-814],[200,81]],[[30952,19680],[-247,4],[-134,-145],[-250,-213],[-45,-552],[-118,-14],[-313,192],[-318,412],[-346,338],[-87,374],[79,346],[-140,393],[-36,1007],[119,568],[293,457],[-422,172],[265,522],[94,982],[309,-208],[145,1224],[-186,157],[-87,-738],[-175,83],[87,845],[95,1095],[127,404],[-80,576],[-22,666],[117,19],[170,954],[192,945],[118,881],[-64,885],[83,487],[-34,730],[163,721],[50,1143],[89,1227],[87,1321],[-20,967],[-58,832]],[[30452,39739],[143,151],[74,303]],[[58538,45652],[-109,60],[-373,-99],[-75,-71],[-79,-377],[62,-261],[-49,-699],[-34,-593],[75,-105],[194,-230],[76,107],[23,-637],[-212,5],[-114,325],[-103,252],[-213,82],[-62,310],[-170,-187],[-222,83],[-93,268],[-176,55],[-131,-15],[-15,184],[-96,15]],[[56642,44124],[-127,35],[-172,-89],[-121,15],[-68,-54],[15,703],[-93,219],[-21,363],[41,356],[-56,228],[-5,372],[-337,-5],[24,213],[-142,-2],[-15,-103],[-172,-23],[-69,-344],[-42,-148],[-154,83],[-91,-83],[-184,-47],[-106,309],[-64,191],[-80,354],[-68,440],[-820,8],[-98,-71],[-80,11],[-115,-79]],[[53422,46976],[-39,183]],[[53383,47159],[71,62],[9,258],[45,152],[101,124]],[[53609,47755],[73,-60],[95,226],[152,-6],[17,-167],[104,-105],[164,370],[161,289],[71,189],[-10,486],[121,574],[127,304],[183,285],[32,189],[7,216],[45,205],[-14,335],[34,524],[55,368],[83,316],[16,357]],[[55125,52650],[25,412],[108,300],[149,190],[229,-200],[177,-218],[203,-59],[207,-115],[83,357],[38,46],[127,-60],[309,295],[110,-125],[90,18],[41,143],[104,51],[209,-62],[178,-14],[91,63]],[[57603,53672],[169,-488],[124,-71],[75,99],[128,-39],[155,125],[66,-252],[244,-393]],[[58564,52653],[-16,-691],[111,-80],[-89,-210],[-107,-157],[-106,-308],[-59,-274],[-15,-475],[-65,-225],[-2,-446]],[[58216,49787],[-80,-165],[-10,-351],[-38,-46],[-26,-323]],[[58062,48902],[70,-268],[17,-713]],[[61551,49585],[-165,488],[-3,2152],[243,670]],[[61626,52895],[76,186],[178,11],[247,417],[362,26],[785,1773]],[[63274,55308],[194,493],[125,363],[0,308],[0,596],[1,244],[2,9]],[[63596,57321],[89,12],[128,88],[147,59],[132,202],[105,2],[6,-163],[-25,-344],[1,-310],[-59,-214],[-78,-639],[-134,-659],[-172,-755],[-238,-866],[-237,-661],[-327,-806],[-278,-479],[-415,-586],[-259,-450],[-304,-715],[-64,-312],[-63,-140]],[[59417,50018],[-3,627],[80,239],[137,391],[101,431],[-123,678],[-32,296],[-132,411]],[[59445,53091],[171,352],[188,390]],[[59804,53833],[145,-99],[0,-332],[95,-194],[193,0],[352,-502],[87,-6],[65,16],[62,-68],[185,-47],[82,247],[254,247],[112,-200],[190,0]],[[61551,49585],[-195,-236],[-68,-246],[-104,-44],[-40,-416],[-89,-238],[-54,-393],[-112,-195]],[[56824,55442],[-212,258],[-96,170],[-18,184],[45,246],[-1,241],[-160,369],[-31,253]],[[56351,57163],[3,143],[-102,174],[-3,343],[-58,228],[-98,-34],[28,217],[72,246],[-32,245],[92,181],[-58,138],[73,365],[127,435],[240,-41],[-14,2345]],[[56621,62148],[3,248],[320,2],[0,1180]],[[56944,63578],[1117,0],[1077,0],[1102,0]],[[60240,63578],[90,-580],[-61,-107],[40,-608],[102,-706],[106,-145],[152,-219]],[[60669,61213],[-141,-337],[-204,-97],[-88,-181],[-27,-393],[-120,-868],[30,-236]],[[60119,59101],[-45,-508],[-112,-582],[-168,-293],[-119,-451],[-28,-241],[-132,-166],[-82,-618],[4,-531]],[[59437,55711],[-3,460],[-39,12],[5,294],[-33,203],[-143,233],[-34,426],[34,436],[-129,41],[-19,-132],[-167,-30],[67,-173],[23,-355],[-152,-324],[-138,-426],[-144,-61],[-233,345],[-105,-122],[-29,-172],[-143,-112],[-9,-122],[-277,0],[-38,122],[-200,20],[-100,-101],[-77,51],[-143,344],[-48,163],[-200,-81],[-76,-274],[-72,-528],[-95,-111],[-85,-65],[189,-230]],[[56351,57163],[-176,-101],[-141,-239],[-201,-645],[-261,-273],[-269,36],[-78,-54],[28,-208],[-145,-207],[-118,-230],[-350,-226],[-69,134],[-46,11],[-52,-152],[-229,-44]],[[54244,54965],[43,160],[-87,407],[-39,245],[-121,100],[-164,345],[60,279],[127,-60],[78,42],[155,-6],[-151,537],[10,393],[-18,392],[-111,378]],[[54026,58177],[28,279],[-178,13],[0,380],[-115,219],[120,778],[354,557],[15,769],[107,1199],[60,254],[-116,203],[-4,188],[-104,153],[-68,919]],[[54125,64088],[280,323],[1108,-1132],[1108,-1131]],[[30080,62227],[24,-321],[-21,-228],[-68,-99],[71,-177],[-5,-161]],[[30081,61241],[-185,100],[-131,-41],[-169,43],[-130,-110],[-149,184],[24,190],[256,-82],[210,-47],[100,131],[-127,256],[2,226],[-175,92],[62,163],[170,-26],[241,-93]],[[30080,62227],[34,101],[217,-3],[165,-152],[73,15],[50,-209],[152,11],[-9,-176],[124,-21],[136,-217],[-103,-240],[-132,128],[-127,-25],[-92,28],[-50,-107],[-106,-37],[-43,144],[-92,-85],[-111,-405],[-71,94],[-14,170]],[[76049,98451],[600,133],[540,-297],[640,-572],[-69,-531],[-606,-73],[-773,170],[-462,226],[-213,423],[-379,117],[722,404]],[[78565,97421],[704,-336],[-82,-240],[-1566,-228],[507,776],[229,66],[208,-38]],[[88563,95563],[734,-26],[1004,-313],[-219,-439],[-1023,16],[-461,-139],[-550,384],[149,406],[366,111]],[[91172,95096],[697,-155],[-321,-234],[-444,53],[-516,233],[66,192],[518,-89]],[[88850,93928],[263,234],[348,54],[394,-226],[34,-155],[-421,-4],[-569,66],[-49,31]],[[62457,98194],[542,107],[422,8],[57,-160],[159,142],[262,97],[412,-129],[-107,-90],[-373,-78],[-250,-45],[-39,-97],[-324,-98],[-301,140],[158,185],[-618,18]],[[56314,82678],[-511,-9],[-342,67]],[[55461,82736],[63,260],[383,191]],[[55907,83187],[291,-103],[123,-94],[-30,-162],[23,-150]],[[64863,94153],[665,518],[-75,268],[621,312],[917,380],[925,110],[475,220],[541,76],[193,-233],[-187,-184],[-984,-293],[-848,-282],[-863,-562],[-414,-577],[-435,-568],[56,-491],[531,-484],[-164,-52],[-907,77],[-74,262],[-503,158],[-40,320],[284,126],[-10,323],[551,503],[-255,73]],[[89698,82309],[96,-569],[-7,-581],[114,-597],[280,-1046],[-411,195],[-171,-854],[271,-605],[-8,-413],[-211,356],[-182,-457],[-51,496],[31,575],[-32,638],[64,446],[13,790],[-163,581],[24,808],[257,271],[-110,274],[123,83],[73,-391]],[[86327,75524],[-39,104]],[[86288,75628],[-2,300],[142,16],[40,698],[-73,506],[238,208],[338,-104],[186,575],[96,647],[107,216],[146,532],[-459,-175],[-240,-233],[-423,1],[-112,555],[-329,420],[-483,189],[-103,579],[-97,363],[-104,254],[-172,596],[-244,217],[-415,176],[-369,-16],[-345,-106],[-229,-294],[152,-141],[4,-326],[-155,-189],[-251,-627],[3,-260],[-392,-373],[-333,223]],[[82410,80055],[-331,-49],[-146,198],[-166,63],[-407,-416],[-366,-98],[-255,-146],[-350,96],[-258,-6],[-168,302],[-272,284],[-279,78],[-351,-78],[-263,-109],[-394,248],[-53,443],[-327,152],[-252,69],[-311,244],[-288,-612],[113,-348],[-270,-411],[-402,148],[-277,22],[-186,276],[-289,8],[-242,182],[-423,-278],[-530,-509],[-292,-102]],[[74375,79706],[-109,-49]],[[63639,77993],[-127,-350],[-269,-97],[-276,-610],[252,-561],[-27,-398],[303,-696]],[[63495,75281],[-166,-238],[-48,-150],[-122,40],[-191,359],[-78,20]],[[62890,75312],[-175,137],[-85,242],[-259,124],[-169,-93],[-48,110],[-378,283],[-409,96],[-235,101],[-34,-70]],[[61098,76242],[-354,499],[-317,223],[-240,347],[202,95],[231,494],[-156,234],[410,241],[-8,129],[-249,-95]],[[60617,78409],[9,262],[143,165],[269,43],[44,197],[-62,326],[113,310],[-3,173],[-410,192],[-162,-6],[-172,277],[-213,-94],[-352,208],[6,116],[-99,256],[-222,29],[-23,183],[70,120],[-178,334],[-288,-57],[-84,30],[-70,-134],[-104,23]],[[58829,81362],[-68,379],[-66,196],[54,55],[224,-20],[108,129],[-80,157],[-187,104],[16,107],[-113,108],[-174,387],[60,159],[-27,277],[-272,141],[-146,-70],[-39,146],[-293,149]],[[57826,83766],[-89,348],[-24,287],[-134,136]],[[57579,84537],[120,187],[-83,551],[198,341],[-42,103]],[[57772,85719],[316,327],[-291,280]],[[57797,86326],[594,755],[258,341],[105,301],[-411,405],[113,385],[-250,440],[187,506],[-323,673],[256,445],[-425,394],[41,414]],[[57942,91385],[224,54],[473,237]],[[58639,91676],[286,206],[456,-358],[761,-140],[1050,-668],[213,-281],[18,-393],[-308,-311],[-454,-157],[-1240,449],[-204,-75],[453,-433],[18,-274],[18,-604],[358,-180],[217,-153],[36,286],[-168,254],[177,224],[672,-368],[233,144],[-186,433],[647,578],[256,-34],[260,-206],[161,406],[-231,352],[136,353],[-204,367],[777,-190],[158,-331],[-351,-73],[1,-328],[219,-203],[429,128],[68,377],[580,282],[970,507],[209,-29],[-273,-359],[344,-61],[199,202],[521,16],[412,245],[317,-356],[315,391],[-291,343],[145,195],[820,-179],[385,-185],[1006,-675],[186,309],[-282,313],[-8,125],[-335,58],[92,280],[-149,461],[-8,189],[512,535],[183,537],[206,116],[736,-156],[57,-328],[-263,-479],[173,-189],[89,-413],[-63,-809],[307,-362],[-120,-395],[-544,-839],[318,-87],[110,213],[306,151],[74,293],[240,281],[-162,336],[130,390],[-304,49],[-67,328],[222,593],[-361,482],[497,398],[-64,421],[139,13],[145,-328],[-109,-570],[297,-108],[-127,426],[465,233],[577,31],[513,-337],[-247,492],[-28,630],[483,119],[669,-26],[602,77],[-226,309],[321,388],[319,16],[540,293],[734,79],[93,162],[729,55],[227,-133],[624,314],[510,-10],[77,255],[265,252],[656,242],[476,-191],[-378,-146],[629,-90],[75,-292],[254,143],[812,-7],[626,-289],[223,-221],[-69,-307],[-307,-175],[-730,-328],[-209,-175],[345,-83],[410,-149],[251,112],[141,-379],[122,153],[444,93],[892,-97],[67,-276],[1162,-88],[15,451],[590,-104],[443,4],[449,-312],[128,-378],[-165,-247],[349,-465],[437,-240],[268,620],[446,-266],[473,159],[538,-182],[204,166],[455,-83],[-201,549],[367,256],[2509,-384],[236,-351],[727,-451],[1122,112],[553,-98],[231,-244],[-33,-432],[342,-168],[372,121],[492,15],[525,-116],[526,66],[484,-526],[344,189],[-224,378],[123,262],[886,-165],[578,36],[799,-282],[-99610,-258],[681,-451],[728,-588],[-24,-367],[187,-147],[-64,429],[754,-88],[544,-553],[-276,-257],[-455,-61],[-7,-578],[-111,-122],[-260,17],[-212,206],[-369,172],[-62,257],[-283,96],[-315,-76],[-151,207],[60,219],[-333,-140],[126,-278],[-158,-251],[99997,-3],[-357,-260],[-360,44],[250,-315],[166,-487],[128,-159],[32,-244],[-71,-157],[-518,129],[-777,-445],[-247,-69],[-425,-415],[-403,-362],[-102,-269],[-397,409],[-724,-464],[-126,219],[-268,-253],[-371,81],[-90,-388],[-333,-572],[10,-239],[316,-132],[-37,-860],[-258,-22],[-119,-494],[116,-255],[-486,-302],[-96,-674],[-415,-144],[-83,-600],[-400,-551],[-103,407],[-119,862],[-155,1313],[134,819],[234,353],[14,276],[432,132],[496,744],[479,608],[499,471],[223,833],[-337,-50],[-167,-487],[-705,-649],[-227,727],[-717,-201],[-696,-990],[230,-362],[-620,-154],[-430,-61],[20,427],[-431,90],[-344,-291],[-850,102],[-914,-175],[-899,-1153],[-1065,-1394],[438,-74],[136,-370],[270,-132],[178,295],[305,-38],[401,-650],[9,-503],[-217,-590],[-23,-705],[-126,-945],[-418,-855],[-94,-409],[-377,-688],[-374,-682],[-179,-349],[-370,-346],[-175,-8],[-175,287],[-373,-432],[-43,-197]],[[0,92833],[36,24],[235,-1],[402,-169],[-24,-81],[-286,-141],[-363,-36],[99694,-30],[-49,187],[-99645,247]],[[59287,77741],[73,146],[198,-127],[89,-23],[36,-117],[42,-18]],[[59725,77602],[2,-51],[136,-142],[284,35],[-55,-210],[-304,-103],[-377,-342],[-154,121],[61,277],[-304,173],[50,113],[265,197],[-42,71]],[[28061,66408],[130,47],[184,-18],[8,-153],[-303,-95],[-19,219]],[[28391,66555],[220,-265],[-48,-420],[-51,75],[4,309],[-124,234],[-1,67]],[[28280,65474],[84,-23],[97,-491],[1,-343],[-68,-29],[-70,340],[-104,171],[60,375]],[[33000,19946],[333,354],[236,-148],[167,237],[222,-266],[-83,-207],[-375,-177],[-125,207],[-236,-266],[-139,266]],[[54206,97653],[105,202],[408,20],[350,-206],[915,-440],[-699,-233],[-155,-435],[-243,-111],[-132,-490],[-335,-23],[-598,361],[252,210],[-416,170],[-541,499],[-216,463],[757,212],[152,-207],[396,8]],[[57942,91385],[117,414],[-356,235],[-431,-200],[-137,-433],[-265,-262],[-298,143],[-362,-29],[-309,312],[-167,-156]],[[55734,91409],[-172,-24],[-41,-389],[-523,95],[-74,-329],[-267,2],[-183,-421],[-278,-655],[-431,-831],[101,-202],[-97,-234],[-275,10],[-180,-554],[17,-784],[177,-300],[-92,-694],[-231,-405],[-122,-341]],[[53063,85353],[-187,363],[-548,-684],[-371,-138],[-384,301],[-99,635],[-88,1363],[256,381],[733,496],[549,609],[508,824],[668,1141],[465,444],[763,741],[610,259],[457,-31],[423,489],[506,-26],[499,118],[869,-433],[-358,-158],[305,-371]],[[57613,97879],[-412,-318],[-806,-70],[-819,98],[-50,163],[-398,11],[-304,271],[858,165],[403,-142],[281,177],[702,-148],[545,-207]],[[56867,96577],[-620,-241],[-490,137],[191,152],[-167,189],[575,119],[110,-222],[401,-134]],[[37010,99398],[932,353],[975,-27],[354,218],[982,57],[2219,-74],[1737,-469],[-513,-227],[-1062,-26],[-1496,-58],[140,-105],[984,65],[836,-204],[540,181],[231,-212],[-305,-344],[707,220],[1348,229],[833,-114],[156,-253],[-1132,-420],[-157,-136],[-888,-102],[643,-28],[-324,-431],[-224,-383],[9,-658],[333,-386],[-434,-24],[-457,-187],[513,-313],[65,-502],[-297,-55],[360,-508],[-617,-42],[322,-241],[-91,-208],[-391,-91],[-388,-2],[348,-400],[4,-263],[-549,244],[-143,-158],[375,-148],[364,-361],[105,-476],[-495,-114],[-214,228],[-344,340],[95,-401],[-322,-311],[732,-25],[383,-32],[-745,-515],[-755,-466],[-813,-204],[-306,-2],[-288,-228],[-386,-624],[-597,-414],[-192,-24],[-370,-145],[-399,-138],[-238,-365],[-4,-415],[-141,-388],[-453,-472],[112,-462],[-125,-488],[-142,-577],[-391,-36],[-410,482],[-556,3],[-269,324],[-186,577],[-481,735],[-141,385],[-38,530],[-384,546],[100,435],[-186,208],[275,691],[418,220],[110,247],[58,461],[-318,-209],[-151,-88],[-249,-84],[-341,193],[-19,401],[109,314],[258,9],[567,-157],[-478,375],[-249,202],[-276,-83],[-232,147],[310,550],[-169,220],[-220,409],[-335,626],[-353,230],[3,247],[-745,346],[-590,43],[-743,-24],[-677,-44],[-323,188],[-482,372],[729,186],[559,31],[-1188,154],[-627,241],[39,229],[1051,285],[1018,284],[107,214],[-750,213],[243,235],[961,413],[404,63],[-115,265],[658,156],[854,93],[853,5],[303,-184],[737,325],[663,-221],[390,-46],[577,-192],[-660,318],[38,253]],[[69148,21851],[179,-186],[263,-74],[9,-112],[-77,-269],[-427,-38],[-7,314],[41,244],[19,121]],[[84713,45326],[32,139],[239,133],[194,20],[87,74],[105,-74],[-102,-160],[-289,-258],[-233,-170]],[[54540,33696],[133,292],[109,-162],[47,-252],[125,-43],[175,-112],[149,43],[248,302],[0,2182]],[[55526,35946],[75,-88],[165,-562],[-26,-360],[62,-207],[199,60],[139,264],[132,177],[68,283],[135,137],[117,-71],[133,-166],[226,-29],[178,138],[28,184],[48,283],[152,47],[83,222],[93,393],[249,442],[393,435]],[[58175,37528],[113,-7],[134,-100],[94,71],[148,-59]],[[58664,37433],[133,-832],[72,-419],[-49,-659],[23,-212]],[[58843,35311],[-140,108],[-80,-42],[-26,-172],[-76,-222],[2,-204],[166,-320],[163,63],[56,263]],[[58908,34785],[211,-5]],[[59119,34780],[-70,-430],[-32,-491],[-72,-267],[-190,-298],[-54,-86],[-118,-300],[-77,-303],[-158,-424],[-314,-609],[-196,-355],[-210,-269],[-290,-229],[-141,-31],[-36,-164],[-169,88],[-138,-113],[-301,114],[-168,-72],[-115,31],[-286,-233],[-238,-94],[-171,-223],[-127,-14],[-117,210],[-94,11],[-120,264],[-13,-82],[-37,159],[2,346],[-90,396],[89,108],[-7,453],[-182,553],[-139,501],[-1,1],[-199,768]],[[58049,33472],[-121,182],[-130,-120],[-151,-232],[-148,-374],[209,-454],[99,59],[51,188],[155,93],[47,192],[85,288],[-96,178]],[[23016,65864],[-107,-518],[-49,-426],[-20,-791],[-27,-289],[48,-322],[86,-288],[56,-458],[184,-440],[65,-337],[109,-291],[295,-157],[114,-247],[244,165],[212,60],[208,106],[175,101],[176,241],[67,345],[22,496],[48,173],[188,155],[294,137],[246,-21],[169,50],[66,-125],[-9,-285],[-149,-351],[-66,-360],[51,-103],[-42,-255],[-69,-461],[-71,152],[-58,-10]],[[25472,61510],[-53,-8],[-99,-357],[-51,70],[-33,-27],[2,-87]],[[25238,61101],[-257,7],[-259,-1],[-1,-333],[-125,-1],[103,-198],[103,-136],[31,-128],[45,-36],[-7,-201],[-357,-2],[-133,-481],[39,-111],[-32,-138],[-7,-172]],[[24381,59170],[-314,636],[-144,191],[-226,155],[-156,-43],[-223,-223],[-140,-58],[-196,156],[-208,112],[-260,271],[-208,83],[-314,275],[-233,282],[-70,158],[-155,35],[-284,187],[-116,270],[-299,335],[-139,373],[-66,288],[93,57],[-29,169],[64,153],[1,204],[-93,266],[-25,235],[-94,298],[-244,587],[-280,462],[-135,368],[-238,241],[-51,145],[42,365],[-142,138],[-164,287],[-69,412],[-149,48],[-162,311],[-130,288],[-12,184],[-149,446],[-99,452],[5,227],[-201,234],[-93,-25],[-159,163],[-44,-240],[46,-284],[27,-444],[95,-243],[206,-407],[46,-139],[42,-42],[37,-203],[49,8],[56,-381],[85,-150],[59,-210],[174,-300],[92,-550],[83,-259],[77,-277],[15,-311],[134,-20],[112,-268],[100,-264],[-6,-106],[-117,-217],[-49,3],[-74,359],[-181,337],[-201,286],[-142,150],[9,432],[-42,320],[-132,183],[-191,264],[-37,-76],[-70,154],[-171,143],[-164,343],[20,44],[115,-33],[103,221],[10,266],[-214,422],[-163,163],[-102,369],[-103,388],[-129,472],[-113,531]],[[33993,32727],[180,63],[279,-457],[103,18],[286,-379],[218,-327],[160,-402],[-122,-280],[77,-334]],[[35174,30629],[-121,-372],[-313,-328],[-205,118],[-151,-63],[-256,253],[-189,-19],[-169,327]],[[34826,35372],[54,341],[38,350],[0,325],[-100,107],[-104,-96],[-103,26],[-33,228],[-26,541],[-52,177],[-187,160],[-114,-116],[-293,113],[18,802],[-82,329]],[[33842,38659],[87,122],[-27,337],[77,259],[49,465],[-66,367],[-151,166],[-30,233],[41,342],[-533,24],[-107,688],[81,10],[-3,255],[-55,172],[-12,342],[-161,175],[-175,-6],[-115,172],[-188,117],[-109,220],[-311,98],[-302,529],[23,396],[-34,227],[29,443],[-363,-100],[-147,-222],[-243,-239],[-62,-179],[-143,-13],[-206,50]],[[30686,44109],[-157,-102],[-126,68],[18,898],[-228,-348],[-245,15],[-105,315],[-184,34],[59,254],[-155,359],[-115,532],[73,108],[0,250],[168,171],[-28,319],[71,206],[20,275],[318,402],[227,114],[37,89],[251,-28]],[[30585,48040],[125,1620],[6,256],[-43,339],[-123,215],[1,430],[156,97],[56,-61],[9,226],[-162,61],[-4,370],[541,-13],[92,203],[77,-187],[55,-349],[52,73]],[[31423,51320],[153,-312],[216,38],[54,181],[206,138],[115,97],[32,250],[198,168],[-15,124],[-235,51],[-39,372],[12,396],[-125,153],[52,55],[206,-76],[221,-148],[80,140],[200,92],[310,221],[102,225],[-37,167]],[[33129,53652],[145,26],[64,-136],[-36,-259],[96,-90],[63,-274],[-77,-209],[-44,-502],[71,-299],[20,-274],[171,-277],[137,-29],[30,116],[88,25],[126,104],[90,157],[154,-50],[67,21]],[[34294,51702],[151,-48],[25,120],[-46,118],[28,171],[112,-53],[131,61],[159,-125]],[[34854,51946],[121,-122],[86,160],[62,-25],[38,-166],[133,42],[107,224],[85,436],[164,540]],[[35650,53035],[95,28],[69,-327],[155,-1033],[149,-97],[7,-408],[-208,-487],[86,-178],[491,-92],[10,-593],[211,388],[349,-212],[462,-361],[135,-346],[-45,-327],[323,182],[540,-313],[415,23],[411,-489],[355,-662],[214,-170],[237,-24],[101,-186],[94,-752],[46,-358],[-110,-977],[-142,-385],[-391,-822],[-177,-668],[-206,-513],[-69,-11],[-78,-435],[20,-1107],[-77,-910],[-30,-390],[-88,-233],[-49,-790],[-282,-771],[-47,-610],[-225,-256],[-65,-355],[-302,2],[-437,-227],[-195,-263],[-311,-173],[-327,-470],[-235,-586],[-41,-441],[46,-326],[-51,-597],[-63,-289],[-195,-325],[-308,-1040],[-244,-468],[-189,-277],[-127,-562],[-183,-337]],[[33842,38659],[-4,182],[-259,302],[-258,9],[-484,-172],[-133,-520],[-7,-318],[-110,-708]],[[30669,40193],[175,638],[-119,496],[63,199],[-49,219],[108,295],[6,503],[13,415],[60,200],[-240,951]],[[30452,39739],[-279,340],[-24,242],[-551,593],[-498,646],[-214,365],[-115,488],[46,170],[-236,775],[-274,1090],[-262,1177],[-114,269],[-87,435],[-216,386],[-198,239],[90,264],[-134,563],[86,414],[221,373]],[[27693,48568],[33,-246],[-79,-141],[8,-216],[114,47],[113,-64],[116,-298],[157,243],[53,398],[170,514],[334,233],[303,619],[86,384],[-38,449]],[[29063,50490],[74,56],[184,-280],[89,-279],[129,-152],[163,-620],[207,-74],[153,157],[101,-103],[166,51],[213,-276],[-179,-602],[83,-14],[139,-314]],[[29063,50490],[-119,140],[-137,195],[-79,-94],[-235,82],[-68,255],[-52,-10],[-278,338]],[[28095,51396],[-37,183],[103,44],[-12,296],[65,214],[138,40],[117,371],[106,310],[-102,141],[52,343],[-62,540],[59,155],[-44,500],[-112,315]],[[28366,54848],[36,287],[89,-43],[52,176],[-64,348],[34,86]],[[28513,55702],[143,-18],[209,412],[114,63],[3,195],[51,500],[159,274],[175,11],[22,123],[218,-49],[218,298],[109,132],[134,285],[98,-36],[73,-156],[-54,-199]],[[30185,57537],[-178,-99],[-71,-295],[-107,-169],[-81,-220],[-34,-422],[-77,-345],[144,-40],[35,-271],[62,-130],[21,-238],[-33,-219],[10,-123],[69,-49],[66,-207],[357,57],[161,-75],[196,-508],[112,63],[200,-32],[158,68],[99,-102],[-50,-318],[-62,-199],[-22,-423],[56,-393],[79,-175],[9,-133],[-140,-294],[100,-130],[74,-207],[85,-589]],[[28366,54848],[-93,170],[-59,319],[68,158],[-70,40],[-52,196],[-138,164],[-122,-38],[-56,-205],[-112,-149],[-61,-20],[-27,-123],[132,-321],[-75,-76],[-40,-87],[-130,-30],[-48,353],[-36,-101],[-92,35],[-56,238],[-114,39],[-72,69],[-119,-1],[-8,-128],[-32,89]],[[26954,55439],[14,117],[23,120],[-10,107],[41,70],[-58,88],[-1,238],[107,53]],[[27070,56232],[100,-212],[-6,-126],[111,-26],[26,48],[77,-145],[136,42],[119,150],[168,119],[95,176],[153,-34],[-10,-58],[155,-21],[124,-102],[90,-177],[105,-164]],[[26954,55439],[-151,131],[-56,124],[32,103],[-11,130],[-77,142],[-109,116],[-95,76],[-19,173],[-73,105],[18,-172],[-55,-141],[-64,164],[-89,58],[-38,120],[2,179],[36,187],[-78,83],[64,114]],[[26191,57131],[42,76],[183,-156],[63,77],[89,-50],[46,-121],[82,-40],[66,126]],[[26762,57043],[70,-321],[108,-238],[130,-252]],[[26191,57131],[-96,186],[-130,238],[-61,200],[-117,185],[-140,267],[31,91],[46,-88],[21,41]],[[25745,58251],[86,25],[35,135],[41,5],[-6,290],[65,14],[58,-4],[60,158],[82,-120],[29,74],[51,70],[97,163],[4,121],[27,-5],[36,141],[29,17],[47,-90],[56,-27],[61,76],[70,0],[97,77],[38,81],[95,-12]],[[26903,59440],[-24,-57],[-14,-132],[29,-216],[-64,-202],[-30,-237],[-9,-261],[15,-152],[7,-266],[-43,-58],[-26,-253],[19,-156],[-56,-151],[12,-159],[43,-97]],[[25745,58251],[-48,185],[-84,51]],[[25613,58487],[19,237],[-38,64],[-57,42],[-122,-70],[-10,79],[-84,95],[-60,118],[-82,50]],[[25179,59102],[58,150],[-22,116],[20,113],[131,166],[127,225]],[[25493,59872],[29,-23],[61,104],[79,8],[26,-48],[43,29],[129,-53],[128,15],[90,66],[32,66],[89,-31],[66,-40],[73,14],[55,51],[127,-82],[44,-13],[85,-110],[80,-132],[101,-91],[73,-162]],[[25613,58487],[-31,-139],[-161,9],[-100,57],[-115,117],[-154,37],[-79,127]],[[24973,58695],[9,86],[95,149],[52,66],[-15,69],[65,37]],[[25238,61101],[-2,-468],[-22,-667],[83,0]],[[25297,59966],[90,-107],[24,88],[82,-75]],[[24973,58695],[-142,103],[-174,11],[-127,117],[-149,244]],[[25472,61510],[1,-87],[53,-3],[-5,-160],[-45,-256],[24,-91],[-29,-212],[18,-56],[-32,-299],[-55,-156],[-50,-19],[-55,-205]],[[30185,57537],[-8,-139],[-163,-69],[91,-268],[-3,-309],[-123,-344],[105,-468],[120,38],[62,427],[-86,208],[-14,447],[346,241],[-38,278],[97,186],[100,-415],[195,-9],[180,-330],[11,-195],[249,-6],[297,61],[159,-264],[213,-74],[155,185],[4,149],[344,35],[333,9],[-236,-175],[95,-279],[222,-44],[210,-291],[45,-473],[144,13],[109,-139]],[[33400,55523],[-220,-347],[-24,-215],[95,-220],[-69,-110],[-171,-95],[5,-273],[-75,-163],[188,-448]],[[33400,55523],[183,-217],[171,-385],[8,-304],[105,-14],[149,-289],[109,-205]],[[34125,54109],[-44,-532],[-169,-154],[15,-139],[-51,-305],[123,-429],[89,-1],[37,-333],[169,-514]],[[34125,54109],[333,-119],[30,107],[225,43],[298,-159]],[[35011,53981],[-144,-508],[22,-404],[109,-351],[-49,-254],[-24,-270],[-71,-248]],[[35011,53981],[95,-65],[204,-140],[294,-499],[46,-242]],[[51718,79804],[131,-155],[400,-109],[-140,-404],[-35,-421]],[[52074,78715],[-77,-101],[-126,54],[9,-150],[-203,-332],[-5,-267],[133,92],[95,-259]],[[51900,77752],[-11,-167],[82,-222],[-97,-180],[72,-457],[151,-75],[-32,-256]],[[52065,76395],[-252,-334],[-548,160],[-404,-192],[-32,-355]],[[50829,75674],[-322,-77],[-313,267],[-101,-127],[-511,268],[-111,230]],[[49471,76235],[144,354],[53,1177],[-287,620],[-205,299],[-424,227],[-28,431],[360,129],[466,-152],[-88,669],[263,-254],[646,461],[84,484],[243,119]],[[50698,80799],[40,-207],[129,-10],[129,-237],[194,-279],[143,46],[243,-269]],[[51576,79843],[62,-52],[80,13]],[[52429,75765],[179,226],[47,-507],[-92,-456],[-126,120],[-64,398],[56,219]],[[27693,48568],[148,442],[-60,258],[-106,-275],[-166,259],[56,167],[-47,536],[97,89],[52,368],[105,381],[-20,241],[153,126],[190,236]],[[31588,61519],[142,-52],[50,-118],[-71,-149],[-209,4],[-163,-21],[-16,253],[40,86],[227,-3]],[[28453,61504],[187,-53],[147,-142],[46,-161],[-195,-11],[-84,-99],[-156,95],[-159,215],[34,135],[116,41],[64,-20]],[[27147,64280],[240,-42],[219,-7],[261,-201],[110,-216],[260,66],[98,-138],[235,-366],[173,-267],[92,8],[165,-120],[-20,-167],[205,-24],[210,-242],[-33,-138],[-185,-75],[-187,-29],[-191,46],[-398,-57],[186,329],[-113,154],[-179,39],[-96,171],[-66,336],[-157,-23],[-259,159],[-83,124],[-362,91],[-97,115],[104,148],[-273,30],[-199,-307],[-115,-8],[-40,-144],[-138,-65],[-118,56],[146,183],[60,213],[126,131],[142,116],[210,56],[67,65]],[[58175,37528],[-177,267],[-215,90],[-82,375],[0,208],[-119,64],[-315,649],[-87,342],[-56,105],[-107,473]],[[57017,40101],[311,-65],[90,-68],[94,13],[154,383],[241,486],[100,46],[33,205],[159,235],[210,81]],[[58409,41417],[18,-220],[232,12],[128,-125],[60,-146],[132,-43],[145,-190],[0,-748],[-54,-409],[-12,-442],[45,-175],[-31,-348],[-42,-53],[-74,-426],[-292,-671]],[[55526,35946],[0,1725],[274,20],[8,2105],[207,19],[428,207],[106,-243],[177,231],[85,2],[156,133]],[[56967,40145],[50,-44]],[[54540,33696],[-207,446],[-108,432],[-62,575],[-68,428],[-93,910],[-7,707],[-35,322],[-108,243],[-144,489],[-146,708],[-60,371],[-226,577],[-17,453]],[[53259,40357],[134,113],[166,100],[180,-17],[166,-267],[42,41],[1126,26],[192,-284],[673,-83],[510,241]],[[56448,40227],[228,134],[180,-34],[109,-133],[2,-49]],[[45357,58612],[-115,460],[-138,210],[122,112],[134,415],[66,304]],[[45426,60113],[96,189],[138,-51],[135,129],[155,6],[133,-173],[184,-157],[168,-435],[184,-405]],[[46619,59216],[13,-368],[54,-338],[104,-166],[24,-229],[-13,-184]],[[46801,57931],[-40,-33],[-151,47],[-21,-66],[-61,-13],[-200,144],[-134,6]],[[46194,58016],[-513,25],[-75,-67],[-92,19],[-147,-96]],[[45367,57897],[-46,453]],[[45321,58350],[253,-13],[67,83],[50,5],[103,136],[119,-124],[121,-11],[120,133],[-56,170],[-92,-99],[-86,3],[-110,145],[-88,-9],[-63,-140],[-302,-17]],[[46619,59216],[93,107],[47,348],[88,14],[194,-165],[157,117],[107,-39],[42,131],[1114,9],[62,414],[-48,73],[-134,2550],[-134,2550],[425,10]],[[48632,65335],[937,-1289],[937,-1289],[66,-277],[173,-169],[129,-96],[3,-376],[308,58]],[[51185,61897],[1,-1361],[-152,-394],[-24,-364],[-247,-94],[-379,-51],[-102,-210],[-178,-23]],[[50104,59400],[-178,-3],[-70,114],[-153,-84],[-259,-246],[-53,-184],[-216,-265],[-38,-152],[-116,-120],[-134,79],[-76,-144],[-41,-405],[-221,-490],[7,-200],[-76,-250],[18,-343]],[[48498,56707],[-114,-88],[-65,-74],[-43,253],[-80,-67],[-48,11],[-51,-172],[-215,5],[-77,89],[-36,-54]],[[47769,56610],[-85,170],[15,176],[-35,69],[-59,-58],[11,192],[57,152],[-114,248],[-33,163],[-62,130],[-55,15],[-67,-83],[-90,-79],[-76,-128],[-119,48],[-77,150],[-46,19],[-73,-78],[-44,-1],[-16,216]],[[47587,66766],[1045,-1431]],[[45426,60113],[-24,318],[78,291],[34,557],[-30,583],[-34,294],[28,295],[-72,281],[-146,255]],[[50747,54278],[-229,-69]],[[50518,54209],[-69,407],[13,1357],[-56,122],[-11,290],[-96,207],[-85,174],[35,311]],[[50249,57077],[96,67],[56,258],[136,56],[61,176]],[[50598,57634],[93,173],[100,2],[212,-340]],[[51003,57469],[-11,-197],[62,-350],[-54,-238],[29,-159],[-135,-366],[-86,-181],[-52,-372],[7,-376],[-16,-952]],[[54026,58177],[-78,-34],[-9,-188]],[[53939,57955],[-52,-13],[-188,647],[-65,24],[-217,-331],[-215,173],[-150,34],[-80,-83],[-163,18],[-164,-252],[-141,-14],[-337,305],[-131,-145],[-142,10],[-104,223],[-279,221],[-298,-70],[-72,-128],[-39,-340],[-80,-238],[-19,-527]],[[50598,57634],[6,405],[-320,134],[-9,286],[-156,386],[-37,269],[22,286]],[[51185,61897],[392,263],[804,1161],[952,1126]],[[53333,64447],[439,-255],[156,-324],[197,220]],[[53939,57955],[110,-235],[-31,-107],[-14,-196],[-234,-457],[-74,-377],[-39,-307],[-59,-132],[-56,-414],[-148,-243],[-43,-299],[-63,-238],[-26,-246],[-191,-199],[-156,243],[-105,-10],[-165,-345],[-81,-6],[-132,-570],[-71,-418]],[[52361,53399],[-289,-213],[-105,31],[-107,-132],[-222,13],[-149,370],[-91,427],[-197,389],[-209,-7],[-245,1]],[[54244,54965],[-140,-599],[-67,-107],[-21,-458],[28,-249],[-23,-176],[132,-309],[23,-212],[103,-305],[127,-190],[12,-269],[29,-172]],[[54447,51919],[-20,-319],[-220,140],[-225,156],[-350,23]],[[53632,51919],[-35,32],[-164,-76],[-169,79],[-132,-38]],[[53132,51916],[-452,13]],[[52680,51929],[40,466],[-108,391],[-127,100],[-56,265],[-72,85],[4,163]],[[50518,54209],[-224,-126]],[[50294,54083],[-62,207],[-74,375],[-22,294],[61,532],[-69,215],[-27,466],[1,429],[-116,305],[20,184]],[[50006,57090],[243,-13]],[[50294,54083],[-436,-346],[-154,-203],[-250,-171],[-248,168]],[[49206,53531],[13,233],[-121,509],[73,667],[117,496],[-74,841]],[[49214,56277],[-38,444],[7,336],[482,27],[123,-43],[90,96],[128,-47]],[[48498,56707],[125,-129],[49,-195],[125,-125],[97,149],[130,22],[190,-152]],[[49206,53531],[-126,-7],[-194,116],[-178,-7],[-329,-103],[-193,-170],[-275,-217],[-54,15]],[[47857,53158],[22,487],[26,74],[-8,233],[-118,247],[-88,40],[-81,162],[60,262],[-28,286],[13,172]],[[47655,55121],[44,0],[17,258],[-22,114],[27,82],[103,71],[-69,473],[-64,245],[23,200],[55,46]],[[47655,55121],[-78,15],[-57,-238],[-78,3],[-55,126],[19,237],[-116,362],[-73,-67],[-59,-13]],[[47158,55546],[-77,-34],[3,217],[-44,155],[9,171],[-60,249],[-78,211],[-222,1],[-65,-112],[-76,-13],[-48,-128],[-32,-163],[-148,-260]],[[46320,55840],[-122,349],[-108,232],[-71,76],[-69,118],[-32,261],[-41,130],[-80,97]],[[45797,57103],[123,288],[84,-11],[73,99],[61,1],[44,78],[-24,196],[31,62],[5,200]],[[45797,57103],[-149,247],[-117,39],[-63,166],[1,90],[-84,125],[-18,127]],[[47857,53158],[-73,-5],[-286,282],[-252,449],[-237,324],[-187,381]],[[46822,54589],[66,189],[15,172],[126,320],[129,276]],[[46822,54589],[-75,44],[-200,238],[-144,316],[-49,216],[-34,437]],[[55125,52650],[-178,33],[-188,99],[-166,-313],[-146,-550]],[[56824,55442],[152,-239],[2,-192],[187,-308],[116,-255],[70,-355],[208,-234],[44,-187]],[[53609,47755],[-104,203],[-84,-100],[-112,-255]],[[53309,47603],[-228,626]],[[53081,48229],[212,326],[-105,391],[95,148],[187,73],[23,261],[148,-283],[245,-25],[85,279],[36,393],[-31,461],[-131,350],[120,684],[-69,117],[-207,-48],[-78,305],[21,258]],[[53081,48229],[-285,596],[-184,488],[-169,610],[9,196],[61,189],[67,430],[56,438]],[[52636,51176],[94,35],[404,-6],[-2,711]],[[52636,51176],[-52,90],[96,663]],[[59099,45126],[131,-264],[71,-501],[-47,-160],[-56,-479],[53,-490],[-87,-205],[-85,-549],[147,-153]],[[59226,42325],[-843,-487],[26,-421]],[[56448,40227],[-181,369],[-188,483],[13,1880],[579,-7],[-24,203],[41,222],[-49,277],[32,286],[-29,184]],[[59599,43773],[-77,-449],[77,-768],[97,9],[100,-191],[116,-427],[24,-760],[-120,-124],[-85,-410],[-181,365],[-21,417],[59,274],[-16,237],[-110,149],[-77,-54],[-159,284]],[[61198,44484],[45,-265],[-11,-588],[34,-519],[11,-923],[49,-290],[-83,-422],[-108,-410],[-177,-366],[-254,-225],[-313,-287],[-313,-634],[-107,-108],[-194,-420],[-115,-136],[-23,-421],[132,-448],[54,-346],[4,-177],[49,29],[-8,-579],[-45,-275],[65,-101],[-41,-245],[-116,-211],[-229,-199],[-334,-320],[-122,-219],[24,-248],[71,-40],[-24,-311]],[[58908,34785],[-24,261],[-41,265]],[[53383,47159],[-74,444]],[[53259,40357],[-26,372],[38,519],[96,541],[15,254],[90,532],[66,243],[159,386],[90,263],[29,438],[-15,335],[-83,211],[-74,358],[-68,355],[15,122],[85,235],[-84,570],[-57,396],[-139,374],[26,115]],[[58062,48902],[169,-46],[85,336],[147,-38]],[[59922,69905],[-49,-186]],[[59873,69719],[-100,82],[-58,-394],[69,-66],[-71,-81],[-12,-156],[131,80]],[[59832,69184],[7,-230],[-139,-944]],[[59700,68010],[-27,153],[-155,862]],[[59518,69025],[80,194],[-19,34],[74,276],[56,446],[40,149],[8,6]],[[59757,70130],[93,-1],[25,104],[75,8]],[[59950,70241],[4,-242],[-38,-90],[6,-4]],[[59757,70130],[99,482],[138,416],[5,21]],[[59999,71049],[125,-31],[45,-231],[-151,-223],[-68,-323]],[[63761,43212],[74,-251],[69,-390],[45,-711],[72,-276],[-28,-284],[-49,-174],[-94,347],[-53,-175],[53,-438],[-24,-250],[-77,-137],[-18,-500],[-109,-689],[-137,-814],[-172,-1120],[-106,-821],[-125,-685],[-226,-140],[-243,-250],[-160,151],[-220,211],[-77,312],[-18,524],[-98,471],[-26,425],[50,426],[128,102],[1,197],[133,447],[25,377],[-65,280],[-52,372],[-23,544],[97,331],[38,375],[138,22],[155,121],[103,107],[122,7],[158,337],[229,364],[83,297],[-38,253],[118,-71],[153,410],[6,356],[92,264],[96,-254]],[[59873,69719],[0,-362],[-41,-173]],[[45321,58350],[36,262]],[[52633,68486],[-118,1061],[-171,238],[-3,143],[-227,352],[-24,445],[171,330],[65,487],[-44,563],[57,303]],[[52339,72408],[302,239],[195,-71],[-9,-299],[236,217],[20,-113],[-139,-290],[-2,-273],[96,-147],[-36,-511],[-183,-297],[53,-322],[143,-10],[70,-281],[106,-92]],[[53191,70158],[-16,-454],[-135,-170],[-86,-189],[-191,-228],[30,-244],[-24,-250],[-136,-137]],[[47592,66920],[-2,700],[449,436],[277,90],[227,159],[107,295],[324,234],[12,438],[161,51],[126,219],[363,99],[51,230],[-73,125],[-96,624],[-17,359],[-104,379]],[[49397,71358],[267,323],[300,102],[175,244],[268,180],[471,105],[459,48],[140,-87],[262,232],[297,5],[113,-137],[190,35]],[[52633,68486],[90,-522],[15,-274],[-49,-482],[21,-270],[-36,-323],[24,-371],[-110,-247],[164,-431],[11,-253],[99,-330],[130,109],[219,-275],[122,-370]],[[59922,69905],[309,-234],[544,630]],[[60775,70301],[112,-720]],[[60887,69581],[-53,-89],[-556,-296],[277,-591],[-92,-101],[-46,-197],[-212,-82],[-66,-213],[-120,-182],[-310,94]],[[59709,67924],[-9,86]],[[64327,64904],[49,29],[11,-162],[217,93],[230,-15],[168,-18],[190,400],[207,379],[176,364]],[[65575,65974],[52,-202]],[[65627,65772],[38,-466]],[[65665,65306],[-142,-3],[-23,-384],[50,-82],[-126,-117],[-1,-241],[-81,-245],[-7,-238]],[[65335,63996],[-56,-125],[-835,298],[-106,599],[-11,136]],[[64113,65205],[-18,430],[75,310],[76,64],[84,-185],[5,-346],[-61,-348]],[[64274,65130],[-77,-42],[-84,117]],[[63326,68290],[58,-261],[-25,-135],[89,-445]],[[63448,67449],[-196,-16],[-69,282],[-248,57]],[[62935,67772],[204,567],[187,-49]],[[60775,70301],[615,614],[105,715],[-26,431],[152,146],[142,369]],[[61763,72576],[119,92],[324,-77],[97,-150],[133,100]],[[62436,72541],[180,-705],[182,-177],[21,-345],[-139,-204],[-65,-461],[193,-562],[340,-324],[143,-449],[-46,-428],[89,0],[3,-314],[153,-311]],[[63490,68261],[-164,29]],[[62935,67772],[-516,47],[-784,1188],[-413,414],[-335,160]],[[65665,65306],[125,-404],[155,-214],[203,-78],[165,-107],[125,-339],[75,-196],[100,-75],[-1,-132],[-101,-352],[-44,-166],[-117,-189],[-104,-404],[-126,31],[-58,-141],[-44,-300],[34,-395],[-26,-72],[-128,2],[-174,-221],[-27,-288],[-63,-125],[-173,5],[-109,-149],[1,-238],[-134,-165],[-153,56],[-186,-199],[-128,-34]],[[64752,60417],[-91,413],[-217,975]],[[64444,61805],[833,591],[185,1182],[-127,418]],[[65575,65974],[80,201],[35,-51],[-26,-244],[-37,-108]],[[96448,41190],[175,-339],[-92,-78],[-93,259],[10,158]],[[96330,41322],[-39,163],[-6,453],[133,-182],[45,-476],[-75,74],[-58,-32]],[[78495,57780],[-66,713],[178,492],[359,112],[261,-84]],[[79227,59013],[229,-232],[126,407],[246,-217]],[[79828,58971],[64,-394],[-34,-708],[-467,-455],[122,-358],[-292,-43],[-240,-238]],[[78981,56775],[-233,87],[-112,307],[-141,611]],[[78495,57780],[-249,271],[-238,-11],[41,464],[-245,-3],[-22,-650],[-150,-863],[-90,-522],[19,-428],[181,-18],[113,-539],[50,-512],[155,-338],[168,-69],[144,-306]],[[78372,54256],[-91,-243],[-183,-71],[-22,304],[-227,258],[-48,-105]],[[77801,54399],[-110,227],[-47,292],[-148,334],[-135,280],[-45,-347],[-53,328],[30,369],[82,566]],[[77375,56448],[135,607],[152,551],[-108,539],[4,274],[-32,330],[-185,470],[-66,296],[96,109],[101,514],[-113,390],[-177,431],[-134,519],[117,107],[127,639],[196,26],[162,256],[159,137]],[[77809,62643],[120,-182],[16,-355],[188,-27],[-68,-623],[6,-530],[293,353],[83,-104],[163,17],[56,205],[210,-40],[211,-480],[18,-583],[224,-515],[-12,-500],[-90,-266]],[[77809,62643],[59,218],[237,384]],[[78105,63245],[25,-139],[148,-16],[-42,676],[144,86]],[[78380,63852],[162,-466],[125,-537],[342,-5],[108,-515],[-178,-155],[-80,-212],[333,-353],[231,-699],[175,-520],[210,-411],[70,-418],[-50,-590]],[[77375,56448],[-27,439],[86,452],[-94,350],[23,644],[-113,306],[-90,707],[-50,746],[-121,490],[-183,-297],[-315,-421],[-156,53],[-172,138],[96,732],[-58,554],[-218,681],[34,213],[-163,76],[-197,481]],[[75657,62792],[-18,476],[97,-90],[6,424]],[[75742,63602],[137,140],[-30,251],[63,201],[11,612],[217,-135],[124,487],[14,288],[153,496],[-8,338],[359,408],[199,-107],[-23,364],[97,108],[-20,224]],[[77035,67277],[162,44],[93,-348],[121,-141],[8,-452],[-11,-487],[-263,-493],[-33,-701],[293,98],[66,-544],[176,-115],[-81,-490],[206,-222],[121,-109],[203,172],[9,-244]],[[78380,63852],[149,145],[221,-3],[271,68],[236,315],[134,-222],[254,-108],[-44,-340],[132,-240],[280,-154]],[[80013,63313],[-371,-505],[-231,-558],[-61,-410],[212,-623],[260,-772],[252,-365],[169,-475],[127,-1093],[-37,-1039],[-232,-389],[-318,-381],[-227,-492],[-346,-550],[-101,378],[78,401],[-206,335]],[[86327,75524],[0,0]],[[86327,75524],[-106,36],[-120,-200],[-83,-202],[10,-424],[-143,-130],[-50,-105],[-104,-174],[-185,-97],[-121,-159],[-9,-256],[-32,-65],[111,-96],[157,-259]],[[85652,73393],[-40,-143],[-118,-39],[-197,-29],[-108,-266],[-124,21],[-17,-54]],[[85048,72883],[-135,112],[-34,-111],[-81,-49],[-10,112],[-72,54],[-75,94],[76,260],[66,69],[-25,108],[71,319],[-18,96],[-163,65],[-131,158]],[[84517,74170],[227,379],[306,318],[191,419],[131,-185],[241,-22],[-44,312],[429,254],[111,331],[179,-348]],[[85652,73393],[240,-697],[68,-383],[3,-681],[-105,-325],[-252,-113],[-222,-245],[-250,-51],[-31,322],[51,443],[-122,615],[206,99],[-190,506]],[[82410,80055],[-135,-446],[-197,-590],[72,-241],[157,74],[274,-92],[214,219],[223,-189],[251,-413],[-30,-210],[-219,66],[-404,-78],[-195,-168],[-204,-391],[-423,-229],[-277,-313],[-286,120],[-156,53],[-146,-381],[89,-227],[45,-195],[-194,-199],[-200,-316],[-324,-208],[-417,-22],[-448,-205],[-324,-318],[-123,184],[-336,-1],[-411,359],[-274,88],[-369,-82],[-574,133],[-306,-14],[-163,351],[-127,544],[-171,66],[-336,368],[-374,83],[-330,101],[-100,256],[107,690],[-192,476],[-396,222],[-233,313],[-73,413]],[[75742,63602],[-147,937],[-76,-2],[-46,-377],[-152,306],[86,336],[124,34],[128,500],[-160,101],[-257,-8],[-265,81],[-24,410],[-133,30],[-220,255],[-98,-401],[200,-313],[-173,-220],[-62,-215],[171,-159],[-47,-356],[96,-444],[43,-486]],[[74730,63611],[-39,-216],[-189,7],[-343,-122],[16,-445],[-148,-349],[-400,-398],[-311,-695],[-209,-373],[-276,-387],[-1,-271],[-138,-146],[-251,-212],[-129,-31],[-84,-450],[58,-769],[15,-490],[-118,-561],[-1,-1004],[-144,-29],[-126,-450],[84,-195],[-253,-168],[-93,-401],[-112,-170],[-263,552],[-128,827],[-107,596],[-97,279],[-148,568],[-69,739],[-48,369],[-253,811],[-115,1145],[-83,756],[1,716],[-54,553],[-404,-353],[-196,70],[-362,716],[133,214],[-82,232],[-326,501]],[[68937,64577],[185,395],[612,-2],[-56,507],[-156,300],[-31,455],[-182,265],[306,619],[323,-45],[290,620],[174,599],[270,593],[-4,421],[236,342],[-224,292],[-96,400],[-99,517],[137,255],[421,-144],[310,88],[268,496]],[[71621,71550],[298,-692],[-28,-482],[111,-303],[-9,-301],[-200,79],[78,-651],[273,-374],[386,-413]],[[72530,68413],[-176,-268],[-108,-553],[269,-224],[262,-289],[362,-332],[381,-76],[160,-301],[215,-56],[334,-138],[231,10],[32,234],[-36,375],[21,255]],[[74477,67050],[170,124],[23,-465]],[[74670,66709],[6,-119],[252,-224],[175,92],[234,-39],[227,17],[20,363],[-113,189]],[[75471,66988],[224,74],[252,439],[321,376],[233,-145],[198,249],[130,-367],[-94,-248],[300,-89]],[[75657,62792],[-79,308],[-16,301],[-53,285],[-116,344],[-256,23],[25,-243],[-87,-329],[-118,120],[-41,-108],[-78,65],[-108,53]],[[74670,66709],[184,439],[150,150],[198,-137],[147,-14],[122,-159]],[[72530,68413],[115,141],[223,-182],[280,-385],[157,-84],[93,-284],[216,-117],[225,-259],[314,-136],[324,-57]],[[68937,64577],[-203,150],[-83,424],[-215,450],[-512,-111],[-451,-11],[-391,-83]],[[67082,65396],[105,687],[400,305],[-23,272],[-133,96],[-7,520],[-266,260],[-112,357],[-137,310]],[[66909,68203],[465,-301],[278,88],[166,-75],[56,129],[194,-52],[361,246],[10,503],[154,334],[207,-1],[31,166],[212,77],[103,-55],[108,166],[-15,355],[118,356],[177,150],[-110,390],[265,-18],[76,213],[-12,227],[139,248],[-32,294],[-66,250],[163,258],[298,124],[319,68],[141,109],[162,67]],[[70877,72519],[205,-276],[82,-454],[457,-239]],[[68841,72526],[85,-72],[201,189],[93,-114],[90,271],[166,-12],[43,86],[29,239],[120,205],[150,-134],[-30,-181],[84,-28],[-26,-496],[110,-194],[97,125],[123,58],[173,265],[192,-44],[286,-1]],[[70827,72688],[50,-169]],[[66909,68203],[252,536],[-23,380],[-210,100],[-22,375],[-91,472],[119,323],[-121,87],[76,430],[113,736]],[[67002,71642],[284,-224],[209,79],[58,268],[219,89],[157,180],[55,472],[234,114],[44,211],[131,-158],[84,-19]],[[69725,74357],[-101,-182],[-303,98],[-26,-340],[301,46],[343,-192],[526,89]],[[70465,73876],[70,-546],[91,59],[169,-134],[-10,-230],[42,-337]],[[72294,75601],[-39,-134],[-438,-320],[-99,-234],[-356,-70],[-105,-378],[-294,80],[-192,-116],[-266,-279],[39,-138],[-79,-136]],[[67002,71642],[-24,498],[-207,21],[-318,523],[-221,65],[-308,299],[-197,55],[-122,-110],[-186,17],[-197,-338],[-244,-114]],[[64978,72558],[-52,417],[40,618],[-216,200],[71,405],[-184,34],[61,498],[262,-145],[244,189],[-202,355],[-80,338],[-224,-151],[-28,-433],[-87,383]],[[62436,72541],[-152,473],[55,183],[-87,678],[190,168]],[[62442,74043],[44,-223],[141,-273],[190,-78]],[[62817,73469],[101,17]],[[62918,73486],[327,436],[104,44],[82,-174],[-95,-292],[173,-309],[69,29]],[[63578,73220],[88,-436],[263,-123],[193,-296],[395,-102],[434,156],[27,139]],[[67082,65396],[-523,179],[-303,136],[-313,76],[-118,725],[-133,105],[-214,-106],[-280,-286],[-339,196],[-281,454],[-267,168],[-186,561],[-205,788],[-149,-96],[-177,196],[-104,-231]],[[59999,71049],[-26,452],[68,243]],[[60041,71744],[74,129],[75,130],[15,329],[91,-115],[306,165],[147,-112],[229,2],[320,222],[149,-10],[316,92]],[[62817,73469],[-113,342],[1,91],[-123,-2],[-82,159],[-58,-16]],[[62442,74043],[-109,172],[-207,147],[27,288],[-47,208]],[[62106,74858],[386,92]],[[62492,74950],[57,-155],[106,-103],[-56,-148],[148,-202],[-78,-189],[118,-160],[124,-97],[7,-410]],[[55734,91409],[371,-289],[433,-402],[8,-910],[93,-230]],[[56639,89578],[-478,-167],[-269,-413],[43,-361],[-441,-475],[-537,-509],[-202,-832],[198,-416],[265,-328],[-255,-666],[-289,-138],[-106,-992],[-157,-554],[-337,57],[-158,-468],[-321,-27],[-89,558],[-232,671],[-211,835]],[[58829,81362],[-239,-35],[-85,-129],[-18,-298],[-111,57],[-250,-28],[-73,138],[-104,-103],[-105,86],[-218,12],[-310,141],[-281,47],[-215,-14],[-152,-160],[-133,-23]],[[56535,81053],[-6,263],[-85,274],[166,121],[2,235],[-77,225],[-12,261]],[[56523,82432],[268,-4],[302,223],[64,333],[228,190],[-26,264]],[[57359,83438],[169,100],[298,228]],[[60617,78409],[-222,-48],[-185,-191],[-260,-31],[-239,-220],[14,-317]],[[59287,77741],[-38,64],[-432,149],[-19,221],[-257,-73],[-103,-325],[-215,-437]],[[58223,77340],[-126,101],[-131,-95],[-124,109]],[[57842,77455],[70,64],[49,203],[76,188],[-20,106],[58,47],[27,-81],[164,-18],[74,44],[-52,60],[19,88],[-97,150],[-40,247],[-101,97],[20,200],[-125,159],[-115,22],[-204,184],[-185,-58],[-66,-87]],[[57394,79070],[-118,0],[-69,-139],[-205,-56],[-95,-91],[-129,144],[-178,3],[-172,65],[-120,-127]],[[56308,78869],[-19,159],[-155,161]],[[56134,79189],[55,238],[77,154]],[[56266,79581],[60,-35],[-71,266],[252,491],[138,69],[29,166],[-139,515]],[[56266,79581],[-264,227],[-200,-84],[-131,61],[-165,-127],[-140,210],[-114,-81],[-16,36]],[[55236,79823],[-127,291],[-207,36],[-26,185],[-191,66],[-41,-153],[-151,122],[17,163],[-207,51],[-132,191]],[[54171,80775],[-114,377],[22,204],[-69,316],[-101,210],[77,158],[-64,300]],[[53922,82340],[189,174],[434,273],[350,200],[277,-100],[21,-144],[268,-7]],[[56314,82678],[142,-64],[67,-182]],[[54716,79012],[-21,-241],[-156,-2],[53,-128],[-92,-380]],[[54500,78261],[-53,-100],[-243,-14],[-140,-134],[-229,45]],[[53835,78058],[-398,153],[-62,205],[-274,-102],[-32,-113],[-169,84]],[[52900,78285],[-142,16],[-125,108],[42,145],[-10,104]],[[52665,78658],[83,33],[141,-164],[39,156],[245,-25],[199,106],[133,-18],[87,-121],[26,100],[-40,385],[100,75],[98,272]],[[53776,79457],[206,-190],[157,242],[98,44],[215,-180],[131,30],[128,-111]],[[54711,79292],[-23,-75],[28,-205]],[[56308,78869],[-170,-123],[-131,-401],[-168,-401],[-223,-111]],[[55616,77833],[-173,26],[-213,-155]],[[55230,77704],[-104,-89],[-229,114],[-208,253],[-88,73]],[[54601,78055],[-54,200],[-47,6]],[[54716,79012],[141,-151],[103,-65],[233,73],[22,118],[111,18],[135,92],[30,-38],[130,74],[66,139],[91,36],[297,-180],[59,61]],[[57842,77455],[-50,270],[30,252],[-9,259],[-160,352],[-89,249],[-86,175],[-84,58]],[[58223,77340],[6,-152],[-135,-128],[-84,56],[-78,-713]],[[57932,76403],[-163,62],[-202,215],[-327,-138],[-138,-150],[-408,31],[-213,92],[-108,-43],[-80,243]],[[56293,76715],[-51,103],[65,99],[-69,74],[-87,-133],[-162,172],[-22,244],[-169,139],[-31,188],[-151,232]],[[55907,83187],[-59,497]],[[55848,83684],[318,181],[466,-38],[273,59],[39,-123],[148,-38],[267,-287]],[[55848,83684],[10,445],[136,371],[262,202],[221,-442],[223,12],[53,453]],[[56753,84725],[237,105],[121,-73],[239,-219],[229,-1]],[[56753,84725],[32,349],[-102,-75],[-176,210],[-24,340],[351,164],[350,86],[301,-97],[287,17]],[[54171,80775],[-124,-62],[-73,68],[-70,-113],[-200,-114],[-103,-147],[-202,-129],[49,-176],[30,-249],[141,-142],[157,-254]],[[52665,78658],[-298,181],[-57,-128],[-236,4]],[[51718,79804],[16,259],[-56,133]],[[51678,80196],[32,400]],[[51710,80596],[-47,619],[167,0],[70,222],[69,541],[-51,200]],[[51918,82178],[54,125],[232,32],[52,-130],[188,291],[-63,222],[-13,335]],[[52368,83053],[210,-78],[178,90]],[[52756,83065],[4,-228],[281,-138],[-3,-210],[283,111],[156,162],[313,-233],[132,-189]],[[57932,76403],[-144,-245],[-101,-422],[89,-337]],[[57776,75399],[-239,79],[-283,-186]],[[57254,75292],[-3,-294],[-252,-56],[-196,206],[-222,-162],[-206,17]],[[56375,75003],[-20,391],[-139,189]],[[56216,75583],[46,84],[-30,70],[47,188],[105,185],[-135,255],[-24,216],[68,134]],[[57302,71436],[-35,-175],[-400,-50],[3,98],[-339,115],[52,251],[152,-199],[216,34],[207,-42],[-7,-103],[151,71]],[[57254,75292],[135,-157],[-86,-369],[-66,-67]],[[57237,74699],[-169,17],[-145,56],[-336,-154],[192,-332],[-141,-96],[-154,-1],[-147,305],[-52,-130],[62,-353],[139,-277],[-105,-129],[155,-273],[137,-171],[4,-334],[-257,157],[82,-302],[-176,-62],[105,-521],[-184,-8],[-228,257],[-104,473],[-49,393],[-108,272],[-143,337],[-18,168]],[[55597,73991],[129,287],[16,192],[91,85],[5,155]],[[55838,74710],[182,53],[106,129],[150,-12],[46,103],[53,20]],[[60041,71744],[-102,268],[105,222],[-169,-51],[-233,136],[-191,-340],[-421,-66],[-225,317],[-300,20],[-64,-245],[-192,-70],[-268,314],[-303,-11],[-165,588],[-203,328],[135,459],[-176,283],[308,565],[428,23],[117,449],[529,-78],[334,383],[324,167],[459,13],[485,-417],[399,-228],[323,91],[239,-53],[328,309]],[[61542,75120],[296,28],[268,-290]],[[57776,75399],[33,-228],[243,-190],[-51,-145],[-330,-33],[-118,-182],[-232,-319],[-87,276],[3,121]],[[55597,73991],[-48,41],[-5,130],[-154,199],[-24,281],[23,403],[38,184],[-47,93]],[[55380,75322],[-18,188],[120,291],[18,-111],[75,52]],[[55575,75742],[59,-159],[66,-60],[19,-214]],[[55719,75309],[-35,-201],[39,-254],[115,-144]],[[55230,77704],[67,-229],[89,-169],[-107,-222]],[[55279,77084],[-126,131],[-192,-8],[-239,98],[-130,-13],[-60,-123],[-99,136],[-59,-245],[136,-277],[61,-183],[127,-221],[106,-130],[105,-247],[246,-224]],[[55155,75778],[-31,-100]],[[55124,75678],[-261,218],[-161,213],[-254,176],[-233,434],[56,45],[-127,248],[-5,200],[-179,93],[-85,-255],[-82,198],[6,205],[10,9]],[[53809,77462],[194,-20],[51,100],[94,-97],[109,-11],[-1,165],[97,60],[27,239],[221,157]],[[52900,78285],[-22,-242],[-122,-100],[-206,75],[-60,-239],[-132,-19],[-48,94],[-156,-200],[-134,-28],[-120,126]],[[51576,79843],[30,331],[72,22]],[[50698,80799],[222,117]],[[50920,80916],[204,-47],[257,123],[176,-258],[153,-138]],[[50920,80916],[143,162],[244,869],[380,248],[231,-17]],[[47490,75324],[101,150],[113,86],[70,-289],[164,0],[47,75],[162,-21],[78,-296],[-129,-160],[-3,-461],[-45,-86],[-11,-280],[-120,-48],[111,-355],[-77,-388],[96,-175],[-38,-161],[-103,-222],[23,-195]],[[47929,72498],[-112,-153],[-146,83],[-143,-65],[42,462],[-26,363],[-124,55],[-67,224],[22,386],[111,215],[20,239],[58,355],[-6,250],[-56,212],[-12,200]],[[47490,75324],[14,420],[-114,257],[393,426],[340,-106],[373,3],[296,-101],[230,31],[449,-19]],[[50829,75674],[15,-344],[-263,-393],[-356,-125],[-25,-199],[-171,-327],[-107,-481],[108,-338],[-160,-263],[-60,-384],[-210,-118],[-197,-454],[-352,-9],[-265,11],[-174,-209],[-106,-223],[-136,49],[-103,199],[-79,340],[-259,92]],[[48278,82406],[46,-422],[-210,-528],[-493,-349],[-393,89],[225,617],[-145,601],[378,463],[210,276]],[[47896,83153],[57,-317],[-57,-317],[172,9],[210,-122]],[[96049,38125],[228,-366],[144,-272],[-105,-142],[-153,160],[-199,266],[-179,313],[-184,416],[-38,201],[119,-9],[156,-201],[122,-200],[89,-166]],[[95032,44386],[78,-203],[-194,4],[-106,363],[166,-142],[56,-22]],[[94910,44908],[-42,-109],[-206,512],[-57,353],[94,0],[100,-473],[111,-283]],[[94680,44747],[-108,-14],[-170,60],[-58,91],[17,235],[183,-93],[91,-124],[45,-155]],[[94344,45841],[65,-187],[12,-119],[-218,251],[-152,212],[-104,197],[41,60],[128,-142],[228,-272]],[[93649,46431],[111,-193],[-56,-33],[-121,134],[-114,243],[14,99],[166,-250]],[[99134,26908],[-105,-319],[-138,-404],[-214,-236],[-48,155],[-116,85],[160,486],[-91,326],[-299,236],[8,214],[201,206],[47,455],[-13,382],[-113,396],[8,104],[-133,244],[-218,523],[-117,418],[104,46],[151,-328],[216,-153],[78,-526],[202,-622],[5,403],[126,-161],[41,-447],[224,-192],[188,-48],[158,226],[141,-69],[-67,-524],[-85,-345],[-212,12],[-74,-179],[26,-254],[-41,-110]],[[97129,24846],[238,310],[167,306],[123,441],[106,149],[41,330],[195,273],[61,-251],[63,-244],[198,239],[80,-249],[0,-249],[-103,-274],[-182,-435],[-142,-238],[103,-284],[-214,-7],[-238,-223],[-75,-387],[-157,-597],[-219,-264],[-138,-169],[-256,13],[-180,194],[-302,42],[-46,217],[149,438],[349,583],[179,111],[200,225]],[[91024,26469],[166,-39],[20,-702],[-95,-203],[-29,-476],[-97,162],[-193,-412],[-57,32],[-171,19],[-171,505],[-38,390],[-160,515],[7,271],[181,-52],[269,-204],[151,81],[217,113]],[[85040,31546],[-294,-303],[-241,-137],[-53,-309],[-103,-240],[-236,-15],[-174,-52],[-246,107],[-199,-64],[-191,-27],[-165,-315],[-81,26],[-140,-167],[-133,-187],[-203,23],[-186,0],[-295,377],[-149,113],[6,338],[138,81],[47,134],[-10,212],[34,411],[-31,350],[-147,598],[-45,337],[12,336],[-111,385],[-7,174],[-123,235],[-35,463],[-158,467],[-39,252],[122,-255],[-93,548],[137,-171],[83,-229],[-5,303],[-138,465],[-26,186],[-65,177],[31,341],[56,146],[38,295],[-29,346],[114,425],[21,-450],[118,406],[225,198],[136,252],[212,217],[126,46],[77,-73],[219,220],[168,66],[42,129],[74,54],[153,-14],[292,173],[151,262],[71,316],[163,300],[13,236],[7,321],[194,502],[117,-510],[119,118],[-99,279],[87,287],[122,-128],[34,449],[152,291],[67,233],[140,101],[4,165],[122,-69],[5,148],[122,85],[134,80],[205,-271],[155,-350],[173,-4],[177,-56],[-59,325],[133,473],[126,155],[-44,147],[121,338],[168,208],[142,-70],[234,111],[-5,302],[-204,195],[148,86],[184,-147],[148,-242],[234,-151],[79,60],[172,-182],[162,169],[105,-51],[65,113],[127,-292],[-74,-316],[-105,-239],[-96,-20],[32,-236],[-81,-295],[-99,-291],[20,-166],[221,-327],[214,-189],[143,-204],[201,-350],[78,1],[145,-151],[43,-183],[265,-200],[183,202],[55,317],[56,262],[34,324],[85,470],[-39,286],[20,171],[-32,339],[37,445],[53,120],[-43,197],[67,313],[52,325],[7,168],[104,222],[78,-289],[19,-371],[70,-71],[11,-249],[101,-300],[21,-335],[-10,-214],[100,-464],[179,223],[92,-250],[133,-231],[-29,-262],[60,-506],[42,-295],[70,-72],[75,-505],[-27,-307],[90,-400],[301,-309],[197,-281],[186,-257],[-37,-143],[159,-371],[108,-639],[111,130],[113,-256],[68,91],[48,-626],[197,-363],[129,-226],[217,-478],[78,-475],[7,-337],[-19,-365],[132,-502],[-16,-523],[-48,-274],[-75,-527],[6,-339],[-55,-423],[-123,-538],[-205,-290],[-102,-458],[-93,-292],[-82,-510],[-107,-294],[-70,-442],[-36,-407],[14,-187],[-159,-205],[-311,-22],[-257,-242],[-127,-229],[-168,-254],[-230,262],[-170,104],[43,308],[-152,-112],[-243,-428],[-240,160],[-158,94],[-159,42],[-269,171],[-179,364],[-52,449],[-64,298],[-137,240],[-267,71],[91,287],[-67,438],[-136,-408],[-247,-109],[146,327],[42,341],[107,289],[-22,438],[-226,-504],[-174,-202],[-106,-470],[-217,243],[9,313],[-174,429],[-147,221],[52,137],[-356,358],[-195,17],[-267,287],[-498,-56],[-359,-211],[-317,-197],[-265,39]],[[72718,55024],[-42,-615],[-116,-168],[-242,-135],[-132,470],[-49,849],[126,959],[192,-328],[129,-416],[134,-616]],[[80409,61331],[-228,183],[-8,509],[137,267],[304,166],[159,-14],[62,-226],[-122,-260],[-64,-341],[-240,-284]],[[84517,74170],[-388,-171],[-204,-277],[-300,-161],[148,274],[-58,230],[220,397],[-147,310],[-242,-209],[-314,-411],[-171,-381],[-272,-29],[-142,-275],[147,-400],[227,-97],[9,-265],[220,-173],[311,422],[247,-230],[179,-15],[45,-310],[-393,-165],[-130,-319],[-270,-296],[-142,-414],[299,-325],[109,-581],[169,-541],[189,-454],[-5,-439],[-174,-161],[66,-315],[164,-184],[-43,-481],[-71,-468],[-155,-53],[-203,-640],[-225,-775],[-258,-705],[-382,-545],[-386,-498],[-313,-68],[-170,-262],[-96,192],[-157,-294],[-388,-296],[-294,-90],[-95,-624],[-154,-35],[-73,429],[66,228],[-373,189],[-131,-96]],[[83826,64992],[-167,-947],[-119,-485],[-146,499],[-32,438],[163,581],[223,447],[127,-176],[-49,-357]],[[53835,78058],[-31,-291],[67,-251]],[[53871,77516],[-221,86],[-226,-210],[15,-293],[-34,-168],[91,-301],[261,-298],[140,-488],[309,-476],[217,3],[68,-130],[-78,-118],[249,-214],[204,-178],[238,-308],[29,-111],[-52,-211],[-154,276],[-242,97],[-116,-382],[200,-219],[-33,-309],[-116,-35],[-148,-506],[-116,-46],[1,181],[57,317],[60,126],[-108,342],[-85,298],[-115,74],[-82,255],[-179,107],[-120,238],[-206,38],[-217,267],[-254,384],[-189,340],[-86,585],[-138,68],[-226,195],[-128,-80],[-161,-274],[-115,-43]],[[54100,73116],[211,51],[-100,-465],[41,-183],[-58,-303],[-213,222],[-141,64],[-387,300],[38,304],[325,-54],[284,64]],[[52419,74744],[139,183],[166,-419],[-39,-782],[-126,38],[-113,-197],[-105,156],[-11,713],[-64,338],[153,-30]],[[52368,83053],[-113,328],[-8,604],[46,159],[80,177],[244,37],[98,163],[223,167],[-9,-304],[-82,-192],[33,-166],[151,-89],[-68,-223],[-83,64],[-200,-425],[76,-288]],[[53436,83731],[88,-296],[-166,-478],[-291,333],[-39,246],[408,195]],[[47896,83153],[233,24],[298,-365],[-149,-406]],[[49140,82132],[1,0],[40,343],[-186,364],[-4,8],[-337,104],[-66,160],[101,264],[-92,163],[-149,-279],[-17,569],[-140,301],[101,611],[216,480],[222,-47],[335,49],[-297,-639],[283,81],[304,-3],[-72,-481],[-250,-530],[287,-38],[22,-62],[248,-697],[190,-95],[171,-673],[79,-233],[337,-113],[-34,-378],[-142,-173],[111,-305],[-250,-310],[-371,6],[-473,-163],[-130,116],[-183,-276],[-257,67],[-195,-226],[-148,118],[407,621],[249,127],[-2,1],[-434,98],[-79,235],[291,183],[-152,319],[52,387],[413,-54]],[[45969,89843],[-64,-382],[314,-403],[-361,-451],[-801,-405],[-240,-107],[-365,87],[-775,187],[273,261],[-605,289],[492,114],[-12,174],[-583,137],[188,385],[421,87],[433,-400],[422,321],[349,-167],[453,315],[461,-42]],[[63495,75281],[146,-311],[141,-419],[130,-28],[85,-159],[-228,-47],[-49,-459],[-48,-207],[-101,-138],[7,-293]],[[62492,74950],[68,96],[207,-169],[149,-36],[38,70],[-136,319],[72,82]],[[61542,75120],[42,252],[-70,403],[-160,218],[-154,68],[-102,181]],[[83564,58086],[-142,450],[238,-22],[97,-213],[-74,-510],[-119,295]],[[84051,56477],[70,165],[30,367],[153,35],[-44,-398],[205,570],[-26,-563],[-100,-195],[-87,-373],[-87,-175],[-171,409],[57,158]],[[85104,55551],[28,-392],[16,-332],[-94,-540],[-102,602],[-130,-300],[89,-435],[-79,-277],[-327,343],[-78,428],[84,280],[-176,280],[-87,-245],[-131,23],[-205,-330],[-46,173],[109,498],[175,166],[151,223],[98,-268],[212,162],[45,264],[196,15],[-16,457],[225,-280],[23,-297],[20,-218]],[[82917,56084],[-369,-561],[136,414],[200,364],[167,409],[146,587],[49,-482],[-183,-325],[-146,-406]],[[83982,61347],[-46,-245],[95,-423],[-73,-491],[-164,-196],[-43,-476],[62,-471],[147,-65],[123,70],[347,-328],[-27,-321],[91,-142],[-29,-272],[-216,290],[-103,310],[-71,-217],[-177,354],[-253,-87],[-138,130],[14,244],[87,151],[-83,136],[-36,-213],[-137,340],[-41,257],[-11,566],[112,-195],[29,925],[90,535],[169,-1],[171,-168],[85,153],[26,-150]],[[83899,57324],[-43,282],[166,-183],[177,1],[-5,-247],[-129,-251],[-176,-178],[-10,275],[20,301]],[[84861,57766],[78,-660],[-214,157],[5,-199],[68,-364],[-132,-133],[-11,416],[-84,31],[-43,357],[163,-47],[-4,224],[-169,451],[266,-13],[77,-220]],[[78372,54256],[64,-56],[164,-356],[116,-396],[16,-398],[-29,-269],[27,-203],[20,-349],[98,-163],[109,-523],[-5,-199],[-197,-40],[-263,438],[-329,469],[-32,301],[-161,395],[-38,489],[-100,322],[30,431],[-61,250]],[[80461,51765],[204,-202],[214,110],[56,500],[119,112],[333,128],[199,467],[137,374]],[[81723,53254],[126,-307],[58,202],[133,-19],[16,377],[13,291]],[[82069,53798],[214,411],[140,462],[112,2],[143,-299],[13,-257],[183,-165],[231,-177],[-20,-232],[-186,-29],[50,-289],[-205,-201]],[[81723,53254],[110,221],[236,323]],[[53809,77462],[62,54]],[[57797,86326],[-504,-47],[-489,-216],[-452,-125],[-161,323],[-269,193],[62,582],[-135,533],[133,345],[252,371],[635,640],[185,124],[-28,250],[-387,279]],[[54711,79292],[39,130],[123,-10],[95,61],[7,55],[54,28],[18,134],[64,26],[43,106],[82,1]],[[60669,61213],[161,-684],[77,-542],[152,-288],[379,-558],[154,-336],[151,-341],[87,-203],[136,-178]],[[61966,58083],[-83,-144],[-119,51]],[[61764,57990],[-95,191],[-114,346],[-124,190],[-71,204],[-242,237],[-191,7],[-67,124],[-163,-139],[-168,268],[-87,-441],[-323,124]],[[89411,73729],[-256,-595],[4,-610],[-104,-472],[48,-296],[-145,-416],[-355,-278],[-488,-36],[-396,-675],[-186,227],[-12,442],[-483,-130],[-329,-279],[-325,-11],[282,-435],[-186,-1004],[-179,-248],[-135,229],[69,533],[-176,172],[-113,405],[263,182],[145,371],[280,306],[203,403],[553,177],[297,-121],[291,1050],[185,-282],[408,591],[158,229],[174,723],[-47,664],[117,374],[295,108],[152,-819],[-9,-479]],[[90169,76553],[197,250],[62,-663],[-412,-162],[-244,-587],[-436,404],[-152,-646],[-308,-9],[-39,587],[138,455],[296,33],[81,817],[83,460],[326,-615],[213,-198],[195,-126]],[[86769,70351],[154,352],[158,-68],[114,248],[204,-127],[35,-203],[-156,-357],[-114,189],[-143,-137],[-73,-346],[-181,168],[2,281]],[[64752,60417],[-201,-158],[-54,-263],[-6,-201],[-277,-249],[-444,-276],[-249,-417],[-122,-33],[-83,35],[-163,-245],[-177,-114],[-233,-30],[-70,-34],[-61,-156],[-73,-43],[-43,-150],[-137,13],[-89,-80],[-192,30],[-72,345],[8,323],[-46,174],[-54,437],[-80,243],[56,29],[-29,270],[34,114],[-12,257]],[[61883,60238],[121,189],[-28,249],[74,290],[114,-153],[75,53],[321,14],[50,-59],[269,-60],[106,30],[70,-197],[130,99],[199,620],[259,266],[801,226]],[[63448,67449],[109,-510],[137,-135],[47,-207],[190,-249],[16,-243],[-27,-197],[35,-199],[80,-165],[37,-194],[41,-145]],[[64274,65130],[53,-226]],[[61883,60238],[-37,252],[-83,178],[-22,236],[-143,212],[-148,495],[-79,482],[-192,406],[-124,97],[-184,563],[-32,411],[12,350],[-159,655],[-130,231],[-150,122],[-92,339],[15,133],[-77,306],[-81,132],[-108,440],[-170,476],[-141,406],[-139,-3],[44,325],[12,206],[34,236]],[[36483,4468],[141,0],[414,127],[419,-127],[342,-255],[120,-359],[33,-254],[11,-301],[-430,-186],[-452,-150],[-522,-139],[-582,-116],[-658,35],[-365,197],[49,243],[593,162],[239,197],[174,254],[126,220],[168,209],[180,243]],[[31586,3163],[625,-23],[599,-58],[207,243],[147,208],[288,-243],[-82,-301],[-81,-266],[-582,81],[-621,-35],[-348,197],[0,23],[-152,174]],[[29468,8472],[190,70],[321,-23],[82,301],[16,219],[-6,475],[158,278],[256,93],[147,-220],[65,-220],[120,-267],[92,-254],[76,-267],[33,-266],[-49,-231],[-76,-220],[-326,-81],[-311,-116],[-364,11],[136,232],[-327,-81],[-310,-81],[-212,174],[-16,243],[305,231]],[[21575,8103],[174,104],[353,-81],[403,-46],[305,-81],[304,69],[163,-335],[-217,46],[-337,-23],[-343,23],[-376,-35],[-283,116],[-146,243]],[[15938,7061],[60,197],[332,-104],[359,-93],[332,104],[-158,-208],[-261,-151],[-386,47],[-278,208]],[[14643,7177],[202,127],[277,-139],[425,-231],[-164,23],[-359,58],[-381,162]],[[4524,4144],[169,220],[517,-93],[277,-185],[212,-209],[76,-266],[-533,-81],[-364,208],[-163,209],[-11,35],[-180,162]],[[0,529],[16,-5],[245,344],[501,-185],[32,21],[294,188],[38,-7],[32,-4],[402,-246],[352,246],[63,34],[816,104],[265,-138],[130,-71],[419,-196],[789,-151],[625,-185],[1072,-139],[800,162],[1181,-116],[669,-185],[734,174],[773,162],[60,278],[-1094,23],[-898,139],[-234,231],[-745,128],[49,266],[103,243],[104,220],[-55,243],[-462,162],[-212,209],[-430,185],[675,-35],[642,93],[402,-197],[495,173],[457,220],[223,197],[-98,243],[-359,162],[-408,174],[-571,35],[-500,81],[-539,58],[-180,220],[-359,185],[-217,208],[-87,672],[136,-58],[250,-185],[457,58],[441,81],[228,-255],[441,58],[370,127],[348,162],[315,197],[419,58],[-11,220],[-97,220],[81,208],[359,104],[163,-196],[425,115],[321,151],[397,12],[375,57],[376,139],[299,128],[337,127],[218,-35],[190,-46],[414,81],[370,-104],[381,11],[364,81],[375,-57],[414,-58],[386,23],[403,-12],[413,-11],[381,23],[283,174],[337,92],[349,-127],[331,104],[300,208],[179,-185],[98,-208],[180,-197],[288,174],[332,-220],[375,-70],[321,-162],[392,35],[354,104],[418,-23],[376,-81],[381,-104],[147,254],[-180,197],[-136,209],[-359,46],[-158,220],[-60,220],[-98,440],[213,-81],[364,-35],[359,35],[327,-93],[283,-174],[119,-208],[376,-35],[359,81],[381,116],[342,70],[283,-139],[370,46],[239,451],[224,-266],[321,-104],[348,58],[228,-232],[365,-23],[337,-69],[332,-128],[218,220],[108,209],[278,-232],[381,58],[283,-127],[190,-197],[370,58],[288,127],[283,151],[337,81],[392,69],[354,81],[272,127],[163,186],[65,254],[-32,244],[-87,231],[-98,232],[-87,231],[-71,209],[-16,231],[27,232],[130,220],[109,243],[44,231],[-55,255],[-32,232],[136,266],[152,173],[180,220],[190,186],[223,173],[109,255],[152,162],[174,151],[267,34],[174,186],[196,115],[228,70],[202,150],[157,186],[218,69],[163,-151],[-103,-196],[-283,-174],[-120,-127],[-206,92],[-229,-58],[-190,-139],[-202,-150],[-136,-174],[-38,-231],[17,-220],[130,-197],[-190,-139],[-261,-46],[-153,-197],[-163,-185],[-174,-255],[-44,-220],[98,-243],[147,-185],[229,-139],[212,-185],[114,-232],[60,-220],[82,-232],[130,-196],[82,-220],[38,-544],[81,-220],[22,-232],[87,-231],[-38,-313],[-152,-243],[-163,-197],[-370,-81],[-125,-208],[-169,-197],[-419,-220],[-370,-93],[-348,-127],[-376,-128],[-223,-243],[-446,-23],[-489,23],[-441,-46],[-468,0],[87,-232],[424,-104],[311,-162],[174,-208],[-310,-185],[-479,58],[-397,-151],[-17,-243],[-11,-232],[327,-196],[60,-220],[353,-220],[588,-93],[500,-162],[398,-185],[506,-186],[690,-92],[681,-162],[473,-174],[517,-197],[272,-278],[136,-220],[337,209],[457,173],[484,186],[577,150],[495,162],[691,12],[680,-81],[560,-139],[180,255],[386,173],[702,12],[550,127],[522,128],[577,81],[614,104],[430,150],[-196,209],[-119,208],[0,220],[-539,-23],[-571,-93],[-544,0],[-77,220],[39,440],[125,128],[397,138],[468,139],[337,174],[337,174],[251,231],[380,104],[376,81],[190,47],[430,23],[408,81],[343,116],[337,139],[305,139],[386,185],[245,197],[261,173],[82,232],[-294,139],[98,243],[185,185],[288,116],[305,139],[283,185],[217,232],[136,277],[202,163],[331,-35],[136,-197],[332,-23],[11,220],[142,231],[299,-58],[71,-220],[331,-34],[360,104],[348,69],[315,-34],[120,-243],[305,196],[283,105],[315,81],[310,81],[283,139],[310,92],[240,128],[168,208],[207,-151],[288,81],[202,-277],[157,-209],[316,116],[125,232],[283,162],[365,-35],[108,-220],[229,220],[299,69],[326,23],[294,-11],[310,-70],[300,-34],[130,-197],[180,-174],[304,104],[327,24],[315,0],[310,11],[278,81],[294,70],[245,162],[261,104],[283,58],[212,162],[152,324],[158,197],[288,-93],[109,-208],[239,-139],[289,46],[196,-208],[206,-151],[283,139],[98,255],[250,104],[289,197],[272,81],[326,116],[218,127],[228,139],[218,127],[261,-69],[250,208],[180,162],[261,-11],[229,139],[54,208],[234,162],[228,116],[278,93],[256,46],[244,-35],[262,-58],[223,-162],[27,-254],[245,-197],[168,-162],[332,-70],[185,-162],[229,-162],[266,-35],[223,116],[240,243],[261,-127],[272,-70],[261,-69],[272,-46],[277,0],[229,-614],[-11,-150],[-33,-267],[-266,-150],[-218,-220],[38,-232],[310,12],[-38,-232],[-141,-220],[-131,-243],[212,-185],[321,-58],[321,104],[153,232],[92,220],[153,185],[174,174],[70,208],[147,289],[174,58],[316,24],[277,69],[283,93],[136,231],[82,220],[190,220],[272,151],[234,115],[153,197],[157,104],[202,93],[277,-58],[250,58],[272,69],[305,-34],[201,162],[142,393],[103,-162],[131,-278],[234,-115],[266,-47],[267,70],[283,-46],[261,-12],[174,58],[234,-35],[212,-127],[250,81],[300,0],[255,81],[289,-81],[185,197],[141,196],[191,163],[348,439],[179,-81],[212,-162],[185,-208],[354,-359],[272,-12],[256,0],[299,70],[299,81],[229,162],[190,174],[310,23],[207,127],[218,-116],[141,-185],[196,-185],[305,23],[190,-150],[332,-151],[348,-58],[288,47],[218,185],[185,185],[250,46],[251,-81],[288,-58],[261,93],[250,0],[245,-58],[256,-58],[250,104],[299,93],[283,23],[316,0],[255,58],[251,46],[76,290],[11,243],[174,-162],[49,-266],[92,-244],[115,-196],[234,-105],[315,35],[365,12],[250,35],[364,0],[262,11],[364,-23],[310,-46],[196,-186],[-54,-220],[179,-173],[299,-139],[310,-151],[360,-104],[375,-92],[283,-93],[315,-12],[180,197],[245,-162],[212,-185],[245,-139],[337,-58],[321,-69],[136,-232],[316,-139],[212,-208],[310,-93],[321,12],[299,-35],[332,12],[332,-47],[310,-81],[288,-139],[289,-116],[195,-173],[-32,-232],[-147,-208],[-125,-266],[-98,-209],[-131,-243],[-364,-93],[-163,-208],[-360,-127],[-125,-232],[-190,-220],[-201,-185],[-115,-243],[-70,-220],[-28,-266],[6,-220],[158,-232],[60,-220],[130,-208],[517,-81],[109,-255],[-501,-93],[-424,-127],[-528,-23],[-234,-336],[-49,-278],[-119,-220],[-147,-220],[370,-196],[141,-244],[239,-219],[338,-197],[386,-186],[419,-185],[636,-185],[142,-289],[800,-128],[53,-45],[208,-175],[767,151],[636,-186],[479,-142],[-99999,0]],[[59092,71341],[19,3],[40,143],[200,-8],[253,176],[-188,-251],[21,-111]],[[59437,71293],[-30,21],[-53,-45],[-42,12],[-14,-22],[-5,59],[-20,37],[-54,6],[-75,-51],[-52,31]],[[59437,71293],[8,-48],[-285,-240],[-136,77],[-64,237],[132,22]],[[45272,63236],[13,274],[106,161],[91,308],[-18,200],[96,417],[155,376],[93,95],[74,344],[6,315],[100,365],[185,216],[177,603],[5,8],[139,227],[259,65],[218,404],[140,158],[232,493],[-70,735],[106,508],[37,312],[179,399],[278,270],[206,244],[186,612],[87,362],[205,-2],[167,-251],[264,41],[288,-131],[121,-6]],[[56944,63578],[0,2175],[0,2101],[-83,476],[71,365],[-43,253],[101,283]],[[56990,69231],[369,10],[268,-156],[275,-175],[129,-92],[214,188],[114,169],[245,49],[198,-75],[75,-293],[65,193],[222,-140],[217,-33],[137,149]],[[59700,68010],[-78,-238],[-60,-446],[-75,-308],[-65,-103],[-93,191],[-125,263],[-198,847],[-29,-53],[115,-624],[171,-594],[210,-920],[102,-321],[90,-334],[249,-654],[-55,-103],[9,-384],[323,-530],[49,-121]],[[53191,70158],[326,-204],[117,51],[232,-98],[368,-264],[130,-526],[250,-114],[391,-248],[296,-293],[136,153],[133,272],[-65,452],[87,288],[200,277],[192,80],[375,-121],[95,-264],[104,-2],[88,-101],[276,-70],[68,-195]],[[59804,53833],[-164,643],[-127,137],[-48,236],[-141,288],[-171,42],[95,337],[147,14],[42,181]],[[61764,57990],[-98,-261],[-94,-277],[22,-163],[4,-180],[155,-10],[67,42],[62,-106]],[[61882,57035],[-61,-209],[103,-325],[102,-285],[106,-210],[909,-702],[233,4]],[[61966,58083],[66,-183],[-9,-245],[-158,-142],[119,-161]],[[61984,57352],[-102,-317]],[[61984,57352],[91,-109],[54,-245],[125,-247],[138,-2],[262,151],[302,70],[245,184],[138,39],[99,108],[158,20]],[[58449,49909],[-166,-182],[-67,60]],[[58564,52653],[115,161],[176,-132],[224,138],[195,-1],[171,272]],[[55279,77084],[100,2],[-69,-260],[134,-227],[-41,-278],[-65,-27]],[[55338,76294],[-52,-53],[-90,-138],[-41,-325]],[[55719,75309],[35,-5],[13,121],[164,91],[62,23]],[[55993,75539],[95,35],[128,9]],[[55993,75539],[-9,44],[33,71],[31,144],[-39,-4],[-54,110],[-46,28],[-36,94],[-52,36],[-40,84],[-50,-33],[-38,-196],[-66,-43]],[[55627,75874],[22,51],[-106,123],[-91,63],[-40,82],[-74,101]],[[55380,75322],[-58,46],[-78,192],[-120,118]],[[55627,75874],[-52,-132]],[[32866,56937],[160,77],[58,-21],[-11,-440],[-232,-65],[-50,53],[81,163],[-6,233]]],\"bbox\":[-180,-85.60903777459771,180,83.64513000000001],\"transform\":{\"scale\":[0.0036000360003600037,0.0016925586033320105],\"translate\":[-180,-85.60903777459771]}}\n"
  },
  {
    "path": "freedata_gui/src/assets/countries-50m.json",
    "content": "{\"type\":\"Topology\",\"objects\":{\"countries\":{\"type\":\"GeometryCollection\",\"geometries\":[{\"type\":\"Polygon\",\"arcs\":[[0,1,2,3]],\"id\":\"716\",\"properties\":{\"name\":\"Zimbabwe\"}},{\"type\":\"Polygon\",\"arcs\":[[-3,4,5,6,7,8,9]],\"id\":\"894\",\"properties\":{\"name\":\"Zambia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[10,11,12]],[[13]],[[14]],[[15]],[[16]]],\"id\":\"887\",\"properties\":{\"name\":\"Yemen\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[17]],[[18,19,20,21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]]],\"id\":\"704\",\"properties\":{\"name\":\"Vietnam\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[28]],[[29]],[[30]],[[31]],[[32,33,34,35]]],\"id\":\"862\",\"properties\":{\"name\":\"Venezuela\"}},{\"type\":\"Polygon\",\"arcs\":[[36]],\"id\":\"336\",\"properties\":{\"name\":\"Vatican\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]]],\"id\":\"548\",\"properties\":{\"name\":\"Vanuatu\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[51,52,53,54,55],[56]],[[57]],[[58]]],\"id\":\"860\",\"properties\":{\"name\":\"Uzbekistan\"}},{\"type\":\"Polygon\",\"arcs\":[[59,60,61]],\"id\":\"858\",\"properties\":{\"name\":\"Uruguay\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[62]],[[63]],[[64]],[[65]],[[66]]],\"id\":\"583\",\"properties\":{\"name\":\"Micronesia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[67]],[[68]],[[69]],[[70]],[[71]]],\"id\":\"584\",\"properties\":{\"name\":\"Marshall Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[72]],[[73]],[[74]],[[75]],[[76]],[[77]]],\"id\":\"580\",\"properties\":{\"name\":\"N. Mariana Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[78]],[[79]],[[80]]],\"id\":\"850\",\"properties\":{\"name\":\"U.S. Virgin Is.\"}},{\"type\":\"Polygon\",\"arcs\":[[81]],\"id\":\"316\",\"properties\":{\"name\":\"Guam\"}},{\"type\":\"Polygon\",\"arcs\":[[82]],\"id\":\"016\",\"properties\":{\"name\":\"American Samoa\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[83]],[[84]],[[85]]],\"id\":\"630\",\"properties\":{\"name\":\"Puerto Rico\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102,103,104,105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164,165,166,167,168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]]],\"id\":\"840\",\"properties\":{\"name\":\"United States of America\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[220]],[[221]]],\"id\":\"239\",\"properties\":{\"name\":\"S. Geo. and the Is.\"}},{\"type\":\"Polygon\",\"arcs\":[[222]],\"id\":\"086\",\"properties\":{\"name\":\"Br. Indian Ocean Ter.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[223]],[[224]]],\"id\":\"654\",\"properties\":{\"name\":\"Saint Helena\"}},{\"type\":\"Polygon\",\"arcs\":[[225]],\"id\":\"612\",\"properties\":{\"name\":\"Pitcairn Is.\"}},{\"type\":\"Polygon\",\"arcs\":[[226]],\"id\":\"660\",\"properties\":{\"name\":\"Anguilla\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[227]],[[228]],[[229]],[[230]],[[231]],[[232]]],\"id\":\"238\",\"properties\":{\"name\":\"Falkland Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[233]],[[234]],[[235]]],\"id\":\"136\",\"properties\":{\"name\":\"Cayman Is.\"}},{\"type\":\"Polygon\",\"arcs\":[[236]],\"id\":\"060\",\"properties\":{\"name\":\"Bermuda\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[237]],[[238]],[[239]]],\"id\":\"092\",\"properties\":{\"name\":\"British Virgin Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[240]],[[241]],[[242]]],\"id\":\"796\",\"properties\":{\"name\":\"Turks and Caicos Is.\"}},{\"type\":\"Polygon\",\"arcs\":[[243]],\"id\":\"500\",\"properties\":{\"name\":\"Montserrat\"}},{\"type\":\"Polygon\",\"arcs\":[[244]],\"id\":\"832\",\"properties\":{\"name\":\"Jersey\"}},{\"type\":\"Polygon\",\"arcs\":[[245]],\"id\":\"831\",\"properties\":{\"name\":\"Guernsey\"}},{\"type\":\"Polygon\",\"arcs\":[[246]],\"id\":\"833\",\"properties\":{\"name\":\"Isle of Man\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268,269]],[[270]]],\"id\":\"826\",\"properties\":{\"name\":\"United Kingdom\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[271,272,273,274,275],[276]],[[277]],[[278]],[[279]],[[280]]],\"id\":\"784\",\"properties\":{\"name\":\"United Arab Emirates\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[281,282,283,284,285,286,287,288,289,290,291]],[[292]]],\"id\":\"804\",\"properties\":{\"name\":\"Ukraine\"}},{\"type\":\"Polygon\",\"arcs\":[[293,294,295,296,297]],\"id\":\"800\",\"properties\":{\"name\":\"Uganda\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[298]],[[-55,299,300,301,302]]],\"id\":\"795\",\"properties\":{\"name\":\"Turkmenistan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[303]],[[304,305,306,307,308,309,310]],[[311,312,313]]],\"id\":\"792\",\"properties\":{\"name\":\"Turkey\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[314,315,316]],[[317]],[[318]]],\"id\":\"788\",\"properties\":{\"name\":\"Tunisia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[319]],[[320]]],\"id\":\"780\",\"properties\":{\"name\":\"Trinidad and Tobago\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[321]],[[322]],[[323]]],\"id\":\"776\",\"properties\":{\"name\":\"Tonga\"}},{\"type\":\"Polygon\",\"arcs\":[[324,325,326,327]],\"id\":\"768\",\"properties\":{\"name\":\"Togo\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[328]],[[329,330]],[[331,332]]],\"id\":\"626\",\"properties\":{\"name\":\"Timor-Leste\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[333]],[[334]],[[335]],[[336,337,338,339,340,341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]]],\"id\":\"764\",\"properties\":{\"name\":\"Thailand\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[348]],[[349]],[[-8,350,351,352,-294,353,354,355,356]],[[357]]],\"id\":\"834\",\"properties\":{\"name\":\"Tanzania\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-53,358,359,360]],[[-57]],[[361]]],\"id\":\"762\",\"properties\":{\"name\":\"Tajikistan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[362]],[[363]]],\"id\":\"158\",\"properties\":{\"name\":\"Taiwan\"}},{\"type\":\"Polygon\",\"arcs\":[[-310,364,365,366,367,368]],\"id\":\"760\",\"properties\":{\"name\":\"Syria\"}},{\"type\":\"Polygon\",\"arcs\":[[369,370,371,372,373,374]],\"id\":\"756\",\"properties\":{\"name\":\"Switzerland\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[375]],[[376]],[[377,378,379]],[[380]],[[381]],[[382]]],\"id\":\"752\",\"properties\":{\"name\":\"Sweden\"}},{\"type\":\"Polygon\",\"arcs\":[[383,384]],\"id\":\"748\",\"properties\":{\"name\":\"eSwatini\"}},{\"type\":\"Polygon\",\"arcs\":[[385,386,387,388]],\"id\":\"740\",\"properties\":{\"name\":\"Suriname\"}},{\"type\":\"Polygon\",\"arcs\":[[-297,389,390,391,392,393]],\"id\":\"728\",\"properties\":{\"name\":\"S. Sudan\"}},{\"type\":\"Polygon\",\"arcs\":[[-392,394,395,396,397,398,399,400]],\"id\":\"729\",\"properties\":{\"name\":\"Sudan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[401]],[[402]],[[403]]],\"id\":\"144\",\"properties\":{\"name\":\"Sri Lanka\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[404]],[[405]],[[406]],[[407]],[[408,409,410,411,412,413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]]],\"id\":\"724\",\"properties\":{\"name\":\"Spain\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[421,422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]]],\"id\":\"410\",\"properties\":{\"name\":\"South Korea\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1,433,-385,434,435,436,437],[438]],[[439]]],\"id\":\"710\",\"properties\":{\"name\":\"South Africa\"}},{\"type\":\"Polygon\",\"arcs\":[[440,441,442,443]],\"id\":\"706\",\"properties\":{\"name\":\"Somalia\"}},{\"type\":\"Polygon\",\"arcs\":[[-443,444,445,446]],\"properties\":{\"name\":\"Somaliland\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]]],\"id\":\"090\",\"properties\":{\"name\":\"Solomon Is.\"}},{\"type\":\"Polygon\",\"arcs\":[[-289,468,469,470,471]],\"id\":\"703\",\"properties\":{\"name\":\"Slovakia\"}},{\"type\":\"Polygon\",\"arcs\":[[472,473,474,475,476]],\"id\":\"705\",\"properties\":{\"name\":\"Slovenia\"}},{\"type\":\"Polygon\",\"arcs\":[[477]],\"id\":\"702\",\"properties\":{\"name\":\"Singapore\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[478,479,480]],[[481]]],\"id\":\"694\",\"properties\":{\"name\":\"Sierra Leone\"}},{\"type\":\"Polygon\",\"arcs\":[[482]],\"id\":\"690\",\"properties\":{\"name\":\"Seychelles\"}},{\"type\":\"Polygon\",\"arcs\":[[483,484,485,486,487,488,489,490]],\"id\":\"688\",\"properties\":{\"name\":\"Serbia\"}},{\"type\":\"Polygon\",\"arcs\":[[491,492,493,494,495,496,497]],\"id\":\"686\",\"properties\":{\"name\":\"Senegal\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[498]],[[499]],[[-12,500,501,502,503,504,505,506,-274,507]],[[508]]],\"id\":\"682\",\"properties\":{\"name\":\"Saudi Arabia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[509]],[[510]]],\"id\":\"678\",\"properties\":{\"name\":\"São Tomé and Principe\"}},{\"type\":\"Polygon\",\"arcs\":[[511]],\"id\":\"674\",\"properties\":{\"name\":\"San Marino\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[512]],[[513]]],\"id\":\"882\",\"properties\":{\"name\":\"Samoa\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[514]],[[515]],[[516]]],\"id\":\"670\",\"properties\":{\"name\":\"St. Vin. and Gren.\"}},{\"type\":\"Polygon\",\"arcs\":[[517]],\"id\":\"662\",\"properties\":{\"name\":\"Saint Lucia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[518]],[[519]]],\"id\":\"659\",\"properties\":{\"name\":\"St. Kitts and Nevis\"}},{\"type\":\"Polygon\",\"arcs\":[[-295,-353,520,521]],\"id\":\"646\",\"properties\":{\"name\":\"Rwanda\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539,540,541,542,543,544,545,546,547,-292,548,549,550,551,552,553,554]],[[555]],[[556]],[[557]],[[558]],[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[634,635,636,637,638]],[[-283,639]]],\"id\":\"643\",\"properties\":{\"name\":\"Russia\"}},{\"type\":\"Polygon\",\"arcs\":[[-285,640,641,-491,642,-287,643]],\"id\":\"642\",\"properties\":{\"name\":\"Romania\"}},{\"type\":\"Polygon\",\"arcs\":[[-506,644]],\"id\":\"634\",\"properties\":{\"name\":\"Qatar\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[645]],[[-413,646]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[653]]],\"id\":\"620\",\"properties\":{\"name\":\"Portugal\"}},{\"type\":\"Polygon\",\"arcs\":[[-290,-472,654,655,656,657,658,-637,659,660]],\"id\":\"616\",\"properties\":{\"name\":\"Poland\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[661]],[[662]],[[663]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[702]],[[703]],[[704]],[[705]],[[706]],[[707]],[[708]]],\"id\":\"608\",\"properties\":{\"name\":\"Philippines\"}},{\"type\":\"Polygon\",\"arcs\":[[709,710,711,712,713,714]],\"id\":\"604\",\"properties\":{\"name\":\"Peru\"}},{\"type\":\"Polygon\",\"arcs\":[[715,716,717]],\"id\":\"600\",\"properties\":{\"name\":\"Paraguay\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[718]],[[719]],[[720,721]],[[722]],[[723]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]]],\"id\":\"598\",\"properties\":{\"name\":\"Papua New Guinea\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[745,746,747,748]],[[749]],[[750]],[[751]],[[752]]],\"id\":\"591\",\"properties\":{\"name\":\"Panama\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[753]],[[754]]],\"id\":\"585\",\"properties\":{\"name\":\"Palau\"}},{\"type\":\"Polygon\",\"arcs\":[[755,756,757,758,759,760]],\"id\":\"586\",\"properties\":{\"name\":\"Pakistan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[761]],[[-13,-508,-273,762]],[[-276,763]],[[-277]]],\"id\":\"512\",\"properties\":{\"name\":\"Oman\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-378,764,-554,765]],[[766]],[[767]],[[768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]]],\"id\":\"578\",\"properties\":{\"name\":\"Norway\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-422,797,798,-540,799]],[[800]]],\"id\":\"408\",\"properties\":{\"name\":\"North Korea\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[801]],[[802,803,804,805,806]]],\"id\":\"566\",\"properties\":{\"name\":\"Nigeria\"}},{\"type\":\"Polygon\",\"arcs\":[[-807,807,808,809,810,811,812]],\"id\":\"562\",\"properties\":{\"name\":\"Niger\"}},{\"type\":\"Polygon\",\"arcs\":[[813,814,815,816]],\"id\":\"558\",\"properties\":{\"name\":\"Nicaragua\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[817]],[[818]],[[819]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]]],\"id\":\"554\",\"properties\":{\"name\":\"New Zealand\"}},{\"type\":\"Polygon\",\"arcs\":[[830]],\"id\":\"570\",\"properties\":{\"name\":\"Niue\"}},{\"type\":\"Polygon\",\"arcs\":[[831]],\"id\":\"184\",\"properties\":{\"name\":\"Cook Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[832,833,834]],[[835,836]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]]],\"id\":\"528\",\"properties\":{\"name\":\"Netherlands\"}},{\"type\":\"Polygon\",\"arcs\":[[847]],\"id\":\"533\",\"properties\":{\"name\":\"Aruba\"}},{\"type\":\"Polygon\",\"arcs\":[[848]],\"id\":\"531\",\"properties\":{\"name\":\"Curaçao\"}},{\"type\":\"Polygon\",\"arcs\":[[849,850]],\"id\":\"524\",\"properties\":{\"name\":\"Nepal\"}},{\"type\":\"Polygon\",\"arcs\":[[851]],\"id\":\"520\",\"properties\":{\"name\":\"Nauru\"}},{\"type\":\"Polygon\",\"arcs\":[[-5,852,-437,853,854]],\"id\":\"516\",\"properties\":{\"name\":\"Namibia\"}},{\"type\":\"Polygon\",\"arcs\":[[-4,-10,855,-356,856,-435,-384,-434],[857],[858]],\"id\":\"508\",\"properties\":{\"name\":\"Mozambique\"}},{\"type\":\"Polygon\",\"arcs\":[[859,860,861]],\"id\":\"504\",\"properties\":{\"name\":\"Morocco\"}},{\"type\":\"Polygon\",\"arcs\":[[862,863,864,-861]],\"id\":\"732\",\"properties\":{\"name\":\"W. Sahara\"}},{\"type\":\"Polygon\",\"arcs\":[[-487,865,866,867,868,869]],\"id\":\"499\",\"properties\":{\"name\":\"Montenegro\"}},{\"type\":\"Polygon\",\"arcs\":[[-542,870]],\"id\":\"496\",\"properties\":{\"name\":\"Mongolia\"}},{\"type\":\"Polygon\",\"arcs\":[[-286,-644]],\"id\":\"498\",\"properties\":{\"name\":\"Moldova\"}},{\"type\":\"Polygon\",\"arcs\":[[871,872]],\"id\":\"492\",\"properties\":{\"name\":\"Monaco\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-167,873,874,875,876]],[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[891]]],\"id\":\"484\",\"properties\":{\"name\":\"Mexico\"}},{\"type\":\"Polygon\",\"arcs\":[[892]],\"id\":\"480\",\"properties\":{\"name\":\"Mauritius\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[893]],[[-498,894,-864,895,896]]],\"id\":\"478\",\"properties\":{\"name\":\"Mauritania\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[897]],[[898]]],\"id\":\"470\",\"properties\":{\"name\":\"Malta\"}},{\"type\":\"Polygon\",\"arcs\":[[-492,-897,899,-810,900,901,902]],\"id\":\"466\",\"properties\":{\"name\":\"Mali\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[903]],[[904]]],\"id\":\"462\",\"properties\":{\"name\":\"Maldives\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-340,905]],[[906,907,908,909,910]],[[911]],[[912]],[[913]],[[914]],[[915]],[[916]],[[917,918]]],\"id\":\"458\",\"properties\":{\"name\":\"Malaysia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-859]],[[-858]],[[-9,-357,-856]]],\"id\":\"454\",\"properties\":{\"name\":\"Malawi\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[919]],[[920]],[[921]]],\"id\":\"450\",\"properties\":{\"name\":\"Madagascar\"}},{\"type\":\"Polygon\",\"arcs\":[[-485,922,923,924,925]],\"id\":\"807\",\"properties\":{\"name\":\"Macedonia\"}},{\"type\":\"Polygon\",\"arcs\":[[926,927,928]],\"id\":\"442\",\"properties\":{\"name\":\"Luxembourg\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-639,929]],[[-636,930,931,932,-660]]],\"id\":\"440\",\"properties\":{\"name\":\"Lithuania\"}},{\"type\":\"Polygon\",\"arcs\":[[-371,933]],\"id\":\"438\",\"properties\":{\"name\":\"Liechtenstein\"}},{\"type\":\"Polygon\",\"arcs\":[[-315,934,935,-397,936,-812,937]],\"id\":\"434\",\"properties\":{\"name\":\"Libya\"}},{\"type\":\"Polygon\",\"arcs\":[[-479,938,939,940]],\"id\":\"430\",\"properties\":{\"name\":\"Liberia\"}},{\"type\":\"Polygon\",\"arcs\":[[-439]],\"id\":\"426\",\"properties\":{\"name\":\"Lesotho\"}},{\"type\":\"Polygon\",\"arcs\":[[-368,941,942]],\"id\":\"422\",\"properties\":{\"name\":\"Lebanon\"}},{\"type\":\"Polygon\",\"arcs\":[[-932,943,944,-550,945]],\"id\":\"428\",\"properties\":{\"name\":\"Latvia\"}},{\"type\":\"Polygon\",\"arcs\":[[-21,946,-337,947,948]],\"id\":\"418\",\"properties\":{\"name\":\"Laos\"}},{\"type\":\"Polygon\",\"arcs\":[[-52,949,950,-359],[-58],[-59],[-362]],\"id\":\"417\",\"properties\":{\"name\":\"Kyrgyzstan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[951]],[[-504,952,953]]],\"id\":\"414\",\"properties\":{\"name\":\"Kuwait\"}},{\"type\":\"Polygon\",\"arcs\":[[-486,-926,954,-866]],\"properties\":{\"name\":\"Kosovo\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[955]],[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]]],\"id\":\"296\",\"properties\":{\"name\":\"Kiribati\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[974]],[[-298,-394,975,-441,976,-354]]],\"id\":\"404\",\"properties\":{\"name\":\"Kenya\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[977]],[[978]],[[979]],[[-56,-303,980,-544,981,-950]]],\"id\":\"398\",\"properties\":{\"name\":\"Kazakhstan\"}},{\"type\":\"Polygon\",\"arcs\":[[-366,982,-502,983,984,985,986]],\"id\":\"400\",\"properties\":{\"name\":\"Jordan\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]]],\"id\":\"392\",\"properties\":{\"name\":\"Japan\"}},{\"type\":\"Polygon\",\"arcs\":[[1021]],\"id\":\"388\",\"properties\":{\"name\":\"Jamaica\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-373,1022,-475,1023,1024],[-37],[-512]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]]],\"id\":\"380\",\"properties\":{\"name\":\"Italy\"}},{\"type\":\"Polygon\",\"arcs\":[[-367,-987,1032,-985,1033,1034,1035,1036,-942]],\"id\":\"376\",\"properties\":{\"name\":\"Israel\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1036,1037,1038]],[[-986,-1033]]],\"id\":\"275\",\"properties\":{\"name\":\"Palestine\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1039]],[[-269,1040]]],\"id\":\"372\",\"properties\":{\"name\":\"Ireland\"}},{\"type\":\"Polygon\",\"arcs\":[[-309,1041,1042,-953,-503,-983,-365]],\"id\":\"368\",\"properties\":{\"name\":\"Iraq\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1043]],[[-301,1044,-759,1045,-1042,-308,1046,1047,1048,1049]]],\"id\":\"364\",\"properties\":{\"name\":\"Iran\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1050]],[[1051]],[[1052]],[[1053]],[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[-907,1077]],[[1078]],[[1079]],[[1080]],[[-330,1081,-333,1082]],[[1083]],[[1084]],[[1085]],[[-721,1086]],[[1087]],[[1088]],[[1089]],[[1090]],[[1091]],[[1092]],[[1093]],[[1094]],[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1100]],[[1101]],[[1102]],[[1103]],[[1104]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116]],[[1117]],[[1118]],[[1119]],[[1120]],[[1121]],[[1122]],[[1123]],[[1124]],[[1125]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141]],[[1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[-918,1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1174]],[[1175]],[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182]],[[1183]]],\"id\":\"360\",\"properties\":{\"name\":\"Indonesia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-757,1184,1185,-850,1186,1187,1188,1189,1190,1191]],[[1192]],[[1193]],[[1194]],[[1195]],[[1196]],[[1197]],[[1198]],[[1199]],[[1200]],[[1201]],[[1202]],[[1203]],[[1204]]],\"id\":\"356\",\"properties\":{\"name\":\"India\"}},{\"type\":\"Polygon\",\"arcs\":[[1205]],\"id\":\"352\",\"properties\":{\"name\":\"Iceland\"}},{\"type\":\"Polygon\",\"arcs\":[[-288,-643,-490,1206,-477,1207,-469]],\"id\":\"348\",\"properties\":{\"name\":\"Hungary\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-817,1208,1209,1210,1211]],[[1212]],[[1213]]],\"id\":\"340\",\"properties\":{\"name\":\"Honduras\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1214,1215]],[[1216]],[[1217]]],\"id\":\"332\",\"properties\":{\"name\":\"Haiti\"}},{\"type\":\"Polygon\",\"arcs\":[[-33,1218,-388,1219]],\"id\":\"328\",\"properties\":{\"name\":\"Guyana\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-494,1220,1221]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[1227]]],\"id\":\"624\",\"properties\":{\"name\":\"Guinea-Bissau\"}},{\"type\":\"Polygon\",\"arcs\":[[-481,1228,-1221,-493,-903,1229,-939]],\"id\":\"324\",\"properties\":{\"name\":\"Guinea\"}},{\"type\":\"Polygon\",\"arcs\":[[-876,1230,1231,-1211,1232,1233]],\"id\":\"320\",\"properties\":{\"name\":\"Guatemala\"}},{\"type\":\"Polygon\",\"arcs\":[[1234]],\"id\":\"308\",\"properties\":{\"name\":\"Grenada\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1235]],[[1236]],[[1237]],[[1238]],[[1239]],[[1240]],[[1241]],[[1242]],[[1243]],[[1244]],[[1245]],[[1246]],[[1247]],[[1248]],[[1249]],[[1250]],[[1251]],[[1252]],[[1253]],[[1254]],[[1255]],[[1256]],[[1257]],[[1258]],[[1259]],[[1260]],[[1261]],[[1262]],[[1263]],[[1264]],[[1265]],[[1266]],[[1267]],[[1268]],[[1269]],[[1270]],[[1271]],[[1272]],[[1273]],[[-313,1274,1275,-924,1276]]],\"id\":\"300\",\"properties\":{\"name\":\"Greece\"}},{\"type\":\"Polygon\",\"arcs\":[[-327,1277,1278,1279,1280,1281]],\"id\":\"288\",\"properties\":{\"name\":\"Ghana\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-375,1282,-927,1283,-835,1284,1285,1286,-656,1287,1288]],[[1289]],[[-658,1290]],[[1291]],[[1292]],[[1293]]],\"id\":\"276\",\"properties\":{\"name\":\"Germany\"}},{\"type\":\"Polygon\",\"arcs\":[[-305,1294,-547,1295,1296]],\"id\":\"268\",\"properties\":{\"name\":\"Georgia\"}},{\"type\":\"Polygon\",\"arcs\":[[-496,1297]],\"id\":\"270\",\"properties\":{\"name\":\"Gambia\"}},{\"type\":\"Polygon\",\"arcs\":[[1298,1299,1300,1301]],\"id\":\"266\",\"properties\":{\"name\":\"Gabon\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1302]],[[-374,-1025,1303,-873,1304,-411,1305,-409,1306,1307,-928,-1283]],[[1308]],[[1309]],[[1310]],[[1311]],[[1312]],[[1313]],[[1314]],[[-386,1315,1316]]],\"id\":\"250\",\"properties\":{\"name\":\"France\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1317]],[[1318]]],\"id\":\"666\",\"properties\":{\"name\":\"St. Pierre and Miquelon\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1319]],[[1320]]],\"id\":\"876\",\"properties\":{\"name\":\"Wallis and Futuna Is.\"}},{\"type\":\"Polygon\",\"arcs\":[[1321,1322]],\"id\":\"663\",\"properties\":{\"name\":\"St-Martin\"}},{\"type\":\"Polygon\",\"arcs\":[[1323]],\"id\":\"652\",\"properties\":{\"name\":\"St-Barthélemy\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1324]],[[1325]],[[1326]],[[1327]],[[1328]],[[1329]],[[1330]],[[1331]],[[1332]],[[1333]],[[1334]],[[1335]],[[1336]],[[1337]],[[1338]],[[1339]],[[1340]],[[1341]],[[1342]],[[1343]],[[1344]]],\"id\":\"258\",\"properties\":{\"name\":\"Fr. Polynesia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1345]],[[1346]],[[1347]],[[1348]],[[1349]],[[1350]]],\"id\":\"540\",\"properties\":{\"name\":\"New Caledonia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1351]],[[1352]],[[1353]]],\"id\":\"260\",\"properties\":{\"name\":\"Fr. S. Antarctic Lands\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1354]],[[1355]],[[1356]]],\"id\":\"248\",\"properties\":{\"name\":\"Åland\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-379,-766,-553,1357]],[[1358]],[[1359]],[[1360]],[[1361]],[[1362]],[[1363]],[[1364]]],\"id\":\"246\",\"properties\":{\"name\":\"Finland\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1365]],[[1366]],[[1367]],[[1368]],[[1369]],[[1370]],[[1371]],[[1372]],[[1373]],[[1374]],[[1375]],[[1376]],[[1377]],[[1378]],[[1379]],[[1380]],[[1381]],[[1382]],[[1383]],[[1384]]],\"id\":\"242\",\"properties\":{\"name\":\"Fiji\"}},{\"type\":\"Polygon\",\"arcs\":[[-393,-401,1385,1386,-445,-442,-976]],\"id\":\"231\",\"properties\":{\"name\":\"Ethiopia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-945,1387,-551]],[[1388]],[[1389]],[[1390]]],\"id\":\"233\",\"properties\":{\"name\":\"Estonia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-400,1391,1392,-1386]],[[1393]],[[1394]]],\"id\":\"232\",\"properties\":{\"name\":\"Eritrea\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1395]],[[-1301,1396,1397]]],\"id\":\"226\",\"properties\":{\"name\":\"Eq. Guinea\"}},{\"type\":\"Polygon\",\"arcs\":[[-1210,1398,-1233]],\"id\":\"222\",\"properties\":{\"name\":\"El Salvador\"}},{\"type\":\"Polygon\",\"arcs\":[[-398,-936,1399,-1038,-1035,1400]],\"id\":\"818\",\"properties\":{\"name\":\"Egypt\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-714,1401,1402]],[[1403]],[[1404]],[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[1410]]],\"id\":\"218\",\"properties\":{\"name\":\"Ecuador\"}},{\"type\":\"Polygon\",\"arcs\":[[-1215,1411]],\"id\":\"214\",\"properties\":{\"name\":\"Dominican Rep.\"}},{\"type\":\"Polygon\",\"arcs\":[[1412]],\"id\":\"212\",\"properties\":{\"name\":\"Dominica\"}},{\"type\":\"Polygon\",\"arcs\":[[-446,-1387,-1393,1413]],\"id\":\"262\",\"properties\":{\"name\":\"Djibouti\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1414]],[[1415]],[[1416]],[[1417]],[[1418]],[[1419]],[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[1428]],[[1429]],[[1430]]],\"id\":\"304\",\"properties\":{\"name\":\"Greenland\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1431]],[[1432]],[[1433]],[[1434]],[[1435]]],\"id\":\"234\",\"properties\":{\"name\":\"Faeroe Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1436]],[[-1286,1437]],[[1438]],[[1439]],[[1440]],[[1441]],[[1442]],[[1443]],[[1444]],[[1445]],[[1446]],[[1447]]],\"id\":\"208\",\"properties\":{\"name\":\"Denmark\"}},{\"type\":\"Polygon\",\"arcs\":[[-471,1448,-1288,-655]],\"id\":\"203\",\"properties\":{\"name\":\"Czechia\"}},{\"type\":\"Polygon\",\"arcs\":[[1449,1450]],\"properties\":{\"name\":\"N. Cyprus\"}},{\"type\":\"Polygon\",\"arcs\":[[-1450,1451]],\"id\":\"196\",\"properties\":{\"name\":\"Cyprus\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1452]],[[1453]],[[1454]],[[1455]],[[1456]],[[1457]],[[1458]]],\"id\":\"192\",\"properties\":{\"name\":\"Cuba\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-473,-1207,-489,1459,1460]],[[1461]],[[1462]],[[1463]],[[1464]],[[1465]],[[1466]],[[1467]],[[1468]],[[1469]],[[1470]],[[1471]],[[-869,1472,1473]]],\"id\":\"191\",\"properties\":{\"name\":\"Croatia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1279,1474]],[[-902,1475,-1281,1476,-940,-1230]]],\"id\":\"384\",\"properties\":{\"name\":\"Côte d'Ivoire\"}},{\"type\":\"Polygon\",\"arcs\":[[-748,1477,-815,1478]],\"id\":\"188\",\"properties\":{\"name\":\"Costa Rica\"}},{\"type\":\"Polygon\",\"arcs\":[[-7,1479,1480,1481,1482,1483,-390,-296,-522,1484,-351]],\"id\":\"180\",\"properties\":{\"name\":\"Dem. Rep. Congo\"}},{\"type\":\"Polygon\",\"arcs\":[[-1299,1485,1486,-1483,1487,1488]],\"id\":\"178\",\"properties\":{\"name\":\"Congo\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1489]],[[1490]],[[1491]]],\"id\":\"174\",\"properties\":{\"name\":\"Comoros\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-35,1492,-715,-1403,1493,-746,1494]],[[1495]]],\"id\":\"170\",\"properties\":{\"name\":\"Colombia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1496]],[[1497]],[[1498]],[[1499]],[[1500]],[[1501]],[[1502]],[[1503]],[[1504]],[[1505]],[[1506]],[[-22,-949,1507,-1189,1508,-1187,-851,-1186,1509,-761,1510,-360,-951,-982,-543,-871,-541,-799,1511,1512,1513,1514,1515]],[[1516]]],\"id\":\"156\",\"properties\":{\"name\":\"China\"}},{\"type\":\"Polygon\",\"arcs\":[[-1515,1517]],\"id\":\"446\",\"properties\":{\"name\":\"Macao\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1513,1518]],[[1519]],[[1520]]],\"id\":\"344\",\"properties\":{\"name\":\"Hong Kong\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1521]],[[1522]],[[-712,1523,1524,1525]],[[1526,1527]],[[1528]],[[1529]],[[1530]],[[1531]],[[1532]],[[1533]],[[1534]],[[1535]],[[1536]],[[1537]],[[1538]],[[1539]],[[1540]],[[1541]],[[1542]],[[1543]],[[1544]],[[1545]],[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]]],\"id\":\"152\",\"properties\":{\"name\":\"Chile\"}},{\"type\":\"Polygon\",\"arcs\":[[-396,1555,1556,-803,-813,-937]],\"id\":\"148\",\"properties\":{\"name\":\"Chad\"}},{\"type\":\"Polygon\",\"arcs\":[[-391,-1484,-1487,1557,-1556,-395]],\"id\":\"140\",\"properties\":{\"name\":\"Central African Rep.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1558]],[[1559]],[[1560]],[[1561]],[[1562]],[[1563]],[[1564]],[[1565]]],\"id\":\"132\",\"properties\":{\"name\":\"Cabo Verde\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1566]],[[1567]],[[1568]],[[-106,1569,-169,1570]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]],[[1577]],[[1578]],[[1579]],[[1580]],[[1581]],[[1582]],[[1583]],[[1584]],[[1585]],[[1586]],[[1587]],[[1588]],[[1589]],[[-165,1590]],[[1591]],[[1592]],[[1593]],[[1594]],[[1595]],[[1596]],[[1597]],[[1598]],[[1599]],[[1600]],[[1601]],[[1602]],[[1603]],[[1604]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]],[[1611]],[[1612]],[[1613]],[[1614]],[[-104,1615]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1651]],[[1652]],[[1653]],[[1654]],[[1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1668]],[[1669]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688]],[[1689]],[[1690]],[[1691]],[[1692]],[[1693]],[[1694]],[[1695]],[[1696]],[[1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703]],[[1704]],[[1705]],[[1706]],[[1707]]],\"id\":\"124\",\"properties\":{\"name\":\"Canada\"}},{\"type\":\"Polygon\",\"arcs\":[[-804,-1557,-1558,-1486,-1302,-1398,1708]],\"id\":\"120\",\"properties\":{\"name\":\"Cameroon\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1709]],[[1710]],[[-20,1711,-338,-947]]],\"id\":\"116\",\"properties\":{\"name\":\"Cambodia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-342,1712,1713,-1190,-1508,-948]],[[1714]],[[1715]],[[1716]],[[1717]],[[1718]],[[1719]],[[1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1729]],[[1730]],[[1731]]],\"id\":\"104\",\"properties\":{\"name\":\"Myanmar\"}},{\"type\":\"Polygon\",\"arcs\":[[-352,-1485,-521]],\"id\":\"108\",\"properties\":{\"name\":\"Burundi\"}},{\"type\":\"Polygon\",\"arcs\":[[-328,-1282,-1476,-901,-809,1732]],\"id\":\"854\",\"properties\":{\"name\":\"Burkina Faso\"}},{\"type\":\"Polygon\",\"arcs\":[[-314,-1277,-923,-484,-642,1733]],\"id\":\"100\",\"properties\":{\"name\":\"Bulgaria\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-910,1734]],[[-909,1735]]],\"id\":\"096\",\"properties\":{\"name\":\"Brunei\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-34,-1220,-387,-1317,1736,-62,1737,-716,1738,-710,-1493]],[[1739]],[[1740]],[[1741]],[[1742]],[[1743]],[[1744]],[[1745]],[[1746]],[[1747]],[[1748]],[[1749]],[[1750]],[[1751]],[[1752]],[[1753]],[[1754]]],\"id\":\"076\",\"properties\":{\"name\":\"Brazil\"}},{\"type\":\"Polygon\",\"arcs\":[[-2,-438,-853]],\"id\":\"072\",\"properties\":{\"name\":\"Botswana\"}},{\"type\":\"Polygon\",\"arcs\":[[-870,-1474,1755,-1460,-488]],\"id\":\"070\",\"properties\":{\"name\":\"Bosnia and Herz.\"}},{\"type\":\"Polygon\",\"arcs\":[[-711,-1739,-718,1756,-1524]],\"id\":\"068\",\"properties\":{\"name\":\"Bolivia\"}},{\"type\":\"Polygon\",\"arcs\":[[-1188,-1509]],\"id\":\"064\",\"properties\":{\"name\":\"Bhutan\"}},{\"type\":\"Polygon\",\"arcs\":[[-325,-1733,-808,-806,1757]],\"id\":\"204\",\"properties\":{\"name\":\"Benin\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-875,1758,-1231]],[[1759]],[[1760]]],\"id\":\"084\",\"properties\":{\"name\":\"Belize\"}},{\"type\":\"Polygon\",\"arcs\":[[-833,-1284,-929,-1308,1761,-836]],\"id\":\"056\",\"properties\":{\"name\":\"Belgium\"}},{\"type\":\"Polygon\",\"arcs\":[[-291,-661,-933,-946,-549]],\"id\":\"112\",\"properties\":{\"name\":\"Belarus\"}},{\"type\":\"Polygon\",\"arcs\":[[1762]],\"id\":\"052\",\"properties\":{\"name\":\"Barbados\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1191,-1714,1763]],[[1764]],[[1765]],[[1766]],[[1767]],[[1768]],[[1769]]],\"id\":\"050\",\"properties\":{\"name\":\"Bangladesh\"}},{\"type\":\"Polygon\",\"arcs\":[[1770]],\"id\":\"048\",\"properties\":{\"name\":\"Bahrain\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1771]],[[1772]],[[1773]],[[1774]],[[1775]],[[1776]],[[1777]],[[1778]],[[1779]],[[1780]],[[1781]],[[1782]],[[1783]],[[1784]],[[1785]]],\"id\":\"044\",\"properties\":{\"name\":\"Bahamas\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-307,1786,-1047]],[[-1049,1787,-1296,-546,1788],[1789]],[[1790]]],\"id\":\"031\",\"properties\":{\"name\":\"Azerbaijan\"}},{\"type\":\"Polygon\",\"arcs\":[[-370,-1289,-1449,-470,-1208,-476,-1023,-372,-934]],\"id\":\"040\",\"properties\":{\"name\":\"Austria\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1791]],[[1792]],[[1793]],[[1794]],[[1795]],[[1796]],[[1797]],[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[1812]],[[1813]],[[1814]],[[1815]],[[1816]],[[1817]],[[1818]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]],[[1830]],[[1831]],[[1832]]],\"id\":\"036\",\"properties\":{\"name\":\"Australia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1833]],[[1834]],[[1835]]],\"properties\":{\"name\":\"Indian Ocean Ter.\"}},{\"type\":\"Polygon\",\"arcs\":[[1836]],\"id\":\"334\",\"properties\":{\"name\":\"Heard I. and McDonald Is.\"}},{\"type\":\"Polygon\",\"arcs\":[[1837]],\"id\":\"574\",\"properties\":{\"name\":\"Norfolk Island\"}},{\"type\":\"Polygon\",\"arcs\":[[1838]],\"id\":\"036\",\"properties\":{\"name\":\"Ashmore and Cartier Is.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-306,-1297,-1788,-1048,-1787],[-1791]],[[-1790]]],\"id\":\"051\",\"properties\":{\"name\":\"Armenia\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-61,1839,-1525,-1757,-717,-1738]],[[-1527,1840]],[[1841]],[[1842]]],\"id\":\"032\",\"properties\":{\"name\":\"Argentina\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1843]],[[1844]]],\"id\":\"028\",\"properties\":{\"name\":\"Antigua and Barb.\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[-1482,1845,-1488]],[[-6,-855,1846,-1480]]],\"id\":\"024\",\"properties\":{\"name\":\"Angola\"}},{\"type\":\"Polygon\",\"arcs\":[[-410,-1306]],\"id\":\"020\",\"properties\":{\"name\":\"Andorra\"}},{\"type\":\"Polygon\",\"arcs\":[[-316,-938,-811,-900,-896,-863,-860,1847]],\"id\":\"012\",\"properties\":{\"name\":\"Algeria\"}},{\"type\":\"Polygon\",\"arcs\":[[-867,-955,-925,-1276,1848]],\"id\":\"008\",\"properties\":{\"name\":\"Albania\"}},{\"type\":\"Polygon\",\"arcs\":[[-54,-361,-1511,-760,-1045,-300]],\"id\":\"004\",\"properties\":{\"name\":\"Afghanistan\"}},{\"type\":\"Polygon\",\"arcs\":[[-756,-1510,-1185]],\"properties\":{\"name\":\"Siachen Glacier\"}},{\"type\":\"MultiPolygon\",\"arcs\":[[[1849]],[[1850]],[[1851],[1852]],[[1853]],[[1854]],[[1855]],[[1856]],[[1857]],[[1858]],[[1859]],[[1860]],[[1861]],[[1862]],[[1863]],[[1864]],[[1865]],[[1866]],[[1867]],[[1868]],[[1869]],[[1870]],[[1871]],[[1872]],[[1873]],[[1874]],[[1875]],[[1876]],[[1877]],[[1878]],[[1879]],[[1880]],[[1881]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]],[[1905]],[[1906]],[[1907]],[[1908]],[[1909]],[[1910]],[[1911]],[[1912]],[[1913]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]],[[1924]],[[1925]],[[1926]],[[1927]],[[1928]],[[1929]],[[1930]],[[1931]],[[1932]],[[1933]],[[1934]],[[1935]],[[1936]],[[1937]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[1944]],[[1945]],[[1946]],[[1947]],[[1948]],[[1949]],[[1950]],[[1951]],[[1952]],[[1953]],[[1954]],[[1955]],[[1956]],[[1957]]],\"id\":\"010\",\"properties\":{\"name\":\"Antarctica\"}},{\"type\":\"Polygon\",\"arcs\":[[-1322,1958]],\"id\":\"534\",\"properties\":{\"name\":\"Sint Maarten\"}}]},\"land\":{\"type\":\"GeometryCollection\",\"geometries\":[{\"type\":\"MultiPolygon\",\"arcs\":[[[853,1846,1480,1845,1488,1299,1396,1708,804,1757,325,1277,1474,1279,1476,940,479,1228,1221,494,1297,496,894,864,861,1847,316,934,1399,1038,1036,942,368,310,1294,547,281,639,283,640,1733,311,1274,1848,867,1472,1755,1460,473,1023,1303,871,1304,411,646,413,1306,1761,836,833,1284,1437,1286,656,1290,658,637,929,634,930,943,1387,551,1357,379,764,554,799,422,797,1511,1518,1513,1517,1515,18,1711,338,905,340,1712,1763,1191,757,1045,1042,953,504,644,506,274,763,271,762,10,500,983,1033,1400,398,1391,1413,446,443,976,354,856,435],[980,544,1788,1049,301]],[[13]],[[14]],[[15]],[[16]],[[17]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[388,1315,1736,59,1839,1525,712,1401,1493,746,1477,815,1208,1398,1233,876,167,1570,102,1615,104,1569,1590,165,873,1758,1231,1211,813,1478,748,1494,35,1218]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[269,1040]],[[270]],[[277]],[[278]],[[279]],[[280]],[[292]],[[298]],[[303]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[328]],[[1082,330,1081,331]],[[333]],[[334]],[[335]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[357]],[[362]],[[363]],[[375]],[[376]],[[380]],[[381]],[[382]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[439]],[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[477]],[[481]],[[482]],[[498]],[[499]],[[508]],[[509]],[[510]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[555]],[[556]],[[557]],[[558]],[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[645]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[653]],[[661]],[[662]],[[663]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[702]],[[703]],[[704]],[[705]],[[706]],[[707]],[[708]],[[718]],[[719]],[[721,1086]],[[722]],[[723]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[761]],[[766]],[[767]],[[768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[800]],[[801]],[[817]],[[818]],[[819]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830]],[[831]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[851]],[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[891]],[[892]],[[893]],[[897]],[[898]],[[903]],[[904]],[[907,1735,1734,910,1077]],[[911]],[[912]],[[913]],[[914]],[[915]],[[916]],[[918,1153]],[[919]],[[920]],[[921]],[[951]],[[955]],[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]],[[974]],[[977]],[[978]],[[979]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1039]],[[1043]],[[1050]],[[1051]],[[1052]],[[1053]],[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[1078]],[[1079]],[[1080]],[[1083]],[[1084]],[[1085]],[[1087]],[[1088]],[[1089]],[[1090]],[[1091]],[[1092]],[[1093]],[[1094]],[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1100]],[[1101]],[[1102]],[[1103]],[[1104]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116]],[[1117]],[[1118]],[[1119]],[[1120]],[[1121]],[[1122]],[[1123]],[[1124]],[[1125]],[[1126]],[[1127]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141]],[[1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1174]],[[1175]],[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182]],[[1183]],[[1192]],[[1193]],[[1194]],[[1195]],[[1196]],[[1197]],[[1198]],[[1199]],[[1200]],[[1201]],[[1202]],[[1203]],[[1204]],[[1205]],[[1212]],[[1213]],[[1215,1411]],[[1216]],[[1217]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[1227]],[[1234]],[[1235]],[[1236]],[[1237]],[[1238]],[[1239]],[[1240]],[[1241]],[[1242]],[[1243]],[[1244]],[[1245]],[[1246]],[[1247]],[[1248]],[[1249]],[[1250]],[[1251]],[[1252]],[[1253]],[[1254]],[[1255]],[[1256]],[[1257]],[[1258]],[[1259]],[[1260]],[[1261]],[[1262]],[[1263]],[[1264]],[[1265]],[[1266]],[[1267]],[[1268]],[[1269]],[[1270]],[[1271]],[[1272]],[[1273]],[[1289]],[[1291]],[[1292]],[[1293]],[[1302]],[[1308]],[[1309]],[[1310]],[[1311]],[[1312]],[[1313]],[[1314]],[[1317]],[[1318]],[[1319]],[[1320]],[[1322,1958]],[[1323]],[[1324]],[[1325]],[[1326]],[[1327]],[[1328]],[[1329]],[[1330]],[[1331]],[[1332]],[[1333]],[[1334]],[[1335]],[[1336]],[[1337]],[[1338]],[[1339]],[[1340]],[[1341]],[[1342]],[[1343]],[[1344]],[[1345]],[[1346]],[[1347]],[[1348]],[[1349]],[[1350]],[[1351]],[[1352]],[[1353]],[[1354]],[[1355]],[[1356]],[[1358]],[[1359]],[[1360]],[[1361]],[[1362]],[[1363]],[[1364]],[[1365]],[[1366]],[[1367]],[[1368]],[[1369]],[[1370]],[[1371]],[[1372]],[[1373]],[[1374]],[[1375]],[[1376]],[[1377]],[[1378]],[[1379]],[[1380]],[[1381]],[[1382]],[[1383]],[[1384]],[[1388]],[[1389]],[[1390]],[[1393]],[[1394]],[[1395]],[[1403]],[[1404]],[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[1410]],[[1412]],[[1414]],[[1415]],[[1416]],[[1417]],[[1418]],[[1419]],[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[1428]],[[1429]],[[1430]],[[1431]],[[1432]],[[1433]],[[1434]],[[1435]],[[1436]],[[1438]],[[1439]],[[1440]],[[1441]],[[1442]],[[1443]],[[1444]],[[1445]],[[1446]],[[1447]],[[1450,1451]],[[1452]],[[1453]],[[1454]],[[1455]],[[1456]],[[1457]],[[1458]],[[1461]],[[1462]],[[1463]],[[1464]],[[1465]],[[1466]],[[1467]],[[1468]],[[1469]],[[1470]],[[1471]],[[1489]],[[1490]],[[1491]],[[1495]],[[1496]],[[1497]],[[1498]],[[1499]],[[1500]],[[1501]],[[1502]],[[1503]],[[1504]],[[1505]],[[1506]],[[1516]],[[1519]],[[1520]],[[1521]],[[1522]],[[1527,1840]],[[1528]],[[1529]],[[1530]],[[1531]],[[1532]],[[1533]],[[1534]],[[1535]],[[1536]],[[1537]],[[1538]],[[1539]],[[1540]],[[1541]],[[1542]],[[1543]],[[1544]],[[1545]],[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]],[[1558]],[[1559]],[[1560]],[[1561]],[[1562]],[[1563]],[[1564]],[[1565]],[[1566]],[[1567]],[[1568]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]],[[1577]],[[1578]],[[1579]],[[1580]],[[1581]],[[1582]],[[1583]],[[1584]],[[1585]],[[1586]],[[1587]],[[1588]],[[1589]],[[1591]],[[1592]],[[1593]],[[1594]],[[1595]],[[1596]],[[1597]],[[1598]],[[1599]],[[1600]],[[1601]],[[1602]],[[1603]],[[1604]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]],[[1611]],[[1612]],[[1613]],[[1614]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1651]],[[1652]],[[1653]],[[1654]],[[1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1668]],[[1669]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688]],[[1689]],[[1690]],[[1691]],[[1692]],[[1693]],[[1694]],[[1695]],[[1696]],[[1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703]],[[1704]],[[1705]],[[1706]],[[1707]],[[1709]],[[1710]],[[1714]],[[1715]],[[1716]],[[1717]],[[1718]],[[1719]],[[1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1729]],[[1730]],[[1731]],[[1739]],[[1740]],[[1741]],[[1742]],[[1743]],[[1744]],[[1745]],[[1746]],[[1747]],[[1748]],[[1749]],[[1750]],[[1751]],[[1752]],[[1753]],[[1754]],[[1759]],[[1760]],[[1762]],[[1764]],[[1765]],[[1766]],[[1767]],[[1768]],[[1769]],[[1770]],[[1771]],[[1772]],[[1773]],[[1774]],[[1775]],[[1776]],[[1777]],[[1778]],[[1779]],[[1780]],[[1781]],[[1782]],[[1783]],[[1784]],[[1785]],[[1791]],[[1792]],[[1793]],[[1794]],[[1795]],[[1796]],[[1797]],[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[1812]],[[1813]],[[1814]],[[1815]],[[1816]],[[1817]],[[1818]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]],[[1830]],[[1831]],[[1832]],[[1833]],[[1834]],[[1835]],[[1836]],[[1837]],[[1838]],[[1841]],[[1842]],[[1843]],[[1844]],[[1849]],[[1850]],[[1852],[1851]],[[1853]],[[1854]],[[1855]],[[1856]],[[1857]],[[1858]],[[1859]],[[1860]],[[1861]],[[1862]],[[1863]],[[1864]],[[1865]],[[1866]],[[1867]],[[1868]],[[1869]],[[1870]],[[1871]],[[1872]],[[1873]],[[1874]],[[1875]],[[1876]],[[1877]],[[1878]],[[1879]],[[1880]],[[1881]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]],[[1905]],[[1906]],[[1907]],[[1908]],[[1909]],[[1910]],[[1911]],[[1912]],[[1913]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]],[[1924]],[[1925]],[[1926]],[[1927]],[[1928]],[[1929]],[[1930]],[[1931]],[[1932]],[[1933]],[[1934]],[[1935]],[[1936]],[[1937]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[1944]],[[1945]],[[1946]],[[1947]],[[1948]],[[1949]],[[1950]],[[1951]],[[1952]],[[1953]],[[1954]],[[1955]],[[1956]],[[1957]]]}]}},\"arcs\":[[[58690,38938],[-25,33],[-34,22],[-44,9],[-57,-4],[-69,-18],[-75,22],[-80,62],[-67,22],[-79,-27],[-4,-1]],[[58156,39058],[-13,21],[-22,45],[-36,8],[-10,11],[-8,16],[-6,22],[-2,23],[6,75],[-3,8],[-10,9],[-19,9],[-48,33],[-60,33],[-97,35],[-38,10],[-9,11],[-11,27],[-19,85],[-17,56],[-42,87],[-7,27],[2,69],[4,55],[4,47],[-2,45],[-1,54],[2,37],[-6,16],[-15,11],[-43,5],[-53,-2],[-1,56],[-5,86],[-10,50],[-12,26],[-24,27],[-49,37],[-66,56],[-57,83],[-64,103],[-21,18],[-24,97],[-36,166],[2,55],[-5,27],[-36,82],[-7,42],[-7,43],[-56,120],[-19,52],[-15,67],[-14,53],[-13,22],[-16,36],[-11,42],[-5,31],[4,41],[6,29]],[[57016,41593],[53,-30],[30,-2],[23,14],[28,-19],[34,-54],[37,-11],[39,34],[54,-10],[68,-54],[56,-11],[67,48],[60,132],[56,125],[55,144],[34,116],[48,95],[65,73],[65,61],[100,76],[21,62],[6,68],[0,94],[5,61],[11,28],[16,22],[22,28],[66,72],[55,46],[68,30],[73,0],[71,0],[41,1]],[[58443,42832],[0,-91],[3,-102],[8,-10],[54,-2],[86,-8],[82,-7],[53,-74],[18,-15],[55,-20],[70,-124],[84,-11],[58,-39],[51,-42],[29,-51],[19,-12],[26,-4],[13,-4],[-3,-37],[-17,-62],[2,-89],[24,-123],[3,-107],[-8,-189],[1,-183],[2,-65],[4,-43],[5,-24],[-1,-27],[-14,-77],[-11,-81],[-1,-32],[-4,-23],[-8,-20],[-37,-37],[-6,-23],[0,-42],[4,-35],[14,-13],[17,-20],[6,-26],[0,-28],[-5,-51],[-15,-85],[15,-98],[17,-63],[22,-73],[10,-45],[-1,-33],[-3,-31],[-34,-134],[-25,-83],[-30,-89],[-40,-56],[-10,-27],[-4,-31],[1,-67],[-1,-69],[-34,-108],[21,-92],[-5,-9],[-12,-13],[-49,-104],[-49,-105],[-36,-77],[-42,-88],[-46,-98],[-39,-83],[-40,-60]],[[57016,41593],[-47,92],[-25,38],[-19,14],[-55,15],[-128,21],[-13,-5],[-53,-18],[-66,-23],[-56,-22],[-60,-24]],[[56494,41681],[-55,96],[-63,108],[-65,122],[-49,95],[-24,55],[-43,72],[-31,35],[-12,18],[-30,193],[-17,177],[0,133],[0,185],[0,185],[0,185],[0,184],[0,185],[0,185],[0,185],[0,185],[0,90],[64,0],[72,0],[76,0],[83,0],[82,0],[83,0],[58,0],[15,1],[18,6],[1,18],[-24,91],[2,32],[6,62],[10,53],[13,70],[1,41],[-10,134],[1,75],[3,78],[3,74],[-4,51],[4,28],[8,40],[4,45],[5,20],[-1,18],[-5,33],[-4,76],[-6,105],[-6,75]],[[56657,45580],[10,-4],[21,-7],[10,-37],[6,-41],[14,-2],[37,-24],[13,-34],[8,-72],[-5,-37],[-12,-30],[12,-26],[25,-18],[14,6],[42,49],[16,9],[22,9],[20,13],[55,22],[30,10],[17,18],[12,0],[9,-14],[-8,-51],[-3,-46],[11,-86],[8,-40],[18,-29],[13,-15],[14,-31],[30,6],[65,-44],[20,-20],[28,-21],[19,-7],[68,-15],[25,-11],[46,-14],[37,-2],[27,6],[18,13],[11,14],[5,11],[8,43],[14,93],[5,27],[14,13],[18,9],[10,-15],[12,-103],[51,-93],[18,-78],[13,-66],[11,-19],[19,-22],[32,-9],[28,-2],[58,-48],[47,-38],[34,-27],[15,-21],[11,-34],[6,-27],[10,-68],[11,-54],[18,-11],[16,-4],[16,-37],[12,-32],[24,-80],[17,-54],[6,-54],[20,-35],[27,-15],[25,-2],[14,16],[36,27],[28,32],[20,11],[12,-7],[9,-22],[5,-43],[1,-24],[20,-22],[14,9],[6,26],[0,13],[0,117],[0,101],[0,95],[0,116],[0,101],[0,83],[0,87],[-13,-5],[-16,-20],[-37,-2],[-14,-15],[-4,-23],[2,-29],[1,-39],[-5,-19],[-16,-7],[-24,15],[-42,20],[-35,12],[-25,53],[-35,79],[-22,40],[-54,82],[-9,17],[-17,38],[-14,66],[-7,43],[-6,33],[-8,48],[13,74],[19,141],[13,102],[7,75],[27,77],[2,68],[-11,88],[3,49],[1,123],[2,104],[0,50],[-7,88],[-18,98],[-39,135],[0,29],[24,32],[36,56],[18,33],[22,47],[10,24],[21,61],[13,49],[5,63],[-10,61],[20,12],[68,21],[74,23],[79,25],[79,25],[77,25],[69,22],[48,15]],[[58541,47123],[8,-42],[14,-69],[18,-51],[21,-44],[18,-27],[12,-8],[76,3],[27,-27],[24,-35],[6,-53],[16,-33],[17,-26],[7,-3],[12,6],[21,1],[19,-12],[9,-11],[1,-45],[5,-20],[26,-7],[26,-4],[26,-30],[27,-5],[32,-13],[15,-32],[33,-34],[41,-29],[30,-34],[16,-15]],[[59144,46424],[1,-16],[7,-29],[8,-20],[1,-31],[4,-28],[12,-7],[9,-2],[9,20],[12,0],[13,-13],[5,-33],[11,-44],[16,-30],[12,-29],[-4,-53],[-7,-49],[22,-47],[30,-46],[8,-20],[2,-67],[5,-23],[20,-56],[10,-37],[-1,-22],[-54,-111],[-17,-11],[-16,-6],[-15,-23],[-8,-23],[3,-13],[6,-38],[12,-60],[12,-42],[-10,-52],[-21,-89],[-10,-8],[-2,-68],[7,-24],[10,-20],[4,-46],[1,-63],[-1,-50],[-14,-130],[25,-112],[8,-13],[34,0],[5,-10],[-8,-32],[-14,-33],[-9,-17],[-43,-38],[-62,-43],[-13,-41],[-8,-59],[7,-35],[8,-20],[-3,-52],[-5,-54],[2,-43],[-3,-38],[-8,-19],[-11,-57],[-13,-58],[-11,-26],[-15,-28],[-24,-23],[0,-11],[28,-27],[7,-18],[2,-13],[-6,-12],[-5,-17],[13,-18],[15,-15],[15,-38],[13,-54],[4,-18],[3,-8],[5,-1],[9,8],[17,30],[12,10],[15,-42]],[[59222,43770],[-60,-41],[-31,-21],[-89,-62],[-78,-54],[-20,-10],[-41,-27],[-20,-16],[-70,-47],[-29,-23],[-24,-23],[-58,-35],[-55,-33],[-60,-34],[-67,-38],[-38,-27],[-25,-24],[-60,-47],[-3,-12],[1,-32],[8,-67],[15,-61],[12,-35],[8,-90],[5,-79]],[[64745,61433],[-140,-103],[-37,-45],[-33,-57],[-25,-70],[-18,-124],[13,-113],[-1,-60],[-36,-40],[-34,-29],[-37,-44],[-23,-11],[-19,-35],[-21,-25],[-78,-63],[-86,-50],[-135,-59],[-53,-64],[-47,-44],[-73,-13],[-99,-61],[-55,-48],[-69,-80],[-15,-25],[-12,-58],[-21,-51],[-42,-83],[-31,-42],[-20,-2],[-41,-23],[-47,-5],[-80,29],[-21,-20],[-17,-33],[-61,-56],[-63,-114],[-46,-30],[-74,-36],[-52,-47],[-35,-19],[-44,-10],[-83,5],[-79,-17],[-73,-32],[-34,-60],[-39,-96],[-64,-40],[-15,-34],[-20,-71],[-41,-18],[-38,-12],[-38,31],[-72,-85],[-27,-15],[-41,-3],[-30,-18],[-21,5],[-26,34],[-56,40],[-41,-26],[-3,80],[-68,247],[14,215],[0,30],[-13,96],[-40,87],[1,111],[-14,80],[-10,81],[3,22],[1,20],[-21,125],[-7,26],[-2,26],[6,20],[0,24],[-11,38],[-11,74],[-55,57],[11,54],[11,-19],[14,-16],[3,35],[0,26],[-23,163],[34,218],[-11,195]],[[61888,61273],[52,79],[13,24],[8,21],[12,45],[17,14],[6,47],[-1,24],[-11,20],[-8,55],[3,69],[3,29],[5,53],[18,20],[5,16],[-14,33],[1,20],[31,56],[12,17],[20,18],[16,-1],[18,-9],[16,-16],[15,-29],[17,-32],[25,-13],[17,4],[15,-15],[11,8],[14,17],[21,-1],[20,19],[55,9],[53,-6],[56,16],[56,-1],[55,-2],[13,-2],[12,-10],[47,-50],[36,-10],[72,-13],[77,-15],[66,-13],[57,12],[47,10],[12,-2],[14,-31],[29,-76],[26,-73],[47,-3],[30,27],[33,38],[20,30],[23,117],[15,77],[34,85],[29,72],[39,95],[21,52],[42,104],[39,40],[77,78],[76,77],[49,49],[42,23],[70,20],[83,23],[82,23],[88,24],[98,28],[67,18],[86,24],[71,20],[63,18],[66,18]],[[64438,62785],[12,-57],[12,-58],[12,-58],[13,-57],[12,-58],[12,-57],[13,-58],[12,-57],[12,-58],[13,-57],[12,-58],[12,-57],[12,-58],[13,-57],[12,-58],[12,-58],[12,-56],[20,-18],[12,-54],[17,-75],[17,-76],[17,-76],[16,-76]],[[61830,60658],[-9,-13],[-2,23],[5,50],[9,14],[7,-37],[-4,-20],[-6,-17]],[[61876,59737],[-18,-18],[12,46],[13,9],[4,-2],[-11,-35]],[[61885,59891],[-4,-13],[-5,3],[-17,31],[19,34],[10,-32],[-3,-23]],[[64934,59122],[17,-7],[26,20],[74,3],[90,-65],[-17,-16],[-10,-24],[-39,-21],[-40,-49],[-114,-24],[-33,13],[-28,48],[-51,62],[20,40],[5,18],[7,17],[29,30],[29,-4],[35,-41]],[[78906,57828],[5,-29],[-2,-66],[-11,-66],[4,-29],[-9,-18],[-18,123],[-24,53],[-5,21],[14,-2],[24,34],[12,1],[10,-22]],[[79992,64232],[-13,-5],[-33,-1],[-28,-53],[-20,-22],[-30,-18],[-33,-30],[-9,-52],[-1,-38],[-5,-42],[-53,-61],[-15,6],[-10,23],[-15,-5],[-11,-11],[-12,1],[-14,-13],[-18,4],[-17,19],[-10,5],[-12,1],[-2,-23],[17,-89],[5,-41],[-56,-120],[6,-78],[-15,-59],[-34,-48],[-64,-123],[-29,-3],[-22,-28],[-47,-202],[-1,-70],[-7,-50],[2,-49],[-21,-96],[-22,-41],[-4,-52],[30,-108],[4,-19],[17,-58],[9,-41],[14,-41],[49,-107],[22,-33],[26,-23],[48,-96],[24,-62],[-11,-41],[6,-89],[-35,26],[5,-11],[40,-48],[61,-170],[53,-84],[54,-96],[17,-91],[48,-60],[54,-87],[-2,-19],[14,-24],[37,-46],[22,-49],[8,-46],[13,-7],[16,11],[15,4],[10,-3],[17,-51],[22,-46],[11,-41],[9,5],[7,-6],[2,-35],[4,-23],[30,-67],[14,-63],[37,-103],[26,-58],[20,-33],[21,-28],[22,-114],[11,-103],[23,-114],[18,-50],[0,-95],[14,-97],[15,-65],[5,-67],[4,-33],[6,-25],[16,-114],[-4,-52],[-11,51],[1,-152],[10,-80],[-5,-99],[11,-35],[19,-111],[13,-40],[-1,-137],[7,-69],[-18,41],[-13,47],[-17,-25],[-15,-36],[24,-147],[-28,14],[3,-197],[11,-46],[1,-22],[-3,-27],[-8,29],[-1,30],[-5,-6],[1,-16],[-10,-35],[-2,-43],[9,-36],[2,-28],[-7,-35],[-11,-37],[-26,-5],[-6,-71],[-9,-76],[-46,-12],[-33,-67],[-42,-25],[-37,-67],[-40,-61],[-27,-8],[-22,-13],[-26,-102],[-44,-12],[-78,-83],[-26,-40],[-24,-16],[-34,-35],[-7,13],[-12,30],[-29,15],[-15,33],[-4,43],[-4,17],[-6,-24],[-5,-102],[-5,-23],[-13,-10],[-25,29],[-23,59],[-34,-41],[10,-5],[16,3],[12,-10],[10,-39],[-1,-22],[-5,-25],[-32,-4],[-42,9],[-7,-3],[38,-39],[35,-22],[16,-24],[0,-20],[-20,-32],[-15,-40],[-1,-25],[0,-27],[-17,-24],[-11,5],[-30,41],[-86,163],[13,-46],[90,-185],[15,-61],[3,-43],[-10,-21],[-15,-26],[-29,-2],[-49,69],[-77,165],[-26,22],[78,-188],[13,-46],[13,-53],[-4,-31],[-7,-30],[-185,-174],[-28,-76],[-22,-93],[-36,-51],[-21,-48],[-62,-26],[-34,8],[35,86],[-22,32],[-1,221],[9,242],[16,121],[23,30],[30,19],[0,25],[-3,30],[-15,41],[-18,19],[-25,8],[-20,51],[-15,-2],[-24,-17],[-14,22],[-5,34],[-22,42],[-24,41]],[[79007,57840],[11,6],[13,24],[14,30],[35,4],[35,-1],[9,8],[14,32],[23,41],[18,23],[4,19],[-7,43],[-4,45],[7,14],[31,-8],[35,-21],[8,-9],[20,55],[6,6],[13,0],[34,10],[34,15],[16,-3],[15,-37],[12,-36],[6,-2],[17,15],[15,-19],[30,-32],[18,-1],[-9,73],[10,52],[-2,14],[-17,24],[-57,96],[-10,29],[1,45],[-2,66],[-5,41],[1,24],[3,20],[11,8],[10,2],[8,17],[14,44],[27,-4],[38,-25],[28,-15],[17,3],[3,6],[0,23],[2,100],[-1,21],[23,10],[37,2],[19,6],[18,42],[46,15],[34,56],[30,59],[14,15],[19,10],[14,-1],[18,-34],[14,20],[17,40],[9,39],[5,62],[-4,96],[-8,74],[-9,57],[-2,56],[20,112],[17,122],[-4,49],[-18,76],[-18,93],[-20,102],[-8,15],[-5,29],[-4,33],[9,104],[1,36],[23,47],[12,55],[12,60],[-4,31]],[[79866,60313],[-2,65],[3,31],[-5,26],[-7,37],[4,24],[17,20],[9,35],[12,42],[6,37],[-9,32],[-16,47],[-29,43],[-33,54],[-17,34],[-13,34],[-12,40],[-6,31],[6,21],[48,48],[8,17],[5,27],[-3,26],[-13,14],[-15,10],[-22,30],[-41,82],[-19,19],[-20,24],[-10,25],[-12,68],[-5,6],[-11,-20],[-15,-22],[-12,4],[-11,19],[-5,26],[-12,36],[-14,29],[-3,98],[-2,32],[-7,45],[-10,16],[-11,12],[-26,81],[-17,42],[-74,114],[-9,19],[-19,47],[-35,66],[-24,54],[-18,56],[-8,48],[-3,38],[-19,54],[-17,44],[-16,15],[-18,6],[-17,26],[-31,59],[-13,39],[-8,26],[0,26],[7,44],[9,26],[1,19],[-9,16],[-34,29],[-77,43],[-29,33],[-26,42],[-20,29],[-94,122],[-28,20],[-25,22],[-7,21],[1,20],[10,15],[27,32],[10,35],[-4,47],[-10,48],[5,16],[9,2],[17,2],[37,2],[80,-43],[11,5],[44,78],[16,47],[4,39],[8,25],[23,41],[0,37],[-11,50],[-11,19],[-10,8],[-32,-6],[-6,11],[-4,37],[-2,23],[-10,26],[-34,23],[-29,6],[-7,10],[11,25],[20,25],[15,15],[12,26],[2,27],[-15,24],[-19,26],[-31,50],[-43,54],[-26,18],[-13,-2],[-48,-46],[-25,-30],[-21,-54],[-22,-11],[-23,23],[-25,25],[-70,35],[-30,29],[-61,179],[-9,37],[6,41],[4,59],[6,38],[11,37],[3,32],[-3,32],[-9,18],[-11,5],[-9,8],[-8,41],[-5,-5],[-7,-51],[-9,-18],[-12,-9],[-10,8],[-5,20],[-3,35],[-6,46],[-8,30],[-26,31],[-12,40],[-40,87],[-33,61],[-15,55]],[[78368,64734],[13,20],[17,30],[19,46],[20,58],[8,35],[6,15],[12,10],[13,-6],[23,-23],[34,-30],[30,-35],[12,-36],[17,-34],[13,-10],[7,2],[19,26],[17,26],[1,29],[15,26],[20,43],[10,30],[7,3],[8,-9],[32,-90],[6,-6],[9,14],[13,70],[14,28],[4,-7],[77,-134],[8,2],[8,6],[6,20],[6,46],[11,50],[25,27],[19,6],[7,-24],[17,-32],[20,-5],[43,58],[15,9],[15,-1],[15,2],[15,22],[15,29],[5,58],[4,51],[10,21],[13,14],[24,19],[53,50],[14,24],[10,13],[21,-21],[25,-42],[15,-31],[10,-34],[5,-29],[40,-24],[25,-35],[17,-27],[17,1],[16,7],[11,22],[19,0],[22,-3],[10,-8],[18,-50],[8,-7],[17,4],[31,17],[25,9],[23,-20],[43,-55],[-12,-39],[-9,-42],[-19,-30],[-15,-7],[-8,-42],[-4,-61],[4,-31],[11,-10],[12,-20],[5,-27],[2,-61],[-1,-68],[2,-23],[9,4],[9,9],[18,-11],[23,-18],[14,-18],[12,3],[10,-18],[4,-34],[12,-23],[32,-45],[26,-3],[22,-59],[23,19],[10,-25],[47,9],[33,24],[12,-6],[30,-49],[18,-30]],[[79615,56844],[-8,-1],[-6,12],[26,37],[-3,-25],[1,-12],[-10,-11]],[[79768,57832],[-23,-35],[-2,29],[20,19],[7,15],[6,0],[-8,-28]],[[79684,63833],[-3,-11],[-14,27],[-10,12],[8,37],[16,-40],[3,-25]],[[79889,64064],[-40,-72],[-15,1],[13,82],[7,19],[24,-28],[11,-2]],[[79866,63897],[-15,-15],[-19,2],[22,28],[12,35],[9,12],[-1,-30],[-8,-32]],[[79730,63794],[-11,-3],[-22,47],[11,25],[26,-18],[5,-11],[0,-10],[-6,-22],[-3,-8]],[[33105,57107],[-33,-19],[0,15],[9,27],[17,7],[7,10],[11,6],[6,-1],[7,-8],[-16,-15],[-8,-22]],[[32264,58254],[9,-75],[-3,-14],[-25,-51],[-21,-3],[-17,1],[-13,10],[-17,33],[-16,-10],[-40,12],[-11,11],[15,41],[28,16],[10,4],[8,-25],[20,-22],[23,-2],[6,38],[32,57],[12,-21]],[[31885,58125],[-15,-13],[-27,13],[-14,18],[9,21],[22,0],[21,-25],[4,-14]],[[33056,56951],[-17,-12],[-3,58],[5,15],[30,47],[8,8],[6,-9],[-2,-13],[14,-21],[-3,-26],[-16,-29],[-22,-18]],[[33328,56767],[52,-140],[1,-15],[-6,-18],[-32,-33],[-7,-17],[-12,-62],[-40,-35],[-28,-42],[-19,-38],[-10,-15],[-37,-9],[-12,-23],[-14,-72],[-11,-29],[-20,-35],[0,-22],[27,-78],[5,-24],[-9,-37],[1,-27],[14,-31],[17,-7],[16,13],[20,-1],[13,-9],[6,-9],[1,-24],[-9,-51],[-12,-34],[-53,-50],[-23,-30],[-13,-22],[-29,12],[-15,-1],[-11,-17],[-7,-14],[-19,-4],[-27,-8],[-11,-10],[-9,-25],[-7,-36],[6,-43],[8,-39],[0,-35],[6,-99],[-8,-23],[-18,-26],[-22,-46],[-24,-63],[4,-19],[58,-134],[59,-136],[59,-136]],[[33127,54839],[8,-6],[11,-16],[11,-47],[8,-50],[0,-26],[-6,-33],[-15,-38],[-17,-30],[-25,-26],[-21,-25],[-16,-64],[-11,-23],[-9,-9],[-18,-9],[-30,2],[-20,6],[-24,-49],[-31,-18],[-21,-65],[-74,-53],[-72,-40],[-20,-17],[-72,34],[-17,-10],[-20,-32],[-18,-24],[-15,-1],[-13,-13],[-8,-45],[-7,-154],[-26,-45],[-31,0],[-21,53],[-25,40],[-44,96],[-12,12],[-12,0],[-41,-28],[-19,12],[-16,15],[-26,-5],[-46,-1],[-30,-1],[-14,26],[-14,53],[-9,19],[-11,16],[-17,8],[-75,-1],[-14,0],[-11,11],[-14,45],[-16,22],[-18,1],[-8,-25],[32,-83],[9,-44],[28,-65],[81,-137],[15,-43],[-1,-55],[-1,-85],[3,-80],[21,-115],[29,-118],[8,-74],[-5,-55],[-6,-30],[1,-13],[6,-12],[28,-17],[59,-10],[35,0],[55,-13],[4,-41],[-6,-68],[-10,-39],[-9,-11],[-30,-9],[-31,-42],[-45,-41],[-26,-5],[-10,-8],[-9,-13],[-8,-15],[-9,-77],[-13,-88],[-25,-51],[-28,-43],[-28,-5],[-22,3],[-11,-12],[-16,-35],[-23,-44],[-18,-23],[-24,2],[-26,-22],[-32,-35],[-22,-29],[-18,-50],[-26,-52],[-27,-36],[-13,-45],[-18,-57],[-23,-2],[-2,34],[11,55],[-12,48],[-22,26],[-10,7],[-10,-3],[-26,-23],[-32,-43],[-20,-31],[-17,-14],[-37,-13],[-30,-6],[-13,9],[-23,31],[-53,98],[-71,133]],[[31423,52547],[-5,39],[3,39],[-13,58],[-8,61],[-6,21],[-2,45],[-16,83],[-12,67],[-12,35],[5,29],[-5,29],[-9,24],[-14,76],[5,33],[-4,33],[-12,23],[-16,24],[-22,51],[-27,48],[-13,20],[-9,7],[-8,46],[-6,14],[-14,4],[-27,19],[-26,-23],[-1,35],[8,22],[89,170],[44,78],[5,11],[4,18],[3,24],[-10,28],[-42,131],[-15,24],[-14,21],[-16,55],[-20,128],[-14,64],[-4,49],[1,56],[-6,43],[-11,30],[0,91],[11,153],[3,116],[-6,80],[11,60],[26,42],[14,64],[3,86],[16,72],[28,56],[10,55],[-9,54],[-3,35],[-24,35],[-44,25],[-37,3],[-22,-28],[-57,-25],[-91,-24],[-74,0],[-56,24],[-42,-8],[-29,-40],[-20,-9],[-12,22],[-13,6],[-20,-14],[-3,7],[-43,107],[-40,100],[-46,118],[-53,137],[-10,9],[-16,-1],[-22,-2],[-33,14],[-23,20],[-19,19],[-33,25],[-23,4],[-20,-7],[-56,-48],[-32,-5],[-25,-1],[-67,24],[-45,4],[-53,-16],[-22,-9],[-32,25],[-22,37],[-20,88],[-14,69],[-25,14],[-27,12],[-13,23],[-8,40],[-2,51],[2,84],[3,29],[4,90],[15,47],[9,23],[-1,38],[-8,77],[-7,55],[-30,62],[-39,79],[-17,128],[-20,150],[-15,15],[-15,-8],[-15,8],[-14,60],[-13,11],[-22,-21],[-16,-16],[-40,-15],[-8,15],[3,19],[17,54],[20,70],[23,64],[21,66],[16,70],[11,138],[7,96],[20,170],[36,136],[14,62],[33,82],[15,44],[20,35],[55,47],[65,234],[15,37],[67,35],[51,27],[37,28],[13,16],[10,7]],[[30189,58676],[-9,-28],[-18,-34],[-20,-21],[-106,-53],[-11,-11],[-13,-22],[0,-50],[2,-39],[32,-129],[12,-32],[41,-70],[-9,-10],[-16,-1],[12,-92],[25,-63],[1,-39],[-19,-123],[-36,-74],[-25,-86],[-20,-34],[-44,-168],[34,-101],[4,-50],[29,-73],[19,-23],[12,-30],[-6,-49],[12,-67],[15,-35],[18,-14],[23,0],[67,44],[15,20],[10,36],[34,73],[2,93],[7,113],[-8,73],[-35,104],[-15,75],[-35,69],[-21,118],[-9,37],[-6,51],[-8,91],[23,32],[-2,74],[57,21],[123,120],[77,31],[87,64],[20,32],[17,52],[14,7],[45,-50],[22,17],[9,39],[-12,75],[-26,0],[-78,-27],[-8,32],[0,29],[-18,89],[11,68],[12,55],[22,22],[33,24],[25,-37],[15,-35],[8,-33],[6,-92],[13,-93],[14,-64],[23,-49],[17,4],[12,8],[81,11],[50,-33],[63,-17],[59,-71],[60,-85],[15,-63],[6,-59],[14,-40],[-14,-41],[7,-69],[18,-69],[26,-44],[74,-12],[81,30],[125,27],[40,23],[206,12],[39,-33],[4,-33],[0,-26],[67,-124],[54,-16],[46,-40],[48,-22],[52,-30],[30,4],[22,11],[26,2],[184,207],[98,-6],[15,14],[13,18],[-36,32],[-82,12],[-25,-21],[-14,53],[27,-2],[91,18],[105,-11],[85,38],[43,6],[24,-8],[68,25],[128,-29],[101,24],[-12,-34],[-33,-21],[-53,-7],[-41,-50],[-87,9],[-61,-18],[19,-14],[0,-51],[9,-11],[8,0],[21,-38],[6,-25],[7,-53],[-10,-56],[-12,-26],[25,9],[14,26],[-2,27],[2,31],[14,-10],[9,-14],[32,-148],[22,-78],[6,3],[5,3],[7,15],[10,36],[9,-23],[5,-9],[5,-3],[-5,34],[6,42],[-2,15],[10,3],[12,-5],[17,-12],[30,-49],[20,-51],[1,-28],[8,-16],[12,-16],[7,-26],[1,41],[-8,30],[-2,34],[40,1],[10,45],[21,-27],[56,-123],[21,-21],[62,-24],[38,-59],[23,-53],[-14,-56],[-36,-28],[-14,-35],[-9,-34],[0,-35],[-11,-40],[-1,-14],[-7,-56],[-15,-68],[-19,-72],[-104,-2],[26,-29],[23,-22],[39,-57],[30,45],[44,3],[48,49],[18,8],[88,-26],[22,36],[17,11],[48,-7],[42,-39]],[[53455,75978],[-3,-1],[0,2],[0,3],[3,0],[0,-4]],[[96317,43302],[18,-191],[21,1],[11,10],[12,45],[5,70],[11,10],[14,-8],[-6,-22],[4,-56],[10,-31],[7,-6],[14,-146],[6,-31],[-1,-25],[-29,-54],[-44,1],[-30,-33],[-19,3],[0,37],[-17,29],[-19,63],[5,112],[-33,208],[-1,52],[12,68],[11,3],[15,-56],[23,-53]],[[96503,42571],[12,-13],[7,0],[4,-28],[40,-56],[11,2],[9,-31],[17,-15],[5,-31],[12,-32],[-21,-38],[-41,10],[-24,-44],[-21,11],[-4,23],[3,8],[-13,58],[-5,90],[-9,52],[-9,23],[-20,-20],[-8,-3],[-18,43],[9,87],[4,25],[15,5],[23,-23],[22,-103]],[[96790,42177],[8,-8],[-4,-24],[-39,27],[-30,-10],[-9,1],[-9,22],[-7,44],[3,30],[13,22],[5,3],[10,-26],[8,-18],[9,-8],[19,-43],[23,-12]],[[96748,42432],[-32,-6],[-44,18],[-18,25],[-8,25],[15,19],[23,9],[27,57],[10,-22],[10,-64],[11,-20],[6,-19],[0,-22]],[[96790,41738],[27,-82],[11,-7],[-17,-59],[-34,-5],[-41,15],[15,20],[-8,23],[-13,5],[-14,-11],[-6,4],[9,38],[23,53],[6,4],[6,1],[6,-5],[30,6]],[[96641,42951],[-19,-26],[-34,2],[-13,15],[42,80],[49,17],[-25,-88]],[[96725,42643],[-5,-1],[-4,27],[-16,141],[10,126],[7,-27],[23,-221],[-3,-36],[-12,-9]],[[96718,43013],[-5,-36],[-11,41],[-7,175],[3,16],[6,1],[14,-121],[0,-76]],[[96449,42785],[-5,-15],[-30,37],[7,36],[32,-12],[-4,-46]],[[96550,43628],[-11,-29],[-32,9],[-7,8],[2,48],[8,17],[19,15],[25,-24],[-4,-44]],[[96524,43832],[-4,-6],[-7,4],[-16,70],[4,23],[21,22],[18,-38],[2,-22],[0,-18],[-3,-16],[-13,-6],[-2,-13]],[[97192,40214],[-9,-31],[-15,0],[-20,22],[4,29],[22,5],[6,-2],[12,-23]],[[97080,40587],[-15,-63],[-25,15],[-24,45],[-12,40],[8,75],[12,14],[13,-5],[6,-74],[37,-47]],[[97036,40932],[-12,-27],[-12,3],[-72,64],[3,27],[-3,67],[8,37],[20,15],[15,-8],[10,-54],[22,-22],[-16,-18],[27,-41],[10,-43]],[[69707,76179],[9,11],[16,10],[26,-20],[23,-25],[5,-12],[-1,-13],[-55,-49],[-33,-23],[-15,-4],[-4,-7],[-11,-55],[-21,-10],[-27,-18],[-19,-25],[-30,-61],[-76,-89],[-1,-18],[7,-15],[24,-10],[33,-27],[18,-21],[48,27],[12,-6],[13,-28],[13,-80],[22,-21],[28,-17],[18,-5],[23,-20],[32,-7],[21,7],[26,-17],[4,7],[3,119],[22,-20],[13,1],[11,14],[6,20],[4,39],[-5,39],[10,18],[7,4],[6,-5],[3,-10],[1,-35],[16,-15],[10,-9],[9,-30],[9,-29],[6,-67],[22,-4],[26,-13],[17,13],[14,-8],[5,-32],[-1,-29],[2,-24],[7,-7],[23,15],[19,2],[18,-14],[22,-21],[32,-57],[10,-8],[48,-4],[10,-12],[17,0],[17,11],[40,-19],[1,-10],[-7,-14],[-94,-78],[-7,-24],[-19,-31],[-21,-17],[-10,-1],[-46,31],[-5,-7],[-4,-13],[0,-14],[10,-32],[-5,-21],[-8,-15],[-29,13],[-6,9],[0,9],[-11,0],[-17,-9],[-33,-57],[-12,-29],[-4,-18],[-15,-10],[-16,-4],[-20,-27],[-22,-20],[-7,15],[-5,17],[-6,5],[-13,-4],[-17,-1],[-17,19],[-23,20],[-20,6],[-58,-9],[-29,-9],[-9,-9]],[[69710,75022],[-16,-3],[-69,-19],[-14,7],[-10,31],[-9,33],[-18,12],[-20,9],[-7,13],[-1,16],[3,16],[1,8],[46,63],[42,57],[4,4],[3,11],[7,20],[0,10],[-31,23],[-1,10],[6,11],[0,14],[-22,41],[-38,65],[-11,6],[-8,-4],[-15,-62],[-7,-16],[-43,-41],[-37,-29],[-64,-50],[-17,-15],[-12,2],[-11,10],[-37,51],[-23,17],[-16,-17],[-13,-25],[1,-51],[-15,-27],[-15,-13],[27,-137],[-2,-18],[-21,-5],[15,-52],[-13,-6],[-32,12],[-44,8],[-84,-23],[-6,-9],[-2,-11],[5,-11],[40,-1],[40,6],[11,-10],[1,-17],[-4,-11],[-13,-2],[-29,-10],[-4,-11],[-1,-10],[10,-31],[11,-19],[2,-11],[-5,-10],[-6,-4],[-9,15],[-6,-3],[-2,-13],[-3,-15],[-7,-11],[-13,6],[-13,-5],[-8,-55],[-7,-62],[-22,-42],[-12,-15],[-18,-4],[-27,5],[-16,6],[-46,9],[-47,17],[-53,16],[-49,-37],[-14,-22],[-9,-21],[-9,-10],[-21,-129],[2,-14],[12,-12],[60,-26],[9,-11],[5,-13],[2,-58],[5,-8],[21,-7],[30,0],[23,6],[24,-5],[16,-13],[8,-20],[4,-21],[-28,-127],[3,-47],[8,-66],[16,-52],[30,-51],[23,-33],[5,-15],[1,-24],[-4,-31],[-13,-48],[-16,-42],[-17,-18],[-24,-54],[-22,-66],[-41,-86],[-13,-49],[-5,-139],[-11,-42]],[[68821,73255],[-1,16],[-15,16],[-26,-3],[-17,8],[-8,18],[-21,-5],[-34,-28],[-34,14],[-35,58],[-67,21],[-85,-13]],[[68478,73357],[-4,63],[1,81],[4,108],[28,84],[0,16],[-6,15],[-9,14],[-51,23],[-15,13],[-20,26],[-25,28],[-22,19],[-34,26],[-32,14],[-19,-11],[-17,-14],[-16,0],[-16,7],[-59,64],[-90,110],[-71,76],[-45,37],[-10,12],[-25,34],[-62,93],[-41,-14],[-58,61],[-53,59],[-11,15],[-60,109],[-60,71],[-65,77],[-42,48],[-71,82],[-34,49],[-12,18],[-12,35],[-18,170],[-22,78],[-30,43],[-26,82],[-22,121],[-17,79],[-14,36],[-29,40],[-43,44],[-41,21],[-15,-1],[-7,-5],[-9,-8],[-16,-33],[-24,-3],[-17,1],[-17,12],[-52,10],[-18,11],[-31,-1],[-67,-17],[-17,3],[-70,73],[-31,29],[-6,16],[0,28],[10,40],[9,28],[-4,30],[-13,32],[0,34],[9,19],[19,-6],[7,12],[-3,18],[-10,13],[-13,29],[-40,27],[-6,11],[2,12],[7,14],[1,28],[1,37],[5,19],[2,15],[-6,12],[-14,14],[-21,34],[-27,4],[-86,-1],[-27,13],[-22,19],[-21,73],[-11,17],[-11,7],[-24,2],[-29,7],[-15,13],[-41,66],[-39,59],[-16,-56],[-15,-11],[-34,5],[-26,10],[-15,-13],[-15,-22],[2,-15],[12,-15],[24,-28],[36,-70],[16,-38],[2,-13],[-3,-10],[-5,-5],[-7,0],[-9,1],[-6,11],[-2,20],[-12,30],[-12,17],[-14,11],[-19,8],[-25,14],[-13,1],[-12,-17],[-11,-22],[-6,-49],[-19,-60],[-11,-24],[-36,-14],[-84,-5],[-26,-19],[-17,-22],[-32,-74],[-22,-24],[-19,-33],[5,-108],[10,-126],[16,-35],[10,-11],[2,-12],[-7,-11],[-8,-14],[-13,-25],[-15,1],[-29,6],[-24,7],[-82,7],[-66,6],[-73,7]],[[65549,75646],[0,132],[0,132],[0,132],[-1,133],[0,132],[0,132],[0,132],[0,133],[0,132],[0,132],[0,132],[0,132],[0,133],[0,132],[0,132],[0,132],[35,17],[44,20],[42,20],[49,24],[57,27],[48,22],[57,27],[44,21],[41,20],[53,23],[82,36],[45,19],[46,21],[44,19],[30,7],[31,-27],[39,-38],[38,-38],[38,-38],[39,-38],[38,-38],[39,-38],[38,-38],[38,-38],[39,-37],[38,-38],[38,-38],[39,-38],[38,-38],[38,-38],[39,-38],[38,-38],[36,-35],[16,-26],[9,-58],[17,-46],[31,-49],[32,-51],[39,-68],[27,-46],[28,-48],[45,-78],[29,-49],[23,-2],[46,12],[61,15],[49,13],[59,15],[56,14],[44,11],[66,-9],[65,-8],[47,-6],[46,-6],[54,-7],[30,-4],[35,-4],[15,11],[30,25],[28,22],[30,24],[26,12],[27,-38],[22,-43],[24,-46],[28,-44],[27,-27],[36,-35],[20,-61],[28,-81],[18,-53],[19,-55],[27,22],[29,23],[27,21],[-4,-68],[-3,-61],[-4,-93],[-4,-77],[-9,-91],[-1,-69],[0,-61],[-1,-48],[51,-2],[38,-2],[47,-2],[5,-61],[6,-85],[10,-77],[8,-65],[12,-84],[6,-45],[12,-53],[11,-12],[18,-9],[62,6],[52,6],[41,4],[43,4],[58,6],[19,-13],[17,9],[19,9],[16,-38],[8,-19],[11,-21],[15,-18],[-7,-40],[-9,-57],[-3,-30],[18,-32],[14,-18],[36,-38],[34,-21],[23,-6],[21,8],[8,21],[-2,30],[-10,31],[1,37],[6,27],[22,49],[21,46],[32,47],[37,47],[16,34],[6,59],[25,34],[26,20],[33,18],[9,29],[46,50],[27,25],[35,15],[48,32],[37,39],[36,72],[29,47],[24,29],[21,1],[14,-23],[12,-2],[8,11],[14,30],[14,35],[14,15],[27,8],[24,23]],[[69625,75424],[-1,14],[-8,23],[-13,13],[-6,-5],[5,-19],[15,-28],[8,2]],[[69779,74822],[-14,-5],[-26,1],[-14,6],[9,46],[0,10],[-1,1],[-7,6],[-12,19],[-3,29],[4,26],[8,11],[5,-2],[16,-40],[14,-12],[27,-6],[-14,-40],[10,-42],[-2,-8]],[[69938,74855],[-7,-24],[-13,6],[-11,16],[4,13],[15,7],[8,7],[7,1],[-3,-26]],[[35174,32406],[-13,-21],[-15,-41],[-17,-97],[-58,-133],[-12,-76],[-62,-78],[-44,-89],[-29,2],[-26,-38],[-149,-115],[-54,22],[-39,-1],[-37,51],[-84,19],[-53,-21],[-71,-56],[-21,1],[-15,3],[-39,23],[-21,50],[-108,57],[-88,129],[-104,2],[-79,-17],[-12,18],[-8,33],[-17,48],[-68,114],[-54,113],[-10,111],[7,121],[16,144],[-2,44],[19,26],[20,5],[19,37],[17,56],[3,43],[-13,78],[-10,110],[-10,55]],[[33833,33138],[21,86],[1,42],[-12,37],[-4,38],[6,39],[-1,37],[-8,36],[6,30],[20,23],[15,36],[10,49],[5,37],[0,26],[-6,24],[-12,22],[5,46],[24,67],[15,60],[7,52],[0,43],[-8,32],[3,22],[15,11],[6,34],[-2,84],[-15,70],[11,55],[33,64],[18,52],[1,39],[10,22]],[[33997,34453],[16,-42],[47,-11],[47,-2],[7,11],[19,69],[24,20],[27,5],[29,-3],[31,-46],[87,-150],[64,-104],[20,-50],[17,-36],[12,-35],[-5,-89],[1,-39],[3,-11],[14,-1],[22,6],[18,19],[15,29],[14,23],[11,13],[4,19],[7,19],[6,4],[13,-14],[30,-51],[23,-47],[6,-27],[9,-28],[9,-25],[7,-23],[23,-32],[23,-19],[15,20],[39,-65],[85,-54],[16,-33],[15,-46],[30,-71],[41,-63],[34,-27],[32,-15],[18,-14],[12,-24],[20,-27],[12,-9],[4,-24],[13,-51],[13,-65],[14,-60],[31,-57],[36,-45],[36,-26],[21,-31],[9,-33],[-25,-48],[-27,-62],[-23,-48],[-25,-33],[-8,-23],[-5,-36],[0,-190],[-2,-70],[2,-19],[3,-13],[16,-18],[18,-16],[7,-3]],[[95272,54910],[3,-27],[-18,13],[-2,10],[10,10],[7,-6]],[[88372,57315],[-21,-47],[-1,16],[6,28],[9,32],[8,19],[11,6],[8,-27],[-9,-23],[-11,-4]],[[92123,56074],[-2,-7],[-17,3],[-2,4],[1,3],[8,4],[1,10],[-4,2],[4,6],[6,1],[4,-7],[2,-9],[-1,-10]],[[92188,56124],[-4,-3],[-3,3],[1,14],[2,5],[4,1],[8,-4],[1,-4],[-9,-12]],[[93975,55768],[-16,-13],[-20,5],[-6,47],[-10,13],[2,23],[15,19],[30,-15],[11,-34],[-7,-22],[1,-23]],[[97120,55201],[-6,-17],[-6,1],[6,13],[4,18],[6,51],[14,19],[10,21],[-3,-22],[-15,-23],[-10,-61]],[[96896,56053],[-4,-9],[-27,5],[-12,11],[1,9],[22,-8],[20,-8]],[[97659,55903],[11,-13],[20,1],[19,-32],[-7,2],[-10,14],[-10,6],[-12,-2],[-6,5],[-5,19]],[[97527,55955],[35,-30],[46,14],[-7,-9],[-17,-8],[-12,-8],[-8,0],[-9,3],[-29,21],[-17,27],[4,9],[14,-19]],[[96357,58267],[-7,-4],[-5,4],[4,8],[8,1],[3,-2],[-3,-7]],[[90474,62651],[-9,-22],[-7,16],[-2,31],[13,-3],[4,-6],[1,-16]],[[90475,61255],[-6,-4],[-9,2],[-6,9],[-2,15],[18,1],[7,-12],[-2,-11]],[[90350,59998],[-13,-27],[-10,6],[-6,9],[-2,15],[22,15],[10,-5],[-1,-13]],[[90493,62257],[-14,-13],[17,57],[5,10],[8,-21],[-16,-33]],[[90486,60560],[-1,-15],[-14,4],[-4,6],[8,52],[20,24],[10,5],[-9,-25],[-2,-27],[-8,-24]],[[90461,60466],[-12,-29],[-8,45],[-1,19],[10,17],[7,-1],[4,-51]],[[31987,62401],[-21,-5],[-28,27],[22,10],[15,-6],[12,-26]],[[32039,62415],[-19,-15],[-12,2],[-5,6],[10,18],[26,-11]],[[32009,62093],[24,-26],[28,0],[-30,-25],[-56,-3],[1,41],[33,13]],[[90205,59480],[-12,-1],[-10,20],[-3,13],[-1,66],[40,57],[13,55],[10,-5],[10,-9],[8,-16],[-44,-92],[-11,-88]],[[2576,43576],[-12,-5],[-14,27],[28,21],[8,11],[34,-6],[-20,-8],[-24,-40]],[[31630,62468],[9,-12],[8,2],[-6,23],[6,0],[53,-14],[34,-24],[35,-12],[3,-80],[-27,-32],[-18,-34],[-15,-41],[-38,-47],[-45,-15],[-31,-1],[-11,1],[-11,9],[-23,-8],[-29,21],[-24,-5],[-48,5],[-18,-19],[-18,-4],[-17,4],[-14,8],[-36,-1],[-15,16],[6,91],[1,41],[-9,35],[-10,21],[-7,25],[14,17],[12,24],[4,37],[12,9],[15,4],[69,-17],[173,-10],[10,-3],[6,-14]],[[31826,62272],[-22,-3],[-14,4],[-5,17],[27,16],[30,-2],[18,-10],[2,-6],[-36,-16]],[[31146,62246],[-2,-1],[-3,1],[-1,1],[-2,6],[-8,8],[-2,8],[2,9],[3,3],[16,1],[2,-1],[3,-6],[0,-4],[-1,-4],[-3,-10],[-1,-2],[-1,-3],[-1,-5],[-1,-1]],[[13126,84403],[-3,-8],[-36,1],[-12,7],[-5,24],[3,23],[8,18],[10,34],[8,56],[52,-63],[16,-28],[8,-35],[-18,-13],[-22,-6],[-9,-10]],[[13117,84243],[-15,-2],[-16,9],[-40,47],[-1,14],[6,15],[22,29],[10,7],[54,-3],[17,-8],[4,-13],[0,-14],[-6,-13],[-1,-15],[3,-15],[-7,-15],[-30,-23]],[[12691,85385],[-2,-15],[-38,2],[-38,21],[-19,27],[4,13],[35,11],[34,-26],[24,-33]],[[9689,86599],[-9,-14],[-24,5],[-13,9],[44,37],[7,-8],[-5,-29]],[[9843,86300],[-14,-3],[20,38],[27,41],[26,27],[32,11],[-3,-20],[-43,-35],[-45,-59]],[[8883,86442],[-15,-17],[-55,10],[12,35],[42,22],[46,-34],[-30,-16]],[[7772,86613],[-13,-2],[17,28],[13,56],[17,-8],[3,-10],[-28,-57],[-9,-7]],[[5464,83719],[-4,-45],[-38,29],[-10,14],[7,11],[36,2],[9,-11]],[[5733,83509],[-9,-3],[-8,6],[-10,33],[-1,13],[20,-10],[7,-24],[1,-15]],[[5690,83612],[-1,-46],[-4,-7],[-8,12],[-15,-13],[-9,10],[4,16],[-1,12],[11,1],[3,23],[-2,9],[6,21],[8,5],[8,-43]],[[3831,82789],[-4,-1],[-7,14],[-1,13],[5,9],[13,22],[9,8],[11,4],[3,-6],[-10,-26],[-12,-17],[-7,-20]],[[1109,81688],[-24,-12],[-31,25],[3,30],[34,-25],[18,-18]],[[3858,89992],[-10,-3],[0,9],[32,23],[58,29],[-2,-6],[-31,-23],[-47,-29]],[[2371,88502],[5,-14],[29,2],[40,-6],[45,-14],[45,5],[56,43],[33,11],[34,6],[37,-10],[35,-23],[14,-13],[11,-24],[7,-28],[11,-21],[67,-25],[42,-10],[10,-14],[9,-19],[36,-14],[37,5],[20,-5],[63,-1],[77,-21],[-12,-56],[-25,-24],[-72,7],[-71,-8],[-29,-28],[-25,-37],[-3,-35],[-14,-16],[-15,-7],[-12,19],[-17,60],[-11,16],[-12,11],[-35,19],[-35,12],[-21,1],[-15,21],[-8,30],[-14,15],[-28,22],[-29,17],[-89,38],[-29,5],[-30,-4],[-32,-17],[-31,-26],[-31,-19],[-33,-4],[-32,11],[-29,25],[-15,18],[-8,30],[1,30],[4,29],[16,71],[27,14],[51,-50]],[[3851,86626],[26,-29],[13,-1],[43,8],[16,-6],[15,-12],[9,-19],[2,-33],[-7,-30],[2,-41],[-1,-18],[22,-24],[8,-32],[3,-34],[-49,-12],[-49,-2],[-43,-23],[-9,-17],[7,-26],[-11,-6],[-11,5],[-21,24],[-22,11],[-79,18],[-100,69],[-42,14],[-44,50],[-39,64],[25,10],[26,5],[116,-9],[14,46],[15,11],[36,13],[35,25],[15,0],[16,-10],[32,15],[17,3],[14,-7]],[[7528,85151],[2,-31],[12,3],[42,33],[23,10],[29,1],[23,-15],[4,-11],[-2,-14],[-18,-27],[1,-18],[19,-33],[49,-18],[6,-10],[0,-12],[-34,-55],[-12,-12],[-9,-3],[-61,9],[-55,18],[-23,3],[-8,-5],[-15,-17],[11,-5],[49,-4],[17,-25],[7,-18],[4,-20],[-10,-8],[-20,-6],[-25,0],[-31,-22],[-17,-25],[-62,-7],[-47,-34],[-17,-17],[-6,-20],[-17,-15],[-41,-14],[24,-13],[4,-11],[1,-16],[-4,-13],[-31,-59],[-60,-48],[-15,2],[-7,6],[-5,9],[-1,9],[78,98],[-3,4],[-21,4],[-34,26],[-23,-17],[-5,1],[6,23],[15,27],[-3,8],[-8,7],[-19,4],[-31,1],[-22,-6],[-15,-15],[-1,-6],[31,2],[9,-7],[8,-14],[5,-16],[2,-17],[-7,-24],[-14,-30],[-22,5],[-44,67],[-20,97],[-38,75],[-2,18],[11,46],[38,65],[42,18],[29,27],[28,9],[18,-1],[24,-12],[10,-25],[-6,-12],[2,-6],[17,-15],[18,-52],[21,-47],[14,-19],[19,-12],[-19,36],[-12,44],[-5,88],[-6,23],[11,6],[30,-3],[-1,13],[-32,29],[-19,25],[-8,19],[1,17],[17,25],[10,7],[10,3],[21,-5],[9,-8],[26,-56],[12,-17],[10,0],[10,9],[9,18],[8,12],[10,3],[29,-8],[10,3],[4,14],[0,25],[7,9],[2,18],[-16,27],[18,9],[61,-21],[25,-23],[-13,-42]],[[13882,84036],[-14,-30],[-10,-32],[-7,-35],[-3,-37],[2,-40],[5,-35],[17,-65],[6,-39],[1,-27],[-38,-92],[-13,-45],[1,-19]],[[13829,83540],[-27,-47],[-50,-64],[-23,-37]],[[13729,83392],[-11,12],[-65,10],[-24,82],[-12,64],[-19,55],[0,13],[17,37],[65,31],[1,12],[-24,8],[-6,13],[-7,60],[2,53],[-2,35],[-10,72],[-17,43],[-41,86],[-4,21],[18,27],[12,25],[-71,-43],[-96,-46],[-42,-32],[-9,-13],[-3,-11],[8,-30],[-1,-10],[-9,-18],[-10,-51],[-21,-53],[-10,-11],[-38,20],[-10,17],[-19,70],[5,19],[13,15],[19,34],[24,52],[45,133],[29,1],[52,26],[-82,13],[-12,7],[-11,18],[-9,29],[-17,33],[-31,11],[-13,12],[-21,39],[-14,18],[-7,22],[-1,26],[-6,13],[-21,5],[-12,9],[-3,67],[-42,17],[-18,15],[-28,42],[-7,21],[-3,17],[7,46],[-3,9],[-25,-5],[-153,72],[8,95],[-28,125],[-31,51],[6,19],[7,11],[13,0],[59,-37],[56,-44],[7,7],[-89,92],[-22,28],[-5,33],[-1,18],[7,10],[84,-9],[4,7],[-84,27],[-17,0],[-18,-39],[-9,-9],[-18,2],[-6,6],[-22,47],[-20,33],[-38,45],[-7,33],[-2,47],[5,45],[31,103],[13,18],[3,11],[-10,-1],[-9,-10],[-25,-48],[-27,-78],[-21,-27],[-14,6],[-20,32],[-43,39],[-50,10],[-31,40],[-46,111],[-6,55],[-6,14],[-25,18],[-16,26],[-24,135],[-31,93],[-8,50],[3,49],[-4,5],[-11,-38],[-3,-20],[-20,-5],[19,-39],[5,-19],[-10,1],[-19,-5],[33,-66],[14,-102],[21,-76],[14,-62],[7,-47],[9,-44],[25,-99],[3,-20],[-3,-16],[-8,-19],[-14,-7],[-45,13],[-17,25],[-24,44],[-34,21],[-84,-10],[-6,3],[0,37],[10,65],[-8,26],[-44,96],[1,19],[60,44],[-29,3],[-24,-17],[-9,11],[-14,62],[-9,23],[-5,4],[-2,-58],[10,-31],[1,-17],[-1,-25],[-7,-18],[-11,-11],[-11,-2],[-20,12],[-23,23],[-19,11],[-8,10],[-9,25],[-15,20],[-74,24],[-44,30],[-3,-8],[13,-31],[2,-19],[-11,-5],[-20,-30],[6,-4],[21,10],[23,-1],[39,-19],[35,-23],[12,-13],[6,-20],[4,-7],[34,-23],[2,-12],[-22,-35],[45,3],[27,-12],[34,-56],[11,-30],[2,-40],[-7,-11],[-14,-8],[-92,-13],[-34,-48],[-7,-1],[-25,13],[-46,38],[-58,36],[-131,108],[-3,5],[-3,20],[-9,11],[-17,9],[-25,27],[-32,45],[-19,36],[-8,25],[-18,29],[-59,61],[-31,23],[-28,13],[-24,3],[-6,8],[11,13],[2,8],[-53,13],[-50,28],[-127,80],[-65,50],[-39,24],[-16,13],[-7,11],[9,12],[26,12],[17,13],[27,51],[2,16],[-14,37],[-7,33],[0,19],[4,18],[4,12],[11,12],[9,6],[10,-4],[32,-46],[4,-17],[-1,-63],[9,-73],[3,5],[3,24],[2,47],[4,22],[6,22],[12,12],[36,-7],[17,4],[-71,33],[-44,62],[-8,7],[-24,3],[-26,-26],[-66,-82],[-19,-14],[-83,-46],[-57,-9],[-63,7],[-54,15],[-136,72],[-21,17],[31,44],[2,14],[-11,45],[-9,13],[-13,8],[-4,-6],[0,-13],[3,-25],[-10,-13],[-23,-14],[-39,-15],[-120,37],[-124,30],[-110,7],[-156,-25],[-83,-24],[-48,-2],[-47,4],[-4,17],[21,10],[-1,12],[-27,39],[-40,23],[-55,8],[-32,11],[-8,14],[-19,14],[-31,13],[-13,23],[10,71],[11,43],[10,30],[27,48],[-9,-3],[-39,-36],[-33,-37],[-32,-48],[-18,-22],[-24,-20],[-37,5],[-50,30],[-43,15],[-36,1],[-15,5],[25,27],[14,22],[19,34],[5,17],[-132,5],[-5,19],[0,13],[-4,11],[-19,8],[-27,-6],[-43,-22],[-19,17],[7,9],[14,7],[28,31],[-38,16],[-20,18],[-10,16],[1,55],[10,35],[87,34],[-27,13],[-56,-5],[-37,-29],[-43,-41],[-30,-16],[-15,11],[-20,3],[-25,-3],[-16,-11],[-9,-18],[-10,-12],[-11,-6],[-8,2],[-12,18],[-25,12],[-12,14],[-7,-9],[-9,-27],[-9,-13],[-42,-14],[-23,2],[-28,34],[-4,12],[10,29],[61,115],[-6,-1],[-20,-18],[-39,-46],[-18,-14],[-30,-1],[-14,5],[-17,-4],[-20,-12],[-13,-14],[-6,-15],[4,-2],[30,17],[17,4],[5,-8],[-24,-52],[-14,-50],[-13,-12],[-22,2],[-24,-5],[0,-14],[44,-39],[16,-6],[20,-14],[3,-14],[-7,-38],[-6,-15],[-9,-8],[-36,1],[-12,-4],[-24,-24],[-12,-19],[4,-2],[21,16],[31,9],[39,1],[30,9],[20,16],[19,-4],[18,-26],[6,-22],[-8,-19],[-15,-13],[-23,-9],[-15,-12],[-6,-16],[-3,-24],[-1,-32],[6,-58],[-5,-7],[-8,-5],[-13,0],[-12,-14],[-27,-76],[-9,-9],[-12,8],[-10,0],[-9,-10],[-19,-8],[-30,-5],[-25,2],[-45,16],[-18,12],[-15,19],[-40,-20],[-11,9],[-25,53],[-5,-3],[-5,-58],[-8,-20],[-25,-41],[-13,-71],[-4,-3],[-5,11],[-15,63],[-8,14],[-23,-36],[-2,-14],[6,-47],[-6,-7],[-45,25],[-11,2],[-3,-5],[15,-37],[-1,-13],[-65,-71],[-17,3],[-10,7],[-12,-1],[-41,-27],[-11,1],[-15,16],[-7,-1],[-4,-16],[-1,-32],[-15,-30],[-49,-49],[-13,-23],[-9,-31],[-8,-3],[-28,20],[-33,13],[-5,-6],[10,-19],[-2,-12],[-14,-4],[-18,2],[-22,7],[-31,-8],[-40,-25],[-33,0],[-46,41],[-12,3],[-4,12],[9,33],[13,25],[9,12],[44,32],[50,12],[31,19],[39,40],[20,30],[40,77],[-3,6],[-9,4],[-88,-73],[-13,-7],[-17,1],[-70,28],[-14,12],[-11,35],[20,80],[13,39],[35,60],[44,64],[15,41],[24,110],[-2,51],[-10,61],[-1,36],[10,12],[102,56],[49,43],[94,62],[25,0],[19,-22],[22,-17],[25,-13],[32,1],[39,16],[62,-6],[128,-41],[27,-2],[1,5],[-19,29],[-89,17],[-37,16],[-104,74],[-24,28],[10,14],[26,11],[8,10],[4,19],[15,25],[25,32],[39,31],[75,46],[-29,2],[-54,-8],[-19,-9],[-36,-33],[-14,-23],[-20,-46],[-8,-8],[-37,-7],[-101,-4],[-17,23],[-9,4],[-13,-4],[-92,-59],[-34,-30],[-23,-35],[-37,-25],[-49,-16],[-37,-20],[-39,-40],[-14,-30],[0,-14],[9,-45],[-10,-9],[-22,-3],[-36,-30],[-76,-89],[-10,-32],[0,-11],[12,-25],[-8,-17],[-22,-25],[-48,-41],[-31,-16],[-20,-1],[-20,6],[-35,26],[-28,2],[-2,-4],[39,-28],[39,-36],[24,-30],[10,-24],[0,-25],[-9,-25],[-27,-44],[-27,-13],[-70,-13],[-22,-11],[-7,-8],[48,-18],[4,-10],[-6,-37],[-13,-12],[-40,-22],[-35,-6],[-6,4],[7,29],[-2,7],[-13,6],[-19,-11],[-47,-43],[-5,-7],[17,-11],[-4,-10],[-26,-30],[-10,-21],[-17,-20],[-76,-64],[5,-15],[-19,-56],[-11,-49],[13,-20],[64,-24],[31,-6],[37,-17],[66,-45],[22,-30],[3,-14],[-2,-15],[-8,-21],[-21,-38],[-50,-58],[-22,-16],[-34,-13],[-12,-10],[-43,-54],[-12,-30],[2,-26],[-9,-18],[-56,-35],[2,-6],[20,-3],[-7,-31],[-3,-43],[-10,-8],[-36,1],[-44,-17],[-3,-5],[-1,-31],[-118,-23],[-25,-59],[-14,-18],[-45,-43],[-29,-18],[-32,-10],[-17,-15],[-1,-18],[-9,-17],[-28,-26],[-14,-34],[-10,-5],[-51,-8],[-11,-11],[-5,-46],[-9,-1],[-19,11],[-24,-9],[-53,-51],[-12,-18],[1,-10],[8,-10],[13,-31],[-1,-20],[-20,-58],[-8,-9],[-25,-14],[-10,-32],[-23,4],[-19,-6],[-12,-21],[-14,-12],[-14,-4],[-18,-16],[-22,-31],[-20,-19],[-18,-9],[-18,-2],[-18,5],[-16,-4],[-14,-11],[-13,-18],[-11,-50],[-14,-22],[-9,-4],[-17,4],[-27,10],[-28,-4],[-44,-30],[-14,-23],[28,-5],[14,-7],[-1,-7],[-14,-6],[-25,1],[-14,-6],[-19,-13],[-45,-14],[-17,-10],[-34,-58],[-4,-13],[4,-3],[19,6],[23,-10],[11,-12],[8,-15],[7,-29],[4,-4],[-43,-49],[-12,-21],[-8,-8],[-5,6],[-6,55],[-3,9],[-10,1],[-10,-17],[-22,-65],[-23,-32],[-178,-83],[-26,-19],[-5,-35],[-7,-31],[-12,-24],[-14,-16],[-3,11],[1,86],[-3,18],[-18,11],[-8,-2],[-11,-5],[-18,-18],[-10,-5],[-14,1],[-23,-18],[-55,-59],[-36,-15],[-10,-12],[-15,-32],[-10,-12],[-15,-1],[-20,10],[-16,-7],[-12,-24],[-13,-9],[-35,17],[-15,-11],[-20,-31],[-21,-20],[-22,-9],[-56,-11],[-23,7],[-5,9],[1,38],[9,28],[9,13],[11,12],[17,1],[31,-8],[-4,9],[-11,11],[-29,19],[-28,10],[-16,-6],[-23,-15],[-15,-17],[-8,-19],[-10,-63],[-6,-17],[-67,-111],[-26,-34],[-25,2],[-13,-13],[-17,-27],[-17,-13],[-14,1],[-12,5],[-8,9],[1,9],[11,8],[-4,22],[-19,37],[-13,19],[-24,3],[-4,-17],[8,-84],[-1,-19],[-15,-24],[-41,-27],[-12,2],[-37,53],[-34,11],[-2,-17],[7,-36],[-8,-32],[-25,-31],[-19,-15],[-13,1],[-1,21],[12,42],[3,35],[-6,28],[1,22],[7,15],[45,41],[20,7],[10,-11],[13,-1],[15,6],[10,14],[4,19],[20,26],[35,31],[40,57],[46,83],[53,72],[62,60],[66,48],[134,66],[10,-4],[-12,-21],[8,-14],[13,-1],[49,10],[20,14],[6,-13],[-7,-17],[-30,-17],[1,-14],[43,-67],[13,-10],[12,1],[4,9],[-3,48],[14,9],[30,2],[19,-6],[9,-15],[17,-12],[25,-10],[15,3],[6,16],[-10,19],[-48,40],[-13,18],[-3,23],[7,31],[14,45],[24,60],[21,42],[42,47],[29,23],[72,72],[140,73],[34,47],[47,52],[20,13],[0,-20],[6,-18],[32,-12],[20,-4],[10,4],[2,19],[-4,34],[-1,33],[2,30],[4,24],[21,43],[31,49],[43,57],[27,26],[25,14],[24,25],[42,58],[14,10],[30,11],[11,-5],[7,-14],[8,-10],[30,-8],[21,13],[-4,7],[-16,5],[-11,8],[-10,35],[-20,21],[-5,24],[4,37],[17,87],[3,90],[16,51],[31,19],[69,13],[-40,23],[-16,0],[-26,11],[-10,56],[0,40],[18,47],[64,80],[71,55],[-10,4],[-8,17],[32,110],[32,98],[-43,-84],[-50,-64],[-145,-74],[-99,-63],[-47,-14],[-31,15],[-24,60],[-14,22],[-18,39],[8,50],[14,35],[31,6],[34,-17],[31,-1],[-39,34],[-56,30],[-26,-9],[-19,-49],[-26,-34],[-23,12],[-14,14],[10,-41],[-18,-63],[-6,-43],[25,-115],[-5,-45],[-45,-21],[-37,37],[-76,145],[-27,41],[-60,69],[-20,-10],[-25,-34],[-24,-9],[-65,50],[-30,37],[-28,46],[-44,-25],[-38,-30],[-44,-48],[-30,0],[-81,-41],[-9,-1],[-11,-22],[-11,-10],[-10,-43],[-109,-33],[-108,19],[38,23],[42,19],[37,44],[-16,60],[-3,30],[1,38],[40,54],[-42,0],[-27,-19],[-25,40],[-12,79],[29,47],[13,36],[12,50],[1,43],[-23,72],[-63,153],[-29,115],[-50,60],[37,100],[41,91],[54,40],[-4,6],[-30,0],[-19,-5],[-18,-30],[-18,-22],[-56,-116],[-37,-56],[-23,-16],[38,-22],[6,-19],[7,-41],[-10,-51],[-10,-28],[-45,2],[-40,-41],[-95,-44],[-128,-26],[-63,3],[-65,52],[0,30],[3,26],[-94,90],[-54,89],[-38,2],[-33,23],[-39,37],[3,30],[6,21],[-24,15],[-31,-2],[-36,11],[94,114],[32,77],[27,11],[34,-12],[47,-30],[40,-14],[14,-14],[15,-27],[-16,-45],[-14,-31],[17,8],[50,49],[37,43],[17,-4],[12,-8],[20,-44],[25,-45],[56,43],[30,53],[-25,24],[-31,13],[-79,19],[20,15],[50,-2],[19,15],[-20,20],[-25,18],[-68,-60],[-124,3],[-87,35],[-87,-6],[-13,7],[-17,19],[49,45],[34,25],[2,14],[-20,2],[-38,-12],[-17,21],[3,36],[-6,-4],[-15,-19],[-21,10],[-18,16],[9,17],[19,24],[-8,3],[-17,-5],[-16,-31],[3,-25],[0,-36],[-28,-7],[-24,5],[-17,36],[-17,78],[-48,20],[-12,39],[30,51],[-13,26],[-32,8],[-37,-25],[-17,22],[-3,25],[-1,36],[10,3],[9,-7],[74,20],[7,10],[-59,30],[-16,31],[24,18],[44,2],[61,19],[-25,33],[-6,18],[-5,31],[10,51],[72,117],[71,98],[22,22],[32,12],[30,-9],[31,-21],[6,9],[-11,9],[-13,40],[43,15],[26,45],[2,13],[-28,-18],[-29,-31],[-7,31],[-7,71],[12,68],[10,30],[24,29],[69,11],[13,-6],[2,14],[-41,42],[17,34],[15,17],[84,27],[45,-9],[58,-31],[33,-39],[-5,-20],[-8,-12],[-17,-13],[-7,-10],[3,-8],[25,24],[40,28],[23,-12],[17,-23],[20,1],[63,19],[32,20],[39,53],[51,34],[73,108],[21,44],[25,7],[23,-4],[15,-37],[23,-10],[130,9],[67,16],[46,35],[48,59],[28,40],[13,52],[-17,66],[-18,56],[-23,127],[-64,83],[-46,25],[-30,-3],[22,53],[61,-6],[40,11],[33,26],[10,19],[16,40],[-5,42],[-9,23],[-22,26],[-27,37],[-18,12],[-16,-1],[-78,-74],[-46,-2],[-35,14],[-30,-42],[-85,-37],[-45,-38],[-84,-93],[-21,-43],[-26,-2],[-19,82],[-91,79],[-28,-27],[15,-25],[21,-17],[34,-8],[-15,-23],[-11,-32],[-34,30],[-61,43],[-63,22],[-164,-3],[-108,-44],[-10,9],[-10,4],[-18,-11],[-8,-17],[-11,-12],[-22,-4],[-45,7],[-85,27],[-194,41],[-50,24],[-44,59],[1,40],[19,17],[-1,58],[-38,15],[-77,82],[-28,35],[6,4],[14,-9],[26,-7],[64,11],[22,53],[48,16],[44,-8],[-10,15],[-11,11],[-114,27],[-16,-8],[-205,48],[-162,84],[-13,16],[-15,36],[22,35],[22,17],[1,-20],[3,-19],[93,45],[48,58],[92,10],[22,16],[28,31],[41,54],[58,28],[39,25],[51,15],[44,-25],[13,-3],[80,-5],[26,11],[11,8],[8,12],[-78,45],[8,25],[10,18],[91,52],[70,17],[37,-1],[108,68],[59,19],[112,13],[92,3],[25,-24],[-49,5],[-22,-4],[15,-9],[18,-17],[-5,-22],[-31,-66],[3,-53],[-20,-17],[-19,-24],[94,-76],[146,-5],[79,14],[45,-23],[38,-5],[103,12],[78,-16],[33,6],[72,113],[28,18],[31,-20],[40,-16],[25,12],[21,-29],[-10,61],[-14,23],[-118,41],[-78,-20],[-25,23],[8,47],[-84,115],[-35,24],[-42,1],[-21,40],[-18,51],[36,21],[33,10],[30,-17],[33,-67],[32,-10],[-9,-68],[39,-62],[89,-57],[70,21],[50,-1],[30,-12],[74,-52],[37,-6],[116,27],[1,51],[-9,37],[-28,23],[-78,-5],[-62,38],[-52,-10],[-96,-58],[-48,23],[-30,31],[-49,31],[-6,60],[41,69],[30,32],[-27,24],[-68,17],[-119,-18],[-5,24],[0,25],[-48,-49],[-50,10],[-66,-5],[-148,43],[-52,54],[-22,43],[-40,119],[-50,75],[-351,252],[-159,64],[-77,70],[-48,17],[-46,8],[-59,22],[40,28],[27,10],[-28,-30],[21,-7],[35,17],[18,20],[27,85],[28,129],[-7,51],[194,-10],[129,8],[43,12],[163,20],[43,14],[78,43],[92,77],[80,101],[12,27],[5,-7],[7,5],[9,38],[10,90],[39,85],[168,193],[77,77],[26,35],[27,25],[19,-24],[9,-7],[5,-11],[-16,-6],[-26,-25],[-36,-16],[-9,-9],[22,2],[63,18],[36,22],[179,41],[97,66],[3,15],[144,84],[20,-4],[23,-10],[-40,-55],[28,-14],[-25,-66],[52,-1],[12,-30],[3,26],[-1,37],[4,37],[8,25],[36,-11],[83,27],[-100,4],[-60,59],[-33,1],[111,87],[102,53],[23,-1],[11,-10],[2,-16],[-22,-10],[-21,-19],[10,-16],[15,-3],[48,14],[22,17],[105,-2],[30,13],[8,12],[134,2],[25,9],[85,46],[78,57],[36,31],[61,79],[53,51],[87,51],[21,-6],[-28,-10],[-20,-22],[27,-29],[183,-59],[46,-4],[18,-35],[-15,-34],[-47,-38],[-95,-39],[29,-15],[19,-35],[28,-4],[46,13],[35,21],[74,70],[24,39],[17,9],[62,-9],[35,-20],[40,-35],[-15,-34],[-16,-20],[52,-26],[57,-6],[55,-21],[77,44],[60,9],[57,-2],[73,24],[125,-32],[31,8],[50,-5],[53,-20],[19,-21],[-57,-44],[-9,-46],[20,-19],[36,-4],[4,-27],[23,-6],[112,2],[-9,-13],[-5,-15],[-35,-34],[200,-20],[27,19],[41,8],[88,26],[33,-12],[39,-26],[36,-6],[34,6],[78,38],[91,2],[37,-13],[39,6],[118,-44],[44,-5],[58,-57],[30,-1],[34,24],[29,-1],[29,-23],[47,-7],[22,-37],[24,-13],[178,-27],[88,13],[129,-4],[62,-17],[65,2],[107,-63],[56,-9],[11,-15],[161,-15],[56,33],[98,8],[88,28],[50,0],[59,-7],[22,3],[16,12],[142,-47],[79,-55],[35,-40],[166,-57],[48,-32],[33,-36],[19,-3],[14,10],[58,-3],[22,-5]],[[10833,91964],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[0,-169],[0,-168],[0,-168],[66,-24],[66,-23],[20,46],[71,-35],[62,-32],[40,40],[43,44],[58,3],[65,3],[43,3],[0,-37],[-16,-62],[-14,-51],[40,-52],[48,-27],[46,-26],[20,-71],[50,-55],[37,-41],[36,-40],[52,-57],[37,-40],[48,-53],[29,-32],[13,-61],[17,-74],[-10,-44],[23,-7],[44,49],[42,30],[52,38],[35,25],[65,1],[31,74],[1,103],[32,-2],[20,14],[8,31],[-20,41],[62,19],[45,14],[65,39],[63,37],[30,-29],[29,-28],[59,-67],[4,-16],[-4,-32],[-6,-31],[35,-88],[11,-10],[29,-12],[35,-29],[15,-26],[50,-40],[9,-17],[4,-27],[9,-23],[9,-17],[9,-24],[22,-28],[41,-31],[29,-22],[40,-30],[41,-62],[36,-54],[40,-54],[-6,-42],[41,-66],[43,-84],[33,-74],[24,-41],[28,-60],[34,-74],[39,-83],[30,-54],[39,-75],[20,-45],[-13,-31],[-17,-38],[51,-18],[34,-12],[-8,-42],[-12,-56],[40,-22],[26,-15],[-5,-29],[15,-33],[2,-55],[48,4],[21,2],[29,-25],[38,-32],[38,-30],[32,-25],[42,-15],[53,-22],[25,-44],[48,-20],[18,-62],[55,-23],[33,16],[11,-26],[9,-29],[3,-37],[-3,-36]],[[4590,83513],[27,-95],[12,-18],[17,-10],[24,-11],[15,-14],[12,-21],[2,-10],[-76,38],[-48,-56],[-15,-7],[-136,-3],[-27,-10],[-18,-18],[-31,-52],[-16,-19],[-16,-12],[-36,-14],[-42,2],[-22,7],[-12,24],[-11,48],[0,14],[5,23],[38,31],[12,17],[49,109],[14,15],[16,4],[41,-8],[36,32],[77,48],[17,6],[55,1],[16,-8],[11,-13],[10,-20]],[[12971,83838],[6,-16],[0,-11],[-40,-38],[-1,-8],[-9,-23],[-9,-9],[-15,-26],[-28,-27],[4,83],[-28,48],[28,24],[19,-7],[31,-3],[30,22],[12,-9]],[[13517,83571],[28,-75],[2,-27],[-28,-9],[-21,4],[-11,8],[-3,13],[7,38],[-14,22],[-16,8],[-15,-14],[0,38],[11,27],[-7,36],[0,28],[4,9],[15,-1],[30,-29],[18,-76]],[[13302,84164],[-6,-96],[-11,5],[-10,1],[-22,-14],[-22,6],[-11,11],[-4,12],[4,28],[-12,16],[-42,6],[-16,7],[-9,30],[-2,39],[7,14],[21,11],[16,47],[10,7],[35,94],[17,-7],[31,-57],[39,-83],[-13,-77]],[[13617,83806],[-10,-63],[-19,-65],[-29,-35],[-21,8],[-15,28],[-14,-1],[-15,6],[-8,23],[8,30],[-7,23],[-8,-20],[-13,-19],[-33,-24],[-23,-47],[-11,-30],[-13,33],[-9,78],[-1,33],[24,50],[31,48],[6,142],[99,71],[9,-4],[32,-53],[35,-74],[8,-34],[1,-58],[-4,-46]],[[12954,84679],[18,-18],[10,19],[19,-1],[35,-17],[20,-25],[12,-29],[1,-17],[-3,-40],[2,-40],[-1,-20],[-5,-18],[-8,-13],[-8,-2],[-27,36],[-31,65],[-24,20],[-1,-7],[7,-18],[19,-35],[3,-21],[14,-26],[6,-19],[3,-26],[0,-22],[-4,-19],[-6,-12],[-9,-6],[-47,6],[-28,-13],[-33,7],[-8,11],[-5,19],[-2,46],[-9,66],[2,50],[-21,46],[-18,27],[-26,25],[-18,24],[5,20],[27,14],[44,-3],[95,-34]],[[13094,83464],[6,-8],[7,5],[12,21],[20,-4],[14,-7],[9,-8],[-5,-30],[-4,-49],[-8,-17],[-8,-24],[-28,14],[-23,31],[-33,53],[-19,38],[-1,16],[-12,12],[-22,66],[-13,52],[-21,6],[-26,15],[-10,29],[7,25],[37,12],[55,-64],[9,-28],[20,-32],[3,-44],[10,-18],[24,-62]],[[9335,86664],[6,-16],[53,4],[16,-3],[6,-7],[-7,-11],[-21,-14],[-60,-25],[-49,-33],[-6,3],[-9,36],[-9,15],[-6,20],[0,7],[9,14],[18,20],[13,8],[46,-18]],[[8962,86297],[-31,-8],[-7,17],[16,42],[13,24],[10,6],[35,48],[39,35],[36,51],[37,72],[6,27],[17,3],[28,-18],[17,-25],[-8,-20],[-92,-103],[-8,-13],[-8,-35],[-8,-13],[-12,-5],[-9,-15],[-5,-25],[-11,-14],[-18,-1],[-12,-7],[-6,-12],[-19,-11]],[[8984,86664],[0,-15],[-9,-14],[8,-27],[-14,-46],[-6,-29],[-8,-19],[-7,-7],[-8,4],[-2,11],[5,16],[-18,-1],[-6,40],[10,13],[4,17],[1,12],[12,51],[4,3],[2,-12],[3,-3],[7,5],[9,22],[4,3],[9,-24]],[[8908,86881],[-35,-5],[-16,7],[-3,8],[7,29],[0,12],[17,5],[21,-14],[6,-14],[3,-28]],[[7498,84749],[-35,-19],[-7,1],[-21,-38],[-17,-16],[-22,30],[5,46],[20,30],[97,-10],[7,-9],[1,-7],[-8,-6],[-20,-2]],[[7643,85532],[-9,-4],[-20,18],[-13,19],[9,14],[39,30],[19,0],[8,-4],[3,-10],[-2,-13],[-8,-18],[-26,-32]],[[7433,85166],[-8,-16],[-7,4],[-16,19],[-31,28],[-15,18],[-1,8],[11,9],[38,-22],[15,-20],[14,-28]],[[6787,83998],[-11,-19],[-21,2],[-12,6],[-3,16],[32,48],[7,6],[6,-2],[3,-20],[-1,-37]],[[7032,84352],[-19,-14],[-6,5],[-1,11],[5,18],[9,18],[29,34],[29,23],[15,-2],[6,-14],[-19,-30],[-48,-49]],[[7164,84397],[-13,-1],[-21,15],[3,18],[29,22],[29,-3],[3,-12],[-2,-14],[-2,-8],[-9,-8],[-17,-9]],[[5365,83706],[4,0],[9,4],[18,33],[6,1],[0,-10],[-8,-32],[14,-43],[13,-21],[-1,-7],[-34,-15],[-25,11],[-14,-4],[-12,-15],[-9,17],[-6,79],[2,14],[14,27],[18,13],[8,-4],[7,-11],[1,-11],[-5,-26]],[[4917,83436],[-6,-2],[-20,17],[-7,14],[-5,20],[39,30],[8,0],[8,-16],[1,-14],[-11,-37],[-7,-12]],[[4846,83180],[-24,-13],[-26,13],[-22,25],[-2,28],[49,-18],[10,-9],[15,-26]],[[5591,83599],[-17,-13],[-5,-16],[-13,-7],[-11,-13],[-37,-59],[-16,-11],[18,51],[3,16],[0,10],[-5,38],[10,-1],[9,8],[18,34],[16,3],[17,40],[9,3],[4,-6],[-7,-24],[16,-22],[-4,-22],[-5,-9]],[[3933,82989],[-11,-10],[-8,-2],[-7,6],[-28,-7],[-6,4],[-13,34],[-1,18],[5,14],[13,13],[21,11],[21,-2],[35,-32],[17,-18],[3,-12],[-12,-11],[-29,-6]],[[4011,83027],[-12,-4],[-3,6],[-2,25],[-9,40],[18,15],[11,3],[4,-6],[13,-30],[13,-8],[9,-6],[-16,-9],[-26,-26]],[[5300,85585],[-20,-9],[-22,5],[-17,57],[13,1],[28,38],[60,30],[15,4],[-57,-126]],[[2016,86668],[60,-38],[39,4],[30,-31],[13,-26],[-46,19],[-66,-2],[-90,77],[-32,18],[7,43],[35,22],[17,-58],[33,-28]],[[2733,84783],[-29,-28],[-26,10],[-7,20],[-1,9],[75,22],[-12,-33]],[[2863,82285],[-4,-24],[-4,-8],[-43,12],[-29,-4],[-3,14],[3,12],[45,18],[18,1],[12,-10],[5,-11]],[[2574,82131],[-18,-18],[-5,7],[-3,23],[10,17],[30,38],[21,-7],[6,-10],[0,-14],[-8,-19],[-10,-10],[-12,0],[-11,-7]],[[2093,81953],[-21,-8],[-22,9],[10,30],[11,16],[21,20],[24,-9],[19,-25],[-42,-33]],[[2846,84466],[36,-11],[21,7],[18,-6],[3,-13],[-31,-30],[-13,2],[-37,36],[3,15]],[[1031,81677],[-17,-34],[-13,15],[-5,47],[10,12],[27,-34],[-2,-6]],[[1105,81798],[-6,-17],[-28,18],[-9,15],[-2,15],[8,25],[22,0],[12,-10],[12,-19],[4,-12],[-13,-15]],[[792,81633],[-8,-7],[-15,-6],[-42,6],[-26,-2],[-28,-4],[-22,-10],[-4,14],[1,12],[92,32],[22,16],[13,21],[12,39],[10,12],[6,-1],[13,-15],[-5,-20],[-11,-18],[-4,-17],[-4,-52]],[[99603,81748],[-17,-10],[-10,25],[-1,15],[10,15],[17,-9],[10,-15],[-9,-21]],[[99847,81435],[-49,0],[-97,94],[-50,29],[-28,33],[13,7],[60,-23],[49,-51],[27,-33],[31,-28],[34,-12],[10,-16]],[[98255,82004],[-18,-2],[-11,20],[-60,8],[6,19],[26,8],[39,30],[33,-5],[-9,-28],[-6,-50]],[[12508,84879],[24,-63],[17,-49],[15,-59],[26,-122],[12,-46],[3,-26],[3,-66],[-4,-14],[-7,-13],[-2,-19],[7,-50],[1,-77],[-7,-43],[-8,-7],[-19,14],[-15,24],[-12,24],[-28,77],[-9,36],[0,25],[4,19],[9,12],[17,31],[-3,5],[-12,-7],[-25,-4],[-22,24],[-17,13],[3,45],[-4,12],[-34,-13],[-13,12],[-3,17],[1,25],[6,21],[32,55],[-3,11],[-15,2],[-21,19],[-9,61],[-22,35],[-14,-3],[-29,-99],[-15,-22],[-42,-14],[9,28],[4,25],[-15,74],[-1,29],[10,21],[30,9],[15,13],[13,20],[3,20],[23,53],[10,10],[29,0],[60,-59],[18,-8],[26,-38]],[[12589,85346],[70,-13],[52,3],[47,-86],[29,-70],[17,-49],[10,-47],[13,-45],[-1,-7],[-28,31],[-19,62],[-10,24],[-10,11],[-10,23],[-21,59],[0,17],[-9,16],[-11,6],[-12,-3],[-4,-5],[2,-41],[9,-46],[51,-99],[34,-57],[7,-18],[5,-52],[-15,-23],[18,-48],[-1,-9],[-4,-9],[-48,-21],[-45,-89],[-48,-52],[-23,-8],[-10,9],[-11,20],[-6,26],[-1,33],[12,21],[24,109],[0,35],[-30,50],[-18,40],[-9,57],[-17,149],[-7,48],[-11,39],[-14,32],[-10,35],[-8,38],[3,15],[24,-20],[29,-55],[15,-36]],[[12297,85393],[40,-56],[0,-13],[-8,-38],[-22,-11],[6,-15],[17,-12],[11,10],[42,54],[13,11],[8,1],[51,-16],[44,-26],[13,-20],[8,-36],[-12,-79],[-37,-13],[-17,1],[-18,12],[-30,-28],[25,-20],[75,-5],[23,-44],[6,-34],[-16,-62],[-43,17],[-37,36],[-77,51],[-19,3],[-12,-9],[-4,-31],[1,-68],[-20,-34],[-61,15],[-24,51],[-22,80],[-84,96],[-23,19],[-30,57],[12,45],[4,26],[16,7],[23,20],[14,44],[21,-36],[28,-34],[1,32],[13,26],[28,-1],[13,5],[18,24],[26,12],[16,-14]],[[12898,84296],[53,-12],[48,1],[17,-24],[10,-25],[7,-24],[1,-22],[-1,-15],[-6,-17],[2,-5],[94,-55],[44,-58],[18,-30],[10,-26],[19,-64],[39,-74],[21,-23],[11,-22],[-6,0],[-28,16],[-60,50],[-5,-2],[-5,-27],[-9,-24],[-14,-17],[11,-5],[48,11],[41,-49],[15,-8],[16,-35],[0,-14],[-9,-26],[-6,-10],[2,-7],[11,-4],[45,7],[8,-12],[-7,-101],[6,-37],[0,-17],[-5,-22],[0,-19],[4,-19],[1,-18],[-12,-45],[-12,-8],[-19,0],[-15,13],[-22,39],[-21,60],[-8,9],[-27,9],[-5,7],[-17,1],[-13,25],[2,33],[-11,33],[1,15],[-12,6],[-10,-9],[6,-33],[-6,-25],[-22,11],[-36,80],[-41,65],[-17,15],[5,19],[20,10],[17,-1],[3,11],[-34,63],[1,18],[12,31],[-15,13],[-43,-9],[-15,6],[-13,26],[-7,21],[-37,4],[-14,-2],[-24,33],[-12,21],[5,11],[22,18],[13,-2],[25,-20],[10,0],[25,27],[4,24],[18,20],[-3,21],[-10,35],[-23,10],[-46,-21],[-41,-32],[-16,12],[-3,20],[43,55],[19,30],[-4,17],[-14,23],[-1,58],[9,13]],[[12781,84587],[18,-40],[26,4],[14,-30],[11,-46],[-8,-29],[-11,7],[-13,-17],[-8,-56],[4,-55],[-4,-56],[-15,-57],[-3,-38],[-6,-11],[-7,-4],[-8,10],[-12,8],[-15,-32],[-19,0],[-15,73],[13,121],[31,25],[-18,32],[-39,39],[3,21],[-29,62],[-2,14],[5,52],[27,46],[37,8],[25,-20],[14,-17],[4,-14]],[[7662,85460],[10,-4],[10,34],[8,1],[33,-29],[20,6],[13,-35],[12,-4],[10,5],[7,-3],[-2,-38],[-24,-38],[-12,-9],[-15,9],[-6,4],[-10,17],[-8,21],[-5,1],[-18,-25],[0,-13],[8,-19],[-1,-11],[-20,-6],[-20,3],[-24,-16],[-5,10],[-4,29],[-7,-4],[-12,-35],[-12,-22],[-22,-18],[-5,-9],[-17,-1],[-24,-12],[-15,2],[-90,38],[-21,14],[74,87],[39,34],[22,-2],[22,-11],[12,2],[1,39],[-21,29],[1,12],[46,19],[18,-3],[19,-10],[18,-16],[17,-23]],[[3343,82571],[-85,-61],[-28,-45],[-21,-44],[-16,-24],[-12,-4],[-14,-11],[-28,-31],[-12,-3],[-90,-71],[-6,-1],[4,18],[28,26],[18,24],[20,40],[11,14],[4,20],[1,40],[5,15],[20,30],[14,17],[18,6],[38,-5],[16,15],[4,11],[-9,11],[-2,18],[2,32],[11,28],[19,25],[27,19],[33,13],[24,1],[44,-29],[7,-13],[-11,-29],[-6,-27],[-28,-25]],[[3718,82891],[12,-27],[21,17],[15,24],[12,31],[7,12],[11,-16],[29,-22],[-25,-34],[-47,-51],[-16,-34],[-1,-15],[46,12],[13,-2],[8,-12],[-13,-13],[-25,-13],[-21,-24],[-50,-42],[-19,-35],[-23,-14],[-30,-3],[-54,-23],[-32,-21],[-8,-12],[-11,-5],[-12,1],[-13,-10],[-14,-19],[-12,-9],[-19,-2],[-11,-8],[-11,0],[-31,23],[-8,14],[28,27],[20,9],[30,4],[29,25],[61,34],[19,18],[12,63],[14,11],[8,25],[33,-1],[16,-28],[5,-4],[3,3],[2,22],[17,16],[-10,12],[-31,15],[-23,6],[-15,0],[-13,8],[-9,17],[-5,17],[1,17],[8,19],[14,21],[17,12],[36,9],[32,14],[17,2],[13,-6],[3,-55]],[[1791,81875],[54,-23],[68,2],[25,-5],[0,-7],[-43,-10],[-15,4],[-38,-13],[-26,-3],[-58,13],[-46,-9],[-12,3],[-14,11],[-16,18],[-1,12],[15,4],[40,-15],[4,8],[34,14],[29,-4]],[[1478,81817],[-149,-24],[-22,16],[22,10],[27,5],[56,27],[69,23],[54,29],[47,18],[13,30],[-41,16],[-8,12],[19,14],[16,21],[39,25],[34,-31],[8,-20],[-4,-25],[-7,-25],[-30,-13],[-4,-13],[16,-38],[-62,-33],[-93,-24]],[[946,81720],[2,-20],[32,3],[10,-10],[0,-38],[-5,-11],[-4,-2],[-12,8],[-13,-19],[-59,-48],[-18,27],[-35,-42],[24,108],[28,16],[11,12],[-3,32],[13,52],[28,-2],[13,-22],[0,-14],[-12,-30]],[[589,81595],[-6,-19],[-7,0],[-37,32],[-5,11],[22,15],[6,11],[-3,16],[-16,21],[-30,27],[-11,20],[7,12],[14,7],[45,2],[25,-34],[18,-12],[43,-8],[-22,-14],[-13,-13],[-15,-53],[-15,-21]],[[99923,81742],[-23,-14],[-26,7],[-15,23],[2,27],[34,29],[43,-37],[-15,-35]],[[99281,81729],[-24,-24],[-19,24],[-3,12],[36,42],[28,9],[11,15],[12,53],[20,2],[10,-6],[-5,-25],[-16,-38],[0,-27],[-50,-37]],[[98002,82380],[48,-19],[33,9],[41,-30],[52,-53],[-12,-10],[-13,-5],[-12,0],[-40,-8],[-22,2],[-40,-36],[-45,26],[-15,51],[-35,12],[-28,18],[51,40],[37,3]],[[6783,62794],[-12,-27],[-16,2],[-55,59],[-7,32],[4,148],[-21,120],[-23,91],[17,47],[22,37],[25,69],[-21,88],[6,53],[11,9],[59,-65],[117,-97],[31,-68],[6,-74],[21,-9],[11,-50],[30,-44],[11,-26],[-13,-40],[-56,-78],[-72,-34],[-62,-87],[-13,-56]],[[6329,64063],[59,-15],[14,6],[10,-12],[48,-8],[9,-5],[-10,-30],[-31,-27],[-45,24],[-75,8],[3,23],[7,16],[1,29],[10,-9]],[[6531,63901],[8,-11],[29,16],[22,5],[35,-38],[13,-26],[23,-27],[8,-21],[-6,-24],[-26,-40],[-36,-10],[-20,-17],[-28,4],[-8,7],[-3,51],[-9,55],[-17,-7],[-20,19],[-21,46],[-2,27],[11,44],[20,5],[15,-24],[12,-34]],[[6167,64202],[9,-3],[13,4],[4,-46],[14,-25],[5,-15],[-15,-16],[-30,-7],[-14,13],[-15,29],[-15,-8],[-3,23],[-3,6],[-11,-6],[10,-30],[-27,-2],[-9,4],[-7,34],[-28,64],[0,25],[-10,31],[42,8],[28,53],[16,5],[31,-85],[0,-24],[6,-23],[9,-9]],[[5730,64476],[-25,-32],[-14,14],[-27,5],[-10,25],[-29,22],[-11,30],[17,56],[41,48],[63,-2],[14,-38],[1,-28],[-8,-31],[-4,-45],[-8,-24]],[[5505,64424],[-5,-26],[-10,4],[-2,23],[6,31],[16,27],[18,41],[14,-6],[-8,-27],[-1,-29],[-20,-16],[-8,-22]],[[6431,63808],[-17,-16],[-18,8],[-4,39],[-17,50],[30,10],[17,-14],[9,-16],[11,-27],[-11,-34]],[[29247,77766],[13,0],[65,1],[115,0],[116,0],[115,0],[116,1],[116,0],[115,0],[116,1],[27,111],[26,51],[34,-17],[19,2],[21,26],[17,17],[11,-3],[9,-24],[8,-17],[9,5],[8,23],[0,32],[10,22],[13,4],[12,-1],[6,11],[-1,16],[-4,25],[1,30],[30,53],[36,36],[12,18],[4,37],[21,38],[10,22],[2,19],[-5,24],[1,44],[7,54],[8,58],[19,52],[32,57],[8,75],[8,80],[38,77],[43,87],[24,50],[44,91],[31,64],[16,30],[17,35],[26,-10],[27,-11],[-4,-51],[5,-37],[12,-21],[18,-15],[14,-5],[17,0],[44,29],[52,19],[29,17],[5,17],[13,6],[21,-5],[39,-41],[45,-62],[35,-49],[2,-85],[0,-89],[1,-95],[1,-68],[0,-92],[1,-74],[1,-96],[1,-52],[5,-15],[-3,-20],[-2,-10],[1,-8],[2,-10],[-1,-15],[-4,-12],[-3,-15],[0,-25],[5,-15],[8,-8],[7,0],[8,-9],[12,-16],[17,-13],[18,-5],[12,3],[15,-8],[6,-22],[-3,-20],[-9,-10],[-9,-7],[-2,-16],[5,-16],[7,-14],[7,-25],[-3,-22],[-7,-18],[-3,-19],[6,-16],[15,-22],[9,-21],[14,-11],[7,8],[5,11],[6,8],[10,-5],[12,-6],[13,-7]],[[31354,77862],[-2,-18],[8,-29],[6,-57],[-9,-26],[2,-34],[26,-10],[6,-10],[1,-13],[-57,-88],[-48,13],[-26,-24],[-27,-6],[-12,-40],[-15,-8],[-20,3],[-18,11],[-13,-6],[-19,-70],[-16,6],[-6,-26],[-8,-11],[-12,-9],[-10,31],[-7,30],[-9,6],[-13,8],[-13,0],[-9,-5],[-11,-19],[-16,-16],[-12,13],[-9,23],[-8,-36],[-12,-38],[2,-44],[-5,-26],[-11,7],[-11,23],[-31,18],[-25,-1],[5,24],[24,35],[-8,7],[-11,-5],[-5,5],[8,32],[1,35],[-10,-12],[-14,-37],[-31,-30],[1,-49],[-30,-102],[-1,-43],[-19,-34],[-25,-30],[-33,9],[-25,-26],[-13,-29],[-11,-5],[-5,38],[-5,11],[-9,-55],[-9,-4],[-4,40],[-4,26],[-13,-23],[-9,-59],[-9,5],[-2,22],[-7,7],[-2,-25],[3,-36],[-5,-19],[-8,10],[-9,17],[-15,-13],[-14,-5],[0,17],[3,22],[-27,-12],[-32,-39],[-26,-55],[9,-9],[10,-17],[-44,-84],[-44,-76],[-34,-123],[-14,-15],[-11,-22],[-13,-75],[-14,-66],[8,-30],[5,-30],[13,-30],[11,-3],[11,5],[9,-1],[5,-13],[-2,-15],[-13,-4],[-26,-26],[-22,-11],[-11,-32],[-16,-37],[-32,-58],[13,-18],[50,-20],[22,-21],[34,-109],[-8,-10],[-3,-20],[30,-28],[9,-78],[25,-27],[36,-16],[45,24],[37,32],[-1,27],[-24,61],[-5,29],[-18,19],[-6,-16],[-11,21],[-2,12],[11,5],[12,-2],[14,-11],[36,-67],[10,-89],[3,-56],[-4,-19],[-11,4],[-20,-4],[-96,-29],[-21,-25],[-49,-28],[-3,14],[3,28],[-3,59],[-10,3],[-75,-96],[-30,-6],[-24,-28],[-6,16],[-4,71],[15,61],[-8,-1],[-26,-36],[-11,22],[-5,24],[-8,14],[-9,5],[7,-53],[-17,-40],[-5,-104],[-22,-43],[-68,-27],[-45,6],[-40,-9],[-53,-20],[-29,12],[-30,-21],[-103,-6],[-21,11],[-28,-39],[-44,-24],[-111,-88],[-25,-33],[-29,-50],[-21,-27],[-16,-9],[-10,-22],[-11,-15],[10,50],[12,43],[10,82],[-3,66],[-12,28],[-12,18],[14,-66],[2,-80],[-5,-47],[-27,-91],[-12,-21],[-13,-19],[-10,-8],[-10,-15],[-11,-23],[-10,-45],[6,-42],[53,-15],[15,13],[7,-30],[4,-42],[-4,-45],[-9,-45],[-7,-57],[-5,-86],[-9,-78],[-1,24],[5,94],[-9,-10],[-6,-22],[-16,-121],[-22,-65],[-21,-45],[-21,7],[5,-36],[-6,-18],[-5,-39],[-13,-26],[-12,3],[-17,-18],[-6,-13],[-1,-26],[-11,-23],[-42,-119],[-35,-35],[-9,5],[10,56],[6,57],[-22,24],[-21,13],[-23,-1],[-27,44],[-34,32],[-47,86],[1,24],[-1,41],[14,63],[14,45],[19,23],[56,23],[14,36],[8,30],[-28,-52],[-41,-17],[-22,-19],[-18,-29],[-10,-37],[-24,-44],[2,-29],[4,-21],[-2,-44],[15,-43],[30,-70],[5,-109],[23,-72],[35,-85],[27,-24],[1,-32],[-12,-52],[-17,-24],[22,5],[10,-12],[10,-43],[0,-44],[-4,-25],[-6,-10],[0,25],[-5,9],[-7,-11],[-5,-13],[-2,-49],[-5,-25],[-18,-7],[-19,-66],[-17,-37],[-67,-249],[2,-42],[-12,-14],[-19,-11],[-19,-25],[-12,-27],[-12,-74],[-22,-84],[-14,35],[-4,30],[7,77],[24,128],[26,79],[21,37],[16,76],[-21,12],[-32,-1],[6,35],[9,31],[-16,31],[-10,4],[-10,12],[12,26],[5,27],[-3,34],[5,25],[-9,-4],[-13,-27],[-8,-10],[-5,23],[-6,-5],[-4,-16],[-9,-9],[-18,22],[-26,25],[-15,43],[-8,34],[8,61],[18,10],[24,-9],[31,0],[-4,13],[-11,-2],[-33,49],[-11,30],[-18,8],[-8,-29],[-9,-7],[11,62],[15,3],[22,17],[-6,36],[-14,16],[-25,-20],[0,26],[5,32],[19,0],[16,-10],[14,52],[1,24],[-24,-34],[-5,73],[23,72],[22,31],[27,-1],[28,5],[-17,13],[-18,7],[13,28],[12,5],[11,24],[-27,-3],[3,46],[-13,-9],[-16,-5],[-6,-19],[1,-33],[-4,-21],[-13,-18],[-20,-13],[-2,23],[-7,11],[-3,-50],[-5,-17],[-15,47],[-5,-10],[1,-13],[-4,-23],[-13,-12],[1,-29],[-5,-16],[-42,25],[-1,-8],[24,-56],[17,-18],[2,-30],[-15,-25],[-20,21],[-4,-1],[11,-37],[7,-33],[-7,-27],[1,-33],[-1,-30],[-5,-26],[10,-121],[12,-33],[12,-32],[6,-29],[-12,-5],[-20,25],[-17,18],[-21,59],[-4,24],[-5,19],[3,-43],[7,-48],[65,-107],[12,-42],[9,-32],[-2,-31],[-17,22],[-15,28],[-38,32],[-49,19],[-28,74],[1,-31],[-7,-26],[-16,32],[-11,27],[-4,29],[-20,-2],[-22,-25],[-22,6],[-2,50],[5,27],[24,62],[23,33],[10,41],[-4,64],[-4,-65],[-13,-33],[-20,-24],[-27,-44],[-6,-41],[-8,-77],[11,-25],[11,-7],[34,17],[18,-8],[39,-91],[72,-37],[27,-23],[22,-48],[32,-27],[25,-40],[1,-27],[-9,-30],[-3,-42],[-11,-27],[-26,-3],[-15,7],[-84,147],[-10,14],[-31,77],[-36,41],[-11,-1],[52,-76],[21,-53],[37,-75],[26,-32],[20,-50],[18,-23],[50,-33],[-18,-24],[28,-20],[4,-37],[-3,-42],[-38,16],[-1,-31],[3,-18],[-16,-15],[-24,20],[-61,113],[1,-15],[5,-18],[35,-72],[31,-44],[27,-20],[21,-36],[7,-22],[5,-34],[-15,-22],[-18,-13],[-17,23],[-12,24],[-27,40],[-8,46],[-20,-3],[-84,58],[-68,7],[7,-12],[8,-8],[54,-14],[22,-26],[44,-24],[26,-6],[11,-73],[35,-49],[5,-37],[25,-4],[43,36],[28,-13],[40,-10],[9,-30],[7,-55],[14,-63],[37,-246],[55,-202],[7,-34],[-13,30],[-41,134],[-23,96],[-23,170],[-7,38],[-8,16],[-5,-13],[-2,-21],[4,-17],[-9,-56],[4,-26],[14,-26],[17,-67],[13,-89],[-18,36],[-19,19],[-29,15],[-25,26],[1,-37],[-2,-40],[-20,12],[-14,13],[12,-42],[-26,13],[-17,-3],[-11,-38],[-15,-23],[-23,-7],[-33,34],[-11,42],[-4,47],[-2,-55],[6,-58],[-2,-43],[32,-9],[30,8],[40,-2],[26,8],[16,14],[38,-12],[3,-53],[-4,-52],[-3,-56],[11,0],[12,18],[6,100],[35,37],[12,-3],[11,-32],[4,-32],[4,-45],[-9,-68],[-53,-80],[-38,-74],[-20,-15],[-28,8],[-32,19],[-15,4],[-12,-6],[-8,22],[-4,42],[-13,14],[-9,-2],[-7,-44],[-29,-13],[-41,19],[-42,37],[18,-40],[105,-74],[12,-14],[11,-20],[-15,-32],[-11,-36],[-2,-28],[-4,-18],[-42,-48],[-23,9],[-58,86],[27,-75],[21,-31],[43,-17],[80,28],[26,-31],[-22,-54],[-21,-37],[-28,-5],[-25,-10],[-7,-26],[-18,-2],[-27,-1],[-43,-2],[-23,6],[-33,-54],[-12,-7],[-18,10],[-7,43],[-8,21],[0,-80],[3,-22],[6,-16],[-38,-43],[-37,-54],[-13,-15],[-15,-27],[-30,-78],[-8,-57],[-11,-64],[-1,29],[2,48],[-8,55],[-5,-101],[-12,-47],[-109,3],[-47,-25],[-74,-86],[-22,-38],[-60,-145],[-16,-94],[-12,40],[3,29],[0,24],[-15,-51],[15,-76],[-13,-28],[-40,-54],[-22,-8],[-25,-16],[-8,-52],[-33,-49],[-19,-22],[-36,13],[11,-46],[-13,-36],[-23,-27],[-28,-18],[-16,2],[-13,-9],[-11,-23],[-26,-21],[-28,12],[-30,7],[-18,-12],[29,-21],[16,-31],[-3,-41],[-8,-15],[-18,-22],[-8,3],[-5,20],[-6,40],[-9,-9],[-1,-18],[-8,-7],[-25,64],[1,-49],[9,-37],[9,-19],[8,-12],[3,-17],[-18,-42],[-9,-10],[-16,-7],[-10,-26],[3,-22],[-14,-49],[-34,-30],[-10,1],[-9,-9],[5,-22],[9,-16],[-1,-14],[-9,-20],[-17,-6],[-10,-23],[3,-21],[6,-12],[-1,-21],[-21,-20],[-4,-21],[10,-6],[7,6],[6,-4],[-12,-34],[-11,-21],[-10,-37],[-24,-11],[1,-12],[13,-11],[12,-28],[-22,-53],[-13,4],[-8,12],[-5,-42],[2,-22],[-5,-46],[-8,-55],[-6,-22],[1,-42],[4,-41],[13,-52],[20,-214],[13,-74],[24,-200],[41,-194],[57,-235],[93,-284],[11,-40],[-12,-35],[-4,-35],[-1,-54],[3,-52],[11,-64],[22,-98],[-12,20],[-31,140],[-4,82],[5,117],[-7,-3],[-6,-38],[-3,-44],[-8,-18],[-11,68],[1,31],[11,36],[-3,13],[-18,18],[-4,29],[2,29],[-10,15],[-8,-1],[5,-70],[9,-43],[11,-104],[17,-63],[10,-52],[118,-561],[28,-72],[10,-51],[11,-107],[2,-138],[-19,-252],[-5,-171],[-2,5],[-2,18],[-5,2],[-16,-78],[-23,-71],[-8,-110],[-10,-56],[-33,-58],[-20,1],[-50,-43],[-35,11],[-42,-25],[-27,3],[-16,52],[3,23],[6,24],[11,5],[36,-54],[7,23],[-11,27],[-21,15],[-16,17],[-31,125],[-33,85],[-6,57],[-56,35],[-41,53],[-27,94],[-15,166],[-18,19],[-8,13],[18,62],[19,51],[-15,-13],[-11,-19],[-14,-45],[-10,-7],[-9,7],[-11,87],[3,108],[15,40],[-23,2],[-23,-16],[3,-36],[-3,-20],[-18,6],[-13,12],[-17,38],[-25,71],[-49,197],[-10,27],[-17,29],[8,9],[14,6],[32,88],[25,54],[9,37],[-2,16],[-11,23],[-14,-20],[-7,5],[-16,47],[-16,13],[-11,-10],[12,-38],[10,-14],[-4,-56],[-4,-18],[-10,-16],[-15,9],[-7,-14],[-9,15],[-9,24],[-10,40],[26,225],[24,144],[3,163],[2,24],[-2,44],[-33,94],[-145,231],[-112,273],[-97,103],[-74,-23],[-12,-21],[-6,-26],[5,-31],[-7,-13],[-20,2],[-26,-7],[-70,-72],[-25,3],[-22,-19],[-17,-14],[-43,-8],[-37,-15],[-16,8],[-10,42],[0,43],[8,-33],[13,-26],[6,10],[2,23],[-13,45],[-41,58],[-48,84],[14,-3],[4,18],[-15,24],[7,27],[10,29],[-20,-4],[-18,-21],[-1,-24],[-3,-20],[-10,3],[-18,24],[-89,68],[-77,39],[59,17],[32,-14],[-3,21],[-8,13],[-26,17],[-32,-7],[-21,8],[-21,-16],[-22,-25],[-21,-12],[-80,-18],[-65,-19],[11,20],[11,13],[38,20],[6,41],[-9,39],[-10,-9],[-11,-31],[-13,22],[-14,0],[-4,-49],[-19,-33],[-8,-33],[-54,-26],[-7,9],[16,31],[-1,18],[-19,-15],[-30,-60],[-106,-19],[5,13],[23,3],[32,19],[-7,32],[-12,34],[-11,4],[-8,21],[1,64],[-7,38],[-18,39],[-6,-8],[-12,-66],[-11,-87],[-5,-28],[-32,-2],[-28,6],[-95,-11],[-35,30],[-15,6],[-9,-1],[-41,-27],[-48,-21],[-11,7],[-16,1],[-34,-71],[-40,-33],[-102,60],[-25,47],[-22,10],[-28,6],[-29,-58],[-23,-79],[36,-44],[30,-21],[50,18],[28,38],[23,-1],[11,8],[10,20],[19,-16],[1,-16],[-14,-22],[-17,-19],[-11,-22],[20,-45],[31,-15],[12,7],[7,50],[19,32],[26,-7],[-3,-20],[3,-19],[12,-33],[-1,-47],[2,-11],[-28,-20],[-21,-8],[-17,-27],[9,-15],[-17,-14],[-11,6],[-6,-6],[-2,-16],[-9,-16],[13,-46],[26,-30],[19,-38],[74,-50],[18,1],[18,-50],[14,-18],[14,-8],[-1,-35],[-25,-25],[-7,-31],[-6,-17],[-11,22],[-11,15],[-26,-47],[-13,-10],[6,51],[-10,20],[-15,52],[-21,31],[-16,11],[-12,20],[-14,8],[-13,-2],[-21,12],[-1,27],[-6,20],[-16,25],[-78,45],[-1,-19],[6,-14],[11,-9],[13,-19],[0,-54],[-6,-23],[-2,-33],[-5,-34],[-10,-26],[-21,-18],[-10,15],[-15,72],[-22,23],[-34,2],[-23,-16],[-25,-70],[-21,-11],[-70,36],[-80,55],[2,18],[13,6],[24,-7],[-1,19],[-25,61],[-4,28],[3,34],[-8,-1],[-15,-28],[-51,24],[-14,28],[-30,81],[-42,3],[-19,49],[-35,-20],[-17,-23],[-15,-35],[6,-19],[15,-29],[-7,-14],[-49,-21],[-114,24],[-34,21],[-44,46],[-62,37],[-30,6],[-29,-7],[-86,-4],[-19,-10],[-17,-16],[-11,18],[-5,31],[10,5],[11,19],[10,36],[1,22],[-7,15],[-13,1],[-29,-95],[16,-53],[-1,-19],[-58,-11],[-132,-107],[-51,-58],[2,19],[62,75],[-21,12],[-36,-19],[-13,7],[15,62],[-4,55],[-26,1],[-16,-43],[-11,1],[-14,19],[-11,-6],[8,-98],[16,-41],[13,-52],[-36,-64],[-34,-53],[-3,-51],[-34,-66],[-32,-38],[-74,-88],[-22,-19],[-33,-42],[-47,-30],[-44,-49],[-15,-8],[28,42],[34,41],[-29,-6],[-44,19],[-28,1],[0,-15],[-21,-21],[-21,31],[-9,21],[-5,18],[-9,4],[-9,-8],[32,-127],[14,-5],[15,-13],[-19,-29],[-20,-23],[-32,-15],[-27,47],[-6,-59],[-3,-58],[-9,-14],[-15,-22],[-7,16],[-4,23],[-9,-20],[-14,-15],[-22,-3],[-17,-8],[0,-24],[4,-24],[30,19],[-11,-62],[-27,-62],[-23,-14],[-34,9],[-8,-6],[-8,-13],[40,-96],[-25,-145],[-17,-52],[-11,-7],[-12,-2],[-44,47],[-24,36],[21,-98],[58,-29],[3,-37],[-1,-31],[-11,-38],[-11,-49],[8,-35],[9,-85],[8,-39],[8,-119],[10,-51],[52,-189],[18,-2],[2,-20],[-1,-40]],[[23015,66797],[-38,-11],[-16,-18],[-3,-15],[-2,-8],[-5,1],[-18,11],[-41,53],[-59,34],[-78,13],[-54,27],[-28,41],[-30,24],[-32,8],[-26,22],[-20,37],[-30,23],[-39,10],[-26,28],[-18,68],[0,1],[-16,112],[-20,71],[-39,88],[-4,11],[0,15],[4,51],[-4,36],[-12,30],[-3,32],[7,33],[0,40],[-6,46],[-25,51],[-44,54],[-37,79],[-31,104],[-31,72],[-30,40],[-21,49],[-11,58],[-4,34],[5,9],[-19,64],[-42,120],[-24,87],[-6,55],[-27,66],[-47,76],[-25,49],[-7,35],[-73,100],[-21,62],[-17,20],[-19,-2],[-10,6],[-1,14],[-6,1],[-12,-13],[-39,-3],[-66,8],[-48,17],[-29,27],[-21,-4],[-12,-34],[-25,-21],[-38,-10],[-33,-62],[-28,-116],[-12,-74],[3,-33],[-7,-24],[-18,-15],[-19,-33],[-18,-52],[-22,-25],[-25,1],[-46,40],[-67,79],[-52,48],[-38,19],[-34,36],[-29,54],[-27,36],[-24,18],[-29,60],[-33,102],[-16,78],[0,83],[-43,181],[-23,78],[-17,36],[-33,43],[-49,50],[-67,100],[-83,150],[-58,90],[-35,30],[-30,54],[-25,78],[-25,49],[-2,2],[-3,1],[-61,1],[-61,1],[-61,0],[-61,1],[-61,1],[-61,0],[-61,1],[-61,1],[0,-65],[0,-65],[-1,-65],[0,-64],[-98,-1],[-98,0],[-98,-1],[-98,0],[-99,0],[-98,-1],[-98,0],[-98,0],[-132,85],[-132,85],[-131,85],[-132,86],[-132,85],[-132,85],[-131,85],[-132,86],[13,32],[18,87],[-32,-6],[-79,-13],[-80,-12],[-79,-12],[-80,-13],[-79,-12],[-80,-12],[-79,-13],[-80,-12]],[[17464,70583],[0,4],[-2,63],[-13,22],[-17,-14],[-7,82],[4,39],[-2,38],[-16,92],[-41,113],[-89,140],[-46,47],[-35,59],[-23,16],[-28,5],[-9,-27],[-32,18],[5,66],[-32,92],[-25,10],[-65,-6],[-87,50],[-25,30],[-9,54],[-41,47],[-53,46],[-30,-11],[-39,7],[-55,33],[-33,4],[-63,-9],[-23,7],[-22,41],[-24,21],[5,51],[-3,47],[4,36],[-11,79],[9,73],[-8,26],[-13,21],[-42,30],[-7,37],[7,52],[-11,35],[-35,32],[-32,73],[-40,39],[-17,67],[-25,42],[-8,36],[-56,131],[-59,102],[-9,58],[-2,81],[23,49],[12,43],[-1,39],[-4,29],[-20,51],[-79,30],[-64,124],[-4,96],[-25,98],[0,63],[-4,69],[19,15],[17,-6],[-1,-27],[5,-49],[20,-37],[19,-16],[18,-36],[13,-11],[13,-3],[-7,23],[-8,15],[-9,48],[-18,61],[-20,33],[-11,61],[-9,15],[-5,22],[20,27],[27,19],[36,6],[103,-9],[21,15],[19,-5],[13,2],[-28,16],[-16,-5],[-18,3],[-37,-3],[-15,7],[-16,19],[-11,2],[-34,-33],[-15,4],[-36,36],[-15,5],[-25,-20],[-4,-90],[8,-66],[-15,-7],[-17,27],[-27,17],[-22,25],[-32,46],[-16,17],[-18,-39],[-1,18],[9,45],[-3,75],[28,-60],[-8,42],[-22,47],[-17,16],[-20,83],[-47,50],[-38,80],[-77,134],[-5,117],[-28,148],[12,85],[-1,59],[-14,91],[-15,49],[-62,135],[-60,90],[-9,69],[-4,69],[13,62],[12,64],[8,17],[3,-7],[-2,-13],[8,-5],[3,29],[6,15],[-9,2],[1,9],[5,18],[18,85],[-1,107],[19,131],[-1,44],[-12,93],[-13,56],[-23,40],[10,58],[0,55],[-40,80],[-15,104],[-3,45],[4,116],[-11,50],[-27,82],[12,72],[12,43],[30,190],[7,15],[13,0],[22,32],[-10,8],[-16,-16],[14,75],[15,64],[10,24],[5,209],[9,160],[14,53],[-5,55],[6,74],[-4,74],[31,359],[-4,43],[9,59],[-9,153],[4,171],[-8,22],[-4,24],[8,3],[14,-25],[66,0],[42,24],[16,-8],[17,-31],[23,-7],[28,6],[-9,8],[-13,2],[-29,29],[-17,28],[-51,-1],[-11,18],[-58,-18],[-17,19],[-32,-13],[8,54],[-2,68],[2,66],[8,-48],[19,-52],[10,59],[6,72],[-19,29],[-32,20],[-11,68],[75,58],[-40,12],[-15,26],[-20,4],[-1,-20],[-6,-27],[-7,35],[-2,41],[-8,70],[-31,113],[-18,147],[-23,72],[-45,69],[-12,40],[-11,103],[7,77],[-9,54],[22,-3],[56,-42],[71,-34],[21,-24],[34,-19],[189,-28],[13,3],[24,17],[11,-2],[27,-40],[14,-4],[18,2],[14,7],[23,28],[3,-11],[-1,-25],[8,-36],[17,-47],[7,-29],[-34,-82],[-7,-2],[-1,28],[-4,5],[-64,-139],[-22,-66],[-2,-29],[0,-18],[9,-4],[21,7],[30,27],[1,6],[-28,-10],[-13,0],[1,31],[4,14],[18,47],[19,27],[28,30],[16,24],[11,35],[30,43],[6,11],[-2,35],[2,7],[15,-5],[6,-60],[-4,-27],[-26,-32],[-3,-12],[5,-44],[-5,-4],[-10,5],[-3,-3],[25,-48],[8,-38],[1,-33],[-7,-65],[-7,-10],[-12,3],[-17,21],[-3,-7],[-13,-50],[-5,4],[-8,60],[-4,4],[-25,-27],[-11,-26],[-8,-41],[-11,-20],[31,-4],[28,8],[23,-19],[8,-1],[21,19],[6,14],[17,62],[9,11],[13,1],[12,9],[19,34],[0,14],[-6,77],[2,43],[-4,14],[-8,14],[1,14],[6,23],[1,21],[-6,18],[3,21],[17,45],[3,20],[22,45],[-6,18],[-15,22],[-10,19],[-10,30],[-8,10],[-2,-4],[11,-50],[-3,-3],[-27,27],[-7,16],[-3,23],[2,17],[15,17],[18,6],[-2,15],[-22,46],[-15,21],[-11,10],[-15,3],[-7,7],[-2,11],[3,15],[9,4],[23,-6],[13,11],[-1,18],[-4,10],[1,66],[-9,53],[-5,9],[-5,1],[-6,-7],[-14,-2],[-10,18],[-10,34],[-18,80]],[[15892,80064],[28,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[119,0],[118,0],[119,0],[118,0],[118,0],[119,0],[118,0],[66,0],[1,121],[1,96],[60,-11],[18,-18],[5,-8],[-1,-27],[5,-80],[10,-67],[26,-80],[0,-1],[2,-31],[8,-20],[15,-18],[58,-22],[99,-26],[57,-30],[13,-33],[27,-14],[40,7],[28,14],[23,32],[34,7],[28,-2],[29,-4],[15,-4],[45,-26],[29,-20],[41,-39],[23,-17],[11,-40],[13,-51],[18,0],[14,30],[35,5],[47,-21],[41,-60],[58,-53],[36,-27],[36,0],[47,27],[49,51],[35,9],[21,-5],[12,-40],[15,-15],[38,4],[80,-8],[63,11],[15,-23],[13,-36],[25,-11],[35,11],[63,-9],[26,-2],[51,14],[24,16],[34,26],[46,36],[79,62],[65,23],[61,-45],[48,-39],[18,-16],[49,-40],[70,-57],[79,-65],[80,-65],[69,-57],[49,-40],[19,-16],[54,-46],[54,-46],[54,-46],[53,-46],[54,-46],[54,-46],[54,-46],[54,-46],[14,-77],[13,-75],[31,-54],[29,-49],[17,2],[17,21],[11,10],[18,2],[40,18],[12,-4],[7,-9],[0,-14],[-1,-11],[-6,-23],[9,-42],[2,-47],[6,-36],[16,-46],[15,-36],[18,-7],[41,21],[26,8],[15,-3],[25,-34],[13,-20],[3,-17],[-34,-102],[54,-51],[60,-55],[73,-66],[44,-41],[58,-58],[10,-82],[8,-70],[11,-96],[11,-99],[11,-99],[11,-104],[13,-115],[11,-102],[12,-111],[17,-145],[-15,-56],[-32,-121],[-28,-110],[-3,-32],[-20,-160],[-16,-66],[-27,-38],[-28,-38],[-34,-62],[-38,-31],[-19,-18],[-10,-28],[-11,-63],[2,-96],[31,-82],[45,-46],[49,-45],[70,0],[63,60],[66,63],[59,57],[71,67],[64,61],[69,22],[96,30],[121,38],[59,43],[76,57],[87,64],[76,56],[38,31],[27,36],[7,26],[-2,15],[-7,15],[-9,11],[-9,9],[-4,12],[-1,26],[-5,14],[-5,11],[2,99],[-7,31],[-24,78],[47,35],[43,32],[35,24],[73,4],[67,-1],[94,0],[78,-1],[92,0],[53,-1],[71,1],[34,90],[31,81],[34,76],[60,91],[17,16],[10,35],[36,34],[40,31],[16,30],[7,17],[109,158],[62,73],[50,41],[39,19],[26,-2],[15,2]],[[29858,75452],[-20,-37],[18,-4],[16,11],[14,22],[34,30],[29,13],[9,3],[13,-21],[28,17],[28,9],[-121,-96],[-25,-11],[-36,-28],[-33,-21],[-24,-7],[-120,-71],[-10,-2],[-10,7],[-99,-36],[-40,-5],[-37,-12],[27,29],[1,11],[-7,9],[-14,-3],[-15,-30],[-24,-10],[-5,33],[8,26],[11,24],[24,38],[34,24],[17,21],[12,-18],[2,25],[10,14],[10,8],[24,0],[12,4],[10,8],[9,2],[27,-12],[25,4],[21,15],[22,5],[56,4],[57,11],[23,21],[47,56],[28,16],[-43,-66],[-23,-30]],[[31059,77380],[-16,-11],[-18,4],[0,-30],[-2,-11],[-19,16],[-8,10],[1,40],[17,38],[14,15],[17,-10],[13,-43],[1,-18]],[[29392,75185],[-13,-2],[13,55],[24,25],[9,-5],[0,-19],[-3,-17],[-16,-26],[-14,-11]],[[30414,75677],[-77,-28],[-12,18],[19,8],[24,43],[16,5],[25,-24],[5,-22]],[[30210,75743],[-13,-15],[-16,2],[8,22],[3,31],[8,34],[4,11],[9,9],[-3,-94]],[[30561,75613],[-21,-9],[-49,21],[40,18],[7,6],[5,27],[1,13],[15,-57],[2,-19]],[[28990,72497],[-4,-12],[-19,64],[19,-21],[4,-17],[0,-14]],[[29015,72142],[-37,-16],[-3,6],[42,32],[14,116],[2,53],[-7,95],[1,19],[6,-30],[7,-88],[-3,-67],[-12,-97],[-10,-23]],[[28949,72113],[-50,-41],[-6,3],[33,29],[23,9]],[[28749,71798],[-7,-6],[25,72],[50,91],[14,14],[-42,-78],[-40,-93]],[[27212,67081],[-10,-15],[-20,11],[-11,20],[-5,38],[17,-41],[7,-9],[22,-4]],[[27199,67138],[-1,-34],[-14,57],[-9,62],[13,-20],[11,-65]],[[27671,66325],[-55,-108],[6,27],[22,58],[7,28],[14,17],[14,31],[1,37],[20,25],[6,4],[-35,-119]],[[24502,68836],[-11,-8],[-46,50],[-3,21],[23,20],[14,-2],[22,-25],[8,-8],[3,-10],[-2,-16],[-8,-22]],[[23051,67915],[-6,-1],[14,47],[2,19],[22,59],[12,9],[5,-25],[-23,-42],[-26,-66]],[[23121,68060],[-10,-3],[12,31],[21,16],[45,60],[18,4],[10,20],[4,3],[-3,-25],[-36,-36],[-61,-70]],[[22957,67568],[-9,-33],[3,50],[22,112],[46,147],[20,25],[-53,-162],[-29,-139]],[[23600,68632],[-14,-6],[61,89],[12,29],[16,-1],[-27,-50],[-48,-61]],[[23008,66911],[-4,-26],[-23,125],[-37,282],[-2,161],[6,56],[10,-228],[41,-289],[9,-81]],[[16581,71442],[-14,-1],[-23,6],[8,13],[12,10],[4,-7],[13,-21]],[[16823,70977],[-13,-1],[-17,5],[-8,31],[13,2],[13,-4],[10,-24],[2,-9]],[[17125,70753],[-16,-6],[-18,12],[-16,56],[-17,43],[9,13],[14,-42],[35,-64],[9,-12]],[[16654,71381],[-19,-8],[-15,8],[-23,55],[50,7],[21,-24],[3,-7],[-17,-31]],[[16699,71474],[57,-30],[30,14],[6,-14],[-4,-12],[-69,-23],[-21,16],[-2,21],[-7,21],[10,7]],[[17125,71074],[14,-42],[-20,5],[-21,-3],[-6,24],[-7,32],[-4,8],[-14,3],[-1,3],[-2,15],[4,8],[45,-36],[12,-17]],[[15894,79880],[3,-13],[-11,-12],[-8,-2],[-12,20],[-6,2],[5,-30],[-2,-10],[-26,18],[-5,15],[8,16],[16,16],[6,2],[32,-22]],[[15830,79781],[7,-19],[-30,12],[-13,11],[-3,11],[-5,34],[2,12],[13,4],[25,-43],[4,-22]],[[15952,79583],[13,-76],[6,31],[38,-54],[0,-27],[-4,-9],[-8,-3],[-8,8],[-6,19],[-9,10],[-18,6],[-9,21],[-4,15],[0,42],[-5,14],[-10,2],[-9,11],[-14,29],[-2,8],[7,24],[15,41],[11,19],[7,-2],[9,-13],[10,-22],[-2,-15],[-41,-31],[-2,-7],[21,-9],[7,-7],[7,-25]],[[30176,75740],[-8,-11],[-3,28],[6,32],[5,0],[3,-17],[-3,-32]],[[29407,74700],[-32,-87],[-1,17],[41,108],[-8,-38]],[[29074,73668],[-13,-10],[43,116],[24,96],[11,34],[-10,-68],[-19,-62],[-36,-106]],[[28737,71805],[-6,-1],[-11,6],[-15,12],[-4,9],[15,-3],[21,-23]],[[27407,66042],[-9,-12],[-4,4],[0,17],[-11,39],[0,10],[27,-38],[1,-10],[-4,-10]],[[27547,66130],[-5,0],[2,9],[11,16],[4,-6],[0,-9],[-12,-10]],[[27600,66188],[-7,-3],[11,25],[3,-2],[-7,-20]],[[27487,66080],[-12,-13],[-13,10],[14,13],[43,15],[-16,-18],[-16,-7]],[[27383,69683],[-12,-140],[-5,50],[-1,48],[9,28],[9,14]],[[27342,66013],[-18,-6],[15,23],[5,34],[8,-26],[0,-17],[-10,-8]],[[27726,67556],[4,-42],[-25,98],[-32,154],[-17,120],[12,-33],[11,-66],[47,-231]],[[27282,65981],[-7,-1],[-1,9],[12,11],[9,-1],[-1,-12],[-12,-6]],[[25308,68958],[-15,-30],[1,12],[11,30],[8,11],[-5,-23]],[[25400,69248],[-3,-6],[-25,12],[-15,11],[-2,11],[41,-20],[4,-8]],[[25535,69269],[-24,-12],[-36,1],[-8,4],[15,8],[43,11],[10,-12]],[[25215,69172],[1,-27],[-13,14],[-20,1],[8,9],[7,9],[3,10],[25,33],[-7,-25],[-4,-24]],[[25325,69013],[-7,-18],[7,87],[-11,74],[12,-32],[4,-39],[-5,-72]],[[26414,68918],[-28,-21],[-30,15],[19,3],[13,-6],[35,30],[18,22],[21,9],[-48,-52]],[[15874,79034],[-3,-11],[-4,1],[-8,23],[-1,16],[7,12],[10,-34],[-1,-7]],[[16001,79144],[-1,-13],[-10,-10],[-6,2],[0,16],[-3,2],[-12,-18],[1,36],[6,39],[5,1],[7,-26],[13,-29]],[[15973,79259],[-2,-11],[-15,13],[-5,12],[1,27],[3,18],[3,4],[9,-8],[3,-4],[3,-51]],[[15883,79741],[-4,-6],[-15,8],[-9,13],[-3,16],[6,30],[7,8],[5,-2],[2,-27],[13,-28],[-2,-12]],[[30938,77301],[-11,-11],[-11,3],[0,29],[3,9],[4,5],[6,-8],[9,-27]],[[42704,18182],[1,-33],[-43,30],[-10,14],[14,19],[27,0],[7,-11],[4,-19]],[[39693,20699],[27,-28],[22,19],[22,-2],[12,-10],[12,-3],[16,-1],[27,-47],[-11,-41],[29,8],[26,-35],[12,3],[5,14],[17,16],[11,-22],[14,-41],[18,-12],[15,-44],[12,-55],[11,-8],[19,-1],[20,8],[-8,-48],[3,-42],[32,-30],[-19,-17],[-20,-24],[-41,-19],[-11,8],[-35,42],[-17,50],[-37,71],[-8,21],[-9,13],[-34,9],[-30,17],[-24,36],[-8,22],[-10,15],[-33,-1],[-21,17],[-21,23],[-94,67],[-37,-7],[-17,19],[0,33],[20,20],[-82,8],[-29,12],[20,7],[114,1],[43,6],[3,-15],[38,-29],[36,-3]],[[70136,47593],[-6,-23],[-12,-10],[-5,58],[-17,41],[7,0],[15,-21],[6,-56],[5,17],[-1,17],[3,16],[-2,18],[-9,28],[3,5],[13,-23],[2,-19],[-2,-48]],[[48418,42627],[-25,-3],[2,27],[19,29],[13,-4],[0,-33],[-9,-16]],[[46009,47249],[-9,-1],[-3,5],[-2,14],[5,22],[4,13],[7,-2],[8,-15],[8,-13],[-4,-12],[-14,-11]],[[14364,37789],[-3,-9],[-6,8],[-6,16],[-2,18],[6,10],[7,-6],[4,-18],[0,-19]],[[32499,62339],[-44,-29],[2,17],[35,40],[13,-3],[-6,-25]],[[33652,22309],[43,-33],[53,11],[22,-9],[13,-28],[-7,-26],[-17,4],[-15,-7],[3,-35],[10,-14],[56,-38],[10,-2],[-1,15],[-10,26],[-4,28],[9,24],[14,7],[64,11],[15,-11],[32,-66],[-30,-9],[-12,-28],[26,-12],[20,-19],[-11,-28],[-2,-14],[-46,-19],[-40,-13],[-19,-33],[-33,-24],[-96,-41],[11,-34],[1,-16],[-4,-44],[-133,52],[-18,-5],[36,-90],[-26,-16],[-26,10],[-24,-7],[-15,-65],[-38,42],[-32,58],[-1,33],[32,62],[-10,26],[73,83],[13,25],[23,14],[23,5],[10,11],[-1,20],[-10,35],[1,57],[58,77],[-8,49],[18,1]],[[33253,22199],[41,-11],[37,40],[25,13],[21,-9],[15,-24],[21,4],[61,25],[8,-9],[21,29],[19,-13],[14,-25],[-7,-30],[-17,-19],[-10,-26],[-13,-21],[-21,-19],[-16,-31],[-40,-73],[-57,-94],[-19,-8],[-40,-6],[-17,7],[-14,-2],[-12,-51],[-18,-38],[-9,-8],[-19,-4],[-8,-5],[-7,-14],[-50,3],[-35,24],[-41,52],[55,64],[48,-3],[39,43],[32,21],[13,22],[14,17],[0,22],[-11,10],[-14,-1],[-14,-10],[-34,-12],[-23,25],[15,10],[17,-1],[52,24],[10,10],[-16,33],[-31,21],[-26,34],[-4,13],[1,20],[-14,41],[15,2],[19,-26],[44,-36]],[[33050,22012],[20,-8],[20,3],[-11,-59],[-9,-28],[-24,2],[-23,39],[-8,20],[26,15],[9,16]],[[33767,21882],[1,-50],[-22,16],[-8,24],[12,17],[11,-1],[6,-6]],[[33302,22237],[-38,0],[-8,19],[1,47],[28,4],[29,-20],[-2,-20],[-10,-30]],[[33421,21755],[-18,-11],[-5,5],[-5,22],[-1,28],[-2,12],[12,-4],[20,-22],[-1,-30]],[[27397,62988],[9,-11],[11,7],[4,12],[42,-9],[7,-24],[-33,-1],[-14,-15],[-8,-3],[-28,4],[-4,55],[8,6],[6,-21]],[[27783,63195],[-2,-3],[-9,2],[-21,-23],[-8,1],[2,9],[4,7],[5,6],[5,2],[14,5],[7,1],[4,-6],[-1,-1]],[[27827,63197],[-13,-8],[-10,3],[22,24],[6,8],[5,4],[5,0],[7,-5],[0,-3],[-22,-23]],[[32019,70445],[-25,-20],[-7,2],[-5,7],[26,19],[21,46],[7,-3],[-17,-51]],[[32112,62479],[-7,-4],[-5,1],[-1,8],[5,23],[28,2],[-20,-30]],[[32057,62443],[-22,-2],[-6,7],[12,18],[23,2],[6,-4],[-13,-21]],[[32142,62638],[4,-19],[-3,0],[-15,13],[-13,1],[-5,4],[-2,7],[24,1],[10,-7]],[[30094,64380],[-1,-8],[-16,23],[-30,0],[-5,30],[12,5],[38,-11],[9,-26],[-7,-13]],[[30033,64424],[-5,-7],[-16,20],[-2,16],[-6,1],[-10,14],[3,19],[22,1],[9,-52],[5,-12]],[[29907,64430],[32,-32],[19,5],[2,-7],[-11,-7],[-2,-6],[-31,-9],[-9,2],[-2,22],[2,32]],[[32736,61486],[-1,-34],[-19,10],[-1,30],[9,31],[5,3],[7,-40]],[[49439,80202],[2,-29],[-12,-7],[-10,10],[-21,0],[-20,-6],[5,52],[38,-7],[18,-13]],[[49302,80353],[-10,-38],[-26,13],[-2,10],[29,22],[6,0],[3,-7]],[[48774,83055],[-56,-73],[-23,13],[-19,-6],[-6,2],[11,26],[13,61],[24,24],[29,64],[23,17],[9,-2],[5,-6],[11,-71],[-16,-26],[-5,-23]],[[49258,81579],[-20,-24],[-66,-24],[-28,-25],[-50,-56],[-9,-5],[-75,14],[-56,72],[-35,30],[-15,4],[-15,-9],[-33,-9],[-33,1],[17,34],[23,19],[-51,13],[-15,10],[-16,23],[-40,4],[-19,-6],[-33,-31],[-51,-33],[-62,46],[-12,20],[0,39],[-9,31],[-17,10],[22,40],[26,27],[58,27],[89,62],[49,27],[46,46],[19,28],[14,39],[13,47],[20,39],[-19,9],[-9,29],[3,29],[8,26],[-7,33],[-14,34],[1,26],[3,29],[-35,-2],[-36,-9],[-32,-20],[-31,-27],[-27,-5],[0,22],[12,27],[31,38],[34,32],[12,25],[9,28],[17,23],[44,43],[83,48],[13,3],[33,-6],[32,7],[28,18],[29,4],[63,-51],[-19,78],[28,18],[41,-70],[15,-7],[32,10],[-13,12],[-14,1],[-19,10],[-15,23],[-27,71],[2,42],[17,44],[20,41],[-16,8],[-14,15],[-3,41],[5,35],[35,32],[10,48],[5,53],[-6,24],[-35,-4],[-17,-10],[-15,-16],[-16,1],[-43,59],[-25,44],[-44,93],[-6,56],[35,120],[55,77],[64,27],[-12,5],[-98,1],[-33,-10],[-30,-31],[-17,-10],[-17,-3],[-17,-16],[-15,-22],[-17,-14],[-33,4],[-16,-5],[-11,13],[-9,21],[-13,5],[-14,-6],[-29,-28],[-30,-17],[-36,18],[-48,33],[-9,-12],[-11,-31],[-6,-47],[-33,41],[-29,56],[-10,34],[0,39],[15,16],[17,-14],[25,93],[50,121],[18,35],[12,46],[-2,31],[-11,25],[-46,58],[0,48],[5,53],[13,32],[5,6],[62,-1],[-24,17],[-48,48],[1,17],[11,45],[-5,-5],[-10,-20],[-20,-50],[-12,-12],[-34,-12],[-6,-24],[-6,-7],[-17,-2],[-5,-23],[-4,-2],[-5,25],[0,41],[7,38],[13,29],[49,67],[-24,-21],[-55,-62],[-28,-40],[-7,-14],[-3,-12],[0,-13],[13,-72],[-4,-33],[-47,-219],[-9,-22],[-8,-11],[-8,-3],[-23,4],[-11,17],[0,18],[5,28],[19,104],[9,29],[13,27],[27,47],[0,3],[-19,-9],[-8,3],[-5,9],[3,139],[15,46],[6,67],[13,57],[15,42],[12,53],[17,24],[5,36],[19,39],[15,41],[-8,-4],[-96,-106],[-25,-20],[-33,5],[-26,12],[-20,26],[-9,48],[-24,1],[-21,9],[0,6],[27,27],[44,9],[41,42],[-37,29],[3,9],[32,24],[40,82],[9,75],[-20,35],[-7,23],[-38,26],[-7,33],[5,18],[12,18],[19,14],[30,14],[-27,14],[-10,17],[-8,24],[0,15],[14,63],[8,26],[16,33],[72,-2],[8,15],[8,1],[37,-14],[-6,15],[-60,79],[-5,15],[17,42],[1,19],[-2,21],[5,15],[19,8],[58,-1],[14,7],[-6,21],[-14,27],[-2,22],[3,20],[1,41],[2,17],[14,27],[11,8],[15,5],[32,-9],[12,-11],[14,-26],[10,3],[40,27],[12,4],[16,-32],[68,26],[91,11],[55,17],[58,6],[54,19],[57,-9],[2,-11],[-3,-15],[-14,-42],[2,-47],[-3,-15],[-7,-17],[-21,-33],[-55,-47],[-101,-108],[-60,-54],[-8,-26],[-4,-36],[35,-7],[14,-12],[-8,-18],[-53,-63],[-16,-58],[41,2],[33,11],[67,36],[62,27],[30,1],[59,-21],[13,-1],[25,10],[25,1],[170,-6],[47,12],[32,-15],[26,-37],[25,-68],[-1,-11],[-15,-31],[-28,-39],[-24,-54],[-7,-29],[-4,-32],[-8,-29],[-47,-138],[-47,-76],[-20,-55],[-26,-43],[-24,-27],[-26,-18],[-76,-20],[-21,-13],[-25,-24],[-27,-12],[31,2],[31,13],[56,5],[65,-46],[-6,-37],[-26,-30],[-59,-5],[-55,-65],[-25,-20],[-26,-10],[-33,3],[-60,17],[-26,18],[24,-29],[26,-16],[156,-37],[9,4],[49,39],[66,0],[126,-71],[36,-55],[52,-78],[28,-31],[21,-28],[12,-41],[25,-138],[27,-134],[37,-146],[16,-40],[22,-28],[110,-66],[24,-21],[43,-63],[41,-67],[38,-51],[41,-41],[-20,-22],[-14,-34],[11,-46],[16,-44],[33,-71],[30,-77],[-11,12],[-11,6],[-16,-1],[-15,3],[-28,24],[-27,30],[-53,-12],[-29,5],[-26,0],[49,-17],[53,-2],[117,-129],[40,-76],[23,-101],[-16,-46],[-25,-29],[-23,-34],[-22,-38],[65,-56],[14,2],[15,8],[13,19],[24,46],[12,16],[40,6],[34,-3],[34,-10],[30,3],[60,-20],[30,-18],[77,-80],[16,-44],[8,-57],[1,-63],[-13,-58],[-15,-52],[-9,-67],[-6,-25],[-9,-18],[-41,-54],[-27,-21],[-11,9],[-12,-1],[-1,-13],[12,-27],[1,-33],[-24,-24],[-25,-10],[-40,13],[-57,-45],[41,-23],[8,-25],[-10,-43],[-25,-20],[-29,-8],[-29,-2],[-24,-11],[-23,-20],[29,11],[20,-10],[13,-36],[11,-11],[57,-15],[34,0],[68,9],[32,-1],[12,-6],[0,-30],[-5,-75],[-9,-15],[-89,-62],[-19,-44],[-5,-26],[-52,4],[-24,-27],[-43,-19],[-32,-20],[-32,-25],[-27,-7],[-113,30],[-69,-3],[-93,-26],[-24,5],[-35,24],[-37,17],[-42,7],[-37,23],[23,-44],[-51,-42],[-23,-8],[-24,1],[-50,-12],[-46,6],[7,-30],[12,-26],[-9,-11],[-11,-3],[-87,20],[-13,-4],[-10,-18],[-32,9],[-31,31],[-33,21],[-34,10],[-28,-4],[-112,-48],[-23,-49],[-11,-69],[-16,-61],[-27,-47],[-31,-7],[-30,33],[-56,36],[-20,25],[-6,1],[-6,-9],[-22,-11],[-23,0],[-35,-10],[-62,-29],[-25,-20],[-53,-55],[-11,-15],[-19,-55],[-30,-10],[-27,35],[-31,13],[-32,-13],[-20,-18],[-9,15],[-1,31],[24,38],[64,28],[55,74],[28,45],[10,25],[14,16],[17,6],[9,28],[77,112],[7,25],[4,46],[6,44],[63,29],[30,93],[8,7],[88,17],[65,-1],[65,-18],[33,-2],[33,7],[26,25],[45,90],[25,40],[29,36],[27,41],[44,76],[-30,-26],[-36,-42]],[[48834,82558],[11,-11],[30,2],[-10,-24],[-32,-27],[-22,-26],[-26,-22],[-13,25],[-15,-1],[-22,49],[-4,72],[29,19],[41,-1],[33,-55]],[[49291,85962],[-31,-1],[16,34],[19,9],[36,-4],[-6,-15],[-34,-23]],[[49710,86701],[-7,-7],[-27,59],[20,67],[24,-2],[4,-18],[-2,-16],[-13,-2],[-1,-5],[4,-31],[0,-36],[-2,-9]],[[49636,86714],[6,-40],[14,10],[22,-39],[11,0],[18,16],[-4,-36],[-18,-101],[-6,-17],[-3,-31],[-4,-6],[-6,-61],[-12,-21],[-11,-48],[-4,-5],[-16,19],[16,74],[6,43],[-4,22],[-9,20],[-24,1],[-20,-9],[-4,12],[-1,16],[-5,5],[-27,-1],[-7,4],[-6,15],[-1,12],[25,9],[22,-4],[34,24],[-21,78],[-28,7],[-6,8],[5,13],[15,7],[24,40],[14,6],[17,-1],[-2,-41]],[[49784,86873],[0,-7],[-14,-49],[0,-18],[-23,2],[-4,5],[-4,28],[3,30],[3,8],[7,3],[7,-6],[12,15],[6,0],[7,-11]],[[49120,85710],[-16,-7],[-15,0],[-25,33],[-9,25],[2,16],[10,5],[24,-8],[12,-28],[1,-18],[3,-7],[15,-7],[-2,-4]],[[49186,85680],[-3,-2],[-10,11],[-17,38],[27,7],[12,-5],[-5,-16],[-4,-33]],[[49150,85846],[-3,-14],[21,0],[30,-12],[19,-2],[15,-15],[-8,-28],[-10,-8],[-10,-1],[-36,28],[-48,-12],[-10,4],[-6,7],[-2,10],[0,20],[-3,6],[-17,-19],[-8,2],[-4,9],[-2,19],[2,26],[10,38],[17,8],[26,-5],[29,-21],[9,-13],[0,-11],[-11,-16]],[[49241,85936],[-24,-14],[-10,12],[-2,37],[-29,16],[-14,10],[-10,18],[2,6],[19,8],[32,-34],[13,-28],[23,-8],[3,-4],[-3,-19]],[[48164,84438],[-16,-4],[-1,9],[28,39],[17,6],[6,-4],[-12,-22],[-22,-24]],[[48581,83783],[-35,0],[-12,5],[-15,14],[-17,79],[6,28],[7,13],[7,11],[19,5],[18,-15],[7,-14],[15,-54],[3,-46],[-3,-26]],[[48395,84299],[-111,-32],[-38,3],[-4,16],[8,10],[31,10],[13,77],[-47,36],[-3,10],[4,17],[5,7],[29,18],[12,4],[10,-2],[21,-21],[23,-43],[30,-7],[21,-19],[-4,-84]],[[48297,84061],[10,-74],[10,-46],[0,-16],[-9,-22],[-45,-29],[-15,0],[0,7],[10,30],[-9,33],[4,26],[-4,4],[-9,-3],[-33,-41],[-11,-4],[-1,8],[8,34],[1,22],[5,14],[9,13],[11,10],[8,1],[9,-10],[27,28],[24,15]],[[48341,83994],[-6,-6],[-14,1],[-5,10],[-3,14],[0,26],[8,19],[36,28],[-16,10],[-1,7],[10,24],[39,36],[10,7],[10,-1],[-20,-65],[-48,-110]],[[48278,85462],[-36,-100],[-13,-3],[-13,-25],[-37,-28],[33,0],[9,-10],[0,-19],[-6,-12],[-43,-46],[-29,-18],[-31,-48],[-16,0],[-16,-31],[-13,-13],[-7,0],[-9,6],[-19,30],[35,30],[4,16],[24,18],[-2,5],[-39,24],[-15,17],[2,8],[18,19],[-9,2],[-6,10],[-10,4],[-4,10],[-1,24],[2,26],[12,11],[4,12],[5,3],[17,-6],[18,-20],[20,8],[24,-4],[1,5],[-18,49],[3,10],[10,12],[55,35],[68,60],[17,9],[5,-8],[7,-31],[-1,-41]],[[48255,84656],[-8,-7],[-10,1],[-11,10],[-13,27],[30,19],[13,-11],[4,-13],[0,-14],[-5,-12]],[[48293,84968],[-1,-26],[-5,-30],[7,-32],[1,-22],[12,-8],[7,-10],[52,-12],[49,4],[9,-10],[1,-15],[-8,-16],[-27,-30],[-33,-48],[-10,-10],[-11,-1],[-7,5],[-6,86],[-35,-11],[-29,1],[-16,10],[-11,20],[-22,52],[-65,21],[-18,28],[-6,18],[3,9],[13,21],[17,-7],[11,4],[6,10],[0,8],[-9,18],[0,6],[66,23],[5,37],[15,3],[16,-12],[23,-38],[6,-46]],[[47998,85070],[31,-32],[-25,-54],[-38,0],[-54,39],[0,8],[4,12],[8,10],[9,2],[13,-7],[19,11],[15,-4],[18,15]],[[47986,84743],[-12,-3],[-15,3],[-10,9],[-9,35],[-2,22],[4,40],[-1,47],[32,2],[8,-7],[5,-142],[0,-6]],[[47939,84657],[-24,-8],[-9,4],[-2,8],[6,20],[19,7],[13,-11],[2,-10],[-5,-10]],[[48272,83000],[-23,3],[-17,-10],[-11,-9],[-10,1],[-30,-3],[-29,0],[-4,15],[5,46],[-6,12],[-27,6],[-10,11],[-16,31],[-3,15],[-2,20],[-16,26],[-20,19],[-12,1],[-23,-31],[-19,-31],[7,-15],[6,-20],[-11,-15],[-31,-34],[-5,-13],[-9,-7],[-15,10],[-37,-2],[-17,5],[-20,25],[-49,17],[-9,39],[-9,7],[-56,68],[-7,23],[7,13],[21,21],[70,34],[11,13],[2,12],[-21,14],[-18,15],[-6,10],[-1,9],[11,11],[21,1],[16,-5],[13,10],[24,10],[15,13],[14,33],[14,30],[1,16],[13,57],[6,14],[44,37]],[[47994,83578],[11,-21],[22,-5],[20,19],[23,59],[16,3],[18,-4],[35,7],[62,27],[28,1],[39,-14],[29,0],[26,-42],[14,-66],[32,-66],[43,-57],[1,-34],[-15,-19],[-32,-23],[1,-25],[20,13],[18,5],[44,-5],[15,-26],[10,-37],[6,-31],[-4,-34],[-11,11],[-12,30],[-13,14],[-16,7],[7,-41],[-3,-56],[7,-5],[21,-1],[-14,-56],[-28,-16],[-33,-6],[-8,-20],[-6,-26],[-17,-38],[-22,-22],[-28,4],[-28,18]],[[49704,81042],[-24,-20],[-7,-23],[-6,-9],[-15,-6],[-15,-1],[-58,47],[-14,-2],[13,22],[37,17],[20,23],[47,-22],[22,-26]],[[65638,66618],[18,-46],[2,-318],[5,-22]],[[65663,66232],[-10,-4],[-11,-24],[-13,-37],[-17,-19],[-14,-22],[-14,-27],[-11,-6],[-16,34],[-10,35],[2,8],[8,2],[3,18],[-5,27],[-10,9],[-13,1],[-13,-11],[-13,-24],[-8,-24],[-1,-50],[4,-57],[-1,-27],[-7,-34],[-2,-50],[5,-39],[4,-23],[1,-19],[-13,-62],[11,-11],[36,-5],[11,-41],[7,-29],[-2,-17],[-26,-13],[-31,-14],[-23,4],[-42,-18],[-22,-29],[7,-19],[7,-13],[4,-39],[-7,-54],[-11,-53],[-15,-66],[-17,-75],[-23,-114],[-19,-90],[-2,-64],[0,-42],[-2,-84]],[[65329,64921],[-19,-46],[-4,-2],[-22,6],[-7,2],[-21,5],[-33,8],[-42,11],[-51,13],[-56,14],[-59,15],[-62,16],[-62,16],[-60,15],[-56,14],[-50,13],[-43,10],[-32,9],[-21,5],[-8,2],[-23,6],[-13,31],[-15,38],[-15,37],[-15,38],[-16,38],[-15,38],[-15,37],[-16,38],[-15,38],[-15,38],[-15,37],[-16,38],[-15,38],[-15,37],[-16,38],[-15,38],[-15,38],[-10,25],[-6,28],[-1,75],[0,16]],[[64324,65832],[10,30],[5,-21],[12,-29],[19,7],[9,-5],[7,-103],[14,-37],[18,-15],[59,-8],[36,14],[73,67],[38,25],[105,-5],[84,-28],[131,-16],[26,4],[70,54],[44,48],[26,14],[17,46],[11,60],[10,39],[13,19],[12,33],[9,55],[25,54],[97,133],[57,113],[5,36],[32,55],[24,59],[117,171],[23,70],[14,79],[1,6]],[[65577,66856],[10,3],[14,-12],[2,-59],[-5,-56],[-1,-59],[-2,-32],[11,-26],[18,-11],[8,1],[6,13]],[[65633,66379],[2,25],[-3,13],[-12,2],[-5,-22],[-2,-31],[9,-2],[11,15]],[[64814,65816],[-21,-3],[-18,22],[39,29],[11,13],[11,27],[9,-23],[-10,-36],[-7,-16],[-14,-13]],[[64615,65834],[-5,-4],[-4,31],[0,9],[13,15],[7,-26],[-11,-25]],[[64979,65770],[0,-20],[-28,6],[-7,-10],[-24,5],[-22,14],[15,24],[40,28],[17,-26],[9,-21]],[[65129,65923],[-3,-12],[-8,1],[-19,11],[-7,16],[13,19],[5,1],[8,-20],[11,-16]],[[60614,78969],[-10,-6],[-97,9],[-18,-3],[-61,-10],[-56,-91],[-34,1],[-48,-24],[-32,-29],[-38,-64],[-29,28],[-36,0],[-36,-18],[-42,-42],[-24,-8],[-47,12],[-55,-24],[-118,-140],[-40,-102],[-15,-20],[-20,-25],[-21,-13],[-11,1],[56,73],[17,27],[3,20],[1,33],[-17,40],[-47,-100],[-26,-14],[-33,-30],[-2,-67],[4,-50],[14,-63],[26,-83]],[[59722,78187],[-15,-3],[-41,36],[-2,58],[-29,49],[-46,0],[-20,-6],[-27,55],[-36,23],[-27,-7],[-28,10],[-61,58],[-41,7],[-1,-42],[-17,-29]],[[59331,78396],[-26,-10],[-20,-13],[-46,40],[-17,29],[-72,-30],[-40,4],[-89,-28],[-41,27],[-82,76],[-30,15],[-27,-3],[-14,24],[18,13],[20,1],[21,9],[6,13],[-1,25],[-43,19],[-39,5],[-25,22],[-19,26],[44,0],[45,-19],[71,-7],[64,-20],[16,25],[37,42],[7,14],[-62,-29],[-63,18],[-23,26],[-20,39],[-8,43],[5,41],[-6,73],[-21,65],[-8,36],[-22,32],[22,-73],[8,-48],[13,-44],[-3,-118],[-8,-41],[-26,-11],[-34,6],[-35,13],[9,65],[-18,-22],[-27,-64],[-23,-9],[-50,7],[-95,-42],[-7,-45],[-14,-62],[-14,-36],[-4,-21],[-40,-93],[-5,-9],[-76,-128],[-10,-10],[-49,-30],[-30,-26],[-22,-12],[-38,13],[-15,-19],[-8,-23],[0,-47],[19,-34],[16,-114],[-6,-48]],[[58251,77914],[-15,31],[-23,33],[-46,28],[-50,-10],[-54,-47],[-37,-18],[-20,12],[-12,0],[-4,-14],[1,-11],[6,-9],[-1,-6],[-7,-4],[-86,34],[-38,31],[-29,60]],[[57836,78024],[15,19],[12,8],[45,5],[8,6],[1,14],[3,18],[-1,26],[-5,28],[19,40],[30,34],[17,33],[2,49],[31,24],[27,41],[7,45],[10,28],[-18,64],[-3,43],[-1,36],[8,19],[26,23],[27,17],[11,-2],[4,-11],[1,-72],[5,-2],[9,9],[14,43],[9,-12],[15,-5],[11,11],[7,-1],[9,-11],[18,-16],[17,-5],[14,10],[11,19],[13,-7],[24,-50],[11,6],[55,10],[9,14],[6,12],[-57,67],[3,49],[2,57],[-7,34],[-11,27],[-44,31],[-34,32],[-7,15],[-1,18],[-2,30],[-13,25],[-1,21],[8,33],[3,35],[-3,14],[-8,12],[-15,1],[-21,20],[-13,28],[-37,39],[-12,7],[-7,19],[-3,24],[8,29],[10,45],[7,42],[0,25],[-5,62],[-19,47],[-9,6],[-16,-13],[-17,-11],[-14,10],[-16,26],[-26,71],[-48,15],[-19,3],[-19,-34],[-6,10],[-5,22],[-10,9],[-13,-10],[-4,9],[6,30],[-16,15],[-37,-1],[-19,11],[-3,23],[-11,14],[-21,7],[-20,19],[-20,29],[-29,19],[-39,9],[-3,3],[-4,5],[-25,-20],[-15,-16],[-19,10],[-30,-36],[-61,-2],[-30,3],[-15,8],[-57,-53],[-6,-20]],[[57394,79642],[-13,-7],[-36,-10],[-38,-15],[-8,-52],[-12,-29],[-20,-41],[-71,-14],[-61,-21],[-62,-12],[-82,-51],[-27,-44],[-26,-13],[-24,-3],[-15,25],[-52,66],[-20,32],[-26,9],[-29,-5],[-28,-16],[-29,-3],[-32,23],[-4,-3],[-12,-3],[-82,27],[-7,5],[-4,1],[-11,2],[-61,-3],[-57,54],[-18,2],[-13,-22],[-10,-25],[-40,-24],[-10,-10]],[[56354,79462],[-6,7],[-2,22],[3,18],[-6,18],[-15,20],[-4,8],[-19,-1],[-5,-2],[-2,0],[-26,18],[-17,41],[-27,22],[-20,7],[-9,17],[-6,24],[-7,18],[-1,1],[-4,27],[-6,3],[-1,1],[-27,-5]],[[56147,79726],[3,94],[43,67],[10,35],[16,74],[12,34],[14,29],[11,27],[4,24]],[[56260,80110],[12,3],[33,-22],[30,-11],[9,11],[3,14],[-1,10],[-24,32],[-15,20],[-1,12],[5,28],[3,31],[-3,34],[-17,75],[-3,32],[16,39],[51,92],[17,34],[23,42],[64,100],[40,59],[27,32],[40,56],[17,29],[73,19],[8,27],[14,29],[10,13],[1,50],[-13,61],[-11,21],[-8,15],[5,14],[8,4],[10,2],[12,14],[-2,16],[-31,39],[-13,30],[-21,77],[-42,80],[-13,26],[-2,25],[6,24],[-6,31],[-15,40]],[[56556,81519],[3,4],[-2,49],[11,11],[17,7],[23,-3],[20,-7],[25,-23],[7,4],[41,42],[43,64],[12,36],[11,17],[37,9],[32,4],[20,-1],[51,6],[30,7],[25,11],[56,5],[87,-8],[57,0],[39,-6],[95,-34],[35,-6],[17,-18],[31,-7],[57,-18],[50,-9],[34,4],[19,-5],[35,-80],[8,-9],[14,-2],[29,7],[41,-3],[25,-17],[-4,-47],[7,-7],[11,2],[14,27],[11,28],[8,9],[42,-19],[19,3],[18,21],[11,4],[30,-15],[37,-11],[30,-1],[19,-11],[13,-50],[12,-10],[11,-3],[18,44],[15,18],[22,12],[14,6],[10,15],[13,16],[11,1],[10,-6],[10,-21],[16,-48],[19,-49],[13,-17],[34,15],[24,15],[42,3],[56,10],[43,14],[27,-2],[17,-16],[25,-29],[6,-43],[33,-30],[26,-5],[9,31],[15,21],[-5,30],[-3,37],[-11,35],[-8,37],[14,53],[15,47],[8,25],[25,47],[25,33],[37,54],[28,18],[24,-8],[14,-8],[36,32],[63,2],[53,-4]],[[58823,81855],[5,-1],[26,-17],[27,-14],[19,-1],[22,4],[27,18],[18,18],[22,91],[8,13],[12,7],[20,1],[39,-17],[44,-15],[26,2],[69,49],[39,7],[46,-11],[44,-1],[34,7],[24,-17],[28,-37],[26,-55],[27,-101],[79,-115],[2,-22],[-7,-15],[-39,-14],[-33,-7],[-1,-20],[9,-21],[15,-32],[2,-40],[-1,-37],[7,-32],[12,-14],[2,-16],[-15,-20],[-4,-12],[6,-7],[71,-4],[35,-20],[27,-17],[13,-2],[30,11],[34,8],[20,1],[8,-13],[7,-35],[12,-34],[11,-10],[19,1],[12,-1],[7,-13],[-8,-20],[2,-21],[9,-27],[10,-60],[10,-18],[6,-23],[0,-27],[-8,-23],[-6,-18],[6,-41],[21,-46],[16,-11],[13,-41],[23,-13],[34,34],[26,18],[33,-10],[30,-6],[20,-24],[15,-32],[17,-18],[18,9],[36,-9],[17,-26],[16,-15],[22,21],[17,27],[64,27],[40,7],[11,5],[23,20],[24,13],[23,-4],[21,-40],[23,-28],[6,-45],[28,-61],[68,-83],[27,-26],[18,5],[10,7],[4,8],[4,41],[9,15],[14,1],[53,-51],[28,-6],[27,-1],[36,-39],[39,-35],[30,-3],[25,13],[16,8],[11,-13],[9,-29],[16,-23],[18,-7],[26,-1],[46,-45],[43,-45],[26,-3],[23,14],[20,3],[14,-11],[4,-20],[-10,-26],[0,-38],[19,-36],[0,-36],[-5,-32],[-11,-29],[-26,-41],[-24,-38],[-36,-16],[-21,-16],[6,-28],[13,-26],[31,-21],[34,-15],[5,-17],[-6,-9],[-22,-7],[-31,8],[-10,-15],[-15,-25],[-9,-44],[-7,-41],[33,-11],[20,-17],[6,-34],[7,-37],[2,-34],[-11,-16],[-1,-17],[5,-9],[15,-3],[11,-8],[1,-18],[-21,-40],[-20,-76],[-11,-41],[1,-44],[-12,-25],[-21,-2],[-75,-4],[-64,2],[-28,6],[-44,4],[-22,-11],[-28,-70],[-22,-28],[-36,-25],[-40,-7],[-22,-30],[-8,-45],[-1,-41],[-3,-20],[-9,-18],[-3,-13],[2,-14],[9,-5],[11,-6],[0,-10],[-4,-13],[-13,-14],[-5,-22],[1,-23],[2,-25]],[[58892,78458],[38,-29],[-39,8],[-86,27],[-38,25],[-10,28],[-5,38],[21,-40],[15,-18],[104,-39]],[[59417,51265],[-30,0],[-50,0],[-49,0],[-49,0],[-50,0],[-49,0],[-50,0],[-49,0],[-49,0],[-50,0],[-49,0],[-50,0],[-49,0],[-49,0],[-50,0],[-49,0],[-49,0],[-30,0],[-5,2],[-4,3],[-19,-8],[-19,-25],[-21,-11],[-22,5],[-3,-3]],[[58474,51228],[-11,1],[-16,1],[-14,-6],[-11,-23],[-12,-37],[-20,-44],[-16,-38],[-13,-28],[-31,-45],[-17,-13],[-8,2],[-5,8],[-10,58],[-6,9],[-60,-29],[-9,-1]],[[58215,51043],[1,18],[-4,136],[-1,83],[8,52],[4,60],[1,52],[11,90],[-4,54],[14,189],[4,31],[5,91],[9,28],[8,11],[10,56],[20,90],[14,46],[-3,101],[2,68],[3,16],[29,25],[38,63],[15,75],[23,47],[43,31],[1,0],[129,256],[60,138],[26,70],[1,26],[5,33],[-11,26],[-12,24],[-4,21],[-11,11],[-16,0],[-10,15],[-11,31],[-12,20],[-37,-2],[-28,32],[0,43],[12,85],[21,98],[1,26],[-3,23],[-5,20],[-10,20],[-9,23],[7,70],[14,69],[11,34],[11,38],[-4,32],[-15,15]],[[58566,53853],[8,31],[17,52],[33,52],[29,35],[19,0],[38,-27],[34,-33],[19,-2],[22,14],[47,58],[11,-18],[14,-36],[15,-58],[30,-27],[14,-18],[10,-6],[6,5],[11,46],[13,25],[26,32],[55,25],[39,7],[17,6],[28,15],[44,47],[44,-61],[47,-12],[46,1],[14,18],[8,14],[48,100],[65,136]],[[59437,54274],[44,-191],[14,-11],[-2,-17],[-3,-16],[28,-46],[35,-24],[12,-23],[2,-26],[-12,-112],[2,-31],[11,-112],[21,-25],[19,-113],[37,-47],[5,-14],[9,-55],[11,-59],[9,-14],[5,-4],[11,-63],[-6,-36],[9,-108],[14,-96],[3,-116],[1,-51],[-1,-31],[-3,-44],[-7,-25],[-12,-25],[-13,-39],[-11,-41],[-7,-21],[5,-62],[-1,-16],[-3,-8],[-17,-10],[-22,-17],[-13,-16],[-18,-32],[-15,-34],[-20,-101],[-33,-78],[-5,-26],[-31,-47],[-14,-57],[-9,-71],[-12,-51],[-26,-69],[-6,-110],[1,-220],[-7,-249],[1,-99]],[[64752,74195],[-3,-27],[-15,81],[-7,89],[9,26],[11,-2],[-10,-32],[15,-135]],[[68478,73357],[-14,-2],[-34,13],[-67,27],[-58,54],[-38,35],[-6,-5],[-16,-24],[-12,-30],[-9,-57],[-15,-67],[-70,-3],[-59,-5],[-39,-26],[-37,-35],[-10,-42],[-8,-54],[-22,-124],[-20,-113],[-10,-73],[-15,-50],[-42,-66],[-49,-44],[-25,-21],[-12,-26],[-2,-25],[-9,-7],[-20,4],[-21,-4],[-46,-26],[-50,-31],[-60,-32],[-34,0],[-14,-7],[-6,-16],[6,-29],[6,-23],[5,-28],[-14,-24],[-9,-40],[-8,-70],[-21,-21],[-34,-35],[-38,-45],[-9,-9],[-22,-13],[-21,4],[-20,7],[-21,-12],[-22,-35],[-10,11],[-5,35],[-11,23],[-35,52],[-29,36],[-13,3],[-27,-10],[-33,-7],[-28,8],[-21,15],[-34,50],[-12,28],[-9,20],[-23,-5]],[[67017,72361],[-7,23],[-1,26],[7,33],[-2,61],[-13,43],[-15,20],[2,13],[7,30],[8,27],[0,53],[-11,57],[-4,82],[3,81],[-14,40],[-114,0],[-102,-3],[-6,9],[-39,102],[-33,77],[-31,45],[-73,56],[-35,23],[-29,43],[-25,46],[-6,64],[-5,21],[-7,17],[-8,8],[-9,-2],[-84,74],[-34,20],[-32,-16],[-14,-3],[-28,21],[-32,-28],[-13,-2],[-19,7],[-16,10],[-42,68],[-36,27],[-26,18],[-49,25],[-53,14],[-27,11],[-19,15],[-5,9],[0,25],[-1,32],[-7,24],[-13,28],[-19,22],[-31,-4],[-48,2],[-37,21],[-29,4],[-35,-4],[-29,0],[-20,-16],[-12,-18],[-8,-55],[-7,-9],[-12,-4],[-16,3],[-33,0],[-58,10],[-73,2],[-55,-28],[-43,-40],[-42,-45],[-49,-72],[-14,-32],[-29,-127],[-12,-18],[-17,-15],[-17,-2],[-33,-19],[-44,-31],[-30,-13],[-77,7]],[[64976,73354],[-5,40],[-14,148],[-7,148],[1,69],[8,138],[-1,69],[-3,63],[3,61],[6,69],[4,71],[-5,49],[-15,39],[-25,49],[-4,29],[-2,33],[-24,3],[-22,34],[-17,18],[-39,20],[-19,1],[-18,-14],[-13,-30],[-9,47],[0,49],[31,102],[19,-30],[24,-12],[30,-2],[29,8],[-6,35],[-13,20],[-17,15],[-6,46],[2,48],[8,45],[-9,18],[-14,11],[-32,-1],[-42,12],[-42,5],[-10,-53],[23,-70],[-19,34],[-19,46],[-26,81],[-16,96],[-3,103],[14,85],[18,80],[11,102],[15,101],[15,-45],[17,-40],[24,-38],[13,-9],[39,-15],[25,6],[27,22],[26,-7],[22,-42],[20,-46],[29,-10],[61,33],[29,8],[25,-15],[13,-3],[13,2],[-11,42],[-5,40],[15,21],[48,-23],[31,16],[8,8],[7,10],[3,35],[-1,36],[-4,33],[-9,29],[-22,42],[-86,98],[-28,39],[-24,50],[-16,72],[-12,74],[-11,55],[-30,129],[-12,15],[-14,7],[-36,4],[-36,-10],[-58,-22],[-34,7],[-15,-13],[-39,-55],[-18,-46],[-25,-106],[19,-34],[0,-22],[-15,-157],[9,-76],[-3,-6],[-7,18],[-22,78],[-38,94],[-32,145]],[[64581,75910],[56,94],[49,67],[39,40],[12,10],[54,34],[70,30],[51,22],[67,19],[22,4],[32,-1],[26,-18],[16,-14],[56,-57],[57,-59],[49,-65],[13,-26],[8,-32],[6,-31],[41,-99],[17,-45],[24,-59],[20,-29],[19,-35],[13,-29],[14,-14],[17,-6],[37,10],[44,18],[27,8],[12,-1]],[[57213,74963],[-64,-18],[-19,17],[20,35],[37,22],[12,2],[16,-34],[-2,-24]],[[61530,75758],[18,-11],[35,-15],[22,-18],[12,-5],[28,37],[43,-1],[37,-5],[19,-6],[23,-12],[29,-9],[11,18],[17,51],[6,7],[5,5],[21,4],[20,-4],[9,-9],[9,-41],[24,-15],[42,-66],[25,-26],[6,-11],[-8,-13],[3,-17],[15,-21],[20,-8],[23,3],[12,-8],[8,-12],[2,-17],[0,-11]],[[62066,75522],[4,-25],[18,-34],[20,-21],[11,-23],[18,-77],[8,-43],[-3,-42],[-13,-42],[-27,-53],[7,-22],[6,-29],[-2,-22],[19,-67],[9,-42],[-7,-10],[-5,-13],[35,-32],[41,-28],[18,-5],[48,13],[31,2],[31,-25],[44,-63],[48,-81],[10,-25]],[[62435,74713],[4,-11],[10,-19]],[[62449,74683],[-10,0],[-16,18],[-38,50],[-20,-22],[-17,-37],[-18,-141],[-15,-15],[-27,1],[-32,4],[-22,-7],[-6,-9],[3,-15],[7,-23],[4,-29],[2,-24],[11,-22],[16,-21],[1,-21],[-3,-30],[-3,-22],[-4,-13],[7,-35],[17,-41],[11,-15],[-4,-78],[6,-35],[5,-48],[-2,-79],[3,-19],[5,-7],[16,-3],[15,-7],[6,-13],[-1,-10],[-19,-36],[-2,-26],[-6,-37],[-6,-21],[-17,-41],[-11,-41],[-5,-34],[4,-16],[31,-5],[17,-24],[45,-49],[8,-20],[-12,-30],[0,-12],[6,-16],[3,-28],[-1,-31],[0,-41],[8,-7],[31,-38],[22,-39],[1,-12],[-11,-30],[3,-35],[-1,-8]],[[62434,73238],[-9,13],[-17,5],[-18,1],[-11,-10],[-20,-27],[-26,-30],[-21,-28],[-12,-19],[-10,3],[-8,17],[-4,23],[1,87],[-4,27],[-10,19],[-12,11],[-13,6],[-15,1],[-20,-26],[-29,-26],[-44,2],[-30,5],[-15,5],[-58,40],[-12,1],[-22,17],[-25,13],[-44,-25],[-19,6],[-26,21],[-9,-6],[-29,-64],[-50,-70],[-27,-11]],[[61766,73219],[-13,69],[-12,27],[-6,4],[-13,8],[-9,-5],[-30,-47],[-48,-29],[-40,-17],[-64,-22],[-48,-10],[-21,-1],[-45,9],[-40,14],[-40,-1],[-30,-6],[-71,-51],[-121,-105],[-92,-51],[-51,-21],[-40,-11],[-69,-1],[-56,8],[-39,-1],[-22,13],[-30,42],[-38,43],[-16,9],[-22,9],[-32,4],[-79,-61],[-25,-17],[-27,-13],[-54,-37],[-25,-21],[-30,2],[-39,6],[-33,-2],[-23,29],[-12,32],[-46,20],[-33,5],[-8,-14],[-9,-44],[-14,-112],[-2,-29],[29,-111],[-2,-17],[-20,-6],[-24,-2],[-16,-10],[-12,-18],[-8,-97],[-27,-18],[-14,-20],[-13,-60],[-7,-1],[-45,45],[-20,4]],[[59970,72532],[17,47],[-19,93],[-21,86],[20,56],[41,67],[44,79],[0,48],[-3,37],[-12,25],[-24,34],[-40,-36],[-29,-40],[-18,-8],[-21,-23],[-10,-41],[-24,-32],[-40,-13],[-60,35],[-65,52],[-37,42],[-30,10],[-28,-18],[-84,-104],[-77,-152],[-19,-26],[-72,-65],[-48,-22],[-22,5],[-95,-29],[-48,-4],[-37,-34],[-72,37],[-44,48],[-26,48],[-42,105],[-31,49],[-67,45],[-119,108],[-31,12],[-80,16],[-85,10],[-18,-40],[-6,-156],[-15,-43],[-6,-81],[-10,-24],[-17,-15],[-25,26],[-18,11],[-41,-33],[-82,-47],[-28,-7],[-94,59],[-35,38],[-22,42],[-8,71],[-14,40],[-2,28],[-5,31],[-19,13],[-21,-24],[-22,1],[-27,15],[-65,59],[-50,5],[-30,-73],[-24,-23],[-25,-7],[-2,21],[20,47],[-78,-9],[-41,-35],[-32,5],[-24,16],[3,20],[25,7],[21,16],[84,13],[20,13],[21,51],[40,44],[5,19],[-31,0],[-129,-13],[-89,7],[-10,-21],[-14,-4],[-3,60],[14,27],[19,-3],[46,24],[-4,49],[-33,34],[-7,19],[-24,5],[-20,23],[-4,59],[-15,65],[-23,31],[3,17],[41,22],[8,90],[-6,56],[-20,4],[-60,44],[-18,-4],[-20,48],[-35,34],[-17,-12],[-11,-16],[-16,7],[-26,30],[-27,17],[-12,20],[15,53],[20,-1],[4,42],[-16,70],[2,36],[17,9],[20,-6],[21,-42],[6,-41],[-4,-39],[13,-38],[9,-10],[6,41],[9,7],[12,-17],[25,-9],[66,24],[12,21],[-48,-2],[-17,19],[-20,44],[-11,40],[-3,19],[-6,29],[7,15],[33,23],[29,64],[-12,18],[-14,9],[-15,-6],[-14,22],[-2,30],[12,25],[1,34],[-38,83],[-10,18],[8,28],[29,45],[27,57],[-4,19],[-20,7],[-95,-24],[-37,-21],[-66,-10],[-5,31],[2,28],[15,50],[-2,125],[9,67],[37,20],[45,100],[73,117],[76,-3],[30,33],[45,2],[9,-24],[5,-22],[40,-33],[70,5],[17,13],[16,18],[-32,57],[10,17],[29,2],[32,-14],[2,-13],[-9,-18],[-10,-32],[10,-6],[90,19],[95,-15],[30,8],[75,0],[13,19],[-22,25],[-22,9],[-15,12],[-15,18],[47,55],[27,11],[126,34],[94,17],[1,13],[-14,0],[-121,28],[-29,22],[-40,52],[-9,15],[-10,25],[6,55],[7,43],[15,25],[48,4],[166,-44],[119,27],[129,-65],[123,13],[26,29],[31,93],[174,156],[61,80],[66,45],[112,49],[94,65],[27,7],[225,-31],[155,-4],[71,62],[42,-21],[-4,-22],[-8,-19],[3,-38],[24,-55],[24,-38],[73,-55],[100,46],[16,-5],[21,-13],[35,-147],[28,-52],[35,-36],[29,-7],[21,37],[17,15],[36,6],[60,-50],[21,-53],[101,-40],[93,-20],[40,-45],[131,-44],[49,7],[82,46],[159,51],[106,-71],[29,-9],[25,6],[35,-20],[38,11],[117,84],[37,48],[39,12],[34,29],[92,93],[27,54]],[[57781,76018],[-7,-65],[17,-73],[41,-100],[41,-51],[167,-126],[31,-11],[-7,-51],[-10,-46],[-11,-30],[-49,-20],[-135,56],[-34,6],[-24,-12],[-45,-40],[-49,13],[-69,-23],[-19,-77],[-48,-88],[-79,-71],[-56,-38],[-84,-136],[-39,-80],[-16,-15],[-19,-13],[6,39],[10,35],[-2,26],[0,38],[28,44],[26,31],[76,58],[20,47],[-60,-1],[-60,-11],[-38,7],[-33,-4],[-11,42],[-8,25]],[[57232,75303],[9,7],[11,6],[19,44],[18,33],[25,41],[6,24],[0,23],[-6,16],[-1,19],[-1,27],[2,55],[57,60],[18,6],[6,28],[-4,63],[-8,51],[-10,4],[-14,15],[-9,17],[-14,19],[-25,12]],[[57311,75873],[-1,16],[3,16],[9,17],[42,14],[5,12],[5,29],[9,29],[10,10],[17,-1],[34,7],[23,9],[24,21],[12,18],[50,11],[14,9],[14,-8],[19,-31],[31,-45],[17,-15],[13,6],[22,17],[22,0],[17,-3],[9,14],[13,3],[37,-10]],[[53195,70957],[0,-16],[-10,-109],[-2,-39],[-2,-67],[0,-80],[22,-68],[1,-30],[-9,-34],[-41,-39],[-52,-51],[-46,-49],[-49,-53],[-15,-34],[-25,-26],[-21,-27],[-3,-25],[-15,-48],[-19,-38],[-47,-18],[-8,-12],[-22,-57],[-10,-23],[-13,-47],[16,-123],[20,-126],[4,-52],[-1,-44],[-11,-47],[-25,-68],[-18,-49],[-35,-89],[-11,-22],[-24,-26],[-47,-35],[-33,-30]],[[52644,69256],[-17,136],[-15,116],[-12,95],[-21,169],[-17,143],[-18,143],[-16,129],[-16,130],[-7,19],[-49,62],[-45,57],[-46,64],[-51,70],[-8,88],[-26,133],[-27,74],[-10,19],[-55,48],[-32,35],[-9,20],[-6,55],[-23,107],[-26,97],[-9,66],[-1,83],[5,60],[11,26],[54,74],[25,90],[31,34],[26,25],[22,30],[19,47],[15,51],[2,54],[7,87],[9,61],[23,68],[-9,55],[-12,60],[3,103],[-3,42],[-10,37],[-10,48],[0,39],[10,104],[7,80],[12,103],[-5,29],[-8,21],[-26,23],[-1,14],[7,15],[38,50],[21,74],[17,16],[27,26],[-1,29],[-6,31]],[[52382,73120],[68,35],[66,91],[23,22],[152,84],[19,-6],[22,-12],[-6,-31],[-9,-25],[13,-44],[18,27],[-4,18],[-1,23],[31,2],[28,-3],[30,-26],[-2,-100],[40,-97],[-11,-48],[33,-29],[29,35],[15,51],[54,29],[52,74],[28,8],[6,-61],[14,-54],[-19,-18],[-25,-57],[-47,-144],[-43,-42],[-33,-56],[-10,-39],[-3,-46],[8,-82],[23,-84],[28,-51],[26,-15],[61,-80],[-1,-47],[9,-57],[3,-68],[21,-55],[-45,-119],[-25,-86],[-49,-118],[-43,-77],[-93,-115],[-23,-38],[-15,-39],[-7,-41],[3,-49],[30,-119],[41,-70],[41,-38],[72,16],[-2,-46],[5,-55],[29,3],[20,8],[16,54],[36,-37],[18,-111],[30,-35],[3,-13],[-10,-9],[-9,-13],[9,-9],[29,-14],[17,9],[29,-24]],[[53132,71862],[-43,-41],[9,36],[28,43],[7,-10],[-1,-28]],[[53043,71268],[-7,-3],[-13,-16],[-8,-1],[-20,17],[-7,0],[-10,12],[3,68],[3,19],[49,2],[27,-40],[4,-10],[1,-12],[-12,-22],[-10,-14]],[[33123,58282],[-15,-6],[2,23],[26,40],[41,26],[10,1],[-6,-35],[-58,-49]],[[33052,57680],[-45,-32],[-118,-8],[-48,12],[-37,-9],[67,70],[8,30],[29,6],[9,9],[9,155],[-4,38],[-5,20],[-12,15],[-26,20],[-5,11],[17,17],[35,9],[26,19],[55,4],[26,16],[45,5],[-22,-71],[-10,-27],[4,-65],[-5,-43],[6,-55],[13,-37],[-9,-35],[-1,-54],[-2,-20]],[[1344,39648],[4,0],[4,17],[15,7],[-1,-19],[-21,-59],[-12,23],[-37,38],[-8,29],[13,23],[-2,-18],[6,-8],[21,-4],[19,-15],[-12,-6],[11,-8]],[[1680,41106],[-11,-34],[-5,0],[-12,20],[-5,13],[19,40],[10,3],[12,-13],[0,-12],[-8,-17]],[[1413,39573],[-2,-87],[-13,40],[-2,18],[14,27],[3,2]],[[50250,58175],[-8,-62],[-14,-76],[-10,-25],[-6,-186],[4,-16],[4,-4],[46,-64],[60,-82],[43,-59],[4,-19],[0,-123],[1,-105],[9,-60],[1,-59],[11,-44],[40,-85],[9,-50],[1,-161],[1,-122],[5,-166],[0,-139],[0,-175],[0,-205],[0,-215],[-26,-2],[14,-67],[2,-60],[4,-20],[-7,-29],[6,-45],[11,-16],[29,-90],[9,-75],[-46,-26],[3,-19]],[[50450,55424],[-86,-41],[-35,-33]],[[50329,55350],[0,32],[-13,6],[-15,11],[-10,17],[-13,38],[-5,29],[-20,5],[-25,33],[-24,39],[-8,38],[2,17],[-3,18],[-9,7],[-21,86],[-13,35],[-7,28],[3,22],[-3,29],[4,23],[11,14],[4,17],[1,37],[7,74],[4,74],[-12,20],[-15,6],[-8,21],[-3,34],[0,30],[30,104],[-6,241],[4,37],[13,25],[12,29],[-1,29],[-19,72],[-37,55],[-19,45],[-10,40],[-2,21],[22,32],[10,21],[2,25],[-10,46],[2,81],[9,61],[8,79],[0,24],[-22,47],[-12,6],[-9,-3],[-23,-31],[-8,-4],[-5,10],[-3,12],[8,18],[-3,24],[7,20],[14,9],[5,10],[-20,10],[-2,13],[1,14],[6,2],[6,-1],[3,10],[3,67],[3,23],[2,47],[3,179],[5,19],[0,13],[-13,9],[-32,48],[-19,37],[-17,38],[-14,25],[-27,38],[-7,25],[-2,24],[9,49],[13,52],[6,75],[-4,20],[-18,35]],[[49980,58246],[64,-27],[90,-45],[2,-8],[0,-13],[16,0],[26,16],[72,6]],[[84901,47154],[-19,-99],[-20,21],[22,55],[10,17],[7,6]],[[84740,46363],[-9,75],[-10,33],[-8,18],[-3,23],[0,23],[5,11],[34,3],[14,38],[0,47],[-7,15],[-7,7],[-35,-35],[-10,7],[-6,12],[2,51]],[[84700,46691],[29,48],[25,88],[17,34],[40,33],[16,9],[118,48],[28,3],[74,-1],[100,10],[24,7],[32,21],[31,26],[16,21],[18,14],[25,-18],[44,-14],[11,-13],[11,-17],[-50,-92],[-56,-76],[-34,-23],[-35,-15],[-27,-29],[-23,-46],[-29,-26],[-32,-9],[-28,-14],[-26,-27],[-35,-46],[-14,-5],[-15,1],[-29,-17],[-91,-67],[-55,-73],[-40,-63]],[[84454,46462],[45,49],[68,38]],[[84567,46549],[-2,-28],[-7,-44],[-10,-20],[-16,-37],[-10,-8],[-41,8],[-5,-5],[-7,3],[-11,24],[-4,20]],[[78501,58569],[-5,-60],[-15,24],[3,31],[7,13],[10,-8]],[[78451,58749],[1,-14],[-14,10],[-5,-5],[-17,4],[-8,80],[2,19],[11,-6],[17,-40],[8,-27],[5,-21]],[[77335,56395],[-3,-43],[-11,1],[-12,-27],[-5,-4],[-10,86],[11,121],[6,18],[8,-32],[23,-15],[-10,-69],[3,-36]],[[77811,63546],[-2,-34],[7,-7],[9,15],[13,39],[13,22],[14,5],[16,-27],[16,-57],[17,-33],[7,-3],[6,-26],[1,-26],[-8,-53],[-13,-62],[-20,-76],[7,-64],[26,-53],[31,-31],[33,9],[17,15],[14,25],[14,12],[16,3],[53,-18],[16,-18],[2,-35],[-6,-92],[8,-67],[15,-70],[1,-65],[-18,-106],[-15,-101],[-17,-48],[-12,-32],[-4,-21],[1,-20],[12,-30],[12,-39],[3,-38],[-1,-46],[-9,-62],[-31,-137],[-26,-122],[14,-25],[24,-18],[17,-18],[17,12],[37,72],[32,54],[39,54],[2,5],[35,40],[15,36],[9,47],[12,18],[16,-11],[20,20],[24,51],[19,24],[13,-4],[23,-32],[33,-59],[30,-36],[26,-11],[13,-22],[-1,-33],[6,-21],[12,-9],[5,4],[-1,16],[12,23],[25,31],[25,18],[26,5],[17,25],[11,63],[16,48],[14,22],[17,11],[5,15],[-9,20],[1,19],[10,21],[22,8],[34,-3],[39,-20],[45,-38],[30,-13],[14,14],[28,-59],[41,-131],[35,-100],[29,-67],[31,-52],[32,-36],[24,-49],[21,-93],[-16,-128],[-4,-111],[2,-137],[19,-104],[36,-73],[21,-59],[6,-44],[28,-39],[51,-32],[21,-29],[-9,-26],[0,-30],[7,-35],[17,-28],[28,-23],[17,-24],[5,-25],[-1,-40],[-6,-57],[-12,-43],[-17,-30],[-2,-24],[-4,-36],[0,-74],[12,-50],[4,-63],[-7,-51],[-6,-105],[-1,-41],[-6,-34],[-15,-34],[-22,-32],[-27,-28],[-17,-12]],[[79217,60107],[-4,-6],[-12,-32],[-15,-31],[-11,0],[-8,16],[-6,20],[-4,44],[-25,22],[-28,14],[-56,-22],[-46,-12],[-51,15],[-48,-19],[-20,-3],[-23,3],[-22,0],[-22,7],[-39,27],[-15,-2],[-32,-23],[-33,-15],[-31,-11],[-47,-46],[-34,-67],[-10,-47],[-17,-48],[-23,-75],[-30,-72],[-21,-33],[6,-19],[-6,-24],[-32,-10],[-26,-4],[-5,-12],[3,-145],[9,-55],[17,-66],[11,-36],[8,-108],[2,-91],[36,-58],[21,-44],[14,-38],[-5,-25],[-8,-74],[8,-95],[51,-206],[4,-15]],[[78592,58586],[-6,-2],[-8,40],[-26,67],[-8,71],[-30,79],[-16,31],[-6,-26],[-9,-28],[-30,40],[-25,43],[-23,81],[-3,-19],[-6,-17],[-26,64],[-28,51],[-25,19],[-15,17],[-15,27],[-31,28],[-78,-40],[-98,31],[-38,-30],[-16,19],[-9,35],[9,59],[2,125],[12,88],[-6,67],[6,31],[4,43],[-15,17],[-70,34],[-15,27],[-18,-31],[-84,-17],[-31,-26],[-29,-49],[-8,-64],[17,-41],[11,-73],[-30,-158],[-5,-46],[12,-194],[-5,-106],[-16,-71],[-26,-63],[-11,-109],[-20,-50],[-28,-114],[-18,-143],[-13,-66],[-8,-122],[-56,-184],[-13,-104],[-20,-40],[7,-31],[1,-52],[-7,-139],[-2,-115],[8,-62],[27,-122],[-6,-36],[-3,-50],[22,-23],[17,-7],[91,58],[31,-15],[12,-54],[8,-47],[15,-254],[8,-48],[19,-45],[20,-47],[7,8],[1,18],[1,20],[19,-48],[14,-90],[48,-476],[14,-61],[11,-63],[-29,31],[-8,105],[-8,45],[-11,6],[-16,0],[-1,18],[12,35],[-2,41],[-17,34],[-27,-27],[1,-74],[12,-57],[46,-127],[15,-53],[18,-15],[27,8],[32,-54],[25,-50],[63,-77],[38,8],[41,19],[27,-5],[27,-20],[32,-64],[52,-161],[84,-134]],[[78361,55438],[-9,-33],[-4,-50],[-33,-68],[-5,-39],[-13,-50],[-23,-26],[-19,-5],[-12,4],[-8,10],[-13,47],[-7,14],[-6,4],[-42,-33],[-41,-35],[-7,-33],[-11,-37],[-12,-15],[-10,-3],[-9,22],[-15,28],[-12,27],[3,43],[23,64],[3,44],[-3,77],[-6,44],[-7,1],[-11,7],[-32,-7],[-16,50],[-7,54],[-10,20],[-11,12],[-24,-19],[-18,11],[-61,48],[-23,76],[-13,2],[-11,-8],[-4,-18],[-7,-88],[-5,-27]],[[77810,55553],[-69,178],[-48,73],[6,132],[-14,26],[-18,2],[-14,37],[12,79],[-19,-15],[-26,3],[-21,21],[-16,109],[-11,33],[-22,58],[-29,0],[-10,27],[2,70],[-21,43],[-28,36],[-23,20],[-24,114],[-19,28],[-16,22],[-22,-15],[-7,-41],[-15,-39],[-16,5],[-16,22],[-18,114],[-4,69],[5,129],[23,116],[13,185],[20,117],[13,39],[20,159],[39,204]],[[77417,57713],[4,43],[8,49],[6,46],[2,73],[-5,38],[0,22],[8,27],[28,46],[38,76],[46,107],[47,163],[23,95],[10,34],[10,10],[16,33],[11,36],[1,18],[-26,178],[-16,58],[-9,68],[-4,50],[-6,45],[3,43],[-9,26],[-21,34],[-22,50],[-13,82],[0,46],[-13,40],[-5,42],[8,40],[11,34],[-1,152],[-4,46],[-6,81],[-14,61],[-20,72],[-22,59],[-59,107],[-42,71],[-21,66],[-26,74],[-19,54],[-24,68],[-12,93],[-7,99],[4,33],[11,21],[15,18],[12,4],[34,45],[24,-4],[5,10],[2,21],[-3,90],[2,120],[4,98],[5,64],[63,75],[13,33],[6,35],[0,31],[-5,24],[-9,14],[-41,-65],[-8,15],[-19,106],[-8,32],[-11,39],[-13,54],[-2,94],[-9,46],[-50,99],[-23,53],[-31,77],[-37,92],[-38,86],[-18,54],[-6,12],[-2,21],[11,59],[-5,59],[-19,78],[-8,49],[2,19],[-9,7],[-21,-4],[-20,36],[-20,78],[-1,14],[6,-1],[24,-13],[9,2],[17,18],[26,19],[16,6],[5,9],[2,19],[-13,179],[2,37],[25,77],[-3,78],[7,112],[27,77],[21,35],[7,55],[9,12],[17,-5],[36,-41],[15,-2],[22,1],[23,3],[11,4],[74,40],[16,5],[16,-5],[11,2],[12,18],[8,33],[9,103],[5,19],[10,15],[16,10],[18,-1],[24,-20],[15,-1],[17,8],[15,15],[9,18],[5,22],[-4,41],[-11,53],[3,6],[20,-11],[30,-13],[22,3],[15,9],[14,25],[19,23],[17,-5],[14,-21],[33,-36]],[[77798,57428],[-3,-9],[-11,18],[-8,21],[-4,26],[17,-1],[8,-25],[1,-30]],[[77797,57365],[1,-33],[-6,-39],[-25,-23],[-9,31],[2,49],[4,12],[25,-3],[8,6]],[[77683,55599],[-5,-3],[-10,47],[13,67],[13,-82],[-11,-29]],[[77386,56413],[-3,-10],[-14,110],[20,-29],[-3,-71]],[[77307,57057],[-16,-7],[2,32],[4,20],[8,5],[3,-34],[-1,-16]],[[77521,56216],[7,-70],[-10,15],[-8,30],[0,44],[2,7],[9,-26]],[[60971,48286],[21,-123],[-3,-23],[-15,-14],[-8,-1],[-9,20],[-7,41],[-11,-10],[-19,50],[-20,2],[-17,59],[7,51],[-4,88],[21,45],[12,76],[13,-52],[3,-80],[18,-95],[15,-29],[3,-5]],[[61073,49017],[2,-30],[-5,-27],[1,-87],[-1,-58],[-16,-80],[-13,-28],[-12,8],[-9,13],[-8,22],[15,147],[-7,107],[30,-10],[23,23]],[[58541,47123],[-8,51],[-19,77],[-26,109],[-20,89],[-22,96],[-9,70],[-17,78],[-28,96],[-14,37],[-16,33],[-40,65],[-45,64],[-25,43],[-33,128],[-14,47],[-9,81],[-8,85],[3,34],[30,109],[3,31],[-4,42],[-14,87],[-11,56],[-8,49],[-15,81],[-22,111],[-5,49],[0,36],[12,96],[10,99],[0,28]],[[58167,49280],[87,-4],[15,22],[49,63],[56,128],[11,54],[22,82],[23,40],[8,29],[6,44],[7,37],[29,56],[28,42],[-2,18],[-4,12],[5,11],[15,22],[30,20],[6,43],[0,48],[-5,28],[1,31],[-5,17],[-19,5],[-29,24],[-25,10],[-17,14],[-6,11],[-2,29],[4,32],[3,9],[6,34],[-11,20],[-2,10],[5,16],[25,108],[6,15]],[[58487,50460],[11,2],[17,13],[16,6],[14,-5],[9,6],[9,14],[7,42],[6,70],[-3,57],[-13,44],[-3,68],[6,90],[-5,75],[-14,60],[-14,36],[-22,17],[-34,92],[-11,44],[2,28],[9,9]],[[59417,51265],[21,0],[20,-21],[22,-26],[60,-69],[59,-68],[59,-69],[59,-68],[59,-69],[60,-68],[59,-69],[59,-69],[59,-68],[59,-69],[60,-68],[59,-69],[59,-68],[59,-69],[60,-68],[59,-69],[28,-33],[4,-14],[5,-62],[3,-39],[-1,-35],[-16,-58],[-5,-31],[0,-21],[4,-8],[13,-3],[12,-14],[4,-11],[9,-44],[11,-22],[25,-37],[42,-64],[43,-64],[43,-63],[42,-64],[43,-64],[43,-63],[42,-64],[43,-64],[21,-31],[8,-8]],[[60894,49140],[-5,-49],[-22,-117],[-1,-49],[-9,-58],[-8,-38],[-22,-165],[-19,-62],[-25,-145],[-5,-111],[15,-78],[5,-72],[30,-72],[23,-25],[17,-33],[28,-74],[17,-75],[51,-37],[20,-83],[-7,-58],[-24,-48],[-22,-77],[-18,-102],[-1,-155],[13,23],[27,-38],[3,-114],[-28,-134],[-8,-62],[-2,-53],[21,-160],[30,-81],[-2,-26],[-8,-21],[53,-144],[-5,-125],[20,-97],[9,-84],[13,-65],[2,-44],[-16,-50],[39,-12],[22,-41],[11,-39],[28,2],[15,-26],[22,-22],[47,-65],[13,-33],[5,-19],[3,-12]],[[61239,45815],[-32,-50],[-50,-79],[-50,-77],[-47,-52],[-34,-25],[-37,-13],[-34,-33],[-33,-50],[-42,-26],[-51,0],[-53,-36],[-53,-67],[-31,-39],[-50,59],[-38,19],[-44,-2],[-27,-8],[-10,-12],[-8,-36],[-7,-59],[-29,-57],[-51,-55],[-47,-20],[-43,14],[-29,22],[-15,32],[-23,15],[-29,-3],[-28,-22],[-27,-43],[-44,-18],[-59,5],[-31,21],[-5,35],[-26,42],[-47,47],[-35,1],[-23,-45],[-20,-29],[-19,-12],[-16,-1],[-15,9],[-9,3],[-66,5],[-62,-2]],[[59710,45173],[-2,20],[-4,46],[-13,41],[-11,24],[-14,6],[-7,-1],[-6,19],[-7,41],[-11,35],[-14,29],[-8,27],[-3,25],[2,27],[13,67],[4,47],[-1,47],[-7,49],[-15,58],[2,16],[-5,40],[-1,28],[3,34],[-3,45],[-13,97],[0,25],[-13,47],[-41,111],[-2,14],[-65,112],[-25,24],[-10,-21],[-3,-19],[3,-36],[-2,-18],[-3,-8],[-15,1],[-10,4],[-24,30],[-19,8],[-47,-6],[-17,-7],[-13,7],[-25,51],[-29,11],[-27,3],[-43,58],[-10,-3],[-5,-4]],[[61030,47247],[-15,-7],[-6,7],[-9,24],[16,21],[16,39],[36,59],[12,38],[5,8],[-3,-45],[-20,-99],[-18,-7],[-14,-38]],[[69710,75022],[1,-11],[-4,-19],[-58,-32],[-26,-28],[-6,-49],[-7,-14],[-12,-11],[-11,-3],[-18,57],[-20,12],[-29,20],[-56,40],[-29,17],[-56,-26],[-66,-35],[-10,-21],[-7,-23],[1,-17],[4,-23],[-3,-18],[-12,-6],[-19,22],[-16,12],[-8,-29],[-9,-53],[-4,-38],[14,-54],[5,-82],[26,5],[20,0],[37,24],[19,0],[29,-10],[52,-2],[40,4],[10,-2],[9,16],[11,-6],[10,-18],[41,22],[30,3],[19,-6],[11,-7],[19,-53],[15,-34],[19,-11],[57,10],[17,47],[14,12],[24,3],[19,9],[16,20],[21,16],[18,4],[9,-13],[4,-16],[-3,-21],[-1,-22],[12,-15],[35,-3],[17,-14],[1,-26],[-3,-41],[15,-17],[7,-1],[52,43],[14,1],[12,-24],[17,-29],[23,-30],[6,4],[10,34],[20,36],[36,12],[21,11],[21,5],[65,-14],[21,-2],[44,3],[35,7],[28,22],[15,17],[23,10],[29,-1],[16,-5]],[[70453,74567],[1,-30],[-4,-57],[-4,-40],[23,-72],[15,-34],[14,-25],[3,-19],[-3,-16],[-18,-15],[-7,-17],[-3,-18],[6,-21],[11,-68],[13,-53],[19,-26],[28,-17],[15,4],[11,40],[18,30],[16,-2],[25,1],[66,-34],[64,-52],[18,-29],[7,-32],[-18,-75],[1,-47],[4,-51],[15,-38],[13,-65],[3,-53],[6,-16],[4,-19],[-7,-49],[-5,-50],[6,-16],[20,-25],[31,-45],[6,-38],[-11,-24],[-20,-29],[-25,-25],[-8,-11]],[[70802,73289],[-4,6],[-12,26],[-28,41],[-20,21],[-38,-7],[-22,8],[-26,13],[-25,-2],[-16,-24],[-10,-25],[-25,-8],[-35,-19],[-56,-30],[-26,5],[-8,13],[6,17],[19,22],[5,26],[-4,25],[-17,7],[-7,4],[-8,5],[-34,15],[-28,-6],[-47,-31],[-88,-81],[-38,-55],[-28,-82],[-83,-27],[-57,-47],[-59,-78],[-39,-41],[-19,-6],[-19,7],[-19,21],[-18,65],[-16,98],[-11,64],[6,84],[7,94],[7,96],[11,111],[10,40],[0,26],[-8,13],[-18,0],[-27,-15],[-20,-3],[-11,10],[1,52],[14,93],[-21,79],[-57,64],[-48,22],[-40,-20],[-33,-50],[-27,-82],[-28,-68],[-29,-52],[-21,-25],[-7,-10],[-4,-22],[16,-69],[-1,-58],[-18,-48],[-19,-22],[-21,2],[-16,11],[-13,20],[-33,5],[-54,-9],[-37,-23],[-20,-39],[-6,-50],[8,-62],[-4,-48],[-17,-34],[-14,-19],[-10,-5],[-24,29],[-36,62],[-25,34],[-14,5],[-7,-3],[-8,-7],[-5,-8],[-4,-18],[-12,-7],[-16,5],[-15,-5],[-9,-20],[-25,-23],[-44,-27],[-25,-28],[-4,-30],[-6,-14],[-14,5],[-40,-41],[-30,13],[-35,53],[-19,44],[-2,18]],[[69639,74783],[-25,-22],[-15,3],[-11,21],[-8,20],[-2,12],[4,-1],[19,-9],[27,-6],[10,-6],[1,-12]],[[83613,64873],[-17,-68],[-14,-71],[-6,-68],[1,-69],[-4,-63],[-7,-62],[-27,18],[-15,44],[-3,73],[-20,88],[-7,26],[-28,49],[-26,25],[-20,36],[3,-3],[-15,49],[-11,52],[-23,148],[-8,36],[-10,32],[-3,33],[3,36],[10,53],[6,54],[-5,74],[2,73],[8,32],[130,443],[36,94],[22,47],[18,52],[17,66],[22,60],[15,19],[75,54],[23,52],[19,16],[21,-1],[14,-25],[12,-29],[13,-16],[33,-28],[15,-28],[6,-48],[-20,-45],[-10,-41],[-2,-45],[4,-61],[0,-61],[-25,-143],[-27,-90],[-7,-44],[-9,-111],[-16,-111],[-13,-140],[-22,-145],[-13,-61],[-16,-58],[-37,-109],[-42,-90]],[[82890,65968],[12,-38],[-5,-24],[-38,13],[-2,23],[14,-4],[19,30]],[[61766,73219],[0,-8],[-3,-20],[-31,-57],[-43,-78],[-30,-49],[-52,-83],[-38,-18],[-65,-30],[-17,-29],[-17,-46],[-9,-64],[-3,-40],[-2,-75],[16,-77],[14,-75],[2,-49],[-1,-48],[-14,-52],[-16,-71],[-9,-80],[-4,-150],[0,-128],[-2,-21],[-26,-90],[-31,-106],[-15,-24],[-68,-32],[-74,-77],[-84,-87],[-75,-78],[-79,-83],[-83,-85],[-59,-61],[-78,-82]],[[60770,71066],[-72,-78],[-72,-79],[-56,-60],[-83,-95],[-49,-56],[-73,-82],[-63,-72],[-75,-85],[-94,25],[-30,15],[-25,40],[-18,22],[-44,22],[-29,77],[-17,27],[-30,12]],[[59940,70699],[4,27],[16,47],[15,50],[-8,28],[-3,23],[-1,29],[10,27],[-5,33],[-8,33],[-6,16],[0,30],[4,23],[5,36]],[[59963,71101],[13,19],[3,20],[11,20],[16,16],[3,13],[-2,7],[-15,15],[-9,25],[8,38],[5,11],[9,18],[20,28],[16,4],[14,0],[23,-2],[18,-5],[5,7],[-1,9],[-22,23],[-1,18],[5,19],[16,30],[19,23],[9,4],[22,44],[14,50],[-22,122],[-14,19],[-22,17],[-13,3],[-1,8],[17,30],[13,27],[-14,26],[-24,12],[-9,-27],[-32,-2],[-48,0]],[[59993,71790],[-22,129],[-3,55],[1,65],[15,94],[-7,43],[-1,30],[-4,40],[-38,87],[21,160],[15,39]],[[52645,79218],[8,-7],[20,-26],[-4,-43],[-23,-70]],[[52646,79072],[-12,-56],[-1,-44],[2,-20],[4,0],[22,-3]],[[52661,78949],[11,0],[34,-11],[28,-17],[6,-19],[3,-22],[33,-30],[38,-19],[13,6],[47,71],[19,-12],[11,-38],[-1,-19]],[[52903,78839],[-13,-75],[-2,-41],[11,-26],[1,-21],[-3,-19],[-19,-2],[-25,11],[-21,32],[-17,-4],[-14,-8],[-7,-31],[-6,-36],[2,-21],[10,-15],[8,-34],[5,-43],[5,-20],[-5,-8],[-13,-6],[-11,5],[-20,52],[-9,20],[-15,3],[-27,-12],[-41,-29],[-17,0],[-14,6],[-13,24],[-11,47],[-4,30],[-8,-1],[-26,9],[-12,-12],[0,-48],[-3,-61],[-13,-38],[-37,-68],[-13,-29],[-6,-21],[-1,-18],[6,-32],[7,-30],[-6,-18],[-19,-9],[-14,19],[-5,32],[-30,45],[13,37],[-2,10],[-49,19],[-21,28],[-30,50],[-6,21],[2,69],[-2,17],[-4,8],[-14,0],[-20,-24],[-19,-36],[-38,-41],[-4,-8],[13,-40],[-1,-15],[-30,-63],[-6,-21],[-39,-39],[-18,-15],[-54,29],[-15,4],[-25,-20],[-34,-18],[-55,-19],[-21,14],[-9,13]],[[51950,78298],[-5,19],[-14,33],[-16,20],[-11,22],[-14,24],[-9,19],[12,64],[-9,22],[-5,32],[3,22],[-5,5],[-50,12],[-42,-4],[-29,-21],[-25,-35],[-3,-8],[2,-6],[12,-32],[-20,-35],[-32,-26],[-22,-3],[-10,5],[0,37],[18,13],[17,24],[5,34],[2,23],[-17,29],[2,17],[11,34],[6,29],[9,25],[34,42],[35,41],[5,45],[3,54],[5,13],[47,32],[11,13],[6,18],[37,60],[37,60],[7,20],[6,12],[0,10],[-4,7],[-18,5],[-6,19],[19,34],[24,21],[23,0],[9,-9],[-1,-11],[10,-12],[18,-4],[21,4],[22,13],[13,30],[7,23],[34,26]],[[52115,79258],[23,-13],[63,-4],[47,7],[29,18],[36,0],[24,-10],[4,1],[7,3],[6,9],[23,7],[3,8],[-1,8],[-4,4],[-28,-4],[-11,6],[-2,15],[9,25],[20,20],[18,5],[12,-5],[31,-38],[7,-2],[5,7],[6,4],[11,-7],[11,-24],[2,-4],[69,9],[15,0],[47,-42],[48,-43]],[[55298,85158],[-23,-14],[-13,-40],[-19,-7],[-17,-14],[-7,-128],[33,-49],[-18,-7],[-17,-14],[-11,-22],[-12,-47],[-45,-26],[-17,-19],[-25,-44],[-13,-63],[-25,-27],[-29,-6],[17,52],[22,42],[-21,28],[-13,46],[-16,34],[13,39],[-7,63],[2,62],[19,32],[22,25],[34,59],[37,42],[51,19],[23,-17],[10,38],[17,9],[15,-9],[33,-37]],[[54591,84268],[-15,-29],[-12,2],[-9,39],[-2,99],[5,49],[61,178],[27,14],[38,109],[10,48],[17,44],[10,39],[8,15],[17,-7],[8,-7],[-18,-23],[2,-29],[-1,-13],[-48,-128],[-12,-83],[-17,-21],[-69,-296]],[[53163,85850],[23,-73],[20,-10],[28,19],[19,53],[11,81],[13,76],[-15,81],[-17,72],[-1,21],[43,60],[13,49],[14,47],[16,16],[23,4],[27,9],[34,31],[30,42],[24,38],[8,76],[0,39],[10,28],[10,55],[-9,55],[-31,83],[-36,117],[-5,63],[16,12],[32,11],[60,3],[6,7],[6,28],[13,38],[15,28],[10,39],[4,36],[-34,54],[-45,55],[-30,18],[-54,46],[-38,39],[22,148],[16,109],[3,27],[0,41],[-52,177],[2,39],[5,35],[-6,61],[-3,54],[9,16],[21,30],[-20,47],[-2,4],[-38,117],[59,115],[-11,60],[36,44],[64,99],[36,56],[7,9],[29,25],[54,29],[60,14],[27,0],[103,-20],[80,-15],[12,15],[17,32],[22,45],[1,50],[-7,73],[-12,44],[-57,29],[-62,39],[76,124],[53,86],[66,129],[21,54],[15,22],[19,198],[13,56],[11,29],[0,30],[-7,50],[-19,114],[104,14],[34,7],[32,14],[61,35],[31,31],[-17,106],[37,36],[91,125],[98,119],[46,46],[5,22],[4,35],[-21,56],[-22,35],[-43,65],[19,46],[31,9],[42,18],[32,39],[4,5],[55,154],[107,77],[43,43],[67,-32],[97,-48],[44,71],[14,26],[15,39],[-6,67],[-3,87],[5,34],[39,16],[21,4],[108,-36],[28,1],[51,-5],[57,-16],[120,-42],[50,-17],[28,-4],[24,20],[51,50],[-76,37],[50,38],[26,38],[22,46],[8,55],[-3,29],[-16,20],[-46,50],[105,7],[36,2]],[[55728,91610],[76,-33],[3,-7],[0,-17],[3,-18],[74,-45],[21,-23],[45,-37],[12,-19],[42,-23],[30,-24],[35,-20],[41,-31],[55,-25],[46,-8],[117,-42],[20,-13],[33,-30],[35,-34],[23,-69],[38,-4],[10,-24],[33,-41],[46,-36],[-2,-12],[-36,-34],[-4,-45],[3,-58],[12,-47],[-2,-14],[-9,-16],[-10,-26],[-4,-22],[1,-11],[3,-6],[20,0],[34,-5],[20,-10],[12,-55],[-4,-10],[-29,-25],[-9,-19],[-1,-29],[6,-31],[9,-36],[23,-37],[31,-40],[20,-32],[9,-23],[4,-16],[-14,-20],[-12,-40],[-3,-45],[-5,-30],[-27,-41],[-19,-14],[-5,-22],[-3,-36],[6,-44],[2,-29],[6,-22],[8,-14],[43,-25],[25,-50],[15,-41],[29,-106]],[[56709,89749],[-73,-13],[-56,26],[-27,-13],[-48,-1],[-55,-10],[-19,-21],[-14,-8],[-51,29],[-48,49],[-35,-37],[-23,-7],[-20,33],[-18,6],[-10,-12],[-8,-29],[-14,-24],[-3,-14],[-2,-60],[-4,-14],[-46,8],[2,-16],[10,-8],[5,-10],[-17,-13],[-47,2],[-4,-14],[13,-22],[-10,-19],[-10,-8],[-55,-12],[-32,3],[-9,-12],[-3,-16],[6,-16],[14,-9],[5,-10],[-1,-21],[-12,-4],[-33,38],[-10,-2],[7,-20],[19,-22],[11,-22],[10,-26],[-2,-21],[-41,-65],[-37,-41],[-27,-37],[-16,-39],[19,-20],[20,-29],[15,-55],[17,-49],[35,-46],[-7,-27],[-8,-21],[-58,-47],[-66,-70],[-71,-178],[-24,-24],[-62,-30],[-23,-30],[-46,-35],[-81,-29],[-37,-42],[-16,-43],[-19,-3],[-18,17],[-24,12],[-3,-28],[1,-21],[-39,31],[-19,-28],[-14,-47],[-56,-63],[-61,11],[-6,-11],[16,-8],[2,-10],[-11,-5],[-17,0],[-25,-12],[-17,1],[-8,-30],[-13,-37],[-34,-15],[-18,-3],[-9,-20],[53,-5],[-4,-17],[-1,-17],[-6,-19],[-60,-27],[-9,-21],[-12,-13],[-27,0],[1,13],[4,13],[-39,-1],[-12,31],[-8,-8],[4,-25],[11,-25],[11,-38],[-9,-24],[-10,-11],[7,-11],[21,-8],[9,-15],[-25,-13],[-32,-44],[-32,-1],[-20,-28],[-21,0],[-17,18],[-27,15],[-9,-27],[-2,-20],[16,-53],[29,-41],[28,-18],[-20,-12],[-15,-26],[-17,-83],[-10,-33],[-10,-57],[6,-49],[6,-24],[13,-32],[-36,4],[-39,19],[6,-39],[-24,-47],[4,-40],[5,-27],[-7,-44],[11,-14],[6,-26],[-10,-20],[5,-17],[1,-59],[8,-92],[-3,-20],[21,-80],[-5,-29],[-3,-36],[31,-34],[27,0],[27,1],[10,-9],[11,-24],[8,-29],[23,2],[36,24],[23,6],[16,-46],[42,-59],[24,-27],[42,-14],[43,-48],[-6,-58],[18,-20],[52,-22],[18,-31],[9,-27],[14,-21],[16,-66],[-6,-41],[-21,-14],[-49,-44],[-22,-32],[-17,-20],[-49,-44],[-18,-8],[-17,-22],[-16,-10],[-15,6],[-55,-41],[4,-18],[42,-7],[22,9],[17,20],[18,5],[16,-4],[18,16],[14,7],[14,-8],[16,-39],[-33,-20],[-23,-1],[-12,-64],[-14,-27],[-10,-13],[-52,-27],[-35,-35],[-40,-27],[-18,6],[-26,-29],[-59,-33],[-31,-45],[-68,-40],[-34,-32],[-95,-2],[-89,7],[-29,-16],[29,-4],[20,-16],[25,7],[57,-8],[29,-8],[38,-54],[-28,-19],[-48,-14],[18,-76],[15,-51],[-20,-31],[-1,-140],[-27,-2],[-12,-58],[9,-30],[-1,-69],[6,-42],[13,-39],[-6,-41],[-43,-95],[1,-44],[8,-27],[6,-42],[-20,-81],[-14,-69],[-16,-57],[-37,-69],[-18,-51],[-43,-160],[-21,-32],[-26,-24],[-29,22],[-27,13],[-32,-2],[-51,-18],[-77,12],[-74,-6],[-19,-16],[11,-58],[-28,-8],[-26,17],[-24,-20],[-20,-22],[-39,-51],[-13,-32],[-3,-59],[20,-54],[18,-62],[-46,-76],[-26,-2],[-76,20],[-135,-47],[-121,38],[15,40],[0,30],[6,45],[4,47],[-1,32],[-9,33],[-29,44],[-68,147],[-19,62],[-14,26],[10,1],[55,-33],[13,4],[13,13],[-16,47],[-14,22],[-10,32],[33,9],[23,-2],[17,37],[-10,58],[-25,19],[-21,7],[-40,93],[-42,48],[-75,184],[-27,127],[-26,-12],[-12,55],[-9,53],[-2,38],[-40,22],[-1,27],[-8,120],[-42,16],[-28,68],[-5,128],[-28,23],[-23,-7],[1,32],[5,30],[-13,117],[-4,108],[-11,32],[-6,38],[5,33],[8,19],[28,5],[26,-29]],[[55321,85208],[-5,-36],[-15,3],[-13,26],[27,41],[40,-2],[14,-9],[-48,-23]],[[55115,85846],[-12,-6],[-6,2],[7,27],[6,11],[19,11],[5,-2],[-19,-43]],[[55165,86100],[-7,-19],[-7,23],[3,5],[4,23],[14,12],[21,-7],[0,-6],[-20,-19],[-8,-12]],[[58874,36890],[6,-8],[25,-27],[2,-53],[-2,-60],[-5,-38],[2,-38],[8,-59],[8,-41],[2,-184]],[[58920,36382],[-9,9],[-16,7],[-8,-3],[-8,-83],[-6,-122],[4,-77],[-60,-2],[-76,8],[-54,33],[-59,73],[-35,113],[-15,71],[-21,4],[-4,12],[-2,87],[1,91],[4,25],[39,112],[25,69],[15,68],[33,79],[36,51],[13,7],[9,-2],[62,-70],[65,-66],[14,8],[7,6]],[[34956,54930],[-23,-41],[-25,-58],[-34,-100],[2,-32],[-8,-25],[-2,-45],[3,-51],[8,-33],[4,-62],[-6,-57],[2,-33],[7,-52],[6,-55],[-1,-23],[8,-18],[8,-18],[-3,-49],[27,-88],[16,-39],[23,-37],[9,-37],[13,-44],[8,-5],[4,-18],[-4,-34],[-1,-47],[-15,-55],[-35,-100],[-4,-24],[9,-83],[-5,-68],[-2,-33],[-17,-60],[-40,-145],[-23,-27],[-14,-42],[-9,0],[-10,-4],[-4,-5]],[[34828,53183],[-12,0],[-10,19],[-2,22],[-5,25],[-12,8],[-24,-9],[-7,6],[-14,27],[-11,30],[-3,28],[-8,-3],[-18,-25],[-12,-6],[-9,7],[-11,-2],[-28,-27],[-16,-7],[-11,-27],[-76,-13],[-20,-7],[-45,48],[-12,15],[-6,3],[-5,-3],[-5,-11],[-8,-60],[-6,-16],[-12,-14],[-12,-24],[-2,-23],[18,-13],[15,-45],[16,-36],[13,-33],[-2,-36],[-2,-51],[-10,-18],[-15,-8],[-58,25],[-44,22],[-19,5],[-8,5]],[[34310,52961],[-11,19],[-11,18],[-18,6],[-22,12],[-15,45],[-17,64],[-5,29],[-13,28],[-13,40],[-3,36],[-10,32],[-5,11],[-7,45],[-2,16],[-3,2],[-5,14],[-11,47],[-2,12],[-4,4],[-12,34],[-9,11],[-4,17],[1,47],[-5,23],[-2,43],[0,17],[-5,20],[-8,12],[-1,32],[-2,77],[-4,14],[-34,-1],[-3,-8],[-15,-4],[-16,-1],[-15,10],[-12,14],[-3,17],[2,54],[-20,41],[-31,50],[-9,64],[-12,40],[-34,84],[-7,57],[0,41],[13,37],[17,65],[6,60],[6,31],[8,40],[8,53],[-6,32],[-10,32],[-3,23],[10,35],[10,24],[11,4],[14,15],[12,21],[17,5],[22,2],[44,0],[22,9],[7,17],[-1,33],[12,29],[11,13],[5,9],[1,11],[-3,10],[-5,7],[-12,2],[-11,51],[7,22],[10,41],[2,23],[15,37]],[[34112,55039],[4,-12],[11,67],[2,53],[8,54],[14,63],[24,31],[140,-32],[64,-30],[82,-52],[12,-55],[0,55],[-4,56],[23,40],[50,14],[75,-19],[64,23],[87,-3],[133,-45],[59,-31],[25,-28],[4,-50],[-2,-64],[-10,-62],[-21,-82]],[[58566,53853],[-6,25],[-6,23],[-11,29],[-16,12],[-14,-6],[-17,-6],[-8,17],[-1,40],[-5,37],[-8,28],[-24,28],[-63,56],[-48,113],[-25,52],[-17,34],[-25,89],[-29,61],[-35,28],[-23,-14],[-23,-65],[-45,-61],[-20,-3],[-26,34],[-33,23],[-59,11],[-24,-29],[-32,-47],[-27,-28],[-17,-4],[-15,12],[-18,6],[-15,1],[-32,42],[-16,32],[-11,30],[-18,21],[-21,17],[-15,27],[-7,34],[-12,43],[-15,39],[-48,70],[-15,41],[-10,41]],[[57611,54786],[-19,44],[-21,60],[-7,87],[-1,70],[-4,32],[-9,33],[-11,27],[-16,31],[-40,45],[-40,52],[-20,31],[-36,11],[-23,30],[-18,65],[-8,53],[-18,41],[-8,29],[-5,34],[15,104],[-21,37],[-32,47],[-23,52],[-14,48],[-41,63],[-90,95],[-51,60],[-29,54],[-24,53],[-3,22],[16,53],[3,43],[-13,48],[-54,91],[-43,99],[-32,31],[-78,28],[-23,11],[-23,19],[-23,45],[-8,53],[11,84],[-7,26],[-13,7]],[[56707,56834],[4,18],[14,41],[24,27],[65,42],[3,16],[2,53],[5,26],[22,73],[3,29],[1,63],[3,29],[7,21],[17,37],[6,22],[3,48],[-2,94],[9,38],[41,86],[11,38],[3,34],[0,35],[2,35],[12,33],[11,11],[30,10],[20,-7],[143,59],[16,-8],[8,-35],[-1,-55],[3,-27],[7,-19],[23,-27],[15,-44],[9,-16],[23,-31],[106,-253],[30,-24],[29,9],[57,52],[29,14],[202,-15],[22,8],[1,-2],[31,-127],[15,-29],[221,-1],[-4,36],[2,40],[26,52],[13,26],[6,9],[34,38],[33,25],[64,29],[24,46],[13,42],[0,82],[9,14],[15,19],[74,74],[13,16],[131,-172],[73,-136],[5,-7],[3,-2],[4,4],[4,7],[5,4],[3,2],[32,1],[59,7],[20,16],[119,243],[31,78],[8,16],[17,55],[18,95],[4,11],[131,227],[4,18],[1,15],[-19,76],[-5,39],[0,60],[3,93],[-1,59],[0,7],[-2,9],[-1,3],[-73,168],[185,2],[0,14],[0,7],[0,7],[-4,20],[-2,26],[0,8],[0,7],[1,14],[0,7],[0,4],[0,3],[0,3],[1,3],[132,-4],[-1,-47],[-16,-112],[0,-66],[-4,-77],[-1,-6],[-3,-16],[-4,-10],[-3,-9],[-1,-3],[-2,-6],[0,-8],[28,-427],[-1,-11],[-1,-7],[-8,-27],[-1,-9],[-1,-6],[3,-5],[61,-46],[3,-3],[3,-4],[22,-55],[120,-202],[4,-10],[12,-64],[2,-10],[0,-15],[0,-12],[-3,-38],[1,-17],[2,-12],[2,-13],[0,-4],[-1,-3],[0,-6],[-18,-74],[-6,-52],[-2,-44],[1,-25],[2,-17],[1,-4],[1,-2],[1,-2],[1,-1],[51,0],[1,0]],[[59466,57293],[-1,-24],[2,-116],[2,-102],[3,-167],[0,-43],[-2,-55],[-6,-21],[-15,-31],[-18,-28],[-47,-7],[-39,1],[-27,6],[-38,3],[-36,-6],[-13,-24],[-19,-83],[-28,-122],[-14,-51],[-4,-30],[4,-18],[19,-26],[40,-36],[46,-21],[34,-9],[24,-10],[18,-12],[66,-93],[21,-43],[12,-38],[2,-41],[10,-41],[38,-81],[21,-47],[57,-61],[22,-68],[21,-33],[20,-36],[11,-53],[25,-154],[16,-81],[17,-66],[7,-108],[13,-48],[14,-58],[23,-53],[25,-41],[4,-11]],[[59796,55006],[-51,-104],[-57,-116],[-66,-135],[-73,-147],[-56,-116],[-56,-114]],[[56707,56834],[-28,15],[-35,11],[-67,13],[-27,19],[-12,29],[4,73],[-7,16],[-11,13],[-7,32],[1,38],[36,85],[7,45],[6,158],[4,55],[-3,65],[-28,119],[-25,83],[-40,123],[-16,41],[-81,169],[-9,25],[-20,72]],[[56349,58133],[10,63],[12,94],[1,43],[-5,45],[-21,33],[-18,4],[-8,17],[-16,25],[-15,19],[-14,37],[-10,52],[7,184],[-5,25],[-20,7],[-5,13],[1,36],[-12,105],[-12,87],[7,48],[-18,66],[-33,28],[-31,-9],[-33,-13],[-20,4],[-14,12],[-10,24],[-5,28],[5,43],[18,79],[23,64],[46,59],[13,31],[7,35],[1,40],[-3,42],[-5,38],[-14,51],[-13,60],[0,40],[6,29],[13,35],[24,39],[6,8],[16,21],[13,15],[34,42],[8,19],[-3,24],[-8,20],[-14,27],[-2,33],[-4,57],[-7,37],[-5,26],[9,20],[14,28],[18,17],[28,15],[11,19],[3,38],[-1,37],[10,27],[14,57],[10,27],[18,30],[19,38],[8,43],[2,43],[-10,127],[21,54],[27,44],[38,-3],[60,9],[40,19],[29,-1],[66,-24],[5,6],[2,5],[3,34],[0,85],[0,257],[0,257],[0,257],[0,257],[0,257],[0,257],[0,256],[0,257]],[[56661,63073],[0,72],[0,72],[0,72],[0,72],[68,0],[69,0],[68,0],[69,0],[1,1],[0,1],[1,1],[1,1],[0,287],[0,287],[0,287],[0,287]],[[56938,64513],[107,0],[106,0],[106,0],[106,0],[106,0],[106,0],[106,0],[106,0],[106,0],[107,0],[106,0],[106,0],[106,0],[106,0],[106,-1],[106,0],[33,0],[14,5],[27,107],[12,8],[17,-6],[7,-25],[-6,-37],[-9,-51],[52,0],[91,0],[91,0],[92,0],[91,0],[91,0],[91,0],[91,0],[91,0],[91,0],[92,0],[91,0],[91,0],[91,0],[91,0],[91,0],[91,1]],[[60241,64514],[4,-132],[12,-105],[43,-150],[36,-81],[13,-44],[1,-21],[-1,-19],[-11,22],[-19,15],[-3,-70],[5,-50],[4,-94],[15,-101],[-11,-93],[2,-158],[19,-190],[-4,-120],[32,-283],[30,-156],[17,-39],[19,-20],[36,-14],[53,-79],[43,-85],[15,-44],[20,-48],[14,9],[9,12],[13,-39],[67,-84],[10,-39]],[[60724,62214],[-24,-38],[-28,-66],[-7,-26],[-3,-16],[-3,-20],[-8,-19],[-16,-27],[-6,-12],[-4,-18],[-9,-12],[-11,-1],[-9,-8],[-14,-12],[-20,6],[-21,-12],[-8,-14],[-16,-13],[-17,-3],[-5,-4],[-16,-22],[-19,-30],[-23,-19],[-8,-6],[-10,-21],[-16,-103],[-12,-27],[-19,-3],[-26,0],[-22,-9],[-30,12],[-14,-2],[-4,-22],[-6,-89],[1,-38],[-12,-45],[-13,-56],[5,-95],[2,-94],[-24,-142],[-4,-32],[-24,-113],[-13,-41],[-31,-210],[-13,-65],[-26,-68],[6,-110],[6,-118],[6,-110],[9,-166]],[[60145,60055],[-22,-155],[1,-84],[-16,-124],[-12,-58],[-11,-34],[-10,-35],[-17,-78],[-14,-102],[-7,-105],[0,-61],[-3,-28],[-5,-17],[-33,-12],[-46,-12],[-25,-14],[-17,-22],[-21,-49],[-40,-137],[-22,-83],[-33,-115],[-39,-81],[-8,-39],[-7,-73],[-14,-116],[-13,-83],[2,-66],[-12,-115],[2,-56],[-14,-31],[-18,-30],[-13,-7],[-27,34],[-20,34],[-8,9],[-18,-21],[-21,-32],[-25,-75],[-19,-75],[11,-159],[-1,-35],[-5,-38],[-30,-119],[-7,-37],[-11,-72],[-11,-124],[0,-30]],[[72213,57390],[-17,-6],[-14,38],[-3,17],[3,11],[4,6],[5,-2],[6,-36],[16,-28]],[[72187,57056],[8,-43],[-23,29],[-15,25],[-6,20],[32,-22],[4,-9]],[[72217,57495],[26,-3],[29,2],[20,-8],[34,-89],[93,-159],[51,-162],[4,-35],[7,-30],[12,-9],[11,-14],[50,-156],[6,-31],[-1,-34],[3,-25],[14,-13],[16,-6],[11,-24],[14,-124],[0,-39],[3,-17],[64,-193],[4,-24],[-1,-18],[2,-15],[12,-34],[20,-92],[9,-21],[12,-81],[1,-154],[-4,-69],[-12,-84],[-14,-81],[-16,-59],[-21,-50],[-71,-106],[-21,-22],[-93,-66],[-68,-63],[-64,-17],[-63,34],[-48,83],[-24,122],[-17,127],[-25,141],[-18,435],[-9,122],[-15,155],[2,67],[10,64],[0,-141],[9,-17],[7,18],[7,146],[5,62],[25,161],[1,29],[-5,61],[1,30],[38,113],[9,66],[5,67],[-2,73],[-7,72],[31,-23],[17,-25],[17,-17],[14,9],[16,0],[-11,39],[-36,36],[-59,22],[-18,29],[-7,25],[3,29],[5,11]],[[50442,74119],[-6,-7],[-18,7],[-28,0],[-1,23],[4,16],[5,17],[17,-33],[27,-6],[0,-17]],[[50873,74763],[27,-19],[28,17],[15,-5],[15,-9],[3,-37],[-13,-41],[-18,-41],[-16,-45],[-13,-52],[-25,-31],[-23,-18],[-48,38],[-28,10],[-8,14],[-7,58],[-12,18],[-19,8],[-16,-14],[-21,-31],[-12,31],[-17,5],[-7,19],[0,23],[115,139],[33,31],[71,36],[11,-5],[-9,-22],[0,-9],[9,-10],[-2,-17],[-9,-14],[-4,-27]],[[51192,74793],[-5,-7],[-85,67],[-28,7],[-7,10],[1,35],[2,15],[57,7],[46,-24],[25,-67],[2,-11],[-8,-32]],[[50401,74261],[-10,-35],[-42,12],[-10,15],[9,40],[13,5],[0,28],[13,29],[60,23],[14,-20],[3,-28],[-36,-61],[-14,-8]],[[49501,76847],[1,-20],[10,-28],[12,-10],[24,-14],[18,-2],[25,-7],[17,-16],[1,-24],[-5,-28],[-10,-25],[-6,-20],[6,-11],[9,-9],[9,-2],[7,3],[5,15],[9,19],[5,2],[0,-10],[4,-13],[31,-23],[67,-41],[26,-1],[22,-5],[6,-17],[43,-64],[10,2],[19,-1],[23,5],[16,12],[11,-2],[12,-13],[14,-10],[19,-21],[16,-26],[11,-9],[67,18],[15,-16],[16,0],[18,4],[39,-8],[32,2],[3,7],[3,57],[5,21],[7,5],[19,-4],[68,-34],[28,-21],[27,-17],[24,-2],[15,-11],[22,-55]],[[50396,76379],[-3,-27],[1,-10],[3,-19],[-1,-21],[6,-14],[10,-2],[14,5],[14,8],[26,23],[7,4]],[[50473,76326],[43,-27],[19,-17],[7,-20],[9,-19],[13,-3],[18,19],[29,20],[48,-18],[54,-26],[23,-3],[1,13],[4,18],[9,8],[13,3],[19,9],[21,16],[21,6],[23,-11],[28,-10],[17,0]],[[50892,76284],[7,-36],[14,-14],[5,-31],[-24,-17],[-15,-2],[-4,-54],[6,-16],[14,-14],[4,-16],[3,-80],[-28,-48],[-40,-54],[-193,-173],[-46,-84],[-17,-19],[-143,-53],[-101,-57],[-48,-20],[-60,-98],[-28,-40],[23,-11],[26,-47],[-9,-21],[-38,-32],[-17,-10],[-9,5],[-9,-4],[-64,-170],[-58,-123],[-32,-53],[-32,-79],[-70,-206],[-1,-59],[35,-204],[19,-54],[28,-45],[53,-38],[12,-38],[-18,-36],[-52,-64],[-91,-86],[-39,-68],[-8,-66],[-27,-30],[-10,-92],[-16,-61],[-4,-20],[-17,-47],[-2,-33],[28,-47],[-14,-20],[-14,-9],[-32,-5],[-108,-6],[-87,-100],[-44,-89],[-39,-165],[-48,-98],[-21,-18],[-33,43],[-41,7],[-40,-15],[-20,-33],[-33,-19],[-32,16],[-68,9],[-31,-2],[-48,-27],[-41,18],[-69,9],[-150,-21],[-18,-11],[-19,-41],[-48,-70],[-72,-3],[-66,-45],[-16,-29],[-28,-79],[-9,-58],[-5,-1],[-7,14],[-11,-4],[-5,-45],[-25,-20],[-20,-7],[-51,36],[-42,54],[-22,3],[-36,84],[-16,54],[-11,57],[2,22],[-3,19],[-32,23],[-8,53],[24,68],[19,30],[12,8],[-29,-3],[-21,-44],[-27,71],[-109,138],[7,31],[-1,18],[-18,-37],[-13,-10],[-56,6],[-64,-17]],[[47942,73259],[-17,144],[-8,55],[-2,35],[17,82],[18,34],[24,69],[30,58],[31,13],[14,9],[11,44],[7,38],[-5,4],[-36,-8],[-66,159],[2,26],[8,38],[6,47],[1,38],[17,32],[26,32],[22,46],[11,46],[3,41],[-13,29],[-36,16],[-37,117],[-8,73],[-8,8],[-23,33],[-22,62],[-3,10],[23,11],[93,1],[20,13],[3,5],[17,49],[18,80],[4,49],[-6,20],[-31,49],[-1,15],[5,23],[18,25],[25,28],[14,25],[-3,19],[-8,20],[-1,18],[5,23],[1,79],[4,20],[-5,71],[-6,58],[-20,75],[4,17],[9,14],[29,26],[24,62],[35,51],[45,41],[31,46],[13,35],[9,10],[-3,16],[-6,24],[-18,23],[-23,13],[-26,0],[-16,4],[-4,19],[1,49],[-1,49],[-5,22],[-12,17],[-24,-5],[-20,14],[-16,3],[-9,-10],[-45,3],[-19,8],[-14,9],[-8,-5],[-5,-10],[-1,-15],[-3,-19],[-17,-18],[-37,-18],[-30,2],[-28,12],[-9,10],[-13,8],[-57,-10],[-7,7],[-19,-18],[-29,-22],[-16,-1],[-6,4],[-2,10],[-12,34],[3,18],[23,53],[-2,12],[-10,17],[-8,25],[-3,12],[-15,2],[-15,-13],[-60,-26],[-14,-9],[-26,-26],[-27,-39]],[[47561,76002],[-20,-8],[-8,12],[-2,91],[32,60],[22,37],[-10,7],[-24,-1],[1,29],[12,13],[11,31],[-13,14],[-10,20],[0,53],[3,22],[-3,23],[-49,-32],[-13,5],[0,40],[27,60],[3,18],[-32,9],[-24,30],[-14,26],[-16,38],[0,34],[16,79],[23,24],[20,14],[42,55],[57,-10],[36,11],[32,28],[19,7],[29,24],[-1,33],[-10,25],[9,23],[33,29],[37,37],[42,7],[43,34],[29,-22],[25,7],[29,-25],[38,-58],[56,-24],[45,19],[78,3],[40,-7],[70,14],[40,-5],[64,29],[51,-36],[97,-17],[58,-30],[162,-49],[59,-1],[82,28],[35,21],[32,-13],[47,24],[23,-4],[29,-35],[104,-46],[27,39],[20,9],[74,-24],[75,-49],[39,-3],[57,13],[46,32],[9,4]],[[45462,68190],[-23,-131],[-22,-52],[-13,-17],[-32,-14],[-38,82],[-19,83],[-11,26],[17,21],[25,-3],[54,17],[11,7],[55,84],[55,10],[1,-27],[-60,-86]],[[46190,68497],[-19,-38],[-21,13],[10,83],[9,25],[39,36],[32,15],[9,38],[11,15],[11,-23],[-9,-26],[-6,-84],[-22,-26],[-44,-28]],[[46056,68069],[-38,-65],[-38,15],[-6,11],[38,16],[34,50],[22,110],[35,121],[7,52],[13,20],[19,2],[8,-4],[9,-27],[0,-61],[-10,-102],[-18,-89],[-75,-49]],[[45722,68057],[-2,-45],[6,-44],[-1,-69],[-13,-36],[-35,-37],[-26,6],[-15,15],[-27,60],[-1,61],[25,41],[10,51],[64,-9],[6,9],[4,3],[5,-6]],[[45226,67984],[-11,-5],[-14,15],[-14,45],[10,34],[8,16],[13,-3],[23,-25],[8,-25],[0,-16],[-23,-36]],[[45031,67862],[-27,-94],[-34,35],[-8,12],[-7,19],[33,4],[33,47],[10,-23]],[[45046,68256],[-7,-5],[-7,46],[-33,111],[20,50],[37,1],[15,-34],[5,-36],[-7,-21],[2,-42],[-4,-27],[-21,-43]],[[85175,73606],[9,11],[0,16],[0,51],[25,36],[34,73],[17,40],[20,38],[22,25],[22,11],[35,5],[66,-4],[13,4],[46,4],[11,-7],[33,-4],[38,5],[18,11],[18,18],[15,33],[15,62],[17,48],[10,9]],[[85659,74091],[68,-258],[64,-166],[56,-121],[79,-232],[23,-124],[2,-77],[13,-106],[-11,-60],[3,-96],[-5,-49],[-9,-36],[-1,-70],[3,-37],[1,-49],[6,-19],[9,-7],[14,18],[18,7],[-3,-59],[-22,-150],[-18,-109],[-25,-95],[-32,-87],[-38,-34],[-27,-13],[-51,-4],[-43,15],[-36,-11],[-15,-18],[-11,-31],[8,-48],[-1,-36],[-16,3],[-31,21],[-34,2],[-16,11],[-16,51],[-17,-2],[-29,-31],[-44,-6],[-15,-17],[-5,-21],[6,-26],[22,-35],[-7,-36],[-23,-18],[-19,44],[-12,43],[-13,2],[-20,-12],[-4,-46],[10,-32],[15,-36],[-22,-42],[-5,-30],[-16,-21],[-42,47],[6,34],[18,33],[3,34],[-6,20],[-61,-86],[-37,-96],[-19,7],[-9,25],[-11,10],[-40,-63],[-8,-49],[-14,-2],[-7,21],[0,45],[-7,37],[-41,56],[-19,48],[10,27],[34,-15],[28,2],[-6,23],[-9,11],[19,12],[15,27],[-13,7],[-19,-15],[-16,7],[-6,63],[-20,65],[-10,63],[19,36],[10,56],[18,81],[9,27],[25,19],[9,21],[-14,11],[-22,9],[1,24],[15,12],[16,26],[32,32],[10,59],[-9,15],[-20,14],[5,30],[8,23],[-3,14],[-24,38],[-16,36],[5,40],[-4,60],[2,51],[-1,28],[-11,62],[-5,63],[-16,-10],[-12,-15],[-44,22],[-14,1],[-5,47],[15,57],[38,50],[21,6],[16,22],[26,7],[30,-34],[27,-7],[15,-59],[9,-12],[2,22],[22,25],[5,19],[-4,11],[-25,10],[-23,73],[-3,32],[-9,20],[13,59],[-26,67],[-13,21],[2,59],[-14,39],[-8,21],[-4,36],[4,16],[12,6],[3,15]],[[85761,71888],[-27,-36],[-35,48],[-8,26],[26,39],[23,44],[15,3],[6,-124]],[[85573,71892],[-3,-56],[-20,-3],[-11,36],[-13,-17],[-6,-1],[-10,45],[-2,36],[23,26],[14,-16],[20,-8],[8,-42]],[[85064,71641],[-18,-9],[-10,20],[-7,6],[4,26],[29,51],[6,17],[27,-10],[10,-27],[-13,-42],[-28,-32]],[[85144,73580],[-2,-76],[-15,4],[-10,7],[-5,15],[-10,71],[11,29],[23,-23],[8,-27]],[[85208,71626],[5,-27],[-22,5],[-12,26],[1,23],[14,3],[14,-30]],[[85499,71782],[-3,-18],[-14,27],[14,30],[3,-39]],[[85115,72864],[-4,-38],[-18,25],[-5,82],[19,-24],[8,-45]],[[85047,71849],[-4,-14],[-12,4],[-12,40],[-5,31],[-13,18],[20,27],[25,-49],[1,-57]],[[86365,73432],[-13,-18],[-15,18],[-2,18],[8,15],[18,10],[9,-14],[-5,-29]],[[85090,70981],[-13,-13],[-11,8],[-3,6],[-14,33],[-4,17],[10,32],[38,53],[99,51],[18,2],[39,-21],[9,-42],[-7,-35],[-9,-24],[-46,-40],[-35,-19],[-71,-8]],[[58690,38938],[2,-30],[2,-14],[13,-80],[20,-119],[13,-111],[18,-151],[0,-84],[4,-33],[16,-41],[20,-70],[7,-39],[7,-30],[21,-56],[16,-85],[14,-113],[12,-54],[4,-27],[5,-49],[0,-102],[0,-118],[0,-133],[1,-109],[-2,-55],[1,-157],[-18,-82],[2,-64],[6,-42]],[[58920,36382],[24,4],[42,-17],[35,2],[31,2],[52,3],[30,0]],[[59134,36376],[-10,-133],[-40,-208],[-13,-95],[-34,-341],[-44,-172],[-25,-71],[-72,-126],[-20,-25],[-18,-17],[-31,-14],[-123,-254],[-46,-123],[-41,-178],[-40,-98],[-60,-210],[-53,-161],[-51,-147],[-88,-203],[-39,-59],[-27,-26],[-70,-118],[-99,-189],[-75,-168],[-113,-190],[-65,-84],[-99,-164],[-27,-24],[-111,-152],[-79,-93],[-129,-107],[-51,-30],[-122,28],[-51,-15],[-43,-65],[-4,-93],[-18,-14],[-27,4],[-85,39],[-46,-7],[-27,-50],[-22,-63],[-64,-3],[-115,65],[-135,40],[-31,4],[-65,-48],[-23,-7],[-95,10],[-53,31],[-51,0],[-38,-26],[-47,-8],[-127,-175],[-66,0],[-56,-21],[-28,1],[-53,24],[-19,-1],[-30,-11],[-30,-31],[-68,-13],[-26,-27],[-115,-159],[-26,6],[-22,11],[-59,1],[-68,86],[-26,-6],[7,26],[2,45],[-14,32],[-10,14],[-26,-3],[-14,39],[-41,3],[-14,-9],[-20,-2],[-1,39],[1,24],[-1,38],[-5,46],[-16,15],[-12,6],[-28,-3],[-20,-5],[-10,-14],[-10,-33],[0,-103],[-15,29],[-16,62],[-5,66],[6,78],[31,29],[-3,53],[-6,45],[-35,117],[-13,54],[-29,36],[-23,87],[-23,32],[-9,61],[-22,49],[-8,77],[12,44],[20,24],[20,-38],[24,15],[35,56],[21,85],[1,135],[-5,85],[-28,219],[-13,50],[-63,157],[-72,210],[-92,330],[-44,199],[-66,401],[-59,227],[-72,212],[-9,14]],[[54568,35358],[11,26],[39,49],[17,13],[10,-6],[9,13],[9,33],[2,31],[4,44],[9,27],[9,52],[16,34],[34,22],[26,-30],[11,-29],[5,-38],[11,-18],[18,1],[13,-24],[8,-48],[-2,-35],[-10,-22],[1,-28],[14,-35],[5,-34],[9,-45],[47,-25],[23,-15],[39,-5],[38,-20],[35,-34],[58,-9],[80,18],[66,-8],[52,-34],[38,-6],[24,21],[10,31],[-3,41],[11,25],[26,11],[21,31],[16,50],[37,40],[57,32],[29,-1],[0,81],[0,256],[0,256],[0,257],[0,256],[0,256],[0,256],[0,256],[0,242]],[[55550,37570],[13,-17],[88,-128],[24,-68],[11,-43],[38,-155],[28,-140],[23,-105],[2,-48],[3,-47],[4,-23],[-3,-25],[-16,-57],[-16,-44],[-20,-60],[-2,-79],[6,-93],[12,-46],[16,-15],[36,23],[23,-7],[32,-18],[107,11],[13,-6],[40,-6],[14,7],[12,20],[14,56],[12,18],[23,9],[27,15],[22,33],[35,110],[70,98],[22,23],[14,26],[11,36],[25,123],[19,103],[6,48],[17,79],[20,50],[19,27],[10,7],[26,13],[32,13],[34,-14],[37,-31],[42,-51],[42,-64],[20,-32],[21,-15],[37,-5],[25,1],[38,-63],[19,-4],[44,-19],[53,-20],[34,2],[36,34],[26,2],[33,-3],[37,10],[27,14],[21,30],[18,33],[21,97],[12,78],[19,89],[23,122],[8,85],[8,23],[33,26],[28,18],[74,33],[15,18],[14,40],[32,68],[40,57],[21,32],[37,275],[5,34],[27,73],[17,31],[11,0],[15,20],[20,37],[24,24],[28,9],[18,25],[8,41],[14,20],[21,-1],[11,13],[3,28],[12,24],[22,19],[11,23],[1,27],[26,66],[51,103],[47,58],[45,12],[42,21],[40,32],[30,49],[19,67],[32,38],[65,11]],[[57982,34503],[45,36],[21,23],[15,18],[19,28],[7,68],[5,58],[15,28],[15,19],[13,30],[15,72],[10,70],[2,29],[-6,30],[-10,31],[-9,43],[-12,6],[-23,24],[-33,48],[-29,42],[-27,61],[-11,9],[-26,42],[-12,23],[-8,28],[-7,10],[-12,-8],[-31,-12],[-66,-49],[-41,-46],[-35,-53],[-36,-21],[-26,-18],[-21,-61],[-20,-58],[-17,-51],[-10,-24],[-9,-15],[-10,-33],[-18,-55],[-18,-37],[-24,-20],[-31,-26],[-11,-15],[-1,-22],[11,-52],[11,-49],[17,-59],[13,-42],[20,-52],[12,-31],[-1,-51],[4,-18],[6,-21],[6,-6],[6,-7],[17,-15],[4,-10],[12,-17],[11,-32],[22,-44],[24,-33],[41,-14],[32,-10],[11,6],[11,27],[9,34],[3,43],[10,23],[39,111],[21,41],[13,2],[17,8],[21,4],[16,-4],[4,2],[25,14]],[[60515,24801],[-12,-11],[-56,10],[-6,22],[17,34],[9,14],[29,-7],[24,-28],[4,-9],[-9,-25]],[[61536,50866],[2,47],[-5,24],[-26,71],[-49,132],[-38,99],[-38,102],[0,82],[0,243],[-1,485],[-1,486],[-1,485],[0,243],[-1,99],[4,16],[44,89],[57,118],[76,224],[41,122],[34,101]],[[61634,54134],[9,31],[30,61],[56,37],[36,6],[121,46],[18,19],[11,21],[10,48],[23,68],[31,47],[58,61],[56,52],[13,8],[68,33],[17,11],[28,11],[10,1],[95,-12],[74,-9],[77,-9],[8,7],[53,121],[85,192],[54,123],[84,189],[64,137],[72,151],[69,139],[83,166],[52,105],[82,162],[77,155],[69,137]],[[63327,56449],[41,130],[40,127],[44,136],[52,165],[49,154],[40,126],[0,65],[0,140],[0,96],[0,265],[0,161],[0,155],[0,159]],[[63593,58328],[35,7],[90,41],[71,63],[130,45],[99,114],[17,55],[30,70],[43,23],[111,-82],[18,-6],[-7,-50],[-3,-50],[-23,-88],[-15,-98],[11,-149],[5,-242],[-3,-35],[-7,-34],[-3,-28],[-12,-9],[-5,-16],[9,-6],[34,26],[0,29],[2,14],[28,-32],[21,-13],[5,-31],[-1,-20],[-32,9],[-17,16],[-48,-26],[-29,-29],[-9,-47],[-7,-190],[-11,-123],[-3,-162],[-38,-108],[-14,-76],[-57,-152],[-31,-130],[-9,-64],[-51,-178],[-70,-137],[-25,-174],[-25,-110],[-28,-99],[-62,-177],[-31,-122],[-40,-213],[-12,-135],[-111,-391],[-115,-312],[-72,-263],[-129,-305],[-176,-393],[-230,-467],[-62,-95],[-252,-288],[-163,-241],[-83,-164],[-88,-143],[-69,-136],[-210,-460],[-22,-43],[-20,-41],[-27,-77],[-18,-31],[-50,-131],[-31,-69],[-36,-67],[-14,-47],[-11,-55],[-12,-31],[-31,-130],[-28,-86],[-28,-67]],[[63327,56449],[-95,0],[-92,0],[-91,0],[-16,17],[-77,53],[-97,67],[-120,84],[-85,59],[-92,62],[-92,63],[-73,50],[-90,61],[-79,54],[-11,13],[-44,82],[-57,107],[-11,2],[-27,23],[-25,58],[-25,74],[-23,93],[-11,63],[-31,26],[-15,50],[-28,74],[-20,36],[-7,31],[-9,65],[-17,70],[-15,44],[-4,19],[1,12],[29,95],[13,34],[15,33],[12,33],[4,23]],[[61922,58179],[35,112],[31,99],[24,77]],[[62012,58467],[54,-88],[53,-180],[62,-144],[85,-135],[33,-45],[30,-24],[155,4],[109,122],[100,89],[33,18],[58,-24],[64,-7],[57,-27],[29,7],[114,103],[71,101],[48,42],[20,1],[66,-36],[85,15],[117,87],[37,18],[28,1],[64,-39],[9,2]],[[94357,46942],[-13,-8],[-20,21],[-9,19],[4,30],[12,12],[13,-20],[1,-21],[12,-33]],[[96368,45123],[-24,-9],[-10,2],[-16,50],[12,11],[18,-4],[5,-29],[15,-21]],[[96147,45646],[-22,-10],[-7,3],[-17,-6],[-18,-41],[-13,6],[-10,-2],[-8,34],[0,17],[13,-3],[6,33],[14,17],[32,7],[28,-10],[10,-8],[-9,-30],[1,-7]],[[94604,45047],[-20,-20],[-17,10],[-14,15],[-11,44],[-23,28],[-34,11],[-14,19],[-3,10],[-24,8],[-6,24],[2,25],[3,13],[22,-12],[103,-117],[25,-36],[11,-22]],[[94873,46298],[4,-62],[-2,-21],[-21,45],[-10,-16],[-9,22],[1,46],[1,50],[-4,38],[-11,55],[12,-9],[39,-148]],[[94218,46587],[-4,-1],[-13,7],[-16,2],[-9,20],[11,29],[15,18],[6,-4],[7,-12],[14,-5],[2,-37],[-13,-17]],[[94490,46661],[16,-8],[8,1],[18,-31],[25,-46],[-10,-23],[-20,12],[-7,-5],[-2,3],[-4,23],[-22,23],[-19,2],[-3,27],[20,22]],[[93822,47095],[18,-47],[20,-105],[-4,-36],[-14,-3],[-4,-22],[-20,51],[-26,14],[-19,31],[-6,62],[-2,39],[-15,7],[-42,-10],[-14,-34],[-19,11],[-4,30],[3,29],[26,29],[5,38],[26,64],[15,11],[31,-23],[3,-92],[11,-30],[31,-14]],[[93944,46761],[-6,-2],[-7,23],[15,62],[8,-50],[4,-19],[-14,-14]],[[93918,46840],[-27,-45],[-20,15],[-17,39],[6,47],[3,13],[8,2],[8,10],[9,21],[29,-17],[8,-11],[-18,-29],[6,-9],[4,-14],[1,-22]],[[93718,46823],[0,-8],[-15,16],[-34,78],[6,26],[31,50],[10,7],[8,-31],[-7,-46],[-10,-12],[-5,-43],[16,-37]],[[93523,47279],[-5,-8],[-9,31],[-7,10],[0,34],[-28,57],[-2,39],[16,38],[22,-22],[22,-48],[25,-16],[-5,-32],[-23,-57],[-6,-26]],[[93500,47136],[-3,-15],[-15,71],[1,36],[3,23],[5,7],[12,-79],[-3,-43]],[[93658,47172],[-6,-9],[-30,4],[-23,59],[0,44],[18,40],[22,8],[12,-16],[11,-34],[4,-43],[-3,-38],[-5,-15]],[[93288,47754],[-28,-13],[-17,18],[7,44],[10,23],[35,-41],[-7,-31]],[[93789,46797],[0,-20],[-16,6],[-36,31],[-1,14],[20,5],[15,-4],[12,-18],[6,-14]],[[94374,46501],[61,-92],[27,8],[80,-2],[47,-66],[28,-30],[16,-59],[19,-14],[12,-30],[7,-55],[-5,-9],[-24,-20],[-18,-9],[-47,20],[-44,42],[-89,5],[-41,12],[-14,17],[-13,21],[-21,51],[-17,61],[-2,35],[-2,68],[5,24],[17,25],[18,-3]],[[94410,46927],[0,-14],[-37,48],[-28,59],[-81,64],[-17,33],[-15,4],[-41,54],[-41,36],[-25,47],[-6,19],[-15,11],[-25,51],[-25,34],[-9,62],[-24,43],[-6,19],[77,-35],[36,-68],[30,-38],[11,-28],[27,-38],[25,-4],[24,-38],[23,-10],[18,-20],[114,-172],[-14,-46],[15,-33],[9,-40]],[[93745,47620],[9,-20],[-21,-35],[-29,19],[-6,19],[0,11],[-20,-7],[-40,17],[-54,82],[-58,156],[-56,86],[-11,26],[-1,45],[8,17],[34,-19],[45,-71],[74,-73],[20,-38],[12,-90],[13,-27],[40,-69],[21,-16],[11,-3],[9,-10]],[[94652,47053],[69,-171],[-3,-31],[-9,-19],[-3,-58],[8,-22],[19,-10],[32,-62],[13,-75],[1,-23],[14,-34],[0,-72],[30,-100],[3,-48],[-3,-22],[-12,13],[-37,113],[-41,49],[-5,21],[-42,66],[-28,111],[-30,198],[14,47],[-34,96],[1,25],[15,-6],[10,2],[5,11],[13,1]],[[94920,45859],[35,-34],[20,6],[30,-23],[23,13],[15,-30],[36,-118],[0,-38],[24,-27],[-20,-5],[-28,14],[-22,-10],[-22,23],[-38,12],[-33,27],[-69,87],[0,43],[-11,21],[-3,54],[-25,17],[-29,3],[-2,26],[5,45],[21,-1],[26,-19],[50,-65],[12,-12],[5,-9]],[[56147,79726],[-6,-7],[-95,-32],[-13,5],[-13,18],[-7,14],[-5,9],[-8,26],[-11,19],[-16,15],[-15,17],[-19,1],[-52,-25],[-36,-2],[-23,8],[-32,15],[-62,2],[-43,-13],[-4,-18],[-39,-115],[-57,-43],[-50,-43],[-14,-9],[-25,14],[-28,25],[-23,14],[-17,-6],[-19,-29],[-8,-30],[-56,-22],[-98,-12],[-34,-29],[-11,-36],[-1,-26],[9,-23],[-11,-27],[-4,-11],[-69,-6],[-92,-8],[-55,2],[-52,2],[-35,23],[-43,45],[-45,59],[-5,2],[-6,6],[-29,4],[-7,-3]],[[54763,79496],[-17,19],[-5,25],[-27,66],[-30,109],[0,32],[11,35],[11,28],[1,21],[2,6]],[[54709,79837],[9,45],[21,60],[20,35],[15,11],[30,-10],[52,-9],[39,8],[37,27],[20,23],[18,25],[5,16],[8,7],[31,14],[9,17],[4,31],[3,35],[6,26],[8,19],[57,45],[5,16],[9,16],[17,17],[16,25],[17,15],[22,-1],[21,3],[16,9],[7,1]],[[55231,80363],[29,-8],[5,-28],[3,-30],[51,2],[28,64],[14,8],[24,22],[15,20],[10,-13],[16,-41],[16,-33],[9,-13],[1,-10],[10,-6],[18,-4],[12,-10],[4,-31],[0,-28],[-6,-20],[-3,-18],[13,-7],[19,7],[13,10],[39,-23],[14,51],[15,27],[21,12],[18,16],[17,11],[11,0],[5,4],[15,-1],[16,-5],[23,6],[31,-13],[20,-23],[19,-8],[22,1],[15,13],[22,45],[16,0],[24,7],[35,-1],[80,-9],[21,-18],[49,-22],[22,-25],[9,-31],[5,-21],[51,-32],[75,-42],[18,-5]],[[54587,78628],[-24,14],[-30,6],[-5,-7],[-12,-8],[-6,-14],[4,-55],[-7,-9],[-34,5],[-11,-6],[-18,-38],[-19,-16],[-23,-11],[-18,-14],[-22,-12],[-19,-7],[-8,-17],[-4,-18],[1,-18],[19,-35],[3,-37],[-2,-46],[-5,-24],[-7,-16],[-48,-21],[-49,-38],[-1,-8],[22,-34],[1,-8],[-18,-19],[-2,-19],[2,-22],[10,-22],[3,-21],[-27,-14],[-36,5],[-43,28],[-16,-4],[-14,-15],[-15,7],[-17,17],[-23,36],[-12,23],[-4,23],[-7,4],[-9,-7],[-8,-29],[-22,-51],[-16,-14],[-24,3],[-34,-1],[-21,-5],[-26,19],[-6,-4],[0,-12],[-10,-19],[-15,-12],[-74,28],[-10,23]],[[53771,78062],[17,11],[23,30]],[[53811,78103],[15,-4],[19,7],[9,12],[-13,38],[-30,47],[-16,17],[-22,12],[-4,13],[12,73],[-4,11],[-25,-4],[-6,8],[-2,13],[2,17],[17,29],[19,25],[5,14],[-1,11],[-24,12],[-15,11],[-11,4],[-8,-6],[-6,7],[-6,21],[6,32],[21,30],[24,26],[21,20],[11,8],[6,33]],[[53805,78640],[12,-3],[25,-2],[27,-8],[25,-9],[22,-12],[47,-12],[42,-7],[13,-7],[10,1],[13,-10],[8,7],[5,13],[23,16],[22,21],[14,26],[9,21],[14,14],[16,5],[14,7],[60,10],[62,-8],[30,14],[24,26],[35,7],[2,0],[53,-19],[4,11],[2,5],[-1,55],[17,25],[16,11]],[[54470,78838],[53,-4],[7,-17],[2,-26],[5,-35],[9,-10],[5,-14],[-1,-24],[10,-18],[24,-49],[3,-13]],[[78880,52610],[-42,-38],[-47,34],[15,57],[32,13],[25,-18],[14,-13],[10,-16],[-7,-19]],[[47143,56730],[-1,-17],[-8,-83],[-12,-71],[-8,-17],[-36,-19],[-15,-31],[-13,-101],[-8,-79],[-12,-13],[-52,-114],[-34,-43],[-24,-38],[-22,-48],[-28,-47],[-31,-80],[-21,-82],[-15,-26]],[[46803,55821],[-11,23],[-52,82],[-54,55],[-116,91],[-39,25],[2,33],[13,59],[-22,69],[9,51],[-9,0],[-16,-31],[-36,9],[-23,44],[-19,15],[-9,22],[-12,115],[-9,52],[-17,32],[-36,8],[-15,69],[-19,54],[3,34],[16,-2],[13,-24],[20,-10],[25,58],[23,32],[5,28],[-3,15],[-14,-24],[-37,6],[-9,-21],[-17,-7],[-13,69],[1,40],[5,45],[38,7],[3,14],[-26,10],[-33,52],[-6,35]],[[46307,57055],[16,12],[16,-5],[13,-8],[15,13],[14,20],[8,25],[11,67],[35,22],[21,41],[20,64],[9,45],[8,22],[6,19],[3,22],[9,19],[10,47],[6,44],[20,20],[42,19],[38,-32],[61,27],[3,41],[56,1],[66,0],[55,1],[19,-11],[7,-30],[18,-47],[19,-33],[23,-72],[28,-84],[29,-75],[19,-41],[2,-14],[-1,-17],[-10,-38],[-8,-42],[1,-15],[6,-8],[31,-13],[2,-46],[1,-64],[14,-60],[15,-44],[-1,-16],[-35,-75],[-13,-74],[-7,-21],[-3,-17],[7,-8],[9,5],[14,-6],[13,-2],[17,27],[28,68],[10,8],[21,-6]],[[46520,56126],[-4,-15],[-18,37],[-96,56],[27,29],[66,9],[20,-17],[9,-15],[3,-27],[-7,-57]],[[65427,49139],[1,-53],[-13,18],[-4,34],[-18,26],[-9,24],[20,29],[23,-78]],[[56306,77325],[-10,-10],[-11,-15],[-7,-26],[-1,-42],[-36,-33],[-14,-7],[-6,-21],[-9,-62],[1,-47],[5,-23],[2,-20],[12,-23],[10,-37],[7,-48],[16,-37],[39,-37],[20,-21],[14,-31],[11,-27],[33,-38],[-3,-26],[-7,-26],[-7,-12],[-16,-33],[-16,-19],[-26,-59],[-41,-3],[-10,-5],[-16,-16],[-7,-29],[7,-23],[-1,-24],[-7,-46],[10,-50],[14,-23],[2,-13],[-2,-23],[-22,-47],[-6,-17],[-22,-9]],[[56206,76217],[-7,4],[-11,17],[-11,4],[-26,-19],[-26,-11],[-21,9],[-20,1],[-14,-8],[-11,-3],[-21,-21],[-33,-14],[-16,3]],[[55989,76179],[-6,19],[-6,27],[3,13],[22,21],[3,21],[31,99],[6,32],[0,11],[-8,7],[-17,0],[-76,40],[4,46],[-22,25],[-24,22],[-4,25],[-27,50],[-19,28],[-25,14],[-22,21],[-12,12],[-6,23],[0,14],[-7,14],[-10,-2],[-17,-18],[-22,-16],[-4,-12],[8,-28],[6,-17],[-3,-17],[-7,-21],[-41,-47],[-5,-16],[8,-26],[-5,-13],[-34,-17]],[[55651,76513],[1,14],[-3,23],[-19,25],[-28,19],[-63,65],[-23,9],[-22,7],[-30,32],[-16,5],[-18,22],[-38,76],[-32,41],[-22,20],[-6,21],[-2,20],[1,7]],[[55331,76919],[17,30],[13,4],[16,1],[11,-15],[15,-3],[8,19],[4,27],[-2,35],[-35,82],[-29,57],[-4,12],[7,11],[10,5],[11,-4],[29,-4],[28,5],[9,14],[0,18],[-10,18],[-32,46],[-26,41],[-29,32],[-23,12],[-6,16],[-3,18],[3,31],[1,40],[5,25],[20,47],[19,51],[12,48],[6,45],[-2,13],[-10,9],[-21,10],[-29,-9],[-25,-16],[-10,-1]],[[55279,77689],[-3,20],[4,9],[8,-1],[6,-4],[7,9],[4,27],[-10,94],[18,9],[1,13],[1,12],[19,-16],[27,0],[24,3],[4,9],[-1,14],[-5,10],[-8,9],[-6,13],[-16,5],[-50,34],[-24,36],[0,39],[7,21],[9,7],[-2,7],[-29,18],[-10,24],[9,32],[-15,64],[-15,40],[15,17],[2,24],[1,14]],[[55251,78301],[6,0],[25,16],[8,13],[6,16],[5,4],[17,-17],[17,-2],[19,11],[15,15],[17,12],[8,8],[10,14],[21,39],[23,8],[30,-10],[34,-4],[25,9],[63,-11],[13,-9],[9,-10]],[[55622,78403],[17,-34],[16,-43],[22,-20],[26,-24],[13,-17],[20,-52],[16,-25],[5,1],[5,7],[4,5],[4,-5],[0,-16],[1,-34],[-3,-38],[5,-35],[0,-11],[-3,-10],[0,-9],[6,-9],[21,-23],[20,-36],[22,-26],[22,-16],[13,-1],[22,-29],[43,-21],[14,-7],[9,-12],[7,-14],[0,-14],[-6,-7],[-10,-20],[-3,-25],[-7,-6],[-7,0],[-5,-8],[1,-10],[6,-10],[9,-9],[17,-9],[17,-14],[0,-10],[-4,-11],[-21,-5],[-16,-2],[-8,-4],[1,-21],[45,-21],[21,-20],[10,-26],[29,-17],[47,-8],[33,-27],[18,-45],[30,11],[42,67],[41,17],[40,-32],[22,-26],[4,-20],[-10,-9],[-22,4],[-19,-13],[-14,-29],[-2,-31],[10,-33],[14,-23],[19,-13],[9,-17],[2,-22],[4,-6]],[[46588,60373],[26,-93],[-5,-44],[-6,-65],[15,-47],[17,-31],[12,-28],[14,-39],[2,-77],[-2,-56],[9,-26],[7,-32],[-1,-26],[-5,-24],[-17,-31],[-3,-58],[27,-71],[17,-38],[0,-22],[5,-24],[13,-28],[8,7],[8,23],[4,15],[24,-7],[11,-7],[14,-46],[6,-30],[4,-39],[15,-48],[14,-34],[2,-21],[13,-28],[-8,-64],[1,-32],[-8,-85],[-2,-41],[0,-15],[19,-30],[-2,-43]],[[46836,58988],[-19,8],[-32,5],[-65,-23],[-23,9],[-43,-3],[-30,-12],[-39,-28],[-30,7],[-16,22],[-21,-1],[-24,11],[-26,22],[-23,10],[-26,40],[-11,7],[-9,-11],[-7,-13],[-7,-8],[-14,7],[-5,27],[5,26],[1,19],[-7,11],[-15,4],[-25,-1],[-40,9],[-9,5],[-90,6]],[[46186,59143],[-93,1],[-79,1],[-100,1],[-70,0],[-66,1],[-50,-53],[-55,-56],[-73,-31],[-85,12],[-27,-9],[-28,-25],[-21,-18],[-29,-11],[-37,9],[-16,-6]],[[45357,58959],[-9,26],[-11,42],[7,31],[23,20],[34,26],[19,-14],[10,0],[2,16],[-3,9],[-26,22],[-14,30],[-11,-17],[-10,-37],[-8,-10],[-12,-11],[-6,25],[-3,24],[5,19],[-2,104],[3,55],[-2,49]],[[45343,59368],[16,32],[16,20],[60,2],[57,1],[54,-1],[55,-1],[6,97],[17,8],[26,10],[49,12],[54,11],[12,19],[9,33],[6,28],[11,13],[15,-10],[20,-15],[21,-24],[23,-21],[16,-14],[38,-34],[65,-48],[53,-19],[65,35],[46,22],[6,42],[-7,41],[-35,37],[-47,-4],[-15,-10],[-22,-13],[-13,-4],[-22,8],[-28,33],[-18,32],[-25,15],[-29,16],[-47,66],[-25,12],[-23,4],[-45,-13],[-44,-36],[-23,-81],[-43,1],[-93,3],[-86,2],[-70,-6]],[[45399,59669],[-7,59],[-17,47],[-27,40],[-6,37],[9,33],[26,26],[6,19],[-13,-2],[-21,-18],[-14,0],[-1,51],[-23,66],[-26,112],[-30,46],[-24,91],[-26,35],[-24,16],[-20,-3],[-7,-42],[-25,60],[34,21],[73,75],[85,215],[76,253],[9,60]],[[45406,60966],[10,46],[6,103],[11,62],[10,12],[13,47],[15,83],[18,46],[19,9],[16,-4],[11,-17],[31,-10],[53,-4],[41,12],[29,29],[38,14],[47,1],[25,12],[3,24],[6,7],[10,-10],[9,4],[8,17],[9,1],[9,-14],[39,-5],[70,6],[65,-44],[60,-93],[31,-62],[1,-31],[10,-31],[18,-31],[16,-6],[15,20],[12,-3],[8,-24],[17,-5],[19,15],[14,-5],[2,-14],[3,-8],[9,-3],[13,-19],[17,-49],[14,-69],[11,-88],[14,-48],[18,-8],[10,-18],[2,-22],[5,-14],[9,-8],[15,5],[18,-30],[19,-65],[3,-29],[-3,-16],[1,-11],[12,-11],[12,-21],[10,-32],[21,-29],[32,-24],[23,-37],[15,-50],[29,-41],[6,-5]],[[60250,66464],[-7,0],[-20,39],[-11,29],[-12,19],[-53,39],[-8,25],[9,25],[5,-25],[10,-14],[44,-36],[49,-76],[9,-7],[-15,-18]],[[61663,61471],[21,-3],[-9,19],[-2,9],[10,26],[30,-55],[-1,-64],[-2,-15],[-8,14],[-6,13],[-2,15],[-8,16],[-30,-10],[-18,17],[-27,55],[-7,39],[11,8],[12,19],[7,31],[-7,32],[16,-5],[9,-33],[1,-75],[3,-16],[-5,-17],[12,-20]],[[61888,61273],[-3,46],[-16,68],[-1,49],[-8,48],[-14,37],[-26,38],[-3,53],[-19,52],[-25,42],[-15,77],[-10,103],[-67,135],[-84,124],[-26,71],[-42,143],[-21,113],[-56,130],[-2,50],[-9,61],[-13,68],[-7,54],[-57,235],[-18,37],[-16,53],[-4,40],[-5,22],[-39,39],[-38,99],[-111,157],[-55,15],[-43,56],[-32,74],[-34,126],[-60,136],[-50,194],[16,71],[-1,49],[-16,84],[-17,64],[-12,61],[10,88],[3,98],[10,52],[7,57],[-9,115],[-17,61],[2,41],[-19,20],[-16,45],[16,-1],[-29,62],[-11,34],[-11,84],[-14,64],[-45,146],[-22,89],[-49,114],[-53,85],[-33,38],[-16,35],[-28,2],[-30,50],[-21,1],[-26,8],[-31,97],[-26,90],[-44,118],[11,31],[13,50],[-6,65],[-7,44],[-19,81],[-64,202],[-17,29],[-27,34],[-16,88],[-8,78],[-44,38],[-74,282],[-44,99],[-17,66],[-50,109],[-24,109],[-51,100],[-44,173],[-67,174],[-29,30],[-69,12],[-30,13],[-27,-38],[-2,48],[19,67],[26,140],[6,123],[42,364]],[[59708,68751],[59,-18],[49,-16],[71,-23],[74,-23],[43,-14],[14,6],[60,89],[54,81],[32,98],[31,96],[14,20],[48,17],[76,29],[75,28],[5,9],[18,77],[22,97],[5,10],[5,10],[54,55],[32,33],[-46,97],[-44,92],[-49,103],[-41,80],[-63,120],[-40,79],[71,37],[77,40],[78,41],[94,49],[73,38],[110,57],[53,28],[10,7],[41,68]],[[60873,70348],[62,-19],[93,-29],[90,-27],[95,-32],[31,-27],[91,-96],[60,-63],[69,-74],[87,-91],[59,-63],[77,-81],[59,-92],[76,-117],[82,-128],[68,-100],[94,-137],[93,-135],[90,-133],[73,-106],[91,-134],[8,-5],[92,-15],[125,-21],[125,-20],[113,-19],[49,19]],[[62925,68603],[53,-12],[72,-17],[43,-11],[82,-21],[25,-88],[9,-61],[8,-60],[24,-54],[56,1],[49,1],[61,2],[49,1]],[[63456,68284],[15,-54],[7,-54],[29,-128],[41,-100],[9,-36],[7,-55],[-7,-21],[-3,-23],[30,-55],[51,-46],[19,-12],[22,-21],[-17,-31],[30,-74],[34,-74],[37,-17],[50,-113],[74,-73],[46,-96],[-4,-2],[-14,10],[-16,13],[-5,-12],[0,-40],[5,-47],[23,-41],[21,-29],[8,-56],[-17,-120],[-5,1],[-11,10],[-12,2],[-6,-7],[14,-86],[13,-66],[17,-52],[14,-77],[11,-32],[49,-82],[14,-68],[14,-127],[30,-70],[17,-55],[22,-46]],[[64112,66122],[14,-63],[20,-49],[11,-12],[15,-5],[20,0],[23,12],[25,12]],[[64240,66017],[20,-24],[20,3],[2,-23],[-13,-31],[-17,-78],[24,-13],[22,-6],[17,-13],[9,0]],[[65329,64921],[20,-65],[17,-54],[23,-75],[25,-79],[24,-75],[17,-57],[-9,-58],[-10,-64],[-10,-63],[-11,-64],[-10,-64],[-10,-64],[-10,-64],[-10,-63],[-11,-64],[-10,-64],[-10,-64],[-10,-63],[-10,-64],[-10,-64],[-11,-64],[-10,-63],[-10,-64],[-12,-77],[-30,-20],[-47,-33],[-48,-33],[-48,-33],[-48,-34],[-48,-33],[-47,-33],[-48,-33],[-48,-33],[-48,-33],[-48,-33],[-47,-33],[-48,-33],[-48,-33],[-48,-33],[-47,-33],[-48,-33],[-39,-27]],[[60165,66654],[-3,-8],[-12,21],[1,44],[10,25],[-1,-34],[5,-35],[0,-13]],[[52062,52746],[-11,-15],[-12,12],[-3,23],[16,44],[7,11],[6,-9],[4,-12],[1,-18],[-8,-36]],[[51849,51912],[-28,-42],[-10,11],[-7,29],[-8,64],[3,30],[13,35],[28,34],[17,3],[17,-46],[0,-47],[-25,-71]],[[53468,77131],[-17,-4],[-8,24],[12,27],[18,4],[3,-21],[-8,-30]],[[2130,44086],[31,-54],[12,-72],[-13,-69],[-30,17],[-42,-15],[-15,5],[-34,85],[-23,38],[-10,35],[30,-4],[44,24],[50,10]],[[2374,43751],[-76,0],[-38,26],[-13,0],[-33,55],[-5,28],[17,19],[36,10],[70,-41],[11,-37],[16,-4],[13,-16],[3,-26],[-1,-14]],[[33007,59422],[-8,-9],[-21,39],[3,45],[12,25],[12,14],[12,2],[4,-38],[-3,-52],[-11,-26]],[[32992,59328],[-4,-6],[2,0],[-2,-5],[-1,5],[-3,2],[-2,1],[-4,0],[0,5],[4,-3],[7,3],[0,4],[-2,4],[-1,3],[2,5],[8,10],[3,5],[1,-2],[0,-2],[0,-2],[1,-2],[-4,-8],[-5,-17]],[[32962,59156],[-2,-1],[-3,2],[1,2],[3,1],[1,4],[0,5],[0,6],[2,3],[2,1],[1,-2],[1,-6],[-2,-4],[-1,-3],[-1,-5],[-2,-3]],[[33084,59805],[-15,-61],[-31,38],[-3,48],[3,29],[18,54],[15,36],[10,12],[6,-47],[-3,-109]],[[32630,61705],[-14,-12],[-12,17],[3,40],[11,1],[11,-18],[1,-28]],[[32602,61773],[-7,-8],[-13,35],[-20,10],[-18,21],[0,4],[0,11],[4,12],[9,9],[22,-28],[11,-36],[10,-17],[2,-13]],[[58487,50460],[-7,3],[-13,11],[-21,36],[-38,-20],[-10,1],[-14,-18],[-12,-21],[-7,-1],[-7,3],[-33,42],[-12,-1],[-5,-120],[-5,-67],[-7,-30],[-23,-29],[-24,-16],[-13,1],[-52,-9],[-21,0],[-11,10],[-15,68],[-27,30],[-27,14],[-10,-4],[-10,-35],[-4,-32]],[[58059,50276],[-26,22],[-7,27],[-1,46],[-10,62],[6,27],[10,17],[21,33],[33,46],[7,22],[4,37],[-2,84],[-3,72],[4,26],[15,55],[19,57],[24,59],[14,6],[18,23],[19,34],[11,12]],[[90522,76877],[4,-3],[5,0],[5,1],[2,-6],[1,-11],[-3,-1],[-7,-2],[-4,-1],[-2,8],[-1,6],[-4,4],[0,4],[4,1]],[[90654,76972],[-7,-3],[-12,3],[-4,3],[2,5],[8,8],[6,-3],[5,-2],[2,-11]],[[90567,76848],[-3,-1],[-2,7],[6,8],[11,9],[4,-5],[-4,-7],[-5,-4],[-7,-7]],[[88104,83582],[-34,-100],[-24,-1],[-18,21],[-39,-8],[-14,5],[23,31],[55,48],[23,-1],[22,10],[6,-5]],[[91830,85840],[-22,-7],[-11,16],[-1,11],[34,25],[21,36],[13,-22],[4,-15],[-38,-44]],[[83405,93945],[-70,-26],[-60,0],[-42,46],[33,18],[57,7],[31,-6],[44,-29],[7,-10]],[[84594,94383],[-17,-1],[-32,15],[-8,21],[0,10],[26,8],[33,-5],[25,-19],[4,-7],[-31,-22]],[[79519,96892],[-33,-4],[-36,12],[10,26],[81,4],[30,39],[51,-2],[14,-11],[8,-13],[-1,-17],[-11,0],[-48,-2],[-9,-9],[-56,-23]],[[79837,96337],[-32,0],[-9,27],[27,33],[34,0],[29,-10],[10,-5],[10,-12],[4,-18],[-73,-15]],[[77107,95967],[-15,-9],[-29,4],[-24,22],[-9,35],[20,9],[57,-61]],[[76903,95736],[-15,-6],[-13,4],[-4,7],[1,29],[25,38],[1,12],[12,6],[31,-7],[15,-16],[2,-7],[-21,-38],[-34,-22]],[[77815,97703],[-61,-7],[7,40],[4,11],[31,6],[20,-10],[44,-7],[-45,-33]],[[71320,94150],[-26,-4],[-118,22],[-43,27],[16,18],[31,0],[140,-63]],[[72974,94522],[-27,-20],[-37,11],[-27,13],[-14,19],[14,10],[40,7],[24,-7],[21,-22],[6,-11]],[[73543,94734],[-13,-34],[-78,17],[-11,14],[42,21],[38,12],[54,2],[-32,-32]],[[74070,95035],[23,-11],[73,17],[14,-6],[20,-24],[-31,-45],[-23,-18],[-66,10],[-83,1],[-37,25],[20,26],[48,16],[28,15],[14,-6]],[[66475,98677],[-60,-7],[-105,12],[-30,14],[7,13],[68,18],[54,4],[57,-19],[26,-23],[-17,-12]],[[86301,76210],[-8,15],[-2,26],[-9,25],[-18,34],[-7,35]],[[86257,76345],[16,18],[-3,32],[-15,30],[-23,6],[-5,8],[1,16],[8,16],[11,14],[24,19],[40,14],[22,12],[19,3],[20,-6],[18,18],[17,11],[4,31],[1,47],[6,14],[8,20],[11,26],[10,67],[8,46],[5,23],[1,32],[-5,20],[-10,13],[-7,8],[-1,36],[1,48],[-3,31],[11,172],[12,39],[-36,229],[-11,73],[-7,37],[-16,54],[-10,27],[4,26],[14,25],[14,12],[40,6],[12,9],[49,28],[11,17],[26,40],[10,31],[11,40],[24,21],[15,36],[16,13],[16,-31],[19,-17],[25,-11],[31,-13],[51,-25],[51,-21],[33,-17],[16,-7],[32,-12],[14,-8],[13,-10],[21,26],[28,33],[-5,51],[5,58],[20,100],[23,29],[12,5],[12,11],[23,19],[8,26],[-5,31],[8,31],[2,30],[8,39],[11,11],[15,13],[12,20],[10,31],[7,35],[-3,41],[14,26],[23,22],[8,14],[4,35],[1,16],[6,18],[-4,36],[-6,40],[26,66],[18,57],[4,84],[2,13],[7,40],[4,16],[14,52],[19,34],[-4,38],[-7,37],[1,25],[16,29],[10,15],[8,21],[14,9],[12,5],[28,5],[16,22],[15,22],[28,58],[9,35],[6,17],[-15,50],[-13,42],[-16,58],[-7,27],[11,35],[11,22],[6,19],[3,33],[-4,25],[-28,39],[-30,19],[-34,8],[-11,2],[-24,-7],[-101,-50],[-48,-38],[-27,-43],[-29,-21],[-47,3],[-43,2],[-35,-24],[-40,-49],[-29,-22],[-18,4],[-19,-33],[-21,-70],[-24,-31],[-27,9],[-64,-7],[-101,-22],[-63,1],[-26,24],[-40,3],[-55,-18],[-33,-3],[-12,10],[-8,29],[-4,48],[-19,50],[-32,51],[-6,63],[21,73],[5,50],[-12,27],[-4,24],[-25,31],[-17,52],[-12,16],[3,45],[15,54],[-18,50],[-55,3],[-44,15],[-44,46],[-68,131],[-34,46],[-22,5],[-16,21],[-10,37],[-16,1],[-16,0],[-9,-16],[-11,-5],[-18,15],[-17,1],[-18,-11],[-15,7],[-13,26],[-23,17],[-33,9],[-13,17],[5,28],[-6,20],[-18,13],[-49,-3],[-80,-20],[-66,5],[-52,31],[-29,28],[-5,26],[-15,25],[-24,24],[-14,42],[-2,58],[5,56],[22,79],[-54,51],[-16,30],[3,25],[-2,20],[-10,15],[1,23],[10,32],[0,41],[-11,50],[-30,70],[-49,90],[-27,66],[-4,42],[-6,33],[-10,18],[-5,31],[4,34],[-6,22],[-7,21],[1,33],[-9,22],[-18,13],[-6,25],[4,53],[-13,46],[-40,83],[-12,61],[-3,54],[-17,27],[-1,24],[-2,42],[-11,11],[-6,15],[5,17],[-8,22],[-21,26],[-9,22],[-3,21],[-10,15],[-31,16],[-8,21],[2,19],[6,17],[4,11],[-1,14],[-2,13],[-13,17],[-17,19],[-19,41],[-25,11],[-15,0],[-14,23],[5,14],[-1,28],[-12,22],[-15,9],[-14,-6],[-34,21],[-55,47],[-42,22],[-29,-4],[-18,-14],[-6,-25],[-20,3],[-48,44],[-48,11],[-27,24],[-21,40],[-20,17],[-19,-7],[-44,27],[-70,61],[-37,20],[-14,-11],[-7,0],[-12,2],[-18,0],[-32,15],[-43,-7],[-55,-27],[-59,-17],[-64,-6],[-37,3],[-12,13],[-69,-19],[-96,-40],[-94,-38],[-117,-19],[-78,-64],[-78,-118],[-57,-74],[-34,-30],[-14,-40],[6,-49],[29,-17],[53,14],[44,-7],[38,-28],[12,-42],[-14,-56],[4,-56],[22,-54],[2,-63],[-19,-71],[-48,-72],[-76,-72],[-47,-71],[-28,-102],[-42,-90],[-16,-50],[-3,-41],[-17,-45],[-31,-48],[-17,-48],[-3,-49],[-15,-44],[-29,-39],[-17,-42],[-7,-45],[-11,-29],[-15,-16],[8,-15],[30,-15],[13,-43],[-6,-71],[-18,-51],[-31,-31],[-47,-20],[-62,-9],[-85,-68],[-73,-88],[-87,-103],[-17,0],[-32,13],[-61,42],[-65,9],[-62,40],[-37,25],[-57,50]],[[82411,80543],[-14,31],[-22,25],[-56,33],[-37,18],[-23,1],[-58,-34],[-36,-27],[-22,-14],[-36,3],[-44,6],[-18,9],[-25,21],[-49,64],[-26,45],[-35,26],[-38,29],[-19,7],[-33,-2],[-47,8],[-25,10],[-21,-9],[-42,-31],[-52,-59],[-41,-23],[-44,-32],[-36,-37],[-35,-39],[-43,-44],[-20,-61],[-10,-44],[-40,-27],[-30,-26],[-30,-9],[-56,14],[-33,-10],[-83,-52],[-40,-5],[-28,-7],[-27,-3],[-45,-13],[-17,-9],[-23,-10],[-26,7],[-37,-29],[-104,-80],[-33,-13],[-22,-3],[-28,28],[-28,19],[-30,-2],[-34,-26],[-57,20],[-68,19],[-61,18],[-21,15],[-60,22],[-88,1],[-52,0],[-33,-8],[-26,11],[-32,32],[-54,74],[-32,21],[-17,19],[-7,30],[-12,4],[-8,21],[0,29],[-1,62],[4,44],[-9,13],[-36,7],[-43,14],[-79,2],[-32,1],[-25,25],[-28,31],[-28,64],[-24,29],[-40,37],[-38,10],[-57,-7],[-42,-7],[-37,16],[-24,20],[-34,22],[-51,5],[-42,16],[-44,18],[-32,-7],[-22,-18],[-26,-23],[-33,-4],[-81,-24],[-24,-14],[-36,-6],[-32,-18],[-26,-35],[-22,-26],[-28,-9],[-33,2],[-29,8],[-15,3],[-22,-13],[-25,-9],[-38,15],[-21,13],[-32,8],[-20,37],[-20,15],[-34,6],[-50,18],[-26,20],[-23,11],[-38,43],[-21,37],[-17,6],[-20,5],[-13,23],[-1,29],[5,18],[3,30],[-11,29],[-11,13],[-6,22],[3,42],[-4,42],[-4,44],[-12,32],[-3,63],[5,26],[-1,30],[-12,23],[-37,17],[-44,22],[-70,27],[-29,2],[-23,-11],[-22,13],[-22,22],[-39,23],[-50,30],[-54,33],[-48,29],[-19,8],[-66,2],[-54,4],[-32,11],[-37,41],[-19,26],[-30,12],[-22,4],[-35,13],[-64,44],[-23,21],[-16,0],[-21,38],[-18,9],[-13,-27],[-13,-65],[-11,-30],[-34,-60],[-80,-48],[-13,-25],[-8,-23],[-11,-32],[-4,-42],[-10,-12],[-23,-1],[-18,-19],[-14,-42],[-11,-17],[-7,-39],[1,-17],[-2,-19],[-2,-30],[-21,-66],[-3,-38],[8,-24],[18,-33],[9,-18],[3,-22],[0,-28],[11,-38],[8,-33],[13,-24],[19,-20],[21,-7],[16,-13],[4,-27],[-5,-37],[-7,-69],[-14,-43],[-8,-28],[-14,-42],[-5,-17],[-27,-36],[-19,-10],[-23,-29],[-19,-2],[-18,1],[-19,-7],[-18,-13],[-13,-39],[-34,-40],[-16,-19],[-42,-6],[-20,18],[-11,25],[-14,14],[-17,31],[-76,16],[-20,-7],[-12,-12],[-15,9],[-11,15],[-11,-5],[-23,-8],[-19,2],[-23,31],[-33,16],[-13,10],[-13,0],[-8,-15],[-15,-8],[-10,18],[-13,13],[-18,0],[-22,-27],[-39,-13],[-13,-19],[-22,3],[-16,15],[-15,1],[-46,0],[-15,-5],[-19,15],[-8,27],[-23,21],[-33,2],[-26,-3],[-12,-8],[-17,-3],[-14,37],[-19,26],[-10,19],[-16,8],[-13,24],[-2,47],[-8,59],[-9,61],[-10,26],[-49,9],[-23,-2],[-54,5],[-38,4],[-10,1],[-34,7],[-32,6],[-32,4],[-14,-5],[-33,-2],[-26,29],[-11,34],[-2,19],[-6,19],[-23,6],[-22,-6],[-11,-39],[-16,-16],[-15,3],[-13,21],[-26,23],[-17,22],[-20,35],[-16,-8],[-5,-22],[-3,-21],[-21,-43],[-24,-5],[-41,3],[-43,-2],[-27,-16],[-20,-29],[-10,-23],[-21,-8],[-21,-23],[-9,-31],[-20,1],[-11,-4],[-19,-6],[-48,-17],[-11,-4],[-29,-30],[-22,-23],[-21,-10],[-13,-27],[-17,-21],[-38,-6],[-42,-26],[-15,-9],[-24,-20],[-34,-8],[-14,-6],[-13,-14],[-8,-49],[-28,-17],[-37,-3],[-28,-26],[-2,-46],[9,-42],[-4,-19],[-21,-11],[-29,-22],[-22,-28],[-26,-1],[-16,10],[-11,-18],[-7,-37],[-19,-18],[-28,-16],[-11,6],[-7,14],[-12,18],[-10,-7],[-1,-26],[-8,-19],[-24,-2],[-18,11],[-13,12],[-25,-2],[-26,-5],[-16,6],[-15,-6],[-41,-12],[-16,-41],[0,-48],[-5,-24],[-24,-21],[-12,-19],[-14,-13],[-33,-1],[-1,0]],[[74392,80162],[-14,2],[-26,-11],[-26,-8],[-17,-6],[-11,-18],[-16,-8],[-26,5]],[[74256,80118],[-8,35],[-17,40],[-24,14],[-21,8],[-20,19],[-13,20],[-39,95],[-27,41],[-25,3],[-3,27],[14,27],[18,22],[0,31],[-15,16],[-18,-5],[-25,-35],[-29,-40],[-35,-29],[-14,-24],[-17,-27],[-24,4],[-18,-2],[-15,-2],[-11,29],[-15,4],[-106,28],[-35,11],[-23,-14],[-16,9],[-6,28],[-21,50],[-16,41],[-21,41],[-8,33],[7,34],[-3,30],[-18,15],[-23,2],[-65,64],[-30,9],[-27,12],[-22,0],[-18,28],[-17,86],[-6,48],[-21,49],[-27,41],[-16,57],[-23,25],[-40,39],[-38,28],[-62,34],[-23,0],[-32,-3],[-18,-16],[-21,-37],[-28,-2],[-44,0],[-11,-14],[-7,-25],[-23,-31],[-33,-25],[-46,8],[-32,-13],[-32,-5],[-45,32],[-51,-1],[-33,-15],[-46,1],[-10,18],[6,30],[-4,27],[-8,22],[-6,27],[-19,6],[-54,-11],[-15,12],[2,27],[9,33],[8,43],[-3,26],[-28,-4],[-17,3],[-9,30],[-16,23],[-18,1],[-21,5],[-24,-9],[-12,-30],[-16,-5],[-16,-8],[-12,-11],[-7,-27],[3,-25],[5,-55],[-8,-29],[-22,-16],[-20,3],[-14,-7],[-26,-31],[-12,-11],[-3,-19],[-2,-28],[-22,10],[-35,104],[-40,118],[-45,125],[-24,67],[-89,216],[-43,103],[-76,178],[-68,162],[-77,168],[-46,95],[-48,101],[-17,27],[-26,36],[-65,69],[-94,99],[-87,87],[-68,69],[-17,30],[-8,17],[-7,18],[-10,34],[0,22],[64,-4],[14,22],[24,80],[13,69],[-22,-3],[-40,-28],[-21,-21],[-12,-9],[-64,-14],[-35,-31],[-72,-52],[-52,-30],[-10,-5],[-61,-10],[-11,-12],[-1,-27],[-5,-30],[-43,-44],[-47,-38],[-17,-5],[-29,9],[-14,-5],[-43,-41],[-64,-62],[-6,-25],[0,-30],[-7,-27],[-14,-10],[-21,24],[-19,28],[-39,20],[-58,5],[-36,-10],[-24,-16],[-48,-61],[-18,-13],[-10,4],[-2,30],[-10,21],[-12,32],[6,63],[26,60],[43,33],[35,35],[10,38],[-1,27],[-13,12],[-13,2],[-8,-13],[-23,-26],[-35,-21],[-29,-4],[-13,1],[-31,13],[-57,73],[-48,10],[-33,6],[-11,-7],[-5,-18],[3,-20],[7,-19],[-4,-16],[-15,-11],[-24,-20],[-11,13],[-6,51],[1,40],[-16,34],[-17,52],[-23,31],[-22,-10],[-11,-44],[-17,-15],[-33,9],[-58,-25],[-95,-11],[-68,31],[-11,28],[28,59],[2,53],[0,48],[7,35],[-16,66],[-38,136],[-22,102],[-34,77],[-14,25],[-70,-13],[-19,-17],[-13,-23],[-22,-17],[-31,-12],[-26,8],[-29,13],[-31,27],[-36,36],[-69,28],[-68,9],[-75,10],[-38,-18],[-36,-29],[-52,-59],[-24,-6],[-38,-5],[-27,-15],[6,-26],[5,-36],[-10,-29],[-15,-15],[-22,-10],[-37,-3],[-31,-6],[-38,-41],[-58,-10],[-63,-15],[-44,-23],[-96,-29],[-55,-13],[-93,-28],[-74,-5],[-11,20],[-58,-43],[-64,3],[-11,-18],[-16,-16],[-17,-8],[-22,-20],[-13,-43],[-9,-45],[-20,-13],[-25,16],[-19,16],[-33,-16],[-44,-10],[-35,6],[-18,13],[-73,-21],[-37,-26],[-8,-13],[-9,-8],[-43,-17],[-35,5],[-6,-1],[-33,-13],[-47,-22],[-33,-7],[-29,0],[-18,-18],[-14,-20],[-123,-21],[-12,-14],[-25,-18],[-127,-6],[-11,-13],[-4,-15],[-16,-4],[-92,28],[-74,31],[-28,-17],[-24,-32],[-9,-47],[0,-40],[0,-34],[-11,-25],[-24,-31],[-2,-20],[33,-23],[42,-18],[24,8],[21,13],[17,-4],[13,-15],[4,-18],[-2,-13],[-8,-9],[-27,-17],[-25,6],[-23,-12],[-12,-22],[-6,-40],[10,-29],[31,-7],[35,-21],[39,-9],[23,3],[30,-31],[69,-38],[18,-29],[1,-30],[-13,-23],[-18,-13],[-23,7],[-47,8],[-52,5],[-37,10],[-54,-4],[-44,-9],[-11,-23],[-18,-42],[-14,-23],[-25,-44],[-8,-39],[13,-61],[44,-101],[4,-33],[-16,-33],[-30,-27],[-44,-48],[-47,-2],[-21,-12],[-53,-58],[-47,-28],[-10,-25],[11,-25],[59,-32],[30,-35],[8,-40],[13,-30],[46,-20],[95,-46],[6,-5],[6,-21],[97,-29],[13,-16],[40,-52],[8,-54],[-20,-54],[-13,-84],[-21,-75],[-45,-49],[-79,-46],[-85,-18],[-36,3],[-23,6],[-38,14],[-28,38],[-21,37],[-15,9],[-15,-6],[-13,-23],[-19,-63],[-21,-62],[-17,-22],[-63,-30],[-7,11],[7,41],[-8,13],[-12,9],[-78,16],[-30,11],[-22,5],[-28,10],[-19,25],[-42,76],[-32,59],[-53,53],[-47,11],[-4,-6],[-36,-2],[-57,13],[-3,-1],[-18,-25],[-13,-38],[-18,-32],[-26,-17],[-32,-4],[-37,34],[-37,51],[-46,17],[-45,-11],[-17,-8],[-47,-30],[-15,14],[-21,9],[-46,-48],[-50,-53],[-11,-39],[-15,-37],[-34,-34],[-36,-30],[-31,-11],[-40,11],[-51,37],[-46,45],[-50,72],[-41,42],[-39,32],[-23,8],[-19,-12],[-8,-26],[5,-20],[12,-18],[9,-57],[3,-69],[-4,-40],[-11,-23],[-11,-9],[-11,3],[-13,25],[-7,52],[-7,61],[-34,77],[-30,47],[-14,26],[-27,43],[-24,26],[-50,31],[-24,22],[-43,85],[-24,26],[-31,21],[-25,7],[-5,-5],[-53,-12],[-37,1],[-23,16],[-24,2],[-2,0],[-26,-10],[-5,0],[-13,1],[-20,17],[-21,48],[-25,50],[-31,16],[-59,-21],[-65,-68],[-46,-41],[-37,-1],[-22,-6],[-14,2],[-12,13],[-3,25],[-6,31],[-30,30],[-40,20],[-38,22],[-24,6],[-11,-32],[-31,-49],[-35,-48],[-45,-79],[-13,-27],[-17,-19],[-40,-20],[-48,-33],[-30,-38],[-43,-17],[-47,-10],[-21,-33],[-12,-53],[-16,-48],[-73,-72],[-40,-47],[-30,-25],[-20,3],[-22,7],[-9,-4],[12,-36],[9,-113],[14,-72],[10,-41],[9,-33],[7,-50],[-9,-29],[-14,-20],[-45,-31],[-46,-26],[-27,17],[-31,42],[-12,22],[-33,71],[-59,109],[-40,55],[-30,21],[-26,-7],[-21,-25],[-15,-23],[-13,-26],[-9,-32],[1,-45],[-1,-47],[-13,-33],[-33,-36],[-38,-49],[-29,-90],[-18,-112],[-6,-78],[14,-37],[28,-29],[18,-30],[4,-29],[-5,-30],[-15,-35],[-30,-39],[-42,-95],[-26,-133],[15,-93],[53,-51],[42,-23],[17,-30],[15,-60],[-2,-62],[-5,-42],[10,-41],[20,-48],[25,-30],[27,16],[26,20],[33,-8],[93,-16],[48,-9],[16,-21],[30,-69],[38,-77],[39,-78],[14,-34],[31,-93],[33,-84],[35,-104],[-2,-28],[-19,-11],[-30,2],[-23,16],[-13,12],[-11,4],[-13,-5],[-11,-13],[-5,-20],[2,-28],[9,-26],[12,-16],[7,-6],[46,-34],[51,-38],[63,-54],[13,-7]],[[63675,78534],[4,-26],[-34,-5],[-4,-31],[-8,-23],[-75,-51],[-19,0],[-16,-8],[1,-33],[4,-30],[13,-32],[-6,-14],[-11,-5],[-14,10],[-14,17],[-14,4],[-14,-4],[-64,-91],[-27,-23],[-30,-9],[-61,-34],[-19,2],[-17,12],[-15,-17],[-4,-42],[-17,29],[-18,23],[-8,7],[-4,-4],[17,-45],[1,-41],[-4,-23],[-7,-21],[-10,-12],[-11,-7],[-6,-73],[-12,-44],[-15,-40],[-21,-72],[-16,-31],[-13,-37],[-9,-51],[-12,12],[-10,22],[-6,-29],[-7,-25],[-32,-37],[-24,-36],[-11,-55],[-2,-33],[3,-30],[9,-17],[46,-20],[29,-25],[28,-47],[30,-40],[21,-51],[15,-64],[19,-123],[9,-129],[28,161],[24,29],[-6,-46],[-16,-69],[-17,-101],[-5,-74],[6,-64],[0,-30],[-13,-106],[7,-20],[11,-19],[29,-36],[21,-54],[5,-75],[12,-20],[14,-18],[72,-150],[41,-100],[21,-58],[22,-73],[12,-17],[14,-11],[27,-34]],[[63492,75947],[-15,-38],[-25,-67],[-11,-35],[-25,-33],[-44,-35],[-24,-15],[-25,-72],[-29,-69],[-19,-8],[-56,11],[-19,6],[-57,31],[-16,19],[-15,81],[-17,34],[-22,23],[-15,19],[-6,19],[-16,28],[-30,42],[-21,40],[-16,11],[-21,-14],[-12,-4],[-5,7],[-4,33],[-30,12]],[[62897,75973],[-6,8],[-39,32],[-16,17],[-14,2],[-31,9],[-27,16],[-12,20],[-18,22],[-33,29],[-24,26],[-1,17],[15,71],[10,68],[-6,13],[-14,11],[-25,11],[-61,-4],[-38,69],[-13,15],[-25,11],[-35,21],[-20,15],[-6,-6],[-22,-75],[-22,54],[-13,14],[-19,8],[-20,0],[-49,-26],[-36,-28],[-27,-22],[-27,-12],[-13,-17],[-37,3],[-18,13],[-6,14],[3,23],[13,26],[1,14],[-5,11],[-44,35],[-18,22],[-59,30],[-71,53],[-25,35],[-3,24],[-28,24],[-36,21],[-28,-6],[-26,-2],[-41,39],[-38,3],[-44,-12],[-10,-5],[-10,-5],[-130,16],[-34,33],[-28,33],[-77,24],[-39,25],[-39,36],[-42,31],[-36,-13],[-49,18],[-54,15],[-18,-9],[-17,-40],[-13,-37]],[[61104,76854],[-29,31],[-99,146],[-52,98],[-170,225],[-22,17],[-90,33],[-37,26],[-91,161],[-41,-22],[-37,6],[-21,14],[-24,23],[-16,30],[-19,68],[-22,38],[-72,56],[-82,33],[-6,14],[-3,20],[71,38],[19,22],[-36,29],[-14,5],[-11,13],[20,22],[20,10],[31,-25],[35,-46],[31,-18],[14,22],[106,39],[7,30],[0,34],[-11,-2],[-6,8],[0,38],[16,51],[48,84],[25,116],[23,27],[16,-18],[-1,-27],[3,-20],[15,39],[14,53],[36,0],[24,-9],[26,6],[-49,88],[-66,87],[-28,-6],[-18,13],[-29,73],[-12,60],[28,-2],[28,-9],[53,42],[20,6],[31,-13],[44,-8],[-3,39],[-14,47],[53,34],[47,19],[91,68],[40,12],[5,15],[1,20],[-13,54],[-14,40],[-48,2],[-26,-55],[-72,-19],[-33,4],[26,36],[25,13],[8,15],[-52,-13],[-25,-37],[-76,-48]],[[58823,81855],[-2,14],[-19,55],[-11,24],[-13,13],[-7,15],[0,66],[2,61],[9,8],[-25,50],[-2,38],[12,19],[0,16],[-8,22],[-25,37],[-25,41],[-16,33],[-11,15],[13,26],[17,45],[6,26],[9,6],[40,4],[29,-1],[22,-9],[8,-22],[21,-23],[57,-10],[24,1],[30,21],[49,48],[12,34],[30,24],[18,10],[17,4],[2,20],[-1,28],[-6,17],[-60,57],[-8,18],[-5,22],[8,21],[-1,23],[-69,51],[-58,9],[-47,-3],[-19,10],[8,26],[12,46],[3,38],[-3,17],[-9,15],[-46,32],[-62,48],[-29,56],[-15,57],[-17,35],[-31,23],[2,14],[21,54],[-1,9],[-9,13],[-38,27],[-51,51],[-3,13],[4,31],[7,32],[11,14],[30,64],[0,21],[-5,29],[-23,49],[-17,32],[-1,16],[3,14],[11,17],[11,22],[2,73],[0,26],[-7,15],[-7,7],[-16,-4],[-22,12],[-16,19],[-10,6],[-11,20],[-31,39],[-6,11],[-61,33],[-53,-5],[-30,6],[-15,-8],[-16,-21],[-22,-15],[-17,0],[-15,-11],[-41,-38],[-19,23],[-17,34],[6,29],[7,27],[-1,18],[-6,15],[-25,17],[-55,31],[-15,0],[-24,-11],[-42,-34],[-15,7],[-14,27],[-15,34],[-20,18],[-44,-2],[-4,-1],[-21,-20],[-9,2],[-38,50]],[[57818,84183],[7,27],[8,41],[-3,31],[-6,41],[-16,72],[-2,20],[-27,31],[-4,26],[-14,34],[-14,22],[-3,47],[-9,17],[-12,8],[-41,-14],[-5,2],[20,76],[2,44],[12,47],[15,18],[4,16],[2,30],[-2,27],[-9,13],[-35,30],[-37,35],[-8,45],[-11,10],[-33,2]],[[57597,84981],[1,13],[5,36],[8,31],[25,33],[6,23],[8,20],[59,24],[6,9],[1,8],[-3,8],[-13,12],[-14,17],[-8,46],[-20,71],[-19,48],[-4,28],[5,33],[7,31],[0,31],[-29,172],[2,31],[8,31],[14,26],[30,34],[38,62],[25,81],[14,49],[11,11],[22,3],[8,15],[4,8],[19,9],[6,9],[-5,17],[-19,29],[-14,18]],[[57781,86108],[14,40],[-5,54],[-9,44],[12,33],[21,3],[22,-36],[34,-18],[25,24],[8,46],[18,20],[24,-18],[40,-7],[33,3],[22,10],[10,15],[9,27],[18,34],[19,23],[145,-26],[126,-47],[9,18],[5,30],[-32,26],[-23,14],[-29,54],[-42,43],[-42,4],[-55,-15],[-84,9],[-71,81],[-47,25],[-34,62],[-8,33],[36,-28],[5,29],[3,40],[-20,24],[-18,14],[-93,-61],[-106,-20]],[[57721,86714],[98,120],[71,87],[14,14],[31,23],[26,24],[21,33],[71,63],[72,69],[67,90],[24,28],[31,30],[67,96],[22,26],[82,120],[48,59],[24,34],[103,113],[69,91],[28,50],[27,71],[15,49],[27,63],[1,21],[-8,19],[-20,30],[-28,35],[-25,43],[-18,38],[-57,53],[-89,67],[-66,50],[-101,107],[-18,26],[4,7],[57,33],[57,83],[25,42],[6,32],[0,37],[-4,34],[-7,21],[-27,27],[-78,48],[-19,44],[-15,47],[0,19],[37,50],[2,25],[-5,26],[-10,19],[-80,22],[-23,24],[-18,38],[-9,33],[-1,19],[6,22],[27,23],[25,16],[5,22],[-1,23],[-4,11],[-50,11],[-5,6],[-1,8],[2,10],[28,41],[3,79],[26,55],[-29,32],[2,5],[44,17],[41,4],[18,7],[2,25],[-4,35],[-42,136],[-9,39],[-28,50],[-23,33],[-14,24],[-22,47],[-13,47],[-22,54],[-26,48],[-22,46],[-55,88],[-8,25],[1,22],[5,23],[44,73],[40,60],[51,71],[49,59],[53,69],[13,70],[-2,12],[-44,37],[-82,101],[-51,77],[-78,32],[-104,41],[-35,93],[-25,79],[2,29],[76,134],[7,25],[-1,15],[-8,9],[-11,6],[-70,4],[-11,18],[42,14],[35,19],[58,28],[18,7]],[[58045,91602],[43,16],[14,12],[11,15],[40,100],[10,16],[123,36],[45,18],[26,23],[12,19],[9,21],[7,24],[2,22],[-10,28],[6,3],[13,-1],[42,-28],[66,-30],[48,-2],[20,5],[10,13],[7,26],[0,27],[-15,75]],[[58574,92040],[50,-8],[112,-46],[26,5],[34,13],[34,55],[25,9],[33,-12],[9,14],[-17,46],[4,22],[113,-48],[48,-36],[105,-32],[18,-17],[2,-30],[-5,-25],[-23,-14],[-44,2],[-161,39],[-23,-24],[19,-20],[47,-25],[13,-43],[72,6],[69,-16],[32,5],[6,-14],[-22,-36],[10,-9],[77,34],[36,10],[19,-9],[3,-29],[-13,-36],[-1,-28],[-24,-66],[-36,-21],[-16,-27],[54,17],[28,18],[53,92],[16,12],[152,1],[34,-5],[142,-44],[40,-3],[46,5],[16,20],[16,6],[158,-48],[211,-109],[309,-179],[174,-160],[20,-34],[63,-20],[14,14],[35,-12],[205,-146],[70,-7],[-9,31],[-12,29],[18,-7],[24,-21],[38,-57],[48,-42],[48,-64],[41,-24],[36,-9],[30,-18],[56,-17],[26,-155],[20,-34],[0,-68],[36,-28],[27,-5],[-1,-51],[-22,-119],[-24,-51],[-186,-219],[-116,-84],[-226,-97],[-176,-36],[-72,-3],[-138,18],[-75,20],[-93,55],[-86,27],[-60,12],[-110,5],[-239,54],[-41,19],[-150,105],[-60,-30],[-35,-5],[-24,36],[10,10],[5,12],[-85,30],[-70,2],[-37,26],[-46,19],[-20,-12],[-11,0],[-92,46],[-41,37],[-43,65],[10,23],[13,15],[-148,38],[-140,5],[25,-18],[60,-10],[39,-26],[44,-37],[-10,-50],[62,-50],[47,-48],[2,-14],[18,-10],[70,-14],[12,-44],[-11,-17],[9,-25],[53,-27],[31,-7],[38,-17],[-17,-33],[-32,-22],[-33,-10],[16,-8],[41,3],[152,-55],[80,-56],[81,-102],[26,-50],[2,-28],[-4,-27],[-12,-30],[-5,-31],[-28,-88],[-20,-31],[-38,-35],[36,-68],[37,-63],[37,-105],[7,-42],[1,-65],[33,-26],[-13,-10],[-13,-18],[3,-84],[46,-69],[70,-45],[41,-9],[59,18],[43,-25],[96,-84],[43,-89],[18,-18],[97,-34],[72,-20],[111,-54],[19,-2],[54,47],[92,32],[29,44],[-3,37],[-23,67],[-7,65],[-31,27],[-28,18],[-86,-14],[-39,3],[-30,17],[-40,47],[-75,113],[-40,37],[-13,24],[-14,32],[2,53],[33,-2],[37,30],[27,106],[46,14],[25,-1],[108,-50],[134,-132],[29,-14],[31,-2],[51,4],[9,-18],[27,-20],[20,-3],[123,-42],[142,-82],[53,3],[21,46],[4,20],[59,46],[40,8],[57,-17],[10,13],[-19,68],[-26,59],[-39,37],[-68,111],[-28,54],[-13,57],[9,50],[10,36],[142,89],[51,53],[50,69],[23,14],[83,19],[111,59],[85,78],[84,119],[36,31],[28,-2],[38,-19],[42,-35],[57,-6],[55,5],[64,-3],[88,-54],[14,-17],[14,-23],[-28,-45],[-3,-29],[23,14],[32,6],[29,-9],[28,-25],[20,-28],[25,-24],[7,32],[4,28],[-13,70],[34,99],[26,43],[48,110],[-14,71],[-2,82],[-7,38],[-31,55],[-61,39],[-61,13],[-20,38],[4,43],[17,63],[50,133],[52,188],[2,43],[-5,24],[4,24],[-7,57],[-9,42],[-213,163],[-13,15],[-7,22],[23,5],[16,-1],[160,-76],[35,-4],[251,21],[123,-18],[103,-39],[74,-108],[76,-99],[70,-86],[2,-70],[-73,-14],[-70,-4],[-180,-35],[-43,-39],[-120,-122],[-11,-37],[11,-36],[55,-38],[118,-57],[52,-113],[37,-57],[28,-22],[27,-5],[60,-1],[42,-13],[12,-11],[17,11],[38,4],[224,60],[44,26],[15,40],[16,133],[20,46],[19,57],[-7,35],[-2,40],[112,38],[104,26],[50,-8],[13,28],[-32,55],[-19,28],[16,12],[24,-15],[32,-9],[56,9],[215,113],[84,63],[50,25],[80,57],[38,19],[67,7],[71,23],[78,42],[105,36],[17,2],[21,-5],[43,-42],[-16,-24],[-12,-25],[21,-14],[17,-6],[21,7],[22,17],[54,26],[15,33],[-21,13],[-27,49],[-32,11],[-26,-2],[95,71],[202,105],[108,48],[107,4],[85,-6],[-32,-16],[-140,-22],[-21,-11],[0,-13],[34,-8],[14,-16],[-11,-18],[-11,-6],[-16,-54],[-21,-43],[44,-56],[4,-58],[-28,-31],[-39,12],[-34,-20],[-62,-14],[-14,-18],[-9,-26],[40,-6],[31,2],[110,-17],[15,-2],[37,18],[37,4],[45,6],[23,11],[23,-13],[44,-51],[40,10],[17,99],[63,62],[74,50],[72,5],[69,35],[33,7],[64,-14],[96,-3],[81,-30],[60,-8],[88,51],[203,143],[17,-33],[33,48],[157,50],[38,2],[1,-20],[14,-44],[30,-27],[42,-64],[-20,-17],[-21,-10],[-31,-43],[-3,-99],[59,-25],[81,-29],[34,1],[28,16],[9,9],[10,15],[8,29],[5,22],[-21,55],[8,58],[74,-4],[91,17],[41,33],[49,63],[33,52],[-21,92],[-53,-20],[-91,199],[-47,77],[30,36],[78,23],[71,74],[27,15],[29,3],[210,-51],[239,-12],[203,-39],[230,-81],[112,-57],[93,-63],[-9,-45],[38,13],[82,-40],[56,-16],[57,-24],[22,-32],[75,-23],[78,-43],[14,-8],[95,-32],[68,-11],[41,-69],[136,-100],[25,-38],[119,-63],[59,-52],[37,20],[91,126],[54,144],[32,77],[-60,3],[-45,-22],[-29,5],[-32,23],[-52,58],[-66,97],[-13,106],[-18,35],[-64,28],[-42,32],[-156,63],[-28,-22],[-8,-34],[-10,-25],[-16,32],[-10,29],[0,46],[8,59],[26,99],[40,-5],[21,15],[26,44],[-12,37],[-14,28],[3,43],[25,118],[11,138],[-21,34],[-19,23],[-89,-24],[-33,13],[-8,26],[-2,21],[25,35],[25,59],[-43,-13],[-15,23],[36,34],[42,82],[99,38],[74,37],[116,78],[86,77],[56,98],[38,93],[62,218],[58,160],[98,165],[61,15],[23,-3],[4,-12],[-14,-14],[-4,-20],[26,-7],[42,-1],[79,10],[134,-6],[234,14],[33,-7],[87,-48],[47,6],[96,-23],[52,-26],[50,-31],[-7,-120],[-10,-80],[-35,-152],[-14,-39],[-56,-110],[-26,-72],[-42,-50],[-60,-35],[-8,-21],[-5,-31],[59,-87],[140,-90],[34,-108],[8,-81],[-9,-210],[-13,-31],[-26,-34],[-25,-40],[16,-59],[20,-219],[4,-178],[-16,-61],[-8,-129],[0,-43],[14,-64],[28,-54],[37,-34],[105,-63],[99,-76],[7,-24],[5,-29],[-35,-30],[-55,-78],[-35,-65],[-3,-53],[12,-67],[-6,-63],[-23,-56],[-33,-41],[-99,-63],[-207,-334],[-50,-39],[-84,13],[23,-48],[29,-68],[-4,-45],[-54,3],[-77,-48],[-35,-32],[-60,-17],[-45,17],[-50,31],[7,26],[10,12],[35,19],[34,25],[-17,5],[-14,0],[-38,-32],[-45,-7],[-52,40],[-41,43],[-19,9],[-38,-18],[-146,8],[-38,-7],[-18,-16],[10,-13],[11,-24],[15,-48],[14,-36],[60,-39],[81,-15],[78,-48],[99,-34],[224,14],[59,-4],[58,-15],[97,-50],[42,4],[71,45],[17,101],[9,31],[257,142],[48,31],[77,77],[25,52],[29,140],[25,50],[167,161],[26,41],[5,76],[-3,51],[-10,50],[-30,84],[-34,49],[-33,67],[24,138],[28,53],[151,63],[129,23],[144,43],[58,9],[40,-7],[41,-47],[36,-69],[104,-105],[35,-72],[7,-89],[-4,-216],[-20,-94],[41,-24],[20,-22],[51,-31],[27,-31],[27,-11],[59,-7],[168,11],[92,6],[-9,14],[-14,11],[-78,4],[-110,23],[-159,42],[-19,91],[4,56],[36,106],[25,18],[31,7],[36,15],[-11,67],[-14,61],[-34,85],[-37,157],[-51,1],[-39,31],[-189,92],[-179,68],[-123,9],[-39,-7],[-102,-71],[-66,-15],[-125,31],[-107,-17],[-40,17],[-16,31],[32,127],[-17,49],[-47,66],[-28,51],[5,56],[70,214],[29,56],[75,100],[38,76],[-9,44],[-161,239],[-43,85],[-19,27],[-39,32],[-60,38],[-18,34],[163,231],[74,40],[103,25],[50,22],[87,47],[52,39],[17,31],[11,37],[2,91],[-11,73],[-14,41],[-31,52],[-31,59],[22,15],[22,9],[58,-1],[60,-32],[30,-64],[35,-60],[0,-40],[-3,-31],[15,-44],[13,-18],[14,-31],[-13,-25],[-14,-12],[-27,-35],[-43,-108],[-33,-14],[-8,-84],[71,-92],[-9,-69],[-14,-23],[-39,-37],[5,-30],[10,-21],[111,-44],[105,-27],[176,-9],[51,-43],[19,30],[165,-7],[133,-105],[70,-32],[57,-11],[116,13],[20,9],[19,30],[-54,-2],[-24,-14],[-22,1],[-38,11],[-27,18],[-29,35],[-48,104],[-84,33],[-57,-14],[-62,7],[-102,56],[-68,21],[-121,61],[-34,25],[-27,51],[-31,84],[-20,47],[26,9],[83,46],[124,15],[53,-16],[136,-94],[63,-3],[114,41],[13,26],[-26,53],[-34,27],[-66,13],[-80,-24],[-23,20],[8,28],[9,21],[43,5],[30,16],[65,58],[72,28],[71,10],[261,-8],[148,-91],[144,-41],[63,-31],[17,-5],[15,-21],[11,-48],[182,-129],[42,-17],[116,-6],[130,30],[59,3],[63,-9],[33,-16],[36,-30],[-19,-38],[-17,-23],[-36,-64],[-16,-18],[-118,-73],[-47,-19],[-13,-96],[-6,-21],[-5,-34],[22,-68],[5,-42],[-18,-58],[-30,-62],[6,-50],[10,-67],[5,20],[-2,30],[8,35],[54,85],[39,115],[40,30],[36,7],[40,-34],[11,-46],[2,-70],[-8,-65],[-30,-100],[-50,-70],[-16,-39],[23,-37],[25,-29],[29,-9],[33,3],[8,9],[6,28],[-10,36],[-6,33],[61,25],[57,14],[45,42],[11,28],[10,46],[-23,72],[-20,54],[-68,129],[-51,66],[32,99],[53,110],[20,27],[6,17],[6,30],[-5,31],[-6,20],[-54,83],[-39,27],[-123,16],[-31,13],[-90,85],[-11,19],[-20,61],[-7,15],[-25,16],[-83,35],[-58,15],[-84,4],[-51,18],[-76,56],[-8,19],[-22,73],[-17,37],[5,28],[27,58],[19,51],[-23,44],[-33,14],[-36,21],[-15,40],[-9,43],[-1,34],[-6,39],[17,33],[38,34],[-9,24],[5,31],[247,41],[96,11],[480,4],[34,12],[209,20],[89,24],[94,-25],[34,1],[69,7],[45,51],[102,20],[170,21],[84,-4],[19,-15],[19,-21],[-92,-62],[-92,-56],[-76,-24],[-74,-49],[-7,-19],[-2,-12],[2,-39],[5,-25],[77,-32],[59,-44],[57,-32],[45,-19],[11,11],[-165,104],[-42,23],[-17,25],[8,38],[17,17],[26,19],[17,9],[62,20],[206,27],[49,51],[21,30],[56,31],[-19,13],[-46,8],[-36,18],[-142,183],[-35,28],[-109,20],[-49,21],[50,62],[59,16],[40,-4],[35,-17],[65,-51],[92,22],[-35,23],[-58,26],[-54,42],[-77,37],[-86,24],[-90,10],[25,55],[50,-7],[16,17],[23,33],[125,-77],[59,21],[50,35],[104,93],[14,42],[-50,23],[-41,11],[-56,-2],[-5,25],[24,33],[45,13],[139,-36],[232,93],[63,45],[161,58],[79,-7],[164,77],[227,33],[132,1],[102,42],[156,15],[54,17],[263,43],[146,34],[23,27],[-131,-22],[-31,20],[-27,-13],[-20,-19],[-63,34],[-17,-9],[-13,-18],[-23,-6],[-27,4],[-9,41],[32,55],[37,-29],[43,42],[27,1],[81,-26],[54,27],[72,13],[79,-12],[33,3],[19,25],[129,-22],[89,15],[61,-2],[95,-13],[43,-18],[-25,-42],[-92,-68],[25,-11],[53,31],[159,46],[26,-9],[-18,-40],[-11,-17],[106,23],[91,50],[40,9],[41,-31],[39,28],[9,28],[69,6],[28,26],[49,19],[40,8],[89,36],[31,-11],[59,-9],[56,-17],[105,-40],[14,-15],[13,-3],[30,-28],[-22,-42],[-24,-60],[-45,-28],[27,-3],[19,8],[36,40],[32,28],[-8,119],[-57,60],[-44,20],[-102,63],[-34,27],[-46,28],[18,17],[196,-22],[100,11],[108,-7],[144,27],[61,-28],[69,1],[80,-23],[24,27],[-131,29],[-58,-3],[-21,15],[22,34],[25,51],[-25,44],[-24,24],[-4,45],[23,52],[54,22],[30,42],[63,55],[303,179],[145,68],[55,9],[64,-6],[126,57],[47,0],[175,-45],[42,-33],[96,-26],[111,-14],[51,-21],[25,-24],[21,-33],[-90,-22],[-97,-66],[-132,-36],[-163,-24],[-34,-18],[311,-5],[90,4],[19,-57],[30,-2],[90,27],[54,2],[102,-20],[21,11],[44,1],[94,-25],[42,-37],[-67,-60],[-69,-53],[-84,-90],[-26,7],[-44,2],[8,-45],[74,2],[40,-20],[92,25],[130,-8],[27,7],[50,28],[13,52],[22,33],[43,11],[47,-10],[80,0],[203,17],[170,-22],[136,27],[178,-20],[78,-21],[57,-37],[52,-11],[42,-29],[43,-42],[-21,-34],[-21,-23],[56,25],[43,6],[32,-15],[57,-15],[18,-95],[17,-18],[15,-33],[-21,-30],[-18,-14],[45,3],[63,32],[13,11],[16,24],[-24,23],[-21,14],[27,11],[52,-4],[26,-42],[17,-38],[38,-127],[81,17],[4,-38],[-34,-87],[-36,-64],[-14,-14],[-23,-3],[9,34],[-14,20],[-21,12],[-74,12],[-138,79],[-37,8],[-8,-4],[-4,-7],[77,-54],[63,-95],[57,28],[23,-5],[31,-45],[56,-18],[47,-30],[-31,-91],[-192,-160],[-203,-93],[-90,-65],[-158,-47],[-113,-64],[-144,-47],[-42,-51],[-107,-32],[8,-17],[12,-18],[-13,-30],[-15,-23],[-83,-47],[-121,-32],[-243,-195],[-121,-40],[-137,-2],[-29,-18],[-104,-123],[-32,-26],[-136,-13],[-142,-201],[-79,-68],[-69,-37],[72,7],[85,27],[99,65],[26,30],[14,34],[29,27],[45,19],[176,21],[72,-8],[106,6],[70,36],[41,13],[37,4],[19,26],[62,5],[143,34],[21,12],[46,51],[85,-19],[61,10],[159,91],[96,34],[26,24],[-19,17],[-22,12],[-92,-32],[-83,-10],[-94,8],[-13,13],[-11,32],[30,47],[26,28],[60,37],[49,13],[183,-40],[38,-5],[21,66],[58,-3],[58,-11],[-25,-14],[-64,-21],[20,-48],[28,-33],[112,-47],[95,-21],[70,1],[110,20],[17,14],[23,38],[-28,72],[27,-9],[27,-18],[42,-44],[40,-75],[25,-35],[-15,-37],[-57,-71],[33,-39],[59,-26],[0,-116],[-4,-56],[-29,-61],[-34,-26],[-33,-38],[8,-36],[8,-22],[35,-42],[98,-13],[13,11],[-23,13],[-66,20],[-26,16],[-23,38],[27,42],[29,31],[35,71],[11,50],[-7,52],[23,24],[35,25],[17,5],[16,11],[-25,13],[-23,6],[-48,32],[-8,41],[96,17],[57,29],[210,13],[144,55],[322,-15],[226,-45],[317,-5],[117,-30],[11,-11],[7,-22],[-50,-9],[-83,0],[-22,-56],[14,-70],[148,-74],[129,-31],[90,-49],[48,-4],[188,5],[110,-25],[100,19],[109,0],[38,-5],[40,-37],[64,-10],[77,-1],[43,7],[17,9],[-6,15],[-64,22],[7,27],[25,6],[107,-36],[44,-6],[39,27],[29,49],[16,33],[17,17],[14,2],[14,10],[-34,39],[-33,49],[-7,32],[-10,16],[-4,59],[30,60],[21,17],[85,-23],[38,36],[24,14],[102,24],[43,-2],[71,-23],[228,-110],[-5,-42],[54,12],[26,17],[61,11],[41,18],[11,-7],[14,-17],[-10,-25],[-14,-25],[9,-15],[12,-3],[61,-31],[79,57],[32,55],[22,11],[197,-38],[59,-21],[12,-12],[8,-20],[32,-22],[39,-12],[-5,-18],[-2,-19],[92,-3],[40,-16],[44,-25],[-5,-29],[11,-17],[41,-2],[11,3],[-13,-39],[-55,-42],[-33,-16],[-38,-28],[21,-5],[95,-8],[59,-56],[6,-41],[-37,-16],[-84,-52],[-50,-21],[-35,-2],[-25,-7],[36,-22],[158,-6],[46,-28],[36,-70],[0,-86],[-36,-43],[-97,-7],[-127,96],[-78,37],[-109,71],[-21,-12],[32,-60],[51,-34],[92,-93],[154,-192],[36,16],[21,24],[10,31],[-9,43],[25,-21],[23,-38],[46,-64],[-62,3],[-80,-21],[-29,-26],[22,-35],[59,-5],[25,-49],[46,-60],[103,-164],[73,-31],[71,-68],[71,-32],[37,-2],[25,42],[20,-15],[19,-76],[34,-33],[38,-2],[31,13],[45,36],[36,42],[58,116],[38,58],[36,24],[-13,28],[4,33],[26,77],[36,91],[27,49],[66,97],[25,18],[18,-32],[14,-42],[10,-18],[10,-7],[81,-85],[82,-67],[73,-33],[115,-32],[167,5],[30,42],[58,32],[94,16],[55,39],[91,11],[57,-6],[88,-28],[197,-89],[55,-33],[29,-35],[64,-52],[41,-25],[40,-18],[14,5],[-5,15],[-20,15],[-16,19],[47,19],[5,15],[17,12],[62,11],[-61,19],[-20,3],[-29,11],[2,27],[19,19],[15,36],[19,23],[32,18],[24,3],[57,-23],[41,42],[30,-3],[63,-43],[56,-64],[31,0],[87,26],[98,1],[-13,38],[-68,83],[8,106],[-47,24],[-54,14],[78,27],[58,87],[46,8],[48,16],[-15,11],[-143,9],[-31,-10],[-21,-26],[-71,0],[-8,59],[-2,37],[93,79],[35,17],[236,-2],[71,15],[104,39],[-27,25],[-3,50],[-89,73],[7,16],[9,11],[27,0],[140,-19],[58,-39],[151,-40],[404,-13],[45,-14],[174,-17],[73,-19],[175,-23],[80,-17],[63,-25],[103,-15],[47,-17],[-5,-53],[-213,7],[-71,17],[-88,2],[-33,-8],[-53,-44],[-63,-23],[-53,-4],[35,-38],[49,-10],[158,49],[432,24],[66,-4],[-7,-34],[-58,-65],[-55,-50],[-80,-52],[-30,0],[63,110],[-26,6],[-24,-3],[-70,46],[-11,2],[-14,-11],[0,-16],[-13,-64],[26,-27],[0,-46],[-97,-29],[-38,3],[-40,18],[-17,0],[-5,-15],[8,-27],[-1,-13],[-15,-22],[-8,-23],[24,-26],[31,-7],[171,29],[75,36],[82,65],[146,159],[65,54],[37,21],[48,8],[269,-17],[156,-34],[149,-51],[74,-42],[54,-57],[10,-24],[5,-32],[-37,-30],[-167,-10],[-64,-17],[-24,-19],[-3,-11],[-8,-17],[12,-14],[75,-2],[72,-13],[100,-36],[15,-12],[32,-35],[10,-6],[149,6],[10,-12],[9,-26],[-39,-40],[-39,-27],[-80,-64],[40,23],[161,55],[41,10],[49,-4],[121,-50],[50,-39],[92,-112],[-26,-12],[-66,-12],[208,-85],[80,1],[184,24],[93,1],[172,54],[171,35],[157,2],[83,33],[220,-1],[211,-11],[164,-20],[185,-60],[180,-83],[105,-82],[21,-25],[30,-57],[13,-48],[13,-65],[-6,-51],[-26,-36],[-16,-45],[2,-53],[-31,-69],[29,-49],[80,-32],[172,-42],[47,-29],[6,-85],[14,-71],[15,-136],[29,-35],[47,-32],[9,-45],[-59,-144],[-37,-27],[-39,-40],[69,14],[35,53],[38,97],[36,16],[19,31],[0,92],[-23,79],[0,57],[15,46],[114,95],[61,38],[58,22],[158,19],[72,19],[82,-13],[58,5],[67,20],[59,-10],[98,-63],[347,-14],[61,-22],[233,-27],[18,0],[52,31],[154,108],[64,-7],[26,-17],[27,-43],[28,-27],[23,-75],[20,-102],[33,-18],[46,-6],[100,-38],[101,-48],[29,-92],[54,-77],[126,7],[132,16],[127,126],[0,52],[-31,74],[-47,72],[-37,112],[-117,25],[11,33],[44,39],[40,61],[6,46],[-11,98],[106,-7],[106,-11],[201,-44],[163,-18],[86,-28],[52,-32],[62,-23],[21,57],[23,14],[82,-33],[60,-9],[103,4],[130,-15],[141,3],[127,25],[47,-5],[52,-20],[84,-53],[143,-71],[130,-20],[150,-66],[141,-25],[113,-38],[16,-14],[5,-21],[8,-18],[89,-20],[165,-143],[-99962,-16],[56,-25],[56,-20],[23,6],[12,-2],[32,-35],[21,-16],[113,-41],[51,-45],[42,-52],[-21,10],[-38,34],[4,-39],[12,-27],[61,-26],[64,-20],[40,-24],[14,-21],[8,-38],[-10,-33],[37,12],[35,30],[-18,23],[-117,81],[-25,27],[34,-14],[158,-103],[43,-39],[-18,-8],[-13,-23],[14,-10],[19,8],[31,4],[31,-13],[35,-27],[73,-32],[434,-254],[10,-44],[12,-21],[7,-26],[2,-43],[-39,-51],[61,5],[9,6],[16,21],[17,14],[24,-17],[19,-34],[-6,-46],[-17,-38],[-2,-63],[15,-54],[15,-22],[13,-26],[3,-76],[-27,-34],[-15,-59],[17,-6],[52,-5],[18,-11],[30,-27],[7,-26],[7,-36],[9,-34],[7,-16],[8,3],[30,46],[14,14],[34,12],[19,-53],[-13,-88],[11,0],[8,10],[11,23],[15,14],[19,32],[16,39],[-19,31],[-21,20],[-51,10],[-26,24],[-10,29],[26,12],[22,21],[15,52],[-4,28],[-6,27],[-12,39],[-19,23],[-36,11],[-16,22],[-25,-1],[-25,6],[-9,8],[1,16],[28,7],[157,2],[57,22],[25,-6],[26,-16],[94,-21],[-3,-10],[-16,-10],[-27,-46],[-6,-26],[-1,-34],[24,-6],[24,14],[-12,27],[-3,33],[10,14],[13,3],[24,-24],[27,-8],[89,-10],[26,3],[8,13],[-18,14],[-116,33],[-2,17],[108,-22],[48,-20],[48,-15],[67,5],[66,-24],[63,-65],[58,-82],[59,-49],[61,-36],[103,-99],[13,-8],[10,-14],[-19,-16],[-17,-25],[34,17],[33,12],[17,-3],[15,-12],[10,-21],[5,-20],[-14,-18],[99,-4],[30,-12],[14,-49],[-28,-34],[-17,5],[-16,14],[-15,1],[-44,-14],[-67,-46],[-38,-37],[-7,-24],[6,-65],[-5,-31],[-29,-20],[-64,12],[-29,13],[-33,17],[-31,24],[-41,39],[-12,4],[-8,-10],[13,-24],[28,-31],[47,-40],[22,-45],[-14,-23],[-18,-5],[-13,1],[-41,14],[-29,3],[-90,-13],[-32,-8],[-11,7],[-3,19],[-48,15],[-29,2],[-13,6],[-11,21],[-32,30],[-48,11],[-31,2],[-17,-7],[63,-39],[56,-67],[-11,-13],[-7,-14],[31,-1],[21,4],[5,-17],[-16,-71],[-11,-15],[-98,-16],[25,-12],[25,-3],[29,3],[26,-13],[17,-44],[3,-46],[-25,-27],[-27,-21],[-53,-33],[-56,-14],[-29,3],[-28,-7],[-19,-17],[-5,-17],[24,11],[28,-6],[27,-21],[-3,-17],[-26,-18],[-5,-14],[9,-24],[-3,-20],[13,-11],[30,-4],[36,-14],[36,-20],[14,-16],[12,-24],[4,-24],[-6,-11],[-82,-4],[-12,3],[-5,28],[-10,22],[-31,16],[-12,-11],[9,-79],[-12,-24],[-14,-18],[-41,-10],[-33,6],[-28,37],[0,32],[19,19],[0,26],[-6,30],[-18,-35],[-23,-29],[-35,-37],[-18,-4],[-17,4],[-47,26],[-29,23],[-56,74],[-32,34],[-70,46],[-72,34],[-57,22],[-31,-3],[-30,-9],[-39,5],[-13,8],[-11,19],[-11,10],[-54,46],[-38,37],[-2,25],[8,30],[-7,73],[-18,69],[-48,68],[-126,44],[-104,31],[-37,7],[-33,-6],[-87,-57],[-59,-8],[-170,-3],[-28,6],[-26,24],[-6,33],[8,59],[-1,25],[-7,9],[-9,-1],[-33,24],[-31,40],[-25,41],[-16,56],[22,3],[31,-14],[5,13],[10,51],[21,24],[9,18],[14,68],[2,49],[-24,-26],[-39,-68],[-18,-20],[-14,-9],[-13,-4],[-30,13],[-22,17],[-1,65],[-10,17],[-10,-12],[-4,-24],[-28,-4],[-13,-10],[7,-39],[-3,-33],[-27,-13],[-53,-7],[-19,32],[-16,-45],[-12,-51],[-2,-67],[17,-56],[25,-27],[53,-40],[23,-28],[6,-37],[-2,-33],[-28,-42],[-18,-34],[-33,-81],[-19,-33],[-82,-69],[99951,-19],[-49,-66],[-56,-57],[-83,-23],[-126,-87],[-49,-16],[-65,40],[-149,26],[-47,35],[-68,88],[-23,13],[-21,35],[-82,39],[-72,-25],[-58,19],[-20,-14],[30,-12],[54,-11],[82,5],[27,-9],[24,-31],[28,-49],[-21,-32],[-22,-11],[-66,36],[-76,-5],[-36,9],[-102,60],[-78,-67],[-107,-35],[-83,-4],[-152,-53],[41,-2],[111,38],[65,0],[96,21],[51,24],[24,23],[31,23],[31,-11],[22,-24],[14,-35],[14,-45],[-18,-24],[-18,-12],[-22,-33],[102,56],[62,-33],[31,5],[58,49],[93,32],[11,-6],[11,-16],[-15,-94],[6,-74],[71,-81],[73,-47],[26,-2],[24,9],[9,43],[18,32],[23,-29],[19,-31],[27,-76],[-1,-23],[-6,-45],[23,-20],[32,-6],[12,-71],[11,-101],[-14,-9],[-16,0],[-51,-26],[7,-18],[52,-10],[15,-21],[-11,-47],[3,-21],[18,-5],[12,28],[-3,39],[5,17],[35,-81],[0,-31],[30,-36],[85,-54],[15,-24],[5,-40],[-21,-12],[-20,-28],[12,-40],[22,-32],[36,-12],[17,-52],[0,-49],[-26,-43],[-53,-59],[-31,-24],[-12,-42],[-3,-44],[-21,2],[-23,19],[-262,110],[-99,21],[-87,2],[-16,7],[1,26],[5,24],[13,29],[-6,26],[-11,2],[-11,-20],[-24,0],[-23,23],[-19,-7],[-9,-32],[-7,-17],[0,-20],[12,-18],[50,-20],[-8,-18],[-70,-14],[-57,-18],[-74,-54],[-30,-38],[-198,-93],[-48,-32],[-21,-4],[-27,-11],[-21,-39],[-110,-55],[-23,5],[-29,-46],[-27,-26],[-63,-3],[-41,-13],[-88,-67],[-55,21],[-65,-91],[-72,-87],[-21,0],[-55,36],[-14,-19],[9,-35],[19,-37],[-11,-10],[-22,10],[-16,2],[-12,-11],[2,-27],[-31,-33],[-24,-3],[-28,-11],[-10,-29],[9,-32],[-50,-36],[-41,-48],[-19,-8],[-22,-21],[-24,-16],[-28,3],[-67,-67],[-150,-117],[-42,-15],[-53,-36],[-5,-23],[0,-30],[-21,-48],[-25,-122],[-8,-22],[-12,-25],[-55,12],[-48,46],[-15,22],[-8,25],[-3,40],[-9,19],[-11,9],[-55,99],[-95,68],[-14,23],[-121,-18],[-33,-1],[-58,17],[-90,-11],[-109,-37],[-33,-23],[-111,-36],[-73,-57],[-142,-208],[-34,-43],[-16,-9],[-24,-4],[-10,42],[-4,33],[9,63],[17,52],[17,96],[5,39],[12,41],[-48,-3],[-66,-71],[-100,-69],[-46,-18],[-36,-41],[-26,-5],[-30,-15],[-3,-89],[-15,-48],[-18,-10],[-28,-2],[-21,19],[-30,71],[-40,37],[-24,7],[-18,-9],[-35,-48],[-38,-44],[6,50],[-33,19],[-29,11],[-36,2],[-11,-7],[-14,-29],[-33,-37],[-22,-15],[-23,-30],[-13,-31],[-12,-44],[-14,-107],[1,-125],[-53,-99],[-20,10],[-10,-6],[-10,-13],[18,-55],[-10,-19],[-9,-13],[-25,-14],[-56,-81],[-53,-52],[-87,-151],[-25,-100],[-25,-113],[12,-55],[10,-36],[16,-25],[28,-27],[59,-29],[-5,-19],[0,-16],[21,28],[15,79],[37,26],[18,-1],[118,-63],[23,-27],[-4,-60],[-7,-28],[-22,-42],[-42,-50],[-49,-69],[-5,-43],[0,-23],[13,-81],[1,-46],[-6,-85],[3,-37],[13,-31],[20,-20],[35,11],[33,-9],[25,-22],[-4,-71],[15,-67],[11,-124],[-21,-34],[-20,-21],[-39,-54],[-21,-6],[-37,18],[-58,96],[23,57],[50,40],[23,28],[17,42],[-26,-8],[-18,-18],[-57,8],[-23,-20],[-28,-32],[11,-80],[-19,-15],[-35,-27],[-52,-34],[-17,-23],[-45,-143],[-41,-107],[-15,-92],[2,-79],[15,-88],[11,-38],[48,-82],[23,-64],[7,-77],[-38,-37],[-67,-89],[-28,-10],[-92,2],[-46,45],[-54,-11],[-45,-22],[-71,-63],[-63,-82],[-60,-57],[-18,-34],[-24,-71],[-22,-129],[8,-64],[12,-30],[11,-39],[-16,-61],[0,-38],[29,-61],[6,-84],[-21,-2],[-49,60],[-52,4],[-124,-69],[-52,-40],[-57,-80],[-17,15],[-12,46],[-21,20],[-26,-10],[-11,-43],[36,-20],[13,-28],[-21,-107],[-15,-36],[6,-95],[-2,-45],[-8,-45],[-37,-123],[-63,-162],[-78,-118],[-54,-41],[-27,-31],[-12,-41],[-80,-113],[-98,-119],[-28,-21],[-6,45],[-3,44],[-12,59],[-36,49],[-6,40],[-6,54],[-3,252],[-31,262],[-3,82],[-38,67],[-21,70],[-12,68],[-3,81],[-41,425],[-13,106],[-55,342],[-24,198],[-16,192],[-2,86],[24,257],[21,160],[74,359],[11,33],[12,17],[128,138],[56,75],[33,80],[36,101],[-4,55],[-4,31],[-14,36],[-30,41],[11,18],[12,14],[31,15],[64,-31],[65,13],[60,127],[86,-19],[65,22],[18,-9],[13,43],[36,46],[66,68],[97,82],[48,55],[27,52],[40,50],[39,62],[71,186],[140,154],[55,88],[45,31],[40,15],[101,126],[64,105],[85,72],[25,46],[44,108],[18,26],[55,41],[124,71],[72,71],[106,10],[31,28],[33,16],[35,23],[-43,63],[10,33],[8,16],[76,74],[31,60],[-4,25],[-5,19],[-47,24],[9,55],[13,48],[38,40],[13,94],[2,99],[37,142],[22,32],[87,71],[20,2],[60,-24],[66,-12],[23,-22],[5,19],[-3,24],[18,9],[38,-10],[-5,27],[-98,14],[-70,31],[-63,60],[-41,17],[-45,-5],[-257,-84],[-12,-23],[-12,-32],[16,-47],[-13,-21],[-12,-14],[-14,-31],[-12,-61],[3,-59],[-31,-92],[-3,-57],[55,-32],[14,-21],[-16,-32],[-17,-19],[-14,-24],[-11,-9],[-15,-6],[-20,31],[-18,62],[-29,4],[-10,-10],[-5,-24],[-25,-2],[-28,12],[-32,-5],[-57,-70],[-319,-333],[-34,-40],[-42,-80],[-79,-8],[-31,-18],[-23,-24],[-31,-16],[1,30],[6,22],[7,59],[43,111],[-27,12],[-27,1],[-50,-23],[-34,-37],[-26,8],[13,33],[31,66],[-9,61],[-9,33],[13,18],[65,123],[23,64],[20,84],[1,26],[-4,32],[-19,5],[-16,0],[-128,-83],[-47,-23],[-15,36],[-21,15],[-35,61],[-30,9],[-31,-4],[-70,-41],[-77,-23],[-59,8],[-51,-35],[-23,-6],[-75,24],[-91,2],[-28,-30],[-79,-41],[-54,-64],[-28,-20],[-31,-28],[-14,-120],[-41,-39],[-38,-29],[-80,-92],[-56,-126],[-38,-54],[-81,-76],[-126,-100],[-110,-162],[-38,-122],[-14,-4],[-27,-25],[-7,-60],[1,-41],[-17,-33],[-17,-42],[18,-26],[16,-5],[24,4],[63,34],[108,-52],[54,-52],[-4,-52],[2,-46],[-40,3],[-53,-4],[-34,-27],[-68,43],[-23,-16],[-36,-46],[-65,-19],[-33,23],[-55,63],[-93,-6],[-24,-71],[-21,2],[-33,-7],[-55,-82],[-18,-8],[-67,16],[-48,42],[-23,2],[-43,-19],[-21,-50],[-107,-25],[-105,5],[-57,119],[107,47],[63,-10],[72,8],[75,37],[-26,31],[-18,7],[-45,-4],[-40,23],[-87,116],[-38,21],[-49,13],[-38,1],[-14,-8],[-20,-28],[-13,-27],[-12,-9],[-26,5],[-31,22],[-37,-7],[16,17],[35,18],[-58,20],[-37,28],[-34,7],[-156,69],[-60,-6],[-37,-19],[-63,-56],[17,-41],[14,-19],[8,-22],[-20,-4],[-58,-4],[-35,33],[-25,-48],[10,-43],[40,15],[21,-18],[-14,-49],[-52,-15],[-65,3],[-65,87],[-107,-15],[-51,-56],[-49,-13],[-131,56],[-66,5],[-74,48],[-26,-15],[-47,-121],[-63,-29],[-32,16],[-29,76],[-20,25],[-56,23],[-298,-22],[-100,19],[-70,2],[-96,-39],[-92,15],[-170,-75],[-70,-50],[-84,-88],[-76,-147],[-42,-55],[-71,-70],[-100,-64],[-54,-65],[-30,-53],[-52,-200],[-14,-30],[-123,-72],[-39,-80],[-17,-20],[-51,-34],[-31,-56],[-17,-16],[-73,-40],[-60,-100],[-85,-70],[-123,-194],[-11,-23],[-10,-52],[-19,-38],[-106,-169],[-33,-16],[-53,-79],[-54,-47],[-49,-56],[-61,-59],[-92,-67],[-31,-39],[-48,-90],[-118,-111],[-59,-27],[-77,-98],[-8,-23],[-6,-36],[13,-63],[19,-14],[31,-9],[115,-62],[107,17],[95,0],[37,6],[23,-2],[8,-34],[-1,-63],[-14,-57],[-11,-168],[-13,-75],[10,-73],[23,-13],[23,33],[37,5],[38,-15],[28,117],[-23,18],[-22,42],[13,31],[66,57],[41,5],[39,-4],[-43,-73],[-17,-15],[-13,-4],[-18,-14],[38,-42],[41,-32],[59,-14],[-14,-25],[-39,-22],[-36,-91],[-56,-44],[-26,-30],[9,-19],[21,-4],[114,12],[59,25],[84,71],[35,105],[32,29],[9,0],[11,-7],[1,-74],[-45,-83],[-32,-47],[-12,-40],[19,0],[37,8],[16,19],[42,101],[11,72],[6,100],[-5,60],[3,43],[-16,43],[11,13],[113,-59],[60,-14],[108,48],[24,-12],[18,-29],[89,-89],[17,-29],[29,-108],[95,-125],[88,-59],[3,-23],[56,-69],[44,-24],[7,-62],[-20,-50],[-41,-48],[-82,44],[-13,-2],[10,-28],[59,-81],[47,-34],[3,-108],[-6,-59],[-31,-66],[10,-38],[44,-56],[22,-22],[22,-32],[-28,-70],[-5,-78],[-30,-35],[-36,-76],[-55,-62],[-26,-119],[-42,-105],[-5,-104],[-7,-37],[-34,-108],[-13,-146],[17,-239],[8,-14],[16,-14],[-3,-17],[-8,-11],[-33,-71],[0,-49],[13,-37],[2,-95],[-24,-153],[-9,-24],[-10,-39],[-4,-36],[-7,-22],[-4,-39],[7,-34],[12,-17],[-43,-110],[-15,-144],[-16,-58],[-31,-57],[-66,-83],[-24,-52],[-43,-66],[-41,-51],[-57,-145],[-46,-145],[-116,-188],[-15,-46],[-9,-50],[-30,-84],[-15,-116],[-35,-46],[-29,-122],[-94,-186],[-23,-63],[-72,-103],[-77,-142],[-96,-128],[-18,-53],[-37,-58],[-40,-90],[-58,-90],[-12,-60],[-19,-42],[-43,-28],[-31,-39],[-95,-231],[-12,-42],[-2,-37],[-62,-86],[-35,-92],[-60,-57],[-62,-78],[-149,-144],[-41,-54],[-83,-68],[-34,-1],[-72,-37],[-47,-38],[-28,14],[-17,50],[-21,-2],[-16,-7],[-43,48],[-37,-3],[-26,22],[-50,-15],[9,205],[-7,43],[-21,-40],[-57,-72],[-23,-14],[-22,0],[9,44],[31,62],[-10,10],[-10,3],[-40,-27],[-20,-30],[-58,-119],[-34,-100],[-28,-29],[-13,-43],[-24,-41],[-37,11],[-22,-7],[-53,23],[-13,-10],[35,-77],[-29,-113],[-12,-14]],[[63178,98417],[127,-23],[95,6],[29,-3],[28,-7],[28,-16],[38,-35],[0,-49],[-17,-2],[-161,22],[-74,51],[-20,5],[-29,-13],[-25,-31],[-27,-8],[-31,-39],[-29,5],[-15,-4],[-37,-27],[-93,0],[-15,-12],[-30,-38],[-38,-10],[-66,-6],[-22,21],[-10,33],[-15,17],[-92,-19],[-69,13],[-67,22],[-68,8],[61,23],[334,48],[131,12],[62,34],[92,22],[25,0]],[[63966,98460],[42,-10],[103,2],[32,-14],[149,-84],[38,-2],[31,-30],[-154,-49],[-52,-36],[-189,-8],[-121,-17],[-26,-15],[12,-26],[-58,-29],[-191,-4],[-24,-9],[-37,-31],[3,-5],[65,-8],[10,-6],[9,-14],[5,-20],[-9,-26],[-24,-4],[-26,3],[-60,20],[-7,-7],[-6,-14],[-19,-28],[-22,-8],[-61,21],[-20,-6],[-19,-13],[-24,-6],[-56,-4],[-29,17],[25,23],[70,35],[-23,15],[-70,4],[-55,-9],[-28,-24],[-26,-5],[-72,2],[-40,31],[-30,12],[-26,25],[211,83],[70,32],[67,16],[87,9],[27,10],[27,4],[17,-6],[44,-29],[129,5],[27,24],[2,56],[-13,33],[27,63],[74,25],[171,34],[43,2]],[[68823,95758],[-111,-44],[-66,-30],[-65,-21],[-66,-15],[-104,-36],[-184,-46],[-116,-37],[-127,-30],[-134,-39],[-134,-27],[-33,-2],[-96,-38],[-75,-16],[-272,-85],[-125,-63],[-36,-5],[-36,3],[-30,-20],[-28,-33],[-59,-34],[-30,-31],[-30,-24],[-18,-8],[-34,2],[-16,-2],[-55,-27],[-10,-22],[59,-14],[13,-24],[-17,-16],[-38,-23],[-22,-23],[-40,-23],[-27,-7],[-65,1],[-4,-29],[11,-18],[-6,-16],[-22,-15],[-21,2],[-99,45],[-16,-15],[-7,-32],[-3,-34],[-13,-25],[-17,-13],[-31,-13],[-109,21],[-9,-20],[17,-25],[23,-54],[5,-22],[-13,-36],[-49,-56],[-187,-67],[3,-23],[21,-44],[5,-27],[-8,-26],[-24,-21],[-28,0],[-15,4],[-43,29],[-37,7],[-7,-14],[49,-39],[21,-51],[-23,-27],[-90,-61],[-47,-80],[-92,-35],[-57,-5],[-56,10],[-53,18],[-135,7],[-75,20],[-76,36],[-66,-3],[-56,-18],[-74,-39],[-47,75],[20,35],[-101,90],[-22,40],[25,19],[31,13],[59,36],[59,29],[61,9],[10,5],[25,43],[27,35],[25,20],[28,33],[89,134],[21,10],[184,26],[16,8],[-53,27],[-54,-1],[-25,9],[-14,19],[-8,22],[21,16],[71,81],[84,58],[78,35],[-19,9],[-25,23],[-95,-6],[-37,32],[-12,19],[-3,19],[31,25],[32,15],[35,-4],[35,-13],[28,-15],[27,-24],[23,1],[85,84],[-13,19],[-5,29],[9,14],[41,13],[27,5],[59,-6],[85,-18],[7,9],[21,56],[21,30],[86,50],[-5,15],[-4,25],[100,33],[65,33],[63,45],[32,9],[32,2],[65,19],[121,22],[71,22],[23,48],[45,17],[90,7],[35,-3],[20,-20],[39,1],[15,11],[16,17],[-5,29],[-1,37],[34,23],[13,5],[102,9],[60,-4],[125,-28],[65,-7],[87,9],[52,-5],[154,42],[261,39],[68,28],[67,33],[34,7],[35,2],[31,11],[61,28],[30,7],[33,0],[30,20],[26,43],[29,33],[79,43],[134,60],[121,23],[75,25],[32,2],[102,-12],[130,-33],[59,-36],[49,-47],[10,-17],[9,-30],[-14,-28],[-9,-28],[11,-22],[-95,-71],[-93,-78],[-16,-17],[-111,-27]],[[65366,94071],[130,-23],[97,-7],[59,-18],[22,-14],[-9,-36],[-17,-14],[-41,-47],[-6,-28],[7,-45],[-6,-33],[-13,-24],[-11,-10],[-73,0],[-27,-13],[-1,-26],[-5,-29],[-24,-42],[-48,-13],[-11,-16],[4,-27],[-17,-21],[1,-32],[9,-18],[2,-37],[33,-54],[-6,-22],[-26,-43],[-8,-53],[-21,-46],[48,-38],[21,-50],[19,-53],[57,-105],[62,-94],[114,-137],[122,-104],[48,-29],[116,-48],[20,-16],[19,-21],[-49,-39],[-51,-14],[-5,-18],[-28,-10],[-138,34],[-7,5],[-15,24],[-16,18],[-35,3],[-35,-11],[21,-22],[23,-7],[40,-41],[-17,-16],[-18,-2],[-82,55],[-7,-7],[-8,-16],[-40,18],[-10,-13],[-31,-6],[-25,15],[0,19],[-5,10],[-125,-15],[-52,0],[-51,7],[-61,36],[-11,-16],[-2,-19],[-23,8],[-51,29],[-37,12],[-133,28],[-94,34],[24,16],[40,8],[1,21],[-7,29],[-1,29],[23,20],[52,-9],[-7,32],[25,6],[47,-18],[18,11],[-75,41],[-82,58],[8,21],[-29,5],[-30,-1],[-25,34],[4,45],[22,31],[-13,6],[-127,-27],[-64,6],[-72,18],[-66,-26],[-67,-9],[-35,9],[-34,20],[-28,26],[-22,45],[-20,74],[-3,28],[4,62],[11,27],[28,52],[19,16],[43,25],[22,6],[51,-12],[51,-1],[22,14],[21,25],[15,32],[35,18],[10,10],[11,20],[12,31],[2,27],[10,26],[32,39],[-12,24],[5,16],[21,29],[-64,7],[-22,13],[-21,19],[6,18],[8,13],[64,48],[28,15],[31,7],[31,0],[33,-5],[32,7],[-34,33],[-3,22],[-13,53],[3,25],[14,21],[30,24],[43,8],[34,12],[33,19],[31,3],[63,-12],[31,2],[34,11],[97,40],[36,11],[38,-3],[50,-15],[55,-28]],[[76812,98545],[10,-26],[36,-21],[18,-21],[183,-67],[80,-8],[36,-17],[10,-20],[-3,-37],[-31,0],[-22,-12],[-124,-15],[-30,-22],[-24,-45],[13,-9],[12,-13],[37,-77],[10,-12],[37,-11],[-33,-29],[-35,-19],[-366,-37],[-249,-15],[-83,-16],[-27,2],[-65,-29],[-127,-38],[-61,0],[-181,53],[-222,45],[-31,25],[-55,15],[-71,12],[-31,51],[45,35],[58,34],[97,12],[92,20],[69,49],[43,48],[78,51],[-135,-13],[-51,7],[5,17],[28,36],[15,12],[49,19],[35,36],[81,25],[39,4],[38,-1],[70,12],[70,18],[66,10],[65,5],[63,14],[62,28],[27,48],[179,5],[28,-11],[22,-29],[26,-10],[31,-6],[79,-48],[15,-14]],[[77131,98017],[64,-37],[31,-41],[-30,-11],[-28,-28],[-13,-34],[-37,-27],[-10,-43],[17,-8],[20,12],[41,41],[53,28],[58,-16],[23,6],[40,39],[-7,33],[16,20],[18,5],[75,-4],[119,-17],[21,-17],[29,-10],[17,-16],[53,-13],[26,-12],[35,-28],[32,-42],[-40,-22],[-22,-40],[-9,-9],[-7,-15],[-3,-35],[-6,-30],[-7,-13],[-5,-17],[5,-45],[-12,-35],[-40,-27],[-41,-1],[-61,18],[-18,-1],[-17,-7],[76,-38],[56,-56],[65,-13],[18,-6],[23,-52],[8,-26],[-108,-62],[-28,-11],[-172,-9],[-113,-18],[-36,4],[-63,15],[-42,-6],[-60,10],[-37,0],[-85,23],[-88,38],[-17,18],[-18,12],[-105,10],[-23,8],[-153,-9],[-26,6],[-47,50],[-27,1],[-84,-29],[-31,2],[-64,19],[-38,24],[-6,8],[-4,29],[-38,15],[-46,52],[-27,54],[-128,28],[-77,7],[-58,-2],[-56,21],[93,78],[123,41],[53,31],[61,42],[25,65],[103,40],[27,14],[36,31],[12,4],[81,-38],[16,7],[15,17],[29,19],[100,3],[85,-8],[32,8],[39,-3],[195,28],[130,8],[24,-5]],[[78578,97496],[-27,-45],[-11,-40],[-83,-133],[-10,-23],[49,20],[44,45],[27,38],[30,24],[34,0],[35,9],[65,31],[66,14],[36,-1],[34,-15],[22,-35],[24,-28],[87,-21],[13,-7],[8,-24],[-7,-25],[50,-25],[69,11],[37,-7],[36,-14],[17,-22],[14,-27],[15,-39],[9,-41],[-8,-55],[-134,-84],[-25,-8],[-62,6],[-61,-9],[-161,-44],[-199,-1],[-57,-39],[-17,1],[-17,7],[-16,13],[-121,-11],[-136,-7],[-136,-1],[-45,-28],[-139,-55],[-127,-42],[-66,-10],[-96,11],[-30,14],[-29,21],[42,27],[30,54],[37,32],[94,61],[11,24],[18,51],[11,20],[15,18],[11,22],[2,33],[6,28],[37,42],[27,20],[29,6],[71,-8],[22,3],[-16,13],[-11,50],[2,16],[10,31],[18,15],[18,10],[11,42],[-5,15],[27,20],[13,27],[32,16],[65,13],[3,34],[10,21],[14,7],[33,6],[18,-1],[24,-34],[26,-28],[34,-6],[34,2],[-20,33],[1,35],[12,22],[16,10],[34,2],[107,-24],[70,-35],[16,-18],[-13,-10],[-31,-6],[-16,-10]],[[88902,95523],[28,-11],[34,7],[32,-15],[30,-61],[14,-16],[15,-11],[15,-5],[45,-2],[20,12],[15,28],[-1,28],[-4,29],[0,39],[7,35],[10,21],[13,14],[74,43],[52,42],[71,-16],[72,-38],[127,-80],[59,-23],[71,-21],[72,-8],[35,5],[69,22],[35,2],[436,-160],[15,-13],[14,-19],[-94,-24],[-61,-42],[-21,-29],[24,-24],[20,-32],[-133,-96],[-53,-25],[-54,-8],[-110,23],[-64,-1],[-62,20],[-69,58],[-29,29],[-25,40],[-8,64],[10,55],[37,16],[32,35],[5,15],[-17,31],[-108,5],[-68,-17],[-61,-18],[18,-117],[13,-37],[18,-27],[98,-123],[22,-17],[65,-24],[55,-53],[-97,-59],[-43,-17],[-42,-10],[-26,5],[-26,12],[-28,28],[-24,30],[-31,23],[-66,-5],[-61,-20],[-61,-14],[-180,-24],[-55,-15],[-55,-5],[-71,28],[-70,39],[-22,1],[-20,-11],[-17,-24],[-9,-38],[-23,-51],[-29,-36],[-31,-16],[-32,-2],[-33,10],[-32,16],[-215,56],[-25,17],[-24,25],[-65,79],[-32,19],[-33,8],[-64,40],[-59,64],[-12,20],[-4,32],[10,23],[51,-11],[34,1],[-21,119],[15,112],[25,19],[97,-13],[-31,37],[-26,49],[16,27],[18,19],[42,15],[56,7],[17,12],[16,19],[31,20],[62,8],[107,40],[29,-1],[27,-21],[26,-30],[28,-16],[88,-39],[60,-35],[85,-71]],[[90776,95259],[73,-4],[107,43],[14,1],[260,-15],[22,-15],[2,-30],[-8,-15],[-4,-22],[32,-21],[84,-4],[53,19],[156,-10],[128,-14],[49,-32],[38,-17],[31,-20],[23,12],[22,20],[18,4],[18,-4],[-49,-122],[-18,-14],[-69,-30],[-137,-42],[-67,-13],[-152,0],[-209,16],[-57,15],[-34,18],[-64,43],[-31,16],[-103,14],[-32,8],[-60,37],[-62,30],[-154,49],[10,56],[20,56],[24,50],[26,45],[28,13],[59,-41],[-1,-47],[14,-33]],[[89655,83175],[60,-145],[2,-32],[-5,-33],[-11,-42],[-4,-44],[7,-39],[-5,-10],[49,-176],[35,-111],[11,-45],[7,-48],[11,-99],[2,-151],[-3,-50],[-8,-49],[-8,-29],[-18,-20],[-8,-54],[-4,-153],[9,-80],[17,-56],[12,-60],[2,-64],[5,-29],[27,-36],[11,-28],[3,-40],[2,-59],[4,-13],[13,-18],[56,-426],[22,-129],[64,-223],[26,-135],[17,-64],[11,-68],[9,-69],[19,-76],[25,-74],[49,-67],[22,-37],[5,-30],[2,-103],[-11,22],[-14,79],[-24,45],[-35,54],[-35,48],[-44,80],[-21,23],[-23,16],[-41,18],[-24,2],[-98,-12],[-40,-16],[-37,-37],[-21,-54],[-16,-108],[-89,-386],[-21,-101],[-8,-108],[3,-85],[6,-31],[26,-84],[21,-49],[15,-21],[18,-14],[11,-17],[10,-23],[18,-57],[23,-128],[25,-91],[11,-28],[28,7],[18,-1],[18,-8],[10,-23],[15,-101],[11,-98],[1,-26],[-20,-75],[-5,-32],[-3,-34],[-5,-27],[-9,-23],[-3,111],[-14,79],[-5,68],[-19,47],[-65,20],[-61,7],[-9,9],[-14,29],[-15,23],[-16,3],[-16,-9],[-27,-33],[-21,-51],[-15,-55],[-13,-59],[-27,-155],[-16,-51],[-20,-48],[-17,26],[-15,30],[-9,43],[-4,48],[-24,161],[10,140],[41,194],[7,63],[-6,60],[-9,60],[-6,113],[1,25],[14,65],[17,62],[20,54],[9,64],[-13,159],[-29,108],[-37,102],[-7,28],[-2,27],[32,128],[11,62],[13,134],[12,74],[9,74],[3,373],[-3,55],[-20,117],[-1,67],[9,84],[13,65],[17,63],[0,129],[-32,119],[-24,52],[-37,63],[-28,35],[-14,27],[14,9],[10,21],[-24,33],[-15,50],[-2,196],[6,49],[18,55],[16,59],[14,137],[5,141],[-9,57],[-4,116],[8,29],[31,38],[49,23],[11,-7],[38,-45],[14,-2],[15,5],[29,21],[16,52],[-21,29],[12,37],[35,13],[3,32],[-13,4],[11,46],[7,45],[-10,42],[-57,104],[-36,76],[60,-1],[18,14],[14,32],[7,33],[19,-13]],[[0,93051],[43,8],[43,15],[40,3],[40,-9],[41,2],[40,15],[32,-2],[33,-9],[122,-21],[23,-7],[39,-27],[22,-10],[22,-16],[23,-27],[43,-29],[65,-34],[14,-10],[10,-26],[-7,-30],[-83,-57],[-67,-15],[-129,-15],[-175,-43],[-72,-12],[-25,2],[-63,28],[-74,12],[99966,-10],[-65,-44],[-137,-11],[-81,-31],[-19,-2],[-40,103],[-6,26],[15,34],[41,42],[17,30],[96,54],[86,71],[47,11],[47,33],[-99967,8]],[[59948,89390],[9,-23],[3,-37],[-9,-24],[5,-20],[-18,-14],[-27,46],[-17,1],[-17,20],[-8,33],[15,9],[7,-6],[33,24],[24,-9]],[[61864,90265],[-10,-8],[-55,27],[-5,21],[2,8],[22,6],[23,-7],[17,-27],[6,-20]],[[64695,92951],[25,-42],[22,-31],[19,3],[14,-16],[4,-32],[-38,-54],[-6,-20],[16,-18],[4,-10],[-27,-8],[-5,25],[-15,24],[-32,19],[-13,16],[-14,38],[-53,40],[-34,-6],[-38,18],[-11,8],[-3,23],[16,19],[60,16],[29,-1],[31,-16],[-2,20],[3,8],[13,-3],[35,-20]],[[96677,83274],[11,-30],[-112,106],[-52,56],[-13,36],[19,0],[23,-34],[32,-16],[48,-46],[44,-72]],[[94643,92639],[-19,-10],[-40,8],[-19,18],[1,42],[2,6],[33,-6],[22,-23],[20,-35]],[[94851,91532],[-12,-1],[9,39],[1,17],[-27,28],[-50,21],[-13,17],[-3,50],[11,78],[-23,42],[8,37],[59,41],[24,31],[27,25],[4,-3],[27,-24],[-2,-52],[-20,-37],[-46,-14],[-6,-25],[6,-44],[1,-57],[5,-51],[28,-52],[6,-26],[-3,-25],[-11,-15]],[[92467,95691],[-27,-20],[-64,33],[24,18],[43,12],[10,-6],[8,-13],[6,-24]],[[91430,96001],[-209,-6],[14,16],[75,40],[191,21],[-38,-20],[-18,-41],[-15,-10]],[[88321,93034],[-69,-49],[-27,6],[-28,24],[-15,5],[-15,-4],[-17,-10],[-22,-2],[-51,26],[-5,16],[5,8],[14,8],[10,0],[32,13],[149,5],[11,-3],[21,-23],[7,-20]],[[79915,96849],[-25,-28],[-35,-14],[-38,23],[-95,-1],[-163,25],[47,16],[257,13],[18,-3],[34,-31]],[[81243,95979],[43,-39],[8,-25],[-13,-6],[-8,-9],[-3,-18],[-12,-1],[-38,19],[-27,31],[-40,7],[-42,31],[-9,13],[11,4],[75,-8],[32,14],[23,-13]],[[76814,95782],[22,-9],[-6,-24],[-29,7],[-38,-12],[1,-20],[-15,-33],[-53,20],[-73,3],[-46,19],[-102,12],[3,27],[16,16],[59,-23],[54,26],[101,-13],[33,19],[73,-15]],[[76745,96213],[-9,-11],[-12,-9],[-33,6],[-65,-16],[-25,9],[-24,18],[-88,-6],[-26,4],[42,22],[120,24],[188,62],[9,-30],[0,-14],[-38,-34],[-39,-25]],[[74864,96306],[-59,-3],[-34,15],[-10,10],[16,26],[23,17],[93,6],[17,-18],[-4,-15],[-42,-38]],[[70738,93820],[-6,-5],[-14,10],[-42,15],[-71,39],[-22,27],[11,30],[16,20],[58,12],[53,-5],[35,-7],[66,-27],[-61,-17],[-26,-37],[3,-22],[11,-13],[-11,-20]],[[70973,94156],[-45,-14],[9,26],[54,37],[100,19],[30,-8],[4,-6],[-42,-39],[-21,-13],[-89,-2]],[[73207,94511],[-14,-14],[-13,2],[-11,-7],[-70,21],[-95,9],[24,22],[68,13],[101,-17],[30,-19],[-20,-10]],[[68706,91894],[-22,-50],[-46,3],[-14,11],[-6,9],[52,54],[32,-2],[4,-25]],[[68488,92477],[3,-23],[-15,8],[-19,26],[-11,32],[-4,64],[7,17],[6,9],[6,-2],[-1,-40],[28,-91]],[[69450,90150],[-49,-7],[-54,44],[-51,86],[10,21],[31,-7],[51,-2],[33,-14],[44,-9],[-5,-40],[0,-16],[14,-17],[-14,-30],[-10,-9]],[[63903,97968],[-23,-8],[-106,44],[-9,13],[91,41],[102,-6],[16,-20],[3,-7],[-69,-36],[-5,-21]],[[64280,97893],[7,-7],[-1,-6],[-99,6],[-173,-4],[-100,32],[106,32],[56,7],[72,27],[89,-26],[-5,-23],[1,-11],[24,-10],[23,-17]],[[64098,98529],[-39,-4],[-27,3],[-29,22],[-10,11],[-2,11],[26,2],[12,11],[4,8],[20,6],[34,1],[45,-12],[19,-24],[-44,-21],[-9,-14]],[[65410,98083],[-79,-27],[-40,1],[-20,16],[32,23],[41,17],[31,-5],[23,-8],[12,-17]],[[65115,98198],[-39,-30],[-129,32],[11,16],[14,6],[0,16],[-12,12],[5,24],[83,-18],[8,-7],[56,-12],[9,-24],[-6,-15]],[[66580,97900],[-100,-19],[-35,6],[-10,9],[-19,9],[-50,12],[7,33],[16,7],[150,37],[72,-21],[30,-51],[-61,-22]],[[66283,98526],[39,-30],[15,-33],[24,-20],[8,-38],[-20,-31],[-60,-6],[-99,-2],[-97,16],[-52,56],[-96,15],[-54,58],[56,17],[68,-8],[109,50],[15,-3],[24,-11],[88,-19],[32,-11]],[[63328,78045],[-4,-10],[-13,53],[-1,32],[8,17],[11,-54],[-1,-38]],[[63962,91696],[5,-56],[-17,-23],[-16,-6],[-7,35],[-13,15],[-48,-41],[-22,-46],[-60,-66],[-123,-47],[-75,-20],[-68,-6],[-63,42],[-35,79],[-6,24],[-4,32],[1,33],[4,50],[7,49],[26,44],[60,52],[59,34],[31,8],[75,2],[214,-117],[48,-30],[27,-41]],[[67603,98329],[-52,-2],[-51,9],[-67,29],[-67,34],[20,18],[63,23],[82,42],[139,9],[67,0],[67,10],[19,21],[13,41],[12,22],[15,17],[74,14],[63,-1],[63,-16],[40,-14],[38,-28],[20,-23],[-6,-28],[3,-23],[18,-21],[-122,-65],[-125,-36],[-326,-32]],[[66098,97996],[-43,-11],[-113,21],[-17,11],[-14,20],[-19,78],[-1,23],[-7,16],[-28,28],[-20,13],[18,15],[124,-11],[266,-6],[136,-28],[40,-16],[39,-26],[-238,-14],[-32,-12],[1,-29],[-9,-26],[-25,-3],[-58,-43]],[[67268,98406],[17,-23],[-10,-37],[-22,-27],[-10,-38],[-86,-9],[-24,-9],[-23,-29],[-87,-18],[-65,-49],[-91,9],[-124,34],[-105,-28],[-69,-8],[-85,42],[-11,10],[-5,29],[5,26],[23,55],[30,31],[15,10],[12,19],[34,11],[105,7],[39,-6],[12,-21],[57,2],[94,13],[137,20],[79,18],[70,-4],[70,-11],[18,-19]],[[66983,98473],[-87,-12],[-141,15],[-73,17],[6,8],[19,10],[122,41],[242,9],[30,-30],[-26,-23],[-92,-35]],[[64866,98032],[-184,-7],[-62,4],[-8,7],[-15,6],[-58,6],[-36,29],[16,8],[85,12],[29,12],[10,17],[38,31],[92,6],[40,-6],[5,-20],[39,-25],[101,-32],[-20,-23],[-35,-3],[-37,-22]],[[65855,98128],[12,-20],[-1,-71],[-13,-31],[2,-26],[-26,-13],[-218,3],[-108,6],[-25,10],[61,34],[19,23],[-6,67],[10,12],[175,-6],[14,19],[66,1],[38,-8]],[[66058,98816],[14,-23],[43,-13],[117,-11],[35,-26],[-53,-19],[-143,-10],[15,-38],[29,-28],[-29,-33],[-40,-16],[-88,-19],[-81,24],[-94,35],[-42,-23],[-44,-14],[-41,2],[-48,27],[-132,-21],[-40,23],[-29,48],[87,10],[104,-15],[69,48],[88,21],[70,51],[33,17],[76,-3],[25,4],[73,13],[26,-11]],[[65199,98568],[209,-55],[194,5],[84,-17],[122,-50],[182,-53],[35,-16],[-31,-21],[-213,-53],[-138,-18],[-120,-3],[-48,6],[-48,38],[-117,28],[-125,-8],[-13,15],[-25,11],[-43,2],[-86,15],[-6,34],[54,17],[35,1],[14,48],[60,73],[24,1]],[[67680,98853],[-34,-8],[-179,7],[-86,14],[-12,8],[-4,7],[-114,12],[49,16],[142,7],[254,-19],[16,-13],[5,-8],[-37,-23]],[[66193,98914],[-92,-12],[-13,9],[-3,6],[10,15],[11,29],[42,17],[313,16],[41,-17],[-15,-26],[0,-12],[-294,-25]],[[75745,97744],[-68,-5],[-80,5],[-130,61],[-85,26],[-70,40],[-15,44],[44,28],[54,11],[91,2],[117,-4],[116,-29],[247,-31],[90,-21],[-56,-51],[-61,-19],[-63,-27],[-64,-19],[-67,-11]],[[75435,98583],[-96,-45],[-346,29],[-16,20],[-5,13],[47,25],[288,-9],[103,-9],[25,-24]],[[89169,94469],[-140,-47],[-27,2],[-63,48],[-23,103],[26,31],[29,11],[30,6],[123,4],[26,-5],[26,-13],[12,-19],[5,-24],[-14,-68],[-10,-29]],[[89495,94409],[69,-25],[57,-28],[196,-135],[18,-28],[15,-35],[8,-123],[-11,-9],[-72,-6],[-98,14],[-70,5],[-68,0],[-60,17],[-147,16],[-115,45],[-120,33],[-25,4],[-75,-10],[-102,-43],[-28,-3],[-39,0],[-27,40],[65,14],[65,5],[63,14],[59,47],[29,38],[51,85],[28,31],[28,20],[30,6],[33,-3],[103,19],[70,6],[70,-11]],[[87763,95281],[-57,-16],[-81,5],[6,42],[14,19],[19,46],[-9,35],[5,42],[10,33],[23,45],[25,-27],[17,-40],[15,-20],[62,-39],[12,-12],[-52,-48],[-5,-21],[16,-27],[-20,-17]],[[87832,94420],[-21,-17],[-20,25],[-93,76],[-23,35],[-51,34],[-13,12],[-4,30],[67,-19],[113,-75],[62,-60],[-17,-41]],[[88316,83578],[25,-23],[39,4],[10,-15],[-31,-25],[-22,-51],[-7,-47],[-9,-18],[-25,-23],[-22,-30],[-19,-19],[-17,-6],[-37,99],[-18,28],[-52,-47],[-12,-1],[12,58],[30,63],[15,9],[30,85],[9,19],[93,-50],[8,-10]],[[96999,91923],[-79,-5],[-158,54],[-56,28],[-42,36],[-48,25],[-9,10],[7,21],[14,16],[54,43],[38,19],[45,4],[283,-76],[12,-16],[4,-14],[-4,-30],[-24,-6],[-9,-20],[-10,-61],[-5,-16],[-13,-12]],[[95453,85600],[-45,-54],[-7,9],[-4,12],[-1,19],[41,36],[42,91],[16,75],[-5,25],[-2,24],[123,47],[87,75],[16,-3],[15,-63],[9,-81],[-12,-49],[-94,-28],[-88,-54],[-91,-81]],[[96291,83432],[-2,-84],[-34,43],[-16,34],[-23,6],[-16,16],[-26,41],[-31,54],[-10,27],[-4,34],[-21,31],[-67,60],[22,7],[28,26],[78,-16],[18,-7],[-13,-40],[5,-44],[43,-92],[21,-32],[28,-25],[20,-39]],[[93002,80248],[-27,-25],[-28,15],[0,50],[59,153],[21,-9],[-5,-37],[-22,-57],[7,-69],[-5,-21]],[[93445,81023],[-11,-13],[-11,3],[-36,36],[-8,17],[13,30],[45,45],[22,-1],[9,-10],[-1,-53],[-22,-54]],[[93310,80819],[-35,-58],[-52,-14],[-25,-19],[-19,-39],[-14,-21],[-30,12],[-13,19],[0,68],[-13,30],[6,19],[30,-3],[30,44],[69,18],[25,47],[31,117],[33,41],[26,9],[8,-58],[-7,-64],[-15,-62],[-35,-86]],[[92799,79948],[-10,-30],[-12,10],[-2,9],[27,35],[10,41],[20,1],[8,-8],[-6,-20],[-35,-38]],[[93234,81118],[-26,-7],[-11,16],[-8,18],[-5,26],[29,12],[19,-14],[4,-38],[-2,-13]],[[92527,79356],[-13,-33],[-14,4],[-5,9],[18,39],[8,7],[6,-26]],[[92222,78857],[-52,-63],[-17,0],[-9,24],[-2,13],[42,10],[48,84],[35,55],[19,19],[16,-1],[-80,-141]],[[91579,78134],[-41,-29],[-26,1],[61,142],[36,21],[46,84],[97,103],[11,7],[56,-3],[-88,-113],[-11,-45],[-39,-48],[-28,-16],[-20,-23],[-54,-81]],[[91277,77947],[-52,-40],[-42,-18],[-71,-84],[-26,-46],[-36,-19],[-35,11],[-10,-19],[-3,-33],[-13,-29],[-70,-91],[-29,-72],[-30,-13],[-56,-73],[10,63],[11,30],[47,56],[3,60],[26,51],[51,52],[35,67],[28,18],[31,56],[32,20],[-3,43],[14,48],[11,-3],[26,-67],[20,-2],[54,14],[80,116],[26,21],[19,4],[11,-10],[4,-14],[-1,-17],[-6,-25],[10,-29],[-13,-22],[-53,-4]],[[90753,77041],[-9,-16],[-20,14],[1,32],[2,9],[57,28],[16,-18],[4,-15],[-51,-34]],[[90612,77475],[42,-42],[58,9],[-14,-38],[-22,1],[-39,-55],[-34,-7],[-17,-13],[-55,-82],[-8,-32],[-33,-62],[-50,-55],[-9,-104],[-32,42],[-4,42],[10,35],[57,74],[23,41],[7,34],[22,36],[10,32],[14,14],[48,131],[26,-1]],[[81496,94700],[-10,-27],[-15,-21],[-11,-26],[-19,-19],[-59,-24],[-46,-54],[-8,-5],[-163,30],[-26,9],[-53,33],[-75,31],[-39,46],[19,8],[19,4],[67,-6],[19,14],[10,39],[1,23],[5,18],[22,13],[241,-40],[93,-23],[28,-23]],[[71180,97725],[34,-21],[26,16],[248,-50],[53,-18],[11,-13],[-217,-8],[-44,3],[-4,29],[-49,1],[-85,19],[-23,27],[-5,11],[27,11],[28,-7]],[[72229,98414],[-258,-21],[-25,13],[-8,8],[36,44],[30,21],[164,8],[131,-14],[41,-13],[-15,-26],[-8,-9],[-88,-11]],[[69631,93948],[-82,-27],[-22,-2],[-50,7],[-22,-11],[-33,27],[2,24],[16,25],[9,31],[-6,78],[42,49],[56,19],[164,22],[23,-6],[33,-15],[25,-18],[33,-43],[26,-18],[40,-34],[12,-33],[-2,-30],[-75,-6],[-130,-25],[-59,-14]],[[71564,93485],[-135,-5],[-67,9],[-10,11],[9,28],[69,42],[31,27],[32,46],[56,38],[47,0],[147,-45],[21,-28],[3,-13],[-58,-38],[-41,-14],[-63,-48],[-41,-10]],[[72083,93733],[-20,-6],[-152,23],[-53,30],[-16,27],[6,24],[141,117],[54,-33],[15,-31],[36,-38],[-1,-86],[-10,-27]],[[72825,95287],[10,-19],[4,-21],[-12,-6],[-36,1],[-20,-54],[-20,9],[-13,31],[-45,-21],[-12,5],[-21,24],[-13,5],[-9,16],[59,48],[36,-25],[24,1],[-5,29],[1,22],[30,9],[40,1],[2,-55]],[[66791,92128],[9,-29],[-1,-53],[-11,-39],[-31,-6],[-31,-16],[-53,17],[-29,-11],[-30,-1],[-24,6],[-25,8],[-16,11],[1,30],[-22,43],[-34,14],[-31,5],[-35,13],[-17,-6],[-22,-16],[-14,5],[-76,92],[-12,21],[-8,24],[-11,15],[-26,64],[13,29],[26,19],[18,5],[32,43],[59,18],[12,-3],[11,-13],[61,-44],[33,-29],[28,-35],[30,-30],[89,-51],[60,-50],[61,-35],[16,-15]],[[55821,83685],[-27,-55],[-74,-116],[23,-15],[27,-5],[32,-22],[30,-3],[53,18],[10,100],[3,90]],[[55898,83677],[17,0],[26,6],[16,-23],[30,-23],[35,-20],[54,-34],[55,-22],[18,-2],[58,3],[61,-3],[17,-51],[30,-24],[25,-34],[1,-18],[-33,-119],[-7,-40],[-2,-40],[13,-51],[11,-28]],[[56323,83154],[-9,-4],[-157,6],[-148,9],[-137,9],[-132,9],[-127,8],[-79,8],[-78,7],[-11,7]],[[55445,83213],[43,49],[28,52],[23,67],[3,46],[6,52],[37,21],[80,-3],[35,25],[44,62],[46,74],[15,32]],[[55805,83690],[16,-5]],[[59722,78187],[6,-19],[66,-146],[31,-54],[24,-22],[28,-3],[53,46],[23,7],[50,-18],[18,31],[26,16],[33,2],[38,-13],[41,-23],[-17,-52],[-17,-41],[-7,-45],[-9,-51],[-46,-23],[-48,3],[-52,-15],[-18,20],[-12,18],[-23,18],[-30,10],[-27,-12],[-32,-69],[-56,-47],[-19,-54],[-56,12],[-47,-10],[-69,-49],[-52,-106],[-57,-66],[-46,-21],[-43,7],[-28,20],[-57,69],[4,25],[8,13],[10,35],[23,131],[-3,43],[-13,66],[-45,52],[-36,-9],[-21,13],[-75,89],[-40,6],[-45,-18],[-16,13],[-13,31],[89,109],[88,90],[38,9],[52,42],[55,63],[-8,49],[-12,37]],[[58251,77914],[-5,-38],[-3,-24],[-12,-99],[-8,-37],[-13,-42],[-142,-49],[9,23],[-3,42],[-6,31],[13,29],[-31,10],[-14,-15],[-11,-28],[9,-62],[-15,-35],[-6,-19],[-1,-46],[-9,-20],[-2,-21],[23,5],[-10,-39],[-43,-76],[-15,-45],[4,-180],[-19,-107],[-1,-32]],[[57940,77040],[-45,-1],[-14,2],[-42,16],[-48,29],[-28,55],[-18,40],[-40,-18],[-8,5],[-11,19],[-31,13],[-37,0],[-85,72],[-9,13],[-67,-13],[-99,-35],[-76,-45],[-79,-78],[-32,-60],[-37,-32],[-52,-23],[-94,9],[-97,30],[-105,32],[-57,-18],[-77,13],[-115,39],[-86,12],[-85,-23],[-14,17],[-4,20],[4,28],[12,23],[20,17],[11,17],[1,18],[-23,29],[-47,39],[-20,24]],[[55622,78403],[11,14],[63,19],[29,-19],[14,7],[13,16],[7,12],[1,14],[6,16],[22,8],[56,-10],[23,23],[8,13],[5,27],[6,23],[20,12],[0,20],[-3,22],[12,50],[7,20],[11,8],[14,15],[24,33],[-6,28],[5,21],[25,51],[19,49],[0,25],[3,22],[16,23],[18,31],[23,96],[9,16],[15,18],[11,18],[1,63],[11,18],[21,21],[20,33],[17,38],[12,19],[17,4],[19,16],[20,5],[20,-7],[13,4],[19,19],[48,71],[7,14]],[[57394,79642],[26,2],[20,-4],[32,-26],[22,-32],[9,-26],[19,-36],[20,-51],[22,-68],[4,-34],[9,-37],[16,-45],[31,-50],[5,-10],[14,-35],[27,-78],[23,-31],[20,-34],[9,-34],[15,-31],[33,-41],[27,-37],[22,-107],[15,-50],[10,-38],[-5,-76],[6,-33],[-12,-60],[-23,-120],[-5,-95],[4,-52],[0,-33],[6,-21],[6,-44],[1,-38],[-8,-11],[-12,-9],[-4,-8],[10,-17],[14,-32],[14,-36]],[[64112,66122],[8,35],[3,22],[-19,167],[-6,128],[2,26],[11,30],[19,66],[9,65],[28,148],[29,57],[43,42],[35,-82],[43,-63],[8,-70],[-13,-57],[-11,-90],[7,-42],[2,-36],[12,-61],[11,-78],[2,-55],[-6,-51],[-15,-42],[-29,-129],[-9,-13],[-36,-22]],[[45224,70776],[38,-30],[35,14],[43,-39],[23,-9],[-20,-27],[-21,-36],[-50,9],[-42,34],[-15,26],[-5,23],[14,35]],[[47942,73259],[-24,-6],[-95,-94],[-29,0],[-55,41],[-96,14],[-32,12],[-39,-27],[-30,1],[-25,-35],[-17,10],[20,77],[31,152],[-1,93],[7,81],[-8,80],[-16,50],[21,130],[-2,67],[-19,84],[59,-13],[-19,34],[-18,20],[-17,-4],[-15,1],[-50,-33],[-25,-10],[-8,6],[3,52],[-13,68],[20,18],[24,5],[20,29],[12,33],[-7,57],[18,55],[40,46],[-21,-7],[-24,-29],[-38,-104],[-12,-53],[-33,-17],[-29,-9],[-14,6],[-18,13],[-2,39],[2,31],[12,62],[4,88],[18,78],[-2,21],[-5,31],[16,30],[19,20],[28,68],[40,160],[47,170],[-4,21],[-10,15],[4,46],[28,200],[11,26],[13,59],[3,94],[5,65],[-1,33],[-4,39],[-18,75],[-18,159],[-2,53],[15,26],[-25,4],[-11,35],[2,38],[28,63]],[[43048,73133],[-2,-11],[-15,5],[-20,-4],[-11,31],[10,13],[22,3],[11,-14],[5,-23]],[[41350,74542],[-12,-27],[-21,10],[-7,10],[6,59],[17,14],[17,-24],[0,-42]],[[42479,74103],[-6,-6],[-58,16],[-16,21],[-7,39],[10,13],[25,8],[37,-7],[24,-28],[0,-36],[-9,-20]],[[42283,74052],[-13,-7],[-74,44],[-26,21],[-34,51],[96,-62],[51,-47]],[[42044,74034],[-29,-1],[-27,44],[40,23],[12,-14],[8,-16],[6,-21],[-10,-15]],[[42181,73993],[23,-23],[-35,-5],[-11,-11],[-29,16],[-33,-3],[-22,31],[-5,33],[11,20],[30,0],[71,-58]],[[42875,73640],[17,-4],[89,9],[24,-6],[-3,-43],[-17,-17],[-52,-11],[-82,27],[-27,37],[-4,27],[0,12],[17,10],[38,-41]],[[55231,80363],[-1,17],[-6,42],[-59,83],[-8,35],[3,13],[-4,22],[-13,13],[-47,16],[-12,-9],[-11,9],[-17,20],[-29,16],[-3,9],[-11,14],[-6,2],[-3,-9],[-9,-12],[-30,-16],[-12,7],[-11,13],[-13,29],[-18,25],[-15,9],[-9,14],[-2,10],[34,21],[7,21],[-4,39],[-5,5],[-13,-13],[-28,-11],[-26,-6],[-13,0],[-73,71],[-48,22],[-28,6],[-3,-7],[13,-40],[22,-49],[-1,-13],[-26,-20],[-15,-9],[-18,-17],[-15,-24],[-12,-10],[-12,2],[-11,12],[-31,73],[-38,55],[-4,13],[-12,3],[-17,12],[-6,18],[9,17],[11,17],[21,10],[6,9],[4,14],[7,19],[-2,6],[-14,21],[-22,20],[-60,-15],[-16,-10],[-9,13],[-7,21],[-16,3],[-20,19],[-25,18],[-24,5],[-50,26],[-19,1],[-11,9],[-12,20],[-10,21],[-5,44],[-37,19],[-37,13],[-2,-7],[1,-43],[-2,-24],[-24,-14],[-24,-2]],[[54113,81139],[2,8],[28,78],[13,50],[15,91],[-18,72],[-5,33],[-8,16],[-50,35],[-4,12],[8,48],[-4,20],[-12,21],[-16,41],[-7,36],[21,42],[5,30],[9,42],[6,23],[1,7],[-13,16],[-3,23],[3,33],[-7,25],[-18,15],[-11,21],[-6,27],[5,41],[13,56],[-29,67],[-72,79],[-35,55],[3,32],[15,28],[28,26],[21,45],[11,54],[1,10],[1,39],[-33,157],[-5,39],[-4,48],[-2,13]],[[53960,82793],[64,-33],[26,-19],[-3,21],[-5,18],[3,27],[-2,40],[-57,20],[-38,7]],[[53948,82874],[-5,28],[4,18]],[[53947,82920],[11,-11],[37,-4],[92,54],[159,70],[170,66],[40,7],[40,14],[14,24],[15,17],[23,43],[51,68],[91,24],[34,32],[70,45],[162,50],[67,11],[66,1],[59,-39],[62,-49],[12,-30],[-34,19],[-49,44],[-18,2],[42,-134],[22,-47],[47,-36],[39,-11],[119,21],[43,28],[12,14]],[[56323,83154],[16,23],[20,-3],[23,-14],[11,-11],[4,-12],[3,-13],[13,-3],[23,-10],[31,-24],[24,-23],[23,-33],[8,-37],[0,-42],[-1,-27],[2,-11]],[[56523,82914],[32,-196],[53,-189],[19,-92],[8,-49],[6,-70],[2,-50],[0,-28],[-4,-38],[-16,-23],[-101,-65],[-20,-20],[-29,-51],[-28,-52],[-6,-18],[-2,-11],[6,-18],[36,-27],[37,-23],[12,-17],[26,-21],[10,-19],[6,-17],[-1,-39],[-12,-54],[5,-40],[-12,-27],[-10,-30],[-2,-53],[18,-58]],[[83638,62566],[43,-30],[94,-108],[34,-27],[36,-20],[28,-5],[26,24],[10,25],[20,67],[20,8],[13,-24],[9,-33],[5,-47],[-6,-50],[-20,-44],[-12,-54],[-8,-177],[0,-53],[7,-51],[17,-81],[9,-23],[26,-29],[7,-22],[1,-39],[4,-35],[17,-13],[14,-18],[-5,-38],[-9,-39],[-12,-97],[-55,-223],[-3,-48],[-22,-96],[-45,-16],[-52,-46],[-28,-36],[-25,-47],[-10,-62],[8,-28],[5,-30],[0,-32],[-8,-27],[-25,-65],[-10,-54],[-11,-24],[-6,-29],[2,-33],[10,-29],[30,-125],[33,-121],[7,-14],[2,-16],[-19,-32],[1,-58],[5,-58],[29,-142],[4,-38],[10,-31],[14,-30],[17,-24],[46,-42],[18,-9],[19,-1],[4,28],[17,10],[-4,28],[-20,38],[0,21],[10,16],[13,9],[28,42],[29,34],[38,-3],[37,-19],[27,-19],[22,-37],[22,-62],[16,-69],[-1,-33],[-3,-33],[0,-33],[12,-22],[36,-1],[18,51],[3,58],[-13,22],[6,28],[11,22],[16,-19],[15,-36],[56,-39],[14,-1],[11,-7],[25,-28],[12,-21],[-14,-45],[-56,-10],[-16,-34],[17,-68],[26,-55],[17,-45],[15,-49],[0,-45],[-9,-46],[24,3],[23,-9],[32,-40],[10,-3],[10,6],[-1,-141],[-22,-129],[-27,16],[-23,54],[4,67],[15,64],[-8,14],[-15,-6],[-17,-14],[-19,-5],[-30,8],[-62,70],[-26,7],[-6,31],[2,67],[-25,80],[-4,28],[-8,23],[-74,86],[-9,15],[-23,69],[-52,98],[-14,10],[-16,3],[-5,-25],[7,-38],[3,-33],[-1,-35],[2,-27],[25,-54],[3,-26],[17,-70],[2,-82],[-21,-34],[-24,38],[-1,31],[-4,29],[-25,74],[-8,16],[-48,74],[-37,80],[-82,86],[-9,5],[-15,-7],[-13,-10],[-40,-43],[-14,-29],[-1,-46],[-28,-36],[-39,-5],[-30,23],[-25,45],[-21,2],[-25,71],[-31,9],[-26,-55],[-5,109],[0,111],[7,33],[13,27],[65,116],[8,38],[-3,50],[-15,40],[-23,25],[-27,10],[-19,23],[-15,38],[-11,-67],[10,-98],[2,-65],[-9,-24],[-17,0],[-16,7],[-11,23],[-9,67],[-23,43],[-9,63],[-10,9],[-21,-5],[-16,29],[-10,74],[-2,78],[-9,66],[-13,64],[-7,52],[-12,235],[-2,21],[-6,18],[-15,27],[-11,32],[-2,27],[3,115],[5,28],[11,13],[16,-22],[12,-28],[15,-14],[14,-17],[25,-69],[10,-10],[31,2],[18,8],[9,25],[5,30],[1,35],[-18,103],[-6,74],[0,67],[5,67],[24,112],[3,77],[-2,104],[4,61],[-1,36],[-14,55],[-4,60],[41,302],[13,58],[9,61],[4,80],[31,22],[29,33],[15,-3],[15,-8],[36,17],[13,1]],[[82586,56704],[-26,-42],[3,52],[7,49],[26,99],[19,31],[31,78],[18,38],[42,75],[39,82],[13,6],[14,1],[12,9],[25,45],[63,147],[53,110],[54,139],[26,41],[7,15],[49,128],[16,18],[17,14],[12,17],[11,22],[17,56],[8,65],[-5,37],[-10,54],[13,74],[9,34],[35,150],[10,31],[14,-19],[2,-27],[-7,-64],[0,-31],[8,-33],[-10,-53],[25,-142],[19,-89],[1,-30],[-26,-53],[-15,-16],[-33,-15],[-15,-15],[-23,-44],[-15,-57],[-4,-30],[-7,-23],[-68,-39],[-31,-25],[-15,-19],[-7,-31],[5,-55],[-57,-199],[-18,-51],[-19,-45],[-24,-31],[-33,-19],[-27,-39],[-18,-68],[-22,-61],[-28,-45],[-30,-40],[-28,-30],[-30,-20],[-9,-27],[-6,-33],[-14,-16],[-15,-8],[-28,-33]],[[84026,58533],[32,-29],[32,25],[31,-7],[26,-38],[-9,-24],[-1,-27],[57,58],[16,-3],[-1,-54],[-3,-46],[-7,-44],[-12,-52],[-17,-46],[-21,-33],[-26,-21],[-12,-19],[-4,-28],[1,-35],[-6,-32],[-27,-14],[-42,-62],[-90,-40],[-25,-27],[-16,-36],[-17,-32],[-10,-8],[-4,15],[-1,13],[13,84],[-3,35],[-6,33],[4,66],[16,62],[8,68],[3,132],[12,182],[-1,22],[-9,25],[-35,20],[-14,19],[7,36],[13,25],[18,-1],[16,-23],[57,-48],[30,-40],[27,-51]],[[84202,57064],[-18,-6],[-20,3],[-13,28],[-22,122],[-26,30],[-30,22],[-15,19],[-14,23],[-42,122],[-3,74],[7,42],[13,38],[14,10],[35,1],[18,5],[40,56],[3,22],[0,92],[-4,64],[-10,62],[11,29],[14,28],[14,55],[3,39],[0,41],[4,29],[12,14],[54,45],[10,3],[71,-41],[14,-62],[1,-20],[-11,-69],[-9,-46],[-24,-71],[-18,-77],[-13,-115],[-8,-38],[-22,-72],[-7,-40],[0,-86],[-4,-32],[0,-31],[44,-143],[4,-23],[0,-26],[-8,-32],[-18,-55],[-10,-19],[-17,-14]],[[84603,58377],[20,-20],[22,8],[27,45],[30,-16],[18,-68],[9,-25],[5,-44],[-2,-106],[-7,-95],[6,-20],[14,-17],[12,-22],[10,-27],[7,-30],[2,-74],[18,-62],[2,-24],[-4,-25],[-29,5],[-3,-21],[1,-27],[-10,17],[-17,60],[-16,26],[5,-98],[5,-48],[1,-47],[-27,36],[-33,23],[-9,19],[4,61],[-1,31],[-14,64],[16,140],[0,29],[-3,28],[-13,57],[-21,47],[-13,0],[-32,-33],[-16,11],[-9,131],[-13,127],[-9,32],[-7,34],[6,28],[13,-11],[17,-34],[21,-19],[10,-16],[7,-30]],[[84788,59059],[20,-47],[4,-34],[-2,-38],[9,-16],[16,-5],[20,-19],[15,-35],[-9,-32],[3,-46],[-16,-59],[2,-105],[9,-33],[1,-33],[-2,-36],[4,-28],[24,-96],[5,-32],[-8,-25],[-2,-24],[15,-2],[21,-40],[12,-53],[-3,-13],[-17,41],[-13,6],[-55,-11],[-33,17],[-22,2],[-21,70],[-19,12],[-15,31],[-25,79],[-8,46],[18,46],[5,37],[-1,36],[-17,-6],[-14,12],[-17,44],[-7,25],[-13,22],[-20,50],[-30,20],[-11,14],[-24,42],[-16,53],[-17,92],[-9,95],[76,-25],[76,5],[86,22],[25,-26]],[[83528,59607],[14,-5],[45,18],[18,-9],[12,-33],[15,-10],[12,-17],[23,29],[22,-33],[20,-63],[24,-44],[22,-33],[5,-25],[-14,-40],[-4,-50],[2,-55],[16,-114],[-5,-31],[-18,-44],[-12,-49],[1,-20],[-5,-16],[-1,-35],[-11,7],[-9,-5],[-9,-16],[-15,-33],[-23,10],[-10,10],[-3,29],[-7,20],[-9,12],[-24,50],[-11,38],[-1,40],[-6,37],[-12,33],[-16,26],[-6,24],[-2,29],[-1,75],[-24,92],[-8,23],[-21,22],[-18,30],[-8,29],[-7,48],[-5,7],[-14,-3],[-13,7],[3,35],[14,25],[19,3],[51,-14],[14,-11]],[[85001,57212],[22,-35],[30,9],[-1,-87],[5,-26],[27,-74],[4,-61],[-16,-59],[-12,-27],[-22,-40],[0,-18],[9,-20],[31,-12],[23,-32],[4,-91],[22,-71],[-1,-31],[-9,-128],[3,-54],[16,-44],[14,-19],[8,-27],[6,-75],[-1,-128],[-2,-44],[-10,-42],[-30,-94],[-40,-75],[-22,5],[-6,-22],[13,-68],[-5,-145],[-9,-100],[-13,51],[-9,53],[-9,140],[-10,64],[-16,57],[-7,52],[-16,48],[-22,125],[-14,-7],[-23,-34],[-5,-23],[-3,-36],[-6,-32],[-27,-51],[-22,-60],[-17,-67],[-6,-61],[15,-47],[15,-20],[21,-42],[7,-20],[23,-139],[-1,-141],[-17,-63],[-42,-119],[-30,-37],[-17,19],[-13,72],[-2,29],[9,68],[1,62],[-10,21],[-12,-4],[-4,-9],[-27,-81],[-12,-21],[-17,-2],[-13,5],[-81,71],[-66,70],[-51,65],[-38,99],[-8,74],[0,77],[-17,113],[-2,38],[2,37],[16,70],[20,35],[12,25],[9,28],[6,37],[-2,37],[-7,23],[-32,82],[-27,50],[-57,45],[-13,24],[-14,19],[-16,8],[-16,0],[-16,-14],[-5,-29],[2,-27],[-2,-26],[-24,-148],[-30,32],[-29,38],[-7,26],[-4,32],[-5,21],[-6,19],[-14,-49],[-16,-39],[-20,-10],[-21,0],[-7,17],[-7,94],[-22,30],[-27,-7],[-33,-52],[-6,-19],[-7,-45],[-36,-127],[-19,-98],[-21,-96],[-9,-31],[-13,-21],[-19,9],[-18,23],[-17,61],[6,72],[19,45],[15,49],[19,171],[1,61],[4,26],[31,77],[26,48],[13,10],[57,28],[23,23],[36,0],[30,13],[24,37],[2,38],[-2,40],[6,24],[9,21],[12,27],[15,20],[40,15],[14,17],[10,26],[16,50],[17,-12],[18,-20],[33,-16],[28,-42],[19,-66],[3,-32],[5,-108],[-7,-25],[-28,-51],[13,-5],[36,46],[19,18],[45,24],[11,16],[7,24],[16,66],[12,71],[9,29],[13,23],[13,4],[47,-48],[31,23],[8,73],[7,106],[6,29],[17,28],[21,-9],[28,-38],[27,-13],[9,31],[10,61],[10,-1],[36,-20],[34,13],[10,73],[-7,78],[-27,226],[16,51],[14,1],[34,-60],[65,-81],[22,-50],[14,-61]],[[84269,57286],[-11,-15],[-4,38],[3,51],[21,179],[-5,45],[36,100],[22,93],[32,99],[5,51],[29,97],[27,134],[-1,45],[7,22],[4,33],[0,29],[20,50],[6,-33],[-6,-64],[1,-30],[3,-14],[0,-60],[-7,-91],[7,-105],[-13,-107],[-15,-48],[-21,-34],[-24,-21],[-25,-53],[-15,-62],[-3,-57],[-39,-192],[-34,-80]],[[83866,62727],[-17,-42],[-10,12],[10,40],[0,14],[8,31],[15,11],[13,-31],[-19,-35]],[[83755,62996],[3,-52],[-17,1],[-24,32],[-3,16],[1,13],[4,11],[36,-21]],[[83877,63574],[-5,-7],[-8,3],[8,55],[14,15],[11,-6],[-20,-60]],[[83854,63814],[-13,-47],[-11,0],[2,26],[14,55],[5,-1],[3,-33]],[[83655,55342],[15,-41],[19,11],[30,-12],[6,-22],[-1,-14],[-32,-40],[-21,42],[-38,-29],[-18,17],[-24,-15],[-15,33],[6,31],[39,51],[34,-12]],[[82521,56384],[-14,-44],[-16,50],[1,71],[5,19],[24,11],[0,-107]],[[83309,57883],[-34,-18],[-8,56],[24,51],[28,-21],[16,-20],[-8,-18],[-18,-30]],[[83360,58852],[15,-9],[11,8],[10,31],[9,-45],[22,-37],[-7,-38],[-20,-4],[-19,8],[-21,-15],[-25,9],[-14,35],[-17,63],[-9,12],[1,26],[6,16],[-3,4],[2,12],[3,8],[5,3],[13,-28],[32,-42],[6,-17]],[[83343,58584],[-21,-19],[-5,12],[-3,28],[0,20],[-20,104],[15,15],[11,-12],[12,-16],[10,-9],[10,-32],[-2,-23],[3,-22],[-10,-46]],[[84068,57875],[-7,-8],[-7,2],[-16,-21],[-6,39],[5,66],[25,50],[6,16],[7,10],[8,1],[8,-20],[2,-30],[-16,-90],[-9,-15]],[[84609,57480],[-3,-21],[-22,2],[-8,-3],[-20,-54],[-12,-14],[-66,-18],[-52,14],[-18,30],[-12,49],[-3,33],[13,35],[12,24],[42,46],[10,35],[22,43],[45,14],[4,-11],[6,-6],[9,-2],[23,-35],[25,-23],[-6,-85],[7,-28],[4,-25]],[[83402,54871],[-7,-35],[-9,-16],[-12,9],[-9,18],[-5,-27],[-24,-10],[-15,-41],[-23,-12],[-15,6],[2,37],[43,54],[27,21],[23,39],[12,5],[6,-33],[6,-15]],[[83914,55546],[-28,-8],[-9,0],[-22,59],[-2,26],[-18,29],[6,29],[23,7],[40,38],[64,-59],[10,-21],[-20,-13],[-14,-56],[-30,-31]],[[85016,57468],[-4,-3],[-15,45],[2,51],[21,76],[15,-67],[0,-30],[-2,-15],[14,-37],[-10,-19],[-21,-1]],[[84913,57554],[-5,-16],[-6,33],[-17,31],[-15,53],[-11,16],[7,42],[1,68],[16,31],[7,10],[11,33],[6,2],[5,-28],[-11,-85],[16,-100],[-6,-62],[3,-14],[-1,-14]],[[83408,59764],[0,-39],[-47,57],[-1,20],[1,14],[5,9],[25,-21],[17,-40]],[[83864,59642],[18,-1],[5,5],[33,-48],[-2,-24],[4,-33],[-19,-55],[-3,-19],[-11,-18],[-35,44],[-13,27],[-4,56],[14,81],[13,-15]],[[83914,58959],[-22,-143],[-15,49],[6,31],[-13,26],[-3,24],[5,31],[13,29],[3,94],[29,30],[11,1],[-4,-23],[1,-43],[-11,-106]],[[84070,58933],[-14,-13],[-29,56],[-17,26],[-4,15],[13,21],[37,0],[19,-39],[3,-24],[-8,-42]],[[84244,59247],[24,-88],[-26,60],[-30,41],[-31,67],[-23,24],[-6,14],[2,28],[17,5],[7,-2],[45,-119],[21,-30]],[[84381,59017],[1,-51],[-10,19],[-34,99],[-9,36],[9,24],[25,-37],[18,-90]],[[84365,58921],[53,-69],[37,-116],[4,-89],[-3,-35],[-17,39],[-38,54],[-26,12],[-8,10],[3,30],[-17,27],[-2,11],[-15,12],[-23,61],[-16,12],[-15,-13],[-35,-91],[-37,-64],[-1,25],[15,79],[10,128],[6,39],[-8,57],[-1,51],[28,-24],[35,-23],[27,-33],[4,-22],[40,-68]],[[84542,59695],[-8,-37],[-9,13],[-12,-2],[-21,-32],[-33,43],[-5,33],[24,73],[0,109],[8,27],[9,19],[11,11],[23,-75],[8,-10],[22,-34],[-5,-70],[2,-41],[-14,-27]],[[83937,59935],[-1,-23],[-60,85],[-3,15],[0,13],[4,14],[60,-104]],[[83897,60486],[5,-20],[-5,1],[-4,-4],[-13,-41],[14,-77],[-9,-56],[-16,-4],[-6,6],[3,28],[4,12],[-3,37],[-10,23],[-7,44],[-12,27],[6,43],[36,5],[17,-24]],[[84531,57952],[-7,-3],[13,61],[10,-9],[3,-6],[0,-28],[-19,-15]],[[84799,57593],[2,-29],[-35,75],[-8,53],[12,-2],[16,-20],[13,-77]],[[84148,56111],[3,-14],[-1,-14],[-29,-27],[-9,1],[-3,44],[7,21],[14,-18],[12,21],[6,-14]],[[84939,55853],[-4,-32],[-17,77],[-7,19],[9,65],[19,-32],[0,-97]],[[84613,58463],[-35,-4],[-15,26],[-19,78],[21,16],[21,-4],[15,-27],[15,-52],[-3,-33]],[[84668,57109],[-8,-34],[-31,28],[-8,25],[4,29],[15,10],[8,0],[15,-31],[5,-27]],[[83680,62835],[-1,-39],[-14,21],[-3,29],[1,21],[6,26],[9,-23],[2,-35]],[[83294,58482],[6,-31],[-8,-46],[-7,-10],[-8,19],[-20,14],[-1,24],[10,0],[18,24],[10,6]],[[84376,58342],[16,-76],[-22,0],[-8,56],[10,18],[4,2]],[[83974,59060],[-8,-18],[-5,3],[-4,31],[8,21],[3,-2],[6,-35]],[[84991,57369],[-5,-15],[-8,31],[7,68],[5,11],[7,-43],[-6,-52]],[[84681,58522],[-5,-30],[-8,8],[-7,14],[-11,44],[-3,33],[16,-18],[9,-33],[9,-18]],[[82598,56575],[-19,-14],[-4,36],[2,35],[14,-3],[6,-11],[1,-43]],[[84360,57164],[2,-60],[-25,-18],[-21,16],[-13,36],[0,13],[11,-1],[26,31],[8,7],[12,-24]],[[30565,49403],[-2,-38],[-9,-15],[-14,-3],[-21,26],[-15,-6],[-15,-2],[-22,31],[-7,31],[-17,25],[-35,-10],[-29,-1],[-24,6],[-22,-8],[-18,-33],[-14,-38],[-16,-31],[-48,-22],[-25,0],[-23,-21],[-33,-8],[-23,-18],[-41,-10],[-49,-10],[-28,-28],[-10,-12],[-28,-39],[-49,-62],[-26,-21],[-33,-67],[-38,-62],[-25,-33],[-37,-16],[-16,-16],[-5,-20],[3,-24],[-6,-60],[-12,-111],[-3,-54],[-2,-26],[-25,-89],[-26,-83],[-13,-55],[-8,-40],[9,-34],[10,-60],[9,-48],[3,-32],[-3,-38],[-11,-34],[-18,-22],[-23,-7],[-49,-60],[-54,-89],[-18,-41],[-5,-39],[-8,-62],[4,-31],[9,-22],[10,-52],[1,-27],[-8,-15],[-16,-3],[-13,-5],[-11,-14],[-10,4],[-10,-7],[0,-22],[3,-25],[-1,-26],[-7,-17],[-5,-12],[5,-17],[10,-15],[14,-25],[21,-48],[15,-9],[13,-16],[1,-27],[-4,-27],[-12,-12],[-1,-23],[16,-28],[10,-21],[11,-30],[9,-41],[0,-27],[11,-34],[6,-28],[0,-27],[17,-27],[15,-20],[10,-18],[11,-12],[2,-20],[-1,-30],[15,-50],[28,-38],[22,-55],[14,-39],[27,-64],[1,-73],[-33,-84],[-33,-84],[54,3],[56,-2],[58,-24],[39,-23],[23,-11],[17,-26],[8,-42],[7,-34],[1,-50],[25,-40],[-2,-38],[-1,-54],[11,-1],[71,0],[78,0],[74,10],[28,13],[34,65],[21,20],[20,30],[24,56],[19,25],[16,31],[23,31],[10,23],[8,8],[19,15],[-8,-30],[-6,-31],[-2,-44],[9,-49],[-8,-36],[-12,-32],[0,-85],[0,-121],[0,-104],[-1,-129],[0,-147],[0,-98],[13,20],[17,17],[23,-45],[16,-20],[14,-4],[15,1],[19,10],[43,37],[29,31],[34,-2],[46,-12],[26,1]],[[30672,45534],[35,-125],[25,-91],[29,-105],[24,-84],[35,-127],[31,-110],[32,-118],[37,-133],[-11,-34],[-10,-27],[1,-46],[-15,-24],[-15,-15],[-19,-38],[-12,-34],[-1,-47],[3,-242],[-3,-66],[-10,-56],[-10,-29],[-6,-22],[15,-56],[13,-113],[10,-22],[13,-46],[6,-44],[-3,-16],[-25,-21],[-9,-18],[-3,-64],[-11,-23],[-18,-31],[-12,-35],[-10,-24],[-10,-14],[-5,-42],[-7,-44],[-23,-28],[-4,-53],[0,-44],[12,-43],[40,-92],[4,-22],[-23,-56],[-13,-38],[-32,-117],[-1,-22],[8,-55],[49,-238],[8,-19],[15,-23],[24,3],[37,-26],[18,-29],[2,-15],[-4,-9],[-20,-20],[-22,-26],[-7,-24],[-2,-39],[5,-57],[-9,-18],[-22,-23],[-18,-32],[-19,-53],[-32,-81],[-11,-22],[-5,-28],[-18,-9],[-34,-55],[-5,-28],[5,-27],[17,-22],[12,-32],[3,-41],[0,-26]],[[30691,41759],[-21,-39],[-27,-44],[-34,-9],[-13,-22],[3,-47],[11,-66],[0,-52],[-10,-60],[-24,-65],[-37,-44],[-35,-24],[-27,0],[-27,-5],[-11,-7]],[[30439,41275],[-20,39],[-91,130],[-34,69],[-32,33],[-78,111],[-8,36],[-9,114],[-11,32],[-26,41],[-68,55],[-26,28],[-27,50],[-40,36],[-44,72],[-26,59],[-29,38],[-91,54],[-45,54],[-85,76],[-38,49],[-91,59],[-27,28],[-90,138],[-62,46],[-51,77],[-153,166],[-24,53],[-23,81],[-34,49],[-38,112],[-57,66],[-54,87],[-20,80],[-36,101],[-11,54],[-32,53],[-2,107],[-22,49],[16,24],[17,11],[21,165],[-12,83],[-56,151],[-21,72],[-15,93],[-22,55],[-34,116],[-21,102],[-45,75],[-12,27],[-7,38],[-25,26],[-1,79],[-17,150],[-25,76],[-90,140],[-2,55],[-7,99],[-20,106],[-99,332],[-26,99],[-25,161],[-22,91],[-25,162],[-37,123],[-24,107],[-25,133],[-2,71],[-45,122],[-24,112],[-42,94],[-42,72],[-18,50],[-58,240],[-8,71],[-40,132],[-40,95],[-25,76],[-32,69],[-195,212],[-69,88],[-23,42],[-10,66],[4,38],[20,36],[28,-27],[17,11],[13,47],[1,72],[-17,92],[-63,177],[5,38],[12,42],[-24,86],[-27,68],[-13,53],[15,200],[14,51],[95,203],[26,86],[40,54],[42,82],[49,62]],[[27687,49891],[8,-11],[7,-10],[0,-21],[2,-18],[5,-17],[1,-32],[6,-21],[1,-23],[0,-33],[-3,-16],[3,-28],[11,-52],[-4,-16],[-11,-11],[-10,-14],[-10,-32],[-15,1],[-22,14],[-15,-18],[-5,-35],[4,-28],[2,-27],[9,-23],[28,-2],[-25,-73],[-12,-33],[3,-21],[15,-18],[11,-2],[25,27],[17,39],[10,22],[16,9],[21,-18],[28,-36],[33,-32],[13,-18],[24,5],[20,7],[17,-26],[17,-22],[4,-76],[13,-55],[15,-42],[19,-51],[18,-17],[22,0],[31,-19],[12,12],[11,35],[5,20],[16,9],[1,23],[-3,28],[5,32],[13,28],[33,42],[15,18],[4,25],[6,35],[-3,19],[-6,23],[1,34],[9,45],[12,52],[11,67],[4,31],[12,20],[4,29],[6,34],[14,38],[0,41],[6,18],[0,46],[15,94],[0,20],[6,5],[11,-6],[9,-22],[3,-21],[4,-9],[9,2],[10,12],[-1,19],[-7,18],[-2,11],[3,18],[15,38],[17,44],[36,92],[22,38],[56,40],[42,30],[41,29],[55,42],[78,58],[56,42],[50,76],[39,58],[33,50],[42,64],[56,138],[40,95],[28,70],[20,44],[16,123],[18,142],[8,62],[3,22],[8,-9],[9,-15],[10,-1],[11,1],[6,8],[-9,141],[1,31],[5,37],[-1,20],[-17,28],[-28,56],[-11,50],[-7,43],[-19,27],[-20,25],[1,20],[12,0],[30,-20],[22,7],[16,2],[15,20]],[[29087,51781],[17,38],[11,0],[13,-5],[23,-39],[14,-22],[17,-19],[15,-6],[15,-2],[9,1],[6,-25],[7,-31],[18,-21],[21,-21],[17,-34],[11,-23],[14,-28],[13,-36],[12,-64],[6,-43],[7,-24],[-2,-24],[14,-45],[11,-24],[18,-16],[35,-18],[19,-40],[16,-16],[18,-41],[16,-12],[20,2],[19,-20],[15,-39],[10,-49],[15,-27],[8,-51],[-9,-58],[8,-32],[16,-25],[25,-27],[23,7],[12,-9],[7,-25],[5,-29],[10,-70],[5,-45],[-10,-43],[-3,-30],[5,-41],[24,-19],[22,-16],[13,-31],[15,-9],[21,2],[27,8],[15,18],[10,5],[11,-8],[24,-17],[29,-19],[26,11],[23,5],[23,11],[23,33],[19,-2],[14,22],[19,35],[17,36],[14,8],[23,-17],[31,-25],[18,-31],[13,-9],[14,-23],[27,0],[29,12],[23,39],[24,12],[16,10],[15,-6],[58,-71],[16,-37],[20,-7],[17,-20],[27,-22],[15,-22],[19,-14],[14,-31],[22,-19],[20,-11],[8,-25],[0,-16],[-2,-12],[-21,-65],[-39,-129],[-36,-116],[-56,-182],[-32,-102],[8,-4],[49,-45],[12,-1],[18,11],[12,18],[11,2],[11,-17],[17,-22],[11,-65],[9,-31],[20,-25],[21,-40],[15,-42]],[[33844,40227],[6,-42],[4,-32],[9,-23],[9,-31],[9,-17],[7,-28],[-2,-33],[4,-41],[4,-37],[5,-9],[13,-10],[7,-33],[-5,-16],[2,-19],[5,-19],[-5,-18],[2,-14],[9,-12],[9,-46],[1,-78],[-10,-42],[-7,-34],[-2,-21],[6,-31],[-9,-36],[-11,-44],[2,-30],[2,-29],[1,-30],[3,-29],[-4,-30],[-4,-27],[-1,-30],[4,-35],[-8,-32],[-5,-23],[-1,-23],[8,-36],[21,-15],[16,-4],[16,19],[12,6],[22,-17],[20,-31],[26,-4],[23,-5],[17,-10],[26,11],[27,-11],[31,-17],[26,-15],[25,3],[20,2],[20,17],[19,-1],[15,30],[8,27],[8,19],[21,15],[14,-10],[12,-49],[21,-29],[9,-21],[15,-9],[34,-2],[21,2],[24,-15],[16,0],[14,-27],[13,-32],[1,-59],[12,-46],[16,-17],[8,-29],[-2,-40],[-8,-40],[1,-44],[8,-40],[0,-40],[6,-40],[11,-34],[4,-55],[-2,-40],[7,-23],[3,-33],[-5,-26],[-2,-36],[1,-33],[6,-26],[16,-35],[5,-61],[0,-42],[7,-49],[14,-23],[22,-8],[26,-7],[31,11],[28,13],[15,14],[31,36],[26,21],[14,13],[13,10],[27,-23],[24,-29],[20,-40],[35,-43],[-6,-11],[-15,-36],[1,-42],[10,-61],[-9,-127],[-28,-196],[-11,-114],[4,-32],[-10,-57],[-38,-123],[-1,-82]],[[34829,37110],[-5,-248],[-13,-174],[-21,-129],[-20,-69],[-17,-8],[-13,-21],[-8,-33],[-14,-27],[-21,-22],[-11,-24],[-2,-26],[-20,-16],[-38,-8],[-23,-21],[-6,-34],[-13,-27],[-19,-20],[-9,-33],[1,-46],[-11,-40],[-23,-33],[-21,-1],[-19,31],[-25,21],[-33,10],[-26,-8],[-22,-26],[-19,-41],[-17,-57],[-18,-9],[-21,38],[-26,11],[-31,-15],[-25,5],[-18,26],[-28,3],[-39,-20],[-77,23],[-117,65],[-99,25],[-121,-23],[-11,68],[7,37],[19,27],[13,32],[5,35],[13,27],[23,18],[9,19],[-3,19],[4,16],[13,15],[7,23],[2,31],[5,15],[8,12],[1,21],[-4,67],[0,55],[6,43],[8,25],[5,7],[5,15],[2,26],[8,24],[38,49],[15,27],[1,24],[6,33],[23,71],[7,34],[1,16],[8,17],[27,40],[16,37],[2,35],[-7,39],[-16,45],[-49,110],[-38,50],[-49,42],[-33,13],[-15,-14],[-16,11],[-16,38],[-27,29],[-57,33],[-128,129],[-52,62],[-17,39],[-48,69],[-79,100],[-61,48],[-42,-2],[-67,29],[-93,61],[-54,59],[-14,57],[-35,57],[-54,57],[-28,38],[-2,18],[-16,24],[-31,29],[-33,50],[-36,71],[-38,109],[-41,148],[-44,100],[-47,51],[-23,35],[0,16],[-7,16]],[[32597,39035],[6,29],[17,112],[25,164],[25,169],[31,199],[0,141],[0,149],[43,122],[30,87],[27,83],[26,142],[18,94],[68,23],[116,49],[57,24],[122,52],[123,53],[130,3],[125,3],[97,-117],[74,-90],[82,-99],[5,-21],[6,-83],[-6,-96]],[[92490,49103],[-21,-44],[-13,41],[-16,36],[-13,36],[-17,79],[0,40],[4,42],[1,43],[-8,87],[-19,78],[-68,189],[-21,49],[-24,44],[-16,11],[-31,11],[-14,8],[-26,31],[-24,36],[-60,106],[-31,30],[-17,37],[-94,120],[-27,28],[-34,0],[-28,24],[22,15],[5,40],[-5,41],[47,-67],[50,-58],[14,-47],[25,-3],[45,-38],[30,-35],[29,-40],[33,-58],[62,-45],[9,-17],[32,-75],[42,-64],[14,-35],[177,-301],[30,-85],[2,-58],[-6,-22],[-19,-49],[1,-58],[-6,-51],[-16,-52]],[[92198,49368],[14,-12],[42,60],[22,-42],[28,-20],[30,-12],[-12,-86],[4,-40],[7,-40],[-1,-59],[-13,-52],[-26,-76],[-12,-15],[-13,-8],[-43,-6],[-8,-40],[3,-43],[23,-57],[18,-63],[-18,-59],[-30,-40],[-29,-21],[-47,12],[-50,-5],[-10,-22],[0,-37],[-7,-28],[-9,-25],[-25,-53],[-29,-46],[-38,-45],[-13,-10],[-35,-7],[-31,-26],[-13,-25],[-15,-20],[-33,-22],[-32,-43],[-12,-8],[-66,-7],[-95,-2],[-28,-5],[-27,6],[-15,17],[-32,79],[-28,26],[-30,0],[-41,-28],[-8,6],[-80,116],[-25,28],[-26,21],[-32,15],[-30,23],[-18,55],[2,72],[24,42],[37,-21],[14,0],[14,12],[16,-4],[17,-10],[60,15],[34,-22],[34,-29],[32,-6],[32,6],[43,33],[14,-4],[42,0],[36,44],[14,177],[9,60],[13,14],[9,-4],[13,-30],[-17,-38],[-8,-29],[-2,-71],[9,-69],[22,-54],[32,-7],[29,36],[32,7],[30,-35],[30,6],[14,23],[16,10],[16,4],[14,13],[20,60],[13,67],[19,52],[52,88],[15,11],[17,6],[37,-4],[27,32],[2,70],[-4,72],[-31,167],[-2,27],[4,30],[9,27],[31,0],[32,-9],[13,-26],[14,-20]],[[89159,46590],[0,8],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[0,118],[0,96],[-16,38],[-15,57],[3,74],[19,92],[9,61],[0,50],[0,117],[0,117],[0,117],[0,117],[0,118],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[0,117],[-1,118],[0,117],[0,117],[0,70],[0,39],[0,2]],[[89158,50339],[9,0],[28,-1],[22,-9],[140,-125],[41,-50],[14,-12],[14,-1],[14,-5],[62,-70],[94,-69],[99,-67],[31,-14],[31,-6],[69,-23],[37,-21],[53,-82],[27,-25],[25,-46],[35,-50],[15,-12],[15,-6],[35,-2],[35,9],[15,-4],[14,-9],[13,-17],[6,-33],[22,-47],[31,-20],[29,-42],[27,-50],[19,-50],[22,-43],[34,-18],[35,-2],[120,-253],[6,-39],[1,-165],[-13,-129],[30,-40],[40,-15],[58,-28],[55,-41],[175,-174],[24,-15],[35,-6],[36,3],[13,-9],[26,-32],[14,-20],[24,-57],[21,-61],[9,-17],[11,-14],[6,-33],[9,-103],[-3,-64],[-9,-24],[-28,-11],[-99,-11],[-65,12],[-46,-65],[-2,-28],[4,-27],[40,-137],[23,-121],[20,-50],[29,-40],[26,-48],[24,-54],[50,-95],[27,-36],[31,-21],[53,-74],[7,-33],[16,-103],[6,-69],[1,-29],[4,-26],[46,-63],[11,-18],[20,-140],[16,-65],[27,-24],[31,2],[85,42],[12,1],[16,-10],[14,-23],[4,-63],[-13,-66],[-4,-64],[17,-52],[43,-41],[16,-12],[78,-13],[30,-11],[30,-17],[11,-16],[-8,-28],[-15,-14],[-18,-6],[-29,-20],[1,-36],[16,-38],[15,-45],[12,-17],[14,-11],[33,-15],[33,-22],[22,-22],[22,-15],[48,-10],[36,-29],[51,12],[-44,-47],[-15,-11],[-53,17],[-10,-18],[22,-50],[32,-34],[12,-19],[-9,-23],[-37,-46],[-16,-6],[-29,-4],[-50,20],[-35,25],[-9,34],[-10,20],[-31,49],[-23,26],[-28,9],[-30,-1],[-53,28],[-116,20],[-27,12],[-35,39],[-16,6],[-18,-12],[-44,-8],[-13,3],[-32,33],[-33,12],[-14,-9],[-14,-3],[-44,24],[-34,10],[-28,33],[-15,30],[-17,28],[-16,70],[-24,67],[-31,54],[-65,89],[-13,22],[-25,81],[1,54],[9,54],[-14,-19],[-16,3],[-44,36],[-18,42],[-30,116],[-19,62],[-44,108],[-13,64],[-18,56],[-12,21],[-9,24],[-9,32],[-12,21],[-62,49],[-11,15],[-12,8],[-46,5],[-26,8],[-50,39],[-26,12],[-31,7],[-30,15],[-15,15],[-10,25],[-6,59],[-25,-7],[-25,10],[-24,21],[-24,13],[-17,-18],[-5,-47],[-8,-2],[-14,9],[-7,-5],[-16,-22],[-12,-29],[-23,4],[-47,30],[-21,18],[-18,34],[-15,38],[-16,29],[-19,22],[24,-51],[56,-228],[-14,-4],[-14,6],[13,-44],[-15,-6],[-15,0],[-32,19],[-31,6],[-10,-9],[7,-16],[11,-49],[9,-50],[-46,-23],[-46,-14],[-52,-27],[-53,-2],[-27,16],[-28,9],[-26,-9],[-25,-20],[-21,3],[-14,36],[-6,27],[-8,23],[-20,-4],[-19,-12],[33,-2],[10,-30],[8,-36],[23,-32],[29,19],[61,-5],[60,-57],[14,-7],[13,-11],[31,-56],[24,-51],[19,-59],[4,-23],[-1,-61],[-6,-30],[-39,-43],[-41,-33],[-61,-63],[-59,-73],[-31,15],[-28,38],[-10,10],[-29,21],[-18,7],[-69,-16],[-70,-8],[-30,1],[-28,12],[-32,23],[-31,-11],[-21,-26],[-23,-4],[-44,59]],[[91117,48486],[-11,-4],[-5,26],[-26,23],[-26,70],[1,61],[3,17],[15,1],[57,-70],[6,-22],[-4,-66],[-10,-36]],[[90560,49120],[-19,-17],[-13,13],[-6,38],[5,36],[16,29],[10,9],[12,-20],[4,-38],[-9,-50]],[[92408,50038],[-7,-51],[-17,30],[-12,42],[8,20],[19,11],[9,-52]],[[92249,50145],[-3,-29],[-9,1],[-24,57],[-4,15],[5,14],[28,-41],[7,-17]],[[91601,50948],[-1,-21],[-20,11],[-6,-3],[-34,60],[0,37],[9,31],[15,-5],[25,-39],[12,-71]],[[91966,46071],[12,0],[20,43],[17,13],[11,-20],[-18,-137],[-16,21],[-60,38],[-2,54],[-15,18],[-10,53],[-20,58],[-4,38],[12,-16],[12,-38],[53,-79],[-2,-25],[10,-21]],[[91762,46374],[-4,-14],[-16,10],[-46,80],[7,59],[21,30],[31,-33],[10,-49],[3,-27],[-6,-56]],[[91973,46812],[5,-41],[-22,44],[10,50],[2,27],[-1,15],[-22,26],[11,42],[13,14],[7,4],[0,-59],[6,-27],[-9,-95]],[[92855,45298],[-4,-31],[-10,10],[-30,-16],[-16,4],[-9,28],[-3,13],[27,-10],[-5,31],[38,-16],[12,-13]],[[89884,46957],[-12,-2],[-49,39],[-12,29],[57,-7],[15,-7],[3,-40],[-2,-12]],[[90881,48714],[-15,-3],[-26,54],[-6,21],[3,28],[32,39],[21,-35],[4,-75],[-13,-29]],[[90851,50714],[93,-38],[6,1],[-1,13],[1,4],[6,-10],[-2,-27],[-15,-7],[-13,3],[-10,-15],[-26,-52],[-18,9],[-22,-12],[-38,-1],[-50,23],[-13,-20],[-18,6],[-17,-22],[-8,1],[-4,32],[1,16],[20,14],[-3,49],[17,25],[29,-3],[27,17],[58,-6]],[[91787,50309],[-55,-8],[-20,9],[-18,33],[-16,52],[-16,12],[-7,11],[39,39],[35,12],[56,-49],[6,-25],[0,-16],[-1,-53],[-3,-17]],[[91813,46459],[39,-48],[21,14],[12,-7],[25,-55],[1,-40],[4,-34],[-1,-15],[-14,-21],[1,24],[-10,4],[-37,-1],[-28,15],[-39,4],[16,36],[4,14],[-21,59],[0,28],[1,15],[17,8],[9,0]],[[92397,46682],[16,-9],[33,4],[11,-33],[16,-11],[13,-15],[12,-22],[0,-13],[-3,-12],[-7,-10],[2,-23],[-12,3],[-16,-12],[-30,27],[-11,6],[-3,24],[-19,39],[-35,28],[18,23],[15,6]],[[92648,45232],[46,-30],[16,-34],[-17,-15],[-40,-10],[-10,20],[-39,21],[-6,37],[-19,-13],[10,27],[-25,29],[-7,40],[-1,16],[28,-19],[64,-69]],[[89885,46869],[5,-25],[-40,35],[-39,58],[-19,15],[-13,38],[24,-28],[41,-27],[41,-66]],[[91076,50527],[-9,-30],[-21,3],[-9,9],[15,6],[6,25],[7,8],[11,-21]],[[92209,50212],[-6,0],[-1,46],[4,24],[16,-16],[2,-42],[-15,-12]],[[91915,45757],[-4,-45],[-22,13],[-5,10],[4,28],[20,1],[7,-7]],[[92682,49481],[-2,-13],[-17,15],[14,30],[6,2],[-1,-34]],[[93321,47991],[-7,-54],[-5,-9],[-7,20],[-24,-20],[-11,-22],[-13,-17],[-28,4],[-27,15],[-26,28],[-23,35],[-23,55],[-14,57],[7,66],[-9,60],[-44,43],[-10,14],[-19,59],[-19,26],[-25,52],[-6,23],[-11,66],[-3,40],[9,116],[-4,58],[12,-5],[13,-23],[15,-16],[35,-11],[27,-46],[25,-90],[4,-30],[8,-21],[26,-38],[14,-25],[26,-98],[15,-21],[17,-9],[16,-14],[27,-43],[24,-49],[17,-51],[12,-55],[9,-70]],[[92957,48713],[-6,-4],[-12,72],[-2,54],[-4,40],[-6,24],[18,43],[8,12],[13,-23],[2,-51],[11,-43],[-8,-95],[-14,-29]],[[28507,56830],[-5,-8],[-16,-45],[-8,-39],[20,-41],[6,-44],[11,-47],[17,-47],[20,-89],[4,-35],[-5,-23],[-19,-14],[-17,-41],[-5,-51],[3,-25],[-52,-80],[-13,-13],[-9,12],[-11,40],[-13,33],[-8,11],[-4,1],[-4,-8],[-2,-17],[7,-76],[-6,-30],[-17,-24],[-20,-123]],[[28361,56007],[-8,16],[-67,165],[-58,205],[-12,93],[15,6],[14,-3],[8,15],[9,27],[-7,63],[28,47],[11,32],[7,-3],[19,-55],[26,-31],[33,-46],[21,-10],[-26,47],[-44,63],[-13,42],[-12,57],[-17,-25],[-8,-21],[-9,-12],[-8,15],[-1,18],[-26,4],[-7,17],[-7,9],[3,-36],[5,-22],[-2,-27],[-9,-1],[-7,27],[-9,25],[-13,105],[-29,49],[-14,16],[-11,7],[-17,33],[-22,18],[-29,52],[-37,37],[-44,14],[-54,-9],[-19,-20],[-12,-27],[-6,-12],[-32,-30],[-12,-43],[-7,-37],[-16,-42],[18,-25],[-104,-142],[-21,-20],[-47,-15],[-11,-15],[-14,-28],[-2,-42],[2,-37],[14,-28],[12,-17],[29,-85],[52,-106],[9,-39],[8,-57],[-15,-27],[-12,-11],[-49,-5],[-17,-23],[-7,-35],[-18,-29],[-64,-28],[-49,-3],[-16,33],[-4,92],[-33,158],[-8,108],[-8,-13],[-18,-13],[-6,-27],[-5,-80],[-6,-27],[-14,2],[-28,29],[-37,26],[-48,170],[-5,32],[-9,38],[-37,16],[-32,29],[-34,4],[-17,-16],[-18,21],[-3,46],[-36,-21],[-47,7],[-41,20],[-28,-10],[-24,-33],[4,-85],[-7,-16]],[[26978,56492],[-1,34],[-9,40],[-10,33],[-20,34],[-1,12],[8,18],[38,49],[4,21],[1,43],[-4,41],[-17,60],[10,38],[19,30],[20,24],[4,10],[-4,20],[-12,22],[-27,38],[-16,3],[-1,108],[1,116],[4,11],[10,7],[8,18],[5,34],[11,12],[22,-26],[22,-24],[9,8],[7,11],[5,12],[1,10]],[[27065,57359],[18,-31],[36,-54],[2,-27],[-3,-26],[10,-74],[18,-10],[19,14],[5,-14],[-4,-13],[-9,-15],[-3,-64],[31,-30],[15,-26],[51,13],[19,-7],[13,7],[-14,51],[-19,38],[1,17],[15,-13],[11,-25],[25,-32],[46,-111],[53,-26],[42,3],[39,15],[63,43],[45,78],[36,34],[116,74],[42,77],[17,10],[17,10],[36,58],[20,46],[21,22],[62,-16],[39,-22],[28,3],[27,-15],[11,-33],[12,-14],[65,3],[54,-16],[117,-98],[70,-97],[37,-103],[90,-133]],[[28084,56609],[-6,-24],[-13,54],[2,14],[-1,49],[13,13],[9,1],[7,-7],[5,-58],[-4,-26],[-12,-16]],[[27332,56067],[-15,-3],[-31,24],[-23,48],[-2,15],[1,16],[12,49],[17,17],[6,0],[16,-57],[-11,-21],[5,-35],[22,-26],[3,-27]],[[27157,57246],[-3,-27],[-21,49],[12,8],[5,-1],[7,-29]],[[28037,56597],[-12,-25],[-5,24],[9,25],[3,0],[5,-24]],[[86436,53586],[-6,-3],[-4,2],[0,8],[4,9],[6,4],[4,-3],[0,-8],[-4,-9]],[[87387,56095],[-17,-12],[-8,44],[3,51],[11,39],[12,13],[2,4],[12,51],[3,-28],[-8,-93],[-9,-37],[-1,-32]],[[71323,72385],[13,-52],[19,-78],[13,-51],[14,-58],[7,-29],[13,-50]],[[71402,72067],[-5,-27],[-9,-41],[-30,-30],[-30,-23],[-7,-12],[-3,-18],[-14,-35],[-28,-29],[-24,3],[-15,8],[-79,-51],[-36,2],[-29,-33],[-21,-30],[-42,-33],[-29,-1],[-43,20],[-52,37],[-21,22],[-19,-1],[-47,5],[-45,18],[-54,22],[-27,10],[-55,19],[-35,-26],[-33,-23],[-26,-16],[-22,-71],[-9,-26],[-10,-36],[-5,-25],[4,-31],[32,-21],[13,-30],[2,-26],[-11,-27],[-10,-21],[0,-19],[5,-18],[8,-14],[45,-9],[27,0],[10,-8],[2,-25],[-10,-34],[-38,-28],[-22,-29],[-7,-39],[1,-30],[7,-21],[18,-23],[17,-27],[6,-22],[-3,-30],[-6,-41],[-19,-48],[-16,-34],[-1,-12],[4,-18],[12,-27],[22,-39],[27,-31],[17,-9],[5,-8],[6,-37],[2,-38],[-7,-29],[13,-24],[36,1],[29,-10],[13,10],[8,-8],[-5,-86],[4,-51],[7,-15],[29,-21],[55,3],[33,-24],[36,-28],[19,-31],[8,-22],[-2,-37],[-20,-43],[-32,-21],[-19,-9],[-92,-81],[-29,-34],[-22,-41],[-8,-31],[-4,-30],[19,-108],[4,-34],[-17,-118],[-4,-43],[6,-31],[19,-11],[5,-26],[2,-19],[-35,-43],[-35,-39],[-12,0],[-34,-71],[-58,-144],[-30,-49],[-2,-23],[-3,-24],[12,-41],[2,-34],[-13,-35],[-21,-40],[-42,-34],[-53,-36],[-24,-21],[-18,-93],[-16,-94],[-8,-34],[-28,-108],[-50,-158],[-13,-35],[-77,-76],[-79,-83],[-14,-32],[-16,-75],[-15,-83],[-14,-44],[-50,-97],[-17,-75],[-5,-49],[-42,-27],[-49,-26],[-70,-9],[-29,-13],[-86,-68],[-22,-3],[-16,12],[-13,23],[-12,38],[-6,59],[-16,26],[-23,23],[-23,1],[-24,-25],[-20,-27],[-14,-23],[-14,-26],[-26,-89],[-43,-128],[-48,-92],[-17,-28],[-11,-21],[-15,-31],[-9,-30],[-12,-97],[-6,-86],[3,-19],[7,-17],[26,-25],[37,-41],[49,-24],[41,-4],[16,-18],[9,-24],[2,-20],[-2,-71],[-4,-77],[-16,-82],[1,-47],[6,-46],[45,-117],[17,-12],[34,-3],[16,2],[18,12],[13,-8],[9,-14],[2,-24],[-1,-117],[14,-53],[27,-72],[22,-82],[20,-99],[19,-77],[8,-40],[-13,-20],[-7,-20],[-2,-27],[3,-29],[-2,-20],[9,-25],[11,-8],[0,-17],[-17,-23],[-15,1],[-12,-10],[-23,-48],[-10,-9],[-14,-4],[-16,4],[-22,19],[-7,30],[3,32],[-5,18],[-16,-3],[-56,-32],[-53,-40],[-9,-27],[-12,-28],[-25,-12],[-35,-3],[-25,4],[-23,30],[-21,28],[-32,1],[-58,-4],[-32,0],[-19,10],[-18,-7],[-24,11],[-10,-15],[-10,-1],[-8,26],[-5,2],[-6,-4],[-5,-8],[-4,-15],[-1,-174],[-38,1],[-27,1],[-30,-10],[-27,-13],[-14,-16],[-19,-25]],[[68934,65585],[-4,-34],[-10,-26],[-13,38],[-9,17],[-9,-13],[-14,2],[-26,42],[-11,-43],[-42,-9],[-5,32],[-1,30],[-23,-22],[-17,34],[-7,45],[-6,12],[-8,15],[-17,15],[-16,48],[-1,51],[-4,60],[-33,224],[-20,21],[-110,39],[-6,40],[8,105],[-3,66],[-36,88],[-10,61],[-29,52],[-29,15],[-30,-7],[-15,-20],[-9,-35],[63,8],[14,-13],[17,-23],[-18,1],[-21,11],[-26,-1],[-98,-26],[-56,-37],[-76,11],[-96,-36],[-79,-2],[-33,-71],[-18,12],[-14,18],[-109,56],[-7,23],[-18,17],[-20,-30],[-15,-5],[-59,25],[-46,-19],[-17,-32],[-1,-50],[-57,10],[-32,15],[-43,-17],[-98,23],[-25,-6],[-36,-33],[-15,-26],[-21,-10],[-18,36],[-14,16],[-13,-10],[-18,-30],[-50,-14],[-46,4],[-49,28],[6,9]],[[67107,66360],[8,48],[7,172],[8,62],[-2,34],[2,10],[19,31],[4,12],[8,88],[8,98],[9,35],[7,9],[61,44],[11,29],[31,-7],[3,7],[3,34],[14,36],[21,30],[15,11],[54,19],[32,26],[10,2],[85,-6],[18,10],[3,9],[5,99],[15,16],[3,8],[-5,69],[3,45],[17,27],[-1,16],[-12,32],[-17,21],[-8,5],[-70,-20],[-29,7],[-14,12],[-2,9],[2,20],[1,32],[10,51],[3,30],[-8,175],[-12,116],[6,115],[-1,24],[-2,5],[-9,0],[-43,-10],[-36,74],[-22,30],[-62,36],[-27,7],[-40,32],[-37,70],[-37,72],[-15,45],[-17,78],[-47,149],[0,39],[-6,23],[-46,98],[-33,70],[-53,112]],[[66900,69042],[106,-63],[83,-48],[133,-78],[103,-60],[29,-10],[303,52],[112,-40],[36,-22],[5,13],[15,27],[26,27],[35,21],[36,12],[51,1],[34,-1],[25,-7],[49,4],[24,10],[81,43],[54,29],[82,44],[60,33],[15,17],[15,32],[8,28],[-19,43],[-2,38],[12,48],[7,74],[-2,104],[-4,61],[17,112],[14,63],[28,30],[19,19],[8,13],[8,15],[30,86],[27,40],[26,24],[29,-3],[25,-33],[47,-15],[46,10],[40,25],[18,20],[21,18],[-1,20],[-24,18],[-14,25],[-5,31],[14,18],[31,6],[77,74],[31,49],[9,23],[15,3],[29,-23],[34,-8],[22,23],[21,5],[21,-25],[11,-29],[20,-36],[24,-7],[29,19],[30,41],[29,58],[26,56],[-7,180],[-4,107],[14,55],[19,35],[13,53],[-1,47],[14,40],[13,107],[19,26],[37,17],[61,11],[47,49],[47,52],[7,46],[-18,50],[-24,95],[-22,57],[-52,103],[6,63],[29,26],[72,-44],[20,-9],[25,-6],[66,1],[54,17],[57,39],[11,41],[-1,48],[1,40],[1,56],[-20,35],[-12,32],[-4,25],[14,14],[14,26],[13,47],[31,57],[19,51],[18,24],[27,33],[17,48],[8,29],[16,29],[5,18],[-4,17],[-8,21],[-9,23],[0,23],[7,24],[8,22],[-3,30],[-5,50],[-14,29],[-10,68],[-16,68],[-8,27],[-15,34],[-34,35],[-10,24],[13,46],[22,29],[42,70],[23,48],[21,34],[27,-5],[15,3],[14,31],[27,28],[49,57],[17,39],[26,19],[21,5],[29,13],[28,21],[25,16],[40,3],[63,9],[35,10],[81,8],[89,3],[11,1],[38,-21],[26,-17],[11,2],[43,41],[66,50],[30,22]],[[70705,73169],[17,8],[25,0],[21,-14],[21,-19],[13,-15],[16,9],[30,11],[25,-8],[56,-35],[8,-17],[13,-84],[10,-7],[32,19],[26,-10],[29,-27],[19,-26],[12,-28],[14,-46],[5,-36],[6,-44],[-1,-123],[-10,-20],[-8,-26],[2,-23],[9,-18],[18,-12],[17,-8],[9,-19],[12,-70],[9,-10],[20,0],[38,15],[32,24],[14,5],[3,-66],[19,-25],[26,-29],[11,-10]],[[66311,63489],[-17,-8],[-6,4],[1,73],[40,91],[27,106],[19,-94],[-33,-53],[-17,-91],[-14,-28]],[[65663,66232],[28,-152],[42,-142],[37,-78],[38,-106],[59,-98],[27,-33],[108,-69],[60,-25],[82,-25],[57,-53],[19,-3],[29,15],[22,-1],[54,-73],[16,-69],[23,-36],[20,-57],[13,-60],[45,-92],[33,-103],[33,-76],[29,-47],[44,-19],[36,-21],[4,-51],[-4,-67],[-7,-49],[-33,-96],[-8,-59],[-37,-97],[-41,-163],[-18,-37],[-66,-84],[-48,-102],[-57,-176],[-43,-174],[-17,-56],[-35,-12],[-23,5],[-15,17],[6,47],[4,54],[-21,-6],[-19,-11],[-43,-131],[-24,-57],[-5,-73],[-12,-94],[-16,-86],[-8,-73],[0,-41],[13,-101],[1,-103],[7,-62],[6,-74],[-20,-23],[-18,-11],[-68,-8],[-70,-24],[-61,-43],[-37,-43],[-47,-95],[-29,-243],[-47,-103],[-31,-21],[-76,-9],[-106,-28],[-38,-25],[-62,-148],[-5,-47],[12,-34],[4,-37],[-5,-35],[-29,-94],[-30,-68],[-81,-43],[-30,25],[-27,13],[-53,2],[-86,-17],[-31,-50],[-50,-36],[-46,-55],[-87,-21],[-59,-43]],[[65577,66856],[24,83],[9,13],[8,-6],[22,9],[11,45],[9,25],[10,-3],[4,-14],[-3,-69],[0,-57],[-12,-175],[-13,-30],[-6,-25],[-2,-34]],[[53163,85850],[-1,17],[-5,22],[-65,22],[-12,-1],[-25,13],[-15,4],[-31,8],[-25,64],[-28,54],[-3,22],[0,101],[-8,44],[-2,49],[-17,-39],[9,-63],[-21,-26],[-26,-13],[2,-37],[11,-7],[3,-38],[-7,-56],[-52,-126],[-11,-13],[-7,-17],[-27,11],[-34,-35],[-32,-5],[-12,39],[-46,53],[-22,-3],[20,-26],[19,-34],[-11,-22],[-11,-14],[-18,-8],[-67,-44],[23,-29],[-20,-34],[-23,-5],[-13,-15],[-4,-21],[-69,-61],[-113,-155],[-59,-44],[-40,-46],[-36,2],[-45,-39],[-114,-34],[-75,15],[-53,-13],[-28,26],[-4,19],[2,10],[5,13],[-10,5],[-21,2],[-9,-13],[-1,-29],[-10,-8],[-39,17],[-10,15],[14,30],[25,28],[-5,5],[-5,17],[-11,2],[-35,-4],[-29,5],[-93,62],[-21,33],[-75,52],[-34,56],[-19,61],[2,56],[9,87],[15,22],[68,-31],[68,-51],[10,3],[22,40],[41,32],[-12,9],[-61,-37],[-23,21],[-36,42],[0,21],[17,22],[5,29],[-8,28],[4,37],[27,40],[41,40],[30,39],[31,24],[-4,8],[-34,-15],[-34,-26],[-39,-44],[-48,-35],[-35,-13],[-17,-12],[-26,-11],[-27,-50],[-29,-21],[-53,-3],[-11,37],[15,131],[16,64],[17,45],[27,7],[20,34],[16,0],[13,-16],[54,-15],[26,43],[35,6],[62,42],[-1,8],[-42,-9],[-26,-2],[-37,-10],[-20,7],[-9,32],[15,29],[59,68],[21,30],[11,28],[-2,19],[10,39],[58,69],[47,32],[15,-28],[-13,-84],[0,-35],[38,123],[16,30],[19,20],[45,14],[13,20],[-53,-7],[-127,-47],[-54,-42],[-15,-32],[-37,-49],[-17,-31],[-8,-47],[-21,-25],[-29,-9],[-39,-59],[-17,-48],[-39,-37],[-25,-29],[-8,-11],[-14,-28],[-11,-2],[-10,16],[-1,37],[3,59],[19,42],[9,42],[-12,38],[9,24],[16,0],[31,-11],[33,1],[54,31],[-9,18],[-23,2],[-44,-2],[-36,29],[-29,59],[-13,79],[9,23],[105,81],[28,36],[-16,4],[-39,-45],[-57,-27],[-35,38],[-19,41],[-11,87],[4,45],[-4,59],[24,19],[27,-10],[26,-4],[61,5],[133,35],[85,-21],[35,2],[54,31],[46,3],[35,-23],[19,-27],[3,-36],[16,-23],[11,7],[-9,29],[-2,43],[140,50],[17,19],[-56,7],[-16,45],[30,68],[-3,9],[-31,-36],[-15,-51],[6,-40],[-6,-19],[-29,-9],[-64,-3],[-41,17],[-38,10],[-13,13],[4,29],[-7,6],[-16,-26],[-14,-52],[-30,-12],[-84,19],[-121,-11],[-54,-26],[-35,3],[-61,46],[-24,36],[-8,73],[3,33],[47,13],[24,-1],[22,17],[-19,12],[-28,22],[-19,44],[-29,14],[-19,38],[-5,57],[6,40],[15,13],[37,-9],[97,6],[91,-40],[62,-23],[125,12],[73,36],[-13,10],[-80,-21],[-73,1],[-130,40],[-53,14],[-57,-6],[-30,12],[-18,40],[13,77],[27,17],[15,-20],[18,-2],[18,32],[17,19],[14,41],[51,39],[22,3],[31,18],[20,-5],[12,-18],[16,-15],[35,2],[103,31],[11,10],[20,25],[-65,-11],[-54,-18],[-35,-5],[-5,22],[13,21],[20,21],[10,37],[22,16],[24,-1],[50,7],[35,9],[60,-6],[90,-14],[58,-34],[21,3],[23,9],[11,12],[-46,14],[-2,21],[5,15],[74,28],[81,6],[-14,23],[-177,-34],[-46,23],[-36,0],[-24,-13],[-68,-16],[-13,11],[13,40],[41,65],[3,16],[19,16],[106,37],[51,44],[23,6],[22,-3],[35,5],[67,-13],[30,-55],[28,-17],[87,-69],[-4,20],[-75,93],[-29,23],[-21,46],[7,43],[24,29],[86,15],[15,17],[2,29],[-13,19],[-32,-1],[-26,12],[-7,31],[10,21],[50,38],[27,13],[47,13],[81,-30],[6,-16],[-22,-38],[2,-21],[20,-3],[46,64],[55,9],[23,14],[26,9],[38,-58],[16,-19],[12,-7],[12,-48],[12,-3],[17,24],[30,13],[42,8],[69,-12],[32,9],[15,-1],[-14,43],[-10,12],[15,39],[15,15],[48,27],[46,12],[30,26],[40,24],[-6,18],[-12,22],[-26,2],[-10,12],[33,28],[45,32],[-8,12],[-34,14],[-26,-10],[-38,-25],[-45,-39],[15,-11],[22,-32],[-31,-43],[-166,-115],[-78,-34],[-37,5],[-9,32],[-16,23],[-18,48],[-31,-1],[-17,-11],[-8,16],[13,51],[26,40],[44,31],[20,36],[20,59],[63,55],[91,138],[75,44],[27,48],[44,21],[38,37],[29,4],[54,34],[30,40],[-20,2],[-47,-26],[-27,-10],[2,43],[13,44],[39,40],[186,117],[19,-19],[22,-35],[56,8],[64,66],[49,72],[-26,-12],[-29,-30],[-57,-41],[-26,-6],[-15,5],[-8,28],[-20,8],[-18,-6],[-18,20],[-3,48],[23,71],[19,47],[20,36],[78,101],[17,56],[36,29],[46,-7],[14,9],[-16,36],[-50,29],[-3,18],[167,47],[80,-1],[24,23],[43,15],[33,29],[-17,13],[-81,-26],[-51,-13],[-23,0],[-18,-9],[-64,-3],[-14,115],[10,63],[24,-2],[5,60],[28,35],[39,8],[19,15],[28,31],[46,-7],[48,7],[-12,14],[-59,19],[-14,32],[20,17],[23,13],[20,3],[40,62],[24,27],[26,-5],[38,28],[37,-10],[35,18],[49,12],[178,5],[5,25],[-38,6],[-132,7],[-67,-1],[-29,-7],[-10,9],[2,16],[24,24],[12,26],[49,65],[58,44],[44,-11],[46,-42],[34,-5],[15,-13],[25,-57],[11,-2],[-5,55],[32,44],[-8,13],[-49,-16],[-37,16],[-29,34],[-8,31],[18,30],[17,15],[-11,18],[-74,-48],[-51,-11],[-21,7],[11,43],[-6,34],[70,85],[23,9],[39,-6],[35,-24],[30,4],[32,12],[-5,23],[-69,9],[-18,19],[7,19],[47,19],[48,36],[54,10],[43,27],[8,-6],[8,-11],[15,-99],[39,-81],[15,-3],[-15,69],[14,20],[17,15],[6,17],[-20,6],[-17,24],[-24,79],[9,21],[51,41],[64,10],[68,-29],[24,-1],[40,8],[67,24],[40,10],[20,0],[5,12],[-19,8],[-6,7],[-15,5],[-62,-13],[-172,4],[-16,14],[-3,24],[18,34],[20,20],[65,34],[68,5],[72,61],[28,45],[15,71],[44,57],[111,32],[4,14],[-12,30],[1,53],[31,63],[20,21],[9,3],[24,-21],[29,-43],[45,-24],[59,-5],[16,12],[-46,25],[-35,32],[-3,33],[17,17],[25,-2],[33,4],[30,21],[4,16],[1,20],[8,22],[44,50],[136,33],[10,-14],[-7,-97],[-16,-63],[0,-46],[27,46],[35,126],[27,59],[30,34],[22,8],[21,17],[28,11],[9,-14],[9,-31],[-16,-110],[2,-35],[-17,-46],[-65,-104],[3,-13],[15,5],[25,17],[80,98],[70,-12],[1,8],[-22,29],[-28,28],[-8,34],[4,91],[21,37],[60,-4],[37,5],[17,-17],[36,1],[25,66],[50,6],[44,-44],[52,-29],[43,-42],[12,12],[-23,98],[-25,35],[-54,19],[-58,44],[-15,19],[3,15],[50,14],[68,-16],[59,36],[17,-10],[46,19],[28,-25],[17,7],[11,35],[73,21],[46,-20],[25,-20],[12,-39],[17,-78],[36,-42],[23,-21],[27,-5],[12,21],[-24,25],[-7,24],[12,59],[14,23],[78,87],[66,46],[39,4],[68,102],[20,18],[18,5],[-5,24],[-37,16],[-2,31],[50,38],[60,63],[30,4],[18,-17],[59,-29],[35,-33],[26,-16],[17,3],[14,25],[17,11],[37,-6],[22,-16],[18,-2],[15,-9],[4,-21],[-32,-23],[-55,-61],[-54,-69],[-18,-36],[-17,-95],[-43,-61],[-3,-43],[17,-20],[47,16],[57,57],[15,60],[143,164],[68,91],[76,75],[43,15],[21,-49],[-17,-65],[-32,-41],[24,-19],[-5,-50],[-7,-27],[-5,-28],[0,-26],[23,7],[89,52],[23,56],[21,42],[10,36],[35,34],[66,0],[3,14],[-80,47],[-9,22],[27,28],[73,55],[38,-6],[23,-13],[91,-9],[69,-39],[-2,-61],[-16,-26],[-15,-15],[-89,-47],[-15,-22],[28,-8],[60,23],[16,-21],[-19,-53],[-4,-78],[-7,-46],[0,-42],[8,-23],[24,90],[8,22],[36,34],[13,68],[34,81],[39,47],[23,13],[75,-2],[33,-18],[28,-39],[21,-16],[67,-17],[24,-21],[4,-12],[16,-3],[45,30],[30,5],[48,-46],[-10,-35],[3,-11],[58,2],[48,-13],[92,-71],[10,-33],[-5,-40],[-132,-44],[-57,-42],[-94,-16],[-318,28],[7,-31],[221,-66],[13,-19],[-7,-40],[-1,-33],[5,-22],[16,-20],[27,-10],[55,5],[27,-11],[19,17],[7,55],[16,12],[31,-16],[13,-59],[9,-6],[15,42],[31,-3],[33,3],[43,-7]],[[58045,91602],[-20,22],[-17,34],[4,33],[50,64],[46,45],[13,16],[27,46],[-54,114],[-94,34],[-108,53],[-40,28],[-62,58],[-43,52],[-40,1],[-43,-13],[-68,-47],[-39,-24],[-22,-7],[-5,-1],[-49,14],[-54,3],[-43,-4],[-16,-7],[-61,-76],[-42,-39],[-23,-14],[-17,-22],[-14,-37],[-31,-128],[-23,-48],[-5,-30],[5,-89],[-5,-50],[-28,-40],[-20,-19],[-27,-4],[-34,-10],[-30,-24],[-21,-32],[-24,-73],[-40,-26],[-39,7],[-28,27],[-59,21],[-44,13],[-49,28],[-44,22],[-39,4],[-23,-27],[-18,-26],[-68,-21],[-39,-16],[-50,-4],[-20,19],[-72,12],[-86,14],[-25,0],[-8,32],[-23,46],[-61,79],[-25,28],[-48,65],[-55,67],[-7,2],[-37,2],[-54,-2],[-34,-15],[-22,-20],[-4,-15],[21,-61],[-6,-16],[-11,-7],[-49,17],[-59,-1],[-15,-19]],[[51377,87030],[-25,-8],[-19,6],[7,55],[10,9],[15,4],[16,-30],[-4,-36]],[[51412,86582],[1,-68],[-25,5],[-12,26],[-3,17],[2,39],[-6,41],[7,20],[10,3],[16,-36],[10,-47]],[[58321,92048],[-53,-17],[-6,14],[11,22],[14,44],[22,-2],[22,-17],[17,-20],[-27,-24]],[[53324,89646],[-18,-18],[-35,5],[-3,15],[9,31],[21,13],[27,-3],[9,-13],[-10,-30]],[[52352,88517],[-31,-1],[-20,13],[46,25],[72,25],[6,15],[9,2],[12,-19],[2,-26],[-8,-13],[-88,-21]],[[52250,88327],[-27,0],[-32,9],[-21,19],[-3,16],[38,21],[37,12],[18,-23],[1,-37],[-11,-17]],[[56511,92635],[-6,-18],[-9,-18],[-23,-18],[-66,-74],[-38,-11],[-13,-12],[-15,-7],[-48,10],[-14,-15],[-14,-10],[-34,-4],[-21,4],[-53,27],[-31,29],[-17,26],[49,-1],[17,6],[33,-5],[19,26],[42,-3],[80,18],[29,-10],[67,60],[21,-2],[32,17],[13,-15]],[[57107,92823],[74,-22],[25,0],[37,-41],[19,4],[-3,-25],[-37,-12],[-58,-7],[-9,-5],[-49,4],[-28,33],[-47,9],[0,11],[30,25],[46,26]],[[56559,92482],[5,-27],[2,-23],[-26,-32],[-59,-42],[3,-11],[-20,-11],[-31,-8],[-17,8],[2,36],[-5,11],[-23,-15],[-24,19],[-1,18],[7,16],[23,25],[37,16],[25,-6],[83,65],[9,-14],[10,-25]],[[56671,92492],[-53,-23],[-31,20],[-13,20],[-1,45],[7,27],[25,15],[16,-11],[4,-8],[29,-9],[34,-28],[-17,-48]],[[53853,91166],[17,-10],[43,3],[8,-4],[-6,-16],[-19,-18],[-39,-11],[-18,-27],[-12,-9],[-34,-1],[-20,-6],[-25,-24],[-20,18],[-5,-13],[-4,-23],[-11,-6],[-34,-9],[-8,53],[16,20],[12,22],[19,4],[17,-2],[30,50],[42,14],[26,1],[25,-6]],[[53603,90941],[-41,-31],[15,56],[22,56],[30,32],[16,-12],[-7,-27],[0,-27],[-7,-13],[-28,-34]],[[54224,91556],[36,-58],[16,-34],[-13,-64],[-35,-32],[-54,-6],[-38,3],[-24,16],[-3,17],[-14,5],[-37,-22],[-25,-3],[-32,17],[-9,28],[34,35],[16,27],[38,-3],[10,-8],[21,-5],[13,32],[-3,23],[10,15],[46,-11],[0,61],[17,5],[8,-3],[13,-13],[9,-22]],[[55490,92290],[15,-7],[14,4],[11,-6],[23,-30],[25,-12],[2,-15],[-23,-15],[-31,-4],[-32,5],[-9,19],[-10,31],[-27,31],[-4,27],[23,5],[23,-33]],[[55771,92217],[-15,-14],[-23,-5],[-12,8],[-17,6],[-20,-3],[-16,25],[1,20],[23,28],[45,16],[36,-6],[10,-9],[-12,-66]],[[55348,92203],[25,-31],[22,3],[6,12],[15,6],[30,-17],[-4,-28],[-42,-36],[-30,-50],[-38,-12],[-18,6],[-35,-29],[-27,-31],[-28,-38],[-2,-20],[-5,-15],[-104,-15],[-37,-10],[-40,12],[-19,26],[6,14],[40,5],[1,24],[10,14],[13,8],[9,30],[16,8],[30,-7],[20,22],[11,3],[14,-18],[6,25],[-6,23],[3,15],[38,40],[17,29],[24,19],[22,-3],[7,28],[-7,28],[3,18],[20,45],[22,2],[11,-40],[1,-65]],[[53474,89805],[-22,-2],[0,23],[13,22],[20,14],[26,4],[29,2],[9,-12],[-17,-16],[-58,-35]],[[53449,89886],[-25,-4],[4,26],[21,24],[8,16],[4,20],[18,14],[26,-19],[1,-31],[-13,-30],[-44,-16]],[[53119,89208],[-14,-16],[-33,13],[-63,-10],[-26,15],[20,31],[58,32],[31,-2],[31,-39],[-4,-24]],[[54861,91933],[34,-33],[15,10],[29,3],[22,-11],[18,-21],[22,-1],[13,-27],[7,-36],[-16,-27],[-22,-12],[-6,-31],[9,-44],[-49,-15],[-58,-7],[-22,21],[-45,-38],[-46,-60],[-21,-7],[-2,19],[-32,13],[-42,1],[1,14],[8,10],[36,15],[7,30],[-7,54],[7,26],[1,19],[23,21],[77,-10],[9,20],[-6,13],[-39,22],[6,15],[28,14],[28,2],[8,22],[1,10],[4,6]],[[54377,91336],[4,-4],[38,56],[41,17],[3,19],[16,19],[-2,31],[9,24],[21,7],[13,8],[15,5],[27,-20],[15,-22],[19,-50],[-8,-48],[-50,-38],[-40,-17],[-41,-43],[-20,-35],[-17,-8],[-11,3],[-10,9],[-21,0],[-22,-31],[-68,-25],[-27,7],[-1,31],[-16,-3],[-26,-36],[-25,-12],[-16,-4],[-31,14],[-83,-63],[-78,-11],[-25,7],[0,38],[50,49],[41,34],[142,23],[88,101],[21,109],[21,39],[-10,23],[-24,4],[-1,34],[12,37],[47,51],[25,22],[42,62],[20,14],[23,0],[23,-16],[-4,-33],[-34,-60],[-50,-51],[6,-37],[20,-30],[5,-51],[1,-50],[-38,-66],[-9,-33]],[[47512,92649],[-25,-4],[-15,13],[37,35],[124,66],[49,63],[95,22],[6,-35],[-6,-44],[-84,-35],[-92,-23],[-89,-58]],[[55338,94695],[-33,-23],[-51,34],[-33,43],[18,16],[89,3],[22,-23],[4,-13],[-16,-37]],[[57465,97147],[-41,-1],[-75,42],[-14,37],[13,15],[36,1],[57,-51],[61,-15],[-37,-28]],[[59034,97994],[-263,-22],[-27,16],[427,63],[22,6],[80,8],[68,-14],[-20,-11],[-287,-46]],[[56002,97117],[38,-14],[83,3],[45,-98],[26,-103],[41,-8],[80,15],[70,7],[36,-8],[65,-30],[28,-21],[-24,-17],[-59,-19],[-10,-55],[59,-20],[98,-47],[56,-6],[98,19],[93,-37],[92,-45],[-215,-56],[-19,-16],[-29,-42],[-32,-35],[-29,-20],[-64,-35],[-35,-13],[-78,3],[-29,-14],[-27,-28],[-27,-21],[-69,-5],[-35,28],[12,9],[5,17],[-13,40],[66,40],[15,23],[-13,8],[-18,-2],[-48,12],[-14,0],[-40,-24],[-55,-16],[-55,-4],[-224,-31],[-34,11],[-15,61],[91,31],[14,53],[23,35],[26,23],[50,60],[12,4],[-123,48],[-48,31],[-53,61],[-17,50],[-71,42],[9,54],[-52,-4],[-41,38],[38,21],[190,24],[113,24],[43,-1]],[[55804,98069],[28,-6],[153,2],[30,-14],[11,-34],[24,-12],[32,-3],[81,-42],[28,-6],[24,23],[19,58],[0,68],[-7,33],[9,21],[27,8],[34,-2],[34,12],[29,21],[31,3],[67,-16],[18,-13],[-18,-25],[-7,-37],[-31,-75],[66,-4],[93,15],[24,22],[50,35],[53,-5],[25,4],[13,15],[5,18],[29,-3],[40,-34],[19,-6],[34,9],[13,0],[34,-14],[157,-25],[54,-14],[24,-12],[23,-8],[167,1],[118,-9],[43,-20],[37,-38],[14,-88],[-33,-24],[-239,-108],[-60,-35],[-29,-32],[-48,-70],[-24,-21],[-112,-34],[-26,-3],[-84,16],[-25,-2],[-102,-36],[-36,-22],[-34,-27],[-51,-13],[-53,7],[-237,14],[-32,20],[-26,37],[47,48],[-265,-18],[-292,10],[-15,6],[-13,19],[-100,12],[-75,15],[-64,26],[-62,33],[20,15],[20,9],[54,4],[48,-4],[85,0],[20,33],[34,10],[27,24],[-90,15],[-94,2],[-62,-20],[-73,-9],[-66,-1],[-127,6],[-60,14],[-83,36],[-28,21],[-11,16],[-9,24],[95,21],[36,17],[36,24],[-142,13],[-60,19],[-59,29],[48,16],[192,13],[51,-11],[50,-21],[56,-12],[53,27],[-50,12],[-46,45],[-9,22],[6,17],[23,3],[18,-7],[67,-42],[51,-14],[14,39],[2,19],[-9,15],[-24,28],[-21,35],[33,9],[33,-4],[70,-24],[71,-17],[32,-16],[61,-42],[56,-29]],[[54662,97872],[15,-1],[14,6],[10,16],[11,9],[71,-11],[99,-32],[30,-16],[41,-33],[34,-55],[-27,-40],[-35,-37],[-12,-21],[13,-30],[-6,-29],[-13,-26],[54,29],[114,94],[17,6],[18,-3],[51,-19],[46,-48],[11,-16],[8,-20],[5,-24],[-3,-28],[-4,-19],[-25,-12],[-11,-12],[26,-1],[30,-15],[27,-31],[31,-13],[111,11],[73,-17],[39,-52],[62,12],[0,27],[13,12],[82,-9],[43,-13],[43,-27],[-74,-45],[61,-43],[103,-31],[61,-33],[12,-14],[10,-18],[-40,-24],[-41,-13],[-104,-2],[-93,-17],[-172,-12],[-26,-7],[-6,-7],[-10,-21],[-66,-47],[-64,-58],[-26,-35],[-20,-49],[-8,-29],[15,-29],[-4,-30],[-48,-23],[-31,0],[-38,4],[-38,-13],[-2,-20],[2,-28],[-9,-85],[-12,-65],[-18,-59],[-19,-33],[-25,-9],[-81,-5],[-62,-57],[-50,-100],[-26,-39],[-55,-62],[10,-22],[17,-24],[-30,-43],[-46,-48],[1,-19],[16,-34],[7,-35],[-35,-30],[-66,-16],[-66,17],[-32,21],[-30,32],[-32,22],[-33,13],[-127,72],[-117,114],[-108,45],[-69,21],[-34,20],[-33,28],[-28,31],[-27,39],[-12,24],[-3,36],[9,21],[12,11],[85,9],[31,-5],[30,-19],[27,-7],[63,94],[357,54],[115,9],[115,0],[-18,25],[-15,33],[-17,7],[-87,-18],[-133,-19],[-65,0],[-67,13],[-67,-7],[-69,-28],[-69,-17],[-68,-7],[-143,3],[-35,14],[-48,33],[-11,17],[-10,21],[-9,63],[10,17],[14,9],[15,6],[32,1],[31,-11],[72,-36],[-17,39],[208,46],[96,40],[49,6],[50,-2],[-11,21],[0,20],[35,16],[25,7],[77,8],[174,-2],[62,11],[47,28],[-50,-10],[-50,-2],[-23,6],[-53,24],[-24,31],[68,63],[24,30],[-70,-5],[-23,-10],[-80,-58],[-60,-26],[-73,-12],[-73,1],[-16,8],[-22,39],[-7,20],[3,11],[23,31],[12,34],[-2,29],[-17,5],[-27,-28],[-25,-39],[-33,-20],[-35,6],[-15,15],[-13,23],[-13,9],[-15,0],[-31,-9],[-31,-18],[11,-25],[3,-29],[-14,-23],[-10,-28],[32,-17],[26,-28],[-39,-13],[-38,-18],[-34,-29],[-36,-23],[-56,-2],[-70,-12],[-141,-5],[-66,37],[-12,17],[-13,12],[-44,19],[-63,57],[-50,64],[-33,6],[-49,21],[-27,19],[-25,24],[-8,29],[3,26],[29,12],[-69,29],[-68,39],[25,13],[25,6],[202,-46],[14,6],[22,23],[-8,7],[-34,5],[-46,0],[-11,5],[-18,24],[-16,30],[-6,20],[-3,23],[34,35],[19,32],[-29,14],[-83,-1],[-28,-4],[10,-45],[-26,-31],[-51,-25],[-36,12],[-28,60],[-37,41],[-14,26],[-10,38],[-15,27],[-27,33],[-3,20],[3,16],[20,34],[-15,28],[-19,25],[-1,14],[18,18],[16,6],[17,-2],[51,-21],[28,-25],[9,2],[19,38],[25,8],[100,12],[111,-48],[29,-10],[23,-4],[-12,21],[-7,28],[17,10],[89,-24],[42,1],[98,33],[163,16],[62,-25],[3,-14],[-2,-18],[-3,-5],[-36,-22],[-206,-17],[-134,-66],[183,10],[33,-7],[14,-55],[13,-5],[48,-8],[32,-16],[32,-31],[34,-21],[21,3],[7,22],[-8,27],[-5,30],[3,33],[5,27],[39,19],[56,62],[59,42],[66,-19],[62,-53],[55,-74],[53,-80],[60,-99],[29,-35],[27,-8],[121,-103],[13,-3],[-25,78],[-62,133],[-43,102],[-9,39],[-7,54],[3,16],[5,14],[31,59],[40,28],[-12,40],[10,31],[42,24],[39,2],[38,-19],[73,-65]],[[53125,97125],[3,-40],[45,4],[53,-42],[58,-22],[17,-16],[12,-20],[35,-40],[17,-42],[-42,-4],[-58,60],[-47,34],[-60,29],[-48,2],[-21,12],[-78,105],[-15,24],[-44,39],[-20,48],[0,38],[60,-9],[52,-24],[45,-54],[9,-16],[-21,-22],[21,-27],[27,-17]],[[55205,98099],[-60,-32],[-100,25],[12,25],[23,15],[64,-6],[61,-27]],[[58068,97299],[83,-4],[83,9],[14,-9],[-107,-31],[-119,16],[-107,4],[-127,-33],[-42,13],[65,33],[70,10],[11,20],[27,4],[93,2],[56,-34]],[[85175,73606],[-3,5],[-14,4],[-56,47],[-46,-29],[-12,-37],[-12,-12],[-19,73],[-30,2],[-48,65],[-21,-13],[-5,-26],[-26,-60],[-37,-48],[-12,-7],[-13,3],[2,14],[-15,55],[-58,22],[-21,23],[-11,6],[57,61],[15,11],[-11,14],[-12,7],[-47,-9],[-24,20],[-36,-7],[-24,16],[51,60],[2,36],[-1,27],[26,80],[26,44],[67,62],[30,9],[21,-3],[17,6],[-18,24],[-18,11],[-35,-2],[-36,36],[-3,38],[70,240],[1,22],[-11,58],[-3,57],[-51,33],[-22,4],[-64,64],[-26,33],[-10,-10],[-2,-51],[-9,-12],[-17,-10],[-9,59],[-14,42],[-42,44],[-16,23],[8,52],[-4,4]],[[84544,74886],[7,58],[26,45],[64,79],[17,37],[33,44],[14,-1],[16,4],[4,19],[4,15],[13,13],[31,25],[36,31],[28,9],[35,48],[14,21],[15,0],[3,10],[9,24],[11,16],[15,3],[25,12],[32,7],[22,40],[7,29],[14,31],[31,34],[20,51],[24,55],[11,18],[10,3],[7,21],[7,59],[11,56],[6,27],[27,30],[7,14],[6,5],[12,-4],[16,17],[16,19],[14,-7],[15,-15],[15,-32],[7,-25],[12,-21],[2,-30],[12,-14],[25,-6],[42,-21],[27,-1],[15,-16],[32,-8],[64,12],[26,-7],[11,-19],[17,-16],[10,-1],[14,27],[16,42],[10,32],[-1,26],[-9,28],[-21,25],[-14,40],[-13,41],[-8,14],[-6,20],[-1,30],[4,21],[32,14],[41,8],[33,-9],[56,6],[34,12],[25,-2],[23,0],[11,18],[32,42],[16,15],[17,29],[3,30],[3,24],[10,26],[17,32],[14,15],[16,-2],[17,-15],[11,-14],[12,4],[10,25],[7,5],[19,2],[6,16],[8,74],[7,59],[2,40],[17,68],[6,41],[10,19],[12,-1],[10,-12],[12,-7],[17,6],[12,-10],[7,-22],[25,-15],[2,-11],[0,-74],[13,-34],[18,-31],[25,-29],[14,-6],[8,-20]],[[86301,76210],[-14,-16],[-19,10],[-31,6],[-39,-51],[-22,-17],[-16,-50],[-31,-30],[-17,-31],[-22,-54],[-14,-53],[-33,-54],[-20,-67],[-1,-58],[21,-59],[2,-51],[-15,-104],[9,-110],[-10,-43],[-102,-76],[-26,-37],[-38,-98],[-46,-36],[-28,-40],[-39,-24],[-26,-69],[-27,-39],[-33,-24],[-25,-30],[-55,-2],[-39,-21],[-27,-58],[-83,-66],[-12,-49],[6,-77],[0,-58],[-7,-49],[-18,14],[-10,-16],[-11,-44],[4,-51],[28,-17],[23,-20],[33,-11],[24,-24],[52,-107],[42,-47],[11,-17],[24,-24],[22,-37],[13,-33]],[[84695,74617],[-16,-17],[0,30],[12,25],[12,3],[-8,-41]],[[52027,54388],[-26,-18],[-18,4],[24,77],[12,-17],[16,-7],[-8,-39]],[[53779,59737],[44,-124],[47,-133],[36,-104]],[[53906,59376],[27,-268],[3,-51],[2,-23],[2,-21],[3,-37],[21,-16],[40,-7],[29,-26],[17,-44],[1,-7],[9,-34],[3,-24],[-3,-71],[-6,-90],[-10,-58],[6,-79],[-2,-34],[-4,-23],[-18,-27],[-24,-26],[-57,-76],[-17,-12],[-24,-2],[-21,-19],[-25,-41],[-53,-154],[-46,-154],[-16,-128],[-17,-122],[-40,-78],[-6,-44],[-2,-25],[-1,-59],[-5,-97],[-6,-47],[-7,-14],[-43,-30],[-25,-35],[-15,-71],[-5,-77],[-9,-87],[-5,-76],[-7,-40],[-14,-42],[-22,-44],[-19,-26],[-50,-16],[-26,-101],[-21,-79],[-1,-32],[-21,-164],[-36,-124],[-3,-44],[0,-35],[-45,-109],[-12,-32],[-12,-42],[12,-41],[12,-37],[2,-12],[-20,-35],[-36,-60],[-22,-36],[-5,-20],[-3,-90],[-6,-25],[-14,-33],[-21,-37],[-22,-28],[-24,-20],[-23,-7],[-13,12],[-8,27],[-13,111],[-7,24],[-15,21],[-30,61],[-30,61],[-36,43],[-8,-3],[-6,-12],[-11,-61],[-10,-23],[-19,-8],[-33,0],[-25,8],[-5,13],[-5,26],[-7,22],[-29,-43],[-46,-68],[-15,-12],[-11,-13],[-15,-64],[-18,-68],[-24,-35],[-23,-30],[-14,-26],[-19,-31],[-37,-77],[-50,-102],[-17,-53],[-18,-78],[-10,-87],[-11,-96],[-16,-153],[-24,-87],[-20,-69],[-16,-54],[-8,-45]],[[52376,54582],[-3,1],[-8,-19],[-23,13],[-11,39],[-14,6],[-25,57],[-5,-9],[26,-145],[-10,-57],[-73,-1],[-64,-19],[-43,1],[-22,21],[-10,54],[-3,-5],[-3,-30],[-13,-22],[-49,-5],[-22,37],[-17,42],[-19,18],[3,-17],[22,-41],[-3,-58],[-39,-67],[-25,-4],[-16,29],[-8,47],[-4,70],[-10,46],[-6,0],[5,-42],[2,-34],[0,-71],[19,-55],[-29,-17],[-11,-1],[-23,-1],[-4,20],[-5,46],[-6,12],[-7,-78],[-15,-5],[-10,1],[-46,-17],[-10,3],[-2,14],[6,22],[-2,35],[-15,-27],[-3,-54],[-9,-8],[-27,7],[-29,28],[-18,28],[-30,39],[-58,111],[-10,49],[-17,61],[-12,62],[-18,105],[5,8],[14,-9],[7,15],[-25,12],[-5,12],[-1,37],[1,45],[19,16],[18,8],[8,27],[5,28],[-45,-42],[-43,47],[-9,29],[4,22],[21,3],[29,-1],[17,21],[-10,8],[-19,-1],[-7,14],[0,34],[-6,-7],[-8,-31],[-29,-22],[-16,22],[-2,50],[-4,23],[-14,17],[-50,132],[-63,110],[-57,76],[-84,36],[-178,-2],[-10,11],[11,17],[16,12],[57,61],[-10,8],[-59,-38],[-21,-4],[-26,-74],[-156,-12],[-19,-3]],[[50751,55512],[1,33],[7,97],[5,38],[6,29],[-6,34],[-6,47],[-3,74],[8,22],[2,28],[-1,43],[0,145],[4,16],[5,12],[0,20],[-9,37],[-9,43],[0,61],[-3,60],[-6,27],[4,102],[3,128],[-3,57],[6,40],[3,100],[0,97],[11,153],[35,7],[40,13],[19,60],[10,77],[-3,75],[8,25],[16,41],[29,58],[-1,64],[8,20],[14,15],[20,8],[23,32],[12,56],[12,89],[-19,63],[0,13],[8,34],[11,34],[10,10],[22,-8],[3,3],[4,10],[14,99],[-2,27],[-20,66],[-3,47],[-3,70],[-5,62],[-6,23],[-11,20],[-5,13],[-42,126],[1,60],[18,76],[11,37]],[[50998,58580],[16,21],[3,17],[-4,22],[-8,16],[-2,34],[2,23],[6,25],[-2,53],[0,80],[3,118],[0,71],[35,53],[49,89],[25,91],[14,70],[17,232],[12,14],[14,11],[50,84],[38,31],[29,18],[44,16],[28,-6],[49,-4],[40,8],[33,46],[15,13],[21,8],[96,-62],[96,-59],[18,6],[14,-8],[24,-32],[36,-68],[21,-44],[10,-26],[50,-148],[18,-37],[18,-20],[19,-7],[15,2],[13,17],[19,33],[28,15],[23,-3],[120,133],[12,1],[34,-10],[39,-18],[100,-134],[82,-87],[58,-29],[67,-21],[116,-6],[87,187],[32,41],[39,37],[12,6],[68,28],[135,24],[125,-10],[25,-8],[54,-24],[82,-61],[36,-59],[55,-9],[40,11],[14,58],[40,76],[29,31],[31,40],[49,49],[40,22],[37,57],[28,17],[50,2]],[[50998,58580],[-17,53],[-23,37],[-25,16],[-17,27],[-9,37],[-33,73],[-75,144],[-8,3],[-12,6],[-22,-17],[-13,-24],[-9,-9],[-14,-1],[-36,-19],[-28,-23],[-1,-19],[14,-109],[-7,-59]],[[50663,58696],[-13,28],[-41,110],[-29,81],[-5,18],[-4,28],[3,12],[11,9],[27,11],[5,8],[1,23],[-4,41],[-15,57],[-15,37],[-8,7],[-16,2],[-17,-5],[-32,-46],[-14,-9],[-33,4],[-30,9],[-18,24],[-53,91],[-59,96],[-25,13],[-5,10],[-4,74],[1,89],[3,23],[25,-14],[26,-6],[8,16],[-21,32],[-30,32],[-11,48],[-9,17],[-13,17],[-16,9],[-15,14],[-11,14],[-17,6],[-19,10],[-26,79],[-26,76],[-16,60],[-5,36],[8,62],[-8,24],[-29,62],[-24,59],[6,89],[5,75],[0,47],[4,27]],[[50060,60432],[3,30],[16,10],[41,-1],[79,-14],[64,16],[3,3],[45,80],[50,84],[74,8],[81,9],[64,4],[92,7],[75,5],[86,7],[3,38],[5,10],[9,1],[63,-21],[60,-20],[4,73],[53,92],[30,18],[7,16],[9,31],[6,48],[3,34],[11,28],[8,52],[11,90],[29,95],[17,129],[3,125],[3,95],[9,19],[0,168],[-1,170],[0,143],[0,178],[-1,156],[0,169],[0,152],[0,101]],[[51174,62870],[60,24],[63,25],[92,36],[99,39],[108,43],[25,26],[81,146],[37,66],[74,130],[56,101],[72,128],[76,129],[61,103],[95,117],[144,176],[144,176],[144,175],[143,176],[144,176],[144,176],[144,176],[144,176]],[[53324,65390],[145,-67],[137,-64],[138,-64],[33,-35],[73,-125],[94,-160],[4,-3],[4,0],[91,94],[117,123]],[[54160,65089],[31,-333],[23,-285],[2,-183],[1,-47],[9,-32],[22,-33],[87,-263],[-19,-46],[13,-81],[23,-35],[72,-157],[10,-31],[-4,-25],[-51,-185],[-9,-45],[-10,-235],[-7,-167],[-10,-228],[-11,-273],[-10,-230],[-12,-304],[-12,-289],[-73,-158],[-129,-280],[-105,-229],[-53,-153],[-103,-298],[-46,-194],[-36,-100],[-18,-44],[16,-141],[28,-248]],[[26900,60479],[-7,-21],[-9,-14],[-18,-69],[-6,-6],[-1,51],[-10,7],[-13,-18],[-7,-26],[11,-35],[10,0],[11,-9],[31,-236],[-7,-42],[-19,-65],[-18,-56],[-18,-35],[-23,-148],[-20,-241],[14,-217],[-7,-200],[6,-48],[2,-59],[-15,-10],[-8,1],[-9,37],[1,31],[9,38],[4,50],[-5,27],[-9,-58],[-15,-26],[-10,-9],[-10,-29],[10,-55],[14,-40],[4,-29],[-5,-34],[-3,-117],[-5,3],[-5,16],[-14,1],[-2,-47],[1,-26],[-12,-21],[-4,-20],[10,-14],[11,-9],[13,2],[12,-58],[3,-47],[-26,-44],[-9,-36],[-14,-43],[-8,-43],[-3,-31],[10,-98],[18,-69],[15,-44],[20,-10]],[[26766,58131],[-5,-46],[-15,-29],[-27,-25],[-30,-4],[-49,23],[-20,3],[-8,12],[-3,23],[-14,34],[-25,45],[-15,-3],[-24,10],[-41,31],[-18,4],[-27,-27],[-31,-34],[-75,54],[-53,38],[-47,35],[-13,13],[-10,-3],[-9,-18],[-10,-32],[-4,-9],[-5,-9],[-6,-2]],[[26182,58215],[0,15],[-24,64],[-36,76],[-141,234],[-52,140],[-28,101],[-27,53],[-76,107],[-17,43],[-76,143],[-57,85],[-1,35],[24,45],[11,-2],[13,-32],[20,-36],[10,-1],[14,17],[0,17]],[[25739,59319],[78,7],[13,10],[14,26],[8,37],[1,35],[3,26],[12,25],[23,7],[17,3],[5,17],[-5,54],[-9,131],[-2,37],[3,27],[7,10],[34,6],[65,-11],[13,9],[26,74],[24,55],[17,25],[14,7],[15,-49],[55,-69],[9,4],[6,4],[1,10],[0,32],[13,29],[29,26],[28,47],[29,66],[25,39],[21,12],[8,18],[-5,24],[1,35],[9,46],[12,26],[16,7],[6,14],[-3,22],[3,23],[15,39],[34,33],[20,-12],[17,-44],[23,-30],[30,-16],[23,6],[17,28],[15,8],[13,-11],[7,6],[1,24],[7,5],[13,-13],[12,-3],[10,6],[4,12],[2,11],[7,9],[26,-9],[29,14],[33,35],[21,16],[11,-4],[12,18],[15,40],[34,18],[71,-9]],[[98087,28064],[32,-3],[29,43],[31,34],[32,28],[49,66],[12,9],[32,13],[14,15],[15,4],[-14,-39],[-17,-13],[-3,-14],[10,-22],[-15,-31],[0,-39],[-18,-46],[28,18],[10,30],[-5,17],[12,34],[18,16],[-7,25],[0,20],[23,-7],[11,0],[9,8],[16,4],[4,-23],[21,3],[-8,-28],[-16,-33],[-4,-20],[-27,-33],[-18,-14],[28,-4],[40,44],[24,39],[-1,-48],[-19,-44],[-17,-28],[-19,-8],[-18,-23],[-9,-36],[1,-25],[5,-19],[19,-32],[-21,-63],[24,8],[13,-12],[18,-36],[-11,-42],[-8,-22],[-47,-88],[-20,-44],[-24,-29],[1,-47],[-14,-34],[-70,-117],[-12,-25],[-55,-186],[-35,-78],[-20,-27],[-21,-22],[-51,-36],[-23,-43],[-25,-35],[-26,-8],[1,-15],[17,-9],[13,-23],[-10,-26],[-19,-16],[-19,-5],[-10,-17],[46,12],[13,-13],[3,-29],[5,-26],[11,-34],[39,-21],[35,-10],[7,-16],[5,-54],[-6,-27],[-8,-18],[-12,-6],[-28,-3],[-29,12],[-19,33],[-54,-11],[-15,-7],[-7,6],[30,35],[-16,19],[-13,8],[-14,-12],[-9,-18],[-3,-30],[-10,-17],[-15,-5],[-21,25],[-21,35],[-30,36],[4,-22],[24,-54],[12,-36],[-28,-29],[-28,-22],[-25,-13],[-22,-20],[-27,-32],[-15,-11],[-39,-1],[-21,-10],[-7,-42],[-15,-27],[-34,-5],[12,-8],[8,-14],[-23,-126],[-5,-53],[-4,-89],[-14,-83],[-41,0],[6,-15],[31,-23],[-6,-36],[-34,-64],[-14,-38],[-14,-90],[-20,-84],[-32,-95],[0,-17],[11,-24],[13,-21],[1,-30],[-4,-16],[-15,-4],[-13,-10],[-71,-26],[-24,-29],[-19,-53],[-22,-45],[-74,-100],[-44,-83],[-9,-24],[-12,-18],[-95,-39],[-68,-6],[-37,10],[-36,20],[-19,7],[-38,-12],[-16,-14],[-30,13],[-23,-10],[-7,10],[-9,25],[5,32],[-6,24],[-15,17],[-10,19],[-12,13],[-31,6],[-49,-9],[-16,1],[-34,80],[-11,20],[-39,25],[-14,-3],[-21,-43],[-13,-7],[-74,-5],[-75,14],[-28,16],[-5,37],[57,102],[-17,-14],[-35,-41],[-22,6],[21,45],[2,20],[-4,23],[-30,-38],[-33,-5],[-4,35],[3,41],[7,11],[89,22],[33,14],[14,22],[-54,7],[-3,31],[7,25],[46,41],[-33,-11],[-38,4],[3,43],[9,34],[40,1],[-13,23],[-1,33],[11,2],[39,-44],[29,-16],[-12,33],[2,21],[7,9],[24,7],[-7,6],[-22,8],[-26,25],[-3,26],[1,31],[28,42],[17,-25],[20,7],[-15,19],[-9,30],[6,19],[60,78],[15,-75],[4,25],[1,24],[-7,20],[1,21],[7,18],[25,17],[34,58],[25,26],[20,-17],[13,-23],[-2,23],[-9,19],[-3,53],[45,81],[49,78],[48,82],[25,29],[54,34],[34,-14],[9,3],[51,58],[21,16],[19,-21],[12,-8],[-12,54],[10,24],[42,44],[54,45],[40,19],[30,30],[18,1],[-3,23],[3,22],[16,-2],[5,9],[-14,12],[44,44],[24,48],[13,11],[11,14],[14,34],[17,11],[15,-5],[11,-17],[-6,28],[-20,15],[22,24],[22,16],[21,-12],[21,-19],[-21,30],[-3,18],[25,21],[14,6],[19,-39],[-2,31],[4,28],[28,45],[36,75],[11,-26],[2,-31],[-2,-39],[8,14],[2,34],[-5,61],[45,113],[8,12],[10,8],[16,3],[-5,17],[-12,17],[12,57],[8,65],[10,63],[17,62],[18,102],[14,22],[38,7],[16,15],[28,37],[32,67],[18,54],[23,140],[13,147],[37,108],[54,79],[48,60],[19,12],[33,4],[32,-17],[-59,-14],[-6,-36],[-2,-35],[7,-33],[11,-28],[28,-27],[33,-16],[15,-61],[3,-72],[5,-62],[13,-54]],[[98309,28304],[-38,-34],[2,23],[7,51],[17,26],[8,1],[17,20],[-1,-43],[-12,-44]],[[96317,25543],[-1,-28],[-3,-14],[-10,0],[-14,3],[-14,13],[-10,-4],[-7,5],[10,32],[33,17],[12,-14],[4,-10]],[[96382,25818],[12,-70],[-25,14],[-11,20],[20,35],[4,1]],[[96706,24848],[0,-23],[-29,9],[1,-26],[23,-14],[8,-18],[24,5],[5,-28],[-5,-24],[-16,-19],[-47,-9],[-31,-36],[-26,6],[-7,-3],[-30,-39],[-34,-12],[-9,3],[5,34],[25,33],[0,31],[7,25],[24,18],[0,33],[16,29],[-10,63],[6,56],[47,3],[53,-97]],[[98761,30944],[2,-31],[-21,11],[-8,24],[-24,24],[-4,8],[-2,48],[12,23],[2,10],[6,4],[10,-26],[19,-36],[8,-59]],[[98129,31719],[5,-26],[15,18],[11,30],[19,30],[-3,-48],[10,-11],[61,-34],[13,-28],[13,-8],[7,16],[9,8],[22,-18],[50,-49],[4,-17],[-2,-25],[2,-27],[7,-21],[17,-5],[22,31],[10,4],[15,-45],[6,-25],[-3,1],[10,-25],[12,-25],[22,-74],[-3,-26],[-6,-23],[20,-68],[-13,-5],[-40,12],[1,-14],[23,-50],[20,-70],[15,-43],[55,-132],[-8,-47],[1,-31],[-7,-26],[19,-70],[-12,-22],[-8,-72],[-8,-12],[1,-26],[22,-7],[13,-11],[12,-21],[7,25],[10,7],[26,-34],[55,-34],[15,-13],[8,-27],[5,-67],[11,-29],[21,-6],[23,9],[7,25],[-5,65],[-16,104],[0,34],[2,33],[-3,34],[-9,32],[-8,24],[-12,21],[4,32],[17,14],[10,-27],[9,-32],[42,-97],[26,7],[2,-40],[17,-41],[10,-47],[12,-143],[19,-133],[35,-59],[4,-28],[-21,15],[-7,-9],[2,-14],[20,-25],[23,-13],[14,2],[14,-9],[90,-87],[43,-34],[109,-56],[31,-4],[17,2],[33,19],[29,34],[25,52],[22,59],[23,28],[27,23],[14,21],[14,15],[73,-7],[25,-30],[32,-24],[16,-18],[-5,-38],[-19,-56],[-15,-61],[-13,-138],[-9,-141],[-13,-61],[-24,-48],[-27,-34],[-30,-17],[-12,-79],[-6,-93],[1,-24],[10,-18],[4,-28],[-16,-56],[-9,8],[-13,47],[-12,19],[-36,15],[-37,7],[-32,-5],[-31,-19],[-47,-41],[-14,-21],[-13,-25],[-21,-58],[-5,-71],[1,-38],[7,-28],[40,-40],[-39,-136],[-35,-143],[-20,-40],[-23,-38],[-21,-85],[-38,-74],[-25,-56],[-20,-59],[-17,-62],[-37,-88],[-16,-58],[-22,-48],[-40,-61],[-42,-53],[-67,-73],[-18,-24],[-20,-18],[-24,21],[-5,23],[-6,50],[-5,18],[-31,15],[-41,-24],[-7,5],[-2,11],[0,73],[7,20],[-9,12],[-10,-5],[-3,-18],[6,-16],[-23,-20],[-25,-1],[-7,8],[-2,13],[6,22],[8,20],[45,91],[47,122],[40,130],[11,67],[15,125],[-12,51],[-16,49],[-40,94],[-55,53],[-35,7],[-33,20],[-31,45],[-29,53],[-56,43],[-60,34],[-34,48],[-8,29],[-5,33],[0,30],[5,32],[6,24],[11,17],[63,62],[67,35],[12,-1],[12,6],[17,21],[30,48],[8,33],[6,104],[10,102],[17,116],[26,73],[9,44],[-11,73],[10,27],[12,17],[13,9],[-23,69],[-26,104],[-6,32],[4,32],[7,31],[-17,8],[-10,30],[-24,101],[7,16],[14,-11],[20,-73],[4,38],[16,23],[16,12],[18,2],[-40,82],[-14,-4],[-18,-12],[-19,-8],[-18,7],[-17,18],[-8,34],[-11,66],[-7,24],[-53,135],[16,4],[43,-67],[8,21],[7,31],[-3,35],[-10,26],[-15,17],[-1,30],[12,28],[-1,20],[-24,40],[-10,4],[-5,-18],[7,-28],[-6,-3],[-61,73],[-18,58],[-15,65],[-2,-26],[2,-37],[24,-74],[39,-82],[7,-22],[-6,-29],[-14,-8],[-11,18],[-18,71],[-13,35],[-148,365],[19,48],[29,41],[7,18],[5,22],[-13,3],[-11,-10],[-13,-18],[-11,-22],[-15,-47],[-7,-11],[-17,33],[-7,20],[0,24],[-4,16],[-13,5],[-19,48],[-12,24],[20,47],[1,62],[-21,65],[-24,60],[-47,96],[-43,102],[47,13],[47,2],[-22,-61],[10,-35],[15,-30],[32,-91],[3,-27],[16,-26],[8,-21]],[[96993,21602],[15,-29],[-29,-13],[-14,11],[-10,13],[-5,19],[15,-2],[14,8],[14,-7]],[[96172,22602],[6,-48],[-16,-1],[-32,14],[-9,21],[-7,5],[-12,-24],[-18,-1],[-5,8],[8,25],[44,49],[8,61],[-1,19],[35,5],[8,-7],[3,-9],[-2,-11],[-14,-20],[0,-23],[3,-24],[-11,-12],[6,-21],[6,-6]],[[1062,26647],[-10,-15],[-17,1],[-30,-59],[2,44],[-9,17],[-26,-4],[-4,-10],[17,-12],[4,-6],[-17,-25],[17,-55],[15,2],[14,-43],[0,-13],[-33,-16],[-17,-23],[-16,1],[-7,4],[-9,41],[0,17],[19,31],[11,30],[-9,28],[-22,19],[-48,-9],[-11,6],[24,39],[26,-5],[28,28],[108,-13]],[[1062,26312],[-12,-5],[1,33],[-4,21],[21,7],[9,-26],[-15,-30]],[[2089,46900],[-1,-1],[-1,6],[-2,7],[-1,7],[0,1],[3,-6],[2,-7],[0,-7]],[[2448,46454],[0,-2],[-2,3],[-2,5],[-1,6],[1,1],[2,-4],[1,-4],[1,-5]],[[2832,40850],[-28,-31],[-12,37],[11,48],[13,12],[8,2],[11,-45],[-3,-23]],[[5628,39602],[-9,0],[-12,4],[-7,3],[-1,5],[3,16],[6,9],[12,-2],[8,-11],[1,-19],[-1,-5]],[[51664,81077],[-28,1],[-26,1],[-14,3],[-15,9],[-7,18],[-8,21],[2,14],[25,37],[4,11],[-3,5],[3,17],[19,56],[2,23],[-8,16],[-13,9],[-40,17],[-19,23],[-8,21],[-9,6],[-13,-7],[-33,-8],[-27,11],[-32,39],[-7,35],[-4,26],[-8,10],[-11,-14],[-13,-22],[-27,-2],[-7,5],[-2,12],[-1,11],[-8,14],[-7,8],[-34,-40],[-13,1],[-16,15],[-8,15],[-17,-9],[-16,-18],[6,-35],[-9,-6],[-19,3],[-22,14]],[[51173,81443],[-24,9],[-37,24],[-51,-20],[-36,24],[-29,2],[-19,19],[-19,31],[14,21],[13,7],[54,4],[40,-13],[71,-68],[18,1],[19,8],[-10,19],[-18,9],[-26,18],[-21,26],[49,8],[-7,13],[-6,23],[-52,79],[9,22],[13,46],[16,38],[13,10],[22,27],[46,80],[30,65],[22,76],[32,212],[10,36],[15,40],[20,-8],[13,-11],[48,30],[83,78],[24,68],[24,31],[95,62],[52,18],[81,5],[59,11],[70,4],[27,-38],[15,-28],[25,-15],[39,-11]],[[51999,82535],[-3,-55],[1,-108],[-3,-19],[-18,-46],[-18,-81],[-5,-54],[-5,-11],[-74,1],[-10,-10],[-2,-11],[4,-14],[-2,-14],[-6,-11],[3,-18],[13,-20],[23,-13],[25,-1],[13,2],[9,-14],[10,-22],[-1,-29],[-4,-37],[-11,-35],[-34,-40],[-16,-14],[-14,-8],[-7,-10],[-3,-14],[1,-12],[24,-32],[-1,-7],[-7,-17],[-9,-16],[-62,-33],[-26,3],[-14,-16],[-5,-4],[-16,16],[-37,17],[-13,-6],[-8,-10],[-23,-11],[-16,-18],[0,-23],[29,-60],[10,-12],[0,-23],[14,-28],[15,-35],[1,-22],[-1,-23],[-8,-32],[-25,-75],[0,-15],[2,-11],[9,-3],[6,-6],[-2,-10],[-47,-52],[-6,-9],[-19,3],[-3,-9],[2,-14],[8,-13],[17,-6],[14,-13],[12,-26],[-16,-89]],[[51173,81443],[-4,-22],[-10,-24],[-37,-34],[-39,-23],[-19,3],[-14,12],[-7,12],[-21,12],[-28,6],[-18,-13],[-12,-12],[-11,2],[-8,10],[-7,16],[-8,50]],[[50930,81438],[21,9],[46,4],[35,-18],[46,-8],[36,24],[28,-21],[31,15]],[[51759,82667],[-39,-20],[-10,4],[3,6],[34,12],[12,-2]],[[51647,82637],[-55,-9],[-19,7],[-3,6],[15,4],[47,1],[14,-6],[1,-3]],[[51419,82550],[-52,-42],[-4,6],[33,37],[23,-1]],[[51479,82595],[-26,-5],[-12,8],[63,23],[39,7],[7,-3],[-71,-30]],[[51357,82413],[-28,-41],[-17,12],[-4,9],[8,32],[41,53],[0,-65]],[[51096,81646],[28,-31],[5,-10],[2,-11],[-34,-12],[-37,38],[-24,-9],[-9,18],[0,12],[25,9],[44,-4]],[[51870,82708],[-25,-2],[7,15],[24,12],[13,0],[-19,-25]],[[31054,58838],[-14,-64],[-8,28],[-1,52],[-6,20],[-11,12],[-6,17],[0,26],[42,-41],[4,-50]],[[32517,61921],[-7,-12],[-6,1],[-4,11],[0,20],[5,-6],[3,-2],[1,-4],[8,-8]],[[32435,61994],[-2,-2],[-4,5],[1,10],[3,4],[2,-3],[2,-7],[-2,-7]],[[30583,59015],[1,-16],[-13,9],[-17,35],[-17,27],[4,29],[4,10],[18,-27],[17,-50],[3,-17]],[[30902,58789],[-14,-8],[-54,56],[-44,90],[-1,47],[11,-4],[12,-18],[17,-64],[52,-42],[21,-57]],[[74474,67897],[11,-16],[2,-25],[-2,-29],[-12,-61],[-10,-44],[-13,-91],[-11,-158],[3,-28],[33,-91],[12,-69],[2,-48],[-14,-80],[-16,-90],[-8,-20],[-9,-7],[-40,31],[-28,-4],[-32,-18],[-34,4],[-27,10],[-35,-36],[-34,20],[-21,22],[-15,63],[-6,8],[-70,-66],[-17,-4],[-44,35],[-36,35],[-13,10],[-35,14],[-31,8],[-34,22],[-42,-29],[-17,3],[-16,20],[-8,42],[-2,40],[-15,27],[-22,6],[-31,-24],[-45,-33],[-15,6],[-13,9],[-5,9],[-7,37],[-7,9],[-10,1],[-19,9],[-23,27],[-70,66],[-9,29],[0,65],[-3,27],[-9,28],[-36,28],[-70,46],[-38,37],[-19,-17],[-35,-16],[-19,-33],[-23,11],[-54,34],[-29,6],[-18,-12],[-4,-20],[-22,-23],[-21,18],[-41,25],[-37,13],[-55,30],[-6,44],[-10,45],[-13,7],[-50,-8],[-45,48],[-49,63],[-21,20],[-13,8],[-12,-8],[-14,-15],[-12,-4],[-26,27],[-34,38],[-42,47],[-48,66],[-20,37],[-9,28],[-11,27],[-42,43],[-34,34],[-40,41],[-7,8],[-15,24],[-23,31],[-20,9],[-6,-17],[-4,-18],[-17,4],[-26,32],[-28,32],[-21,31],[-22,31],[-5,23],[9,71],[13,62],[11,13],[17,41],[7,71],[-1,61],[18,85],[23,91],[41,98],[18,32],[20,22],[37,72],[8,12],[17,19],[16,4],[12,-9]],[[72502,69218],[13,-37],[15,-36],[18,2],[22,30],[45,141],[63,29],[59,-15],[52,-20],[16,-47],[10,-50],[6,-25],[17,-29],[74,-71],[43,-64],[59,-85],[45,-37],[39,-3],[22,-34],[33,-66],[29,-77],[35,-71],[24,3],[33,23],[41,30],[24,-15],[22,-20],[7,-36],[13,-69],[15,-72],[23,-25],[28,-37],[15,-30],[51,-53],[8,-22],[10,-15],[13,-10],[10,-11],[16,-3],[60,32],[15,-4],[10,-6],[0,-12],[-11,-50],[-9,-65],[9,-32],[25,-14],[55,-9],[75,0],[22,-32],[23,-49],[22,-84],[9,-36],[12,-10],[19,14],[3,35],[1,51],[16,18],[11,-14],[12,-40],[30,-36],[23,-17],[21,6],[9,14],[10,70],[17,10],[21,-5],[8,-14],[9,-28],[25,-13],[26,-18],[24,-22],[33,-52],[42,-10],[48,1],[25,-1],[19,-4],[17,4],[49,37],[20,3],[25,-5],[24,-7]],[[96376,51545],[-5,-20],[-6,3],[-3,13],[2,14],[7,6],[5,-5],[0,-11]],[[57016,41593],[-12,3],[-85,-19],[-33,-25],[-73,-108],[-15,14],[-17,22],[-15,7],[-32,-27],[-32,-31],[-35,-44],[-29,-43],[-10,-23],[-45,-89],[-15,-15],[-13,-6],[-5,4],[-6,38],[-28,90],[-45,117],[-13,12],[-9,4],[-33,-6],[-96,-33],[-82,-28],[-124,-47],[-134,-39],[-83,-24],[-71,-7],[0,-116],[0,-235],[0,-235],[0,-235],[0,-235],[1,-235],[0,-235],[0,-235],[0,-235],[0,-102],[-2,-22],[-41,0],[-94,0],[-78,0],[-63,0],[0,-140],[0,-165],[0,-165],[0,-165],[0,-165],[0,-165],[0,-166],[0,-165],[0,-165],[1,-124],[0,-15]],[[54568,35358],[-31,47],[-91,175],[-32,46],[-48,107],[-105,334],[-15,64],[-20,161],[-23,120],[-3,69],[11,39],[-6,53],[-12,47],[-36,62],[-10,208],[-24,134],[5,110],[-11,101],[-1,65],[5,123],[-19,141],[-39,138],[-35,199],[-5,88],[3,235],[-6,95],[0,113],[-14,117],[-6,63],[10,51],[6,-16],[10,-8],[7,67],[1,59],[-17,146],[-39,149],[-97,244],[-24,92],[-13,77],[-108,321],[-46,226],[-33,196],[-35,90],[-162,634],[-36,101],[-65,121],[-15,41],[-25,115],[-48,155],[-12,144],[-4,164],[6,125]],[[53261,41906],[45,14],[31,33],[28,2],[27,-26],[29,-2],[12,4],[52,-3],[30,30],[36,30],[20,26],[29,27],[39,28],[21,-3],[27,-10],[36,-10],[20,-19],[24,-58],[36,-53],[28,-32],[31,-42],[9,-16],[14,-9],[8,-3],[58,7],[53,6],[56,0],[106,-1],[107,0],[106,0],[106,-1],[106,0],[107,0],[106,-1],[106,0],[44,0],[76,-2],[80,-2],[8,-3],[9,-12],[8,-10],[28,-73],[36,-77],[30,-36],[36,-22],[33,-8],[32,5],[52,-9],[73,-25],[76,-8],[78,11],[55,-14],[32,-38],[33,-25],[33,-13],[45,8],[57,28],[49,-4],[22,-21],[14,0],[83,30],[68,25],[101,39],[83,32],[123,47],[87,34]],[[59222,43770],[12,-17],[40,-142],[32,-83],[37,-77],[6,4],[10,18],[19,7],[57,18],[23,1],[14,20],[30,15],[34,9],[12,-10],[36,-99],[5,-77],[8,-110],[2,-54],[-1,-72],[-4,-90],[-29,-104],[-6,-51],[-16,-80],[-21,-39],[-10,-33],[1,-33],[11,-28],[24,-51],[8,-32],[-2,-29],[0,-40],[6,-27],[6,-16],[25,-26],[23,-65],[41,-78],[48,-111],[23,-34],[18,-8],[9,-38],[-5,-43],[-14,-25],[6,-35],[7,-19],[9,-9],[22,-2],[19,7],[5,12],[-2,167],[-15,97],[-14,38],[-3,7],[5,32],[16,75],[14,74],[8,31],[10,19],[67,20],[31,17],[12,21],[10,58],[8,160],[3,151],[-7,88],[10,133],[15,82],[-8,17],[-5,111],[-44,118],[-56,152],[-31,82],[-36,94],[-65,146],[-29,52],[-16,21],[-52,17],[-14,28],[-14,45],[-5,83],[0,62],[-6,105],[-11,149],[-5,44],[-15,112],[-14,107],[-1,26],[5,26],[24,79],[18,55],[8,31],[14,83],[4,40],[11,18],[46,8],[37,-2]],[[61239,45815],[15,-60],[26,-54],[-15,-31],[-19,-28],[30,-38],[-22,-57],[-3,-40],[6,-15],[5,-24],[-15,-65],[-20,-50],[-5,-38],[18,-68],[-9,-119],[17,-108],[4,-55],[6,-37],[-8,-67],[2,-111],[4,-46],[-10,-57],[17,-20],[9,-63],[-3,-71],[-5,-38],[-29,-46],[-4,-18],[1,-27],[36,-1],[2,-42],[-3,-33],[2,-63],[-5,-40],[8,-46],[-10,-51],[4,-40],[0,-51],[9,-130],[1,-160],[2,-25],[13,-18],[18,-9],[0,-44],[-21,-58],[-1,-35],[3,-50],[22,68],[14,-1],[12,-26],[-2,-39],[4,-20],[-2,-38],[7,-48],[-3,-42],[-16,-29],[-21,-50],[-4,-48],[2,-30],[-14,-10],[-7,-19],[10,-45],[-1,-39],[-25,-123],[-68,-167],[-30,-59],[-27,-65],[0,-27],[-3,-23],[-32,-92],[-34,-15],[-20,-25],[15,-81],[-22,-19],[-39,-64],[-106,-122],[-17,-29],[-27,-75],[-35,-19],[-20,-21],[-36,-8],[-12,6],[-12,-3],[-10,-16],[-70,-53],[-66,-42],[-16,-19],[-11,-26],[-58,-41],[-91,-103],[-74,-97],[-54,-98],[-14,-15],[-17,-33],[-5,-50],[-6,-28],[-40,-103],[-60,-121],[-11,-34],[-24,-67],[-2,-44],[-22,-14],[-18,42],[-7,-81],[-15,-6],[-16,17],[-40,-41],[-35,-46],[-56,-98],[-80,-191],[-116,-183],[-16,-5],[-10,0],[-37,64],[-20,5],[18,-38],[12,-32],[-3,-61],[1,-93],[-14,-181],[2,-40],[16,-51],[31,-62],[30,-79],[37,-224],[3,-115],[39,-147],[1,-64],[16,-159],[-1,-128],[-3,-79],[19,-33],[7,30],[-2,50],[5,80],[10,35],[11,-5],[3,-38],[7,-33],[3,-31],[0,-43],[-14,-162],[4,-66],[19,-110],[-22,-128],[-33,-301],[-1,-52],[7,-23],[18,-7],[6,38],[11,0],[5,-23],[-14,-139],[-15,-61],[-51,-149],[-27,-64],[-46,-63],[-106,-98],[-215,-142],[-85,-70],[-50,-42],[-108,-132],[-47,-88],[-19,-102],[-19,-47],[-18,-59],[16,-50],[16,-39],[18,-25],[10,-22],[12,-16],[13,80],[6,25],[11,2],[-6,-98],[-13,-333],[-1,-11]],[[59622,44922],[-5,17],[-9,8],[-10,-7],[-4,-21],[11,-27],[12,0],[5,30]],[[59644,44866],[7,13],[3,17],[0,16],[-5,11],[-7,6],[-9,-4],[-4,-22],[-1,-31],[6,-10],[10,4]],[[49383,72064],[8,-43],[16,-34],[59,-78],[35,-48],[1,-17],[-12,-39],[-4,-27],[9,-29],[21,-35],[2,-17],[-5,-20],[-11,-37],[23,-111],[4,-107],[-6,-76],[0,-44],[3,-37],[20,-87],[-13,-143],[15,-78],[21,-63],[11,-113],[17,-53],[27,-47],[15,-16],[30,-39],[22,-32],[13,-48],[-27,-40],[-22,-36],[-6,-38],[10,-61],[0,-33],[-14,-11],[-56,3],[-44,3],[-50,3],[-71,6],[-44,4],[-61,5],[-20,-3],[-56,-17],[-39,-12],[-6,-4],[-13,-15],[-8,-45],[-8,-52],[-8,-23],[-117,-74],[-46,-11],[-26,8],[-19,-6],[-16,-16],[-6,-24],[-1,-31],[4,-31],[11,-43],[2,-44],[-7,-30],[-2,-31],[-3,-33],[6,-18],[11,-3],[11,-15],[16,-14],[14,-26],[-1,-38],[-11,-21],[-10,-11],[-44,-10],[-35,-8],[-45,-60],[-48,-64],[-58,-42],[-25,-12],[-44,-30],[-53,-50],[-26,-80],[-32,-93],[-32,-62],[-43,-58],[-40,-23],[-51,-28],[-63,-21],[-45,-8],[-14,-4],[-39,-2],[-20,5],[-14,2],[-6,-6],[-2,-15],[-1,-33],[-3,-38],[-12,-32],[-9,-15],[-11,-6],[-33,9],[-28,10],[-66,14],[-13,-3],[-5,-4],[-21,-22],[-32,-46],[-22,-41],[-16,-18],[-38,-10],[-17,-15],[-72,-101],[-15,-24],[-74,-88],[-21,-29],[-17,-28],[-44,-65],[-28,-28],[-5,-17],[-2,-40],[0,-87],[0,-84],[0,-122],[0,-122],[0,-140]],[[47587,67774],[-37,0],[0,-1],[1,-24],[8,-48],[3,-40],[-4,-25],[-4,-32],[2,-31],[6,-33],[6,-34],[0,-23],[-11,-18],[-27,-9],[-31,-8],[-23,0],[-34,5],[-22,-1],[-19,0],[-16,-5],[-21,-22],[-23,-35],[-29,-46],[-17,-29],[-23,-6],[-23,0],[-22,23],[-14,12],[-10,-1],[-15,-16],[-19,-12],[-17,0],[-29,24],[-34,34],[-20,17],[-29,6],[-29,11],[-20,-5],[-26,0],[-34,-23],[-29,-17],[-31,-18],[-36,-16],[9,-51],[12,-28],[0,-35],[-6,-30],[-17,-28],[-20,-37],[-11,-29],[-12,-39],[-8,-24],[-15,-37],[-13,-47],[-4,-30],[-6,-33],[-10,-11],[-35,-9],[-22,-11],[-19,-12],[-8,-20],[-1,-3],[-5,-40],[0,-29],[-6,-23],[-8,-57],[-11,-53],[-9,-69],[-8,-57],[-11,-93],[-11,-86],[-14,-81],[-11,-51],[-9,-29],[-19,-35],[-17,-22],[-19,-30],[-22,-28],[-31,-35],[-25,-29],[-10,-13],[-12,-16],[-20,-40],[-16,-57],[-11,-47],[-20,-74],[-14,-41],[-8,-22],[-22,-23],[-25,-18],[-28,-23],[-22,-23],[-31,-23],[-19,-23],[-14,-34],[-11,-41],[-14,-58],[-11,-63],[-6,-40],[-16,-139],[-6,-80],[-6,-52],[-8,-64],[-5,-97],[0,-81],[-6,-46],[-3,-35],[-14,-40],[-11,-29],[-19,-40],[-17,-23],[-5,-23],[-17,-29],[-17,-46],[-14,-29],[3,-23],[3,-40],[-8,-41],[-9,-46],[-22,-57],[-25,-29],[-36,-6],[-50,0],[-39,6],[-47,0],[-42,11],[-39,12],[-47,6],[-33,0],[-42,-12],[-108,0],[-42,-6],[-61,-23],[-15,-5]],[[45276,64182],[21,276],[38,149],[30,66],[47,35],[43,150],[16,138],[28,64],[9,50],[-11,38],[27,75],[32,114],[15,73],[38,113],[5,25],[-4,29],[-15,-25],[-16,-41],[-19,-33],[8,40],[15,60],[34,62],[53,69],[110,234],[42,41],[37,98],[14,88],[4,200],[13,106],[24,83],[29,150],[22,68],[15,136],[16,53],[28,24],[40,69],[60,42],[71,89],[33,53],[23,79],[24,158],[42,166],[22,125],[1,2],[37,66],[26,83],[43,37],[90,18],[134,69],[120,104],[34,42],[37,83],[60,108],[114,130],[52,72],[79,182],[53,150],[44,97],[30,86],[21,87],[12,140],[-8,55],[-33,89],[-23,24],[-6,42],[12,75],[0,128],[7,204],[37,165],[91,217],[17,88],[10,142],[1,50],[114,200],[67,154],[23,37],[59,70],[205,154],[116,109],[68,80],[40,94],[112,371],[110,521],[9,61],[49,17],[35,7],[28,19],[34,40],[33,-16],[-16,-27],[0,-64],[23,-75],[41,-85],[75,-107],[58,-43],[83,-26],[96,47],[54,1],[27,20],[28,-30],[55,-9],[52,16],[40,45],[25,51],[4,-25],[1,-28],[8,-16],[15,-66],[9,-25],[30,4],[26,-13],[59,6],[57,-11]],[[47587,67774],[0,-96],[0,-118]],[[47587,67560],[1,-96],[0,-114],[0,-114],[0,-130],[0,-129],[0,-94],[0,-66],[-57,0],[-51,0],[-52,0],[-52,0],[-52,0],[-51,0],[-52,0],[-52,0],[-52,0],[-51,0],[-52,0],[-52,0],[-52,0],[-52,0],[-51,0],[-52,0],[-52,0],[-41,0],[0,-69],[0,-78],[0,-79],[0,-78],[0,-78],[0,-79],[0,-78],[0,-79],[0,-78],[0,-79],[0,-78],[0,-78],[0,-79],[0,-78],[0,-79],[0,-78],[0,-79],[0,-69],[-2,-63],[-17,-19],[-40,-33],[-40,-34],[-52,-16],[-17,-11],[-33,-46],[-44,-59],[-37,-51],[-25,-67],[-9,-37],[-4,-39],[3,-37],[14,-74],[3,-37],[2,-65],[3,-71],[2,-76],[3,-76],[2,-81],[3,-81],[2,-82],[2,-61],[3,-76],[-42,0],[-64,0],[-63,-1],[-64,0],[-64,0],[-64,0],[-63,0],[-64,0],[-64,-1],[-63,0],[-64,0],[-64,0],[-63,0],[-64,0],[-64,-1],[-64,0],[-63,0],[-36,0],[-11,-108],[-10,-77],[-6,-63],[4,-53]],[[45264,63828],[-14,29],[25,300],[1,25]],[[55651,76513],[-36,-17],[-7,-25],[-17,3],[-21,0],[-7,-16],[10,-27],[7,-31],[-5,-43],[-2,-6]],[[55573,76351],[-5,2],[-30,-25],[-22,-12],[-20,-6],[-9,12],[-5,17],[1,47],[-4,16],[-6,7],[-14,-11],[-16,-36],[-15,-42],[-22,-45],[-18,-42],[-19,-53],[-14,-44],[14,-25],[9,-35],[-3,-26],[3,-15],[-5,-46],[-1,-28]],[[55372,75961],[-43,46],[-18,64],[-63,109],[-73,74],[-4,12],[4,14],[4,11],[-15,1],[-11,-9],[-10,3]],[[55143,76286],[-11,27],[-11,24],[0,22]],[[55121,76359],[5,2],[7,9],[15,23],[3,13],[-1,18],[-21,60],[-3,38],[-3,72],[4,17],[8,8],[38,9],[-1,56],[2,17],[8,23],[5,21],[21,31],[28,36],[12,1],[11,-5],[12,-31],[14,4],[2,37],[-17,49],[-9,31],[3,18],[6,9],[15,-6],[14,-9],[10,6],[14,5],[8,-2]],[[82411,80543],[-26,-80],[-52,-161],[-44,-135],[-23,-77],[-17,-58],[-18,-56],[-3,-33],[-19,-54],[-37,-64],[-8,-70],[1,-63],[-3,-57],[-41,-35],[-32,-32],[10,-107],[16,-41],[26,-43],[28,-35],[24,-30],[27,14],[22,45],[44,40],[24,1],[16,-9],[38,-3],[38,14],[31,3],[39,-9],[14,-10],[33,-17],[35,-38],[25,-43],[18,-8],[9,14],[20,37],[27,37],[34,60],[26,45],[20,7],[38,0],[18,11],[29,6],[26,-17],[71,-9],[20,-23],[34,-70],[19,-37],[33,-19],[21,-13],[18,-10],[17,-18],[5,-22],[7,-33],[11,-19],[20,-19],[16,-11],[4,-25],[5,-11],[14,-17],[42,-72],[20,-20],[31,-41],[13,-35],[1,-36],[8,-28],[20,-41],[10,-29],[-4,-38],[4,-34],[-8,-35],[-34,-25],[-11,-13],[-24,-1],[-41,13],[-39,-7],[-47,14],[-37,31],[-20,25],[-32,14],[-15,-7],[-18,-32],[-21,5],[-19,-5],[-49,6],[-26,8],[-42,-22],[-24,-7],[-45,-27],[-27,-47],[-20,-11],[-19,2],[-14,17],[-21,21],[-30,-1],[-9,-9],[-4,-19],[-10,-58],[0,-26],[-6,-17],[-18,-6],[-32,2],[-49,4],[-33,15],[-20,-7],[-27,-31],[-20,-5],[-15,-14],[-13,-46],[-20,-29],[-24,-36],[-26,-77],[-14,-44],[4,-24],[3,-28],[-12,-33],[-24,-30],[-20,-6],[-29,-29],[-40,-53],[-30,-44],[-40,-11],[-27,-11],[-62,-14],[-15,-3],[-68,-7],[-50,24],[-26,-4],[-24,-13],[-11,-15],[-5,-28],[-4,-25],[-19,-40],[-38,-53],[-32,-35],[-24,-45],[-14,-17],[-27,-17],[-15,-10],[-35,-40],[-28,-36],[-18,-10],[-22,9],[-14,3],[-43,14],[-29,2],[-41,9],[-95,42],[-31,20],[-27,54],[-24,27],[-34,3],[-49,0],[-23,10],[-37,-10],[-41,-54],[-19,-41],[-17,-41],[-20,-89],[-9,-60],[-8,-33],[-21,-53],[-3,-30],[8,-26],[16,-29],[9,-46],[23,-49],[22,-38],[43,-61],[12,-33],[14,-36],[3,-36],[-2,-24],[-16,-18],[-29,-9],[-15,-25],[-21,-33],[-26,-39],[-13,-2],[-14,-10],[-74,-48],[-27,-13],[-22,-16],[-27,-49],[-20,-36],[-25,-48],[-11,-21],[-23,-48],[-30,-55],[-16,-30],[-9,-17],[-8,-23],[-31,-18],[-26,-19],[-38,-28],[-55,-32],[-45,-30],[-29,-25],[-42,-31],[-29,-10],[-57,1],[-72,-8],[-52,-6],[-39,7],[-59,5],[-45,6],[-30,-12],[-72,-12],[-16,-3],[-126,-30],[-56,-16],[-52,-7],[-37,-12],[-22,-14],[-31,-21],[-17,-9],[-56,-41],[-125,-84],[-84,-69],[-13,-12],[-57,-48],[-32,-19],[-23,-43],[-18,-27],[-19,-12],[-34,28],[-24,-2],[-77,11],[0,125],[-53,-17],[-86,-29],[-79,-26],[-73,60],[-56,47],[-48,40],[-74,26],[-65,23],[-116,38],[-51,33],[-26,45],[-46,99],[-15,20],[-22,14],[-24,8],[-50,0],[-62,8],[-88,21],[-71,16],[-120,32],[-29,3],[-62,-27],[-81,-36],[-145,28],[-64,13],[-130,26],[-147,30],[-142,31],[-104,-17],[-57,-9],[-67,-14],[-9,15],[-3,59],[-12,46],[-36,50],[-25,47],[-46,63],[-15,40],[-5,62],[-43,162],[-27,109],[-6,22],[-12,36],[-15,18],[-32,12],[-8,19],[0,38],[5,52],[6,38],[-5,9],[-83,-10],[-51,25],[-43,27],[-60,70],[-36,27],[-46,73],[-67,17],[-25,28],[-32,62],[-27,40],[-39,25],[-62,23],[-105,21],[-35,9],[-58,-14],[-43,-2],[-70,16],[-40,19],[-49,0],[-32,0],[-43,4],[-20,13],[-19,15],[-36,-4],[-25,16],[-24,28],[-24,13],[-27,0],[-11,-13],[-10,1],[-7,39],[-25,62],[-4,28],[-15,32],[-9,29],[3,40],[10,78],[24,71],[16,18],[10,21],[20,37],[12,29],[-2,40],[-14,41],[-10,54],[2,31],[15,37],[17,81],[-1,21],[-7,17],[-2,38],[-3,51],[-21,77],[-11,41],[-20,18],[-23,11],[-20,55],[-25,66],[-16,41],[-5,25],[-3,45],[-12,56],[-12,30],[-9,23],[-5,34],[-5,12],[-34,15],[-24,25],[-10,33],[-4,27],[-7,16],[-19,5],[-14,-24],[-22,-12],[-14,2],[-15,14],[-9,16],[-15,17],[-22,55],[-22,14],[-42,-2],[-37,-26],[-22,4],[-19,9],[-22,27],[-14,23],[-22,7],[-44,40],[-29,28],[-3,56],[-14,39],[-28,11],[-29,39],[-42,22],[-27,16],[-23,10],[-3,15],[1,13],[11,21],[11,20],[2,19],[-9,16],[-23,17],[-31,15],[-6,26],[-19,26],[4,21],[14,16],[15,12],[3,19],[-10,19],[-5,28],[2,20],[-3,27]],[[52066,77044],[-17,-10]],[[52049,77034],[1,12],[4,7],[5,3],[6,-5],[1,-7]],[[23015,66797],[-5,-119],[-17,-97],[-55,-203],[-24,-126],[-44,-360],[-14,-236],[-3,-111],[-4,-15],[4,-17],[-10,-245],[5,-210],[-3,-32],[-17,-63],[-11,-88],[5,-39],[-1,-27],[17,-133],[5,-100],[50,-171],[28,-60],[34,-51],[13,-30],[-6,-72],[-14,-37],[-6,-59],[-7,49],[2,62],[11,34],[1,25],[-21,26],[-37,86],[-45,153],[32,-244],[11,-39],[9,-16],[14,-17],[4,-27],[0,-19],[40,-170],[45,-175],[3,-48],[18,-58],[114,-246],[70,-184],[25,-174],[15,-54],[7,-75],[46,-83],[14,-54],[24,-30],[20,-90],[38,-53],[-9,-1],[-33,27],[2,-18],[28,-37],[54,-37],[13,0],[-21,19],[-18,26],[6,4],[38,-32],[105,-11],[47,-75],[60,-32],[32,-96],[38,-100],[24,-5],[19,0],[56,17],[88,63],[30,30],[59,42],[90,8],[28,-12],[67,26],[33,32],[11,29],[5,22],[62,30],[13,6],[63,6],[31,11],[35,7],[26,-45],[0,-22],[-17,-21],[8,-20],[31,-34],[56,-13],[19,5],[26,49],[46,48],[-1,55],[-9,31],[-13,2],[-3,17],[9,40],[-2,14],[-29,-39],[-6,0],[3,18],[6,15],[83,85],[22,35],[28,31],[60,115],[13,218],[12,38],[40,67],[4,20],[3,45],[-1,114],[2,90],[-2,102],[7,90],[7,26],[23,145],[47,64],[82,76],[19,13],[261,80],[37,20],[45,52],[33,17],[60,-1],[18,7],[4,7],[0,7],[11,7],[34,-7],[65,-31],[24,-8],[58,-36],[63,-15],[10,6],[8,11],[6,22],[-6,18],[-6,-1],[-11,-10],[-13,-1],[-25,15],[5,13],[25,-1],[17,6],[24,22],[26,-16],[35,-75],[24,-24],[2,-108],[4,-19],[8,-29],[-12,-84],[-13,-69],[-17,-57],[-37,-89],[-45,-71],[-56,-159],[-13,-75],[1,-59],[9,-58],[-3,-21],[-6,-22],[-12,2],[-22,-28],[-28,-82],[-1,-25],[13,-23],[16,11],[21,1],[12,7],[12,-2],[-3,-47],[-13,-33],[-8,-11],[-15,-5],[-17,-19],[-9,-18],[1,-54],[9,-4],[20,40],[12,-2],[2,-17],[-26,-139],[-16,-143],[-23,-82],[-8,-121],[-11,-51],[-14,-51],[-8,3],[-21,96],[-23,25],[-4,23],[12,117],[-6,65],[-11,-3],[-15,-35],[-19,-31],[0,-45],[-22,-73],[-6,-25]],[[25473,62483],[-21,6],[-25,-3],[-17,-18],[-18,-89],[-43,-126],[-18,-62],[-14,-21],[-11,-8],[-13,15],[-29,34],[-24,-17],[-8,-39],[1,-50]],[[25233,62105],[-59,0],[-99,0],[-126,0],[-122,0],[-102,1],[0,-113],[-1,-100],[0,-112],[-56,1],[-60,1],[5,-12],[20,-21],[27,-50],[31,-78],[38,-63],[44,-46],[29,-46],[14,-44],[8,-38],[0,-32],[16,-24],[29,-17],[15,-28],[0,-22],[-9,-52],[-3,-57],[4,-52],[-21,-1],[-51,0],[-76,0],[-71,0],[-56,0],[-84,0],[-23,-80],[-38,-132],[-35,-119],[-29,-101],[-5,-26],[0,-22],[36,-94],[-6,-27],[-13,-15],[-4,-22],[1,-36],[-9,-47],[3,-33],[5,-41],[-8,-35],[-6,-34],[-7,-15]],[[24379,60221],[-8,13],[-74,157],[-78,172],[-30,56],[-29,43],[-40,79],[-104,174],[-54,80],[-50,95],[-45,53],[-45,34],[-20,20],[-17,26],[-10,2],[-5,-35],[16,-18],[19,-15],[14,-1],[16,-13],[46,-48],[7,-25],[-130,97],[-53,9],[-6,15],[27,50],[-9,18],[-9,3],[-28,-35],[-11,-2],[-2,23],[1,21],[-18,32],[-11,-1],[-10,-22],[-25,-42],[1,-17],[49,-18],[16,-10],[-3,-11],[-42,0],[-51,-19],[-92,-116],[-86,-50],[-122,-113],[-54,-5],[-29,-18],[-82,43],[-105,105],[-158,33],[-107,138],[-106,57],[-67,132],[-41,6],[-26,21],[-96,48],[-95,32],[-93,115],[-61,37],[-52,46],[-115,79],[-43,43],[-41,68],[-66,69],[-28,59],[-32,21],[-45,109],[-23,47],[-20,21],[-21,8],[-62,-9],[-91,48],[-43,12],[-88,72],[-118,80],[-39,91],[-32,86],[-60,113],[-37,48],[-64,57],[-36,46],[-55,35],[-93,91],[-29,77],[-18,68],[-49,83],[-55,156],[-14,57],[-10,88],[-13,51],[-15,39],[8,29],[27,36],[46,8],[33,39],[4,32],[-2,19],[-21,49],[-26,13],[-20,1],[-5,18],[15,20],[18,48],[25,58],[18,53],[4,75],[-3,76],[7,63],[-62,74],[-7,31],[-19,84],[-34,98],[1,195],[-41,173],[-42,86],[-22,30],[-59,134],[-46,77],[-46,146],[-45,93],[-58,156],[-41,78],[-189,262],[11,0],[55,-64],[9,5],[2,32],[-7,37],[-10,9],[-15,-8],[-20,8],[-10,12],[-29,8],[-38,44],[-16,45],[-1,52],[-54,110],[-20,62],[10,-5],[14,-25],[15,-7],[17,0],[12,10],[-4,18],[-12,15],[-78,58],[-26,41],[-64,68],[-15,24],[-10,65],[-16,3],[-13,-18],[-38,-18],[-10,21],[-1,20],[27,22],[24,61],[0,22],[-14,-25],[-20,-28],[-21,-15],[-32,-13],[-16,9],[-14,14],[-22,54],[-11,176],[20,61],[23,61],[20,35],[11,-27],[12,-3],[-9,31],[-19,28],[-7,29],[-1,26],[-9,48],[-57,102],[-54,-8],[-22,3],[-20,39],[-17,65],[-9,55],[-1,29],[-5,29],[-93,48],[-28,41],[-27,51],[-12,42],[-11,32],[-9,54],[-7,63],[11,82],[13,39],[-64,30],[-24,1],[-21,-16],[-18,21],[-37,24],[-45,85],[-53,155],[-57,50],[-19,54],[-24,48],[-20,60],[-4,26],[-6,15],[-29,42],[-32,71],[-9,57],[-8,87],[-22,31],[-21,14],[-5,41],[2,24],[-7,44],[-44,105],[-23,87],[-12,27],[-11,39],[-6,81],[-18,101],[-36,120],[-29,82],[-15,82],[7,83],[-5,51],[-4,12],[3,17],[10,-9],[8,15],[-1,53],[-10,16],[-29,17],[-12,11],[-70,22],[-39,30],[-3,70],[-19,32],[-16,20],[-52,41],[-9,-21],[-7,-39],[-21,-8],[-19,-2],[-32,27],[-79,103],[-17,17],[-25,9],[-12,16],[-53,55],[11,-29],[15,-30],[14,-87],[-16,-63],[-10,-220],[11,-44],[23,-70],[16,-112],[5,-82],[14,-66],[-4,-155],[5,-47],[22,-77],[41,-73],[9,-38],[53,-55],[33,-72],[65,-98],[20,-42],[58,-152],[2,-46],[11,-56],[33,12],[15,-42],[-2,-20],[4,-15],[17,3],[15,-11],[31,-166],[17,-22],[21,-10],[24,-18],[1,-42],[-1,-34],[21,-49],[-4,-66],[17,-56],[-3,-55],[7,-43],[50,-97],[62,-77],[13,-101],[26,-93],[25,-23],[27,-39],[-4,-40],[2,-24],[35,-73],[6,-94],[30,-61],[9,-4],[6,9],[-22,61],[-10,40],[-2,63],[8,8],[62,-99],[7,-74],[21,-42],[1,-56],[13,-34],[4,-49],[20,-80],[1,-112],[10,-82],[40,-125],[32,-26],[6,-61],[33,-159],[38,-87],[19,-73],[3,-45],[-14,-68],[-2,-47],[21,-143],[31,-73],[35,-18],[6,-10],[-3,-20],[12,-18],[13,23],[7,32],[-7,37],[-1,27],[6,19],[11,3],[67,-98],[11,-38],[25,-43],[23,-55],[9,-42],[19,-36],[9,-81],[46,-37],[25,-68],[2,-43],[-12,-110],[-11,-31],[-37,-47],[-27,-56],[-27,-34],[-27,-21],[-23,4],[-23,65],[-26,193],[-18,41],[-12,61],[-20,50],[-75,76],[-37,81],[-37,53],[-39,78],[-106,129],[-44,66],[-29,65],[-19,-1],[-14,-7],[-6,18],[-1,33],[-6,22],[-62,98],[-13,55],[-3,62],[14,162],[6,95],[-4,49],[-6,6],[-6,27],[-2,78],[-15,84],[-56,174],[-41,34],[-37,25],[-101,154],[-27,76],[-7,44],[-3,89],[-14,-52],[-19,-38],[-42,3],[-48,-43],[-29,40],[-15,46],[-24,55],[-26,11],[-17,2],[-31,68],[-26,21],[-36,9],[-32,34],[-9,38],[-5,53],[-12,32],[-49,62],[-39,69],[-38,45],[-11,36],[-1,25],[59,-7],[71,-27],[34,8],[21,25],[20,18],[3,-19],[-4,-37],[20,-33],[26,-27],[19,3],[-18,29],[-12,60],[5,22],[0,29],[-26,-6],[-4,15],[23,45],[25,120],[13,118],[-27,103],[-46,72],[-98,210],[-59,108],[-17,40],[-16,19],[-48,25],[-40,60],[-71,85],[-30,44],[-21,104],[-16,14],[5,71],[-7,127],[-12,32],[-38,31],[-9,86],[-2,82],[-8,57],[-65,96],[-3,46],[0,44],[-7,44],[-35,91],[-42,79],[-14,38],[-2,77],[-15,21],[6,5],[13,-2],[8,10],[1,54],[-63,84],[-18,116],[-34,61],[-8,23],[-18,109]],[[25850,63538],[-15,-18],[-7,64],[11,61],[14,36],[28,4],[18,12],[2,-16],[-15,-48],[-36,-95]],[[20416,64291],[-8,-47],[-21,19],[-8,30],[-1,48],[11,9],[17,-21],[4,-14],[6,-24]],[[19190,62638],[-17,-12],[-24,36],[6,27],[14,19],[14,-35],[7,-35]],[[19287,66246],[8,-65],[-15,10],[-18,35],[-13,44],[1,20],[3,4],[26,-26],[8,-22]],[[18568,68578],[-2,-10],[-29,35],[-64,122],[-23,61],[-4,28],[2,64],[22,-8],[25,-42],[12,-40],[0,-45],[48,-21],[7,-98],[6,-46]],[[18008,68012],[-4,-19],[-47,39],[26,67],[-4,70],[12,15],[10,-23],[13,-90],[-6,-59]],[[18832,68551],[-21,-136],[-21,2],[-44,43],[-5,27],[17,157],[13,21],[39,21],[6,-19],[4,-47],[12,-69]],[[17155,68514],[-12,-22],[-32,120],[0,29],[9,15],[15,-3],[0,-30],[13,-26],[5,-24],[2,-59]],[[25913,64077],[4,-28],[-4,4],[-7,21],[-4,26],[4,1],[3,-9],[4,-15]],[[24532,62601],[-31,-13],[-6,13],[63,58],[11,-2],[4,-8],[-33,-28],[-8,-20]],[[19498,65755],[-6,-3],[-14,31],[-6,75],[3,8],[27,-93],[-1,-11],[-3,-7]],[[18140,70106],[-9,-2],[-17,26],[1,25],[4,2],[17,-21],[6,-19],[-2,-11]],[[19139,66831],[3,-20],[-2,-6],[-11,14],[-19,-86],[-6,-8],[12,118],[12,17],[13,3],[-2,-32]],[[18972,65894],[-3,-27],[-84,108],[20,10],[23,-8],[44,-83]],[[18873,65982],[-6,-7],[-24,67],[-3,46],[-10,19],[-24,15],[21,93],[17,193],[8,-35],[-18,-195],[1,-26],[8,-24],[10,-40],[1,-44],[16,-40],[3,-22]],[[66014,40043],[-36,-17],[-39,6],[-15,31],[-3,13],[13,12],[-1,39],[7,63],[8,26],[20,23],[8,51],[17,34],[22,4],[22,-63],[16,-66],[-3,-65],[-16,-25],[-5,-38],[-15,-28]],[[45451,63194],[-17,-56],[-8,22],[-3,37],[15,52],[8,28],[14,9],[-9,-92]],[[45406,60966],[0,258],[15,97],[5,85],[33,187],[38,153],[36,204],[14,197],[-5,193],[-11,172],[-18,113],[-17,164],[-26,87],[-47,76],[-11,44],[11,16],[29,12],[18,59],[-38,-23],[44,181],[14,123],[-2,81],[9,50],[-35,108],[-26,136],[-14,22],[-14,11],[-1,-32],[-8,-29],[-17,18],[-29,99],[-41,161],[-15,17],[-12,-23],[-7,-21],[-14,-134]],[[47587,67560],[53,-63],[52,-64],[52,-64],[52,-64],[53,-63],[52,-64],[52,-64],[52,-63],[53,-64],[52,-64],[52,-63],[52,-64],[53,-64],[52,-64],[52,-63],[52,-64],[44,-53],[67,-86],[63,-80],[63,-81]],[[48660,66241],[-97,0],[-130,0],[-89,0],[-91,0],[-85,-1],[7,-131],[8,-143],[8,-143],[8,-144],[8,-143],[8,-143],[8,-143],[8,-143],[8,-144],[7,-143],[8,-143],[8,-143],[8,-144],[8,-143],[8,-143],[8,-143],[8,-144],[8,-143],[8,-143],[8,-143],[7,-144],[8,-143],[8,-143],[8,-143],[8,-144],[8,-143],[8,-143],[8,-143],[8,-143],[8,-144],[8,-143],[7,-143],[8,-143],[8,-139],[33,-73],[42,-92],[-12,-129],[-15,-155],[-16,-169],[-58,0],[-57,0],[-57,0],[-56,0],[-57,0],[-57,0],[-56,0],[-57,0],[-57,0],[-56,0],[-57,0],[-57,0],[-56,0],[-57,0],[-57,0],[-56,0],[-57,0],[-53,0],[-32,4],[-12,13],[-4,87],[-10,-5],[-11,-26],[-6,-28],[2,-36],[-2,-31],[-36,-12],[-49,-21],[-52,-16],[-52,6],[-18,7],[-19,12],[-42,12],[-22,2],[-26,-3],[-31,-7],[-10,-16],[-23,-66],[-22,-75],[-15,0],[-16,42],[-45,78],[-55,102],[-24,51],[-14,7],[-26,-37],[-22,-35],[-23,-50],[-11,-47],[-8,-57],[-4,-66],[-8,-78],[-19,-62],[-23,-47],[-16,-22],[-7,-13],[-49,37]],[[54046,72495],[-10,-19],[-26,1],[-24,29],[0,61],[27,-12],[25,-41],[8,-19]],[[53975,72596],[-16,-9],[-17,17],[-4,11],[23,9],[12,-8],[4,-15],[-2,-5]],[[48660,66241],[85,-110],[77,-104],[91,-124],[91,-123],[91,-123],[91,-124],[90,-123],[91,-123],[91,-124],[91,-123],[91,-123],[91,-124],[91,-123],[91,-123],[91,-124],[91,-123],[91,-123],[91,-124],[41,-55],[3,-23],[4,-46],[-2,-52],[0,-43],[12,-29],[23,-31],[89,-91],[7,-18],[3,-37],[11,-47],[19,-27],[22,-20],[26,-14],[81,-14],[17,-22],[35,-84],[19,-16],[54,-25],[38,-13],[17,-8],[35,-23],[38,-38],[20,-35],[0,-11],[0,-30],[0,-91],[7,-50],[8,-36],[-1,-22],[-9,-16],[-8,-19],[-4,-25],[-11,-32],[-9,-36],[4,-27],[15,-18],[23,-34],[19,-14],[9,-1],[12,1],[11,4],[68,26],[63,25],[88,34]],[[50060,60432],[-58,42],[-68,43],[-47,-27],[-8,10],[-6,18],[-23,10],[-36,-5],[-26,-12],[-41,-64],[-31,-55],[-8,-13],[-43,-33],[-80,-78],[-46,-57],[-10,-11],[-21,-13],[-31,-3],[-26,-14],[-23,-151],[-16,-15],[-95,61],[-19,-9],[-17,-18],[-53,-88],[-27,-71],[-14,-95],[2,-29],[0,-32],[-9,-18],[-13,-7],[-12,1],[-44,20],[-14,-9],[-6,-46],[1,-102],[-10,-69],[-26,-22],[-20,-27],[-16,-8],[-14,7],[-77,103],[-26,17],[-29,-12],[-28,-44],[-12,-28],[-17,-34],[-20,-45],[5,-39],[14,-44],[10,-55],[-1,-50],[-70,-70],[6,-24],[10,-28],[0,-51],[-2,-89],[-14,-33],[-18,-31],[-12,-42],[-11,-20],[-20,-25],[-27,-25],[-48,-23],[-38,-15],[-14,-14],[-20,-30],[-16,-36],[-4,-39],[3,-44],[6,-37],[7,-25],[4,-31],[-6,-85],[-14,-97],[-13,-44],[-21,-24],[-19,-27],[6,-64],[4,-92],[-6,-73],[0,-45],[-8,-48],[-5,-33]],[[48465,57848],[-9,8],[-38,-3],[-42,-26],[-14,-20],[-3,-27],[-10,-19],[-13,-20],[-13,-26],[-23,4],[-22,18],[-11,17],[-1,10],[7,25],[6,27],[1,18],[-8,43],[-6,47],[3,23],[-6,70],[-3,3],[-29,-18],[-10,-4],[-6,-8],[-2,-13],[7,-44],[-5,-8],[-16,1],[-23,15],[-25,40],[-6,-13],[-3,-32],[-1,-38],[6,-69],[-7,-25],[-16,5],[-23,0],[-19,-7],[-13,-2],[-8,-24],[-4,-28],[8,-31],[-1,-12],[-6,-12],[-8,-7],[-6,0],[-18,34],[-22,13],[-50,19],[-6,47],[-8,1],[-12,24],[-11,32],[-10,-1],[-8,-9],[-28,3],[-24,-49],[-18,-61],[-20,-29],[-21,-13],[-8,0]],[[47780,57697],[4,38],[-3,28],[-6,25],[-62,67],[-10,28],[-9,76],[-7,76],[1,44],[4,40],[-2,31],[-6,24],[-19,22],[-20,11],[-24,-30],[-12,-5],[-11,2],[-6,10],[1,16],[27,81],[13,34],[16,26],[10,14],[7,20],[1,15],[-3,12],[-17,14],[-28,38],[-14,4],[-12,18],[-13,59],[-6,11],[-13,6],[-12,15],[1,77],[0,66],[-27,108],[-10,67],[-13,69],[-12,33],[-22,27],[-26,19],[-24,4],[-18,-6],[-8,-8],[0,-13],[15,-44],[2,-24],[-2,-24],[-5,-16],[-13,-2],[-23,-13],[-28,-27],[-19,-22],[-16,-58],[-11,-8],[-18,8],[-53,42],[-44,35],[-30,21],[-18,-13],[-9,-7],[-26,-23],[-34,-86],[-8,-28],[-7,-9],[-9,-15],[-9,0],[-7,10],[-3,6],[-17,62],[-20,68],[-15,30],[-20,2],[-17,-22],[-18,-43],[-22,-41],[-14,-12],[-13,7],[-30,51],[-22,36],[-3,18],[8,28],[8,42],[8,34],[8,15]],[[70393,53704],[-6,-1],[-4,10],[1,14],[5,10],[7,1],[4,-9],[-2,-14],[-5,-11]],[[70419,54242],[-4,-6],[-5,2],[-2,7],[3,10],[3,13],[3,14],[4,7],[3,-2],[0,-8],[-2,-11],[-1,-14],[-2,-12]],[[78361,55438],[48,-22],[18,-18],[54,-178],[71,-126],[30,-46],[23,-23],[32,-67],[28,-84],[61,-237],[10,-105],[5,-159],[-14,-240],[-16,-119],[3,-57],[22,-86],[-6,-82],[4,-68],[-2,-189],[13,-55],[15,-36],[76,-112],[6,-41],[37,-143],[70,-310],[19,-139],[-2,-38],[-8,-15],[-21,-14],[-17,27],[-6,20],[2,24],[-7,24],[-16,28],[-10,26],[3,-42],[0,-55],[-21,-5],[-28,17],[-34,-15],[-40,-68],[-19,-2],[-15,58],[-8,39],[-12,28],[-127,142],[-47,37],[-50,107],[-112,119],[-71,116],[-30,71],[-73,64],[-31,74],[-16,15],[-15,27],[16,72],[-7,76],[-8,64],[-51,126],[-25,88],[-49,87],[-19,51],[-18,58],[11,21],[11,12],[-10,43],[-27,74],[-13,85],[0,160],[-39,226],[-34,313],[6,110],[-9,119],[-22,114],[-29,82],[-11,67]],[[82659,54245],[-11,1],[-24,12],[-48,61],[-49,22],[-71,2],[-41,8],[-16,-9],[-14,0],[-10,12],[-11,6],[-27,-36],[-13,11],[-14,16],[-23,5],[-28,-5],[-32,-37],[-34,34],[-10,-1],[-7,-8],[-15,-46],[-29,-35],[-14,-64],[-9,-61],[-7,-21],[-3,-119],[-4,-57],[7,-76],[-1,-32],[-13,-49],[-2,-11],[-6,-77],[2,-21],[-1,-25],[-11,-54],[-20,-15],[-20,-9],[-18,19],[-16,-30],[-20,-46],[-8,-31],[0,-29],[2,-19],[-4,-20],[-1,-21],[1,-30],[14,-13],[14,-26],[-1,-25],[-7,-17],[-18,-27],[-33,-55],[-37,-47],[-14,-11],[-5,-22],[-2,-29],[8,-64],[7,-18],[5,-23],[-5,-26],[-4,-23],[-14,-15],[-13,-10],[-5,-19],[-7,-76],[-8,-40],[-18,-59],[-6,-27],[-9,-9],[-35,28],[-31,-17],[-41,-11],[-35,2],[-27,-12],[-19,-31],[-21,-40],[-22,-29],[-16,-14],[-30,41],[-16,-3],[-27,14],[-65,47],[-16,13],[-17,2],[-5,13],[3,23],[-3,29],[-13,11],[-129,-4],[-38,-26],[-25,-20],[-18,-23],[-5,-59],[-11,-54],[-14,-58],[-43,-17],[-32,-59],[-11,-7],[-21,9],[-24,5],[-17,-17],[-17,1],[-55,28],[-51,4],[-30,-14],[-16,-5],[-89,-81],[-31,-9],[-12,12],[-17,33],[-24,32],[-55,112],[-21,26],[-14,27],[-13,32],[-18,35],[-17,24],[-23,48],[-22,53],[-5,93],[-18,17],[-7,24],[-2,28],[25,76]],[[80452,53011],[18,-80],[7,-18],[40,-54],[33,-27],[36,-11],[37,-2],[15,4],[14,10],[14,-11],[76,-88],[30,-15],[31,6],[13,-8],[44,-67],[13,-8],[22,5],[-28,30],[-18,22],[-8,41],[4,44],[18,29],[12,31],[5,94],[8,48],[14,46],[5,43],[-16,34],[-4,57],[3,47],[10,33],[15,-22],[15,-19],[15,2],[11,7],[2,25],[-3,43],[1,78],[19,63],[31,43],[29,21],[108,35],[172,89],[51,35],[19,18],[15,25],[27,80],[50,125],[35,103],[74,151],[59,139],[8,26],[9,76],[1,36],[-2,36],[8,17],[12,10],[3,0]],[[81684,54488],[8,-16],[21,-22],[15,-28],[10,-37],[8,-34],[0,-29],[10,-24],[26,-4],[8,-30],[18,-52],[17,-37],[10,-14],[13,7],[19,34],[14,42],[10,56],[-8,9],[14,42],[2,22],[-6,21],[-8,20],[-3,51],[-5,66],[-4,29],[11,22],[22,27],[22,31],[23,25]],[[81951,54665],[1,-45],[-1,-75],[7,-63],[15,-110],[18,-15],[21,-10],[12,3],[8,7],[2,9],[-13,44],[-3,102],[-11,67],[-17,67],[-7,19]],[[81983,54665],[65,19],[14,21],[26,46],[10,26],[7,58],[-32,34],[-12,44],[-1,48],[38,88],[13,21],[6,-31],[17,-8],[15,-1],[16,2],[22,44],[12,64],[39,91],[14,70],[8,72],[99,226],[12,36],[59,227],[7,7],[16,-22],[4,-72],[-2,-31],[-9,-47],[-6,-49],[7,1],[28,30],[29,79],[17,69],[14,30],[28,-17],[6,-12],[-2,-49],[3,-29],[11,-61],[24,-37],[33,-24],[31,-34],[10,-22],[6,-27],[7,-45],[0,-44],[-22,-44],[10,-71],[-2,-41],[-7,-35],[-33,-33],[88,33],[22,18],[30,47],[16,-41],[15,-69],[-12,-18],[-38,-26],[-2,-10],[13,-36],[16,3],[31,24],[29,38],[14,0],[15,-8],[29,-24],[16,-20],[13,-26],[9,-53],[33,-19],[68,-75],[12,-7],[14,-1],[35,9],[13,-10],[9,-27],[3,-34],[-1,-36],[-4,-27],[-8,-22],[-25,-34],[-61,-45],[-66,-34],[-34,2],[-47,29],[-17,-3],[-17,-14],[-21,-92],[39,-92],[66,-96],[9,-24],[-2,-29],[-11,-18],[-14,-9],[-37,-16],[-38,-11],[-30,-17],[-31,-21],[-31,7],[-43,43],[-12,3],[-13,-22],[-13,-60],[-8,-17]],[[78950,53416],[-14,-6],[-7,4],[-5,23],[11,51],[4,9],[11,-56],[0,-25]],[[77857,54893],[-7,-16],[-20,9],[4,94],[11,12],[18,-17],[8,-16],[-14,-66]],[[77735,55567],[19,-62],[-9,-27],[-5,-8],[-12,9],[-11,-24],[-11,-4],[-11,42],[-13,17],[-3,30],[18,5],[10,-10],[20,20],[8,12]],[[82539,55972],[-17,-31],[-6,37],[1,47],[23,44],[33,8],[4,-35],[-4,-40],[-7,-21],[-27,-9]],[[78143,53564],[-14,-10],[0,15],[2,21],[10,20],[5,-12],[-3,-34]],[[80941,53234],[-9,-8],[-13,21],[-3,175],[9,15],[6,-2],[7,-32],[-1,-76],[1,-68],[3,-25]],[[82745,54254],[-39,-11],[-27,1]],[[82679,54244],[5,20],[-1,27],[13,7],[15,-6],[34,-38]],[[63760,44681],[13,-60],[15,-58],[46,-140],[20,-53],[17,-57],[8,-114],[30,-178],[28,-266],[8,-273],[9,-126],[21,-118],[36,-122],[11,-136],[-21,-140],[-32,-132],[-8,-25],[-15,-34],[-6,1],[-26,34],[-20,56],[-26,132],[-10,66],[-10,11],[-31,-6],[-22,-41],[-4,-27],[5,-74],[8,-66],[4,-68],[0,-85],[9,-26],[12,-22],[12,-55],[3,-133],[-8,-67],[-22,-58],[2,-32],[8,-32],[-8,-20],[-29,-25],[-11,-22],[-16,-59],[-25,-120],[-3,-61],[16,-186],[-5,-132],[-32,-252],[-18,-119],[-26,-143],[-40,-189],[-39,-237],[-34,-243],[-25,-147],[-28,-144],[-38,-255],[-33,-258],[-48,-285],[-68,-317],[-7,-41],[-14,-163],[-15,-140],[-18,-140],[-37,-230],[-5,-71],[-8,-68],[-36,-144],[-16,-54],[-10,-57],[-6,-72],[-11,-70],[-27,-129],[-39,-110],[-27,-40],[-58,-59],[-30,-11],[-65,-2],[-64,-33],[-66,-64],[-63,-73],[-25,-35],[-27,-20],[-83,-4],[-26,16],[-84,120],[-32,20],[-62,17],[-18,10],[-17,16],[-25,62],[-50,54],[-12,16],[-7,37],[-5,39],[-13,45],[-10,84],[-16,59],[-45,104],[-5,33],[-4,110],[2,75],[-5,136],[5,65],[16,58],[-6,62],[-17,66],[-6,68],[-13,62],[-48,112],[-11,55],[-8,57],[-18,178],[-2,62],[3,130],[7,68],[11,47],[3,35],[8,30],[11,24],[7,28],[18,168],[23,37],[33,21],[27,44],[16,59],[15,121],[42,121],[15,63],[34,96],[30,135],[9,64],[7,65],[8,143],[5,71],[-1,70],[-17,72],[-41,132],[-1,24],[3,98],[-4,70],[-15,71],[-19,66],[-19,124],[-10,205],[2,74],[-5,65],[-14,63],[10,109],[123,397],[4,47],[-5,121],[2,71],[5,26],[9,15],[21,7],[99,18],[13,12],[25,33],[34,65],[15,19],[14,-7],[8,-28],[11,-15],[40,29],[16,1],[16,-5],[7,27],[4,36],[6,26],[11,14],[51,8],[33,11],[43,25],[9,-5],[34,-91],[11,-8],[13,-4],[12,17],[-28,48],[-4,26],[1,31],[15,65],[25,50],[56,76],[57,88],[17,6],[14,-14],[11,-103],[-1,-17],[9,-3],[10,13],[10,42],[0,34],[-7,34],[-4,28],[0,26],[29,61],[23,58],[10,70],[10,32],[24,36],[7,-6],[6,-29],[3,-31],[-6,-31],[-9,-31],[-4,-40],[14,-8],[13,10],[19,73],[21,70],[13,36],[16,25],[27,-5],[26,-15],[-43,73],[-10,101],[50,174],[1,37],[7,11],[3,14],[-26,59],[-5,29],[4,44],[12,40],[12,27],[16,11],[13,-15],[28,-49],[19,-7],[23,46],[18,58],[28,40],[32,25],[49,91],[32,191],[2,56],[-7,67],[-11,65],[-19,80],[5,18],[27,-11],[9,11],[28,71],[48,136],[16,0],[13,-25],[5,-37],[10,-28],[32,-65],[16,-48]],[[63428,44145],[0,-21],[-36,8],[-6,72],[18,3],[4,29],[11,4],[11,-64],[-2,-31]],[[63871,42106],[-32,-106],[9,89],[36,127],[11,10],[-24,-120]],[[56206,76217],[43,-86],[23,-34],[28,-27],[32,-19],[11,-19],[20,-91],[10,-34],[13,-11],[3,-10],[1,-13],[-15,-64],[-6,-144],[-4,-11]],[[56365,75654],[-16,0],[-21,-3],[-8,-11],[-8,-77],[-34,-22],[-30,-13],[-26,3],[-45,18],[-15,2],[-13,-10],[-40,-5],[-18,-14],[-42,-90],[-42,-32],[-14,-15],[-33,20],[-15,2],[-22,-23],[-49,-3],[-13,-4],[-38,-3]],[[55823,75374],[-2,12],[-7,18],[-17,9],[-36,-7],[-9,13],[-15,77],[-11,12],[-13,26],[-22,83],[-1,37],[2,32],[-12,74],[7,19],[11,12],[0,30],[-3,46],[14,90],[3,6]],[[55712,75963],[4,-4],[32,-7],[8,11],[6,18],[1,66],[8,30],[78,58],[23,2],[18,-27],[14,-17],[8,1],[3,17],[10,33],[16,19],[48,16]],[[51699,80714],[-3,-15],[1,-35],[8,-34],[18,-34],[14,-25],[19,-20],[33,-19],[13,-4],[1,-25],[-2,-27],[-11,-15],[-11,-21],[-8,-26],[-8,-50],[-1,-35]],[[51762,80329],[-19,14],[-10,10],[-17,3],[-17,-8],[-12,-18],[-18,-5],[-14,5],[-9,13],[-7,8],[-22,8],[-9,19]],[[51608,80378],[7,9],[6,15],[5,19],[7,19],[-21,50],[-5,16],[-17,28],[0,14],[4,14],[-1,11],[2,25],[12,24],[8,30],[14,40],[31,49],[21,-8],[10,0],[6,-17],[2,-2]],[[55805,83690],[32,66],[12,43],[8,61],[8,20],[0,-28],[-3,-46],[-20,-80],[-21,-41]],[[55898,83677],[0,4],[-9,42],[10,64],[-19,93],[-30,113],[-2,121],[-2,27]],[[55846,84141],[74,68],[94,73],[22,6],[86,44],[12,3],[78,-8],[62,-10],[51,1],[29,11],[26,-9],[20,-33],[22,4],[21,21],[116,-19],[26,0],[29,-3],[54,-19],[32,-18],[68,11],[30,0],[15,7],[47,49],[21,9],[19,8],[17,-7],[11,-42],[35,-72],[38,-13],[106,-27],[21,-15],[59,-64],[36,-31],[22,-25],[35,-49],[20,-35],[33,-27],[39,-18],[15,-3]],[[57387,83909],[-1,-26],[-7,-44],[-13,-56],[-14,-44],[-3,-17],[10,-14],[52,-7],[22,-7],[4,-12],[-11,-15],[-17,-13],[-7,-12],[-13,-42],[-86,5],[-12,-9],[-5,-19],[-4,-23],[-12,-28],[-23,-23],[-35,-9],[-29,-16],[-22,-49],[-16,-67],[0,-47],[2,-26],[-2,-15],[-11,-17],[-18,-43],[-14,-48],[-6,-26],[3,-12],[16,-1],[24,-10],[13,-19],[4,-22],[0,-24],[-4,-13],[-19,-10],[-30,0],[-17,12],[-4,9],[8,22],[-6,29],[-12,16],[-25,-24],[-24,0],[-29,-21],[-19,-34],[-18,-13],[-49,7],[-13,-15],[-10,-69],[-6,-14],[-40,3],[-40,-28],[-45,-22],[-22,15],[-13,18],[-24,-3],[-27,-8],[-17,4],[-20,-1],[-39,-14],[-48,4],[-21,12]],[[52646,79072],[3,-9],[1,-12],[3,-12],[1,-16],[4,-16],[8,-15],[3,-14],[-4,-18],[-4,-11]],[[53195,70957],[43,-37],[43,-14],[130,-136],[40,-17],[91,-16],[107,56],[40,10],[71,-52],[31,-15],[52,-4],[89,-47],[22,-17],[52,-75],[25,-23],[184,-69],[25,-46],[26,-87],[1,-109],[14,-79],[23,-102],[28,-72],[30,-61],[35,-37],[81,-56],[91,-21],[92,-8],[158,-76],[133,-89],[33,-44],[67,-43],[134,-208],[74,-72],[52,-14],[46,13],[83,72],[34,43],[84,180],[27,94],[11,66],[-3,67],[-10,61],[-23,63],[-17,84],[-9,151],[13,104],[16,63],[25,64],[69,122],[70,86],[122,113],[71,1],[30,12],[58,80],[24,3],[33,-20],[97,6],[42,-22],[51,-50],[64,-31],[45,-30],[48,-40],[11,-98],[-5,-29],[-1,-38],[50,-68],[142,-32],[28,-18],[39,-52],[25,-16],[97,-7],[57,11],[54,-18],[20,-18],[21,-40],[25,-99],[10,-33]],[[56986,70077],[-11,-16],[-15,-35],[-10,-30],[-26,-50],[-21,-53],[2,-79],[5,-79],[14,-78],[13,-86],[-4,-56],[-11,-70],[-12,-58],[-42,-119],[-7,-28],[3,-41],[25,-141],[2,-44],[16,-138],[14,-112],[15,-87],[2,-25],[0,-129],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129],[0,-130],[0,-129],[0,-129],[0,-130],[0,-129]],[[56661,63073],[-133,137],[-134,136],[-133,136],[-133,136],[-133,137],[-133,136],[-133,136],[-133,137],[-133,136],[-133,136],[-133,136],[-133,137],[-133,136],[-133,136],[-134,137],[-133,136],[-92,94],[-99,-92],[-77,-72],[-103,-95]],[[53324,65390],[-26,102],[-30,114],[-40,142],[-24,87],[-8,14],[-111,69],[-117,67],[-69,-41],[-12,3],[-19,26],[-20,35],[-10,49],[-28,66],[-25,150],[-2,119],[-6,43],[-61,168],[-55,153],[-37,102],[-7,46],[4,57],[15,51],[54,60],[48,66],[7,45],[3,125],[-16,39],[-12,74],[-11,101],[-2,64],[22,128],[25,134],[-16,149],[-12,297],[8,235],[-7,85],[-4,36],[-16,110],[-21,114],[-9,40],[-26,92],[-43,114],[-22,70],[30,37],[28,29]],[[47143,56730],[14,3],[24,17],[14,-8],[6,-23],[3,-20],[72,51],[6,11],[4,-2],[9,-47],[5,3],[5,14],[5,1],[5,-6],[6,-22],[9,-19],[16,-14],[10,-19],[-2,-49],[4,-49],[7,-11],[4,-28],[1,-32],[4,-17],[3,-32],[-1,-34],[2,-24],[12,-41],[7,-53],[0,-37],[-4,-39],[-8,-35],[-13,-39],[-1,-16],[8,-10],[12,-2],[10,8],[25,-18],[14,-25],[12,-32],[10,-16],[5,-20],[18,6],[21,19],[4,9],[7,-5],[13,-2],[10,35],[7,40],[17,43],[8,16],[2,28],[1,36],[6,30],[13,17],[15,0],[8,-6],[4,-30],[11,-23],[10,-15]],[[47642,56197],[5,-7],[9,-18],[8,-60],[31,-194],[-2,-54],[-6,-35],[0,-35],[-2,-33],[-19,-56],[-56,-114],[4,-10],[13,-13],[14,-6],[11,3],[14,-28],[16,-36],[16,-18],[23,-17],[20,-2],[17,7],[24,-7],[26,-30],[9,-49],[7,-42],[9,-22],[1,-36],[18,-33],[26,-6],[34,-38],[9,2],[4,5],[4,-8],[8,-109],[7,-58],[-3,-23],[-5,-19],[0,-88],[-16,-51],[-2,-56],[-5,-18],[-16,-16],[0,-42],[-4,-52],[-2,-55],[4,-144],[1,-107],[8,-20]],[[47904,54349],[-32,9],[-94,82],[-73,47],[-242,267],[-68,108],[-77,160],[-173,322],[-39,51],[-50,25],[-31,28],[-21,30],[-18,89],[-43,53],[-80,75],[-60,126]],[[59963,71101],[-8,-10],[-15,-26],[-14,-22],[-30,-33],[-7,-20],[-6,18],[-13,-12],[-11,-75],[-23,-26],[-29,3],[-23,7],[-32,-5]],[[59752,70900],[13,44],[13,57],[13,77],[24,64],[49,217],[28,87],[10,125],[43,109],[33,32],[15,31],[0,47]],[[55846,84141],[-9,109],[5,217],[11,108],[51,63],[26,49],[15,65],[5,61],[10,49],[75,144],[60,15],[80,40],[90,33],[17,-42],[9,-32],[108,-117],[27,-40],[42,-135],[100,-68],[79,22],[34,33],[63,61],[28,45],[6,43],[-11,184],[-17,80],[6,50]],[[56756,85178],[11,-2],[27,24],[88,44],[17,2],[20,9],[56,34],[18,-18],[14,-20],[9,-1],[4,8],[-2,13],[4,10],[16,-6],[65,-55],[24,-13],[17,-4],[20,-26],[55,-18],[7,-13],[4,-17],[51,-71],[23,-35],[46,-33],[20,-7],[79,33],[23,11],[18,1],[19,-18],[42,-23],[39,-8],[7,2]],[[57818,84183],[-8,2],[-24,-8],[-38,-32],[-56,-78],[-14,-17],[-15,-59],[-3,-6],[-33,2],[-9,2],[-33,-1],[-71,15],[-28,-10],[-36,-60],[-14,-9],[-42,-8],[-7,-7]],[[79866,60313],[-15,-23],[-14,-59],[-10,-4],[-24,21],[-9,-11],[-15,-43],[-27,-47],[-13,0],[-9,5],[-11,-20],[-15,-36],[-7,1],[-26,-9],[-10,12],[-12,30],[-21,31],[-18,22],[-10,15],[-9,26],[-8,16],[-15,-36],[-26,-35],[-24,7],[-12,5],[-9,-50],[-7,-9],[-44,-9],[-8,-8],[7,-46],[26,-79],[7,-45],[-16,-73],[-45,2],[-20,30],[-19,41],[-7,21],[-57,41],[-39,-28],[-12,1],[-18,30],[-11,23],[-11,34],[-6,34],[0,16]],[[77811,63546],[2,32],[15,125],[18,81],[22,38],[22,16],[24,-6],[20,7],[16,19],[-1,12],[-19,3],[-8,21],[4,41],[8,26],[13,13],[13,40],[12,70],[15,35],[18,1],[30,30],[42,59],[16,57]],[[78093,64266],[16,-26],[-6,-66],[9,-14],[4,-23],[-2,-37],[3,-32],[7,-15],[9,-8],[45,27],[27,2],[12,-17],[10,-11],[13,-9],[11,-11],[6,3],[15,28],[5,5],[1,13],[-11,25],[-11,21],[0,46],[5,80],[1,41],[-1,100],[-2,27],[-10,33],[-27,61],[-7,38],[-5,38],[1,24],[-7,27],[-4,26],[13,13],[14,29],[7,45],[7,33],[10,14],[9,5],[6,-3],[23,-59],[28,30],[22,-1],[19,-15],[10,-19]],[[69707,76179],[-15,26],[0,27],[16,46],[14,23],[6,44],[20,29],[20,47],[25,38],[46,28],[25,-9],[24,7],[38,23],[7,1],[15,1],[96,-36],[32,-1],[74,-46],[34,-10],[24,-13],[11,-20],[18,-25],[93,-19],[26,-13],[9,-22],[26,-27],[23,-6],[-20,106],[8,63],[30,173],[15,26],[30,23],[46,26],[18,36],[38,-4],[16,3],[12,6],[6,21],[43,-35],[72,-71],[54,-45],[64,-43],[88,-39],[75,-13],[13,10],[30,59],[14,2],[26,-5],[79,-3],[81,-3],[38,6],[83,25],[12,1],[19,-2],[50,-33],[37,-5],[25,0],[14,-2],[31,1],[50,-4],[61,-22],[75,4],[23,4],[42,-4],[32,-20],[42,-22],[26,-9],[17,-5],[31,-2],[19,7],[11,-10],[10,-53],[26,-35],[20,-34],[17,-36],[17,-15],[30,-1],[57,-10],[33,-15],[41,-63],[39,-65]],[[72280,76146],[5,-35],[5,-40],[-3,-10],[-5,-6],[-86,-10],[-19,-11],[-20,-56],[-73,-45],[-42,-23],[-17,1],[-40,-37],[-113,-91],[-55,-58],[-28,-24],[-22,-27],[-4,-27],[-1,-25],[-62,-118],[-46,-15],[-39,3],[-27,-18],[-38,-18],[-83,12],[-28,-2],[-55,17],[-21,-9],[-24,-24],[-32,-95],[-13,-22],[-6,-21],[-5,-46],[-12,-49],[-16,-38],[-11,-36],[-23,-34],[-22,-22],[-17,45],[-14,-13],[-14,-18],[-26,6],[-16,-9],[-37,-39],[-54,1],[-6,14],[-11,108],[-9,51],[-8,11],[-10,2],[-77,-85],[-36,-15],[-30,-3],[-39,25],[-8,-6],[-7,-14],[-3,-17],[12,-48],[-3,-10],[-18,1],[-24,-11],[-19,-22],[-56,-78],[-47,-26],[-43,-10],[-18,-9],[-8,-9],[-15,-37],[-15,-58],[-8,-29],[-6,-16],[1,-22],[12,-27],[9,-63],[-2,-16],[-9,-26],[-14,-25],[-30,-16],[-23,-7]],[[63409,68907],[-16,-13],[-10,6],[-11,31],[-17,77],[10,29],[-1,12],[2,9],[5,6],[6,36],[7,12],[12,-25],[33,-88],[0,-37],[-2,-14],[-18,-41]],[[62925,68603],[45,94],[21,51],[38,109],[19,78],[19,87],[16,67],[4,12],[9,23],[21,24],[30,22],[51,9],[36,1],[8,-1],[22,-11],[63,-54]],[[63327,69114],[-2,-21],[9,-64],[20,-69],[17,-56],[2,-27],[-15,4],[-12,11],[-22,11],[-42,-75],[-26,-40],[0,-14],[34,-16],[25,1],[17,11],[15,-18],[10,-46],[4,-37],[23,-133],[19,-45],[24,-80],[9,-41],[5,-35],[15,-51]],[[55712,75963],[5,26],[-2,55],[-15,91],[-10,30],[-22,30],[-16,19],[-30,17],[-15,50],[-23,57],[-11,13]],[[98046,53645],[-17,-19],[-6,3],[21,27],[0,-3],[2,-8]],[[98011,53600],[-20,-22],[-6,12],[8,0],[14,22],[16,1],[-2,-11],[-10,-2]],[[98060,52906],[1,-14],[-16,37],[-9,23],[0,10],[5,-6],[5,-12],[3,-9],[11,-29]],[[98063,52832],[-10,-3],[7,9],[2,11],[-1,36],[4,-3],[1,-15],[1,-21],[-4,-14]],[[98064,52426],[15,-23],[-2,-15],[-5,-18],[-20,-46],[-6,4],[19,42],[8,27],[-11,21],[-5,-5],[-1,0],[-4,20],[4,0],[8,-7]],[[98474,51381],[-9,-16],[-4,14],[5,18],[-8,73],[-12,10],[-8,22],[4,0],[12,-20],[10,-9],[6,-48],[4,-44]],[[98547,51145],[2,-30],[-7,4],[-2,11],[-2,30],[-7,30],[8,-8],[6,-23],[2,-14]],[[98065,52616],[-7,-2],[5,11],[31,13],[3,4],[5,-7],[0,-7],[-2,-3],[-16,-1],[-12,-6],[-7,-2]],[[97097,51339],[-3,-1],[-5,6],[0,7],[4,4],[5,-6],[-1,-10]],[[2163,49244],[1,-4],[4,1],[4,1],[-2,-4],[-8,-2],[-3,10],[4,8],[4,1],[1,-2],[-1,-2],[-1,0],[-3,-2],[0,-5]],[[2476,50037],[-1,-5],[-2,4],[1,6],[2,6],[1,-3],[-1,-8]],[[2435,49272],[-3,-3],[-3,1],[-2,4],[0,6],[3,4],[3,-1],[3,-6],[-1,-5]],[[1524,49150],[3,-8],[0,-4],[-1,1],[-5,2],[-1,5],[3,-3],[2,1],[-4,6],[-2,5],[-3,2],[0,3],[3,-1],[5,-9]],[[6957,49488],[-1,-4],[-4,5],[-6,9],[-6,9],[0,4],[8,5],[10,5],[2,-6],[-2,-9],[-1,-18]],[[7838,45252],[-2,-9],[-5,3],[-2,12],[-1,12],[2,11],[2,-1],[4,-12],[2,-16]],[[6704,48601],[-6,-2],[-8,0],[-3,7],[-1,6],[3,1],[2,-2],[11,-1],[3,-4],[-1,-5]],[[6294,52912],[46,-67],[-20,-5],[-48,32],[-44,66],[13,15],[7,-24],[20,-22],[12,46],[7,11],[-35,48],[14,-3],[33,-32],[-5,-65]],[[5739,54103],[22,-49],[-4,-24],[-16,2],[-7,8],[12,5],[2,9],[-6,14],[-7,10],[-5,0],[-2,-20],[-8,16],[5,15],[6,10],[8,4]],[[2306,50249],[9,-11],[7,-15],[4,-20],[-1,-5],[-5,0],[-6,6],[-5,9],[-2,2],[-1,2],[6,-1],[6,-9],[5,-4],[-1,10],[-5,18],[-4,6],[-4,5],[-5,3],[-4,-3],[-1,-2],[-1,5],[1,3],[1,4],[6,-3]],[[61387,50599],[-11,-5],[6,33],[30,43],[13,-10],[2,-10],[-1,-8],[-5,-9],[-34,-34]],[[59796,55006],[-1,-19],[0,-27],[7,-16],[10,-11],[15,12],[12,16],[13,3],[77,-43],[12,-38],[0,-40],[3,-30],[-6,-29],[-6,-90],[2,-82],[23,-60],[20,-48],[16,-67],[13,-21],[16,-10],[53,-3],[78,-4],[75,-4],[7,-2],[16,-9],[69,-91],[63,-82],[54,-72],[52,-70],[51,-68],[39,-57],[39,-17],[62,-8],[44,-3],[40,-23],[60,-22],[44,-12],[27,-12],[75,-14],[12,8],[33,63],[37,101],[15,56],[47,56],[84,77],[59,55],[66,55],[30,-48],[41,-76],[18,-38],[15,-17],[23,-11],[27,0],[15,2],[30,10],[71,9],[41,-1]],[[61536,50866],[-40,-99],[-33,-45],[-45,-21],[-13,4],[-18,14],[-7,-24],[-5,-37],[-10,8],[-7,11],[4,-66],[5,-32],[-7,-44],[-22,-38],[-2,-32],[-47,-85],[-66,-10],[-35,-42],[-16,-34],[-12,-75],[5,-116],[-19,-88],[-3,-45],[-35,-57],[-15,-53],[-11,-54],[-10,-24],[-12,-120],[-16,-73],[-4,-25],[-4,-22],[-12,-43],[-8,-29],[-6,-20],[-41,-187],[-32,-85],[-24,10],[-17,-33],[-2,-15]],[[63939,77681],[-9,-17],[-15,3],[-28,61],[8,62],[10,13],[14,8],[2,-13],[-20,-28],[-2,-35],[17,-39],[23,-15]],[[63975,77748],[-10,-8],[-6,37],[11,31],[15,4],[-5,-49],[-5,-15]],[[64633,78001],[-5,-6],[-18,16],[-12,26],[15,31],[14,-5],[9,-33],[-3,-29]],[[64581,75910],[-7,60],[-3,94],[1,30],[15,79],[16,54],[13,56],[5,73],[-11,118],[-13,26],[-16,9],[-17,2],[-30,-5],[-14,-9],[-25,40],[-30,6],[-16,-11],[-16,-6],[-17,11],[-15,24],[-10,25],[-7,29],[-23,57],[-24,31],[-28,7],[-46,-1],[-15,3],[-1,33],[6,72],[0,38],[-3,35],[-8,29],[-10,25],[-27,42],[-21,58],[-35,120],[-30,135],[-13,21],[-27,21],[-60,17],[-39,18],[-15,17],[-7,29],[1,32],[3,38],[9,31],[31,25],[67,5],[58,-3],[53,-56],[17,-13],[18,-4],[37,18],[19,5],[46,-6],[-14,27],[-17,14],[-18,-1],[-16,11],[-25,52],[-45,59],[-10,24],[-3,39],[8,34],[32,34],[26,47],[13,63],[11,28],[23,45],[34,-8],[54,32],[87,-6],[105,9],[29,-3],[67,-32],[39,-14],[46,-7],[34,14],[-32,44],[-69,51],[-17,44],[31,119],[43,109],[26,129],[-7,128],[-13,35],[4,42],[15,35],[11,35],[-9,42],[-19,65],[-10,22],[-33,35],[-66,2],[-54,19],[-17,-16],[-10,-24],[-13,-15],[-42,-32],[-14,-6],[-14,6],[-21,36],[-18,-4],[-56,22],[-26,49],[-10,7],[-90,38],[-32,8],[-71,-40],[-52,-52],[-15,-7],[-27,-32],[-15,-6],[-16,6],[-14,-2],[-32,-49],[-57,-57],[-28,-35],[-31,-23],[-35,-14],[-36,-2],[-13,-13],[-41,-4],[-25,-11],[-1,-19],[5,-43],[-21,15],[-22,-30],[7,-28]],[[74256,80118],[-26,11],[-51,3],[-30,-7],[-15,-4],[-21,-24],[-16,-24],[-6,-40],[8,-45],[-11,-94],[-15,-36],[-32,-61],[-19,-14],[-30,-11],[-30,-18],[-58,-18],[-63,-9],[-22,-13],[-16,-42],[-12,-35],[-7,-27],[-17,-88],[-11,-78],[10,-98],[8,-108],[-1,-37],[16,-56],[7,-34],[-3,-48],[-22,-38],[-13,-51],[-13,-21],[-36,-10],[-34,-6],[-34,-43],[-27,-30],[-43,-38],[-20,-7],[-11,19],[-8,43],[-14,19],[-21,2],[-17,0],[-53,12],[-35,-1],[-25,-9],[-30,-5],[-51,16],[-33,13],[-22,13],[-53,38],[-70,45],[-28,13],[-17,-14],[-3,-25],[-4,-62],[-8,-39],[-49,-197],[-30,-137],[-38,-131],[-12,-88],[-23,-112],[-22,-81],[-9,-44],[-1,-18],[4,-25],[35,-28],[36,-17],[8,-10],[4,-29],[-1,-47],[-7,-44],[-11,-35],[-10,-17],[-12,-2],[-23,23],[-20,25],[-16,7],[-40,-13],[-37,-20],[-12,0],[-22,12],[-21,25],[-9,49],[-19,22],[-24,-22],[-75,-37],[-82,-44],[-51,-23],[-21,3],[-40,-5],[-35,-12],[-26,-17],[-52,-24],[-47,-16],[-30,-36],[-22,-35],[1,-13],[16,-20],[18,-17],[36,4],[35,3],[30,-22],[26,-14],[7,-18],[-7,-18],[-15,-4],[-6,-12],[3,-17],[-10,-43],[-5,-65],[5,-65],[3,-59],[-2,-30],[-1,-43],[11,-29],[10,-55],[18,-34],[27,-119],[16,-70],[15,-79],[-11,-42],[1,-25],[17,-21],[8,-40],[8,-25],[-2,-24],[-8,-10],[-37,15],[-31,-24],[-32,-25],[-4,-13],[-1,-14],[3,-13],[19,-22],[26,-14],[-2,-22],[-32,-10],[-48,-34],[-13,-36],[-11,-39],[-1,-24],[5,-61],[8,-69],[13,-72],[1,-22],[-7,-16],[-6,-10]],[[60770,71066],[20,-127],[19,-125],[20,-129],[20,-125],[-21,-12],[16,-96],[28,15],[29,11],[13,-62],[-41,-68]],[[59708,68751],[9,76],[-3,40]],[[59714,68867],[14,134],[8,63],[5,47],[20,94],[-3,31],[5,109],[-2,21],[9,60],[17,86],[17,74],[7,33],[17,71],[16,86],[-9,47],[-2,10],[6,54],[8,89]],[[59847,69976],[4,48],[9,63],[17,54],[-8,126],[1,68],[11,78],[-6,91]],[[59875,70504],[5,129],[1,12],[6,16],[4,8],[35,27],[14,3]],[[87046,72697],[-12,-21],[-24,7],[-14,31],[5,35],[25,27],[23,-54],[-3,-25]],[[88428,73630],[-26,-2],[-7,6],[16,14],[1,24],[10,42],[0,13],[-21,2],[1,48],[16,48],[43,75],[11,14],[2,-33],[-13,-77],[-3,-28],[34,-6],[-22,-93],[-42,-47]],[[87480,71594],[-30,-49],[-26,3],[-13,22],[-4,27],[25,43],[21,60],[19,27],[16,15],[12,-1],[-27,-84],[7,-63]],[[86283,69275],[-32,-12],[-17,13],[-16,71],[30,45],[41,-44],[8,-13],[-14,-60]],[[86377,69352],[-24,-6],[-1,34],[19,75],[2,55],[18,70],[8,15],[6,6],[6,-22],[-7,-85],[-18,-65],[-9,-77]],[[86133,70408],[-22,-20],[-3,19],[-9,9],[16,28],[0,12],[-11,19],[12,71],[-3,30],[44,12],[8,-29],[1,-87],[-33,-64]],[[85910,71499],[-18,-23],[-8,35],[8,102],[34,-21],[0,-31],[-16,-62]],[[85940,71632],[-6,-28],[-19,19],[-8,18],[17,87],[-2,34],[1,16],[35,45],[6,-8],[2,-13],[-3,-20],[2,-43],[-27,-71],[2,-36]],[[85740,70727],[10,-15],[16,9],[13,2],[9,-8],[11,-40],[4,-24],[-20,-3],[-9,-5],[-11,-30],[-16,11],[-10,14],[-2,19],[5,70]],[[86216,70520],[-24,-3],[-11,7],[-4,18],[35,37],[26,-6],[-11,-34],[-11,-19]],[[89186,77956],[-11,-37],[-14,55],[-3,58],[8,0],[16,-9],[3,-28],[1,-39]],[[89248,77833],[-19,-4],[-23,24],[-3,30],[17,24],[16,-9],[16,-31],[5,-16],[-9,-18]],[[88744,76083],[-6,-3],[-7,5],[-6,43],[5,23],[18,16],[17,5],[-14,-80],[-7,-9]],[[87319,71706],[-5,-11],[-5,3],[-18,-26],[-4,25],[-13,17],[-2,13],[40,9],[13,-7],[-6,-23]],[[88737,71846],[-3,-27],[-15,6],[-7,18],[1,32],[16,0],[8,-29]],[[85854,70760],[-7,-6],[-9,52],[-6,18],[10,10],[21,94],[4,-37],[8,-37],[8,-6],[-8,-27],[-12,-10],[-9,-51]],[[85969,70980],[-19,-27],[-15,0],[13,32],[2,15],[11,43],[21,15],[9,2],[-17,-44],[-5,-36]],[[86054,71283],[-20,-24],[-14,19],[7,51],[5,17],[16,-17],[6,-46]],[[86826,71494],[-8,-23],[-24,7],[10,20],[7,24],[6,5],[4,-26],[5,-7]],[[86740,71396],[13,-21],[32,9],[4,-6],[-9,-19],[-14,-19],[-26,14],[-16,1],[-2,31],[2,12],[16,-2]],[[86032,70078],[-9,-10],[6,45],[22,40],[2,-26],[-21,-49]],[[89496,67175],[-5,-1],[-18,61],[5,3],[10,-9],[12,-36],[-4,-18]],[[89950,77256],[35,-3],[16,2],[26,-8],[106,-88],[32,-11],[33,-1],[23,7],[20,24],[64,106],[67,97],[8,-4],[0,-27],[-5,-29],[-30,-89],[-33,-119],[-7,-60],[11,-59],[20,-49],[17,-66],[19,-93],[26,-11],[14,-2],[27,28],[25,35],[22,4],[22,-6],[-30,-24],[-28,-30],[-24,-57],[-9,-10],[-28,3],[-16,-2],[-32,-24],[-29,-27],[-27,-33],[-30,-17],[-32,-4],[-49,-27],[-32,-2],[-59,23],[-29,-6],[-63,-53],[-58,-77],[-50,-86],[-42,-104],[-17,-54],[-10,-60],[-2,-40],[-4,-38],[-9,-27],[-12,-22],[-35,13],[-57,55],[-110,81],[-117,123],[-66,62],[-123,-19],[-117,-118],[-11,10],[-44,81],[-22,32],[-26,9],[-19,-1],[-19,-6],[-26,-41],[-10,-30],[-7,-34],[-2,-24],[3,-24],[25,-53],[31,-40],[13,-8],[30,3],[14,-4],[49,-80],[55,-74],[12,-25],[-20,-26],[-22,-13],[-26,3],[-25,10],[-44,32],[-18,-27],[-29,-56],[-16,-60],[-13,-28],[-32,-36],[-34,-19],[-17,6],[-14,23],[-7,27],[-4,32],[7,69],[17,62],[7,63],[-14,89],[-9,18],[-36,53],[-17,50],[-4,63],[2,35],[9,77],[9,39],[16,13],[18,8],[28,27],[30,36],[29,41],[29,51],[15,55],[-25,68],[-5,40],[4,38],[26,20],[27,-15],[55,-56],[11,-5],[37,-3],[51,-12],[30,3],[14,8],[22,46],[10,59],[-4,75],[0,75],[14,61],[43,99],[12,57],[4,141],[16,62],[12,64],[6,135],[-17,129],[-18,64],[-20,60],[3,58],[16,53],[0,16],[4,14],[31,11],[14,11],[14,26],[16,15],[12,-15],[10,-26],[43,-65],[68,-116],[80,-176],[50,-86],[53,-78],[59,-79],[63,-69],[39,-32],[29,-52],[18,-8]],[[86437,71199],[37,-17],[16,-1],[14,7],[23,23],[23,17],[17,-9],[14,-20],[8,-28],[-4,-30],[-26,-63],[-22,-68],[50,-13],[50,1],[-12,-42],[-1,-36],[15,-18],[13,-23],[-4,-21],[-7,-21],[27,-32],[-2,-21],[-7,-22],[-68,-145],[-20,-73],[-13,-81],[-13,-59],[-9,-61],[-8,-66],[-12,-68],[4,-61],[-4,-62],[-34,-153],[-25,3],[-30,18],[-19,-3],[-10,-34],[17,-70],[-54,-83],[-60,-56],[-1,26],[6,20],[9,16],[6,19],[9,66],[-5,65],[-18,83],[-1,29],[12,12],[9,4],[4,11],[1,27],[-6,21],[-17,6],[-17,1],[-11,-31],[-16,-59],[-8,-59],[3,-33],[7,-29],[22,-49],[-6,-29],[-9,-22],[-77,50],[-17,4],[-14,11],[-15,67],[32,16],[9,8],[3,22],[5,65],[-15,55],[-12,19],[-11,23],[7,46],[-4,58],[-1,81],[6,14],[29,16],[21,44],[19,49],[27,87],[22,94],[-21,5],[-18,17],[19,45],[-6,56],[-29,69],[-17,81],[-26,36],[-14,13],[-17,-19],[-14,-23],[13,-53],[-1,-46],[2,-47],[13,-2],[16,11],[13,-8],[7,-24],[2,-32],[-5,-31],[-12,-15],[-15,1],[-14,17],[-12,24],[-27,13],[-28,-28],[-28,-58],[-23,-29],[11,42],[5,47],[-11,32],[-27,54],[-6,31],[-2,38],[5,37],[28,-43],[14,-53],[20,-23],[25,-1],[-19,79],[-7,20],[-28,35],[-37,59],[-23,29],[8,62],[14,12],[12,-3],[39,-22],[4,31],[-6,16],[-3,20],[26,26],[42,22],[9,11],[8,22],[10,11],[30,0],[25,21],[20,58],[5,31],[8,27],[51,46],[13,7],[34,-6],[32,-26],[16,-55],[13,-60],[33,-40]],[[87321,71576],[38,-24],[39,6],[0,-105],[5,-35],[11,-32],[-5,-46],[18,-16],[-53,-52],[-48,-70],[-20,-47],[-17,-50],[-11,-53],[-6,-58],[-16,23],[-46,93],[-29,26],[-47,13],[-15,-3],[-96,-87],[-13,-63],[-26,-96],[-12,-32],[-14,-9],[-10,-16],[-11,-82],[-30,-51],[-18,-1],[-31,14],[-14,-8],[19,81],[-30,9],[-30,-1],[0,52],[-18,30],[13,39],[0,31],[8,18],[3,25],[-1,22],[-18,6],[-12,16],[2,57],[-10,2],[-26,-10],[-54,-44],[-15,0],[23,31],[48,43],[21,25],[48,69],[29,33],[16,58],[5,36],[10,31],[9,49],[15,17],[27,43],[15,-4],[17,-53],[23,-40],[16,3],[30,21],[14,5],[34,-3],[30,26],[13,30],[4,37],[-11,63],[15,-6],[14,3],[33,40],[34,23],[35,6],[40,-22],[39,-36]],[[89229,75675],[11,-11],[52,29],[-10,-88],[-5,-89],[4,-148],[4,-67],[9,-65],[22,-46],[29,-33],[42,-105],[23,-129],[16,-63],[11,-66],[4,-30],[0,-30],[-3,-41],[4,-33],[-5,-105],[-19,-121],[-2,-62],[-16,-12],[-10,-29],[-9,-13],[-9,-10],[-14,-3],[-9,-11],[-4,-33],[-6,-31],[-12,-28],[-9,-31],[-8,-75],[-3,-77],[-11,-54],[-28,-14],[-32,1],[-40,-25],[-9,-15],[-32,-94],[-9,-56],[0,-59],[9,-73],[12,-72],[9,-133],[-10,-203],[-9,-65],[-20,-44],[-16,-20],[-13,-25],[-17,-66],[-29,-132],[-2,-34],[0,-34],[-8,-45],[-5,-44],[5,-51],[9,-48],[38,-123],[15,-36],[17,-34],[-65,-36],[-12,-17],[-39,-70],[-12,-67],[1,-73],[-7,-27],[-10,-23],[-12,-15],[-43,-34],[-28,-33],[-27,-52],[-11,-28],[-21,9],[-13,24],[12,31],[-3,35],[6,93],[-7,37],[22,28],[10,45],[24,35],[16,32],[3,26],[-15,28],[-15,20],[-22,0],[-21,-6],[-13,-27],[-5,-36],[1,-16],[-2,-15],[-32,-49],[4,-52],[10,-26],[12,-13],[-4,-17],[-15,-42],[-11,-4],[-20,58],[-25,32],[-31,0],[-31,-12],[-25,-39],[-8,-32],[-5,-33],[2,-81],[-10,-68],[-19,-59],[-10,-22],[-23,-40],[-17,-5],[-12,18],[-9,28],[12,101],[-1,57],[28,29],[-23,41],[-28,16],[-39,-21],[-11,-25],[-8,-33],[-21,-41],[-24,-39],[-26,-66],[-18,-79],[-58,26],[-32,6],[-32,-2],[-57,9],[-63,-16],[-71,-30],[4,22],[59,47],[2,14],[-6,26],[-14,1],[-35,-9],[-18,4],[-8,28],[-12,12],[-7,-12],[2,-54],[-9,-7],[-11,14],[4,42],[-8,61],[-1,39],[12,32],[-12,14],[-14,-5],[-17,-16],[-14,-22],[-32,-112],[-12,-64],[23,-52],[63,-72],[10,-17],[1,-31],[-8,-32],[-17,-15],[-69,-24],[-59,-46],[-18,-47],[-54,-183],[-43,-125],[-62,-43],[-67,39],[-16,43],[-14,54],[-25,48],[-22,53],[-13,63],[2,101],[-10,61],[9,16],[37,37],[12,21],[21,48],[8,27],[1,41],[-17,21],[-44,-1],[-43,-13],[-31,18],[-41,49],[-12,11],[-43,3],[-31,-9],[-31,-18],[-32,-6],[-11,-9],[-37,-60],[-29,-38],[-26,-19],[-55,-5],[-28,-12],[-29,-20],[-8,1],[-30,-27],[-35,-24],[-19,-24],[-34,16],[-68,-43],[-33,-5],[-34,23],[-31,38],[-30,-16],[-21,-56],[-10,-113],[-12,-50],[-4,-61],[-15,10],[-91,109],[-6,4],[-74,-19],[-19,-9],[-23,-22],[-25,-10],[-23,16],[-22,26],[-21,-8],[-22,-18],[-8,165],[4,21],[14,29],[14,25],[36,9],[36,-9],[25,12],[22,32],[23,47],[26,37],[35,30],[34,34],[30,48],[28,52],[26,39],[28,32],[43,77],[57,87],[22,64],[13,18],[49,35],[65,28],[31,-2],[30,-56],[17,8],[16,14],[34,8],[34,-9],[34,0],[33,7],[65,19],[34,22],[33,29],[118,20],[82,48],[12,-3],[13,-11],[1,-36],[-10,-39],[10,-24],[16,-14],[76,-5],[22,-8],[32,26],[30,33],[31,44],[22,49],[-20,61],[-4,67],[17,73],[24,62],[30,37],[27,42],[54,121],[40,98],[14,121],[-8,142],[34,106],[33,18],[66,49],[34,14],[5,-21],[-1,-28],[-51,-89],[-30,-36],[-17,-12],[-16,-16],[-7,-31],[26,-53],[7,-38],[-2,-37],[1,-34],[30,-36],[34,-12],[14,0],[13,10],[39,89],[8,15],[111,65],[55,50],[30,13],[28,26],[64,100],[23,46],[21,51],[18,59],[13,64],[18,40],[101,95],[32,52],[11,25],[12,73],[9,75],[12,59],[16,56],[22,57],[25,52],[15,54],[21,128],[10,72],[7,25],[11,22],[9,27],[7,31],[3,30],[5,93],[-3,72],[-16,61],[-14,17],[-15,1],[-23,-5],[-19,24],[4,22],[20,4],[13,12],[9,21],[18,66],[11,71],[1,31],[-14,58],[-11,69],[0,37],[12,43],[17,34],[16,9],[17,2],[15,13],[14,20],[8,21],[13,59],[4,33],[-7,90],[8,24],[11,15],[16,-11],[15,-2],[19,3],[17,-9],[4,-23],[11,-151],[6,-21],[13,-16],[14,3],[13,23],[8,32],[17,6],[51,-34],[18,24],[11,37],[11,66],[-5,60],[-13,21],[-12,-4],[-11,-16],[-13,-9],[-75,-31],[1,66],[16,99],[9,31],[12,15],[32,-17],[15,-11],[34,-48]],[[84525,65965],[-16,-91],[-14,-13],[-14,7],[-14,51],[10,19],[14,-10],[11,4],[25,74],[7,-12],[-9,-29]],[[84413,65829],[-18,-8],[-21,10],[-19,2],[0,18],[20,17],[0,25],[5,13],[46,-30],[-2,-22],[-11,-25]],[[84845,66096],[-24,-15],[-25,8],[4,81],[9,-11],[5,-28],[19,-16],[12,-19]],[[85627,67196],[-27,-27],[-10,-31],[-25,-11],[-24,-44],[-23,-9],[0,-35],[10,-30],[-15,-6],[-17,-36],[-1,-27],[6,-22],[-1,-11],[-20,-31],[-22,-2],[-1,35],[2,25],[20,63],[0,73],[19,8],[7,10],[29,52],[6,22],[-16,21],[1,25],[4,11],[24,-8],[10,-19],[5,-2],[14,14],[6,25],[27,50],[11,49],[21,-41],[-6,-52],[-14,-39]],[[85832,67811],[-12,-11],[-15,15],[-5,66],[7,32],[12,7],[11,-57],[7,-24],[-5,-28]],[[85958,68092],[-24,-47],[-25,42],[-31,29],[15,7],[8,11],[1,18],[20,27],[40,20],[12,2],[14,19],[5,17],[6,9],[25,24],[7,-28],[-1,-21],[-19,-12],[-19,-29],[-17,-36],[-16,-15],[-5,-11],[4,-26]],[[85922,68032],[2,-13],[-27,11],[-11,53],[18,-10],[6,-18],[12,-23]],[[88844,70884],[-5,-6],[-13,19],[-2,17],[2,10],[9,2],[18,-20],[-9,-22]],[[28538,62475],[34,-21],[35,-11],[15,0],[14,-7],[32,-49],[26,-28],[97,-60],[33,-105],[6,-33],[-25,-19],[-32,-7],[-30,-1],[-28,20],[-12,16],[-29,7],[7,14],[-13,7],[-16,-2],[-12,-40],[-14,-32],[-25,3],[-10,27],[-13,-12],[-11,-20],[-13,-75],[-21,37],[-23,31],[-28,13],[-57,2],[-28,11],[-22,63],[-9,18],[-23,17],[-22,72],[-8,10],[-62,16],[-12,40],[4,36],[20,44],[10,12],[34,-1],[32,13],[14,19],[15,12],[117,-32],[27,0],[26,-5]],[[52903,78839],[7,-6],[28,-1],[31,-4],[19,-31],[19,-10],[28,-3],[18,4],[9,11],[11,36],[19,45],[31,22],[52,5],[27,8],[27,-1],[20,-7],[21,1],[54,31],[56,25],[8,-4],[1,-9],[-10,-18],[-10,-25],[7,-29],[31,-57],[17,-44],[17,-33],[25,-17],[33,-11],[28,-4],[30,-12],[100,-31],[51,-8],[39,-2],[58,-20]],[[53811,78103],[17,23],[-43,82],[-19,0],[-26,-35],[-72,36],[-14,-15],[-10,-28],[-25,-35],[-35,-15],[-40,-38],[-41,-27],[-32,-21],[-18,4],[29,44],[-13,1],[-38,-31],[-22,-27],[-7,-44],[-7,-74],[17,-19],[30,-97],[36,-41],[-7,-40],[-9,-31],[-22,-27],[-19,20],[-11,0],[-8,-64],[16,-168],[25,-119],[25,-51],[57,-81],[60,-42],[108,-136],[59,-42],[15,-24],[36,-104],[31,-121],[33,-189],[24,-94],[48,-105],[100,-151],[90,-111],[84,-68],[66,-12],[155,15],[27,-6],[29,-19],[6,-47],[-10,-32],[-33,-33],[-33,-46],[-4,-63],[31,-44],[150,-117],[153,-98],[48,-50],[55,-78],[134,-107],[22,-52],[82,-111],[36,-87],[7,-67],[-17,-67],[-8,-48],[-14,-48],[-35,18],[-39,49],[-59,197],[-108,20],[-22,15],[-39,34],[-2,22],[-10,28],[-9,10],[-42,6],[-28,-32],[-34,-76],[-38,-109],[-39,-160],[-2,-64],[21,-63],[63,-35],[48,-56],[32,-58],[3,-140],[14,-80],[-21,-45],[-41,11],[-54,-29],[-39,-51],[-16,-49],[4,-128],[-8,-48],[-73,-92],[-38,-94],[-10,-39],[-14,-45],[-93,-1],[-21,55],[-1,81],[16,50],[34,24],[22,104],[-7,75],[14,33],[12,23],[26,14],[37,13],[3,105],[-28,48],[-10,66],[-14,124],[-47,157],[-25,140],[-19,69],[-30,37],[-54,-1],[-27,10],[-96,98],[-6,15],[0,25],[16,40],[-10,52],[-12,50],[-18,43],[-21,22],[-43,-14],[-15,-10],[-27,4],[-21,-19],[-12,-1],[33,75],[-9,17],[-33,31],[-45,5],[-12,4],[-8,-20],[-8,11],[1,33],[-53,150],[-35,61],[-17,11],[-32,-13],[-54,27],[-32,6],[-17,-7],[-27,-19],[-13,12],[-5,20],[-48,63],[-61,35],[-118,197],[-36,74],[-75,81],[-47,119],[-39,43],[-56,35],[-13,-4],[-17,-13],[-13,-2],[-10,15],[10,16],[12,7],[-4,45],[-64,118],[-38,37],[-10,24],[-8,32],[-8,20],[-18,13],[-15,-3],[-21,8],[1,57],[4,43],[-3,37],[-20,96],[-36,82],[-20,195],[-17,55],[-39,42],[-88,46],[-122,126],[-26,2],[-74,49],[-46,8],[-59,-43],[-72,-121],[-59,-125],[-21,-25],[-75,-43],[-67,-20]],[[52081,77054],[-1,32],[-2,24],[11,27],[19,31],[17,40],[7,28],[-3,19],[-8,28],[-11,2],[-63,-23],[-15,6],[-47,36],[-50,46],[-19,32],[-7,32],[5,21],[-4,20],[-10,27],[9,31],[16,39],[8,26],[13,7],[6,16],[-10,64],[-6,10],[-9,8],[-14,1],[-24,13],[-18,22],[-4,30],[-9,28],[-16,27],[-1,28],[17,15],[25,1],[17,-6],[39,46],[14,4],[13,10],[10,63],[9,19],[2,11],[-8,13],[-31,45],[-15,46],[-22,51],[-21,23],[-4,18],[-1,23],[5,19],[37,31],[23,34]],[[52887,76530],[9,-22],[1,-13],[-6,-15],[3,-33],[-24,28],[-35,-14],[-21,3],[-6,24],[5,15],[33,3],[11,7],[20,-3],[10,20]],[[53871,75291],[-12,-5],[-7,6],[-4,9],[5,22],[25,-13],[-1,-12],[-6,-7]],[[53347,73016],[-13,-6],[-18,19],[-1,28],[3,9],[22,-13],[6,-26],[1,-11]],[[54326,73859],[-19,-66],[-9,-25],[-67,-160],[-7,-37],[-5,-40],[-7,-35],[-9,-34],[-9,-42],[1,-48],[4,-23],[8,-16],[13,-14],[10,-22],[-16,-21],[18,-40],[14,-24],[2,-24],[0,-24],[-30,-46],[-12,-24],[-8,-31],[-3,-31],[3,-28],[-1,-28],[-30,4],[-32,17],[-31,-8],[-45,33],[-16,5],[-15,13],[-38,100],[-30,43],[-32,33],[-33,2],[-33,-4],[-29,20],[-59,68],[-63,55],[-27,35],[-12,24],[-14,16],[-36,16],[-33,37],[-14,2],[-32,-4],[-16,2],[-16,13],[-32,44],[-20,60],[-5,26],[14,69],[17,65],[15,19],[17,13],[11,20],[9,23],[32,-68],[15,-17],[14,4],[26,24],[2,27],[29,35],[36,0],[17,-6],[9,-31],[14,-9],[16,-5],[53,-59],[15,-9],[15,-2],[41,25],[31,9],[66,-13],[36,15],[25,1],[36,23],[28,38],[15,9],[15,3],[38,-2],[38,-9],[16,9],[13,25],[16,11],[17,-8],[44,43],[19,2],[18,-16],[-16,-27]],[[52675,75392],[14,-37],[31,-151],[3,-32],[-6,-34],[-8,-23],[-31,-76],[5,-63],[11,-39],[2,-43],[-6,-54],[-19,-328],[-9,-58],[-6,-50],[-21,-16],[-28,17],[-34,28],[-16,-2],[-16,-10],[-13,9],[-13,16],[-9,-113],[-16,-46],[-23,-29],[-23,-2],[-23,10],[-19,0],[-15,21],[-12,38],[-18,47],[-19,55],[-2,49],[-3,109],[5,24],[8,23],[4,49],[-3,43],[6,15],[11,-15],[8,5],[-1,22],[3,40],[-15,34],[-24,11],[-2,35],[2,35],[13,23],[4,30],[1,94],[-18,34],[-6,52],[-9,33],[-16,34],[-18,27],[-12,26],[-2,69],[6,58],[6,24],[6,-3],[18,-29],[15,-6],[29,-7],[29,9],[35,26],[34,31],[49,93],[30,18],[16,25],[5,33],[13,8],[15,-32],[19,-3],[29,-26],[12,-26],[11,-30],[10,-13],[11,-8],[2,-7],[-9,-7],[-10,-35],[6,-10],[16,-19]],[[52355,74347],[-16,-57],[-17,40],[-1,35],[3,10],[20,-15],[11,-13]],[[52301,75483],[-9,-26],[-13,2],[5,19],[12,39],[15,13],[6,-11],[-7,-23],[-9,-13]],[[59875,70504],[-19,3],[-23,28],[-4,25],[-7,8],[-16,3],[-31,13],[-35,-43],[-15,-70],[-4,-33],[-12,-70],[5,-42],[2,-55],[3,-45],[-3,-27],[-7,-15],[2,-10],[6,-4],[19,12],[21,-12],[20,-23],[1,-15],[-14,-9],[-33,-35],[-23,-41],[-6,-38],[-16,-81],[2,-16],[8,-10],[54,9],[48,32],[37,35],[12,-2]],[[59714,68867],[-19,-44]],[[59695,68823],[-10,50],[-21,142],[-16,98],[-21,121],[-36,147],[-3,35],[-8,51],[-25,134],[-20,96],[-23,123]],[[59512,69820],[29,48],[0,41],[49,94],[-1,9],[-13,25]],[[59576,70037],[2,4],[54,175],[35,173],[33,241],[23,122],[20,81],[9,67]],[[59512,69820],[-9,48],[-4,18]],[[59499,69886],[52,92],[25,59]],[[47236,82899],[-1,-17],[-21,21],[-10,22],[-56,11],[23,22],[12,-6],[40,-1],[11,-10],[2,-42]],[[48272,83000],[12,-21],[5,-21],[-20,-7],[-22,4],[-10,-14],[-1,-26],[8,-34],[14,-24],[11,-55],[10,-60],[14,-37],[3,-45],[-2,-22],[3,-40],[-6,-14],[4,-38],[18,-78],[7,-43],[5,-94],[-12,-36],[-16,-33],[-11,-40],[-8,-43],[-5,-70],[-36,-81],[-15,-20],[-18,-13],[39,-56],[-32,-26],[-34,-8],[-38,14],[-23,-1],[-22,-19],[-8,-11],[-7,6],[-14,46],[-11,-48],[-22,-15],[-37,3],[-62,-13],[-24,-14],[-10,-21],[-8,-25],[-10,-14],[-11,-8],[-48,-18],[-9,-8],[-23,-40],[-29,-23],[-24,-7],[-21,23],[-9,14],[-10,8],[-33,-2],[10,-7],[7,-16],[3,-32],[-4,-31],[-16,-15],[-19,-3],[-31,-32],[-41,-9],[-22,-30],[-134,-50],[-7,0],[-19,13],[-20,5],[-20,-4],[-56,-28],[-28,6],[35,69],[47,35],[5,10],[-16,4],[-88,-24],[-31,-21],[-31,-6],[14,32],[40,43],[21,21],[14,8],[14,25],[42,29],[-135,-59],[-35,7],[-8,16],[-28,-7],[-10,40],[40,61],[24,26],[29,14],[27,20],[10,25],[-13,8],[-82,-6],[-39,5],[2,20],[8,22],[40,37],[22,6],[20,-4],[19,-9],[15,-13],[46,8],[-19,23],[-3,49],[-15,16],[19,22],[21,14],[36,47],[13,7],[71,11],[76,24],[76,34],[-39,19],[-19,25],[-30,-51],[-21,-19],[-61,-10],[-19,6],[-27,15],[-9,-6],[-8,-12],[-40,-24],[-42,-6],[49,45],[62,76],[14,25],[20,42],[-6,18],[-13,11],[45,87],[16,15],[29,3],[22,14],[9,0],[8,5],[19,26],[-29,16],[-29,9],[-92,-9],[-12,2],[-12,8],[-7,11],[-6,30],[-6,6],[-21,0],[-20,-9],[-15,1],[-14,13],[23,30],[-29,7],[-29,-6],[-25,9],[0,19],[11,19],[-15,18],[-3,23],[16,11],[16,-4],[35,17],[43,8],[-37,16],[-15,14],[-1,22],[3,18],[44,32],[46,13],[-4,21],[4,22],[-47,7],[-46,-16],[5,43],[11,38],[2,25],[-2,27],[-22,-11],[-3,38],[-9,26],[-32,-18],[1,35],[9,24],[17,11],[17,-5],[30,0],[30,19],[43,4],[69,-5],[47,-52],[12,9],[19,33],[9,3],[71,-14],[44,-18],[12,6],[-7,35],[-15,25],[19,33],[23,22],[16,11],[36,14],[15,13],[11,42],[16,35],[-90,-18],[-85,41],[14,29],[18,17],[31,13],[3,15],[15,13],[26,33],[-9,43],[5,32],[19,21],[6,30],[8,22],[38,8],[37,20],[13,-2],[43,5],[15,-8],[-4,36],[27,4],[10,-7],[5,-25],[12,-17],[3,-28],[-8,-22],[-13,-17],[12,-17],[-19,-31],[21,13],[29,31],[-1,25],[-5,31],[-9,28],[4,31],[17,20],[43,10],[-18,35],[16,3],[18,-7],[25,-28],[26,-21],[28,-17],[-27,-35],[-32,-23],[-13,-26]],[[62434,73238],[0,-4],[9,-41],[23,-153],[13,-19],[15,-16],[11,-23],[4,-23],[-1,-35],[0,-41],[6,-31],[9,-24],[8,-12],[12,-1],[14,-6],[9,-24],[31,-174],[3,-22],[13,-7],[21,3],[21,-18],[24,-28],[21,-53],[15,-9],[46,8],[63,-8],[29,-28],[-3,-16],[-23,-19],[-39,-22],[-12,-38],[-7,-48],[1,-27],[10,-30],[28,-60],[2,-21],[5,-30],[5,-21],[-6,-40],[-25,-27],[-34,-30],[-67,-132],[-5,-29],[0,-78],[-7,-23],[-21,1],[-17,4],[0,-28],[-11,-36],[-6,-32],[25,-75],[4,-40],[-4,-36],[-23,-63],[-13,-42],[3,-9],[18,-17],[56,-138],[17,-48],[24,13],[9,-1],[7,-8],[4,-16],[0,-21],[-6,-31],[30,-12],[11,-32],[35,-107],[-2,-32],[-16,-50],[0,-34],[3,-30],[5,-11],[52,-4],[22,-12],[53,-55],[61,-84],[50,-69],[43,-58],[45,4],[13,-11],[11,-18],[13,-48],[26,-109],[22,-37],[34,-87],[32,-82],[-21,-111],[-20,-116],[0,-149],[0,-80],[43,-3],[49,-4],[0,-96],[0,-96],[1,-110],[14,-5],[23,-23],[9,-36],[13,-19],[14,-3],[15,-18],[14,-32],[5,-24],[-4,-16],[3,-29],[10,-42],[13,-19],[18,-24]],[[63484,69102],[-25,-14],[-28,11],[-59,48],[-19,2],[-25,-19],[-1,-16]],[[65607,67350],[-26,-69],[-39,-58],[-17,18],[-12,0],[-28,-23],[-20,-3],[-37,-40],[-33,-20],[-23,2],[-8,4],[-5,27],[0,10],[15,-5],[51,36],[64,58],[6,26],[-10,43],[3,9],[41,-21],[46,42],[39,11],[19,-29],[-26,-18]],[[67017,72361],[5,-38],[-1,-23],[-9,-23],[-6,-29],[-7,-36],[-3,-28],[-13,-14],[-11,-9],[1,-36],[6,-31],[6,-36],[-7,-25],[-5,-28],[-10,-46],[3,-38],[-11,-33],[-14,-28],[-9,-23],[-2,-33],[-10,-11],[-19,-27],[-12,-19],[-18,-5],[-3,-16],[2,-15],[8,-9],[11,-33],[24,-57],[-68,-7],[-21,-51],[-23,-72],[11,-145],[-11,-75],[7,-42],[17,-29],[23,-16],[42,-1],[28,-12],[3,-19],[-16,-28],[-26,-54],[-14,-23],[-43,-107],[0,-45],[4,-37],[19,-116],[18,-112],[33,-202],[0,-46],[-11,-105],[0,-63],[4,-82],[-3,-43],[8,-95],[9,-7],[72,-18],[65,-17],[87,-23],[27,-56],[16,-122],[-1,-92],[-7,-47],[-63,-134],[-63,-136],[-63,-135],[-73,-156]],[[67107,66360],[-15,-4],[-12,-24],[-22,-30],[-47,23],[-37,24],[-124,57],[-13,28],[-8,48],[-21,13],[-31,-72],[-104,42],[-36,-13],[-21,22],[-57,2],[-44,45],[-64,-31],[-50,-6],[-69,79],[-74,22],[-60,-7],[-31,6],[-50,29],[-24,29],[-39,-22],[-18,41],[-110,38],[-21,74],[-15,68],[-1,70],[-27,123],[-9,177],[-10,70],[-15,60],[-20,51],[-27,55],[-24,22],[-103,42],[-20,-6],[-46,-27],[-49,-61],[-81,-34],[-17,-26],[-20,-59],[-26,-35],[-36,9],[-39,-35],[-72,-97],[-38,-29],[-32,2],[-34,46],[-76,62],[-49,20],[-69,-14],[-32,11],[-56,72],[-14,53],[-32,35],[-99,79],[-81,105],[-15,39],[-10,59],[-35,71],[-79,58],[-45,61],[-52,14],[-49,-2],[-21,11],[-20,27],[-67,127],[0,51],[-41,124],[-10,45],[-9,123],[-11,32],[-43,51],[-7,33],[10,44],[0,34],[-23,31],[-33,17],[-8,38],[6,73],[-5,47],[-30,73],[-43,76],[-44,111],[-17,28],[-11,73],[-16,87],[-24,6],[-119,-104],[-35,59],[-104,102],[-8,15],[-7,23],[13,14],[13,5],[26,-18],[16,21],[-6,35],[-26,21],[-36,-2],[10,-32],[-34,-30],[-7,-41],[5,-49],[3,-70],[-14,-33],[-10,-16],[-45,-4],[-21,-31],[-14,-7]],[[62449,74683],[5,-13],[45,-118],[20,-35],[12,-29],[8,-33],[13,-23],[18,-12],[23,-32],[15,-25],[25,-51],[26,-20],[96,-37],[54,-17]],[[62809,74238],[15,-5],[41,25],[48,-4]],[[62913,74254],[18,-1],[64,105],[19,36],[38,18],[21,42],[34,50],[42,48],[38,43],[30,26],[53,61],[33,21],[29,-1],[43,-71],[36,-65],[11,-28],[-18,-25],[-34,-25],[-6,-18],[-2,-23],[1,-22],[5,-18],[41,-42],[5,-23],[0,-23],[-5,-15],[-9,-8],[-29,-12],[-24,-13],[-9,-14],[-7,-16],[1,-17],[7,-20],[51,-55],[5,-20],[10,-27],[13,-17],[21,-4],[10,-11],[48,-101],[12,-7],[57,22],[8,-1]],[[63574,73983],[1,-25],[8,-143],[7,-74],[9,-72],[16,-66],[18,-62],[25,-39],[56,-47],[27,-13],[71,-9],[71,-21],[41,-22],[13,-15],[11,-23],[34,-110],[54,-78],[110,-117],[53,-39],[179,-74],[119,4],[328,142],[110,36],[41,0],[-25,-28],[-41,-17],[25,-20],[38,-3],[18,3],[13,18],[2,30],[-2,30],[-18,132],[-10,93]],[[77077,52687],[61,-162],[24,-22],[33,-74],[8,-25],[-9,-52],[-7,-147],[-15,-37],[-38,18],[-1,26],[-22,111],[-39,62],[-16,3],[-10,63],[-20,76],[-60,137],[46,-1],[22,33],[5,27],[4,7],[34,-43]],[[77545,50818],[-26,-3],[-55,69],[-13,31],[-3,42],[-52,159],[-7,37],[20,131],[54,31],[18,-22],[6,-59],[30,-106],[10,-57],[8,-26],[3,-19],[-2,-14],[22,-68],[15,-39],[2,-64],[-30,-23]],[[82399,46881],[-35,-120],[13,-19],[7,-18],[-58,-25],[-24,13],[-14,-3],[-59,22],[-42,28],[-5,21],[3,26],[13,-8],[32,-4],[13,11],[0,77],[-5,100],[44,82],[24,33],[27,20],[68,-46],[11,-12],[9,-18],[4,-30],[-26,-130]],[[82068,47145],[28,-31],[40,-89],[3,-25],[-12,-24],[-28,-38],[-63,-58],[-10,-28],[-14,-54],[-3,-23],[-4,-13],[-7,-9],[-14,-8],[-15,12],[13,34],[1,42],[-10,39],[-14,32],[-29,44],[-30,40],[-31,19],[-33,9],[-12,19],[-19,49],[-6,27],[-3,28],[2,27],[8,1],[32,-6],[59,-32],[30,-2],[16,7],[43,62],[11,-1],[41,-27],[30,-23]],[[79456,50881],[10,-40],[13,-35],[10,-39],[13,-185],[43,-159],[126,-63],[-21,-25],[-10,-23],[-8,-27],[-18,-110],[1,-24],[11,-37],[3,-41],[-16,0],[-17,10],[-15,15],[-13,20],[-14,16],[-15,10],[-26,32],[-34,22],[-36,17],[-17,47],[-8,58],[9,86],[-9,24],[-13,21],[-15,62],[-6,73],[-22,28],[-30,17],[-13,14],[-58,-26],[-14,6],[-12,20],[-32,21],[1,40],[15,32],[35,33],[16,27],[3,36],[-6,26],[3,28],[11,27],[13,21],[34,27],[16,-48],[7,-40],[10,-30],[14,42],[-9,72],[27,16],[26,1],[19,-20],[13,-31],[5,-44]],[[84216,49221],[6,-124],[-2,-32],[-15,47],[-6,10],[-4,-10],[-6,-5],[-8,0],[-10,-48],[-1,-45],[-8,-30],[-4,-101],[3,-28],[12,14],[7,3],[27,-39],[15,-28],[-4,-34],[-19,-35],[-21,-15],[-16,15],[-5,-7],[-9,-18],[-8,-24],[3,-24],[-19,-68],[-10,-19],[-22,21],[-14,-18],[-11,1],[-16,69],[0,32],[15,36],[1,26],[7,29],[17,40],[10,29],[0,19],[8,72],[2,30],[5,32],[8,66],[1,122],[26,101],[25,28],[11,5],[-2,-27],[31,-68]],[[84067,48807],[-7,-38],[-15,-30],[-13,-2],[-12,6],[-23,26],[-6,-27],[-18,1],[-6,35],[12,105],[19,39],[-2,41],[-15,88],[10,46],[43,34],[37,42],[12,9],[11,-32],[5,-149],[-40,-118],[8,-76]],[[80087,53968],[-38,-21],[-22,30],[24,36],[8,3],[6,7],[2,15],[-43,24],[-12,21],[-12,54],[0,34],[55,91],[13,10],[2,-38],[38,-95],[2,-64],[-1,-23],[-22,-84]],[[80057,50116],[-5,-61],[-6,-23],[-24,-30],[-7,-18],[-22,3],[-3,32],[-7,21],[-23,25],[-6,-6],[-4,-37],[-45,-26],[-13,-2],[6,49],[-11,38],[-1,47],[-2,21],[-6,12],[11,32],[-1,37],[12,39],[7,95],[47,21],[10,-17],[56,-21],[39,-58],[21,-77],[-23,-96]],[[87606,51467],[59,-22],[21,1],[21,-25],[26,12],[14,-8],[49,-88],[24,-58],[35,-50],[26,-17],[-19,-45],[-39,-24],[-15,-1],[-30,27],[-25,-5],[-21,34],[-4,52],[-21,119],[-29,-34],[-33,54],[-9,1],[-3,-9],[-14,19],[-12,37],[-1,30]],[[87631,50926],[110,-29],[29,4],[63,-12],[52,-38],[91,-7],[28,-12],[21,-26],[-51,-22],[-24,-20],[-45,-10],[-38,10],[-27,-12],[-10,20],[-39,20],[-51,41],[-105,49],[-5,30],[1,14]],[[86336,51840],[48,-24],[11,4],[70,-64],[11,-31],[-4,-21],[10,-29],[-22,-43],[-11,-5],[-12,16],[-22,10],[-25,-18],[-17,13],[-14,40],[-24,24],[-35,84],[-17,-3],[5,-33],[14,-21],[20,-64],[11,-6],[11,2],[16,-27],[-1,-41],[-40,-16],[-14,30],[-3,55],[-23,-19],[-9,-19],[-7,-2],[-15,57],[-43,3],[-29,30],[14,32],[2,30],[19,17],[19,-15],[19,22],[14,-6],[10,14],[38,9],[25,15]],[[85681,53025],[-44,-10],[-10,27],[-12,124],[31,99],[40,58],[27,15],[9,1],[24,-71],[-18,-144],[-21,-73],[-26,-26]],[[85597,50886],[-17,-23],[-8,-7],[-41,16],[-48,-3],[-50,-22],[-29,18],[-18,30],[1,32],[17,78],[37,60],[16,10],[26,-16],[45,-45],[36,-54],[32,-41],[1,-33]],[[85014,50431],[-4,-11],[-17,31],[-11,88],[-10,24],[-11,83],[3,24],[14,35],[11,0],[8,-21],[-5,-90],[25,-114],[-3,-49]],[[85006,50812],[85,-19],[-12,-21],[-92,-33],[-33,6],[-100,-20],[-12,1],[-2,32],[-11,23],[16,20],[21,4],[55,-7],[85,14]],[[84713,50860],[26,-20],[9,0],[9,24],[5,4],[12,-12],[2,-39],[17,6],[13,-14],[4,-9],[-1,-39],[-50,-6],[-36,-32],[-48,28],[-54,-48],[-33,-16],[-28,1],[-25,84],[14,99],[11,16],[18,8],[50,5],[85,-40]],[[86478,47235],[-4,-7],[-35,8],[-19,0],[2,43],[-10,33],[14,48],[0,56],[15,7],[2,32],[17,84],[10,19],[15,7],[17,49],[10,15],[10,37],[15,17],[-2,32],[9,17],[23,13],[16,-15],[10,-33],[-26,-40],[13,-99],[-19,-108],[-12,-33],[-23,-27],[-6,-27],[-27,-53],[-8,-46],[-2,-19],[-5,-10]],[[85222,47426],[3,-28],[0,-13],[-33,-9],[-32,-31],[-17,-36],[-13,-46],[-44,19],[-39,3],[-18,16],[-19,-1],[-24,-14],[-35,-40],[-8,-3],[3,60],[10,37],[36,88],[31,-19],[36,-6],[40,18],[29,39],[40,21],[33,-52],[21,-3]],[[84603,47153],[7,-35],[22,20],[21,4],[47,-3],[35,-8],[21,-15],[2,-70],[-10,-15],[-181,-53],[-18,17],[-7,17],[20,52],[-9,25],[10,40],[22,27],[18,-3]],[[86389,51085],[-10,-16],[-34,15],[-17,35],[-12,48],[-8,39],[-2,32],[-10,38],[1,14],[62,40],[12,-15],[26,-1],[12,-29],[-8,-127],[-12,-73]],[[76803,54855],[34,-5],[63,31],[35,-3],[32,-23],[30,-13],[72,17],[14,-5],[13,-13],[11,-20],[33,-75],[56,-92],[16,-59],[9,-67],[6,-15],[63,-127],[7,-54],[-9,-73],[19,-59],[61,-55],[36,-40],[8,-24],[5,-29],[21,-44],[25,-28],[78,-74],[103,-156],[59,-74],[48,-112],[18,-54],[14,-58],[29,-84],[50,-105],[13,-31],[13,-46],[16,-43],[19,-39],[22,-30],[22,-10],[37,-75],[20,-24],[-3,59],[-17,51],[0,32],[3,27],[14,24],[16,6],[31,-21],[49,-89],[21,-52],[16,-72],[13,-75],[20,-37],[27,-13],[31,-5],[28,-23],[65,-104],[22,-48],[16,-57],[12,-68],[7,-71],[4,-16],[42,-85],[22,-36],[27,-18],[78,-19],[28,-30],[23,-49],[10,-50],[-17,-44],[-61,-68],[-66,-47],[64,16],[32,20],[30,31],[30,39],[46,55],[17,11],[21,-4],[18,-16],[28,-53],[26,-57],[20,-66],[12,-73],[-22,-39],[-33,-28],[-45,-71],[-4,-28],[9,-18],[-11,-52],[25,-32],[4,-28],[-22,-39],[2,-24],[26,-103],[13,-24],[40,-52],[60,-53],[34,-25],[38,-19],[17,1],[28,8],[6,-20],[12,-102],[6,-64],[9,-137],[11,-57],[-1,-69],[15,-59],[30,-38],[32,-31],[15,-30],[0,-45],[-5,-36],[-11,-28],[-33,-60],[-6,-25],[-5,-65],[6,-30],[13,-2],[10,16],[40,87],[11,16],[15,12],[15,8],[72,0],[31,-13],[27,-29],[25,-36],[88,-228],[40,-126],[3,-31],[1,-33],[-7,-25],[-37,-86],[-4,-23],[-12,-94],[2,-67],[13,-29],[9,-30],[0,-28],[-25,-139],[-2,-23],[15,-226],[1,-61],[-3,-77],[2,-124],[-19,-384],[-4,-23],[-15,-59],[-20,1],[-16,10],[-12,22],[-6,28],[-9,23],[-48,71],[-13,-12],[-49,-88],[-13,-13],[-16,11],[-25,26],[-81,93],[-5,-30],[-1,-40],[16,-101],[2,-44],[-15,-9],[-8,2],[-33,59],[-31,65],[-35,87],[-26,42],[-23,46],[-66,177],[-17,27],[-101,124],[-20,30],[-26,51],[-28,46],[-61,72],[-106,184],[-46,105],[-51,170],[-17,43],[-86,128],[-47,77],[-20,44],[-45,155],[-14,52],[-16,46],[-28,37],[-24,44],[-49,140],[-15,55],[-11,61],[2,120],[-103,366],[-26,114],[-23,158],[-6,16],[-56,142],[-19,45],[-24,43],[-20,50],[-38,162],[-15,45],[-20,33],[-73,61],[-27,34],[-22,48],[-13,62],[-14,131],[-35,199],[-38,267],[-26,119],[-30,94],[-9,21],[-133,169],[-22,25],[-24,15],[-34,11],[-27,43],[-10,78],[-6,105],[-7,63],[-7,35],[-56,75],[-21,58],[-18,65],[-17,50],[-61,172],[-21,45],[-26,32],[-76,33],[-23,29],[-37,98],[-22,50],[-67,109],[-114,230],[-23,57],[-18,60],[-14,64],[-48,177],[3,36],[8,37],[-1,31],[-6,31],[1,27],[15,16],[32,21],[34,-2],[31,-9],[30,-17],[29,-38],[51,-94],[30,-33],[33,-15],[67,-22]],[[84106,46882],[-40,-20],[-24,-20],[-23,-26],[-15,-5],[-27,-2],[-37,5],[-26,-9],[-71,-66],[-28,-6],[-24,-16],[-8,26],[-10,19],[-24,4],[-24,-1],[-24,-59],[-38,13],[-15,-6],[-14,-12],[-14,-5],[-15,4],[-56,45],[-64,27],[-64,-10],[-55,25],[-30,-19],[-29,-28],[-8,29],[-11,26],[-9,37],[0,44],[3,30],[8,27],[5,29],[3,31],[12,-15],[12,5],[38,34],[37,50],[34,19],[20,5],[16,-10],[17,4],[18,11],[28,-39],[11,-8],[38,-3],[34,-22],[30,-34],[44,-31],[27,-42],[20,-15],[15,-5],[13,6],[18,28],[20,12],[18,0],[32,7],[14,7],[15,15],[15,-9],[13,-15],[54,-74],[17,-2],[30,16],[10,20],[4,31],[9,25],[11,22],[14,17],[40,28],[28,28],[19,48],[-44,20],[9,34],[15,20],[20,-7],[17,-27],[7,-102],[-14,-15],[-8,-15],[-6,-20],[-26,-38],[10,-46],[-7,-20],[-10,-9]],[[83336,46442],[13,-25],[45,-50],[7,-21],[3,-35],[9,-26],[21,-4],[22,5],[16,-16],[15,-26],[21,-50],[19,-56],[23,-31],[14,-46],[-8,-41],[-30,-57],[-16,-12],[-21,-4],[-35,-34],[-12,18],[-39,12],[-30,24],[-26,45],[-15,47],[-19,43],[-33,28],[-58,83],[-37,7],[-15,-6],[-15,0],[-77,37],[-12,22],[-9,28],[-9,27],[-5,31],[10,27],[10,19],[43,32],[31,10],[35,-2],[53,10],[51,-16],[15,12],[25,34],[9,-12],[11,-31]],[[82844,47051],[14,-22],[13,2],[26,34],[16,13],[17,1],[17,-6],[16,-25],[6,-40],[6,-13],[10,49],[13,14],[14,8],[22,-3],[17,-23],[16,-69],[-1,-60],[6,-22],[11,-17],[8,-23],[-7,-24],[-7,-11],[-21,-11],[-9,4],[-9,17],[-10,6],[-23,-6],[-21,-13],[3,-22],[17,-10],[5,-11],[-1,-14],[-7,-3],[-22,19],[-15,-3],[-54,-26],[-14,1],[-9,24],[1,63],[-6,17],[-40,-77],[-12,-19],[-17,-9],[-16,3],[-59,-46],[-18,6],[-18,0],[-62,-50],[-33,-14],[-17,-1],[-17,4],[-15,-4],[-14,-21],[-28,-17],[-28,13],[-25,18],[-23,23],[-5,29],[1,35],[10,48],[-7,84],[5,39],[9,38],[15,14],[18,2],[31,34],[28,45],[16,-4],[37,-31],[22,-4],[37,5],[15,-19],[6,-44],[8,-16],[11,-11],[26,-74],[24,4],[21,-14],[38,45],[28,-1],[8,34],[-17,37],[-20,31],[-11,6],[-12,-2],[-11,5],[-45,67],[-14,37],[-8,43],[5,31],[31,28],[15,7],[55,-19],[9,-16],[14,-68],[11,-29]],[[84691,52416],[-53,-98],[-17,-47],[-14,-51],[-21,-56],[-24,-50],[-12,-15],[-29,-27],[-17,-10],[-32,-4],[-97,-39],[-31,-5],[-32,2],[-60,10],[-12,5],[-24,51],[-27,40],[-24,5],[-24,-4],[-175,-3],[-61,-8],[-61,-18],[-33,8],[-33,21],[-24,7],[-25,-2],[-115,-31],[-29,3],[-58,39],[-34,8],[-33,-10],[-31,-36],[-11,-23],[-32,-81],[-18,-58],[-14,-73],[-11,-75],[-7,-61],[0,-64],[5,-72],[9,-71],[10,-55],[39,-126],[8,-17],[44,-36],[25,-45],[25,-126],[17,-65],[17,0],[19,4],[33,-8],[33,-17],[32,39],[17,73],[18,55],[43,103],[25,48],[15,15],[16,-6],[13,-28],[16,-22],[32,-11],[33,7],[34,34],[12,20],[11,26],[29,22],[69,0],[36,-8],[64,9],[-1,19],[-12,20],[-4,16],[12,11],[41,23],[42,17],[31,-12],[27,-33],[11,-34],[4,-41],[-10,-105],[-5,-25],[-22,-12],[-20,14],[-21,54],[-28,20],[-41,-16],[-14,-16],[-13,-22],[-23,-56],[-19,-64],[-41,-100],[-48,-86],[-23,-33],[-26,-23],[-83,-57],[-22,-42],[-17,-55],[-19,-19],[-22,-6],[-16,10],[-33,31],[-11,-25],[-2,-39],[16,-14],[27,-43],[20,-61],[13,-13],[29,-20],[12,-19],[22,-52],[34,-122],[12,-66],[19,-53],[58,-91],[3,-26],[-3,-30],[4,-27],[21,-52],[5,-34],[-23,-43],[-1,-62],[-14,-83],[-3,-28],[0,-26],[10,-24],[11,-18],[16,-10],[14,-17],[26,-65],[14,-17],[8,-23],[0,-36],[12,-20],[11,-37],[16,-9],[8,10],[6,16],[14,-6],[8,-25],[4,-33],[2,-37],[-1,-69],[-7,-24],[-15,1],[-27,28],[-1,-20],[2,-20],[-14,-7],[-16,3],[-40,-3],[-73,-42],[-26,-26],[-17,-46],[-1,-31],[6,-68],[-9,-23],[-34,-9],[-47,18],[-28,18],[-16,15],[-21,45],[-8,58],[16,172],[4,22],[7,19],[8,31],[2,37],[-22,45],[-34,18],[-29,37],[-111,209],[-6,21],[0,34],[4,33],[37,114],[4,22],[5,91],[-1,74],[-4,75],[-17,46],[-31,15],[-32,2],[-31,-15],[-30,-37],[-57,-79],[-22,-46],[-2,-60],[13,-58],[17,-54],[8,-58],[13,-207],[-1,-23],[-14,-60],[-6,-135],[6,-190],[10,-116],[-4,-63],[-26,-136],[-8,-75],[-1,-31],[31,-142],[7,-56],[4,-58],[-33,28],[-15,-1],[-16,-9],[-34,-9],[-35,-1],[-12,-11],[-25,-38],[-15,-15],[-13,-3],[-44,47],[-27,52],[-24,56],[-4,63],[8,66],[12,70],[24,116],[-1,78],[8,64],[14,62],[5,58],[3,224],[-3,20],[-33,133],[-4,22],[0,36],[3,34],[1,31],[-7,24],[-14,22],[-16,9],[-34,-9],[-68,-36],[-20,31],[-15,49],[-10,68],[-5,71],[2,67],[10,65],[-8,45],[-12,49],[0,25],[7,23],[12,18],[15,11],[14,19],[37,66],[12,58],[1,72],[10,68],[19,63],[22,58],[7,60],[-11,96],[5,43],[-4,51],[0,50],[13,95],[42,194],[40,103],[16,27],[21,-47],[16,-57],[1,51],[-5,50],[-16,117],[-14,228],[4,21],[14,-3],[15,20],[7,36],[-15,84],[0,30],[28,119],[24,43],[10,27],[6,73],[12,27],[16,20],[20,50],[11,63],[7,5],[8,2],[12,-55],[14,-22],[28,-18],[24,21],[7,27],[9,24],[14,25],[12,28],[14,66],[18,59],[12,21],[15,13],[16,8],[16,1],[35,-37],[21,-7],[20,2],[14,-6],[10,-17],[9,-34],[11,-29],[10,-14],[12,-7],[76,12],[67,-33],[91,-8],[32,-19],[30,-26],[36,-44],[14,-10],[15,2],[19,42],[14,10],[15,1],[59,-8],[158,-52],[23,8],[96,99],[38,93],[34,26],[11,43],[7,51],[12,13],[29,15],[11,15],[21,62],[24,56],[11,16],[34,-8],[15,-25],[19,-81],[-3,-14],[-22,-40],[-7,-17],[-25,-115],[-17,-56],[-21,-50]],[[79825,48382],[28,-66],[25,-35],[29,-19],[30,-2],[30,-8],[35,-25],[35,-11],[17,4],[16,13],[11,1],[10,-12],[25,-56],[27,-51],[6,-26],[18,-123],[20,-35],[29,-10],[33,0],[33,-5],[77,-29],[30,4],[27,29],[24,-19],[65,-34],[32,-8],[36,10],[37,2],[17,-10],[17,-15],[14,-6],[15,1],[26,29],[18,52],[14,67],[11,69],[7,30],[10,26],[14,17],[14,11],[38,-7],[8,-16],[42,-118],[8,-10],[45,-8],[12,4],[27,24],[16,2],[28,-29],[13,-25],[13,-18],[70,-19],[28,-50],[13,-7],[49,6],[34,-5],[29,-13],[13,-72],[11,-73],[7,-25],[28,-25],[12,-23],[-3,-73],[3,-70],[61,-60],[65,-35],[69,-4],[70,12],[35,15],[45,26],[9,0],[87,-80],[8,-12],[9,-60],[0,-62],[-16,-149],[-1,-41],[1,-41],[18,-89],[9,-25],[31,-47],[1,-25],[-4,-24],[-35,17],[-21,20],[-12,33],[-17,19],[-33,-7],[-61,34],[-69,52],[-122,110],[-33,-1],[-32,-14],[-33,-28],[-35,-20],[-26,-7],[-26,5],[-65,27],[-66,17],[-168,11],[-47,25],[-79,12],[-63,22],[-62,30],[-158,149],[-51,36],[-159,71],[-24,6],[-58,-5],[-36,21],[-32,0],[-47,-23],[-15,-17],[-18,-35],[-33,2],[-32,7],[-84,33],[-31,21],[-30,30],[-28,40],[-14,14],[-72,41],[-60,14],[-122,18],[-27,12],[-22,15],[-12,33],[1,42],[9,36],[12,36],[8,34],[-89,73],[-71,40],[-30,7],[-31,0],[-34,-8],[-34,4],[-16,11],[-17,5],[-16,-9],[-13,3],[-4,33],[9,28],[17,32],[10,6],[4,-50],[5,-10],[16,-11],[6,3],[27,64],[8,31],[13,85],[14,-16],[14,10],[8,13],[23,196],[19,58],[26,47],[12,12],[26,-29],[51,-11],[30,-20],[31,-2],[29,-10],[42,-34],[15,3],[14,11],[23,38],[9,60],[32,-31],[48,-12],[11,-17]],[[82659,54245],[-3,-5],[-19,-16],[-9,-33],[27,-51],[1,-34],[21,-30],[24,-46],[1,-16],[9,-21],[4,-25],[-17,-26],[-24,-5],[-17,24],[-16,30],[-4,-37],[-13,-21],[-45,6],[-32,0],[-32,-10],[16,-5],[14,-12],[50,-96],[11,-35],[-17,-70],[8,-29],[19,-16],[24,-35],[17,-4],[12,-19],[0,-34],[7,-32],[-19,-12],[19,-8],[17,-16],[-9,-16],[-7,-20],[7,-10],[23,-19],[10,-16],[6,-45],[22,-73],[41,-95],[9,-34],[0,-32],[-6,-27],[-24,-32],[-19,-42],[-2,-15],[-26,-20],[12,-14],[9,-19],[18,-59],[42,-95],[22,-35],[87,-129],[46,-57],[60,-128],[31,-30],[6,-36],[-26,-54],[-38,-28],[-62,-15],[-62,20],[-32,15],[-28,32],[-22,63],[-29,35],[12,-39],[7,-39],[-4,-43],[-11,-33],[-20,-25],[-21,-20],[-9,-14],[-53,-224],[-9,-60],[-16,-252],[0,-71],[24,-133],[2,-69],[5,-30],[-4,-25],[-11,-15],[-46,-41],[-32,-34],[-26,-48],[-21,-59],[-19,-44],[-25,-20],[-18,3],[-14,20],[-10,38],[-6,42],[-4,-31],[1,-30],[8,-33],[4,-34],[-5,-35],[-11,-28],[-29,-30],[-16,-26],[-2,-46],[-8,-26],[-11,-20],[-40,-46],[-9,-18],[-7,-24],[22,4],[19,-4],[2,-45],[6,-34],[-8,-75],[-30,-50],[15,-11],[14,-16],[30,-12],[10,-53],[-4,-64],[-6,-58],[-21,-16],[-14,11],[-14,-1],[-10,-17],[-2,-30],[19,15],[-1,-75],[-5,-72],[-7,-40],[-11,-33],[-18,-10],[-16,24],[-4,-28],[5,-24],[24,-58],[-15,-13],[-10,-20],[-5,-29],[-26,-66],[-11,-49],[-5,-52],[-12,-41],[-194,-180],[-156,-151],[-12,10],[-7,23],[-6,235],[-19,121],[-3,68],[-22,-61],[-14,6],[-15,16],[-11,19],[0,26],[11,75],[-14,-41],[-16,-31],[-16,3],[-14,16],[-5,24],[-7,4],[-35,-67],[-45,-35],[-25,0],[-20,21],[1,50],[-2,50],[-5,29],[-13,10],[-11,-4],[-32,-25],[-12,3],[-7,-13],[-85,180],[-18,-146],[-59,-78],[-44,-45],[-43,17],[-45,29],[-44,-35],[-47,-86],[-13,-13],[-14,1],[-10,11],[3,65],[1,64],[-4,145],[-4,28],[-13,40],[-18,28],[-11,-21],[-9,-28],[-36,1],[-35,23],[-30,-13],[-60,-58],[-32,-8],[-17,12],[-11,31],[6,29],[14,21],[-25,-17],[-21,-29],[-9,-19],[-10,10],[-26,65],[-54,-24],[-8,-8],[-13,-22],[-13,11],[-7,24],[-2,136],[-28,262],[-7,134],[-6,31],[-32,49],[1,69],[16,57],[4,68],[-5,73],[-10,71],[-12,54],[-18,46],[-24,52],[-30,39],[-63,43],[-33,-4],[-13,17],[-8,23],[3,43],[12,30],[15,7],[2,17],[-33,35],[-26,48],[-9,28],[-2,31],[0,73],[8,46],[4,25],[8,76],[18,24],[-3,14],[-8,10],[-11,25],[-9,29],[-20,49],[-36,60],[-6,102],[-5,150],[3,68],[11,128],[21,40],[16,12],[12,17],[-10,2],[-9,-6],[-15,-4],[12,114],[6,33],[25,64],[30,57],[12,67],[17,58],[70,61]],[[85480,52331],[21,-13],[21,4],[10,26],[3,33],[11,62],[24,42],[17,7],[12,18],[-2,46],[1,45],[18,48],[57,68],[31,24],[42,7],[5,-25],[-5,-37],[8,-56],[-4,-150],[-10,-21],[-42,-52],[-47,-42],[-13,-17],[-12,-42],[1,-41],[38,-54],[59,-52],[13,-24],[8,-40],[2,-45],[14,-21],[20,-10],[13,-22],[11,-30],[-100,70],[-26,31],[-32,4],[-31,9],[-32,27],[-34,6],[-16,-19],[-7,-38],[-4,-43],[8,-53],[-1,-32],[-6,-58],[25,-171],[31,-137],[45,-142],[23,-49],[25,-44],[-41,13],[-12,48],[-52,47],[-10,28],[-34,135],[-10,25],[-31,46],[-14,33],[-5,46],[4,48],[-2,66],[1,65],[7,81],[-11,28],[-15,26],[-17,62],[-5,70],[1,40],[7,35],[10,31],[2,30],[-25,44],[-25,124],[-2,65],[32,124],[-1,60],[7,36],[3,38],[17,83],[28,70],[47,99],[18,21],[20,14],[2,-24],[-4,-21],[-34,-101],[-5,-22],[-1,-43],[17,-24],[18,-51],[3,-68],[1,-72],[-4,-73],[-7,-25],[-28,-73],[-65,-85],[-5,-21],[0,-24],[12,-29],[15,-22]],[[86042,50192],[64,-64],[33,-9],[56,8],[21,-6],[53,-82],[15,-56],[4,-48],[9,-46],[13,-11],[15,-5],[20,-66],[4,-21],[-15,-166],[-63,63],[-60,71],[-26,27],[-69,60],[-11,21],[-8,27],[-30,37],[-60,6],[-23,-1],[-9,-6],[2,-20],[0,-40],[-15,-12],[-37,26],[-34,9],[-29,25],[-39,14],[-4,12],[3,19],[-1,18],[-9,6],[-18,-3],[-17,-17],[-14,-21],[-20,-55],[-11,-21],[-34,-9],[-14,5],[-13,14],[-39,101],[-13,22],[-14,18],[-14,8],[-13,-16],[-8,-31],[-3,-37],[-4,-22],[-17,-59],[-13,-36],[-5,6],[7,57],[0,32],[-9,34],[-5,35],[65,165],[24,40],[103,13],[61,-8],[34,4],[22,12],[19,-5],[4,-33],[12,-24],[16,2],[29,25],[26,40],[15,17],[16,3],[16,-3],[16,-9],[43,-34]],[[85238,50064],[46,-45],[10,-29],[9,-35],[9,-20],[10,-15],[18,-31],[5,-46],[-4,-93],[-21,-8],[-19,-14],[-40,-54],[-20,-10],[-21,-4],[-15,-14],[-15,-6],[-39,30],[-38,35],[-54,61],[-10,15],[-9,32],[-25,59],[-6,38],[-2,106],[6,25],[11,13],[36,-25],[24,26],[69,22],[71,-2],[14,-11]],[[84740,46363],[-19,-30],[-10,-58],[-34,-54],[-37,-89],[-29,-46],[-26,-53],[-23,-36],[-28,-13],[-42,-7],[-56,-65],[-32,-28],[-31,-2],[-28,21],[-11,24],[2,31],[10,28],[12,22],[7,29],[-33,37],[-2,27],[12,75],[9,76],[12,52],[46,93],[28,46],[17,19]],[[84567,46549],[36,20],[20,22],[17,32],[51,53],[9,15]],[[87429,48555],[-2,-22],[-1,-41],[5,-38],[-12,-39],[11,-57],[2,-29],[-1,-41],[-3,-18],[-8,-54],[-9,-19],[-6,-5],[-7,-16],[-54,18],[-24,37],[-21,40],[-4,17],[-25,46],[-6,16],[0,25],[20,7],[21,-1],[-1,22],[13,80],[-33,51],[-6,21],[12,15],[26,-18],[32,89],[10,19],[4,50],[18,6],[13,-6],[8,-31],[3,-27],[-3,-24],[15,-13],[13,-60]],[[87370,48132],[-4,-41],[-5,-45],[-25,-51],[-16,-78],[-9,-19],[-34,-35],[-30,43],[-9,37],[13,172],[13,-6],[9,1],[2,12],[-19,19],[-4,98],[1,38],[15,8],[18,-29],[24,-52],[27,-40],[33,-32]],[[88481,47077],[-66,-76],[-87,13],[-31,2],[-51,-19],[-11,15],[10,71],[41,190],[49,168],[20,43],[29,41],[31,33],[69,34],[62,-7],[9,-13],[27,-56],[18,-44],[7,-63],[-27,-107],[-29,-102],[-49,-80],[-21,-43]],[[89159,46590],[-14,19],[-39,64],[-34,74],[-23,68],[-25,62],[-108,184],[-27,61],[-6,16],[3,16],[12,32],[22,92],[-23,-57],[-27,-45],[-40,-3],[-39,-11],[-37,-27],[-37,-10],[-18,14],[-11,34],[-6,35],[-3,36],[-15,-59],[-31,-33],[-41,-69],[-12,14],[-7,27],[-3,27],[8,29],[6,31],[8,73],[19,44],[12,84],[8,30],[4,30],[-11,34],[-18,12],[-13,20],[-15,57],[-9,20],[-16,23],[-13,28],[14,20],[19,8],[15,-1],[27,-13],[13,0],[31,21],[-17,-7],[-18,1],[-57,37],[-35,38],[-33,77],[0,15],[23,14],[51,16],[-16,39],[-23,34],[-8,61],[-15,38],[-34,61],[-23,64],[-19,129],[-20,98],[5,35],[17,25],[-26,3],[-23,19],[12,47],[27,28],[-25,-7],[-23,-14],[-11,-2],[-11,4],[-6,19],[-1,27],[3,48],[-4,46],[-21,22],[-17,33],[-10,13],[-13,-1],[-12,22],[-10,32],[-126,139],[-8,40],[-11,-18],[-12,-8],[-14,23],[-16,15],[-16,-2],[-15,12],[-16,7],[-17,1],[-66,43],[-63,68],[-51,29],[-31,38],[-33,31],[-73,30],[-74,20],[-27,1],[-22,-7],[-22,2],[-122,147],[-21,67],[2,39],[6,33],[50,9],[-36,9],[-14,-4],[-29,-27],[-16,-2],[-22,18],[-21,22],[-35,-20],[-17,34],[-7,35],[-9,17],[-13,-2],[-17,-13],[-18,2],[-11,25],[-8,32],[-12,23],[-15,17],[-24,42],[-12,56],[1,98],[4,36],[24,57],[16,54],[-20,6],[-19,-25],[-8,-25],[-3,-31],[-2,-103],[-15,-30],[-22,2],[6,-60],[-9,-57],[-26,-67],[-2,-31],[4,-33],[-6,-32],[-42,-94],[-14,-5],[-32,1],[-32,-15],[-15,22],[-13,28],[-9,34],[-13,70],[-10,71],[32,88],[-11,80],[-21,68],[-55,94],[-57,90],[-26,18],[-43,8],[-13,9],[-13,33],[-10,39],[26,17],[46,46],[26,-3],[70,-24],[21,-23],[20,-13],[48,75],[38,99],[24,21],[20,7],[20,-9],[41,-34],[32,-16],[23,-4],[12,-30],[13,-14],[3,46],[12,54],[22,17],[12,3],[8,14],[-2,50],[-30,6],[17,43],[14,21],[5,21],[1,26],[-59,-50],[-62,-21],[-36,5],[-37,1],[-73,-33],[-27,1],[-65,13],[-36,17],[-27,-13],[-27,-1],[-28,38],[-23,48],[-12,34],[-16,25],[-7,33],[-17,126],[-2,89],[-27,2],[-28,9],[-121,85],[-15,-21],[-17,-11],[-17,-4],[-17,5],[-17,13],[1,23],[13,58],[12,21],[17,17],[11,30],[18,92],[1,31],[-2,32],[1,24],[11,12],[46,30],[95,45],[24,27],[20,43],[24,26],[10,27],[12,21],[74,57],[32,4],[32,-6],[65,-34],[61,-54],[53,-72],[57,-52],[70,-8],[35,5],[34,-7],[14,-15],[24,-44],[-7,-29],[-4,-60],[13,-58],[20,-58],[16,-62],[3,-30],[-6,-65],[-5,-31],[-20,-53],[-11,-58],[7,-71],[4,-71],[-1,-66],[4,-65],[10,-65],[47,-180],[27,-122],[9,68],[-2,76],[9,27],[14,15],[17,-16],[4,-30],[2,-67],[14,-131],[19,-6],[21,20],[3,-40],[-1,-74],[10,-59],[8,-23],[34,-48],[15,-9],[44,-12],[33,-3],[32,17],[21,44],[18,47],[65,110],[18,53],[18,80],[7,18],[63,87],[8,31],[9,59],[14,58],[10,30],[62,28],[64,16],[64,53],[27,46],[2,30],[-14,53],[-1,23],[15,23],[56,67],[66,69],[53,47],[29,0],[27,-42],[28,-34],[150,-101],[24,-31],[21,-42],[30,-29],[33,-14],[31,-27],[28,-35],[64,-64],[86,-79],[21,-5],[80,4],[14,-15],[13,-21],[12,-5],[91,-14],[14,-15],[13,-21],[8,-57],[62,-2]],[[88581,47010],[-14,-7],[-69,17],[-8,24],[-1,12],[16,24],[15,40],[24,14],[10,0],[28,-94],[-1,-30]],[[78251,53040],[16,-47],[3,-31],[-11,-35],[-4,-54],[-33,-42],[-28,10],[-9,15],[-18,82],[2,69],[11,27],[26,-4],[27,38],[18,-28]],[[78451,52413],[-13,-18],[-15,28],[-13,39],[-6,41],[-6,68],[-2,48],[8,28],[5,-1],[23,-28],[15,-49],[9,-15],[1,-45],[-5,-52],[-1,-44]],[[78469,52683],[2,-74],[-20,20],[-17,29],[-25,22],[-32,7],[-23,19],[-16,34],[0,16],[1,13],[5,10],[119,-67],[6,-29]],[[78618,52273],[-5,-22],[-11,16],[-54,25],[-18,2],[-47,28],[-14,14],[-10,19],[3,35],[7,21],[4,59],[12,24],[23,-44],[26,-38],[15,-17],[46,-38],[16,-19],[7,-65]],[[78657,52344],[-9,-17],[-14,4],[-14,20],[-20,35],[-21,31],[-28,20],[-17,5],[-6,8],[6,60],[18,4],[58,-56],[19,-31],[28,-83]],[[78689,52155],[-31,-4],[-9,8],[4,54],[9,33],[14,-1],[16,-49],[-3,-41]],[[78735,52225],[-5,-7],[-24,73],[6,42],[6,11],[13,-26],[10,-27],[8,-32],[-14,-34]],[[78895,52523],[18,-25],[14,16],[-1,-21],[-3,-21],[-17,-59],[-28,13],[-7,19],[-2,15],[4,9],[3,29],[12,0],[7,25]],[[79051,52543],[1,-43],[16,-21],[4,-32],[-3,-51],[-14,-59],[-7,-15],[-20,12],[-6,19],[-3,16],[3,11],[-15,14],[10,22],[-7,32],[-40,-20],[-12,-1],[-2,36],[2,15],[31,45],[18,9],[20,-10],[24,21]],[[79104,51741],[8,-9],[10,30],[19,-41],[11,-21],[15,-20],[-15,-1],[-6,-19],[-4,-4],[-59,66],[-38,-21],[-25,19],[-8,14],[14,36],[13,83],[26,-21],[6,-26],[-2,-7],[17,-16],[18,-42]],[[79020,51650],[26,-56],[6,-20],[-13,-31],[-10,-44],[-6,-9],[-20,16],[-14,-43],[-9,69],[-20,44],[12,44],[5,4],[6,-2],[6,-11],[31,39]],[[78815,51642],[-36,-20],[-41,15],[5,34],[20,41],[17,-2],[31,-27],[12,-23],[-8,-18]],[[80474,51163],[-55,-59],[-13,3],[-10,21],[6,113],[7,34],[39,4],[23,-17],[12,-18],[5,-38],[-2,-23],[-12,-20]],[[81623,47750],[-6,-9],[-47,5],[-30,-47],[-21,-14],[-76,0],[-9,6],[-7,0],[-4,-10],[-24,7],[-77,42],[-10,38],[12,42],[27,58],[56,12],[252,4],[27,-51],[3,-16],[-55,-35],[-11,-32]],[[87489,51200],[-13,-11],[-15,12],[-15,44],[5,34],[17,23],[15,-23],[4,-30],[11,-2],[-9,-47]],[[85346,51557],[-17,-15],[-19,1],[-4,61],[6,78],[18,13],[27,-16],[-10,-20],[8,-42],[-9,-60]],[[85434,51659],[32,-86],[-21,-82],[15,-46],[40,-2],[10,-17],[7,-21],[4,-28],[-10,-23],[-23,-20],[-26,29],[-7,28],[-5,10],[-35,-21],[-10,-2],[-6,39],[8,55],[-24,25],[-23,57],[-1,24],[9,39],[-1,32],[13,3],[23,-43],[11,40],[9,17],[11,-7]],[[86923,48443],[-22,-50],[21,117],[4,59],[20,36],[29,179],[7,-5],[10,-17],[-15,-131],[-41,-92],[-13,-96]],[[86890,48472],[-17,-55],[-11,19],[-7,1],[-4,32],[4,68],[-14,76],[19,-1],[5,-23],[6,-8],[18,-73],[1,-36]],[[85631,49726],[-7,-21],[-16,-14],[-14,1],[5,21],[-4,11],[-10,-5],[-16,-16],[-20,-33],[-13,16],[-2,26],[1,11],[24,45],[29,8],[40,43],[18,-2],[-4,-27],[-6,-20],[-4,-20],[-1,-24]],[[85226,54166],[-11,-12],[-18,4],[-2,30],[18,52],[12,56],[-13,14],[-12,35],[-1,41],[11,76],[15,-6],[14,-33],[6,-62],[10,-47],[-20,-64],[-9,-84]],[[84904,53822],[-7,-18],[-34,32],[2,51],[-4,25],[-9,27],[-4,26],[4,28],[20,-36],[12,-57],[16,-55],[4,-23]],[[86350,47051],[-24,-18],[16,45],[52,104],[18,-19],[25,-4],[-37,-47],[-38,-19],[-12,-42]],[[86065,47261],[-16,-53],[-18,3],[-34,71],[2,50],[3,16],[13,5],[43,-15],[9,-40],[-2,-37]],[[85506,47177],[48,-23],[28,3],[6,-21],[-27,-49],[-56,38],[-10,40],[11,12]],[[86208,50869],[4,-34],[16,-32],[-5,-49],[-7,-7],[4,-23],[7,-17],[-13,-12],[-10,6],[-15,-16],[-10,-22],[-32,-9],[-11,20],[-57,24],[-37,53],[-5,16],[71,62],[32,17],[26,-1],[33,23],[9,1]],[[78435,48687],[-23,-3],[-42,71],[-7,22],[12,21],[13,-2],[48,-45],[9,-22],[-10,-42]],[[77895,50009],[11,-84],[-33,58],[1,40],[-5,26],[-20,33],[-15,40],[-7,96],[5,20],[13,1],[58,-126],[4,-21],[-1,-45],[-8,-14],[-3,-24]],[[77834,50264],[-20,-47],[-33,1],[-6,29],[1,70],[-8,22],[0,9],[6,40],[6,9],[53,-98],[1,-35]],[[77733,50493],[2,-15],[-45,50],[-22,14],[-19,56],[5,26],[1,37],[3,15],[14,5],[18,-27],[13,-66],[23,-61],[7,-34]],[[77349,51537],[-17,-27],[-25,26],[9,37],[4,51],[15,41],[5,47],[-29,130],[14,5],[12,-14],[19,-87],[17,-52],[-7,-70],[-17,-87]],[[76795,53202],[-18,-5],[-16,12],[-14,33],[-75,96],[-23,1],[-16,25],[-20,8],[-21,64],[-5,35],[16,16],[9,35],[25,-15],[28,-62],[29,-23],[8,-12],[14,-34],[66,-85],[7,-28],[5,-29],[1,-32]],[[83900,48710],[-18,-15],[-33,66],[-14,54],[3,31],[10,26],[5,7],[-2,28],[13,14],[15,-2],[9,-38],[11,-10],[6,-36],[-5,-125]],[[84225,51168],[6,-36],[-10,-31],[11,-59],[28,78],[27,10],[15,-13],[10,-15],[6,-30],[-10,-63],[-18,-30],[-22,-5],[-11,37],[-15,4],[-10,-81],[-5,-12],[-13,-10],[-12,22],[-2,12],[17,37],[-9,108],[-13,-20],[-34,-99],[-26,-44],[-8,23],[-14,67],[6,86],[21,58],[18,-4],[52,18],[15,-8]],[[83850,51608],[12,-25],[-7,-30],[-9,7],[-26,0],[-9,-2],[-12,-18],[-7,0],[5,27],[21,41],[14,-6],[18,6]],[[83479,48215],[-11,-96],[-6,33],[-2,88],[-7,43],[5,49],[-1,126],[8,58],[16,-74],[4,-38],[-6,-189]],[[82048,47827],[-22,-10],[-21,21],[0,27],[5,25],[32,13],[17,0],[18,-18],[12,-18],[6,-21],[-34,-1],[-13,-18]],[[82306,49614],[-59,-107],[-9,28],[5,109],[-17,67],[2,51],[11,89],[15,68],[34,46],[8,5],[-2,-83],[7,-31],[2,-27],[-3,-23],[6,-105],[4,-26],[-8,-33],[4,-28]],[[84152,45559],[-26,-1],[-8,6],[-3,51],[8,28],[60,37],[23,34],[34,70],[20,18],[5,8],[4,-1],[3,-54],[9,-31],[1,-17],[-30,-27],[-26,-62],[-59,-41],[-15,-18]],[[84523,47045],[-17,-36],[-11,-62],[-11,-19],[-22,-11],[-14,62],[-24,-3],[12,54],[11,21],[16,0],[7,-22],[4,-4],[36,92],[7,1],[6,-4],[5,-11],[-5,-58]],[[84423,47077],[-39,-15],[-24,-72],[-19,1],[-11,-32],[-2,-14],[1,-12],[-2,-13],[-8,-12],[-17,20],[-16,-25],[-6,-7],[-23,30],[-21,-2],[-6,5],[26,52],[36,50],[6,18],[-14,5],[-8,7],[-2,12],[23,7],[16,2],[12,-16],[8,1],[48,58],[20,-14],[14,-14],[8,-20]],[[84254,47030],[-6,-25],[-75,2],[2,33],[21,36],[7,12],[23,11],[33,-20],[-5,-49]],[[87420,48070],[-15,-6],[-8,48],[13,12],[14,-29],[-4,-25]],[[78728,52447],[2,-32],[-19,8],[-13,37],[11,26],[7,10],[7,-36],[5,-13]],[[78840,52304],[2,-17],[-25,34],[-1,24],[3,11],[15,-26],[6,-26]],[[78955,52323],[-18,-17],[-22,53],[1,12],[2,9],[4,6],[13,-27],[16,-10],[4,-26]],[[79080,51877],[2,-14],[-13,16],[-8,10],[-5,8],[-29,79],[12,-5],[32,-69],[9,-25]],[[79523,53661],[-1,-39],[-19,23],[-4,44],[7,14],[13,-8],[4,-34]],[[79377,53492],[-12,-2],[-3,17],[1,29],[-2,24],[-3,17],[0,30],[11,-15],[8,-14],[10,-10],[7,-6],[4,-5],[-7,-42],[-14,-23]],[[80246,53516],[-14,-30],[-14,19],[22,61],[5,4],[1,-54]],[[80264,50910],[-32,-25],[-10,55],[21,16],[22,-14],[-1,-32]],[[79853,50172],[-11,-14],[-7,14],[-2,16],[5,20],[15,2],[7,-6],[-7,-32]],[[79690,50111],[-5,-11],[-15,6],[-11,16],[-7,15],[-2,16],[15,20],[32,-20],[-7,-42]],[[81780,47733],[-4,-22],[-14,5],[-13,38],[6,10],[8,4],[9,-4],[8,-31]],[[81310,48495],[-6,-20],[-26,1],[-5,24],[17,41],[12,3],[10,-15],[-2,-34]],[[79236,48018],[-17,-13],[-13,11],[-6,16],[19,40],[10,10],[9,3],[5,-22],[-7,-45]],[[77037,53038],[-2,-13],[-29,61],[-32,34],[13,8],[27,-9],[11,-9],[10,-30],[2,-42]],[[76489,55191],[-6,-16],[-16,8],[-18,52],[6,10],[12,-5],[21,-12],[2,-20],[-1,-17]],[[84332,50861],[-19,-4],[-13,17],[1,85],[12,18],[5,-3],[4,-25],[5,-23],[10,-21],[-5,-44]],[[84233,49473],[-27,-69],[-19,4],[-23,45],[-6,50],[-1,18],[16,28],[52,-9],[9,-25],[-1,-42]],[[84401,50716],[5,-23],[-17,1],[-7,43],[1,24],[18,-45]],[[84208,50796],[-20,-47],[-2,25],[4,23],[5,16],[9,9],[4,-26]],[[83184,46808],[-11,-6],[-11,8],[4,52],[-6,34],[11,28],[3,48],[5,15],[6,-15],[4,-10],[5,-5],[13,-1],[3,-21],[-1,-19],[-5,-21],[-15,-23],[-11,-25],[6,-39]],[[83075,47097],[-12,-1],[-2,23],[4,24],[12,11],[5,0],[8,-22],[2,-11],[-8,-15],[-9,-9]],[[82113,46791],[-8,-20],[-22,35],[-6,16],[17,23],[6,3],[14,-24],[-1,-33]],[[82745,54254],[9,-55],[2,-21],[-52,-29],[-31,68],[6,27]],[[82682,53732],[-3,-19],[-24,47],[-7,33],[3,27],[25,2],[12,-17],[-6,-73]],[[84458,48402],[-3,-28],[-10,32],[-9,15],[1,34],[13,-12],[8,-41]],[[84340,48806],[-1,-58],[-11,3],[-9,20],[-3,20],[1,15],[5,13],[18,-13]],[[83548,47742],[-29,-3],[-8,5],[-3,56],[32,-24],[10,-2],[-2,-32]],[[82654,47023],[-7,-1],[-12,11],[5,24],[-7,40],[2,32],[16,18],[33,2],[1,-24],[-31,-102]],[[82339,49847],[-10,-99],[-17,56],[19,67],[9,13],[-1,-37]],[[85380,52298],[-9,-18],[-9,6],[-6,24],[2,18],[8,11],[9,-8],[5,-33]],[[87325,50619],[-8,-8],[-3,25],[5,33],[5,6],[6,-2],[8,-12],[-13,-42]],[[87102,49397],[14,-31],[-33,24],[-47,51],[-3,34],[40,-52],[29,-26]],[[86362,51395],[-7,-30],[-14,-19],[-119,-36],[10,21],[5,21],[8,11],[12,-3],[6,7],[5,2],[7,-3],[12,9],[24,-6],[25,5],[-2,28],[28,-7]],[[86284,51538],[-16,-1],[-28,25],[16,22],[11,5],[9,13],[5,0],[12,-11],[7,-19],[-16,-34]],[[85985,51735],[-12,-2],[-10,34],[-28,37],[-17,65],[65,-107],[2,-27]],[[85403,51839],[-1,-17],[-9,24],[-6,6],[6,62],[4,11],[5,-43],[1,-43]],[[85394,52213],[-10,-7],[-3,2],[-3,24],[5,39],[12,0],[5,-6],[1,-29],[-7,-23]],[[85360,51393],[-3,-12],[-29,15],[-8,8],[15,82],[14,-2],[12,-78],[-1,-13]],[[85755,49800],[0,-25],[-2,-8],[-15,9],[-11,-1],[-10,44],[3,10],[20,-12],[7,-5],[8,-12]],[[85711,49777],[-48,-30],[11,56],[6,15],[24,-15],[7,-26]],[[85199,54075],[1,-25],[-17,56],[-7,65],[14,-23],[15,-49],[-6,-24]],[[85236,54013],[-5,-6],[-10,15],[-6,17],[1,17],[7,9],[14,-26],[0,-15],[-1,-11]],[[84835,53370],[-3,-13],[-11,68],[9,34],[12,-13],[3,-12],[-11,-32],[1,-32]],[[86661,47694],[-4,-28],[-12,15],[-11,33],[-17,5],[-13,8],[-7,16],[47,7],[17,-56]],[[85741,47705],[-13,-15],[-20,30],[-6,13],[13,29],[14,9],[9,-13],[4,-13],[-2,-14],[1,-26]],[[85393,47451],[-17,-13],[5,43],[-1,34],[29,-11],[0,-27],[-3,-10],[-13,-16]],[[84281,45908],[-25,-20],[0,42],[20,54],[17,18],[10,-22],[1,-9],[-26,-20],[3,-43]],[[83856,45742],[-14,-7],[-30,17],[-6,10],[25,28],[20,39],[23,4],[14,-8],[-5,-47],[-27,-36]],[[87449,48136],[-7,-4],[0,28],[8,25],[8,14],[9,1],[-18,-64]],[[87409,47955],[-5,-9],[-7,18],[-1,12],[10,32],[9,18],[11,1],[-3,-26],[-14,-46]],[[85551,50151],[-14,-48],[-24,2],[-4,7],[29,30],[13,9]],[[85445,49933],[7,-25],[-28,16],[-12,25],[12,15],[7,4],[14,-35]],[[84160,46920],[-9,-34],[-16,10],[4,33],[8,19],[22,28],[22,5],[13,-10],[4,-11],[-34,-11],[-14,-29]],[[71402,72067],[33,36],[35,37],[36,38],[41,44],[35,37],[28,31]],[[71610,72290],[1,-2],[2,-5],[12,-14],[12,-6],[14,13],[18,10],[9,-6],[1,-17],[-11,-82],[1,-33],[18,-66],[23,-109],[22,-102],[12,-66],[13,-28],[52,-28],[43,-23],[26,-37],[28,-36],[20,-22],[9,-29],[2,-25],[-1,-18],[-11,-22],[-50,-59],[-6,-18],[-1,-24],[10,-73],[6,-45],[1,-92],[4,-86],[17,-40],[15,-25],[8,-24],[18,-31],[15,-24],[13,-14],[6,-31],[-3,-37],[-6,-32],[2,-17],[10,-12],[16,-32],[2,-47],[-1,-32],[6,-29],[2,-32],[-5,-80],[1,-33],[0,-4],[-14,-2],[-12,-12],[-17,-51],[-19,-13],[-22,-4],[-22,31],[-19,32],[-5,18],[-4,34],[-10,23],[-20,-11],[-29,-4],[-31,-8],[-6,-7],[-1,-15],[8,-30],[7,-40],[3,-56],[9,-37],[3,-12],[50,-111],[13,-23],[3,-14],[-4,-41],[-9,-47],[2,-38],[16,-41],[14,-29],[-13,-39],[-8,-45],[9,-21],[-5,-65],[4,-12],[10,-5],[15,4],[15,18],[13,3],[7,-5],[11,49],[9,7],[17,-13],[35,-93],[30,-78],[8,-15],[6,-9],[29,-41],[20,-26],[27,10],[36,1],[22,-25],[12,-17],[1,-3],[2,0],[43,-62],[19,5],[12,-18],[4,-43],[-6,-46],[2,-21],[19,-4],[41,-30],[37,-26],[19,-9],[20,-19],[18,-32],[35,-40],[31,-31],[7,-42]],[[74474,67897],[-3,20],[3,16],[9,9],[37,12],[42,24],[17,13],[12,14],[13,20],[12,0],[38,-30],[13,-19],[7,-58],[5,-22],[-5,-58],[-22,-142],[4,-53],[19,-38],[16,-27]],[[74691,67578],[-2,-11],[-34,-46],[-6,-24],[7,-24],[14,-20],[6,-20],[6,-60],[17,-16],[34,-39],[30,-28],[51,18],[14,-12],[25,-14],[20,-4],[11,-10],[7,-9],[-1,-13],[1,-12],[28,-3],[15,-7],[49,13],[50,17],[23,54],[11,4],[28,20],[29,-22],[31,-32],[17,-9],[33,-5],[32,4],[77,14],[43,-7],[39,44],[8,0],[17,-34],[43,-3],[22,16],[25,13],[16,4],[12,0],[15,-3],[15,12],[6,23],[-1,34],[-11,38],[-9,22],[-1,12],[3,27],[7,39],[15,44],[-11,43],[-15,49],[-11,5],[-28,-12],[-30,3],[-23,29],[-18,37],[-4,31],[5,38],[8,34],[2,13]],[[75453,67833],[22,0],[31,-7],[24,-10],[19,0],[34,45],[16,2],[18,9],[7,8],[6,-6],[20,-6],[20,3],[18,12],[19,19],[32,40],[7,23],[0,21],[-6,14],[-6,7],[2,18],[14,31],[50,47],[42,57],[24,43],[10,52],[14,57],[13,22],[30,14],[84,21],[27,23],[39,42],[20,33],[11,27],[1,30],[26,10],[23,48],[28,49],[48,41],[43,56],[15,-9],[16,-26],[8,-29],[2,-15],[55,-18],[9,3],[40,-26],[38,-32],[20,-8],[10,1],[9,10],[10,28],[10,20],[7,8],[-1,32],[54,61],[49,45],[42,32],[12,-13],[14,-25],[18,-62],[11,-16],[29,9],[5,-7],[-5,-22],[-19,-28],[-25,-26],[-16,-20],[5,-68],[-1,-24],[7,-7],[51,67],[25,14],[9,-16],[2,-37],[21,-74],[8,-38],[-51,-91],[-19,-47],[1,-16],[-1,-16],[-14,-24],[1,-9],[11,-15],[13,-11],[6,1],[11,22],[48,31],[14,-6],[34,-48],[16,-3],[41,-14],[27,18],[19,-16],[40,-60],[9,-11]],[[77033,68097],[-3,-36],[-2,-40],[10,-32],[1,-28],[-2,-25],[-8,-18],[-23,-10],[-18,-30],[-31,-45],[-24,-35],[-17,-32],[-7,-32],[2,-42],[5,-43],[56,-159],[0,-28],[-18,-8],[-23,18],[-21,26],[-22,68],[-19,21],[-18,4],[-109,-35],[-23,-10],[-36,-25],[-25,-52],[-18,-47],[-19,-18],[-28,-37],[-76,-112],[-44,-48],[-29,-18],[-20,-25],[-11,-42],[-8,-29],[-3,-73],[5,-90],[11,-58],[6,-12],[1,-17],[-11,-31],[-15,-26],[-7,-17],[-6,-82],[-13,-40],[-23,-59],[-21,-45],[-33,-35],[-13,-28],[-12,-52],[-7,-44],[0,-16],[4,-14],[13,-16],[17,-15],[8,-23],[1,-28],[-12,-68],[-22,-95],[-26,-74],[-26,-71],[-6,-24],[-23,-87],[-21,-120],[-13,-81],[-12,-56],[-15,-2],[-18,18],[-43,23],[-27,19],[-21,17],[-14,0],[-19,-12],[-19,-7],[-12,8],[-27,50],[-8,-6],[-5,-24],[18,-143],[12,-53],[-2,-88],[-5,-109],[-7,-119],[-4,-28],[-12,-31],[-15,-9],[-14,13],[-11,-3],[-3,-20],[3,-52],[-14,-58],[-10,-51],[3,-49],[5,-49],[16,-108],[0,-39],[-3,-36],[-9,-14],[-14,2],[-7,-15],[-6,-22],[-16,-81],[-16,-9],[-15,12],[-23,55],[-14,16],[-9,-1],[-4,-15],[-6,-32],[-6,-22],[-16,-19]],[[75714,64503],[-3,40],[-8,209],[-7,66],[-5,92],[-7,28],[-10,51],[-10,43],[-9,19],[-5,81],[-2,99],[0,47],[-13,97],[-12,110],[-16,-4],[-10,26],[-7,0],[-23,-25],[-18,8],[-14,-3],[0,-51],[3,-54],[-6,-19],[-36,-64],[-9,-42],[1,-45],[4,-59],[-6,-31],[-16,-28],[-21,-14],[-18,7],[-12,24],[-11,62],[-10,34],[-10,8],[-8,-9],[-1,-39],[0,-33],[-2,-3],[-6,5],[-6,16],[-17,155],[-25,119],[-1,46],[8,59],[11,91],[29,56],[4,24],[5,19],[7,4],[37,-5],[13,9],[11,27],[16,21],[16,9],[13,3],[20,-21],[9,12],[6,38],[9,37],[5,18],[14,8],[18,2],[5,7],[5,13],[4,49],[23,111],[8,49],[1,8],[-1,55],[7,8],[37,-27],[16,1],[9,11],[3,20],[-5,23],[-26,41],[-47,55],[-43,34],[-80,-5],[-79,-11],[-23,6],[-29,15],[-70,-2],[-86,-9],[-32,5],[-17,0],[-32,-6],[-52,16],[-37,20],[-32,22],[-38,20],[-9,0],[-5,7],[-4,18],[-1,23],[8,106],[-7,161],[6,59],[-31,132],[-11,25],[-15,1],[-9,-17],[-3,-31],[5,-35],[-12,-38],[-23,-13],[-27,13],[-22,18],[-29,40],[-21,55],[-2,61],[-10,40],[-13,19],[-10,5],[-9,-4],[-8,-21],[7,-22],[9,-30],[-3,-20],[-8,-3],[-12,9],[-19,-5],[-19,16],[-11,1],[-11,6],[0,35],[-17,45],[-28,50],[-28,31],[-14,-4],[-6,-35],[1,-12],[10,-7],[14,-20],[3,-20],[-2,-19],[-17,-33],[-13,-31],[-27,-46],[-23,-52],[-6,-40],[-9,-36],[-4,-39],[6,-27],[12,-17],[29,-13],[31,-52],[24,-72],[14,-21],[26,-24],[48,-3],[8,-20],[7,-52],[9,-18],[25,-25],[2,-18],[-6,-21],[-11,-16],[-20,-11],[-20,-4],[-19,6],[-29,5],[-33,0],[-23,-131],[-16,-46],[-10,1],[-25,22],[-11,-4],[-29,-116],[-4,-28],[-2,-21],[16,-45],[18,-37],[22,-14],[17,11],[14,-15],[17,-37],[28,-25],[40,-12],[23,-29],[2,-25],[-1,-26],[-4,-67],[-4,-39],[-21,-102],[-16,-87],[8,-42],[6,-17],[5,-13],[17,-33],[12,-32],[-10,-83],[6,-22],[23,-14],[25,-11],[9,-14],[-22,-84],[5,-59],[9,-55],[6,-90],[1,-9],[-2,-23],[15,-69],[21,-136],[2,-51],[-1,-54]],[[74736,64569],[-7,-90],[-22,1],[20,-60],[6,-44],[3,-60],[-24,-7],[-16,7],[-14,52],[-7,-48],[-24,-44],[-9,22],[-5,23],[-1,41],[13,157],[-2,17],[-7,12],[-13,6],[-5,32],[-21,-167],[9,-68],[-4,-32],[-38,-26],[-39,63],[-5,20],[-3,-35],[-7,-43],[-36,8],[-19,33],[12,58],[23,137],[4,62],[-30,45],[-26,27],[-15,63],[6,-69],[14,-24],[20,-17],[21,-35],[-15,-43],[-15,-27],[-29,-101],[-34,-57],[-41,-42],[-132,-63],[-28,-25],[-41,-78],[-26,-74],[-5,-75],[15,-81],[12,-127],[10,-26],[-14,-47],[-25,-49],[-20,-66],[2,-37],[-5,-24],[-70,-82],[-15,-47],[-19,-48],[-23,27],[-14,0],[19,-38],[-3,-25],[-6,-14],[-18,-14],[-101,-60],[-77,-57],[-22,3],[4,17],[14,15],[-1,66],[-15,12],[-12,4],[-59,-79],[-23,-79],[5,-15],[13,4],[39,44],[19,-12],[1,-18],[-60,-68],[-126,-220],[-6,-44],[-17,-49],[-22,-46],[-41,-112],[-78,-167],[-21,-62],[-125,-128],[-23,-39],[-51,-125],[-53,-102],[-62,-85],[-106,-108],[-65,-102],[-20,-68],[-2,-25],[7,-33],[12,-30],[3,-25],[-6,-44],[-3,-24],[-19,-60],[-33,-43],[-105,-90],[-14,3],[-86,18],[-32,-17],[-13,-42],[-30,-174],[-28,-46],[-11,-42],[-4,-29],[-17,1],[-14,13],[-11,-10],[-12,59],[-21,12],[-17,4],[-73,-59],[-25,-47],[-53,-223],[-14,-144],[13,-159],[18,-127],[4,-57],[-2,-75],[-10,-36],[-6,-43],[8,-88],[23,-116],[5,-48],[1,-51],[17,-115],[-12,20],[-9,49],[-21,62],[-26,-62],[14,-44],[49,-53],[15,-44],[-32,-386],[-24,-138],[-29,-90],[-16,-34],[-34,-142],[-24,-172],[-5,-67],[11,-74],[-12,-43],[-16,-34],[30,15],[10,-40],[3,-42],[1,-246],[-3,-257],[-23,-11],[-25,-2],[-22,7],[-16,10],[-39,-14],[-21,-28],[-17,-47],[1,-81],[-72,-203],[-16,-67],[-6,-65],[10,-34],[18,-35],[24,-14],[47,-14],[23,-19],[15,-34],[-55,36],[-65,8],[-155,-95],[-41,-66],[-23,-57],[-15,-131],[-3,-88],[-18,-73],[-81,-112],[-51,-34],[-19,-30],[-60,39],[-66,98],[-27,53],[-97,253],[-18,32],[-19,108],[-4,41],[-5,16],[-9,11],[-5,16],[-21,124],[-9,130],[-14,144],[11,-10],[17,-47],[8,-70],[1,-96],[12,-11],[11,9],[-31,222],[-28,55],[-7,4],[-7,36],[-1,44],[2,22],[-21,72],[-8,44],[-48,220],[-22,157],[-33,175],[-22,62],[-34,135],[-28,63],[-30,84],[-24,38],[-9,19],[-70,292],[-21,162],[-18,76],[-9,58],[-25,247],[0,44],[-3,49],[-17,105],[-31,113],[-9,70],[1,28],[-20,110],[-4,50],[-13,47],[-15,42],[-16,34],[-37,112],[-14,27],[-25,72],[-18,134],[-23,52],[36,0],[-22,49],[-11,32],[-12,20],[17,50],[-27,-1],[-15,30],[-20,93],[-37,105],[-6,57],[-32,177],[-27,426],[-26,189],[2,54],[-30,165],[-15,110],[-6,93],[-8,61],[-7,121],[-12,39],[-1,23],[8,55],[22,85],[8,54],[-10,77],[-20,-80],[-18,-23],[-9,60],[0,80],[-2,20],[5,27],[49,-13],[-56,49],[-6,29],[-3,22],[12,40],[-20,33],[-8,103],[-6,24],[-2,19],[11,142],[48,280],[4,63],[-5,90],[-10,71],[-5,76],[-3,19],[-17,7],[-16,28],[-19,112],[17,36],[13,21],[-18,-9],[-15,3],[29,52],[25,39],[59,46],[25,30],[-37,-27],[-38,-10],[-83,6],[14,104],[14,35],[16,19],[-23,-6],[-27,9],[9,106],[21,22],[22,5],[28,15],[-30,17],[-31,9],[-37,-18],[-34,13],[-42,0],[17,-14],[17,-33],[-8,-57],[-9,-36],[-23,-24],[-18,-38],[-6,-32],[-10,-24],[18,-16],[19,-12],[11,-26],[13,-39],[-1,-75],[-49,-177],[-17,-39],[-124,-107],[-48,-58],[-104,-75],[-40,-14],[-44,15],[-66,57],[-99,147],[-26,48],[-79,189],[-57,99],[-44,93],[-54,88],[-51,118],[-10,54],[3,54],[19,30],[22,-12],[18,-46],[12,-21],[11,-8],[76,71],[29,-3],[20,35],[25,-7],[52,55],[22,3],[26,11],[42,140],[31,89],[20,19],[-1,22],[-5,28],[-16,-7],[-10,-27],[-8,-33],[-8,-19],[-24,18],[-17,-3],[-20,-11],[-75,-52],[-31,-47],[-20,-9],[-119,51],[-117,118],[-49,79],[-31,100],[-31,120],[10,33],[48,72],[42,56],[-37,-25],[-41,-35],[-20,-24],[-22,-51],[-31,-12],[-11,76],[-8,74]],[[76080,55778],[-17,-48],[-33,145],[-15,9],[0,69],[8,28],[38,30],[10,-17],[20,-134],[-11,-82]],[[76036,56080],[-26,-54],[-12,33],[5,22],[11,13],[11,17],[11,-31]],[[75872,56595],[8,-22],[-15,4],[-15,32],[4,31],[6,12],[12,-57]],[[75956,56381],[-22,-1],[-6,24],[-9,26],[6,25],[12,6],[16,-40],[4,-28],[-1,-12]],[[75982,56484],[-13,-22],[-4,3],[-1,16],[-1,12],[-2,20],[-2,37],[11,30],[10,-6],[-5,-31],[7,-59]],[[75774,57106],[-13,-4],[-7,20],[-1,23],[7,15],[6,7],[7,-1],[7,-39],[-6,-21]],[[75694,57923],[-8,-20],[-29,15],[3,60],[-7,58],[5,24],[21,42],[18,18],[12,-56],[5,-55],[-20,-86]],[[75747,58399],[-13,-12],[-14,15],[11,23],[2,47],[13,-26],[0,-30],[1,-17]],[[75756,58488],[-7,-14],[-9,15],[-25,104],[-5,66],[-7,23],[9,33],[12,11],[6,37],[3,57],[10,46],[5,13],[20,0],[6,6],[-3,44],[-12,20],[-4,12],[0,106],[3,43],[8,30],[-6,64],[4,24],[15,33],[7,72],[-6,21],[14,110],[-1,73],[19,74],[29,33],[9,1],[1,-62],[3,-21],[-17,-37],[16,-49],[-2,-17],[-6,-39],[-11,-37],[-15,-16],[-11,-50],[-7,-19],[22,-53],[7,-180],[-16,-49],[-19,-10],[4,-120],[-3,-26],[-19,-59],[-4,-26],[-11,-24],[5,-30],[9,-13],[0,-25],[-8,-64],[-1,-72],[-11,-59]],[[75837,58776],[13,-79],[-22,35],[-8,24],[11,17],[6,3]],[[75754,59253],[-9,-37],[-1,80],[4,10],[4,3],[6,-8],[-4,-48]],[[70216,58296],[-2,-4],[0,10],[2,17],[3,11],[1,-1],[0,-11],[-2,-15],[-2,-7]],[[70296,56606],[-4,-7],[-4,-3],[-3,1],[-1,7],[0,6],[4,-7],[5,6],[5,18],[1,6],[1,-3],[-1,-10],[-3,-14]],[[45682,89993],[32,-3],[52,20],[22,13],[53,45],[32,13],[49,-3],[23,3],[1,-5],[-30,-18],[-24,-6],[-35,-27],[-32,-62],[-25,-30],[1,-13],[29,-24],[32,-13],[30,12],[13,-5],[12,-17],[6,-18],[2,-17],[-6,-36],[-17,-37],[-24,-30],[3,-10],[19,-5],[92,20],[10,-1],[5,-10],[1,-19],[5,-16],[9,-15],[-3,-15],[-40,-48],[48,30],[37,9],[65,-15],[26,-18],[15,-30],[23,10],[9,-1],[15,-17],[0,-18],[-10,-27],[-4,-24],[-11,-10],[-21,-7],[-6,-9],[9,-18],[14,-18],[19,-1],[3,-9],[1,-10],[-3,-12],[-6,-8],[-10,-4],[-13,-13],[48,-29],[6,-10],[1,-16],[-4,-17],[-8,-18],[-15,-11],[-34,-2],[-22,-12],[7,-20],[0,-26],[-6,-29],[-28,-46],[-26,-24],[-25,-15],[-45,5],[-24,12],[2,-39],[-25,-24],[5,-20],[9,-10],[-5,-26],[-11,-26],[-20,-27],[-23,-17],[-45,-21],[-38,-35],[-26,-14],[-65,1],[-67,-22],[-93,-47],[-64,-38],[-48,-43],[-65,-69],[-48,-30],[-27,-7],[-54,-7],[-45,-19],[-150,-35],[-50,-19],[-7,-18],[-21,-27],[-1,-9],[9,-8],[2,-9],[-19,-32],[-37,-22],[-17,0],[-21,20],[-10,-1],[-3,-3],[0,-6],[12,-24],[-23,-10],[-97,-28],[-166,20],[-65,22],[-81,33],[-49,9],[-68,2],[-56,47],[-26,29],[-2,12],[3,14],[5,9],[9,5],[19,0],[2,5],[-14,23],[-14,-8],[-36,-33],[-16,2],[-21,16],[-1,16],[-41,6],[-36,20],[-36,28],[-5,11],[17,16],[-3,3],[-13,3],[-26,-5],[-39,-36],[-17,-9],[-257,-8],[-65,-4],[-13,-5],[-11,23],[-10,53],[-4,34],[3,17],[9,20],[14,-4],[13,-15],[12,-23],[14,-11],[89,28],[37,18],[15,18],[18,29],[20,16],[9,14],[18,46],[13,21],[14,16],[18,10],[40,7],[-27,11],[-24,0],[-85,-48],[-28,0],[1,7],[12,14],[29,24],[-20,1],[-8,11],[-1,22],[15,37],[69,47],[24,7],[7,10],[-9,7],[-14,5],[-70,-49],[-50,-17],[-15,3],[-26,19],[-8,9],[-12,22],[2,13],[24,38],[-4,8],[-17,3],[-44,36],[-71,-4],[-174,21],[-36,-9],[-59,-30],[-36,-10],[-16,6],[-15,16],[-14,22],[-12,27],[5,19],[23,11],[17,5],[47,-6],[58,19],[37,4],[10,3],[22,20],[11,5],[16,-7],[8,-14],[59,22],[20,10],[2,7],[9,8],[28,-12],[24,0],[29,8],[52,3],[115,2],[18,18],[8,15],[10,39],[-4,8],[-73,-36],[-16,1],[-84,19],[-30,21],[10,18],[44,37],[46,30],[67,32],[16,13],[2,15],[-45,26],[-85,-7],[-22,31],[-70,19],[-47,-12],[-25,19],[-61,-26],[-134,-38],[-54,-27],[-28,-8],[-33,21],[-57,25],[-64,7],[-6,14],[37,44],[26,8],[26,-4],[49,-30],[34,-10],[-43,45],[1,17],[-3,26],[-13,11],[-13,29],[5,9],[17,4],[34,-10],[82,-50],[40,9],[22,18],[29,14],[-8,7],[-70,1],[-38,10],[-19,14],[-17,25],[6,11],[20,10],[60,-3],[-40,43],[-27,24],[-3,12],[2,15],[3,10],[6,5],[69,-25],[15,-1],[-14,16],[-30,24],[-2,9],[13,7],[6,14],[1,11],[21,9],[21,1],[21,-9],[66,-46],[10,-13],[3,-17],[-3,-22],[2,-8],[26,7],[21,-9],[10,2],[26,32],[17,-7],[11,-15],[3,-14],[2,-18],[-5,-39],[1,-5],[18,22],[31,1],[4,11],[1,41],[-3,34],[-3,7],[-101,48],[-17,11],[-22,24],[5,11],[19,11],[30,4],[68,-1],[7,5],[-13,13],[-32,8],[-7,7],[-4,14],[-38,-8],[-42,0],[-40,8],[-1,11],[16,15],[33,26],[15,7],[46,-5],[46,8],[37,-9],[29,-26],[42,-45],[57,-29],[5,-9],[30,-24],[60,-63],[60,-37],[3,-10],[-10,-11],[-23,-13],[5,-7],[31,-9],[21,-25],[2,-11],[-20,-78],[-10,-16],[-13,-9],[-56,15],[14,-25],[40,-26],[9,-15],[-6,-14],[4,-4],[15,8],[6,-8],[-3,-24],[-6,-20],[-10,-16],[3,-7],[16,2],[14,-4],[23,-22],[19,-67],[9,-21],[7,19],[8,49],[8,25],[7,1],[7,8],[5,15],[11,55],[38,41],[18,12],[16,3],[9,-5],[28,-43],[17,-7],[9,2],[12,29],[15,56],[3,63],[-8,69],[5,49],[18,30],[23,9],[29,-12],[22,-18],[42,-68],[34,-36],[29,-39],[15,-12],[29,-7],[7,3],[6,9],[2,15],[-6,98],[8,31],[12,22],[53,12],[28,14],[28,22],[22,12],[19,2],[19,-9],[19,-19],[31,-37],[39,-61],[50,-46],[26,-73],[5,-13],[6,-1],[7,9],[4,14],[1,32],[-14,43],[-46,109],[-1,20],[6,17],[33,1],[75,-9],[25,-17],[51,-66],[15,-16],[8,-5],[4,9],[20,12],[13,15],[23,36],[51,66],[10,2],[15,-5],[26,-18],[12,-13],[24,-11],[25,4],[35,23],[38,14],[14,32],[2,15],[-31,97],[13,20],[68,24],[59,2],[14,-7],[38,-47],[25,-23],[13,-19],[3,-42],[15,-16],[29,-17]],[[55251,78301],[-1,0],[-19,-12],[-31,-7],[-16,5],[-28,-54],[-8,-10],[-27,-17],[-22,-8],[-19,7],[-7,0],[-84,3],[-43,12],[-28,21],[-19,23],[-9,27],[-21,15],[-34,6],[-27,26],[-19,46],[-26,37],[-32,27],[-26,38],[-19,50],[-34,44],[-50,40],[-15,8]],[[54470,78838],[44,62],[22,18],[26,-3],[8,5],[2,9],[4,21],[3,19],[2,18],[-3,10],[-12,3],[-6,45],[6,17],[6,12],[-7,54],[2,18],[20,3],[16,12],[14,13],[4,17],[11,34],[-10,42],[-58,27],[-3,11],[13,12],[15,17],[8,13],[11,2],[16,-7],[28,-30],[10,-5],[11,9],[11,2],[30,-1],[26,7],[-6,32],[0,24],[-4,19],[3,20],[10,16],[3,36],[17,25]],[[25739,59319],[2,61],[-23,25],[-12,50],[-11,34],[3,21],[-1,24],[-31,19],[-30,-14],[-17,9],[-12,13]],[[25607,59561],[21,30],[2,18],[-7,14],[-7,8],[2,34],[4,40],[12,94],[-4,17],[-20,28],[-25,3],[-27,-9],[-13,14],[-12,32],[-20,16],[-34,-26],[-37,-39],[-11,-14],[-10,2],[-4,29],[-2,35],[-2,8],[-20,12],[-23,9],[-11,10],[-11,23],[-28,30],[-6,22],[-37,52],[-7,25],[-8,19],[-18,23],[-14,-5],[-46,29],[-7,3]],[[25177,60147],[6,26],[15,39],[32,45],[2,36],[-8,68],[-8,45],[4,20],[10,80],[8,19],[46,40],[4,6],[37,57],[40,63],[42,69],[47,78],[26,45],[12,20]],[[25492,60903],[27,-16],[21,37],[12,12],[29,44],[9,10],[48,18],[23,-1],[21,-44],[16,-25],[30,21],[26,5],[105,-42],[42,19],[76,4],[35,-11],[49,59],[31,12],[37,27],[-5,29],[-9,12],[56,-12],[83,-60],[89,11],[32,32],[21,9],[91,-61],[24,-47],[19,-4],[14,10],[4,10],[-18,10],[-8,15],[72,-29],[135,-222],[3,-18],[-58,65],[-31,-5],[-8,-10],[2,-36],[3,-17],[13,-2],[10,10],[24,-12],[15,-24],[19,-36],[12,-40],[12,-1],[12,24],[23,3],[15,-26],[11,1],[-15,42],[-35,41],[9,1],[77,-74],[21,-92],[19,-21],[18,-29]],[[25994,61277],[-44,-45],[-14,1],[20,35],[33,30],[28,14],[23,-6],[-46,-29]],[[26147,61325],[-21,-33],[-4,15],[10,31],[13,17],[12,-1],[-3,-14],[-7,-15]],[[30061,63201],[6,-17],[13,-116],[1,-38],[-13,-56],[2,-22],[28,-52],[0,-18],[-3,-19],[-24,-49],[-18,-34],[6,-39],[15,-36],[2,-31],[-5,-41],[-22,-50],[-12,-18],[-34,-2],[-3,-7],[16,-49],[19,-56],[31,-43],[7,-41],[-8,-38],[-1,-95]],[[30064,62234],[-23,46],[-26,38],[-16,15],[-16,10],[-123,-5],[-14,-7],[-11,-12],[-11,-6],[-34,-12],[-34,-2],[-79,31],[-31,16],[-31,10],[-36,-3],[-36,-10],[-29,-22],[-21,-40],[-4,-36],[-13,-10],[-29,59],[-27,41],[-30,31],[-62,45],[-12,27],[-5,32],[26,101],[28,19],[16,3],[35,-12],[35,-23],[31,-15],[49,-6],[27,-25],[187,-38],[35,-12],[14,4],[12,15],[10,27],[12,21],[56,4],[11,9],[8,29],[0,29],[-33,40],[-51,86],[-45,103],[20,34],[-8,63],[8,58],[10,57],[-44,49],[-53,49],[-73,15],[-22,13],[-12,36],[11,49],[23,28],[27,16],[28,12],[67,14],[67,-16],[57,-50],[59,-40],[73,-13],[34,-14],[15,12]],[[29776,62659],[-5,-40],[-71,48],[-57,61],[2,33],[30,7],[28,-20],[41,-40],[32,-49]],[[29815,63385],[12,-13],[-5,-17],[-28,10],[-29,19],[-9,-5],[-6,2],[-17,18],[15,14],[15,4],[17,-1],[35,-31]],[[33328,56767],[10,-9],[40,-92],[23,-20],[4,0],[0,24],[21,-10],[52,-63],[77,-103],[108,-195],[31,-75],[20,-35],[33,-85],[9,-41],[-1,-166],[-28,-112],[-7,-84],[-2,-113],[-16,-64],[22,35],[6,101],[19,62],[24,67],[33,16],[35,-28],[28,-5],[24,-20],[53,-108],[52,-86],[18,-68],[55,-34],[32,-54],[10,-47],[7,-122],[-11,-185],[3,-9]],[[34310,52961],[-12,-8],[-10,-12],[-15,9],[-21,-5],[-21,-12],[-19,-7],[-37,21],[-11,2],[-8,9],[-15,40],[-8,5],[-19,-19],[-24,-13],[-12,3],[-14,-14],[-12,-18],[-25,-78],[-12,-27],[-14,-13],[-27,1],[-29,-3],[-21,-19],[-21,-10],[-10,-1],[-3,-42],[-5,-20],[-6,-12],[-16,-3],[-14,1],[-9,18],[-15,9],[-15,7],[-9,10],[-7,-3],[-6,-18],[-5,-15],[-4,-28],[-22,-9],[-9,-16],[5,-52],[-2,-20],[-5,-16],[-26,-4],[-22,2],[-12,-20],[-16,-22],[-10,-4],[-11,1],[-15,26],[-14,32],[-37,23],[-36,18],[-24,51],[-6,25],[-11,11],[-28,61],[-16,39],[-17,10],[-19,17],[0,28],[-1,27],[-8,11],[-12,7],[-4,15],[1,36],[2,92],[-3,88],[-26,30],[-11,21],[-20,130],[-9,58],[-1,44],[7,129],[7,56],[20,113],[12,38],[1,28],[-2,37],[-6,72],[35,46],[14,19],[3,30],[18,39],[8,37],[7,29],[-2,15],[-8,9],[-10,27],[-19,79],[-7,16],[-6,22],[3,35],[7,38],[-1,16],[-11,21],[-25,34],[-20,2],[-16,13],[-23,1],[-18,4],[-10,13],[2,21],[4,16],[16,40],[10,42],[2,42],[3,55],[4,47],[3,54],[-25,35],[-7,29],[-10,25],[-11,0],[-17,11],[-26,-33],[-21,6],[-14,-13],[-32,3],[-21,16],[-25,-11]],[[46186,59143],[-1,-46],[16,-66],[-2,-49],[-7,-47],[-6,-18],[-9,-11],[-25,1],[-10,-10],[-17,-18],[0,-21],[13,-21],[11,-28],[13,-23],[21,-25],[2,-29],[1,-72],[-1,-57],[-61,-41],[-47,-7],[-40,4],[-17,-17],[-35,-43],[-42,-25],[-22,-2],[-10,-15],[-17,-44],[-46,-192],[-15,-46],[-12,-30]],[[45821,58145],[-14,40],[11,76],[-12,-1],[-23,-61],[-12,-2],[2,72],[-13,3],[-15,-5],[-21,37],[-2,28],[1,40],[13,25],[-2,10],[-12,3],[-14,-6],[-8,11],[14,51],[49,43],[24,5],[26,9],[-14,37],[-30,15],[-24,-10],[-12,-27],[-15,-5],[-25,63],[1,31],[9,38],[14,16],[57,0],[22,21],[9,4],[8,19],[-2,12],[-9,1],[-21,-25],[-69,10],[-22,-15],[-38,-58],[-47,-31],[-34,13],[11,77],[-5,10],[-10,13],[-50,-25],[-38,35],[-15,43],[3,53],[17,36],[3,18],[-19,3],[-34,-22],[-77,86]],[[45523,58213],[-22,-8],[-10,28],[-2,11],[12,10],[5,0],[9,21],[11,14],[5,5],[5,-1],[4,-46],[-5,-20],[-12,-14]],[[45584,58227],[-3,-16],[-16,2],[4,16],[-4,5],[5,49],[2,7],[8,-18],[1,-8],[3,-37]],[[45631,58303],[0,-23],[-11,4],[-4,7],[7,43],[11,19],[12,-3],[4,-6],[-2,-16],[-6,-14],[-11,-11]],[[45679,58488],[-2,-13],[-16,11],[23,49],[15,8],[-1,-37],[-11,-8],[-8,-10]],[[45582,58447],[-13,-18],[-13,9],[-7,16],[1,29],[15,41],[14,-6],[3,-71]],[[45559,58687],[-15,-70],[-17,7],[-13,42],[-1,18],[36,6],[10,-3]],[[46307,57055],[-3,17],[10,53],[-8,28],[-28,55],[-2,27],[-9,34],[-36,71],[-35,-4],[10,59],[-1,79],[-11,43],[3,44],[-7,-2],[-11,-31],[-18,10],[-38,47],[-18,46],[-3,38],[-4,15],[-11,-8],[-24,1],[-71,69],[-51,174],[-1,39],[7,67],[-1,19],[-23,-45],[-5,30],[-18,70],[-5,40],[-17,17],[-14,4],[-10,-14],[-14,-81],[-11,0],[-10,18],[2,61]],[[47780,57697],[-6,-22],[-18,-33],[-17,-26],[-5,-28],[3,-53],[0,-119],[2,-103],[14,-38],[16,-19],[19,4],[18,7],[-1,-62],[-5,-69],[22,-22],[11,-21],[6,-19],[-35,-37],[-10,-22],[-4,-57],[1,-54],[46,-38],[18,-45],[8,-46],[3,-88],[-4,-20],[-12,0],[-14,27],[-10,26],[-12,0],[-24,6],[-26,10],[-33,-2],[-12,-5],[-8,-16],[-2,-27],[-3,-89],[11,-20],[21,-22],[14,-9],[12,3],[9,-15],[2,-38],[-7,-28],[-11,-26],[-15,-67],[3,-25],[0,-37],[-25,-98],[-7,-19],[-33,19],[-22,7],[-16,-25]],[[25233,62105],[-3,-140],[-3,-162],[-2,-119],[-3,-159],[-3,-162],[-5,-222],[-2,-143],[1,-3],[33,7],[49,-6],[12,0]],[[25307,60996],[15,-12],[12,-4],[24,-32],[30,-25],[18,50],[-9,29],[-8,15],[1,14],[102,-128]],[[25177,60147],[-6,6],[-10,2],[-23,-10],[-11,-2],[-9,-11],[-1,-25],[6,-40],[3,-21],[-7,-9],[-28,-25],[-11,-23],[-11,-38],[-12,-15],[-13,3],[-9,-6],[-19,-27],[-30,-54],[-15,-40],[-1,-30],[3,-27]],[[24973,59755],[-106,95],[-36,16],[-150,-2],[-64,37],[-73,72],[-50,66],[-115,182]],[[32856,58762],[-18,-2],[7,21],[2,37],[10,44],[15,30],[15,-8],[-6,-98],[-25,-24]],[[57738,72899],[-6,-9],[-14,26],[0,14],[14,16],[7,3],[2,-10],[0,-23],[-3,-17]],[[55725,73953],[4,-67],[19,-12],[26,-60],[-2,-31],[-6,-10],[-43,28],[-10,-13],[-13,5],[-7,34],[1,11],[-8,20],[-5,9],[-17,-26],[-11,-5],[0,24],[16,66],[7,11],[13,-22],[10,8],[8,36],[1,36],[3,11],[14,-53]],[[55802,73620],[29,-56],[-23,14],[-26,-39],[-31,45],[-20,46],[-4,18],[20,43],[19,-44],[22,-7],[14,-20]],[[55746,74083],[-11,-5],[-9,3],[-9,-2],[-8,-11],[1,45],[10,57],[11,33],[17,15],[7,-26],[-1,-92],[-8,-17]],[[55766,73922],[-14,-6],[-17,55],[-7,38],[7,2],[7,-5],[8,-14],[0,-15],[3,-15],[7,-19],[6,-21]],[[55577,74557],[6,-32],[-35,20],[-25,29],[-21,71],[-45,81],[0,24],[17,18],[36,12],[15,-13],[9,-13],[3,-16],[-20,-31],[-5,-14],[16,-28],[0,-11],[7,-55],[8,-20],[20,-16],[14,-6]],[[56504,74284],[15,-62],[15,-21],[31,-25],[15,-4],[52,-45],[62,-8],[8,-13],[7,-35],[13,-27],[3,-22],[-7,-23],[9,-72],[16,-68],[23,-33],[29,-10],[28,1],[7,-14],[-3,-59],[-12,-24],[-9,-5],[-9,6],[-7,14],[-8,7],[-16,1],[-12,24],[-29,33],[-5,19],[-1,31],[-13,22],[-11,43],[-11,11],[-6,22],[-1,9],[-43,6],[-35,0],[-30,24],[-9,63],[-18,17],[-13,18],[-11,25],[-29,45],[-31,39],[-30,25],[-32,16],[-26,-19],[-15,4],[-3,13],[33,27],[44,50],[31,16],[15,2],[29,-44]],[[56605,74374],[-12,-20],[-20,9],[-20,65],[52,-54]],[[56635,74399],[-13,-7],[13,46],[23,24],[-9,-38],[-14,-25]],[[56854,74198],[-30,-14],[-8,2],[7,18],[0,7],[-29,33],[4,42],[3,11],[22,-22],[5,-37],[26,-40]],[[56881,75238],[-35,-20],[-37,39],[1,23],[19,47],[10,14],[27,-4],[15,-32],[4,-15],[-5,-26],[1,-26]],[[56541,73689],[-11,-14],[-12,1],[-9,5],[-4,11],[5,6],[7,23],[6,6],[9,-3],[5,-9],[4,-26]],[[56403,72689],[-3,-25],[-28,17],[-8,26],[-2,57],[8,28],[5,9],[13,-32],[27,-47],[-12,-33]],[[57548,72272],[-10,-32],[-11,27],[5,31],[-13,50],[24,74],[0,36],[18,19],[-4,-62],[-14,-49],[14,-40],[7,-46],[-16,-8]],[[57505,73132],[-28,-8],[5,46],[-13,36],[21,-20],[14,-24],[7,-5],[-2,-15],[-4,-10]],[[57485,72999],[-8,-1],[10,28],[29,38],[43,34],[14,3],[24,-21],[-44,-34],[-12,-18],[-32,-4],[-24,-25]],[[57096,73137],[-25,-22],[-17,32],[-10,50],[46,72],[11,-6],[6,-19],[-1,-65],[-10,-42]],[[57021,73195],[-22,-44],[-18,5],[-8,20],[12,42],[24,24],[11,-7],[-1,-31],[2,-9]],[[57078,72806],[-13,-30],[-18,11],[7,11],[5,15],[0,22],[-5,13],[3,5],[17,-22],[4,-25]],[[57050,72968],[-5,-9],[-21,37],[-8,21],[10,18],[31,-42],[-7,-25]],[[57451,73623],[34,-19],[9,2],[16,-6],[5,-35],[-22,-6],[-37,-32],[-15,7],[-19,28],[-30,3],[-9,8],[16,33],[29,16],[23,1]],[[57230,73461],[-13,-2],[4,23],[25,40],[34,2],[32,20],[7,0],[-15,-31],[-25,-30],[-49,-22]],[[57183,73035],[-25,-4],[-8,4],[15,10],[11,10],[5,13],[25,23],[16,29],[18,-20],[-23,-13],[-34,-52]],[[57350,72917],[-22,-14],[-14,-29],[-17,21],[0,28],[18,-9],[13,16],[-4,18],[15,-9],[11,-22]],[[56765,73488],[-19,-28],[-3,42],[12,44],[16,3],[6,-19],[-12,-42]],[[56787,73354],[-16,-17],[6,40],[-8,21],[7,17],[10,15],[5,-15],[9,-24],[-13,-37]],[[56815,73020],[0,-34],[-1,-12],[-57,-16],[5,38],[3,13],[19,-18],[7,9],[3,10],[21,10]],[[56928,73440],[-1,-60],[-8,1],[-4,9],[0,23],[3,36],[10,-9]],[[56942,73594],[-9,-39],[-21,45],[-24,31],[-9,27],[-14,16],[-4,36],[17,15],[8,1],[18,-44],[28,-5],[-2,-27],[8,-35],[4,-21]],[[57015,73501],[-10,-37],[-18,6],[-29,40],[-10,18],[-5,18],[12,2],[14,-19],[37,-10],[9,-18]],[[56866,73111],[-5,-3],[-7,25],[-2,22],[3,13],[10,2],[13,-43],[-12,-16]],[[57248,73858],[-27,-33],[-29,47],[-5,15],[21,19],[11,30],[-8,36],[-31,53],[-1,38],[46,16],[27,-33],[14,-3],[-5,-31],[2,-10],[2,-96],[-13,-13],[-2,-26],[-2,-9]],[[57336,74498],[-5,-34],[38,-57],[13,-36],[5,-35],[-3,-10],[-15,19],[-12,6],[4,-25],[13,-21],[-22,-13],[-22,1],[-64,30],[-14,32],[38,48],[8,19],[-27,-2],[-29,-57],[-46,25],[-14,23],[-4,12],[19,51],[32,-2],[17,11],[21,16],[1,24],[50,6],[18,-31]],[[57134,75130],[-31,-15],[-35,47],[34,19],[15,-14],[11,-16],[6,-21]],[[57065,74874],[-10,-19],[-8,-34],[-4,-47],[-16,-2],[-10,10],[-3,18],[-1,23],[-7,-1],[-6,-25],[-5,-11],[-16,-2],[-18,15],[1,33],[-4,38],[2,14],[49,3],[14,-28],[18,16],[7,18],[21,11],[-4,-30]],[[57056,73397],[-27,-3],[2,44],[10,11],[31,-22],[-1,-14],[-15,-16]],[[56812,73228],[-11,-9],[-17,13],[5,32],[11,13],[13,-10],[2,-14],[-3,-25]],[[57734,72539],[-21,-12],[-6,2],[-9,26],[12,65],[-11,41],[-1,18],[17,24],[11,36],[27,40],[72,46],[17,5],[-1,-37],[-24,-92],[-21,-46],[6,-37],[-34,-11],[-34,-68]],[[56625,72312],[19,-4],[26,1],[6,3],[16,34],[20,1],[9,-34],[-20,-15],[-5,-9],[4,-7],[16,-13],[21,5],[1,-26],[4,-22],[11,-13],[11,-2],[26,4],[25,8],[25,17],[26,9],[79,-9],[28,-36],[53,-5],[50,-19],[26,13],[45,12],[7,-13],[-6,-82],[3,-24],[13,-11],[12,5],[16,27],[37,21],[39,0],[33,54],[10,3],[-6,-26],[-5,-63],[-7,-37],[-3,-29],[-22,-15],[-33,-3],[-61,6],[-60,-10],[-113,-28],[-113,-14],[-15,9],[0,37],[-3,25],[-7,18],[-35,15],[-33,26],[-130,36],[-31,14],[-50,-8],[-18,1],[-13,13],[-9,22],[-4,69],[7,69],[10,18],[5,-21],[13,-9],[12,21],[0,31],[6,29],[9,-12],[7,-45],[16,-12]],[[57232,75303],[-7,24],[-43,43],[-100,25],[-48,32],[-21,-6],[-40,36],[-28,-16],[-59,-63],[-31,7],[-34,38],[-22,7],[-26,-20],[-42,-73],[-42,-36],[-38,14],[-51,0],[-5,-41],[10,-28],[27,-48],[-13,-37],[10,-36],[18,-7],[28,2],[50,-47],[22,-50],[14,-54],[-30,39],[-21,37],[-28,14],[-40,32],[-25,5],[-26,-22],[-3,-25],[29,-47],[26,-29],[14,-23],[9,-52],[-5,-17],[-10,-17],[-31,33],[-47,116],[-66,23],[-11,-24],[13,-61],[9,-24],[58,-67],[-5,-14],[-8,-6],[-65,38],[-19,58],[-4,73],[-59,50],[-56,55],[-13,53],[12,19],[8,38],[-31,-7],[-19,-24],[-32,-23],[-1,-39],[5,-36],[-10,-52],[-10,-90],[6,-48],[68,-136],[23,-99],[16,-37],[35,-42],[36,-76],[15,-41],[11,-65],[-30,-41],[-18,-2],[-9,19],[13,44],[-2,28],[-47,42],[-20,-15],[-22,-27],[13,-51],[14,-34],[8,-46],[28,4],[-38,-52],[-35,-27],[-35,-1],[-23,-5],[-7,-13],[18,-10],[15,-1],[24,-28],[68,-34],[33,-42],[32,-4],[32,-78],[56,-21],[31,-79],[43,-16],[36,-29],[11,-27],[5,-50],[2,-107],[8,-79],[0,-25],[-2,-37],[-9,-19],[-14,0],[-26,58],[-40,61],[-42,73],[-12,13],[-10,1],[-23,-25],[-63,-19],[-29,-26],[-11,-6],[-4,-14],[14,-15],[17,-33],[0,-45],[14,-56],[18,-14],[24,1],[13,-10],[4,-22],[14,-26],[9,-19],[-1,-13],[-66,-37],[-13,-16],[-12,-9],[-17,18],[-1,44],[-22,23],[-21,21],[-25,9],[-21,30],[-14,-25],[11,-85],[24,-60],[40,-158],[18,-93],[4,-46],[-9,-75],[19,-56],[14,-57],[-15,2],[-13,20],[-21,24],[-42,92],[-15,57],[-17,4],[-30,-8],[-34,-122],[1,-70],[-18,17],[-14,22],[1,76],[-1,32],[-40,104],[-19,12],[-8,35],[-15,38],[-19,-8],[-16,-15],[-4,-56],[-2,-51],[-11,-38],[-43,72],[-43,126],[-1,68],[31,63],[-4,45],[-30,89],[-43,57],[-24,17],[-11,60],[-23,31],[-19,15],[-4,22],[6,16],[45,62],[27,97],[13,5],[27,-23],[31,6],[25,57],[21,31],[36,-4],[80,-76],[87,-44],[43,-38],[25,-38],[13,-8],[20,-5],[-1,28],[-6,25],[17,14],[46,-1],[9,14],[8,21],[-9,24],[-16,12],[-16,3],[-11,8],[-17,-8],[-28,19],[-14,16],[-8,16],[-47,32],[-45,54],[-10,-31],[-19,-16],[-25,-3],[-73,35],[-45,-27],[-24,-6],[-19,-1],[-23,-12],[-26,-7],[-23,50],[-9,39],[-7,7],[-1,-37],[-7,-29],[-33,-16],[-20,23],[-15,68],[-18,87],[-33,70],[-27,18],[-3,39],[3,30],[32,8],[50,-32],[11,6],[11,15],[-2,33],[-7,29],[-14,2],[-10,-4],[-31,6],[-39,-16],[-19,15],[-6,19],[-33,46],[-29,62],[-46,41],[-31,126],[-25,55],[-28,40]],[[55555,74717],[6,0],[11,-6],[19,-22],[21,-5],[12,15],[7,13],[4,21],[2,26],[3,8],[16,-3],[5,6],[0,23],[-10,28],[-10,35],[0,16],[8,7],[13,15],[6,19],[14,9],[19,2],[22,8],[15,20],[2,19],[9,55],[5,27],[10,24],[5,33],[10,31],[21,13],[19,15],[14,40],[8,34],[0,20],[-12,35],[-9,33],[3,43]],[[56365,75654],[30,-6],[37,-2],[23,36],[37,3],[17,5],[28,-8],[28,1],[35,15],[33,25],[26,-2],[10,4],[6,5],[7,34],[48,2],[17,-3],[27,-1],[28,18],[8,-2],[14,-49],[8,-14],[15,-13],[34,-37],[6,10],[14,12],[41,-17],[39,-28],[33,-42],[36,12],[40,21],[27,6],[28,3],[17,8],[38,-10],[40,22],[19,20],[6,29],[-3,50],[-9,49],[-10,19],[-3,19],[5,18],[6,12],[26,11],[34,-16]],[[50329,55350],[-22,-22],[-16,-33],[-12,-50],[-16,-55],[-55,-29],[-22,-1],[-114,-1],[-108,-109],[-61,-39],[-38,-61],[-51,-44],[-36,-53],[-74,-25],[-122,-83],[-38,-33],[-38,-58],[-63,-68],[-24,1],[-49,63],[-37,32],[-90,49],[-67,18],[-33,21],[-8,4]],[[49135,54774],[7,23]],[[49142,54797],[19,1]],[[49161,54798],[20,-7],[14,18],[22,2],[6,18],[2,46],[0,37],[7,16],[2,44],[-11,96],[-7,11],[-39,14],[-3,19],[-7,21],[-8,49],[-8,74],[-14,92],[-27,151],[-6,54],[-5,54],[-1,66],[6,24],[-1,33],[-2,34],[18,77],[37,94],[7,34],[7,24],[1,34],[7,110],[17,132],[11,51],[7,27],[9,44],[3,21],[33,52],[16,14],[3,20],[-5,23],[2,15],[8,8],[12,6],[9,21],[-14,164],[-11,163],[-1,14],[-7,23],[-6,67],[-12,39],[-16,12],[1,37],[16,63],[4,37],[-8,11],[-1,28],[5,47],[-2,28]],[[49251,57304],[-3,31],[-17,71],[-4,51],[9,29],[-1,65],[-9,100],[-1,63],[6,26],[-3,25],[-12,24],[-1,23],[10,23],[-1,17],[-13,13],[-11,31],[-10,48],[2,78],[19,144],[2,12],[22,-1],[0,-6],[68,2],[77,1],[92,2],[83,2],[4,6],[14,8],[84,-15],[53,8],[22,-5],[17,-10],[36,6],[20,-3],[14,-36],[6,0],[8,15],[15,18],[15,13],[11,28],[6,22],[10,-5],[13,2],[10,18],[3,27],[64,-29]],[[52115,79258],[-14,8],[-10,38],[3,58],[15,76],[4,56],[-7,35],[9,54],[25,71],[16,75],[9,78],[12,52],[23,36],[56,100],[5,8],[-2,50],[-15,7],[-22,15],[-56,18],[-52,11],[-24,14],[-21,38],[-13,1],[-25,-14],[-32,-9],[-22,8],[-15,-2],[-8,-7],[-4,6],[-6,33],[-12,9],[-18,7],[-12,-3],[-8,-16],[-12,-12],[-12,4],[-35,75],[-9,17],[-3,15],[-8,28],[-22,27],[-21,9],[-10,-3]],[[51699,80714],[1,11],[15,53],[52,49],[-5,48],[-1,30],[-13,19],[-25,8],[-7,13],[-3,14],[19,29],[-23,24],[-10,24],[-31,30],[-4,11]],[[51999,82535],[-13,26],[-27,28],[6,59],[9,45],[27,57],[22,15],[96,9],[105,-4],[44,-84],[-16,-44],[25,-20],[13,7],[9,38],[6,42],[9,13],[33,-32],[12,-21],[0,-69],[12,93],[-9,66],[6,63],[14,34],[12,21],[77,-23],[86,12],[32,-25],[73,-123],[24,-20],[31,-6],[-42,26],[-89,149],[-26,19],[-41,5],[-26,15],[-16,23],[-4,20],[1,150],[-16,22],[-20,8],[-12,-10],[-25,-1],[-5,34],[6,26],[51,17],[33,23],[2,41],[-22,32],[-25,58],[-30,56],[-3,64]],[[52408,83469],[52,-1],[13,-3],[78,-30],[19,-21],[24,-1],[44,20],[33,8],[12,-12],[18,-5],[4,0]],[[52705,83424],[2,-10],[40,-16],[17,-24],[19,-37],[2,-54],[-24,-38],[-20,-24],[76,9],[8,-22],[11,-24],[41,17],[103,-70],[63,34],[16,2],[14,-57],[-16,-57],[-55,-61],[13,-38],[17,-8],[52,8],[82,-37],[17,11],[67,86],[26,18],[88,14],[16,33],[35,33],[23,36],[55,70],[56,-13],[33,-13],[37,-7],[33,-74],[83,-81],[77,7],[27,-77],[12,-96],[24,-30],[20,-19],[63,-21],[2,-1]],[[54113,81139],[-3,-9],[-9,-14],[-12,-2],[-18,10],[-12,13],[3,34],[-8,3],[-10,20],[-4,23],[-11,9],[-39,10],[-13,6],[-10,-5],[-8,-15],[5,-15],[8,-14],[21,-22],[-2,-9],[-47,-21],[-29,-23],[-27,-12],[-28,-23],[-55,-26],[-40,-7],[-8,-6],[-15,-44],[-10,-9],[-10,4],[-7,8],[-10,-6],[-9,-15],[-11,-6],[-8,1],[-16,-39],[-46,-11],[-5,-20],[-9,-23],[-6,-5],[-21,9],[-29,5],[-16,-13],[-20,-7],[-24,-2],[-26,-25],[-27,-44],[-14,-39],[-8,-14],[-13,36],[-16,26],[-11,13],[-10,0],[-2,-6],[0,-19],[10,-32],[13,-21],[2,-16],[8,-29],[19,-32],[30,-25],[20,-25],[15,-35],[0,-10],[-4,-14],[-7,-13],[-6,-18],[-17,-35],[5,-15],[14,-19],[12,-23],[15,-37],[21,-66],[14,-27],[19,-28],[18,-21],[28,1],[30,-41],[33,-58],[24,-27],[17,-8],[14,-22],[12,-30],[5,-18],[11,-12],[30,2],[38,-48],[23,-35],[13,-28]],[[53837,79934],[-3,-11],[-2,-35],[0,-38],[-3,-19],[-17,-26],[-9,-6],[-5,-5],[-52,34],[-4,-6],[-4,-4],[-14,-99],[-9,-18],[-15,-18],[-30,-17],[-20,-7],[-17,-8],[-51,-41],[-23,-25],[-15,-31],[0,-18],[25,-52],[29,-55],[0,-47],[-13,-36],[-3,-14],[9,-5],[16,-2],[13,-6],[6,-25],[-2,-44],[-5,-41],[-4,-17],[-13,-2],[-25,18],[-19,21],[-8,12],[0,15],[4,10],[-7,19],[-24,17],[-25,-8],[-19,-11],[-12,0],[-13,17],[-20,13],[-27,8],[-16,9],[-4,-5],[2,-36],[-5,-16],[-130,-21],[-40,-19],[-28,-25],[-22,-11],[-5,-16],[-21,-20],[-24,-6],[-6,6],[-15,-9],[-26,-9],[-17,3],[-8,16],[-16,25],[-7,18],[1,11],[-37,2],[-23,14],[-49,-4],[-12,6],[-2,-6],[-8,-71],[-9,-30],[-16,-30],[-20,-17],[-16,-3],[1,22],[4,27],[-12,6],[-17,3],[-8,8],[2,20],[-4,12],[-7,14],[-18,18],[-36,27],[-25,14],[-10,-14],[-18,-15],[-28,5],[-7,-6]],[[53808,83169],[7,-39],[-8,-19],[-31,32],[-32,0],[-18,-51],[-14,-2],[-49,46],[-7,23],[-2,18],[7,65],[-1,20],[15,22],[2,32],[27,34],[24,1],[8,-28],[11,-20],[40,-22],[6,-10],[4,-14],[-19,-27],[-6,-14],[6,-23],[30,-24]],[[53948,82874],[-12,2],[-34,-6],[-34,9],[-7,34],[6,34],[-14,22],[-13,14],[-2,19],[2,20],[59,-54],[48,-48]],[[53134,83189],[-43,-1],[-16,23],[-17,6],[9,29],[12,10],[41,-19],[13,-36],[1,-12]],[[52307,83402],[-6,-12],[3,82],[30,86],[13,-2],[-13,-23],[-4,-16],[-5,-33],[2,-17],[70,-5],[-8,-15],[-71,-10],[-11,-35]],[[52385,83359],[-11,-14],[-26,2],[-15,13],[5,14],[14,11],[11,2],[18,-7],[4,-21]],[[61530,75758],[53,108],[16,65],[1,39],[0,49],[-27,102],[-24,144],[-25,151],[-19,45],[-81,52],[-19,59],[-62,77],[-87,33],[-17,14],[-76,96],[-59,62]],[[62897,75973],[-7,-20],[-16,-38],[-13,-19],[-14,-3],[-14,-8],[-5,-20],[0,-26],[2,-19],[4,-7],[14,-6],[14,-54],[22,-28],[34,-31],[31,-36],[15,-33],[-3,-23],[-10,-50],[-25,-41],[-22,-10],[-7,3],[-14,13],[-28,32],[-30,25],[-24,-8],[-15,-10],[-31,12],[-35,21],[-19,22],[-8,16],[5,28],[-81,50],[-40,14],[-17,-15],[-60,-76]],[[62500,75628],[-7,-8],[-46,-10],[0,-7],[10,-16],[-2,-5],[-77,-2],[-25,-10],[-68,13],[-23,-6],[-19,-12],[-47,-13],[-32,-16],[-41,-9],[-43,0],[-14,-5]],[[45343,59368],[-2,49],[-15,111],[21,48],[22,29],[15,-23],[5,-45],[12,-31],[39,-20],[40,14],[24,-6],[-1,25],[8,33],[48,15],[50,9],[52,20],[41,-1],[12,6],[-3,8],[-36,10],[-78,-23],[-80,-7],[-60,-60],[-24,6],[-25,60],[-9,74]],[[53692,53088],[-1,-40],[-22,-99],[-11,-76],[-2,-81],[6,-65],[10,-46],[7,-51],[-5,-35],[-11,-15],[8,-18],[16,-4],[27,15],[42,27],[55,39],[36,21],[60,-13],[32,-15],[16,-28],[18,-116],[8,-17],[15,-50],[12,-59],[2,-30],[-1,-22],[-12,-32],[-14,-47],[-5,-29],[-11,-21],[-14,-21],[-40,-8],[-6,-13],[-12,-50],[-21,-43],[-9,-40],[-9,-53],[2,-67],[-4,-96],[-5,-64],[11,-23],[48,-16],[9,-13],[13,-40],[16,-38],[43,-23],[17,-29],[14,-32],[2,-26],[-10,-104],[-10,-99],[4,-76],[4,-73],[5,-105],[-2,-65],[-13,-39],[0,-31],[6,-37],[-11,-103],[-7,-17],[-20,-20],[-10,-27],[-3,-44],[-11,-59],[-10,-22],[0,-27],[10,-21],[0,-30],[-20,-37],[-11,-28],[-26,-14],[-30,14],[-7,21],[7,32],[-2,25],[-11,27],[-16,69],[-14,15],[-7,-28],[-25,-53],[-42,-67],[-30,-6],[-55,21],[-47,32],[-21,79],[-14,65],[-20,76],[-22,36],[-24,23],[-10,1],[-34,-42],[-10,-16],[0,-36],[3,-33],[5,-16],[5,-21],[-1,-33],[-6,-44],[-2,-49],[-106,-47],[-19,17],[-13,22],[-16,-4],[-46,-25],[-17,18],[-17,12],[-7,-10],[-1,-21],[8,-114],[-3,-44],[-10,-57],[-6,-38],[29,-11],[10,-18],[10,-29],[13,-27],[1,-16],[-15,-30],[-6,-37],[8,-28],[19,-30],[28,-32],[14,-20],[-2,-19],[-13,-40],[-5,-33],[-9,-31],[2,-28],[13,-26],[-2,-23],[-8,-18],[-18,4],[-14,-3],[-13,8],[-42,90],[-9,3],[-60,-70],[-15,-28],[-12,-41],[-17,-89]],[[53091,49587],[-27,51],[-24,95],[-27,58],[-58,94],[-15,69],[-66,153],[-95,152],[-69,133],[-10,29],[12,-3],[66,-66],[9,7],[7,15],[-28,34],[-27,28],[-26,17],[-26,-2],[-14,28],[-9,43],[-5,36],[-11,38],[-37,79],[-9,30],[-19,41],[12,6],[39,-40],[3,16],[-3,23],[-39,38],[-22,2],[-5,27],[3,30],[-28,115],[-29,85],[-4,41],[78,-186],[11,-4],[13,2],[33,21],[-6,25],[-15,26],[-14,-12],[-19,-2],[-9,11],[-5,19],[19,90],[-8,-4],[-6,-16],[-10,-8],[-16,-5],[-39,49],[-34,130],[-9,27],[-9,46],[-9,18],[-39,186],[15,-14],[18,-53],[35,11],[13,31],[12,-1],[12,7],[15,29],[45,128],[12,169],[-4,100],[-7,100],[15,32],[6,-21],[3,-36],[7,-26],[16,-23],[29,-7],[46,-36],[16,-24],[4,47],[53,40],[-16,14],[-47,-15],[-64,59],[-21,38],[-20,72],[-20,38],[1,34],[46,31],[12,-4],[5,-37],[12,-15],[5,5],[2,31],[0,86],[-14,122],[5,23]],[[52664,52437],[12,9],[11,16],[8,3],[16,-3],[8,-29],[4,-15],[15,-7],[13,-15],[11,4],[10,17],[13,4],[42,0],[38,-1],[75,0],[76,-1],[75,0],[57,0],[0,69],[0,108],[-1,127],[0,122],[0,113],[-1,133]],[[53146,53091],[3,38],[4,16],[-1,22],[58,2],[106,-10],[46,1],[13,-1],[58,6],[47,-8],[20,-10],[18,-4],[56,-6],[73,7],[25,-2],[14,-18],[6,-36]],[[52633,76500],[-7,-84],[5,-25],[10,-18],[5,-19],[8,-225],[-2,-18],[-34,-91],[-7,-26],[-2,-113],[-6,-30],[-12,-30],[-21,-96],[-19,-43],[-51,53],[-30,22],[-14,25],[-10,17],[6,23],[14,23],[2,19],[-32,21],[-15,14],[0,24],[11,38],[-5,32],[-18,-2],[-15,5],[-1,17],[10,21],[14,27],[-1,30],[-16,13],[-15,25],[-6,33],[12,23],[18,15],[-13,34],[-10,1],[-7,7],[6,16],[14,24],[21,71],[28,33],[50,22],[14,9],[12,25],[14,16],[16,-2],[16,-9],[9,-11],[8,11],[6,31],[-4,27],[2,75],[9,42],[15,3],[13,-24],[-1,-20],[5,-49],[1,-32]],[[52081,77054],[-15,-10]],[[52049,77034],[-32,-21],[-23,-21],[-88,-127],[-41,-38],[-8,-22],[-8,-42],[-24,-36],[-22,-17],[-52,-18],[-53,-38],[-23,16],[-62,-1],[-38,46],[-74,29],[-24,67],[-33,4],[-22,-2],[-13,10],[-4,23],[0,22],[-23,-10],[-18,0],[-11,-9],[-8,-10],[-10,7],[-6,-3],[1,-13],[-22,-3],[-23,8],[-61,35],[-9,5],[-42,13],[-17,14],[-14,35],[-11,10],[-6,7],[-39,-17],[-14,-27],[-21,-32],[-146,-155],[-27,-64],[-31,-96],[-2,-44],[13,-142],[30,-75],[4,-18]],[[50473,76326],[3,13],[7,18],[0,11],[-9,16],[-39,18],[-18,4],[-12,-12],[-9,-15]],[[49501,76847],[45,17],[41,73],[39,263],[28,311],[20,58],[26,17],[-21,42],[-13,-21],[-5,-23],[-7,-12],[15,285],[11,105],[19,109],[39,-43],[32,-44],[17,-39],[21,-127],[15,-27],[24,-26],[-9,29],[-17,22],[-25,170],[-16,48],[-25,40],[-80,85],[-8,17],[-4,32],[27,-1],[23,-16],[-3,18],[-7,19],[-10,69],[-9,161],[1,28],[-4,34],[-26,7],[-20,2],[-22,13],[-110,95],[-37,98],[-39,72],[-9,32],[1,32],[20,67],[-18,43],[-17,8],[-15,21],[14,35],[11,23],[22,6],[30,-8],[28,-20],[21,-5],[-64,54],[-105,-18],[-23,7],[-19,12],[-7,40],[15,18],[13,34],[-15,23],[-20,9],[-31,-1],[-29,-7],[-7,14],[17,37],[-15,14],[-20,-7],[-29,-7],[-28,11],[-26,42],[-17,0],[-12,-5],[-18,16],[-19,4],[-13,-5],[-18,24],[-109,49],[-47,6],[-43,-22],[-24,7],[-18,32],[-14,52],[-70,41],[14,27],[32,6],[37,19],[14,23],[-29,28],[-22,7],[-9,10],[-9,24],[13,12],[9,-6],[26,-4],[45,6],[-16,25],[-18,6],[-8,6],[-36,3],[-17,-9],[-37,4],[-9,27],[-3,23],[11,51],[53,46],[131,51],[56,-7],[40,9],[47,31],[20,28],[67,16],[63,-29],[59,-109],[28,-37],[68,64],[102,-2],[21,-36],[8,30],[19,36],[15,-16],[8,-22],[107,6],[17,6],[-29,26],[-23,62],[-5,229],[-30,64],[-34,102],[-16,60],[-1,21],[5,30],[42,-1],[32,-8],[62,23],[30,-16],[-2,-47],[9,-60],[11,-28],[15,-33],[50,3],[54,-19],[68,-3],[99,-34],[42,20],[41,41],[78,27],[7,14],[-45,-6],[-42,26],[-5,29],[5,25],[16,58],[120,92],[85,28],[89,50],[45,52],[30,68],[10,14],[12,13],[-12,24],[8,256],[9,46],[17,38],[27,29],[40,32],[148,44],[22,17]],[[50701,81276],[3,-27],[11,-35],[7,-19],[-6,-25],[5,-21],[20,-37],[25,-35],[22,-23],[7,3],[16,6],[28,23],[24,7],[13,-17],[7,-10],[15,-40],[4,-41],[7,-34],[12,-14],[44,-5],[33,-13],[9,-11],[11,-76],[6,-11],[9,9],[8,12],[11,2],[19,-5],[26,-1],[26,-8],[36,-44],[-1,-14],[-7,-25],[-3,-20],[6,-8],[10,-20],[-2,-24],[-10,-17],[-3,-14],[0,-9],[3,-7],[8,-6],[53,-9],[49,9],[31,24],[5,25],[9,29],[18,25],[13,8],[12,-10],[-20,-102],[14,-26],[2,-39],[6,-34],[17,1],[21,-6],[15,-13],[18,-20],[25,-19],[18,-6],[6,-16],[15,-18],[22,-37],[20,-25],[10,0],[19,10],[28,6],[22,-1]],[[49672,78285],[-10,-50],[-18,46],[-25,41],[-5,37],[0,10],[29,-27],[29,-57]],[[62549,44368],[-17,-5],[-8,15],[-5,36],[5,35],[1,28],[-14,49],[14,28],[12,-32],[6,-2],[18,-23],[-5,-42],[1,-13],[-8,-42],[0,-32]],[[65499,39550],[-40,-17],[-27,6],[-54,49],[-15,33],[-21,91],[5,32],[17,57],[38,23],[41,-9],[18,-15],[21,-66],[28,-68],[-4,-80],[-7,-36]],[[33103,60192],[-2,-33],[-7,-6],[-11,27],[-45,-4],[-7,25],[-1,11],[22,42],[-26,11],[-10,18],[-22,87],[2,26],[9,13],[15,2],[28,-28],[20,-40],[7,-1],[3,-11],[-4,-29],[12,-24],[5,-17],[12,-69]],[[32964,61192],[-32,-6],[-22,5],[-5,41],[11,35],[-8,42],[5,25],[11,17],[18,-22],[3,-32],[11,-29],[51,-61],[-43,-15]],[[32891,61063],[-22,-26],[-11,8],[-14,50],[-9,138],[7,22],[5,9],[30,-17],[12,-19],[13,-13],[-7,-25],[4,-103],[-8,-24]],[[32991,60996],[-15,-2],[-7,5],[-2,34],[12,24],[7,6],[10,-27],[3,-22],[-8,-18]],[[34956,54930],[20,30],[27,152],[19,54],[20,7],[109,-126],[51,-11],[103,-68],[38,-88],[86,-145],[45,-45],[1,-39],[-10,-60],[29,53],[45,-84],[13,-41],[14,-76],[-5,-49],[-6,-25],[-1,-19],[14,27],[7,21],[3,51],[10,63],[15,1],[12,-38],[24,-163],[9,-33],[4,-52],[-2,-23],[2,-22]],[[35652,54182],[-9,-12],[-23,-27],[-11,-37],[-6,-34],[-14,-24],[-14,-30],[-4,-24],[-13,-19],[-3,-32],[-32,-112],[-13,-50],[-19,-54],[-11,-20],[-16,-32],[-8,-36],[0,-39],[-11,-45],[-6,-40],[-10,-23],[-28,-124],[-1,-43],[-7,-26],[-19,-59],[-13,-36],[-23,-27],[-25,-29],[-9,-31],[-17,-17],[-12,-1],[-20,12],[-28,5],[-13,-3],[-7,16],[-9,36],[-13,25],[-9,-9],[-19,-25],[-21,-15],[-15,5],[-33,17],[-15,9],[-4,16],[-5,11],[-7,-5],[-10,-19],[-13,-20],[-19,-26],[-40,-48],[-11,-17],[-11,10],[-17,9],[-18,1],[-39,30],[-22,22],[-10,28],[-12,11],[-7,8]],[[34402,78779],[-6,-5],[-19,8],[9,18],[7,5],[9,2],[4,-5],[-1,-13],[-3,-10]],[[34370,78823],[-24,-25],[-9,14],[2,17],[13,39],[-1,11],[-14,76],[2,13],[4,5],[21,-16],[3,-21],[-10,-46],[7,-31],[9,-23],[-3,-13]],[[1066,44162],[-4,-4],[-5,22],[7,34],[6,12],[6,-26],[-10,-38]],[[543,43595],[-16,-4],[-16,7],[-9,33],[4,14],[10,-7],[10,-24],[17,-11],[0,-8]],[[32497,62251],[-32,0]],[[32465,62251],[3,13],[14,14],[11,-2],[4,-5],[0,-20]],[[32546,62140],[-4,-1],[-3,5],[-3,9],[-2,8],[1,6],[2,-3],[18,-5],[-2,-7],[-3,-7],[-4,-5]],[[7926,42247],[-5,-4],[-6,10],[-2,16],[2,26],[13,-17],[6,-11],[-8,-20]],[[8385,41736],[-9,-15],[-11,11],[-5,14],[-2,15],[2,19],[26,-3],[8,-8],[-9,-33]],[[7942,42120],[-11,0],[-10,9],[2,59],[3,12],[15,-20],[13,-52],[-12,-8]],[[8522,41653],[40,-27],[7,-44],[-8,-29],[-21,7],[-10,16],[-14,52],[-39,-12],[-27,11],[-15,67],[0,31],[6,19],[29,20],[36,-15],[13,-38],[3,-58]],[[11382,46258],[42,-30],[13,3],[-13,-29],[-42,-16],[-14,-15],[-16,10],[-9,34],[39,43]],[[11372,46122],[-20,-45],[-1,48],[8,6],[7,0],[6,-9]],[[11486,45785],[-10,-9],[-1,61],[13,-12],[5,-9],[-2,-17],[-5,-14]],[[11091,46710],[-27,-14],[-13,3],[-10,47],[3,29],[5,9],[46,-11],[4,-22],[-1,-20],[-7,-21]],[[11090,46413],[-6,-11],[-11,35],[-2,14],[20,18],[11,-9],[-12,-47]],[[10886,41557],[2,-11],[-11,1],[-3,4],[1,20],[7,25],[6,21],[11,20],[21,19],[11,8],[3,-5],[-4,-2],[-35,-41],[-10,-29],[-5,-20],[1,-6],[5,-4]],[[11234,46693],[-18,-5],[-3,29],[6,15],[8,7],[13,-9],[8,-12],[-1,-11],[-13,-14]],[[10921,41255],[3,-21],[-6,10],[-22,20],[-2,17],[27,-26]],[[10880,41365],[2,-16],[-10,11],[-10,29],[-17,36],[-4,15],[13,-14],[9,-21],[17,-40]],[[12140,41160],[-5,-12],[-1,12],[-7,6],[-11,12],[-15,14],[-8,3],[-4,8],[6,4],[9,-6],[12,-13],[15,-13],[9,-15]],[[11952,41277],[0,-11],[-26,55],[10,-4],[16,-40]],[[11526,39828],[-8,-11],[3,15],[-6,32],[-6,5],[6,9],[9,-25],[2,-25]],[[10413,42571],[-5,-7],[7,46],[7,6],[-9,-45]],[[10155,42269],[15,-28],[-20,19],[-25,8],[9,5],[15,0],[6,-4]],[[10119,42260],[-11,-3],[-27,34],[11,0],[15,-21],[12,-10]],[[9708,42709],[-2,-26],[-5,25],[-17,40],[-7,18],[8,-3],[23,-54]],[[9587,42436],[1,-10],[-6,1],[-10,29],[-4,25],[-6,29],[-9,21],[-1,19],[0,30],[10,-46],[9,-37],[8,-31],[8,-30]],[[95611,40180],[31,-36],[34,15],[42,-57],[108,-172],[37,-37],[23,-14],[16,-28],[16,-40],[20,-28],[9,-26],[2,-36],[8,-22],[37,-57],[22,-50],[32,-26],[13,-30],[17,-14],[18,-31],[30,-24],[68,-88],[53,-84],[26,-52],[29,-46],[36,-37],[34,-42],[17,-99],[-9,-35],[-20,-18],[-18,-1],[-17,-12],[-56,64],[-14,9],[-15,-4],[-8,14],[-6,21],[-35,24],[-32,37],[-9,26],[-5,32],[-8,19],[-45,28],[-31,31],[-22,44],[-34,31],[-54,63],[-27,20],[-24,31],[-65,115],[-23,21],[-20,51],[-55,120],[-27,50],[-29,44],[-22,52],[-17,61],[-40,88],[-5,38],[2,38],[-10,25],[-16,15],[-8,26],[1,35],[5,18],[40,-60]],[[96539,38811],[-9,-22],[-11,5],[-8,8],[-6,12],[6,44],[24,-22],[4,-25]],[[94430,40718],[-4,-12],[-2,92],[8,34],[5,-71],[-7,-43]],[[96669,39498],[13,-10],[22,1],[-5,-98],[-32,-16],[-11,1],[-7,21],[-18,14],[1,33],[-18,76],[31,11],[17,20],[0,-18],[2,-22],[5,-13]],[[96262,39919],[-15,-5],[18,52],[1,33],[7,63],[-1,22],[12,-3],[12,-18],[-14,-16],[-5,-28],[0,-34],[6,-7],[-9,-37],[-12,-22]],[[96499,39653],[-15,-4],[-20,41],[-39,21],[-17,36],[-11,43],[22,11],[22,58],[-15,22],[-26,3],[3,23],[42,27],[18,-16],[8,-18],[-2,-92],[19,-29],[20,-65],[-1,-18],[-8,-43]],[[69217,23554],[23,-4],[13,6],[62,76],[16,2],[-2,-59],[16,-26],[-20,-6],[-38,2],[-9,-33],[39,-42],[19,-6],[15,0],[29,10],[23,15],[36,36],[22,14],[41,0],[21,34],[10,10],[24,-1],[21,-13],[13,-31],[7,-37],[-5,-37],[-15,-36],[-26,-22],[6,-26],[-7,-13],[-13,-1],[-12,6],[-16,31],[-20,16],[-48,-1],[-22,-2],[-3,-23],[-12,-18],[-12,-10],[-16,4],[-3,-10],[9,-24],[21,-31],[36,-22],[21,-5],[3,42],[26,4],[23,-12],[16,-30],[-13,-10],[-12,-16],[-3,-21],[-23,-23],[-13,-2],[-44,11],[-26,25],[-6,18],[-16,7],[-18,-23],[-19,-5],[-37,19],[-35,31],[-22,12],[-33,8],[-19,-71],[-26,-30],[-33,-3],[-16,6],[-9,28],[2,29],[5,29],[11,29],[6,32],[-2,30],[-12,22],[6,40],[-12,30],[4,23],[20,16],[-9,13],[-10,4],[-7,18],[-6,22],[7,41],[12,39],[-2,45],[19,42],[17,47],[12,19],[15,3],[7,-13],[3,-26],[-6,-17],[14,-7],[4,-55],[-9,-22],[-1,-22],[-19,-46],[5,-37],[37,-16]],[[69244,23583],[-17,-5],[-5,19],[1,25],[-10,20],[-5,22],[4,20],[28,3],[28,-7],[8,-35],[-21,-48],[-11,-14]],[[64398,25092],[-20,-5],[-18,11],[-11,32],[23,27],[12,-19],[9,-20],[5,-26]],[[55552,86607],[9,0],[3,5],[15,-4],[23,-22],[4,-12],[16,-6],[5,-13],[-18,-39],[-11,0],[-8,4],[-15,-4],[-8,-7],[-3,-16],[0,-34],[-65,-7],[-15,10],[-20,77],[4,20],[14,8],[12,2],[1,-41],[18,4],[5,27],[1,20],[-4,9],[-12,8],[-7,13],[10,21],[18,9],[16,-28],[12,-4]],[[55461,86513],[2,-13],[-11,3],[-8,-4],[-6,-16],[-12,5],[-5,23],[9,34],[22,2],[9,-34]],[[55725,86428],[-2,-13],[-23,-3],[-10,12],[-21,-2],[-3,6],[8,12],[17,8],[22,-3],[12,-17]],[[57721,86714],[-10,-2],[-26,-20],[-40,-5],[-17,-14],[-61,42],[-11,3],[-36,-11],[-34,-31],[-64,-9],[-32,-10],[-20,-14],[-4,33],[9,43],[14,29],[1,18],[-10,-1],[-21,-42],[-11,-49],[-21,-25],[-48,-10],[-47,39],[-23,0],[14,-28],[10,-31],[-1,-17],[-25,3],[-28,-19],[-25,-27],[-11,0],[-17,38],[-30,-18],[-26,-24],[-52,-7],[-31,-31],[-55,-22],[-30,1],[-69,-25],[-23,-40],[-20,-14],[-29,12],[-88,-19],[-84,-25],[-36,1],[-36,11],[-38,-35],[-40,-47],[-45,-16],[-16,6],[13,24],[29,25],[21,35],[2,28],[-13,12],[-19,3],[-24,30],[-23,64],[-13,3],[-6,-17],[-7,-49],[-7,-14],[-12,-11],[-15,-12],[-14,-5],[-51,1],[-7,24],[0,11],[9,32],[-7,6],[7,26],[12,-2],[14,4],[7,13],[0,16],[-20,4],[-1,11],[18,45],[2,12],[-7,3],[-11,-5],[-73,14],[-90,57],[-22,3],[-14,51],[-21,-6],[-32,-30],[-24,22],[-25,15],[-7,24],[0,34],[-2,41],[-7,47],[-5,68],[5,53],[20,39],[8,25],[9,64],[3,74],[-6,26],[2,17],[16,0],[-4,14],[-7,8],[-8,17],[7,9],[19,0],[2,6],[2,8],[-15,43],[-2,21],[-21,62],[-23,60],[-36,43],[13,71],[14,64],[-3,31],[-5,37],[-44,41],[-7,58],[-10,63],[4,38],[7,29],[14,29],[73,92],[4,48],[50,4],[-23,42],[-6,24],[-1,29],[71,19],[27,-16],[62,20],[55,38],[-1,20],[-8,18],[-12,35],[8,10],[21,-7],[-10,17],[2,18],[22,-7],[36,51],[1,39],[63,21],[71,79],[33,25],[32,18],[69,80],[29,3],[15,54],[58,72],[17,9],[27,64],[71,75],[45,95],[25,33],[8,36],[28,3],[25,27],[54,18],[53,-5],[22,-12],[21,4],[-2,32],[-15,20],[12,19],[28,14],[-2,32],[-7,20],[-23,25],[12,58],[2,63],[11,73],[-29,39],[-112,65],[-21,-2],[-24,8],[-26,50],[11,43],[2,16],[-11,-1],[-16,-21],[-36,-23],[-46,18],[-23,-4]],[[56109,86599],[-20,-3],[-29,29],[-3,11],[11,6],[-8,23],[3,10],[22,-18],[12,-21],[-12,-5],[20,-22],[4,-10]],[[55893,88272],[3,-11],[17,3],[21,20],[16,-9],[-2,-28],[-10,1],[-3,4],[-14,-16],[-2,-9],[-16,-7],[-29,28],[-18,45],[42,0],[-4,-11],[-1,-10]],[[56159,86618],[35,-13],[15,5],[17,-30],[-29,-20],[-2,-24],[12,-14],[4,-22],[-29,0],[-13,18],[-6,23],[-13,16],[-18,13],[9,16],[5,24],[13,8]],[[55958,86710],[-4,-27],[-19,3],[-19,-5],[-15,27],[-9,45],[3,9],[12,10],[9,-24],[42,-38]],[[56064,86486],[-28,-20],[-10,5],[3,33],[16,15],[28,2],[-9,-35]],[[56007,86467],[-24,-6],[-15,17],[6,12],[17,14],[18,-2],[4,-16],[-6,-19]],[[56902,89280],[-42,-19],[-33,12],[-1,37],[21,18],[37,7],[52,-18],[7,-10],[-29,-7],[-12,-20]],[[99999,42529],[-42,-77],[-15,-39],[-13,-44],[-36,-47],[-15,-63],[1,-63],[36,66],[40,54],[12,11],[13,0],[-1,-19],[-6,-18],[-5,-48],[11,-45],[-30,5],[-29,-4],[-35,-25],[-34,-11],[-13,-1],[-13,9],[-8,13],[-6,29],[-6,5],[-28,-1],[-40,-59],[-14,-49],[-16,-3],[-18,11],[-23,-38],[-26,-14],[-12,32],[-7,40],[-10,29],[-29,7],[4,36],[8,15],[7,21],[5,24],[14,-16],[14,-9],[16,18],[17,1],[17,53],[26,33],[37,26],[37,19],[19,3],[18,11],[32,50],[21,25],[24,15],[22,9],[20,-8],[17,5],[42,35],[0,-9]],[[99521,41836],[0,-26],[8,-11],[8,-2],[21,-48],[31,-42],[19,-32],[1,-28],[-6,-29],[8,-51],[4,-54],[14,-86],[-20,-16],[-30,-2],[-7,-15],[-11,8],[-25,-6],[-25,-28],[-23,-38],[-27,0],[-30,-8],[-30,5],[-21,21],[-38,22],[-49,19],[-21,15],[-17,25],[-16,63],[-3,31],[3,30],[15,10],[12,15],[1,19],[6,14],[7,5],[3,9],[-5,32],[-1,29],[29,53],[31,45],[56,42],[34,-4],[52,33],[17,15],[16,-10],[9,-24]],[[0,42174],[30,49],[9,7],[10,-45],[-12,-49],[-30,-43],[-7,-22],[0,103]],[[99999,42071],[-21,-21],[-8,21],[10,50],[19,52],[0,-42],[0,-60]],[[99579,40913],[0,-25],[-36,-16],[-12,20],[-8,4],[-21,-36],[-6,-15],[-2,-11],[-6,-6],[-39,-17],[-17,17],[12,12],[14,23],[14,-3],[15,22],[14,33],[21,8],[14,13],[24,-10],[19,-13]],[[281,41487],[-8,-8],[-6,2],[-7,9],[-4,16],[9,14],[13,-16],[3,-17]],[[344,41339],[-3,-10],[-15,17],[-6,12],[16,9],[8,-3],[0,-25]],[[486,41501],[-16,-6],[-14,25],[9,26],[13,-7],[7,-25],[1,-13]],[[290,41893],[-7,-20],[-6,7],[8,33],[1,15],[-12,17],[-1,12],[3,8],[15,-20],[9,-15],[1,-8],[-2,-15],[-9,-14]],[[407,40802],[-3,-5],[-8,6],[-6,8],[-1,8],[3,10],[6,6],[3,-2],[-2,-3],[-3,-4],[0,-11],[5,-6],[4,-1],[2,-6]],[[56,40932],[0,-17],[-4,1],[-5,8],[-2,-4],[-2,-5],[-1,-12],[-1,-7],[-4,3],[0,11],[1,9],[2,12],[7,11],[9,-10]],[[99231,41965],[-15,-9],[8,45],[8,15],[5,3],[9,3],[-4,-32],[-11,-25]],[[99839,41839],[-10,-16],[-4,79],[9,0],[7,-8],[4,-20],[-6,-35]],[[99818,41415],[-2,-5],[-24,46],[0,19],[5,16],[9,15],[9,-26],[7,-44],[-4,-21]],[[99673,41630],[-14,-10],[-8,35],[11,35],[12,4],[6,-36],[-7,-28]],[[99999,42315],[-4,-1],[0,11],[-99995,19],[16,28],[12,5],[-8,-27],[0,-14],[-20,-21],[99999,0]],[[0,42538],[9,15],[6,0],[-3,-13],[-12,-11],[0,9]],[[99199,44639],[-10,-6],[-18,5],[-4,9],[6,2],[11,6],[14,-3],[3,-6],[-2,-7]],[[98507,39346],[-2,-7],[-8,2],[-2,13],[5,7],[7,-4],[0,-11]],[[358,39937],[0,-1],[-1,0],[-2,2],[-2,4],[0,4],[0,4],[1,0],[2,-4],[1,-4],[1,-5]],[[60145,60055],[5,1],[38,28],[37,5],[36,-20],[23,-5],[11,10],[10,26],[9,41],[15,23],[20,5],[26,-47],[43,-125],[11,-7],[7,3],[21,100],[17,78],[31,144],[18,83],[16,-24],[17,-42],[18,-20],[20,-12],[10,-2],[12,-17],[44,-103],[15,-24],[20,-2],[86,33],[51,60],[7,24],[14,0],[17,-27],[7,-25],[11,-34],[20,-5],[49,24],[23,14],[21,-12],[26,-9],[16,0],[38,-34],[47,11],[22,-2],[22,-15],[37,-53],[47,-65],[68,-47],[14,-19],[33,-74],[51,-142],[67,-136],[73,-107],[39,-75],[26,-91],[26,-83],[26,-35],[24,-29],[26,-63],[18,-52],[24,-60]],[[61771,59024],[-27,-82],[-37,-110],[-42,-127],[-13,-32],[-37,-77],[-7,-22],[-7,-56],[0,-101],[5,-130],[4,-119],[21,-14],[23,-9],[27,16],[31,13],[40,8],[43,24],[26,20],[27,-2],[24,-21],[12,-19],[17,-6],[21,1]],[[56756,85178],[2,23],[37,113],[7,89],[13,13],[4,12],[-6,29],[-38,18],[-15,-3],[-14,-30],[-14,-22],[-34,-14],[-29,23],[-67,32],[-18,41],[-4,42],[-35,40],[-15,48],[6,33],[32,22],[9,19],[-40,-3],[-9,5],[-2,17],[-18,58],[16,23],[7,22],[-13,19],[4,22],[10,22],[-6,50],[40,27],[40,19],[83,10],[-8,46],[34,2],[57,56],[56,-10],[82,38],[157,0],[22,22],[-4,22],[0,24],[30,-7],[49,4],[186,-46],[45,0],[63,-47],[34,-13],[101,0],[154,-21],[31,32],[3,9]],[[56282,85611],[20,-14],[18,4],[18,10],[40,-9],[92,-71],[8,-19],[-54,-8],[-13,-22],[-13,-15],[-15,-5],[-27,-30],[-35,-29],[-8,-17],[-64,3],[-35,-11],[-29,-33],[-11,-62],[-21,-49],[-21,-18],[-22,-3],[-6,19],[3,18],[46,69],[10,23],[-23,10],[-20,24],[-42,28],[-8,22],[10,2],[10,7],[11,19],[5,21],[-34,64],[18,10],[21,-2],[22,-19],[24,22],[11,3],[17,-8],[17,42],[40,14],[20,13],[20,-3]],[[56367,85729],[-23,-28],[-13,11],[-7,14],[-30,-65],[-33,-11],[-19,13],[2,24],[-19,63],[-29,19],[-40,1],[-30,26],[113,18],[12,30],[23,32],[17,3],[15,-7],[2,-25],[4,-10],[51,-13],[20,-41],[8,-50],[-24,-4]],[[56484,85570],[-23,-6],[-55,41],[13,27],[15,11],[47,-17],[6,-42],[-3,-14]],[[60724,62214],[84,-333],[34,-196],[30,-206],[23,-308],[21,-157],[34,-78],[23,-146],[21,-6],[14,-40],[25,-138],[18,-51],[9,44],[-1,25],[-7,43],[7,54],[14,33],[31,-44],[18,-34],[5,-68],[7,-37],[33,-80],[28,-23],[37,-6],[30,-17],[25,-29],[46,-81],[104,-71],[85,-216],[49,-151],[163,-227],[28,-110],[15,-106],[34,5],[59,-117],[17,-89],[48,-32],[9,52],[23,-43],[9,-67]],[[61976,59163],[-31,-26],[-34,-24],[-4,1],[-12,-31],[-16,-84],[-17,-25],[-10,-2],[-53,79],[-8,4],[-11,-15],[-9,-16]],[[61132,61107],[9,-56],[-27,21],[-5,12],[12,22],[3,13],[8,-12]],[[61150,60884],[11,-30],[8,3],[7,10],[4,21],[44,-42],[-3,-29],[-26,-1],[-30,12],[-28,-4],[-33,12],[-8,48],[21,-23],[11,6],[2,6],[-15,33],[-21,6],[1,26],[10,10],[6,12],[-13,36],[24,-9],[15,-21],[10,-25],[3,-57]],[[52426,54008],[7,-3],[41,2],[12,-30],[-1,-45],[-43,-131],[-8,-55],[-17,-46],[-14,-4],[-49,27],[-9,17],[-3,22],[5,52],[4,16],[23,10],[8,9],[13,56],[4,51],[10,39],[17,13]],[[52664,52437],[2,13],[-25,35],[-18,3],[-16,11],[13,90],[17,80],[25,61],[13,14],[4,30],[20,99],[25,80],[-8,81],[6,136]],[[52722,53170],[7,-4],[1,-13],[2,-19],[9,-16],[31,-27],[91,0],[54,0],[80,0],[85,0],[64,0]],[[25607,59561],[-7,-8],[5,-58],[-16,-35],[-14,-25],[-26,-7],[-44,-2],[-66,28],[-48,39],[-26,0],[8,-13],[21,-8],[27,-27],[-8,-8],[-99,57],[-114,112],[-68,18],[-78,30],[-46,71],[-35,30]],[[56986,70077],[21,-70],[43,-12],[142,62],[157,-62],[86,-24],[133,-54],[81,-95],[23,-12],[58,2],[38,-56],[152,-27],[81,-62],[46,-50],[28,-15],[24,2],[33,19],[42,35],[45,48],[94,125],[33,22],[22,-6],[27,2],[11,33],[14,23],[8,27],[15,31],[48,9],[98,54],[-11,-25],[-89,-61],[38,-8],[39,21],[45,13],[8,26],[6,49],[9,6],[30,-9],[92,-74],[23,-2],[65,41],[13,9],[21,-23],[48,-93],[-17,2],[-51,80],[-4,-40],[-29,-70],[36,-30],[30,-11],[16,-39],[10,-35],[29,15],[21,47],[-11,27],[-8,27],[10,1],[20,-23],[58,-89],[20,-19],[22,3],[48,26],[13,-4],[63,33],[8,-25],[10,-24],[51,27],[80,0],[66,29],[76,71],[6,11]],[[59695,68823],[-15,-26],[-32,-93],[-33,-296],[-47,-231],[-5,-144],[-8,-52],[-23,-73],[-27,-72],[-49,37],[-79,126],[-46,120],[-49,77],[-47,103],[-13,73],[1,48],[-21,115],[-15,55],[-57,123],[-16,65],[-13,29],[-12,41],[-21,160],[-23,101],[-25,-28],[4,-43],[-22,-59],[-14,-68],[11,-56],[46,-85],[10,-37],[11,-80],[-2,-110],[7,-37],[35,-81],[13,-48],[7,-42],[12,-38],[34,-71],[50,-134],[47,-91],[35,-44],[14,-44],[3,-113],[-2,-55],[30,-101],[11,-52],[29,-42],[13,-48],[12,-78],[18,-231],[26,-56],[77,-303],[66,-192],[32,-144],[48,-174],[95,-383],[56,-118],[22,-66],[41,-51],[44,-74],[-42,7],[-10,-5],[-15,-12],[-7,-45],[-3,-37],[5,-194],[11,-98],[37,-188],[28,-56],[14,-36],[18,-27],[88,-63],[52,-136],[115,-170],[11,-47],[0,-11]],[[27687,49891],[6,8],[40,29],[17,29],[20,26],[18,41],[11,39],[28,180],[26,114],[-5,54],[-21,74],[-5,109],[2,33],[-3,25],[-14,-45],[4,-160],[-13,-72],[-17,-18],[-12,13],[7,117],[-13,-22],[-21,-79],[-34,-59],[-1,-19],[-9,-25],[-26,23],[-20,24],[-65,132],[-43,28],[-25,46],[-6,19],[-3,27],[26,27],[28,37],[2,82],[0,65],[-20,109],[9,144],[-5,56],[-23,119],[17,60],[60,44],[20,29],[13,95],[14,56],[27,-22],[21,2],[-28,21],[-24,85],[-3,40],[44,116],[24,30],[28,62],[25,93],[6,147],[-10,105],[-8,111],[15,28],[36,15],[30,36],[15,33],[36,-5],[41,51],[66,26],[91,58],[20,52],[-9,92]],[[28094,52681],[9,-12],[25,-44],[16,-43],[26,-27],[21,-22],[55,-88],[37,-44],[40,-41],[57,-42],[36,7],[8,-32],[7,-34],[13,-19],[21,-17],[12,-5],[4,-9],[12,-122],[8,-17],[29,-20],[35,-7],[14,4],[31,-34],[23,-16],[25,-12],[17,-3],[8,5],[3,12],[14,-2],[21,-16],[30,-3],[19,15],[2,25],[2,43],[7,15],[21,25],[11,-5],[57,-54],[11,-19],[15,-38],[26,-55],[29,-36],[44,-15],[42,-58],[50,-40]],[[27741,50130],[-5,-22],[-27,2],[-7,7],[0,25],[6,81],[7,34],[22,32],[18,16],[23,-3],[25,-29],[-29,-55],[-16,-8],[-6,-7],[-11,-73]],[[28080,52564],[-15,-4],[-7,28],[19,32],[6,6],[-3,-62]],[[24907,51398],[-15,-1],[-43,56],[3,55],[17,37],[56,18],[23,-34],[-2,-66],[-19,-48],[-15,-9],[-5,-8]],[[25161,51318],[-33,-24],[-11,11],[-7,11],[-2,15],[19,35],[17,20],[16,41],[29,24],[9,-6],[5,-8],[2,-14],[-9,-33],[-18,-23],[-17,-49]],[[24604,51577],[-28,-10],[-24,20],[-10,31],[-2,46],[2,15],[52,16],[17,-38],[0,-57],[-7,-23]],[[24882,51071],[-11,-1],[-16,24],[12,45],[13,-11],[9,-12],[5,-18],[-12,-27]],[[24646,51857],[18,-37],[9,-106],[56,-112],[7,-62],[-5,-29],[2,-11],[27,-44],[18,-47],[-30,-108],[-62,-46],[-67,2],[-13,12],[-18,41],[-4,37],[11,35],[34,54],[53,48],[6,37],[-21,35],[-14,71],[-34,50],[-16,152],[-11,8],[-23,-21],[-11,18],[-2,10],[25,35],[5,24],[36,12],[15,-20],[9,-38]],[[24840,51650],[-13,-17],[-52,20],[-16,33],[13,46],[11,18],[31,-17],[32,-51],[-6,-32]],[[30061,63201],[12,10],[8,34],[11,31],[14,17],[17,10],[32,-1],[44,-27],[13,1],[43,24],[35,14],[34,-16],[13,-21],[28,-33],[14,-10],[43,1],[12,-3],[37,-55],[30,-22],[18,-1],[32,21],[16,-1],[18,-47],[4,-67],[15,-61],[24,-39],[115,16],[25,-32],[-8,-27],[-17,-14],[-54,6],[-24,-3],[-5,-26],[0,-25],[32,-6],[31,-12],[32,-20],[33,-13],[36,-9],[36,-14],[61,-49],[66,-109],[18,-25],[12,-34],[-6,-43],[-24,-69],[-13,-22],[-20,-14],[-13,-28],[-13,-49],[-8,-4],[-9,2],[-16,28],[-12,42],[-32,39],[-38,-5],[-56,24],[-34,-12],[-34,-2],[-35,12],[-35,4],[-35,-15],[-34,-25],[-12,-17],[-22,-39],[-12,-15],[-82,-20],[-24,29],[-22,40],[-32,5],[-46,-30],[-28,-11],[-12,-14],[-3,-14],[0,-56],[-7,-33],[-45,-127],[-25,-90],[-10,-28],[-12,-6],[-23,52],[-14,19],[-17,9],[-7,27],[0,39],[-5,38],[-10,29],[-16,20]],[[32977,60627],[-26,-13],[-11,100],[-18,72],[3,45],[3,17],[38,-28],[12,-33],[7,-89],[-8,-71]],[[61976,59163],[4,-27],[47,-114],[15,-56],[16,-102],[-9,-56],[-12,-37],[-18,-33],[-62,-81],[-69,-52],[-44,-103],[-33,7],[5,-39],[12,-5],[19,8],[38,30],[34,14],[37,1],[33,-13],[23,-38]],[[41679,99979],[267,-35],[141,-40],[30,1],[191,-15],[182,-19],[302,-51],[42,-16],[-32,-14],[-75,-9],[-386,-16],[-700,-21],[-401,-39],[-127,-2],[-11,-59],[54,-3],[89,8],[314,59],[117,9],[219,-5],[285,-22],[114,8],[205,-6],[239,17],[283,37],[77,-82],[104,-81],[83,9],[70,-5],[24,-26],[39,-12],[80,6],[245,-23],[168,-42],[63,-19],[30,-28],[18,-22],[-27,-28],[-105,-49],[-133,-45],[-179,-34],[-207,-22],[-1588,-73],[-54,-17],[-31,-44],[21,-57],[74,-9],[173,32],[300,31],[221,-2],[527,-26],[155,-68],[82,-105],[183,24],[39,18],[29,31],[22,33],[18,36],[19,24],[21,13],[45,11],[105,13],[274,13],[66,-4],[48,-49],[10,-28],[3,-38],[-1,-45],[-6,-55],[-24,-54],[-76,-94],[-61,-52],[-66,-37],[-126,-84],[-44,-23],[-138,-99],[-35,-45],[-2,-34],[24,-6],[40,31],[15,23],[26,23],[205,62],[44,17],[133,74],[86,28],[70,29],[37,20],[206,146],[107,43],[112,0],[20,-73],[135,-12],[59,3],[94,-18],[41,-14],[70,-8],[73,-17],[63,18],[19,12],[62,54],[83,47],[77,59],[26,15],[41,13],[42,5],[115,28],[29,2],[62,-9],[273,-5],[150,-14],[208,-40],[145,-21],[67,-20],[97,-41],[79,-43],[37,-13],[-2,-13],[-27,-19],[-195,-66],[-64,-45],[-185,-83],[-90,-29],[-98,-11],[-109,-2],[-71,-12],[-10,-12],[50,-34],[22,-25],[-3,-22],[-53,-32],[-20,-8],[-192,-24],[-97,-41],[-126,-5],[-89,5],[-123,-44],[48,-36],[44,-16],[137,-32],[1,-19],[-66,-38],[-89,-44],[-105,-31],[-40,-5],[-50,8],[-46,-2],[-101,-14],[-97,-2],[-173,20],[-93,23],[-49,8],[-62,-2],[-24,-9],[-98,-56],[-48,-38],[-31,-39],[-13,-42],[5,-46],[12,-32],[19,-17],[23,-10],[41,-6],[89,6],[35,-3],[11,-10],[19,-29],[-3,-28],[-17,-39],[-12,-45],[-9,-52],[5,-29],[36,-6],[17,2],[19,-9],[23,-21],[17,-22],[11,-23],[-6,-19],[-23,-15],[-52,-17],[-128,-33],[-13,-10],[-10,-21],[-7,-30],[-16,-28],[-23,-25],[-22,-15],[-42,-6],[-54,-1],[-61,-14],[-144,-84],[-2,-9],[54,-27],[-2,-24],[-67,-101],[-18,-50],[-14,-68],[-24,-58],[-33,-47],[-33,-55],[-31,-61],[5,-47],[41,-33],[56,26],[69,86],[74,38],[81,-12],[70,-17],[90,-34],[76,-21],[65,-28],[26,-23],[27,-33],[1,-20],[-48,-12],[-16,4],[-119,54],[-58,14],[-77,-16],[-67,-25],[60,-99],[65,-45],[117,-21],[62,-22],[44,-28],[35,-14],[47,6],[64,28],[88,1],[40,-13],[28,-26],[13,-47],[-3,-70],[-9,-52],[-16,-35],[-32,-47],[-27,-9],[-37,3],[-35,9],[-32,17],[-49,13],[-98,14],[-98,31],[-56,8],[-117,-4],[-127,-20],[-5,-25],[-182,-89],[-37,1],[-50,30],[-71,30],[-41,0],[-62,-38],[-15,-14],[1,-14],[45,-32],[18,-7],[24,-6],[80,-8],[36,-8],[33,-100],[52,-61],[23,-13],[19,-5],[65,3],[83,20],[28,-16],[61,-20],[36,-6],[43,1],[49,-7],[67,-57],[-26,-72],[42,-57],[67,-59],[15,-21],[7,-39],[1,-26],[5,-24],[9,-21],[9,-42],[9,-62],[-2,-51],[-15,-39],[-27,-29],[-42,-18],[-34,5],[-26,27],[-37,29],[-48,31],[-80,3],[-117,-90],[-52,-5],[-42,-9],[-46,-39],[-66,-24],[-59,9],[-103,46],[37,-30],[54,-36],[33,-19],[25,-4],[27,4],[39,15],[88,41],[23,6],[20,-3],[16,-12],[19,-35],[21,-58],[-3,-49],[-26,-41],[-23,-26],[-18,-12],[0,-9],[49,-10],[69,53],[22,66],[32,76],[56,25],[64,-25],[52,-71],[72,-131],[31,-14],[39,-31],[17,-39],[-4,-45],[-9,-33],[-12,-21],[-15,-13],[-27,-8],[-50,-7],[-111,14],[-58,0],[7,-45],[-117,-39],[-133,-15],[-125,30],[-104,47],[34,65],[20,72],[-51,48],[-11,1],[18,-74],[-15,-28],[-57,-35],[-40,-15],[-3,-10],[19,-8],[13,-15],[6,-23],[-7,-23],[-19,-24],[-11,-19],[-2,-16],[18,-20],[38,-22],[41,-11],[191,-5],[77,-13],[182,-53],[8,-17],[-31,-96],[-17,-92],[-35,-17],[-191,-4],[-62,-14],[-90,-42],[-87,-51],[-45,-1],[-178,45],[-68,29],[-147,84],[-110,128],[-51,-53],[-30,-26],[-32,-13],[-31,-2],[-30,9],[-34,20],[-56,47],[-68,46],[-47,22],[-1,-6],[27,-27],[41,-32],[103,-92],[37,-23],[-4,-16],[-65,-15],[-79,-31],[-39,-24],[-60,-56],[-20,-9],[-90,-14],[-29,3],[-67,32],[-99,20],[-59,18],[-82,33],[29,-36],[157,-55],[17,-17],[-32,-33],[-20,-12],[-37,-3],[-56,7],[-56,-1],[-58,-10],[-24,-12],[8,-15],[13,-14],[20,-12],[18,0],[44,38],[33,2],[88,-9],[89,29],[64,13],[48,3],[175,44],[37,50],[58,20],[131,15],[126,-8],[65,-6],[53,-47],[70,-34],[59,-37],[69,-13],[40,-50],[111,-57],[71,-12],[44,-27],[4,-114],[5,-49],[-19,-136],[-57,-31],[11,-72],[-15,-58],[-57,22],[-58,38],[-139,59],[-130,38],[-50,35],[-59,26],[-81,109],[-52,135],[-23,67],[-44,4],[-57,-18],[-49,-19],[-24,-32],[-168,-45],[-61,-30],[-35,0],[-125,-45],[50,-22],[23,-3],[51,12],[31,16],[114,44],[92,7],[33,19],[70,26],[48,8],[7,-7],[5,-12],[33,-165],[-14,-44],[-38,-19],[-80,-31],[-21,-15],[23,-27],[76,25],[50,27],[26,-10],[43,-41],[49,-21],[123,-64],[59,-35],[82,-34],[93,-47],[24,-17],[85,-24],[18,-8],[36,-83],[29,-10],[85,-5],[-15,-32],[-83,-72],[-43,-22],[-10,-15],[4,-25],[2,-42],[17,-78],[20,72],[13,34],[19,10],[17,2],[58,32],[58,-17],[15,-81],[8,-76],[-5,-66],[6,-101],[-2,-35],[14,-29],[14,-124],[14,-37],[-29,-33],[-88,-14],[-35,16],[-87,-6],[0,30],[-5,33],[0,24],[-6,21],[-4,122],[-25,-31],[-1,-24],[-7,-25],[-15,-132],[-22,-32],[-70,8],[-69,-5],[-38,5],[-129,60],[-50,54],[-44,82],[-28,76],[-10,71],[-31,57],[-51,45],[-61,36],[-70,28],[-62,35],[-53,44],[-58,33],[-64,25],[-90,10],[-133,-4],[-89,27],[-22,-2],[-21,-14],[16,-40],[103,-18],[79,-5],[105,3],[64,-10],[24,-23],[16,-42],[9,-59],[-21,-47],[-76,-52],[-39,-25],[-117,-47],[-39,-10],[-97,-4],[-75,5],[-98,23],[-55,5],[-115,3],[-27,-8],[30,-25],[49,-14],[34,-17],[4,-32],[-13,-48],[-13,-33],[-21,-25],[-75,-47],[-31,-15],[-141,-50],[-10,-10],[33,2],[89,17],[26,0],[146,-43],[116,2],[236,40],[19,-1],[16,-6],[15,-15],[16,-23],[-19,-23],[-54,-22],[-84,-22],[-36,-15],[-35,-22],[-64,-53],[-19,-56],[68,-21],[30,27],[36,59],[33,35],[76,24],[94,-12],[72,14],[148,58],[26,4],[217,-34],[197,-65],[103,-25],[138,-14],[246,7],[22,-11],[-8,-23],[-14,-20],[-41,-27],[-50,-18],[-31,-5],[-27,-13],[-59,-13],[-15,-10],[21,-45],[-10,-7],[-52,-1],[-88,-29],[-72,2],[-15,-5],[14,-10],[14,-21],[16,-32],[-9,-22],[-32,-13],[-24,-4],[-85,18],[-14,-3],[13,-13],[7,-20],[2,-28],[-21,-23],[-43,-18],[-81,-51],[-35,-15],[-74,-12],[-15,-7],[30,-39],[-4,-16],[-49,-42],[-76,-27],[-10,-14],[-7,-38],[-6,-15],[-20,-22],[-71,-42],[-51,-21],[-25,-17],[-31,-28],[-40,-16],[-47,-1],[-45,-11],[-74,-30],[-51,-10],[-163,-53],[-76,-8],[-66,-19],[-137,-50],[-64,-16],[-45,-19],[-49,-5],[-80,12],[-43,1],[-27,-8],[-24,-15],[-40,-42],[-34,-4],[-112,34],[3,-15],[29,-36],[-1,-26],[-67,-26],[-36,-7],[-52,11],[-70,28],[-90,59],[-109,89],[-53,30],[4,-29],[12,-28],[20,-27],[5,-20],[-13,-12],[-16,-6],[-20,0],[-3,-7],[33,-43],[25,-44],[-2,-41],[-31,-39],[-26,-23],[-22,-7],[-130,-98],[-37,-13],[-16,-12],[-14,-18],[-38,-81],[-15,-25],[-30,-32],[-13,-6],[-4,-13],[6,-21],[-9,-34],[-22,-49],[-76,-133],[-61,-125],[-27,-41],[-20,-17],[-12,6],[-30,-3],[-15,-22],[-13,-40],[-15,-30],[-16,-21],[-122,-89],[-32,-17],[-28,11],[-34,-4],[-70,47],[-12,17],[-45,39],[2,-20],[8,-11],[6,-17],[16,-20],[34,-105],[-27,-22],[-25,-25],[-63,-42],[-68,-70],[-25,-19],[-5,57],[3,17],[-39,27],[1,-19],[-4,-19],[-27,-74],[-8,-13],[-14,3],[-30,-14],[-30,7],[-26,33],[-11,18],[-47,-48],[-23,1],[-4,-40],[-22,-37],[-30,-16],[-41,1],[-25,-21],[-55,23],[-13,44],[44,60],[12,25],[-8,30],[11,39],[84,125],[57,63],[-3,12],[-77,13],[-68,22],[-66,8],[-29,-8],[46,-36],[66,-35],[-33,-34],[-27,-36],[-29,-97],[-19,-40],[-72,46],[-33,16],[21,-51],[63,-48],[4,-16],[0,-57],[-121,-50],[-125,-8],[-91,-14],[-152,-18],[-59,0],[-5,-19],[149,-89],[22,-16],[-21,-30],[-31,-19],[-48,-65],[-25,-23],[-63,-31],[-115,35],[-59,-16],[-57,11],[-1,-38],[17,-27],[17,-69],[38,6],[48,21],[38,-52],[24,-87],[43,-45],[19,-34],[8,-33],[-27,-32],[-55,-46],[-62,-8],[4,-36],[-27,-26],[-56,7],[-26,18],[-28,9],[-112,10],[113,-70],[40,-32],[18,19],[39,5],[58,-18],[-10,-118],[26,-95],[3,-21],[-62,-57],[-1,-54],[-36,-15],[-40,4],[-2,-59],[-27,-36],[5,-23],[8,-20],[-25,-38],[-22,-45],[-31,-39],[-17,4],[-50,-3],[-60,3],[-49,52],[-20,17],[-23,11],[9,-33],[14,-20],[45,-37],[82,-46],[-2,-33],[-22,-14],[-52,-89],[-18,-1],[-23,-23],[-72,7],[-30,9],[-88,-5],[-30,7],[-26,-3],[24,-25],[51,-23],[57,-23],[87,-17],[-3,-32],[-22,-27],[13,-39],[-10,-29],[-4,-34],[-20,-78],[23,-54],[26,-26],[-3,-35],[12,-55],[-38,-50],[-33,2],[-45,-11],[-16,-22],[73,-20],[-7,-38],[-19,-46],[-21,-100],[-42,-172],[-20,-171],[-91,-141],[-32,-3],[-8,-6],[-45,7],[-69,33],[-54,10],[-36,1],[-5,-16],[30,-27],[46,-10],[37,-18],[66,-16],[23,-31],[16,-33],[-3,-19],[0,-21],[12,-117],[-31,-40],[-24,-37],[-82,5],[-15,13],[-79,38],[5,-18],[57,-52],[20,-26],[-13,-5],[-23,-2],[-33,-18],[-58,10],[3,26],[11,27],[-27,-4],[-29,-14],[-18,5],[-14,-1],[-8,13],[-12,53],[14,27],[48,69],[15,37],[-13,16],[-34,-39],[-36,-63],[-16,-38],[-22,-8],[-55,20],[-158,88],[5,53],[-2,45],[46,5],[34,20],[30,23],[33,43],[31,71],[-4,6],[-90,-91],[-56,-30],[-27,-6],[-14,14],[-44,29],[-29,13],[-67,22],[-12,11],[-19,9],[-27,93],[35,113],[23,32],[15,38],[9,50],[-6,22],[-20,-8],[-9,-17],[1,-27],[-11,-18],[-80,-43],[-79,-35],[-38,-33],[-24,-26],[-19,-25],[-29,2],[-41,-5],[-27,-16],[-41,10],[-26,24],[-32,3],[-35,-12],[-25,1],[2,-16],[16,-41],[-27,-3],[-52,-1],[-26,11],[-20,16],[-17,22],[10,28],[83,52],[38,30],[-24,10],[-80,-9],[-14,7],[-53,-4],[2,77],[-13,19],[-1,9],[-18,21],[-18,6],[-11,7],[-90,18],[-12,43],[-6,44],[-17,55],[-43,14],[-24,24],[19,24],[8,31],[-20,14],[-13,22],[2,14],[-16,38],[-5,30],[18,27],[51,32],[17,13],[9,14],[58,23],[-50,16],[-31,3],[-23,-8],[-21,-31],[-19,-20],[-77,-7],[-11,11],[-5,43],[4,34],[32,47],[-37,23],[-33,8],[-39,22],[-35,23],[-30,27],[-29,31],[-10,4],[11,34],[6,27],[1,58],[-12,25],[26,50],[36,54],[78,82],[-83,-39],[-68,-86],[-15,-4],[-5,16],[-26,55],[-19,15],[-9,17],[-39,29],[-17,23],[-24,44],[-34,52],[-48,103],[-78,119],[-20,67],[25,84],[-27,58],[74,27],[106,31],[55,25],[32,7],[68,5],[22,25],[-37,-6],[-25,3],[-2,12],[9,21],[6,27],[-13,-5],[-66,-46],[-97,-37],[-76,-21],[-13,1],[-26,-13],[-16,-3],[-11,3],[-27,36],[-8,23],[49,63],[36,86],[48,56],[33,7],[57,-3],[20,-5],[-7,33],[3,16],[46,20],[53,8],[38,-6],[24,-39],[31,-72],[41,-24],[-2,34],[-21,45],[-8,68],[-27,29],[-22,14],[-61,-7],[-36,50],[-9,19],[0,24],[-37,72],[-12,36],[-19,47],[-10,3],[13,-60],[17,-42],[24,-93],[12,-38],[-16,-29],[-31,-30],[-27,-17],[-64,-21],[14,46],[8,45],[-32,-16],[-30,-33],[-10,-45],[-20,-41],[-57,-101],[-23,-56],[-21,-27],[-24,-8],[-21,22],[-18,51],[-9,41],[-1,104],[3,49],[-10,65],[-31,153],[-7,54],[-52,29],[-1,9],[-14,31],[-10,31],[9,12],[12,8],[78,46],[58,51],[70,80],[28,25],[102,19],[45,3],[-1,14],[-15,6],[-68,-4],[-92,-32],[-16,-12],[-40,-50],[-31,-27],[-87,-62],[-56,0],[-58,74],[-65,-14],[-44,5],[-13,11],[-10,102],[36,119],[-38,1],[-8,5],[-20,27],[-13,8],[9,14],[94,56],[141,111],[61,43],[37,19],[29,21],[34,47],[11,20],[20,16],[40,19],[44,28],[72,63],[9,23],[-15,5],[-34,-21],[-68,-58],[-49,-32],[-166,-145],[-71,-52],[-38,-34],[-30,-32],[-32,-23],[-33,-14],[-71,-10],[-35,-12],[-21,9],[-10,69],[7,40],[-3,40],[18,58],[26,40],[11,22],[5,16],[55,42],[30,18],[21,42],[121,15],[31,-1],[16,5],[13,13],[-12,9],[-36,7],[-97,-2],[-89,8],[-40,7],[-20,-4],[-32,12],[-35,23],[-55,86],[22,110],[2,53],[69,46],[37,15],[53,35],[71,59],[84,36],[43,7],[36,-6],[131,-51],[68,-10],[60,13],[75,-18],[132,-74],[25,11],[-7,18],[-148,78],[1,23],[38,6],[40,22],[-22,14],[-98,-12],[-29,-18],[-95,-10],[-49,16],[-45,8],[-67,33],[-56,-11],[-35,-13],[-62,-13],[-23,-8],[-122,-106],[-51,-22],[-37,7],[26,69],[7,27],[0,30],[11,40],[62,77],[40,84],[16,53],[31,6],[42,-8],[126,-34],[105,-40],[77,-11],[51,-1],[22,13],[17,22],[7,15],[5,32],[6,12],[17,13],[34,49],[11,34],[-11,20],[-24,-2],[-45,-13],[-6,-6],[1,-10],[-44,-54],[-47,-12],[-110,-18],[-50,-1],[-89,25],[-13,9],[-9,19],[-109,-5],[-33,-5],[-26,2],[13,32],[34,35],[48,114],[41,29],[80,27],[84,-4],[145,-88],[44,-8],[40,7],[96,30],[18,12],[34,36],[40,63],[-2,15],[-61,-35],[-33,-10],[-28,0],[26,115],[10,87],[9,22],[82,-7],[111,12],[26,19],[0,9],[-45,11],[-21,25],[-38,-8],[-50,-16],[-62,2],[5,37],[46,79],[5,36],[18,72],[1,37],[24,36],[72,25],[31,16],[1,16],[-43,64],[11,18],[34,16],[13,11],[-9,8],[-31,7],[-49,-14],[-53,-7],[-47,21],[-37,10],[-24,-3],[-63,-36],[-23,-1],[-27,10],[-183,31],[-22,11],[-65,54],[-54,36],[-72,39],[-93,30],[-114,20],[-68,19],[-34,27],[-58,59],[-44,50],[-8,24],[26,30],[26,22],[50,18],[85,-6],[46,-8],[50,-17],[38,-3],[79,4],[80,-10],[48,-12],[63,-25],[172,-106],[72,-37],[32,-4],[129,-39],[20,0],[53,19],[6,12],[-18,11],[-57,10],[-67,43],[-42,34],[-4,57],[5,32],[10,15],[8,48],[-39,29],[-27,9],[-72,43],[-6,10],[34,5],[34,-3],[73,-21],[38,-3],[28,8],[3,9],[-44,24],[-56,44],[-115,6],[-75,-5],[-48,15],[-51,24],[-32,7],[-67,-16],[-34,-1],[-31,5],[-30,76],[8,23],[24,10],[18,25],[12,26],[40,25],[217,56],[55,42],[-2,7],[-37,-8],[-48,-19],[-31,-4],[-128,24],[-20,-5],[-52,-35],[-70,-38],[-32,2],[-44,23],[-7,16],[-3,19],[48,26],[15,14],[31,38],[-2,18],[-52,-10],[-7,17],[1,30],[-5,37],[-13,37],[-43,57],[-18,14],[-15,21],[-33,77],[10,19],[29,14],[5,7],[-69,-12],[-7,-13],[13,-20],[9,-26],[6,-32],[9,-29],[25,-31],[20,-16],[33,-43],[14,-48],[-4,-25],[-26,-26],[-40,-27],[-13,-23],[-5,-23],[-32,-21],[-19,8],[-16,1],[18,-37],[12,-39],[-14,-38],[-38,-24],[-20,0],[-41,-19],[-103,-10],[-36,4],[-66,20],[-78,10],[-31,26],[-40,47],[-21,42],[0,38],[11,27],[22,17],[27,109],[38,88],[96,91],[27,33],[9,17],[0,14],[-15,8],[-118,-112],[-73,-12],[-21,25],[6,45],[13,11],[59,-5],[23,25],[-37,38],[-39,10],[-9,9],[40,29],[93,-2],[21,20],[34,22],[37,40],[14,34],[3,29],[-8,23],[-1,23],[7,24],[-10,26],[-26,28],[-57,28],[-17,-31],[-18,-13],[-25,-3],[-24,13],[-24,5],[-24,12],[-24,3],[-10,10],[-6,26],[-1,34],[28,16],[39,13],[26,23],[17,34],[3,38],[-12,40],[-32,37],[-58,-36],[-23,-9],[-6,26],[-8,19],[-24,25],[-33,18],[-31,13],[-1,19],[7,21],[14,24],[18,52],[20,-5],[16,5],[-9,42],[-16,36],[-19,20],[-1,9],[-4,10],[-14,25],[-16,19],[-29,52],[-20,19],[-26,11],[-28,0],[-45,-13],[-83,-16],[-66,-8],[-11,4],[33,20],[49,21],[64,14],[19,34],[-7,29],[2,28],[-17,30],[17,16],[58,16],[27,3],[26,21],[-74,50],[-77,33],[-20,14],[-17,22],[-15,30],[-24,31],[-33,31],[-48,30],[-125,54],[-42,38],[-40,57],[-19,25],[-21,18],[-87,43],[-10,18],[89,50],[9,20],[-36,61],[-38,44],[-41,16],[-60,8],[-56,20],[-50,31],[-51,23],[-76,22],[-126,56],[-195,59],[-87,35],[-52,13],[-68,3],[-132,33],[-111,10],[-69,-4],[-22,5],[-51,33],[-79,19],[-41,-7],[-51,-36],[-62,-35],[-32,-4],[-49,32],[-24,22],[-23,8],[-23,-8],[-43,-29],[-41,-21],[-61,-25],[-49,-12],[-63,-3],[-16,-9],[-24,-1],[-32,8],[-31,17],[-28,24],[-25,14],[-22,2],[-50,-13],[-63,-37],[-29,-9],[-24,3],[-30,12],[-59,30],[-33,-3],[-24,-10],[6,-25],[56,-59],[50,-42],[-42,-5],[-368,57],[-46,14],[-68,34],[-56,21],[-96,54],[-74,30],[-24,22],[-6,16],[23,22],[149,72],[56,14],[116,18],[27,11],[9,8],[-30,16],[-151,-6],[-135,11],[-117,28],[-21,10],[-19,17],[-20,26],[5,28],[28,32],[16,22],[5,11],[-147,-77],[-60,-28],[-48,9],[-34,13],[-16,14],[1,16],[5,11],[10,7],[-78,33],[-35,25],[-4,26],[28,27],[27,19],[27,12],[72,11],[263,20],[188,-19],[64,64],[43,21],[127,21],[195,3],[138,-12],[64,-15],[88,-33],[5,10],[-21,30],[-2,25],[36,43],[16,27],[-11,29],[-38,29],[-69,38],[-36,3],[-41,-9],[-49,-21],[-102,-53],[-49,-11],[-80,-3],[-44,7],[-43,8],[-67,28],[-25,5],[-29,-12],[-35,-30],[-34,-21],[-32,-12],[-30,-5],[-43,2],[-173,47],[-40,21],[-2,31],[-53,30],[-60,5],[-8,11],[77,46],[57,19],[-10,6],[-82,1],[-56,-25],[-32,-4],[-74,-1],[-77,13],[-33,11],[-34,25],[-38,14],[-115,21],[-26,12],[-25,19],[-94,55],[-57,40],[-8,22],[66,49],[3,12],[-28,21],[-12,15],[10,22],[57,47],[22,13],[103,28],[104,40],[37,9],[34,3],[136,-3],[42,10],[36,20],[58,20],[123,30],[272,46],[18,6],[1,8],[-24,24],[-5,12],[55,21],[126,33],[86,16],[55,2],[45,7],[63,21],[35,4],[214,8],[95,-12],[46,1],[30,8],[40,24],[74,59],[38,36],[37,56],[48,88],[35,85],[24,83],[18,51],[13,18],[44,23],[47,18],[79,16],[-7,7],[-34,12],[-31,5],[-29,-3],[-53,-18],[-69,-13],[-67,2],[-48,-5],[-44,-17],[-71,-14],[-48,3],[-86,25],[-43,5],[-110,-3],[-32,10],[-28,17],[-23,25],[-16,32],[2,34],[40,60],[15,16],[107,68],[66,31],[66,24],[48,13],[45,7],[43,14],[80,47],[82,40],[102,75],[50,20],[173,32],[47,1],[40,-9],[38,-16],[106,-74],[9,2],[-19,28],[-39,84],[7,34],[61,37],[25,6],[64,-2],[103,-11],[70,-13],[52,-20],[63,-13],[32,1],[23,9],[33,32],[43,54],[17,66],[-8,78],[-13,58],[-16,36],[9,30],[52,36],[48,26],[114,38],[92,9],[55,-2],[72,-18],[100,-10],[91,-34],[146,-78],[97,-39],[81,-18],[79,-29],[117,-64],[62,-27],[36,-10],[32,-1],[-12,18],[-56,37],[-85,42],[-191,75],[-104,53],[-94,60],[-69,36],[-126,35],[2,14],[151,50],[278,44],[313,33],[105,-3],[184,14],[18,22],[39,9],[172,30],[49,0],[76,-15],[80,-27],[37,-24],[51,-42],[25,-59],[-4,-186],[1,-36],[10,-13],[35,20],[42,38],[37,26],[29,41],[20,56],[12,41],[-49,46],[-2,76],[24,41],[69,0],[284,-140],[111,-31],[127,-75],[149,8],[137,-9],[60,3],[30,11],[-42,32],[-195,85],[-88,67],[-62,84],[-15,45],[47,8],[217,-1],[327,-39],[418,-133],[205,-45],[369,-154],[111,-23],[45,-5],[34,19],[21,21],[1,27],[-18,35],[-10,39],[-3,46],[25,89],[60,30],[26,33],[-24,59],[-70,41],[-271,105],[-1,13],[55,14],[81,8],[671,-25],[116,-10],[50,-9],[21,-11],[28,-6],[144,15],[-3,26],[-18,16],[-779,45],[-145,16],[-74,1],[-77,-12],[-158,-6],[-73,2],[-95,54],[86,64],[72,-1],[137,-25],[82,35],[129,29],[128,10],[278,63],[52,5],[65,-3],[143,-16],[57,-15],[65,-33],[38,-10],[45,-2],[61,-15],[89,48],[81,52],[92,33],[131,-19],[83,-25],[75,-30],[107,-16],[182,-102],[34,0],[16,8],[17,19],[6,28],[22,38],[-16,14],[-152,42],[-29,17],[-29,26],[0,22],[28,18],[30,8],[98,-8],[32,6],[31,15],[37,27],[29,7],[66,1],[101,-18],[88,-1],[32,8],[5,17],[8,11],[10,5],[321,1],[79,4],[63,13],[76,2],[66,-8],[83,-17],[81,1],[122,27],[115,13],[634,-4],[208,-16]],[[35352,92133],[93,-47],[98,-32],[9,-15],[8,-22],[2,-12],[-3,-11],[-6,-10],[7,-12],[21,-16],[2,-19],[-25,-31],[-34,-35],[-183,-72],[-64,-13],[-160,-49],[-49,2],[-11,2],[-30,22],[-42,20],[-19,16],[-17,23],[7,14],[30,5],[44,0],[65,16],[-18,15],[-17,9],[-12,19],[-27,-3],[-20,11],[-38,7],[-101,7],[-66,19],[-20,11],[-17,20],[-15,28],[22,109],[15,27],[34,9],[84,-24],[11,11],[-92,40],[-33,23],[-10,19],[-6,28],[0,16],[4,16],[8,17],[23,22],[92,35],[102,-12],[175,-43],[22,-10],[54,-37],[103,-113]],[[35829,91907],[-43,-20],[-9,5],[-9,15],[-22,70],[-7,34],[5,41],[-8,29],[39,35],[32,5],[43,-8],[72,-35],[-5,-11],[-16,-18],[-44,-24],[-15,-53],[-3,-27],[2,-20],[-12,-18]],[[35129,92765],[-26,-4],[-75,29],[-12,11],[-5,14],[3,16],[24,30],[45,43],[32,8],[20,-27],[20,-37],[2,-18],[-1,-22],[-5,-19],[-9,-15],[-13,-9]],[[34717,93773],[-39,-39],[-32,-23],[-70,-66],[-12,-3],[-18,9],[-15,18],[-26,4],[-9,11],[-4,9],[-12,6],[-18,3],[-30,-7],[-27,7],[-21,29],[38,20],[24,17],[91,6],[25,-7],[16,0],[25,4],[54,21],[8,10],[48,-12],[4,-17]],[[30092,96385],[-99,-5],[-97,22],[-34,17],[2,27],[14,9],[53,9],[44,2],[29,-4],[70,-16],[50,-16],[33,-5],[-9,-24],[-56,-16]],[[37537,99126],[-56,-10],[-118,61],[-186,61],[-164,40],[-154,107],[-12,38],[21,33],[135,5],[108,15],[274,-66],[138,-56],[46,-45],[-7,-92],[-25,-91]],[[42935,92696],[10,-34],[1,-16],[-2,-14],[-6,-9],[-13,-9],[25,-22],[7,-15],[2,-12],[-16,-24],[-110,-31],[-31,-15],[-38,-37],[-47,-31],[-16,0],[-18,33],[-74,24],[-139,-13],[-162,-30],[-58,-14],[-29,7],[-9,12],[0,15],[19,47],[8,12],[37,15],[25,41],[-8,44],[10,62],[25,10],[64,-22],[41,-5],[73,-3],[99,8],[79,25],[144,71],[25,-1],[19,-25],[13,-12],[43,-20],[7,-12]],[[44815,98989],[-29,-18],[-73,7],[-94,52],[-62,43],[-5,50],[32,22],[50,4],[69,-43],[71,-58],[41,-59]],[[45107,97825],[-117,-66],[-174,5],[-103,31],[-30,45],[40,51],[125,41],[156,25],[142,-15],[20,-51],[-59,-66]],[[44723,96758],[-37,-20],[-25,61],[-22,81],[-5,92],[57,45],[29,11],[20,-11],[-5,-40],[0,-82],[19,-55],[-31,-82]],[[44838,95646],[-32,-16],[-108,239],[0,87],[7,66],[49,5],[42,-36],[20,-137],[22,-208]],[[44999,95280],[22,-61],[10,-56],[35,-35],[73,5],[29,-66],[-53,-26],[-214,10],[-88,-5],[-61,41],[2,71],[8,71],[61,41],[51,-36],[62,26],[63,20]],[[45012,96567],[-54,0],[-20,15],[13,27],[75,85],[25,7],[37,-9],[11,-44],[-24,-44],[-63,-37]],[[39713,89591],[-43,0],[-14,45],[4,50],[49,15],[26,-34],[-10,-50],[-12,-26]],[[37148,86855],[-32,-70],[-32,15],[-16,31],[-31,15],[-34,-4],[-1,12],[110,74],[53,20],[-4,-31],[-10,-27],[-3,-35]],[[35645,92658],[-37,-2],[-86,11],[-7,6],[-1,13],[12,37],[38,5],[45,-20],[49,-29],[6,-13],[-19,-8]],[[48160,87445],[-6,-22],[-7,1],[-26,26],[-21,15],[-7,13],[-6,21],[12,2],[14,-4],[36,-20],[10,-20],[1,-12]],[[48139,87237],[5,-18],[-6,2],[-19,20],[-33,48],[-11,39],[-2,18],[8,-2],[7,-16],[31,-11],[8,-8],[0,-19],[10,-23],[2,-30]],[[48003,87637],[25,-22],[9,-16],[-14,-15],[-18,-4],[-21,3],[-34,17],[-12,38],[24,-1],[28,7],[13,-7]],[[48158,87688],[-7,-77],[-12,0],[-20,22],[-15,4],[-5,-11],[1,-14],[8,-9],[24,-52],[2,-15],[-3,-7],[-23,15],[-57,67],[-44,110],[60,18],[43,-29],[48,-22]],[[48220,87706],[-13,-42],[-20,7],[-5,4],[-5,11],[3,31],[-1,45],[22,-37],[19,-19]],[[53491,83977],[0,-58],[-7,-17],[-10,-11],[-28,-11],[-24,-17],[-22,-29],[-7,-41],[16,-30],[31,-16],[8,-58],[-26,-28],[-64,-28],[-7,-68],[2,-54],[-1,-39],[-5,-54],[-52,-24],[-34,82],[0,33],[-11,38],[-1,33],[-12,52],[-50,14],[-19,2],[-27,-9],[-6,3],[-33,72],[6,79],[-17,40],[-3,18],[1,20],[-14,16],[-18,9],[-8,44],[20,11],[48,-5],[15,3],[13,9],[39,73],[-1,16],[4,21],[42,8],[19,-28],[-3,-46],[2,-57],[26,-16],[10,-3],[10,43],[8,21],[10,12],[4,39],[-6,24],[-13,17],[48,49],[50,38],[29,2],[29,-9],[27,-13],[15,-11],[8,-18],[-18,-43],[-5,-23],[12,-77]],[[52408,83469],[-3,48],[-6,34],[-18,51],[27,12],[-5,100],[-10,52],[-75,53],[-60,51],[14,174],[6,46],[-23,91],[3,105],[9,164],[19,7],[14,-1],[53,-30],[22,-3],[15,-26],[18,-11],[13,28],[5,48],[42,62],[30,23],[20,11],[20,-25],[16,-28],[4,61],[12,117],[-40,19],[-33,-16],[-32,-74],[-29,-94],[-47,-8],[-37,-27],[-34,28],[-22,24],[0,35],[5,22],[39,76],[54,73],[53,-1],[39,23],[24,3],[72,-5],[38,16],[33,34],[73,141],[41,59],[82,21],[76,68],[22,1],[-36,-51],[-6,-19],[-4,-30],[25,-66],[-5,-40],[2,-78],[-24,-41],[-28,-87],[-12,-13],[-2,-101],[3,-25],[-4,-92],[28,-38],[29,-20],[99,1],[10,-16],[13,-29],[-9,-49],[-11,-36],[-28,-31],[-37,-23],[-23,-1],[-31,44],[-15,-14],[-15,-23],[-26,-119],[-12,-81],[-6,-7],[-15,12],[-25,1],[-31,-19],[16,-17],[17,-30],[-7,-15],[-28,-16],[-24,-32],[-11,-25],[-31,-29],[-19,-37],[9,-46],[4,-40],[9,-45],[-8,-35],[-38,-51],[-14,-45],[32,1],[21,-10],[12,-13],[12,-19],[-8,-23],[10,-59]],[[52956,83876],[12,-30],[14,-64],[23,-72],[-10,-30],[7,-38],[-7,-41],[-44,-46],[-51,-2],[-52,22],[-74,44],[-6,24],[-10,13],[-20,74],[1,92],[37,11],[81,43],[18,-6],[20,-23],[23,-1],[32,32],[6,-2]],[[53155,83462],[50,-36],[33,2],[22,-14],[6,-23],[2,-51],[-24,-15],[-26,5],[-36,-19],[-117,83],[2,69],[4,27],[56,7],[28,-35]],[[52981,83381],[-12,-3],[-17,46],[-2,15],[20,30],[12,34],[33,52],[19,61],[7,-1],[-8,-55],[-43,-151],[-9,-28]],[[53485,83505],[-10,-9],[-43,7],[-48,-40],[-18,12],[7,26],[5,9],[16,11],[11,16],[4,25],[10,-14],[30,-5],[14,-8],[12,-12],[10,-18]],[[53518,83868],[-26,-24],[-6,1],[-9,34],[14,20],[8,17],[6,0],[8,-19],[5,-29]],[[52912,83437],[-19,-6],[-21,12],[-35,48],[-4,12],[18,-8],[23,-25],[18,-5],[25,-21],[-5,-7]],[[52794,83459],[-29,-8],[-14,14],[-28,5],[-9,89],[2,5],[14,-6],[47,-41],[16,-45],[1,-13]],[[52946,83976],[-5,-11],[-17,11],[-2,37],[6,34],[-7,30],[8,19],[25,-45],[7,-21],[-9,-25],[-6,-29]],[[53070,84822],[-12,-13],[-38,19],[17,26],[42,13],[24,-4],[-27,-27],[-6,-14]],[[54190,83537],[-10,-10],[-46,17],[-56,40],[9,78],[14,34],[102,-88],[1,-33],[-14,-38]],[[54709,79837],[-7,13],[-13,48],[-14,6],[-19,4],[-14,7],[-31,28],[-16,8],[-18,2],[-18,-16],[-13,-19],[-41,0],[-45,9],[-65,63],[-16,1],[-18,-3],[-28,15],[-55,41],[-26,9],[-16,-5],[-14,-9],[-11,-2],[-6,14],[-20,16],[-21,2],[-6,-10],[-6,-90],[-7,-32],[-28,1],[-10,-15],[-22,-44],[-5,-41],[-38,8],[-18,7],[-16,-6],[-18,-23],[-49,2],[-39,13],[-17,52],[-18,21],[-22,18],[-8,4]],[[59445,72041],[-11,-4],[-17,16],[-10,5],[-10,-15],[-11,-11],[-10,-5],[-8,-2],[-14,-11],[-17,3],[-25,9],[-14,-22],[-3,3],[-2,55],[-9,23],[-11,13],[-16,-6],[-22,2],[-16,10],[-31,-16],[-26,-17],[-18,-17],[-14,1],[-24,16],[-18,17],[-2,14]],[[59086,72102],[17,-6],[30,12],[13,56],[4,65],[50,-19],[52,-9],[42,-4],[41,11],[126,69],[36,41],[23,14],[38,34],[40,19],[-25,-39],[-145,-174],[-10,-52],[7,-35],[20,-44]],[[59445,72041],[5,-11],[8,-33],[-32,-10],[-31,-3],[-18,4],[-17,-1],[-51,-95],[-28,-32],[-33,-19],[-33,-11],[-17,-1],[-15,-12],[-10,-22],[0,-22],[-5,-17],[-18,4],[-8,34],[-13,15],[-32,-8],[-16,1],[-52,33],[-16,13],[-10,28],[-27,101],[-4,75],[25,-19],[23,23],[23,38],[27,15],[16,-7]],[[27267,65185],[73,-26],[59,7],[28,16],[-3,-16],[26,-40],[10,-3],[38,20],[99,8],[10,-11],[18,-39],[25,-24],[26,-18],[28,-5],[27,8],[26,-4],[32,-37],[10,-5],[28,10],[-8,-34],[48,-49],[36,-95],[25,-39],[28,-35],[23,-24],[25,-11],[79,5],[18,-3],[17,-14],[15,-5],[9,5],[151,-149],[48,-79],[30,-41],[63,-59],[25,-13],[14,7],[-3,14],[-18,33],[-3,12],[24,-11],[43,-67],[12,-24],[21,-23],[22,-17],[-11,-26],[-17,-3],[-34,11],[27,-43],[5,-31],[12,-3],[19,35],[11,29],[48,-75],[25,-34],[-6,-20],[-2,-20],[28,18],[11,-2],[10,-11],[12,-32],[26,-7],[27,1],[55,-27],[51,-54],[49,-11],[49,-2],[24,-28],[11,-39],[-12,-27],[-7,-28],[18,-35],[-39,-15],[-6,-21],[2,-23],[8,-12],[23,11],[33,-10],[51,-8],[35,7],[71,-24],[21,-13],[42,-44],[19,-30],[42,-79],[35,-31],[31,-8],[11,5],[10,-8],[9,-11],[8,-35],[-5,-37],[-17,-29],[-10,-22],[-44,-2],[-62,-10],[-60,-32],[-29,-26],[-14,-17],[-31,-15],[-2,13],[0,17],[-8,31],[-7,-28],[-12,-21],[-19,-17],[-73,-1],[-29,23],[-30,17],[-109,16],[-27,-1],[-73,-18],[-73,-9],[-31,-11],[-30,-16],[-59,0],[-70,-18],[-70,-4],[45,131],[95,125],[17,27],[13,35],[3,26],[-4,23],[-23,39],[-4,29],[-7,19],[-33,17],[-33,10],[-35,0],[-73,13],[-39,1],[-33,27],[-55,96],[-26,26],[-13,22],[-10,24],[-13,140],[-11,68],[-17,58],[-25,45],[-27,15],[-101,-38],[-24,5],[-23,13],[-154,91],[-63,50],[-26,25],[-22,35],[-23,58],[-25,52],[0,-21],[-4,-14],[-129,-6],[-20,12],[-13,14],[-10,21],[-7,42],[-12,35],[-4,-38],[-6,-34],[-17,-20],[-20,-3],[-24,46],[-104,10],[-9,8],[-34,44],[-30,56],[29,19],[60,26],[13,18],[8,21],[-5,33],[-12,24],[-13,14],[-13,9],[-18,4],[-232,5],[-13,-17],[-21,-37],[-41,-46],[-28,-49],[-10,-25],[-12,-18],[-29,-30],[-24,-46],[-30,-21],[-16,13],[-16,0],[-11,-12],[-13,-5],[-59,-6],[-9,-11],[-8,-34],[-10,-64],[-9,-21],[-30,-8],[-28,-18],[-58,-62],[-15,-9],[3,45],[-3,44],[-16,2],[-19,-7],[-15,-13],[-29,-32],[-14,-9],[-14,17],[3,21],[95,79],[11,6],[17,-6],[17,3],[13,22],[-16,105],[6,71],[22,55],[45,83],[21,27],[219,174],[22,9],[142,35],[22,12],[66,51],[69,21],[73,-16]],[[28425,64488],[-11,-18],[-13,26],[-8,2],[-11,10],[-21,29],[-5,29],[17,2],[23,-5],[39,-16],[-4,-34],[-6,-25]],[[28326,64680],[-6,-10],[-15,22],[-22,9],[-13,33],[-12,13],[-1,12],[20,9],[14,-4],[16,-26],[9,-46],[10,-12]],[[28158,64834],[38,-13],[13,8],[13,2],[13,-5],[19,-48],[-16,-6],[-13,0],[-10,8],[-34,3],[-23,14],[-12,12],[-6,14],[18,11]],[[28367,64589],[-10,-2],[-27,24],[-9,20],[10,27],[2,30],[4,1],[4,-35],[22,-15],[1,-8],[13,-30],[-10,-12]],[[27066,64269],[-26,-31],[-55,-43],[-30,-1],[-30,16],[-20,36],[-12,35],[1,17],[19,-28],[16,-14],[13,9],[10,16],[-31,114],[2,25],[24,62],[65,-19],[11,-11],[10,-40],[14,-31],[17,-83],[2,-29]],[[27958,64898],[1,-15],[-49,42],[-21,44],[-8,10],[13,1],[55,-72],[9,-10]],[[55279,77689],[-18,-2],[-29,10],[-14,18],[-2,19],[0,17],[-9,29],[-23,29],[-49,5],[-18,9],[-18,11],[-20,8],[-19,-1],[-22,-8],[-40,13],[-13,-17],[-20,-20],[-18,0],[-34,46],[-10,3],[-30,-23],[-12,-1],[-9,7],[-40,18],[-18,3],[-14,-8],[-23,9],[-58,61],[-35,-46],[-73,11],[-21,-31],[-25,-60],[-20,-29],[-17,11],[-20,26],[-36,67],[-18,13],[-21,3],[-18,-8],[-10,-14],[-7,-98],[-7,-87],[0,-53],[40,-48],[47,-83],[15,-10],[7,-27],[11,-70],[12,-79],[24,-52],[22,-37],[26,-33],[33,-52],[27,-56],[7,-21],[52,-75],[51,-76],[46,-27],[7,-14],[0,-59],[5,-22],[30,-61],[62,-90],[7,-21],[2,-15],[-4,-12],[-16,-12]],[[54884,76577],[-13,13],[-58,88],[-55,56],[-63,104],[-84,41],[-58,46],[-34,-7],[-39,-14],[-23,-1],[-17,9],[-12,28],[2,22],[-2,28],[-34,46],[-46,44],[-43,56],[-87,151],[-18,49],[17,9],[13,0],[15,10],[24,0],[28,-10],[-25,32],[-31,32],[-80,127],[-24,59],[-3,65],[6,88],[-14,63],[-62,82],[-23,43],[-45,25],[-21,-2],[-12,-32],[-9,-71],[-40,-93],[-14,-41],[-21,-52],[-18,-4],[-11,5],[-33,88],[-32,68],[-4,31],[-3,40],[-24,144],[17,20]],[[54625,76610],[51,-16],[38,8],[34,-10],[21,-19],[5,-9],[-28,-1],[-31,8],[-35,-19],[-31,10],[-12,12],[-8,15],[-4,21]],[[54776,76685],[-20,-6],[-123,4],[-36,12],[-40,31],[-9,9],[41,9],[37,-9],[12,-22],[101,-18],[37,-10]],[[54662,76768],[-44,-1],[-38,10],[-19,18],[2,15],[6,25],[42,-3],[65,-18],[15,-21],[-4,-9],[-25,-16]],[[54230,77224],[5,-20],[-35,38],[-13,26],[-3,11],[46,-55]],[[54113,77751],[-34,-12],[-16,22],[-4,18],[-29,6],[-17,25],[-3,11],[24,28],[13,45],[16,-27],[20,-51],[11,-14],[19,-51]],[[54119,77625],[7,-25],[-26,23],[-23,9],[-5,17],[3,14],[5,14],[18,-2],[3,-14],[18,-36]],[[54218,77382],[-7,-16],[-18,29],[-16,20],[-12,23],[-23,30],[-8,34],[-34,69],[-6,19],[18,-28],[14,-18],[12,-4],[30,-44],[30,-57],[35,-49],[-8,-2],[-7,-6]],[[54219,77143],[4,-8],[-1,-6],[-14,8],[-4,-2],[-68,126],[-7,24],[24,-29],[66,-113]],[[54269,77173],[19,-43],[-18,9],[-18,27],[-11,28],[28,-21]],[[54024,77568],[-2,-22],[-17,28],[-9,51],[-21,82],[-3,23],[11,23],[0,23],[-15,72],[12,11],[8,2],[3,-50],[7,-29],[20,-35],[-4,-58],[4,-83],[4,-18],[2,-20]],[[54891,76479],[37,-39],[-111,51],[13,5],[12,1],[49,-18]],[[55143,76286],[-51,54],[-48,61],[-93,94],[-67,23],[-91,76],[-59,27],[23,6],[26,0],[140,-101],[-16,27]],[[54907,76553],[20,10],[17,-7],[11,-33],[22,-22],[35,-38],[22,-29],[50,-53],[12,-7],[25,-15]],[[49135,54774],[-37,15],[8,19],[36,-11]],[[48465,57848],[17,-38],[22,-26],[34,3],[24,-15],[21,-30],[14,-65],[15,-47],[7,-67],[24,-35],[19,-17],[26,-48],[27,-25],[27,6],[13,-26],[21,-18],[20,-1],[18,56],[24,22],[61,45],[23,20],[25,13],[58,4],[54,-13],[27,-11],[18,8],[18,-27],[18,-56],[14,-18],[15,-19],[12,-44],[13,-44],[7,-19],[16,-44],[14,0],[14,18],[6,14]],[[49161,54798],[-2,12],[-11,4],[-29,26],[5,83],[-13,4],[-11,-11],[-20,-101],[-10,-17],[-146,52],[-31,42],[-38,9],[-66,-5],[-54,-12],[-16,-25],[137,15],[15,-3],[7,-16],[-173,-33],[-67,-19],[-19,5],[-15,32],[-72,4],[-15,-11],[-8,-23],[28,5],[44,1],[12,-18],[-139,-24],[-97,-45],[-41,-33],[-135,-110],[-83,-52],[-22,-20],[-37,-53],[-48,-34],[-54,-64],[-33,-14]],[[26978,56492],[-19,64],[-26,61],[-23,37],[-2,88],[-9,48],[-34,44],[-30,30],[-21,-6],[13,-50],[34,-65],[3,-25],[-1,-33],[-23,5],[-21,14],[-26,4],[-17,20],[-36,77],[26,66],[8,43],[-1,90],[-6,43],[-28,67],[-44,72],[-61,60],[-29,47],[-73,37],[-27,24],[-22,45],[-3,33],[8,50],[-20,63],[-86,125],[-48,46],[-11,26],[-7,9],[7,-86],[21,-52],[55,-48],[15,-28],[6,-37],[-32,-70],[-16,-18],[-5,-38],[-10,-12],[-11,22],[-45,110],[-86,53],[-16,32],[-32,101],[-14,91],[5,61],[35,96],[11,41],[-2,26],[1,37],[-13,26],[-33,35],[-21,27],[6,14],[38,37],[2,33],[0,11]],[[26766,58131],[7,-23],[8,-36],[3,-46],[36,-155],[28,-86],[62,-158],[26,-29],[45,-127],[16,-21],[9,-37],[46,-31],[13,-23]],[[56657,45580],[-11,-11],[-6,-30],[-1,-23],[-19,-18],[-38,4],[-38,17],[-27,5],[-18,-4],[-67,-57],[-22,-7],[-73,4],[-41,12],[-30,2],[-20,-18],[-26,-42],[-22,-22],[-10,2],[-6,18],[-9,24],[-2,63],[-11,69],[7,36],[21,27],[8,53],[-7,81],[0,56],[6,33],[-8,79],[-22,126],[-30,102],[-39,79],[-25,76],[-12,72],[4,173],[12,153],[9,121],[-2,203],[-27,132],[-6,142],[15,152],[3,104],[-10,53],[-7,8],[-9,5],[-66,5],[-89,7],[-78,2],[-84,2],[-14,20],[-6,35],[0,35],[17,108],[-2,9],[-30,2],[-81,-18],[-54,-17],[-34,-6],[-59,-29],[-37,-62],[-12,-78],[1,-64],[-2,-47],[-17,-49],[-14,-56],[0,-30],[-8,-149],[-55,-20],[-55,0],[-13,1],[-68,36],[-25,0],[-22,-19],[-42,-18],[-39,-13],[-40,-45],[-11,-4],[-27,23],[-37,-2],[-38,-11],[-17,-5],[-12,14],[-35,111],[-46,149],[-25,94],[-10,24],[-16,32],[-22,61],[-9,58],[4,55],[-13,73],[-29,93],[-20,89],[-9,85],[-2,72],[4,60],[-5,45],[-16,28],[-9,37],[-7,15],[-13,34],[-29,38],[-33,20],[-70,0],[-93,1],[-84,-3],[-93,-3],[-94,-3],[-26,-6],[-72,-2],[-58,10],[-21,6],[-38,5],[-59,1],[-32,-4],[-77,0],[-7,-1],[-12,-11],[-33,15],[-32,-5]],[[53630,48464],[-19,17],[-39,-11],[-19,-13],[-31,-48],[-46,-25],[-17,2],[-12,8],[-27,53],[-20,50],[-8,28]],[[53392,48525],[12,7],[36,11],[27,5],[6,14],[4,156],[1,159],[-10,21],[-9,12],[-1,11],[14,20],[20,23],[6,11],[22,42],[43,97],[33,24],[30,25],[5,10]],[[53631,49173],[4,19],[14,-2],[4,-9],[7,-20],[12,-29],[21,-34],[22,-37],[11,-5],[17,19],[21,28],[30,20],[7,19],[4,40],[2,44],[3,51],[6,7],[11,5],[20,-15],[9,-15],[16,0],[10,14],[19,25],[25,10],[25,24],[25,31],[12,3],[12,-40],[11,-29],[2,-17],[-11,-34],[-12,-45],[10,-55],[3,-54],[-1,-32],[9,-13],[6,-7],[9,8],[17,-2],[21,-17],[21,2],[20,20],[37,81],[54,141],[44,88],[36,36],[24,43],[12,48],[21,33],[43,26],[32,29],[33,97],[44,174],[12,156],[7,94],[-4,326],[-3,107],[7,58],[16,40],[44,85],[30,70],[23,81],[44,186],[19,60],[8,26],[27,50],[37,43],[47,38],[73,129],[59,130],[-8,157],[13,129],[32,166],[11,174],[-11,184],[4,151],[31,175],[13,65],[4,106],[-1,169],[39,232],[37,138],[41,155],[15,94],[21,125],[-3,100]],[[55169,53846],[-4,116],[10,158],[-3,94],[-15,81],[7,51],[30,21],[36,81],[66,212],[71,104],[49,32],[52,-3],[33,-19],[16,-33],[39,-50],[62,-66],[46,-83],[26,-83],[20,-46],[25,-15],[40,6],[45,-19],[48,-47],[29,-17],[10,12],[23,-7],[52,-38],[42,21],[61,-16],[143,-68],[7,11],[4,3],[12,27],[31,137],[26,85],[12,31],[31,45],[35,11],[35,-4],[28,-19],[26,-23],[29,0],[30,22],[44,40],[46,26],[40,29],[65,50],[26,23],[33,10],[91,-46],[59,30],[24,-9],[51,33],[10,22],[32,111],[35,33],[52,-17],[30,-17],[98,-48],[127,-49],[38,-8],[15,-5],[13,7],[42,63],[14,9],[12,-1],[80,-51]],[[58059,50276],[0,-22],[1,-24],[13,-30],[25,-60],[19,-56],[1,-49],[-4,-82],[-1,-48],[2,-64],[0,-121],[-1,-86],[3,-44],[30,-106],[13,-118],[7,-86]],[[53692,53088],[67,-1],[66,-2],[73,1],[70,1],[55,-3],[26,25],[25,-38],[12,-9],[5,3],[9,-27],[31,3],[5,-6],[3,-33],[29,1],[14,-8],[12,1],[17,19],[12,-6],[22,-25],[15,-21],[22,7],[51,-4],[39,-20],[39,-57],[26,-33],[23,-48],[9,9],[8,13],[5,6],[-1,41],[-13,71],[-5,59],[3,49],[10,35],[17,22],[2,33],[0,4]],[[54495,53150],[19,79],[19,78],[22,92],[19,75],[-2,37],[1,56],[4,62],[-1,37],[6,25],[13,93],[7,53],[12,25],[17,17],[25,1],[66,11],[62,24],[21,11],[38,39],[15,2],[13,-15],[75,-45],[20,-17],[8,2],[11,-3],[17,-1],[18,6],[10,-6],[14,-29],[9,3],[12,21],[23,22],[43,25],[7,-11],[15,-54],[16,-19]],[[53631,49173],[-7,9],[-21,39],[-25,61],[-10,9],[-13,-1],[-22,-22],[-22,-35],[-39,-33],[-32,-18],[-3,-22],[-8,-39],[-11,-23],[-28,-8],[-11,-34],[-25,-66],[-16,-30]],[[53338,48960],[-4,13],[-10,16],[-21,51],[-20,63],[-5,29],[-6,17],[-1,64],[-30,75],[-77,135],[-8,40],[-65,124]],[[62354,44883],[14,-79],[0,-60],[-6,-19],[-13,12],[-23,48],[-43,46],[20,4],[12,-4],[12,4],[8,26],[1,16],[11,12],[7,-6]],[[62163,44753],[19,-35],[-54,15],[-8,31],[-1,24],[20,-5],[24,-30]],[[62073,44987],[-5,-8],[-25,33],[-15,8],[-21,53],[8,184],[7,24],[5,10],[12,3],[14,-23],[-4,-119],[19,-79],[12,-63],[-7,-23]],[[31423,52547],[-53,-26],[-4,4],[-3,15],[1,109],[0,124],[-9,51],[-24,81],[-31,108],[-9,31],[-14,18],[-16,2],[-11,-7],[-16,-20],[-15,-22],[-28,-65],[-29,-76],[-17,-17],[-16,-7],[-15,2],[-12,21],[-13,41],[-14,55],[-18,18],[-7,-17],[-6,-32],[-4,-32],[12,-41],[10,-32],[-18,1],[-56,0],[-66,0],[-65,0],[-58,0],[-55,0],[-21,3],[-21,18],[-20,9],[-10,-1],[-20,-18],[-24,-3],[-17,-17],[-14,2],[0,-95],[0,-135],[-1,-144],[15,11],[13,-1],[10,-10],[27,8],[14,-4],[14,-4],[13,-1],[8,-11],[11,2],[12,13],[13,-8],[15,-20],[10,-31],[8,-37],[9,-20],[-1,-35],[0,-28],[-3,-24],[4,-15],[2,-16],[0,-9],[-5,-4],[-11,-3],[-12,-3],[-8,1],[-6,14],[-6,2],[-9,-2],[-9,9],[-8,18],[-14,18],[-15,-8],[-11,-9],[-11,-11],[-9,-12],[-10,3],[-13,-9],[-10,-14],[-14,-10],[-15,-6],[-18,-5],[-17,-2],[-19,-4],[-1,-76],[-2,-148],[-1,-99],[0,-90],[7,-33],[34,-70],[26,-37],[22,-41],[23,-17],[9,-16],[6,-25],[3,-27],[3,-23],[-3,-24],[-5,-23],[2,-24],[8,-19],[2,-24],[6,-23],[3,-23],[7,-16],[8,-12],[11,-19],[2,-17],[-2,-21],[0,-15],[11,-35],[3,-25],[-5,-29],[-5,-101],[-12,-116],[-8,-88],[-12,-143],[-15,-167],[-18,-204],[-17,-201],[-18,-195],[-15,-176],[-17,-194],[-10,-117],[-5,-20]],[[28094,52681],[-8,40],[-38,57],[19,74],[46,56],[60,-44],[7,87],[-22,76],[4,144],[7,29],[16,39],[20,26],[12,8],[21,-13],[13,29],[49,-13],[15,12],[10,20],[12,14],[15,35],[9,40],[7,16],[17,-6],[1,18],[9,23],[30,53],[-1,23],[-8,51],[2,19],[17,6],[21,15],[10,48],[14,42],[15,63],[17,4],[9,72],[22,64],[46,189],[-13,-4],[-11,-26],[-13,3],[-14,15],[4,85],[-8,10],[-23,-65],[-19,67],[-2,40],[8,40],[-1,27],[-31,-20],[2,25],[19,26],[9,27],[17,29],[7,44],[4,69],[7,74],[-5,36],[-9,31],[-8,137],[2,80],[-4,62],[-8,54],[-37,69],[59,80],[21,60],[-27,124],[-35,105],[-1,62],[10,-8],[11,2],[11,132],[-3,41],[-19,67],[-24,1],[-21,83],[-13,19],[-9,52],[-34,102],[-27,53]],[[28507,56830],[8,-12],[23,-83],[37,-53],[38,-87],[16,-59],[12,-11],[11,-22],[-5,-16],[-12,-17],[-3,-35],[8,-19],[8,-12],[22,8],[12,40],[-8,178],[-13,89],[-15,27],[-13,35],[9,27],[24,12],[31,31],[115,170],[39,159],[30,58],[34,37],[41,-9],[33,20],[10,51],[-9,69],[-13,41],[12,61],[13,91],[-1,76],[16,46],[-6,18],[-23,-37],[-18,-16],[10,30],[33,76],[16,115],[13,48],[46,67],[10,32],[34,50],[56,108],[22,30],[108,-69],[34,4],[-6,-13],[-16,-4],[-23,-19],[-6,-41],[15,-44],[17,-12],[14,28],[14,80],[22,88],[6,92],[15,32],[24,11],[41,-18],[32,-19],[33,-3],[101,14],[164,240],[77,52],[47,50],[31,99],[8,74],[22,28],[24,0],[11,18],[3,23],[57,64],[33,8],[28,-1],[65,-56],[29,-98],[5,-68],[-40,-74],[-10,-32]],[[28301,53307],[-7,-13],[-14,23],[-5,29],[8,21],[12,-7],[5,-18],[1,-35]],[[82828,65953],[-10,-34],[-16,5],[0,25],[-4,7],[5,23],[3,7],[18,-20],[4,-13]],[[83850,69983],[-23,-16],[-72,49],[-51,55],[-31,65],[-4,28],[35,-5],[35,-24],[8,-36],[14,-11],[9,-21],[65,-49],[10,-15],[5,-20]],[[83970,69103],[-4,-12],[-34,33],[-37,7],[-13,29],[-2,46],[39,-2],[48,-41],[11,-21],[-8,-39]],[[83936,68939],[-1,-11],[-24,37],[-11,7],[5,21],[16,5],[13,-47],[2,-12]],[[84000,69062],[-2,-27],[-8,4],[-10,47],[6,12],[14,-3],[0,-33]],[[83283,66507],[-21,-27],[-13,13],[0,36],[7,32],[-8,23],[7,28],[16,8],[5,-17],[9,-10],[3,-9],[0,-18],[-9,-30],[7,-16],[-3,-13]],[[80662,63993],[10,-20],[28,14],[5,-25],[-1,-12],[-9,-29],[-23,22],[-23,-5],[-16,2],[-5,14],[13,28],[21,11]],[[83680,68021],[-24,-13],[-9,0],[0,42],[20,39],[8,-13],[5,-21],[0,-34]],[[81542,64979],[3,-27],[-22,41],[-6,2],[-11,15],[-6,25],[17,1],[16,-30],[9,-27]],[[81330,64286],[-6,-11],[-8,20],[-2,30],[-6,16],[14,21],[6,22],[15,-4],[7,-7],[-14,-23],[-3,-10],[-3,-54]],[[81289,64308],[-27,-12],[-6,2],[10,30],[24,21],[-1,-41]],[[78093,64266],[3,8],[-6,72],[1,17],[-3,6],[-11,6],[-17,-11],[-51,-47],[-44,-87],[-20,-19],[-20,-8],[-24,15],[-27,10],[-37,-22],[-19,10],[-9,18],[-7,27],[4,34],[-2,25],[-16,13],[-17,11],[-10,32],[-5,36],[4,47],[3,50],[-9,23],[-26,12],[-64,23],[-57,12],[-24,-6],[-19,6],[-11,9],[-6,16],[0,22],[9,52],[11,51],[26,73],[2,51],[-2,59],[13,79],[23,59],[11,18],[-3,26],[-9,24],[-13,13],[-21,16],[-34,4],[-45,16],[-54,35],[6,67],[0,42],[-7,34],[-11,24],[-6,22],[10,60],[-13,65],[-14,27],[-15,33],[-2,37],[7,34],[37,73],[0,17],[-9,-1],[-10,-2],[-50,-26],[-6,16],[-18,10],[-37,2],[-43,-5],[-54,-26],[-50,-45],[-22,-32],[-20,-19],[-15,-7],[-19,14],[2,45],[34,82],[4,56],[-10,49],[-1,38],[-12,25],[-17,12],[-9,28],[0,80],[15,83],[24,26],[15,13],[4,16],[-8,57],[1,37],[15,72],[14,54],[28,-9],[12,13],[13,19],[15,33],[10,38],[12,90],[8,13],[35,-15],[10,11],[19,52],[18,64],[26,20],[18,2],[9,21],[-1,31],[-17,50],[-8,39],[2,24],[26,15],[6,29],[-4,63],[11,75],[6,89],[2,66],[0,50],[-3,53],[-4,96],[-11,84],[2,32],[-2,102],[-7,86],[-14,16],[-26,28],[-15,5],[-12,-10],[-5,-30],[-11,-28],[-15,6],[-6,29],[-10,37],[-30,175],[-4,50],[-5,51],[-10,25],[-11,14],[-25,59],[-13,25],[-6,4],[-14,-4],[-13,0],[-11,29],[-9,36],[-10,18],[-17,9],[-17,-3],[-10,-31],[-7,-18],[-12,-41],[-21,-58],[-10,-21]],[[75453,67833],[-1,24],[3,70],[-10,17],[-31,17],[-35,23],[-17,25],[-9,8],[-13,-4],[-21,-26],[-20,-30],[-16,-3],[-16,15],[-16,18],[-53,26],[-24,4],[-42,-5],[-35,6],[-5,8],[0,14],[5,29],[3,27],[-4,16],[-35,20],[-33,14],[-34,5],[-23,-10],[-23,-22],[-18,-39],[-27,-17],[-32,-29],[-16,-28],[-24,-58],[-34,-72],[-31,-71],[-16,-68],[-21,-43],[-22,-31],[-16,-85]],[[71610,72290],[-21,-9],[-42,-5],[-14,1],[-21,1],[-42,19],[-57,25],[-58,35],[-32,28]],[[70705,73169],[-4,5],[-8,15],[-34,46],[-1,12],[52,45],[31,18],[16,13],[3,-2],[8,-22],[20,-13],[14,3]],[[84544,74886],[-3,5],[-23,-51],[-45,-48],[-96,-10],[-30,34],[-11,-24],[-9,-31],[-25,-11],[-39,-2],[-22,-21],[-12,-23],[-54,-8],[-20,-31],[-34,-11],[-140,-135],[-30,-57],[-29,-66],[-21,-34],[-18,-23],[-16,-10],[-17,-23],[-16,-3],[-17,11],[-19,-4],[-12,-28],[10,-36],[-5,-16],[-37,-19],[-55,-13],[-23,-24],[-8,-14],[-12,-7],[-12,47],[-4,62],[23,15],[20,8],[116,86],[-14,64],[10,28],[26,45],[17,23],[-10,8],[-75,-15],[-44,1],[-22,5],[7,39],[-4,38],[-5,15],[38,44],[18,11],[13,-1],[-1,27],[-11,40],[12,52],[79,61],[19,55],[31,51],[58,128],[4,22],[16,60],[3,24],[-26,35],[-11,49],[-78,89],[-7,76],[-7,-3],[-12,-53],[-10,-18],[-36,-1],[-18,20],[-100,13],[-25,-34],[-23,-53],[-22,-38],[-23,-20],[-19,-35],[-81,-206],[-31,-16],[-144,-124],[-72,-49],[-56,-87],[-19,-52],[-17,-58],[-10,-88],[-51,-107],[-18,-23],[-18,-9],[-23,3],[-21,-7],[-35,10],[-43,-34],[-48,-29],[-42,73],[-30,19],[-48,-21],[-23,-33],[-47,-162],[-17,-93],[1,-38],[27,-116],[31,-64],[69,-74],[147,-51],[34,18],[37,0],[39,-48],[24,-80],[3,-55],[0,-19],[9,-16],[5,-27],[-15,-23],[-12,-12],[-10,-84],[0,-94],[12,-31],[32,-44],[49,-36],[45,-8],[86,17],[35,57],[-2,24],[1,32],[76,83],[43,74],[-7,19],[-8,13],[8,8],[23,5],[106,76],[83,-62],[47,-72],[47,-13],[33,-36],[37,-32],[49,-2],[41,-7],[13,30],[13,19],[14,-4],[17,-38],[47,-30],[43,2],[30,11],[18,-14],[-26,-49],[4,-79],[-20,-25],[-19,-40],[11,-26],[10,-12],[-1,-32],[-17,-18],[-32,-48],[-19,1],[-9,9],[-6,18],[-4,27],[-12,18],[-31,7],[-33,-6],[-73,-71],[-71,-57],[-75,-45],[-25,-28],[-18,-8],[-30,22],[-19,-2],[-4,-14],[24,-40],[6,-31],[-3,-23],[-13,-11],[-20,18],[-18,-25],[-8,-42],[0,-99],[-12,-22],[-33,-12],[-35,-32],[-13,15],[-5,17],[4,46],[-4,22],[-16,-1],[-25,-13],[-18,-31],[-6,-18],[24,-58],[23,-6],[6,-13],[-19,-29],[-45,-42],[-8,-36],[-13,-34],[-19,-27],[-13,-28],[-15,-15],[-25,-17],[-31,-68],[-23,-65],[-27,-32],[-21,-109],[-38,-58],[-14,-94],[10,-58],[41,1],[21,-21],[44,-76],[52,-49],[53,-28],[66,-71],[19,-29],[15,-61],[29,-174],[20,-86],[2,-46],[31,-85],[33,-146],[37,-127],[8,-99],[-13,-46],[1,-59],[37,-55],[85,-63],[13,-18],[17,-31],[0,-95],[13,-31],[12,-18],[51,-41],[21,-33],[23,-54],[6,-48],[3,-65],[-29,-2],[-23,7],[-91,84],[-24,3],[-33,-12],[-48,16],[-51,93],[-36,28],[-39,15],[-93,-81],[-24,6],[-7,-9],[-11,-14],[44,-17],[43,26],[42,39],[60,-21],[10,-35],[10,-59],[42,-40],[33,-18],[41,-52],[41,-83],[86,-95],[35,-90],[13,-59],[12,-83],[-30,-27],[-26,-4],[-41,-13],[-30,-29],[-31,-52],[-86,-82],[-17,-51],[-11,-44],[-21,-22],[-54,21],[-50,-2],[-56,-60],[-14,-24],[9,4],[9,8],[25,-9],[40,32],[38,-98],[76,16],[71,82],[27,1],[23,-13],[25,-32],[69,-142],[37,-16],[37,-33],[20,-4],[18,-10],[-49,-52],[-64,-113],[-28,-27],[-19,-30],[51,15],[37,54],[18,13],[15,-12],[7,-67],[-14,-205],[-18,-3],[-17,56],[-20,17],[-18,-11],[-33,0],[-13,-25],[-11,-36],[20,-7],[40,-62],[4,-33],[-11,-22],[-28,9],[34,-46],[-9,-48],[-11,-19],[-20,-12],[-12,-42],[18,-69],[18,-89],[2,-43],[-28,18],[-43,-54],[-23,-4],[-16,71],[-19,-11],[-13,-21],[-18,-77],[-21,-69],[-19,-19],[-22,5],[-18,-2],[5,-18],[19,-23],[0,-27],[-41,-84],[-7,-33],[1,-28],[-21,-34],[11,-57],[-6,-40],[-19,-54],[-19,-36],[-24,-58],[-29,-33],[-39,-122],[-11,-61],[-3,-63],[-13,-21],[-20,-28],[-24,14],[-1,42],[-10,4],[-6,27],[-2,35],[3,28],[-10,-8],[-6,-33],[-16,-27],[-16,11],[-18,22],[1,-32],[9,-31],[4,-32],[24,-6],[17,-37],[13,-55],[2,-21],[10,-25],[1,-21],[-23,-20],[-29,-36],[-35,-63],[-29,-42],[-26,0],[-15,5],[-23,24],[-26,10],[35,-85],[19,-15],[24,3],[23,32],[33,-3],[8,-49],[-9,-55],[-18,-72],[-3,-62],[22,-88],[1,-27],[-9,-13],[-26,23],[-21,29],[-22,-7],[-22,12],[-23,-10],[-10,-21],[7,-34],[20,-28],[12,-43],[-14,-15],[-58,10],[-14,-8],[-17,-47],[11,-71],[-13,-43],[-24,-11],[-32,-35],[-19,-8],[1,-15],[14,-16],[8,-21],[-18,-72],[-26,-23],[-42,12],[-32,-17],[-28,31],[-30,1],[-20,-39],[-2,-45],[-20,-4],[-11,3],[-15,-3],[2,-24],[8,-21],[41,-10],[7,-30],[2,-47],[-43,-80],[-18,-54],[-27,1],[-20,-43],[-11,-60],[-14,12],[-31,-9],[-10,-28],[8,-12],[1,-20],[-13,-67],[-14,-18],[-6,27],[-4,42],[-11,3],[-18,-39],[-22,-28],[-18,-11],[-14,26],[-34,13],[-13,-112],[-29,-40],[-13,-13],[-23,-4],[15,-15],[5,-29],[-9,-28],[-23,-6],[-13,-22],[-5,-100],[-14,-35],[-35,-2],[-26,23],[-8,-19],[-4,-17],[-14,-18],[-26,-5],[-59,-45],[-26,13],[-32,17],[-23,-17],[-7,-34],[-10,-26],[-32,0],[-26,32],[-26,24],[-29,-20],[-22,-42],[-27,-14],[-5,-26],[-12,-13],[-29,5],[-11,65],[-16,9],[-16,-32],[-6,-26],[-8,-19],[3,-53],[-16,-1],[-21,32],[-23,6],[-20,-30]],[[81740,64827],[-11,8],[-11,6],[-18,0],[-7,-8],[-13,-5],[-9,-16],[-1,-2]],[[81670,64810],[-23,11],[-29,44],[-20,73],[-26,39],[-12,35],[-4,62],[-5,29],[2,33],[7,29],[-28,-15],[-20,-27],[4,-34],[-5,-32],[-31,-16],[2,-14],[2,-14],[24,-43],[5,-36],[10,-20],[19,-56],[-1,-110],[11,-31],[-4,-30],[-7,-42],[-1,0],[-6,12]],[[81534,64657],[-9,-2],[-3,-14],[-1,-13]],[[81521,64628],[-1,-1],[-16,-9],[-14,-8],[-11,-11],[-17,-32],[-33,-8],[-16,76],[-23,-51],[-6,-104],[-9,-18],[-14,-15],[-26,37],[-23,-25],[-18,-25],[-8,-22],[-13,-25],[-25,24],[-21,36],[5,27],[-2,17],[-10,14],[-10,-2],[5,-35],[4,-67],[-10,-19],[-14,-15],[-31,12],[-21,25],[-26,21],[-22,4],[-5,-42],[-15,-35],[-13,-4],[-14,6],[-18,-37],[-8,-27],[-22,-29],[-58,-13],[-21,-29],[-27,5],[-21,-7],[-13,2],[-10,15],[-13,0],[-5,-47],[-33,-20],[-30,-5],[-33,-62],[-24,-37],[-17,-4],[-13,13],[-7,56],[-6,6],[-4,-52],[-6,-43],[-12,-24],[-38,-54],[-11,-54],[7,-49],[51,-12],[7,-27],[-5,-22],[-13,-19],[-3,-28],[55,-88],[2,-34],[-9,-19],[-10,-41],[-29,-35],[-62,-18],[-51,18],[-16,40],[1,28],[13,-8],[14,3],[-4,26],[-6,15],[-24,23],[-19,62],[4,51],[-11,40],[-11,34],[-12,20],[-6,25],[12,78],[-7,45],[22,56],[6,63],[39,22],[3,60],[-29,2],[-19,44],[-5,-18],[-15,-2],[-26,84],[-8,11],[-12,2],[6,-90],[-30,-33],[-25,-15],[-35,-6],[-20,-10],[-18,8],[4,27],[10,33],[-9,27],[-20,20],[-30,-1],[-21,6],[-20,-2],[-8,12],[-19,42],[-17,26],[-7,26],[7,31],[-6,18],[-32,2],[1,-43],[3,-52],[9,-39],[-6,-22],[-16,-15],[-17,42],[-8,10],[-9,-2],[-6,-41],[-15,-37],[-28,4],[-22,-23],[-26,-10]],[[80802,63359],[13,-26],[9,-37],[8,-68],[4,-63],[-28,-40],[-25,-16],[-50,-154],[-11,-48],[-8,-21],[-3,-21],[1,-21],[-13,-74],[-12,-91],[-7,-37],[-14,-28],[-19,-15],[-11,-2],[-11,-8],[-27,-49],[-30,-38],[5,-17],[0,-16],[-13,-18],[-14,3],[-42,-14],[-16,-28],[-16,-51],[-6,-7],[-25,-12],[-20,-5],[-33,36],[-16,11],[-44,15],[-43,24],[-30,28],[-61,69],[-7,123],[-11,67],[0,24],[4,206],[4,22],[8,20],[27,46],[31,37],[44,76],[33,35],[27,50],[-16,-2],[-12,6],[12,43],[12,23],[14,12],[29,-9],[27,9],[19,38],[19,8],[71,-12],[49,17],[24,35],[12,2],[36,-10],[14,-37],[-1,25],[1,23],[7,-2],[47,-45],[0,55],[3,15],[15,23],[7,-1],[19,-44],[17,-26],[23,-13]],[[81534,64657],[6,-13],[0,-1],[-13,-11],[-4,-3],[-2,-1]],[[81740,64827],[1,-2],[6,-22],[-2,-24],[11,-12],[3,-23],[-12,-13],[-1,-28],[-6,-17],[-36,30],[-29,16],[-27,-6],[-9,18],[-2,18],[31,32],[2,16]],[[81730,64637],[-7,-9],[-19,42],[-1,14],[15,2],[16,-19],[0,-17],[-4,-13]],[[81665,64637],[-33,0],[-7,5],[-4,13],[12,22],[45,30],[-11,-32],[-2,-38]],[[19644,36209],[-43,-18],[2,32],[11,27],[31,-16],[15,-3],[-16,-22]],[[28110,32461],[-50,-12],[-2,3],[3,10],[11,18],[14,21],[3,1],[5,-2],[6,-4],[15,-14],[4,-10],[-1,-8],[-8,-3]],[[30691,41759],[5,-66],[38,-87],[12,-99],[9,-13],[52,-49],[1,-12],[-8,-18],[-7,-24],[5,-34],[9,-46],[4,-42],[5,-44],[6,-68],[4,-61],[13,-90],[3,-56],[0,-34],[10,-33],[20,-39],[28,-39],[22,-47],[16,-31],[21,-26],[15,-23],[6,-16],[2,-13],[-6,-13],[-25,-61],[-34,-92],[0,-12],[33,-66],[5,-27],[0,-37],[-11,-45],[-35,-14],[-8,-12],[-1,-15],[8,-19],[-1,-44],[13,-49],[-7,-16],[-13,-23],[0,-22],[4,-24],[14,-20],[54,-69],[4,-9],[-1,-7],[-21,-46],[-2,-28],[1,-47],[3,-30],[7,-12],[27,-14],[34,-105],[32,-98],[0,-85],[3,-98],[21,-78],[3,-62],[6,-70],[25,-43],[10,-85],[2,-45],[-1,-29],[19,-92],[2,-79],[-5,-57],[1,-32],[2,-22],[17,-20],[7,-13],[24,-5],[35,-2],[61,21],[46,20]],[[31334,38697],[52,-104],[-22,-140],[-36,-224],[-28,-174],[-5,-23],[-5,-34],[-60,-49],[-88,-71],[-44,-38],[-57,-48],[-13,-39],[-17,-22],[-18,-27],[-6,-30],[-17,-19],[-15,-68],[0,-52],[9,-35],[17,-15],[6,-43],[5,-30],[12,-23],[-3,-19],[-10,-14],[-18,-8],[-12,-43],[-15,-105],[-2,-38],[16,-96],[9,-51],[23,-187],[4,-51],[-32,-71],[-13,-43],[-5,-38],[0,-30],[3,-28],[27,-87],[31,-79],[15,-41],[0,-55],[-7,-31],[-17,-12],[-36,-21],[-16,-32],[-16,-5],[-16,25],[-17,-6],[-21,-22],[-8,-53],[-19,-92],[-16,-25],[-12,-70],[-21,-100],[-10,-60],[-5,-44],[-22,-28],[-25,-56],[-19,-55],[-7,-15],[-15,-5],[-10,-49],[-36,-74],[-9,-85],[-13,-46],[-2,-82],[-20,-151],[-4,-33],[-20,-26],[-27,-58],[-8,-43],[12,-128],[15,-128],[1,-61],[-6,-82],[-4,-36],[10,-14],[17,-10],[6,-31],[-13,-22],[-5,-40],[-14,-44],[-40,-17],[-14,16],[-5,-15],[2,-31],[-9,-37],[-21,-100],[-13,-90],[-8,-39],[3,-33],[7,-19],[0,-18],[-11,-21],[-11,-35],[-11,-5],[-12,10],[-13,-21],[-3,-43],[-7,-54],[-3,-64],[-5,-81],[16,-56],[21,-101],[16,-25],[17,2],[14,-20],[8,-24],[-11,-42],[-18,-7],[-2,-24],[6,-53],[6,-52],[18,-25],[7,-70],[17,-23],[-2,-89],[17,-105],[18,-30],[8,-14],[-5,-46],[-15,-36],[-3,-58],[6,-43],[18,-40],[14,-4],[20,16],[21,-19],[3,-35],[3,-31],[-11,-41],[-12,-76],[-3,-75],[3,-114],[6,-89],[1,-56],[1,-25],[-7,-17],[-19,-9],[-16,-4],[-13,-14],[-3,-28],[-11,-47],[-11,-35],[-19,-51],[-12,-53],[-10,-35],[1,-24],[-7,-46],[-8,-39],[-15,-129],[-20,-27],[-17,-13],[-8,-18],[6,-35],[18,-10],[6,-29],[-3,-44],[12,-41],[-1,-50],[11,-93],[-10,-62],[3,-53],[0,-52],[-15,-41],[-29,-8],[-16,-38],[-28,-41],[-3,-33],[-5,-30],[-11,-11],[-18,0],[-14,-5],[-20,-38],[-22,-21],[-5,-32],[2,-38],[-11,-23],[-15,-44],[-9,-48],[9,-44],[10,-78],[2,-34],[-13,-65],[-10,-42],[10,-53],[8,-30],[-8,-66],[-6,-41],[5,-76],[20,-85],[19,-75],[2,-88],[5,-70],[9,-76],[19,-29],[15,-26],[-3,-36],[-11,-44],[-15,-33],[-38,-11],[-30,-30],[-25,-21],[-19,-25],[-13,-26],[-7,-29],[5,-127],[-3,-47],[-13,-67],[-12,-53],[-5,-16],[-1,-24],[-2,-22],[-14,-5],[-18,10],[-11,-6],[-8,-18],[7,-41],[7,-73],[9,-31],[-2,-24],[-4,-53],[-12,-42],[-17,0],[-10,-18],[-5,-30],[5,-39],[22,-31],[7,-21],[-3,-27],[-17,-11],[-10,-22],[-9,-49],[-13,-55],[-13,-41],[-3,-56],[19,-60],[-2,-59],[-2,-171],[-1,-58],[5,-97],[-7,-26],[-4,-25],[19,-71],[21,-113],[5,-45],[-3,-31],[-28,-27],[-23,-11],[-13,19],[-10,-8],[-10,-33],[-12,-27],[-5,-27],[13,-34],[7,-66],[-15,-29],[-10,-31],[4,-41],[4,-74],[-9,-123],[12,-44],[14,-21],[43,-25],[32,-12],[9,-41],[-4,-33],[-15,-16],[-24,-14],[0,-53],[20,-51],[23,-36],[5,-32],[-1,-34],[-16,-28],[22,-60],[10,-41],[-10,-32],[-15,-47],[-12,-23],[0,-26],[-5,-52],[-1,-51],[4,-31],[137,-24],[31,-9],[18,-31],[-3,-38],[-17,-40],[-11,-76],[-27,-13],[-27,20],[-29,-7],[-26,-5],[-36,-2],[-48,-10],[-30,11],[-2,-28],[8,-48],[64,-15],[60,-28],[18,-51],[24,-58],[25,-36],[1,-58],[-39,-61],[-5,-43],[-51,-13],[-15,-25],[-7,-84],[6,-66],[20,-23],[13,-43],[-15,-51],[-34,-35],[-19,-33],[12,-27],[15,-42],[5,-23],[8,-62],[10,-87],[-1,-42],[-9,-32],[-34,-49],[-24,-23],[-4,-61],[-2,-45],[2,-41],[15,-33],[-1,-33],[-20,-7],[-18,-16],[-17,-58],[-50,-60],[-17,-27],[1,-46],[-20,-65],[-16,-57],[-13,-53],[2,-56],[28,-24],[23,-54],[9,-69],[-17,-79],[-40,-30],[-23,-33],[-7,-25],[6,-83],[-2,-38],[-6,-37],[-10,-28],[-22,-31],[-38,-28],[-32,-19],[-14,-21],[-17,-48],[-15,-52],[3,-65],[-90,-8],[-6,-48],[-20,-38],[-6,-69],[20,-66],[9,-56],[-16,-67],[6,-69],[2,-54],[32,-61],[20,-76],[11,-63],[6,-50],[8,-30],[13,-34],[6,-39],[20,-13],[35,37],[25,25],[17,9],[51,-6],[31,23],[14,-3],[19,-13],[14,-27],[11,-62],[7,-69],[-9,-71],[-14,-16],[-5,-20],[5,-43],[16,-31],[-1,-43],[-17,-99],[-12,-41],[21,-46],[18,-40],[37,-31],[30,-43],[21,-35],[-5,-49],[14,-14],[56,-1],[84,-2],[131,-2],[128,-3],[145,-3],[69,-39],[62,-35],[79,0],[78,-41],[58,-27],[35,-11],[36,-10],[5,-38]],[[30988,21683],[-157,54],[-35,30],[-30,3],[-57,-36],[-32,-88],[-16,-25],[-40,-23],[-40,-5],[-134,-85],[-48,-7],[-33,-23],[-32,-32],[-12,-70],[5,-42],[-36,-152],[-9,-84],[0,-44],[10,-70],[-13,-120],[-25,-26],[-59,-34],[-41,24],[-69,22],[-50,46],[-63,33],[-21,20],[-56,92],[-6,31],[-4,39],[30,56],[16,4],[46,-2],[39,9],[25,-30],[6,-65],[-10,-34],[-10,-22],[3,-16],[28,23],[14,145],[94,72],[31,42],[30,66],[5,18],[2,25],[-20,20],[-44,27],[-142,-137],[-64,-36],[-42,-39],[-50,-71],[-9,-21],[-11,-46],[-5,-52],[-49,24],[-76,74],[-15,28],[15,38],[23,31],[2,107],[6,38],[16,30],[29,33],[14,7],[12,-14],[2,-25],[48,2],[93,94],[38,3],[51,-22],[57,13],[11,10],[11,22],[-42,26],[-41,13],[-115,10],[-25,-10],[-34,-51],[-11,13],[-7,25],[-39,18],[-19,-4],[-18,-24],[3,-37],[-10,-41],[-36,-39],[-25,-64],[1,-49],[-1,-26],[-9,-14],[-19,-16],[-60,11],[-34,52],[-13,35],[-38,39],[83,47],[29,27],[27,61],[20,39],[-14,27],[-17,0],[1,-43],[-18,-36],[-38,17],[-57,-52],[-35,14],[-56,-16],[-28,28],[-6,36],[10,38],[-10,63],[-16,15],[-16,-4],[-7,38],[-17,66],[-8,18],[-8,31],[9,7],[19,-8],[17,-20],[26,-3],[57,-43],[24,10],[13,10],[5,36],[0,34],[10,0],[32,-43],[21,4],[36,-12],[19,5],[34,16],[54,48],[27,49],[14,7],[16,-6],[12,-15],[0,-34],[12,-32],[17,-26],[5,-31],[-3,-32],[-31,-43],[-6,-16],[11,-16],[12,8],[18,21],[10,30],[2,16],[1,22],[-1,27],[-25,76],[-3,18],[0,35],[28,32],[8,25],[2,48],[-15,33],[-61,77],[-101,76],[-12,-8],[-8,-14],[10,-10],[13,-5],[90,-63],[24,-37],[15,-10],[19,-24],[-5,-36],[-91,-34],[-72,-76],[-55,-46],[-37,17],[-18,47],[-19,60],[-28,35],[-16,-4],[-13,7],[-11,18],[-21,-15],[-49,42],[-13,18],[35,58],[39,-22],[9,165],[-12,37],[-51,41],[-24,-5],[-34,5],[-23,19],[-26,8],[-22,11],[-29,25],[-34,14],[-47,104],[-20,55],[-11,60],[72,2],[42,10],[10,25],[-15,47],[-20,38],[15,36],[21,27],[22,-12],[56,-61],[9,-41],[39,-126],[10,-12],[4,-11],[82,-71],[11,1],[-5,59],[23,81],[23,26],[11,0],[1,13],[-22,34],[11,44],[-7,1],[-19,-28],[-40,-140],[-24,-26],[-33,64],[-18,45],[-10,17],[4,71],[65,-14],[-22,23],[-77,42],[-19,20],[-14,7],[-25,49],[-32,41],[55,74],[27,52],[88,-27],[17,16],[-15,38],[-17,-12],[-27,24],[-43,72],[2,36],[7,67],[17,14],[36,14],[41,-22],[17,-17],[16,8],[-16,49],[-27,19],[-29,35],[3,39],[9,33],[8,35],[5,50],[-3,39],[8,17],[13,8],[1,15],[-26,-3],[-9,-49],[-3,-45],[-19,-35],[-7,-41],[-5,-48],[-10,-55],[-23,21],[-13,21],[-5,15],[3,28],[-6,175],[-1,147],[11,114],[32,45],[14,13],[13,-6],[20,1],[14,16],[-45,28],[-28,-16],[-20,-22],[-37,17],[-7,58],[-21,51],[-4,65],[2,93],[51,-8],[42,-18],[110,2],[90,-90],[40,12],[-2,18],[-30,22],[-19,51],[-11,14],[-6,31],[-1,35],[-23,129],[-9,-3],[-9,-44],[-18,-74],[-26,-36],[-40,-15],[-40,-8],[-34,14],[-8,31],[1,35],[-15,17],[-39,16],[-11,8],[-13,32],[19,49],[15,29],[18,-6],[18,-13],[23,-38],[22,-7],[25,30],[5,21],[-16,13],[-14,5],[-23,16],[-44,58],[22,59],[52,68],[16,16],[-14,57],[16,63],[-16,51],[-29,56],[-39,12],[-8,-16],[-2,-23],[6,-17],[-3,-12],[-9,0],[-50,12],[-33,37],[-54,34],[-7,26],[-6,39],[19,67],[-10,1],[-35,-52],[-53,-27],[-40,-9],[-17,-20],[-7,-18],[11,-10],[22,-2],[17,-65],[-4,-25],[-8,-16],[-19,-4],[-38,45],[-20,51],[0,40],[14,54],[61,74],[17,31],[36,34],[48,78],[41,43],[-20,36],[-21,53],[2,75],[84,30],[37,-13],[47,3],[26,18],[18,3],[40,21],[17,29],[4,22],[0,20],[-4,23],[-7,62],[7,21],[17,24],[22,8],[10,-2],[27,-22],[-6,-32],[-10,-39],[-22,-153],[-11,-35],[-17,-30],[12,-62],[-18,-44],[-76,-47],[-10,-2],[6,-17],[44,4],[34,10],[34,39],[11,60],[14,117],[18,17],[22,3],[11,-27],[-4,-62],[0,-60],[-28,-176],[-35,-71],[-4,-19],[2,-22],[27,3],[21,38],[15,49],[15,68],[-2,49],[5,30],[6,100],[11,50],[-1,71],[-19,26],[-26,16],[-7,43],[14,86],[50,-3],[48,59],[31,21],[18,-5],[62,-56],[12,-1],[-2,21],[-9,14],[-25,19],[-45,60],[-61,10],[11,78],[12,72],[30,9],[49,24],[94,107],[17,81],[4,91],[-45,23],[-48,60],[-39,31],[-35,40],[7,59],[5,97],[43,21],[20,132],[-29,102],[7,76],[38,64],[6,45],[11,49],[33,5],[1,27],[-3,49],[-22,58],[-1,80],[21,94],[33,-6],[6,4],[-23,57],[-19,63],[3,25],[18,21],[21,12],[23,-32],[33,-103],[5,27],[-13,104],[-11,130],[-35,-17],[-31,9],[-12,20],[-12,30],[11,35],[11,27],[23,33],[49,12],[35,42],[11,87],[-11,-9],[-19,-76],[-32,-26],[-16,4],[-19,14],[-38,67],[-21,15],[-20,2],[-17,-17],[-44,-117],[-19,-20],[-78,-9],[-28,14],[-31,17],[3,29],[10,31],[17,16],[1,17],[-24,5],[-28,32],[-13,41],[-5,73],[-25,116],[-5,83],[17,59],[38,232],[12,119],[20,104],[0,68],[52,63],[20,38],[45,211],[6,114],[-71,346],[-11,66],[-3,82],[17,136],[2,52],[-15,75],[-40,122],[-1,62],[17,64],[-16,80],[8,49],[9,39],[63,-21],[29,10],[15,23],[12,65],[6,103],[4,44],[5,64],[31,26],[11,61],[26,84],[26,238],[27,58],[27,68],[-11,100],[18,46],[15,34],[14,61],[19,58],[46,83],[11,101],[35,176],[7,112],[11,76],[-3,71],[21,86],[20,73],[7,40],[46,97],[8,76],[-17,52],[0,81],[-13,112],[30,41],[12,31],[39,179],[-3,70],[11,87],[-25,103],[-4,231],[-14,179],[-23,188],[2,105],[-15,131],[0,76],[11,171],[74,108],[15,121],[9,163],[-3,119],[-8,54],[-36,87],[-10,157],[7,41],[31,44],[21,61],[11,95],[23,75],[9,181],[18,144],[10,50],[30,63],[5,17],[5,48],[-2,113],[5,70],[23,136],[3,63],[26,141],[6,101],[12,53],[-5,60],[8,134],[-18,76],[-4,44],[22,137],[16,34],[24,64],[11,72],[2,45],[-32,227],[-4,78],[7,180],[11,116],[-3,93],[3,48],[6,60],[21,72],[5,52],[-7,21],[-26,27],[-21,66],[-2,65],[7,47],[2,67],[31,13],[17,37],[16,70],[20,169],[9,209],[12,125],[8,63],[7,130],[12,85],[2,78],[-2,60],[-30,304],[0,112],[13,174],[0,244],[-2,57],[-12,54],[-3,72],[-18,127],[-17,253],[0,134],[-7,114],[-16,30]],[[30936,21513],[-1,-171],[0,-169],[-1,-157],[0,-158],[0,-152],[-1,-156],[-2,-175],[-2,-130]],[[30929,20245],[-41,0],[-12,-13],[-66,-19],[-112,29],[-28,27],[-38,58],[-13,-16],[-36,-25],[-36,-19],[-30,-2],[-28,24],[-6,12],[-6,3],[-60,-34],[-66,34],[-53,21],[-84,12],[-59,43],[-109,-4],[-19,14],[-7,42],[6,20],[23,11],[6,24],[24,-6],[30,-31],[9,1],[20,29],[30,26],[11,3],[54,-32],[22,4],[32,14],[5,12],[5,22],[9,13],[28,6],[27,-12],[3,-38],[-4,-41],[36,-11],[43,1],[30,-15],[4,25],[-48,65],[-20,40],[-26,24],[-35,12],[-28,75],[1,66],[-3,64],[62,36],[-14,55],[21,41],[25,16],[24,-153],[18,-54],[-23,-11],[-47,1],[27,-76],[43,-25],[37,-56],[1,-41],[20,-18],[50,-1],[34,8],[16,27],[19,9],[33,-34],[57,-25],[15,-17],[11,-30],[0,-31],[3,-16],[17,8],[23,42],[12,15],[14,7],[8,10],[1,12],[-42,31],[-220,141],[-28,56],[-18,71],[1,73],[16,23],[39,29],[72,41],[84,58],[10,11],[-1,37],[-10,25],[-33,18],[-35,4],[-33,-1],[-33,-8],[-60,-39],[-34,2],[-32,21],[-24,42],[-13,57],[0,36],[5,33],[15,35],[19,14],[18,-2],[17,8],[10,12],[8,16],[-3,13],[-6,12],[-27,24],[-10,23],[-23,38],[12,10],[41,6],[28,-26],[26,-30],[16,0],[15,13],[33,38],[28,49],[25,56],[21,34],[23,3],[69,-105],[24,-4],[80,57],[9,-3],[28,-29],[8,-12]],[[31366,20072],[-8,-22],[-17,-29],[-24,-23],[-23,-6],[-16,12],[-9,20],[-4,21],[-5,11],[-9,2],[-11,0],[-14,-8],[-29,-29],[-13,-8],[-9,-2],[-84,22],[-8,9],[-10,19],[-11,59],[-35,52],[54,29],[65,0],[125,-22],[49,-5],[39,-50],[6,-30],[1,-22]],[[29507,26874],[-21,-12],[-19,-3],[-20,9],[-35,-1],[-34,22],[-32,32],[-9,19],[3,26],[24,61],[22,116],[15,166],[-12,63],[1,26],[6,31],[2,33],[-1,32],[3,30],[24,64],[4,29],[0,31],[11,64],[-3,21],[-9,18],[7,16],[85,-47],[56,-11],[3,-49],[11,-38],[7,-68],[8,-16],[-4,-49],[-26,-21],[2,-45],[15,-42],[-22,-16],[-23,-9],[-6,-11],[-17,-10],[-20,-23],[6,-21],[26,-48],[29,-33],[16,-49],[21,-51],[-10,-33],[-19,-46],[-31,-31],[-27,-19],[3,-76],[-10,-31]],[[29312,23532],[2,-85],[-4,-85],[-11,-104],[2,-21],[12,-5],[4,-13],[-4,-55],[-7,-42],[-13,-35],[-7,-41],[-7,-9],[-30,-7],[-17,4],[-13,47],[-4,29],[1,38],[-16,51],[-1,19],[6,34],[14,16],[2,52],[6,15],[15,21],[2,9],[-1,8],[-5,1],[-61,-64],[-5,-18],[-3,-24],[-1,-84],[-10,-49],[-10,-9],[-28,-2],[-37,5],[-42,44],[-27,-12],[-6,54],[14,44],[51,-4],[8,77],[-16,18],[-18,32],[-10,28],[9,21],[30,31],[15,3],[15,-17],[36,13],[-2,49],[-32,22],[7,37],[41,35],[24,36],[2,41],[-10,40],[3,16],[20,34],[29,16],[13,-2],[26,-24],[24,-3],[5,-7],[5,-26],[15,-193]],[[29025,23753],[-32,-1],[-7,103],[36,149],[3,56],[-12,43],[-5,35],[3,14],[47,30],[14,-32],[18,-83],[33,-119],[-1,-114],[-18,-28],[-58,-29],[-21,-24]],[[29337,21357],[5,-5],[10,1],[16,-9],[58,-11],[52,-27],[27,-26],[35,-7],[29,-33],[13,-8],[15,-2],[39,-60],[2,-7],[44,-47],[2,-7],[-25,-3],[-51,22],[-25,1],[-19,7],[-4,4],[-4,27],[-5,13],[-49,63],[-21,14],[-35,12],[-40,-8],[-28,8],[-9,-3],[-40,50],[-40,42],[-17,50],[-25,38],[-1,11],[12,9],[27,-22],[27,-37],[15,-14],[10,-36]],[[29287,23852],[-6,-14],[-34,9],[-59,-15],[-25,52],[-11,83],[-8,18],[-14,47],[-8,31],[-15,48],[-6,51],[-3,16],[13,30],[62,29],[22,48],[19,-6],[-5,-98],[11,-33],[22,-28],[3,-11],[4,-35],[11,-53],[13,-26],[4,-15],[0,-13],[-5,-19],[15,-96]],[[29743,21035],[8,-46],[4,-9],[20,7],[34,4],[57,-17],[6,-6],[24,-51],[19,-22],[28,-47],[-28,-32],[-17,-45],[-1,-23],[-11,-13],[-17,-14],[-26,-27],[-31,-3],[-31,-14],[-15,-12],[-8,-1],[-10,7],[-11,13],[-4,15],[22,14],[28,50],[5,52],[-30,9],[-18,-7],[-14,0],[-15,16],[-9,-24],[-4,-24],[4,-36],[-3,-11],[-10,-7],[-26,14],[-26,24],[-2,14],[6,48],[-1,25],[-5,37],[-3,3],[-10,0],[-31,-7],[-31,46],[-16,49],[-57,14],[44,69],[67,10],[22,-35],[74,-24],[-4,37],[1,13],[10,16],[6,2],[9,-12],[14,-5],[7,-11],[6,-23]],[[29216,22102],[11,-112],[9,-16],[28,-8],[31,-57],[1,-16],[-37,-96],[-8,-69],[-43,5],[-19,68],[-27,66],[-10,77],[-15,66],[27,38],[26,-8],[1,50],[25,12]],[[30638,20207],[223,-57],[68,35],[55,-1],[16,-48],[-55,-49],[-5,-16],[8,-13],[57,-8],[14,-16],[13,-20],[-11,-31],[-1,-14],[6,-14],[42,-46],[18,-24],[9,-23],[3,-40],[-1,-32],[-9,-4],[-21,10],[-20,18],[-18,46],[-12,10],[-36,9],[-35,22],[-28,-1],[-25,10],[-23,-9],[-8,16],[-10,30],[0,14],[12,48],[0,13],[-7,1],[-26,-10],[-11,7],[-29,35],[-11,7],[-29,3],[-17,-62],[-1,-16],[17,-39],[33,-61],[-17,-1],[-47,19],[-13,11],[-14,31],[-28,18],[-10,11],[-3,13],[-1,40],[-6,6],[-40,-11],[-8,10],[-3,17],[-6,9],[-26,16],[-2,9],[11,12],[7,28],[10,104],[51,-22]],[[30169,20718],[62,-46],[40,0],[0,-28],[5,-49],[-6,-20],[-16,-20],[-9,-29],[-7,-5],[-45,35],[-47,48],[-24,-9],[-31,12],[-25,-3],[-16,-27],[-36,-14],[-7,54],[-33,51],[-33,41],[18,63],[22,10],[20,21],[81,-22],[42,-19],[45,-44]],[[29518,26270],[-14,-25],[-22,-4],[-33,-29],[-4,-25],[-1,-30],[23,-37],[11,-43],[14,-64],[10,-61],[-1,-19],[2,-31],[17,-50],[1,-22],[-1,-22],[-7,-41],[-5,-5],[-17,-4],[-1,-25],[-4,-8],[-46,-3],[-23,12],[2,74],[-29,30],[-20,49],[-23,85],[-19,27],[-22,67],[-33,58],[38,36],[-6,64],[22,22],[33,23],[25,-18],[22,6],[10,16],[-3,65],[7,52],[25,26],[26,3],[10,-29],[13,-28],[32,-23],[-1,-29],[-8,-40]],[[29726,26048],[-68,-46],[-33,15],[-13,34],[-7,29],[-7,48],[12,26],[24,37],[10,24],[4,28],[-2,27],[4,25],[14,9],[50,-28],[52,-43],[18,-29],[3,-23],[-22,-52],[-15,-42],[-24,-39]],[[29155,25984],[-7,-9],[-9,3],[-7,18],[-5,31],[10,12],[7,0],[9,-17],[4,-26],[-2,-12]],[[29082,22649],[-7,-53],[-23,5],[-7,13],[-4,34],[-7,16],[9,34],[7,37],[-2,29],[34,-2],[41,-7],[11,-8],[-12,-25],[-12,-16],[-25,-9],[-3,-48]],[[29137,23711],[-3,-46],[-41,-88],[-35,-52],[-32,-41],[-21,0],[-17,20],[19,33],[24,32],[-8,42],[-7,13],[-10,4],[-17,22],[5,33],[10,15],[14,12],[12,-7],[54,23],[17,18],[32,4],[4,-37]],[[29135,24286],[-20,-7],[-3,19],[-18,31],[16,21],[31,21],[24,-2],[22,-17],[3,-19],[-38,-25],[-9,-14],[-8,-8]],[[29258,26723],[-39,-10],[-9,17],[0,15],[7,12],[20,7],[13,-9],[7,-15],[2,-12],[-1,-5]],[[29546,26024],[-9,-7],[-8,1],[-8,20],[-3,26],[-18,39],[-5,18],[0,22],[10,32],[16,9],[10,-2],[13,-37],[3,-40],[4,-42],[-5,-39]],[[29289,22305],[-1,-48],[-8,-15],[-8,-5],[-20,15],[-11,1],[-18,-25],[-16,-13],[-23,3],[-31,17],[-27,-72],[-13,-25],[-27,-33],[-3,39],[17,60],[8,40],[16,60],[31,-22],[44,22],[41,41],[34,1],[12,-23],[3,-18]],[[29151,22870],[-54,-46],[-16,19],[-39,0],[10,50],[4,37],[6,14],[2,32],[12,58],[32,-19],[24,-6],[33,-19],[36,-12],[10,-51],[-34,-23],[-26,-34]],[[29497,26597],[6,-29],[-13,-4],[-19,5],[-10,-23],[-5,-4],[-45,20],[-7,9],[1,29],[48,3],[31,19],[4,-3],[9,-22]],[[29405,21928],[-9,-6],[-30,14],[-16,12],[-24,30],[-3,31],[-11,38],[7,0],[25,-15],[10,-11],[13,-24],[40,-34],[5,-10],[-1,-13],[-6,-12]],[[29357,25523],[-15,-26],[-27,-12],[-27,20],[-32,-9],[-3,43],[12,36],[24,43],[18,58],[-2,81],[14,18],[8,29],[31,18],[7,-61],[-8,-107],[20,-64],[3,-21],[-4,-24],[-19,-22]],[[31229,19648],[-10,-1],[-25,11],[-36,4],[-5,5],[0,8],[4,9],[20,7],[60,-6],[8,-4],[2,-7],[-10,-19],[-8,-7]],[[31535,20029],[-22,-25],[-16,1],[-6,9],[-1,12],[3,12],[7,11],[16,14],[5,2],[24,-14],[-10,-22]],[[30280,20237],[13,-37],[4,-6],[35,-15],[15,9],[37,4],[23,14],[32,7],[38,-90],[-4,-28],[-30,-30],[-20,-6],[-19,9],[2,15],[-4,13],[-13,17],[-12,-1],[-19,-13],[-10,2],[-19,14],[-35,10],[-7,13],[0,19],[-7,9],[-36,31],[-23,25],[-20,4],[-7,-3],[-7,-13],[-17,-11],[-5,2],[-6,9],[-3,14],[7,29],[11,3],[49,-6],[30,-13],[27,0]],[[31308,19713],[-10,-4],[-7,10],[-12,8],[-46,16],[-1,10],[5,14],[9,12],[18,13],[14,32],[7,-3],[6,-13],[11,-44],[14,-32],[-2,-11],[-6,-8]],[[56349,58133],[-11,4],[-25,16],[-29,13],[-36,11],[-35,-26],[-37,-33],[-12,-25],[-10,-14],[-16,2],[-15,-4],[-9,-24],[-13,-26],[-54,-54],[-11,-19],[-7,-20],[0,-21],[5,-44],[0,-55],[-12,-44],[-13,-30],[-16,-11],[-14,-6],[-8,-19],[-28,-100],[-12,-19],[-25,3],[-71,-150],[-7,-45],[-25,-62],[-33,-70],[-29,-34],[-3,-13],[-8,-13],[-18,-16],[-62,-85],[-75,4],[-33,-34],[-32,-15],[-47,-16],[-14,2],[-61,-7],[-70,2],[-27,-12],[-26,-32],[-19,-29],[-3,-9],[3,-12],[0,-9],[49,-70],[12,-34],[-12,-33],[-6,-5],[-1,-2],[-8,-26],[-29,-79],[-44,-93],[-22,-26],[-10,-17],[-11,-62],[-8,-9],[-30,-8],[-60,-6],[-83,-20],[-50,-7],[-31,5],[-43,-42],[-16,-11],[-10,-4],[-43,-41],[-36,-64],[-12,-12],[-51,-27],[-20,-44],[-9,-4],[-32,58],[-23,53],[-10,53],[-2,17],[-6,-3],[-17,-23],[-16,-27],[-7,-51],[-52,-35],[-45,-30],[-20,-37],[-31,-18],[-40,7],[-31,16],[-31,5]],[[54299,56177],[15,46],[6,35],[1,42],[-2,29],[-18,14],[-12,23],[-26,133],[-27,138],[-38,135],[-41,86],[-30,53],[-9,7],[-15,16],[-11,16],[-55,92],[-56,102],[-15,47],[-28,70],[-32,72],[-16,33],[-8,59],[22,54],[23,67],[29,45],[37,3],[61,-18],[67,-7],[65,14],[17,10],[17,-1],[35,-15],[61,3],[32,27],[-34,47],[-37,74],[-34,81],[-21,73],[-19,95],[-18,116],[-11,152],[2,85],[6,61],[18,100],[-12,58],[2,47],[-1,70],[-6,36],[-24,115],[-5,13],[-21,80],[-9,134],[-24,89],[-39,43],[-21,52],[-8,91],[-15,25],[-61,32],[-50,0]],[[54495,53150],[-13,54],[-8,63],[-4,73],[2,19],[-5,22],[0,4],[-7,55],[7,38],[-5,40],[-16,39],[-14,30],[-8,27],[-7,12],[-15,4],[-21,14],[-27,59],[-27,57],[-34,74],[-27,63],[-33,78],[-31,72],[-19,69],[-7,40],[9,4],[13,1],[6,7],[0,19],[-14,54],[-6,70],[-12,42],[-35,66],[-35,49],[-11,26],[-6,36],[-13,231],[-6,65],[-10,29],[-8,13],[-3,16],[1,41],[5,37],[-1,14],[10,32],[0,213],[-5,11],[-6,18],[-10,-1],[-11,2],[-11,31],[-9,39],[3,28],[9,23],[11,20],[13,17],[39,34],[11,17],[7,21],[4,29],[23,109],[33,109],[15,23],[14,72],[20,89],[8,41],[6,41],[10,33],[37,54],[28,96]],[[43008,61604],[-27,-11],[-12,5],[-3,46],[-6,30],[1,14],[63,59],[21,-10],[16,-47],[-11,-26],[-42,-60]],[[43487,60488],[-17,-53],[-36,4],[-19,22],[-22,66],[0,52],[8,44],[-1,39],[3,10],[11,-6],[2,-26],[34,-64],[12,-13],[25,-75]],[[43086,61530],[-22,-13],[-14,1],[-21,21],[7,22],[22,24],[15,5],[12,-43],[1,-17]],[[43634,61196],[23,-11],[8,4],[15,-2],[16,-30],[3,-33],[-8,-40],[-30,-33],[-18,4],[-21,30],[12,60],[0,51]],[[43247,60400],[-21,-22],[-15,10],[-15,23],[-7,33],[6,28],[29,33],[17,-11],[10,-51],[-4,-43]],[[43309,61418],[11,-17],[4,-12],[-17,-7],[-42,22],[-11,-13],[-11,-48],[-21,72],[2,27],[4,8],[30,-19],[51,-13]],[[43642,61439],[-9,-30],[-11,44],[-6,10],[-3,62],[16,19],[8,1],[0,-64],[5,-42]],[[43560,60562],[-8,-2],[-11,26],[2,36],[-1,9],[10,39],[20,-4],[6,-28],[0,-59],[-18,-17]],[[13151,83022],[26,-34],[61,22],[11,-4],[12,-13],[12,-28],[14,-42],[3,-46],[-5,-17],[-11,-18],[-98,-73],[-2,-7],[2,-7],[9,-7],[19,1],[77,18],[5,13],[5,57],[11,31],[0,23],[-7,55],[1,22],[54,5],[33,20],[35,38],[8,-1],[-5,-68],[-5,-21],[-33,-84],[-19,-73],[-9,-73],[-2,-120],[-8,-41],[-15,-25],[-93,-43],[-48,2],[-43,40],[-20,27],[15,33],[10,2],[30,-7],[24,-12],[10,0],[-2,7],[-66,63],[-49,28],[-14,32],[-1,24],[-4,14],[-38,86],[-8,34],[-5,48],[0,49],[10,80],[4,8],[16,-1],[27,-9],[66,-8]],[[13402,82485],[28,-53],[8,-48],[-3,-56],[-45,-22],[-23,17],[-11,-3],[-15,-17],[19,-7],[26,-28],[23,-36],[32,-6],[44,-25],[-33,-45],[-5,-26],[41,-72],[4,-18],[13,-4],[30,6],[4,-6],[0,-15],[-19,-42],[2,-8],[17,-7],[32,0],[8,-41],[-30,-38],[-55,49],[-25,48],[-14,45],[-17,25],[-52,57],[-78,121],[-21,18],[-20,48],[-6,23],[1,15],[7,9],[24,5],[0,24],[-90,42],[-10,8],[-12,30],[7,4],[49,-5],[53,14],[33,11],[13,13],[27,17],[11,-1],[28,-20]],[[14667,81013],[138,-72],[138,-35],[102,-42],[62,-13],[22,-9],[15,-15],[17,-36],[29,-85],[23,-55],[46,-94],[37,-67],[8,-27],[-8,-8],[1,-16],[28,-65],[52,-59],[41,-28],[86,-45],[53,-45],[16,-30],[23,-30],[9,-21],[19,-76],[35,-73],[36,-139],[7,11],[4,42],[4,9],[8,5],[7,-17],[6,-36],[23,-87],[-7,-26],[-7,-2],[-31,11],[-10,-15],[-15,-32],[-10,-13],[-6,6],[-90,31],[-55,29],[-72,45],[-87,47],[-50,33],[-41,33],[-29,29],[-5,24],[1,11],[56,77],[23,42],[9,31],[5,34],[-3,41],[-3,-3],[-5,-40],[-8,-34],[-10,-28],[-6,-9],[-67,-14],[-54,4],[-27,-33],[-8,-4],[-15,11],[-33,44],[-47,36],[5,9],[31,19],[16,26],[-3,5],[-11,-2],[-10,6],[-19,34],[-10,10],[-23,-16],[-10,-1],[-9,23],[13,53],[1,13],[-24,-20],[-8,7],[-7,17],[-7,7],[-19,-3],[-21,15],[-7,-6],[-3,-23],[-7,-6],[-31,39],[-8,1],[-15,-29],[-5,-2],[-9,13],[-4,71],[2,21],[4,7],[28,16],[79,18],[7,13],[-60,-7],[-15,10],[-17,24],[-17,0],[-9,8],[-10,18],[-25,64],[-17,17],[-29,10],[-15,12],[-6,-5],[-6,-19],[-9,-11],[-19,-7],[-19,5],[-14,18],[-8,22],[-4,25],[8,33],[0,14],[-3,15],[-7,12],[-9,10],[-5,-5],[-1,-20],[-5,-14],[-17,-11],[-13,19],[-9,27],[-11,19],[-57,0],[-27,-25],[-13,-2],[-13,6],[-2,13],[12,35],[-3,47],[-3,12],[-27,7],[-4,12],[15,57],[9,11],[12,4],[53,4],[17,-8],[26,-34],[-1,13],[-9,39],[-2,24],[18,26],[-17,8],[-63,6],[1,-17],[5,-24],[-37,-21],[-28,-4],[-26,4],[-21,12],[-37,51],[-23,51],[1,27],[13,29],[16,19],[39,18],[51,1],[57,-23],[143,-104]],[[10833,91964],[39,-9],[126,-19],[119,11],[221,-61],[137,-114],[111,-57],[45,-38],[72,-34],[169,-75],[53,-7],[98,-36],[61,5],[104,-9],[71,-28],[140,-79],[29,-7],[8,6],[-49,78],[-8,7],[-56,29],[-67,14],[-5,6],[-12,27],[4,11],[14,5],[50,-1],[29,5],[4,11],[-21,2],[-25,11],[-30,18],[-17,17],[61,115],[21,-11],[32,26],[58,-17],[10,10],[7,58],[9,14],[16,11],[80,10],[99,-10],[11,5],[-10,39],[-1,16],[6,35],[6,18],[12,10],[46,-8],[15,-17],[15,-30],[16,-17],[49,-17],[6,-11],[-19,-45],[-19,-24],[-41,-62],[-3,-16],[63,28],[71,38],[60,22],[51,4],[36,12],[22,21],[16,22],[31,70],[21,12],[87,-4],[21,2],[13,7],[-2,8],[-19,11],[-25,3],[0,5],[9,12],[14,6],[42,8],[29,-25],[19,-2],[63,28],[98,74],[39,21],[34,3],[29,-13],[22,4],[29,41],[12,23],[17,19],[73,43],[46,10],[29,-8],[33,-18],[28,-7],[37,5],[27,-2],[13,8],[47,50],[15,0],[14,-14],[24,-36],[0,-18],[-31,-44],[-225,-126],[-69,-54],[-34,-20],[-36,-11],[-69,-9],[-27,-11],[-46,-10],[-109,-17],[-21,-9],[-14,-10],[-39,-66],[-18,-22],[-38,-33],[-41,-20],[-58,-7],[-36,-31],[-42,-60],[-33,-42],[-39,-36],[-42,-46],[-11,-25],[13,-32],[7,-10],[42,-18],[16,4],[-15,17],[-35,25],[-5,9],[9,7],[166,-19],[36,19],[12,16],[-2,9],[-45,3],[-10,15],[-7,29],[-2,23],[4,17],[10,22],[49,35],[52,15],[40,20],[22,19],[60,32],[23,27],[13,20],[2,10],[-11,7],[9,18],[43,16],[20,1],[61,-15],[11,-12],[-6,-31],[8,2],[24,39],[13,13],[14,3],[13,-5],[14,-13],[8,-38],[1,-63],[3,-25],[16,43],[11,20],[59,93],[40,51],[46,50],[65,37],[152,61],[85,17],[43,15],[21,13],[14,17],[24,19],[4,-2],[-9,-39],[-6,-12],[-56,-24],[-5,-19],[6,-29],[9,-19],[13,-9],[23,6],[33,23],[41,34],[89,86],[8,16],[22,69],[51,31],[92,35],[22,22],[-80,19],[-17,13],[-3,8],[15,19],[-36,20],[-14,12],[1,36],[11,25],[24,24],[14,5],[36,-15],[30,-18],[104,-85],[42,-42],[25,-33],[58,-102],[26,-59],[21,-61],[21,-44],[20,-27],[100,-107],[52,-45],[44,-28],[49,-22],[57,-16],[38,-2],[60,46],[1,29],[-26,50],[-27,35],[4,21],[35,40],[-3,14],[8,42],[24,-8],[10,1],[13,15],[17,29],[22,24],[27,19],[7,12],[-26,9],[-16,0],[-12,4],[-8,8],[11,9],[57,22],[11,22],[19,14],[23,5],[15,-6],[16,-17],[1,-28],[-7,-46],[-2,-37],[18,-87],[16,-19],[63,-25],[-4,-22],[-72,-91],[-16,-23],[-7,-17],[2,-14],[13,-12],[24,-9],[63,-3],[18,8],[122,3],[22,6],[19,18],[28,44],[31,14],[10,12],[19,52],[10,61],[9,26],[14,16],[19,5],[48,-6],[22,5],[88,-5],[88,4],[92,-11],[58,-12],[54,-20],[104,-46],[41,-26],[145,-113],[43,-23],[79,-22],[274,-49],[34,-13],[72,-51],[50,-30],[59,-29],[73,-25],[144,-37],[24,-13],[26,-3],[30,5],[132,-22],[35,1],[25,-4],[31,-15],[45,-6],[-2,11],[-51,59],[2,9],[21,1],[64,-10],[15,17],[21,-1],[49,-8],[53,-18],[56,-28],[68,-24],[104,-60],[57,-50],[55,-62],[29,-43],[6,-24],[11,-12],[17,0],[7,-9],[-16,-53],[-9,-14],[-12,-9],[-49,-11],[-136,13],[-25,-43],[-76,-37],[-13,-16],[-4,-11],[6,-38],[-10,-12],[-62,-43],[-2,-12],[40,-18],[43,-30],[34,-7],[43,4],[54,-11],[65,-25],[45,-12],[25,2],[35,-4],[44,-12],[59,-4],[129,1],[39,-8],[54,-4],[105,1],[19,1],[33,21],[22,6],[38,1],[108,14],[38,0],[34,11],[45,23],[27,4],[10,-14],[19,-6],[27,2],[52,23],[120,71],[43,0],[32,22],[8,0],[8,-9],[30,-52],[9,-8],[20,-4],[20,-27],[20,-39],[16,-11],[113,-2],[39,-11],[12,-11],[13,-31],[7,-60],[5,-22],[16,-33],[11,-9],[10,9],[28,84],[10,13],[18,-4],[6,-5],[28,-62],[40,-46],[100,-84],[16,-31],[6,-23],[-6,-21],[-17,-18],[-27,-15],[-37,-11],[-34,4],[-32,19],[-10,1],[11,-17],[66,-70],[17,-28],[16,-18],[14,-10],[13,-15],[12,-21],[55,-56],[16,-27],[62,-84],[30,-33],[23,-19],[8,-1],[-5,15],[-79,111],[-41,70],[-5,17],[-3,26],[-2,85],[6,13],[28,11],[35,-39],[13,-5],[9,2],[5,10],[20,-9],[36,-29],[12,0],[-27,54],[-19,27],[-7,19],[18,28],[-10,14],[-45,41],[-24,42],[-21,65],[-2,25],[3,26],[-3,22],[-29,43],[-31,30],[-24,35],[-5,19],[3,50],[19,21],[36,29],[9,30],[-16,31],[-3,14],[10,-2],[70,15],[18,-5],[26,6],[35,19],[28,9],[36,-2],[20,5],[24,8],[13,9],[22,36],[12,6],[37,-4],[21,-8],[9,3],[-1,50],[7,18],[37,37],[39,4],[25,10],[30,20],[21,19],[21,29],[9,38],[-7,11],[-44,15],[-26,-8],[-59,-27],[-61,-34],[-24,-33],[-6,-41],[-12,-18],[-47,17],[-21,0],[-25,-7],[-27,-16],[-29,-25],[-42,-4],[-56,15],[-33,5],[-34,-26],[2,-20],[15,-28],[-15,-17],[-82,-6],[-21,4],[-44,-12],[-17,3],[-12,13],[-89,58],[-9,11],[22,47],[82,126],[9,8],[152,22],[91,23],[169,69],[32,6],[108,46],[45,12],[41,-8],[60,-24],[32,-21],[22,-26],[18,-37],[23,-81],[8,-69],[14,-26],[51,-48],[26,-18],[16,-6],[14,11],[9,2],[7,-4],[7,-31],[9,-3],[30,4],[32,-12],[5,-10],[-7,-37],[9,-16],[40,-34],[37,-12],[44,-6],[81,6],[68,16],[51,26],[42,-29],[84,-71],[50,-51],[41,-23],[84,-29],[19,-15],[31,-2],[43,12],[48,-5],[54,-21],[37,-9],[127,40],[20,2],[47,19],[31,6],[36,0],[27,5],[17,13],[68,-1],[122,-14],[84,-17],[49,-23],[41,-12],[32,-3],[31,4],[30,11],[32,20],[68,11],[11,5],[-1,11],[-14,17],[-39,32],[-27,31],[-5,20],[1,24],[8,14],[16,4],[26,-15],[34,-34],[98,-126],[24,-17],[13,-17],[90,-45],[42,-9],[50,29],[22,17],[11,17],[0,17],[4,24],[-5,14],[-13,20],[-36,26],[-59,34],[-53,10],[-48,-14],[-55,-29],[-23,12],[-68,81],[-17,31],[0,8],[31,-9],[2,9],[-19,40],[-12,13],[-39,62],[-5,18],[24,5],[11,7],[15,-1],[70,-37],[35,17],[83,23],[-33,36],[-7,35],[3,8],[27,5],[53,-29],[25,-4],[19,11],[19,1],[21,-10],[19,-15],[37,-43],[17,-26],[20,-39],[7,-6],[97,-3],[54,35],[-1,-12],[-12,-27],[-68,-105],[1,-13],[36,6],[17,8],[10,13],[9,29],[6,9],[101,49],[29,8],[-18,-53],[-37,-188],[-8,-65],[-8,-23],[-40,-72],[1,-25],[43,-61],[8,-17],[4,-50],[8,-9],[36,-1],[37,16],[44,11],[7,-11],[-24,-60],[1,-6],[42,16],[19,2],[8,-3],[31,-31],[3,-23],[0,-35],[-3,-24],[-11,-14],[-13,-6],[-16,-4],[-14,2],[-44,-5],[-26,6],[-25,19],[-18,5],[-21,-15],[-34,3],[-37,41],[-15,-4],[-5,-6],[0,-9],[17,-27],[132,-143],[20,-29],[4,-43],[3,0],[12,43],[-8,20],[-67,83],[-9,31],[3,8],[18,9],[96,-21],[38,4],[25,15],[13,18],[9,99],[17,63],[-10,57],[-26,90],[-21,54],[-47,53],[-5,20],[53,163],[9,14],[12,6],[42,2],[30,14],[47,-19],[26,-5],[33,17],[72,69],[28,21],[36,40],[43,59],[48,43],[76,40],[47,32],[10,12],[-44,2],[-10,6],[-9,30],[4,57],[-1,31],[-5,28],[-9,25],[-14,23],[-13,13],[-11,4],[-8,-2],[-4,-8],[-12,-54],[-15,-39],[-20,-21],[-43,-14],[-72,-10],[-30,19],[-4,16],[10,62],[25,27],[66,53],[42,42],[1,7],[-39,1],[-9,8],[-9,52],[3,20],[6,22],[27,16],[84,20],[65,23],[2,-8],[-52,-70],[-5,-16],[20,-16],[50,41],[32,34],[6,11],[-30,4],[-1,14],[5,26],[-2,17],[-33,22],[-40,-12],[-34,-23],[-28,-7],[-41,0],[-30,5],[-18,11],[-23,25],[-26,38],[-33,38],[-12,4],[-10,-4],[-22,-37],[-9,-4],[-130,52],[-56,28],[-26,22],[-34,13],[-39,4],[-32,11],[-24,16],[-19,23],[-15,31],[-27,38],[-62,77],[-16,49],[-2,19],[4,49],[58,82],[10,24],[20,17],[29,11],[21,4],[47,-11],[-28,26],[-3,13],[29,45],[-6,2],[-78,-34],[-20,2],[-28,21],[-52,75],[-1,47],[17,65],[5,38],[-15,33],[6,10],[16,9],[7,10],[-7,36],[11,20],[38,38],[36,33],[22,10],[19,-2],[19,-10],[21,-19],[34,-19],[26,-5],[19,10],[33,71],[11,18],[-11,8],[-63,0],[-28,5],[-16,7],[-11,27],[9,15],[62,50],[29,53],[86,73],[87,34],[43,11],[34,3],[15,-5],[18,-36],[4,-39],[47,-48],[38,-4],[24,7],[76,-2],[18,-14],[-1,-15],[-9,-24],[6,-21],[51,-40],[47,-28],[42,-34],[63,-72],[13,-21],[10,-22],[16,-80],[2,-31],[-6,-88],[-5,-17],[-16,-20],[5,-8],[50,-23],[39,-46],[21,-15],[49,-24],[9,-9],[12,-16],[28,-66],[46,-59],[3,-13],[-10,-28],[7,-9],[18,-10],[16,5],[14,21],[15,6],[17,-9],[12,-16],[17,-38],[25,-31],[-2,-10],[-12,-8],[-68,-8],[-37,6],[-35,15],[-25,16],[-22,24],[-9,-2],[-12,-20],[-25,-29],[-16,-27],[18,-12],[89,1],[19,-8],[23,-19],[-26,-31],[-60,-53],[-129,-103],[-38,-26],[9,-8],[14,-2],[45,5],[41,14],[51,-6],[22,-12],[-8,-11],[14,-17],[83,-42],[52,8],[53,40],[41,20],[51,-2],[14,-5],[-5,-10],[-38,-22],[-34,-25],[-3,-7],[42,10],[94,-16],[45,-4],[34,4],[31,-6],[29,-17],[9,-11],[-27,-6],[-25,0],[-22,-11],[-18,-20],[-13,-26],[-8,-33],[-19,-13],[-31,6],[-13,9],[7,13],[-9,2],[-25,-10],[-20,0],[-5,-9],[137,-104],[44,-91],[30,-38],[3,-10],[-20,-26],[-1,-19],[9,-56],[-4,-45],[-14,-78],[13,-25],[29,-22],[18,-27],[12,-10],[9,-22],[10,-14],[12,-6],[8,8],[5,20],[11,19],[31,34],[30,54],[5,17],[-5,42],[4,18],[28,64],[9,44],[8,69],[15,48],[32,40],[56,82],[20,16],[22,8],[40,-2],[28,-26],[39,-49],[49,-44],[90,-60],[25,-23],[51,-59],[21,-59],[15,-84],[13,-50],[10,-17],[5,-25],[-1,-34],[-4,-26],[-7,-19],[-11,-11],[-27,-4],[-34,6],[-9,8],[-18,40],[-7,2],[-31,-29],[-4,-16],[12,-54],[-2,-102],[3,-23],[33,-106],[55,-81],[138,-155],[8,-18],[15,-64],[7,-13],[9,-8],[11,-2],[15,6],[51,48],[44,51],[31,27],[18,2],[18,9],[21,17],[13,18],[7,19],[9,77],[8,37],[21,50],[8,14],[107,127],[9,16],[45,147],[17,67],[2,41],[-6,36],[3,30],[12,24],[13,16],[22,17],[13,24],[7,2],[19,0],[24,-16],[17,-3],[113,19],[0,9],[-66,31],[1,16],[5,21],[21,24],[26,7],[6,15],[0,19],[9,31],[-8,11],[-62,42],[-36,-2],[-9,5],[-31,35],[-11,50],[-1,20],[4,33],[4,9],[-2,15],[-8,20],[0,19],[6,16],[-4,19],[-14,22],[-6,18],[15,56],[1,17],[-15,24],[-10,9],[8,6],[25,2],[31,-7],[36,-18],[43,0],[52,17],[52,9],[91,-4],[21,-5],[90,-52],[70,-26],[32,3],[156,-11],[68,6],[35,-3],[68,-28],[-4,-24],[-30,-39],[-38,-8],[-34,-14],[32,-21],[92,-28],[22,-44],[6,-21],[-11,-18],[6,-10],[21,0],[55,16],[61,-10],[89,-35],[10,-7],[15,-27],[-2,-11],[-78,-67],[-41,-27],[-54,-27],[-1,-15],[75,-3],[58,-7],[27,-9],[14,-13],[19,-27],[3,-22],[-2,-29],[-6,-20],[-69,-59],[-31,-18],[-53,-21],[-23,-17],[-26,3],[-28,20],[-28,5],[-52,-17],[-29,1],[-13,-6],[-2,-13],[25,-37],[14,-14],[6,-11],[-11,-18],[3,-6],[8,-7],[47,-80],[10,-6],[10,3],[20,23],[13,9],[5,-1],[0,-12],[-22,-70],[-2,-19],[0,-17],[11,-35],[23,-38],[30,-35],[45,-46],[60,-49],[22,-24],[33,-56],[7,-22],[-9,-59],[-24,-97],[-15,-55],[-7,-14],[-45,-39],[-26,-9],[-42,1],[-14,-8],[-22,-31],[-30,-55],[-24,-35],[-17,-14],[-32,-17],[-50,-51],[-24,-20],[-86,-21],[-69,-68],[-28,-23],[-30,-12],[-32,-2],[-19,11],[-10,42],[-7,14],[-24,29],[-50,83],[-22,29],[-14,6],[-30,-5],[-14,3],[-33,26],[-11,17],[1,7],[25,9],[-11,14],[-43,37],[-18,20],[-2,6],[-43,26],[-43,7],[-53,-42],[-21,-29],[1,-9],[26,-11],[11,6],[22,26],[11,8],[33,-4],[28,-18],[10,-16],[4,-11],[75,-83],[26,-17],[12,-20],[8,-33],[16,-37],[36,-61],[39,-75],[8,-30],[-20,-14],[-10,-1],[-30,11],[-78,35],[-9,-1],[-20,-18],[-17,-42],[-5,-4],[-42,17],[-78,36],[-52,31],[-27,26],[-32,41],[-37,56],[-45,17],[-52,-20],[-76,-7],[-158,6],[-21,-5],[-8,-7],[14,-30],[-4,-9],[-10,-6],[-3,-9],[18,-32],[27,-23],[79,-30],[52,-25],[32,-22],[10,-19],[1,-20],[-15,-41],[-8,-15],[-183,-203],[-70,-82],[-35,-50],[-32,-33],[-27,-17],[-45,-9],[-62,-2],[-81,8],[-42,26],[-76,70],[-54,41],[-23,14],[-20,39],[-18,7],[-39,7],[-39,21],[-92,70],[-48,28],[-44,15],[-39,3],[-15,-4],[27,-36],[-12,-2],[-31,8],[-32,0],[-55,26],[-55,-4],[-39,5],[-48,14],[-51,7],[-82,0],[-29,-3],[-5,-7],[40,-31],[68,-37],[-9,32],[2,8],[23,11],[107,-19],[122,-42],[31,-4],[34,-15],[38,-25],[52,-51],[99,-116],[32,-29],[43,-27],[215,-40],[75,0],[149,-11],[79,-21],[22,-15],[7,-51],[-7,-26],[-43,-79],[-27,-58],[-168,-245],[-22,-57],[-9,-34],[-30,-34],[-76,-55],[-76,-46],[-46,-10],[-41,11],[-26,14],[-39,45],[-3,-4],[29,-72],[-7,-7],[-23,9],[-53,32],[-17,-6],[-10,-9],[-14,0],[-18,10],[-32,26],[-9,13],[-7,40],[-6,7],[-64,-23],[-10,-7],[26,-16],[9,-12],[25,-58],[2,-13],[-19,-8],[-61,23],[-7,-2],[30,-59],[12,-27],[1,-15],[-39,-66],[-25,-27],[-35,-10],[-21,6],[-24,17],[-18,-2],[-11,-22],[-20,-15],[-29,-9],[-37,4],[-45,17],[-120,62],[-37,9],[-70,9],[-9,9],[1,8],[10,8],[-3,7],[-15,6],[-15,-6],[-16,-16],[-28,-5],[-40,7],[-59,24],[-116,62],[-128,53],[-74,68],[28,-62],[-3,-20],[-14,-19],[-2,-18],[29,-44],[40,-15],[40,1],[1,7],[-16,11],[-15,16],[-7,24],[7,4],[36,-12],[23,-15],[177,-81],[53,-15],[40,-15],[11,-10],[-14,-20],[-71,-50],[-1,-8],[49,4],[59,45],[33,20],[32,13],[43,-22],[55,-56],[44,-32],[63,-18],[37,-19],[62,-53],[10,-27],[6,-111],[-2,-27],[-8,-27],[-14,-26],[-26,-15],[-38,-3],[-30,-11],[-65,-59],[-28,-9],[-117,18],[-45,16],[-21,-1],[-12,-13],[-12,-6],[-46,-5],[-8,-11],[3,-16],[9,-22],[11,-13],[18,-16],[26,-11],[53,-12],[6,-30],[-2,-10],[-18,-20],[-20,2],[-35,24],[-18,1],[-15,-13],[-21,-4],[-27,4],[-15,-10],[-3,-25],[-9,-19],[-31,-30],[-17,-22],[0,-18],[18,-12],[21,-28],[23,-45],[5,-19],[-15,5],[-19,18],[-24,29],[-36,27],[-80,35],[-15,-1],[8,-9],[53,-36],[20,-24],[3,-17],[-45,-38],[-1,-13],[12,-11],[3,-9],[-16,-18],[-26,-16],[-51,-2],[-4,-9],[19,-19],[6,-12],[-16,-16],[-11,-2],[-58,7],[15,-40],[9,-14],[18,-20],[32,-19],[1,-7],[-11,-16],[-19,-20],[-81,-59],[-56,-70],[-8,-22],[14,-45],[1,-12],[-15,-21],[-33,6],[-7,-8],[8,-22],[2,-31],[-5,-42],[-24,-66],[-43,-88],[-33,-81],[-23,-73],[-16,-36],[-31,-2],[-23,-23],[16,-12],[9,-14],[7,-21],[-7,-67],[-19,-111],[-13,-89],[3,-274],[-3,-121],[-9,-67],[-14,-37],[-24,-11],[30,-10],[20,-17],[9,-26],[8,-42],[12,-19],[13,3],[13,-4],[11,-12],[33,-59],[37,-17],[2,-33],[-15,-184],[0,-24],[17,46],[18,144],[23,63],[19,14],[77,7],[81,-16],[31,-2],[27,8],[28,-17],[6,-18],[8,-75],[8,-43],[48,-153],[23,-86],[29,-133],[10,-38],[59,-178],[11,-49],[5,-37],[-2,-26],[-11,-40],[-19,-54],[-18,-42],[-17,-28],[-18,-22],[-18,-14],[1,-3],[21,6],[20,15],[39,37],[15,8],[43,5],[1,-13],[-20,-28],[4,-2],[30,22],[64,31],[252,103],[59,9],[85,-19],[69,-43],[75,-56],[79,-41],[124,-38],[37,-18],[73,-19],[34,-21],[40,-52],[65,-67],[49,-42],[54,-39],[55,-73],[88,-164],[22,-20],[54,-27],[102,-35],[151,-81],[66,-32],[43,-13],[43,-22],[43,-32],[32,-35],[23,-38],[19,-25],[35,-28],[18,-19],[2,-30],[-42,-116],[-1,-10],[42,84],[24,24],[19,11],[39,-1],[59,-14],[53,0],[44,13],[39,6],[31,-1],[23,4],[14,10],[17,0],[68,-29],[27,-2],[99,-27],[63,10],[11,-5],[22,-36],[19,-3],[31,6],[31,-10],[51,-46],[23,-40],[23,-82],[2,-25],[-42,-190],[-13,-73],[-2,-65],[8,-36],[37,-62],[6,-17],[22,-91],[6,-39],[-3,-45],[-11,-75],[3,-56],[9,-85],[-3,-58],[-17,-31],[-11,-29],[-9,-54],[0,-21],[9,-40],[16,-23],[26,-25],[24,-38],[45,-92],[33,-51],[39,-75],[8,-38],[-11,-25],[-14,-17],[-32,-23],[-14,-17],[3,-4],[47,12],[27,-1],[23,-19],[19,-36],[32,-30],[43,-25],[44,-43],[74,-100],[13,-23],[19,-52],[26,-82],[13,-54],[1,-25],[-14,-25],[-49,-46],[-50,-81],[16,4],[32,34],[56,67],[30,13],[29,-7],[45,-20],[39,-27],[35,-36],[51,-95],[55,-76],[30,-65],[-9,41],[-20,48],[-51,76],[-22,39],[-5,19],[-2,21],[4,37],[10,55],[13,39],[16,22],[10,24],[6,25],[8,19],[44,33],[12,-3],[9,-41],[10,-8],[21,-6],[17,-15],[14,-21],[10,-23],[6,-22],[13,-73],[9,-34],[2,41],[11,65],[8,26],[27,39],[-2,17],[-11,22],[-56,97],[-1,24],[15,14],[11,26],[5,40],[12,28],[35,40],[30,62],[16,42],[12,23],[13,5],[-18,17],[-4,11],[-1,51],[-8,54],[-12,25],[-34,53],[-6,16],[-6,60],[4,30],[9,26],[-5,24],[-32,45],[-12,39],[-14,93],[-13,118],[-14,86],[-16,56],[-3,35],[9,14],[11,44],[10,10],[16,-2],[1,5],[-25,23],[-12,30],[1,11],[21,29],[-3,12],[-16,16],[-49,28],[18,10],[11,23],[-2,7],[-20,10],[-22,17],[-17,27],[-20,42],[-13,34],[-12,56],[-22,63],[-9,16],[-11,10],[-12,5],[0,10],[13,14],[210,106],[18,16],[103,59],[48,33],[48,48],[66,49],[32,31],[21,31],[105,122],[44,62],[26,53],[37,64],[49,75],[31,63],[13,54],[16,91],[4,82],[3,119],[-1,106],[-14,167],[-7,53],[-15,62],[-37,125],[-6,35],[-23,57],[-74,151],[-92,101],[-18,26],[-36,30],[-56,34],[-36,28],[-94,104],[-31,13],[-11,27],[-3,19],[4,50],[5,34],[7,26],[7,16],[52,77],[29,61],[20,34],[22,26],[41,34],[23,44],[-6,17],[-18,19],[-4,19],[31,47],[4,13],[-4,45],[6,10],[38,3],[54,-64],[13,5],[-17,18],[-21,43],[3,18],[40,47],[1,21],[-12,29],[-1,24],[23,55],[-6,12],[-65,11],[-11,16],[4,7],[31,19],[2,7],[-54,125],[-9,37],[23,46],[26,20],[-3,12],[-35,2],[-21,7],[-21,35],[8,23],[8,10],[20,54],[20,11],[-4,9],[-74,-23],[-35,19],[-35,-5],[-16,6],[6,19],[62,86],[29,47],[18,43],[10,28],[1,14],[-6,93],[3,26],[25,24],[37,44],[-51,41],[-32,39],[-21,20],[-16,19],[-21,40],[-15,53],[-17,106],[-3,58],[4,42],[7,21],[11,22],[47,41],[82,60],[64,24],[47,-13],[90,-15],[73,-34],[222,-86],[40,-38],[-37,-33],[5,-8],[84,62],[22,12],[19,3],[63,-24],[25,-4],[32,-20],[76,-66],[6,6],[-21,34],[12,15],[60,35],[62,29],[44,28],[47,37],[32,20],[16,2],[21,-11],[56,-49],[36,-25],[29,-26],[40,-47],[16,-10],[31,-32],[41,3],[13,-3],[4,-7],[7,-21],[4,-14],[0,-14],[-9,-42],[-30,-66],[13,-1],[18,14],[24,25],[19,9],[40,-20],[38,-32],[13,-17],[15,-28],[12,-15],[12,-27],[-1,-9],[-11,-14],[-46,-22],[9,-9],[53,14],[17,14],[11,24],[16,6],[63,-41],[9,-14],[-4,-11],[-10,-13],[-27,-14],[-24,-35],[-4,-15],[17,-11],[41,-4],[0,-8],[-24,-16],[-3,-20],[53,-71],[36,-32],[21,-5],[48,-2],[39,-12],[86,-40],[51,-8],[44,13],[29,2],[25,-16],[8,-11],[4,-23],[0,-34],[14,-24],[28,-14],[23,2],[31,27],[25,5],[9,20],[7,37],[8,20],[18,6],[15,-11],[9,-17],[16,-51],[4,-23],[-1,-20],[-8,-19],[-16,-20],[-23,-21],[-19,-31],[-22,-70],[-9,-46],[-2,-28],[1,-29],[4,-33],[9,-27],[21,-37],[1,-13],[2,-30],[-2,-14],[-12,-27],[-34,-26],[-46,-7],[-152,-1],[-41,6],[10,-24],[43,-8],[38,0],[145,-15],[20,-15],[17,-28],[12,-28],[12,-57],[2,-27],[-6,-31],[-15,-33],[-10,-44],[-5,-55],[8,-29],[78,-3],[15,-20],[-1,-15],[-28,-56],[-3,-15],[13,-38],[-2,-11],[-7,-11],[-8,-28],[-7,-46],[-9,-30],[-21,-22],[-11,-5],[-8,6],[-21,62],[-9,9],[-8,-6],[-4,-9],[0,-14],[-4,-14],[-7,-14],[-31,-23],[-50,-16],[1,-16],[34,-9],[43,-28],[25,-4],[38,22],[75,71],[31,19],[27,7],[30,1],[34,-5],[68,9],[17,-7],[20,-15],[25,-25],[17,-23],[9,-23],[15,-85],[21,-23],[4,-16],[2,-25],[-1,-49],[-23,-100],[-11,-36],[-31,-50],[-36,-23],[-64,-21],[-33,-18],[-25,-25],[-1,-13],[72,42],[79,20],[23,24],[17,22],[17,50],[32,130],[18,40],[25,7],[11,-14],[26,-76],[0,-19],[-7,-16],[-42,-74],[15,7],[43,70],[9,21],[5,32],[14,23],[5,-11],[13,-82],[0,-60],[3,-19],[-5,-56],[5,-10],[13,49],[4,37],[6,26],[7,16],[52,50],[61,40],[40,36],[33,17],[50,17],[31,33],[14,50],[12,35],[10,20],[33,34],[17,2],[17,-12],[20,-26],[21,-40],[13,-30],[4,-23],[4,-78],[4,0],[19,60],[3,21],[-2,23],[-6,22],[-20,49],[-7,31],[1,18],[22,11],[31,4],[5,8],[-23,21],[-1,11],[22,36],[13,1],[26,-5],[-5,18],[0,12],[7,5],[42,-11],[5,14],[36,1],[4,12],[-32,18],[-30,12],[-10,9],[-7,15],[-9,35],[2,9],[9,0],[14,-9],[9,18],[9,43],[9,18],[28,-21],[1,9],[-23,68],[4,13],[35,5],[21,-9],[55,-49],[11,5],[-9,14],[-28,29],[-26,19],[-23,9],[-17,16],[-19,45],[-3,18],[2,24],[13,50],[7,11],[14,8],[19,5],[21,-5],[44,-33],[7,11],[-23,18],[-13,16],[-6,21],[2,24],[19,49],[9,40],[39,109],[12,20],[12,12],[8,13],[31,3],[57,-39],[18,-23],[4,-32],[-30,-45],[-51,-33],[-16,-14],[10,-9],[49,27],[42,12],[34,0],[28,-53],[4,-73],[-16,-60],[21,30],[26,17],[22,-40],[2,-32],[12,-31],[24,-40],[25,-36],[-28,-37],[-33,-23],[7,-16],[46,-18],[6,-18],[-5,-24],[7,1],[32,36],[27,-5],[34,-79],[-25,-46],[-39,-21],[-30,-9],[-43,2],[-17,-7],[8,-15],[41,-1],[63,12],[47,19],[20,1],[22,-8],[7,-6],[-23,-13],[-1,-5],[8,-13],[18,-44],[-2,-10],[-17,-25],[27,-5],[38,12],[11,-14],[23,-52],[15,-53],[-64,-73],[-32,-15],[-48,-39],[-13,-31],[-28,-39],[18,0],[49,64],[24,15],[18,-4],[7,-11],[-3,-18],[16,3],[66,37],[28,7],[36,3],[3,-13],[-22,-89],[-38,-69],[-70,-42],[-24,-25],[-31,-40],[12,-7],[66,52],[45,21],[64,17],[28,-3],[51,-104],[28,-10],[24,5],[44,-30],[16,-29],[-4,-21],[-15,-13],[-7,-19],[18,-58],[-11,-33],[-32,-29],[-23,-14],[-24,-5],[-24,-25],[-10,-4],[-33,6],[11,-15],[16,-8],[26,-4],[30,8],[30,-1],[46,-19],[20,-23],[0,-6],[-10,-13],[-15,-42],[-10,-15],[9,-12],[23,-18],[17,-6],[23,6],[25,-8],[82,-99],[-4,-51],[-12,-40],[5,-44],[0,-55],[-44,-15],[-148,25],[-84,39],[-5,12],[24,26],[-21,2],[-24,-10],[-11,-10],[29,-41],[77,-36],[35,-44],[38,-4],[11,-8],[21,-25],[-6,-9],[-39,-3],[-30,-30],[19,-17],[69,-16],[49,-4],[25,-17],[-20,-19],[-58,-22],[-2,-33],[43,-14],[38,8],[16,-3],[11,-80],[7,-17],[-41,-14],[-1,-16],[28,-13],[45,-10],[15,-15],[3,-24],[9,-12],[26,-3],[29,30],[17,25],[25,-9],[1,-31],[30,-36],[10,-6],[9,-51],[24,45],[17,-9],[20,-2],[-7,-44],[-11,-34],[15,-22],[12,-32],[33,-43],[-9,-21],[-38,-45],[-20,-72],[-5,-24],[-20,-41],[-26,-40],[16,4],[60,73],[36,25],[78,13],[19,20],[29,9],[18,-23],[1,-42],[24,-14],[24,14],[22,-12],[-13,-26],[-71,-108],[-21,-44],[-6,-31],[24,43],[90,97],[9,14],[20,42],[18,27],[48,-10],[25,-19],[11,-55],[19,-59],[30,-65],[78,-32],[28,-6],[49,23],[7,30],[38,10],[27,-4],[9,-59],[29,-31],[28,-26],[27,-14],[40,-6],[22,-28],[0,-12],[-22,-30],[-22,-45],[-38,-31],[-53,-1],[-72,-20],[-3,-17],[-16,-19],[-39,-20],[-21,-14],[-35,-72],[-20,-31],[-24,-6],[-34,3],[-22,-6],[-16,-14],[-10,-19],[-7,-7],[-45,-20],[-82,-55],[-44,-2],[-26,7],[-21,-5],[-14,-15],[-39,-27],[-12,-16],[-7,-19],[-5,-38],[-5,-14],[-7,-8],[-33,8],[-37,25],[7,-27],[58,-44],[17,-25],[-16,-21],[-37,-34],[-4,-18],[15,-10],[-6,-15],[-20,-16],[2,-7],[2,-6],[51,23],[45,50],[29,50],[14,14],[58,19],[34,22],[49,39],[54,58],[58,76],[74,59],[91,42],[66,22],[42,1],[2,7],[-37,14],[-32,2],[-39,-10],[-12,24],[2,10],[12,17],[33,15],[161,-21],[55,-17],[60,-137],[14,-44],[4,-32],[-6,-20],[-24,-24],[-69,-48],[-9,-12],[-1,-7],[30,-9],[9,-14],[15,-52],[31,34],[58,83],[48,38],[40,11],[47,5],[17,-1],[6,-27],[25,-54],[23,-14],[45,-7],[40,-67],[15,-46],[14,-27],[-1,-19],[2,-15],[11,-23],[5,-19],[-3,-45],[-23,-77],[17,-71],[-7,-31],[-4,-51],[14,-33],[5,-20],[-13,-11],[-88,-28],[-35,-1],[-9,-17],[27,-5],[48,1],[59,-17],[27,-19],[11,-27],[-3,-21],[-17,-16],[-33,3],[-32,15],[2,-14],[47,-35],[14,-17],[26,-22],[5,-30],[-6,-30],[-90,-120],[-73,-76],[-74,-67],[-119,-129],[-12,-6],[-21,-3],[-57,21],[-45,-5],[-85,-25],[-24,-15],[-47,-45],[-18,-6],[-51,-9],[-47,6],[-19,-7],[-23,-21],[-6,-12],[-7,-38],[-115,-168],[-31,-57],[-59,-60],[-65,-106],[-57,-43],[-19,-58],[-54,-36],[-100,-9],[-47,-10],[-55,16],[-42,-25],[-62,-8],[-30,6],[-121,-57],[-31,54],[-23,21],[-68,3],[-55,22],[-50,4],[-48,10],[-32,0],[-33,-6],[-52,2],[-29,-30],[-96,9],[-41,27],[-34,6],[-44,-6],[-43,-20],[-94,22],[-100,-19],[-87,13],[-24,13],[-138,-35],[-53,20],[-48,-54],[-32,11],[-35,-8],[-12,11],[-23,-8],[-15,-29],[-20,-3],[-33,-52],[-56,-41],[-82,-226],[-7,-87],[-31,-59],[-27,-8],[-22,-1],[-141,-44],[-63,-34],[18,-27],[-21,-21],[-33,-8],[-36,-25],[-24,-28],[-11,-39],[-72,-64],[-84,-147],[-40,-108],[-49,-78],[-34,-30],[-25,-5],[-25,10],[-41,36],[-30,4],[-76,51],[-177,52],[27,-19],[23,-32],[47,-8],[47,0],[99,-63],[48,-22],[30,-19],[25,-43],[-18,-84],[-19,-69],[-24,-53],[-85,-137],[-41,-46],[-72,-163],[-74,-77],[-40,-47],[-42,-74],[-99,-56],[-37,-15],[-34,8],[-41,-46],[-49,-28],[-15,-42],[-117,-114],[-45,-15],[-39,-30],[-11,-51],[-34,-32],[-10,-23],[-29,-72],[-53,-94],[-66,-15],[-24,-32],[-27,-53],[-39,-36],[-77,17],[18,-22],[69,-34],[7,-51],[-34,-12],[-72,-68],[-98,-117]],[[15892,80064],[-11,21],[-27,26],[-10,0],[-11,-8],[-7,-12],[-6,-27],[-4,-8],[-4,1],[-3,7],[-8,37],[2,16],[9,20],[-1,7],[-20,-6],[-8,5],[-4,10],[1,42],[-11,23],[13,10],[32,8],[34,1],[9,18],[10,43],[-24,-40],[-14,-4],[-44,15],[-29,-2],[-4,8],[2,9],[6,9],[4,31],[7,85],[9,31],[3,16],[-2,4],[-38,-59],[-3,-19],[4,-16],[-4,-33],[-18,-10],[-10,5],[-20,-28],[-6,-3],[-91,50],[-10,6],[-15,23],[-23,40],[-7,34],[9,28],[8,14],[10,0],[10,-10],[21,-47],[8,-29],[22,4],[35,37],[8,14],[-35,-14],[-15,1],[-15,15],[-16,30],[-8,34],[0,107],[5,20],[17,16],[11,25],[-1,11],[-10,22],[-15,16],[-15,9],[-4,-3],[23,-46],[0,-18],[-26,-46],[-4,-13],[0,-45],[-3,-9],[-21,-13],[-23,-35],[-39,-12],[-36,4],[-20,17],[-61,86],[-22,36],[0,30],[-42,107],[0,23],[-14,33],[-16,5],[-4,32],[33,68],[21,58],[2,18],[-1,28],[-5,62],[5,27],[-21,-36],[-4,-26],[5,-27],[-3,-30],[-12,-43],[-21,-45],[-42,-21],[-74,12],[-8,6],[-5,15],[-4,66],[-5,-8],[-8,-35],[-7,-51],[-9,-11],[-15,-1],[-12,8],[-9,17],[-19,2],[-34,-14],[-17,6],[-19,0],[-40,15],[-47,4],[-12,11],[1,22],[8,11],[49,10],[48,23],[47,12],[-2,11],[-21,4],[-108,-26],[-34,4],[-6,4],[-1,26],[13,24],[21,23],[6,18],[-12,7],[-20,-5],[-9,14],[10,55],[-9,55],[-13,-52],[-19,-29],[-91,-13],[-15,-15],[-12,0],[-58,28],[-25,17],[-23,25],[-42,57],[-33,37],[-1,67],[7,43],[15,49],[59,104],[21,19],[18,7],[87,9],[65,13],[12,7],[-95,7],[-85,-5],[-29,-16],[-37,-67],[-9,-28],[-10,-21],[-7,0],[-12,7],[-4,9],[-6,22],[-19,34],[-9,40],[-5,59],[1,26],[10,34],[28,66],[-36,-2],[4,55],[13,61],[34,35],[34,26],[31,34],[55,22],[18,-46],[47,-14],[13,-21],[17,-38],[20,-36],[25,-35],[7,-3],[-11,30],[-40,65],[-2,23],[-10,25],[-52,36],[-10,14],[-9,36],[-4,24],[6,22],[53,69],[13,37],[0,17],[-5,19],[-11,34],[-3,0],[3,-51],[-2,-20],[-6,-22],[-8,-17],[-12,-11],[-114,-158],[-12,-9],[-42,-14],[-22,-17],[-12,-22],[-19,-58],[-25,-115],[-30,-93],[-25,121],[-46,92],[89,92],[2,14],[-8,49],[2,15],[8,21],[23,32],[-1,3],[-26,-12],[-41,-71],[-16,-22],[-8,-3],[-1,41],[22,109],[18,105],[6,30],[16,30],[-15,-2],[-72,-47],[-24,29],[-20,153],[-36,59],[-60,49],[-59,22],[-13,43],[-12,53],[16,62],[26,29],[23,14],[23,-7],[1,-22],[-15,-61],[20,-6],[81,-74],[17,-6],[34,28],[18,-1],[44,-23],[15,-28],[42,-54],[-6,32],[-46,66],[-25,22],[-45,4],[-28,-11],[-12,3],[-24,17],[-21,28],[-21,61],[-5,29],[1,21],[5,19],[9,17],[17,13],[26,7],[7,8],[-32,35],[-15,0],[-52,-51],[-10,-5],[-5,10],[-4,1],[-15,-25],[-12,-11],[-42,-79],[-7,-37],[-2,-57],[-5,-35],[-7,-14],[-50,-27],[-28,-55],[-34,48],[-38,45],[-25,80],[-45,14],[-52,45],[-20,41],[28,82],[41,63],[6,74],[6,16],[70,19],[46,37],[-47,4],[-29,-6],[-52,-26],[-57,51],[-29,47],[-10,40],[10,34],[2,34],[5,47],[5,20],[12,26],[25,17],[22,54],[9,37],[44,111],[16,48],[31,67],[61,105],[-20,-6],[-10,-9],[-9,1],[-9,11],[-9,24],[-8,35],[-5,-16],[-1,-66],[-6,-57],[-11,-39],[-30,-80],[-18,-31],[-12,29],[10,50],[17,40],[3,54],[-16,65],[-10,53],[-4,40],[-1,36],[3,33],[7,35],[11,39],[-1,4]],[[19495,97148],[49,-34],[17,1],[21,-6],[10,-9],[29,-43],[6,-21],[2,-27],[-5,-23],[-10,-19],[-27,-11],[-62,-8],[-87,11],[-75,-14],[-35,-2],[-93,9],[-24,7],[-52,26],[-40,11],[-16,-6],[-20,-23],[-37,-28],[-23,-7],[-68,4],[-103,48],[-118,-14],[-123,-28],[-48,-5],[-14,8],[-19,21],[3,11],[36,32],[82,33],[60,19],[118,28],[141,15],[52,17],[33,23],[92,37],[53,16],[73,13],[58,-1],[74,-30],[56,-15],[34,-16]],[[19317,96833],[223,-14],[9,-3],[1,-10],[-17,-33],[-25,-24],[-119,-30],[-153,-28],[-32,-13],[2,-8],[13,-10],[25,-12],[119,2],[29,-5],[10,-8],[6,-12],[4,-15],[0,-53],[-6,-30],[-17,-27],[-48,-20],[-86,-26],[-59,-11],[-46,4],[-46,-3],[-202,-48],[-62,-1],[-55,12],[-75,46],[-78,18],[-34,21],[-33,11],[-9,16],[-3,13],[6,11],[14,10],[4,9],[-13,25],[-6,24],[-22,35],[-4,20],[0,13],[4,14],[15,25],[8,5],[46,4],[60,13],[139,37],[305,47],[93,-4],[40,9],[75,4]],[[17902,96407],[21,-23],[2,-9],[-10,-9],[-33,-15],[-164,-51],[-32,-24],[12,-20],[59,-41],[60,-35],[13,-18],[-28,-17],[-55,5],[-20,-1],[-20,-8],[6,-16],[60,-52],[20,-28],[0,-14],[-11,-14],[-26,-19],[-40,-25],[-68,-19],[-148,-26],[-5,-21],[1,-15],[-3,-38],[-6,-18],[-17,-29],[-13,-14],[-22,-9],[-32,-6],[-40,0],[-67,26],[-30,16],[-42,35],[-8,24],[5,28],[11,45],[18,46],[25,46],[8,29],[-10,12],[-18,0],[-54,-19],[-35,-7],[-27,-13],[-20,-21],[-11,-22],[-6,-43],[-10,-23],[-29,-13],[-44,0],[-17,-7],[-8,-16],[6,-12],[43,-27],[6,-30],[-6,-18],[-46,-33],[-11,-11],[-29,-52],[-11,-13],[-24,-12],[-24,1],[-23,19],[-33,36],[-22,31],[-12,26],[-9,11],[-16,-8],[-19,-26],[0,-21],[4,-31],[-1,-19],[-28,-23],[4,-10],[49,-28],[6,-12],[0,-19],[-3,-9],[-20,1],[-16,-22],[-19,-17],[-49,-33],[-69,-4],[-57,-16],[-12,1],[-14,26],[-15,50],[-14,29],[-20,15],[-26,58],[-12,18],[-11,8],[-10,2],[-15,-12],[-33,-82],[-54,-21],[-29,-4],[-30,2],[-74,23],[-60,8],[-41,-9],[-68,-34],[-27,-9],[-37,4],[-16,13],[-14,21],[-1,12],[10,5],[17,24],[0,9],[-17,14],[0,11],[6,7],[-2,6],[-8,3],[-17,-3],[-61,-16],[7,17],[29,37],[71,72],[26,21],[16,6],[209,24],[15,7],[99,97],[28,22],[29,18],[143,58],[13,14],[22,40],[13,10],[31,16],[102,82],[94,59],[47,37],[65,37],[75,16],[227,28],[163,-37],[38,-2],[19,10],[17,17],[25,-7],[60,-5],[14,4],[25,19],[-17,11],[-73,19],[-5,10],[2,9],[26,23],[31,14],[90,11],[41,-3],[43,-15],[55,-32],[127,-56]],[[19919,95654],[35,-1],[41,6],[46,-4],[21,-13],[15,-23],[0,-13],[-3,-10],[-6,-9],[-60,-58],[-14,-20],[19,-5],[10,3],[59,44],[45,13],[34,4],[57,-9],[22,-8],[15,-8],[9,-11],[22,-41],[16,-54],[2,5],[1,31],[3,23],[55,16],[1,5],[-20,13],[-16,18],[-12,33],[4,12],[12,14],[35,28],[42,17],[36,4],[137,-29],[54,-25],[21,-12],[8,-9],[12,-28],[23,-78],[-1,-25],[-10,-40],[-44,-76],[-7,-51],[-44,-127],[-31,-35],[-33,-24],[-138,-43],[-104,-43],[-26,-7],[-27,-1],[-86,15],[-99,27],[-57,-7],[-56,-20],[-36,-6],[-33,3],[-33,7],[-44,19],[23,8],[10,10],[-9,10],[-46,14],[-48,-32],[-139,-73],[-187,-25],[-58,-15],[-44,-19],[-22,-16],[-35,-38],[-53,-28],[-96,-31],[-123,-48],[-220,-49],[-138,-8],[-138,16],[-44,13],[-46,21],[-93,49],[-26,17],[-31,39],[18,25],[50,30],[75,26],[150,36],[135,58],[49,11],[130,9],[66,-5],[48,3],[31,8],[47,20],[68,42],[50,39],[12,18],[-16,17],[-25,2],[-81,-40],[-41,-13],[-44,-1],[-61,-14],[-60,-5],[-11,0],[-62,39],[-33,6],[-16,-4],[-14,-10],[-26,-28],[-16,-10],[-27,-8],[-107,-8],[-104,-14],[-23,9],[-14,16],[-3,10],[-1,33],[-7,14],[9,28],[12,21],[14,15],[71,43],[10,11],[-34,-2],[-80,-21],[-11,7],[-18,24],[-9,2],[-11,-10],[-6,-14],[-13,-58],[-13,-30],[-32,6],[-40,18],[-15,3],[-9,-6],[3,-10],[41,-50],[0,-17],[-26,-31],[-114,-51],[-44,-13],[-16,5],[-14,14],[-13,22],[-29,31],[-18,7],[-19,1],[-18,-7],[-17,-13],[-10,-15],[-10,-26],[-20,-21],[-13,-3],[-115,42],[-93,75],[-101,-11],[-46,2],[-138,28],[-17,17],[-10,22],[1,12],[6,12],[17,25],[35,37],[15,12],[21,10],[29,8],[73,4],[189,2],[37,5],[206,72],[24,12],[30,23],[7,10],[-1,6],[-254,-57],[-109,-12],[-166,9],[-31,9],[-8,16],[35,42],[18,16],[48,15],[114,21],[154,19],[100,0],[84,15],[51,17],[-170,-1],[-204,-8],[-30,5],[-58,23],[-3,16],[23,19],[9,15],[-17,33],[5,13],[38,27],[68,29],[42,5],[81,-11],[230,-10],[45,4],[-28,13],[-40,9],[-178,17],[-37,7],[-7,10],[-3,15],[2,19],[13,20],[55,42],[162,35],[64,5],[65,-3],[65,-15],[29,-14],[15,-16],[7,-16],[1,-26],[3,-11],[12,-17],[37,-42],[28,-13],[128,24],[53,6],[54,-8],[78,-24],[101,-75],[130,-77],[-1,-16],[-49,-26],[-10,-11],[7,-7],[50,-5],[46,4],[45,-6],[10,-7],[16,-28],[23,-49],[27,-37],[31,-24],[31,-13],[45,-1],[46,8],[74,-3],[381,-28],[23,5],[16,15],[9,26],[4,22],[-5,29],[-8,14],[-236,94],[-21,38],[116,54],[8,12],[2,17],[-4,21],[-15,21],[-62,39],[-55,6],[-82,38],[-12,10],[-11,15],[-8,21],[1,16],[11,12],[80,39],[33,21],[100,98],[46,39],[33,19],[34,11],[74,5],[77,-36],[17,-2],[7,-10],[-3,-17],[-10,-16],[-27,-29],[-7,-12],[2,-13],[19,-29],[6,-19],[4,-32],[3,-5],[47,-27],[42,-36],[20,-55],[-16,-19],[-35,-27],[-21,-22],[-7,-18],[5,-10],[27,-6]],[[18188,93659],[18,-7],[32,6],[47,19],[60,15],[74,13],[19,-15],[12,3],[22,24],[4,16],[-3,18],[1,40],[12,23],[44,50],[23,18],[37,9],[89,-6],[84,-28],[112,-28],[165,-71],[52,-30],[5,-26],[-29,-55],[-71,-79],[-57,-28],[-22,-18],[37,-12],[24,-20],[36,29],[27,33],[38,27],[13,3],[3,-6],[-7,-14],[-2,-14],[1,-13],[4,-8],[23,-4],[13,5],[50,38],[49,59],[75,38],[20,19],[65,16],[-1,12],[3,44],[-22,19],[-77,40],[-37,48],[8,37],[42,-5],[115,-4],[24,-5],[111,-62],[39,-39],[31,-19],[65,-28],[22,-23],[16,-9],[5,-10],[-5,-10],[-2,-23],[12,-8],[42,-9],[12,-9],[16,-30],[19,-50],[17,-55],[27,-103],[54,-137],[18,-86],[7,-16],[12,-11],[34,-16],[27,-22],[31,-7],[7,2],[8,19],[20,31],[94,59],[5,9],[-11,14],[-3,9],[1,7],[20,5],[-66,75],[-43,71],[-27,89],[-4,25],[-4,55],[-9,15],[-15,13],[-6,17],[2,21],[-3,18],[-17,37],[-67,261],[0,26],[9,19],[24,11],[38,2],[13,6],[-15,10],[-25,27],[-3,13],[17,26],[86,-11],[62,-24],[106,-55],[11,3],[12,28],[22,17],[34,-6],[96,-40],[112,-71],[74,-36],[53,-48],[35,-45],[23,-35],[1,-13],[-5,-14],[5,-19],[16,-22],[8,-20],[7,-43],[15,-56],[3,-28],[99,-250],[19,-45],[12,-20],[69,-97],[37,-70],[3,-48],[5,-13],[2,-22],[-2,-30],[-8,-25],[-14,-22],[-14,-30],[-22,-67],[-1,-16],[15,-23],[97,-79],[59,-95],[28,-16],[74,-59],[81,-34],[27,-15],[26,-21],[7,-1],[16,4],[4,6],[1,9],[-22,45],[-2,17],[11,3],[83,-76],[45,-31],[61,-32],[105,-74],[15,-6],[57,7],[15,-5],[10,-7],[4,-10],[2,-44],[16,-21],[90,9],[25,-2],[16,-7],[13,-14],[20,-47],[17,-92],[1,-33],[-8,-56],[-13,-20],[-17,-7],[-48,7],[-33,17],[-18,23],[-16,48],[-7,10],[-7,-10],[-16,-45],[-10,-19],[-13,-14],[-24,4],[-35,19],[-66,50],[-23,12],[-15,-2],[-31,-17],[-49,-31],[-20,-23],[8,-15],[6,-19],[3,-22],[-2,-17],[-6,-10],[-16,-13],[-34,-2],[-49,9],[-39,18],[-68,46],[-15,6],[-21,-10],[-8,-14],[13,-19],[34,-24],[42,-41],[11,-8],[11,0],[4,-7],[5,-22],[-2,-38],[-21,-76],[-2,-18],[9,4],[57,75],[29,21],[65,32],[27,24],[82,7],[30,-13],[18,-23],[1,-10],[-21,-27],[-4,-14],[-1,-17],[2,-15],[5,-13],[14,-13],[26,6],[8,-4],[14,-13],[9,-20],[0,-29],[-19,-62],[-34,-21],[-105,-37],[-36,-20],[-70,-14],[-26,-18],[-17,-5],[-74,2],[-85,-11],[-98,23],[-69,10],[-79,36],[-30,-9],[-31,-24],[-148,28],[-18,20],[6,14],[35,42],[2,9],[-1,8],[-68,7],[-75,23],[-75,11],[-57,-3],[-37,8],[-36,19],[-19,17],[-4,16],[0,17],[3,34],[-5,24],[-16,18],[-34,17],[-33,-2],[-28,-18],[-26,-35],[-50,-96],[-24,-16],[-65,-70],[-24,-17],[-117,-27],[-140,-11],[-52,-22],[-49,-40],[-60,-39],[-146,-48],[-135,-27],[-142,-12],[-105,-18],[-31,9],[-47,-3],[-51,-27],[-57,-5],[-219,-10],[-100,-17],[-55,-5],[-44,2],[-30,8],[-28,23],[-30,37],[-60,97],[-17,41],[6,70],[-4,40],[-20,88],[-4,7],[-105,33],[-70,10],[-104,2],[-128,-4],[-127,10],[-68,12],[-67,19],[-114,51],[-7,5],[-8,17],[-12,28],[-28,37],[-78,82],[-31,49],[-5,13],[-7,36],[-10,59],[-3,36],[9,22],[7,5],[162,43],[284,47],[261,32],[118,-3],[69,-15],[70,-7],[126,-3],[160,-22],[31,2],[72,15],[21,12],[113,-2],[22,8],[20,13],[-26,25],[-108,55],[-286,97],[-70,21],[-100,22],[-58,3],[-74,-12],[-28,0],[-72,-19],[-69,-12],[-131,-12],[-189,-8],[-26,2],[-39,15],[-28,4],[-185,-11],[-165,15],[-188,149],[-32,46],[7,18],[23,20],[93,58],[34,13],[139,31],[138,38],[110,35],[53,12],[52,2],[42,11],[-9,11],[-34,13],[0,18],[18,9],[69,9],[72,-11],[37,3],[10,13],[-10,9],[-69,21],[-331,-59],[-155,-5],[-107,-26],[-59,1],[-70,25],[-10,8],[-1,10],[22,34],[75,20],[38,57],[-41,1],[-134,-12],[-59,5],[-79,22],[-23,26],[-10,18],[-2,23],[3,63],[6,34],[5,8],[98,105],[62,22],[43,33],[1,13],[-10,14],[-40,34],[-17,17],[-9,17],[7,25],[23,36],[67,57],[162,114],[82,48],[79,26],[110,55],[284,91],[254,92],[93,-24],[27,-19],[12,-16],[10,-23],[9,-29],[12,-63],[1,-32],[-2,-33],[-6,-29],[-9,-27],[-19,-32],[-29,-38],[-60,-65],[-7,-19]],[[16740,94534],[2,-2],[71,53],[44,3],[30,-5],[10,-6],[6,-11],[3,-23],[2,-58],[4,-7],[9,3],[16,14],[78,85],[33,23],[23,7],[96,13],[65,0],[71,-8],[54,-12],[88,-35],[69,-40],[63,-43],[212,-161],[90,-47],[35,-27],[15,-20],[13,-25],[4,-23],[-5,-21],[-10,-15],[-21,-13],[-130,-54],[-69,-16],[-67,-24],[-162,-84],[-111,-40],[-144,-78],[-272,-126],[-32,-25],[-15,-18],[-77,-143],[-29,-33],[-71,-34],[-89,-9],[-25,-9],[-5,-50],[-32,-82],[-15,-55],[-22,-148],[-5,-15],[-16,-28],[-28,-29],[-86,-35],[-64,-18],[-86,-15],[-21,10],[-21,24],[-22,2],[-13,-4],[-114,-103],[-109,-41],[-47,-38],[-33,-18],[-27,-5],[-44,3],[-32,17],[-29,27],[-22,28],[-56,118],[-24,40],[-21,20],[-55,72],[-15,14],[-209,91],[-101,51],[-25,18],[-23,11],[-130,-7],[-18,2],[-4,8],[15,27],[6,16],[2,17],[-2,27],[2,4],[49,27],[-8,5],[-5,10],[-4,15],[5,11],[15,6],[17,24],[21,43],[15,24],[22,16],[38,41],[27,17],[23,21],[1,9],[-10,8],[-3,16],[5,50],[-1,25],[5,22],[8,17],[11,11],[97,37],[4,10],[2,12],[-3,14],[-5,9],[-15,8],[-26,2],[-23,21],[-5,10],[9,29],[44,45],[14,22],[48,101],[86,63],[23,67],[65,72],[0,10],[-21,24],[-60,17],[-29,26],[-19,29],[-87,170],[-15,13],[-5,20],[-18,13],[4,12],[341,51],[235,16],[243,44],[68,2],[52,-8],[52,-23],[69,-40],[90,-39],[170,-58],[106,-12],[-42,-45],[-6,-14],[0,-10]],[[30697,99663],[227,-10],[73,4],[84,-26],[51,-3],[83,5],[61,-6],[226,-6],[47,-10],[-1,-11],[-48,-26],[-66,-25],[-423,-82],[-31,-13],[83,-4],[121,3],[94,9],[111,28],[37,2],[70,13],[137,38],[109,20],[49,-9],[42,-14],[28,-2],[15,11],[23,30],[14,11],[36,7],[22,-1],[35,-14],[40,-33],[36,-23],[20,0],[83,26],[41,3],[96,-9],[39,-12],[7,-12],[-25,-13],[-16,-11],[-6,-10],[14,-11],[58,-23],[83,-51],[-1,-19],[-45,-38],[1,-9],[214,40],[217,-18],[61,-12],[23,-15],[25,-24],[27,-34],[-19,-35],[-95,-55],[-98,-43],[-58,-38],[-88,-22],[-305,-92],[-149,-30],[-85,-30],[-39,-5],[-181,6],[-48,-16],[-26,-28],[-58,-13],[-84,-9],[-172,-7],[-39,-31],[-10,-21],[-17,-16],[-15,-8],[-492,-111],[-10,-18],[50,-8],[63,8],[717,134],[137,9],[128,-10],[-14,-31],[-181,-88],[-231,-80],[-115,-61],[-291,-104],[-237,-105],[-92,-52],[-122,-95],[-42,-23],[-51,-9],[-60,4],[-54,14],[-72,35],[-65,39],[-21,7],[13,-19],[126,-132],[-14,-25],[-232,-27],[-103,-23],[-53,-6],[-38,4],[-36,-2],[-36,-10],[-2,-10],[32,-11],[92,-9],[206,30],[33,-2],[52,-15],[3,-13],[-55,-42],[-166,-50],[21,-2],[48,-18],[-1,-16],[-52,-38],[-25,-12],[-160,-35],[-70,-8],[-62,4],[-281,77],[-99,11],[-94,19],[-69,-3],[-74,-22],[33,-12],[136,-21],[114,-4],[47,-9],[18,-14],[49,-51],[8,-27],[-11,-25],[-15,-18],[-18,-10],[-30,-5],[-111,3],[-41,-6],[-48,-15],[-61,-6],[-109,3],[-128,-22],[-67,-4],[-76,10],[-81,24],[-86,12],[-145,11],[12,-14],[51,-6],[104,-37],[50,-51],[47,-8],[96,-42],[69,-6],[72,-14],[102,18],[68,-3],[-14,-102],[-30,-10],[-164,0],[-79,15],[-34,15],[-76,17],[-68,-10],[-62,2],[-42,-10],[-67,1],[-174,-18],[-92,0],[-68,11],[-79,4],[-90,-4],[7,-12],[38,-4],[55,-19],[52,-29],[43,-13],[51,7],[52,14],[190,23],[84,3],[75,-10],[49,-12],[35,-15],[44,-40],[109,-5],[84,-13],[133,-58],[37,-4],[15,-15],[-28,-38],[-4,-22],[-92,-44],[-144,-12],[-158,4],[-113,-5],[-12,-6],[78,-11],[180,-51],[69,-28],[13,-16],[-100,-61],[-87,-122],[-29,-10],[-30,-3],[-77,2],[-98,-30],[-74,-6],[-134,11],[-154,-1],[-13,-19],[-7,-38],[1,-57],[9,-76],[-8,-56],[-26,-35],[-32,-26],[-58,-25],[-60,-16],[-44,-5],[-75,-1],[-213,-18],[-105,1],[-81,8],[-83,25],[-140,71],[-40,16],[-38,9],[1,-15],[42,-40],[35,-26],[28,-11],[-7,-12],[-62,-20],[-67,-8],[-81,0],[-2,-7],[27,-21],[35,-19],[24,-6],[61,6],[72,24],[44,8],[89,-6],[35,-9],[110,-54],[16,-2],[82,27],[118,1],[44,-21],[16,-43],[2,-34],[-12,-26],[27,-25],[67,-25],[52,-6],[37,14],[56,35],[24,8],[23,-2],[34,-25],[46,-48],[5,-56],[-38,-64],[-46,-42],[-180,-69],[-55,-27],[-43,-28],[-63,-26],[-123,-34],[-64,-6],[-140,-37],[-31,-2],[-45,6],[-9,18],[11,32],[15,30],[19,27],[0,23],[-39,35],[-28,16],[-27,9],[-54,-5],[-30,-10],[-33,-2],[-35,6],[-29,15],[-59,63],[-22,8],[-29,-2],[-25,9],[-23,20],[-38,19],[10,-15],[38,-35],[26,-36],[15,-35],[-7,-27],[-321,-16],[-138,8],[-28,25],[-66,103],[-14,-183],[-241,-30],[-56,5],[-93,20],[-121,50],[-50,33],[-20,32],[-15,18],[-9,3],[-30,-39],[-33,-81],[-83,21],[-104,20],[-38,80],[-2,-115],[-169,15],[-81,-4],[-23,100],[-4,112],[-33,-71],[14,-59],[5,-73],[-72,21],[-157,10],[-56,10],[7,96],[13,97],[202,96],[60,45],[44,18],[69,12],[89,7],[60,-6],[70,6],[82,17],[59,5],[11,6],[-17,9],[-63,62],[-23,14],[-23,6],[-45,3],[-45,27],[-25,24],[-28,32],[-43,62],[-44,69],[22,37],[72,30],[72,21],[73,11],[60,0],[73,-16],[103,-32],[59,-36],[74,-76],[49,-61],[39,-27],[177,-50],[59,-8],[70,4],[143,13],[70,14],[31,16],[16,23],[21,18],[63,41],[96,85],[54,68],[12,22],[11,28],[9,32],[-30,-17],[-167,-167],[-35,-30],[-97,-51],[-42,-8],[-66,2],[-89,23],[-104,-36],[-63,9],[-56,25],[0,118],[-71,95],[78,48],[65,29],[115,77],[26,1],[84,-12],[-46,17],[-45,26],[-100,-7],[35,166],[-67,-124],[-68,-65],[-42,-33],[-46,-18],[-176,-17],[43,61],[40,90],[-42,-34],[-99,-50],[-74,-27],[-61,-14],[-118,4],[-59,25],[17,62],[0,77],[36,35],[54,46],[59,61],[40,63],[158,29],[153,11],[128,34],[63,6],[60,-16],[244,-26],[100,-20],[44,-15],[33,-5],[34,22],[44,21],[152,-2],[42,3],[39,10],[47,20],[56,30],[8,15],[-38,-1],[-39,-8],[-58,-21],[-56,-12],[-57,2],[-115,19],[-200,3],[-102,8],[-47,9],[-27,12],[-23,19],[-20,25],[10,17],[41,10],[35,2],[57,-14],[63,-23],[69,-3],[-24,21],[-88,42],[-60,36],[-51,44],[-40,43],[-87,68],[-70,68],[-50,30],[-52,15],[-160,18],[-32,12],[-76,59],[-20,100],[-34,61],[32,77],[54,35],[318,-27],[135,4],[172,-10],[92,-19],[106,-47],[94,-53],[91,-36],[83,-48],[91,-73],[54,-34],[47,-21],[62,-19],[118,-23],[103,-7],[53,3],[57,16],[41,20],[-45,6],[-119,-3],[-82,11],[-47,23],[-50,31],[-79,59],[-60,39],[-131,63],[-97,62],[-78,60],[-7,25],[56,18],[69,13],[432,40],[258,48],[105,56],[12,13],[346,78],[244,29],[94,5],[85,13],[3,7],[-74,11],[-75,5],[-171,0],[-152,9],[-46,18],[10,28],[14,25],[46,40],[49,31],[209,88],[140,38],[41,25],[-302,-57],[-106,-41],[-106,-62],[-55,-19],[-39,5],[-35,-6],[-31,-16],[-25,-30],[-21,-44],[-19,-30],[-17,-16],[-43,-23],[-104,-44],[-242,-63],[-82,-16],[-70,-3],[-226,-35],[-68,-2],[-76,11],[33,31],[119,56],[32,25],[-77,-5],[-78,-16],[-172,-12],[-69,-23],[-66,-42],[-53,-26],[-40,-11],[-55,-6],[-202,-3],[-45,2],[-116,32],[-103,-11],[-43,2],[-78,23],[-23,14],[3,20],[45,37],[53,35],[170,78],[109,37],[158,31],[369,35],[17,26],[-374,-29],[-318,-36],[-52,-14],[-74,-35],[-235,-129],[-70,-33],[-106,-7],[-81,11],[-63,16],[-109,38],[-83,21],[-39,13],[-23,14],[-18,17],[-15,18],[27,16],[210,33],[284,-6],[128,7],[125,20],[186,51],[201,71],[40,22],[-74,5],[-54,-5],[-131,-26],[-208,-68],[-181,-24],[-448,-13],[-142,-19],[-63,4],[-47,19],[-52,34],[9,28],[107,31],[84,7],[15,7],[-119,30],[-11,15],[69,34],[148,50],[76,15],[137,10],[142,-5],[5,9],[-140,19],[-105,4],[-138,-14],[-369,-80],[-31,2],[-53,14],[15,20],[197,85],[6,13],[-141,-2],[-42,4],[-40,10],[-58,-9],[-75,-27],[-52,-12],[-31,4],[-78,33],[10,27],[62,35],[57,25],[77,23],[126,29],[90,10],[148,0],[70,13],[62,22],[78,36],[86,25],[140,20],[118,-6],[65,-18],[51,-31],[56,-24],[5,19],[46,24],[58,10],[69,-3],[61,-12],[79,-28],[63,-13],[30,0],[38,16],[99,1],[-2,6],[-32,17],[-40,12],[-352,82],[-10,18],[119,17],[74,21],[35,5],[87,43],[57,22],[105,25],[43,-7],[53,-22],[51,-14],[151,-13],[65,-14],[115,-81],[46,-26],[66,-27],[39,-10],[77,-6],[8,15],[-92,38],[-25,22],[11,18],[20,10],[28,1],[72,-17],[192,-56],[288,-67],[110,-15],[68,-24],[62,-29],[61,-20],[11,2],[-57,45],[-139,55],[-371,94],[-147,50],[-72,33],[-53,34],[-1,19],[50,21],[68,17],[85,7],[11,7],[-78,26],[-45,22],[1,16],[93,12],[57,-4],[108,-28],[91,-13],[15,8],[-94,75],[-9,17],[14,9],[33,10],[98,-5],[161,-37],[290,-18],[79,3],[-12,8],[-115,23],[-121,30],[-53,18],[-39,24],[-47,21],[-4,9],[75,16],[196,-3],[182,-24],[155,9],[97,-6],[39,-8],[70,-26],[224,-96],[23,-15],[26,-23],[27,-32],[38,-8],[74,21],[49,21],[-21,20],[-124,46],[-28,20],[-61,34],[-139,59],[-37,28],[-23,24],[383,22],[370,-20],[60,-14],[40,-19],[38,-30],[60,-30],[119,-46],[171,-29],[-33,20],[-127,51],[-58,35],[1,23],[10,18],[20,13],[144,47],[206,15],[24,-3],[161,-73],[76,-30],[53,-12],[2,5],[-74,34],[-56,18],[-6,12],[94,35],[59,9],[251,10],[28,-3],[24,-10],[59,-39],[22,-5]],[[23476,96654],[70,-22],[76,11],[81,2],[182,-10],[120,6],[31,-3],[47,-14],[25,-18],[23,-28],[-59,-18],[-50,-89],[-7,-5],[-54,-1],[-27,-7],[-159,13],[-438,5],[-19,11],[-58,53],[-4,21],[11,24],[12,16],[14,8],[128,39],[55,6]],[[24016,95061],[18,-43],[3,-18],[1,-37],[-8,-49],[-5,-9],[-7,-4],[-4,-13],[0,-21],[-7,-12],[-15,-5],[-99,-10],[-62,2],[-91,-6],[-45,3],[-30,11],[-43,22],[-91,55],[-45,2],[-116,19],[-63,58],[-24,11],[-25,-18],[-7,4],[-6,12],[-7,20],[-12,10],[-48,-5],[-9,6],[-2,18],[0,15],[9,23],[51,65],[25,5],[31,12],[17,35],[-2,33],[48,49],[28,15],[51,34],[172,54],[48,4],[63,-4],[62,-17],[47,-28],[97,-70],[44,-43],[23,-43],[21,-25],[26,-54],[-9,-21],[-6,-28],[3,-14]],[[22221,94438],[235,-123],[33,10],[71,6],[73,19],[102,15],[63,27],[26,8],[45,5],[25,0],[70,-15],[29,-11],[15,-11],[16,-19],[28,-49],[4,-18],[-1,-5],[-26,-30],[-17,-13],[-36,-12],[-30,-4],[-27,-21],[-29,5],[-9,-19],[4,-12],[8,-6],[15,1],[17,8],[33,-4],[18,-13],[15,-21],[-11,-20],[-59,-27],[-87,-31],[-105,-98],[-56,-41],[-11,-13],[-6,-13],[2,-24],[2,-10],[16,-4],[51,34],[34,16],[33,9],[60,0],[25,-5],[44,-20],[41,-32],[9,-11],[-4,-11],[-17,-12],[-2,-8],[39,-15],[43,-43],[3,-26],[-19,-26],[-5,-18],[9,-8],[21,5],[51,29],[55,15],[22,-2],[14,-6],[14,-40],[12,-45],[2,-37],[-9,-31],[-13,-23],[-33,-30],[-30,-11],[-16,0],[2,-5],[35,-25],[15,-19],[6,-19],[-2,-18],[-5,-16],[-41,-57],[2,-9],[12,-3],[26,-33],[3,-78],[-93,-24],[-22,-18],[-25,-28],[-29,-22],[-67,-22],[-33,-3],[-167,19],[-17,11],[-11,19],[-7,29],[-1,22],[2,16],[0,9],[-5,3],[-19,-16],[-19,-29],[11,-33],[52,-91],[10,-39],[2,-16],[-3,-13],[-59,-53],[-34,-18],[-36,-9],[-33,7],[-32,22],[-24,10],[-51,-1],[-15,11],[-15,22],[-35,76],[-50,54],[-42,61],[-108,89],[-56,53],[-75,86],[-31,19],[-26,8],[-51,6],[-12,11],[-19,29],[-32,22],[-11,3],[-19,-6],[-50,-20],[-63,22],[-14,15],[-8,25],[-8,14],[-21,13],[-18,31],[-119,63],[-71,72],[-14,26],[-2,10],[7,35],[17,39],[21,39],[14,16],[46,33],[37,8],[51,-4],[27,-8],[24,-22],[11,-26],[12,-18],[38,-19],[20,-15],[30,-36],[24,-43],[21,-14],[52,-5],[53,7],[114,27],[5,4],[7,16],[13,98],[8,0],[39,-45],[11,-5],[16,9],[10,23],[-1,10],[-24,53],[-15,23],[-13,15],[-14,4],[-31,-4],[-24,10],[-5,15],[4,19],[13,21],[14,12],[27,6],[32,-6],[44,-25],[28,-6],[40,7],[-51,15],[-70,58],[-30,11],[-36,-25],[-25,-9],[-47,-12],[-37,-2],[-156,89],[-9,9],[-11,23],[1,11],[16,17],[38,22],[58,13],[39,3],[34,-17],[49,-44],[43,-26],[4,9],[-8,26],[-20,38],[-14,10],[-34,11],[-33,26],[-15,20],[-8,20],[-1,22],[7,15],[13,8],[120,22],[83,-24],[53,-4],[22,30],[-7,6],[-28,-8],[-32,0],[-19,17],[-1,9],[25,23],[37,10]],[[26411,89435],[10,-7],[11,4],[20,29],[44,82],[13,7],[18,-1],[65,-52],[24,-30],[13,-41],[14,-16],[51,-21],[49,-7],[65,-21],[23,-16],[51,-78],[6,-5],[59,-32],[89,-72],[23,-10],[87,-24],[32,-17],[30,-27],[34,-49],[39,-77],[31,-123],[2,-24],[-3,-14],[-12,-16],[-50,-50],[4,-9],[48,4],[105,31],[65,-23],[22,-3],[5,1],[24,39],[25,-6],[38,-38],[24,-30],[10,-23],[-2,-13],[-25,-5],[60,-22],[53,-35],[-11,-23],[-57,-51],[-57,-45],[-67,-66],[-17,-11],[-9,0],[-37,12],[-54,32],[-164,73],[-51,15],[-64,9],[-9,17],[-16,110],[-29,19],[-99,23],[-29,13],[-2,22],[7,38],[-14,19],[-33,-1],[-33,-8],[-53,-26],[-25,-24],[-9,-25],[-6,-55],[-7,-26],[-18,-35],[-82,-88],[-33,-27],[-33,-7],[-13,-9],[-22,-32],[-33,-80],[-14,-23],[-21,-24],[-46,-36],[-46,-29],[-77,-33],[-42,-11],[-29,11],[-20,76],[-41,223],[-7,15],[-8,9],[-10,4],[-138,-29],[-76,3],[-75,-50],[-19,-3],[-39,1],[-27,8],[-7,6],[-5,21],[2,23],[9,25],[34,66],[28,41],[13,13],[129,74],[31,24],[16,25],[0,25],[-6,33],[-23,80],[-5,73],[0,36],[8,55],[33,135],[11,66],[20,234],[11,67],[16,62],[15,37],[42,73],[31,30],[41,20],[8,-2],[8,-9],[15,-31],[56,-29],[18,-28],[12,-31],[7,-40],[-7,-18],[-26,-27],[-5,-11],[1,-9],[51,-42],[38,-102]],[[22861,95890],[3,-26],[-4,-19],[-9,-14],[-1,-17],[9,-18],[37,-45],[12,-25],[2,-25],[-2,-17],[-23,-32],[-10,-43],[-1,-22],[14,-35],[0,-16],[-26,-28],[-54,-25],[8,-13],[117,-30],[9,-7],[0,-70],[20,-76],[-8,-1],[-28,24],[-52,28],[-63,-53],[7,-90],[42,-40],[12,-23],[-4,-13],[-35,-6],[-12,2],[-35,19],[-21,27],[-7,-1],[-6,-13],[4,-14],[24,-24],[11,-29],[-11,-8],[-36,-8],[-48,0],[-76,-13],[-38,-2],[-36,7],[-49,1],[-41,-3],[-24,6],[-23,14],[-26,-3],[-57,-35],[-89,11],[-80,3],[-16,11],[-18,23],[-35,70],[6,18],[86,9],[2,6],[-61,25],[-70,18],[-32,15],[7,27],[-2,7],[120,32],[88,62],[54,25],[4,12],[46,13],[106,7],[4,18],[-200,-10],[-274,-35],[-85,-18],[-71,10],[-300,-54],[-13,0],[-31,17],[-27,33],[19,22],[88,43],[44,37],[-5,21],[35,35],[56,5],[96,-29],[49,-29],[45,-14],[39,3],[41,20],[-11,3],[-69,-11],[-8,3],[-35,33],[-15,20],[-10,21],[-1,15],[21,28],[-79,9],[-29,19],[-14,24],[3,11],[25,28],[67,39],[-8,10],[-97,-1],[-22,5],[-42,24],[9,27],[39,39],[30,23],[19,7],[31,0],[73,-15],[21,-8],[56,-38],[14,-21],[-2,-21],[11,-15],[43,-22],[186,-115],[35,-27],[23,-12],[43,-9],[26,2],[20,8],[3,10],[-80,40],[-20,22],[-17,29],[7,9],[24,4],[58,-4],[69,8],[-76,12],[-50,16],[-52,1],[-64,26],[0,8],[16,9],[87,11],[17,5],[1,7],[-29,18],[-26,9],[-132,21],[-47,24],[-15,11],[-4,11],[17,28],[71,35],[51,17],[89,12],[71,-1],[40,-5],[94,-59],[45,-39],[77,7],[-22,40],[-15,45],[23,17],[64,29],[51,-15],[66,-40],[15,-13],[75,-25],[44,-8],[23,-13],[7,-17]],[[21270,97531],[65,-11],[77,-37],[73,-79],[4,-10],[0,-13],[-3,-16],[-9,-21],[-13,-12],[37,-15],[4,-8],[-3,-17],[4,-12],[23,12],[19,19],[5,12],[4,32],[57,17],[60,23],[28,5],[47,-5],[112,-56],[43,-5],[16,-7],[14,-13],[1,-14],[-23,-32],[-9,-20],[6,-13],[58,-11],[134,22],[117,-53],[65,-63],[47,-21],[8,-11],[-14,-11],[-13,-29],[-39,-22],[-8,-10],[21,-26],[1,-17],[-2,-22],[7,-13],[53,-14],[119,-93],[22,-26],[14,-32],[1,-11],[-17,-18],[-19,-51],[-10,-12],[-49,-10],[-88,-9],[-83,-17],[-88,22],[-87,34],[-26,22],[-22,28],[-5,10],[-9,44],[-4,9],[-37,24],[-32,37],[-63,3],[-147,38],[-63,8],[-64,-2],[-89,-15],[-17,4],[-15,11],[-14,18],[-3,14],[14,23],[-262,-29],[-75,-35],[-105,6],[-53,14],[-69,33],[-32,29],[-30,38],[-3,29],[24,20],[25,11],[26,4],[142,-23],[125,-11],[54,11],[25,32],[-30,16],[-120,7],[26,17],[101,16],[53,26],[-10,8],[-30,10],[-137,-2],[-48,9],[-3,9],[11,10],[77,51],[-3,10],[-33,16],[-29,22],[-11,3],[-68,-20],[-95,-75],[-22,-11],[-22,1],[-21,12],[1,16],[21,19],[44,58],[-4,21],[-42,14],[-114,-10],[-63,-1],[-9,17],[-3,30],[3,29],[15,45],[22,35],[13,12],[151,-7],[245,21],[71,2],[78,-21]],[[24476,98578],[36,-48],[134,-115],[61,-42],[103,-51],[13,-19],[1,-8],[-3,-28],[30,-10],[88,-16],[99,-28],[18,1],[34,17],[42,5],[54,-4],[26,-12],[19,-18],[8,-13],[1,-10],[-19,-19],[2,-8],[12,-8],[2,-11],[-20,-41],[5,-15],[50,-37],[45,-19],[89,-20],[58,2],[36,-13],[1,8],[-17,23],[-34,34],[-65,18],[-9,19],[-5,34],[6,22],[33,18],[27,6],[84,1],[45,-8],[80,-25],[8,-14],[4,-27],[3,-54],[-2,-12],[-67,-30],[-15,-21],[17,-6],[58,-5],[90,-19],[35,-2],[35,-44],[27,-41],[-20,-52],[-26,-82],[-21,-19],[-21,-28],[15,-6],[88,12],[18,4],[59,28],[86,-7],[29,-7],[15,-10],[26,-31],[22,-41],[16,3],[40,51],[15,12],[20,12],[9,-2],[40,-47],[91,-82],[31,-34],[6,-26],[-39,-29],[-30,-15],[-223,-62],[-99,-35],[-50,-28],[-25,-9],[-54,5],[-12,-5],[-16,-44],[-18,-19],[-46,-30],[-65,-55],[-38,-24],[-68,18],[-17,25],[-10,58],[-1,24],[2,13],[9,20],[29,49],[-3,6],[-14,-5],[-45,-24],[-18,-13],[-16,-23],[-8,-38],[7,-70],[-6,-28],[-18,-14],[7,-11],[53,-15],[9,-7],[6,-12],[3,-17],[-3,-16],[-16,-25],[-30,-10],[-38,11],[-82,61],[-36,-3],[-9,-7],[8,-22],[25,-48],[5,-41],[-12,-33],[-23,-53],[-16,-29],[-9,-3],[-41,-1],[-35,14],[-104,93],[-51,39],[-76,78],[-19,15],[-12,4],[-10,-33],[20,-31],[68,-72],[41,-53],[29,-43],[4,-19],[-9,-7],[-15,4],[-20,16],[-62,25],[-26,15],[-16,16],[-31,13],[-45,8],[-45,2],[-45,-5],[-8,-8],[50,-23],[18,-12],[13,-17],[9,-19],[-17,-13],[-63,-7],[-84,5],[-137,17],[-136,28],[-125,44],[-91,44],[-36,23],[-11,17],[34,16],[119,19],[119,13],[-19,11],[-217,25],[-71,4],[-38,-6],[-44,4],[-34,20],[-45,37],[-23,25],[3,10],[17,5],[99,-4],[13,3],[-49,19],[-157,37],[-59,33],[-11,12],[-4,13],[1,12],[59,25],[183,59],[62,9],[63,1],[44,16],[38,56],[189,20],[146,25],[12,7],[-109,-4],[-155,5],[-65,37],[-45,7],[-49,0],[-57,-12],[-98,-35],[-47,-9],[-107,-36],[-29,3],[-15,4],[-5,7],[19,24],[28,17],[-5,5],[-42,4],[-48,-1],[-34,-6],[-122,-32],[-55,-23],[-17,-3],[-59,38],[-95,20],[-21,16],[20,63],[27,13],[73,11],[217,57],[13,11],[20,29],[-50,-7],[-109,-27],[-90,-14],[-71,0],[-51,4],[-33,8],[-40,17],[-128,83],[-36,39],[-4,36],[-9,26],[-38,65],[276,-40],[107,-8],[208,-2],[10,3],[3,11],[-4,17],[2,13],[7,9],[77,23],[12,8],[-91,4],[-168,-39],[-59,0],[-67,56],[-71,-10],[-34,4],[-53,14],[-26,12],[-16,15],[-7,13],[2,10],[14,12],[62,16],[28,1],[73,-10],[55,1],[-18,17],[-79,43],[-70,47],[5,80],[57,17],[60,2],[58,-20],[77,-2],[56,-23],[37,-44],[44,1],[69,-8],[155,1],[-28,15],[-49,14],[-109,18],[-53,63],[-114,33],[-88,17],[1,15],[67,79],[80,28],[128,-10],[85,14],[108,28],[106,-13],[28,2],[16,8],[14,17],[0,15],[-14,14],[-34,17],[-135,2],[-60,7],[-23,9],[-7,14],[-4,14],[0,15],[4,9],[11,5],[33,6],[126,0],[76,8],[83,-10],[173,-39],[55,-20],[60,-34],[31,-30]],[[23807,96147],[52,-5],[44,8],[38,-2],[56,-23],[53,-36],[40,-16],[13,-8],[5,-9],[6,-27],[0,-12],[-3,-10],[-18,-25],[-15,-30],[-30,-27],[-16,-20],[-14,-26],[31,15],[119,85],[77,-10],[117,7],[141,35],[67,5],[67,-3],[50,-10],[108,-47],[37,-22],[14,-16],[3,-11],[-22,-18],[-67,11],[-111,10],[-20,5],[-18,0],[-12,-6],[8,-25],[22,-5],[133,-6],[436,-78],[19,-25],[-5,-11],[-16,-12],[-31,-17],[-252,-18],[-143,16],[-120,26],[-41,-6],[35,-35],[72,-10],[61,-21],[25,-17],[128,-13],[21,-13],[40,-34],[33,-3],[33,-24],[27,-41],[13,-5],[39,7],[64,-36],[21,-19],[0,-14],[-15,-22],[-29,-31],[-73,-35],[-6,-11],[86,4],[16,-5],[101,-63],[13,-1],[8,6],[10,23],[-4,21],[-13,28],[4,21],[19,13],[19,7],[19,0],[21,-8],[102,-77],[131,37],[24,-17],[20,-30],[9,-5],[49,61],[30,15],[123,-73],[75,-16],[30,-15],[55,-18],[79,-6],[13,27],[-45,35],[26,15],[109,29],[58,-4],[107,42],[66,5],[40,0],[133,63],[31,10],[23,22],[52,-3],[141,-36],[40,3],[150,36],[56,8],[55,-1],[141,-21],[105,-22],[33,-12],[-12,-29],[6,-9],[13,-7],[35,-8],[131,-1],[57,-7],[46,-28],[10,-11],[-1,-11],[-45,-30],[7,-7],[45,-6],[100,-4],[22,-7],[21,-37],[21,-52],[0,-20],[-35,-35],[-95,-46],[-106,-39],[-7,-10],[34,-18],[35,-9],[27,2],[85,18],[19,-1],[38,-18],[18,-17],[17,-24],[-30,-22],[-121,-27],[-72,36],[-24,7],[-16,-3],[9,-15],[35,-28],[11,-18],[-12,-9],[-6,-18],[1,-26],[-3,-27],[-11,-42],[-5,-2],[-263,-8],[-32,-8],[-74,-29],[-56,-15],[-36,-2],[-36,5],[-96,31],[-64,-6],[-25,3],[-55,20],[-13,10],[-22,27],[-16,37],[1,22],[7,32],[-4,17],[-16,0],[-17,6],[-52,33],[-32,10],[-6,-6],[10,-25],[6,-8],[34,-19],[6,-21],[-14,-55],[-5,-8],[-34,-40],[-25,-12],[-68,-1],[-105,-28],[-50,-4],[-67,7],[-42,12],[-27,15],[-27,21],[-13,2],[-7,-46],[-13,-6],[-23,1],[-35,14],[-28,33],[-9,0],[-4,-19],[-7,-13],[-8,-6],[-74,-20],[-41,0],[-43,23],[-28,-2],[-36,-13],[-87,24],[-21,1],[18,-39],[-29,-6],[-62,1],[-103,13],[-64,-19],[-114,11],[-116,3],[-22,9],[-15,18],[-1,16],[6,23],[17,33],[28,45],[10,23],[-26,11],[-15,15],[-13,1],[-41,-17],[-27,-50],[-20,-14],[-9,12],[-7,30],[-9,15],[-11,-1],[-11,-8],[-11,-15],[-15,-6],[-22,4],[-7,-7],[6,-20],[2,-18],[-2,-16],[-18,-17],[-52,-24],[-31,-7],[-79,-4],[-48,7],[-96,29],[-53,1],[-64,48],[-51,11],[3,18],[22,32],[-1,9],[-69,-47],[-10,-15],[9,-34],[-10,-3],[-47,13],[-47,-10],[-12,3],[-32,25],[-57,26],[-25,28],[-39,90],[-20,59],[2,12],[29,16],[-4,13],[-36,34],[-39,28],[-12,19],[-5,20],[-5,28],[-1,21],[5,13],[22,42],[62,76],[8,14],[3,13],[-8,40],[-12,40],[-12,29],[-34,39],[-46,42],[-66,73],[-48,58],[-58,80],[-28,7],[-32,-3],[-70,-28],[-24,-13],[-5,-9],[-52,-2],[-148,7],[-56,9],[-42,-3],[-72,-20],[-77,4],[-48,56],[-110,31],[-33,17],[-22,24],[7,15],[63,14],[26,15],[12,12],[-62,-10],[-27,1],[-186,77],[-57,14],[-10,7],[-4,9],[0,11],[5,17],[55,-22],[25,-1],[39,6],[14,14],[-9,7],[-64,26],[-30,19],[-12,15],[12,20],[3,13],[21,8],[37,1],[48,10],[88,26],[59,10],[59,-2],[142,-27],[142,-34],[89,-26]],[[23276,97079],[66,-15],[113,7],[41,-11],[106,-39],[32,-23],[8,-17],[0,-9],[-35,-19],[-71,-28],[-17,-22],[63,-27],[32,-24],[15,-17],[0,-18],[-42,-48],[-31,-14],[-48,2],[-23,-5],[-60,-22],[-95,-21],[-129,-9],[-35,-13],[-65,-22],[-43,-3],[-14,12],[-6,18],[3,13],[9,15],[-21,15],[-92,28],[-54,39],[-8,13],[-2,11],[119,7],[52,8],[23,13],[4,7],[-23,3],[-82,26],[-138,16],[-7,19],[-57,36],[-6,35],[-12,10],[-39,15],[-6,5],[-12,22],[-1,12],[2,12],[71,23],[-10,16],[-54,61],[-14,34],[2,13],[34,18],[47,0],[124,-5],[59,-8],[59,-14],[65,-22],[97,-19],[31,-12],[58,-41],[7,-12],[-4,-13],[14,-12]],[[24119,94562],[109,-27],[53,-18],[26,-12],[50,-40],[25,-12],[97,24],[68,8],[151,-10],[127,-34],[48,-24],[28,-23],[-7,-26],[-24,-41],[-27,-38],[-56,-61],[-47,-31],[-11,-14],[-8,-21],[-18,-29],[-50,-65],[-14,-11],[-71,-28],[25,-12],[11,-11],[-10,-29],[-45,-69],[-46,-63],[-33,-39],[-59,-55],[-32,-15],[-44,-5],[-263,48],[-66,-1],[-176,-25],[17,-12],[64,-19],[41,-20],[55,-63],[8,-16],[3,-18],[-2,-36],[-4,-9],[-87,-97],[-29,-71],[-18,-58],[-29,-16],[-98,24],[-32,0],[-110,-17],[-52,8],[8,88],[-8,95],[-16,90],[-82,161],[-9,29],[-6,31],[-3,33],[0,33],[6,67],[0,34],[-4,88],[-11,132],[-1,47],[1,19],[3,14],[18,19],[34,13],[17,2],[108,-40],[50,-13],[33,0],[2,5],[-30,8],[-27,18],[-46,51],[-20,44],[-5,14],[-1,16],[3,15],[6,15],[23,22],[18,10],[68,26],[69,15],[151,11],[42,-8],[66,29],[38,6],[67,-10]],[[22933,91959],[9,-7],[16,6],[12,19],[8,4],[12,-4],[39,-34],[29,-35],[32,-25],[50,-23],[110,-73],[32,-49],[34,-77],[31,-58],[26,-41],[29,-32],[46,-36],[41,26],[18,7],[15,-11],[14,-27],[-7,-12],[-18,-16],[-29,-17],[-42,-2],[-20,-5],[-32,-28],[-26,-35],[-36,-11],[-67,-57],[-37,-22],[-55,-5],[-114,44],[-71,-6],[-58,9],[-64,48],[-51,26],[-97,39],[-6,6],[-4,13],[-2,20],[-5,14],[-6,7],[-16,-1],[-15,-14],[-30,-11],[-46,2],[-20,9],[-15,12],[-8,15],[-1,17],[-5,13],[-7,9],[-16,0],[-26,-8],[-10,-11],[5,-13],[-4,-8],[-46,0],[-18,8],[-34,24],[-15,24],[-19,43],[2,11],[12,26],[16,19],[103,10],[48,11],[53,29],[61,52],[13,15],[1,11],[-4,12],[-19,30],[-7,20],[6,9],[25,1],[-13,12],[-11,16],[-4,10],[1,16],[19,4],[24,-8],[47,-47],[18,-9],[32,-7],[-34,32],[-35,67],[-4,24],[1,13],[9,36],[8,14],[11,10],[33,21],[53,14],[28,2],[27,-11],[24,-23],[54,-37],[8,-15],[-1,-7],[-20,-10],[-3,-9],[8,-14]],[[33026,78308],[9,-4],[38,28],[20,-1],[-1,-20],[-32,-22],[-15,-17],[18,-15],[0,-10],[-22,-25],[-11,-27],[9,-26],[36,26],[14,0],[20,-6],[19,8],[11,13],[63,99],[3,13],[-68,-20],[-8,13],[45,61],[-4,31],[23,51],[20,30],[15,16],[22,16],[15,-24],[5,-43],[37,6],[37,-9],[26,-18],[5,-10],[0,-17],[-9,-29],[-15,-25],[30,-31],[-4,-13],[-48,-36],[-28,-35],[-25,-44],[-50,-51],[-80,-36],[-25,0],[-30,11],[-30,-3],[-29,-13],[-29,1],[-13,-7],[-14,1],[-11,14],[-23,41],[-12,27],[-12,130],[4,68],[20,63],[29,43],[17,34],[72,200],[14,45],[17,39],[31,39],[40,64],[12,14],[23,6],[23,-4],[-7,-23],[2,-23],[26,-89],[0,-18],[-15,-71],[-27,-116],[-7,-63],[4,-19],[-11,-32],[-12,-25],[-47,-45],[-24,-11],[-22,-17],[-54,-58]],[[29247,77766],[40,22],[82,85],[61,30],[80,89],[57,17],[11,20],[9,73],[6,26],[26,73],[33,61],[26,84],[47,54],[71,45],[66,98],[36,30],[35,22],[15,40],[21,23],[58,46],[64,13],[64,38],[50,21],[30,36],[44,19],[132,104],[36,49],[48,99],[41,51],[14,54],[60,87],[62,116],[30,83],[46,45],[89,132],[47,52],[20,6],[53,47],[34,48],[54,49],[97,60],[91,72],[123,63],[144,93],[117,50],[82,7],[100,24],[35,-3],[156,-40],[74,-50],[85,-106],[13,-27],[2,-39],[-45,19],[-40,1],[28,-22],[47,-65],[-3,-81],[-26,-73],[-79,-36],[-20,-29],[-16,-47],[-16,-18],[-39,-22],[-21,-30],[-62,-49],[-28,-6],[-32,11],[-78,47],[-47,44],[-24,-24],[-20,-25],[-46,8],[-21,-11],[-34,12],[-71,-56],[20,-6],[56,32],[19,-4],[42,-41],[100,-45],[26,-29],[25,-95],[16,-15],[35,10],[39,47],[32,25],[63,20],[-13,-31],[48,3],[48,-42],[-18,-30],[-24,-59],[-16,-116],[-49,-78],[-64,-76],[16,-19],[19,-11],[41,22],[28,-1],[31,-15],[-10,-59],[-11,-40],[7,-38],[18,-71],[25,-16],[10,-92],[14,-50],[-2,-40],[25,-25],[4,-41],[92,-12],[19,-16],[63,-15],[12,-12],[12,-22],[-63,-49],[51,-36],[47,-59],[38,12],[16,-2],[42,-36],[12,-19],[6,-16],[21,4],[31,14],[54,-4],[59,-20],[-5,-32],[-9,-21],[46,7],[28,-23],[10,11],[7,14],[57,38],[73,79],[9,-9],[3,-30],[10,-49],[28,-34],[33,-8],[45,26],[18,-22],[22,-43],[20,-57],[-1,-20],[-26,-17],[-24,-26],[99,-10],[10,-11],[10,-22],[-10,-22],[-9,-11],[-18,13],[-33,-12],[-28,-29],[-31,-16],[-20,-2],[-22,-14],[-20,-20],[-20,-6],[-65,-52],[-66,-33],[-69,-54],[-71,-34],[-73,-40],[-16,-4],[-19,2],[-41,-40],[-21,6],[-21,-7],[-25,9],[-16,16],[13,-42],[3,-39],[-6,-16],[-12,-20],[-42,3],[-16,14],[-20,21],[-9,33],[-21,24],[-13,-33],[1,-25],[-16,-33],[-18,57],[-34,-21],[-14,-61],[7,-17],[10,-46],[-16,-25],[-12,7],[-25,-68],[-31,-25],[-31,-69],[-37,-53],[-11,-36],[-62,-81],[-24,2],[-17,-2],[-26,-34],[-5,-68],[-11,9],[-12,-2],[-6,-22],[-9,-3],[-23,20],[-27,-11],[-21,15],[-27,100],[-14,35],[-26,12],[-6,-22],[-10,-20],[-25,41],[-18,153],[0,37],[26,129],[64,116],[-21,4],[-56,-81],[6,20],[9,20],[19,33],[29,31],[39,17],[27,3],[18,17],[27,30],[5,16],[-24,-18],[-39,-18],[10,23],[10,13],[209,208],[42,34],[84,44],[12,28],[-12,19],[33,-17],[-3,-23],[-5,-18],[-2,-29],[3,-28],[34,-14],[27,-52],[-13,71],[25,40],[96,54],[80,6],[25,25],[-68,17],[-81,-9],[-50,19],[-70,-12],[-73,11],[-22,-15],[-19,-34],[-23,15],[-12,3],[-11,11],[24,58],[74,87],[46,75],[12,15],[10,31],[-24,-5],[-22,-12],[-15,34],[-27,47],[-2,-20],[13,-57],[-51,-101],[-34,-7],[-44,-47],[-62,-41],[-73,-78],[-95,-66],[-19,-1],[-43,55],[12,24],[11,34],[-11,-10],[-7,-14],[-25,-24],[21,-45],[-11,-17],[-30,-22],[-27,-32],[-25,-22],[-20,28],[-54,-35],[-46,-9],[-10,17],[-3,28],[-16,7],[-30,-8],[-11,15]],[[34594,81530],[-20,-58],[-14,-28],[-13,-9],[-28,-8],[-59,-9],[-25,-8],[-3,-39],[4,-20],[8,-16],[11,-4],[24,9],[9,-1],[7,-8],[6,-15],[3,-20],[0,-25],[-4,-31],[-20,-73],[-25,-40],[-33,-33],[-7,-12],[-5,-15],[-4,-48],[-16,-38],[-52,-96],[-20,-22],[0,-17],[-8,-46],[-16,-36],[-43,-85],[-10,-30],[-5,-24],[1,-33],[-2,-15],[-10,-28],[-14,-27],[-3,-13],[6,-23],[5,-8],[1,-22],[-4,-34],[18,22],[40,78],[31,47],[20,16],[15,21],[15,46],[20,44],[19,15],[9,-9],[7,-21],[-1,-28],[-10,-33],[0,-10],[24,24],[41,21],[15,-3],[30,-30],[26,3],[40,18],[7,-8],[-7,-27],[-15,-26],[-37,-36],[-90,-72],[-28,-49],[5,2],[20,21],[20,11],[21,2],[9,-7],[-3,-14],[-3,-37],[-54,-74],[13,3],[62,33],[39,-46],[52,16],[31,16],[0,-10],[6,-20],[0,-33],[3,-5],[15,11],[3,12],[-1,58],[5,6],[10,-9],[6,-15],[2,-42],[-7,-43],[-9,-39],[-23,-57],[3,-24],[-6,-27],[5,-1],[23,25],[1,10],[-2,24],[3,11],[19,26],[31,31],[11,4],[4,-7],[-2,-19],[10,5],[20,28],[18,16],[17,6],[18,19],[19,32],[20,27],[21,21],[9,2],[-3,-35],[4,-40],[1,-34],[4,-7],[17,36],[9,13],[11,6],[12,-3],[87,13],[27,-9],[30,-24],[37,-36],[14,-33],[3,-42],[-4,-29],[-27,-37],[-24,-24],[-14,-24],[-5,-25],[-5,-15],[-16,-20],[-72,-59],[17,-2],[41,13],[28,3],[1,-9],[-11,-16],[-21,-17],[-2,-8],[1,-11],[22,-12],[29,6],[24,-9],[-3,-14],[-19,-46],[-5,-28],[-26,-25],[-50,-37],[-13,-15],[3,-3],[46,28],[24,7],[14,0],[17,27],[26,9],[26,-17],[39,46],[14,6],[24,-5],[15,8],[26,32],[20,15],[4,-1],[4,-13],[2,-36],[-5,-32],[-6,-21],[-21,-45],[-13,-16],[-12,-6],[-21,2],[-9,-7],[-20,-35],[-35,-36],[-22,-14],[14,-20],[5,-37],[-8,-12],[-37,-12],[-2,-6],[-13,-8],[-31,-13],[21,-6],[39,9],[4,-6],[-5,-27],[-11,-27],[-46,-70],[0,-7],[7,-35],[9,-26],[11,-18],[26,-1],[19,8],[27,47],[62,146],[55,41],[45,45],[11,-9],[5,-11],[-2,-11],[-23,-37],[-12,-31],[-31,-94],[-12,-45],[-6,-47],[1,-81],[4,-14],[9,-19],[19,17],[31,40],[20,38],[15,63],[10,24],[10,-1],[10,-13],[2,-30],[8,-42],[6,-41],[-4,-46],[-5,-25],[-63,-186],[6,-33],[2,-20],[-2,-22],[-20,-89],[-19,-55],[-11,-24],[-12,-15],[-15,-5],[-13,8],[-11,21],[-10,11],[-9,1],[-17,-4],[-42,-45],[-9,-3],[-6,6],[-8,24],[6,120],[4,40],[-9,30],[9,52],[1,19],[-6,7],[-10,-4],[-17,-26],[-22,-47],[-23,-42],[-42,-57],[-18,-11],[-8,2],[-8,8],[-12,24],[1,22],[5,29],[17,68],[34,101],[28,72],[5,31],[-7,13],[-7,27],[-11,78],[-13,64],[-16,28],[-41,32],[-7,-8],[-4,-43],[-48,-124],[-8,-54],[-6,-20],[-9,-14],[-21,-17],[6,29],[22,64],[-3,6],[-28,-51],[-21,-29],[-26,-7],[-16,2],[-15,-8],[-65,-121],[-3,-41],[-11,-33],[-32,-60],[-17,-21],[-24,-4],[-21,11],[-15,-2],[-33,-19],[-38,-8],[-16,4],[-10,7],[-19,24],[-2,16],[1,10],[10,25],[22,32],[18,11],[45,16],[33,24],[25,35],[12,21],[47,110],[60,39],[29,31],[21,40],[3,14],[-30,-20],[-15,-5],[-25,7],[-11,14],[-34,-4],[-47,6],[-7,-10],[-6,-54],[-6,-28],[-7,-9],[-11,-6],[-21,-6],[-55,19],[-11,11],[-14,8],[-60,-18],[-13,2],[12,12],[60,40],[6,112],[-3,18],[-17,-16],[-28,-16],[-20,5],[-9,10],[-8,-9],[-19,-59],[-12,-7],[-17,-3],[-38,-21],[-73,-15],[-14,-15],[-49,5],[-145,33],[-52,-3],[-62,20],[-12,8],[-87,-3],[-26,4],[2,25],[-3,6],[-25,-27],[-23,-18],[-29,-15],[-91,-26],[-49,-6],[-28,18],[-11,19],[-17,59],[-12,74],[0,13],[6,26],[19,36],[87,94],[69,96],[30,49],[28,18],[46,41],[2,5],[-45,-5],[-32,11],[-32,5],[-62,-11],[-62,0],[0,21],[29,40],[62,68],[6,1],[-19,-32],[-5,-24],[8,-16],[9,-10],[36,-4],[8,14],[12,73],[27,85],[14,61],[25,47],[13,7],[11,-9],[37,-11],[38,-43],[12,-3],[4,3],[-14,13],[-11,20],[-5,19],[14,59],[16,17],[3,12],[-32,0],[-26,16],[-8,27],[1,47],[9,28],[21,37],[25,25],[15,-6],[30,-34],[18,10],[-3,10],[-27,53],[-9,39],[1,19],[59,187],[29,100],[40,153],[9,24],[20,45],[9,12],[25,0],[16,6],[-23,19],[-8,14],[-1,15],[6,15],[9,12],[31,24],[22,40],[13,48],[-2,16],[-7,16],[0,9],[17,10],[42,56],[5,11],[16,75],[19,33],[17,17],[28,21],[86,52],[51,46],[34,-3],[10,-32],[49,-21],[9,23],[-12,28],[10,11],[40,10],[7,-4],[12,-16],[-2,-14]],[[25947,92747],[11,-12],[64,16],[54,18],[84,45],[50,15],[152,0],[26,-9],[-11,-26],[-7,-8],[5,-11],[17,-16],[33,-17],[13,16],[9,37],[23,153],[9,46],[5,44],[-1,41],[-11,26],[-39,16],[-53,-3],[-28,4],[-33,8],[-25,13],[-16,17],[-31,52],[-24,28],[-60,52],[-28,17],[14,21],[55,23],[33,23],[39,65],[23,11],[84,-9],[114,-51],[72,-44],[19,-5],[0,8],[-18,21],[-82,54],[-38,40],[-17,29],[8,12],[46,13],[6,14],[-63,17],[-31,0],[-26,-12],[-28,-1],[-51,22],[-14,13],[-30,38],[-15,34],[-17,21],[-7,16],[-3,51],[2,30],[7,26],[12,22],[33,39],[19,12],[35,5],[76,-20],[203,-71],[-5,23],[-227,96],[-81,24],[-20,35],[122,133],[111,31],[56,38],[91,2],[85,-25],[1,7],[-38,46],[3,12],[48,27],[89,32],[108,26],[22,13],[28,9],[51,9],[127,3],[71,-3],[95,-20],[55,-35],[17,-21],[30,-69],[24,-95],[35,-40],[56,-21],[39,-24],[22,-26],[6,-32],[-10,-39],[7,-40],[25,-41],[20,-24],[42,-26],[1,-14],[-13,-16],[-28,-23],[-70,-69],[-90,-76],[-64,-66],[-3,-20],[133,104],[42,-4],[2,-15],[-28,-50],[-33,-45],[-33,-29],[6,-11],[63,-50],[-11,-9],[-31,5],[-12,-5],[-9,-9],[-6,-14],[0,-20],[5,-25],[-1,-18],[-6,-13],[7,-5],[18,2],[16,10],[27,34],[88,93],[57,34],[18,4],[52,-23],[13,1],[-58,72],[-5,18],[12,26],[7,9],[32,20],[26,10],[15,-4],[24,-36],[11,-25],[19,-11],[44,14],[28,30],[36,-20],[54,-48],[-5,-48],[0,-49],[3,-35],[65,-65],[44,-28],[9,-1],[-2,10],[-9,22],[-24,21],[-23,34],[-20,40],[12,95],[34,50],[32,-13],[43,-29],[34,-2],[53,3],[108,-58],[58,-1],[-5,23],[-44,12],[-64,31],[-101,38],[-46,44],[-8,20],[1,22],[6,20],[10,16],[20,17],[97,50],[69,22],[51,7],[87,-1],[100,-9],[55,-14],[62,-36],[79,-35],[28,-6],[33,0],[38,8],[36,-3],[114,-52],[30,-27],[18,-32],[14,-32],[8,-31],[-3,-24],[-95,-108],[-41,-18],[-28,-41],[-40,-77],[-35,-42],[-3,-8],[7,-2],[21,19],[36,53],[26,46],[47,38],[78,45],[68,22],[58,-2],[49,-6],[39,-11],[24,-10],[7,-7],[16,-34],[-1,-23],[-10,-26],[-19,-29],[-84,-33],[-47,-25],[-29,-10],[-87,-9],[4,-10],[65,-14],[71,4],[-1,-16],[-34,-44],[-11,-38],[9,-31],[-1,-26],[-26,-53],[-28,-48],[10,-7],[66,69],[18,76],[27,66],[31,37],[23,14],[74,5],[40,39],[35,12],[15,1],[29,-15],[-1,-15],[-43,-70],[-92,-112],[38,13],[25,27],[34,26],[38,40],[25,-36],[39,-27],[23,-61],[38,-29],[23,-23],[-3,39],[-33,77],[9,31],[25,16],[79,65],[55,-22],[34,-19],[17,5],[43,-3],[69,-10],[67,-19],[66,-25],[50,-31],[35,-34],[21,-24],[8,-14],[12,-34],[-9,-23],[-50,-53],[-27,-24],[-27,-11],[-73,11],[-23,-7],[-24,-16],[-76,-73],[-42,-32],[-41,-20],[-10,-10],[89,1],[24,21],[21,41],[39,42],[74,19],[103,-41],[52,2],[39,41],[44,28],[17,6],[9,-3],[33,-30],[10,-26],[0,-60],[-5,-18],[-29,-46],[-73,-68],[-47,-25],[-52,-14],[-57,-23],[-20,-19],[-20,-26],[-20,-18],[-25,-14],[33,-22],[12,1],[13,13],[33,50],[24,23],[14,4],[14,-2],[14,-10],[14,-18],[-1,-43],[-42,-171],[7,0],[26,47],[74,178],[18,36],[36,36],[80,54],[63,29],[70,24],[37,9],[43,-6],[28,-28],[37,-5],[46,7],[30,-4],[33,-11],[29,-20],[48,-24],[110,-44],[14,-10],[12,-16],[12,-25],[-1,-24],[-15,-23],[-18,-15],[-22,-5],[-23,-13],[-42,-34],[-13,-6],[-66,-14],[-61,-7],[-38,-14],[-73,-37],[-101,-68],[1,-16],[40,-8],[33,10],[45,47],[42,18],[66,15],[91,12],[39,-2],[7,-2],[5,-11],[3,-20],[-15,-26],[-17,-12],[-47,-58],[31,-15],[42,-7],[24,16],[22,36],[25,19],[27,4],[24,9],[21,15],[5,9],[-30,19],[-2,11],[12,28],[22,30],[23,19],[17,2],[57,-21],[39,-35],[98,-107],[12,-21],[34,-79],[7,-35],[-6,-25],[-8,-15],[-10,-5],[-22,-1],[-130,33],[-60,-4],[-26,-9],[-21,-14],[-16,-17],[-12,-21],[-23,-12],[-82,0],[-47,-12],[-80,-28],[-28,-16],[-7,-20],[49,4],[81,26],[75,8],[127,-59],[41,-9],[23,9],[28,2],[101,-4],[35,-7],[51,-22],[78,-49],[15,-14],[9,-15],[2,-16],[0,-39],[-8,-13],[-27,-9],[-112,10],[-35,9],[-42,-11],[-34,4],[-44,15],[-48,28],[-72,-26],[-58,17],[-59,-15],[-117,-62],[13,-11],[160,53],[31,-3],[51,-20],[80,-38],[23,-16],[0,-60],[-12,-41],[-25,-45],[-37,6],[-85,28],[-35,4],[-26,-4],[-34,-19],[-17,0],[-137,36],[-31,2],[-3,-4],[6,-7],[125,-56],[92,-6],[57,-10],[34,-17],[16,-13],[2,-37],[30,-38],[28,-15],[18,-1],[30,14],[30,2],[25,-9],[31,-21],[37,-6],[33,-13],[26,-2],[71,6],[31,-8],[8,-7],[-13,-12],[-66,-29],[-10,-28],[37,-36],[20,-28],[-1,-20],[-20,-47],[-5,-19],[6,-2],[48,38],[7,-4],[5,-53],[6,3],[16,43],[-7,58],[28,23],[88,18],[-15,-91],[-2,-47],[-39,-79],[-32,-25],[1,-6],[23,-10],[14,-1],[14,13],[33,60],[66,64],[12,1],[0,-23],[-9,-42],[31,-20],[29,19],[16,17],[37,-2],[17,-8],[5,-19],[-17,-79],[3,-19],[39,-52],[4,3],[-8,25],[-8,62],[8,28],[32,34],[65,50],[25,10],[15,-7],[24,-24],[-8,-14],[-26,-15],[-19,-27],[-13,-39],[14,-21],[53,-2],[54,32],[30,-16],[37,-42],[66,-67],[39,18],[47,-51],[-64,-40],[20,-86],[-82,4],[-46,-7],[-31,8],[-34,-3],[31,-20],[59,-9],[6,-25],[46,0],[35,5],[63,-1],[4,30],[41,17],[23,19],[20,-12],[57,-12],[77,-59],[-34,-35],[-9,-33],[-12,-28],[-6,-25],[-14,-17],[-109,-99],[18,-1],[46,24],[91,35],[50,15],[36,-10],[18,0],[16,13],[30,-15],[62,-13],[71,81],[43,-16],[40,-50],[86,-89],[45,-51],[15,-23],[-2,-23],[-41,-25],[-20,-5],[-55,46],[-50,24],[-31,-3],[-30,-18],[10,-9],[121,-71],[21,-52],[2,-23],[-81,-35],[-26,-2],[-57,17],[-32,31],[-28,11],[-37,3],[-12,-6],[41,-52],[-4,-16],[-21,-10],[-11,-25],[81,-46],[61,-46],[9,-19],[-41,-13],[-29,-4],[-62,7],[-35,10],[-9,-11],[35,-24],[14,-16],[10,-23],[7,-22],[1,-20],[-28,-17],[-35,-46],[-14,-48],[-31,-5],[-13,9],[-42,-15],[-55,21],[-20,22],[-61,90],[-1,-10],[15,-46],[-3,-27],[-64,-20],[0,-7],[39,-15],[48,-11],[-8,-42],[1,-181],[-11,-64],[-23,-56],[-34,-53],[-36,35],[-15,36],[-12,18],[-17,15],[-23,7],[-23,0],[-25,-32],[-28,28],[-26,33],[10,88],[11,44],[-4,-1],[-16,-20],[-36,-64],[-23,-79],[-31,30],[-28,38],[-22,38],[-37,43],[-36,51],[-19,60],[-8,13],[-21,50],[-8,14],[-8,5],[-17,31],[6,34],[28,39],[26,28],[42,28],[50,16],[22,36],[28,66],[30,46],[33,26],[-16,4],[-42,-22],[-30,-32],[-35,-54],[-32,-34],[-84,-40],[-30,-8],[-36,-4],[-78,5],[-18,14],[9,38],[56,68],[-9,5],[-20,-24],[-27,-17],[-23,-9],[-34,3],[-41,43],[-19,13],[-39,15],[-16,14],[-66,104],[-13,28],[-7,27],[-21,23],[-35,18],[-8,-3],[13,-23],[0,-20],[-30,-12],[-31,4],[-33,21],[-3,-28],[35,-51],[1,-64],[-10,-6],[-24,-4],[-16,8],[-53,48],[-50,33],[-36,18],[-4,-13],[23,-57],[27,-57],[44,-47],[69,-56],[32,-32],[-25,-46],[-22,-14],[-13,-5],[-42,0],[-77,25],[-37,28],[-52,67],[-87,69],[-19,-1],[-61,-28],[9,-4],[40,-2],[29,-9],[69,-55],[6,-23],[-18,-25],[1,-32],[20,-39],[20,-25],[41,-18],[20,-2],[8,-11],[-25,-87],[-2,-24],[7,-10],[9,0],[52,35],[22,9],[19,2],[22,-10],[26,-22],[14,-23],[5,-23],[7,-15],[52,-24],[-5,-12],[-53,-37],[-3,-5],[11,-3],[33,-22],[31,-34],[19,-41],[4,-21],[0,-19],[4,-11],[16,-2],[7,7],[7,-1],[9,-10],[8,-32],[19,-92],[10,-25],[5,-1],[3,92],[9,15],[33,-16],[47,-36],[34,-32],[4,-15],[-25,-29],[5,-13],[19,-19],[17,7],[12,33],[22,32],[25,22],[48,-18],[39,-48],[6,-16],[26,-21],[22,11],[44,-54],[-21,-25],[-45,-36],[-5,-12],[11,2],[87,1],[23,-15],[5,-28],[-38,-76],[-35,6],[-47,2],[-24,-4],[4,-10],[65,-35],[18,-29],[25,-30],[12,-25],[-1,-11],[-10,-17],[5,-6],[44,-11],[28,10],[34,4],[30,-3],[3,-11],[-5,-28],[-31,-25],[9,-7],[36,8],[17,-12],[21,-62],[25,-48],[-20,-11],[-22,-5],[3,-61],[14,-64],[1,-60],[-5,-54],[-20,-12],[-22,1],[-8,14],[-53,161],[-13,29],[-16,25],[-56,70],[2,-11],[14,-32],[12,-48],[16,-96],[8,-61],[-4,-23],[-11,-6],[-3,-11],[5,-17],[43,-63],[21,-38],[15,-39],[13,-26],[13,-14],[-3,-11],[-19,-9],[-32,-4],[-16,5],[-58,36],[-8,-11],[32,-133],[-1,-32],[-16,-11],[-20,13],[-24,38],[-36,42],[-49,46],[-47,37],[-11,-1],[-7,-11],[-7,-2],[-9,7],[-16,28],[-16,18],[-68,62],[-7,0],[7,-18],[6,-41],[-7,-8],[-18,3],[-34,18],[-23,40],[-28,70],[-16,26],[-1,-17],[8,-67],[-1,-22],[-17,-6],[-8,6],[-7,18],[-6,29],[-17,23],[-25,15],[-14,16],[-7,29],[-5,6],[-45,-6],[-23,20],[-65,81],[-59,88],[-38,46],[-14,12],[20,-57],[22,-84],[6,-39],[-10,-1],[-22,17],[-113,108],[-69,51],[-39,9],[-63,6],[-14,-28],[34,-62],[33,-47],[32,-32],[50,-61],[46,-79],[19,-25],[62,-34],[33,-9],[34,-2],[3,-12],[-16,-23],[-4,-14],[75,-35],[28,-20],[27,-32],[15,-8],[65,-82],[16,-14],[58,-26],[19,-17],[32,-53],[20,-27],[28,-64],[21,-29],[52,-32],[22,-10],[10,-12],[-7,-29],[-6,-12],[-30,-20],[5,-28],[17,-50],[-1,-31],[-18,-12],[-37,-14],[-19,1],[-28,12],[-35,20],[-70,50],[-105,35],[-39,18],[-13,17],[-20,10],[-260,48],[-44,12],[-27,15],[-25,22],[-100,49],[-12,11],[-67,85],[-49,100],[-17,13],[-54,13],[-45,-8],[-30,-11],[-46,4],[-30,16],[-63,45],[-64,23],[-56,39],[-29,14],[3,10],[41,58],[-12,0],[-73,-45],[-26,14],[-43,35],[-32,35],[-66,97],[-38,35],[5,8],[43,3],[34,-3],[23,8],[44,39],[19,25],[2,14],[-37,4],[-8,7],[-7,16],[-17,21],[-27,25],[-31,10],[-107,-9],[-19,11],[0,17],[21,47],[12,19],[3,10],[-4,3],[-14,-2],[-62,-42],[-14,3],[-24,45],[-15,51],[-11,17],[-14,6],[-51,50],[-72,95],[-27,30],[-30,27],[-21,11],[3,14],[46,79],[2,12],[-40,-4],[-59,16],[-28,-20],[-18,-1],[-21,11],[-12,-4],[-11,-65],[-9,-16],[-12,-9],[-11,2],[-9,11],[0,15],[-9,79],[-21,12],[-58,3],[-13,6],[-14,15],[-12,27],[-10,40],[-12,22],[-13,3],[-11,-3],[-8,-10],[-18,-6],[-28,-3],[-1,-15],[27,-28],[25,-40],[25,-52],[-15,-35],[-55,-18],[-48,-5],[-41,7],[-32,12],[-44,29],[-63,-9],[-15,-76],[-13,-4],[-60,1],[-24,-6],[-80,-42],[-25,-6],[-18,5],[-18,-11],[-27,-24],[-37,-2],[-47,19],[-39,8],[-33,-3],[-33,12],[-34,25],[-29,11],[-36,-2],[-9,4],[-54,55],[-17,22],[-35,68],[-7,27],[-1,29],[3,21],[13,32],[13,76],[12,25],[17,23],[32,29],[120,51],[24,20],[-1,14],[-27,62],[0,16],[9,9],[19,37],[9,10],[21,6],[44,-19],[37,-7],[50,-3],[83,-25],[115,-49],[66,-33],[50,-50],[36,-49],[5,-25],[-16,-38],[-9,-11],[1,-13],[9,-15],[29,-21],[7,8],[-3,26],[6,22],[15,17],[1,23],[-11,28],[-13,24],[-17,21],[-74,70],[-7,23],[25,11],[108,-24],[42,6],[16,27],[17,19],[18,10],[37,4],[51,-13],[25,-2],[23,5],[29,15],[42,50],[28,11],[41,8],[31,1],[56,-20],[35,0],[-3,34],[-23,63],[-28,66],[-23,22],[-57,41],[-68,78],[-34,49],[-9,24],[4,16],[12,24],[123,86],[97,86],[42,44],[21,31],[21,22],[22,14],[47,16],[13,22],[3,36],[8,32],[44,85],[33,23],[51,16],[33,20],[41,70],[-4,17],[-19,13],[-14,20],[-62,182],[-42,89],[-49,76],[-45,94],[-73,92],[-1,24],[13,28],[-6,6],[-76,-40],[-18,-2],[-29,17],[-20,22],[-16,38],[1,20],[11,19],[15,47],[0,24],[-5,22],[-6,16],[-9,9],[-23,6],[-38,2],[-13,-8],[43,-71],[-7,-17],[-54,-7],[-24,3],[-22,8],[-20,14],[-63,74],[-13,27],[4,20],[-5,11],[-13,-7],[-17,0],[-24,7],[-5,8],[44,40],[3,12],[-21,13],[-30,3],[-8,12],[10,12],[41,22],[15,14],[-25,11],[-13,1],[-28,-24],[-42,-48],[-30,-18],[-41,22],[-27,8],[-18,-5],[-28,-38],[-61,-27],[-109,-65],[-46,-20],[-51,4],[-9,13],[0,22],[4,18],[6,14],[2,18],[-4,73],[9,21],[17,12],[32,12],[81,-15],[37,3],[27,17],[26,24],[27,33],[5,31],[-28,50],[-10,11],[-72,39],[-40,14],[-35,6],[-26,11],[-16,17],[-15,27],[-1,18],[2,24],[15,17],[64,20],[0,5],[-53,14],[-25,-2],[-21,-16],[-27,-37],[-16,-11],[-48,22],[-29,3],[-19,11],[-11,10],[7,10],[24,11],[41,32],[3,18],[-29,28],[-15,7],[-60,10],[-72,-10],[-28,5],[-12,32],[-7,37],[-4,44],[-13,75],[-14,39],[-19,4],[-88,-16],[-20,0],[-15,6],[-57,50],[-24,18],[-13,4],[-42,53],[-16,10],[-19,26],[-22,42],[-24,13],[-26,-16],[-26,-24],[-26,-30],[-14,-26],[-2,-21],[16,-16],[91,-28],[24,-18],[19,-30],[15,-36],[10,-43],[-1,-32],[-11,-22],[-20,-19],[-57,-30],[-58,-17],[-59,-5],[-28,4],[-152,59],[-27,0],[-35,8],[-79,24],[-43,3],[-76,20],[-128,11],[-25,-9],[34,-27],[30,-14],[25,0],[37,-24],[48,-47],[28,-29],[22,-34],[1,-12],[-23,-23],[-178,122],[-109,-42],[-51,-16],[-43,-3],[-54,17],[-121,59],[-46,20],[-16,3],[-106,-25],[-91,-1],[-185,24],[-67,17],[-18,17],[-22,8],[-40,0],[-105,19],[-97,-43],[-116,40],[-35,23],[-11,16],[-33,66],[-5,36],[10,32],[9,22],[10,12],[-64,-37],[-22,-6],[-29,-1],[-87,13],[-14,-7],[5,-12],[23,-19],[2,-12],[-48,-8],[-73,9],[-33,-4],[-14,-5],[-33,-30],[-14,-7],[-17,3],[-77,67],[-62,43],[-73,16],[-33,14],[-18,16],[-100,137],[-14,29],[-32,107],[-10,23],[-13,15],[25,3],[95,-13],[91,0],[50,-8],[57,-27],[76,-19],[53,-4],[87,7],[98,18],[11,14],[-63,24],[-57,31],[-52,41],[-31,17],[-53,11],[-146,8],[-137,27],[-93,37],[-77,41],[-31,22],[-11,18],[-12,54],[-13,90],[-12,61],[-12,31],[-1,27],[26,57],[74,63],[2,10],[-15,3],[-31,16],[-10,23],[-4,37],[0,32],[3,25],[13,33],[32,57],[46,71],[49,65],[9,22],[4,58],[7,43],[6,30],[11,22],[31,43],[38,41],[60,34],[5,13],[1,18],[3,13],[6,9],[149,110],[68,45],[57,29],[69,21],[195,43],[101,12],[127,-3],[233,-24],[28,-17],[7,-9],[10,-24],[-7,-16],[-64,-52],[-80,-44],[-53,-38],[-88,-86],[-24,-30],[-110,-173],[-26,-28],[-15,-23],[-11,-63],[4,-22],[17,-36],[59,-79],[16,-36],[0,-34],[-7,-81],[-1,-41],[3,-39],[12,-56],[22,-73],[51,-74],[79,-74],[59,-50],[59,-36],[69,-54],[15,-26],[-32,-29],[-74,-44],[-98,-19],[-52,-18],[-65,-39],[-82,-30],[-32,-19]],[[32833,80122],[-117,-8],[-92,36],[-69,17],[-67,31],[-146,100],[-16,35],[-14,43],[-28,39],[-30,32],[-154,98],[-13,34],[31,23],[36,10],[31,-1],[104,-38],[130,-34],[56,-26],[64,-38],[62,-47],[140,-125],[24,-10],[63,-61],[23,-46],[11,-38],[-14,-19],[-15,-7]],[[32274,78610],[8,-8],[13,15],[15,47],[41,-12],[22,-21],[12,4],[12,-2],[23,-28],[44,-22],[46,4],[70,13],[8,5],[72,11],[72,5],[25,-12],[9,-12],[5,-14],[-41,-38],[-41,-44],[-58,-44],[-7,-21],[4,-39],[-1,-40],[11,-3],[7,-14],[-15,-13],[-59,-6],[-17,4],[-21,16],[-7,39],[-25,-6],[-7,5],[35,32],[-16,42],[-18,-3],[-11,19],[1,27],[16,13],[5,14],[-22,-13],[-17,-24],[-21,-9],[-22,-22],[33,-6],[-17,-17],[-17,-3],[-81,32],[-20,12],[-26,34],[-19,45],[11,2],[3,8],[-2,7],[-28,6],[-45,-2],[-25,12],[1,79],[-8,22],[-28,18],[-42,5],[-4,30],[13,44],[21,39],[16,37],[18,31],[46,62],[-1,-46],[4,-40],[-30,-79],[52,-79],[6,-17],[5,-21],[-4,-19],[-8,-18],[20,-8],[6,-15]],[[27222,88107],[11,-17],[3,-24],[-4,-32],[-7,-30],[-10,-27],[-25,-44],[-76,-77],[-28,-42],[-22,-25],[-124,-111],[-16,-6],[-16,2],[-34,17],[-34,3],[-90,-45],[-4,8],[-4,48],[-9,27],[-40,57],[-2,13],[0,16],[3,13],[45,54],[101,193],[24,10],[49,-22],[24,-7],[17,1],[72,41],[68,-5],[63,24],[29,0],[23,-4],[13,-9]],[[27904,87794],[22,-16],[36,-52],[14,-26],[4,-36],[-10,-48],[-5,-44],[-13,-34],[-25,-42],[-22,-50],[-20,-56],[-15,-38],[-13,-18],[-14,-10],[-14,-1],[-23,21],[-30,42],[-24,25],[-31,18],[-17,23],[-3,23],[-1,76],[1,37],[4,32],[7,25],[16,34],[44,75],[26,29],[16,7],[43,-6],[18,2],[14,9],[15,-1]],[[28979,91199],[145,-51],[14,-19],[7,-16],[4,-19],[0,-38],[-3,-15],[-14,-36],[-1,-12],[11,-123],[-1,-67],[-10,-56],[-21,-45],[-31,-34],[-24,-20],[-105,-48],[-75,-12],[-79,-2],[-100,-13],[-46,3],[-24,5],[-17,10],[-19,30],[-23,51],[-18,58],[-23,102],[0,12],[21,83],[29,56],[50,82],[57,81],[14,14],[26,14],[64,23],[54,-6],[23,3],[29,10],[33,3],[53,-8]],[[27906,94270],[47,-7],[300,14],[63,-11],[189,-64],[48,-21],[25,-28],[21,-45],[10,-10],[69,-26],[28,-32],[10,-17],[14,-38],[31,-22],[36,-12],[11,-11],[-5,-48],[15,-22],[33,-27],[13,-18],[-26,-22],[-61,-13],[-170,13],[-228,31],[-133,-9],[-67,-14],[-161,-49],[-51,-8],[-51,-1],[-89,40],[-32,22],[-11,16],[-21,49],[-17,58],[-9,48],[-10,37],[-31,12],[-90,14],[-30,20],[-14,17],[-13,27],[0,27],[7,25],[6,6],[11,1],[-25,29],[-9,33],[-1,46],[4,29],[7,13],[17,8],[39,5],[58,-1],[81,-33],[64,-4],[98,-27]],[[27574,82227],[-19,-8],[-58,16],[-24,11],[-71,41],[-135,61],[-46,31],[-10,22],[25,48],[13,19],[15,12],[143,22],[55,-11],[65,-97],[38,-66],[15,-52],[0,-26],[-6,-23]],[[28103,84184],[-14,-8],[-10,1],[2,19],[14,38],[8,34],[2,28],[6,25],[10,22],[11,11],[15,-1],[4,-70],[-5,-32],[-10,-28],[-14,-22],[-19,-17]],[[28073,84254],[-23,-58],[-18,-56],[-25,-106],[-15,-3],[-13,25],[37,123],[1,14],[-1,12],[-11,18],[-11,-21],[-52,-139],[-13,-22],[-11,-13],[-9,-2],[-22,3],[-44,-40],[74,165],[1,13],[-14,8],[-6,-5],[-60,-104],[-34,-40],[-23,13],[-6,10],[2,13],[59,104],[54,75],[22,48],[9,44],[4,33],[0,36],[3,10],[3,-2],[3,-14],[1,-38],[-12,-77],[-10,-38],[-12,-32],[5,-7],[22,18],[18,38],[15,57],[9,50],[10,80],[3,-3],[4,-16],[10,-11],[15,-7],[9,-10],[6,-26],[7,-12],[23,-10],[9,-8],[6,-29],[-1,-16],[3,-9],[7,-5],[-8,-31]],[[27784,84220],[-14,-4],[-17,8],[9,42],[14,18],[36,17],[7,11],[11,6],[17,0],[19,15],[21,32],[7,4],[-14,-46],[-16,-34],[-80,-69]],[[25046,96352],[-73,-33],[-37,1],[-212,67],[-43,33],[-8,23],[-2,32],[0,43],[9,30],[12,10],[25,10],[49,7],[46,-4],[70,-12],[70,-19],[92,-60],[34,-28],[7,-37],[0,-22],[-5,-17],[-10,-10],[-24,-14]],[[20956,96279],[-43,-10],[-84,23],[-56,10],[-45,42],[-49,57],[-39,62],[-14,37],[-28,22],[-10,36],[-51,57],[8,9],[48,8],[77,-11],[36,-20],[47,-34],[60,-54],[18,-24],[4,-33],[11,-17],[51,-4],[63,-43],[12,-17],[13,-34],[-1,-16],[-10,-34],[-18,-12]],[[22558,97915],[6,-75],[-6,-38],[-14,-28],[-12,-7],[-17,0],[-76,21],[-23,13],[-1,11],[-8,21],[-50,27],[-95,-4],[-40,3],[-16,8],[-10,12],[-9,47],[2,17],[11,29],[7,7],[70,27],[20,2],[85,-10],[75,-1],[38,-7],[34,-17],[20,-26],[9,-32]],[[20753,93847],[-14,-3],[-26,14],[-39,29],[-63,60],[-75,59],[-12,36],[-19,26],[-96,63],[-62,26],[-48,13],[-7,17],[33,51],[37,41],[23,15],[70,13],[236,27],[54,1],[56,-13],[78,-56],[32,-6],[20,-13],[17,-21],[9,-21],[0,-44],[-8,-64],[-11,-25],[-47,-82],[-49,-46],[-10,-29],[-20,-23],[-35,-29],[-24,-16]],[[21603,95630],[58,-35],[3,-9],[-11,-6],[-75,-19],[-29,-15],[-25,-35],[-19,-16],[-101,-10],[-103,1],[20,33],[56,56],[-44,22],[-158,-38],[-60,24],[51,60],[-51,5],[-71,0],[-46,36],[16,42],[94,24],[122,20],[131,31],[103,-3],[40,-14],[14,-49],[12,-59],[18,-5],[55,-41]],[[21105,95957],[13,-3],[43,12],[27,2],[30,-22],[8,-14],[110,-36],[38,-16],[5,-10],[-13,-15],[-33,-20],[-31,-13],[-44,-11],[-222,-2],[-24,5],[-14,18],[-28,65],[-19,36],[-8,24],[5,14],[24,13],[82,21],[36,0],[23,-5],[9,-11],[-3,-14],[-14,-18]],[[17131,95379],[-79,-37],[-57,4],[-75,27],[-61,10],[-21,9],[-3,9],[20,26],[26,21],[62,41],[105,78],[69,30],[67,21],[69,47],[38,21],[33,2],[33,-9],[4,-13],[-35,-64],[-25,-26],[-49,-67],[-93,-112],[-28,-18]],[[18380,96632],[-76,-19],[-51,0],[-89,28],[-103,84],[-14,30],[39,5],[28,9],[17,13],[34,15],[76,21],[10,-8],[-2,-18],[6,-16],[28,-4],[26,-11],[53,-36],[36,-7],[13,-8],[6,-12],[22,-21],[0,-11],[-30,-22],[-29,-12]],[[13631,83225],[-6,-1],[-3,12],[2,25],[9,42],[4,9],[36,-7],[5,-3],[1,-8],[-2,-13],[-12,-19],[-34,-37]],[[13603,81774],[-5,-1],[-9,12],[-7,19],[-4,51],[3,20],[3,8],[24,-32],[-5,-77]],[[13823,82925],[-8,-21],[-20,-32],[-13,-13],[-6,6],[-18,4],[-19,32],[-14,13],[-10,1],[-5,-12],[-1,-15],[3,-20],[-2,-9],[-6,2],[-5,9],[-6,16],[-1,17],[4,17],[13,24],[42,47],[13,9],[14,-2],[23,-22],[5,-7],[17,-44]],[[13931,82469],[-6,-2],[-18,7],[-60,98],[-43,35],[-29,48],[-30,31],[18,50],[16,-6],[56,-41],[44,-39],[25,-26],[53,-110],[-4,-16],[-22,-29]],[[13829,83540],[3,-46],[-40,-76],[-52,-38],[-11,12]],[[14291,82338],[13,-184],[-1,-59],[-19,-38],[-13,-65],[-15,-29],[-15,39],[-1,64],[-4,51],[-5,24],[6,95],[-6,-7],[-18,-41],[-19,-3],[-34,47],[-17,38],[-3,40],[-22,42],[-3,15],[2,16],[19,42],[7,28],[7,58],[7,23],[18,-3],[31,-27],[33,-28],[30,-39],[22,-99]],[[14974,80272],[8,-52],[-34,9],[-12,10],[0,25],[6,23],[26,-8],[6,-7]],[[15513,80374],[4,-12],[-62,45],[-27,27],[-10,19],[-6,11],[-32,28],[-5,13],[7,10],[21,-6],[35,-21],[32,-35],[43,-79]],[[14822,80417],[-11,-2],[-18,7],[-19,16],[-35,44],[-3,10],[3,9],[9,7],[3,11],[-8,32],[27,20],[25,-17],[11,-20],[13,-36],[6,-41],[1,-28],[-4,-12]],[[15226,80700],[-3,-30],[-17,49],[-28,105],[4,24],[12,35],[11,2],[18,-16],[16,-29],[3,-11],[10,-30],[5,-27],[-11,-33],[-20,-39]],[[14184,82090],[-9,-26],[-37,63],[-13,18],[-28,67],[-5,29],[1,17],[5,6],[9,-4],[8,-8],[53,-74],[15,-35],[1,-53]],[[14465,81493],[-4,-9],[-11,0],[-18,10],[-13,21],[-16,66],[2,12],[5,12],[25,24],[10,-3],[3,-18],[15,-39],[5,-11],[0,-46],[-3,-19]],[[14342,82027],[-21,-7],[7,31],[2,18],[-4,17],[-3,33],[-1,79],[21,49],[33,1],[-1,-25],[-14,-111],[-7,-51],[-5,-19],[-7,-15]],[[14079,82368],[-4,-5],[-11,8],[-11,15],[-19,43],[-6,18],[-4,29],[3,5],[9,-3],[5,-5],[30,-70],[8,-35]],[[14120,82440],[-2,-4],[-28,0],[-8,6],[-5,12],[-2,19],[4,22],[17,42],[1,18],[3,8],[12,-22],[5,-19],[3,-82]],[[15712,79927],[-11,-15],[-7,2],[-5,10],[-18,102],[8,-3],[24,-31],[-5,-12],[18,-31],[4,-21],[-8,-1]],[[33392,77153],[-37,-20],[-32,1],[-22,19],[-1,8],[51,-8],[19,5],[39,32],[-17,-37]],[[33066,78046],[-12,-4],[-2,8],[-18,24],[-1,12],[15,11],[32,-6],[-12,-30],[-2,-15]],[[32801,79080],[10,-11],[18,1],[12,-4],[-17,-21],[-33,-3],[-16,9],[23,110],[27,26],[56,71],[22,22],[21,9],[21,-5],[-22,-43],[-30,-2],[-28,-35],[-18,-40],[-23,-22],[-15,-27],[-8,-35]],[[32081,79427],[-7,-42],[-25,-36],[-12,-2],[-5,3],[6,23],[0,40],[20,6],[7,-4],[16,12]],[[32090,79469],[-32,-30],[14,45],[6,11],[5,5],[5,-4],[2,-27]],[[31590,77357],[-14,-21],[4,20],[17,51],[11,7],[-18,-57]],[[31455,77581],[-38,-31],[15,78],[12,24],[15,-8],[-2,-47],[-2,-16]],[[29565,78034],[-22,-11],[-36,11],[-41,-15],[-11,0],[30,42],[46,27],[46,80],[13,2],[-18,-91],[-3,-33],[-4,-12]],[[29529,78102],[-34,-12],[-11,5],[37,56],[42,13],[-34,-62]],[[30270,78843],[-25,-5],[6,20],[35,36],[25,20],[15,0],[-24,-44],[-32,-27]],[[34573,81059],[-9,-6],[-9,0],[-8,7],[-1,11],[8,23],[21,12],[17,-3],[-1,-12],[-9,-19],[-9,-13]],[[34846,80408],[-43,-34],[-10,-13],[-12,-7],[-9,11],[-12,35],[2,12],[12,2],[7,-5],[1,-11],[5,-6],[9,0],[32,35],[16,5],[6,-6],[-4,-18]],[[34622,81733],[-14,-1],[-3,7],[6,22],[15,26],[20,7],[-6,-38],[-18,-23]],[[34974,80497],[20,-37],[11,-10],[-72,-41],[-8,-2],[-5,4],[-1,38],[4,29],[5,5],[16,-18],[17,36],[13,-4]],[[34937,79171],[-14,-20],[-14,0],[2,18],[17,34],[8,24],[1,15],[3,11],[13,13],[11,23],[-5,-43],[-22,-75]],[[31993,87879],[53,-6],[33,2],[14,-9],[13,-28],[-17,-40],[-19,-16],[-31,-4],[-50,13],[-17,8],[-16,22],[7,15],[25,5],[4,7],[-6,12],[0,10],[7,9]],[[31046,86544],[-25,-5],[-12,12],[0,35],[8,26],[29,55],[25,62],[15,14],[31,-10],[18,-17],[18,-30],[8,-22],[-7,-34],[-22,-29],[-25,-21],[-61,-36]],[[30462,87873],[-20,-2],[-37,4],[-40,12],[-23,14],[-19,29],[-4,33],[-38,48],[-42,16],[-23,33],[24,3],[34,-8],[49,-14],[45,-19],[64,-42],[21,-40],[21,-28],[7,-22],[-6,-10],[-13,-7]],[[31991,87192],[-7,-7],[-6,2],[-21,30],[-28,13],[-10,12],[-84,63],[-9,28],[-2,22],[28,11],[56,10],[49,-1],[46,-13],[9,-14],[24,-26],[-6,-30],[-2,-40],[-10,-19],[-15,-14],[-12,-27]],[[31936,87487],[6,-5],[7,6],[6,-5],[4,-16],[6,-12],[17,-14],[5,-11],[0,-11],[-14,-16],[-9,0],[-66,37],[-18,39],[-1,19],[7,18],[10,8],[13,0],[16,-10],[11,-27]],[[30789,85852],[-17,-42],[-23,5],[-8,-8],[-6,-1],[10,39],[1,27],[-5,27],[8,13],[30,1],[0,-31],[4,-11],[7,-6],[-1,-13]],[[32109,86616],[-10,-40],[-32,15],[-50,30],[-20,20],[-7,22],[0,30],[15,5],[37,3],[32,-42],[9,-6],[26,-37]],[[33057,84123],[3,-14],[-43,10],[-15,9],[-1,9],[2,15],[8,17],[20,13],[11,-7],[23,-17],[3,-11],[-11,-24]],[[32849,84996],[23,-17],[6,-63],[-44,4],[-50,42],[-10,31],[1,5],[7,5],[13,-7],[12,11],[13,3],[29,-14]],[[31134,91901],[-7,-4],[-72,26],[-6,21],[36,24],[29,12],[22,2],[22,-4],[21,-25],[-25,-23],[-20,-29]],[[32588,90469],[-34,-15],[-19,19],[13,6],[19,23],[26,20],[11,17],[43,8],[15,-1],[5,-6],[-24,-26],[-55,-45]],[[28038,95579],[3,-34],[-20,1],[-65,-22],[-52,-3],[-26,10],[-17,23],[41,43],[47,31],[57,47],[47,30],[23,-6],[22,-16],[-28,-47],[-30,-23],[-2,-34]],[[27814,84547],[-7,-10],[-14,11],[0,29],[13,22],[10,-1],[10,-12],[-3,-15],[-9,-24]],[[27856,84974],[-4,-5],[-12,4],[-5,-38],[-4,-3],[-9,23],[7,20],[-1,14],[2,10],[12,23],[7,5],[4,-2],[4,-29],[-1,-22]],[[27911,84479],[-9,-7],[-7,0],[7,51],[-8,18],[-1,9],[4,9],[5,2],[11,-16],[6,-17],[2,-16],[0,-16],[-4,-11],[-6,-6]],[[27795,82548],[-1,-17],[-18,3],[-9,10],[-8,15],[-2,12],[7,11],[21,-7],[10,-27]],[[27949,81769],[-12,-4],[-26,4],[-22,15],[-13,18],[86,51],[18,-6],[0,-10],[-13,-27],[-3,-18],[-6,-14],[-9,-9]],[[15730,80003],[-4,-7],[-43,41],[-29,54],[-12,32],[57,-81],[29,-26],[2,-13]],[[15284,80661],[-7,-5],[-7,66],[9,23],[2,12],[-1,13],[15,-30],[6,-20],[2,-27],[0,-8],[-19,-24]],[[29549,90889],[-135,-1],[-74,4],[-29,9],[-26,13],[-29,45],[-19,45],[-1,20],[5,17],[7,11],[91,15],[74,-19],[64,-22],[83,-4],[25,-9],[9,-6],[7,-11],[9,-53],[1,-28],[-2,-21],[-60,-5]],[[28367,88404],[24,-25],[24,2],[14,-20],[32,-63],[3,-10],[-1,-21],[-17,-26],[-18,-13],[-37,-20],[-42,-9],[-23,14],[-64,58],[-59,68],[-19,38],[8,16],[25,11],[51,11],[83,-6],[16,-5]],[[23742,95477],[-27,0],[-35,12],[-10,12],[-8,17],[-5,22],[-7,18],[-10,13],[-2,10],[6,9],[11,5],[27,2],[57,22],[11,-2],[8,-12],[7,-31],[9,-19],[22,-34],[10,-22],[-2,-6],[-7,-6],[-55,-10]],[[27698,86188],[-9,-2],[-2,7],[7,24],[12,3],[13,26],[12,-9],[-4,-15],[-16,-22],[-13,-12]],[[27760,86273],[-29,-4],[13,34],[10,16],[12,11],[24,4],[16,-14],[-15,-25],[-31,-22]],[[23116,93857],[-45,-6],[-41,40],[-2,38],[3,21],[5,18],[15,16],[43,18],[19,-13],[7,-17],[6,-6],[28,-14],[13,-16],[-2,-19],[-8,-28],[-10,-18],[-11,-8],[-20,-6]],[[22957,94772],[-84,-34],[-18,13],[-8,12],[65,53],[28,14],[27,-16],[7,-13],[-3,-9],[-14,-20]],[[22702,94394],[-80,-13],[-36,6],[-20,-16],[-15,-7],[-44,-3],[-90,29],[-24,10],[-9,9],[4,9],[16,9],[69,12],[25,10],[11,13],[17,11],[24,8],[65,8],[146,41],[72,5],[28,-3],[9,-11],[2,-10],[-4,-11],[-22,-28],[-30,-21],[-79,-46],[-35,-11]],[[24944,91831],[6,-36],[-24,-49],[-8,-8],[-10,-4],[-9,6],[-28,38],[-8,24],[10,12],[22,15],[15,7],[20,-6],[6,10],[8,-9]],[[24863,91716],[-23,-6],[-14,24],[-12,5],[-5,16],[-24,3],[2,25],[7,12],[22,10],[17,-4],[17,-25],[8,-20],[7,-25],[-2,-15]],[[29444,87913],[-15,-5],[-55,7],[-69,27],[-35,25],[2,8],[15,4],[18,-4],[29,-17],[80,-9],[25,-10],[8,-16],[-3,-10]],[[29199,91214],[-21,-4],[-32,36],[-66,40],[-25,30],[-1,14],[2,22],[8,27],[23,30],[24,5],[35,-7],[25,-21],[27,-59],[19,-29],[5,-21],[-9,-10],[1,-10],[4,-6],[-1,-11],[-8,-16],[-10,-10]],[[28185,86824],[-38,-6],[0,8],[16,24],[59,20],[44,6],[-10,-20],[-26,-16],[-45,-16]],[[28060,91124],[-23,-6],[-30,30],[0,17],[6,41],[55,10],[24,-24],[11,-24],[-43,-44]],[[28700,88360],[-29,-6],[-38,13],[-38,25],[-85,80],[64,54],[102,-63],[31,-40],[-7,-63]],[[27936,92043],[11,-33],[7,-11],[-11,-15],[-41,-31],[-92,-13],[-46,14],[22,-44],[4,-19],[-6,-8],[-20,2],[-31,13],[-19,15],[-4,18],[-7,4],[-9,-10],[-8,2],[-19,27],[-14,9],[-92,16],[-4,7],[5,12],[14,18],[20,5],[52,-7],[4,4],[4,22],[4,9],[36,-3],[22,5],[13,-11],[12,-26],[17,5],[26,-4],[28,9],[43,23],[33,9],[46,-13]],[[28325,92001],[14,-29],[3,-15],[-20,-17],[-74,-33],[-46,-28],[-22,-7],[-31,7],[-37,-14],[-15,2],[17,23],[58,67],[49,7],[16,14],[14,-5],[8,12],[1,17],[17,13],[16,0],[32,-14]],[[28432,88704],[-20,-26],[-59,9],[-8,8],[-2,10],[9,12],[61,12],[26,1],[14,-4],[1,-4],[-22,-18]],[[26910,90024],[28,-7],[21,1],[4,-9],[-22,-28],[-13,-5],[-25,20],[-18,25],[-5,15],[-2,16],[4,3],[28,-31]],[[27997,91500],[-19,-4],[-23,11],[-8,19],[-4,19],[4,10],[10,9],[13,21],[18,32],[27,22],[60,21],[8,7],[27,58],[9,9],[30,6],[3,8],[-10,14],[0,14],[10,15],[15,12],[39,10],[35,-2],[9,-4],[7,-10],[11,-27],[1,-6],[-16,-24],[-42,-36],[-26,-31],[-5,-10],[-3,-13],[-9,-15],[-31,-38],[-20,-36],[-21,-20],[-56,-19],[-43,-22]],[[28612,91672],[-35,-7],[-26,4],[-17,13],[-13,19],[-16,46],[6,22],[2,38],[3,15],[6,7],[37,14],[21,-2],[32,-15],[69,-4],[18,-14],[4,-8],[-1,-10],[-4,-12],[-34,-35],[-17,-24],[-12,-29],[-23,-18]],[[25857,92230],[32,-4],[30,5],[22,-5],[13,-16],[9,-17],[5,-18],[-12,-13],[-49,-11],[-34,6],[-35,15],[-17,-7],[-41,11],[-20,14],[-17,21],[0,13],[43,14],[17,12],[54,-20]],[[26743,89744],[35,-23],[36,-13],[57,-6],[8,-5],[0,-11],[-8,-16],[-19,-22],[-14,0],[-31,15],[-12,7],[-13,17],[-6,2],[-9,-6],[-2,-7],[4,-10],[-5,-2],[-39,6],[-6,6],[3,18],[27,27],[-23,8],[-8,10],[-35,-17],[-19,-4],[-30,12],[-4,60],[-3,23],[-14,15],[-9,16],[-13,12],[-27,12],[-23,30],[-4,14],[3,10],[13,14],[79,-30],[48,-29],[46,-36],[23,-26],[2,-17],[-5,-17],[-14,-17],[11,-20]],[[25945,90861],[-11,-1],[-19,9],[-43,35],[-9,15],[-4,17],[0,21],[3,20],[14,42],[-26,33],[-6,19],[3,10],[14,26],[4,16],[14,22],[37,44],[37,-10],[32,-36],[9,-24],[-3,-26],[3,-37],[8,-49],[3,-36],[-4,-22],[-14,-41],[-12,-20],[-16,-18],[-14,-9]],[[26479,89616],[-15,-6],[-15,3],[-13,17],[-11,30],[-17,22],[-39,28],[-7,11],[-11,37],[-2,37],[-9,34],[0,16],[7,25],[33,6],[26,-10],[5,-7],[8,-14],[6,-18],[31,-47],[18,-38],[25,-78],[0,-15],[-7,-16],[-13,-17]],[[24154,87467],[-11,-1],[-26,29],[-5,15],[33,9],[23,-26],[-2,-12],[-12,-14]],[[21881,95955],[-72,-2],[-33,6],[-2,11],[29,13],[95,22],[57,39],[21,5],[73,6],[43,-1],[55,-10],[-132,-49],[-134,-40]],[[21388,96858],[-32,-12],[-37,7],[-6,7],[0,9],[3,10],[42,36],[38,12],[23,3],[18,-13],[10,-18],[-59,-41]],[[21752,96599],[-39,-6],[-69,3],[-83,21],[-22,24],[-5,38],[1,22],[7,4],[51,5],[96,6],[78,-5],[88,-22],[36,-14],[18,-10],[22,-20],[8,-8],[5,-16],[-110,-4],[-52,-6],[-30,-12]],[[25076,95914],[-13,-8],[-42,4],[-14,-8],[-22,5],[-31,16],[-36,32],[-41,48],[-32,41],[-1,12],[10,19],[32,13],[76,15],[52,0],[48,-31],[14,-11],[8,-13],[1,-12],[-4,-11],[-22,-24],[-10,-16],[0,-17],[5,-23],[9,-16],[13,-8],[0,-7]],[[23311,95339],[-21,-19],[-23,-1],[-30,18],[-32,-7],[-45,-36],[-16,-22],[-12,-7],[-37,-7],[-16,6],[-15,19],[-14,32],[10,24],[35,16],[93,27],[26,13],[3,14],[6,9],[8,4],[62,-23],[29,-16],[22,-18],[-2,-8],[-31,-18]],[[23526,94760],[-13,-2],[-25,3],[-93,26],[-16,10],[-4,8],[21,9],[8,10],[23,12],[42,0],[44,-29],[21,-27],[1,-12],[-9,-8]],[[16368,95475],[-22,-3],[-24,6],[5,15],[54,41],[3,11],[0,9],[-7,11],[14,15],[22,5],[7,-5],[2,-12],[-5,-36],[-6,-18],[-10,-14],[-14,-14],[-19,-11]],[[18455,96049],[-42,-18],[-289,27],[-15,9],[-8,12],[52,33],[64,14],[146,11],[51,-13],[34,-15],[19,-12],[8,-24],[-20,-24]],[[21078,95066],[-53,-3],[-90,18],[-54,33],[-17,16],[2,8],[9,7],[13,22],[31,63],[12,17],[48,36],[36,10],[75,-3],[44,-19],[18,-12],[13,-15],[13,-32],[3,-21],[22,-24],[7,-14],[0,-14],[-6,-14],[-12,-13],[-29,-21],[-85,-25]],[[22162,91478],[-9,-18],[-11,-6],[-22,-21],[-8,-3],[-13,14],[-11,22],[-4,3],[-7,0],[-14,-15],[-7,1],[-5,9],[-3,19],[0,29],[7,43],[1,16],[-4,12],[3,12],[10,10],[12,4],[30,-4],[23,-17],[12,-23],[23,-18],[7,-13],[-10,-56]],[[22223,91597],[-6,-34],[-34,9],[-15,12],[-13,28],[-2,8],[3,10],[14,25],[9,9],[23,-11],[10,-14],[8,-23],[3,-19]],[[22136,92451],[-3,-5],[-60,22],[-23,12],[-8,10],[-5,19],[-3,28],[12,14],[27,-1],[28,-11],[44,-31],[-12,-10],[-1,-20],[5,-20],[-1,-7]],[[23468,91920],[37,-39],[0,-19],[-5,-31],[-11,-24],[-16,-16],[-23,-8],[-29,-1],[-13,7],[10,24],[7,8],[1,21],[-5,35],[-6,22],[-16,12],[-12,1],[-3,-12],[5,-23],[-4,-30],[-13,-38],[-9,-17],[-18,9],[-8,14],[2,23],[-4,22],[4,22],[12,34],[17,22],[21,12],[26,-1],[29,-13],[24,-16]],[[21897,91818],[-23,-5],[-4,1],[2,16],[-2,8],[-6,5],[20,13],[3,10],[-7,7],[-27,14],[-8,13],[2,11],[10,10],[19,-2],[41,-18],[19,-26],[8,-20],[-13,-3],[-11,-8],[-11,-16],[-12,-10]],[[21709,91351],[-11,-1],[-16,10],[-90,35],[-11,11],[10,15],[33,19],[22,19],[17,30],[51,-16],[19,-14],[8,-12],[3,-17],[-3,-41],[-17,-9],[-15,-29]],[[20961,91247],[-16,-2],[-28,9],[-43,21],[-31,21],[-21,23],[-3,16],[16,9],[24,4],[57,-3],[28,-8],[36,-34],[7,-19],[2,-12],[-5,-11],[-23,-14]],[[20028,90668],[-14,-48],[-6,5],[-9,23],[-20,11],[-21,25],[0,55],[8,25],[-2,35],[22,21],[16,-25],[5,-42],[-4,-20],[16,-22],[7,-5],[4,-17],[-2,-21]],[[19676,91003],[31,-6],[23,4],[17,-23],[7,-23],[-2,-8],[-8,-4],[-49,26],[-18,16],[-6,14],[5,4]],[[19974,90440],[35,-5],[45,1],[-8,-44],[-17,-29],[-14,-8],[-6,16],[-26,35],[-9,34]],[[19632,91008],[-10,-2],[-38,34],[8,30],[35,-31],[5,-18],[0,-13]],[[11377,91921],[-23,-21],[-37,22],[-9,11],[42,30],[19,-1],[39,-18],[14,-15],[-45,-8]],[[52722,53170],[6,135],[12,113],[5,105],[18,93],[-9,93],[-11,40],[-57,131],[26,50],[-34,-7],[-7,49],[-17,58],[10,10],[10,32],[31,-10],[-1,16],[-27,49],[3,25],[11,27],[-6,12],[-19,-29],[-14,1],[-10,19],[-8,3],[5,-38],[-11,-33],[-10,-12],[-18,2],[-14,8],[-4,19],[-13,15],[-38,24],[-31,30],[-7,80],[-12,34],[-6,39],[-3,44],[5,69],[-8,11],[-9,3],[-14,-3],[-13,4],[-15,38],[-13,14],[8,-69],[-9,-20],[-23,6],[-9,26],[-2,20],[10,84],[-4,2]],[[78623,58343],[-5,-5],[-5,0],[-5,8],[1,34],[3,20],[9,4],[2,-61]],[[78699,58017],[-11,-22],[-16,46],[0,12],[27,-36]],[[79007,57840],[-46,75],[-90,26],[-10,33],[-9,6],[-8,-43],[-50,-41],[-21,25],[-15,30],[2,37],[15,30],[24,22],[12,76],[-19,97],[-16,28],[-18,23],[-18,-37],[-15,-61],[-16,-32],[-23,-7],[-33,2],[-13,93],[-4,79],[4,90],[5,53],[-32,74],[-2,70],[-15,37],[-4,-19],[0,-20]],[[77417,57713],[-13,-7],[-26,-83],[-12,42],[-7,43],[8,98],[-16,186],[10,25],[9,13],[18,71],[21,70],[2,85],[17,61],[-4,52],[1,61],[4,49],[-2,41],[14,42],[24,32],[-10,11],[-10,23],[-31,-35],[-16,11],[-3,37],[4,39],[2,23],[12,27],[-1,52],[-6,46],[9,57],[-18,0],[-9,11],[5,32],[17,28],[-15,53],[11,57],[0,71],[-8,62],[0,45],[-11,79],[-6,101],[-24,76],[-19,110],[-48,144],[0,61],[-2,54],[-11,27],[-14,-192],[-11,38],[-3,107],[-7,50],[7,101],[-28,100],[-6,73],[-19,110],[6,25],[25,-25],[-23,64],[-19,-14],[-16,69],[-3,188],[-16,70],[9,71],[-18,257],[-35,82],[7,72],[9,63],[-2,118],[8,36],[17,28],[-16,-10],[-13,-8],[-32,-7],[-36,-2],[-12,86],[-18,41],[-16,86],[-9,98],[6,19],[-27,40],[-8,24],[-29,64],[-33,48],[8,-34],[9,-21],[-17,-59],[16,-99],[-14,-63],[-13,-82],[-12,-40],[-40,-84],[-32,-29],[-21,-5],[-19,9],[-23,44],[-5,36],[-4,61],[-8,9],[-9,-7],[14,-79],[0,-37],[24,-71],[-9,-20],[-44,-38],[-15,6],[-10,-8],[-3,-32],[-6,-18],[-69,-48],[-14,-56],[-9,-55],[-35,-80],[-46,-66],[-11,3],[-13,16],[2,71],[15,61],[-5,64],[-3,-37],[-30,-90],[-14,-29],[-27,8],[-38,-12],[-14,92],[0,34],[-3,29],[5,30],[-2,25],[-9,-47],[-3,-40],[-14,-35],[-38,-39],[-1,49],[-2,44],[8,39],[-1,63],[12,90],[-1,31],[-3,34],[-7,-50],[-4,-51],[-8,-16],[-13,-11],[-26,-60],[-15,-52],[-40,-50],[-20,5],[-3,63],[16,225],[15,32],[8,39],[12,131],[15,50],[6,104],[6,18],[19,82],[7,150],[-8,75],[-18,72],[-18,217],[-46,176],[-4,59],[-22,71],[21,5],[-43,62],[-6,26],[-9,146],[2,81],[-6,-11],[-6,-50],[-17,-21],[7,-87],[-1,-21],[-9,-33],[-36,35],[-26,38],[-30,93],[-29,104],[10,16],[13,2],[42,-77],[27,-16],[17,19],[21,33],[10,64],[-11,24],[-20,13],[-13,17],[-20,43],[-2,23],[-6,28],[-20,20],[-16,25],[14,45],[13,34],[-35,-2],[-39,58],[-9,16],[-13,12],[-31,7],[-26,-17],[12,-82],[-2,-27],[-17,4],[-36,124],[11,32],[15,30],[-7,4],[-15,-2],[14,111],[-9,16],[-4,-34],[-8,-34],[-30,-78],[-15,15],[-10,19],[14,41],[8,11],[5,22],[-11,43],[-18,32],[-14,53],[-7,1],[6,-63],[-2,-91],[-32,100],[-64,143],[-15,42]],[[75645,63819],[-4,42],[-7,39],[-5,42],[-1,33],[-14,29],[-6,52],[-3,52],[8,38],[19,40],[15,7],[11,-18],[28,-27],[19,-24],[8,-33],[8,4],[9,21],[-2,25],[-8,68],[-3,81],[0,191],[-3,22]],[[77280,58152],[23,-100],[-3,-15],[-3,-8],[-6,3],[-9,54],[-17,34],[-21,-6],[17,44],[7,10],[12,-16]],[[77272,57565],[-13,-34],[-5,2],[6,55],[23,41],[19,4],[-2,-26],[-14,-31],[-14,-11]],[[77283,58455],[-1,-13],[-2,0],[-7,9],[4,55],[11,44],[11,66],[6,14],[2,-35],[-7,-74],[-5,-40],[-12,-26]],[[77365,58700],[-12,-3],[-5,93],[3,14],[16,-46],[24,-28],[-9,-18],[-17,-12]],[[77375,58608],[-7,-119],[-17,17],[-9,0],[-10,67],[0,18],[-6,44],[41,8],[8,-35]],[[77336,59100],[7,-16],[9,0],[-3,-56],[-22,-69],[-13,-10],[-5,0],[5,101],[-9,57],[3,39],[24,-18],[4,-28]],[[77259,58842],[-3,-3],[-4,1],[-10,10],[-10,39],[5,27],[4,7],[10,-2],[4,-5],[2,-10],[-3,-22],[1,-19],[4,-23]],[[76243,61028],[-18,-56],[-7,84],[30,47],[14,44],[15,31],[5,-37],[-14,-71],[-25,-42]],[[77103,61205],[-10,-7],[-16,37],[-3,90],[13,20],[7,5],[11,-11],[3,-14],[2,-18],[-3,-19],[-4,-83]],[[76024,62605],[-4,-5],[-29,49],[-23,62],[36,12],[35,-13],[1,-33],[-8,-53],[-8,-19]],[[75969,63301],[6,-79],[-19,30],[-7,41],[-2,42],[22,-34]],[[76031,63109],[32,-48],[13,3],[19,-30],[1,-12],[-4,-24],[-9,-19],[-24,-20],[-16,16],[-7,52],[-19,25],[-6,20],[13,29],[7,8]],[[77372,58157],[-6,-1],[-6,2],[-6,9],[14,62],[4,-72]],[[77242,58578],[3,-32],[-18,34],[-3,95],[14,-60],[6,-14],[-2,-23]],[[77240,58980],[-2,-21],[-16,-43],[-14,25],[-4,13],[15,28],[15,-4],[4,6],[2,-4]],[[77309,59388],[-2,-95],[-14,46],[-2,52],[1,49],[3,8],[1,-8],[8,-22],[5,-30]],[[76334,60955],[-6,-15],[-11,11],[-3,6],[26,64],[3,-24],[-9,-42]],[[75835,63320],[4,-55],[-13,22],[-18,76],[1,50],[12,-23],[14,-70]],[[50663,58696],[-7,-33],[-21,-86],[-16,-36],[-69,-121],[-35,14],[-71,-24],[-11,28],[-16,3],[-21,-4],[-8,-11],[-2,-12],[-7,-17],[-14,-48],[-10,-12],[-13,-8],[-15,1],[-9,-6],[0,-24],[-3,-21],[-11,-10],[-4,-23],[1,-23],[-6,-10],[-14,5],[-8,7],[-7,-30],[-10,-20],[-6,0]],[[57940,77040],[-7,-139],[-27,-65],[-40,22],[-52,-18],[-27,-73],[-16,-22],[-14,-26],[-9,-95],[-2,-156],[-19,-19],[-18,-6],[-75,-137],[43,-39],[19,-29],[32,-82],[44,-93],[9,-45]],[[81951,54665],[32,0]],[[81684,54488],[31,-1],[34,10],[35,30],[33,37],[28,43],[27,47],[27,38],[43,44],[15,-4],[0,-31],[-6,-36]],[[35652,54182],[26,99],[3,45],[24,2],[37,-52],[30,-75],[40,-243],[6,-225],[17,-118],[46,-245],[3,-45],[7,-55],[15,-58],[16,-96],[1,-18],[-11,-26],[16,-2],[14,-15],[9,-61],[11,-41],[21,-56],[43,-19],[33,-7],[37,-31],[27,-41],[21,-138],[-7,-87],[2,-61],[-11,-24],[-30,-40],[-7,-22],[-62,-103],[-14,-49],[-33,-65],[-33,-125],[-48,-114],[-17,-29],[-26,-7],[-16,-17],[-37,-93],[-51,-31],[-4,-54],[-29,-124],[-26,-67],[-16,-23],[-41,-122],[-5,-54],[0,-94],[-28,-57],[-28,-37],[-4,-80],[-12,-27],[-11,-18],[-58,21],[-91,-88],[-30,-21],[98,-5],[32,-46],[69,31],[83,110],[32,24],[65,75],[27,50],[48,60],[10,26],[27,29],[15,-36],[1,-23],[-22,-44],[6,-28],[14,-36],[5,-49],[2,-37],[9,-66],[30,-88],[1,-30],[-4,-38],[14,-32],[15,-19],[51,-95],[39,53],[25,15],[15,23],[33,14],[27,-22],[51,-32],[37,34],[75,78],[-23,-138],[-17,-127],[-13,-51],[-13,-138],[-13,-37],[-10,-42],[17,15],[14,20],[18,53],[14,92],[55,247],[16,22],[45,28],[78,197],[31,-1],[19,-45],[19,-27],[4,54],[27,22],[-28,27],[-5,24],[-2,40],[19,55],[-12,48],[40,61],[-3,45],[14,38],[18,39],[21,19],[3,33],[13,14],[10,4],[20,-37],[22,44],[21,17],[9,-7],[12,-20],[12,-8],[10,4],[26,28],[24,-46],[15,-10],[-4,26],[-8,23],[6,20],[11,12],[36,-11],[19,-20],[21,-38],[28,-3],[23,4],[14,-21],[23,1],[11,-33],[35,-46],[7,-31],[28,-16],[27,-19],[28,-5],[28,5],[1,-40],[21,-11],[26,9],[21,-48],[53,-37],[38,-56],[24,10],[27,-15],[30,-121],[6,-87],[13,12],[12,39],[16,71],[29,23],[14,-27],[30,-44],[25,-47],[11,-31],[19,-5],[-16,-38],[16,4],[19,27],[17,-55],[13,-60],[2,-62],[-12,-35],[-10,-22],[-12,-44],[-13,-7],[-14,-14],[16,-32],[10,-30],[24,82],[16,23],[23,13],[13,-59],[2,-55],[-38,-23],[0,-44],[-12,-24],[-7,-29],[-6,-59],[-8,-50],[-23,-218],[0,-36],[27,38],[52,112],[16,118],[20,117],[22,37],[14,0],[20,-13],[1,-38],[-3,-22],[-22,-58],[-9,-32],[9,-32],[50,97],[22,33],[19,-6],[38,44],[76,9],[5,51],[16,22],[41,-6],[82,-45],[29,-37],[43,-35],[23,-41],[96,-76],[69,-8],[34,35],[43,-36],[23,-41],[44,-21],[45,-12],[35,29],[88,10],[112,42],[66,-10],[75,-28],[54,-71],[45,-41],[27,-40],[44,-41],[94,-111],[33,-64],[58,-88],[59,-37],[32,-91],[25,-42],[61,-154],[71,-108],[47,-109],[90,-69],[35,-115],[61,-14],[26,-17],[32,-49],[44,-27],[56,8],[63,-6],[50,23],[120,-43],[19,-21],[24,-49],[44,-182],[26,-202],[13,-154],[30,-120],[16,-226],[14,-71],[1,-54],[12,-13],[7,-152],[-3,-61],[-11,-80],[-1,-35],[2,-23],[-5,-33],[-2,-32],[12,-72],[0,-57],[-15,-70],[-21,-181],[-53,-302],[-51,-173],[-71,-178],[-47,-93],[-18,-10],[-17,19],[12,-50],[-11,-43],[-47,-131],[-46,-86],[-49,-150],[-4,-3],[-62,-58],[-37,-47],[-47,-85],[-43,-135],[-9,-18],[-16,10],[0,-69],[-37,-108],[-11,-16],[0,30],[7,24],[3,25],[-1,29],[-10,-21],[-22,-82],[7,-59],[-16,-90],[-60,-257],[-75,-217],[-17,-66],[-62,-146],[-45,-70],[-12,-1],[-15,6],[-7,112],[-36,68],[-10,12],[-15,-72],[-12,-20],[-18,-4],[19,-31],[6,-36],[-19,-73],[-1,-66],[-34,-72],[-20,-53],[-10,-67],[-7,-62],[16,17],[7,-13],[5,-19],[-3,-29],[-11,-54],[2,-134],[-4,-30],[11,-33],[12,56],[6,-16],[-32,-359],[13,-162],[4,-183],[15,-179],[16,-160],[1,-13],[-22,-185],[-28,-183],[-17,-150],[-11,-161],[-11,-78],[-4,-79],[13,-188],[4,-35],[-34,-84],[-37,-41],[-21,-40],[-45,-151],[-25,-224],[-1,-118],[12,-249],[-9,-102],[-14,-67],[-17,-45],[-44,-53],[-39,-131],[-17,-137],[-27,-50],[-5,-76],[-21,-83],[-56,-124],[-36,-36],[-18,-34],[-11,-72],[-35,-119],[-25,-154],[6,-53],[1,-8],[9,-178],[-3,-46],[-34,-49],[-128,-91],[-34,-39],[-77,-156],[-4,-36],[3,-53],[12,-30],[-13,-33],[-15,-59],[-22,4],[-127,0],[-69,-19],[-36,4],[-16,14],[-18,23],[-6,30],[10,46],[-6,27],[-19,-1],[-20,-13],[-4,-27],[1,-20],[8,-28],[4,-35],[-8,-30],[-40,-4],[-46,-28],[-56,-12],[-45,-20],[-21,26],[21,13],[29,-7],[32,21],[-7,25],[-45,32],[-51,-19],[-28,-39],[-61,4],[-75,-29],[-12,-30],[2,-57],[15,-13],[14,-26],[-14,-24],[-13,-11],[-79,-27],[-73,-112],[-31,-14],[-27,-49],[-3,-42],[-8,-25],[-18,-2],[-38,23],[-50,1],[-35,-18],[-183,-182],[-66,-72],[-75,-148],[-126,-166],[-67,-99],[-12,-26],[-11,-1],[-21,-21],[9,-17],[14,-2],[-6,-57],[-26,-40],[-50,-103],[-11,7],[16,54],[-25,2],[-36,20],[-15,-22],[9,-54],[-14,-22],[-24,-3],[-23,6],[-24,39],[11,-70],[51,-18],[22,-16],[8,-27],[-40,-126],[-34,-17],[-3,-17],[18,0],[10,-35],[-12,-141],[-16,-26],[-10,-1],[-10,-24],[14,-46],[13,-33],[-2,-65],[-5,-54],[0,-52],[17,-101],[6,-104],[7,-37],[4,-42],[-11,-39],[6,-63],[-19,-107],[10,-154],[-4,-144],[-8,-76],[-12,-59],[-29,-76],[-1,-77],[-62,-71],[-69,-99],[-63,-118],[-69,-166],[-80,-252],[-73,-360],[-89,-272],[-36,-98],[-48,-109],[-64,-128],[-86,-128],[-94,-114],[-34,-51],[-33,-73],[-8,30],[7,49],[-4,37],[-1,48],[19,9],[28,-30],[14,20],[11,21],[34,12],[65,125],[48,47],[28,79],[4,42],[-1,85],[16,22],[35,-8],[7,24],[-3,27],[6,59],[48,52],[22,63],[-7,160],[8,7],[20,-25],[9,11],[10,70],[-5,36],[-23,10],[-79,-79],[-26,3],[-4,62],[-39,29],[-15,52],[-4,35],[-14,14],[1,-61],[4,-59],[34,-69],[-8,-28],[-17,-32],[-11,-71],[1,-92],[-9,28],[-12,16],[-5,-99],[-23,-38],[-7,-38],[6,-43],[-12,-30],[-58,-80],[-58,-55],[-13,-26],[-6,-61],[-9,-63],[-26,-55],[-21,-110],[1,-47],[7,-69],[11,-46],[-18,-31],[-23,-59],[-19,-67],[-46,-251],[-40,-151],[-31,-74],[-44,-78],[-125,-196]],[[33997,34453],[13,28],[44,61],[24,54],[5,48],[21,43],[38,38],[41,70],[47,102],[28,75],[9,49],[19,37],[26,26],[23,55],[20,84],[26,66],[35,49],[19,41],[4,32],[9,21],[15,9],[8,17],[-1,25],[5,17],[8,10],[15,-4],[21,-15],[12,3],[4,21],[-5,24],[-15,27],[5,30],[40,48],[29,18],[19,30],[18,47],[28,33],[40,18],[10,18],[-1,23],[8,16],[23,12],[13,22],[2,33],[7,31],[13,28],[15,10],[16,-7],[15,10],[14,29],[17,13],[19,-2],[10,6],[34,14],[18,24],[16,53],[13,20],[12,-12],[21,18],[29,48],[5,1],[22,22],[22,82],[11,55],[-3,45],[-7,32],[3,48],[7,128],[2,53],[12,37],[-1,36],[-21,82],[-21,71],[-12,121],[-7,46],[-18,13],[-16,40],[-20,3],[-9,16],[-10,12],[-15,-3],[-12,-24],[-23,-1],[-14,-9],[-17,-21],[-16,9],[-10,19],[-21,0]],[[33844,40227],[19,8],[7,23],[13,32],[17,8],[20,12],[7,24],[-47,84],[-28,51],[17,69],[27,116],[27,112],[21,85],[5,16],[18,6],[-3,44],[-1,29],[-14,1],[16,105],[24,148],[18,113],[6,19],[13,5],[3,13],[-16,19],[-10,35],[-20,100],[-33,159],[-3,57],[-12,35],[-20,-12],[-24,12],[-60,86],[-39,47],[-13,27],[-6,89],[-12,97],[-5,121],[2,30],[33,91],[0,47],[3,40],[-1,32],[-9,1],[-13,-14],[-20,-11],[-12,-1],[-116,9],[-133,10],[-110,8],[-96,7],[-3,79],[-5,133],[-4,94],[-6,149],[-39,93],[-41,101],[-15,25],[50,4],[36,2],[-7,271],[-11,28],[-10,87],[-6,49],[-18,41],[-4,45],[3,30],[10,19],[7,46],[-5,47],[-11,43],[-13,42],[-24,26],[-36,46],[-53,60],[-45,41],[-15,-5],[-79,-16],[-27,-9],[-18,10],[-59,-1],[-24,32],[-19,37],[-42,95],[-6,47],[-16,15],[-25,-6],[-25,7],[-48,39],[-44,40],[-22,-1],[-20,25],[-34,61],[-16,24],[-7,32],[-7,47],[-14,10],[-18,-9],[-19,-24],[-27,16],[-33,44],[-21,33],[-12,16],[-29,24],[-27,5],[-42,-35],[-34,14],[-54,13],[-46,25],[-17,65],[-9,44],[-27,27],[-22,33],[-26,50],[-13,17],[-23,14],[-22,17],[-2,32],[-8,42],[-2,10],[-15,51],[-7,4],[-8,-10],[-5,-8],[-6,10],[-2,22],[4,37],[-8,38],[-21,40],[-11,41],[-1,43],[-5,29],[-8,14],[-5,25],[-1,36],[6,43],[13,49],[-3,76],[-19,103],[-10,74],[-2,45],[3,34],[11,32],[23,81],[4,61],[-7,69],[-1,52],[5,37],[-8,47],[-16,45],[-11,1],[-16,-12],[-18,-38],[-22,-7],[-19,24],[-61,-10],[-94,-24],[-38,-24],[-22,-10],[-26,-8],[-43,-44],[-106,-169],[-22,-24],[-25,-3],[-15,-24],[-23,-18],[-46,-67],[-24,-54],[-15,-48],[-18,-2],[-13,13],[-44,-6],[-22,-17],[-24,-47],[-30,-85],[-13,-24],[-24,-26],[-28,-20],[-34,-32],[-16,-2],[-13,-5],[-12,14],[-4,31],[-18,19],[-42,10],[-63,22],[-65,4],[-33,-2]],[[36214,51711],[26,-3],[37,11],[24,27],[28,5],[27,-3],[92,-30],[55,-9],[20,-9],[20,-14],[14,-15],[4,-32],[-14,-51],[-10,-53],[-9,-75],[-7,-16],[-12,4],[7,-67],[-2,-27],[-6,-26],[-15,-54],[-22,-69],[-7,-14],[-17,-24],[-14,-31],[3,-29],[7,-29],[-8,-36],[-27,-53],[-16,-13],[-14,-6],[-14,6],[-23,53],[-3,-42],[-6,-42],[-8,-24],[-31,3],[-17,23],[-28,25],[-5,-69],[-18,-47],[-17,-15],[-27,-10],[-16,-20],[-30,16],[-27,31],[-16,3],[-12,-25],[-63,-5],[-29,-26],[-18,8],[-26,52],[-5,34],[-15,70],[-14,84],[-10,75],[8,66],[17,-3],[20,-9],[4,4],[1,21],[-4,18],[-32,-3],[-21,39],[-3,60],[4,124],[2,26],[15,36],[4,31],[-3,34],[6,61],[13,52],[52,67],[59,24],[172,-65]],[[37741,38512],[9,-16],[-16,2],[-18,-14],[-28,-12],[-11,23],[24,32],[9,24],[6,-5],[8,-17],[17,-17]],[[36504,36634],[-5,-7],[-18,72],[35,69],[12,-28],[-9,-55],[-10,-38],[-5,-13]],[[37427,38082],[0,-30],[-11,15],[-31,-12],[-11,23],[42,97],[8,-14],[6,-18],[5,-25],[-5,-16],[-3,-20]],[[37639,50149],[-28,-56],[9,65],[-4,45],[3,35],[19,34],[6,5],[-2,-41],[1,-13],[-4,-74]],[[39237,44298],[-10,-12],[-2,36],[29,47],[4,54],[15,-25],[4,-28],[0,-12],[-40,-60]],[[39193,44081],[-9,-33],[-11,5],[-5,22],[-8,22],[4,18],[8,10],[20,-2],[1,-42]],[[37532,51083],[-18,-27],[-5,-15],[-15,11],[3,16],[4,-2],[5,47],[25,-6],[1,-24]],[[36183,51997],[12,-30],[-40,-120],[-21,-18],[-24,-3],[-31,36],[-48,-3],[-15,9],[-1,52],[20,56],[40,-3],[69,45],[39,-21]],[[36028,52959],[-28,-26],[-16,10],[-15,69],[5,57],[20,19],[16,-4],[6,-8],[14,-93],[-2,-24]],[[35929,51767],[-76,-113],[-25,37],[-6,22],[5,21],[-1,9],[8,39],[43,32],[21,5],[27,-10],[5,-27],[-1,-15]],[[36265,51778],[-73,-18],[-34,29],[8,24],[25,38],[30,28],[28,12],[28,-15],[8,-33],[-2,-32],[-18,-33]],[[35992,51923],[-5,-85],[-50,36],[4,87],[24,24],[20,46],[7,56],[1,77],[8,14],[6,5],[6,-5],[3,-116],[2,-70],[-26,-69]],[[36068,52069],[-30,-19],[-5,18],[0,72],[8,40],[38,11],[4,12],[11,7],[7,-25],[-1,-41],[-32,-75]],[[35602,51017],[-30,-11],[38,144],[34,67],[1,133],[36,118],[34,49],[47,14],[26,-72],[-32,-205],[-9,-1],[-43,-108],[-48,-75],[-54,-53]],[[36531,35848],[-19,-26],[4,137],[10,45],[11,34],[14,21],[10,-29],[-8,-67],[-25,-81],[3,-34]],[[54907,76553],[-23,24]],[[32597,39035],[-4,9],[-22,34],[-20,63],[-5,29],[-3,1],[-118,-1],[-113,-3],[-11,-13],[-17,0],[-12,13],[-11,-1],[-17,-13],[-15,-25],[-44,-169],[-21,-72],[-16,-65],[-12,-110],[-4,-19],[-14,38],[-20,102],[-9,57],[-13,66],[-22,82],[-27,25],[-16,8],[-23,16],[-42,20],[-18,4],[-119,2],[-9,2],[-46,-9],[-24,6],[-25,46],[-55,81],[-11,26],[-21,17],[-13,2],[-7,-16],[-10,-68],[-11,-61],[-12,-35],[-39,-25],[-37,-27],[-20,-7],[-11,-30],[-5,-43],[-9,-38],[-53,-58],[-12,-24],[-6,-57],[-29,-71],[-10,-27]],[[50751,55512],[-116,-24],[-130,-39],[-55,-25]],[[25473,62483],[-15,-65],[15,-9],[14,7],[32,-3],[13,-71],[-4,-61],[-30,-158],[-4,-55],[-14,-81],[19,-54],[-18,-72],[-6,-46],[-1,-69],[9,-132],[-15,-190],[-25,-83],[-16,-32],[-28,-82],[-37,-25],[-51,-133],[-9,-35],[5,-38]],[[25569,62168],[-13,-11],[11,34],[1,21],[16,89],[10,-1],[3,-8],[-28,-124]],[[25596,61879],[-21,-81],[-2,23],[9,60],[12,21],[8,22],[2,26],[10,-13],[-3,-25],[-15,-33]],[[50701,81276],[121,97],[73,50],[35,15]],[[33474,59378],[-8,-11],[-25,23],[-9,28],[-1,88],[15,8],[29,-70],[17,-25],[-18,-41]],[[75645,63819],[-5,0],[-16,53],[-15,58],[-39,110],[-12,197],[-1,97],[-26,114],[-18,158],[-7,41],[9,51],[2,19],[-5,-4],[-14,-26],[-17,63],[-11,56],[-46,117],[-13,52],[-1,50],[-19,-50],[-27,-36],[-27,-54],[-18,-16],[-57,-10],[-33,72],[-47,175],[-7,40],[6,103],[-11,97],[0,52],[-3,34],[-8,-8],[-4,-23],[2,-36],[-3,-31],[-41,6],[-39,14],[34,-51],[36,-12],[19,-46],[3,-36],[-1,-40],[-19,-29],[-17,-17],[3,-39],[21,-47],[-26,-14],[-6,-31],[-1,-43],[13,-39],[5,-29],[-3,-26],[12,-29],[18,-60],[5,-42],[-7,-60],[-10,-23],[-16,-23],[-39,-75],[-19,-86],[-16,-40],[-20,-7],[-7,18],[-17,22],[0,42],[5,33],[33,81],[-18,-11],[-21,-23],[-31,-43],[-11,53],[-6,50],[0,61],[25,91],[-29,-45],[-8,-57],[4,-67],[-4,-47],[-11,-62],[-15,-37],[-25,-24],[-11,-37],[-17,-27],[0,54],[-5,71],[-18,168],[-4,-36],[9,-104],[0,-68],[-14,-54],[-27,-57],[-21,-8],[-12,8],[-19,36],[-20,51],[-4,82],[-8,45]],[[75319,64616],[-30,-40],[10,239],[22,-89],[6,-48],[-8,-62]],[[75432,64736],[-13,-17],[-12,14],[-16,56],[8,71],[5,11],[7,-23],[11,-50],[7,-38],[3,-24]],[[75215,64567],[-48,-20],[-25,6],[46,151],[-1,68],[-7,55],[-24,44],[-1,32],[-11,43],[-5,51],[26,16],[21,-29],[3,-16],[4,-42],[11,-43],[36,-88],[0,-55],[-10,-132],[-15,-41]],[[75520,64419],[-10,-47],[-5,34],[4,43],[4,24],[3,0],[6,-25],[-2,-29]],[[75541,64232],[-17,-3],[-8,17],[4,24],[-5,78],[14,8],[7,-1],[5,-22],[3,-42],[-3,-59]],[[75178,65070],[4,-25],[-15,15],[-12,17],[-7,23],[12,12],[18,-42]],[[64057,66752],[-9,-44],[-9,16],[-21,76],[6,53],[-10,76],[5,22],[26,11],[6,-4],[-8,-24],[15,-43],[2,-70],[-3,-69]],[[28428,65811],[1,-13],[-28,-36],[20,-26],[19,56],[15,-46],[8,-86],[-1,-15],[1,-12],[3,-17],[1,-24],[-16,-75],[-54,8],[-2,63],[-8,12],[-13,91],[-17,29],[-24,74],[14,19],[18,-6],[10,9],[25,7],[16,10],[12,-22]],[[28548,66764],[-6,-5],[-24,58],[-19,17],[30,41],[13,35],[0,76],[7,42],[-2,36],[7,37],[-9,42],[-26,33],[-50,131],[-79,32],[-41,1],[22,21],[21,-2],[32,-13],[39,-6],[23,-39],[22,-51],[21,-20],[8,-14],[-1,-14],[3,-14],[27,-24],[26,-39],[8,-113],[-36,-54],[-6,-164],[-10,-30]],[[29714,64050],[-8,-42],[-30,-81],[-65,-20],[-73,-4],[-5,22],[-2,20],[5,30],[0,12],[-3,12],[26,13],[18,37],[27,7],[34,-27],[19,-1],[27,29],[22,63],[13,-8],[-5,-62]],[[28404,66075],[0,-70],[3,-52],[-3,-19],[-30,-34],[-8,-20],[-28,-20],[-17,-27],[-9,45],[-17,27],[-2,47],[-13,-16],[-19,10],[-30,35],[-19,48],[27,8],[5,-30],[22,37],[-5,19],[-4,3],[-7,36],[32,94],[7,60],[-15,98],[14,6],[36,-34],[16,-34],[0,-46],[16,-35],[21,-86],[27,-50]],[[28196,67240],[34,-18],[18,2],[11,12],[49,-5],[41,17],[6,-30],[-1,-16],[-86,-15],[-78,-45],[-43,-31],[-21,-3],[-15,16],[-52,93],[14,-10],[38,-52],[24,10],[22,34],[4,26],[-4,13],[10,41],[29,-39]],[[28514,66252],[-31,-12],[-23,11],[-5,10],[9,16],[21,13],[34,1],[15,-15],[2,-7],[-22,-17]],[[29428,64932],[6,-10],[-17,-23],[-40,28],[-9,-2],[-8,31],[-3,22],[2,21],[24,-16],[12,-30],[33,-21]],[[29325,65707],[-22,-63],[-12,6],[7,78],[15,12],[6,0],[6,-33]],[[29387,64639],[-20,-18],[5,30],[37,51],[21,44],[11,16],[5,12],[16,17],[8,28],[-2,24],[-17,38],[0,27],[6,20],[29,9],[-8,-29],[12,-82],[-39,-103],[-33,-31],[-31,-53]],[[28708,66524],[46,-65],[39,-24],[42,-82],[18,-29],[4,-26],[-7,-120],[-10,-73],[2,-63],[-10,18],[-10,42],[-17,24],[-5,13],[29,2],[3,66],[14,51],[-2,54],[-34,59],[-24,53],[-36,16],[-34,52],[-20,7],[-24,-10],[9,31],[6,41],[4,8],[17,-45]],[[28982,65351],[-12,-4],[-21,16],[-48,70],[-23,6],[8,39],[17,-14],[39,-60],[15,-30],[25,-23]],[[29211,65031],[-2,-15],[-35,115],[-44,28],[-26,28],[6,15],[17,7],[3,37],[-7,39],[-24,80],[-13,54],[-6,12],[-1,45],[27,-70],[12,-62],[18,-61],[13,-105],[35,-36],[25,-51],[2,-60]],[[29081,65783],[2,-30],[-19,6],[-28,-11],[-9,0],[6,20],[19,27],[1,26],[-24,37],[-27,92],[-13,22],[-6,35],[-23,38],[5,20],[4,4],[16,-9],[35,-134],[2,-12],[59,-131]],[[29711,64763],[17,-9],[9,1],[32,-17],[19,-24],[4,-10],[-10,-21],[-29,40],[-26,5],[-36,-1],[-14,8],[10,43],[24,-15]],[[29745,64231],[-37,-28],[-3,33],[18,27],[22,-32]],[[62435,74713],[27,9],[46,27],[13,-13],[13,-27],[7,-23],[1,-42],[5,-7],[23,14],[9,-17],[18,-21],[29,-20],[43,32],[21,8],[18,-1],[9,-10],[4,-33],[-4,-41],[-5,-22],[9,-16],[35,-40],[15,-21],[-7,-38],[26,-93],[9,-36],[10,-44]],[[62913,74254],[-1,53],[1,41],[-4,24],[-20,33],[-1,14],[6,8],[16,-5],[20,2],[10,13],[-22,43],[-19,29],[-17,19],[-3,12],[0,8],[3,10],[28,24],[3,21],[-2,25],[-44,36],[-34,-14],[-30,41],[-19,31],[-24,33],[-21,19],[-20,42],[-36,43],[-23,12],[1,7],[4,8],[9,6],[64,-1],[7,7],[4,19],[9,27],[10,41],[-1,34],[-63,55],[-46,50],[-32,67],[-22,61],[1,20],[6,19],[49,56],[4,15],[-1,10],[-18,29],[-22,29],[-7,22],[-14,11],[-27,1],[-46,36],[-10,4],[-2,7],[2,7],[33,15],[0,12],[-10,16],[-19,12],[-17,29],[-6,26]],[[63492,75947],[25,-34],[45,-90],[63,-147],[15,-42],[10,-48],[9,-59],[14,-52],[64,-130],[28,-48],[45,-63],[16,-14],[21,-3],[39,-1],[35,-24],[18,-17],[18,-25],[16,-28],[17,-77],[-62,25],[-62,-4],[-36,-16],[-34,-22],[-32,-32],[-21,-62],[-17,-142],[-25,-134],[0,-61],[12,-59],[-2,-29],[-11,-12],[-15,-25],[-19,-122],[-10,-25],[-12,-15],[-3,15],[0,32],[-27,28],[-14,-32],[-10,-67],[-20,-71],[-1,-13],[5,-219]],[[62653,75239],[3,19],[-8,9],[-8,0],[-8,-9],[0,-24],[10,-5],[11,10]],[[62506,75476],[-6,-7],[-9,7],[-3,14],[1,16],[9,3],[7,-4],[2,-14],[-1,-15]],[[89771,44956],[-7,-69],[-14,-55],[-1,-32],[3,-45],[22,-33],[18,-21],[10,-58],[31,-81],[-1,-56],[16,-69],[16,-137],[4,-121],[16,-80],[-10,-172],[11,-70],[15,-58],[18,-116],[13,-106],[19,-30],[38,-36],[41,40],[28,53],[31,13],[43,28],[31,-71],[17,-80],[74,-104],[42,-68],[32,-37],[30,-50],[-3,-50],[-7,-39],[7,-61],[4,-71],[-6,-86],[22,-130],[7,-103],[23,-101],[-2,-104],[-4,-40],[-3,-58],[18,-72],[17,-54],[24,-58],[33,-89],[23,-17],[20,-2],[-3,-90],[41,-179],[22,-147],[-15,-197],[-14,-114],[3,-56],[53,-137],[30,-25],[-6,-65],[-4,-101],[24,-78],[27,-58],[30,-35],[29,-28],[38,-28],[48,-12],[25,-44],[13,-35],[39,-12],[17,7],[22,14],[14,-24],[11,-31],[21,-86],[44,-85],[30,-14],[18,-43],[24,-11],[22,-6],[30,-33],[49,-75],[45,-13],[20,-21],[44,-83],[17,-44],[18,-66],[-22,-6],[-21,13],[-13,-64],[29,-90],[35,-63],[41,-67],[40,-94],[10,-72],[11,-29],[13,-101],[35,-59],[2,-108],[18,-149],[19,-135],[14,-40],[17,-65],[18,8],[14,21],[28,-64],[15,-28],[8,16],[-17,123],[11,72],[10,9],[16,2],[18,-58],[26,-62],[47,-55],[38,-52],[11,2],[-4,40],[1,59],[15,9],[14,-29],[25,-91],[5,-188],[0,-158],[17,-162],[24,-43],[16,-40],[28,-54],[18,-51],[23,-23],[74,-108],[20,-13],[32,-2],[40,-49],[19,-45],[43,-169],[20,-59],[43,-59],[19,-19],[29,-40],[10,-59],[3,-34],[17,-63],[25,-75],[38,-41],[34,-91],[2,-148],[18,-73],[12,-32],[27,-30],[11,-24],[-23,-195],[22,-391],[-12,-122],[22,-121],[52,-210],[12,-74],[7,-87],[34,-111],[-2,-169],[13,-80],[-3,-105],[-40,-112],[-31,-139],[-1,-118],[-20,-228],[-14,-62],[-10,-95],[-43,-230],[-2,-90],[6,-108],[-7,-103],[-11,-71],[-10,-130],[-44,-202],[-63,-150],[-4,-114],[-8,-50],[-13,-62],[-39,-69],[-23,-29],[-9,-40],[-22,0],[0,-13],[15,-12],[-7,-21],[-58,-36],[-40,-47],[-40,-113],[-17,-60],[-21,-57],[-13,-27],[-6,-28],[-8,-72],[-21,-13],[-18,-21],[8,-68],[-9,-78],[-3,-53],[-10,-34],[-11,12],[-10,-5],[-12,-19],[19,-5],[11,-9],[-39,-76],[-36,-78],[-10,-51],[-15,-65],[-14,-144],[-11,-83],[8,-58],[-2,-11],[-8,-4],[-5,7],[-17,-20],[-4,-20],[7,-25],[4,-8],[-2,-12],[-6,-13],[-16,0],[-19,-21],[-53,-213],[-23,-57],[-27,-87],[-10,-79],[-8,-86],[-10,-145],[-9,-103],[-21,-99],[-7,-71],[-3,-135],[10,-103],[-7,-54],[0,-52],[-8,-49],[-34,-11],[-28,-40],[-40,-65],[-23,-24],[-51,-18],[-99,8],[-189,-24],[-37,-15],[-70,-45],[-68,-70],[-66,-94],[-149,-256],[-117,-28],[-22,0],[-18,7],[-21,-16],[0,-32],[19,-33],[14,-31],[25,43],[11,-12],[4,-79],[1,-50],[-8,-27],[-15,-20],[-17,13],[-2,27],[-22,65],[-26,57],[-25,18],[-14,-19],[-23,-20],[-20,72],[-20,63],[-28,7],[-24,-1],[-19,27],[-39,43],[8,33],[10,35],[22,13],[-6,48],[-12,39],[-30,10],[-21,-7],[-12,-30],[-16,-54],[-64,-67],[-32,37],[-36,55],[18,-4],[36,2],[30,49],[13,31],[15,66],[-19,46],[-18,34],[-26,30],[-98,-102],[-21,-15],[-19,-20],[34,-17],[20,5],[21,-30],[-34,-42],[-26,-12],[-34,-25],[-63,-66],[-80,-136],[-35,-39],[-41,-32],[-56,37],[-31,8],[-40,56],[-67,38],[-63,74],[-44,38],[-31,8],[-43,-16],[-73,67],[-56,7],[-36,-67],[-29,5],[-18,9],[-59,110],[-56,55],[-107,28],[-66,76],[-49,146],[-94,168],[-25,61],[-12,60],[-1,47],[13,90],[17,89],[3,50],[-35,167],[-50,159],[-23,49],[-62,106],[-57,79],[-15,42],[-4,21],[27,-10],[12,32],[19,11],[14,-43],[17,-8],[0,72],[10,35],[-7,15],[-5,14],[-25,16],[-28,-24],[-21,-31],[-28,-26],[-11,-28],[-29,-1],[-12,-7],[-58,-53],[-36,-1],[-57,18],[18,73],[23,43],[19,50],[30,173],[-5,151],[-15,61],[-48,125],[-22,76],[-27,80],[-13,-46],[-8,-49],[-26,-70],[-13,-157],[-50,-239],[-35,-3],[-30,10],[-52,-28],[-35,-33],[-32,0],[-18,-10],[-23,8],[37,187],[31,-5],[35,7],[15,-3],[23,2],[18,86],[11,96],[-7,62],[-3,64],[7,73],[3,53],[43,174],[37,89],[42,72],[-5,68],[-14,85],[-4,65],[20,20],[19,41],[-22,187],[-14,55],[-22,55],[0,-71],[2,-70],[-30,-89],[-40,-64],[-26,-60],[-25,-136],[-32,-115],[-30,-43],[-27,-9],[-27,-18],[-42,-45],[-42,-39],[-30,-50],[-26,-27],[-86,-230],[-40,-76],[-8,-31],[-16,-26],[3,-37],[13,-24],[13,-102],[-8,-22],[-14,11],[-35,57],[-22,-21],[-18,-23],[-46,105],[-20,24],[-24,42],[-26,36],[-11,5],[-19,-8],[2,28],[13,23],[11,6],[21,-34],[24,-30],[14,-2],[6,12],[-23,118],[-15,104],[-7,30],[-19,106],[-9,30],[-40,74],[-43,88],[-11,104],[-16,67],[-20,42],[-31,38],[-85,14],[-35,107],[-21,133],[16,9],[19,2],[7,41],[-5,64],[-84,78],[-40,83],[-34,35],[-31,14],[-42,-3],[-53,3],[-126,131],[-30,4],[-90,-41],[-31,7],[-137,179],[-91,86],[-30,15],[-39,15],[-32,-21],[-22,-19],[-46,-22],[-182,14],[-156,-28],[-105,-19],[-67,-24],[-112,-107],[-133,-103],[-108,-49],[-99,-65],[-66,-19],[-84,-8],[-179,32],[-61,-24],[-97,-120],[-29,-29],[-55,-33],[-141,-155],[-65,-33],[-42,-11],[-36,-32],[-32,-66],[-45,-183],[-27,-86],[-61,-138],[-39,-46],[-40,6],[-44,-48],[-38,51],[-31,9],[-50,-4],[-174,-58],[-25,68],[-32,10],[-60,-3],[-90,20],[-164,-25],[-79,-28],[-31,-25],[-58,16],[-99,-23],[-35,-38],[-26,-35],[-51,-154],[-56,-51],[-47,-1],[-51,-12],[-105,-148],[-106,-144],[-36,-15],[-40,-24],[-52,-12],[-26,-13],[-122,37],[-77,4],[-97,22],[-83,71],[-64,40],[-73,155],[-44,58],[-80,70],[-23,-2],[-19,-19],[-33,49],[-1,64],[-9,54],[1,142],[5,167],[29,-38],[23,-36],[49,2],[44,62],[25,92],[21,103],[-3,110],[-15,193],[10,41],[15,16],[5,96],[4,296],[-11,111],[-68,226],[-45,197],[-32,88],[-28,143],[-23,198],[-7,100],[-7,185],[8,105],[-4,61],[-28,167],[-64,156],[-10,58],[0,61],[-15,71],[-51,143],[-52,123],[-9,60],[-10,249],[-19,114],[-89,287],[-104,248],[-29,102],[-13,34],[8,4],[11,-13],[13,-25],[7,-2],[6,21],[-1,47],[4,26],[9,-14],[11,-53],[33,-138],[10,-70],[42,-21],[13,18],[15,36],[5,97],[-21,44],[-20,19],[-32,72],[-21,115],[-33,107],[0,38],[15,28],[25,-15],[23,-62],[25,-57],[-4,-100],[-4,-27],[2,-23],[9,-22],[12,-17],[13,25],[11,58],[7,-7],[18,-133],[14,-36],[27,-42],[24,32],[11,28],[-4,94],[7,91],[-4,67],[-61,177],[-56,218],[-34,109],[-28,164],[-18,56],[-24,92],[-1,104],[2,71],[19,151],[18,79],[56,181],[3,78],[0,59],[8,90],[0,63],[-8,59],[-23,100],[31,177],[45,226],[18,33],[28,31],[5,-47],[-13,-157],[19,-81],[-6,-92],[18,15],[27,18],[21,48],[11,46],[51,184],[30,69],[41,50],[85,61],[81,80],[39,77],[49,66],[34,73],[32,49],[166,183],[28,34],[36,4],[44,-6],[40,10],[43,-42],[31,-5],[77,46],[41,40],[71,89],[31,25],[72,28],[82,37],[98,154],[70,-10],[63,-15],[51,46],[119,28],[66,39],[124,102],[33,35],[50,73],[44,91],[43,123],[27,110],[11,57],[26,90],[17,71],[14,34],[48,48],[71,135],[23,28],[4,43],[-15,24],[-19,15],[-13,143],[-12,99],[-1,69],[5,66],[28,103],[19,44],[28,51],[25,16],[21,45],[34,44],[15,45],[21,91],[19,69],[15,-3],[28,-160],[19,-85],[35,-100],[32,-148],[27,-67],[13,-44],[10,-20],[3,28],[-3,33],[13,112],[-6,79],[2,31],[6,12],[13,-8],[25,-44],[13,-16],[9,3],[-1,72],[13,45],[-5,31],[-22,-2],[-9,39],[-18,44],[-21,32],[-24,74],[-8,28],[10,14],[15,-2],[13,31],[5,42],[-11,69],[12,25],[22,-7],[36,-109],[16,11],[13,44],[23,12],[24,-8],[15,-31],[32,-32],[42,4],[22,-8],[45,6],[22,-10],[-4,17],[-25,20],[-27,4],[-32,-2],[-14,21],[-5,55],[8,40],[5,17],[21,-7],[19,2],[2,53],[7,48],[11,39],[0,37],[-12,-10],[-28,-86],[-14,70],[-20,53],[4,77],[12,76],[18,10],[16,-12],[23,45],[13,34],[-3,28],[3,21],[16,-6],[62,-69],[12,-36],[13,14],[4,39],[-1,39],[-14,-5],[-32,3],[-7,22],[3,19],[-15,46],[21,29],[17,2],[13,20],[0,27],[4,12],[10,-17],[32,-7],[31,-35],[15,-8],[6,19],[2,41],[-39,41],[-1,40],[-17,47],[0,45],[24,39],[5,37],[15,15],[27,0],[19,32],[21,11],[6,70],[-1,48],[9,12],[21,-20],[-6,-55],[0,-53],[-6,-29],[8,2],[5,12],[9,35],[22,-14],[6,-37],[3,-37],[11,-12],[15,56],[21,15],[-1,71],[8,51],[2,38],[13,19],[3,40],[-10,28],[-6,51],[18,11],[18,-25],[13,-64],[8,-29],[11,16],[7,42],[22,25],[22,-34],[24,-48],[31,42],[28,77],[-5,47],[4,49],[35,26],[29,-19],[25,-52],[54,-39],[46,-56],[20,-36],[40,-58],[25,-60],[34,-107],[82,-131],[5,-23],[-11,-43],[-10,-56],[-12,-95],[-3,-139],[12,10],[12,50],[13,-10],[14,-32],[2,31],[-9,18],[-15,64],[0,34],[12,28],[19,32],[20,22],[13,18],[2,24],[18,23],[28,8],[16,-4],[118,-59],[29,-60],[3,-73],[11,-26],[7,46],[-2,100],[10,20],[31,-15],[22,-20],[30,-66],[6,-32],[13,-21],[4,30],[-6,43],[-4,50],[6,43],[36,3],[23,10],[-11,16],[-15,6],[-25,40],[-17,42],[27,42],[-1,10],[-25,-1],[-34,40],[-29,56],[22,103],[45,101],[25,34],[2,34],[12,62],[8,53],[2,42],[11,43],[28,41],[37,15],[18,16],[18,38],[16,46],[-34,90],[3,50],[6,59],[42,43],[22,112],[15,17],[33,-3],[13,10],[-2,89],[3,35],[14,14],[18,-12],[11,-39],[25,-36],[9,20],[-4,39],[-3,51],[23,11],[19,3],[1,41],[-3,33],[8,14],[48,7],[13,34],[7,29],[6,-16],[8,-66],[27,-38],[80,-1],[45,27],[19,-16],[30,-13],[32,31],[20,24],[33,-31],[11,-32],[8,69],[20,24],[20,14],[26,-12],[10,4],[-23,51],[1,46],[-1,69],[4,62],[8,45],[-55,91],[-55,14],[-40,-19],[-17,15],[-36,72],[-34,27],[-2,18],[41,52],[16,-9],[24,-49],[14,-17],[12,4],[7,38],[11,20],[20,-12],[62,-82],[34,-80],[18,21],[31,45],[29,-9],[17,-27],[25,-97],[20,-48],[48,-13],[24,-19],[25,-32],[33,3],[70,-12],[65,-62],[27,-39],[32,-11],[18,-15],[34,-5],[53,44],[24,-40],[11,-28],[48,-52],[53,-16],[37,53],[55,39],[38,60],[28,29],[27,49],[10,-2],[-22,-46],[-2,-26],[17,-11],[-2,-14],[-23,-35],[-29,-56],[1,-34],[11,-18],[13,8],[18,28],[23,16],[19,-23],[7,-80],[14,-53],[30,-7],[19,0],[19,74],[-10,63],[-12,14],[6,23],[48,104],[27,-3],[19,-102],[31,-53],[32,4],[17,-14],[14,-61],[-114,-251],[-5,-28],[15,-45],[6,-53],[-37,-128],[-14,-6],[-13,35],[-19,22],[-18,-16],[-18,-9],[-66,-71],[0,-183],[17,-109],[-10,-71],[-19,-126],[-22,-47],[-17,-30],[-57,-172],[-18,-41],[-19,-59],[6,-56],[7,-39],[22,-44],[83,-92],[38,-64],[66,-76],[15,-53],[9,-43],[47,-49],[34,-30],[10,8],[7,10],[8,0],[9,-6],[-2,-38],[-3,-21],[3,-27],[24,-34],[38,1],[22,8],[25,-36],[22,-24],[36,-48],[63,-58],[49,-38],[58,-140],[44,-81],[49,-59],[72,-41],[33,7],[54,-48],[53,-22],[28,-66],[9,-50],[3,-39],[26,-92],[54,-30],[69,-92],[57,-41],[14,-24],[25,-29],[48,-1],[84,46],[38,47],[51,74],[23,128],[14,103],[71,212],[20,105],[18,140],[15,87],[-5,95],[16,172],[36,237],[13,79],[-7,118],[-22,220],[10,77],[10,106],[-16,77],[-16,53],[-2,75],[17,140],[15,74],[16,96],[-9,182],[34,63],[13,32],[26,0],[12,-14],[3,36],[-10,34],[-4,39],[-8,20],[-16,7],[-13,21],[-19,22],[3,81],[33,156],[18,60],[11,-25],[14,-20],[2,45],[-5,46],[25,152],[27,207],[8,188],[44,36],[23,47],[13,55],[25,0],[17,-24],[-11,-41],[-4,-31],[47,-79],[16,-60],[7,-57],[9,-54],[4,-72],[0,-115],[6,-109],[17,-34],[15,-22],[22,-3],[31,-18]],[[92521,37009],[-7,-16],[-13,29],[-8,102],[6,59],[14,55],[3,30],[-6,62],[42,71],[10,37],[4,48],[-15,52],[-12,10],[10,29],[12,15],[9,6],[7,-5],[5,-102],[17,-36],[-3,-50],[-58,-259],[-16,-97],[-1,-40]],[[88751,42296],[-21,-51],[-11,7],[-10,-27],[-20,-13],[-12,0],[-22,-13],[-4,16],[4,51],[19,56],[18,35],[46,16],[36,25],[4,-4],[26,-65],[-38,-8],[-15,-25]],[[87975,43891],[12,-24],[13,2],[12,53],[7,-8],[5,-13],[4,-23],[-17,-40],[-8,-6],[-7,-23],[-12,-73],[1,-24],[11,-25],[27,-22],[13,10],[5,-3],[-5,-36],[-11,-27],[-36,12],[-32,-4],[-52,26],[-27,3],[-8,10],[16,21],[10,28],[-5,67],[4,84],[30,41],[14,42],[20,26],[13,-3],[-2,-26],[5,-45]],[[86238,45115],[23,-14],[10,-19],[7,-21],[1,-25],[-29,-11],[-52,37],[-51,-31],[-15,0],[-10,22],[8,61],[19,-9],[16,22],[-3,67],[-9,37],[27,68],[12,13],[12,0],[11,-48],[2,-51],[13,-48],[8,-50]],[[86282,45290],[37,-5],[45,43],[21,-18],[9,4],[33,41],[21,12],[15,30],[14,-33],[32,-38],[11,-40],[13,-19],[5,-12],[-20,-42],[-3,-45],[-21,3],[-25,-74],[-95,-124],[-85,106],[-37,71],[-24,99],[-5,82],[-10,51],[4,14],[5,6],[7,-1],[25,-56],[12,-15],[16,-40]],[[81439,36835],[-7,-24],[-54,180],[-15,123],[10,22],[10,6],[32,-170],[10,-39],[0,-40],[4,-12],[10,-46]],[[88220,31256],[67,-14],[26,21],[32,-17],[22,-56],[-16,-27],[-15,-4],[-49,23],[-46,-18],[-13,-23],[-9,-51],[-40,-28],[-18,31],[-48,22],[-17,-32],[-34,9],[-32,-14],[-43,8],[-46,57],[-14,26],[11,47],[16,34],[126,49],[67,41],[55,-7],[15,-9],[14,-21],[-10,-38],[-1,-9]],[[90412,29749],[-42,-38],[-15,17],[1,29],[3,13],[36,2],[17,-23]],[[90364,29671],[10,-28],[2,-11],[-24,22],[-39,-5],[24,40],[20,-8],[7,-10]],[[91400,40154],[-6,-6],[-10,0],[-13,11],[12,74],[6,-39],[12,-32],[-1,-8]],[[91370,40236],[-6,-3],[-7,6],[5,24],[7,19],[10,14],[-3,-52],[-6,-8]],[[91984,38311],[10,-15],[8,2],[8,-9],[-3,-38],[13,-42],[6,-30],[-10,-24],[-6,-8],[-15,20],[-42,121],[7,41],[24,-18]],[[91809,38984],[-8,-1],[-7,10],[6,23],[1,32],[10,-10],[7,-45],[-9,-9]],[[91646,39059],[-10,-18],[-6,42],[1,44],[10,15],[5,-58],[0,-25]],[[92649,36038],[-24,-158],[-7,3],[-9,24],[1,91],[10,58],[24,-10],[5,-8]],[[92622,36108],[-6,-9],[-12,55],[-4,56],[5,51],[14,11],[10,-4],[-11,-94],[4,-66]],[[89520,45676],[-23,-33],[-15,18],[-4,36],[2,16],[19,28],[21,-65]],[[89538,45972],[-17,-36],[-17,11],[-6,20],[6,29],[23,5],[11,-29]],[[89490,45994],[-7,-16],[-12,34],[14,40],[12,-19],[-7,-39]],[[90632,41341],[6,-55],[12,-42],[-5,-28],[-7,-21],[-18,19],[-12,51],[-21,41],[-5,23],[25,-2],[12,8],[5,9],[8,-3]],[[87943,45288],[-20,-35],[-1,26],[10,21],[25,84],[11,20],[6,11],[5,31],[1,46],[14,7],[-11,-105],[-40,-106]],[[87871,45159],[-44,-43],[24,58],[51,52],[8,12],[-2,-25],[-26,-43],[-11,-11]],[[88081,42754],[-12,-27],[-15,28],[-3,29],[-12,8],[6,27],[6,7],[6,33],[16,-39],[1,-43],[7,-23]],[[88017,42845],[-5,-4],[0,48],[8,24],[4,-50],[-7,-18]],[[87941,42840],[-17,-2],[-4,3],[-3,25],[5,23],[18,6],[7,-6],[-6,-49]],[[88738,41984],[-11,-10],[-3,24],[14,24],[9,34],[19,-30],[3,-30],[-31,-12]],[[87843,43879],[-7,-6],[-25,11],[0,21],[3,15],[7,10],[16,41],[11,-24],[5,-49],[-10,-19]],[[86831,45332],[-6,-9],[-22,89],[6,27],[-9,46],[15,5],[12,34],[4,-16],[1,-63],[9,-36],[-10,-77]],[[84777,43444],[-18,-36],[-12,29],[7,58],[12,20],[10,-10],[-1,-45],[2,-16]],[[84610,42971],[-11,-17],[-10,5],[0,23],[-11,24],[6,28],[4,14],[9,-2],[3,-23],[12,-26],[-2,-26]],[[82068,39868],[-17,-45],[-19,9],[-3,23],[13,37],[22,45],[7,-28],[-3,-41]],[[90289,28348],[32,-2],[18,14],[16,-2],[19,-33],[22,-18],[16,3],[13,-6],[12,-24],[30,-20],[14,-13],[11,-20],[13,-16],[81,-54],[57,-26],[71,12],[21,15],[21,22],[17,-20],[17,-32],[-3,34],[6,30],[17,23],[20,15],[32,-2],[31,7],[14,13],[14,2],[19,-17],[19,-9],[13,22],[21,51],[12,18],[55,-16],[15,0],[27,53],[17,-1],[51,-42],[22,-53],[-3,-97],[2,-34],[4,-34],[2,-67],[-6,-67],[-1,-52],[3,-52],[-3,-98],[8,-64],[-4,-44],[0,-21],[7,-19],[4,-22],[-3,-28],[3,-32],[-3,-27],[-11,4],[-4,21],[2,26],[-2,22],[-6,19],[-20,22],[6,13],[10,12],[-7,29],[-13,-24],[-8,-33],[5,-11],[-8,-9],[-17,-38],[-12,-51],[-5,-50],[1,-52],[-10,-40],[-14,-39],[-3,-49],[1,-91],[11,-83],[7,-113],[-10,-15],[-30,-7],[-14,-15],[-24,57],[-15,58],[11,24],[24,-14],[8,13],[2,16],[-2,15],[-30,32],[-33,15],[-11,-19],[4,-55],[-3,-13],[-24,-21],[-12,80],[-31,60],[1,-29],[13,-50],[-1,-21],[-5,-29],[-13,-10],[-5,-23],[0,-32],[-5,-51],[-20,-23],[-48,57],[-4,-19],[1,-17],[25,-33],[-12,-25],[-8,-29],[-14,-76],[-23,-64],[-11,-4],[-37,10],[-42,54],[-38,-6],[-62,4],[-40,-20],[-9,59],[-8,21],[3,18],[32,13],[33,-1],[-6,23],[-8,8],[-15,-5],[-41,19],[-29,-8],[-19,28],[-34,96],[-20,45],[-12,18],[-13,9],[-9,14],[-61,221],[-8,51],[-11,129],[48,-62],[18,-39],[9,-50],[16,61],[-3,19],[-43,73],[-6,21],[-2,25],[-10,-25],[-17,-3],[7,51],[-6,51],[-51,111],[-39,105],[-38,130],[-3,16],[-1,28],[-18,87],[-10,65],[-4,56],[17,114],[3,64],[27,-29],[63,-37]],[[89979,28734],[-8,-2],[-6,32],[3,47],[-14,45],[8,46],[-1,50],[5,22],[16,24],[3,43],[14,2],[25,-33],[9,-85],[-4,-51],[9,-46],[-8,-40],[-21,-32],[-30,-22]],[[91110,28941],[50,-104],[25,-17],[8,-11],[-2,-45],[-11,-20],[20,-26],[-3,-17],[-4,1],[-24,-35],[-29,-17],[-9,12],[-8,17],[-6,23],[-37,91],[4,25],[-8,38],[-18,-3],[-12,23],[20,22],[26,61],[18,-18]],[[90931,26844],[-13,-59],[-21,10],[-22,-10],[-13,40],[0,10],[16,-10],[6,13],[4,17],[5,4],[4,24],[14,29],[8,0],[9,-38],[3,-30]],[[91139,27240],[-15,-5],[-6,2],[1,30],[-2,13],[13,27],[20,-13],[7,-20],[-19,-17],[1,-17]],[[90953,26934],[-17,0],[-7,5],[-3,29],[-11,12],[6,9],[2,18],[7,20],[13,-22],[10,-71]],[[90217,28509],[-10,-47],[-11,60],[12,8],[9,21],[2,-3],[-2,-39]],[[91201,28624],[26,-34],[15,-38],[-20,-31],[-14,-6],[-9,36],[-29,-13],[-31,3],[-23,27],[-3,14],[14,14],[38,-1],[36,29]],[[91176,28504],[-14,-44],[-17,28],[-2,13],[21,10],[7,-1],[5,-6]],[[94132,20328],[-9,-23],[-3,26],[17,114],[17,20],[-3,-60],[-19,-77]],[[79367,45798],[-8,-41],[-14,23],[-17,7],[3,30],[14,5],[7,1],[10,11],[5,-36]],[[76899,44825],[4,-2],[4,3],[2,-4],[-7,-5],[-4,10],[-2,16],[-1,15],[2,0],[0,-6],[1,-5],[1,-9],[-1,-6],[1,-7]],[[76921,44818],[-3,-3],[-3,3],[-1,1],[0,3],[3,1],[3,2],[1,5],[1,7],[1,-7],[0,-6],[-2,-6]],[[70474,21234],[-34,-28],[-34,1],[-14,21],[-22,68],[-14,4],[-8,19],[-1,8],[15,5],[23,-19],[55,-16],[40,-37],[30,-12],[-12,-10],[-24,-4]],[[96649,35127],[6,-6],[5,-3],[3,-5],[0,-9],[-3,-10],[-3,-4],[-1,-2],[-1,-1],[0,-3],[0,-2],[-2,8],[-3,6],[-3,0],[-2,-6],[-1,0],[-1,6],[-1,6],[-1,5],[1,5],[3,5],[0,4],[-2,2],[-3,-2],[4,9],[5,-3]],[[84331,44685],[0,-6],[-6,1],[0,6],[6,-1]],[[33833,33138],[-6,-53],[14,-228],[-8,-32],[-14,-37],[-16,-2],[-19,6],[-13,-23],[-9,-100],[-25,-218],[4,-51],[21,-84],[7,-53],[6,-41],[5,-76],[-12,-34],[-11,-6],[-14,-19],[16,-93],[13,-43],[38,-87],[144,-122],[60,-72],[68,-97],[37,-100],[3,-83],[-54,-124],[-6,-103],[11,-73],[20,-68],[52,-88],[39,-32],[52,4],[9,-25],[5,-21],[8,-178],[-1,-67],[-15,-61],[-100,-282],[-86,-172],[-31,-94],[-11,-102],[-27,-48],[-148,-154],[-230,-137],[-186,-71],[-42,-24],[-299,-78],[-58,-11],[-75,7],[-61,-10],[-68,21],[-61,25],[-34,61],[-41,7],[-11,-30],[20,-78],[-9,-93],[11,-54],[24,-11],[23,-27],[21,-37],[-35,-4],[13,-29],[15,-18],[-2,-61],[-13,-148],[-34,-32],[-9,-8],[-11,-32],[-21,-142],[-7,-92],[9,-59],[41,-124],[-15,-81],[-26,-44],[-112,-90],[-45,-36],[-70,-25],[-114,-4],[-42,6],[-97,82],[-73,49],[-66,39],[-64,23],[9,12],[4,21],[-18,12],[-13,3],[-42,-43],[-18,-43],[-5,-38],[-1,-92],[8,-76],[30,-189],[3,-103],[-14,-130],[20,-76],[24,-34],[56,-34],[21,-23],[24,3],[7,-9],[-4,-16],[-14,-33],[1,-35],[42,-10],[43,7],[46,16],[11,24],[0,50],[-53,9],[6,18],[41,21],[53,33],[27,7],[18,-23],[12,-21],[16,-54],[9,-71],[1,-86],[-7,-81],[-7,-28],[-14,-35],[-95,-43],[-26,11],[-25,61],[-8,63],[-21,42],[-46,34],[-45,-10],[-45,-59],[-44,-19],[-15,-53],[110,-86],[52,-24],[17,0],[17,-11],[-15,-32],[-16,-20],[-79,-44],[-34,-31],[-41,-60],[-57,-132],[-17,-28],[-9,-34],[-6,-91],[19,-150],[-20,-63],[12,-70],[-6,-47],[-20,-67],[-80,-106],[-14,-78],[28,-45],[-2,-40],[-9,-36],[-33,0],[-120,24],[-44,-39],[-41,-49],[-11,-23],[-14,-14],[-83,-26],[-16,-17],[-88,-184],[-38,-115],[-45,-112],[-12,-47],[-3,-66],[7,-59],[6,-44],[16,-56],[33,-64],[170,-260],[35,-23],[181,-28],[40,-36],[23,-58],[9,-51],[-10,-128],[-11,-41],[-20,-36],[-43,-47],[-51,-25],[14,-18],[21,2],[46,16],[19,-16],[15,-50],[-28,-21],[-9,-24],[-20,-38],[-105,-148],[-56,-45],[-52,-59],[-70,-61],[-27,-34],[-37,-73],[-56,-79],[-61,-170],[-2,-33],[9,-22],[-34,-298],[-12,-35],[-24,-37],[-65,-62],[-31,-7],[-41,35],[-23,38],[-22,63],[-28,66],[-1,-23],[9,-40],[-6,-42],[-70,-19],[-18,-20],[63,9],[43,-13],[18,-15],[16,-32],[15,-38],[-12,-21],[-35,-18],[-44,-32],[-53,-58],[-29,-68],[-13,-48],[-14,-98],[-4,-64],[-22,-50],[-35,-44],[2,-11],[24,23],[18,7],[16,-59],[22,-119],[10,-82],[-2,-25],[-6,-33],[-45,-8],[-39,1],[-29,-15],[15,-15],[27,6],[37,-36],[41,15],[19,-23],[13,-22],[63,-172],[55,-106],[27,-63],[-13,-29]],[[30936,21513],[16,-25],[65,-118],[17,-48],[10,-56],[-26,35],[-27,-20],[-13,-34],[-12,-36],[0,-26],[9,-23],[27,-19],[64,-7],[5,-7],[37,-141],[19,-32],[22,-25],[51,-72],[49,-77],[58,-74],[62,-57],[57,-42],[54,-53],[58,-73],[63,-54],[67,-37],[69,-32],[105,13],[32,-4],[20,-23],[-20,-64],[-26,-51],[-35,-21],[-36,-8],[-34,1],[-33,10],[-31,-6],[-29,-21],[-31,-11],[-32,-2],[-31,-18],[-32,-13],[-32,11],[-84,51],[-55,12],[-185,20],[-59,12],[-59,18],[-31,0],[-45,-11],[-35,1],[-10,-11]],[[32069,20324],[31,-13],[61,10],[32,0],[14,-5],[6,-7],[42,11],[18,-1],[-5,-25],[-38,-24],[-16,10],[-82,-2],[-36,-25],[-15,0],[-36,-36],[-26,23],[-7,21],[18,29],[18,1],[12,12],[9,21]],[[32812,29278],[3,-36],[-15,4],[-34,35],[-12,33],[-2,14],[35,-15],[16,-14],[9,-21]],[[32856,61657],[-9,-23],[-31,9],[-6,29],[-1,20],[19,41],[22,-18],[9,-19],[6,-4],[0,-17],[-3,-12],[-6,-6]],[[32848,61966],[-4,-15],[-23,28],[-7,51],[1,11],[3,6],[9,-10],[12,-4],[8,-17],[1,-50]],[[53392,48525],[-4,16],[-12,57],[7,54],[7,41],[-8,82],[-18,74],[-20,93],[-6,18]],[[53261,41906],[11,218],[11,96],[0,116],[-7,298],[-7,41],[-5,48],[27,37],[14,27],[19,50],[13,69],[16,153],[58,352],[27,345],[35,163],[13,183],[96,236],[24,145],[50,72],[70,75],[51,135],[24,94],[28,179],[-1,187],[18,250],[-4,72],[-26,99],[-5,71],[-24,70],[-27,53],[-12,94],[-45,149],[-13,99],[-21,71],[-4,88],[-11,93],[-22,92],[-22,105],[0,32],[14,40],[12,13],[-4,-20],[-8,-23],[2,-19],[84,184],[6,36],[-3,41],[-1,49],[4,57],[-80,340],[-64,316],[-10,159],[-84,210],[-33,137],[-19,96],[-15,36],[6,18],[21,5],[49,22],[65,24],[61,56],[17,24]],[[49383,72064],[56,-11],[29,5],[67,51],[52,69],[41,36],[37,75],[32,48],[48,52],[136,111],[21,1],[45,-25],[39,8],[27,39],[29,93],[44,57],[57,58],[76,54],[50,51],[80,43],[199,28],[102,24],[70,-5],[70,80],[35,26],[152,6],[72,58],[272,0],[33,-19],[33,-32],[56,-75],[27,-17],[36,16],[84,72],[94,37],[51,42],[22,62],[44,23],[25,-47],[98,-48],[60,13],[26,15],[-9,71],[63,-19],[49,-34],[51,-69],[33,-14],[60,31],[125,16]],[[55555,74717],[-1,52],[-9,41],[-31,99],[-102,96],[-24,43],[-11,36],[-10,35],[10,1],[10,-9],[13,-11],[5,18],[-6,37],[-26,87],[-2,24],[13,74],[21,82],[-1,99],[7,75],[-8,49],[-3,60],[15,79],[14,20],[8,25],[1,85],[-31,39],[-35,8]],[[37300,16980],[61,-14],[31,-21],[8,-24],[36,-9],[5,-5],[7,-14],[4,-15],[-1,-20],[-62,48],[-86,3],[-20,34],[-44,-20],[-5,13],[0,17],[6,24],[28,-10],[32,13]],[[24851,12213],[-3,-1],[-6,0],[-4,0],[-4,-1],[-3,-1],[-3,0],[-1,0],[0,1],[-2,2],[-3,5],[-2,5],[-1,5],[1,7],[3,3],[0,4],[0,5],[1,5],[1,5],[0,3],[1,1],[2,1],[5,0],[3,0],[5,-1],[3,-1],[3,-2],[4,-5],[3,-6],[0,-3],[1,-3],[0,-4],[1,-5],[1,-4],[-1,-7],[-2,-7],[-2,-1],[-1,0]],[[0,0],[99608,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-391,0],[-390,0],[-391,0],[-390,0],[-391,0]],[[0,3253],[447,8],[89,-8],[94,-25],[207,-2],[194,-11],[50,-33],[65,-20],[137,17],[110,9],[89,1],[823,-46],[843,-81],[172,-26],[154,-61],[162,9],[957,-47],[148,0],[586,-50],[1026,-114],[89,-4],[97,3],[-51,62],[-96,56],[-129,40],[84,12],[184,1],[-37,29],[-101,16],[-366,19],[-1463,144],[-32,9],[-21,12],[-38,13],[-60,14],[-223,8],[-61,13],[-29,16],[15,7],[17,-3],[340,13],[38,16],[2,11],[-18,8],[-59,10],[-137,48],[-44,21],[23,33],[28,14],[105,11],[31,22],[-20,40],[-241,80],[-162,29],[-107,-20],[-203,-1],[-251,-10],[-68,11],[-70,32],[-82,57],[-42,15],[-80,47],[-106,46],[-561,111],[-98,30],[-702,175],[-29,30],[-18,32],[324,-71],[61,0],[72,18],[55,-5],[75,18],[84,9],[219,-55],[442,-89],[118,-31],[63,-22],[52,-7],[51,-16],[63,9],[38,-8],[92,5],[419,10],[166,-8],[195,-43],[75,-71],[56,-32],[107,25],[90,30],[173,25],[56,-10],[93,-37],[105,-62],[445,17],[187,-3],[133,-28],[485,93],[75,20],[111,65],[-91,20],[-65,7],[-25,33],[44,13],[140,18],[272,28],[161,27],[86,70],[369,109],[117,48],[108,79],[-242,157],[-232,136],[74,42],[73,33],[35,26],[29,37],[-76,45],[-71,33],[-117,32],[-440,77],[-150,33],[60,51],[80,39],[169,17],[1079,60],[1087,74],[27,37],[-144,44],[-123,11],[-45,13],[-17,28],[-1,38],[-14,6],[-46,4],[-196,44],[-41,17],[-65,41],[-17,32],[39,82],[60,35],[104,19],[75,7],[225,-1],[88,10],[37,11],[-7,39],[-25,18],[-1,24],[38,14],[47,-1],[13,29],[-26,47],[-67,25],[-176,43],[-400,65],[-155,49],[-89,38],[-74,44],[-75,21],[-52,23],[11,28],[-24,44],[-29,8],[-127,-19],[-227,10],[-278,41],[-192,47],[-251,127],[-99,63],[73,44],[80,28],[334,65],[50,22],[68,58],[-112,24],[-95,-2],[-84,16],[-342,4],[-193,-8],[-162,72],[-121,71],[-34,36],[-26,64],[41,94],[34,67],[-4,83],[9,113],[58,38],[45,7],[105,-87],[90,-7],[131,17],[83,45],[44,17],[81,4],[156,-20],[71,8],[80,-4],[251,-58],[55,-27],[30,-21],[9,-30],[31,-31],[107,-15],[299,17],[78,-7],[212,-85],[180,-91],[62,-23],[102,-15],[36,13],[31,34],[97,42],[218,52],[52,52],[-29,28],[-84,30],[-51,10],[-28,34],[2,47],[17,45],[57,11],[104,-61],[130,-57],[45,-8],[35,2],[65,20],[78,15],[149,-122],[88,-8],[110,-1],[21,19],[-13,32],[-18,35],[-23,5],[-3,32],[48,30],[33,13],[-13,22],[-53,33],[-31,6],[-28,14],[9,23],[35,10],[49,34],[-15,39],[2,51],[-20,27],[-116,53],[-169,87],[-157,39],[-350,-31],[-124,20],[-81,23],[-88,30],[103,32],[108,22],[32,20],[41,40],[48,29],[39,8],[128,-15],[289,-108],[61,-12],[198,-49],[55,-3],[68,11],[-55,48],[-61,34],[-145,96],[16,46],[94,76],[245,6],[107,27],[139,58],[179,96],[154,12],[192,30],[65,-22],[164,-93],[103,-32],[35,-3],[37,3],[-97,116],[63,14],[80,13],[66,29],[49,24],[168,111],[150,31],[426,48],[146,-44],[123,-5],[27,13],[25,59],[65,115],[55,41],[185,43],[145,-2],[104,-47],[97,-31],[89,-14],[90,1],[134,27],[178,9],[83,14],[96,-26],[236,-9],[183,-37],[113,0],[153,36],[83,5],[299,58],[234,12],[177,-26],[286,16],[290,-12],[117,-21],[652,13],[518,55],[71,19],[111,60],[61,55],[41,17],[87,6],[149,-12],[205,-41],[176,15],[337,-23],[32,19],[32,104],[55,165],[47,49],[77,-13],[233,-94],[5,-40],[-24,-29],[-38,-11],[-11,-80],[31,-23],[52,7],[33,-35],[-73,-60],[-52,-34],[-33,-15],[-23,-115],[-31,-38],[-4,-42],[50,0],[50,18],[44,4],[140,30],[255,35],[84,17],[48,6],[31,23],[-43,57],[-14,47],[26,39],[-7,67],[-24,68],[49,50],[46,-11],[79,8],[45,-25],[69,-22],[66,-11],[63,-45],[21,-98],[-19,-100],[-65,-73],[-121,-66],[-137,-105],[29,-50],[71,17],[309,-5],[199,8],[125,-12],[158,-27],[125,-39],[149,-8],[93,15],[87,-20],[339,84],[138,48],[79,-24],[128,20],[71,-18],[133,30],[84,3],[97,-12],[296,-6],[22,-55],[90,-83],[73,-32],[93,14],[67,25],[106,-9],[153,35],[153,-11],[64,6],[29,23],[25,51],[-47,28],[-134,36],[-123,74],[-55,16],[-88,-9],[-41,13],[-44,24],[57,29],[70,93],[-29,84],[-33,18],[-81,-3],[-98,-30],[-39,21],[-64,11],[-25,78],[-68,146],[-36,42],[-108,38],[-93,19],[-90,24],[-27,58],[17,79],[108,17],[104,-8],[58,-15],[67,-6],[77,-16],[50,-23],[40,-13],[75,0],[260,21],[35,15],[31,28],[55,7],[51,-4],[74,17],[-85,23],[-91,44],[-137,53],[-115,29],[-209,20],[-107,-7],[-67,11],[-239,-6],[-65,21],[-46,58],[-65,138],[-18,72],[44,27],[29,30],[71,3],[103,-12],[34,-14],[25,-43],[-25,-44],[-33,-23],[20,-21],[105,-6],[52,-13],[45,-5],[97,20],[142,8],[71,-20],[85,-15],[125,24],[445,-13],[54,-6],[54,-40],[46,-24],[49,10],[145,-46],[77,-36],[79,-18],[67,-5],[75,9],[98,30],[81,12],[58,-11],[123,-6],[94,-36],[73,15],[77,41],[244,29],[163,-8],[298,-74],[69,-7],[136,44],[44,72],[-6,81],[39,19],[33,-9],[60,56],[82,-5],[51,-10],[31,36],[28,77],[97,6],[70,-12],[92,-49],[0,-41],[-38,-43],[-63,-107],[39,-63],[59,6],[75,-13],[91,27],[58,1],[101,-93],[68,-5],[53,5],[172,84],[50,9],[61,-38],[89,-89],[78,-51],[114,-32],[99,-9],[116,-42],[64,-35],[146,0],[62,-15],[176,-72],[160,36],[83,33],[40,61],[-20,91],[-7,92],[24,38],[42,7],[191,-103],[-12,62],[-16,47],[-49,82],[7,61],[41,19],[80,-32],[96,-16],[79,-36],[155,-128],[50,-112],[105,-28],[73,5],[83,18],[111,16],[86,-5],[79,21],[24,-61],[-74,-88],[-29,-57],[24,-15],[45,13],[37,18],[129,-9],[104,40],[89,14],[84,42],[69,-4],[53,-7],[72,-33],[69,18],[41,-7],[56,-2],[297,145],[67,-3],[85,9],[107,34],[83,15],[68,-1],[121,53],[193,-7],[98,28],[191,32],[128,37],[228,98],[92,58],[100,129],[63,129],[70,171],[-34,111],[-37,49],[-31,54],[-73,111],[-20,139],[7,131],[-26,123],[-26,91],[-54,152],[-66,99],[-77,133],[0,121],[-19,95],[-46,68],[-20,54],[36,11],[33,17],[89,21],[213,-37],[19,54],[54,40],[38,50],[-13,77],[-47,31],[-56,65],[26,52],[45,0],[22,57],[-17,56],[21,70],[41,90],[28,33],[-51,54],[-48,70],[12,54],[24,57],[29,80],[40,57],[26,20],[-7,19],[-61,20],[-56,4],[-101,-36],[-16,7],[-5,19],[-6,39],[10,95],[16,90],[14,13],[40,11],[38,69],[35,4],[22,-23],[7,-91],[12,-21],[-4,-44],[18,-15],[22,28],[41,14],[16,-31],[15,-15],[7,26],[-5,74],[-7,30],[-5,48],[9,23],[10,37],[-17,78],[6,29],[37,47],[18,9],[35,0],[63,-31],[30,-2],[22,14],[14,30],[11,98],[-27,35],[0,31],[16,20],[28,68],[42,4],[41,-6],[40,13],[-14,28],[-12,43],[45,21],[29,6],[77,-27],[30,-15],[28,35],[-9,34],[-30,19],[-5,30],[7,39],[48,-20],[11,8],[13,34],[-8,17],[-6,22],[63,5],[9,9],[13,27],[19,9],[56,-1],[12,14],[6,30],[-31,7],[-39,29],[-6,80],[9,57],[35,50],[42,34],[78,-30],[60,7],[24,-30],[33,-8],[8,34],[-15,30],[-10,49],[96,59],[31,-10],[38,14],[-14,45],[21,57],[27,8],[19,-50],[26,-10],[29,12],[71,58],[35,9],[35,3],[36,34],[9,40],[20,28],[62,38],[25,27],[55,95],[-10,24],[16,20],[163,86],[80,8],[133,52],[81,61],[51,25],[45,68],[55,11],[128,47],[96,77],[133,53],[62,-5],[25,-16],[16,-63],[26,-77],[40,-38],[-15,-34],[-38,4],[-41,-8],[-9,38],[15,28],[-15,25],[-37,-6],[-49,-13],[-33,-19],[-43,-41],[-34,-23],[-113,-61],[-74,-88],[-53,-93],[-32,-63],[-47,-5],[-11,-23],[19,-18],[15,-8],[35,-7],[-6,-27],[-24,-7],[3,-22],[25,-32],[5,-46],[-29,-7],[-44,49],[-50,5],[-39,23],[-25,33],[-24,-7],[-18,-47],[11,-52],[-21,-31],[-24,14],[-9,62],[-23,11],[-32,1],[-77,-67],[-28,-2],[-14,-34],[-45,-38],[-29,-31],[-71,-102],[-40,-43],[-76,-24],[-30,3],[-18,10],[-27,7],[-28,1],[-9,-27],[44,-88],[-24,-30],[-53,2],[-26,25],[-21,-24],[-17,-23],[-17,-34],[26,-72],[41,-32],[30,-6],[11,-27],[-65,-11],[-44,-63],[-20,-44],[-23,-38],[3,-44],[34,-66],[46,-47],[46,-4],[60,15],[14,13],[59,7],[26,46],[19,3],[17,-8],[27,-2],[15,30],[20,11],[28,-8],[54,1],[15,-27],[-17,-30],[-33,-42],[-31,23],[-27,-4],[-15,-22],[29,-47],[-11,-42],[-24,-42],[-29,27],[-4,45],[-40,27],[-39,12],[-26,-47],[-41,-13],[-6,-54],[-17,-50],[-24,15],[-9,62],[-67,50],[-35,7],[-70,-13],[-24,1],[-28,-11],[-20,-42],[29,-31],[10,-42],[-1,-31],[-6,-12],[-5,-26],[32,-37],[1,-50],[-25,1],[-21,15],[-81,130],[-51,58],[-22,51],[-53,12],[-38,1],[-46,-21],[18,-24],[9,-36],[-28,-15],[-35,-56],[-23,-48],[-14,-10],[-18,-28],[75,-61],[11,-24],[4,-41],[-24,-22],[-56,-9],[-99,43],[-43,1],[-15,30],[-22,-4],[-13,-51],[-16,-45],[-24,-30],[7,-46],[19,-11],[-15,-19],[-31,-15],[-21,-18],[46,-17],[9,-15],[2,-22],[-72,-16],[-47,-4],[-28,18],[-26,-9],[-17,-29],[-5,-39],[5,-48],[9,-34],[7,-13],[8,-29],[-43,-74],[-5,-16],[-3,-34],[21,-31],[16,-46],[-23,-23],[-25,-47],[26,-9],[44,-2],[48,6],[72,41],[20,7],[9,-16],[6,-25],[-18,-24],[-130,-68],[-24,-29],[33,-16],[67,-3],[26,-22],[-16,-24],[-24,-23],[-28,-54],[23,-20],[72,-32],[131,-42],[97,-14],[-22,49],[-3,60],[68,49],[35,16],[162,29],[44,-1],[34,-13],[-13,-25],[-37,9],[-65,-16],[-100,-54],[-18,-23],[7,-42],[85,-34],[27,-27],[-37,-81],[6,-52],[43,-57],[57,-65],[28,-43],[43,-25],[70,-61],[38,-61],[12,-140],[57,-116],[67,-53],[8,-46],[-22,-46],[-57,27],[-32,-27],[-12,-49],[40,-34],[64,-42],[138,4],[4,-46],[-32,-27],[-25,-34],[-31,-19],[-52,-12],[-13,-41],[22,-58],[72,26],[53,3],[55,-10],[17,-77],[65,-95],[16,-45],[-12,-43],[-40,-13],[-25,-34],[-36,-29],[-41,-16],[-76,-79],[-33,-8],[-14,-16],[65,-8],[45,-2],[97,64],[37,-14],[24,-42],[12,-49],[-24,-42],[-169,-25],[-82,-23],[-88,-66],[101,-31],[74,11],[37,-12],[51,-23],[56,12],[44,24],[33,-1],[31,-12],[4,-41],[4,-72],[7,-54],[-18,-36],[-88,-26],[-64,1],[-2,-76],[96,-57],[60,30],[53,-15],[0,-91],[41,-101],[36,-6],[30,46],[38,0],[15,-54],[-17,-91],[-29,-50],[-78,21],[-44,16],[-35,-34],[-58,-29],[-51,-4],[-45,45],[-52,34],[-83,17],[-78,8],[26,-39],[35,-23],[14,-69],[28,-72],[65,19],[90,-41],[56,-43],[24,-57],[-31,-91],[-51,-34],[-32,-16],[-56,35],[-39,0],[-41,-16],[-14,-42],[-27,-20],[144,-3],[45,-11],[33,-38],[-52,-50],[-95,8],[-41,-19],[-35,-36],[142,-22],[59,12],[93,38],[22,-38],[-37,-38],[-48,-61],[-100,-19],[-75,-1],[-98,22],[-26,13],[-41,7],[3,-37],[26,-26],[66,-94],[11,-36],[-21,-50],[-58,-37],[-65,-14],[-54,32],[-39,91],[-50,27],[-51,8],[-30,-4],[3,-46],[12,-49],[-20,-35],[-44,18],[-57,-16],[-53,-27],[-48,-30],[98,-14],[65,-3],[46,-46],[-17,-23],[-88,-10],[-86,-20],[-117,-50],[86,-21],[81,1],[57,-5],[47,-9],[13,-27],[-29,-30],[-192,-74],[-201,-91],[-74,-29],[-77,-16],[-179,-78],[-113,-36],[-318,-55],[-497,-139],[-169,-99],[-50,-76],[-32,-11],[-95,-26],[-95,-12],[-251,-8],[-257,37],[-208,8],[-113,-12],[-386,66],[-49,-3],[-60,-12],[-48,0],[-36,9],[-78,4],[-263,-26],[-27,-41],[33,-76],[96,-92],[160,-162],[86,-35],[53,-37],[100,-43],[224,-2],[306,-34],[174,-31],[-6,-60],[-105,-115],[-65,-44],[-155,-80],[-213,-40],[-163,12],[-289,65],[-362,60],[-538,57],[-118,26],[-139,26],[-79,-27],[-60,-25],[-133,-2],[39,-23],[537,-155],[458,-113],[54,-29],[65,-20],[-6,-72],[-26,-57],[-90,-50],[-234,-3],[-293,-40],[-146,-1],[-145,39],[-309,113],[-189,84],[-132,96],[-91,76],[-102,75],[7,-47],[18,-47],[50,-58],[73,-63],[5,-25],[-35,-4],[-53,30],[-45,-28],[-16,-33],[19,-44],[28,-42],[93,-94],[80,-25],[106,-57],[258,-106],[44,-36],[78,-78],[16,-59],[76,-58],[52,-9],[47,2],[16,50],[-3,61],[20,15],[74,15],[193,-21],[821,-12],[78,-35],[31,-45],[21,-93],[-87,-112],[-59,-48],[-97,-29],[-88,-23],[-133,-9],[-275,8],[-269,0],[209,-54],[203,-44],[282,8],[112,12],[97,21],[41,-37],[77,-78],[45,-25],[31,-26],[43,-85],[17,-50],[42,-58],[30,-49],[44,-33],[75,-15],[82,28],[159,13],[154,-45],[99,-14],[132,37],[105,52],[221,47],[41,20],[60,16],[91,-4],[36,-12],[46,-51],[43,-70],[63,-35],[67,-25],[38,-3],[126,-22],[164,21],[73,-21],[12,-40],[39,-32],[49,-11],[665,-180],[229,-35],[353,-18],[274,-2],[38,-11],[53,-35],[-105,-24],[-112,-3],[-169,9],[-60,-5],[-129,10],[-67,-7],[-61,11],[-91,-25],[-166,-19],[37,-27],[62,-6],[126,-10],[172,5],[15,-43],[-158,-10],[-336,-9],[-35,-7],[-26,-22],[50,-11],[31,-12],[16,-31],[-36,-79],[56,-55],[39,-9],[41,8],[71,-22],[69,-30],[146,-2],[173,40],[85,-1],[228,25],[207,-4],[289,48],[48,-1],[44,-6],[-80,-44],[-355,-110],[-127,-21],[-51,-14],[29,-54],[46,-56],[94,-60],[59,-89],[57,-19],[110,41],[27,-31],[5,-61],[-29,-49],[-37,-28],[-26,-27],[-17,-36],[46,-31],[123,-19],[163,-7],[151,-1],[93,-9],[341,194],[137,94],[67,39],[56,29],[288,119],[67,36],[76,53],[141,8],[193,86],[171,66],[68,13],[51,5],[60,14],[150,-5],[107,11],[190,42],[145,27],[154,23],[174,4],[463,44],[132,-19],[146,-46],[95,1],[125,14],[86,18],[39,-53],[20,-69],[-42,-64],[-70,-40],[-19,-66],[95,-33],[108,10],[206,32],[164,42],[45,28],[64,-8],[109,35],[136,146],[171,147],[144,94],[93,110],[77,63],[86,48],[58,24],[132,5],[189,76],[275,87],[211,-42],[223,-63],[110,51],[87,9],[74,23],[74,17],[53,45],[71,38],[54,55],[271,27],[284,36],[38,13],[37,-7],[98,10],[125,30],[172,10],[90,-3],[82,81],[164,17],[175,32],[73,24],[57,6],[1413,63],[61,31],[124,25],[47,61],[-190,25],[-58,26],[-65,7],[-38,-9],[-164,7],[-1303,94],[-27,8],[-45,57],[9,105],[-39,81],[-91,22],[-94,-2],[-119,-10],[-314,-44],[-125,-4],[-335,68],[-221,77],[-145,25],[-104,52],[-97,40],[-7,91],[23,85],[187,246],[117,118],[78,9],[71,53],[73,119],[59,56],[135,66],[59,17],[212,81],[58,2],[95,-13],[108,73],[329,156],[75,59],[91,35],[266,132],[238,64],[118,19],[144,39],[160,59],[139,57],[497,109],[298,29],[203,32],[144,-19],[143,6],[123,29],[57,23],[83,59],[276,-28],[178,40],[74,4],[78,18],[-31,21],[-28,3],[-28,28],[-37,58],[37,73],[28,36],[82,45],[43,64],[40,94],[135,185],[38,26],[86,8],[73,-5],[83,2],[210,-48],[39,19],[67,54],[56,68],[120,100],[23,30],[-10,49],[-180,-21],[-136,-33],[-131,18],[-17,28],[28,21],[49,8],[19,34],[-45,28],[-81,16],[-36,21],[3,51],[20,75],[44,21],[36,31],[96,105],[57,32],[164,29],[190,-44],[44,12],[46,59],[-47,90],[-36,34],[0,30],[100,-14],[93,-20],[109,4],[129,90],[181,75],[88,31],[78,18],[42,76],[62,144],[46,75],[-1,45],[-14,38],[-47,-11],[-43,-5],[-101,38],[-125,61],[-38,68],[-18,61],[39,33],[38,20],[41,5],[73,-25],[93,-62],[46,-24],[53,-46],[40,4],[47,64],[38,85],[32,26],[49,28],[54,41],[-24,40],[-58,21],[-8,24],[25,27],[47,6],[59,-59],[80,-39],[55,-13],[47,-32],[74,-108],[89,-179],[41,-2],[78,16],[84,7],[56,51],[12,128],[22,58],[-8,59],[-38,60],[-33,44],[6,33],[28,24],[37,8],[64,24],[99,-28],[54,-5],[81,16],[84,35],[86,25],[67,-19],[29,-64],[-33,-65],[-54,-48],[-49,-59],[-13,-64],[2,-35],[47,-9],[416,8],[55,-6],[72,0],[78,-21],[132,8],[118,23],[56,0],[97,-21],[69,-44],[143,13],[40,14],[39,59],[41,11],[48,-48],[15,-110],[22,-52],[61,-47],[60,40],[39,48],[94,93],[107,71],[82,42],[200,70],[99,44],[194,60],[250,32],[446,108],[147,12],[240,28],[123,30],[125,23],[77,80],[175,-61],[60,-7],[82,48],[90,119],[131,-49],[75,-77],[93,-60],[208,-104],[66,-24],[138,-21],[37,17],[65,69],[67,100],[42,42],[61,35],[69,55],[-18,30],[-39,10],[-36,16],[9,29],[122,7],[64,-101],[66,-33],[80,-33],[186,26],[159,2],[138,-20],[68,3],[61,76],[99,28],[56,-34],[35,-112],[127,-31],[266,-51],[30,13],[33,59],[23,72],[54,12],[69,39],[37,-6],[52,-47],[-18,-114],[-29,-105],[35,-85],[31,-47],[40,-8],[67,-2],[82,6],[51,-4],[261,42],[32,94],[42,107],[103,136],[40,-10],[31,-14],[70,-67],[42,-34],[9,-49],[-46,-47],[13,-31],[46,-25],[148,-41],[48,8],[71,43],[72,85],[39,98],[61,-5],[59,-20],[41,-51],[0,-97],[57,-66],[46,-42],[120,-45],[128,-11],[90,-27],[146,10],[71,30],[46,8],[80,24],[84,57],[52,23],[192,52],[145,57],[154,102],[150,61],[230,31],[64,13],[88,-1],[217,73],[82,42],[46,15],[52,52],[28,102],[22,63],[-4,61],[-20,80],[-46,71],[-47,104],[21,119],[37,49],[96,54],[95,11],[108,-7],[94,-11],[8,-51],[-41,-55],[-52,-54],[-31,-23],[11,-46],[68,-7],[149,10],[43,-42],[106,-184],[26,-87],[37,-25],[58,12],[125,-1],[87,13],[71,1],[37,-9],[38,-42],[72,-49],[72,36],[52,17],[63,-4],[99,-57],[99,-133],[107,-67],[7,43],[-14,53],[44,47],[53,79],[77,103],[61,105],[15,145],[29,119],[49,57],[48,37],[75,38],[92,8],[88,86],[62,35],[130,47],[163,47],[114,131],[39,16],[58,21],[107,8],[173,42],[54,6],[91,33],[80,78],[58,22],[104,-3],[88,44],[74,2],[68,22],[10,49],[-32,33],[-1,43],[38,56],[30,21],[90,-4],[75,-48],[55,-2],[14,-27],[-48,-34],[-32,-61],[55,-53],[49,-36],[59,7],[71,32],[70,-23],[31,-49],[0,-76],[15,-41],[49,36],[27,76],[-8,97],[3,60],[117,97],[46,73],[-82,15],[-58,-10],[-32,27],[-37,73],[101,61],[116,-2],[67,-52],[144,-83],[80,2],[72,-13],[15,26],[-27,122],[3,68],[-60,38],[-17,87],[25,91],[71,51],[97,24],[208,140],[55,30],[137,29],[160,14],[199,50],[355,-34],[95,-21],[59,-28],[57,-45],[74,-74],[107,-94],[139,-30],[39,-29],[51,-80],[-55,-52],[-45,-5],[-87,31],[-60,32],[-42,-13],[41,-55],[45,-34],[7,-46],[-24,-66],[-164,-130],[98,-37],[59,30],[54,55],[55,25],[37,10],[130,2],[74,22],[56,-16],[55,-35],[81,-35],[116,-38],[143,-147],[111,15],[60,32],[171,10],[147,-65],[83,-24],[240,-20],[143,-42],[91,50],[61,20],[128,10],[65,-10],[178,-54],[315,-55],[217,-29],[191,-1],[91,-24],[166,-26],[63,-20],[159,16],[74,21],[70,47],[39,-11],[27,-59],[-15,-101],[29,-69],[23,-69],[33,-57],[21,-49],[-15,-41],[-46,-37],[-64,-79],[4,-69],[27,-44],[-32,-53],[24,-74],[4,-45],[-22,-36],[-50,-22],[-85,-3],[-44,-21],[-7,-55],[22,-41],[49,-22],[14,-44],[-7,-66],[-22,-56],[-45,-26],[-49,-6],[-91,12],[-66,37],[-42,-33],[-31,-34],[-95,-77],[-44,-52],[-41,-55],[108,-31],[79,-55],[172,6],[55,24],[73,26],[39,-5],[24,-56],[-14,-89],[-3,-69],[-87,-190],[-29,-32],[-41,-52],[-48,-41],[-39,-20],[-75,-60],[-46,-109],[-50,-90],[-73,-154],[-42,-165],[-18,-99],[-28,-103],[-62,-177],[-40,-30],[-69,-72],[20,-48],[54,-5],[66,-11],[89,-37],[118,76],[62,48],[13,96],[-13,97],[38,57],[87,78],[205,56],[42,6],[68,19],[60,70],[53,70],[93,44],[77,72],[12,51],[32,11],[96,50],[25,37],[30,28],[21,63],[8,118],[24,89],[47,118],[38,86],[37,54],[99,29],[43,33],[57,73],[39,44],[-5,90],[22,83],[61,50],[78,92],[98,13],[74,48],[79,-33],[95,-46],[161,14],[76,-21],[59,25],[52,71],[19,87],[61,50],[69,-1],[114,87],[118,77],[96,18],[77,60],[55,102],[59,79],[73,75],[20,133],[46,67],[85,59],[71,32],[298,100],[229,66],[231,82],[71,-1],[93,45],[153,2],[40,4],[53,93],[114,86],[71,28],[90,74],[73,7],[103,-13],[87,-20],[78,-1],[113,62],[176,10],[54,30],[38,26],[249,87],[93,-17],[132,15],[80,-4],[76,-11],[96,-3],[166,31],[70,20],[132,76],[146,18],[64,20],[82,17],[67,-29],[48,-27],[29,-6],[39,-5],[95,30],[79,-8],[101,-33],[67,-27],[35,0],[62,24],[76,60],[71,24],[67,-15],[46,-25],[81,-34],[126,5],[120,13],[101,28],[87,30],[80,-46],[92,-17],[149,81],[57,-18],[39,-21],[32,-10],[39,-68],[142,13],[126,57],[108,43],[105,28],[83,39],[122,148],[-2,46],[17,28],[26,12],[194,-1],[60,12],[79,39],[137,-30],[131,-47],[34,5],[53,1],[93,-29],[105,-57],[93,-15],[385,-142],[218,-35],[110,-47],[28,-16],[32,-48],[58,-5],[46,19],[61,-73],[148,-55],[154,-27],[100,43],[170,123],[52,55],[-10,122],[89,136],[151,67],[188,35],[116,30],[154,28],[74,-29],[38,-21],[57,-25],[68,-76],[106,-172],[79,-62],[69,-5],[60,-10],[63,-39],[90,-121],[-54,-108],[-46,-40],[-196,-46],[-86,-37],[-75,-23],[-21,-90],[31,-42],[81,21],[95,10],[74,18],[68,28],[59,40],[140,21],[91,34],[82,20],[57,35],[58,-5],[58,-34],[46,3],[124,-11],[58,25],[51,2],[52,-19],[54,-26],[54,-7],[70,16],[98,42],[125,46],[117,15],[28,-1],[24,-9],[-117,-53],[-187,-72],[-100,-69],[59,-29],[352,77],[160,58],[142,26],[35,19],[116,90],[42,24],[125,32],[163,34],[124,39],[84,40],[63,4],[49,-29],[63,-33],[62,8],[76,31],[53,72],[31,53],[57,18],[73,16],[59,-18],[96,-38],[67,-20],[58,-151],[136,-133],[49,-35],[119,13],[128,-52],[55,7],[52,15],[47,-10],[70,32],[73,167],[67,163],[66,72],[40,30],[50,14],[77,34],[104,10],[77,-14],[167,-12],[136,41],[154,-7],[76,48],[82,7],[111,-41],[32,-29],[61,-42],[15,-41],[16,-74],[30,-2],[103,73],[56,13],[106,117],[56,-30],[127,-50],[51,-15],[100,-85],[51,18],[42,40],[124,-4],[116,-35],[48,-29],[59,-50],[37,-12],[29,14],[240,-19],[104,-37],[79,-45],[278,-21],[107,-46],[64,22],[127,-7],[52,-39],[46,-43],[101,-37],[55,7],[78,30],[78,41],[78,0],[37,-35],[13,-88],[58,2],[64,40],[56,-10],[20,-61],[-30,-81],[-71,-114],[-29,-95],[-59,-86],[10,-41],[59,-20],[59,61],[132,42],[69,55],[119,20],[117,-19],[83,-73],[154,-123],[6,-44],[13,-46],[-5,-41],[-23,-47],[82,-55],[73,-9],[59,5],[247,-53],[118,21],[106,0],[126,8],[97,-2],[77,-9],[91,19],[74,26],[36,-16],[15,-137],[5,-81],[42,-30],[44,30],[32,41],[195,-19],[78,-2],[74,-22],[75,-51],[72,22],[43,31],[58,20],[17,51],[7,85],[-2,83],[34,15],[35,-15],[46,-39],[105,-125],[80,-81],[34,-38],[49,-31],[99,-75],[136,-31],[133,-60],[155,4],[121,-77],[82,60],[43,14],[63,-16],[76,-52],[60,-12],[205,-86],[110,-30],[41,-63],[54,-60],[0,-61],[24,-77],[123,-61],[48,-59],[59,-78],[107,-293],[56,-52],[81,5],[76,-76],[24,11],[3,30],[-69,198],[-5,107],[54,61],[127,17],[98,-114],[90,-69],[60,-12],[120,3],[113,73],[86,-26],[138,-9],[179,-43],[77,8],[137,-18],[167,-62],[95,-23],[20,-25],[44,-41],[22,-50],[24,-46],[58,-52],[58,-9],[115,-44],[241,-136],[87,-40],[51,-29],[25,35],[7,72],[44,15],[47,-107],[49,-81],[22,-71],[-51,-58],[-74,12],[-52,0],[-53,-96],[-22,-166],[49,3],[36,15],[8,-61],[-22,-51],[-44,-20],[-76,39],[-93,27],[-102,10],[-99,49],[-39,3],[-41,-3],[53,-51],[55,-46],[125,-40],[156,-62],[4,-38],[-37,-47],[-46,-100],[-142,-86],[-83,62],[-98,15],[-49,-37],[-98,4],[-194,-14],[-76,79],[-119,43],[4,-36],[102,-130],[109,-30],[108,-35],[26,-33],[-49,-31],[-66,5],[-83,-61],[-158,10],[-75,-3],[-44,-25],[-39,-9],[31,-22],[38,-60],[-54,-51],[-50,-25],[-51,12],[-56,-20],[-27,56],[-2,122],[-32,109],[-34,4],[-54,-13],[-17,-93],[38,-161],[26,-50],[-21,-45],[-36,-14],[73,-136],[62,-93],[38,-31],[3,-46],[-30,-20],[-83,18],[-41,-9],[-46,6],[-77,20],[-66,6],[-66,-26],[-56,2],[-50,85],[-44,20],[-36,-26],[-28,-101],[-57,-31],[-58,-46],[-41,-50],[-20,-198],[-34,-41],[-51,2],[-39,-16],[-49,16],[-64,10],[-214,-68],[34,-35],[54,6],[188,-11],[80,-36],[13,-89],[32,-38],[63,-41],[48,-20],[18,-30],[-20,-61],[-27,-56],[-59,-61],[17,-31],[64,-10],[27,-137],[-42,-61],[20,-51],[5,-51],[-43,-47],[-33,-24],[-11,-50],[64,-29],[47,-10],[66,-5],[45,-54],[58,-82],[42,-68],[3,-113],[41,-67],[77,-43],[-2,-45],[54,-14],[53,-4],[19,-41],[-17,-50],[-89,-61],[-37,-44],[89,-7],[92,-46],[117,52],[62,56],[40,50],[30,-13],[3,-52],[36,-87],[151,-84],[84,-27],[81,-14],[71,2],[20,-50],[-22,-46],[-56,3],[-90,-8],[-66,38],[-47,33],[-412,-19],[-93,-15],[-111,-50],[-110,-24],[-169,-50],[-71,-30],[-185,117],[-60,86],[-25,5],[-44,-20],[-2,-61],[86,-133],[39,-35],[0,-35],[-25,-18],[-35,0],[-53,26],[-99,21],[-88,-41],[-108,-87],[23,-58],[29,-33],[-7,-39],[-121,-74],[-40,-3],[-25,-15],[30,-27],[66,-1],[7,-33],[-23,-26],[-109,-30],[7,-40],[59,-19],[77,7],[48,-29],[0,-46],[-49,-26],[-57,-19],[-392,-118],[-57,-32],[3,-43],[137,-11],[410,10],[27,-14],[-10,-34],[-23,-43],[23,-31],[61,-21],[2,-33],[-30,-13],[-61,-15],[-67,-4],[4,-35],[92,-31],[31,-4],[3,-118],[-3,-50],[-49,-24],[-18,-17],[-2,-40],[122,-29],[187,-127],[41,0],[74,-24],[119,-65],[42,-39],[68,-19],[9,-32],[42,-27],[166,-88],[22,-38],[-348,-73],[-350,-54],[32,-48],[378,5],[102,-30],[45,9],[26,32],[204,38],[207,25],[65,-18],[278,-141],[129,-53],[82,-20],[60,-5],[44,-21],[43,-45],[-10,-42],[18,-19],[29,-8],[55,-28],[63,10],[73,32],[51,-7],[92,-45],[-35,-35],[-20,-17],[-24,-32],[-23,-11],[-74,-7],[-41,0],[-42,6],[-4,-23],[51,-25],[74,-27],[480,-21],[137,-46],[135,25],[61,-8],[51,-15],[19,-46],[69,-15],[106,-36],[148,-18],[118,1],[145,-49],[73,-2],[45,-28],[330,-17],[49,-22],[38,-36],[78,-16],[85,-3],[464,-59],[174,-31],[40,2],[40,-6],[125,-26],[127,-14],[61,-36],[-99894,-48]],[[37438,6445],[36,-2],[146,6],[146,-2],[89,-7],[26,-16],[23,-32],[26,-50],[24,-55],[27,-45],[16,-79],[25,-29],[43,-73],[6,-59],[-13,-128],[-21,-52],[-56,-50],[-64,5],[-29,-2],[-28,-10],[-11,-7],[-4,-10],[74,-43],[9,-16],[1,-19],[-10,-13],[-10,-7],[-1573,-260],[-61,-14],[-61,-27],[-20,-23],[-20,-18],[-1219,-49],[-11,3],[-11,10],[-31,50],[-6,79],[7,31],[61,30],[23,17],[103,117],[53,55],[25,46],[13,-3],[47,-27],[35,-8],[68,11],[67,33],[29,18],[29,-6],[5,-28],[12,-9],[162,88],[147,98],[144,111],[73,66],[18,19],[12,28],[-10,28],[-13,25],[-12,10],[-12,4],[-75,18],[23,29],[22,35],[14,39],[5,47],[-3,24],[3,18],[34,15],[23,24],[16,28],[-26,9],[-12,21],[23,49],[21,52],[21,28],[56,55],[163,138],[59,74],[17,27],[386,119],[63,12],[121,17],[56,3],[158,-12],[74,-12],[128,-32],[189,-61],[71,-27],[71,-34],[68,-43],[67,-52],[13,-16],[6,-29],[2,-28],[-3,-27],[-18,-56],[-26,-39],[-311,-37],[-41,-15],[-22,-30],[-16,-30],[36,-11]],[[33407,5562],[-11,-124],[1,-56],[-16,-45],[-28,-23],[-55,-39],[-40,-23],[-87,-38],[-400,34],[-180,31],[-75,40],[-12,18],[-23,61],[-21,19],[-159,-13],[-97,-19],[-17,-10],[-26,-38],[-14,-8],[-259,81],[-273,95],[-113,49],[-39,22],[-11,15],[25,19],[26,12],[29,9],[30,1],[22,-7],[22,-14],[14,-51],[14,-8],[38,-14],[961,7],[80,2],[166,15],[89,21],[33,29],[-80,7],[-32,22],[-27,41],[-6,38],[9,28],[106,14],[16,10],[-28,16],[1,37],[63,14],[25,31],[124,39],[196,-21],[47,-56],[-13,-36],[-9,-37],[-1,-57],[80,-8],[25,-21],[24,-26],[-29,-1],[-28,-6],[-23,-27],[-20,-35],[-14,-16]],[[30541,11987],[-8,-70],[46,25],[17,-5],[40,-26],[81,-151],[18,-48],[33,-139],[40,-105],[100,-183],[49,-100],[26,-58],[3,-78],[31,-22],[7,-32],[10,-107],[7,-124],[7,-238],[-4,-55],[-43,-89],[-18,-63],[-23,-42],[-27,-30],[-141,-125],[-17,-62],[-237,-53],[-134,-22],[-52,24],[-53,6],[-66,-8],[-191,-7],[-144,-18],[-19,7],[-13,23],[-14,16],[-38,-3],[-31,9],[-30,19],[-33,36],[-14,21],[-8,23],[64,60],[33,13],[33,4],[67,-13],[67,-20],[147,-16],[204,-4],[56,6],[67,19],[62,55],[-30,21],[-31,13],[-30,3],[-30,-4],[-84,-34],[-65,-20],[-65,-12],[-69,20],[-64,56],[-2,18],[220,43],[20,7],[40,27],[13,24],[6,23],[-148,40],[-31,-1],[-30,-7],[-67,17],[-64,47],[-59,57],[-22,5],[-21,-17],[-143,-150],[-12,-1],[-54,11],[-68,30],[-62,10],[-40,-8],[-15,-12],[39,-34],[33,-30],[10,-24],[-101,-75],[-27,-10],[-43,7],[-16,9],[-31,40],[-30,10],[-65,-8],[-34,3],[-34,18],[-32,26],[-30,14],[-36,29],[-26,20],[-8,29],[3,28],[11,16],[2,15],[-8,27],[5,19],[12,18],[54,34],[65,7],[63,-43],[42,-13],[19,-1],[7,2],[5,12],[-1,22],[-12,42],[-1,29],[14,24],[19,9],[20,6],[13,3],[41,-15],[29,-16],[59,-46],[49,-32],[19,-3],[14,11],[13,18],[-59,46],[-6,30],[3,26],[36,15],[22,2],[104,-27],[56,-9],[55,-3],[114,31],[-61,35],[-132,30],[-25,21],[-18,34],[97,31],[99,-1],[177,-40],[59,19],[55,58],[32,15],[125,-5],[101,27],[16,-3],[15,-8],[97,-97],[13,5],[10,19],[3,34],[1,34],[-3,35],[-12,22],[-16,-3],[-17,-10],[-28,9],[-28,18],[-29,8],[-100,11],[-71,18],[-37,14],[-34,28],[-5,31],[36,71],[138,76],[65,25],[66,6],[32,-5],[76,-32],[12,2],[11,8],[-73,53],[-65,41],[-33,31],[-26,12],[-109,12],[-57,-31],[-27,-5],[-27,3],[-160,74],[-9,8],[-23,28],[-12,21],[-7,35],[3,35],[5,23],[24,91],[13,72],[-7,59],[-25,32],[-36,22],[-33,35],[-9,24],[-6,28],[-1,36],[9,32],[14,34],[18,17],[34,17],[133,39],[270,49],[30,-25],[43,-52],[14,-21],[15,-104],[0,-29]],[[22752,10418],[-23,-61],[2,-60],[68,4],[30,114],[64,21],[31,-68],[-30,-55],[15,-31],[18,-22],[32,-1],[29,33],[13,24],[11,26],[19,58],[61,54],[135,8],[71,-34],[-48,-86],[-115,-50],[-74,-52],[25,-14],[25,-7],[23,2],[65,27],[160,50],[61,37],[22,-6],[0,-62],[21,-42],[-12,-93],[-69,-17],[-71,-8],[18,-41],[-4,-17],[-6,-13],[-178,17],[-31,-6],[-31,-12],[-31,3],[-62,30],[-32,0],[-64,-15],[-65,-6],[-93,1],[-68,5],[-64,33],[-67,9],[-75,1],[-79,38],[-66,15],[-95,39],[-25,15],[-25,8],[-45,-3],[-346,59],[-51,-1],[-33,-8],[-33,4],[-67,28],[-14,31],[7,29],[15,13],[30,13],[480,69],[50,19],[37,-2],[28,-59],[42,-61],[14,1],[14,6],[47,51],[86,-16],[48,23],[33,45],[97,52],[61,-10],[57,-22],[27,-54]],[[16512,9357],[49,-58],[19,-38],[11,-39],[-199,-96],[-9,-10],[-9,-50],[5,-11],[8,-8],[1,-19],[-17,-6],[-340,-38],[-159,35],[-22,23],[-5,36],[19,7],[35,5],[-9,16],[-22,29],[-2,24],[48,61],[23,16],[-90,57],[-11,13],[-12,4],[-44,-7],[-43,3],[15,23],[12,38],[38,32],[28,5],[28,-3],[132,-2],[130,-17],[131,-12],[215,-11],[46,-2]],[[14908,9627],[74,-16],[25,-25],[33,-18],[33,-10],[31,-27],[18,-48],[16,-15],[49,-32],[17,-28],[-3,-14],[-93,-11],[-31,4],[-29,-9],[-9,-17],[1,-18],[16,-13],[34,-12],[34,2],[63,14],[28,-3],[32,-15],[32,-2],[84,46],[21,8],[21,-2],[115,-54],[24,-27],[-17,-15],[-14,-22],[6,-15],[55,-22],[23,-28],[14,-11],[-3,-24],[-8,-29],[1,-33],[-28,-18],[-13,0],[-60,18],[-187,10],[-60,15],[-92,65],[-36,4],[-37,16],[-57,46],[-99,37],[-63,45],[2,38],[-9,27],[-12,11],[-12,6],[-36,10],[-35,-3],[-18,-11],[-29,-28],[-32,-5],[-25,6],[-5,6],[-1,74],[-27,10],[-23,30],[-4,40],[10,37],[35,45],[40,5],[40,-7],[41,10],[65,6],[74,-4]],[[5819,5871],[-347,-22],[-141,19],[-294,63],[-403,114],[-110,36],[-72,31],[-70,39],[-16,43],[10,62],[13,51],[21,32],[86,38],[43,42],[87,44],[25,33],[37,2],[70,-4],[69,-9],[65,-11],[63,-19],[144,-62],[100,-61],[144,-72],[143,-81],[80,-30],[77,-45],[74,-61],[14,-21],[31,-27],[19,-26],[19,-22],[19,-11],[15,-24],[-3,-26],[-12,-15]],[[96411,7303],[105,-42],[275,4],[229,-39],[21,-40],[-65,-21],[-101,-53],[-65,-17],[-55,0],[-112,22],[-146,-3],[-31,-31],[-71,-31],[-82,-54],[-22,44],[-33,42],[-82,89],[-6,13],[45,17],[22,29],[47,39],[-5,24],[-39,26],[-15,22],[26,36],[58,16],[75,-15],[34,-48],[-6,-21],[-1,-8]],[[41355,5876],[38,-12],[40,28],[-6,26],[23,45],[33,-49],[219,-52],[71,-50],[-29,-12],[-22,2],[-64,-5],[-109,-43],[-117,41],[-209,29],[-63,22],[-49,68],[88,56],[21,-6],[135,-88]],[[40573,6151],[-32,-21],[-675,36],[-33,7],[9,43],[92,7],[52,8],[72,19],[53,33],[18,1],[317,-77],[111,-32],[13,-15],[3,-9]],[[30462,5944],[-60,-2],[-120,5],[-120,20],[-31,10],[-44,32],[-14,17],[-12,21],[-1,33],[32,114],[59,68],[56,39],[174,92],[23,10],[159,43],[62,23],[97,48],[534,186],[122,27],[55,-20],[31,-19],[-16,-22],[-72,-53],[-34,-32],[-87,-65],[-188,-109],[-133,-82],[-171,-113],[-40,-40],[-81,-95],[15,-42],[-27,-58],[-107,-28],[-61,-8]],[[33931,14945],[11,-8],[9,4],[9,8],[9,19],[33,27],[31,3],[-10,-28],[74,-50],[-6,-39],[14,-32],[-30,-10],[-24,-33],[21,-13],[12,-28],[-25,-7],[-54,17],[-28,-4],[3,26],[-9,10],[-33,-5],[-14,-57],[-10,-5],[-12,9],[9,37],[-14,6],[-14,-1],[-42,-27],[-12,-1],[-25,32],[79,42],[-33,21],[-7,26],[5,36],[-29,-5],[-28,-14],[-13,-2],[-11,12],[4,26],[23,43],[18,45],[36,22],[21,17],[28,8],[12,16],[26,1],[15,-37],[-1,-22],[-12,-24],[-6,-61]],[[34575,15452],[17,-15],[70,1],[16,-4],[14,-25],[9,-43],[-23,-17],[-121,10],[-44,22],[-22,-1],[-49,-24],[-21,-24],[-82,-32],[-23,12],[-11,34],[-1,14],[8,9],[4,9],[-1,11],[22,29],[95,44],[126,16],[17,-16],[0,-10]],[[33895,16179],[35,-16],[31,11],[17,-12],[12,-33],[-1,-12],[-47,5],[-43,-38],[-51,8],[-7,-31],[11,-17],[-14,-14],[-44,30],[-35,-11],[-11,-51],[-16,-10],[-8,-2],[-14,13],[-29,4],[-2,7],[-18,20],[-51,-22],[13,26],[68,69],[8,21],[79,40],[37,-9],[80,24]],[[32450,14706],[-27,-60],[40,1],[28,21],[29,9],[25,-30],[-52,-23],[-50,-40],[-20,-21],[-22,-9],[-28,3],[-28,-4],[-25,-39],[-26,-18],[-8,15],[-10,9],[-56,14],[-26,20],[-23,14],[-25,7],[13,35],[15,31],[85,42],[-8,13],[-6,17],[67,21],[2,21],[-4,24],[21,16],[20,24],[14,7],[42,-3],[29,-33],[-12,-33],[26,-51]],[[32687,14732],[-20,-23],[-16,-4],[-15,10],[-20,-35],[-40,11],[-16,9],[10,5],[7,15],[22,31],[38,79],[7,25],[-31,41],[-5,13],[7,24],[11,17],[26,19],[34,0],[17,-16],[0,-29],[58,-27],[-10,-56],[-22,-35],[-3,-42],[-33,-19],[-6,-13]],[[31114,12975],[-29,-37],[-23,-11],[-21,10],[-21,5],[-15,-14],[-16,-58],[-19,-29],[-20,-15],[-12,6],[-12,0],[-19,-13],[-24,-5],[-23,6],[-22,37],[-32,44],[-6,14],[-5,36],[1,37],[14,28],[73,98],[24,44],[21,50],[23,45],[44,80],[22,29],[111,84],[30,19],[33,-5],[8,-44],[-16,-22],[-53,-56],[-11,-79],[1,-29],[5,-8],[20,-10],[14,-11],[18,-24],[21,-14],[-45,-41],[-30,-21],[-21,-26],[-40,-25],[-17,-16],[26,-6],[38,-21],[10,-18],[-5,-14]],[[29526,11154],[43,-51],[-40,-40],[-142,-75],[-83,-29],[-84,-22],[-380,-69],[-27,0],[-26,9],[-15,15],[-25,57],[3,29],[34,27],[35,18],[60,16],[229,36],[23,12],[19,27],[6,31],[8,24],[15,11],[16,0],[30,-23],[55,-93],[18,13],[16,25],[3,80],[16,6],[49,-22],[30,-23],[1,45],[21,14],[22,-5],[22,-10],[48,-33]],[[29170,11677],[49,-14],[72,-63],[24,-32],[7,-19],[-6,-13],[-33,-15],[-25,-77],[-50,-27],[-116,17],[-128,31],[-10,6],[-11,27],[-2,31],[14,39],[22,20],[95,24],[7,14],[14,39],[24,8],[11,-3],[42,7]],[[29346,9735],[-40,-75],[-7,-8],[-40,-19],[14,-20],[11,-10],[7,-24],[23,-33],[28,-21],[-23,-59],[-34,-26],[-369,160],[-28,26],[-14,19],[-11,30],[-1,30],[9,24],[13,14],[33,17],[34,1],[75,-32],[10,5],[14,28],[40,1],[9,24],[-55,8],[-44,24],[-29,24],[-8,19],[99,33],[251,-42],[38,-14],[17,-19],[14,-26],[-36,-59]],[[24677,9687],[-51,-14],[-46,6],[17,132],[26,33],[-7,24],[-47,66],[-33,75],[16,17],[86,27],[99,-5],[39,-32],[12,-40],[-5,-29],[-32,-53],[33,-18],[7,-36],[-7,-44],[-32,-52],[-30,-31],[-45,-26]],[[96566,6830],[-34,-43],[-39,-19],[-123,16],[-86,-36],[-95,-13],[-45,19],[-20,35],[-10,47],[0,17],[27,7],[127,-33],[53,-29],[29,1],[76,38],[63,48],[16,23],[21,8],[27,-17],[13,-52],[0,-17]],[[78050,14010],[-121,-14],[-10,15],[-45,2],[-16,12],[-6,28],[15,47],[24,32],[37,33],[18,7],[76,11],[55,-15],[39,-40],[11,-32],[-6,-21],[-71,-65]],[[57460,11301],[-18,-22],[-51,4],[-39,-21],[-31,8],[-98,35],[-11,45],[-3,20],[8,35],[88,73],[35,7],[50,-10],[22,-21],[14,-41],[39,-83],[-5,-29]],[[48362,11202],[-73,-34],[-6,15],[-24,20],[-48,56],[54,4],[49,24],[27,-10],[6,-6],[15,-69]],[[49088,11213],[-45,-1],[-13,16],[-2,11],[58,83],[32,21],[62,16],[40,-5],[26,-18],[8,-33],[0,-49],[-15,-26],[-151,-15]],[[31618,5715],[-26,-2],[-14,4],[-14,12],[-12,46],[-137,37],[-16,21],[-9,46],[-23,18],[-178,82],[-15,17],[-10,25],[33,10],[70,-18],[127,-5],[28,-8],[26,-14],[142,-3],[72,-7],[40,-65],[81,-19],[11,-38],[10,-68],[-110,-50],[-25,-7],[-51,-14]],[[31316,6075],[-48,-28],[-202,13],[-69,9],[-39,15],[36,60],[27,20],[25,8],[56,33],[88,8],[67,-6],[113,-26],[-29,-25],[-19,-9],[-18,-38],[12,-34]],[[34676,16577],[-37,-16],[-13,22],[-7,37],[-19,23],[14,20],[199,-26],[-11,-13],[-96,-17],[-30,-30]],[[34480,15244],[-24,-26],[-61,39],[-16,25],[7,19],[98,17],[26,-9],[12,-40],[-42,-25]],[[34100,14650],[-24,-2],[-30,17],[-4,30],[0,16],[23,13],[14,2],[81,47],[36,12],[-16,-29],[2,-26],[-13,-23],[-69,-57]],[[34427,15507],[-55,-54],[-26,2],[-54,41],[-15,21],[-3,9],[34,37],[97,-14],[22,-4],[1,-3],[2,-21],[-3,-14]],[[34062,15087],[4,-10],[56,6],[15,-15],[-31,-20],[-8,4],[-27,-6],[-76,15],[-18,23],[67,13],[18,-10]],[[32778,11680],[-24,-4],[-24,53],[-13,82],[-77,119],[-20,62],[14,15],[21,5],[56,-17],[34,-23],[38,-49],[46,-44],[9,-37],[-7,-42],[-29,-11],[1,-31],[-17,-60],[-8,-18]],[[33159,15806],[14,-7],[121,13],[38,-40],[43,2],[-103,-75],[-28,22],[-9,16],[-7,36],[-67,-9],[-22,7],[-27,-24],[-55,-10],[-19,0],[-24,26],[-1,26],[49,-1],[38,33],[11,34],[19,-9],[29,-40]],[[30004,11694],[-60,-24],[-40,19],[-120,36],[-50,66],[5,35],[23,21],[36,11],[73,-22],[37,-23],[96,-119]],[[23603,9985],[-53,-3],[-15,13],[16,28],[128,47],[52,28],[8,-4],[7,-9],[22,-56],[2,-14],[-167,-30]],[[20961,9696],[-33,-26],[-62,6],[-48,43],[-19,58],[-2,20],[13,15],[31,14],[120,-130]],[[16792,9152],[-58,-6],[-18,1],[-18,13],[-5,9],[30,30],[29,13],[9,10],[-40,101],[37,3],[43,20],[83,-2],[72,-18],[13,-15],[9,-25],[-31,-51],[-19,-18],[-108,-45],[-28,-20]],[[14620,8857],[-42,-10],[-83,38],[-27,18],[-24,31],[-19,7],[-7,6],[-11,80],[25,9],[53,-11],[102,-42],[71,-12],[24,-32],[-24,-56],[-38,-26]],[[5002,3963],[-87,-13],[-206,26],[-54,21],[-30,22],[-56,20],[-14,11],[0,24],[-9,14],[-19,13],[-9,13],[-17,8],[277,-12],[108,-20],[20,-14],[195,-60],[-53,-9],[-46,-44]],[[5426,4844],[-29,-5],[-745,67],[-143,22],[-34,12],[-14,11],[-3,8],[6,22],[17,16],[185,25],[207,-19],[250,-48],[172,-38],[89,-34],[37,-26],[5,-13]],[[95548,8736],[-37,0],[-22,18],[-7,39],[1,13],[72,48],[58,12],[-31,-72],[-11,-12],[-23,-46]],[[95268,8313],[-50,-74],[-35,2],[-20,14],[36,41],[34,18],[21,5],[14,-6]],[[97178,9444],[-38,-12],[-51,37],[-12,12],[50,70],[-4,23],[7,19],[19,14],[12,-2],[29,-77],[20,-32],[-28,-31],[-4,-21]],[[95786,12937],[-24,-16],[-15,5],[-15,34],[16,53],[-6,69],[3,17],[39,-39],[7,-21],[16,-32],[3,-17],[-16,-32],[-8,-21]],[[95361,13351],[-5,-35],[-14,8],[-20,28],[-20,69],[18,7],[23,-12],[9,-34],[8,-18],[1,-13]],[[95169,13549],[-15,-27],[-13,3],[-58,69],[7,30],[-8,25],[1,23],[2,8],[71,-105],[13,-26]],[[76836,13804],[32,-15],[57,2],[20,-22],[4,-25],[-1,-14],[-23,-21],[-150,-14],[-24,22],[26,61],[28,20],[31,6]],[[77851,13700],[-37,-8],[-14,15],[-2,9],[27,33],[33,11],[-3,-39],[-4,-21]],[[77456,13554],[-26,-7],[-27,16],[-13,31],[-3,10],[42,8],[56,-30],[-29,-28]],[[78721,14144],[-17,-14],[-45,8],[-10,12],[-4,55],[-3,16],[-17,15],[-73,28],[-8,40],[10,18],[27,4],[67,-35],[15,-27],[-2,-41],[1,-13],[21,-27],[33,-28],[5,-11]],[[75722,13935],[-37,-8],[-38,8],[-19,27],[-4,12],[15,19],[54,3],[38,-17],[8,-17],[2,-8],[-19,-19]],[[73839,13275],[-48,-15],[-8,8],[-1,9],[-72,55],[-12,45],[7,31],[59,-3],[70,-27],[37,-69],[-32,-34]],[[74039,13382],[-32,-14],[-25,3],[-29,31],[12,21],[30,13],[38,-7],[10,-11],[26,-7],[-30,-29]],[[73702,13472],[-30,-18],[-24,3],[-16,19],[-3,12],[15,38],[12,-2],[8,-20],[38,-32]],[[69421,10415],[-35,-74],[-13,2],[-15,43],[13,27],[16,16],[28,-8],[6,-6]],[[69016,10195],[-14,0],[7,23],[37,41],[28,50],[17,8],[31,-44],[-7,-37],[-41,-27],[-58,-14]],[[70000,11156],[-20,0],[-25,6],[-32,42],[-18,30],[-7,31],[3,61],[16,30],[26,12],[11,-28],[4,-32],[8,-21],[33,-30],[16,-25],[5,-14],[6,-29],[-5,-20],[-21,-13]],[[63484,13373],[-46,-14],[-21,6],[-2,14],[-1,13],[2,15],[16,12],[78,1],[31,-10],[9,-7],[1,-21],[-3,-6],[-64,-3]],[[54506,11516],[-18,-37],[-87,51],[-51,16],[-13,9],[-12,32],[-3,12],[10,20],[28,32],[59,26],[93,13],[91,-10],[15,-16],[-86,-54],[-26,-94]],[[50843,11176],[-94,-15],[-21,17],[-11,34],[13,20],[123,68],[33,-6],[11,-6],[8,-26],[-11,-41],[-14,-20],[-37,-25]],[[49179,10821],[-30,-13],[-39,3],[-30,17],[-21,34],[-5,13],[3,22],[-2,11],[38,6],[14,-14],[6,-11],[66,-68]],[[50360,11373],[-24,-73],[-15,2],[-15,43],[-31,46],[-11,32],[-1,43],[22,25],[80,16],[27,-10],[13,-55],[-45,-69]],[[49296,11078],[30,-19],[47,3],[45,-15],[-7,-20],[-26,-26],[-22,-56],[-22,-26],[-66,-56],[-49,-15],[-11,31],[1,32],[4,25],[2,18],[-46,24],[-3,33],[-9,19],[-134,66],[-23,19],[10,12],[138,5],[81,-12],[60,-42]],[[51257,11244],[-45,-13],[-51,29],[-14,20],[-15,53],[-2,20],[12,13],[40,15],[66,-6],[25,-24],[9,-43],[-8,-37],[-17,-27]],[[44275,9281],[-13,-125],[4,-27],[11,-26],[49,-70],[4,-52],[-2,-20],[-20,-29],[-69,7],[-22,15],[-8,10],[-36,122],[-21,29],[-32,25],[-123,23],[-118,-8],[29,28],[178,39],[45,29],[28,34],[13,52],[31,65],[49,30],[31,3],[16,-53],[0,-50],[-24,-51]],[[45526,9977],[-19,-14],[-40,1],[-38,28],[-16,41],[-1,29],[17,33],[27,9],[15,-11],[36,-71],[19,-45]],[[46525,10268],[-22,-13],[-37,5],[-47,29],[-15,22],[-5,20],[13,29],[11,8],[24,-4],[42,-37],[29,-40],[7,-19]],[[41016,5948],[-48,-6],[-19,15],[23,38],[34,33],[63,3],[60,-22],[-6,-21],[-13,-2],[-94,-38]],[[34980,16532],[-12,-5],[-19,22],[-3,13],[20,26],[20,35],[7,4],[-5,-70],[-8,-25]],[[33656,15954],[-62,-26],[-32,27],[-7,10],[38,26],[20,-6],[8,-9],[23,-2],[12,-20]],[[33011,11534],[-42,-1],[-19,16],[-7,10],[5,23],[16,21],[49,-16],[12,-41],[-14,-12]],[[33151,12230],[-11,-16],[-35,10],[-20,11],[-34,28],[19,17],[37,-4],[30,-20],[14,-26]],[[33127,11111],[-23,0],[-20,12],[-17,35],[-5,17],[9,38],[16,9],[92,5],[28,-20],[1,-34],[-10,-25],[-71,-37]],[[33180,10914],[-28,-4],[-38,10],[-33,20],[-11,23],[16,19],[30,12],[47,-4],[22,-24],[5,-22],[-6,-23],[-4,-7]],[[33503,15872],[-38,-4],[-26,33],[-12,23],[51,2],[23,-9],[12,-26],[-10,-19]],[[33193,15571],[-14,-6],[-18,5],[0,-10],[15,-13],[-16,-5],[-19,13],[-14,27],[10,25],[19,6],[37,-42]],[[33152,15053],[-35,-20],[-21,6],[-33,24],[45,7],[4,70],[22,27],[43,-15],[-26,-37],[-9,-28],[9,-24],[1,-10]],[[32791,14932],[-26,-2],[7,31],[23,21],[38,14],[-24,-35],[-7,-16],[-11,-13]],[[32412,14480],[-44,-26],[-23,0],[27,64],[26,2],[41,36],[11,-5],[-22,-30],[-16,-41]],[[32607,15512],[-12,-2],[5,24],[31,62],[58,29],[-7,-25],[-19,-31],[-56,-57]],[[31709,13915],[-60,-22],[-31,8],[-2,23],[8,31],[29,16],[-5,46],[18,19],[9,35],[38,26],[54,-12],[-8,-45],[-1,-16],[-32,-12],[-8,-7],[-7,-30],[1,-43],[-3,-17]],[[31501,13709],[-62,-65],[-9,4],[-5,7],[1,11],[20,24],[4,70],[41,26],[16,-9],[-14,-30],[9,-26],[-1,-12]],[[31288,13309],[-13,-4],[-31,2],[-20,13],[26,41],[-3,28],[23,11],[26,-10],[18,-35],[3,-15],[-29,-31]],[[31292,12807],[-55,-11],[-41,12],[1,44],[-11,5],[-4,10],[52,33],[39,8],[47,-5],[20,-14],[7,-15],[-36,-36],[-6,-14],[-13,-17]],[[30084,11367],[14,-17],[60,16],[21,-17],[4,-12],[-27,-42],[-32,-28],[-37,-2],[-27,71],[-3,18],[27,13]],[[29478,9586],[-27,-11],[-17,6],[-31,29],[4,23],[14,15],[10,17],[60,62],[44,7],[36,-13],[-39,-59],[-10,-41],[-44,-35]],[[23945,9838],[-47,0],[-31,21],[-10,14],[19,21],[11,2],[57,-36],[12,-15],[-11,-7]],[[17572,9121],[-136,-16],[-37,18],[-10,22],[6,23],[277,125],[49,-17],[14,-8],[-83,-62],[-37,-22],[-6,-7],[20,-9],[6,-7],[-16,-17],[-47,-23]],[[13225,8961],[-44,-32],[-86,21],[7,23],[78,20],[53,-13],[-8,-19]],[[13592,8880],[-31,-12],[-116,29],[-68,6],[-31,17],[-20,15],[-6,14],[-32,22],[62,44],[49,14],[47,-3],[10,-22],[90,-26],[70,-1],[7,-24],[-3,-34],[-28,-39]],[[9003,7690],[3,-8],[-42,6],[-63,32],[-12,11],[28,11],[36,-10],[33,-20],[17,-22]],[[9656,8230],[-31,-3],[-53,14],[-140,46],[-30,23],[21,23],[50,16],[38,-5],[95,-43],[29,-31],[17,-23],[4,-17]],[[9276,7510],[-104,-25],[-27,7],[9,36],[-16,25],[-4,12],[9,17],[61,0],[172,-27],[23,-37],[-123,-8]],[[8723,7484],[-116,-7],[-64,15],[-16,44],[18,9],[148,-20],[54,-11],[20,-13],[-10,-12],[-34,-5]],[[8518,7651],[113,-8],[74,6],[77,-14],[18,-16],[-14,-13],[-83,-4],[-40,-22],[-47,-3],[-71,16],[-64,35],[37,23]],[[8550,7294],[81,-29],[-142,9],[-62,41],[40,15],[40,-3],[35,-21],[8,-12]],[[8269,7617],[-118,-8],[-48,16],[-12,15],[10,13],[183,13],[20,-16],[6,-10],[-41,-23]],[[9253,7922],[-57,-8],[-71,36],[-54,29],[-18,25],[-3,8],[0,10],[16,6],[115,-21],[72,-85]],[[9225,7699],[-33,-46],[-87,24],[-37,30],[21,39],[40,12],[52,-14],[19,-5],[25,-40]],[[8223,7275],[-22,-2],[-241,44],[-47,13],[82,27],[54,4],[146,-66],[39,-8],[-11,-12]],[[7241,5741],[-51,-2],[-65,6],[-50,14],[-114,20],[-29,38],[-134,31],[-62,10],[21,37],[142,-49],[175,-49],[141,-30],[26,-26]],[[8547,7418],[-17,-9],[-121,5],[-25,8],[-11,9],[-168,13],[-76,41],[-15,13],[30,20],[57,12],[23,16],[145,14],[23,-8],[13,-22],[66,-43],[17,-27],[7,-18],[36,-8],[16,-16]],[[6115,4547],[-25,-4],[-22,31],[-108,63],[-64,42],[-42,33],[-18,23],[21,0],[158,-70],[24,-27],[118,-48],[-42,-43]],[[32497,62251],[-1,-14],[-3,-15],[-18,13],[-10,13],[0,3]]],\"bbox\":[-180,-89.999,180,83.599609375],\"transform\":{\"scale\":[0.0036000360003600037,0.001736003453784538],\"translate\":[-180,-89.999]}}\n"
  },
  {
    "path": "freedata_gui/src/assets/waterfall/LICENSE",
    "content": "MIT License\n\nCopyright (c) 2019 Jeppe Ledet-Pedersen\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "freedata_gui/src/assets/waterfall/README.rst",
    "content": "********************************\nHTML Canvas/WebSockets Waterfall\n********************************\n\nThis is a small experiment to create a waterfall plot with HTML Canvas and WebSockets to stream live FFT data from an SDR:\n\n.. image:: img/waterfall.png\n\n``spectrum.js`` contains the main JavaScript source code for the plot, while ``colormap.js`` contains colormaps generated using ``make_colormap.py``.\n\n``index.html``, ``style.css``, ``script.js`` contain an example page that receives FFT data on a WebSocket and plots it on the waterfall plot.\n\n``server.py`` contains a example `Bottle <https://bottlepy.org/docs/dev/>`_ and `gevent-websocket <https://pypi.org/project/gevent-websocket/>`_ server that broadcasts FFT data to connected clients. The FFT data is generated using `GNU radio <https://www.gnuradio.org/>`_ using a USRP but it should be fairly easy to change it to a different SDR.\n"
  },
  {
    "path": "freedata_gui/src/assets/waterfall/colormap.js",
    "content": "var turbo = [\n  [48, 18, 59],\n  [50, 21, 67],\n  [51, 24, 74],\n  [52, 27, 81],\n  [53, 30, 88],\n  [54, 33, 95],\n  [55, 36, 102],\n  [56, 39, 109],\n  [57, 42, 115],\n  [58, 45, 121],\n  [59, 47, 128],\n  [60, 50, 134],\n  [61, 53, 139],\n  [62, 56, 145],\n  [63, 59, 151],\n  [63, 62, 156],\n  [64, 64, 162],\n  [65, 67, 167],\n  [65, 70, 172],\n  [66, 73, 177],\n  [66, 75, 181],\n  [67, 78, 186],\n  [68, 81, 191],\n  [68, 84, 195],\n  [68, 86, 199],\n  [69, 89, 203],\n  [69, 92, 207],\n  [69, 94, 211],\n  [70, 97, 214],\n  [70, 100, 218],\n  [70, 102, 221],\n  [70, 105, 224],\n  [70, 107, 227],\n  [71, 110, 230],\n  [71, 113, 233],\n  [71, 115, 235],\n  [71, 118, 238],\n  [71, 120, 240],\n  [71, 123, 242],\n  [70, 125, 244],\n  [70, 128, 246],\n  [70, 130, 248],\n  [70, 133, 250],\n  [70, 135, 251],\n  [69, 138, 252],\n  [69, 140, 253],\n  [68, 143, 254],\n  [67, 145, 254],\n  [66, 148, 255],\n  [65, 150, 255],\n  [64, 153, 255],\n  [62, 155, 254],\n  [61, 158, 254],\n  [59, 160, 253],\n  [58, 163, 252],\n  [56, 165, 251],\n  [55, 168, 250],\n  [53, 171, 248],\n  [51, 173, 247],\n  [49, 175, 245],\n  [47, 178, 244],\n  [46, 180, 242],\n  [44, 183, 240],\n  [42, 185, 238],\n  [40, 188, 235],\n  [39, 190, 233],\n  [37, 192, 231],\n  [35, 195, 228],\n  [34, 197, 226],\n  [32, 199, 223],\n  [31, 201, 221],\n  [30, 203, 218],\n  [28, 205, 216],\n  [27, 208, 213],\n  [26, 210, 210],\n  [26, 212, 208],\n  [25, 213, 205],\n  [24, 215, 202],\n  [24, 217, 200],\n  [24, 219, 197],\n  [24, 221, 194],\n  [24, 222, 192],\n  [24, 224, 189],\n  [25, 226, 187],\n  [25, 227, 185],\n  [26, 228, 182],\n  [28, 230, 180],\n  [29, 231, 178],\n  [31, 233, 175],\n  [32, 234, 172],\n  [34, 235, 170],\n  [37, 236, 167],\n  [39, 238, 164],\n  [42, 239, 161],\n  [44, 240, 158],\n  [47, 241, 155],\n  [50, 242, 152],\n  [53, 243, 148],\n  [56, 244, 145],\n  [60, 245, 142],\n  [63, 246, 138],\n  [67, 247, 135],\n  [70, 248, 132],\n  [74, 248, 128],\n  [78, 249, 125],\n  [82, 250, 122],\n  [85, 250, 118],\n  [89, 251, 115],\n  [93, 252, 111],\n  [97, 252, 108],\n  [101, 253, 105],\n  [105, 253, 102],\n  [109, 254, 98],\n  [113, 254, 95],\n  [117, 254, 92],\n  [121, 254, 89],\n  [125, 255, 86],\n  [128, 255, 83],\n  [132, 255, 81],\n  [136, 255, 78],\n  [139, 255, 75],\n  [143, 255, 73],\n  [146, 255, 71],\n  [150, 254, 68],\n  [153, 254, 66],\n  [156, 254, 64],\n  [159, 253, 63],\n  [161, 253, 61],\n  [164, 252, 60],\n  [167, 252, 58],\n  [169, 251, 57],\n  [172, 251, 56],\n  [175, 250, 55],\n  [177, 249, 54],\n  [180, 248, 54],\n  [183, 247, 53],\n  [185, 246, 53],\n  [188, 245, 52],\n  [190, 244, 52],\n  [193, 243, 52],\n  [195, 241, 52],\n  [198, 240, 52],\n  [200, 239, 52],\n  [203, 237, 52],\n  [205, 236, 52],\n  [208, 234, 52],\n  [210, 233, 53],\n  [212, 231, 53],\n  [215, 229, 53],\n  [217, 228, 54],\n  [219, 226, 54],\n  [221, 224, 55],\n  [223, 223, 55],\n  [225, 221, 55],\n  [227, 219, 56],\n  [229, 217, 56],\n  [231, 215, 57],\n  [233, 213, 57],\n  [235, 211, 57],\n  [236, 209, 58],\n  [238, 207, 58],\n  [239, 205, 58],\n  [241, 203, 58],\n  [242, 201, 58],\n  [244, 199, 58],\n  [245, 197, 58],\n  [246, 195, 58],\n  [247, 193, 58],\n  [248, 190, 57],\n  [249, 188, 57],\n  [250, 186, 57],\n  [251, 184, 56],\n  [251, 182, 55],\n  [252, 179, 54],\n  [252, 177, 54],\n  [253, 174, 53],\n  [253, 172, 52],\n  [254, 169, 51],\n  [254, 167, 50],\n  [254, 164, 49],\n  [254, 161, 48],\n  [254, 158, 47],\n  [254, 155, 45],\n  [254, 153, 44],\n  [254, 150, 43],\n  [254, 147, 42],\n  [254, 144, 41],\n  [253, 141, 39],\n  [253, 138, 38],\n  [252, 135, 37],\n  [252, 132, 35],\n  [251, 129, 34],\n  [251, 126, 33],\n  [250, 123, 31],\n  [249, 120, 30],\n  [249, 117, 29],\n  [248, 114, 28],\n  [247, 111, 26],\n  [246, 108, 25],\n  [245, 105, 24],\n  [244, 102, 23],\n  [243, 99, 21],\n  [242, 96, 20],\n  [241, 93, 19],\n  [240, 91, 18],\n  [239, 88, 17],\n  [237, 85, 16],\n  [236, 83, 15],\n  [235, 80, 14],\n  [234, 78, 13],\n  [232, 75, 12],\n  [231, 73, 12],\n  [229, 71, 11],\n  [228, 69, 10],\n  [226, 67, 10],\n  [225, 65, 9],\n  [223, 63, 8],\n  [221, 61, 8],\n  [220, 59, 7],\n  [218, 57, 7],\n  [216, 55, 6],\n  [214, 53, 6],\n  [212, 51, 5],\n  [210, 49, 5],\n  [208, 47, 5],\n  [206, 45, 4],\n  [204, 43, 4],\n  [202, 42, 4],\n  [200, 40, 3],\n  [197, 38, 3],\n  [195, 37, 3],\n  [193, 35, 2],\n  [190, 33, 2],\n  [188, 32, 2],\n  [185, 30, 2],\n  [183, 29, 2],\n  [180, 27, 1],\n  [178, 26, 1],\n  [175, 24, 1],\n  [172, 23, 1],\n  [169, 22, 1],\n  [167, 20, 1],\n  [164, 19, 1],\n  [161, 18, 1],\n  [158, 16, 1],\n  [155, 15, 1],\n  [152, 14, 1],\n  [149, 13, 1],\n  [146, 11, 1],\n  [142, 10, 1],\n  [139, 9, 2],\n  [136, 8, 2],\n  [133, 7, 2],\n  [129, 6, 2],\n  [126, 5, 2],\n  [122, 4, 3],\n];\nvar fosphor = [\n  [6, 0, 13],\n  [7, 0, 14],\n  [7, 0, 15],\n  [7, 0, 16],\n  [7, 0, 17],\n  [7, 0, 18],\n  [7, 0, 18],\n  [7, 0, 19],\n  [7, 0, 20],\n  [7, 0, 21],\n  [7, 0, 22],\n  [7, 0, 23],\n  [7, 0, 24],\n  [7, 0, 25],\n  [7, 0, 26],\n  [6, 0, 27],\n  [6, 0, 28],\n  [6, 0, 29],\n  [5, 0, 30],\n  [5, 0, 31],\n  [5, 0, 32],\n  [4, 0, 33],\n  [4, 0, 34],\n  [3, 0, 35],\n  [3, 0, 36],\n  [2, 0, 36],\n  [2, 0, 37],\n  [1, 0, 38],\n  [0, 0, 39],\n  [0, 0, 40],\n  [0, 1, 41],\n  [0, 2, 42],\n  [0, 3, 43],\n  [0, 4, 44],\n  [0, 5, 45],\n  [0, 5, 46],\n  [0, 6, 47],\n  [0, 7, 48],\n  [0, 8, 49],\n  [0, 9, 50],\n  [0, 10, 51],\n  [0, 12, 52],\n  [0, 13, 53],\n  [0, 14, 54],\n  [0, 15, 55],\n  [0, 16, 56],\n  [0, 18, 56],\n  [0, 19, 57],\n  [0, 20, 58],\n  [0, 22, 59],\n  [0, 23, 60],\n  [0, 24, 61],\n  [0, 26, 62],\n  [0, 27, 63],\n  [0, 29, 64],\n  [0, 31, 65],\n  [0, 32, 66],\n  [0, 34, 67],\n  [0, 36, 68],\n  [0, 37, 69],\n  [0, 39, 70],\n  [0, 41, 71],\n  [0, 43, 72],\n  [0, 44, 73],\n  [0, 46, 74],\n  [0, 48, 74],\n  [0, 50, 75],\n  [0, 52, 76],\n  [0, 54, 77],\n  [0, 56, 78],\n  [0, 58, 79],\n  [0, 60, 80],\n  [0, 63, 81],\n  [0, 65, 82],\n  [0, 67, 83],\n  [0, 69, 84],\n  [0, 71, 85],\n  [0, 74, 86],\n  [0, 76, 87],\n  [0, 79, 88],\n  [0, 81, 89],\n  [0, 83, 90],\n  [0, 86, 91],\n  [0, 88, 92],\n  [0, 91, 93],\n  [0, 94, 94],\n  [0, 94, 93],\n  [0, 95, 92],\n  [0, 96, 91],\n  [0, 97, 90],\n  [0, 98, 90],\n  [0, 99, 89],\n  [0, 100, 88],\n  [0, 101, 87],\n  [0, 102, 86],\n  [0, 103, 85],\n  [0, 104, 84],\n  [0, 105, 83],\n  [0, 106, 82],\n  [0, 107, 80],\n  [0, 108, 79],\n  [0, 109, 78],\n  [0, 110, 77],\n  [0, 111, 75],\n  [0, 112, 74],\n  [0, 112, 73],\n  [0, 113, 71],\n  [0, 114, 70],\n  [0, 115, 69],\n  [0, 116, 67],\n  [0, 117, 66],\n  [0, 118, 64],\n  [0, 119, 62],\n  [0, 120, 61],\n  [0, 121, 59],\n  [0, 122, 57],\n  [0, 123, 56],\n  [0, 124, 54],\n  [0, 125, 52],\n  [0, 126, 50],\n  [0, 127, 48],\n  [0, 128, 47],\n  [0, 129, 45],\n  [0, 130, 43],\n  [0, 131, 41],\n  [0, 132, 39],\n  [0, 132, 37],\n  [0, 133, 35],\n  [0, 134, 32],\n  [0, 135, 30],\n  [0, 136, 28],\n  [0, 137, 26],\n  [0, 138, 24],\n  [0, 139, 21],\n  [0, 140, 19],\n  [0, 141, 17],\n  [0, 142, 14],\n  [0, 143, 12],\n  [0, 144, 9],\n  [0, 145, 7],\n  [0, 146, 4],\n  [0, 147, 2],\n  [1, 148, 0],\n  [3, 149, 0],\n  [6, 150, 0],\n  [9, 150, 0],\n  [12, 151, 0],\n  [14, 152, 0],\n  [17, 153, 0],\n  [20, 154, 0],\n  [23, 155, 0],\n  [26, 156, 0],\n  [29, 157, 0],\n  [32, 158, 0],\n  [35, 159, 0],\n  [38, 160, 0],\n  [41, 161, 0],\n  [44, 162, 0],\n  [47, 163, 0],\n  [50, 164, 0],\n  [53, 165, 0],\n  [57, 166, 0],\n  [60, 167, 0],\n  [63, 168, 0],\n  [66, 169, 0],\n  [70, 170, 0],\n  [73, 170, 0],\n  [77, 171, 0],\n  [80, 172, 0],\n  [84, 173, 0],\n  [87, 174, 0],\n  [91, 175, 0],\n  [94, 176, 0],\n  [98, 177, 0],\n  [102, 178, 0],\n  [105, 179, 0],\n  [109, 180, 0],\n  [113, 181, 0],\n  [117, 182, 0],\n  [120, 183, 0],\n  [124, 184, 0],\n  [128, 185, 0],\n  [132, 186, 0],\n  [136, 187, 0],\n  [140, 188, 0],\n  [144, 188, 0],\n  [148, 189, 0],\n  [152, 190, 0],\n  [156, 191, 0],\n  [161, 192, 0],\n  [165, 193, 0],\n  [169, 194, 0],\n  [173, 195, 0],\n  [178, 196, 0],\n  [182, 197, 0],\n  [186, 198, 0],\n  [191, 199, 0],\n  [195, 200, 0],\n  [200, 201, 0],\n  [202, 199, 0],\n  [203, 197, 0],\n  [204, 194, 0],\n  [205, 191, 0],\n  [206, 189, 0],\n  [207, 186, 0],\n  [208, 183, 0],\n  [208, 180, 0],\n  [209, 177, 0],\n  [210, 174, 0],\n  [211, 172, 0],\n  [212, 169, 0],\n  [213, 166, 0],\n  [214, 163, 0],\n  [215, 159, 0],\n  [216, 156, 0],\n  [217, 153, 0],\n  [218, 150, 0],\n  [219, 147, 0],\n  [220, 144, 0],\n  [221, 140, 0],\n  [222, 137, 0],\n  [223, 134, 0],\n  [224, 130, 0],\n  [225, 127, 0],\n  [226, 123, 0],\n  [226, 120, 0],\n  [227, 116, 0],\n  [228, 113, 0],\n  [229, 109, 0],\n  [230, 106, 0],\n  [231, 102, 0],\n  [232, 98, 0],\n  [233, 95, 0],\n  [234, 91, 0],\n  [235, 87, 0],\n  [236, 83, 0],\n  [237, 79, 0],\n  [238, 76, 0],\n  [239, 72, 0],\n  [240, 68, 0],\n  [241, 64, 0],\n  [242, 60, 0],\n  [243, 56, 0],\n  [244, 52, 0],\n  [245, 47, 0],\n  [246, 43, 0],\n  [246, 39, 0],\n  [247, 35, 0],\n  [248, 31, 0],\n  [249, 26, 0],\n  [250, 22, 0],\n  [251, 18, 0],\n  [252, 13, 0],\n  [253, 9, 0],\n  [254, 4, 0],\n  [255, 0, 0],\n];\nvar viridis = [[68, 1, 84], [68, 2, 86], [69, 4, 87], [69, 5, 89], [70, 7, 90], [70, 8, 92], [70, 10, 93], [70, 11, 94], [71, 13, 96], [71, 14, 97], [71, 16, 99], [71, 17, 100], [71, 19, 101], [72, 20, 103], [72, 22, 104], [72, 23, 105], [72, 24, 106], [72, 26, 108], [72, 27, 109], [72, 28, 110], [72, 29, 111], [72, 31, 112], [72, 32, 113], [72, 33, 115], [72, 35, 116], [72, 36, 117], [72, 37, 118], [72, 38, 119], [72, 40, 120], [72, 41, 121], [71, 42, 122], [71, 44, 122], [71, 45, 123], [71, 46, 124], [71, 47, 125], [70, 48, 126], [70, 50, 126], [70, 51, 127], [70, 52, 128], [69, 53, 129], [69, 55, 129], [69, 56, 130], [68, 57, 131], [68, 58, 131], [68, 59, 132], [67, 61, 132], [67, 62, 133], [66, 63, 133], [66, 64, 134], [66, 65, 134], [65, 66, 135], [65, 68, 135], [64, 69, 136], [64, 70, 136], [63, 71, 136], [63, 72, 137], [62, 73, 137], [62, 74, 137], [62, 76, 138], [61, 77, 138], [61, 78, 138], [60, 79, 138], [60, 80, 139], [59, 81, 139], [59, 82, 139], [58, 83, 139], [58, 84, 140], [57, 85, 140], [57, 86, 140], [56, 88, 140], [56, 89, 140], [55, 90, 140], [55, 91, 141], [54, 92, 141], [54, 93, 141], [53, 94, 141], [53, 95, 141], [52, 96, 141], [52, 97, 141], [51, 98, 141], [51, 99, 141], [50, 100, 142], [50, 101, 142], [49, 102, 142], [49, 103, 142], [49, 104, 142], [48, 105, 142], [48, 106, 142], [47, 107, 142], [47, 108, 142], [46, 109, 142], [46, 110, 142], [46, 111, 142], [45, 112, 142], [45, 113, 142], [44, 113, 142], [44, 114, 142], [44, 115, 142], [43, 116, 142], [43, 117, 142], [42, 118, 142], [42, 119, 142], [42, 120, 142], [41, 121, 142], [41, 122, 142], [41, 123, 142], [40, 124, 142], [40, 125, 142], [39, 126, 142], [39, 127, 142], [39, 128, 142], [38, 129, 142], [38, 130, 142], [38, 130, 142], [37, 131, 142], [37, 132, 142], [37, 133, 142], [36, 134, 142], [36, 135, 142], [35, 136, 142], [35, 137, 142], [35, 138, 141], [34, 139, 141], [34, 140, 141], [34, 141, 141], [33, 142, 141], [33, 143, 141], [33, 144, 141], [33, 145, 140], [32, 146, 140], [32, 146, 140], [32, 147, 140], [31, 148, 140], [31, 149, 139], [31, 150, 139], [31, 151, 139], [31, 152, 139], [31, 153, 138], [31, 154, 138], [30, 155, 138], [30, 156, 137], [30, 157, 137], [31, 158, 137], [31, 159, 136], [31, 160, 136], [31, 161, 136], [31, 161, 135], [31, 162, 135], [32, 163, 134], [32, 164, 134], [33, 165, 133], [33, 166, 133], [34, 167, 133], [34, 168, 132], [35, 169, 131], [36, 170, 131], [37, 171, 130], [37, 172, 130], [38, 173, 129], [39, 173, 129], [40, 174, 128], [41, 175, 127], [42, 176, 127], [44, 177, 126], [45, 178, 125], [46, 179, 124], [47, 180, 124], [49, 181, 123], [50, 182, 122], [52, 182, 121], [53, 183, 121], [55, 184, 120], [56, 185, 119], [58, 186, 118], [59, 187, 117], [61, 188, 116], [63, 188, 115], [64, 189, 114], [66, 190, 113], [68, 191, 112], [70, 192, 111], [72, 193, 110], [74, 193, 109], [76, 194, 108], [78, 195, 107], [80, 196, 106], [82, 197, 105], [84, 197, 104], [86, 198, 103], [88, 199, 101], [90, 200, 100], [92, 200, 99], [94, 201, 98], [96, 202, 96], [99, 203, 95], [101, 203, 94], [103, 204, 92], [105, 205, 91], [108, 205, 90], [110, 206, 88], [112, 207, 87], [115, 208, 86], [117, 208, 84], [119, 209, 83], [122, 209, 81], [124, 210, 80], [127, 211, 78], [129, 211, 77], [132, 212, 75], [134, 213, 73], [137, 213, 72], [139, 214, 70], [142, 214, 69], [144, 215, 67], [147, 215, 65], [149, 216, 64], [152, 216, 62], [155, 217, 60], [157, 217, 59], [160, 218, 57], [162, 218, 55], [165, 219, 54], [168, 219, 52], [170, 220, 50], [173, 220, 48], [176, 221, 47], [178, 221, 45], [181, 222, 43], [184, 222, 41], [186, 222, 40], [189, 223, 38], [192, 223, 37], [194, 223, 35], [197, 224, 33], [200, 224, 32], [202, 225, 31], [205, 225, 29], [208, 225, 28], [210, 226, 27], [213, 226, 26], [216, 226, 25], [218, 227, 25], [221, 227, 24], [223, 227, 24], [226, 228, 24], [229, 228, 25], [231, 228, 25], [234, 229, 26], [236, 229, 27], [239, 229, 28], [241, 229, 29], [244, 230, 30], [246, 230, 32], [248, 230, 33], [251, 231, 35], [253, 231, 37]]\nvar inferno = [[0, 0, 4], [1, 0, 5], [1, 1, 6], [1, 1, 8], [2, 1, 10], [2, 2, 12], [2, 2, 14], [3, 2, 16], [4, 3, 18], [4, 3, 20], [5, 4, 23], [6, 4, 25], [7, 5, 27], [8, 5, 29], [9, 6, 31], [10, 7, 34], [11, 7, 36], [12, 8, 38], [13, 8, 41], [14, 9, 43], [16, 9, 45], [17, 10, 48], [18, 10, 50], [20, 11, 52], [21, 11, 55], [22, 11, 57], [24, 12, 60], [25, 12, 62], [27, 12, 65], [28, 12, 67], [30, 12, 69], [31, 12, 72], [33, 12, 74], [35, 12, 76], [36, 12, 79], [38, 12, 81], [40, 11, 83], [41, 11, 85], [43, 11, 87], [45, 11, 89], [47, 10, 91], [49, 10, 92], [50, 10, 94], [52, 10, 95], [54, 9, 97], [56, 9, 98], [57, 9, 99], [59, 9, 100], [61, 9, 101], [62, 9, 102], [64, 10, 103], [66, 10, 104], [68, 10, 104], [69, 10, 105], [71, 11, 106], [73, 11, 106], [74, 12, 107], [76, 12, 107], [77, 13, 108], [79, 13, 108], [81, 14, 108], [82, 14, 109], [84, 15, 109], [85, 15, 109], [87, 16, 110], [89, 16, 110], [90, 17, 110], [92, 18, 110], [93, 18, 110], [95, 19, 110], [97, 19, 110], [98, 20, 110], [100, 21, 110], [101, 21, 110], [103, 22, 110], [105, 22, 110], [106, 23, 110], [108, 24, 110], [109, 24, 110], [111, 25, 110], [113, 25, 110], [114, 26, 110], [116, 26, 110], [117, 27, 110], [119, 28, 109], [120, 28, 109], [122, 29, 109], [124, 29, 109], [125, 30, 109], [127, 30, 108], [128, 31, 108], [130, 32, 108], [132, 32, 107], [133, 33, 107], [135, 33, 107], [136, 34, 106], [138, 34, 106], [140, 35, 105], [141, 35, 105], [143, 36, 105], [144, 37, 104], [146, 37, 104], [147, 38, 103], [149, 38, 103], [151, 39, 102], [152, 39, 102], [154, 40, 101], [155, 41, 100], [157, 41, 100], [159, 42, 99], [160, 42, 99], [162, 43, 98], [163, 44, 97], [165, 44, 96], [166, 45, 96], [168, 46, 95], [169, 46, 94], [171, 47, 94], [173, 48, 93], [174, 48, 92], [176, 49, 91], [177, 50, 90], [179, 50, 90], [180, 51, 89], [182, 52, 88], [183, 53, 87], [185, 53, 86], [186, 54, 85], [188, 55, 84], [189, 56, 83], [191, 57, 82], [192, 58, 81], [193, 58, 80], [195, 59, 79], [196, 60, 78], [198, 61, 77], [199, 62, 76], [200, 63, 75], [202, 64, 74], [203, 65, 73], [204, 66, 72], [206, 67, 71], [207, 68, 70], [208, 69, 69], [210, 70, 68], [211, 71, 67], [212, 72, 66], [213, 74, 65], [215, 75, 63], [216, 76, 62], [217, 77, 61], [218, 78, 60], [219, 80, 59], [221, 81, 58], [222, 82, 56], [223, 83, 55], [224, 85, 54], [225, 86, 53], [226, 87, 52], [227, 89, 51], [228, 90, 49], [229, 92, 48], [230, 93, 47], [231, 94, 46], [232, 96, 45], [233, 97, 43], [234, 99, 42], [235, 100, 41], [235, 102, 40], [236, 103, 38], [237, 105, 37], [238, 106, 36], [239, 108, 35], [239, 110, 33], [240, 111, 32], [241, 113, 31], [241, 115, 29], [242, 116, 28], [243, 118, 27], [243, 120, 25], [244, 121, 24], [245, 123, 23], [245, 125, 21], [246, 126, 20], [246, 128, 19], [247, 130, 18], [247, 132, 16], [248, 133, 15], [248, 135, 14], [248, 137, 12], [249, 139, 11], [249, 140, 10], [249, 142, 9], [250, 144, 8], [250, 146, 7], [250, 148, 7], [251, 150, 6], [251, 151, 6], [251, 153, 6], [251, 155, 6], [251, 157, 7], [252, 159, 7], [252, 161, 8], [252, 163, 9], [252, 165, 10], [252, 166, 12], [252, 168, 13], [252, 170, 15], [252, 172, 17], [252, 174, 18], [252, 176, 20], [252, 178, 22], [252, 180, 24], [251, 182, 26], [251, 184, 29], [251, 186, 31], [251, 188, 33], [251, 190, 35], [250, 192, 38], [250, 194, 40], [250, 196, 42], [250, 198, 45], [249, 199, 47], [249, 201, 50], [249, 203, 53], [248, 205, 55], [248, 207, 58], [247, 209, 61], [247, 211, 64], [246, 213, 67], [246, 215, 70], [245, 217, 73], [245, 219, 76], [244, 221, 79], [244, 223, 83], [244, 225, 86], [243, 227, 90], [243, 229, 93], [242, 230, 97], [242, 232, 101], [242, 234, 105], [241, 236, 109], [241, 237, 113], [241, 239, 117], [241, 241, 121], [242, 242, 125], [242, 244, 130], [243, 245, 134], [243, 246, 138], [244, 248, 142], [245, 249, 146], [246, 250, 150], [248, 251, 154], [249, 252, 157], [250, 253, 161], [252, 255, 164]]\nvar magma = [[0, 0, 4], [1, 0, 5], [1, 1, 6], [1, 1, 8], [2, 1, 9], [2, 2, 11], [2, 2, 13], [3, 3, 15], [3, 3, 18], [4, 4, 20], [5, 4, 22], [6, 5, 24], [6, 5, 26], [7, 6, 28], [8, 7, 30], [9, 7, 32], [10, 8, 34], [11, 9, 36], [12, 9, 38], [13, 10, 41], [14, 11, 43], [16, 11, 45], [17, 12, 47], [18, 13, 49], [19, 13, 52], [20, 14, 54], [21, 14, 56], [22, 15, 59], [24, 15, 61], [25, 16, 63], [26, 16, 66], [28, 16, 68], [29, 17, 71], [30, 17, 73], [32, 17, 75], [33, 17, 78], [34, 17, 80], [36, 18, 83], [37, 18, 85], [39, 18, 88], [41, 17, 90], [42, 17, 92], [44, 17, 95], [45, 17, 97], [47, 17, 99], [49, 17, 101], [51, 16, 103], [52, 16, 105], [54, 16, 107], [56, 16, 108], [57, 15, 110], [59, 15, 112], [61, 15, 113], [63, 15, 114], [64, 15, 116], [66, 15, 117], [68, 15, 118], [69, 16, 119], [71, 16, 120], [73, 16, 120], [74, 16, 121], [76, 17, 122], [78, 17, 123], [79, 18, 123], [81, 18, 124], [82, 19, 124], [84, 19, 125], [86, 20, 125], [87, 21, 126], [89, 21, 126], [90, 22, 126], [92, 22, 127], [93, 23, 127], [95, 24, 127], [96, 24, 128], [98, 25, 128], [100, 26, 128], [101, 26, 128], [103, 27, 128], [104, 28, 129], [106, 28, 129], [107, 29, 129], [109, 29, 129], [110, 30, 129], [112, 31, 129], [114, 31, 129], [115, 32, 129], [117, 33, 129], [118, 33, 129], [120, 34, 129], [121, 34, 130], [123, 35, 130], [124, 35, 130], [126, 36, 130], [128, 37, 130], [129, 37, 129], [131, 38, 129], [132, 38, 129], [134, 39, 129], [136, 39, 129], [137, 40, 129], [139, 41, 129], [140, 41, 129], [142, 42, 129], [144, 42, 129], [145, 43, 129], [147, 43, 128], [148, 44, 128], [150, 44, 128], [152, 45, 128], [153, 45, 128], [155, 46, 127], [156, 46, 127], [158, 47, 127], [160, 47, 127], [161, 48, 126], [163, 48, 126], [165, 49, 126], [166, 49, 125], [168, 50, 125], [170, 51, 125], [171, 51, 124], [173, 52, 124], [174, 52, 123], [176, 53, 123], [178, 53, 123], [179, 54, 122], [181, 54, 122], [183, 55, 121], [184, 55, 121], [186, 56, 120], [188, 57, 120], [189, 57, 119], [191, 58, 119], [192, 58, 118], [194, 59, 117], [196, 60, 117], [197, 60, 116], [199, 61, 115], [200, 62, 115], [202, 62, 114], [204, 63, 113], [205, 64, 113], [207, 64, 112], [208, 65, 111], [210, 66, 111], [211, 67, 110], [213, 68, 109], [214, 69, 108], [216, 69, 108], [217, 70, 107], [219, 71, 106], [220, 72, 105], [222, 73, 104], [223, 74, 104], [224, 76, 103], [226, 77, 102], [227, 78, 101], [228, 79, 100], [229, 80, 100], [231, 82, 99], [232, 83, 98], [233, 84, 98], [234, 86, 97], [235, 87, 96], [236, 88, 96], [237, 90, 95], [238, 91, 94], [239, 93, 94], [240, 95, 94], [241, 96, 93], [242, 98, 93], [242, 100, 92], [243, 101, 92], [244, 103, 92], [244, 105, 92], [245, 107, 92], [246, 108, 92], [246, 110, 92], [247, 112, 92], [247, 114, 92], [248, 116, 92], [248, 118, 92], [249, 120, 93], [249, 121, 93], [249, 123, 93], [250, 125, 94], [250, 127, 94], [250, 129, 95], [251, 131, 95], [251, 133, 96], [251, 135, 97], [252, 137, 97], [252, 138, 98], [252, 140, 99], [252, 142, 100], [252, 144, 101], [253, 146, 102], [253, 148, 103], [253, 150, 104], [253, 152, 105], [253, 154, 106], [253, 155, 107], [254, 157, 108], [254, 159, 109], [254, 161, 110], [254, 163, 111], [254, 165, 113], [254, 167, 114], [254, 169, 115], [254, 170, 116], [254, 172, 118], [254, 174, 119], [254, 176, 120], [254, 178, 122], [254, 180, 123], [254, 182, 124], [254, 183, 126], [254, 185, 127], [254, 187, 129], [254, 189, 130], [254, 191, 132], [254, 193, 133], [254, 194, 135], [254, 196, 136], [254, 198, 138], [254, 200, 140], [254, 202, 141], [254, 204, 143], [254, 205, 144], [254, 207, 146], [254, 209, 148], [254, 211, 149], [254, 213, 151], [254, 215, 153], [254, 216, 154], [253, 218, 156], [253, 220, 158], [253, 222, 160], [253, 224, 161], [253, 226, 163], [253, 227, 165], [253, 229, 167], [253, 231, 169], [253, 233, 170], [253, 235, 172], [252, 236, 174], [252, 238, 176], [252, 240, 178], [252, 242, 180], [252, 244, 182], [252, 246, 184], [252, 247, 185], [252, 249, 187], [252, 251, 189], [252, 253, 191]]\nvar jet = [[0, 0, 128], [0, 0, 132], [0, 0, 137], [0, 0, 141], [0, 0, 146], [0, 0, 150], [0, 0, 155], [0, 0, 159], [0, 0, 164], [0, 0, 168], [0, 0, 173], [0, 0, 178], [0, 0, 182], [0, 0, 187], [0, 0, 191], [0, 0, 196], [0, 0, 200], [0, 0, 205], [0, 0, 209], [0, 0, 214], [0, 0, 218], [0, 0, 223], [0, 0, 227], [0, 0, 232], [0, 0, 237], [0, 0, 241], [0, 0, 246], [0, 0, 250], [0, 0, 255], [0, 0, 255], [0, 0, 255], [0, 0, 255], [0, 0, 255], [0, 4, 255], [0, 8, 255], [0, 12, 255], [0, 16, 255], [0, 20, 255], [0, 24, 255], [0, 28, 255], [0, 32, 255], [0, 36, 255], [0, 40, 255], [0, 44, 255], [0, 48, 255], [0, 52, 255], [0, 56, 255], [0, 60, 255], [0, 64, 255], [0, 68, 255], [0, 72, 255], [0, 76, 255], [0, 80, 255], [0, 84, 255], [0, 88, 255], [0, 92, 255], [0, 96, 255], [0, 100, 255], [0, 104, 255], [0, 108, 255], [0, 112, 255], [0, 116, 255], [0, 120, 255], [0, 124, 255], [0, 128, 255], [0, 132, 255], [0, 136, 255], [0, 140, 255], [0, 144, 255], [0, 148, 255], [0, 152, 255], [0, 156, 255], [0, 160, 255], [0, 164, 255], [0, 168, 255], [0, 172, 255], [0, 176, 255], [0, 180, 255], [0, 184, 255], [0, 188, 255], [0, 192, 255], [0, 196, 255], [0, 200, 255], [0, 204, 255], [0, 208, 255], [0, 212, 255], [0, 216, 255], [0, 220, 254], [0, 224, 251], [0, 228, 248], [2, 232, 244], [6, 236, 241], [9, 240, 238], [12, 244, 235], [15, 248, 231], [19, 252, 228], [22, 255, 225], [25, 255, 222], [28, 255, 219], [31, 255, 215], [35, 255, 212], [38, 255, 209], [41, 255, 206], [44, 255, 202], [48, 255, 199], [51, 255, 196], [54, 255, 193], [57, 255, 190], [60, 255, 186], [64, 255, 183], [67, 255, 180], [70, 255, 177], [73, 255, 173], [77, 255, 170], [80, 255, 167], [83, 255, 164], [86, 255, 160], [90, 255, 157], [93, 255, 154], [96, 255, 151], [99, 255, 148], [102, 255, 144], [106, 255, 141], [109, 255, 138], [112, 255, 135], [115, 255, 131], [119, 255, 128], [122, 255, 125], [125, 255, 122], [128, 255, 119], [131, 255, 115], [135, 255, 112], [138, 255, 109], [141, 255, 106], [144, 255, 102], [148, 255, 99], [151, 255, 96], [154, 255, 93], [157, 255, 90], [160, 255, 86], [164, 255, 83], [167, 255, 80], [170, 255, 77], [173, 255, 73], [177, 255, 70], [180, 255, 67], [183, 255, 64], [186, 255, 60], [190, 255, 57], [193, 255, 54], [196, 255, 51], [199, 255, 48], [202, 255, 44], [206, 255, 41], [209, 255, 38], [212, 255, 35], [215, 255, 31], [219, 255, 28], [222, 255, 25], [225, 255, 22], [228, 255, 19], [231, 255, 15], [235, 255, 12], [238, 255, 9], [241, 252, 6], [244, 248, 2], [248, 245, 0], [251, 241, 0], [254, 237, 0], [255, 234, 0], [255, 230, 0], [255, 226, 0], [255, 222, 0], [255, 219, 0], [255, 215, 0], [255, 211, 0], [255, 208, 0], [255, 204, 0], [255, 200, 0], [255, 196, 0], [255, 193, 0], [255, 189, 0], [255, 185, 0], [255, 182, 0], [255, 178, 0], [255, 174, 0], [255, 171, 0], [255, 167, 0], [255, 163, 0], [255, 159, 0], [255, 156, 0], [255, 152, 0], [255, 148, 0], [255, 145, 0], [255, 141, 0], [255, 137, 0], [255, 134, 0], [255, 130, 0], [255, 126, 0], [255, 122, 0], [255, 119, 0], [255, 115, 0], [255, 111, 0], [255, 108, 0], [255, 104, 0], [255, 100, 0], [255, 96, 0], [255, 93, 0], [255, 89, 0], [255, 85, 0], [255, 82, 0], [255, 78, 0], [255, 74, 0], [255, 71, 0], [255, 67, 0], [255, 63, 0], [255, 59, 0], [255, 56, 0], [255, 52, 0], [255, 48, 0], [255, 45, 0], [255, 41, 0], [255, 37, 0], [255, 34, 0], [255, 30, 0], [255, 26, 0], [255, 22, 0], [255, 19, 0], [250, 15, 0], [246, 11, 0], [241, 8, 0], [237, 4, 0], [232, 0, 0], [228, 0, 0], [223, 0, 0], [218, 0, 0], [214, 0, 0], [209, 0, 0], [205, 0, 0], [200, 0, 0], [196, 0, 0], [191, 0, 0], [187, 0, 0], [182, 0, 0], [178, 0, 0], [173, 0, 0], [168, 0, 0], [164, 0, 0], [159, 0, 0], [155, 0, 0], [150, 0, 0], [146, 0, 0], [141, 0, 0], [137, 0, 0], [132, 0, 0], [128, 0, 0]]\nvar binary = [[255, 255, 255], [254, 254, 254], [253, 253, 253], [252, 252, 252], [251, 251, 251], [250, 250, 250], [249, 249, 249], [248, 248, 248], [247, 247, 247], [246, 246, 246], [245, 245, 245], [244, 244, 244], [243, 243, 243], [242, 242, 242], [241, 241, 241], [240, 240, 240], [239, 239, 239], [238, 238, 238], [237, 237, 237], [236, 236, 236], [235, 235, 235], [234, 234, 234], [233, 233, 233], [232, 232, 232], [231, 231, 231], [230, 230, 230], [229, 229, 229], [228, 228, 228], [227, 227, 227], [226, 226, 226], [225, 225, 225], [224, 224, 224], [223, 223, 223], [222, 222, 222], [221, 221, 221], [220, 220, 220], [219, 219, 219], [218, 218, 218], [217, 217, 217], [216, 216, 216], [215, 215, 215], [214, 214, 214], [213, 213, 213], [212, 212, 212], [211, 211, 211], [210, 210, 210], [209, 209, 209], [208, 208, 208], [207, 207, 207], [206, 206, 206], [205, 205, 205], [204, 204, 204], [203, 203, 203], [202, 202, 202], [201, 201, 201], [200, 200, 200], [199, 199, 199], [198, 198, 198], [197, 197, 197], [196, 196, 196], [195, 195, 195], [194, 194, 194], [193, 193, 193], [192, 192, 192], [191, 191, 191], [190, 190, 190], [189, 189, 189], [188, 188, 188], [187, 187, 187], [186, 186, 186], [185, 185, 185], [184, 184, 184], [183, 183, 183], [182, 182, 182], [181, 181, 181], [180, 180, 180], [179, 179, 179], [178, 178, 178], [177, 177, 177], [176, 176, 176], [175, 175, 175], [174, 174, 174], [173, 173, 173], [172, 172, 172], [171, 171, 171], [170, 170, 170], [169, 169, 169], [168, 168, 168], [167, 167, 167], [166, 166, 166], [165, 165, 165], [164, 164, 164], [163, 163, 163], [162, 162, 162], [161, 161, 161], [160, 160, 160], [159, 159, 159], [158, 158, 158], [157, 157, 157], [156, 156, 156], [155, 155, 155], [154, 154, 154], [153, 153, 153], [152, 152, 152], [151, 151, 151], [150, 150, 150], [149, 149, 149], [148, 148, 148], [147, 147, 147], [146, 146, 146], [145, 145, 145], [144, 144, 144], [143, 143, 143], [142, 142, 142], [141, 141, 141], [140, 140, 140], [139, 139, 139], [138, 138, 138], [137, 137, 137], [136, 136, 136], [135, 135, 135], [134, 134, 134], [133, 133, 133], [132, 132, 132], [131, 131, 131], [130, 130, 130], [129, 129, 129], [128, 128, 128], [127, 127, 127], [126, 126, 126], [125, 125, 125], [124, 124, 124], [123, 123, 123], [122, 122, 122], [121, 121, 121], [120, 120, 120], [119, 119, 119], [118, 118, 118], [117, 117, 117], [116, 116, 116], [115, 115, 115], [114, 114, 114], [113, 113, 113], [112, 112, 112], [111, 111, 111], [110, 110, 110], [109, 109, 109], [108, 108, 108], [107, 107, 107], [106, 106, 106], [105, 105, 105], [104, 104, 104], [103, 103, 103], [102, 102, 102], [101, 101, 101], [100, 100, 100], [99, 99, 99], [98, 98, 98], [97, 97, 97], [96, 96, 96], [95, 95, 95], [94, 94, 94], [93, 93, 93], [92, 92, 92], [91, 91, 91], [90, 90, 90], [89, 89, 89], [88, 88, 88], [87, 87, 87], [86, 86, 86], [85, 85, 85], [84, 84, 84], [83, 83, 83], [82, 82, 82], [81, 81, 81], [80, 80, 80], [79, 79, 79], [78, 78, 78], [77, 77, 77], [76, 76, 76], [75, 75, 75], [74, 74, 74], [73, 73, 73], [72, 72, 72], [71, 71, 71], [70, 70, 70], [69, 69, 69], [68, 68, 68], [67, 67, 67], [66, 66, 66], [65, 65, 65], [64, 64, 64], [63, 63, 63], [62, 62, 62], [61, 61, 61], [60, 60, 60], [59, 59, 59], [58, 58, 58], [57, 57, 57], [56, 56, 56], [55, 55, 55], [54, 54, 54], [53, 53, 53], [52, 52, 52], [51, 51, 51], [50, 50, 50], [49, 49, 49], [48, 48, 48], [47, 47, 47], [46, 46, 46], [45, 45, 45], [44, 44, 44], [43, 43, 43], [42, 42, 42], [41, 41, 41], [40, 40, 40], [39, 39, 39], [38, 38, 38], [37, 37, 37], [36, 36, 36], [35, 35, 35], [34, 34, 34], [33, 33, 33], [32, 32, 32], [31, 31, 31], [30, 30, 30], [29, 29, 29], [28, 28, 28], [27, 27, 27], [26, 26, 26], [25, 25, 25], [24, 24, 24], [23, 23, 23], [22, 22, 22], [21, 21, 21], [20, 20, 20], [19, 19, 19], [18, 18, 18], [17, 17, 17], [16, 16, 16], [15, 15, 15], [14, 14, 14], [13, 13, 13], [12, 12, 12], [11, 11, 11], [10, 10, 10], [9, 9, 9], [8, 8, 8], [7, 7, 7], [6, 6, 6], [5, 5, 5], [4, 4, 4], [3, 3, 3], [2, 2, 2], [1, 1, 1], [0, 0, 0]]\nvar plasma = [[13, 8, 135], [16, 7, 136], [19, 7, 137], [22, 7, 138], [25, 6, 140], [27, 6, 141], [29, 6, 142], [32, 6, 143], [34, 6, 144], [36, 6, 145], [38, 5, 145], [40, 5, 146], [42, 5, 147], [44, 5, 148], [46, 5, 149], [47, 5, 150], [49, 5, 151], [51, 5, 151], [53, 4, 152], [55, 4, 153], [56, 4, 154], [58, 4, 154], [60, 4, 155], [62, 4, 156], [63, 4, 156], [65, 4, 157], [67, 3, 158], [68, 3, 158], [70, 3, 159], [72, 3, 159], [73, 3, 160], [75, 3, 161], [76, 2, 161], [78, 2, 162], [80, 2, 162], [81, 2, 163], [83, 2, 163], [85, 2, 164], [86, 1, 164], [88, 1, 164], [89, 1, 165], [91, 1, 165], [92, 1, 166], [94, 1, 166], [96, 1, 166], [97, 0, 167], [99, 0, 167], [100, 0, 167], [102, 0, 167], [103, 0, 168], [105, 0, 168], [106, 0, 168], [108, 0, 168], [110, 0, 168], [111, 0, 168], [113, 0, 168], [114, 1, 168], [116, 1, 168], [117, 1, 168], [119, 1, 168], [120, 1, 168], [122, 2, 168], [123, 2, 168], [125, 3, 168], [126, 3, 168], [128, 4, 168], [129, 4, 167], [131, 5, 167], [132, 5, 167], [134, 6, 166], [135, 7, 166], [136, 8, 166], [138, 9, 165], [139, 10, 165], [141, 11, 165], [142, 12, 164], [143, 13, 164], [145, 14, 163], [146, 15, 163], [148, 16, 162], [149, 17, 161], [150, 19, 161], [152, 20, 160], [153, 21, 159], [154, 22, 159], [156, 23, 158], [157, 24, 157], [158, 25, 157], [160, 26, 156], [161, 27, 155], [162, 29, 154], [163, 30, 154], [165, 31, 153], [166, 32, 152], [167, 33, 151], [168, 34, 150], [170, 35, 149], [171, 36, 148], [172, 38, 148], [173, 39, 147], [174, 40, 146], [176, 41, 145], [177, 42, 144], [178, 43, 143], [179, 44, 142], [180, 46, 141], [181, 47, 140], [182, 48, 139], [183, 49, 138], [184, 50, 137], [186, 51, 136], [187, 52, 136], [188, 53, 135], [189, 55, 134], [190, 56, 133], [191, 57, 132], [192, 58, 131], [193, 59, 130], [194, 60, 129], [195, 61, 128], [196, 62, 127], [197, 64, 126], [198, 65, 125], [199, 66, 124], [200, 67, 123], [201, 68, 122], [202, 69, 122], [203, 70, 121], [204, 71, 120], [204, 73, 119], [205, 74, 118], [206, 75, 117], [207, 76, 116], [208, 77, 115], [209, 78, 114], [210, 79, 113], [211, 81, 113], [212, 82, 112], [213, 83, 111], [213, 84, 110], [214, 85, 109], [215, 86, 108], [216, 87, 107], [217, 88, 106], [218, 90, 106], [218, 91, 105], [219, 92, 104], [220, 93, 103], [221, 94, 102], [222, 95, 101], [222, 97, 100], [223, 98, 99], [224, 99, 99], [225, 100, 98], [226, 101, 97], [226, 102, 96], [227, 104, 95], [228, 105, 94], [229, 106, 93], [229, 107, 93], [230, 108, 92], [231, 110, 91], [231, 111, 90], [232, 112, 89], [233, 113, 88], [233, 114, 87], [234, 116, 87], [235, 117, 86], [235, 118, 85], [236, 119, 84], [237, 121, 83], [237, 122, 82], [238, 123, 81], [239, 124, 81], [239, 126, 80], [240, 127, 79], [240, 128, 78], [241, 129, 77], [241, 131, 76], [242, 132, 75], [243, 133, 75], [243, 135, 74], [244, 136, 73], [244, 137, 72], [245, 139, 71], [245, 140, 70], [246, 141, 69], [246, 143, 68], [247, 144, 68], [247, 145, 67], [247, 147, 66], [248, 148, 65], [248, 149, 64], [249, 151, 63], [249, 152, 62], [249, 154, 62], [250, 155, 61], [250, 156, 60], [250, 158, 59], [251, 159, 58], [251, 161, 57], [251, 162, 56], [252, 163, 56], [252, 165, 55], [252, 166, 54], [252, 168, 53], [252, 169, 52], [253, 171, 51], [253, 172, 51], [253, 174, 50], [253, 175, 49], [253, 177, 48], [253, 178, 47], [253, 180, 47], [253, 181, 46], [254, 183, 45], [254, 184, 44], [254, 186, 44], [254, 187, 43], [254, 189, 42], [254, 190, 42], [254, 192, 41], [253, 194, 41], [253, 195, 40], [253, 197, 39], [253, 198, 39], [253, 200, 39], [253, 202, 38], [253, 203, 38], [252, 205, 37], [252, 206, 37], [252, 208, 37], [252, 210, 37], [251, 211, 36], [251, 213, 36], [251, 215, 36], [250, 216, 36], [250, 218, 36], [249, 220, 36], [249, 221, 37], [248, 223, 37], [248, 225, 37], [247, 226, 37], [247, 228, 37], [246, 230, 38], [246, 232, 38], [245, 233, 38], [245, 235, 39], [244, 237, 39], [243, 238, 39], [243, 240, 39], [242, 242, 39], [241, 244, 38], [241, 245, 37], [240, 247, 36], [240, 249, 33]]\nvar rainbow = [[128, 0, 255], [126, 3, 255], [124, 6, 255], [122, 9, 255], [120, 13, 255], [118, 16, 255], [116, 19, 255], [114, 22, 255], [112, 25, 255], [110, 28, 255], [108, 31, 255], [106, 34, 254], [104, 38, 254], [102, 41, 254], [100, 44, 254], [98, 47, 254], [96, 50, 254], [94, 53, 254], [92, 56, 253], [90, 59, 253], [88, 62, 253], [86, 65, 253], [84, 68, 253], [82, 71, 252], [80, 74, 252], [78, 77, 252], [76, 80, 252], [74, 83, 251], [72, 86, 251], [70, 89, 251], [68, 92, 251], [66, 95, 250], [64, 98, 250], [62, 101, 250], [60, 104, 249], [57, 107, 249], [56, 109, 249], [54, 112, 248], [52, 115, 248], [49, 118, 248], [48, 121, 247], [46, 123, 247], [44, 126, 247], [41, 129, 246], [40, 132, 246], [38, 134, 245], [36, 137, 245], [33, 140, 244], [32, 142, 244], [30, 145, 243], [28, 147, 243], [25, 150, 243], [24, 152, 242], [22, 155, 242], [20, 157, 241], [17, 160, 241], [16, 162, 240], [14, 165, 239], [12, 167, 239], [9, 169, 238], [8, 172, 238], [6, 174, 237], [4, 176, 237], [1, 179, 236], [0, 181, 235], [2, 183, 235], [4, 185, 234], [7, 187, 234], [8, 190, 233], [10, 192, 232], [13, 194, 232], [15, 196, 231], [16, 198, 230], [18, 200, 230], [20, 202, 229], [23, 203, 228], [24, 205, 228], [26, 207, 227], [29, 209, 226], [31, 211, 225], [32, 213, 225], [34, 214, 224], [36, 216, 223], [39, 218, 222], [40, 219, 222], [42, 221, 221], [45, 222, 220], [47, 224, 219], [48, 225, 218], [50, 227, 218], [52, 228, 217], [55, 230, 216], [56, 231, 215], [58, 232, 214], [61, 234, 213], [63, 235, 213], [64, 236, 212], [66, 237, 211], [68, 238, 210], [70, 239, 209], [72, 241, 208], [74, 242, 207], [77, 243, 206], [78, 243, 205], [80, 244, 204], [82, 245, 203], [84, 246, 203], [86, 247, 202], [88, 248, 201], [90, 248, 200], [93, 249, 199], [94, 250, 198], [96, 250, 197], [98, 251, 196], [100, 251, 195], [102, 252, 194], [104, 252, 193], [106, 253, 192], [109, 253, 191], [110, 254, 190], [112, 254, 188], [114, 254, 187], [116, 254, 186], [118, 255, 185], [120, 255, 184], [122, 255, 183], [125, 255, 182], [126, 255, 181], [128, 255, 180], [130, 255, 179], [132, 255, 178], [134, 255, 176], [136, 255, 175], [139, 254, 174], [140, 254, 173], [142, 254, 172], [144, 254, 171], [146, 253, 169], [148, 253, 168], [150, 252, 167], [153, 252, 166], [155, 251, 165], [156, 251, 164], [158, 250, 162], [160, 250, 161], [162, 249, 160], [164, 248, 159], [166, 248, 157], [168, 247, 156], [171, 246, 155], [172, 245, 154], [174, 244, 152], [176, 243, 151], [178, 243, 150], [180, 242, 149], [182, 241, 147], [185, 239, 146], [187, 238, 145], [188, 237, 143], [190, 236, 142], [192, 235, 141], [194, 234, 140], [196, 232, 138], [198, 231, 137], [200, 230, 136], [203, 228, 134], [204, 227, 133], [206, 225, 132], [208, 224, 130], [210, 222, 129], [212, 221, 128], [214, 219, 126], [217, 218, 125], [219, 216, 123], [220, 214, 122], [222, 213, 121], [224, 211, 119], [226, 209, 118], [228, 207, 116], [230, 205, 115], [232, 203, 114], [235, 202, 112], [236, 200, 111], [238, 198, 109], [240, 196, 108], [242, 194, 107], [244, 192, 105], [246, 190, 104], [249, 187, 102], [251, 185, 101], [252, 183, 99], [254, 181, 98], [255, 179, 96], [255, 176, 95], [255, 174, 94], [255, 172, 92], [255, 169, 91], [255, 167, 89], [255, 165, 88], [255, 162, 86], [255, 160, 85], [255, 157, 83], [255, 155, 82], [255, 152, 80], [255, 150, 79], [255, 147, 77], [255, 145, 76], [255, 142, 74], [255, 140, 73], [255, 137, 71], [255, 134, 70], [255, 132, 68], [255, 129, 67], [255, 126, 65], [255, 123, 64], [255, 121, 62], [255, 118, 61], [255, 115, 59], [255, 112, 58], [255, 109, 56], [255, 107, 55], [255, 104, 53], [255, 101, 51], [255, 98, 50], [255, 95, 48], [255, 92, 47], [255, 89, 45], [255, 86, 44], [255, 83, 42], [255, 80, 41], [255, 77, 39], [255, 74, 38], [255, 71, 36], [255, 68, 34], [255, 65, 33], [255, 62, 31], [255, 59, 30], [255, 56, 28], [255, 53, 27], [255, 50, 25], [255, 47, 24], [255, 44, 22], [255, 41, 20], [255, 38, 19], [255, 34, 17], [255, 31, 16], [255, 28, 14], [255, 25, 13], [255, 22, 11], [255, 19, 9], [255, 16, 8], [255, 13, 6], [255, 9, 5], [255, 6, 3], [255, 3, 2], [255, 0, 0]]\nvar ocean = [[0, 128, 0], [0, 126, 1], [0, 124, 2], [0, 123, 3], [0, 122, 4], [0, 120, 5], [0, 118, 6], [0, 117, 7], [0, 116, 8], [0, 114, 9], [0, 112, 10], [0, 111, 11], [0, 110, 12], [0, 108, 13], [0, 106, 14], [0, 105, 15], [0, 104, 16], [0, 102, 17], [0, 100, 18], [0, 99, 19], [0, 98, 20], [0, 96, 21], [0, 94, 22], [0, 93, 23], [0, 92, 24], [0, 90, 25], [0, 88, 26], [0, 87, 27], [0, 86, 28], [0, 84, 29], [0, 82, 30], [0, 81, 31], [0, 80, 32], [0, 78, 33], [0, 76, 34], [0, 75, 35], [0, 74, 36], [0, 72, 37], [0, 70, 38], [0, 69, 39], [0, 68, 40], [0, 66, 41], [0, 64, 42], [0, 63, 43], [0, 62, 44], [0, 60, 45], [0, 59, 46], [0, 57, 47], [0, 56, 48], [0, 54, 49], [0, 52, 50], [0, 51, 51], [0, 49, 52], [0, 48, 53], [0, 47, 54], [0, 45, 55], [0, 44, 56], [0, 42, 57], [0, 40, 58], [0, 39, 59], [0, 38, 60], [0, 36, 61], [0, 35, 62], [0, 33, 63], [0, 32, 64], [0, 30, 65], [0, 29, 66], [0, 27, 67], [0, 25, 68], [0, 24, 69], [0, 22, 70], [0, 21, 71], [0, 20, 72], [0, 18, 73], [0, 17, 74], [0, 15, 75], [0, 14, 76], [0, 12, 77], [0, 10, 78], [0, 9, 79], [0, 8, 80], [0, 6, 81], [0, 5, 82], [0, 3, 83], [0, 1, 84], [0, 0, 85], [0, 1, 86], [0, 3, 87], [0, 4, 88], [0, 6, 89], [0, 7, 90], [0, 9, 91], [0, 10, 92], [0, 12, 93], [0, 14, 94], [0, 15, 95], [0, 16, 96], [0, 18, 97], [0, 19, 98], [0, 21, 99], [0, 23, 100], [0, 24, 101], [0, 26, 102], [0, 27, 103], [0, 29, 104], [0, 30, 105], [0, 32, 106], [0, 33, 107], [0, 34, 108], [0, 36, 109], [0, 38, 110], [0, 39, 111], [0, 40, 112], [0, 42, 113], [0, 43, 114], [0, 45, 115], [0, 47, 116], [0, 48, 117], [0, 49, 118], [0, 51, 119], [0, 52, 120], [0, 54, 121], [0, 55, 122], [0, 57, 123], [0, 58, 124], [0, 60, 125], [0, 62, 126], [0, 63, 127], [0, 64, 128], [0, 66, 129], [0, 67, 130], [0, 69, 131], [0, 70, 132], [0, 72, 133], [0, 74, 134], [0, 75, 135], [0, 77, 136], [0, 78, 137], [0, 80, 138], [0, 81, 139], [0, 83, 140], [0, 84, 141], [0, 86, 142], [0, 87, 143], [0, 88, 144], [0, 90, 145], [0, 91, 146], [0, 93, 147], [0, 94, 148], [0, 96, 149], [0, 98, 150], [0, 99, 151], [0, 100, 152], [0, 102, 153], [0, 103, 154], [0, 105, 155], [0, 107, 156], [0, 108, 157], [0, 110, 158], [0, 111, 159], [0, 112, 160], [0, 114, 161], [0, 115, 162], [0, 117, 163], [0, 118, 164], [0, 120, 165], [0, 122, 166], [0, 123, 167], [0, 125, 168], [0, 126, 169], [0, 128, 170], [3, 129, 171], [6, 130, 172], [9, 132, 173], [12, 133, 174], [15, 135, 175], [18, 136, 176], [21, 138, 177], [24, 139, 178], [27, 141, 179], [30, 142, 180], [33, 144, 181], [36, 146, 182], [39, 147, 183], [42, 148, 184], [45, 150, 185], [48, 151, 186], [51, 153, 187], [54, 155, 188], [57, 156, 189], [60, 158, 190], [63, 159, 191], [66, 160, 192], [69, 162, 193], [72, 163, 194], [75, 165, 195], [78, 166, 196], [81, 168, 197], [84, 170, 198], [87, 171, 199], [90, 172, 200], [93, 174, 201], [96, 176, 202], [99, 177, 203], [102, 179, 204], [105, 180, 205], [108, 182, 206], [111, 183, 207], [114, 185, 208], [117, 186, 209], [120, 188, 210], [123, 189, 211], [126, 190, 212], [129, 192, 213], [132, 194, 214], [135, 195, 215], [138, 196, 216], [141, 198, 217], [144, 199, 218], [147, 201, 219], [150, 203, 220], [153, 204, 221], [156, 206, 222], [159, 207, 223], [162, 208, 224], [165, 210, 225], [168, 211, 226], [171, 213, 227], [174, 214, 228], [177, 216, 229], [180, 218, 230], [183, 219, 231], [186, 220, 232], [189, 222, 233], [192, 224, 234], [195, 225, 235], [198, 226, 236], [201, 228, 237], [204, 229, 238], [207, 231, 239], [210, 232, 240], [213, 234, 241], [216, 235, 242], [219, 237, 243], [222, 238, 244], [225, 240, 245], [228, 242, 246], [231, 243, 247], [234, 244, 248], [237, 246, 249], [240, 247, 250], [243, 249, 251], [246, 251, 252], [249, 252, 253], [252, 254, 254], [255, 255, 255]]\n\n \nvar colormaps = [turbo, fosphor, viridis, inferno, magma, jet, binary, plasma, rainbow, ocean];\n"
  },
  {
    "path": "freedata_gui/src/assets/waterfall/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\" />\n    <meta name=\"author\" content=\"Jeppe Ledet-Pedersen\" />\n    <title>Spectrum Plot</title>\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\" />\n  </head>\n\n  <body>\n    <canvas id=\"waterfall\"></canvas>\n    <script src=\"colormap.js\"></script>\n    <script src=\"spectrum.js\"></script>\n    <script src=\"script.js\"></script>\n  </body>\n</html>\n"
  },
  {
    "path": "freedata_gui/src/assets/waterfall/make_colormap.py",
    "content": "#!/usr/bin/env python\n\nimport matplotlib.pyplot as plt\n\ncolormaps = ('viridis', 'inferno', 'magma', 'jet', 'binary', 'plasma', 'turbo','rainbow', 'ocean')\nfor c in colormaps:\n    cmap_name = c\n    cmap = plt.get_cmap(cmap_name)\n\n    colors = [[int(round(255 * x)) for x in cmap(i)[:3]] for i in range(256)]\n    print(f'var {c} = {colors}')\n\nprint(f'var colormaps = [{\", \".join(colormaps)}];')\n"
  },
  {
    "path": "freedata_gui/src/assets/waterfall/spectrum.js",
    "content": "/*\n * Copyright (c) 2019 Jeppe Ledet-Pedersen\n * This software is released under the MIT license.\n * See the LICENSE file for further details.\n */\n\n\"use strict\";\n\nSpectrum.prototype.squeeze = function (value, out_min, out_max) {\n  if (value <= this.min_db) return out_min;\n  else if (value >= this.max_db) return out_max;\n  else\n    return Math.round(\n      ((value - this.min_db) / (this.max_db - this.min_db)) * out_max\n    );\n};\n\nSpectrum.prototype.rowToImageData = function (bins) {\n  for (var i = 0; i < this.imagedata.data.length; i += 4) {\n    var cindex = this.squeeze(bins[i / 4], 0, 255);\n    var color = this.colormap[cindex];\n    this.imagedata.data[i + 0] = color[0];\n    this.imagedata.data[i + 1] = color[1];\n    this.imagedata.data[i + 2] = color[2];\n    this.imagedata.data[i + 3] = 255;\n  }\n};\n\nSpectrum.prototype.addWaterfallRow = function (bins) {\n  // Shift waterfall 1 row down\n  this.ctx_wf.drawImage(\n    this.ctx_wf.canvas,\n    0,\n    0,\n    this.wf_size,\n    this.wf_rows - 1,\n    0,\n    1,\n    this.wf_size,\n    this.wf_rows - 1\n  );\n\n  // Draw new line on waterfall canvas\n  this.rowToImageData(bins);\n  this.ctx_wf.putImageData(this.imagedata, 0, 0);\n\n  var width = this.ctx.canvas.width;\n  var height = this.ctx.canvas.height;\n\n  // Copy scaled FFT canvas to screen. Only copy the number of rows that will\n  // fit in waterfall area to avoid vertical scaling.\n  this.ctx.imageSmoothingEnabled = false;\n  var rows = Math.min(this.wf_rows, height - this.spectrumHeight);\n  this.ctx.drawImage(\n    this.ctx_wf.canvas,\n    0,\n    0,\n    this.wf_size,\n    rows,\n    0,\n    this.spectrumHeight,\n    width,\n    height - this.spectrumHeight\n  );\n};\n\nSpectrum.prototype.drawFFT = function (bins) {\n  this.ctx.beginPath();\n  this.ctx.moveTo(-1, this.spectrumHeight + 1);\n  for (var i = 0; i < bins.length; i++) {\n    var y = this.spectrumHeight - this.squeeze(bins[i], 0, this.spectrumHeight);\n    if (y > this.spectrumHeight - 1) y = this.spectrumHeight + 1; // Hide underflow\n    if (y < 0) y = 0;\n    if (i == 0) this.ctx.lineTo(-1, y);\n    this.ctx.lineTo(i, y);\n    if (i == bins.length - 1) this.ctx.lineTo(this.wf_size + 1, y);\n  }\n  this.ctx.lineTo(this.wf_size + 1, this.spectrumHeight + 1);\n  this.ctx.strokeStyle = \"#fefefe\";\n  this.ctx.stroke();\n};\n\n//Spectrum.prototype.drawSpectrum = function(bins) {\nSpectrum.prototype.drawSpectrum = function () {\n  var width = this.ctx.canvas.width;\n  var height = this.ctx.canvas.height;\n\n  // Modification by DJ2LS\n  // Draw bandwidth lines\n  // TODO: Math not correct. But a first attempt\n  // it seems position is more or less equal to frequenzy by factor 10\n  // eg. position 150 == 1500Hz\n  /*\n    // CENTER LINE\n    this.ctx_wf.beginPath();\n    this.ctx_wf.moveTo(150,0);\n    this.ctx_wf.lineTo(150, height);\n    this.ctx_wf.lineWidth = 1;\n    this.ctx_wf.strokeStyle = '#8C8C8C';\n    this.ctx_wf.stroke()\n    */\n\n  // 586Hz and 1700Hz LINES\n  var linePositionLow = 121.6; //150 - bandwith/20\n  var linePositionHigh = 178.4; //150 + bandwidth/20\n  var linePositionLow2 = 65; //150 - bandwith/20\n  var linePositionHigh2 = 235; //150 + bandwith/20\n  var linePositionLow3 = 28.1; //150 - bandwith/20\n  var linePositionHigh3 = 271.9; //150 + bandwith/20\n  this.ctx_wf.beginPath();\n  this.ctx_wf.moveTo(linePositionLow, 0);\n  this.ctx_wf.lineTo(linePositionLow, height);\n  this.ctx_wf.moveTo(linePositionHigh, 0);\n  this.ctx_wf.lineTo(linePositionHigh, height);\n  this.ctx_wf.moveTo(linePositionLow2, 0);\n  this.ctx_wf.lineTo(linePositionLow2, height);\n  this.ctx_wf.moveTo(linePositionHigh2, 0);\n  this.ctx_wf.lineTo(linePositionHigh2, height);\n  this.ctx_wf.moveTo(linePositionLow3, 0);\n  this.ctx_wf.lineTo(linePositionLow3, height);\n  this.ctx_wf.moveTo(linePositionHigh3, 0);\n  this.ctx_wf.lineTo(linePositionHigh3, height);\n  this.ctx_wf.lineWidth = 1;\n  this.ctx_wf.strokeStyle = \"#C3C3C3\";\n  this.ctx_wf.stroke();\n\n  // ---- END OF MODIFICATION ------\n\n  // Fill with black\n  this.ctx.fillStyle = \"white\";\n  this.ctx.fillRect(0, 0, width, height);\n\n  //Commenting out the remainder of this code, it's not needed and unused as of 6.9.11 and saves three if statements\n  return;\n  /*\n    // FFT averaging\n    if (this.averaging > 0) {\n        if (!this.binsAverage || this.binsAverage.length != bins.length) {\n            this.binsAverage = Array.from(bins);\n        } else {\n            for (var i = 0; i < bins.length; i++) {\n                this.binsAverage[i] += this.alpha * (bins[i] - this.binsAverage[i]);\n            }\n        }\n        bins = this.binsAverage;\n    }\n\n    // Max hold\n    if (this.maxHold) {\n        if (!this.binsMax || this.binsMax.length != bins.length) {\n            this.binsMax = Array.from(bins);\n        } else {\n            for (var i = 0; i < bins.length; i++) {\n                if (bins[i] > this.binsMax[i]) {\n                    this.binsMax[i] = bins[i];\n                } else {\n                    // Decay\n                    this.binsMax[i] = 1.0025 * this.binsMax[i];\n                }\n            }\n        }\n    }\n\n    // Do not draw anything if spectrum is not visible\n    if (this.ctx_axes.canvas.height < 1)\n        return;\n\n    // Scale for FFT\n    this.ctx.save();\n    this.ctx.scale(width / this.wf_size, 1);\n\n    // Draw maxhold\n    if (this.maxHold)\n        this.drawFFT(this.binsMax);\n\n    // Draw FFT bins\n    this.drawFFT(bins);\n\n    // Restore scale\n    this.ctx.restore();\n\n    // Fill scaled path\n    this.ctx.fillStyle = this.gradient;\n    this.ctx.fill();\n\n    // Copy axes from offscreen canvas\n    this.ctx.drawImage(this.ctx_axes.canvas, 0, 0);\n    */\n};\n\n//Allow setting colormap\nSpectrum.prototype.setColorMap = function (index) {\n  this.colormap = colormaps[index];\n};\n\nSpectrum.prototype.updateAxes = function () {\n  var width = this.ctx_axes.canvas.width;\n  var height = this.ctx_axes.canvas.height;\n\n  // Clear axes canvas\n  this.ctx_axes.clearRect(0, 0, width, height);\n\n  // Draw axes\n  this.ctx_axes.font = \"12px sans-serif\";\n  this.ctx_axes.fillStyle = \"white\";\n  this.ctx_axes.textBaseline = \"middle\";\n\n  this.ctx_axes.textAlign = \"left\";\n  var step = 10;\n  for (var i = this.min_db + 10; i <= this.max_db - 10; i += step) {\n    var y = height - this.squeeze(i, 0, height);\n    this.ctx_axes.fillText(i, 5, y);\n\n    this.ctx_axes.beginPath();\n    this.ctx_axes.moveTo(20, y);\n    this.ctx_axes.lineTo(width, y);\n    this.ctx_axes.strokeStyle = \"rgba(200, 200, 200, 0.10)\";\n    this.ctx_axes.stroke();\n  }\n\n  this.ctx_axes.textBaseline = \"bottom\";\n  for (let i = 0; i < 11; i++) {\n    var x = Math.round(width / 10) * i;\n\n    if (this.spanHz > 0) {\n      var adjust = 0;\n      if (i == 0) {\n        this.ctx_axes.textAlign = \"left\";\n        adjust = 3;\n      } else if (i == 10) {\n        this.ctx_axes.textAlign = \"right\";\n        adjust = -3;\n      } else {\n        this.ctx_axes.textAlign = \"center\";\n      }\n\n      var freq = this.centerHz + (this.spanHz / 10) * (i - 5);\n      if (this.centerHz + this.spanHz > 1e6) freq = freq / 1e6 + \"M\";\n      else if (this.centerHz + this.spanHz > 1e3) freq = freq / 1e3 + \"k\";\n      this.ctx_axes.fillText(freq, x + adjust, height - 3);\n    }\n\n    this.ctx_axes.beginPath();\n    this.ctx_axes.moveTo(x, 0);\n    this.ctx_axes.lineTo(x, height);\n    this.ctx_axes.strokeStyle = \"rgba(200, 200, 200, 0.10)\";\n    this.ctx_axes.stroke();\n  }\n};\n\nSpectrum.prototype.addData = function (data) {\n  if (!this.paused) {\n    if (data.length != this.wf_size) {\n      this.wf_size = data.length;\n      this.ctx_wf.canvas.width = data.length;\n      this.ctx_wf.fillStyle = \"white\";\n      this.ctx_wf.fillRect(0, 0, this.wf.width, this.wf.height);\n      this.imagedata = this.ctx_wf.createImageData(data.length, 1);\n    }\n    //this.drawSpectrum(data);\n    this.drawSpectrum();\n    this.addWaterfallRow(data);\n    this.resize();\n  }\n};\n\nSpectrum.prototype.updateSpectrumRatio = function () {\n  this.spectrumHeight = Math.round(\n    (this.canvas.height * this.spectrumPercent) / 100.0\n  );\n\n  this.gradient = this.ctx.createLinearGradient(0, 0, 0, this.spectrumHeight);\n  for (var i = 0; i < this.colormap.length; i++) {\n    var c = this.colormap[this.colormap.length - 1 - i];\n    this.gradient.addColorStop(\n      i / this.colormap.length,\n      \"rgba(\" + c[0] + \",\" + c[1] + \",\" + c[2] + \", 1.0)\"\n    );\n  }\n};\n\nSpectrum.prototype.resize = function () {\n  var width = this.parent.clientWidth;\n  var height =this.parent.clientHeight;\n  // little helper for setting height of clientHeight is not working as expected\n  if (height == 0){\n    height = 250\n\n  }\n  if (width == 0){\n    width=500;\n  }\n\n  if (this.canvas.width != width || this.canvas.height != height) {\n    this.canvas.width = width;\n    this.canvas.height = height;\n    this.updateSpectrumRatio();\n  }\n\n  if (this.axes.width != width || this.axes.height != this.spectrumHeight) {\n    this.axes.width = width;\n    this.axes.height = this.spectrumHeight;\n    this.updateAxes();\n  }\n};\n\nSpectrum.prototype.setSpectrumPercent = function (percent) {\n  if (percent >= 0 && percent <= 100) {\n    this.spectrumPercent = percent;\n    this.updateSpectrumRatio();\n  }\n};\n\nSpectrum.prototype.incrementSpectrumPercent = function () {\n  if (this.spectrumPercent + this.spectrumPercentStep <= 100) {\n    this.setSpectrumPercent(this.spectrumPercent + this.spectrumPercentStep);\n  }\n};\n\nSpectrum.prototype.decrementSpectrumPercent = function () {\n  if (this.spectrumPercent - this.spectrumPercentStep >= 0) {\n    this.setSpectrumPercent(this.spectrumPercent - this.spectrumPercentStep);\n  }\n};\n\nSpectrum.prototype.toggleColor = function () {\n  this.colorindex++;\n  if (this.colorindex >= colormaps.length) this.colorindex = 0;\n  this.colormap = colormaps[this.colorindex];\n  this.updateSpectrumRatio();\n};\n\nSpectrum.prototype.setRange = function (min_db, max_db) {\n  this.min_db = min_db;\n  this.max_db = max_db;\n  this.updateAxes();\n};\n\nSpectrum.prototype.rangeUp = function () {\n  this.setRange(this.min_db - 5, this.max_db - 5);\n};\n\nSpectrum.prototype.rangeDown = function () {\n  this.setRange(this.min_db + 5, this.max_db + 5);\n};\n\nSpectrum.prototype.rangeIncrease = function () {\n  this.setRange(this.min_db - 5, this.max_db + 5);\n};\n\nSpectrum.prototype.rangeDecrease = function () {\n  if (this.max_db - this.min_db > 10)\n    this.setRange(this.min_db + 5, this.max_db - 5);\n};\n\nSpectrum.prototype.setCenterHz = function (hz) {\n  this.centerHz = hz;\n  this.updateAxes();\n};\n\nSpectrum.prototype.setSpanHz = function (hz) {\n  this.spanHz = hz;\n  this.updateAxes();\n};\n\nSpectrum.prototype.setAveraging = function (num) {\n  if (num >= 0) {\n    this.averaging = num;\n    this.alpha = 2 / (this.averaging + 1);\n  }\n};\n\nSpectrum.prototype.incrementAveraging = function () {\n  this.setAveraging(this.averaging + 1);\n};\n\nSpectrum.prototype.decrementAveraging = function () {\n  if (this.averaging > 0) {\n    this.setAveraging(this.averaging - 1);\n  }\n};\n\nSpectrum.prototype.setPaused = function (paused) {\n  this.paused = paused;\n};\n\nSpectrum.prototype.togglePaused = function () {\n  this.setPaused(!this.paused);\n};\n\nSpectrum.prototype.setMaxHold = function (maxhold) {\n  this.maxHold = maxhold;\n  this.binsMax = undefined;\n};\n\nSpectrum.prototype.toggleMaxHold = function () {\n  this.setMaxHold(!this.maxHold);\n};\n\nSpectrum.prototype.toggleFullscreen = function () {\n  if (!this.fullscreen) {\n    if (this.canvas.requestFullscreen) {\n      this.canvas.requestFullscreen();\n    } else if (this.canvas.mozRequestFullScreen) {\n      this.canvas.mozRequestFullScreen();\n    } else if (this.canvas.webkitRequestFullscreen) {\n      this.canvas.webkitRequestFullscreen();\n    } else if (this.canvas.msRequestFullscreen) {\n      this.canvas.msRequestFullscreen();\n    }\n    this.fullscreen = true;\n  } else {\n    if (document.exitFullscreen) {\n      document.exitFullscreen();\n    } else if (document.mozCancelFullScreen) {\n      document.mozCancelFullScreen();\n    } else if (document.webkitExitFullscreen) {\n      document.webkitExitFullscreen();\n    } else if (document.msExitFullscreen) {\n      document.msExitFullscreen();\n    }\n    this.fullscreen = false;\n  }\n};\n\nSpectrum.prototype.onKeypress = function (e) {\n  if (e.key == \" \") {\n    this.togglePaused();\n  } else if (e.key == \"f\") {\n    this.toggleFullscreen();\n  } else if (e.key == \"c\") {\n    this.toggleColor();\n  } else if (e.key == \"ArrowUp\") {\n    this.rangeUp();\n  } else if (e.key == \"ArrowDown\") {\n    this.rangeDown();\n  } else if (e.key == \"ArrowLeft\") {\n    this.rangeDecrease();\n  } else if (e.key == \"ArrowRight\") {\n    this.rangeIncrease();\n  } else if (e.key == \"s\") {\n    this.incrementSpectrumPercent();\n  } else if (e.key == \"w\") {\n    this.decrementSpectrumPercent();\n  } else if (e.key == \"+\") {\n    this.incrementAveraging();\n  } else if (e.key == \"-\") {\n    this.decrementAveraging();\n  } else if (e.key == \"m\") {\n    this.toggleMaxHold();\n  }\n};\n\nexport function Spectrum(id, options) {\n\n  //  console.log(\"waterfall init....\")\n  //console.log(document.getElementById(id))\n\n  // Handle options\n  this.centerHz = options && options.centerHz ? options.centerHz : 1500;\n  this.spanHz = options && options.spanHz ? options.spanHz : 0;\n  this.wf_size = options && options.wf_size ? options.wf_size : 0;\n  this.wf_rows = options && options.wf_rows ? options.wf_rows : 512;\n  this.spectrumPercent =\n    options && options.spectrumPercent ? options.spectrumPercent : 0;\n  this.spectrumPercentStep =\n    options && options.spectrumPercentStep ? options.spectrumPercentStep : 0;\n  this.averaging = options && options.averaging ? options.averaging : 0;\n  this.maxHold = options && options.maxHold ? options.maxHold : false;\n\n  // Setup state\n  this.paused = false;\n  this.fullscreen = false;\n  this.min_db = 0;\n  this.max_db = 70;\n  this.spectrumHeight = 0;\n\n  // Colors\n  this.colorindex = 0;\n  this.colormap = colormaps[1];\n\n  // Create main canvas and adjust dimensions to match actual\n  this.canvas = document.getElementById(id);\n  this.parent = this.canvas.parentElement;\n  this.canvas.height = this.canvas.clientHeight;\n  this.canvas.width = this.canvas.clientWidth;\n\n  this.ctx = this.canvas.getContext(\"2d\");\n  this.ctx.fillStyle = \"white\";\n  this.ctx.fillRect(0, 0, this.canvas.width, this.canvas.height);\n\n  // Create offscreen canvas for axes\n  this.axes = document.createElement(\"canvas\");\n  this.axes.height = 1; // Updated later\n  this.axes.width = this.canvas.width;\n  this.ctx_axes = this.axes.getContext(\"2d\");\n\n  // Create offscreen canvas for waterfall\n  this.wf = document.createElement(\"canvas\");\n  this.wf.height = this.wf_rows;\n  this.wf.width = this.wf_size;\n  this.ctx_wf = this.wf.getContext(\"2d\");\n\n  // Trigger first render\n  this.setAveraging(this.averaging);\n  this.updateSpectrumRatio();\n  this.resize();\n}\n\n\n\nvar turbo = [\n  [48, 18, 59],\n  [50, 21, 67],\n  [51, 24, 74],\n  [52, 27, 81],\n  [53, 30, 88],\n  [54, 33, 95],\n  [55, 36, 102],\n  [56, 39, 109],\n  [57, 42, 115],\n  [58, 45, 121],\n  [59, 47, 128],\n  [60, 50, 134],\n  [61, 53, 139],\n  [62, 56, 145],\n  [63, 59, 151],\n  [63, 62, 156],\n  [64, 64, 162],\n  [65, 67, 167],\n  [65, 70, 172],\n  [66, 73, 177],\n  [66, 75, 181],\n  [67, 78, 186],\n  [68, 81, 191],\n  [68, 84, 195],\n  [68, 86, 199],\n  [69, 89, 203],\n  [69, 92, 207],\n  [69, 94, 211],\n  [70, 97, 214],\n  [70, 100, 218],\n  [70, 102, 221],\n  [70, 105, 224],\n  [70, 107, 227],\n  [71, 110, 230],\n  [71, 113, 233],\n  [71, 115, 235],\n  [71, 118, 238],\n  [71, 120, 240],\n  [71, 123, 242],\n  [70, 125, 244],\n  [70, 128, 246],\n  [70, 130, 248],\n  [70, 133, 250],\n  [70, 135, 251],\n  [69, 138, 252],\n  [69, 140, 253],\n  [68, 143, 254],\n  [67, 145, 254],\n  [66, 148, 255],\n  [65, 150, 255],\n  [64, 153, 255],\n  [62, 155, 254],\n  [61, 158, 254],\n  [59, 160, 253],\n  [58, 163, 252],\n  [56, 165, 251],\n  [55, 168, 250],\n  [53, 171, 248],\n  [51, 173, 247],\n  [49, 175, 245],\n  [47, 178, 244],\n  [46, 180, 242],\n  [44, 183, 240],\n  [42, 185, 238],\n  [40, 188, 235],\n  [39, 190, 233],\n  [37, 192, 231],\n  [35, 195, 228],\n  [34, 197, 226],\n  [32, 199, 223],\n  [31, 201, 221],\n  [30, 203, 218],\n  [28, 205, 216],\n  [27, 208, 213],\n  [26, 210, 210],\n  [26, 212, 208],\n  [25, 213, 205],\n  [24, 215, 202],\n  [24, 217, 200],\n  [24, 219, 197],\n  [24, 221, 194],\n  [24, 222, 192],\n  [24, 224, 189],\n  [25, 226, 187],\n  [25, 227, 185],\n  [26, 228, 182],\n  [28, 230, 180],\n  [29, 231, 178],\n  [31, 233, 175],\n  [32, 234, 172],\n  [34, 235, 170],\n  [37, 236, 167],\n  [39, 238, 164],\n  [42, 239, 161],\n  [44, 240, 158],\n  [47, 241, 155],\n  [50, 242, 152],\n  [53, 243, 148],\n  [56, 244, 145],\n  [60, 245, 142],\n  [63, 246, 138],\n  [67, 247, 135],\n  [70, 248, 132],\n  [74, 248, 128],\n  [78, 249, 125],\n  [82, 250, 122],\n  [85, 250, 118],\n  [89, 251, 115],\n  [93, 252, 111],\n  [97, 252, 108],\n  [101, 253, 105],\n  [105, 253, 102],\n  [109, 254, 98],\n  [113, 254, 95],\n  [117, 254, 92],\n  [121, 254, 89],\n  [125, 255, 86],\n  [128, 255, 83],\n  [132, 255, 81],\n  [136, 255, 78],\n  [139, 255, 75],\n  [143, 255, 73],\n  [146, 255, 71],\n  [150, 254, 68],\n  [153, 254, 66],\n  [156, 254, 64],\n  [159, 253, 63],\n  [161, 253, 61],\n  [164, 252, 60],\n  [167, 252, 58],\n  [169, 251, 57],\n  [172, 251, 56],\n  [175, 250, 55],\n  [177, 249, 54],\n  [180, 248, 54],\n  [183, 247, 53],\n  [185, 246, 53],\n  [188, 245, 52],\n  [190, 244, 52],\n  [193, 243, 52],\n  [195, 241, 52],\n  [198, 240, 52],\n  [200, 239, 52],\n  [203, 237, 52],\n  [205, 236, 52],\n  [208, 234, 52],\n  [210, 233, 53],\n  [212, 231, 53],\n  [215, 229, 53],\n  [217, 228, 54],\n  [219, 226, 54],\n  [221, 224, 55],\n  [223, 223, 55],\n  [225, 221, 55],\n  [227, 219, 56],\n  [229, 217, 56],\n  [231, 215, 57],\n  [233, 213, 57],\n  [235, 211, 57],\n  [236, 209, 58],\n  [238, 207, 58],\n  [239, 205, 58],\n  [241, 203, 58],\n  [242, 201, 58],\n  [244, 199, 58],\n  [245, 197, 58],\n  [246, 195, 58],\n  [247, 193, 58],\n  [248, 190, 57],\n  [249, 188, 57],\n  [250, 186, 57],\n  [251, 184, 56],\n  [251, 182, 55],\n  [252, 179, 54],\n  [252, 177, 54],\n  [253, 174, 53],\n  [253, 172, 52],\n  [254, 169, 51],\n  [254, 167, 50],\n  [254, 164, 49],\n  [254, 161, 48],\n  [254, 158, 47],\n  [254, 155, 45],\n  [254, 153, 44],\n  [254, 150, 43],\n  [254, 147, 42],\n  [254, 144, 41],\n  [253, 141, 39],\n  [253, 138, 38],\n  [252, 135, 37],\n  [252, 132, 35],\n  [251, 129, 34],\n  [251, 126, 33],\n  [250, 123, 31],\n  [249, 120, 30],\n  [249, 117, 29],\n  [248, 114, 28],\n  [247, 111, 26],\n  [246, 108, 25],\n  [245, 105, 24],\n  [244, 102, 23],\n  [243, 99, 21],\n  [242, 96, 20],\n  [241, 93, 19],\n  [240, 91, 18],\n  [239, 88, 17],\n  [237, 85, 16],\n  [236, 83, 15],\n  [235, 80, 14],\n  [234, 78, 13],\n  [232, 75, 12],\n  [231, 73, 12],\n  [229, 71, 11],\n  [228, 69, 10],\n  [226, 67, 10],\n  [225, 65, 9],\n  [223, 63, 8],\n  [221, 61, 8],\n  [220, 59, 7],\n  [218, 57, 7],\n  [216, 55, 6],\n  [214, 53, 6],\n  [212, 51, 5],\n  [210, 49, 5],\n  [208, 47, 5],\n  [206, 45, 4],\n  [204, 43, 4],\n  [202, 42, 4],\n  [200, 40, 3],\n  [197, 38, 3],\n  [195, 37, 3],\n  [193, 35, 2],\n  [190, 33, 2],\n  [188, 32, 2],\n  [185, 30, 2],\n  [183, 29, 2],\n  [180, 27, 1],\n  [178, 26, 1],\n  [175, 24, 1],\n  [172, 23, 1],\n  [169, 22, 1],\n  [167, 20, 1],\n  [164, 19, 1],\n  [161, 18, 1],\n  [158, 16, 1],\n  [155, 15, 1],\n  [152, 14, 1],\n  [149, 13, 1],\n  [146, 11, 1],\n  [142, 10, 1],\n  [139, 9, 2],\n  [136, 8, 2],\n  [133, 7, 2],\n  [129, 6, 2],\n  [126, 5, 2],\n  [122, 4, 3],\n];\nvar fosphor = [\n  [6, 0, 13],\n  [7, 0, 14],\n  [7, 0, 15],\n  [7, 0, 16],\n  [7, 0, 17],\n  [7, 0, 18],\n  [7, 0, 18],\n  [7, 0, 19],\n  [7, 0, 20],\n  [7, 0, 21],\n  [7, 0, 22],\n  [7, 0, 23],\n  [7, 0, 24],\n  [7, 0, 25],\n  [7, 0, 26],\n  [6, 0, 27],\n  [6, 0, 28],\n  [6, 0, 29],\n  [5, 0, 30],\n  [5, 0, 31],\n  [5, 0, 32],\n  [4, 0, 33],\n  [4, 0, 34],\n  [3, 0, 35],\n  [3, 0, 36],\n  [2, 0, 36],\n  [2, 0, 37],\n  [1, 0, 38],\n  [0, 0, 39],\n  [0, 0, 40],\n  [0, 1, 41],\n  [0, 2, 42],\n  [0, 3, 43],\n  [0, 4, 44],\n  [0, 5, 45],\n  [0, 5, 46],\n  [0, 6, 47],\n  [0, 7, 48],\n  [0, 8, 49],\n  [0, 9, 50],\n  [0, 10, 51],\n  [0, 12, 52],\n  [0, 13, 53],\n  [0, 14, 54],\n  [0, 15, 55],\n  [0, 16, 56],\n  [0, 18, 56],\n  [0, 19, 57],\n  [0, 20, 58],\n  [0, 22, 59],\n  [0, 23, 60],\n  [0, 24, 61],\n  [0, 26, 62],\n  [0, 27, 63],\n  [0, 29, 64],\n  [0, 31, 65],\n  [0, 32, 66],\n  [0, 34, 67],\n  [0, 36, 68],\n  [0, 37, 69],\n  [0, 39, 70],\n  [0, 41, 71],\n  [0, 43, 72],\n  [0, 44, 73],\n  [0, 46, 74],\n  [0, 48, 74],\n  [0, 50, 75],\n  [0, 52, 76],\n  [0, 54, 77],\n  [0, 56, 78],\n  [0, 58, 79],\n  [0, 60, 80],\n  [0, 63, 81],\n  [0, 65, 82],\n  [0, 67, 83],\n  [0, 69, 84],\n  [0, 71, 85],\n  [0, 74, 86],\n  [0, 76, 87],\n  [0, 79, 88],\n  [0, 81, 89],\n  [0, 83, 90],\n  [0, 86, 91],\n  [0, 88, 92],\n  [0, 91, 93],\n  [0, 94, 94],\n  [0, 94, 93],\n  [0, 95, 92],\n  [0, 96, 91],\n  [0, 97, 90],\n  [0, 98, 90],\n  [0, 99, 89],\n  [0, 100, 88],\n  [0, 101, 87],\n  [0, 102, 86],\n  [0, 103, 85],\n  [0, 104, 84],\n  [0, 105, 83],\n  [0, 106, 82],\n  [0, 107, 80],\n  [0, 108, 79],\n  [0, 109, 78],\n  [0, 110, 77],\n  [0, 111, 75],\n  [0, 112, 74],\n  [0, 112, 73],\n  [0, 113, 71],\n  [0, 114, 70],\n  [0, 115, 69],\n  [0, 116, 67],\n  [0, 117, 66],\n  [0, 118, 64],\n  [0, 119, 62],\n  [0, 120, 61],\n  [0, 121, 59],\n  [0, 122, 57],\n  [0, 123, 56],\n  [0, 124, 54],\n  [0, 125, 52],\n  [0, 126, 50],\n  [0, 127, 48],\n  [0, 128, 47],\n  [0, 129, 45],\n  [0, 130, 43],\n  [0, 131, 41],\n  [0, 132, 39],\n  [0, 132, 37],\n  [0, 133, 35],\n  [0, 134, 32],\n  [0, 135, 30],\n  [0, 136, 28],\n  [0, 137, 26],\n  [0, 138, 24],\n  [0, 139, 21],\n  [0, 140, 19],\n  [0, 141, 17],\n  [0, 142, 14],\n  [0, 143, 12],\n  [0, 144, 9],\n  [0, 145, 7],\n  [0, 146, 4],\n  [0, 147, 2],\n  [1, 148, 0],\n  [3, 149, 0],\n  [6, 150, 0],\n  [9, 150, 0],\n  [12, 151, 0],\n  [14, 152, 0],\n  [17, 153, 0],\n  [20, 154, 0],\n  [23, 155, 0],\n  [26, 156, 0],\n  [29, 157, 0],\n  [32, 158, 0],\n  [35, 159, 0],\n  [38, 160, 0],\n  [41, 161, 0],\n  [44, 162, 0],\n  [47, 163, 0],\n  [50, 164, 0],\n  [53, 165, 0],\n  [57, 166, 0],\n  [60, 167, 0],\n  [63, 168, 0],\n  [66, 169, 0],\n  [70, 170, 0],\n  [73, 170, 0],\n  [77, 171, 0],\n  [80, 172, 0],\n  [84, 173, 0],\n  [87, 174, 0],\n  [91, 175, 0],\n  [94, 176, 0],\n  [98, 177, 0],\n  [102, 178, 0],\n  [105, 179, 0],\n  [109, 180, 0],\n  [113, 181, 0],\n  [117, 182, 0],\n  [120, 183, 0],\n  [124, 184, 0],\n  [128, 185, 0],\n  [132, 186, 0],\n  [136, 187, 0],\n  [140, 188, 0],\n  [144, 188, 0],\n  [148, 189, 0],\n  [152, 190, 0],\n  [156, 191, 0],\n  [161, 192, 0],\n  [165, 193, 0],\n  [169, 194, 0],\n  [173, 195, 0],\n  [178, 196, 0],\n  [182, 197, 0],\n  [186, 198, 0],\n  [191, 199, 0],\n  [195, 200, 0],\n  [200, 201, 0],\n  [202, 199, 0],\n  [203, 197, 0],\n  [204, 194, 0],\n  [205, 191, 0],\n  [206, 189, 0],\n  [207, 186, 0],\n  [208, 183, 0],\n  [208, 180, 0],\n  [209, 177, 0],\n  [210, 174, 0],\n  [211, 172, 0],\n  [212, 169, 0],\n  [213, 166, 0],\n  [214, 163, 0],\n  [215, 159, 0],\n  [216, 156, 0],\n  [217, 153, 0],\n  [218, 150, 0],\n  [219, 147, 0],\n  [220, 144, 0],\n  [221, 140, 0],\n  [222, 137, 0],\n  [223, 134, 0],\n  [224, 130, 0],\n  [225, 127, 0],\n  [226, 123, 0],\n  [226, 120, 0],\n  [227, 116, 0],\n  [228, 113, 0],\n  [229, 109, 0],\n  [230, 106, 0],\n  [231, 102, 0],\n  [232, 98, 0],\n  [233, 95, 0],\n  [234, 91, 0],\n  [235, 87, 0],\n  [236, 83, 0],\n  [237, 79, 0],\n  [238, 76, 0],\n  [239, 72, 0],\n  [240, 68, 0],\n  [241, 64, 0],\n  [242, 60, 0],\n  [243, 56, 0],\n  [244, 52, 0],\n  [245, 47, 0],\n  [246, 43, 0],\n  [246, 39, 0],\n  [247, 35, 0],\n  [248, 31, 0],\n  [249, 26, 0],\n  [250, 22, 0],\n  [251, 18, 0],\n  [252, 13, 0],\n  [253, 9, 0],\n  [254, 4, 0],\n  [255, 0, 0],\n];\nvar viridis = [\n  [68, 1, 84],\n  [68, 2, 86],\n  [69, 4, 87],\n  [69, 5, 89],\n  [70, 7, 90],\n  [70, 8, 92],\n  [70, 10, 93],\n  [70, 11, 94],\n  [71, 13, 96],\n  [71, 14, 97],\n  [71, 16, 99],\n  [71, 17, 100],\n  [71, 19, 101],\n  [72, 20, 103],\n  [72, 22, 104],\n  [72, 23, 105],\n  [72, 24, 106],\n  [72, 26, 108],\n  [72, 27, 109],\n  [72, 28, 110],\n  [72, 29, 111],\n  [72, 31, 112],\n  [72, 32, 113],\n  [72, 33, 115],\n  [72, 35, 116],\n  [72, 36, 117],\n  [72, 37, 118],\n  [72, 38, 119],\n  [72, 40, 120],\n  [72, 41, 121],\n  [71, 42, 122],\n  [71, 44, 122],\n  [71, 45, 123],\n  [71, 46, 124],\n  [71, 47, 125],\n  [70, 48, 126],\n  [70, 50, 126],\n  [70, 51, 127],\n  [70, 52, 128],\n  [69, 53, 129],\n  [69, 55, 129],\n  [69, 56, 130],\n  [68, 57, 131],\n  [68, 58, 131],\n  [68, 59, 132],\n  [67, 61, 132],\n  [67, 62, 133],\n  [66, 63, 133],\n  [66, 64, 134],\n  [66, 65, 134],\n  [65, 66, 135],\n  [65, 68, 135],\n  [64, 69, 136],\n  [64, 70, 136],\n  [63, 71, 136],\n  [63, 72, 137],\n  [62, 73, 137],\n  [62, 74, 137],\n  [62, 76, 138],\n  [61, 77, 138],\n  [61, 78, 138],\n  [60, 79, 138],\n  [60, 80, 139],\n  [59, 81, 139],\n  [59, 82, 139],\n  [58, 83, 139],\n  [58, 84, 140],\n  [57, 85, 140],\n  [57, 86, 140],\n  [56, 88, 140],\n  [56, 89, 140],\n  [55, 90, 140],\n  [55, 91, 141],\n  [54, 92, 141],\n  [54, 93, 141],\n  [53, 94, 141],\n  [53, 95, 141],\n  [52, 96, 141],\n  [52, 97, 141],\n  [51, 98, 141],\n  [51, 99, 141],\n  [50, 100, 142],\n  [50, 101, 142],\n  [49, 102, 142],\n  [49, 103, 142],\n  [49, 104, 142],\n  [48, 105, 142],\n  [48, 106, 142],\n  [47, 107, 142],\n  [47, 108, 142],\n  [46, 109, 142],\n  [46, 110, 142],\n  [46, 111, 142],\n  [45, 112, 142],\n  [45, 113, 142],\n  [44, 113, 142],\n  [44, 114, 142],\n  [44, 115, 142],\n  [43, 116, 142],\n  [43, 117, 142],\n  [42, 118, 142],\n  [42, 119, 142],\n  [42, 120, 142],\n  [41, 121, 142],\n  [41, 122, 142],\n  [41, 123, 142],\n  [40, 124, 142],\n  [40, 125, 142],\n  [39, 126, 142],\n  [39, 127, 142],\n  [39, 128, 142],\n  [38, 129, 142],\n  [38, 130, 142],\n  [38, 130, 142],\n  [37, 131, 142],\n  [37, 132, 142],\n  [37, 133, 142],\n  [36, 134, 142],\n  [36, 135, 142],\n  [35, 136, 142],\n  [35, 137, 142],\n  [35, 138, 141],\n  [34, 139, 141],\n  [34, 140, 141],\n  [34, 141, 141],\n  [33, 142, 141],\n  [33, 143, 141],\n  [33, 144, 141],\n  [33, 145, 140],\n  [32, 146, 140],\n  [32, 146, 140],\n  [32, 147, 140],\n  [31, 148, 140],\n  [31, 149, 139],\n  [31, 150, 139],\n  [31, 151, 139],\n  [31, 152, 139],\n  [31, 153, 138],\n  [31, 154, 138],\n  [30, 155, 138],\n  [30, 156, 137],\n  [30, 157, 137],\n  [31, 158, 137],\n  [31, 159, 136],\n  [31, 160, 136],\n  [31, 161, 136],\n  [31, 161, 135],\n  [31, 162, 135],\n  [32, 163, 134],\n  [32, 164, 134],\n  [33, 165, 133],\n  [33, 166, 133],\n  [34, 167, 133],\n  [34, 168, 132],\n  [35, 169, 131],\n  [36, 170, 131],\n  [37, 171, 130],\n  [37, 172, 130],\n  [38, 173, 129],\n  [39, 173, 129],\n  [40, 174, 128],\n  [41, 175, 127],\n  [42, 176, 127],\n  [44, 177, 126],\n  [45, 178, 125],\n  [46, 179, 124],\n  [47, 180, 124],\n  [49, 181, 123],\n  [50, 182, 122],\n  [52, 182, 121],\n  [53, 183, 121],\n  [55, 184, 120],\n  [56, 185, 119],\n  [58, 186, 118],\n  [59, 187, 117],\n  [61, 188, 116],\n  [63, 188, 115],\n  [64, 189, 114],\n  [66, 190, 113],\n  [68, 191, 112],\n  [70, 192, 111],\n  [72, 193, 110],\n  [74, 193, 109],\n  [76, 194, 108],\n  [78, 195, 107],\n  [80, 196, 106],\n  [82, 197, 105],\n  [84, 197, 104],\n  [86, 198, 103],\n  [88, 199, 101],\n  [90, 200, 100],\n  [92, 200, 99],\n  [94, 201, 98],\n  [96, 202, 96],\n  [99, 203, 95],\n  [101, 203, 94],\n  [103, 204, 92],\n  [105, 205, 91],\n  [108, 205, 90],\n  [110, 206, 88],\n  [112, 207, 87],\n  [115, 208, 86],\n  [117, 208, 84],\n  [119, 209, 83],\n  [122, 209, 81],\n  [124, 210, 80],\n  [127, 211, 78],\n  [129, 211, 77],\n  [132, 212, 75],\n  [134, 213, 73],\n  [137, 213, 72],\n  [139, 214, 70],\n  [142, 214, 69],\n  [144, 215, 67],\n  [147, 215, 65],\n  [149, 216, 64],\n  [152, 216, 62],\n  [155, 217, 60],\n  [157, 217, 59],\n  [160, 218, 57],\n  [162, 218, 55],\n  [165, 219, 54],\n  [168, 219, 52],\n  [170, 220, 50],\n  [173, 220, 48],\n  [176, 221, 47],\n  [178, 221, 45],\n  [181, 222, 43],\n  [184, 222, 41],\n  [186, 222, 40],\n  [189, 223, 38],\n  [192, 223, 37],\n  [194, 223, 35],\n  [197, 224, 33],\n  [200, 224, 32],\n  [202, 225, 31],\n  [205, 225, 29],\n  [208, 225, 28],\n  [210, 226, 27],\n  [213, 226, 26],\n  [216, 226, 25],\n  [218, 227, 25],\n  [221, 227, 24],\n  [223, 227, 24],\n  [226, 228, 24],\n  [229, 228, 25],\n  [231, 228, 25],\n  [234, 229, 26],\n  [236, 229, 27],\n  [239, 229, 28],\n  [241, 229, 29],\n  [244, 230, 30],\n  [246, 230, 32],\n  [248, 230, 33],\n  [251, 231, 35],\n  [253, 231, 37],\n];\nvar inferno = [\n  [0, 0, 4],\n  [1, 0, 5],\n  [1, 1, 6],\n  [1, 1, 8],\n  [2, 1, 10],\n  [2, 2, 12],\n  [2, 2, 14],\n  [3, 2, 16],\n  [4, 3, 18],\n  [4, 3, 20],\n  [5, 4, 23],\n  [6, 4, 25],\n  [7, 5, 27],\n  [8, 5, 29],\n  [9, 6, 31],\n  [10, 7, 34],\n  [11, 7, 36],\n  [12, 8, 38],\n  [13, 8, 41],\n  [14, 9, 43],\n  [16, 9, 45],\n  [17, 10, 48],\n  [18, 10, 50],\n  [20, 11, 52],\n  [21, 11, 55],\n  [22, 11, 57],\n  [24, 12, 60],\n  [25, 12, 62],\n  [27, 12, 65],\n  [28, 12, 67],\n  [30, 12, 69],\n  [31, 12, 72],\n  [33, 12, 74],\n  [35, 12, 76],\n  [36, 12, 79],\n  [38, 12, 81],\n  [40, 11, 83],\n  [41, 11, 85],\n  [43, 11, 87],\n  [45, 11, 89],\n  [47, 10, 91],\n  [49, 10, 92],\n  [50, 10, 94],\n  [52, 10, 95],\n  [54, 9, 97],\n  [56, 9, 98],\n  [57, 9, 99],\n  [59, 9, 100],\n  [61, 9, 101],\n  [62, 9, 102],\n  [64, 10, 103],\n  [66, 10, 104],\n  [68, 10, 104],\n  [69, 10, 105],\n  [71, 11, 106],\n  [73, 11, 106],\n  [74, 12, 107],\n  [76, 12, 107],\n  [77, 13, 108],\n  [79, 13, 108],\n  [81, 14, 108],\n  [82, 14, 109],\n  [84, 15, 109],\n  [85, 15, 109],\n  [87, 16, 110],\n  [89, 16, 110],\n  [90, 17, 110],\n  [92, 18, 110],\n  [93, 18, 110],\n  [95, 19, 110],\n  [97, 19, 110],\n  [98, 20, 110],\n  [100, 21, 110],\n  [101, 21, 110],\n  [103, 22, 110],\n  [105, 22, 110],\n  [106, 23, 110],\n  [108, 24, 110],\n  [109, 24, 110],\n  [111, 25, 110],\n  [113, 25, 110],\n  [114, 26, 110],\n  [116, 26, 110],\n  [117, 27, 110],\n  [119, 28, 109],\n  [120, 28, 109],\n  [122, 29, 109],\n  [124, 29, 109],\n  [125, 30, 109],\n  [127, 30, 108],\n  [128, 31, 108],\n  [130, 32, 108],\n  [132, 32, 107],\n  [133, 33, 107],\n  [135, 33, 107],\n  [136, 34, 106],\n  [138, 34, 106],\n  [140, 35, 105],\n  [141, 35, 105],\n  [143, 36, 105],\n  [144, 37, 104],\n  [146, 37, 104],\n  [147, 38, 103],\n  [149, 38, 103],\n  [151, 39, 102],\n  [152, 39, 102],\n  [154, 40, 101],\n  [155, 41, 100],\n  [157, 41, 100],\n  [159, 42, 99],\n  [160, 42, 99],\n  [162, 43, 98],\n  [163, 44, 97],\n  [165, 44, 96],\n  [166, 45, 96],\n  [168, 46, 95],\n  [169, 46, 94],\n  [171, 47, 94],\n  [173, 48, 93],\n  [174, 48, 92],\n  [176, 49, 91],\n  [177, 50, 90],\n  [179, 50, 90],\n  [180, 51, 89],\n  [182, 52, 88],\n  [183, 53, 87],\n  [185, 53, 86],\n  [186, 54, 85],\n  [188, 55, 84],\n  [189, 56, 83],\n  [191, 57, 82],\n  [192, 58, 81],\n  [193, 58, 80],\n  [195, 59, 79],\n  [196, 60, 78],\n  [198, 61, 77],\n  [199, 62, 76],\n  [200, 63, 75],\n  [202, 64, 74],\n  [203, 65, 73],\n  [204, 66, 72],\n  [206, 67, 71],\n  [207, 68, 70],\n  [208, 69, 69],\n  [210, 70, 68],\n  [211, 71, 67],\n  [212, 72, 66],\n  [213, 74, 65],\n  [215, 75, 63],\n  [216, 76, 62],\n  [217, 77, 61],\n  [218, 78, 60],\n  [219, 80, 59],\n  [221, 81, 58],\n  [222, 82, 56],\n  [223, 83, 55],\n  [224, 85, 54],\n  [225, 86, 53],\n  [226, 87, 52],\n  [227, 89, 51],\n  [228, 90, 49],\n  [229, 92, 48],\n  [230, 93, 47],\n  [231, 94, 46],\n  [232, 96, 45],\n  [233, 97, 43],\n  [234, 99, 42],\n  [235, 100, 41],\n  [235, 102, 40],\n  [236, 103, 38],\n  [237, 105, 37],\n  [238, 106, 36],\n  [239, 108, 35],\n  [239, 110, 33],\n  [240, 111, 32],\n  [241, 113, 31],\n  [241, 115, 29],\n  [242, 116, 28],\n  [243, 118, 27],\n  [243, 120, 25],\n  [244, 121, 24],\n  [245, 123, 23],\n  [245, 125, 21],\n  [246, 126, 20],\n  [246, 128, 19],\n  [247, 130, 18],\n  [247, 132, 16],\n  [248, 133, 15],\n  [248, 135, 14],\n  [248, 137, 12],\n  [249, 139, 11],\n  [249, 140, 10],\n  [249, 142, 9],\n  [250, 144, 8],\n  [250, 146, 7],\n  [250, 148, 7],\n  [251, 150, 6],\n  [251, 151, 6],\n  [251, 153, 6],\n  [251, 155, 6],\n  [251, 157, 7],\n  [252, 159, 7],\n  [252, 161, 8],\n  [252, 163, 9],\n  [252, 165, 10],\n  [252, 166, 12],\n  [252, 168, 13],\n  [252, 170, 15],\n  [252, 172, 17],\n  [252, 174, 18],\n  [252, 176, 20],\n  [252, 178, 22],\n  [252, 180, 24],\n  [251, 182, 26],\n  [251, 184, 29],\n  [251, 186, 31],\n  [251, 188, 33],\n  [251, 190, 35],\n  [250, 192, 38],\n  [250, 194, 40],\n  [250, 196, 42],\n  [250, 198, 45],\n  [249, 199, 47],\n  [249, 201, 50],\n  [249, 203, 53],\n  [248, 205, 55],\n  [248, 207, 58],\n  [247, 209, 61],\n  [247, 211, 64],\n  [246, 213, 67],\n  [246, 215, 70],\n  [245, 217, 73],\n  [245, 219, 76],\n  [244, 221, 79],\n  [244, 223, 83],\n  [244, 225, 86],\n  [243, 227, 90],\n  [243, 229, 93],\n  [242, 230, 97],\n  [242, 232, 101],\n  [242, 234, 105],\n  [241, 236, 109],\n  [241, 237, 113],\n  [241, 239, 117],\n  [241, 241, 121],\n  [242, 242, 125],\n  [242, 244, 130],\n  [243, 245, 134],\n  [243, 246, 138],\n  [244, 248, 142],\n  [245, 249, 146],\n  [246, 250, 150],\n  [248, 251, 154],\n  [249, 252, 157],\n  [250, 253, 161],\n  [252, 255, 164],\n];\nvar magma = [\n  [0, 0, 4],\n  [1, 0, 5],\n  [1, 1, 6],\n  [1, 1, 8],\n  [2, 1, 9],\n  [2, 2, 11],\n  [2, 2, 13],\n  [3, 3, 15],\n  [3, 3, 18],\n  [4, 4, 20],\n  [5, 4, 22],\n  [6, 5, 24],\n  [6, 5, 26],\n  [7, 6, 28],\n  [8, 7, 30],\n  [9, 7, 32],\n  [10, 8, 34],\n  [11, 9, 36],\n  [12, 9, 38],\n  [13, 10, 41],\n  [14, 11, 43],\n  [16, 11, 45],\n  [17, 12, 47],\n  [18, 13, 49],\n  [19, 13, 52],\n  [20, 14, 54],\n  [21, 14, 56],\n  [22, 15, 59],\n  [24, 15, 61],\n  [25, 16, 63],\n  [26, 16, 66],\n  [28, 16, 68],\n  [29, 17, 71],\n  [30, 17, 73],\n  [32, 17, 75],\n  [33, 17, 78],\n  [34, 17, 80],\n  [36, 18, 83],\n  [37, 18, 85],\n  [39, 18, 88],\n  [41, 17, 90],\n  [42, 17, 92],\n  [44, 17, 95],\n  [45, 17, 97],\n  [47, 17, 99],\n  [49, 17, 101],\n  [51, 16, 103],\n  [52, 16, 105],\n  [54, 16, 107],\n  [56, 16, 108],\n  [57, 15, 110],\n  [59, 15, 112],\n  [61, 15, 113],\n  [63, 15, 114],\n  [64, 15, 116],\n  [66, 15, 117],\n  [68, 15, 118],\n  [69, 16, 119],\n  [71, 16, 120],\n  [73, 16, 120],\n  [74, 16, 121],\n  [76, 17, 122],\n  [78, 17, 123],\n  [79, 18, 123],\n  [81, 18, 124],\n  [82, 19, 124],\n  [84, 19, 125],\n  [86, 20, 125],\n  [87, 21, 126],\n  [89, 21, 126],\n  [90, 22, 126],\n  [92, 22, 127],\n  [93, 23, 127],\n  [95, 24, 127],\n  [96, 24, 128],\n  [98, 25, 128],\n  [100, 26, 128],\n  [101, 26, 128],\n  [103, 27, 128],\n  [104, 28, 129],\n  [106, 28, 129],\n  [107, 29, 129],\n  [109, 29, 129],\n  [110, 30, 129],\n  [112, 31, 129],\n  [114, 31, 129],\n  [115, 32, 129],\n  [117, 33, 129],\n  [118, 33, 129],\n  [120, 34, 129],\n  [121, 34, 130],\n  [123, 35, 130],\n  [124, 35, 130],\n  [126, 36, 130],\n  [128, 37, 130],\n  [129, 37, 129],\n  [131, 38, 129],\n  [132, 38, 129],\n  [134, 39, 129],\n  [136, 39, 129],\n  [137, 40, 129],\n  [139, 41, 129],\n  [140, 41, 129],\n  [142, 42, 129],\n  [144, 42, 129],\n  [145, 43, 129],\n  [147, 43, 128],\n  [148, 44, 128],\n  [150, 44, 128],\n  [152, 45, 128],\n  [153, 45, 128],\n  [155, 46, 127],\n  [156, 46, 127],\n  [158, 47, 127],\n  [160, 47, 127],\n  [161, 48, 126],\n  [163, 48, 126],\n  [165, 49, 126],\n  [166, 49, 125],\n  [168, 50, 125],\n  [170, 51, 125],\n  [171, 51, 124],\n  [173, 52, 124],\n  [174, 52, 123],\n  [176, 53, 123],\n  [178, 53, 123],\n  [179, 54, 122],\n  [181, 54, 122],\n  [183, 55, 121],\n  [184, 55, 121],\n  [186, 56, 120],\n  [188, 57, 120],\n  [189, 57, 119],\n  [191, 58, 119],\n  [192, 58, 118],\n  [194, 59, 117],\n  [196, 60, 117],\n  [197, 60, 116],\n  [199, 61, 115],\n  [200, 62, 115],\n  [202, 62, 114],\n  [204, 63, 113],\n  [205, 64, 113],\n  [207, 64, 112],\n  [208, 65, 111],\n  [210, 66, 111],\n  [211, 67, 110],\n  [213, 68, 109],\n  [214, 69, 108],\n  [216, 69, 108],\n  [217, 70, 107],\n  [219, 71, 106],\n  [220, 72, 105],\n  [222, 73, 104],\n  [223, 74, 104],\n  [224, 76, 103],\n  [226, 77, 102],\n  [227, 78, 101],\n  [228, 79, 100],\n  [229, 80, 100],\n  [231, 82, 99],\n  [232, 83, 98],\n  [233, 84, 98],\n  [234, 86, 97],\n  [235, 87, 96],\n  [236, 88, 96],\n  [237, 90, 95],\n  [238, 91, 94],\n  [239, 93, 94],\n  [240, 95, 94],\n  [241, 96, 93],\n  [242, 98, 93],\n  [242, 100, 92],\n  [243, 101, 92],\n  [244, 103, 92],\n  [244, 105, 92],\n  [245, 107, 92],\n  [246, 108, 92],\n  [246, 110, 92],\n  [247, 112, 92],\n  [247, 114, 92],\n  [248, 116, 92],\n  [248, 118, 92],\n  [249, 120, 93],\n  [249, 121, 93],\n  [249, 123, 93],\n  [250, 125, 94],\n  [250, 127, 94],\n  [250, 129, 95],\n  [251, 131, 95],\n  [251, 133, 96],\n  [251, 135, 97],\n  [252, 137, 97],\n  [252, 138, 98],\n  [252, 140, 99],\n  [252, 142, 100],\n  [252, 144, 101],\n  [253, 146, 102],\n  [253, 148, 103],\n  [253, 150, 104],\n  [253, 152, 105],\n  [253, 154, 106],\n  [253, 155, 107],\n  [254, 157, 108],\n  [254, 159, 109],\n  [254, 161, 110],\n  [254, 163, 111],\n  [254, 165, 113],\n  [254, 167, 114],\n  [254, 169, 115],\n  [254, 170, 116],\n  [254, 172, 118],\n  [254, 174, 119],\n  [254, 176, 120],\n  [254, 178, 122],\n  [254, 180, 123],\n  [254, 182, 124],\n  [254, 183, 126],\n  [254, 185, 127],\n  [254, 187, 129],\n  [254, 189, 130],\n  [254, 191, 132],\n  [254, 193, 133],\n  [254, 194, 135],\n  [254, 196, 136],\n  [254, 198, 138],\n  [254, 200, 140],\n  [254, 202, 141],\n  [254, 204, 143],\n  [254, 205, 144],\n  [254, 207, 146],\n  [254, 209, 148],\n  [254, 211, 149],\n  [254, 213, 151],\n  [254, 215, 153],\n  [254, 216, 154],\n  [253, 218, 156],\n  [253, 220, 158],\n  [253, 222, 160],\n  [253, 224, 161],\n  [253, 226, 163],\n  [253, 227, 165],\n  [253, 229, 167],\n  [253, 231, 169],\n  [253, 233, 170],\n  [253, 235, 172],\n  [252, 236, 174],\n  [252, 238, 176],\n  [252, 240, 178],\n  [252, 242, 180],\n  [252, 244, 182],\n  [252, 246, 184],\n  [252, 247, 185],\n  [252, 249, 187],\n  [252, 251, 189],\n  [252, 253, 191],\n];\nvar jet = [\n  [0, 0, 128],\n  [0, 0, 132],\n  [0, 0, 137],\n  [0, 0, 141],\n  [0, 0, 146],\n  [0, 0, 150],\n  [0, 0, 155],\n  [0, 0, 159],\n  [0, 0, 164],\n  [0, 0, 168],\n  [0, 0, 173],\n  [0, 0, 178],\n  [0, 0, 182],\n  [0, 0, 187],\n  [0, 0, 191],\n  [0, 0, 196],\n  [0, 0, 200],\n  [0, 0, 205],\n  [0, 0, 209],\n  [0, 0, 214],\n  [0, 0, 218],\n  [0, 0, 223],\n  [0, 0, 227],\n  [0, 0, 232],\n  [0, 0, 237],\n  [0, 0, 241],\n  [0, 0, 246],\n  [0, 0, 250],\n  [0, 0, 255],\n  [0, 0, 255],\n  [0, 0, 255],\n  [0, 0, 255],\n  [0, 0, 255],\n  [0, 4, 255],\n  [0, 8, 255],\n  [0, 12, 255],\n  [0, 16, 255],\n  [0, 20, 255],\n  [0, 24, 255],\n  [0, 28, 255],\n  [0, 32, 255],\n  [0, 36, 255],\n  [0, 40, 255],\n  [0, 44, 255],\n  [0, 48, 255],\n  [0, 52, 255],\n  [0, 56, 255],\n  [0, 60, 255],\n  [0, 64, 255],\n  [0, 68, 255],\n  [0, 72, 255],\n  [0, 76, 255],\n  [0, 80, 255],\n  [0, 84, 255],\n  [0, 88, 255],\n  [0, 92, 255],\n  [0, 96, 255],\n  [0, 100, 255],\n  [0, 104, 255],\n  [0, 108, 255],\n  [0, 112, 255],\n  [0, 116, 255],\n  [0, 120, 255],\n  [0, 124, 255],\n  [0, 128, 255],\n  [0, 132, 255],\n  [0, 136, 255],\n  [0, 140, 255],\n  [0, 144, 255],\n  [0, 148, 255],\n  [0, 152, 255],\n  [0, 156, 255],\n  [0, 160, 255],\n  [0, 164, 255],\n  [0, 168, 255],\n  [0, 172, 255],\n  [0, 176, 255],\n  [0, 180, 255],\n  [0, 184, 255],\n  [0, 188, 255],\n  [0, 192, 255],\n  [0, 196, 255],\n  [0, 200, 255],\n  [0, 204, 255],\n  [0, 208, 255],\n  [0, 212, 255],\n  [0, 216, 255],\n  [0, 220, 254],\n  [0, 224, 251],\n  [0, 228, 248],\n  [2, 232, 244],\n  [6, 236, 241],\n  [9, 240, 238],\n  [12, 244, 235],\n  [15, 248, 231],\n  [19, 252, 228],\n  [22, 255, 225],\n  [25, 255, 222],\n  [28, 255, 219],\n  [31, 255, 215],\n  [35, 255, 212],\n  [38, 255, 209],\n  [41, 255, 206],\n  [44, 255, 202],\n  [48, 255, 199],\n  [51, 255, 196],\n  [54, 255, 193],\n  [57, 255, 190],\n  [60, 255, 186],\n  [64, 255, 183],\n  [67, 255, 180],\n  [70, 255, 177],\n  [73, 255, 173],\n  [77, 255, 170],\n  [80, 255, 167],\n  [83, 255, 164],\n  [86, 255, 160],\n  [90, 255, 157],\n  [93, 255, 154],\n  [96, 255, 151],\n  [99, 255, 148],\n  [102, 255, 144],\n  [106, 255, 141],\n  [109, 255, 138],\n  [112, 255, 135],\n  [115, 255, 131],\n  [119, 255, 128],\n  [122, 255, 125],\n  [125, 255, 122],\n  [128, 255, 119],\n  [131, 255, 115],\n  [135, 255, 112],\n  [138, 255, 109],\n  [141, 255, 106],\n  [144, 255, 102],\n  [148, 255, 99],\n  [151, 255, 96],\n  [154, 255, 93],\n  [157, 255, 90],\n  [160, 255, 86],\n  [164, 255, 83],\n  [167, 255, 80],\n  [170, 255, 77],\n  [173, 255, 73],\n  [177, 255, 70],\n  [180, 255, 67],\n  [183, 255, 64],\n  [186, 255, 60],\n  [190, 255, 57],\n  [193, 255, 54],\n  [196, 255, 51],\n  [199, 255, 48],\n  [202, 255, 44],\n  [206, 255, 41],\n  [209, 255, 38],\n  [212, 255, 35],\n  [215, 255, 31],\n  [219, 255, 28],\n  [222, 255, 25],\n  [225, 255, 22],\n  [228, 255, 19],\n  [231, 255, 15],\n  [235, 255, 12],\n  [238, 255, 9],\n  [241, 252, 6],\n  [244, 248, 2],\n  [248, 245, 0],\n  [251, 241, 0],\n  [254, 237, 0],\n  [255, 234, 0],\n  [255, 230, 0],\n  [255, 226, 0],\n  [255, 222, 0],\n  [255, 219, 0],\n  [255, 215, 0],\n  [255, 211, 0],\n  [255, 208, 0],\n  [255, 204, 0],\n  [255, 200, 0],\n  [255, 196, 0],\n  [255, 193, 0],\n  [255, 189, 0],\n  [255, 185, 0],\n  [255, 182, 0],\n  [255, 178, 0],\n  [255, 174, 0],\n  [255, 171, 0],\n  [255, 167, 0],\n  [255, 163, 0],\n  [255, 159, 0],\n  [255, 156, 0],\n  [255, 152, 0],\n  [255, 148, 0],\n  [255, 145, 0],\n  [255, 141, 0],\n  [255, 137, 0],\n  [255, 134, 0],\n  [255, 130, 0],\n  [255, 126, 0],\n  [255, 122, 0],\n  [255, 119, 0],\n  [255, 115, 0],\n  [255, 111, 0],\n  [255, 108, 0],\n  [255, 104, 0],\n  [255, 100, 0],\n  [255, 96, 0],\n  [255, 93, 0],\n  [255, 89, 0],\n  [255, 85, 0],\n  [255, 82, 0],\n  [255, 78, 0],\n  [255, 74, 0],\n  [255, 71, 0],\n  [255, 67, 0],\n  [255, 63, 0],\n  [255, 59, 0],\n  [255, 56, 0],\n  [255, 52, 0],\n  [255, 48, 0],\n  [255, 45, 0],\n  [255, 41, 0],\n  [255, 37, 0],\n  [255, 34, 0],\n  [255, 30, 0],\n  [255, 26, 0],\n  [255, 22, 0],\n  [255, 19, 0],\n  [250, 15, 0],\n  [246, 11, 0],\n  [241, 8, 0],\n  [237, 4, 0],\n  [232, 0, 0],\n  [228, 0, 0],\n  [223, 0, 0],\n  [218, 0, 0],\n  [214, 0, 0],\n  [209, 0, 0],\n  [205, 0, 0],\n  [200, 0, 0],\n  [196, 0, 0],\n  [191, 0, 0],\n  [187, 0, 0],\n  [182, 0, 0],\n  [178, 0, 0],\n  [173, 0, 0],\n  [168, 0, 0],\n  [164, 0, 0],\n  [159, 0, 0],\n  [155, 0, 0],\n  [150, 0, 0],\n  [146, 0, 0],\n  [141, 0, 0],\n  [137, 0, 0],\n  [132, 0, 0],\n  [128, 0, 0],\n];\nvar binary = [\n  [255, 255, 255],\n  [254, 254, 254],\n  [253, 253, 253],\n  [252, 252, 252],\n  [251, 251, 251],\n  [250, 250, 250],\n  [249, 249, 249],\n  [248, 248, 248],\n  [247, 247, 247],\n  [246, 246, 246],\n  [245, 245, 245],\n  [244, 244, 244],\n  [243, 243, 243],\n  [242, 242, 242],\n  [241, 241, 241],\n  [240, 240, 240],\n  [239, 239, 239],\n  [238, 238, 238],\n  [237, 237, 237],\n  [236, 236, 236],\n  [235, 235, 235],\n  [234, 234, 234],\n  [233, 233, 233],\n  [232, 232, 232],\n  [231, 231, 231],\n  [230, 230, 230],\n  [229, 229, 229],\n  [228, 228, 228],\n  [227, 227, 227],\n  [226, 226, 226],\n  [225, 225, 225],\n  [224, 224, 224],\n  [223, 223, 223],\n  [222, 222, 222],\n  [221, 221, 221],\n  [220, 220, 220],\n  [219, 219, 219],\n  [218, 218, 218],\n  [217, 217, 217],\n  [216, 216, 216],\n  [215, 215, 215],\n  [214, 214, 214],\n  [213, 213, 213],\n  [212, 212, 212],\n  [211, 211, 211],\n  [210, 210, 210],\n  [209, 209, 209],\n  [208, 208, 208],\n  [207, 207, 207],\n  [206, 206, 206],\n  [205, 205, 205],\n  [204, 204, 204],\n  [203, 203, 203],\n  [202, 202, 202],\n  [201, 201, 201],\n  [200, 200, 200],\n  [199, 199, 199],\n  [198, 198, 198],\n  [197, 197, 197],\n  [196, 196, 196],\n  [195, 195, 195],\n  [194, 194, 194],\n  [193, 193, 193],\n  [192, 192, 192],\n  [191, 191, 191],\n  [190, 190, 190],\n  [189, 189, 189],\n  [188, 188, 188],\n  [187, 187, 187],\n  [186, 186, 186],\n  [185, 185, 185],\n  [184, 184, 184],\n  [183, 183, 183],\n  [182, 182, 182],\n  [181, 181, 181],\n  [180, 180, 180],\n  [179, 179, 179],\n  [178, 178, 178],\n  [177, 177, 177],\n  [176, 176, 176],\n  [175, 175, 175],\n  [174, 174, 174],\n  [173, 173, 173],\n  [172, 172, 172],\n  [171, 171, 171],\n  [170, 170, 170],\n  [169, 169, 169],\n  [168, 168, 168],\n  [167, 167, 167],\n  [166, 166, 166],\n  [165, 165, 165],\n  [164, 164, 164],\n  [163, 163, 163],\n  [162, 162, 162],\n  [161, 161, 161],\n  [160, 160, 160],\n  [159, 159, 159],\n  [158, 158, 158],\n  [157, 157, 157],\n  [156, 156, 156],\n  [155, 155, 155],\n  [154, 154, 154],\n  [153, 153, 153],\n  [152, 152, 152],\n  [151, 151, 151],\n  [150, 150, 150],\n  [149, 149, 149],\n  [148, 148, 148],\n  [147, 147, 147],\n  [146, 146, 146],\n  [145, 145, 145],\n  [144, 144, 144],\n  [143, 143, 143],\n  [142, 142, 142],\n  [141, 141, 141],\n  [140, 140, 140],\n  [139, 139, 139],\n  [138, 138, 138],\n  [137, 137, 137],\n  [136, 136, 136],\n  [135, 135, 135],\n  [134, 134, 134],\n  [133, 133, 133],\n  [132, 132, 132],\n  [131, 131, 131],\n  [130, 130, 130],\n  [129, 129, 129],\n  [128, 128, 128],\n  [127, 127, 127],\n  [126, 126, 126],\n  [125, 125, 125],\n  [124, 124, 124],\n  [123, 123, 123],\n  [122, 122, 122],\n  [121, 121, 121],\n  [120, 120, 120],\n  [119, 119, 119],\n  [118, 118, 118],\n  [117, 117, 117],\n  [116, 116, 116],\n  [115, 115, 115],\n  [114, 114, 114],\n  [113, 113, 113],\n  [112, 112, 112],\n  [111, 111, 111],\n  [110, 110, 110],\n  [109, 109, 109],\n  [108, 108, 108],\n  [107, 107, 107],\n  [106, 106, 106],\n  [105, 105, 105],\n  [104, 104, 104],\n  [103, 103, 103],\n  [102, 102, 102],\n  [101, 101, 101],\n  [100, 100, 100],\n  [99, 99, 99],\n  [98, 98, 98],\n  [97, 97, 97],\n  [96, 96, 96],\n  [95, 95, 95],\n  [94, 94, 94],\n  [93, 93, 93],\n  [92, 92, 92],\n  [91, 91, 91],\n  [90, 90, 90],\n  [89, 89, 89],\n  [88, 88, 88],\n  [87, 87, 87],\n  [86, 86, 86],\n  [85, 85, 85],\n  [84, 84, 84],\n  [83, 83, 83],\n  [82, 82, 82],\n  [81, 81, 81],\n  [80, 80, 80],\n  [79, 79, 79],\n  [78, 78, 78],\n  [77, 77, 77],\n  [76, 76, 76],\n  [75, 75, 75],\n  [74, 74, 74],\n  [73, 73, 73],\n  [72, 72, 72],\n  [71, 71, 71],\n  [70, 70, 70],\n  [69, 69, 69],\n  [68, 68, 68],\n  [67, 67, 67],\n  [66, 66, 66],\n  [65, 65, 65],\n  [64, 64, 64],\n  [63, 63, 63],\n  [62, 62, 62],\n  [61, 61, 61],\n  [60, 60, 60],\n  [59, 59, 59],\n  [58, 58, 58],\n  [57, 57, 57],\n  [56, 56, 56],\n  [55, 55, 55],\n  [54, 54, 54],\n  [53, 53, 53],\n  [52, 52, 52],\n  [51, 51, 51],\n  [50, 50, 50],\n  [49, 49, 49],\n  [48, 48, 48],\n  [47, 47, 47],\n  [46, 46, 46],\n  [45, 45, 45],\n  [44, 44, 44],\n  [43, 43, 43],\n  [42, 42, 42],\n  [41, 41, 41],\n  [40, 40, 40],\n  [39, 39, 39],\n  [38, 38, 38],\n  [37, 37, 37],\n  [36, 36, 36],\n  [35, 35, 35],\n  [34, 34, 34],\n  [33, 33, 33],\n  [32, 32, 32],\n  [31, 31, 31],\n  [30, 30, 30],\n  [29, 29, 29],\n  [28, 28, 28],\n  [27, 27, 27],\n  [26, 26, 26],\n  [25, 25, 25],\n  [24, 24, 24],\n  [23, 23, 23],\n  [22, 22, 22],\n  [21, 21, 21],\n  [20, 20, 20],\n  [19, 19, 19],\n  [18, 18, 18],\n  [17, 17, 17],\n  [16, 16, 16],\n  [15, 15, 15],\n  [14, 14, 14],\n  [13, 13, 13],\n  [12, 12, 12],\n  [11, 11, 11],\n  [10, 10, 10],\n  [9, 9, 9],\n  [8, 8, 8],\n  [7, 7, 7],\n  [6, 6, 6],\n  [5, 5, 5],\n  [4, 4, 4],\n  [3, 3, 3],\n  [2, 2, 2],\n  [1, 1, 1],\n  [0, 0, 0],\n];\nvar plasma = [[13, 8, 135], [16, 7, 136], [19, 7, 137], [22, 7, 138], [25, 6, 140], [27, 6, 141], [29, 6, 142], [32, 6, 143], [34, 6, 144], [36, 6, 145], [38, 5, 145], [40, 5, 146], [42, 5, 147], [44, 5, 148], [46, 5, 149], [47, 5, 150], [49, 5, 151], [51, 5, 151], [53, 4, 152], [55, 4, 153], [56, 4, 154], [58, 4, 154], [60, 4, 155], [62, 4, 156], [63, 4, 156], [65, 4, 157], [67, 3, 158], [68, 3, 158], [70, 3, 159], [72, 3, 159], [73, 3, 160], [75, 3, 161], [76, 2, 161], [78, 2, 162], [80, 2, 162], [81, 2, 163], [83, 2, 163], [85, 2, 164], [86, 1, 164], [88, 1, 164], [89, 1, 165], [91, 1, 165], [92, 1, 166], [94, 1, 166], [96, 1, 166], [97, 0, 167], [99, 0, 167], [100, 0, 167], [102, 0, 167], [103, 0, 168], [105, 0, 168], [106, 0, 168], [108, 0, 168], [110, 0, 168], [111, 0, 168], [113, 0, 168], [114, 1, 168], [116, 1, 168], [117, 1, 168], [119, 1, 168], [120, 1, 168], [122, 2, 168], [123, 2, 168], [125, 3, 168], [126, 3, 168], [128, 4, 168], [129, 4, 167], [131, 5, 167], [132, 5, 167], [134, 6, 166], [135, 7, 166], [136, 8, 166], [138, 9, 165], [139, 10, 165], [141, 11, 165], [142, 12, 164], [143, 13, 164], [145, 14, 163], [146, 15, 163], [148, 16, 162], [149, 17, 161], [150, 19, 161], [152, 20, 160], [153, 21, 159], [154, 22, 159], [156, 23, 158], [157, 24, 157], [158, 25, 157], [160, 26, 156], [161, 27, 155], [162, 29, 154], [163, 30, 154], [165, 31, 153], [166, 32, 152], [167, 33, 151], [168, 34, 150], [170, 35, 149], [171, 36, 148], [172, 38, 148], [173, 39, 147], [174, 40, 146], [176, 41, 145], [177, 42, 144], [178, 43, 143], [179, 44, 142], [180, 46, 141], [181, 47, 140], [182, 48, 139], [183, 49, 138], [184, 50, 137], [186, 51, 136], [187, 52, 136], [188, 53, 135], [189, 55, 134], [190, 56, 133], [191, 57, 132], [192, 58, 131], [193, 59, 130], [194, 60, 129], [195, 61, 128], [196, 62, 127], [197, 64, 126], [198, 65, 125], [199, 66, 124], [200, 67, 123], [201, 68, 122], [202, 69, 122], [203, 70, 121], [204, 71, 120], [204, 73, 119], [205, 74, 118], [206, 75, 117], [207, 76, 116], [208, 77, 115], [209, 78, 114], [210, 79, 113], [211, 81, 113], [212, 82, 112], [213, 83, 111], [213, 84, 110], [214, 85, 109], [215, 86, 108], [216, 87, 107], [217, 88, 106], [218, 90, 106], [218, 91, 105], [219, 92, 104], [220, 93, 103], [221, 94, 102], [222, 95, 101], [222, 97, 100], [223, 98, 99], [224, 99, 99], [225, 100, 98], [226, 101, 97], [226, 102, 96], [227, 104, 95], [228, 105, 94], [229, 106, 93], [229, 107, 93], [230, 108, 92], [231, 110, 91], [231, 111, 90], [232, 112, 89], [233, 113, 88], [233, 114, 87], [234, 116, 87], [235, 117, 86], [235, 118, 85], [236, 119, 84], [237, 121, 83], [237, 122, 82], [238, 123, 81], [239, 124, 81], [239, 126, 80], [240, 127, 79], [240, 128, 78], [241, 129, 77], [241, 131, 76], [242, 132, 75], [243, 133, 75], [243, 135, 74], [244, 136, 73], [244, 137, 72], [245, 139, 71], [245, 140, 70], [246, 141, 69], [246, 143, 68], [247, 144, 68], [247, 145, 67], [247, 147, 66], [248, 148, 65], [248, 149, 64], [249, 151, 63], [249, 152, 62], [249, 154, 62], [250, 155, 61], [250, 156, 60], [250, 158, 59], [251, 159, 58], [251, 161, 57], [251, 162, 56], [252, 163, 56], [252, 165, 55], [252, 166, 54], [252, 168, 53], [252, 169, 52], [253, 171, 51], [253, 172, 51], [253, 174, 50], [253, 175, 49], [253, 177, 48], [253, 178, 47], [253, 180, 47], [253, 181, 46], [254, 183, 45], [254, 184, 44], [254, 186, 44], [254, 187, 43], [254, 189, 42], [254, 190, 42], [254, 192, 41], [253, 194, 41], [253, 195, 40], [253, 197, 39], [253, 198, 39], [253, 200, 39], [253, 202, 38], [253, 203, 38], [252, 205, 37], [252, 206, 37], [252, 208, 37], [252, 210, 37], [251, 211, 36], [251, 213, 36], [251, 215, 36], [250, 216, 36], [250, 218, 36], [249, 220, 36], [249, 221, 37], [248, 223, 37], [248, 225, 37], [247, 226, 37], [247, 228, 37], [246, 230, 38], [246, 232, 38], [245, 233, 38], [245, 235, 39], [244, 237, 39], [243, 238, 39], [243, 240, 39], [242, 242, 39], [241, 244, 38], [241, 245, 37], [240, 247, 36], [240, 249, 33]]\nvar rainbow = [[128, 0, 255], [126, 3, 255], [124, 6, 255], [122, 9, 255], [120, 13, 255], [118, 16, 255], [116, 19, 255], [114, 22, 255], [112, 25, 255], [110, 28, 255], [108, 31, 255], [106, 34, 254], [104, 38, 254], [102, 41, 254], [100, 44, 254], [98, 47, 254], [96, 50, 254], [94, 53, 254], [92, 56, 253], [90, 59, 253], [88, 62, 253], [86, 65, 253], [84, 68, 253], [82, 71, 252], [80, 74, 252], [78, 77, 252], [76, 80, 252], [74, 83, 251], [72, 86, 251], [70, 89, 251], [68, 92, 251], [66, 95, 250], [64, 98, 250], [62, 101, 250], [60, 104, 249], [57, 107, 249], [56, 109, 249], [54, 112, 248], [52, 115, 248], [49, 118, 248], [48, 121, 247], [46, 123, 247], [44, 126, 247], [41, 129, 246], [40, 132, 246], [38, 134, 245], [36, 137, 245], [33, 140, 244], [32, 142, 244], [30, 145, 243], [28, 147, 243], [25, 150, 243], [24, 152, 242], [22, 155, 242], [20, 157, 241], [17, 160, 241], [16, 162, 240], [14, 165, 239], [12, 167, 239], [9, 169, 238], [8, 172, 238], [6, 174, 237], [4, 176, 237], [1, 179, 236], [0, 181, 235], [2, 183, 235], [4, 185, 234], [7, 187, 234], [8, 190, 233], [10, 192, 232], [13, 194, 232], [15, 196, 231], [16, 198, 230], [18, 200, 230], [20, 202, 229], [23, 203, 228], [24, 205, 228], [26, 207, 227], [29, 209, 226], [31, 211, 225], [32, 213, 225], [34, 214, 224], [36, 216, 223], [39, 218, 222], [40, 219, 222], [42, 221, 221], [45, 222, 220], [47, 224, 219], [48, 225, 218], [50, 227, 218], [52, 228, 217], [55, 230, 216], [56, 231, 215], [58, 232, 214], [61, 234, 213], [63, 235, 213], [64, 236, 212], [66, 237, 211], [68, 238, 210], [70, 239, 209], [72, 241, 208], [74, 242, 207], [77, 243, 206], [78, 243, 205], [80, 244, 204], [82, 245, 203], [84, 246, 203], [86, 247, 202], [88, 248, 201], [90, 248, 200], [93, 249, 199], [94, 250, 198], [96, 250, 197], [98, 251, 196], [100, 251, 195], [102, 252, 194], [104, 252, 193], [106, 253, 192], [109, 253, 191], [110, 254, 190], [112, 254, 188], [114, 254, 187], [116, 254, 186], [118, 255, 185], [120, 255, 184], [122, 255, 183], [125, 255, 182], [126, 255, 181], [128, 255, 180], [130, 255, 179], [132, 255, 178], [134, 255, 176], [136, 255, 175], [139, 254, 174], [140, 254, 173], [142, 254, 172], [144, 254, 171], [146, 253, 169], [148, 253, 168], [150, 252, 167], [153, 252, 166], [155, 251, 165], [156, 251, 164], [158, 250, 162], [160, 250, 161], [162, 249, 160], [164, 248, 159], [166, 248, 157], [168, 247, 156], [171, 246, 155], [172, 245, 154], [174, 244, 152], [176, 243, 151], [178, 243, 150], [180, 242, 149], [182, 241, 147], [185, 239, 146], [187, 238, 145], [188, 237, 143], [190, 236, 142], [192, 235, 141], [194, 234, 140], [196, 232, 138], [198, 231, 137], [200, 230, 136], [203, 228, 134], [204, 227, 133], [206, 225, 132], [208, 224, 130], [210, 222, 129], [212, 221, 128], [214, 219, 126], [217, 218, 125], [219, 216, 123], [220, 214, 122], [222, 213, 121], [224, 211, 119], [226, 209, 118], [228, 207, 116], [230, 205, 115], [232, 203, 114], [235, 202, 112], [236, 200, 111], [238, 198, 109], [240, 196, 108], [242, 194, 107], [244, 192, 105], [246, 190, 104], [249, 187, 102], [251, 185, 101], [252, 183, 99], [254, 181, 98], [255, 179, 96], [255, 176, 95], [255, 174, 94], [255, 172, 92], [255, 169, 91], [255, 167, 89], [255, 165, 88], [255, 162, 86], [255, 160, 85], [255, 157, 83], [255, 155, 82], [255, 152, 80], [255, 150, 79], [255, 147, 77], [255, 145, 76], [255, 142, 74], [255, 140, 73], [255, 137, 71], [255, 134, 70], [255, 132, 68], [255, 129, 67], [255, 126, 65], [255, 123, 64], [255, 121, 62], [255, 118, 61], [255, 115, 59], [255, 112, 58], [255, 109, 56], [255, 107, 55], [255, 104, 53], [255, 101, 51], [255, 98, 50], [255, 95, 48], [255, 92, 47], [255, 89, 45], [255, 86, 44], [255, 83, 42], [255, 80, 41], [255, 77, 39], [255, 74, 38], [255, 71, 36], [255, 68, 34], [255, 65, 33], [255, 62, 31], [255, 59, 30], [255, 56, 28], [255, 53, 27], [255, 50, 25], [255, 47, 24], [255, 44, 22], [255, 41, 20], [255, 38, 19], [255, 34, 17], [255, 31, 16], [255, 28, 14], [255, 25, 13], [255, 22, 11], [255, 19, 9], [255, 16, 8], [255, 13, 6], [255, 9, 5], [255, 6, 3], [255, 3, 2], [255, 0, 0]]\nvar ocean = [[0, 128, 0], [0, 126, 1], [0, 124, 2], [0, 123, 3], [0, 122, 4], [0, 120, 5], [0, 118, 6], [0, 117, 7], [0, 116, 8], [0, 114, 9], [0, 112, 10], [0, 111, 11], [0, 110, 12], [0, 108, 13], [0, 106, 14], [0, 105, 15], [0, 104, 16], [0, 102, 17], [0, 100, 18], [0, 99, 19], [0, 98, 20], [0, 96, 21], [0, 94, 22], [0, 93, 23], [0, 92, 24], [0, 90, 25], [0, 88, 26], [0, 87, 27], [0, 86, 28], [0, 84, 29], [0, 82, 30], [0, 81, 31], [0, 80, 32], [0, 78, 33], [0, 76, 34], [0, 75, 35], [0, 74, 36], [0, 72, 37], [0, 70, 38], [0, 69, 39], [0, 68, 40], [0, 66, 41], [0, 64, 42], [0, 63, 43], [0, 62, 44], [0, 60, 45], [0, 59, 46], [0, 57, 47], [0, 56, 48], [0, 54, 49], [0, 52, 50], [0, 51, 51], [0, 49, 52], [0, 48, 53], [0, 47, 54], [0, 45, 55], [0, 44, 56], [0, 42, 57], [0, 40, 58], [0, 39, 59], [0, 38, 60], [0, 36, 61], [0, 35, 62], [0, 33, 63], [0, 32, 64], [0, 30, 65], [0, 29, 66], [0, 27, 67], [0, 25, 68], [0, 24, 69], [0, 22, 70], [0, 21, 71], [0, 20, 72], [0, 18, 73], [0, 17, 74], [0, 15, 75], [0, 14, 76], [0, 12, 77], [0, 10, 78], [0, 9, 79], [0, 8, 80], [0, 6, 81], [0, 5, 82], [0, 3, 83], [0, 1, 84], [0, 0, 85], [0, 1, 86], [0, 3, 87], [0, 4, 88], [0, 6, 89], [0, 7, 90], [0, 9, 91], [0, 10, 92], [0, 12, 93], [0, 14, 94], [0, 15, 95], [0, 16, 96], [0, 18, 97], [0, 19, 98], [0, 21, 99], [0, 23, 100], [0, 24, 101], [0, 26, 102], [0, 27, 103], [0, 29, 104], [0, 30, 105], [0, 32, 106], [0, 33, 107], [0, 34, 108], [0, 36, 109], [0, 38, 110], [0, 39, 111], [0, 40, 112], [0, 42, 113], [0, 43, 114], [0, 45, 115], [0, 47, 116], [0, 48, 117], [0, 49, 118], [0, 51, 119], [0, 52, 120], [0, 54, 121], [0, 55, 122], [0, 57, 123], [0, 58, 124], [0, 60, 125], [0, 62, 126], [0, 63, 127], [0, 64, 128], [0, 66, 129], [0, 67, 130], [0, 69, 131], [0, 70, 132], [0, 72, 133], [0, 74, 134], [0, 75, 135], [0, 77, 136], [0, 78, 137], [0, 80, 138], [0, 81, 139], [0, 83, 140], [0, 84, 141], [0, 86, 142], [0, 87, 143], [0, 88, 144], [0, 90, 145], [0, 91, 146], [0, 93, 147], [0, 94, 148], [0, 96, 149], [0, 98, 150], [0, 99, 151], [0, 100, 152], [0, 102, 153], [0, 103, 154], [0, 105, 155], [0, 107, 156], [0, 108, 157], [0, 110, 158], [0, 111, 159], [0, 112, 160], [0, 114, 161], [0, 115, 162], [0, 117, 163], [0, 118, 164], [0, 120, 165], [0, 122, 166], [0, 123, 167], [0, 125, 168], [0, 126, 169], [0, 128, 170], [3, 129, 171], [6, 130, 172], [9, 132, 173], [12, 133, 174], [15, 135, 175], [18, 136, 176], [21, 138, 177], [24, 139, 178], [27, 141, 179], [30, 142, 180], [33, 144, 181], [36, 146, 182], [39, 147, 183], [42, 148, 184], [45, 150, 185], [48, 151, 186], [51, 153, 187], [54, 155, 188], [57, 156, 189], [60, 158, 190], [63, 159, 191], [66, 160, 192], [69, 162, 193], [72, 163, 194], [75, 165, 195], [78, 166, 196], [81, 168, 197], [84, 170, 198], [87, 171, 199], [90, 172, 200], [93, 174, 201], [96, 176, 202], [99, 177, 203], [102, 179, 204], [105, 180, 205], [108, 182, 206], [111, 183, 207], [114, 185, 208], [117, 186, 209], [120, 188, 210], [123, 189, 211], [126, 190, 212], [129, 192, 213], [132, 194, 214], [135, 195, 215], [138, 196, 216], [141, 198, 217], [144, 199, 218], [147, 201, 219], [150, 203, 220], [153, 204, 221], [156, 206, 222], [159, 207, 223], [162, 208, 224], [165, 210, 225], [168, 211, 226], [171, 213, 227], [174, 214, 228], [177, 216, 229], [180, 218, 230], [183, 219, 231], [186, 220, 232], [189, 222, 233], [192, 224, 234], [195, 225, 235], [198, 226, 236], [201, 228, 237], [204, 229, 238], [207, 231, 239], [210, 232, 240], [213, 234, 241], [216, 235, 242], [219, 237, 243], [222, 238, 244], [225, 240, 245], [228, 242, 246], [231, 243, 247], [234, 244, 248], [237, 246, 249], [240, 247, 250], [243, 249, 251], [246, 251, 252], [249, 252, 253], [252, 254, 254], [255, 255, 255]]\n\n \nvar colormaps = [turbo, fosphor, viridis, inferno, magma, jet, binary, plasma, rainbow, ocean];\n"
  },
  {
    "path": "freedata_gui/src/assets/waterfall/waterfall.css",
    "content": "html,\nbody {\n  width: 100%;\n  height: 100%;\n  margin: 0px;\n}\n\n#waterfall {\n  display: block;\n  width: 100%;\n  height: 100%;\n}\n"
  },
  {
    "path": "freedata_gui/src/components/chat_conversations.vue",
    "content": "<template>\n  <!-- Navbar for starting a new chat -->\n  <nav class=\"navbar sticky-top bg-body-tertiary border-bottom p-1\">\n    <button\n      class=\"btn btn-outline-primary w-100\"\n      data-bs-target=\"#newChatModal\"\n      data-bs-toggle=\"modal\"\n      @click=\"startNewChat\"\n    >\n      <i class=\"bi bi-pencil-square\" /> {{ $t('chat.startnewchat') }}\n    </button>\n  </nav>\n\n  <!-- List of chats -->\n  <div\n    id=\"chat-list-tab\"\n    class=\"list-group m-0 p-1\"\n    role=\"tablist\"\n  >\n    <!-- Show loading message if we're waiting -->\n    <div\n      v-if=\"chat.loading\"\n      class=\"text-center p-2\"\n    >\n      <div\n        class=\"spinner-border\"\n        role=\"status\"\n      >\n        <span class=\"visually-hidden\">{{ $t('chat.loadingMessages') }}</span>\n      </div>\n    </div>\n\n    <!-- Show 'no conversations' message if not loading and no conversations exist -->\n    <div\n      v-else-if=\"!chat.callsign_list || Object.keys(chat.callsign_list).length === 0\"\n      class=\"text-center p-2\"\n    >\n      {{ $t('chat.noConversations') }}\n    </div>\n\n\n    <template\n      v-for=\"(details, callsign) in chat.callsign_list\"\n      :key=\"callsign\"\n    >\n      <a\n        :id=\"`list-chat-list-${callsign}`\"\n        class=\"list-group-item list-group-item-action list-group-item-secondary rounded-2 border-0 mb-2\"\n        data-bs-toggle=\"list\"\n        :href=\"`#list-${callsign}-messages`\"\n        role=\"tab\"\n        :aria-controls=\"`list-${callsign}-messages`\"\n        @click=\"chatSelected(callsign)\"\n      >\n        <div class=\"row\">\n          <div class=\"col-7 text-truncate\">\n            <strong>{{ callsign }}</strong>\n            <span\n              v-if=\"details.unread_messages > 0\"\n              class=\"ms-1 badge bg-danger\"\n            >\n              {{ details.unread_messages }} {{ $t('chat.new') }}\n            </span>\n            <br>\n            <small>{{ sanitizeBody(details.body.substring(0, 35) + '...') || \"\\u003Cfile\\u003E\" }}</small>\n\n          </div>\n          <div class=\"col-5 text-end\">\n            <small>{{ getDateTime(details.timestamp) }}</small>\n\n          </div>\n        </div>\n      </a>\n    </template>\n  </div>\n</template>\n\n<script>\nimport DOMPurify from 'dompurify';\nimport { setActivePinia } from 'pinia';\nimport pinia from '../store/index';\nimport { useChatStore } from '../store/chatStore.js';\nimport { getBeaconDataByCallsign, setFreedataMessageAsRead, getFreedataMessages } from '../js/api.js';\nimport { ref } from 'vue';\nimport { useIsMobile } from '../js/mobile_devices.js';\nconst { isMobile } = useIsMobile(720);\n\n\nsetActivePinia(pinia);\n\nconst chat = useChatStore(pinia);\nconst newChatCall = ref(null);\n\nfunction chatSelected(callsign) {\n  chat.selectedCallsign = callsign.toUpperCase();\n  chat.triggerScrollToBottom();\n  processBeaconData(callsign);\n  setMessagesAsRead(callsign);\n}\n\n\nimport { watch } from 'vue';\n\nwatch(isMobile, (newVal) => {\n  console.log(\"isMobile changed to:\", newVal);\n});\n\n\n\nasync function setMessagesAsRead(callsign) {\n  const messages = chat.sorted_chat_list[callsign];\n  if (messages) {\n    messages.forEach((message) => {\n      if (message.is_read === false) {\n        setFreedataMessageAsRead(message.id);\n        message.is_read = true;\n      }\n    });\n\n    // Delay the execution of getFreedataMessages by 500 milliseconds\n    setTimeout(() => {\n      getFreedataMessages();\n    }, 500);\n  }\n}\n\nasync function processBeaconData(callsign) {\n  const beacons = await getBeaconDataByCallsign(callsign);\n  chat.beaconLabelArray = beacons.map((entry) => entry.timestamp);\n  chat.beaconDataArray = beacons.map((entry) => entry.snr);\n}\n\nfunction getDateTime(input) {\n  let date;\n  if (typeof input === 'number') {\n    // Assuming input is a Unix timestamp in seconds\n    date = new Date(input * 1000);\n  } else {\n    // Assuming input is an ISO 8601 formatted string\n    date = new Date(input);\n  }\n\n  const now = new Date();\n  const isSameDay = date.getDate() === now.getDate() &&\n                    date.getMonth() === now.getMonth() &&\n                    date.getFullYear() === now.getFullYear();\n\n  if (isSameDay) {\n    // Use the browser's locale to format time only\n    return date.toLocaleTimeString(undefined, { hour: '2-digit', minute: '2-digit' });\n  } else {\n    // Use the browser's locale to format both date and time\n    const datePart = date.toLocaleDateString(undefined, { day: '2-digit', month: '2-digit', year: 'numeric' });\n    //const timePart = date.toLocaleTimeString(undefined, { hour: '2-digit', minute: '2-digit' });\n    //return `${datePart} ${timePart}`;\n    return `${datePart}`;\n  }\n}\n\n\n\n\n\n\n\nfunction newChat() {\n  let callsign = newChatCall.value;\n  callsign = callsign.toUpperCase().trim();\n  if (callsign === \"\") return;\n  newChatCall.value = \"\";\n}\n\nfunction startNewChat() {\n  chat.newChatCallsign = \"\";\n  chat.newChatMessage = \"Hi there! Nice to meet you!\";\n}\n\nfunction sanitizeBody(body) {\n  return body ? DOMPurify.sanitize(body, { ALLOWED_TAGS: [] }) : null;\n}\n\nexport default {\n  setup() {\n    return { chat, newChatCall, chatSelected, setMessagesAsRead, processBeaconData, getDateTime, newChat, startNewChat, sanitizeBody };\n  }\n};\n</script>\n"
  },
  {
    "path": "freedata_gui/src/components/chat_messages.vue",
    "content": "<template>\n  <div\n    id=\"nav-tabContent-chat-messages\"\n    class=\"tab-content p-3\"\n  >\n    <template\n      v-for=\"(details, callsign) in chat.callsign_list\"\n      :key=\"callsign\"\n    >\n      <div\n        :id=\"`list-${callsign}-messages`\"\n\n        class=\"tab-pane fade\"\n        :class=\"{ 'active show': chat.selectedCallsign === callsign }\"\n        role=\"tabpanel\"\n        :aria-labelledby=\"`list-chat-list-${callsign}`\"\n      >\n        <template\n          v-for=\"(item, index) in chat.sorted_chat_list[callsign]\"\n          :key=\"item.timestamp\"\n        >\n          <!-- Date Separator -->\n          <div v-if=\"showDateSeparator(index, item.timestamp, chat.sorted_chat_list[callsign])\">\n            <div class=\"d-flex align-items-center my-3\">\n              <hr class=\"flex-grow-1\">\n              <span class=\"mx-2 text-muted\">{{ getDate(item.timestamp) }}</span>\n              <hr class=\"flex-grow-1\">\n            </div>\n          </div>\n\n          <!-- Message Components -->\n          <div v-if=\"item.direction === 'transmit'\">\n            <SentMessage :message=\"item\" />\n          </div>\n\n          <div v-else-if=\"item.direction === 'receive'\">\n            <ReceivedMessage :message=\"item\" />\n          </div>\n        </template>\n      </div>\n    </template>\n  </div>\n</template>\n\n<script>\nimport { setActivePinia } from 'pinia';\nimport pinia from '../store/index';\nimport { useChatStore } from '../store/chatStore.js';\nimport SentMessage from './chat_messages_sent.vue';\nimport ReceivedMessage from './chat_messages_received.vue';\n\nsetActivePinia(pinia);\n\nconst chat = useChatStore(pinia);\n\nfunction getDate(timestampRaw) {\n  const date = new Date(timestampRaw);\n  return date.toLocaleDateString(undefined, {\n    year: 'numeric',\n    month: '2-digit',\n    day: '2-digit'\n  });\n}\n\n\nfunction showDateSeparator(index, currentTimestamp, messages) {\n  if (index === 0) return true; // Always show the date for the first message\n\n  const previousTimestamp = messages[index - 1].timestamp;\n  return getDate(currentTimestamp) !== getDate(previousTimestamp);\n}\n\nexport default {\n  components: {\n    SentMessage,\n    ReceivedMessage\n  },\n  setup() {\n    return { chat, getDate, showDateSeparator };\n  }\n};\n</script>\n"
  },
  {
    "path": "freedata_gui/src/components/chat_messages_action_menu.vue",
    "content": "<template>\n  <div class=\"message-actions-menu\">\n    <button @click=\"onDelete\">\n      Delete\n    </button>\n    <button @click=\"onCopy\">\n      Copy\n    </button>\n    <button @click=\"onQuote\">\n      Quote\n    </button>\n  </div>\n</template>\n\n<script>\nexport default {\n  methods: {\n    onDelete() {\n      // Implement delete action\n      this.$emit(\"delete\");\n    },\n    onCopy() {\n      // Implement copy action\n      this.$emit(\"copy\");\n    },\n    onQuote() {\n      // Implement quote action\n      this.$emit(\"quote\");\n    },\n  },\n};\n</script>\n\n<style scoped>\n/* Style the message actions menu as needed */\n.message-actions-menu {\n  position: absolute;\n  top: 50%;\n  transform: translateY(-50%);\n  display: none; /* Initially hidden */\n  /* Add styling for buttons and menu */\n}\n\n/* Style individual action buttons */\n.message-actions-menu button {\n  /* Add button styles here */\n}\n\n/* Style menu display on hover */\n.card:hover .message-actions-menu {\n  display: block;\n}\n</style>\n"
  },
  {
    "path": "freedata_gui/src/components/chat_messages_image_preview.vue",
    "content": "<template>\n  <div v-if=\"isImage\">\n    <img\n      :src=\"imageUrl\"\n      alt=\"Image Preview\"\n      class=\"img-fluid border rounded-top w-100\"\n    >\n  </div>\n</template>\n\n<script setup>\nimport { computed, toRefs } from 'vue';\n\n \nconst props = defineProps(['attachment'])\nconst { attachment } = toRefs(props);\n\nconst isImage = computed(() => {\n  const imageFormats = [\"gif\", \"png\", \"jpg\", \"jpeg\", \"svg\"];\n  const extension = attachment.value.name.split(\".\").pop().toLowerCase();\n  return imageFormats.includes(extension);\n});\n\nconst imageUrl = computed(() => {\n  return isImage.value ? `data:${attachment.value.type};base64,${attachment.value.data}` : \"\";\n});\n</script>\n\n"
  },
  {
    "path": "freedata_gui/src/components/chat_messages_received.vue",
    "content": "<template>\n  <div class=\"row justify-content-start mb-2\">\n    <div :class=\"messageWidthClass\">\n      <div class=\"card border rounded-top \">\n        <div\n          v-for=\"attachment in message.attachments\"\n          :key=\"attachment.id\"\n          class=\"card-header\"\n        >\n          <chat_messages_image_preview :attachment=\"attachment\" />\n\n          <div\n            class=\"btn-group w-100\"\n            role=\"group\"\n          >\n            <button\n              class=\"btn w-75 btn-secondary text-truncate\"\n              disabled\n            >\n              {{ attachment.name }}\n            </button>\n            <button\n              class=\"btn btn-secondary w-25\"\n              @click=\"\n                downloadAttachment(attachment.hash_sha512, attachment.name)\n              \"\n            >\n              <i class=\"bi bi-download strong\" />\n            </button>\n          </div>\n        </div>\n\n        <div class=\"card-body\">\n          <!-- Render parsed markdown with v-html -->\n          <p\n            class=\"card-text text-break\"\n            v-html=\"parsedMessageBody\"\n          />\n        </div>\n\n        <div class=\"card-footer p-0 border-top-0\">\n          <p class=\"p-0 m-0 me-1 text-end \">\n            <span class=\"mr-2 \">{{ getDateTime }} {{ $t('chat.utc') }}</span>\n          </p>\n          <!-- Display formatted timestamp in card-footer -->\n        </div>\n      </div>\n    </div>\n\n    <!-- Delete button outside of the card -->\n    <div class=\"col-auto\">\n      <button\n        class=\"btn btn-outline-secondary border-0 me-1\"\n        data-bs-target=\"#messageInfoModal\"\n        data-bs-toggle=\"modal\"\n        @click=\"showMessageInfo\"\n      >\n        <i class=\"bi bi-info-circle\" />\n      </button>\n\n      <button\n        class=\"btn btn-outline-secondary border-0\"\n        @click=\"sendADIF\"\n      >\n        {{ $t('chat.adif') }}\n      </button>\n\n      <button\n        class=\"btn btn-outline-secondary border-0\"\n        @click=\"deleteMessage\"\n      >\n        <i class=\"bi bi-trash\" />\n      </button>\n    </div>\n  </div>\n</template>\n\n<script>\nimport { marked } from 'marked';\nimport DOMPurify from 'dompurify';\nimport {\n  deleteMessageFromDB,\n  requestMessageInfo,\n  getMessageAttachment, sendADIFviaUDP,\n} from \"../js/messagesHandler\";\n\nimport chat_messages_image_preview from './chat_messages_image_preview.vue';\n\n// Pinia store setup\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\nsetActivePinia(pinia);\n\nimport { useChatStore } from '../store/chatStore.js';\nconst chatStore = useChatStore(pinia);\n\nexport default {\n  components: {\n    chat_messages_image_preview,\n  },\n\n  props: {\n    message: Object,\n  },\n\n  computed: {\n    messageWidthClass() {\n      // Calculate a Bootstrap grid class based on message length\n      if (this.message.body.length <= 50) {\n        return \"col-6\";\n      } else if (this.message.body.length <= 100) {\n        return \"col-7\";\n      } else {\n        return \"col-9\";\n      }\n    },\n\n    getDateTime() {\n      let date = new Date(this.message.timestamp);\n      let hours = date.getHours().toString().padStart(2, \"0\");\n      let minutes = date.getMinutes().toString().padStart(2, \"0\");\n      let seconds = date.getSeconds().toString().padStart(2, \"0\");\n      return `${hours}:${minutes}:${seconds}`;\n    },\n\n    parsedMessageBody() {\n    // Parse markdown to HTML\n  let parsedHTML = marked.parse(this.message.body);\n\n  // Sanitize the HTML\n  let sanitizedHTML = DOMPurify.sanitize(parsedHTML);\n\n  // Create a temporary DOM element to manipulate the sanitized output\n  let tempDiv = document.createElement(\"div\");\n  tempDiv.innerHTML = sanitizedHTML;\n\n  // Modify all links to open in a new tab\n  tempDiv.querySelectorAll(\"a\").forEach(link => {\n    link.setAttribute(\"target\", \"_blank\");\n    link.setAttribute(\"rel\", \"noopener noreferrer\"); // Security best practice\n  });\n\n  // Return the updated HTML\n  return tempDiv.innerHTML;\n  },\n  },\n\n  methods: {\n    showMessageInfo() {\n      chatStore.messageInfoById = requestMessageInfo(this.message.id);\n    },\n\n    sendADIF() {\n      sendADIFviaUDP(this.message.id);\n    },\n\n    deleteMessage() {\n      deleteMessageFromDB(this.message.id);\n    },\n\n    async downloadAttachment(hash_sha512, fileName) {\n      try {\n        const jsondata = await getMessageAttachment(hash_sha512);\n        const byteCharacters = atob(jsondata.data);\n        const byteArrays = [];\n\n        for (let offset = 0; offset < byteCharacters.length; offset += 512) {\n          const slice = byteCharacters.slice(offset, offset + 512);\n          const byteNumbers = new Array(slice.length);\n          for (let i = 0; i < slice.length; i++) {\n            byteNumbers[i] = slice.charCodeAt(i);\n          }\n          const byteArray = new Uint8Array(byteNumbers);\n          byteArrays.push(byteArray);\n        }\n\n        const blob = new Blob(byteArrays, { type: jsondata.type });\n        const url = URL.createObjectURL(blob);\n\n        // Creating a temporary anchor element to download the file\n        const anchor = document.createElement(\"a\");\n        anchor.href = url;\n        anchor.download = fileName;\n        document.body.appendChild(anchor);\n        anchor.click();\n\n        // Cleanup\n        document.body.removeChild(anchor);\n        URL.revokeObjectURL(url);\n      } catch (error) {\n        console.error(\"Failed to download the attachment:\", error);\n      }\n    },\n  },\n};\n</script>\n"
  },
  {
    "path": "freedata_gui/src/components/chat_messages_sent.vue",
    "content": "<template>\n  <div class=\"row justify-content-end mb-2 me-1\">\n    <!-- control area -->\n    <div class=\"col-auto p-0 m-0\">\n      <button\n        class=\"btn btn-outline-secondary border-0 me-1\"\n        @click=\"repeatMessage\"\n      >\n        <i class=\"bi bi-arrow-repeat\" />\n      </button>\n\n      <button\n        class=\"btn btn-outline-secondary border-0 me-1\"\n        data-bs-target=\"#messageInfoModal\"\n        data-bs-toggle=\"modal\"\n        @click=\"showMessageInfo\"\n      >\n        <i class=\"bi bi-info-circle\" />\n      </button>\n\n      <button\n        class=\"btn btn-outline-secondary border-0\"\n        :disabled=\"['transmitting', 'queued'].includes(message.status)\"\n        @click=\"deleteMessage\"\n      >\n        <i class=\"bi bi-trash\" />\n      </button>\n\n\n      <button\n        class=\"btn btn-outline-secondary border-0\"\n        @click=\"sendADIF\"\n      >\n        ADIF\n      </button>\n    </div>\n    <!-- message area -->\n    <div\n      :class=\"messageWidthClass\"\n      class=\"align-items-end\"\n    >\n      <div class=\"card\">\n        <div\n          v-for=\"attachment in message.attachments\"\n          :key=\"attachment.id\"\n          class=\"card-header\"\n        >\n          <chat_messages_image_preview :attachment=\"attachment\" />\n          <div\n            class=\"btn-group w-100\"\n            role=\"group\"\n          >\n            <button\n              class=\"btn w-75 btn-secondary text-truncate\"\n              disabled\n            >\n              {{ attachment.name }}\n            </button>\n            <button\n              class=\"btn btn-secondary w-25\"\n              @click=\"\n                downloadAttachment(attachment.hash_sha512, attachment.name)\n              \"\n            >\n              <i class=\"bi bi-download strong\" />\n            </button>\n          </div>\n        </div>\n\n        <div class=\"card-body\">\n          <!-- Render parsed markdown -->\n          <p\n            class=\"card-text text-break\"\n            v-html=\"parsedMessageBody\"\n          />\n        </div>\n\n        <div class=\"card-footer p-1 border-top-0\">\n          <p class=\"text p-0 m-0 mb-1 me-1 text-end\">\n            <span\n              class=\"badge mr-2\"\n              :class=\"{\n                'text-bg-danger': message.status === 'failed',\n                'text-bg-primary': message.status === 'transmitting',\n                'text-bg-secondary': message.status === 'transmitted' || message.status === 'queued'\n              }\"\n            >\n              {{\n                message.status === 'failed'\n                  ? $t('grid.components.msgstatusfailed')\n                  : message.status === 'transmitting'\n                    ? $t('grid.components.msgstatustransmitting')\n                    : message.status === 'transmitted'\n                      ? $t('grid.components.msgstatustransmitted')\n                      : message.status === 'queued'\n                        ? $t('grid.components.msgstatusqueued')\n                        : message.status }}\n            </span>\n            | <span class=\"badge text-bg-light mr-2\"> {{ $t('chat.attempt') }}: {{ message.attempt + 1 }} </span>|<span class=\"badge text-bg-light mr-2\"> {{ getDateTime }} {{ $t('chat.utc') }}</span>\n          </p>\n        </div>\n      </div>\n    </div>\n  </div>\n</template>\n\n<script>\nimport { marked } from \"marked\";\nimport DOMPurify from \"dompurify\";\nimport {\n  repeatMessageTransmission,\n  deleteMessageFromDB,\n  requestMessageInfo,\n  getMessageAttachment,\n  sendADIFviaUDP,\n} from \"../js/messagesHandler\";\n\n// pinia store setup\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\nsetActivePinia(pinia);\nimport chat_messages_image_preview from './chat_messages_image_preview.vue';\n\nimport { useChatStore } from '../store/chatStore.js';\nconst chatStore = useChatStore(pinia);\n\nexport default {\n  components: {\n    chat_messages_image_preview,\n  },\n\n  props: {\n    message: Object,\n  },\n\n  computed: {\n    messageWidthClass() {\n      // Calculate a Bootstrap grid class based on message length\n      if (this.message.body.length <= 50) {\n        return \"col-7\";\n      } else if (this.message.body.length <= 100) {\n        return \"col-7\";\n      } else {\n        return \"col-8\";\n      }\n    },\n\n    getDateTime() {\n      let date = new Date(this.message.timestamp);\n      let hours = date.getHours().toString().padStart(2, \"0\");\n      let minutes = date.getMinutes().toString().padStart(2, \"0\");\n      let seconds = date.getSeconds().toString().padStart(2, \"0\");\n      return `${hours}:${minutes}:${seconds}`;\n    },\n\n    parsedMessageBody() {\n     // Parse markdown to HTML\n  let parsedHTML = marked.parse(this.message.body);\n\n  // Sanitize the HTML\n  let sanitizedHTML = DOMPurify.sanitize(parsedHTML);\n\n  // Create a temporary DOM element to manipulate the sanitized output\n  let tempDiv = document.createElement(\"div\");\n  tempDiv.innerHTML = sanitizedHTML;\n\n  // Modify all links to open in a new tab\n  tempDiv.querySelectorAll(\"a\").forEach(link => {\n    link.setAttribute(\"target\", \"_blank\");\n    link.setAttribute(\"rel\", \"noopener noreferrer\"); // Security best practice\n  });\n\n  // Return the updated HTML\n  return tempDiv.innerHTML;\n\n\n    },\n  },\n\n  methods: {\n    repeatMessage() {\n      repeatMessageTransmission(this.message.id);\n    },\n\n    deleteMessage() {\n      deleteMessageFromDB(this.message.id);\n    },\n    sendADIF() {\n      sendADIFviaUDP(this.message.id);\n    },\n\n    showMessageInfo() {\n      chatStore.messageInfoById = requestMessageInfo(this.message.id);\n    },\n\n    async downloadAttachment(hash_sha512, fileName) {\n      try {\n        const jsondata = await getMessageAttachment(hash_sha512);\n        const byteCharacters = atob(jsondata.data);\n        const byteArrays = [];\n\n        for (let offset = 0; offset < byteCharacters.length; offset += 512) {\n          const slice = byteCharacters.slice(offset, offset + 512);\n          const byteNumbers = new Array(slice.length);\n          for (let i = 0; i < slice.length; i++) {\n            byteNumbers[i] = slice.charCodeAt(i);\n          }\n          const byteArray = new Uint8Array(byteNumbers);\n          byteArrays.push(byteArray);\n        }\n\n        const blob = new Blob(byteArrays, { type: jsondata.type });\n        const url = URL.createObjectURL(blob);\n\n        // Creating a temporary anchor element to download the file\n        const anchor = document.createElement(\"a\");\n        anchor.href = url;\n        anchor.download = fileName;\n        document.body.appendChild(anchor);\n        anchor.click();\n\n        // Cleanup\n        document.body.removeChild(anchor);\n        URL.revokeObjectURL(url);\n      } catch (error) {\n        console.error(\"Failed to download the attachment:\", error);\n      }\n    },\n  },\n};\n</script>\n"
  },
  {
    "path": "freedata_gui/src/components/chat_new_message.vue",
    "content": "<script setup>\nimport { setActivePinia } from 'pinia';\nimport pinia from '../store/index';\nsetActivePinia(pinia);\n\nimport { useChatStore } from '../store/chatStore.js';\nconst chat = useChatStore(pinia);\n\nimport { newMessage } from '../js/messagesHandler.js';\nimport { ref } from 'vue';\nimport { VuemojiPicker } from 'vuemoji-picker';\nimport { marked } from 'marked';\nimport DOMPurify from 'dompurify';\nimport ImageCompressor from 'js-image-compressor'; // Import the compressor\nimport { displayToast } from \"../js/popupHandler\";\n\nimport { useIsMobile } from '../js/mobile_devices.js';\nconst { isMobile } = useIsMobile(992);\n\n\n// Emoji Handling\nconst handleEmojiClick = (detail) => {\n  chat.inputText += detail.unicode;\n};\n\n// References for DOM elements\nconst chatModuleMessage = ref(null);\nconst fileInput = ref(null);\nconst selectedFiles = ref([]);\n\n// Function to trigger the hidden file input\nfunction triggerFileInput() {\n  fileInput.value.click();\n}\n\n// Handle file selection and preview\nfunction handleFileSelection(event) {\n  handleFiles(event.target.files);\n}\n\n// Handle drag and drop files\nfunction handleDrop(event) {\n  event.preventDefault();\n  event.stopPropagation();\n  handleFiles(event.dataTransfer.files);\n}\n\n// Handle files from file input or drag-and-drop\n// Handle files from file input or drag-and-drop\nfunction handleFiles(files) {\n  for (let file of files) {\n    if (file.type.startsWith('image/')) {\n      // Compress the image if it's an image type\n      const options = {\n        file: file,\n        quality: 0.5,\n        //mimeType: 'image/jpeg',\n        maxWidth: 750,  // Set maximum width to 750px\n        maxHeight: 750, // Set maximum height to 750px\n        convertSize: Infinity,\n        loose: true,\n        redressOrientation: true,\n\n        // Callback before compression\n        beforeCompress: function (result) {\n          console.log('Image size before compression:', result.size);\n          console.log('mime type:', result.type);\n        },\n\n        // Compression success callback\n        success: function (compressedFile) {\n          console.log('Image size after compression:', compressedFile.size);\n          console.log('mime type:', compressedFile.type);\n          console.log(\n            'Actual compression ratio:',\n            ((file.size - compressedFile.size) / file.size * 100).toFixed(2) + '%'\n          );\n\n          // Check if compression made the file larger\n          if (compressedFile.size >= file.size) {\n            console.warn(\"Compressed file is larger than original. Using original file instead.\");\n            compressedFile = file; // Use original file\n          }\n          // toast notification\n          let message = `\n              <div>\n                <strong> Prepared <span class=\"badge bg-secondary\"> ${file.name}</span></strong>\n                <div class=\"mt-2\">\n                  <span class=\"badge bg-secondary\"> ${file.size} Bytes</span>\n                  <i class=\"bi bi-caret-right-fill\"></i>\n                  <span class=\"badge bg-secondary\"> ${compressedFile.size} Bytes</span>\n                  <span class=\"badge bg-warning text-dark\">Ratio:${((file.size - compressedFile.size) / file.size * 100).toFixed(2)}%.</span>\n                </div>\n              </div>\n            `;\n          displayToast(\n            \"success\",\n            \"bi-card-image\",\n            message,\n            10000\n          );\n\n          // Convert compressed image to base64\n          const reader = new FileReader();\n          reader.onload = () => {\n            const base64Content = btoa(reader.result);\n            selectedFiles.value.push({\n              name: compressedFile.name,\n              size: compressedFile.size,\n              type: compressedFile.type,\n              content: base64Content,\n            });\n          };\n          reader.readAsBinaryString(compressedFile);\n        },\n\n        // An error occurred\n        error: function (msg) {\n          console.error(msg);\n          displayToast(\n            \"danger\",\n            \"bi-card-image\",\n            `Error compressing image`,\n            5000\n          );\n        },\n      };\n\n      // Run image compression\n      new ImageCompressor(options);\n    } else {\n      // Handle non-image files\n      const reader = new FileReader();\n      reader.onload = () => {\n        const base64Content = btoa(reader.result);\n        selectedFiles.value.push({\n          name: file.name,\n          size: file.size,\n          type: file.type,\n          content: base64Content,\n        });\n      };\n      reader.readAsBinaryString(file);\n    }\n  }\n}\n\n// Remove a file from the selected list\nfunction removeFile(index) {\n  selectedFiles.value.splice(index, 1);\n  if (selectedFiles.value.length === 0) {\n    resetFile();\n  }\n}\n\n// Transmit a new message\nfunction transmitNewMessage() {\n  if (typeof chat.selectedCallsign === 'undefined') {\n    chat.selectedCallsign = Object.keys(chat.callsign_list)[0];\n  }\n\n  chat.inputText = chat.inputText.trim();\n  if (chat.inputText.length === 0 && selectedFiles.value.length === 0) return;\n\n  const attachments = selectedFiles.value.map((file) => ({\n    name: file.name,\n    type: file.type,\n    data: file.content,\n  }));\n\n  // Sanitize inputText before sending the message\n  const sanitizedInput = DOMPurify.sanitize(marked.parse(chat.inputText));\n\n  if (chat.selectedCallsign.startsWith('BC-')) {\n    return 'new broadcast';\n  } else {\n    if (attachments.length > 0) {\n      newMessage(chat.selectedCallsign, sanitizedInput, attachments);\n    } else {\n      newMessage(chat.selectedCallsign, sanitizedInput);\n    }\n  }\n\n  chat.inputText = '';\n  chatModuleMessage.value = '';\n  resetFile();\n}\n\n// Reset the file input and selected files\nfunction resetFile() {\n  if (fileInput.value) {\n    fileInput.value.value = '';\n  }\n  selectedFiles.value = [];\n}\n\n// Apply Markdown Formatting\nfunction applyMarkdown(formatType) {\n  const textarea = chatModuleMessage.value;\n  const start = textarea.selectionStart;\n  const end = textarea.selectionEnd;\n  const selectedText = chat.inputText.substring(start, end);\n\n  if (formatType === 'bold') {\n    chat.inputText = chat.inputText.substring(0, start) + `**${selectedText}**` + chat.inputText.substring(end);\n  } else if (formatType === 'italic') {\n    chat.inputText = chat.inputText.substring(0, start) + `_${selectedText}_` + chat.inputText.substring(end);\n  } else if (formatType === 'underline') {\n    chat.inputText = chat.inputText.substring(0, start) + `<u>${selectedText}</u>` + chat.inputText.substring(end);\n  }\n}\n</script>\n\n<template>\n  <nav\n    class=\"navbar sticky-bottom bg-body-tertiary border-top\"\n    @dragover.prevent\n    @drop=\"handleDrop\"\n  >\n    <div class=\"container-fluid p-0\">\n      <!-- Hidden file input -->\n      <input\n        ref=\"fileInput\"\n        type=\"file\"\n        multiple\n        style=\"display: none;\"\n        @change=\"handleFileSelection\"\n      >\n\n      <!-- File Attachment Preview Area -->\n      <div class=\"container-fluid\">\n        <div class=\"d-flex flex-row overflow-auto bg-body-tertiary\">\n          <div\n            v-for=\"(file, index) in selectedFiles\"\n            :key=\"index\"\n            class=\"p-2\"\n          >\n            <div\n              class=\"card\"\n              style=\"min-width: 10rem; max-width: 10rem;\"\n            >\n              <!-- Card Header with Remove Button -->\n              <div class=\"card-header d-flex justify-content-between align-items-center\">\n                <span class=\"text-truncate\">{{ file.name }}</span>\n                <button\n                  class=\"btn btn-close\"\n                  @click=\"removeFile(index)\"\n                />\n              </div>\n\n              <!-- Conditional Image Preview -->\n              <div\n                v-if=\"file.type.startsWith('image/')\"\n                class=\"p-2\"\n              >\n                <img\n                  :src=\"`data:${file.type};base64,${file.content}`\"\n                  class=\"img-fluid\"\n                  alt=\"Image Preview\"\n                >\n              </div>\n\n              <div class=\"card-footer text-muted\">\n                {{ file.type }}\n              </div>\n              <div class=\"card-footer text-muted\">\n                {{ file.size }} bytes\n              </div>\n            </div>\n          </div>\n        </div>\n      </div>\n\n      <!-- Message Input Area -->\n      <div class=\"input-group bottom-0 ms-2\">\n        <button\n\n          v-if=\"!isMobile\"\n          type=\"button\"\n          class=\"btn btn-outline-secondary border-0 rounded-pill me-1\"\n          data-bs-toggle=\"modal\"\n          data-bs-target=\"#emojiPickerModal\"\n          data-bs-backdrop=\"false\"\n          @click=\"$refs.chatModuleMessage.focus()\"\n        >\n          <i\n            id=\"emojipickerbutton\"\n            class=\"bi bi-emoji-smile p-0\"\n            style=\"font-size: 1rem\"\n          />\n        </button>\n\n        <!-- Trigger file selection modal -->\n        <button\n          type=\"button\"\n          class=\"btn btn-outline-secondary border-0 rounded-pill me-1\"\n          @click=\"triggerFileInput(), $event.target.blur(), $refs.chatModuleMessage.focus()\"\n        >\n          <i\n            class=\"bi bi-paperclip\"\n            style=\"font-size: 1.2rem\"\n          />\n        </button>\n\n        <div\n          v-if=\"!isMobile\"\n          class=\"vr mx-2\"\n        />\n\n        <!-- Markdown Formatting Buttons -->\n        <button\n          v-if=\"!isMobile\"\n          class=\"btn btn-outline-secondary border-0 d-md-block rounded-pill\"\n          @click=\"applyMarkdown('bold')\"\n        >\n          <b>B</b>\n        </button>\n        <button\n          v-if=\"!isMobile\"\n          class=\"btn btn-outline-secondary border-0 rounded-pill\"\n          @click=\"applyMarkdown('italic')\"\n        >\n          <i>I</i>\n        </button>\n        <button\n          v-if=\"!isMobile\"\n          class=\"btn btn-outline-secondary border-0 rounded-pill\"\n          @click=\"applyMarkdown('underline')\"\n        >\n          <u>U</u>\n        </button>\n\n        <textarea\n          ref=\"chatModuleMessage\"\n          v-model=\"chat.inputText\"\n          class=\"form-control border rounded-pill\"\n          rows=\"1\"\n          :placeholder=\"$t('chat.entermessage_placeholder')\"\n          style=\"resize: none;\"\n          @keyup.enter=\"transmitNewMessage()\"\n        />\n\n        <button\n          class=\"btn btn-sm btn-secondary ms-1 me-2 rounded-pill\"\n          type=\"button\"\n          @click=\"transmitNewMessage()\"\n        >\n          <i\n            class=\"bi bi-send ms-2 me-2\"\n            style=\"font-size: 1.2rem\"\n          />\n        </button>\n      </div>\n    </div>\n  </nav>\n\n  <!-- Emoji Picker Modal -->\n  <div\n    id=\"emojiPickerModal\"\n    class=\"modal fade\"\n    aria-hidden=\"true\"\n  >\n    <div class=\"modal-dialog modal-dialog-centered modal\">\n      <div class=\"modal-content\">\n        <div class=\"modal-header\">\n          <h5 class=\"modal-title\">\n            {{ $t('chat.insertemoji') }}\n          </h5>\n          <button\n            type=\"button\"\n            class=\"btn-close\"\n            data-bs-dismiss=\"modal\"\n            data-bs-target=\"#emojiPickerModal\"\n            aria-label=\"Close\"\n          />\n        </div>\n\n        <div class=\"modal-body\">\n          <VuemojiPicker @emoji-click=\"handleEmojiClick\" />\n        </div>\n      </div>\n    </div>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/chat_screen.vue",
    "content": "<script setup>\n// @ts-nocheck\n// disable typescript check because of error with beacon histogram options\n\nimport chat_conversations from \"./chat_conversations.vue\";\nimport chat_messages from \"./chat_messages.vue\";\nimport chat_new_message from \"./chat_new_message.vue\";\n\nimport { getStationInfoByCallsign } from \"./../js/stationHandler\";\n\nimport { setActivePinia } from 'pinia';\nimport pinia from '../store/index';\nsetActivePinia(pinia);\n\nimport { useChatStore } from '../store/chatStore.js';\nconst chat = useChatStore(pinia);\n\nimport { useIsMobile } from '../js/mobile_devices.js';\nconst { isMobile } = useIsMobile(992);\n\n\nimport {\n  Chart as ChartJS,\n  CategoryScale,\n  LinearScale,\n  PointElement,\n  Title,\n  Tooltip,\n  Legend,\n} from 'chart.js';\n\nimport { watch, nextTick, ref } from 'vue';\nimport annotationPlugin from 'chartjs-plugin-annotation';\n\nChartJS.register(\n  CategoryScale,\n  LinearScale,\n  PointElement,\n  Title,\n  Tooltip,\n  Legend,\n  annotationPlugin\n);\n\n\n\nconst messagesContainer = ref(null);\nwatch(\n  () => chat.scrollTrigger,\n  (newVal, oldVal) => {\n    nextTick(() => {\n    console.log(newVal)\n    console.log(oldVal)\n      if (messagesContainer.value) {\n        messagesContainer.value.scrollTop = messagesContainer.value.scrollHeight;\n      }\n    });\n  }\n);\n\n\nfunction resetChat() {\n  chat.selectedCallsign = null;\n}\n\n\n\n\n</script>\n\n<template>\n  <div\n    class=\"container-fluid d-flex p-0\"\n    style=\"height: calc(100vh - 48px);\"\n  >\n    <div class=\"row h-100 m-0 w-100\">\n      <!-- Chat Conversations Sidebar -->\n      <div\n        v-if=\"!isMobile || !chat.selectedCallsign\"\n        class=\"col-12 col-lg-3 bg-body-tertiary p-0 d-flex flex-column h-100\"\n      >\n        <div class=\"container-fluid overflow-auto p-0 flex-grow-1\">\n          <chat_conversations />\n        </div>\n\n\n        <!--  <div class=\"list-group overflow-auto\" id=\"list-tab-chat\" role=\"tablist\"></div>-->\n      </div>\n\n      <!-- Chat Messages Area -->\n      <!-- On mobile: Show if a chat is selected; On desktop: Always show -->\n      <div\n        v-if=\"!isMobile || chat.selectedCallsign\"\n        :class=\"isMobile ? 'col-12' : 'col-lg-9 col-xl-9'\"\n        class=\"border-start p-0 d-flex flex-column h-100\"\n      >\n        <!-- Top Navbar -->\n        <nav\n          v-if=\"chat.selectedCallsign\"\n          class=\"navbar sticky-top z-0 bg-body-tertiary border-bottom p-1\"\n        >\n          <div class=\"row align-items-center\">\n            <!-- Column for the callsign button -->\n            <div class=\"col-auto\">\n              <!-- Back Button on Mobile -->\n              <button\n                v-if=\"isMobile\"\n                class=\"btn btn-primary\"\n                @click=\"resetChat\"\n              >\n                <i class=\"ms-2 me-2 bi bi-chevron-left strong\" />\n              </button>\n\n\n\n              <button\n                class=\"btn btn-sm btn-outline-secondary border-0\"\n                data-bs-target=\"#dxStationInfoModal\"\n                data-bs-toggle=\"modal\"\n                disabled\n                @click=\"getStationInfoByCallsign(chat.selectedCallsign)\"\n              >\n                <h4 class=\"p-0 m-0\">\n                  {{ chat.selectedCallsign }}\n                </h4>\n              </button>\n            </div>\n\n\n            <!-- Column for the delete button -->\n            <div class=\"col-auto\">\n              <div class=\"input-group mb-0 p-0\">\n                <button\n                  style=\"width: 100px;\"\n                  class=\"btn btn-outline-secondary ms-2\"\n                  data-bs-target=\"#deleteChatModal\"\n                  data-bs-toggle=\"modal\"\n                  @click=\"chatSelected(callsign)\"\n                >\n                  <i class=\"bi bi-graph-up h5\" />\n                </button>\n              </div>\n            </div>\n          </div>\n        </nav>\n\n        <!-- Chat Messages Area -->\n        <div\n          ref=\"messagesContainer\"\n          class=\"overflow-auto flex-grow-1\"\n          style=\"min-height: 0;\"\n        >\n          <div v-if=\"chat.selectedCallsign\">\n            <chat_messages />\n          </div>\n          <div\n            v-else\n            class=\"d-flex align-items-center justify-content-center h-100\"\n          >\n            <p class=\"text-muted\">\n              {{ $t('chat.selectChat') }}\n            </p>\n          </div>\n        </div>\n\n\n        <!-- New Message Input Area -->\n        <div\n          v-if=\"chat.selectedCallsign\"\n          class=\"p-0\"\n        >\n          <chat_new_message />\n        </div>\n      </div>\n    </div>\n  </div>\n</template>\n\n\n"
  },
  {
    "path": "freedata_gui/src/components/dynamic_components.vue",
    "content": "<script setup>\nimport { ref, onMounted, nextTick, shallowRef, render, h } from \"vue\";\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\nsetActivePinia(pinia);\nimport \"../../node_modules/gridstack/dist/gridstack.min.css\";\nimport { GridStack } from \"gridstack\";\nimport { useStateStore } from \"../store/stateStore.js\";\nconst state = useStateStore(pinia);\nimport { setRadioParametersFrequency } from \"../js/api\";\nimport { saveLocalSettingsToConfig, settingsStore } from \"../store/settingsStore\";\n\nimport active_heard_stations from \"./grid/grid_active_heard_stations.vue\";\nimport mini_heard_stations from \"./grid/grid_active_heard_stations_mini.vue\";\nimport active_stats from \"./grid/grid_active_stats.vue\";\nimport active_audio_level from \"./grid/grid_active_audio.vue\";\nimport active_rig_control from \"./grid/grid_active_rig_control.vue\";\nimport active_broadcasts from \"./grid/grid_active_broadcasts.vue\";\nimport active_broadcasts_vert from \"./grid/grid_active_broadcasts_vert.vue\";\nimport s_meter from \"./grid/grid_s-meter.vue\";\nimport dbfs_meter from \"./grid/grid_dbfs.vue\";\nimport grid_activities from \"./grid/grid_activities.vue\";\nimport grid_button from \"./grid/grid_button.vue\";\nimport grid_ptt from \"./grid/grid_ptt.vue\";\nimport grid_mycall from \"./grid/grid_mycall.vue\";\nimport grid_stop from \"./grid/grid_stop.vue\";\nimport grid_tune from \"./grid/grid_tune.vue\";\nimport grid_CQ_btn from \"./grid/grid_CQ.vue\";\nimport grid_ping from \"./grid/grid_ping.vue\";\nimport grid_freq from \"./grid/grid_frequency.vue\";\nimport grid_beacon from \"./grid/grid_beacon.vue\";\nimport grid_mycall_small from \"./grid/grid_mycall small.vue\";\nimport grid_scatter from \"./grid/grid_scatter.vue\";\nimport grid_stats_chart from \"./grid/grid_stats_chart.vue\";\nimport grid_swr_meter from \"./grid/grid_swr_meter.vue\";\nimport grid_stations_map from \"./grid/grid_stations_map.vue\";\n\nlet count = ref(0);\nlet grid = null; // DO NOT use ref(null) as proxies GS will break all logic when comparing structures... see https://github.com/gridstack/gridstack.js/issues/2115\nlet items = ref([]);\nclass gridWidget {\n  //Contains the vue component\n  component2;\n  //Initial size and location if autoplace is false\n  size;\n  //Text for button label in widget picker\n  text;\n  //if true add when quick fill button is clicked\n  quickFill;\n  //Auto place; true to add where ever it fits; false uses position information\n  autoPlace;\n  //Category to place widget in widget picker\n  category;\n  //Unique ID for widget\n  id;\n  //if true add when quick fill (small) button is clicked\n  quickFillSM;\n  //Initial size and location if autoplace is false and using small quick fill\n   sizeSM;\n  constructor(component, size, text, quickfill, autoPlace, category, id, quickFillSM, sizeSM) {\n    this.component2 = component;\n    this.size = size;\n    this.text = text;\n    this.quickFill = quickfill;\n    this.autoPlace = autoPlace;\n    this.category = category;\n    this.id = id;\n    this.quickFillSM = quickFillSM;\n    this.sizeSM = sizeSM\n  }\n}\n\n//Array of grid widgets\n//Order can be changed so sorted correctly, but do not change ID as it'll affect saved configs\nconst gridWidgets = [\n  new gridWidget(\n    grid_activities,\n    { x: 0, y: 53, w: 6, h: 55 },\n    \"Activities list\",\n    true,\n    true,\n    \"Activity\",\n    8,\n    false,\n    { x: 0, y: 53, w: 6, h: 55 }\n  ),\n  new gridWidget(\n    active_heard_stations,\n    { x: 0, y: 13, w: 16, h: 40 },\n    \"Heard stations list (detailed)\",\n    true,\n    true,\n    \"Activity\",\n    0,\n    false,\n    { x: 0, y: 53, w: 6, h: 55 }\n  ),\n  new gridWidget(\n    grid_scatter,\n    { x: 0, y: 114, w: 6, h: 30 },\n    \"Scatter graph\",\n    false,\n    true,\n    \"Stats\",\n    19,\n    false,\n    { x: 0, y: 53, w: 6, h: 55 }\n  ),\n  new gridWidget(\n    grid_stats_chart,\n    { x: 0, y: 114, w: 6, h: 30 },\n    \"Speed/SNR graph\",\n    false,\n    true,\n    \"Stats\",\n    20,\n    false,\n    { x: 0, y: 114, w: 6, h: 30 }\n  ),\n  new gridWidget(\n    active_stats,\n    { x: 16, y: 16, w: 8, h: 87 },\n    \"Stats (waterfall, etc)\",\n    true,\n    true,\n    \"Stats\",\n    1,\n    true,\n    { x: 12, y: 0, w: 12, h: 56 }\n  ),\n  new gridWidget(\n    active_audio_level,\n    { x: 16, y: 0, w: 8, h: 20 },\n    \"Audio main\",\n    false,\n    true,\n    \"Audio\",\n    2,\n    false,\n    { x: 0, y: 114, w: 6, h: 20 }\n  ),\n  new gridWidget(\n    grid_freq,\n    { x: 20, y: 8, w: 4, h: 8 },\n    \"Frequency widget\",\n    true,\n    true,\n    \"Rig\",\n    14,\n    false,\n    { x: 0, y: 114, w: 6, h: 30 }\n  ),\n  new gridWidget(\n    active_rig_control,\n    { x: 0, y: 108, w: 6, h: 25 },\n    \"Rig control main\",\n    true,\n    true,\n    \"Rig\",\n    3,\n    false,\n    { x: 0, y: 114, w: 6, h: 25 }\n  ),\n  new gridWidget(\n    grid_beacon,\n    { x: 3, y: 27, w: 3, h: 8 },\n    \"Beacon button\",\n    false,\n    true,\n    \"Broadcasts\",\n    16,\n    true,\n    { x: 0, y: 14, w: 12, h: 14 }\n  ),\n  new gridWidget(\n    active_broadcasts,\n    { x: 6, y: 70, w: 6, h: 25 },\n    \"Broadcasts main (horizontal)\",\n    false,\n    true,\n    \"Broadcasts\",\n    4,\n    false,\n    { x: 6, y: 70, w: 6, h: 25 }\n  ),\n  new gridWidget(\n    mini_heard_stations,\n    { x: 1, y: 1, w: 6, h: 54 },\n    \"Heard stations list (small)\",\n    false,\n    true,\n    \"Activity\",\n    5,\n    true,\n    { x: 0, y: 42, w: 12, h: 42 }\n  ),\n  new gridWidget(\n    s_meter,\n    { x: 16, y: 0, w: 4, h: 8 },\n    \"S-Meter widget\",\n    true,\n    true,\n    \"Rig\",\n    6,\n    false,\n    { x: 16, y: 0, w: 4, h: 8 }\n  ),\n  new gridWidget(\n    grid_swr_meter,\n    { x: 16, y: 8, w: 4, h: 8 },\n    \"SWR widget\",\n    true,\n    true,\n    \"Rig\",\n    21,\n    false,\n    { x: 16, y: 8, w: 4, h: 8 }\n  ),\n  new gridWidget(\n    dbfs_meter,\n    { x: 20, y: 0, w: 4, h: 8 },\n    \"Dbfs meter\",\n    true,\n    true,\n    \"Audio\",\n    7,\n    false,\n    { x: 20, y: 0, w: 4, h: 8 }\n  ),\n  new gridWidget(\n    active_broadcasts_vert,\n    { x: 16, y: 103, w: 8, h: 42 },\n    \"Broadcasts main (vertical)\",\n    true,\n    true,\n    \"Broadcasts\",\n    9,\n    false,\n    { x: 16, y: 103, w: 8, h: 42 }\n  ),\n  new gridWidget(\n    grid_ptt,\n    { x: 2, y: 0, w: 5, h: 13 },\n    \"Tx/PTT indicator\",\n    true,\n    true,\n    \"Rig\",\n    10,\n    true,\n    { x: 5, y: 0, w: 7, h: 14 }\n  ),\n  new gridWidget(\n    grid_mycall,\n    { x: 7, y: 0, w: 9, h: 13 },\n    \"My callsign widget\",\n    true,\n    true,\n    \"Other\",\n    11,\n    false,\n    { x: 7, y: 0, w: 9, h: 13 }\n  ),\n  new gridWidget(\n    grid_mycall_small,\n    { x: 8, y: 40, w: 4, h: 10 },\n    \"My callsign widget (small)\",\n    false,\n    true,\n    \"Other\",\n    17,\n    false,\n    { x: 8, y: 40, w: 4, h: 8 }\n  ),\n  new gridWidget(\n    grid_CQ_btn,\n    { x: 3, y: 27, w: 2, h: 8 },\n    \"CQ button\",\n    false,\n    true,\n    \"Broadcasts\",\n    12,\n    true,\n    { x: 0, y: 28, w: 12, h: 14 }\n  ),\n  new gridWidget(\n    grid_ping,\n    { x: 3, y: 27, w: 4, h: 9 },\n    \"Ping widget\",\n    false,\n    true,\n    \"Broadcasts\",\n    13,\n    true,\n    { x: 0, y: 84, w: 12, h: 9 }\n  ),\n  new gridWidget(\n    grid_stations_map,\n    { x: 6, y: 53, w: 10, h: 92 },\n    \"Station Map\",\n    true,\n    true,\n    \"Other\",\n    22,\n    true,\n    { x: 12, y: 56, w: 12, h: 92 }\n  ),\n  new gridWidget(\n    grid_stop,\n    { x: 0, y: 0, w: 2, h: 13 },\n    \"Stop widget\",\n    true,\n    true,\n    \"Other\",\n    15,\n    true,\n    { x: 0, y: 0, w: 5, h: 14 }\n  ),\n  new gridWidget(\n    grid_tune,\n    { x: 16, y: 8, w: 2, h: 8 },\n    \"Tune widget\",\n    false,\n    true,\n    \"Audio\",\n    18,\n    false,\n    { x: 16, y: 8, w: 2, h: 8 }\n  )\n  //Next new widget ID should be 23\n];\n\nfunction updateFrequencyAndApply(frequency) {\n  state.new_frequency = frequency;\n  set_radio_parameter_frequency();\n}\n\nfunction set_radio_parameter_frequency(){\n  setRadioParametersFrequency(state.new_frequency);\n}\n/*\nfunction set_radio_parameter_mode(){\n  setRadioParametersMode(state.mode);\n}\n\nfunction set_radio_parameter_rflevel(){\n  setRadioParametersRFLevel(state.rf_level);\n}\n*/\n\nfunction savePreset() {\n  settingsStore.local.grid_preset = settingsStore.local.grid_layout;\n  console.log(\"Saved grid preset\");\n}\n\nfunction downloadPreset() {\n  let data = settingsStore.local.grid_layout;\n\n  // Remove leading and trailing double quotes if they exist\n  if (data.startsWith('\"') && data.endsWith('\"')) {\n    data = data.slice(1, -1);\n  }\n\n  // Create a Blob from the processed data\n  const blob = new Blob([data], { type: \"application/json\" });\n  const url = URL.createObjectURL(blob);\n\n  // Create a temporary anchor element to trigger the download\n  const a = document.createElement(\"a\");\n  a.href = url;\n  a.download = \"FreeDATA_GUI_preset.freedata\";\n  document.body.appendChild(a);\n  a.click();\n  document.body.removeChild(a);\n  URL.revokeObjectURL(url);\n\n  console.log(\"Downloaded preset as FreeDATA_preset.gui\");\n}\n\n\nfunction uploadPreset() {\n  // Create a hidden file input element\n  const input = document.createElement('input');\n  input.type = 'file';\n  input.accept = '.freedata';\n\n  // Listen for when a file is selected\n  input.addEventListener('change', function(event) {\n    const file = event.target.files[0];\n    if (!file) {\n      console.log(\"No file selected, using custom preset.\");\n      restoreGridLayoutFromConfig();\n      return;\n    }\n\n    const reader = new FileReader();\n\n    reader.onload = function(e) {\n      try {\n        const content = e.target.result;\n\n        // Store the file content into the settingsStore\n        clearAllItems()\n        settingsStore.local.grid_preset = content;\n        loadPreset();\n        console.log(\"Preset uploaded and stored.\");\n      } catch (err) {\n        console.error(\"Error processing the preset\", err);\n      }\n\n    };\n\n    reader.onerror = function() {\n      console.error(\"Error reading file, using custom preset.\");\n    };\n\n    // Start reading the file as text\n    reader.readAsText(file);\n  });\n\n  // Trigger the file dialog\n  input.click();\n}\n\n\nfunction loadPreset() {\n  clearAllItems();\n  settingsStore.local.grid_layout = settingsStore.local.grid_preset;\n  restoreGridLayoutFromConfig();\n  saveLocalSettingsToConfig();\n  console.log(\"Restored grid preset\");\n}\n\nfunction onChange(event, changeItems) {\n  if (changeItems) {\n    changeItems.forEach((item) => {\n      const widget = items.value.find((w) => w.id === item.id);\n      if (widget) {\n        Object.assign(widget, item);\n      }\n    });\n    saveGridLayout();\n  }\n}\n\nfunction restoreGridLayoutFromConfig() {\n  if (items.value.length === 0) {\n    const savedGrid = JSON.parse(settingsStore.local.grid_layout || \"[]\");\n    console.log(savedGrid)\n    savedGrid.forEach(([x, y, w, h, id]) => {\n      const widget = gridWidgets.find((gw) => gw.id === id);\n      if (widget) {\n        const backupSize = widget.size;\n        widget.autoPlace = false;\n        widget.size = { x, y, w, h };\n        addNewWidget2(widget, false);\n        widget.autoPlace = true;\n        widget.size = backupSize;\n      }\n    });\n  }\n}\n\nfunction saveGridLayout() {\n  const cfg = items.value.map((item) => {\n    const widget = gridWidgets.find((gw) => gw.component2.__name === item.component2.__name);\n    const widgetId = widget ? widget.id : -1;\n    return [item.x, item.y, item.w, item.h, widgetId];\n  });\n  settingsStore.local.grid_layout = JSON.stringify(cfg);\n  saveLocalSettingsToConfig();\n}\n\nfunction addNewWidget2(componentToAdd, saveToConfig) {\n  const node = { ...componentToAdd.size, id: `w_${count.value++}`, component2: shallowRef(componentToAdd.component2), autoPlace: componentToAdd.autoPlace };\n  items.value.push(node);\n  nextTick(() => {\n    grid?.makeWidget(node.id);\n    if (saveToConfig) saveGridLayout();\n  });\n}\nfunction addNewWidget2SM(componentToAdd, saveToConfig) {\n  const node = { ...componentToAdd.sizeSM, id: `w_${count.value++}`, component2: shallowRef(componentToAdd.component2), autoPlace: componentToAdd.autoPlace };\n  items.value.push(node);\n  nextTick(() => {\n    grid?.makeWidget(node.id);\n    if (saveToConfig) saveGridLayout();\n  });\n}\nfunction remove(widget) {\n  const index = items.value.findIndex((w) => w.id === widget.id);\n  if (index !== -1) {\n    items.value.splice(index, 1);\n    grid?.removeWidget(`#${widget.id}`, false);\n    saveGridLayout();\n  }\n}\n\nfunction toggleGridEdit() {\n  settingsStore.local.grid_enabled = !settingsStore.local.grid_enabled;\n  setGridEditState();\n}\n\nfunction setGridEditState() {\n  settingsStore.local.grid_enabled ? grid?.enable() : grid?.disable();\n}\n\nfunction clearAllItems() {\n  grid?.removeAll(false);\n  count.value = 0;\n  items.value = [];\n  saveGridLayout();\n}\n\nfunction quickfill() {\n  gridWidgets.forEach((gw) => {\n    if (gw.quickFill) {\n      gw.autoPlace = false;\n      addNewWidget2(gw, false);\n      gw.autoPlace = true;\n    }\n  });\n  saveGridLayout();\n}\nfunction quickfillSM() {\n  gridWidgets.forEach((gw) => {\n    if (gw.quickFillSM) {\n      gw.autoPlace = false;\n      addNewWidget2SM(gw, false);\n      gw.autoPlace = true;\n    }\n  });\n  saveGridLayout();\n}\nonMounted(() => {\n  grid = GridStack.init({\n    float: true,\n    cellHeight: \"5px\",\n    minRow: 50,\n    margin: 5,\n    column: 24,\n    draggable: { scroll: true },\n    resizable: { handles: \"se,sw\" }\n  });\n\n  /*//Do not delete, aids in adjusting widget fill locations\n  grid?.on(\"dragstop\", (event, element) => {\n    const node = element.gridstackNode;\n    console.info(`Moved #${node.id} to ${node.x},${node.y}. Dimensions: ${node.w}x${node.h}`);\n  });*/\n\n  grid?.on(\"change\", onChange);\n\n  gridWidgets.forEach((gw) => {\n    const domId = `${gw.category.toLowerCase()}Body`;\n    const dom = document.getElementById(domId);\n    if (dom) {\n      const index = gridWidgets.findIndex((w) => w.text === gw.text);\n      dom.insertAdjacentHTML(\"beforeend\", `<div id=\"gridbtn-${index}\"></div>`);\n      const dom2 = document.getElementById(`gridbtn-${index}`);\n      if (dom2) {\n        const vueComponent = h(grid_button, { btnText: gw.text, btnID: index });\n        render(vueComponent, dom2);\n      }\n    }\n  });\n\n  restoreGridLayoutFromConfig();\n\n  if (items.value.length === 0) {\n    console.info(\"Grid config is empty; using default\");\n    quickfill();\n  }\n\n  window.addEventListener(\"add-widget\", (event) => {\n    const evt = event;\n    addNewWidget2(gridWidgets[evt.detail], true);\n  });\n  setGridEditState();\n});\n</script>\n\n<template>\n  <button\n    class=\"btn btn-secondary shadow fixed-middle-right border border-2 border-end-0 border-light rounded-0 rounded-start-4 ps-2 pe-4 pt-4 pb-4\"\n    type=\"button\"\n    data-bs-toggle=\"offcanvas\"\n    data-bs-target=\"#offcanvasGridItems\"\n    aria-controls=\"offcanvasGridItems\"\n  >\n    <!-- <i class=\"bi bi-grip-vertical h5\">      </i>-->\n\n    <span\n      class=\"text-white\"\n      style=\"writing-mode: vertical-rl; transform: rotate(180deg);\"\n    >\n      {{ $t('grid.gridedit') }}\n    </span>\n  </button>\n\n  <div\n    class=\"grid-container z-0\"\n    style=\"height: calc(100vh - 51px);\"\n  >\n    <div class=\"grid-stack z-0\">\n      <div\n        v-for=\"(w) in items\"\n        :id=\"w.id\"\n        :key=\"w.id\"\n        class=\"grid-stack-item\"\n        :gs-x=\"w.x\"\n        :gs-y=\"w.y\"\n        :gs-w=\"w.w\"\n        :gs-h=\"w.h\"\n        :gs-id=\"w.id\"\n        :gs-auto-position=\"w.autoPlace\"\n      >\n        <div class=\"grid-stack-item-content\">\n          <button\n            class=\"btn-close grid-stack-floaty-btn\"\n            :class=\"settingsStore.local.grid_enabled === true ? 'visible':'invisible'\"\n            @click=\"remove(w)\"\n          />\n          <component :is=\"w.component2\" />\n        </div>\n      </div>\n    </div>\n  </div>\n\n  <div\n    id=\"offcanvasGridItems\"\n    class=\"offcanvas offcanvas-end\"\n    data-bs-scroll=\"true\"\n    data-bs-backdrop=\"true\"\n    tabindex=\"-1\"\n    aria-labelledby=\"offcanvasGridItemsLabel\"\n  >\n    <div class=\"offcanvas-header\">\n      <h5\n        id=\"offcanvasGridItemsLabel\"\n        class=\"offcanvas-title\"\n      >\n        {{ $t('grid.managegridwidgets') }} &nbsp;<button\n          class=\"btn btn-sm\"\n          :class=\"settingsStore.local.grid_enabled == true ? 'btn-outline-success' : 'btn-outline-danger'\"\n          type=\"button\"\n          title=\"Lock/unloack changes to grid\"\n          @click=\"toggleGridEdit\"\n        >\n          <i\n            class=\"bi\"\n            :class=\"settingsStore.local.grid_enabled == true ? 'bi-unlock-fill' : 'bi-lock-fill'\"\n          />\n        </button>&nbsp;\n      </h5>\n\n      <button\n        type=\"button\"\n        class=\"btn-close\"\n        data-bs-dismiss=\"offcanvas\"\n        aria-label=\"Close\"\n      />\n    </div>\n    <div class=\"offcanvas-body\">\n      <p>\n        {{ $t('grid.gridwidgetsdescription') }}\n      </p>\n      <div>\n        <button\n          class=\"btn btn-outline-primary mb-2\"\n          type=\"button\"\n          @click=\"quickfill\"\n        >\n          {{ $t('grid.fillgrid') }}\n        </button>\n        <button\n          class=\"btn btn-outline-primary\"\n          type=\"button\"\n          @click=\"quickfillSM\"\n        >\n          {{ $t('grid.fillgridsmallscreen') }}\n        </button>\n      </div>\n      <hr>\n      <!-- Begin widget selector -->\n      <div\n        id=\"accordionExample\"\n        class=\"accordion\"\n      >\n        <!-- Heard Stations -->\n        <div class=\"accordion-item\">\n          <h2\n            id=\"headingHeardStations\"\n            class=\"accordion-header\"\n          >\n            <button\n              class=\"accordion-button\"\n              type=\"button\"\n              data-bs-toggle=\"collapse\"\n              data-bs-target=\"#collapseHeardStations\"\n              aria-expanded=\"true\"\n              aria-controls=\"collapseHeardStations\"\n            >\n              <strong>{{ $t('grid.activity') }}</strong>\n            </button>\n          </h2>\n          <div\n            id=\"collapseHeardStations\"\n            class=\"accordion-collapse collapse show\"\n            aria-labelledby=\"headingHeardStations\"\n            data-bs-parent=\"#accordionExample\"\n          >\n            <div\n              id=\"activityBody\"\n              class=\"accordion-body\"\n            />\n          </div>\n        </div>\n\n        <!-- Activities -->\n        <div class=\"accordion-item\">\n          <h2\n            id=\"headingActivities\"\n            class=\"accordion-header\"\n          >\n            <button\n              class=\"accordion-button collapsed\"\n              type=\"button\"\n              data-bs-toggle=\"collapse\"\n              data-bs-target=\"#collapseActivities\"\n              aria-expanded=\"false\"\n              aria-controls=\"collapseActivities\"\n            >\n              <strong>{{ $t('grid.audio') }}</strong>\n            </button>\n          </h2>\n          <div\n            id=\"collapseActivities\"\n            class=\"accordion-collapse collapse\"\n            aria-labelledby=\"headingActivities\"\n            data-bs-parent=\"#accordionExample\"\n          >\n            <div\n              id=\"audioBody\"\n              class=\"accordion-body\"\n            />\n          </div>\n        </div>\n        <!-- Broadcasts -->\n        <div class=\"accordion-item\">\n          <h2\n            id=\"headingBroadcasts\"\n            class=\"accordion-header\"\n          >\n            <button\n              class=\"accordion-button collapsed\"\n              type=\"button\"\n              data-bs-toggle=\"collapse\"\n              data-bs-target=\"#collapseBroadcasts\"\n              aria-expanded=\"false\"\n              aria-controls=\"collapseBroadcasts\"\n            >\n              <strong>{{ $t('grid.broadcasts') }}</strong>\n            </button>\n          </h2>\n          <div\n            id=\"collapseBroadcasts\"\n            class=\"accordion-collapse collapse\"\n            aria-labelledby=\"headingBroadcasts\"\n            data-bs-parent=\"#accordionExample\"\n          >\n            <div\n              id=\"broadcastsBody\"\n              class=\"accordion-body\"\n            />\n          </div>\n        </div>\n        <!-- Radio Control -->\n        <div class=\"accordion-item\">\n          <h2\n            id=\"headingRadioControl\"\n            class=\"accordion-header\"\n          >\n            <button\n              class=\"accordion-button collapsed\"\n              type=\"button\"\n              data-bs-toggle=\"collapse\"\n              data-bs-target=\"#collapseRadioControl\"\n              aria-expanded=\"false\"\n              aria-controls=\"collapseRadioControl\"\n            >\n              <strong>{{ $t('grid.radiocontrol') }}</strong>\n            </button>\n          </h2>\n          <div\n            id=\"collapseRadioControl\"\n            class=\"accordion-collapse collapse\"\n            aria-labelledby=\"headingRadioControl\"\n            data-bs-parent=\"#accordionExample\"\n          >\n            <div\n              id=\"rigBody\"\n              class=\"accordion-body\"\n            />\n          </div>\n        </div>\n\n        <!-- Audio Control -->\n        <div class=\"accordion-item\">\n          <h2\n            id=\"headingAudioControl\"\n            class=\"accordion-header\"\n          >\n            <button\n              class=\"accordion-button collapsed\"\n              type=\"button\"\n              data-bs-toggle=\"collapse\"\n              data-bs-target=\"#collapseAudioControl\"\n              aria-expanded=\"false\"\n              aria-controls=\"collapseAudioControl\"\n            >\n              <strong>{{ $t('grid.statistics') }}</strong>\n            </button>\n          </h2>\n          <div\n            id=\"collapseAudioControl\"\n            class=\"accordion-collapse collapse\"\n            aria-labelledby=\"headingAudioControl\"\n            data-bs-parent=\"#accordionExample\"\n          >\n            <div\n              id=\"statsBody\"\n              class=\"accordion-body\"\n            />\n          </div>\n        </div>\n\n        <!-- Statistics -->\n        <div class=\"accordion-item\">\n          <h2\n            id=\"headingStatistics\"\n            class=\"accordion-header\"\n          >\n            <button\n              class=\"accordion-button collapsed\"\n              type=\"button\"\n              data-bs-toggle=\"collapse\"\n              data-bs-target=\"#collapseStatistics\"\n              aria-expanded=\"false\"\n              aria-controls=\"collapseStatistics\"\n            >\n              <strong>{{ $t('grid.other') }}</strong>\n            </button>\n          </h2>\n          <div\n            id=\"collapseStatistics\"\n            class=\"accordion-collapse collapse\"\n            aria-labelledby=\"headingStatistics\"\n            data-bs-parent=\"#accordionExample\"\n          >\n            <div\n              id=\"otherBody\"\n              class=\"accordion-body\"\n            />\n          </div>\n        </div>\n      </div>\n      <hr>\n      <button\n        class=\"btn btn-sm btn-outline-warning\"\n        type=\"button\"\n        :title=\"$t('grid.cleargrid_help')\"\n        @click=\"clearAllItems\"\n      >\n        {{ $t('grid.cleargrid') }}\n      </button>\n      <hr>\n      <button\n        class=\"btn btn-sm btn-outline-secondary\"\n        type=\"button\"\n        :title=\"$t('grid.restorepreset_help')\"\n        @click=\"loadPreset\"\n      >\n        {{ $t('grid.restorepreset') }}\n      </button>&nbsp;\n      <button\n        class=\"btn btn-sm btn-outline-secondary\"\n        type=\"button\"\n        :title=\"$t('grid.savepreset_help')\"\n        @click=\"savePreset\"\n      >\n        {{ $t('grid.savepreset') }}\n      </button>\n      <hr>\n      <button\n        class=\"btn btn-sm btn-outline-secondary\"\n        type=\"button\"\n        :title=\"$t('grid.downloadpreset_help')\"\n        @click=\"downloadPreset\"\n      >\n        {{ $t('grid.downloadpreset') }}<i class=\"ms-1 bi bi-download\" />\n      </button>\n\n      <button\n        class=\"ms-2 btn btn-sm btn-outline-secondary\"\n        type=\"button\"\n        :title=\"$t('grid.uploadpreset_help')\"\n        @click=\"uploadPreset\"\n      >\n        {{ $t('grid.uploadpreset') }}<i class=\"ms-1 bi bi-upload\" />\n      </button>\n    </div>\n  </div>\n\n  <div\n    id=\"offcanvasFrequency\"\n    class=\"offcanvas offcanvas-end text-start\"\n    data-bs-scroll=\"true\"\n    data-bs-backdrop=\"true\"\n    tabindex=\"-1\"\n    aria-labelledby=\"offcanvasFrequencyLabel\"\n  >\n    <div class=\"offcanvas-header\">\n      <h5 class=\"offcanvas-title\">\n        {{ $t('grid.frequencyselection') }}\n      </h5>\n      <button\n        type=\"button\"\n        class=\"btn-close\"\n        data-bs-dismiss=\"offcanvas\"\n        aria-label=\"Close\"\n      />\n    </div>\n    <div class=\"offcanvas-body\">\n      <p>\n        {{ $t('grid.frequencydescription') }}\n      </p>\n      <ul\n        class=\"list-group\"\n        aria-labelledby=\"dropdownMenuButton\"\n        style=\"z-index: 50\"\n      >\n        <li class=\"list-group-item\">\n          <div class=\"input-group p-1\">\n            <span class=\"input-group-text\">{{ $t('general.frequency') }}</span>\n            <input\n              v-model=\"state.new_frequency\"\n              style=\"max-width: 8rem\"\n              pattern=\"[0-9]*\"\n              type=\"text\"\n              class=\"form-control form-control-sm\"\n              :class=\"{\n                disabled: state.hamlib_status === 'disconnected',\n              }\"\n              placeholder=\"Type frequency...\"\n              aria-label=\"Frequency\"\n            >\n            <button\n              class=\"btn btn-sm btn-outline-success\"\n              type=\"button\"\n              :class=\"{\n                disabled: state.hamlib_status === 'disconnected',\n              }\"\n              @click=\"updateFrequencyAndApply(state.new_frequency)\"\n            >\n              <i class=\"bi bi-check-square\" />\n            </button>\n          </div>\n        </li>\n\n        <!-- Dropdown Divider -->\n        <li class=\"list-group-item\">\n          <hr class=\"dropdown-divider\">\n        </li>\n        <!-- Dropdown Items -->\n        <a\n          href=\"#\"\n          class=\"list-group-item list-group-item-action\"\n          @click=\"updateFrequencyAndApply(50616000)\"\n        >\n          <div class=\"d-flex w-100 justify-content-between\">\n            <h5 class=\"mb-1\">50.616 MHz</h5>\n            <small>EU / US</small>\n            <h6>6m</h6>\n          </div>\n        </a>\n        <a\n          href=\"#\"\n          class=\"list-group-item list-group-item-action\"\n          @click=\"updateFrequencyAndApply(50308000)\"\n        >\n          <div class=\"d-flex w-100 justify-content-between\">\n            <h5 class=\"mb-1\">50.308 MHz</h5>\n            <small>US</small>\n            <h6>6m</h6>\n          </div>\n        </a>\n        <a\n          href=\"#\"\n          class=\"list-group-item list-group-item-action\"\n          @click=\"updateFrequencyAndApply(28093000)\"\n        >\n          <div class=\"d-flex w-100 justify-content-between\">\n            <h5 class=\"mb-1\">28.093 MHz</h5>\n            <small>EU / US</small>\n            <h6>10m</h6>\n          </div>\n        </a>\n        <a\n          href=\"#\"\n          class=\"list-group-item list-group-item-action\"\n          @click=\"updateFrequencyAndApply(27265000)\"\n        >\n          <div class=\"d-flex w-100 justify-content-between\">\n            <h5 class=\"mb-1\">27.265 MHz</h5>\n            <small>Ch 26</small>\n            <h6>11m</h6>\n          </div>\n        </a>\n        <a\n          href=\"#\"\n          class=\"list-group-item list-group-item-action\"\n          @click=\"updateFrequencyAndApply(27245000)\"\n        >\n          <div class=\"d-flex w-100 justify-content-between\">\n            <h5 class=\"mb-1\">27.245 MHz</h5>\n            <small>Ch 25</small>\n            <h6>11m</h6>\n          </div>\n        </a>\n        <a\n          href=\"#\"\n          class=\"list-group-item list-group-item-action\"\n          @click=\"updateFrequencyAndApply(24908000)\"\n        >\n          <div class=\"d-flex w-100 justify-content-between\">\n            <h5 class=\"mb-1\">24.908 MHz</h5>\n            <small>EU / US</small>\n            <h6>12m</h6>\n          </div>\n        </a>\n        <a\n          href=\"#\"\n          class=\"list-group-item list-group-item-action\"\n          @click=\"updateFrequencyAndApply(21093000)\"\n        >\n          <div class=\"d-flex w-100 justify-content-between\">\n            <h5 class=\"mb-1\">21.093 MHz</h5>\n            <small>EU / US</small>\n            <h6>15m</h6>\n          </div>\n        </a>\n        <a\n          href=\"#\"\n          class=\"list-group-item list-group-item-action\"\n          @click=\"updateFrequencyAndApply(18106000)\"\n        >\n          <div class=\"d-flex w-100 justify-content-between\">\n            <h5 class=\"mb-1\">18.106 MHz</h5>\n            <small>EU / US</small>\n            <h6>17m</h6>\n          </div>\n        </a>\n        <a\n          href=\"#\"\n          class=\"list-group-item list-group-item-action\"\n          @click=\"updateFrequencyAndApply(14093000)\"\n        >\n          <div class=\"d-flex w-100 justify-content-between\">\n            <h5 class=\"mb-1\">14.093 MHz</h5>\n            <small>EU / US</small>\n            <h6>20m</h6>\n          </div>\n        </a>\n        <a\n          href=\"#\"\n          class=\"list-group-item list-group-item-action\"\n          @click=\"updateFrequencyAndApply(7053000)\"\n        >\n          <div class=\"d-flex w-100 justify-content-between\">\n            <h5 class=\"mb-1\">7.053 MHz</h5>\n            <small>EU / US</small>\n            <h6>40m</h6>\n          </div>\n        </a>\n      </ul>\n    </div>\n  </div>\n</template>\n\n<style>\n.fixed-middle-right {\n  position: fixed; /* Fixed/sticky position */\n  top: 50%; /* Position at the middle of the viewport */\n  right: 0px; /* Place the button 20px from the right */\n  transform: translateY(-50%); /* Adjust for exact vertical centering */\n  z-index: 999; /* Ensure it's on top of other elements */\n}\n\n.grid-stack-item {\n  text-align: center;\n  overflow: auto;\n  z-index: 50;\n}\n.grid-stack-floaty-btn {\n  position: absolute;\n  right: 2px;\n  z-index: 1000;\n  float: right;\n  top: 4px;\n}\n.grid-container {\n  overflow-y: auto;\n}\n.gs-24 > .grid-stack-item {\n  width: 4.167%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"1\"] {\n  left: 4.167%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"2\"] {\n  width: 8.333%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"2\"] {\n  left: 8.333%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"3\"] {\n  width: 12.5%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"3\"] {\n  left: 12.5%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"4\"] {\n  width: 16.667%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"4\"] {\n  left: 16.667%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"5\"] {\n  width: 20.833%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"5\"] {\n  left: 20.833%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"6\"] {\n  width: 25%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"6\"] {\n  left: 25%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"7\"] {\n  width: 29.167%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"7\"] {\n  left: 29.167%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"8\"] {\n  width: 33.333%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"8\"] {\n  left: 33.333%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"9\"] {\n  width: 37.5%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"9\"] {\n  left: 37.5%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"10\"] {\n  width: 41.667%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"10\"] {\n  left: 41.667%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"11\"] {\n  width: 45.833%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"11\"] {\n  left: 45.833%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"12\"] {\n  width: 50%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"12\"] {\n  left: 50%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"13\"] {\n  width: 54.167%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"13\"] {\n  left: 54.167%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"14\"] {\n  width: 58.333%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"14\"] {\n  left: 58.333%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"15\"] {\n  width: 62.5%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"15\"] {\n  left: 62.5%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"16\"] {\n  width: 66.667%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"16\"] {\n  left: 66.667%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"17\"] {\n  width: 70.833%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"17\"] {\n  left: 70.833%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"18\"] {\n  width: 75%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"18\"] {\n  left: 75%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"19\"] {\n  width: 79.167%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"19\"] {\n  left: 79.167%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"20\"] {\n  width: 83.333%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"20\"] {\n  left: 83.333%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"21\"] {\n  width: 87.5%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"21\"] {\n  left: 87.5%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"22\"] {\n  width: 91.667%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"22\"] {\n  left: 91.667%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"23\"] {\n  width: 95.833%;\n}\n.gs-24 > .grid-stack-item[gs-x=\"23\"] {\n  left: 95.833%;\n}\n.gs-24 > .grid-stack-item[gs-w=\"24\"] {\n  width: 100%;\n}\n</style>"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_CQ.vue",
    "content": "<script setup>\nimport { setActivePinia } from 'pinia';\nimport pinia from '../../store/index';\nsetActivePinia(pinia);\nimport { ref } from \"vue\";\n\n\nimport { sendModemCQ } from '../../js/api.js';\nconst isCQButtonDisabled = ref(false);\n\n// Function to send CQ and handle button disable and cooldown\nasync function handleCQCall() {\n  isCQButtonDisabled.value = true;\n\n  // Send CQ message\n  await sendModemCQ();\n\n  // Wait for 3 seconds (cooldown period)\n  setTimeout(() => {\n    isCQButtonDisabled.value = false;\n  }, 3000);\n}\n\n\n</script>\n\n<template>\n  <div\n    class=\"fill h-100\"\n    style=\"width: calc(100% - 24px)\"\n  >\n    <a\n      class=\"btn btn-sm btn-secondary d-flex justify-content-center align-items-center object-fill border rounded w-100 h-100\"\n      :title=\"$t('grid.components.callcq') \"\n      @click=\"handleCQCall\"\n    >\n      <span v-if=\"!isCQButtonDisabled\">CQ</span>\n      <span v-else>...</span>\n    </a>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_active_audio.vue",
    "content": "<script setup>\nimport { setActivePinia } from 'pinia';\nimport pinia from '../../store/index';\nsetActivePinia(pinia);\n\nimport { useStateStore } from '../../store/stateStore.js';\nconst state = useStateStore(pinia);\n</script>\n\n<template>\n  <div class=\"card w-100 h-100\">\n    <div class=\"card-header mb-1\">\n      <i\n        class=\"bi bi-volume-up\"\n        style=\"font-size: 1rem\"\n      />&nbsp;\n      <strong>{{ $t('grid.components.audio') }}</strong>\n    </div>\n    <div class=\"card-body pt-0 pb-0\">\n      <div class=\"container-wide\">\n        <div class=\"row\">\n          <div class=\"col-lg-6\">\n            <div\n              class=\"progress mb-0 rounded-0 rounded-top\"\n              style=\"height: 22px\"\n            >\n              <div\n                id=\"noise_level\"\n                class=\"progress-bar progress-bar-striped bg-primary force-gpu\"\n                role=\"progressbar\"\n                :style=\"{ width: state.s_meter_strength_percent + '%' }\"\n                :aria-valuenow=\"state.s_meter_strength_percent\"\n                aria-valuemin=\"0\"\n                aria-valuemax=\"100\"\n              />\n              <p\n                id=\"noise_level_value\"\n                class=\"justify-content-center d-flex position-absolute w-100\"\n              >\n                S-Meter(dB): {{ state.s_meter_strength_raw }}\n              </p>\n            </div>\n            <div\n              class=\"progress mb-0 rounded-0 rounded-bottom\"\n              style=\"height: 8px\"\n            >\n              <div\n                class=\"progress-bar progress-bar-striped bg-warning\"\n                role=\"progressbar\"\n                style=\"width: 1%\"\n                aria-valuenow=\"1\"\n                aria-valuemin=\"0\"\n                aria-valuemax=\"100\"\n              />\n              <div\n                class=\"progress-bar bg-success\"\n                role=\"progressbar\"\n                style=\"width: 89%\"\n                aria-valuenow=\"50\"\n                aria-valuemin=\"0\"\n                aria-valuemax=\"100\"\n              />\n              <div\n                class=\"progress-bar progress-bar-striped bg-warning\"\n                role=\"progressbar\"\n                style=\"width: 20%\"\n                aria-valuenow=\"20\"\n                aria-valuemin=\"0\"\n                aria-valuemax=\"100\"\n              />\n              <div\n                class=\"progress-bar progress-bar-striped bg-danger\"\n                role=\"progressbar\"\n                style=\"width: 29%\"\n                aria-valuenow=\"29\"\n                aria-valuemin=\"0\"\n                aria-valuemax=\"100\"\n              />\n            </div>\n          </div>\n          <div class=\"col-lg-6\">\n            <div\n              class=\"progress mb-0 rounded-0 rounded-top\"\n              style=\"height: 22px\"\n            >\n              <div\n                id=\"dbfs_level\"\n                class=\"progress-bar progress-bar-striped bg-primary force-gpu\"\n                role=\"progressbar\"\n                :style=\"{ width: state.dbfs_level_percent + '%' }\"\n                :aria-valuenow=\"state.dbfs_level_percent\"\n                aria-valuemin=\"0\"\n                aria-valuemax=\"100\"\n              />\n              <p\n                id=\"dbfs_level_value\"\n                class=\"justify-content-center d-flex position-absolute w-100\"\n              >\n                {{ state.dbfs_level }} dBFS\n              </p>\n            </div>\n            <div\n              class=\"progress mb-0 rounded-0 rounded-bottom\"\n              style=\"height: 8px\"\n            >\n              <div\n                class=\"progress-bar progress-bar-striped bg-warning\"\n                role=\"progressbar\"\n                style=\"width: 1%\"\n                aria-valuenow=\"1\"\n                aria-valuemin=\"0\"\n                aria-valuemax=\"100\"\n              />\n              <div\n                class=\"progress-bar bg-success\"\n                role=\"progressbar\"\n                style=\"width: 89%\"\n                aria-valuenow=\"50\"\n                aria-valuemin=\"0\"\n                aria-valuemax=\"100\"\n              />\n              <div\n                class=\"progress-bar progress-bar-striped bg-warning\"\n                role=\"progressbar\"\n                style=\"width: 20%\"\n                aria-valuenow=\"20\"\n                aria-valuemin=\"0\"\n                aria-valuemax=\"100\"\n              />\n              <div\n                class=\"progress-bar progress-bar-striped bg-danger\"\n                role=\"progressbar\"\n                style=\"width: 29%\"\n                aria-valuenow=\"29\"\n                aria-valuemin=\"0\"\n                aria-valuemax=\"100\"\n              />\n            </div>\n          </div>\n        </div>\n      </div>\n    </div>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_active_broadcasts.vue",
    "content": "<script setup>\nimport { ref } from \"vue\";\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../../store/index\";\nimport { useStateStore } from \"../../store/stateStore.js\";\nimport { sendModemCQ, sendModemPing, setModemBeacon } from \"../../js/api.js\";\n\n// Set the active Pinia store\nsetActivePinia(pinia);\nconst state = useStateStore(pinia);\n\n// Reactive reference for DX Call\nconst dxcallPing = ref(\"\");\n\n// Reactive references to manage button states\nconst isCQButtonDisabled = ref(false);\nconst isPingButtonDisabled = ref(false);\n\n\n\n// Function to transmit a ping\nasync function transmitPing() {\n  isPingButtonDisabled.value = true;\n\n  // Send Ping message\n  await sendModemPing(dxcallPing.value.toUpperCase());\n\n  // Wait for 3 seconds (cooldown period)\n  setTimeout(() => {\n    isPingButtonDisabled.value = false;\n  }, 3000);\n}\n\n// Function to send CQ and handle button disable and cooldown\nasync function handleSendCQ() {\n  isCQButtonDisabled.value = true;\n\n  // Send CQ message\n  await sendModemCQ();\n\n  // Wait for 3 seconds (cooldown period)\n  setTimeout(() => {\n    isCQButtonDisabled.value = false;\n  }, 3000);\n}\n\n\n// Function to start or stop the beacon\nfunction startStopBeacon() {\n  if (state.beacon_state) {\n    setModemBeacon(false);\n  } else {\n    setModemBeacon(true);\n  }\n}\n\n// Listen for the stationSelected event and update dxcallPing\nwindow.addEventListener(\n  \"stationSelected\",\n  function (eventdata) {\n    const evt = eventdata;\n    dxcallPing.value = evt.detail;\n  },\n  false\n);\n</script>\n\n<template>\n  <div class=\"card h-100\">\n    <div class=\"card-header\">\n      <i\n        class=\"bi bi-broadcast\"\n        style=\"font-size: 1.2rem\"\n      />&nbsp;\n      <strong>{{ $t('grid.components.broadcasts') }}</strong>\n    </div>\n    <div class=\"card-body overflow-auto\">\n      <div class=\"input-group\">\n        <input\n          v-model=\"dxcallPing\"\n          type=\"text\"\n          class=\"form-control\"\n          style=\"max-width: 6rem; min-width: 3rem; text-transform: uppercase\"\n          placeholder=\"DXcall\"\n          pattern=\"[A-Z]*\"\n          maxlength=\"11\"\n          aria-label=\"Input group\"\n          aria-describedby=\"btnGroupAddon\"\n        >\n        <button\n          id=\"sendPing\"\n          class=\"btn btn-outline-secondary\"\n          type=\"button\"\n          data-bs-placement=\"bottom\"\n          data-bs-toggle=\"tooltip\"\n          data-bs-trigger=\"hover\"\n          data-bs-html=\"false\"\n          title=\"Send a ping request to a remote station\"\n          @click=\"transmitPing\"\n        >\n          <strong v-if=\"!isPingButtonDisabled\">{{ $t('grid.components.pingstation') }}</strong>\n          <strong v-else>{{ $t('grid.components.transmitting') }}</strong>\n        </button>\n\n        <button\n          id=\"sendCQ\"\n          class=\"btn btn-outline-secondary ms-1\"\n          type=\"button\"\n          :title=\" $t('grid.components.cqcqcq_help')\"\n          @click=\"handleSendCQ\"\n        >\n          <span v-if=\"!isCQButtonDisabled\">{{ $t('grid.components.callcq') }}</span>\n          <span v-else>{{ $t('grid.components.sendingcq') }}</span>\n        </button>\n\n        <button\n          id=\"startBeacon\"\n          type=\"button\"\n          class=\"btn ms-1\"\n          :class=\"{\n            'btn-success': state.beacon_state,\n            'btn-outline-secondary': !state.beacon_state,\n          }\"\n          :title=\" $t('grid.components.togglebeacon_help')\"\n          @click=\"startStopBeacon\"\n        >\n          {{ $t('grid.components.togglebeacon') }}\n        </button>\n      </div>\n      <!-- end of row-->\n    </div>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_active_broadcasts_vert.vue",
    "content": "<script setup>\nimport { ref } from \"vue\";\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../../store/index\";\nimport { useStateStore } from \"../../store/stateStore.js\";\nimport { sendModemCQ, sendModemPing, setModemBeacon } from \"../../js/api.js\";\n\n// Set the active Pinia store\nsetActivePinia(pinia);\nconst state = useStateStore(pinia);\n\n// Define the reactive reference for DX Call\nconst dxcallPing = ref(\"\");\n\n// Reactive references to manage button states\nconst isCQButtonDisabled = ref(false);\nconst isPingButtonDisabled = ref(false);\n\n// Function to transmit a ping\nasync function transmitPing() {\n  isPingButtonDisabled.value = true;\n\n  // Send Ping message\n  await sendModemPing(dxcallPing.value.toUpperCase());\n\n  // Wait for 3 seconds (cooldown period)\n  setTimeout(() => {\n    isPingButtonDisabled.value = false;\n  }, 3000);\n}\n\n// Function to start or stop the beacon\nfunction startStopBeacon() {\n  if (state.beacon_state) {\n    setModemBeacon(false, state.away_from_key);\n  } else {\n    setModemBeacon(true, state.away_from_key);\n  }\n}\n\n// Function to set away from key state\nfunction setAwayFromKey() {\n  setModemBeacon(state.beacon_state, state.away_from_key);\n}\n\n// Function to send CQ and handle button disable and cooldown\nasync function handleSendCQ() {\n  isCQButtonDisabled.value = true;\n\n  // Send CQ message\n  await sendModemCQ();\n\n  // Wait for 6 seconds (cooldown period)\n  setTimeout(() => {\n    isCQButtonDisabled.value = false;\n  }, 3000);\n}\n\n// Listen for the stationSelected event and update dxcallPing\nwindow.addEventListener(\n  \"stationSelected\",\n  function (eventdata) {\n    const evt = eventdata;\n    dxcallPing.value = evt.detail;\n  },\n  false\n);\n</script>\n\n\n<template>\n  <div class=\"card h-100\">\n    <div class=\"card-header\">\n      <i\n        class=\"bi bi-broadcast\"\n        style=\"font-size: 1.2rem\"\n      />&nbsp;\n      <strong>{{ $t('grid.components.broadcasts') }}</strong>\n    </div>\n    <div class=\"card-body overflow-auto p-0\">\n      <div class=\"container text-center\">\n        <div class=\"row mb-2 mt-2\">\n          <div class=\"col\">\n            <div class=\"input-group w-100\">\n              <div class=\"form-floating\">\n                <input\n                  id=\"floatingInput\"\n                  v-model=\"dxcallPing\"\n                  type=\"text\"\n                  class=\"form-control\"\n                  style=\"text-transform: uppercase\"\n                  placeholder=\"dx-callsign\"\n                  maxlength=\"11\"\n                  pattern=\"[A-Z]*\"\n                >\n                <label for=\"floatingInput\">{{ $t('grid.components.dxcall') }}</label>\n              </div>\n              <button\n                id=\"sendPing\"\n                class=\"btn btn-sm btn-outline-secondary\"\n                type=\"button\"\n                data-bs-placement=\"bottom\"\n                data-bs-toggle=\"tooltip\"\n                data-bs-trigger=\"hover\"\n                data-bs-html=\"false\"\n                :title=\"$t('grid.components.ping_help') \"\n                :disabled=\"isPingButtonDisabled\"\n                @click=\"transmitPing\"\n              >\n                <strong v-if=\"!isPingButtonDisabled\">{{ $t('grid.components.pingstation') }}</strong>\n                <strong v-else>{{ $t('grid.components.sendingping') }}</strong>\n              </button>\n            </div>\n          </div>\n        </div>\n\n        <div class=\"row\">\n          <div class=\"col\">\n            <button\n              id=\"sendCQ\"\n              class=\"btn btn-sm btn-outline-secondary w-100\"\n              type=\"button\"\n              :title=\" $t('grid.components.cqcqcq_help')\"\n              :disabled=\"isCQButtonDisabled\"\n              @click=\"handleSendCQ\"\n            >\n              <h3>\n                <span v-if=\"!isCQButtonDisabled\">{{ $t('grid.components.cqcqcq') }}</span>\n                <span v-else>{{ $t('grid.components.sendingcq') }}</span>\n              </h3>\n            </button>\n          </div>\n        </div>\n\n        <div class=\"row\">\n          <div class=\"col\">\n            <div class=\"form-check form-switch\">\n              <input\n                id=\"flexSwitchBeacon\"\n                v-model=\"state.beacon_state\"\n                class=\"form-check-input\"\n                type=\"checkbox\"\n                role=\"switch\"\n                @click=\"startStopBeacon\"\n              >\n              <label\n                class=\"form-check-label\"\n                for=\"flexSwitchBeacon\"\n              >{{ $t('grid.components.enablebeacon') }}</label>\n            </div>\n          </div>\n\n          <div class=\"col\">\n            <div class=\"form-check form-switch\">\n              <input\n                id=\"flexSwitchAFK\"\n                v-model=\"state.away_from_key\"\n                class=\"form-check-input\"\n                type=\"checkbox\"\n                role=\"switch\"\n                @change=\"setAwayFromKey\"\n              >\n              <label\n                class=\"form-check-label\"\n                for=\"flexSwitchAFK\"\n              >{{ $t('grid.components.awayfromkey') }}</label>\n            </div>\n          </div>\n        </div>\n      </div>\n    </div>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_active_heard_stations.vue",
    "content": "<script setup>\n// @ts-nocheck\nconst { distance } = require(\"qth-locator\");\n\nimport { setActivePinia } from 'pinia';\nimport pinia from '../../store/index';\nsetActivePinia(pinia);\n\nimport { settingsStore as settings } from '../../store/settingsStore.js';\nimport { useStateStore } from '../../store/stateStore.js';\nimport { useChatStore } from '../../store/chatStore.js';\nimport { getStationInfoByCallsign } from './../../js/stationHandler';\nimport { sendModemPing } from '../../js/api.js';\n\nconst state = useStateStore(pinia);\nconst chat = useChatStore(pinia);\n\nfunction getDateTime(timestampRaw) {\n  var datetime = new Date(timestampRaw * 1000).toLocaleString(\n    navigator.language,\n    {\n      hourCycle: 'h23',\n      month: '2-digit',\n      day: '2-digit',\n      hour: '2-digit',\n      minute: '2-digit',\n      second: '2-digit',\n    }\n  );\n  return datetime;\n}\n\nfunction getMaidenheadDistance(dxGrid) {\n  try {\n    return parseInt(distance(settings.remote.STATION.mygrid, dxGrid));\n  } catch (e) {\n    //\n  }\n}\n\nfunction pushToPing(origin) {\n  window.dispatchEvent(\n    new CustomEvent('stationSelected', { bubbles: true, detail: origin })\n  );\n}\n\nconst activityIcons = {\n  ARQ_SESSION_INFO: 'bi bi-file-earmark-binary',\n  ARQ_SESSION_OPEN: 'bi bi-file-earmark-binary',\n  ARQ_SESSION_OPEN_ACK: 'bi bi-file-earmark-binary',\n  ARQ_BURST: 'bi bi-file-earmark-binary',\n  ARQ_BURST_ACK: 'bi bi-file-earmark-binary',\n  P2P_CONNECTION_CONNECT: 'bi bi-arrow-left-right',\n  P2P_CONNECTION_CONNECT_ACK: 'bi bi-arrow-left-right',\n  P2P_CONNECTION_PAYLOAD: 'bi bi-arrow-left-right',\n  P2P_CONNECTION_PAYLOAD_ACK: 'bi bi-arrow-left-right',\n  P2P_CONNECTION_DISCONNECT: 'bi bi-arrow-left-right',\n  P2P_CONNECTION_DISCONNECT_ACK: 'bi bi-arrow-left-right',\n  QRV: 'bi bi-person-raised-hand',\n  CQ: 'bi bi-megaphone',\n  BEACON: 'bi bi-globe',\n  PING_ACK: 'bi bi-check-square'\n};\n\nfunction getActivityInfo(activityType) {\n  if (!activityType) {\n    return { iconClass: 'bi bi-question-circle', description: 'Unknown activity' };\n  }\n\n  return {\n    iconClass: activityIcons[activityType] || 'bi bi-question-circle',\n    description: activityType\n  };\n}\n\nfunction startNewChat(callsign) {\n  chat.newChatCallsign = callsign;\n  chat.newChatMessage = 'Hi there! Nice to meet you!';\n}\n\nfunction transmitPing(callsign) {\n  sendModemPing(callsign.toUpperCase());\n}\n</script>\n\n<template>\n  <div class=\"card h-100\">\n    <!--325px-->\n    <div class=\"card-header\">\n      <i\n        class=\"bi bi-list-columns-reverse\"\n        style=\"font-size: 1.2rem\"\n      />&nbsp;\n      <strong>{{ $t('grid.components.heardstations') }}</strong>\n    </div>\n\n    <div class=\"card-body overflow-auto p-0\">\n      <div class=\"table-responsive\">\n        <!-- START OF TABLE FOR HEARD STATIONS -->\n        <table\n          id=\"tblHeardStationList\"\n          class=\"table table-sm table-striped\"\n        >\n          <thead>\n            <tr>\n              <th\n                id=\"thTime\"\n                scope=\"col\"\n              >\n                {{ $t('grid.components.time') }}\n              </th>\n              <th\n                id=\"thFreq\"\n                scope=\"col\"\n              >\n                {{ $t('grid.components.freq') }}\n              </th>\n              <th\n                id=\"thDxcall\"\n                scope=\"col\"\n              >\n                {{ $t('grid.components.dxcall') }}\n              </th>\n              <th\n                id=\"thDxgrid\"\n                scope=\"col\"\n              >\n                {{ $t('grid.components.grid') }}\n              </th>\n              <th\n                id=\"thDist\"\n                scope=\"col\"\n              >\n                {{ $t('grid.components.dist') }}\n              </th>\n              <th\n                id=\"thType\"\n                scope=\"col\"\n              >\n                {{ $t('grid.components.type') }}\n              </th>\n              <th\n                id=\"thSnr\"\n                scope=\"col\"\n              >\n                {{ $t('grid.components.snr') }}\n              </th>\n              <th\n                id=\"thSnr\"\n                scope=\"col\"\n              >\n                {{ $t('grid.components.afk') }}\n              </th>\n            </tr>\n          </thead>\n          <tbody id=\"gridHeardStations\">\n            <!--https://vuejs.org/guide/essentials/list.html-->\n            <tr\n              v-for=\"item in state.heard_stations\"\n              :key=\"item.origin\"\n              @click=\"pushToPing(item.origin)\"\n            >\n              <td>\n                <span class=\"badge text-bg-secondary\">{{ getDateTime(item.timestamp) }}</span>\n              </td>\n              <td><small>{{ item.frequency / 1000 }} kHz</small></td>\n              <td>\n                <button\n                  class=\"btn btn-sm btn-outline-secondary ms-2 border-0\"\n                  data-bs-target=\"#dxStationInfoModal\"\n                  data-bs-toggle=\"modal\"\n                  disabled\n                  @click=\"getStationInfoByCallsign(item.origin)\"\n                >\n                  <span class=\"badge text-bg-primary\">{{ item.origin }}</span>\n                </button>\n\n                <button\n                  class=\"btn btn-sm border-0 btn-outline-primary\"\n                  data-bs-target=\"#newChatModal\"\n                  data-bs-toggle=\"modal\"\n                  type=\"button\"\n                  data-bs-trigger=\"hover\"\n                  :title=\"$t('grid.components.newmessage_help')\"\n                  @click=\"startNewChat(item.origin)\"\n                >\n                  <i class=\"bi bi-pencil-square\" />\n                </button>\n\n                <button\n                  class=\"btn btn-sm border-0 btn-outline-primary\"\n                  data-bs-placement=\"top\"\n                  type=\"button\"\n                  data-bs-toggle=\"tooltip\"\n                  data-bs-trigger=\"hover\"\n                  :data-bs-title=\"$t('grid.components.ping_help')\"\n                  @click=\"transmitPing(item.origin)\"\n                >\n                  <i class=\"bi bi-arrow-left-right\" />\n                </button>\n              </td>\n              <td>\n                <small>{{ item.gridsquare }}</small>\n              </td>\n              <td><small>{{ getMaidenheadDistance(item.gridsquare) }} km</small></td>\n              <td>\n                <i\n                  :class=\"getActivityInfo(item.activity_type).iconClass\"\n                  data-bs-toggle=\"tooltip\"\n                  :title=\"getActivityInfo(item.activity_type).description\"\n                />\n              </td>\n              <td>\n                <small>{{ item.snr }}</small>\n              </td>\n              <td>\n                <i\n                  v-if=\"item.away_from_key\"\n                  class=\"bi bi-house-x\"\n                />\n                <i\n                  v-else\n                  class=\"bi bi-house-check-fill\"\n                />\n              </td>\n            </tr>\n          </tbody>\n        </table>\n      </div>\n\n      <!-- END OF HEARD STATIONS TABLE -->\n    </div>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_active_heard_stations_mini.vue",
    "content": "<script setup>\n// Initialize Pinia and state store\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../../store/index\";\nimport { useStateStore } from \"../../store/stateStore.js\";\n\n// Set active Pinia store\nsetActivePinia(pinia);\nconst state = useStateStore(pinia);\n\n// Format timestamp to human-readable datetime\nfunction getDateTime(timestampRaw) {\n  if (!timestampRaw) return \"N/A\"; // Handle invalid timestamps\n  return new Date(timestampRaw * 1000).toLocaleString(\n    navigator.language,\n    {\n      hourCycle: \"h23\",\n      month: \"2-digit\",\n      day: \"2-digit\",\n      hour: \"2-digit\",\n      minute: \"2-digit\",\n      second: \"2-digit\",\n    }\n  );\n}\n\n// Dispatch custom event for selected station\nfunction pushToPing(origin) {\n  window.dispatchEvent(\n    new CustomEvent(\"stationSelected\", { bubbles: true, detail: origin })\n  );\n}\n</script>\n\n<template>\n  <div class=\"card h-100\">\n    <div class=\"card-header\">\n      <i\n        class=\"bi bi-list-columns-reverse\"\n        style=\"font-size: 1.2rem\"\n      />&nbsp;\n      <strong>{{ $t('grid.components.heardstations') }}</strong>\n    </div>\n\n    <div class=\"card-body overflow-auto p-0\">\n      <div class=\"table-responsive\">\n        <!-- Table for Heard Stations -->\n        <table class=\"table table-sm table-striped\">\n          <thead>\n            <tr>\n              <th scope=\"col\">\n                Tim{{ $t('grid.components.time') }}e\n              </th>\n              <th scope=\"col\">\n                {{ $t('grid.components.dxcall') }}\n              </th>\n            </tr>\n          </thead>\n          <tbody>\n            <!-- Iterate over heard stations -->\n            <tr\n              v-for=\"item in state.heard_stations\"\n              :key=\"item.origin\"\n              role=\"row\"\n              aria-label=\"Heard Station\"\n              @click=\"pushToPing(item.origin)\"\n            >\n              <td>\n                <span class=\"fs-6\">{{ getDateTime(item.timestamp) }}</span>\n              </td>\n              <td>\n                <span>{{ item.origin }}</span>\n              </td>\n            </tr>\n          </tbody>\n        </table>\n      </div>\n    </div>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_active_rig_control.vue",
    "content": "<script setup>\n// reason for no check is, that we have some mixing of typescript and js that could be problematic\n\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../../store/index\";\nimport {\n  //setRadioParametersFrequency,\n  setRadioParametersMode,\n  setRadioParametersRFLevel,\n  setRadioParametersTuner,\n} from \"../../js/api\";\nsetActivePinia(pinia);\n\nimport { useStateStore } from \"../../store/stateStore.js\";\nconst state = useStateStore(pinia);\n\n//function setRadioParameterFrequency() {\n//  setRadioParametersFrequency(state.new_frequency);\n//}\n\nfunction setRadioParameterMode() {\n  setRadioParametersMode(state.mode);\n}\n\nfunction setRadioParameterRFLevel() {\n  setRadioParametersRFLevel(state.rf_level);\n}\n\nfunction setRadioParameterTuner() {\n  console.log(state.tuner);\n  setRadioParametersTuner(state.tuner);\n}\n</script>\n\n<template>\n  <div class=\"card h-100\">\n    <div class=\"card-header\">\n      <i\n        class=\"bi bi-house-door\"\n        style=\"font-size: 1.2rem\"\n      />&nbsp;\n      <strong>{{ $t('grid.components.radiocontrol') }}</strong>\n    </div>\n\n    <div class=\"card-body overflow-auto p-2\">\n      <div class=\"input-group input-group-sm bottom-0 m-0\">\n        <div class=\"me-2\">\n          <div class=\"input-group input-group-sm\">\n            <span class=\"input-group-text\">QRG</span>\n            <span class=\"input-group-text\">{{ state.frequency / 1000 }} kHz</span>\n            <button\n              class=\"btn btn-secondary dropdown-toggle\"\n              :class=\"{ disabled: state.hamlib_status === 'disconnected' }\"\n              type=\"button\"\n              data-bs-toggle=\"offcanvas\"\n              data-bs-target=\"#offcanvasFrequency\"\n              aria-controls=\"offcanvasExample\"\n            />\n          </div>\n        </div>\n\n        <div class=\"me-2\">\n          <div class=\"input-group input-group-sm\">\n            <span class=\"input-group-text\">{{ $t('grid.components.radiocontrolmode') }}</span>\n            <select\n              v-model=\"state.mode\"\n              class=\"form-control\"\n              :class=\"{ disabled: state.hamlib_status === 'disconnected' }\"\n              @change=\"setRadioParameterMode\"\n            >\n              <option\n                selected\n                value=\"\"\n              >\n                ---\n              </option>\n              <option value=\"USB\">\n                USB\n              </option>\n              <option value=\"USB-D\">\n                USB-D\n              </option>\n              <option value=\"PKTUSB\">\n                PKT-U\n              </option>\n            </select>\n          </div>\n        </div>\n\n        <div class=\"me-2\">\n          <div class=\"input-group input-group-sm\">\n            <span class=\"input-group-text\">{{ $t('grid.components.powerpercent') }}</span>\n            <select\n              v-model=\"state.rf_level\"\n              class=\"form-control\"\n              :class=\"{ disabled: state.hamlib_status === 'disconnected' }\"\n              @change=\"setRadioParameterRFLevel\"\n            >\n              <option value=\"0\">\n                -\n              </option>\n              <option value=\"5\">\n                5\n              </option>\n              <option value=\"10\">\n                10\n              </option>\n              <option value=\"15\">\n                15\n              </option>\n              <option value=\"20\">\n                20\n              </option>\n              <option value=\"25\">\n                25\n              </option>\n              <option value=\"30\">\n                30\n              </option>\n              <option value=\"35\">\n                35\n              </option>\n              <option value=\"40\">\n                40\n              </option>\n              <option value=\"45\">\n                45\n              </option>\n              <option value=\"50\">\n                50\n              </option>\n              <option value=\"55\">\n                55\n              </option>\n              <option value=\"60\">\n                60\n              </option>\n              <option value=\"65\">\n                65\n              </option>\n              <option value=\"70\">\n                70\n              </option>\n              <option value=\"75\">\n                75\n              </option>\n              <option value=\"80\">\n                80\n              </option>\n              <option value=\"85\">\n                85\n              </option>\n              <option value=\"90\">\n                90\n              </option>\n              <option value=\"95\">\n                95\n              </option>\n              <option value=\"100\">\n                100\n              </option>\n            </select>\n          </div>\n        </div>\n\n        <div class=\"form-check form-switch\">\n          <input\n            id=\"flexSwitchTuner\"\n            v-model=\"state.tuner\"\n            class=\"form-check-input\"\n            type=\"checkbox\"\n            role=\"switch\"\n            @change=\"setRadioParameterTuner\"\n          >\n          <label\n            class=\"form-check-label\"\n            for=\"flexSwitchTuner\"\n          >{{ $t('grid.components.tuner') }}</label>\n        </div>\n      </div>\n    </div>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_active_stats.vue",
    "content": "<script setup>\n// reason for no check is, that we have some mixing of typescript and chart js which seems to be not to be fixed that easy\nimport { ref, computed, onMounted } from \"vue\";\nimport { initWaterfall } from \"../../js/waterfallHandler.js\";\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../../store/index\";\nsetActivePinia(pinia);\n\nimport { useStateStore } from \"../../store/stateStore.js\";\nconst state = useStateStore(pinia);\n\nimport {\n  Chart as ChartJS,\n  CategoryScale,\n  LinearScale,\n  PointElement,\n  LineElement,\n  Title,\n  Tooltip,\n  Legend,\n} from \"chart.js\";\nimport { Line, Scatter } from \"vue-chartjs\";\n\nconst localSpectrumView = ref(\"waterfall\");\nfunction selectStatsControl(item) {\n  switch (item) {\n    case \"wf\":\n      localSpectrumView.value = \"waterfall\";\n      break;\n    case \"scatter\":\n      localSpectrumView.value = \"scatter\";\n      break;\n    case \"chart\":\n      localSpectrumView.value = \"chart\";\n      break;\n    default:\n      localSpectrumView.value = \"waterfall\";\n  }\n}\n\nChartJS.register(\n  CategoryScale,\n  LinearScale,\n  PointElement,\n  LineElement,\n  Title,\n  Tooltip,\n  Legend\n);\n\n// Chart.js options and data\nconst skipped = (speedCtx, value) =>\n  speedCtx.p0.skip || speedCtx.p1.skip ? value : undefined;\nconst down = (speedCtx, value) =>\n  speedCtx.p0.parsed.y > speedCtx.p1.parsed.y ? value : undefined;\n\nconst transmissionSpeedChartOptions = {\n  responsive: true,\n  animations: true,\n  maintainAspectRatio: false,\n  cubicInterpolationMode: \"monotone\",\n  tension: 0.4,\n  scales: {\n    SNR: {\n      type: \"linear\",\n      ticks: { beginAtZero: false, color: \"rgb(255, 99, 132)\" },\n      position: \"right\",\n    },\n    SPEED: {\n      type: \"linear\",\n      ticks: { beginAtZero: false, color: \"rgb(120, 100, 120)\" },\n      position: \"left\",\n      grid: {\n        drawOnChartArea: false, // only want the grid lines for one axis to show up\n      },\n    },\n    x: {\n      ticks: {\n        beginAtZero: true\n      },\n      grid:{\n        color:\"rgb(158,158,158, 1.0)\",\n      }\n    },\n    y: {\n      ticks: {\n        display: false\n      },\n      grid:{\n        color:\"rgb(158,158,158, 1.0)\",\n      }\n    },\n  },\n};\n\nconst transmissionSpeedChartData = computed(() => ({\n  labels: state.arq_speed_list_timestamp,\n  datasets: [\n    {\n      type: \"line\",\n      label: \"SNR[dB]\",\n      data: state.arq_speed_list_snr.value,\n      borderColor: \"rgb(75, 192, 192, 1.0)\",\n      pointRadius: 1,\n      segment: {\n        borderColor: (speedCtx) =>\n          skipped(speedCtx, \"rgb(0,0,0,0.4)\") ||\n          down(speedCtx, \"rgb(192,75,75)\"),\n        borderDash: (speedCtx) => skipped(speedCtx, [3, 3]),\n      },\n      spanGaps: true,\n      backgroundColor: \"rgba(75, 192, 192, 0.2)\",\n      order: 1,\n      yAxisID: \"SNR\",\n    },\n    {\n      type: \"bar\",\n      label: \"Speed[bpm]\",\n      data: state.arq_speed_list_bpm.value,\n      borderColor: \"rgb(120, 100, 120, 1.0)\",\n      backgroundColor: \"rgba(120, 100, 120, 0.2)\",\n      order: 0,\n      yAxisID: \"SPEED\",\n    },\n  ],\n}));\n\nconst scatterChartOptions = {\n  responsive: true,\n  maintainAspectRatio: false,\n  scales: {\n    x: {\n      type: \"linear\",\n      position: \"bottom\",\n      grid: {\n        color:\"rgb(158,158,158, 1.0)\",\n        display: true,\n        lineWidth: (context) => {\n          // Make the zero line thick (3) and other grid lines thin (1)\n          return context.tick.value === 0 ? 3 : 1;\n        },\n      },\n      ticks: {\n        display: false,\n      },\n    },\n    y: {\n      type: \"linear\",\n      position: \"left\",\n      grid: {\n        color:\"rgb(158,158,158, 1.0)\",\n        display: true,\n        lineWidth: (context) => {\n          return context.tick.value === 0 ? 3 : 1;\n        },\n      },\n      ticks: {\n        display: false,\n      },\n    },\n  },\n  plugins: {\n    legend: {\n      display: false,\n    },\n    tooltip: {\n      enabled: false,\n    },\n  },\n};\n\n\nconst scatterChartData = computed(() => ({\n  datasets: [\n    {\n      type: \"scatter\",\n      fill: true,\n      data: state.scatter,\n      label: \"Scatter\",\n      tension: 0.1,\n      borderColor: \"rgb(0, 255, 0)\",\n    },\n  ],\n}));\n\nconst localSpectrumID = ref(\"\");\nlocalSpectrumID.value =\n  \"gridwfid-\" + (Math.random() + 1).toString(36).substring(7);\n\nonMounted(() => {\n  initWaterfall(localSpectrumID.value);\n});\n</script>\n\n<template>\n  <div class=\"card h-100\">\n    <div class=\"card-header\">\n      <div\n        class=\"btn-group\"\n        role=\"group\"\n      >\n        <div\n          id=\"list-tab\"\n          class=\"list-group bg-body-tertiary list-group-horizontal\"\n          role=\"tablist\"\n        >\n          <a\n            class=\"py-0 list-group-item list-group-item-light list-group-item-action\"\n            data-bs-toggle=\"list\"\n            role=\"tab\"\n            aria-controls=\"list-waterfall\"\n            :class=\"{ active: localSpectrumView == 'waterfall' }\"\n            @click=\"selectStatsControl('wf')\"\n          >\n            <strong><i class=\"bi bi-water\" /></strong>\n          </a>\n          <a\n            class=\"py-0 list-group-item list-group-item-light list-group-item-action\"\n            data-bs-toggle=\"list\"\n            role=\"tab\"\n            aria-controls=\"list-scatter\"\n            :class=\"{ active: localSpectrumView == 'scatter' }\"\n            @click=\"selectStatsControl('scatter')\"\n          >\n            <strong><i class=\"bi bi-border-outer\" /></strong>\n          </a>\n          <a\n            class=\"py-0 list-group-item list-group-item-light list-group-item-action\"\n            data-bs-toggle=\"list\"\n            role=\"tab\"\n            aria-controls=\"list-chart\"\n            :class=\"{ active: localSpectrumView == 'chart' }\"\n            @click=\"selectStatsControl('chart')\"\n          >\n            <strong><i class=\"bi bi-graph-up-arrow\" /></strong>\n          </a>\n        </div>\n      </div>\n    </div>\n    <div class=\"card-body w-100 h-100 overflow-auto p-2\">\n      <div\n        id=\"nav-stats-tabContent\"\n        class=\"tab-content h-100 w-100\"\n      >\n        <div\n          class=\"tab-pane fade h-100 w-100\"\n          :class=\"{ 'show active': localSpectrumView == 'waterfall' }\"\n          role=\"stats_tabpanel\"\n          aria-labelledby=\"list-waterfall-list\"\n        >\n          <canvas\n            :id=\"localSpectrumID\"\n            class=\"force-gpu\"\n          />\n        </div>\n        <div\n          class=\"tab-pane fade h-100 w-100\"\n          :class=\"{ 'show active': localSpectrumView == 'scatter' }\"\n          role=\"tabpanel\"\n          aria-labelledby=\"list-scatter-list\"\n        >\n          <Scatter\n            :data=\"scatterChartData\"\n            :options=\"scatterChartOptions\"\n          />\n        </div>\n        <div\n          class=\"tab-pane fade h-100 w-100\"\n          :class=\"{ 'show active': localSpectrumView == 'chart' }\"\n          role=\"tabpanel\"\n          aria-labelledby=\"list-chart-list\"\n        >\n          <Line\n            :data=\"transmissionSpeedChartData\"\n            :options=\"transmissionSpeedChartOptions\"\n          />\n        </div>\n      </div>\n    </div>\n\n    <div\n      class=\"card-footer\"\n      p-1\n    >\n      <div\n        class=\"btn-group\"\n        role=\"group\"\n        aria-label=\"Busy indicators\"\n      >\n        <button\n          class=\"btn btn-sm ms-1 p-1 disabled\"\n          type=\"button\"\n          data-bs-placement=\"top\"\n          data-bs-toggle=\"tooltip\"\n          data-bs-trigger=\"hover\"\n          data-bs-html=\"true\"\n          :class=\"{\n            'btn-warning': state.channel_busy_slot[0] === true,\n            'btn-outline-secondary': state.channel_busy_slot[0] === false,\n          }\"\n          title=\"Channel busy state: <strong class='text-success'>not busy</strong> / <strong class='text-danger'>busy </strong>\"\n        >\n          S1\n        </button>\n\n        <button\n          class=\"btn btn-sm p-1 disabled\"\n          type=\"button\"\n          data-bs-placement=\"top\"\n          data-bs-toggle=\"tooltip\"\n          data-bs-trigger=\"hover\"\n          data-bs-html=\"true\"\n          :class=\"{\n            'btn-warning': state.channel_busy_slot[1] === true,\n            'btn-outline-secondary': state.channel_busy_slot[1] === false,\n          }\"\n          title=\"Channel busy state: <strong class='text-success'>not busy</strong> / <strong class='text-danger'>busy </strong>\"\n        >\n          S2\n        </button>\n\n        <button\n          class=\"btn btn-sm p-1 disabled\"\n          type=\"button\"\n          data-bs-placement=\"top\"\n          data-bs-toggle=\"tooltip\"\n          data-bs-trigger=\"hover\"\n          data-bs-html=\"true\"\n          :class=\"{\n            'btn-warning': state.channel_busy_slot[2] === true,\n            'btn-outline-secondary': state.channel_busy_slot[2] === false,\n          }\"\n          title=\"Channel busy state: <strong class='text-success'>not busy</strong> / <strong class='text-danger'>busy </strong>\"\n        >\n          S3\n        </button>\n\n        <button\n          class=\"btn btn-sm p-1 disabled\"\n          type=\"button\"\n          data-bs-placement=\"top\"\n          data-bs-toggle=\"tooltip\"\n          data-bs-trigger=\"hover\"\n          data-bs-html=\"true\"\n          :class=\"{\n            'btn-warning': state.channel_busy_slot[3] === true,\n            'btn-outline-secondary': state.channel_busy_slot[3] === false,\n          }\"\n          title=\"Channel busy state: <strong class='text-success'>not busy</strong> / <strong class='text-danger'>busy </strong>\"\n        >\n          S4\n        </button>\n\n        <button\n          class=\"btn btn-sm p-1 disabled\"\n          type=\"button\"\n          data-bs-placement=\"top\"\n          data-bs-toggle=\"tooltip\"\n          data-bs-trigger=\"hover\"\n          data-bs-html=\"true\"\n          :class=\"{\n            'btn-warning': state.channel_busy_slot[4] === true,\n            'btn-outline-secondary': state.channel_busy_slot[4] === false,\n          }\"\n          title=\"Channel busy state: <strong class='text-success'>not busy</strong> / <strong class='text-danger'>busy </strong>\"\n        >\n          S5\n        </button>\n\n        <button\n          class=\"btn btn-sm p-1 disabled\"\n          type=\"button\"\n          data-bs-placement=\"top\"\n          data-bs-toggle=\"tooltip\"\n          data-bs-trigger=\"hover\"\n          data-bs-html=\"true\"\n          title=\"Receiving data: illuminates <strong class='text-success'>green</strong> if receiving codec2 data\"\n          :class=\"{\n            'btn-success': state.is_codec2_traffic === true,\n            'btn-outline-secondary': state.is_codec2_traffic === false,\n          }\"\n        >\n          data\n        </button>\n      </div>\n    </div>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_activities.vue",
    "content": "<script setup>\nimport { setActivePinia } from 'pinia';\nimport pinia from '../../store/index';\nsetActivePinia(pinia);\n\nimport { useStateStore } from '../../store/stateStore.js';\nconst state = useStateStore(pinia);\n\nfunction getDateTime(timestampRaw) {\n  var datetime = new Date(timestampRaw * 1000).toLocaleString(\n    navigator.language,\n    {\n      hourCycle: 'h23',\n      month: '2-digit',\n      day: '2-digit',\n      hour: '2-digit',\n      minute: '2-digit',\n      second: '2-digit',\n    }\n  );\n  return datetime;\n}\n</script>\n\n<template>\n  <div class=\"card h-100\">\n    <div class=\"card-header\">\n      <i\n        class=\"bi bi-card-list\"\n        style=\"font-size: 1.2rem\"\n      />&nbsp;\n      <strong>{{ $t('grid.components.activity') }}</strong>\n    </div>\n    <div\n      class=\"card-body overflow-auto m-0\"\n      style=\"align-items: start\"\n    >\n      <div\n        v-for=\"item in state.activities\"\n        :key=\"item[0]\"\n      >\n        <h6\n          style=\"text-align: start\"\n          class=\"mb-0\"\n        >\n          <span class=\"badge text-bg-primary\">{{ item[1].origin }}</span>\n          -\n          <span class=\"badge text-bg-secondary\">{{ getDateTime(item[1].timestamp) }}</span>\n        </h6>\n\n\n        <p\n          class=\"mb-2\"\n          style=\"text-align: start; font-size: smaller\"\n        >\n          <small>\n            {{ item[1].activity_type }} -\n            {{ item[1].direction === 'received'\n              ? $t('grid.components.received')\n              : $t('grid.components.transmitted') }}\n          </small>\n        </p>\n      </div>\n    </div>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_beacon.vue",
    "content": "<script setup>\nimport { setActivePinia } from 'pinia';\nimport pinia from '../../store/index';\nsetActivePinia(pinia);\n\nimport { setModemBeacon } from '../../js/api.js';\nimport { useStateStore } from '../../store/stateStore.js';\nconst state = useStateStore(pinia);\n\nfunction startStopBeacon() {\n  if (state.beacon_state === true) {\n    setModemBeacon(false);\n  } else {\n    setModemBeacon(true);\n  }\n}\n</script>\n\n<template>\n  <div\n    class=\"fill h-100\"\n    style=\"width: calc(100% - 24px)\"\n  >\n    <a\n      class=\"btn btn-sm btn-secondary d-flex justify-content-center align-items-center object-fill border rounded w-100 h-100\"\n      title=\"Enable/disable periodic beacons\"\n      @click=\"startStopBeacon\"\n    >\n      {{ $t('grid.components.beacon') }}&nbsp;\n      <span\n        role=\"status\"\n        :class=\"{\n          'spinner-grow spinner-grow-sm': state.beacon_state === true,\n          'disabled': state.beacon_state === false,\n        }\"\n      />\n    </a>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_button.vue",
    "content": "<script setup>\nimport { defineProps } from 'vue';\n\nconst props = defineProps(['btnText', 'btnID']);\n//const emit = defineEmits();\n\nfunction emitClick() {\n  window.dispatchEvent(new CustomEvent('add-widget', { detail: props.btnID }));\n}\n</script>\n\n<template>\n  <button\n    class=\"btn btn-small btn-outline-secondary mb-1\"\n    @click=\"emitClick\"\n  >\n    {{ props.btnText }}\n  </button>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_dbfs.vue",
    "content": "<script setup>\nimport { setActivePinia } from 'pinia';\nimport pinia from '../../store/index';\nsetActivePinia(pinia);\n\nimport { useStateStore } from '../../store/stateStore.js';\nconst state = useStateStore(pinia);\n</script>\n\n<template>\n  <div\n    class=\"progress mb-0 rounded-0 rounded-top\"\n    style=\"height: 22px\"\n  >\n    <div\n      id=\"dbfs_level\"\n      class=\"progress-bar progress-bar-striped bg-primary force-gpu\"\n      role=\"progressbar\"\n      :style=\"{ width: state.dbfs_level_percent + '%' }\"\n      aria-valuenow=\"0\"\n      aria-valuemin=\"0\"\n      aria-valuemax=\"100\"\n    />\n    <p\n      id=\"dbfs_level_value\"\n      class=\"justify-content-center d-flex position-absolute w-100\"\n    >\n      {{ state.dbfs_level }} dBFS\n    </p>\n  </div>\n  <div\n    class=\"progress mb-0 rounded-0 rounded-bottom\"\n    style=\"height: 8px\"\n  >\n    <div\n      class=\"progress-bar progress-bar-striped bg-warning\"\n      role=\"progressbar\"\n      style=\"width: 1%\"\n      aria-valuenow=\"1\"\n      aria-valuemin=\"0\"\n      aria-valuemax=\"100\"\n    />\n    <div\n      class=\"progress-bar bg-success\"\n      role=\"progressbar\"\n      style=\"width: 89%\"\n      aria-valuenow=\"50\"\n      aria-valuemin=\"0\"\n      aria-valuemax=\"100\"\n    />\n    <div\n      class=\"progress-bar progress-bar-striped bg-warning\"\n      role=\"progressbar\"\n      style=\"width: 20%\"\n      aria-valuenow=\"20\"\n      aria-valuemin=\"0\"\n      aria-valuemax=\"100\"\n    />\n    <div\n      class=\"progress-bar progress-bar-striped bg-danger\"\n      role=\"progressbar\"\n      style=\"width: 29%\"\n      aria-valuenow=\"29\"\n      aria-valuemin=\"0\"\n      aria-valuemax=\"100\"\n    />\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_frequency.vue",
    "content": "<script setup>\nimport { setActivePinia } from 'pinia';\nimport pinia from '../../store/index';\nsetActivePinia(pinia);\n\nimport { useStateStore } from '../../store/stateStore.js';\nconst state = useStateStore(pinia);\n</script>\n\n<template>\n  <a\n    class=\"d-flex justify-content-center align-items-center object-fill border rounded w-100 h-100 link-underline link-underline-opacity-0 link-underline-opacity-75-hover text-bg-light\"\n    data-bs-toggle=\"offcanvas\"\n    data-bs-target=\"#offcanvasFrequency\"\n  >\n    {{ state.frequency / 1000 }} kHz\n  </a>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_mycall small.vue",
    "content": "<script setup>\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../../store/index\";\nsetActivePinia(pinia);\n\nimport { settingsStore } from \"../../store/settingsStore.js\";\n</script>\n\n<template>\n  <div class=\"w-100\">\n    <div\n      class=\"input-group input-group-sm\"\n      style=\"width: calc(100% - 24px)\"\n    >\n      <input\n        v-model=\"settingsStore.remote.STATION.mycall\"\n        type=\"text\"\n        class=\"form-control\"\n        disabled\n        style=\"min-width: 3em; background-color: transparent\"\n      >\n      <span class=\"input-group-text\">-</span>\n      <input\n        v-model=\"settingsStore.remote.STATION.myssid\"\n        type=\"text\"\n        class=\"form-control\"\n        disabled\n        style=\"min-width: 2em; max-width: 2.5em; background-color: transparent\"\n      >\n    </div>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_mycall.vue",
    "content": "<script setup>\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../../store/index\";\nsetActivePinia(pinia);\n\nimport { settingsStore } from \"../../store/settingsStore.js\";\n</script>\n\n<template>\n  <div\n    class=\"d-flex justify-content-center align-items-center object-fill border rounded w-100 h-100\"\n  >\n    <h2>\n      {{ settingsStore.remote.STATION.mycall }}-{{\n        settingsStore.remote.STATION.myssid\n      }}\n    </h2>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_ping.vue",
    "content": "<script setup>\nimport { ref } from \"vue\";\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../../store/index\";\nsetActivePinia(pinia);\n\nimport { sendModemPing } from \"../../js/api.js\";\n\nconst dxcallPing = ref(\"\");\n\nfunction transmitPing() {\n  sendModemPing(dxcallPing.value.toUpperCase());\n}\n\nwindow.addEventListener(\n  \"stationSelected\",\n  function (eventdata) {\n    dxcallPing.value = eventdata.detail;\n  },\n  false,\n);\n</script>\n\n<template>\n  <div\n    class=\"input-group\"\n    style=\"width: calc(100% - 24px)\"\n  >\n    <input\n      v-model=\"dxcallPing\"\n      type=\"text\"\n      class=\"form-control\"\n      style=\"min-width: 3rem; text-transform: uppercase; height: 31px\"\n      placeholder=\"DXcall\"\n      pattern=\"[A-Z]*\"\n      maxlength=\"11\"\n      aria-label=\"Input group\"\n      aria-describedby=\"btnGroupAddon\"\n    >\n    <a\n      id=\"sendPing\"\n      class=\"btn btn-sm btn-secondary\"\n      style=\"max-width: 3em\"\n      type=\"button\"\n      data-bs-placement=\"bottom\"\n      data-bs-toggle=\"tooltip\"\n      data-bs-trigger=\"hover\"\n      data-bs-html=\"false\"\n      :title=\"$t('grid.components.ping_help')\"\n      @click=\"transmitPing\"\n    >\n      {{ $t('grid.components.ping') }}\n    </a>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_ptt.vue",
    "content": "<script setup>\nimport { setActivePinia } from 'pinia';\nimport pinia from '../../store/index';\nsetActivePinia(pinia);\n\nimport { useStateStore } from '../../store/stateStore.js';\nconst state = useStateStore(pinia);\n</script>\n\n<template>\n  <div\n    class=\"d-flex justify-content-center align-items-center object-fill border rounded w-100 h-100\"\n    :class=\"state.ptt_state ? 'text-bg-warning' : 'text-bg-white'\"\n  >\n    <h2>{{ $t('grid.components.onair').toUpperCase() }}</h2>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_s-meter.vue",
    "content": "<script setup>\nimport { setActivePinia } from 'pinia';\nimport pinia from '../../store/index';\nsetActivePinia(pinia);\n\nimport { useStateStore } from '../../store/stateStore.js';\nconst state = useStateStore(pinia);\n</script>\n\n<template>\n  <div\n    class=\"progress mb-0 rounded-0 rounded-top\"\n    style=\"height: 22px\"\n  >\n    <div\n      id=\"noise_level\"\n      class=\"progress-bar progress-bar-striped bg-primary force-gpu\"\n      role=\"progressbar\"\n      :style=\"{ width: state.s_meter_strength_percent + '%' }\"\n      :aria-valuenow=\"state.s_meter_strength_percent\"\n      aria-valuemin=\"0\"\n      aria-valuemax=\"100\"\n    />\n    <p\n      id=\"noise_level_value\"\n      class=\"justify-content-center d-flex position-absolute w-100\"\n    >\n      S-Meter(dB): {{ state.s_meter_strength_raw }}\n    </p>\n  </div>\n  <div\n    class=\"progress mb-0 rounded-0 rounded-bottom\"\n    style=\"height: 8px\"\n  >\n    <div\n      class=\"progress-bar progress-bar-striped bg-warning\"\n      role=\"progressbar\"\n      style=\"width: 1%\"\n      aria-valuenow=\"1\"\n      aria-valuemin=\"0\"\n      aria-valuemax=\"100\"\n    />\n    <div\n      class=\"progress-bar bg-success\"\n      role=\"progressbar\"\n      style=\"width: 89%\"\n      aria-valuenow=\"89\"\n      aria-valuemin=\"0\"\n      aria-valuemax=\"100\"\n    />\n    <div\n      class=\"progress-bar progress-bar-striped bg-warning\"\n      role=\"progressbar\"\n      style=\"width: 20%\"\n      aria-valuenow=\"20\"\n      aria-valuemin=\"0\"\n      aria-valuemax=\"100\"\n    />\n    <div\n      class=\"progress-bar progress-bar-striped bg-danger\"\n      role=\"progressbar\"\n      style=\"width: 29%\"\n      aria-valuenow=\"29\"\n      aria-valuemin=\"0\"\n      aria-valuemax=\"100\"\n    />\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_scatter.vue",
    "content": "<script setup>\n// reason for no check is, that we have some mixing of typescript and chart js which seems to be not to be fixed that easy\nimport { computed } from \"vue\";\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../../store/index\";\nsetActivePinia(pinia);\n\nimport { useStateStore } from \"../../store/stateStore.js\";\nconst state = useStateStore(pinia);\n\nimport {\n  Chart as ChartJS,\n  CategoryScale,\n  LinearScale,\n  PointElement,\n  LineElement,\n  Title,\n  Tooltip,\n  Legend,\n} from \"chart.js\";\nimport { Scatter } from \"vue-chartjs\";\n\nChartJS.register(\n  CategoryScale,\n  LinearScale,\n  PointElement,\n  LineElement,\n  Title,\n  Tooltip,\n  Legend,\n);\n\n// https://www.chartjs.org/docs/latest/samples/line/segments.html\nconst scatterChartOptions = {\n  responsive: true,\n  maintainAspectRatio: false,\n  scales: {\n    x: {\n      type: \"linear\",\n      position: \"bottom\",\n      grid: {\n        display: true,\n        lineWidth: (context) => {\n          // Make the zero line thick (3) and other grid lines thin (1)\n          return context.tick.value === 0 ? 3 : 1;\n        },\n      },\n      ticks: {\n        display: false,\n      },\n    },\n    y: {\n      type: \"linear\",\n      position: \"left\",\n      grid: {\n        display: true,\n        lineWidth: (context) => {\n          return context.tick.value === 0 ? 3 : 1;\n        },\n      },\n      ticks: {\n        display: false,\n      },\n    },\n  },\n  plugins: {\n    legend: {\n      display: false,\n    },\n    tooltip: {\n      enabled: false,\n    },\n  },\n};\n\n\n\nconst scatterChartData = computed(() => ({\n  datasets: [\n    {\n      type: \"scatter\",\n      fill: true,\n      data: state.scatter,\n      label: \"Scatter\",\n      tension: 0.1,\n      borderColor: \"rgb(0, 255, 0)\",\n    },\n  ],\n}));\n</script>\n\n<template>\n  <div class=\"card h-100\">\n    <!--325px-->\n    <div class=\"card-header\">\n      <i\n        class=\"bi bi-border-outer\"\n        style=\"font-size: 1.2rem\"\n      />&nbsp;\n      <strong>{{ $t('grid.components.scatterdiagram') }}</strong>\n    </div>\n    <div class=\"card-body overflow-auto p-0\">\n      <Scatter\n        :data=\"scatterChartData\"\n        :options=\"scatterChartOptions\"\n      />\n    </div>\n  </div>\n\n\n\n  <!--278px-->\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_stations_map.vue",
    "content": "<template>\n  <div class=\"card\">\n    <div class=\"card-header d-flex justify-content-between align-items-center\">\n      <div\n        class=\"btn-group btn-group-sm rounded\"\n        role=\"group\"\n      >\n        <button\n          class=\"btn btn-sm btn-outline-secondary\"\n          @click=\"zoomIn\"\n        >\n          <i class=\"bi bi-plus-square\" />\n        </button>\n        <button\n          class=\"btn btn-sm btn-secondary\"\n          @click=\"centerMap\"\n        >\n          <i class=\"bi bi-house-door\" />\n        </button>\n        <button\n          class=\"btn btn-sm btn-outline-secondary\"\n          @click=\"zoomOut\"\n        >\n          <i class=\"bi bi-dash-square\" />\n        </button>\n      </div>\n      <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>\n      <div class=\"input-group input-group-sm ms-2\">\n        <input\n          v-model=\"infoText\"\n          type=\"text\"\n          class=\"form-control w-100\"\n          placeholder=\"Station\"\n          aria-label=\"Username\"\n          aria-describedby=\"basic-addon1\"\n          disabled\n        >\n      </div>\n    </div>\n    <div class=\"card-body p-0\">\n      <div\n        ref=\"mapContainer\"\n        class=\"map-container\"\n      />\n      <div\n        :style=\"popupStyle\"\n        class=\"popup\"\n      >\n        {{ infoText }}\n      </div>\n    </div>\n  </div>\n</template>\n\n<script setup>\nimport { settingsStore as settings } from '../../store/settingsStore.js';\nimport { ref, onMounted, onBeforeUnmount, nextTick, toRaw } from 'vue';\nimport * as d3 from 'd3';\nimport { feature } from 'topojson-client';\nimport { locatorToLatLng, distance } from 'qth-locator';\nimport { setActivePinia } from 'pinia';\nimport pinia from '../../store/index';\nimport { useStateStore } from '../../store/stateStore.js';\n\n// Activate Pinia\nsetActivePinia(pinia);\nconst state = useStateStore(pinia);\n\nconst mapContainer = ref(null);\nconst infoText = ref('');\nconst popupStyle = ref({});\nlet svg, path, projection, zoom;\nconst basePinRadius = 5; // Base radius for pins\nlet actualPinRadius = basePinRadius;\n\nsetTimeout(() => {centerMap();}, 1500);\n\n// Function to get distance between two grid squares\nfunction getMaidenheadDistance(dxGrid) {\n  try {\n    return parseInt(distance(settings.remote.STATION.mygrid, dxGrid));\n  } catch (e) {\n    console.error('Error calculating distance:', e);\n    return null;\n  }\n}\n\n// Function to draw the map\nconst drawMap = () => {\n  const containerWidth = mapContainer.value.clientWidth;\n  const containerHeight = mapContainer.value.clientHeight;\n\n  // Clear existing SVG if it exists\n  if (svg) {\n    svg.remove();\n  }\n\n  // Create Mercator projection\n  projection = d3.geoMercator()\n    .scale(containerWidth / (2 * Math.PI))\n    .translate([containerWidth / 2, containerHeight / 2]);\n\n  path = d3.geoPath().projection(projection);\n\n  // Create SVG element\n  svg = d3.select(mapContainer.value)\n    .append('svg')\n    .attr('width', '100%')\n    .attr('height', '100%')\n    .attr('viewBox', `0 0 ${containerWidth} ${containerHeight}`)\n    .attr('preserveAspectRatio', 'xMidYMid meet');\n\n  // Set up zoom behavior\n  zoom = d3.zoom()\n    .scaleExtent([1, 8])\n    .on('zoom', (event) => {\n      svg.selectAll('g').attr('transform', event.transform);\n\n      // Adjust pin size and line width with zoom\n      actualPinRadius = basePinRadius / event.transform.k;\n      svg.selectAll('.my-pin').attr('r', actualPinRadius);\n      svg.selectAll('.heard-pin').attr('r', actualPinRadius);\n\n      svg.selectAll('.connection-line').attr('stroke-width', 1 / event.transform.k);\n      svg.selectAll('.country-path').attr('stroke-width', 0.5 / event.transform.k);\n\n      // Handle visibility of country labels based on zoom level\n      if (event.transform.k < 3) {\n        // Show only the largest country labels when zoomed out, hide regular labels\n        svg.selectAll('.country-label').style('display', 'none');\n        svg.selectAll('.largest-country-label').style('display', 'block');\n      } else {\n        // Show regular labels and hide largest country labels when zoomed in\n        svg.selectAll('.country-label')\n          .style('display', 'block')\n          .attr('font-size', `${0.5 / event.transform.k}em`); // Smaller font size\n        svg.selectAll('.largest-country-label').style('display', 'none');\n      }\n    });\n\n  svg.call(zoom);\n\n  // Import JSON data dynamically\n  import('@/assets/countries-50m.json').then(worldData => {\n    const countriesGeoJSON = feature(worldData, worldData.objects.countries);\n\n    // Sort countries by area and select the top 10 largest\n    const largestCountries = countriesGeoJSON.features\n      .sort((a, b) => d3.geoArea(b) - d3.geoArea(a))\n      .slice(0, 10);\n\n    // Draw country paths\n    const g = svg.append('g');\n\n\n      // Add your own station's pin if mygrid is defined\n  let mygrid = settings.remote.STATION.mygrid;\n  if (mygrid) {\n    const [myLat, myLng] = locatorToLatLng(mygrid);\n    const [myX, myY] = projection([myLng, myLat]); // Correct projection for your location\n\n    // Draw the pin for your station\n    g.append('circle')\n        .attr('class', 'my-pin')\n        .attr('r', actualPinRadius + 2)\n        .attr('fill', 'blue')\n        .attr('cx', myX)\n        .attr('cy', myY)\n        .on('mouseover', () => {\n          infoText.value = `Your Station - ${mygrid}`;\n        })\n        .on('mouseout', () => {\n          infoText.value = '';\n        });\n  }\n\n\n    g.selectAll('path')\n      .data(countriesGeoJSON.features)\n      .enter()\n      .append('path')\n      .attr('d', path)\n      .attr('fill', '#ccc')\n      .attr('stroke', '#333')\n      .attr('stroke-width', 0.5);\n\n    // Add labels for all countries\n    g.selectAll('.country-label')\n      .data(countriesGeoJSON.features)\n      .enter()\n      .append('text')\n      .attr('class', 'country-label')\n      .attr('transform', d => {\n        const centroid = d3.geoCentroid(d);\n        const [x, y] = projection(centroid);\n        return `translate(${x}, ${y})`;\n      })\n      .attr('dy', '.35em')\n      .attr('font-size', '0.4em') // Smaller initial font size\n      .attr('text-anchor', 'middle')\n      .text(d => d.properties.name)\n      .style('display', 'none'); // Hide initially (will be shown when zoomed in)\n\n    // Add labels for the largest countries\n    g.selectAll('.largest-country-label')\n      .data(largestCountries)\n      .enter()\n      .append('text')\n      .attr('class', 'largest-country-label')\n      .attr('transform', d => {\n        const centroid = d3.geoCentroid(d);\n        const [x, y] = projection(centroid);\n        return `translate(${x}, ${y})`;\n      })\n      .attr('dy', '.35em')\n      .attr('font-size', '0.6em') // Slightly smaller font size for visibility\n      .attr('text-anchor', 'middle')\n      .attr('fill', 'black')\n      .text(d => d.properties.name);\n\n    // Call the function to update pins and lines (including own location)\n    updatePinsAndLines(g); // Use the g group element here\n  });\n};\n\n// Function to update pins and draw lines\n// Function to update pins and draw lines\nconst updatePinsAndLines = (g) => {\n  // Remove existing pins and lines\n  g.selectAll('.my-pin').remove();\n  g.selectAll('.heard-pin').remove();\n  g.selectAll('.connection-line').remove();\n\n  const heardStations = toRaw(state.heard_stations); // Ensure it's the raw data\n  const points = [];\n\n\n  // Prepare points for heard stations\n  heardStations.forEach(item => {\n    if (\n      item.gridsquare &&\n      item.gridsquare.trim() !== '' &&\n      item.gridsquare.trim() !== '------' &&\n      item.origin\n    ) {\n      try {\n        const [lat, lng] = locatorToLatLng(item.gridsquare);\n        if (lat != null && lng != null) {\n          points.push({ lat, lon: lng, origin: item.origin, gridsquare: item.gridsquare });\n        }\n      } catch (error) {\n        console.error(`Error converting gridsquare ${item.gridsquare}:`, error);\n      }\n    }\n  });\n\n\n  // Add your own station's pin if mygrid is defined\n  let mygrid = settings.remote.STATION.mygrid;\n  if (mygrid) {\n    const [myLat, myLng] = locatorToLatLng(mygrid);\n    const [myX, myY] = projection([myLng, myLat]); // Correct projection for your location\n\n    // Draw the pin for your station\n    g.append('circle')\n        .attr('class', 'my-pin')\n        .attr('r', actualPinRadius + 2)\n        .attr('fill', 'blue')\n        .attr('cx', myX)\n        .attr('cy', myY)\n        .on('mouseover', () => {\n          infoText.value = `Your Station - ${mygrid}`;\n        })\n        .on('mouseout', () => {\n          infoText.value = '';\n        });\n\n    // Draw lines from your station to each heard station\n    g.selectAll('.connection-line')\n        .data(points)\n        .enter()\n        .append('line')\n        .attr('class', 'connection-line')\n        .attr('x1', myX)\n        .attr('y1', myY)\n        .attr('x2', d => projection([d.lon, d.lat])[0])\n        .attr('y2', d => projection([d.lon, d.lat])[1])\n        .attr('stroke', 'blue')\n        .attr('stroke-width', 1)\n        .attr('stroke-opacity', 0.5);\n  }\n\n  // Add pins for heard stations\n  g.selectAll('.heard-pin')\n      .data(points)\n      .enter()\n      .append('circle')\n      .attr('class', 'heard-pin')\n      .attr('r', actualPinRadius)\n      .attr('fill', 'red')\n      .attr('cx', d => projection([d.lon, d.lat])[0])\n      .attr('cy', d => projection([d.lon, d.lat])[1])\n      .on('mouseover', (event, d) => {\n        infoText.value = `${d.origin} - ${d.gridsquare} (${getMaidenheadDistance(d.gridsquare)} km)`;\n      })\n      .on('mouseout', () => {\n        infoText.value = '';\n      });\n};\n\n// Center the map\nconst centerMap = () => {\n  let mygrid = settings.remote.STATION.mygrid;\n  if (!mygrid) {\n    console.error('Error: Station grid square (mygrid) is not defined.');\n    return;\n  }\n\n  const [lat, lng] = locatorToLatLng(mygrid);\n  const [x, y] = projection([lng, lat]);\n\n  // Ensure 'g' is selected before updating pins and lines\n  const g = svg.select('g');\n  updatePinsAndLines(g); // Update pins and lines based on the current state\n\n  // Center the map to the station's coordinates\n  svg.transition().duration(750).call(\n      zoom.translateTo,\n      x,\n      y\n  );\n};\n\n// Zoom in function\nconst zoomIn = () => {\n  svg.transition().call(zoom.scaleBy, 1.2);\n};\n\n// Zoom out function\nconst zoomOut = () => {\n  svg.transition().call(zoom.scaleBy, 0.8);\n};\n\n// Lifecycle hooks\nonMounted(async () => {\n  await nextTick();\n  drawMap();\n  window.addEventListener('resize', drawMap);\n});\n\nonBeforeUnmount(() => {\n  window.removeEventListener('resize', drawMap);\n});\n</script>\n\n<style scoped>\n.map-container {\n  position: relative;\n  width: 100%;\n  height: 400px;\n}\n\n.my-pin {\n  fill: blue;\n  stroke: black;\n  stroke-width: 1px;\n}\n\n.heard-pin {\n  fill: red;\n  stroke: black;\n  stroke-width: 1px;\n}\n\n.path {\n  fill: #ccc;\n  stroke: #333;\n}\n\n.connection-line {\n  stroke: red;\n  stroke-width: 1;\n  stroke-opacity: 0.5;\n}\n\n.popup {\n  background-color: white;\n  border: 1px solid black;\n  padding: 5px;\n  position: absolute;\n  display: none;\n  z-index: 10;\n  pointer-events: none;\n}\n</style>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_stats_chart.vue",
    "content": "<script setup>\nimport { computed } from \"vue\";\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../../store/index\";\nsetActivePinia(pinia);\n\nimport { useStateStore } from \"../../store/stateStore.js\";\nconst state = useStateStore(pinia);\n\nimport {\n  Chart as ChartJS,\n  CategoryScale,\n  LinearScale,\n  PointElement,\n  LineElement,\n  Title,\n  Tooltip,\n  Legend,\n} from \"chart.js\";\nimport { Line } from \"vue-chartjs\";\n\nChartJS.register(\n  CategoryScale,\n  LinearScale,\n  PointElement,\n  LineElement,\n  Title,\n  Tooltip,\n  Legend,\n);\n\n// https://www.chartjs.org/docs/latest/samples/line/segments.html\nconst skipped = (speedCtx, value) =>\n  speedCtx.p0.skip || speedCtx.p1.skip ? value : undefined;\nconst down = (speedCtx, value) =>\n  speedCtx.p0.parsed.y > speedCtx.p1.parsed.y ? value : undefined;\n\nvar transmissionSpeedChartOptions = {\n  //type: \"line\",\n  responsive: true,\n  animations: true,\n  maintainAspectRatio: false,\n  cubicInterpolationMode: \"monotone\",\n  tension: 0.4,\n  scales: {\n    SNR: {\n      type: \"linear\",\n      ticks: { beginAtZero: false, color: \"rgb(255, 99, 132)\" },\n      position: \"right\",\n    },\n    SPEED: {\n      type: \"linear\",\n      ticks: { beginAtZero: false, color: \"rgb(120, 100, 120)\" },\n      position: \"left\",\n      grid: {\n        drawOnChartArea: false, // only want the grid lines for one axis to show up\n      },\n    },\n    x: { ticks: { beginAtZero: true } },\n  },\n};\n\nconst transmissionSpeedChartData = computed(() => ({\n  labels: state.arq_speed_list_timestamp,\n  datasets: [\n    {\n      type: \"line\",\n      label: \"SNR[dB]\",\n      data: state.arq_speed_list_snr,\n      borderColor: \"rgb(75, 192, 192, 1.0)\",\n      pointRadius: 1,\n      segment: {\n        borderColor: (speedCtx) =>\n          skipped(speedCtx, \"rgb(0,0,0,0.4)\") ||\n          down(speedCtx, \"rgb(192,75,75)\"),\n        borderDash: (speedCtx) => skipped(speedCtx, [3, 3]),\n      },\n      spanGaps: true,\n      backgroundColor: \"rgba(75, 192, 192, 0.2)\",\n      order: 1,\n      yAxisID: \"SNR\",\n    },\n    {\n      type: \"bar\",\n      label: \"Speed[bpm]\",\n      data: state.arq_speed_list_bpm,\n      borderColor: \"rgb(120, 100, 120, 1.0)\",\n      backgroundColor: \"rgba(120, 100, 120, 0.2)\",\n      order: 0,\n      yAxisID: \"SPEED\",\n    },\n  ],\n}));\n</script>\n\n<template>\n  <div class=\"card h-100\">\n    <!--325px-->\n    <div class=\"card-header\">\n      <i\n        class=\"bi bi-graph-up-arrow\"\n        style=\"font-size: 1.2rem\"\n      />&nbsp;\n      <strong>{{ $t('grid.components.transmissioncharts') }}</strong>\n    </div>\n    <div class=\"card-body overflow-auto p-0\">\n      <Line\n        :data=\"transmissionSpeedChartData\"\n        :options=\"transmissionSpeedChartOptions\"\n      />\n    </div>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_stop.vue",
    "content": "<script setup>\nimport { setActivePinia } from 'pinia';\nimport pinia from '../../store/index';\nsetActivePinia(pinia);\n\nimport { stopTransmission } from '../../js/api';\n\nfunction stopAllTransmissions() {\n  console.log('stopping transmissions');\n  stopTransmission();\n}\n</script>\n\n<template>\n  <a\n    id=\"stop_transmission_connection\"\n    class=\"btn btn-outline-danger d-flex border justify-content-center align-items-center object-fill rounded w-100 h-100\"\n    data-bs-toggle=\"tooltip\"\n    data-bs-trigger=\"hover\"\n    data-bs-html=\"false\"\n    :title=\"$t('grid.components.stop_help')\"\n    @click=\"stopAllTransmissions\"\n  >\n    <i class=\"bi bi-sign-stop-fill h1\" />\n  </a>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_swr_meter.vue",
    "content": "<script setup>\nimport { setActivePinia } from 'pinia';\nimport pinia from '../../store/index';\nsetActivePinia(pinia);\n\nimport { useStateStore } from '../../store/stateStore.js';\nconst state = useStateStore(pinia);\n</script>\n\n<template>\n  <div\n    class=\"progress mb-0 rounded-0 rounded-top\"\n    style=\"height: 22px\"\n  >\n    <div\n      id=\"swr_level\"\n      class=\"progress-bar progress-bar-striped bg-primary force-gpu\"\n      role=\"progressbar\"\n      :style=\"{ width: state.swr_percent + '%' }\"\n      aria-valuenow=\"state.swr_percent\"\n      aria-valuemin=\"0\"\n      aria-valuemax=\"5\"\n    />\n    <p\n      id=\"swr_level_value\"\n      class=\"justify-content-center d-flex position-absolute w-100\"\n    >\n      SWR 1:{{ state.swr_raw }}\n    </p>\n  </div>\n  <div\n    class=\"progress mb-0 rounded-0 rounded-bottom\"\n    style=\"height: 8px\"\n  >\n    <div\n      class=\"progress-bar bg-success\"\n      role=\"progressbar\"\n      style=\"width: 25%\"\n      aria-valuenow=\"25\"\n      aria-valuemin=\"0\"\n      aria-valuemax=\"100\"\n    />\n    <div\n      class=\"progress-bar progress-bar-striped bg-warning\"\n      role=\"progressbar\"\n      style=\"width: 50%\"\n      aria-valuenow=\"50\"\n      aria-valuemin=\"0\"\n      aria-valuemax=\"100\"\n    />\n    <div\n      class=\"progress-bar progress-bar-striped bg-danger\"\n      role=\"progressbar\"\n      style=\"width: 25%\"\n      aria-valuenow=\"25\"\n      aria-valuemin=\"0\"\n      aria-valuemax=\"100\"\n    />\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/grid/grid_tune.vue",
    "content": "<script setup>\nimport { setActivePinia } from 'pinia';\nimport pinia from '../../store/index';\n\n// Initialize Pinia with the imported store\nsetActivePinia(pinia);\n</script>\n\n<template>\n  <div class=\"fill h-100\">\n    <a\n      class=\"btn btn-sm btn-secondary d-flex justify-content-center align-items-center object-fill border rounded w-100 h-100\"\n      data-bs-trigger=\"hover\"\n      data-bs-html=\"false\"\n      data-bs-toggle=\"modal\"\n      data-bs-target=\"#audioModal\"\n      title=\"Tune\"\n    >\n      {{ $t('grid.components.tune') }}\n    </a>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/main_footer_navbar.vue",
    "content": "<script setup>\nimport { setActivePinia } from 'pinia';\nimport pinia from '../store/index';\nimport { useStateStore } from '../store/stateStore.js';\n\nimport { useIsMobile } from '../js/mobile_devices.js';\nconst { isMobile } = useIsMobile(992);\n\nimport { useChatStore } from '../store/chatStore.js';\nconst chat = useChatStore(pinia);\n\n// Set the active Pinia store\nsetActivePinia(pinia);\n\n// Create an instance of the store\nconst state = useStateStore(pinia);\n</script>\n\n<template>\n  <nav\n    :class=\"[\n      'navbar bg-body-secondary border-top sticky-bottom border-1 p-2',\n      (isMobile && chat.selectedCallsign) ? 'col-12' : 'col-12',\n      'col-lg-auto'\n    ]\"\n  >\n    <div class=\"col-lg-8 col-md-9 col-sm-10 col-xs-11 col-8\">\n      <div\n        class=\"btn-toolbar\"\n        role=\"toolbar\"\n      >\n        <div\n          class=\"btn-group btn-group-sm me-1\"\n          role=\"group\"\n        >\n          <button\n            id=\"ptt_state\"\n            class=\"btn btn-sm btn-secondary me-1\"\n            :class=\"{\n              'btn-danger': state.ptt_state,\n              'btn-secondary': !state.ptt_state,\n            }\"\n            type=\"button\"\n            style=\"pointer-events: auto\"\n            disabled\n            data-bs-toggle=\"tooltip\"\n            data-bs-placement=\"top\"\n            :data-bs-title=\"$t('navbar.pttstate_help')\"\n          >\n            <i\n              class=\"bi bi-broadcast-pin\"\n              style=\"font-size: 0.8rem\"\n            />\n          </button>\n          <button\n            id=\"busy_state\"\n            class=\"btn btn-sm btn-secondary me-1\"\n            type=\"button\"\n            data-bs-placement=\"top\"\n            data-bs-toggle=\"tooltip\"\n            data-bs-trigger=\"hover\"\n            data-bs-html=\"true\"\n            :class=\"{\n              'btn-danger': state.busy_state,\n              'btn-secondary': !state.busy_state,\n            }\"\n            :data-bs-title=\"$t('navbar.modemstate_help')\"\n            disabled\n            style=\"pointer-events: auto\"\n          >\n            <i\n              class=\"bi bi-cpu\"\n              style=\"font-size: 0.8rem\"\n            />\n          </button>\n        </div>\n\n        <div\n          class=\"btn-group btn-group-sm me-1 d-none d-lg-inline-block\"\n          role=\"group\"\n        >\n          <button\n            class=\"btn btn-sm btn-secondary me-4 disabled\"\n            type=\"button\"\n            data-bs-placement=\"top\"\n            data-bs-toggle=\"tooltip\"\n            data-bs-trigger=\"hover\"\n            :data-bs-title=\"$t('navbar.frequency_help')\"\n            style=\"pointer-events: auto\"\n          >\n            {{ state.frequency / 1000 }} kHz\n          </button>\n        </div>\n\n        <div\n          class=\"btn-group btn-group-sm me-1 d-none d-lg-inline-block\"\n          role=\"group\"\n        >\n          <button\n            class=\"btn btn-sm btn-secondary me-0\"\n            type=\"button\"\n            :title=\"$t('navbar.speedlevel_help')\"\n          >\n            <i class=\"bi bi-speedometer2\" />\n          </button>\n\n          <button\n            class=\"btn btn-sm btn-secondary me-4 disabled\"\n            type=\"button\"\n            data-bs-placement=\"top\"\n            data-bs-toggle=\"tooltip\"\n            data-bs-trigger=\"hover\"\n            data-bs-html=\"true\"\n            :data-bs-title=\"$t('navbar.speedlevel_help')\"\n          >\n            <i\n              class=\"bi\"\n              :class=\"{\n                'bi-reception-0': state.speed_level === 0,\n                'bi-reception-1': state.speed_level === 1,\n                'bi-reception-2': state.speed_level === 2,\n                'bi-reception-3': state.speed_level === 3,\n                'bi-reception-4': state.speed_level === 4,\n              }\"\n            />\n          </button>\n        </div>\n\n        <div\n          class=\"btn-group btn-group-sm me-1 d-none d-lg-inline-block\"\n          role=\"group\"\n        >\n          <button\n            class=\"btn btn-sm btn-secondary me-0\"\n            type=\"button\"\n            :title=\"$t('navbar.bytestransferred')\"\n          >\n            <i class=\"bi bi-file-earmark-binary\" />\n          </button>\n\n          <button\n            class=\"btn btn-sm btn-secondary me-4 disabled\"\n            type=\"button\"\n            data-bs-placement=\"top\"\n            data-bs-toggle=\"tooltip\"\n            data-bs-trigger=\"hover\"\n            data-bs-html=\"true\"\n            :data-bs-title=\"$t('navbar.totalbytes_help')\"\n          >\n            {{ state.arq_total_bytes }}\n          </button>\n        </div>\n\n        <div\n          class=\"btn-group btn-group-sm me-1\"\n          role=\"group\"\n        >\n          <button\n            class=\"btn btn-sm btn-secondary me-0\"\n            type=\"button\"\n            data-bs-placement=\"top\"\n            data-bs-toggle=\"tooltip\"\n            data-bs-trigger=\"hover\"\n            data-bs-html=\"true\"\n            :data-bs-title=\"$t('navbar.connectedstation_help')\"\n          >\n            <i class=\"bi bi-file-earmark-binary\" />\n          </button>\n\n          <button\n            class=\"btn btn-sm btn-secondary disabled\"\n            type=\"button\"\n            data-bs-placement=\"top\"\n            data-bs-toggle=\"tooltip\"\n            data-bs-trigger=\"hover\"\n            data-bs-html=\"true\"\n            data-bs-title=\"the dxcallsign of the connected station\"\n          >\n            <span v-if=\"state.arq_is_receiving\">{{ $t('navbar.from') }}</span>\n            <span v-else>{{ $t('navbar.to') }}</span>\n          </button>\n\n          <button\n            class=\"btn btn-sm btn-secondary disabled me-1\"\n            type=\"button\"\n            data-bs-placement=\"top\"\n            data-bs-toggle=\"tooltip\"\n            data-bs-trigger=\"hover\"\n            data-bs-html=\"true\"\n            :data-bs-title=\"state.dxcallsign || '-----'\"\n          >\n            {{ state.dxcallsign || '-----' }}\n          </button>\n        </div>\n      </div>\n    </div>\n\n    <div class=\"col-lg-4 col-md-3 col-sm-2 col-xs-1 col-1\">\n      <div\n        class=\"progress w-100 bg-secondary me-2\"\n        style=\"height: 30px;\"\n      >\n        <div\n          id=\"transmission_progress\"\n          class=\"progress-bar progress-bar-striped bg-primary force-gpu\"\n          role=\"progressbar\"\n          :style=\"{ width: state.arq_transmission_percent + '%' }\"\n          aria-valuenow=\"0\"\n          aria-valuemin=\"0\"\n          aria-valuemax=\"100\"\n        />\n        <p\n          v-if=\"!isMobile\"\n          class=\"justify-content-center m-0 d-flex position-absolute w-100 mt-1 text-light\"\n        >\n          {{ state.arq_transmission_percent }}% [ {{ state.arq_bytes_per_minute || '---' }}\n          bpm / {{ state.arq_bits_per_second || '--' }}\n          bps ]\n        </p>\n\n        <p\n          v-if=\"isMobile\"\n          class=\"justify-content-center m-0 d-flex position-absolute w-100 mt-1 text-light\"\n        >\n          {{ state.arq_transmission_percent }}%\n        </p>\n      </div>\n\n      <!-- TODO: This code block can be removed I think, DJ2LS -->\n      <div\n        hidden\n        class=\"progress mb-0 rounded-0 rounded-bottom\"\n        style=\"height: 10px;\"\n      >\n        <div\n          id=\"transmission_timeleft\"\n          class=\"progress-bar progress-bar-striped bg-warning\"\n          role=\"progressbar\"\n          :style=\"{ width: state.arq_seconds_until_timeout_percent + '%' }\"\n          aria-valuenow=\"0\"\n          aria-valuemin=\"0\"\n          aria-valuemax=\"100\"\n        >\n          <p class=\"justify-content-center m-0 d-flex position-absolute w-100 text-dark\">\n            timeout in {{ state.arq_seconds_until_timeout }}s\n          </p>\n        </div>\n      </div>\n    </div>\n  </nav>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/main_left_navbar.vue",
    "content": "<script setup>\nimport { computed } from 'vue';\n\nimport { getOverallHealth } from '../js/eventHandler.js';\nimport { getFreedataMessages } from '../js/api';\nimport { loadAllData } from '../js/eventHandler';\n\nimport { setActivePinia } from 'pinia';\nimport pinia from '../store/index';\nsetActivePinia(pinia);\n\nimport { useChatStore } from '../store/chatStore.js';\nconst chat = useChatStore(pinia);\n\n\n// Network state computation\nimport { useStateStore } from '../store/stateStore.js';\nconst state = useStateStore(pinia);\nconst isNetworkDisconnected = computed(() => state.modem_connection !== \"connected\");\n\n// Accessing the network traffic state\nconst isNetworkTraffic = computed(() => state.is_network_traffic);\n\n</script>\n\n<template>\n  <!-- Health Status/Spinner -->\n  <div\n    class=\"btn-group list-group-item\"\n    role=\"group\"\n    aria-label=\"\"\n  >\n    <button\n      class=\"btn border btn-outline-secondary rounded-3\"\n      data-bs-html=\"false\"\n      data-bs-toggle=\"modal\"\n      data-bs-target=\"#modemCheck\"\n      :title=\" $t('navbar.modemcheck_help')\"\n      :class=\"\n        getOverallHealth() > 4\n          ? 'bg-danger'\n          : getOverallHealth() < 2\n            ? ''\n            : 'bg-warning'\n      \"\n    >\n      <!-- Show spinner if network traffic is ongoing -->\n      <template v-if=\"isNetworkTraffic\">\n        <div\n          class=\"h3 spinner-grow text-secondary p-0 m-0 me-1\"\n          role=\"status\"\n        >\n          <span class=\"visually-hidden\">Loading...</span>\n        </div>\n      </template>\n      <template v-else>\n        <i class=\"h3 bi bi-activity p-1\" />\n      </template>\n    </button>\n  </div>\n\n\n  <div\n    id=\"main-list-tab\"\n    class=\"list-group bg-body-secondary\"\n    role=\"tablist\"\n    style=\"margin-top: 100px\"\n    @click=\"isNetworkDisconnected ? null : loadAllData()\"\n  >\n    <a\n      id=\"list-grid-list\"\n      class=\"list-group-item list-group-item-dark list-group-item-action border-0 rounded-3 mb-2 active\"\n      data-bs-toggle=\"list\"\n      href=\"#list-grid\"\n      role=\"tab\"\n      aria-controls=\"list-grid\"\n      :title=\"$t('navbar.home_help')\"\n      :class=\"{ disabled: isNetworkDisconnected }\"\n    >\n      <i class=\"bi bi-columns-gap h3\" />\n    </a>\n\n    <a\n      id=\"list-chat-list\"\n      class=\"list-group-item list-group-item-dark list-group-item-action border-0 rounded-3 mb-2\"\n      data-bs-toggle=\"list\"\n      href=\"#list-chat\"\n      role=\"tab\"\n      aria-controls=\"list-chat\"\n      :title=\"$t('navbar.chat_help')\"\n      :class=\"{ disabled: isNetworkDisconnected }\"\n      @click=\"isNetworkDisconnected ? null : getFreedataMessages\"\n    >\n      <i class=\"bi bi-chat-text h3\" />\n      <span\n        v-if=\"chat.totalUnreadMessages > 0\"\n        class=\"badge bg-danger position-absolute top-0 end-0 mt-1 me-1\"\n      >\n        {{ chat.totalUnreadMessages }}\n      </span>\n    </a>\n\n    <a\n      id=\"list-mesh-list\"\n      class=\"list-group-item list-group-item-dark list-group-item-action d-none border-0 rounded-3 mb-2\"\n      data-bs-toggle=\"list\"\n      href=\"#list-mesh\"\n      role=\"tab\"\n      aria-controls=\"list-mesh\"\n    >\n      <i class=\"bi bi-rocket h3\" />\n    </a>\n\n    <a\n      id=\"list-settings-list\"\n      class=\"list-group-item list-group-item-dark list-group-item-action border-0 rounded-3 mb-2\"\n      data-bs-toggle=\"list\"\n      href=\"#list-settings\"\n      role=\"tab\"\n      aria-controls=\"list-settings\"\n      :title=\"$t('navbar.settings_help')\"\n      :class=\"{ disabled: isNetworkDisconnected }\"\n      @click=\"isNetworkDisconnected ? null : loadAllData()\"\n    >\n      <i class=\"bi bi-gear-wide-connected h3\" />\n    </a>\n  </div>\n\n  <button\n    class=\"btn btn-outline-secondary border-0 left-bottom-btn position-fixed bottom-0 mb-3 rounded-3 ms-1\"\n    data-bs-html=\"false\"\n    data-bs-toggle=\"modal\"\n    data-bs-target=\"#stationInfoModal\"\n    :title=\"$t('navbar.station_help')\"\n    disabled\n  >\n    <i class=\"bi bi-person-circle h3\" />\n  </button>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/main_loading_screen.vue",
    "content": "<!-- src/components/main_loading_screen.vue -->\n<template>\n  <div class=\"loading-screen\">\n    <div class=\"spinner\" />\n    <p>Loading...</p>\n  </div>\n</template>\n\n<script>\nexport default {\n  name: \"LoadingScreen\",\n};\n</script>\n\n<style scoped>\n.loading-screen {\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  height: 100vh;\n  background-color: #f0f0f0;\n  flex-direction: column;\n}\n\n.spinner {\n  width: 50px;\n  height: 50px;\n  border: 5px solid rgba(0, 0, 0, 0.1);\n  border-top-color: #3498db;\n  border-radius: 50%;\n  animation: spin 1s linear infinite;\n}\n\n@keyframes spin {\n  to {\n    transform: rotate(360deg);\n  }\n}\n\np {\n  margin-top: 10px;\n  font-size: 1.2rem;\n  color: #333;\n}\n</style>\n"
  },
  {
    "path": "freedata_gui/src/components/main_modals.vue",
    "content": "<script setup>\n   import { onMounted, computed } from \"vue\";\n   import { setActivePinia } from \"pinia\";\n   import pinia from \"../store/index\";\n   import { useChatStore } from \"../store/chatStore.js\";\n   import { useStationStore } from \"../store/stationStore.js\";\n   import { getStationInfoByCallsign, setStationInfoByCallsign } from \"../js/stationHandler.js\";\n   import { settingsStore } from \"../store/settingsStore.js\";\n   import { settingsStore as settings, onChange } from \"../store/settingsStore.js\";\n   import { sendModemTestFrame, sendSineTone } from \"../js/api\";\n   import { newMessage, deleteCallsignFromDB } from \"../js/messagesHandler.js\";\n   import main_startup_check from \"./main_startup_check.vue\";\n\n\n   // Chart.js imports\n   import {\n     Chart as ChartJS,\n     CategoryScale,\n     LinearScale,\n     PointElement,\n     LineElement,\n     Title,\n     Tooltip,\n     Legend,\n     BarElement,\n   } from \"chart.js\";\n   import { Line, Bar } from \"vue-chartjs\";\n   \n   // Register Chart.js components\n   ChartJS.register(\n     CategoryScale,\n     LinearScale,\n     PointElement,\n     LineElement,\n     Title,\n     Tooltip,\n     Legend,\n     BarElement,\n   );\n   \n   // Initialize Pinia\n   setActivePinia(pinia);\n   \n   // Setup stores\n   const chat = useChatStore(pinia);\n   const station = useStationStore(pinia);\n   \n   // Function to handle new chat messages\n   function newChat() {\n     let newCallsign = chat.newChatCallsign.toUpperCase();\n     newMessage(newCallsign, chat.newChatMessage);\n   \n     chat.newChatCallsign = \"\";\n     chat.newChatMessage = \"\";\n   }\n   \n   // Function to delete selected chat\n   function deleteChat() {\n     deleteCallsignFromDB(chat.selectedCallsign);\n   }\n   \n   // Chart options and data\n   const skipped = (speedCtx, value) =>\n     speedCtx.p0.skip || speedCtx.p1.skip ? value : undefined;\n   const down = (speedCtx, value) =>\n     speedCtx.p0.parsed.y > speedCtx.p1.parsed.y ? value : undefined;\n   \n   const transmissionSpeedChartOptionsMessageInfo = {\n     responsive: true,\n     animations: true,\n     maintainAspectRatio: false,\n     cubicInterpolationMode: \"monotone\",\n     tension: 0.4,\n     scales: {\n       SNR: {\n         type: \"linear\",\n         ticks: { beginAtZero: false, color: \"rgb(255, 99, 132, 1.0)\" },\n         position: \"right\",\n       },\n       SPEED: {\n         type: \"linear\",\n         ticks: { beginAtZero: false, color: \"rgb(120, 100, 120, 1.0)\" },\n         position: \"left\",\n         grid: {\n           drawOnChartArea: false,\n         },\n       },\n       x: { ticks: { beginAtZero: true } },\n     },\n   };\n\n// Utility function to format timestamps\nfunction formatTimestamp(isoTimestamp) {\n  const date = new Date(isoTimestamp);\n  return date.toLocaleTimeString('en-US', { hour12: false });\n}\n\nconst transmissionSpeedChartDataMessageInfo = computed(() => ({\n  labels: Object.values(chat.messageInfoById?.statistics?.time_histogram || {}).map(formatTimestamp),\n  datasets: [\n    {\n      type: 'line',\n      label: 'SNR[dB]',\n      data: Object.values(chat.messageInfoById?.statistics?.snr_histogram || {}),\n      borderColor: 'rgb(255, 99, 132)',\n      pointRadius: 1,\n      segment: {\n        borderColor: (speedCtx) =>\n          skipped(speedCtx, 'rgb(0,0,0,0.4)') || down(speedCtx, 'rgb(192,75,75)'),\n        borderDash: (speedCtx) => skipped(speedCtx, [3, 3]),\n      },\n      spanGaps: true,\n      backgroundColor: 'rgb(255, 99, 132)',\n      order: 1,\n      yAxisID: 'SNR',\n    },\n    {\n      type: 'bar',\n      label: 'Speed[bpm]',\n      data: Object.values(chat.messageInfoById?.statistics?.bpm_histogram || {}),\n      borderColor: 'rgb(120, 100, 120, 1.0)',\n      pointRadius: 1,\n      backgroundColor: 'rgba(120, 100, 120, 0.2)',\n      order: 0,\n      yAxisID: 'SPEED',\n    },\n  ],\n}));\n\n\nconst beaconHistogramOptions = {\n  type: 'bar',\n  bezierCurve: false, // remove curves from your plot\n  scaleShowLabels: false, // remove labels\n  tooltipEvents: [], // remove trigger from tooltips so they won't be shown\n  pointDot: false, // remove the points markers\n  scaleShowGridLines: true, // set to false to remove the grids background\n  maintainAspectRatio: true,\n  plugins: {\n    legend: {\n      display: false,\n    },\n    annotation: {\n      annotations: [\n        {\n          type: 'line',\n          mode: 'horizontal',\n          scaleID: 'y',\n          value: 0,\n          borderColor: 'darkgrey', // Set the color to dark grey for the zero line\n          borderWidth: 0.5, // Set the line width\n        },\n      ],\n    },\n  },\n\n  scales: {\n    x: {\n      position: 'bottom',\n      display: true,\n      min: -10,\n      max: 15,\n      ticks: {\n        display: false,\n      },\n      text: 'timestamp',\n    },\n    y: {\n      display: true,\n      min: -15,\n      max: 15,\n      ticks: {\n        display: true,\n      },\n      text: 'SNR',\n    },\n  },\n};\n\nconst beaconHistogramData = computed(() => ({\n  labels: chat.beaconLabelArray,\n  datasets: [\n    {\n      data: chat.beaconDataArray,\n      tension: 0.1,\n      borderColor: 'rgb(0, 255, 0)',\n\n      backgroundColor: function (context) {\n        const value = context.dataset.data[context.dataIndex];\n        return value >= 0 ? 'green' : 'red';\n      },\n    },\n  ],\n}));\n\n\n\n   \n   // Function to update station info\n   function updateStationInfo() {\n     let mycall = settingsStore.remote.STATION.mycall;\n     let myssid = settingsStore.remote.STATION.myssid;\n     let fullCall = `${mycall}-${myssid}`;\n     console.log(\"Updating station info:\", fullCall, station.stationInfo);\n\n     setStationInfoByCallsign(fullCall, station.stationInfo);\n   }\n   \n   // Fix for modal interaction\n   onMounted(() => {\n     const modalElement = document.getElementById(\"stationInfoModal\");\n     modalElement.addEventListener(\"show.bs.modal\", fetchMyStationInfo);\n     fetchMyStationInfo()\n   });\n   \n   // Fetch station info\n   function fetchMyStationInfo() {\n   \n     let mycall = settingsStore.remote.STATION.mycall;\n     let myssid = settingsStore.remote.STATION.myssid;\n     let fullCall = `${mycall}-${myssid}`;\n     console.log(\"fetching my station info:\", fullCall)\n     getStationInfoByCallsign(fullCall);\n   }\n\n\n\n\n\n</script>\n<template>\n  <main_startup_check />\n  <!-- Station Info Modal -->\n  <div\n    id=\"dxStationInfoModal\"\n    ref=\"modalElement\"\n    class=\"modal fade\"\n    tabindex=\"-1\"\n    aria-hidden=\"true\"\n  >\n    <div class=\"modal-dialog\">\n      <div class=\"modal-content\">\n        <div class=\"modal-header\">\n          <h4 class=\"p-0 m-0\">\n            {{ station.stationInfo.callsign }}\n          </h4>\n          <button\n            type=\"button\"\n            class=\"btn-close\"\n            data-bs-dismiss=\"modal\"\n            aria-label=\"Close\"\n          />\n        </div>\n        <div class=\"modal-body\">\n          <div\n            class=\"alert alert-primary\"\n            role=\"alert\"\n          >\n            <strong> Please note:</strong> This is a preview to show you the\n            direction, FreeDATA is going somewhen. For now you can save only\n            your personal data, so we can optimize and improve the database. In\n            future this data can be requested by a remote station.\n          </div>\n          <ul>\n            <li\n              v-for=\"(value, key) in station.stationInfo.info\"\n              :key=\"key\"\n            >\n              <strong>{{ key }}:</strong> {{ value }}\n            </li>\n          </ul>\n        </div>\n        <div class=\"modal-footer\">\n          <button\n            type=\"button\"\n            class=\"btn btn-secondary\"\n            data-bs-dismiss=\"modal\"\n          >\n            Close\n          </button>\n        </div>\n      </div>\n    </div>\n  </div>\n  <!-- updater release notes-->\n  <div\n    id=\"updaterReleaseNotes\"\n    ref=\"modalElement\"\n    class=\"modal fade\"\n    tabindex=\"-1\"\n    aria-hidden=\"true\"\n  >\n    <div class=\"modal-dialog\">\n      <div class=\"modal-content\">\n        <div class=\"modal-header\">\n          <span\n            id=\"updater_last_version\"\n            class=\"input-group-text\"\n          />\n          <span\n            id=\"updater_last_update\"\n            class=\"input-group-text ms-1\"\n          />\n          <button\n            type=\"button\"\n            class=\"btn-close\"\n            data-bs-dismiss=\"modal\"\n            aria-label=\"Close\"\n          />\n        </div>\n        <div class=\"modal-body\">\n          <div class=\"modal-dialog modal-dialog-scrollable\">\n            <div\n              id=\"updater_release_notes\"\n              class=\"\"\n            />\n          </div>\n        </div>\n        <div class=\"modal-footer\">\n          <button\n            type=\"button\"\n            class=\"btn btn-secondary\"\n            data-bs-dismiss=\"modal\"\n          >\n            {{ $t('modals.close') }}\n          </button>\n        </div>\n      </div>\n    </div>\n  </div>\n  <!-- delete chat modal -->\n  <div\n    id=\"deleteChatModal\"\n    ref=\"modalElement\"\n    class=\"modal fade\"\n    tabindex=\"-1\"\n    aria-labelledby=\"exampleModalLabel\"\n    aria-hidden=\"true\"\n  >\n    <div class=\"modal-dialog\">\n      <div class=\"modal-content\">\n        <div class=\"modal-header\">\n          <h1\n            id=\"deleteChatModalLabel\"\n            class=\"modal-title fs-5\"\n          >\n            {{ chat.selectedCallsign }} {{ $t('modals.options') }}\n          </h1>\n          <button\n            type=\"button\"\n            class=\"btn-close\"\n            data-bs-dismiss=\"modal\"\n            aria-label=\"Close\"\n          />\n        </div>\n        <div class=\"modal-body\">\n          <div class=\"card\">\n            <div class=\"card-header\">\n              <strong>{{ $t('modals.beaconhistogram') }}</strong>\n            </div>\n            <div class=\"card-body\">\n              <Bar\n                :data=\"beaconHistogramData\"\n                :options=\"beaconHistogramOptions\"\n                width=\"300\"\n                height=\"100\"\n              />\n            </div>\n          </div>\n\n\n          <div class=\"card mt-3\">\n            <div class=\"card-header\">\n              <strong>{{ $t('modals.furtheroptions') }}</strong>\n            </div>\n            <div class=\"card-body\">\n              <button\n                type=\"button\"\n                class=\"btn btn-danger\"\n                data-bs-dismiss=\"modal\"\n                @click=\"deleteChat\"\n              >\n                {{ $t('modals.deletechat') }}\n              </button>\n            </div>\n          </div>\n        </div>\n        <div class=\"modal-footer\">\n          <button\n            type=\"button\"\n            class=\"btn btn-secondary\"\n            data-bs-dismiss=\"modal\"\n          >\n            {{ $t('modals.close') }}\n          </button>\n        </div>\n      </div>\n    </div>\n  </div>\n  <!-- Message Info Modal -->\n  <div\n    id=\"messageInfoModal\"\n    ref=\"modalElement\"\n    class=\"modal fade\"\n    tabindex=\"-1\"\n    aria-hidden=\"true\"\n  >\n    <div class=\"modal-dialog\">\n      <div class=\"modal-content\">\n        <div class=\"modal-header\">\n          <h1\n            id=\"messageInfoModalLabel\"\n            class=\"modal-title fs-5\"\n          >\n            {{ chat.selectedCallsign }}\n          </h1>\n          <button\n            type=\"button\"\n            class=\"btn-close\"\n            data-bs-dismiss=\"modal\"\n            aria-label=\"Close\"\n          />\n        </div>\n        <div class=\"modal-body\">\n          <div class=\"card mt-2\">\n            <div class=\"card-header\">\n              {{ $t('general.statistics') }}\n            </div>\n            <div class=\"card-body\">\n              <div class=\"container\">\n                <div class=\"row\">\n                  <!-- Bytes per Minute -->\n                  <div class=\"auto mb-2\">\n                    <div class=\"input-group\">\n                      <span class=\"input-group-text\">{{ $t('general.speed') }}</span>\n                      <span class=\"input-group-text\">{{ chat.messageInfoById?.statistics?.bytes_per_minute ?? 'NaN' }} bpm / {{ chat.messageInfoById?.statistics?.bits_per_second ?? 'NaN' }} bps</span>\n                    </div>\n                  </div>\n                </div>\n\n                <div class=\"row\">\n                  <!-- Duration [s] -->\n                  <div class=\"col-auto mb-2\">\n                    <div class=\"input-group\">\n                      <span class=\"input-group-text\">{{ $t('general.duration') }}</span>\n                      <span class=\"input-group-text\">{{ Math.round(chat.messageInfoById?.statistics?.duration) ?? 'NaN' }}</span>\n                    </div>\n                  </div>\n                  <!-- Size -->\n                  <div class=\"col-auto mb-2\">\n                    <div class=\"input-group\">\n                      <span class=\"input-group-text\">{{ $t('general.size') }}</span>\n                      <span class=\"input-group-text\">{{ chat.messageInfoById?.statistics?.total_bytes ?? 'NaN' }} {{ $t('general.bytes') }}</span>\n                    </div>\n                  </div>\n                </div>\n              </div>\n            </div>\n          </div>\n\n\n          <div class=\"card mt-2\">\n            <div class=\"card-header\">\n              {{ $t('general.chart') }}\n            </div>\n            <div class=\"card-body\">\n              <Line\n                :data=\"transmissionSpeedChartDataMessageInfo\"\n                :options=\"transmissionSpeedChartOptionsMessageInfo\"\n              />\n            </div>\n          </div>\n        </div>\n        <div class=\"modal-footer\">\n          <button\n            type=\"button\"\n            class=\"btn btn-secondary\"\n            data-bs-dismiss=\"modal\"\n          >\n            {{ $t('modals.close') }}\n          </button>\n        </div>\n      </div>\n    </div>\n  </div>\n  <div\n    id=\"newChatModal\"\n    ref=\"modalElement\"\n    class=\"modal fade\"\n    tabindex=\"-1\"\n    aria-hidden=\"true\"\n  >\n    <div class=\"modal-dialog\">\n      <div class=\"modal-content\">\n        <div class=\"modal-header\">\n          <h1\n            id=\"deleteChatModalLabel\"\n            class=\"modal-title fs-5\"\n          >\n            {{ $t('modals.startnewchat') }}\n          </h1>\n          <button\n            type=\"button\"\n            class=\"btn-close\"\n            data-bs-dismiss=\"modal\"\n            aria-label=\"Close\"\n          />\n        </div>\n        <div class=\"modal-body\">\n          <div\n            class=\"alert alert-info\"\n            role=\"alert\"\n          >\n            1. {{ $t('modals.newchatline1') }}\n            <br>\n            2. {{ $t('modals.newchatline2') }}\n            <br>\n            3. {{ $t('modals.newchatline3') }}\n            <br>\n            4. {{ $t('modals.newchatline4') }}\n          </div>\n          <div class=\"form-floating mb-3\">\n            <input\n              id=\"floatingInputDestination\"\n              v-model=\"chat.newChatCallsign\"\n              type=\"text\"\n              class=\"form-control\"\n              placeholder=\"dxcallsign / destination\"\n              maxlength=\"9\"\n              style=\"text-transform: uppercase\"\n              @keypress.enter=\"newChat()\"\n            >\n            <label for=\"floatingInputDestination\">{{ $t('general.dxcallsign') }} / {{ $t('general.destination') }}</label>\n          </div>\n          <div class=\"form-floating\">\n            <textarea\n              id=\"floatingTextareaNewChatMessage\"\n              v-model=\"chat.newChatMessage\"\n              class=\"form-control\"\n              placeholder=\"Your first message\"\n              style=\"height: 100px\"\n            />\n            <label for=\"floatingTextareaNewChatMessage\">{{ $t('modals.firstmessage') }}</label>\n          </div>\n        </div>\n        <div class=\"modal-footer\">\n          <button\n            type=\"button\"\n            class=\"btn btn-secondary\"\n            data-bs-dismiss=\"modal\"\n          >\n            {{ $t('modals.close') }}\n          </button>\n          <button\n            id=\"createNewChatButton\"\n            class=\"btn btn-sm btn-outline-success\"\n            type=\"button\"\n            data-bs-dismiss=\"modal\"\n            data-bs-trigger=\"hover\"\n            :title=\"$t('modals.startnewchat2')\"\n            @click=\"newChat()\"\n          >\n            {{ $t('modals.startnewchat').toUpperCase() }}\n            <i\n              class=\"bi bi-pencil-square\"\n              style=\"font-size: 1.2rem\"\n            />\n          </button>\n        </div>\n      </div>\n    </div>\n  </div>\n  <!-- AUDIO MODAL -->\n  <div\n    id=\"audioModal\"\n    class=\"modal fade\"\n    data-bs-backdrop=\"static\"\n    tabindex=\"-1\"\n  >\n    <div class=\"modal-dialog modal-dialog-scrollable\">\n      <div class=\"modal-content\">\n        <div class=\"modal-header\">\n          <h5 class=\"modal-title\">\n            {{ $t('modals.audiotuning') }}\n          </h5>\n          <button\n            type=\"button\"\n            class=\"btn btn-close\"\n            data-bs-dismiss=\"modal\"\n            aria-label=\"Close\"\n          />\n        </div>\n        <div class=\"modal-body\">\n          <div\n            class=\"alert alert-info\"\n            role=\"alert\"\n          >\n            {{ $t('modals.audiotuninginfo') }}\n          </div>\n          <div class=\"input-group input-group-sm mb-1\">\n            <span class=\"input-group-text\">{{ $t('modals.testframe') }}</span>\n            <button\n              id=\"sendTestFrame\"\n              type=\"button\"\n              class=\"btn btn-danger\"\n              @click=\"sendModemTestFrame()\"\n            >\n              {{ $t('modals.testframetransmit') }}\n            </button>\n          </div>\n          <div class=\"input-group input-group-sm mb-1\">\n            <span class=\"input-group-text\">{{ $t('modals.audiotuningrxlevel') }}</span>\n            <span class=\"input-group-text\">{{\n              settings.remote.AUDIO.rx_audio_level\n            }}</span>\n            <span class=\"input-group-text w-75\">\n              <input\n                id=\"audioLevelRX\"\n                v-model.number=\"settings.remote.AUDIO.rx_audio_level\"\n                type=\"range\"\n                class=\"form-range\"\n                min=\"-30\"\n                max=\"20\"\n                step=\"1\"\n                @change=\"onChange\"\n              ></span>\n          </div>\n          <div class=\"input-group input-group-sm mb-1\">\n            <span class=\"input-group-text\">{{ $t('modals.audiotuningtxlevel') }}</span>\n            <span class=\"input-group-text\">{{\n              settings.remote.AUDIO.tx_audio_level\n            }}</span>\n            <span class=\"input-group-text w-75\">\n              <input\n                id=\"audioLevelTX\"\n                v-model.number=\"settings.remote.AUDIO.tx_audio_level\"\n                type=\"range\"\n                class=\"form-range\"\n                min=\"-30\"\n                max=\"20\"\n                step=\"1\"\n                @change=\"onChange\"\n              ></span>\n          </div>\n\n\n          <div class=\"input-group input-group-sm mb-1\">\n            <span class=\"input-group-text\">{{ $t('modals.audiotuningtransmitsine') }}</span>\n            <button\n              id=\"sendTestFrame\"\n              type=\"button\"\n              class=\"btn btn-success\"\n              @click=\"sendSineTone(true)\"\n            >\n              {{ $t('modals.audiotuningtransmitsine30s') }}\n            </button>\n\n            <button\n              id=\"sendTestFrame\"\n              type=\"button\"\n              class=\"btn btn-danger\"\n              @click=\"sendSineTone(false)\"\n            >\n              {{ $t('general.stop') }}\n            </button>\n          </div>\n        </div>\n      </div>\n    </div>\n  </div>\n  <!-- STATION INFO MODAL -->\n  <div\n    id=\"stationInfoModal\"\n    class=\"modal fade\"\n    tabindex=\"-1\"\n    aria-labelledby=\"stationInfoModal\"\n    aria-hidden=\"true\"\n  >\n    <div class=\"modal-dialog modal-dialog-scrollable\">\n      <div class=\"modal-content\">\n        <div class=\"modal-header\">\n          <h1 class=\"modal-title fs-5\">\n            {{ settingsStore.remote.STATION.mycall }}\n            -\n            {{ settingsStore.remote.STATION.myssid }}\n          </h1>\n          <span class=\"badge text-bg-secondary ms-3\">{{\n            settingsStore.remote.STATION.mygrid\n          }}</span>\n          <button\n            type=\"button\"\n            class=\"btn-close\"\n            data-bs-dismiss=\"modal\"\n            aria-label=\"Close\"\n          />\n        </div>\n        <div class=\"modal-body\">\n          <div\n            class=\"alert alert-primary\"\n            role=\"alert\"\n          >\n            <strong> Please note:</strong> This is a preview to show you the\n            direction, FreeDATA is going somewhen. For now you can save only\n            your personal data, so we can optimize and improve the database. In\n            future this data can be requested by a remote station.\n          </div>\n          <!-- Name -->\n          <div class=\"input-group mb-1\">\n            <span class=\"input-group-text\"><i class=\"bi bi-person-fill\" /></span>\n            <input\n              v-model=\"station.stationInfo.info.name\"\n              type=\"text\"\n              class=\"form-control\"\n              placeholder=\"Name\"\n            >\n          </div>\n          <!-- City -->\n          <div class=\"input-group mb-1\">\n            <span class=\"input-group-text\"><i class=\"bi bi-geo-alt-fill\" /></span>\n            <input\n              v-model=\"station.stationInfo.info.city\"\n              type=\"text\"\n              class=\"form-control\"\n              placeholder=\"City\"\n            >\n          </div>\n          <!-- Age -->\n          <div class=\"input-group mb-3\">\n            <span class=\"input-group-text\"><i class=\"bi bi-person-fill\" /></span>\n            <input\n              v-model=\"station.stationInfo.info.age\"\n              type=\"text\"\n              class=\"form-control\"\n              placeholder=\"Age\"\n            >\n          </div>\n          <!-- Radio -->\n          <div class=\"input-group mb-1\">\n            <span class=\"input-group-text\"><i class=\"bi bi-broadcast-pin\" /></span>\n            <input\n              v-model=\"station.stationInfo.info.radio\"\n              type=\"text\"\n              class=\"form-control\"\n              placeholder=\"Radio\"\n            >\n          </div>\n          <!-- Antenna -->\n          <div class=\"input-group mb-3\">\n            <span class=\"input-group-text\"><i class=\"bi bi-cone-striped\" /></span>\n            <input\n              v-model=\"station.stationInfo.info.antenna\"\n              type=\"text\"\n              class=\"form-control\"\n              placeholder=\"Antenna\"\n            >\n          </div>\n          <!-- Website -->\n          <div class=\"input-group mb-1\">\n            <span class=\"input-group-text\"><i class=\"bi bi-globe\" /></span>\n            <input\n              v-model=\"station.stationInfo.info.website\"\n              type=\"url\"\n              class=\"form-control\"\n              placeholder=\"Website\"\n            >\n          </div>\n          <!-- Email -->\n          <div class=\"input-group mb-3\">\n            <span class=\"input-group-text\"><i class=\"bi bi-envelope-fill\" /></span>\n            <input\n              v-model=\"station.stationInfo.info.email\"\n              type=\"email\"\n              class=\"form-control\"\n              placeholder=\"Email\"\n            >\n          </div>\n          <!-- Social Media Inputs -->\n          <div class=\"mb-3\">\n            <div\n              v-for=\"(url, platform) in station.stationInfo.info.socialMedia\"\n              :key=\"platform\"\n            >\n              <div class=\"input-group mb-1\">\n                <span class=\"input-group-text\">\n                  <i :class=\"`bi bi-${platform}`\" />\n                </span>\n                <input\n                  v-model=\"station.stationInfo.info.socialMedia[platform]\"\n                  type=\"url\"\n                  class=\"form-control\"\n                  :placeholder=\"`${platform.charAt(0).toUpperCase() + platform.slice(1)} URL`\"\n                >\n              </div>\n            </div>\n          </div>\n          <!-- Comments -->\n          <div class=\"mb-3\">\n            <label\n              class=\"input-group-text\"\n              for=\"comments\"\n            ><i class=\"bi bi-textarea-resize\" /> Comments</label>\n            <textarea\n              v-model=\"station.stationInfo.info.comments\"\n              class=\"form-control\"\n              rows=\"3\"\n            />\n          </div>\n        </div>\n        <div class=\"modal-footer\">\n          <button\n            type=\"button\"\n            class=\"btn btn-secondary\"\n            data-bs-dismiss=\"modal\"\n          >\n            {{ $t('modals.close') }}\n          </button>\n          <button\n            type=\"button\"\n            class=\"btn btn-primary\"\n            @click=\"updateStationInfo\"\n          >\n            {{ $t('modals.savechanges') }}\n          </button>\n        </div>\n      </div>\n    </div>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/main_screen.vue",
    "content": "<template>\n  <main_modals />\n\n  <div\n    aria-live=\"polite\"\n    aria-atomic=\"true\"\n    class=\"position-relative z-3\"\n  >\n    <div\n      id=\"mainToastContainer\"\n      class=\"toast-container position-absolute top-0 end-0 p-3\"\n    />\n  </div>\n\n  <div class=\"container-fluid d-flex flex-column min-vh-100\">\n    <div class=\"row flex-nowrap flex-grow-1\">\n      <!-- Left Navbar -->\n      <div\n        class=\"col-1 col-lg-auto p-0 bg-body-secondary border-end d-flex flex-column\"\n        style=\"min-width: 65px;\"\n      >\n        <div class=\"flex-shrink-0 m-1 m-lg-3\">\n          <main_left_navbar />\n        </div>\n      </div>\n\n      <!-- Main Content -->\n      <div class=\"col m-0 p-0 d-flex flex-column\">\n        <div class=\"flex-grow-1 d-flex flex-column overflow-auto\">\n          <div class=\"tab-content flex-grow-1\">\n            <!-- Tab Panes -->\n            <div\n              id=\"list-grid\"\n              class=\"tab-pane fade show active\"\n              role=\"tabpanel\"\n              aria-labelledby=\"list-grid-list\"\n            >\n              <Dynamic_components />\n            </div>\n            <div\n              id=\"list-chat\"\n              class=\"tab-pane fade\"\n              role=\"tabpanel\"\n              aria-labelledby=\"list-chat-list\"\n            >\n              <chat />\n            </div>\n            <div\n              id=\"list-settings\"\n              class=\"tab-pane fade\"\n              role=\"tabpanel\"\n              aria-labelledby=\"list-settings-list\"\n            >\n              <settings_view />\n            </div>\n          </div>\n        </div>\n        <!-- Footer Area -->\n        <main_footer_navbar />\n      </div>\n    </div>\n  </div>\n</template>\n\n<script>\nimport { setActivePinia } from 'pinia';\nimport pinia from '../store/index';\n\nimport main_modals from './main_modals.vue';\nimport settings_view from './settings_screen.vue';\nimport main_footer_navbar from './main_footer_navbar.vue';\nimport main_left_navbar from './main_left_navbar.vue';\nimport chat from './chat_screen.vue';\nimport Dynamic_components from './dynamic_components.vue';\n\n// Set the active Pinia store\nsetActivePinia(pinia);\n\nexport default {\n  components: {\n    main_modals,\n    settings_view,\n    main_footer_navbar,\n    main_left_navbar,\n    chat,\n    Dynamic_components,\n  },\n};\n</script>\n"
  },
  {
    "path": "freedata_gui/src/components/main_startup_check.vue",
    "content": "<template>\n  <div\n    id=\"modemCheck\"\n    class=\"modal modal-lg fade\"\n    data-bs-backdrop=\"static\"\n    data-bs-keyboard=\"false\"\n    tabindex=\"-1\"\n    aria-hidden=\"true\"\n  >\n    <div class=\"modal-dialog modal-dialog-scrollable\">\n      <div class=\"modal-content\">\n        <div class=\"modal-header\">\n          <h1 class=\"modal-title fs-5\">\n            {{ $t('modals.systemcheck') }}\n          </h1>\n          <button\n            type=\"button\"\n            class=\"ms-5 btn btn-secondary\"\n            aria-label=\"Reload GUI\"\n            @click=\"reloadGUI\"\n          >\n            {{ $t('modals.reloadgui') }}\n          </button>\n          <button\n            type=\"button\"\n            class=\"btn-close me-2\"\n            data-bs-dismiss=\"modal\"\n            aria-label=\"Close\"\n          />\n        </div>\n        <div class=\"modal-body\">\n          <div\n            id=\"startupCheckAccordion\"\n            class=\"accordion\"\n          >\n            <!-- Network Section -->\n            <div class=\"accordion-item\">\n              <h2 class=\"accordion-header\">\n                <button\n                  class=\"accordion-button collapsed\"\n                  type=\"button\"\n                  data-bs-target=\"#networkStatusCollapse\"\n                  data-bs-toggle=\"collapse\"\n                >\n                  {{ $t('modals.network') }}\n                  <span\n                    class=\"badge ms-2\"\n                    :class=\"state.modem_connection === 'connected' ? 'bg-success' : 'bg-danger'\"\n                  >\n                    {{ getNetworkState() }}\n                  </span>\n                </button>\n              </h2>\n              <div\n                id=\"networkStatusCollapse\"\n                class=\"accordion-collapse collapse\"\n                data-bs-parent=\"#startupCheckAccordion\"\n              >\n                <div class=\"accordion-body\">\n                  <div\n                    class=\"alert alert-info\"\n                    role=\"alert\"\n                  >\n                    {{ $t('modals.remoteinfo') }}\n                  </div>\n\n                  <div class=\"input-group input-group-sm mb-1\">\n                    <span class=\"input-group-text w-25\">{{ $t('modals.apiurl') }}</span>\n                    <input\n                      type=\"text\"\n                      class=\"form-control\"\n                      :value=\"apiUrl\"\n                      disabled\n                    >\n                  </div>\n                </div>\n              </div>\n            </div>\n            <!-- Modem Section -->\n            <div class=\"accordion-item\">\n              <h2 class=\"accordion-header\">\n                <button\n                  class=\"accordion-button collapsed\"\n                  type=\"button\"\n                  data-bs-target=\"#modemStatusCollapse\"\n                  data-bs-toggle=\"collapse\"\n                >\n                  {{ $t('general.modem') }}\n                  <span\n                    class=\"badge ms-2\"\n                    :class=\"state.is_modem_running ? 'bg-success' : 'bg-danger'\"\n                  >\n                    {{ getModemStateLocal() }}\n                  </span>\n                </button>\n              </h2>\n              <div\n                id=\"modemStatusCollapse\"\n                class=\"accordion-collapse collapse\"\n                data-bs-parent=\"#startupCheckAccordion\"\n              >\n                <div class=\"accordion-body\">\n                  <div\n                    class=\"alert alert-info\"\n                    role=\"alert\"\n                  >\n                    {{ $t('modals.furthersettings') }}\n                  </div>\n\n\n                  <!-- Audio Input Device -->\n                  <div class=\"input-group input-group-sm mb-1\">\n                    <label class=\"input-group-text w-50\">{{ $t('settings.modem.audioinputdevice') }}</label>\n                    <select\n                      v-model=\"settings.remote.AUDIO.input_device\"\n                      class=\"form-select form-select-sm\"\n                      aria-label=\".form-select-sm\"\n                      @change=\"onChange\"\n                    >\n                      <option\n                        v-for=\"device in audioStore.audioInputs\"\n                        :key=\"device.id\"\n                        :value=\"device.id\"\n                      >\n                        {{ device.name }} [{{ device.api }}]\n                      </option>\n                    </select>\n                  </div>\n                  <!-- Audio Output Device -->\n                  <div class=\"input-group input-group-sm mb-1\">\n                    <label class=\"input-group-text w-50\">{{ $t('settings.modem.audiooutputdevice') }}</label>\n                    <select\n                      v-model=\"settings.remote.AUDIO.output_device\"\n                      class=\"form-select form-select-sm\"\n                      aria-label=\".form-select-sm\"\n                      @change=\"onChange\"\n                    >\n                      <option\n                        v-for=\"device in audioStore.audioOutputs\"\n                        :key=\"device.id\"\n                        :value=\"device.id\"\n                      >\n                        {{ device.name }} [{{ device.api }}]\n                      </option>\n                    </select>\n                  </div>\n\n\n                  <div\n                    class=\"alert alert-warning mt-3\"\n                    role=\"alert\"\n                  >\n                    {{ $t('modals.restartserveronproblem') }}\n                  </div>\n                  <div class=\"input-group input-group-sm\">\n                    <label class=\"input-group-text w-50\">{{ $t('modals.manualmodemrestart') }}</label>\n                    <label class=\"input-group-text w-50\">\n                      <button\n                        id=\"startModem\"\n                        type=\"button\"\n                        class=\"btn btn-sm btn-outline-secondary w-100\"\n                        data-bs-toggle=\"tooltip\"\n                        data-bs-trigger=\"hover\"\n                        data-bs-html=\"false\"\n                        :title=\" $t('modals.manualmodemrestart_help')\"\n                        @click=\"reloadModem\"\n                      >\n                        <i class=\"bi bi-arrow-clockwise\" />\n                      </button>\n                    </label>\n                  </div>\n                </div>\n              </div>\n            </div>\n            <!-- Radio Control Section -->\n            <div class=\"accordion-item\">\n              <h2 class=\"accordion-header\">\n                <button\n                  class=\"accordion-button collapsed\"\n                  type=\"button\"\n                  data-bs-target=\"#radioControlCollapse\"\n                  data-bs-toggle=\"collapse\"\n                  data-bs-parent=\"#startupCheckAccordion\"\n                >\n                  {{ $t('modals.radiocontrol') }}\n                  <span\n                    class=\"badge ms-2\"\n                    :class=\"getRigControlStatus() ? 'bg-success' : 'bg-danger'\"\n                  >\n                    {{ getRigControlStatus() ? i18next.t('grid.components.online') : i18next.t('grid.components.offline') }}\n                  </span>\n                </button>\n              </h2>\n              <div\n                id=\"radioControlCollapse\"\n                class=\"accordion-collapse collapse\"\n                data-bs-parent=\"#startupCheckAccordion\"\n              >\n                <div class=\"accordion-body\">\n                  <div\n                    class=\"alert alert-info\"\n                    role=\"alert\"\n                  >\n                    {{ $t('modals.radiocontrolinfo') }}\n                  </div>\n\n                  <div class=\"input-group input-group-sm mb-1\">\n                    <span\n                      class=\"input-group-text\"\n                      style=\"width: 180px\"\n                    >{{ $t('modals.rigcontrolmethod') }}</span>\n                    <select\n                      id=\"rigcontrol_radiocontrol_healthcheck\"\n                      v-model=\"settings.remote.RADIO.control\"\n                      class=\"form-select form-select-sm\"\n                      aria-label=\".form-select-sm\"\n                      @change=\"onChange\"\n                    >\n                      <option value=\"disabled\">\n                        Disabled (no rig control; use with VOX)\n                      </option>\n                      <option value=\"serial_ptt\">\n                        Serial PTT via DTR/RTS\n                      </option>\n                      <option value=\"rigctld\">\n                        Rigctld (external Hamlib)\n                      </option>\n                      <option value=\"rigctld_bundle\">\n                        Rigctld (internal Hamlib)\n                      </option>\n                      <option value=\"flrig\">\n                        flrig\n                      </option>\n                    </select>\n                  </div>\n                  <!-- Shown when rigctld_bundle is selected -->\n                  <div :class=\"{ 'd-none': settings.remote.RADIO.control !== 'rigctld_bundle' }\">\n                    <div class=\"input-group input-group-sm mb-1\">\n                      <span\n                        class=\"input-group-text\"\n                        style=\"width: 180px\"\n                      >{{ $t('modals.radioport') }}</span>\n                      <select\n                        v-model=\"settings.remote.RADIO.serial_port\"\n                        class=\"form-select form-select-sm\"\n                        @change=\"onChange\"\n                      >\n                        <option\n                          v-for=\"device in serialStore.serialDevices\"\n                          :key=\"device.port\"\n                          :value=\"device.port\"\n                        >\n                          {{ device.description }}\n                        </option>\n                      </select>\n                    </div>\n                    <!-- Test Hamlib Button -->\n                    <div class=\"input-group input-group-sm mb-1\">\n                      <button\n                        type=\"button\"\n                        class=\"btn btn-sm btn-outline-secondary\"\n                        @click=\"testHamlib\"\n                      >\n                        {{ $t('modals.testhamlib') }}\n                      </button>\n                    </div>\n                  </div>\n                </div>\n              </div>\n            </div>\n            <!-- Info Section -->\n            <div class=\"accordion-item\">\n              <h2 class=\"accordion-header\">\n                <button\n                  class=\"accordion-button collapsed\"\n                  type=\"button\"\n                  data-bs-target=\"#systemStatusCollapse\"\n                  data-bs-toggle=\"collapse\"\n                >\n                  {{ $t('modals.systeminfo') }}\n                  <!--\n                        <button type=\"button\" class=\"btn btn-sm btn-outline-secondary\" @click=\"copyToClipboard\">Copy</button>\n                        -->\n                </button>\n              </h2>\n              <div\n                id=\"systemStatusCollapse\"\n                class=\"accordion-collapse collapse\"\n                data-bs-parent=\"#startupCheckAccordion\"\n              >\n                <div class=\"accordion-body\">\n                  <div\n                    class=\"alert alert-info\"\n                    role=\"alert\"\n                  >\n                    {{ $t('modals.systeminfoalert') }}\n                  </div>\n\n                  <h3>{{ $t('modals.apiinformation') }}</h3>\n                  <p><strong>{{ $t('modals.apiversion') }}:</strong> {{ state.api_version }}</p>\n                  <p><strong>{{ $t('modals.modemversion') }}:</strong> {{ state.modem_version }}</p>\n\n                  <h3>{{ $t('modals.osinfo') }}</h3>\n                  <p><strong>{{ $t('modals.system') }}:</strong> {{ state.os_info.system }}</p>\n                  <p><strong>{{ $t('modals.node') }}:</strong> {{ state.os_info.node }}</p>\n                  <p><strong>{{ $t('modals.release') }}:</strong> {{ state.os_info.release }}</p>\n                  <p><strong>{{ $t('modals.version') }}:</strong> {{ state.os_info.version }}</p>\n                  <p><strong>{{ $t('modals.machine') }}:</strong> {{ state.os_info.machine }}</p>\n                  <p><strong>{{ $t('modals.processor') }}:</strong> {{ state.os_info.processor }}</p>\n\n                  <h3>{{ $t('modals.pythoninformation') }}</h3>\n                  <p><strong>{{ $t('modals.build') }}:</strong> {{ state.python_info.build.join(' ') }}</p>\n                  <p><strong>{{ $t('modals.compiler') }}:</strong> {{ state.python_info.compiler }}</p>\n                  <p><strong>{{ $t('modals.branch') }}:</strong> {{ state.python_info.branch || 'N/A' }}</p>\n                  <p><strong>{{ $t('modals.implementation') }}:</strong> {{ state.python_info.implementation }}</p>\n                  <p><strong>{{ $t('modals.revision') }}:</strong> {{ state.python_info.revision || 'N/A' }}</p>\n                  <p><strong>{{ $t('modals.version') }}:</strong> {{ state.python_info.version }}</p>\n                </div>\n              </div>\n            </div>\n          </div>\n        </div>\n      </div>\n    </div>\n  </div>\n</template>\n\n<script setup>\nimport { Modal } from 'bootstrap/dist/js/bootstrap.esm.min.js';\nimport { onMounted } from 'vue';\n\n// Pinia setup\nimport { setActivePinia } from 'pinia';\nimport pinia from '../store/index';\nsetActivePinia(pinia);\n\n// Store imports\nimport { settingsStore as settings, onChange } from '../store/settingsStore.js';\nimport { sendModemCQ, startModem, stopModem } from '../js/api.js';\nimport { useStateStore } from '../store/stateStore.js';\nimport { useAudioStore } from '../store/audioStore';\nimport { useSerialStore } from '../store/serialStore.js';\n\n// API imports\nimport { getVersion, getSysInfo } from '../js/api';\nimport i18next from \"@/js/i18n\";\n\n// Reactive state\nconst state = useStateStore(pinia);\nconst audioStore = useAudioStore(pinia);\nconst serialStore = useSerialStore(pinia);\n\n// Get the full API URL\nconst apiUrl = `${window.location.protocol}//${window.location.hostname}:${window.location.port}`;\n\n// Initialize modal on mount\nonMounted(() => {\n  getSysInfo().then((res) => {\n    if (res) {\n      state.api_version = res.api_version;\n      state.modem_version = res.modem_version;\n      state.os_info = res.os_info;\n      state.python_info = res.python_info;\n    }\n  });\n\n  getVersion().then((res) => {\n    state.modem_version = res;\n  });\n\n  new Modal('#modemCheck', {}).show();\n});\n\n/*\nconst copyToClipboard = () => {\n  const info = `\n    API Version: ${state.api_version}\n    Modem Version: ${state.modem_version}\n\n    Operating System Information:\n    System: ${state.os_info.system}\n    Node: ${state.os_info.node}\n    Release: ${state.os_info.release}\n    Version: ${state.os_info.version}\n    Machine: ${state.os_info.machine}\n    Processor: ${state.os_info.processor}\n\n    Python Information:\n    Build: ${state.python_info.build.join(' ')}\n    Compiler: ${state.python_info.compiler}\n    Branch: ${state.python_info.branch || 'N/A'}\n    Implementation: ${state.python_info.implementation}\n    Revision: ${state.python_info.revision || 'N/A'}\n    Version: ${state.python_info.version}\n  `;\n\n  navigator.clipboard.writeText(info).then(() => {\n    alert('Information copied to clipboard!');\n  });\n\n};\n*/\n\n// Helper functions\nfunction getModemStateLocal() {\n  return state.is_modem_running ? i18next.t('grid.components.active') : i18next.t('grid.components.inactive')\n}\n\nfunction getNetworkState() {\n  return state.modem_connection === 'connected' ? i18next.t('grid.components.connected') : i18next.t('grid.components.disconnected');\n}\n\nfunction getRigControlStatus() {\n  switch (settings.remote.RADIO.control) {\n    case 'disabled':\n      return true;\n    case 'serial_ptt':\n    case 'rigctld':\n    case 'rigctld_bundle':\n    case 'flrig':\n      return state.radio_status;\n    default:\n      console.error('Unknown radio control mode ' + settings.remote.RADIO.control);\n      return 'Unknown control type' + settings.remote.RADIO.control;\n  }\n}\n\nfunction testHamlib() {\n  sendModemCQ();\n}\n\nfunction reloadGUI() {\n  location.reload();\n}\n\nfunction reloadModem(){\n  stopModem();\n  setTimeout(startModem, 5000); // Executes startModem after 5000 milliseconds as server needs to shutdown first\n}\n\n</script>\n"
  },
  {
    "path": "freedata_gui/src/components/settings_chat.vue",
    "content": "<script>\nimport { settingsStore as settings, onChange } from \"../store/settingsStore.js\";\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\n\n// Set the active Pinia store\nsetActivePinia(pinia);\n\n// Export methods and computed properties for use in the template\nexport default {\n  computed: {\n    settings() {\n      return settings;\n    },\n  },\n  methods: {\n    onChange,\n  },\n};\n</script>\n\n<template>\n  <!-- Top Info Area for Messages Settings -->\n  <div\n    class=\"alert alert-info\"\n    role=\"alert\"\n  >\n    <strong><i class=\"bi bi-gear-wide-connected me-1\" /></strong> {{ $t('settings.chat.introduction') }}\n  </div>\n\n  <!-- Enable Message Auto Repeat -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.chat.enablemessageautorepeat') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.chat.enablemessageautorepeat_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <label class=\"input-group-text w-50\">\n      <div class=\"form-check form-switch form-check-inline ms-2\">\n        <input\n          id=\"enableMessagesAutoRepeatSwitch\"\n          v-model=\"settings.remote.MESSAGES.enable_auto_repeat\"\n          class=\"form-check-input\"\n          type=\"checkbox\"\n          @change=\"onChange\"\n        >\n        <label\n          class=\"form-check-label\"\n          for=\"enableMessagesAutoRepeatSwitch\"\n        >{{ $t('settings.enable') }}</label>\n      </div>\n    </label>\n  </div>\n\n  <!-- Enable ADIF export -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.chat.enableadifloggingudp') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.chat.enableadifloggingudp_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <label class=\"input-group-text w-50\">\n      <div class=\"form-check form-switch form-check-inline ms-2\">\n        <input\n          id=\"enableADIFSwitch\"\n          v-model=\"settings.remote.QSO_LOGGING.enable_adif_udp\"\n          class=\"form-check-input\"\n          type=\"checkbox\"\n          @change=\"onChange\"\n        >\n        <label\n          class=\"form-check-label\"\n          for=\"enableADIFSwitch\"\n        >{{ $t('settings.enable') }}</label>\n      </div>\n    </label>\n  </div>\n\n  <!-- ADIF Log Host -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.chat.adifloggingudphost') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.chat.adifloggingudphost_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <input\n      id=\"adifLogHost\"\n      v-model=\"settings.remote.QSO_LOGGING.adif_udp_host\"\n      type=\"text\"\n      class=\"form-control\"\n      :placeholder=\"$t('settings.chat.adifloggingudphost_placeholder')\"\n      @change=\"onChange\"\n    >\n  </div>\n\n  <!-- ADIF Log Port -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.chat.adifloggingudpport') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\" $t('settings.chat.adifloggingudpport_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <input\n      id=\"adifLogPort\"\n      v-model.number=\"settings.remote.QSO_LOGGING.adif_udp_port\"\n      type=\"number\"\n      class=\"form-control\"\n      :placeholder=\" $t('settings.chat.adifloggingudpport_placeholder')\"\n      max=\"65534\"\n      min=\"1025\"\n      @change=\"onChange\"\n    >\n  </div>\n\n  <!-- Enable Wavelog API -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n\n      {{ $t('settings.chat.adifloggingwavelog') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.chat.enableadifloggingwavelog_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <label class=\"input-group-text w-50\">\n      <div class=\"form-check form-switch form-check-inline ms-2\">\n        <input\n          id=\"enableWavelogSwitch\"\n          v-model=\"settings.remote.QSO_LOGGING.enable_adif_wavelog\"\n          class=\"form-check-input\"\n          type=\"checkbox\"\n          @change=\"onChange\"\n        >\n        <label\n          class=\"form-check-label\"\n          for=\"enableWavelogSwitch\"\n        >{{ $t('settings.enable') }}</label>\n      </div>\n    </label>\n  </div>\n\n  <!-- Wavelog Host -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.chat.adifloggingwaveloghost') }}\n\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.chat.adifloggingwaveloghost_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <input\n      id=\"wavelogHost\"\n      v-model=\"settings.remote.QSO_LOGGING.adif_wavelog_host\"\n      type=\"text\"\n      class=\"form-control\"\n      :placeholder=\"$t('settings.chat.adifloggingwaveloghost_placeholder')\"\n      @change=\"onChange\"\n    >\n  </div>\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.chat.adifloggingwavelogapi') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.chat.adifloggingwavelogapi_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <input\n      id=\"wavelogApiKey\"\n      v-model=\"settings.remote.QSO_LOGGING.adif_wavelog_api_key\"\n      type=\"text\"\n      class=\"form-control\"\n      :placeholder=\"$t('settings.chat.adifloggingwavelogapi_placeholder')\"\n      @change=\"onChange\"\n    >\n  </div>\n</template>\n\n"
  },
  {
    "path": "freedata_gui/src/components/settings_exp.vue",
    "content": "<script>\nimport { settingsStore as settings, onChange } from \"../store/settingsStore.js\";\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\n\n// Set the active Pinia store\nsetActivePinia(pinia);\n\n// Export methods and computed properties for use in the template\nexport default {\n  computed: {\n    settings() {\n      return settings;\n    },\n  },\n  methods: {\n    onChange,\n  },\n};\n</script>\n\n<template>\n  <!-- Top Warning Area -->\n  <div\n    class=\"alert alert-danger\"\n    role=\"alert\"\n  >\n    <strong><i class=\"bi bi-shield-exclamation me-1\" /></strong> {{ $t('settings.exp.introduction') }}\n  </div>\n\n\n  <div\n    class=\"alert alert-info d-none\"\n    role=\"alert\"\n  >\n    <strong><i class=\"bi bi-info-circle me-1\" /></strong>{{ $t('settings.exp.info') }}\n  </div>\n\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n\n      {{ $t('settings.exp.enableringbuffer') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.exp.enableringbuffer_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <label class=\"input-group-text w-50\">\n      <div class=\"form-check form-switch form-check-inline\">\n        <input\n          id=\"enable_ring_bufferSwitch\"\n          v-model=\"settings.remote.EXP.enable_ring_buffer\"\n          class=\"form-check-input\"\n          type=\"checkbox\"\n          @change=\"onChange\"\n        >\n        <label\n          class=\"form-check-label\"\n          for=\"enable_ring_bufferSwitch\"\n        >{{ $t('settings.enable') }}</label>\n      </div>\n    </label>\n  </div>\n\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n\n      {{ $t('settings.exp.enablevhf') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.exp.enablevhf_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <label class=\"input-group-text w-50\">\n      <div class=\"form-check form-switch form-check-inline\">\n        <input\n          id=\"enable_vhfSwitch\"\n          v-model=\"settings.remote.EXP.enable_vhf\"\n          class=\"form-check-input\"\n          type=\"checkbox\"\n          @change=\"onChange\"\n        >\n        <label\n          class=\"form-check-label\"\n          for=\"enable_vhfSwitch\"\n        >{{ $t('settings.enable') }}</label>\n      </div>\n    </label>\n  </div>\n\n</template>\n\n"
  },
  {
    "path": "freedata_gui/src/components/settings_flrig.vue",
    "content": "<template>\n\n     <!-- Flrig host -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.radio.flrighost') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.radio.flrighost_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n\n    <input\n      id=\"flrighost\"\n      v-model=\"settings.remote.FLRIG.ip\"\n      type=\"text\"\n      class=\"form-control\"\n      placeholder=\"127.0.0.1\"\n      aria-label=\"flrig host\"\n      @change=\"onChange\"\n    >\n  </div>\n     <!-- Flrig port -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.radio.flrigport') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.radio.flrigport_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n\n    <input\n      id=\"flrigport\"\n      v-model.number=\"settings.remote.FLRIG.port\"\n      type=\"number\"\n      class=\"form-control\"\n      placeholder=\"12345\"\n      aria-label=\"flrig port\"\n      @change=\"onChange\"\n    >\n  </div>\n\n\n</template>\n\n\n<script setup>\nimport { settingsStore as settings, onChange } from \"../store/settingsStore.js\";\nimport { useSerialStore } from \"../store/serialStore\";\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\n\nsetActivePinia(pinia);\nconst serialStore = useSerialStore(pinia);\n</script>"
  },
  {
    "path": "freedata_gui/src/components/settings_gui.vue",
    "content": "<template>\n  <!-- Top Info Area for GUI Settings -->\n  <div\n    class=\"alert alert-info\"\n    role=\"alert\"\n  >\n    <strong><i class=\"bi bi-gear-wide-connected me-1\" /></strong> {{ $t('settings.gui.introduction') }}\n  </div>\n\n\n\n  <!-- Language Selector -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <span class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.gui.selectlanguage') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.gui.selectlanguage_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </span>\n    <select\n      v-model=\"settings.local.language\"\n      class=\"form-select form-select-sm w-50\"\n      @change=\"updateLanguage\"\n    >\n      <option\n        v-for=\"lang in availableLanguages\"\n        :key=\"lang.iso\"\n        :value=\"lang.iso\"\n      >\n        {{ lang.iso.toUpperCase() }} - {{ lang.name }}\n      </option>\n    </select>\n  </div>\n\n  <!-- Colormode Selector -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <span class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.gui.colormode') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.gui.colormode_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </span>\n    <select\n      id=\"colormode_selector\"\n      v-model=\"settings.local.colormode\"\n      class=\"form-select form-select-sm w-50\"\n      @change=\"updateColormode\"\n    >\n      <option value=\"light\">\n        {{ $t('settings.gui.colormodelight') }}\n      </option>\n      <option value=\"dark\">\n        {{ $t('settings.gui.colormodedark') }}\n      </option>\n      <option value=\"auto\">\n        {{ $t('settings.gui.colormodeauto') }}\n      </option>\n    </select>\n  </div>\n\n  <!-- Waterfall Theme Selection -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <span class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.gui.waterfalltheme') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.gui.waterfalltheme_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </span>\n    <select\n      id=\"wftheme_selector\"\n      v-model=\"settings.local.wf_theme\"\n      class=\"form-select form-select-sm w-50\"\n      @change=\"saveSettings\"\n    >\n      <option value=\"2\">\n        {{ $t('settings.default') }}\n      </option>\n      <option value=\"0\">\n        Turbo\n      </option>\n      <option value=\"1\">\n        Fosphor\n      </option>\n      <option value=\"3\">\n        Inferno\n      </option>\n      <option value=\"4\">\n        Magma\n      </option>\n      <option value=\"5\">\n        Jet\n      </option>\n      <option value=\"6\">\n        Binary\n      </option>\n      <option value=\"7\">\n        Plasma\n      </option>\n      <option value=\"8\">\n        Rainbow\n      </option>\n      <option value=\"9\">\n        Ocean\n      </option>\n    </select>\n  </div>\n\n  <!-- Auto Launch Browser Toggle -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n\n      {{ $t('settings.gui.browserautolaunch') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.gui.browserautolaunch_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <label class=\"input-group-text w-50\">\n      <div class=\"form-check form-switch form-check-inline\">\n        <input\n          id=\"autoLaunchBrowserSwitch\"\n          v-model=\"settings.remote.GUI.auto_run_browser\"\n          class=\"form-check-input\"\n          type=\"checkbox\"\n          @change=\"onChange\"\n        >\n        <label\n          class=\"form-check-label\"\n          for=\"autoLaunchBrowserSwitch\"\n        >{{ $t('settings.enable') }}</label>\n      </div>\n    </label>\n  </div>\n</template>\n\n<script>\nimport { setColormap } from \"../js/waterfallHandler\";\nimport { settingsStore as settings, onChange } from \"../store/settingsStore.js\";\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\nimport { availableLanguages } from '../js/i18n';\nimport i18next from '../js/i18n';\nimport {applyColorMode} from '../js/freedata.js'\n\n// Set the active Pinia store\nsetActivePinia(pinia);\n\n// Function to save settings and update colormap\nfunction saveSettings() {\n  setColormap();\n}\n\nexport default {\n  data() {\n    return {\n      availableLanguages, // imported from i18next configuration\n      settings,\n    };\n  },\n  methods: {\n    saveSettings,\n    onChange,\n    updateLanguage() {\n      saveSettings();\n      // Update the language in i18next\n      i18next.changeLanguage(this.settings.local.language);\n      this.$forceUpdate();\n    },\n    updateColormode() {\n      saveSettings();\n      applyColorMode(this.settings.local.colormode);\n\n    },\n  },\n};\n</script>\n"
  },
  {
    "path": "freedata_gui/src/components/settings_hamlib.vue",
    "content": "<script setup>\nimport { settingsStore as settings, onChange } from \"../store/settingsStore.js\";\nimport { useSerialStore } from \"../store/serialStore.js\";\n\n// Pinia setup\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\nsetActivePinia(pinia);\n\nconst serialStore = useSerialStore(pinia);\n\n/*\nconst settings = ref({\n  remote: {\n    RIGCTLD: {\n      ip: '',\n      port: 0,\n      enable_vfo: false\n    },\n    RADIO: {\n      control: '',\n      model_id: 0\n    }\n  }\n});\n*/\n\n</script>\n\n<template>\n  <!-- Rigctld IP -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.radio.hamlibrigctldhost') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.radio.hamlibrigctldhost_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <input\n      id=\"rigctldIp\"\n      v-model=\"settings.remote.RIGCTLD.ip\"\n      type=\"text\"\n      class=\"form-control\"\n      :placeholder=\"$t('settings.radio.hamlibrigctldhost_placeholder')\"\n      aria-label=\"Rigctld IP\"\n      @change=\"onChange\"\n    >\n  </div>\n\n  <!-- Rigctld Port -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.radio.hamlibrigctldport') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.radio.hamlibrigctldport_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <input\n      id=\"rigctldPort\"\n      v-model.number=\"settings.remote.RIGCTLD.port\"\n      type=\"number\"\n      class=\"form-control\"\n      :placeholder=\"$t('settings.radio.hamlibrigctldport_placeholder')\"\n      aria-label=\"Rigctld Port\"\n      @change=\"onChange\"\n    >\n  </div>\n\n  <!-- Rigctld VFO Parameter -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.radio.hamlibrigctldenablevfo') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.radio.hamlibrigctldenablevfo_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <label class=\"input-group-text w-50\">\n      <div class=\"form-check form-switch form-check-inline\">\n        <input\n          id=\"enableVfoSwitch\"\n          v-model=\"settings.remote.RIGCTLD.enable_vfo\"\n          class=\"form-check-input\"\n          type=\"checkbox\"\n          @change=\"onChange\"\n        >\n        <label\n          class=\"form-check-label\"\n          for=\"enableVfoSwitch\"\n        >{{ $t('settings.enable') }}</label>\n      </div>\n    </label>\n  </div>\n\n  <hr class=\"m-2\">\n\n  <!-- Conditional Section for Rigctld Bundle -->\n  <div :class=\"settings.remote.RADIO.control == 'rigctld_bundle' ? '' : 'd-none'\">\n    <!-- Radio Model -->\n    <div class=\"input-group input-group-sm mb-1\">\n      <label class=\"input-group-text w-50 text-wrap\">\n        {{ $t('settings.radio.hamlibrigctldradiomodel') }}\n        <button\n          type=\"button\"\n          class=\"btn btn-link p-0 ms-2\"\n          data-bs-toggle=\"tooltip\"\n          :title=\"$t('settings.radio.hamlibrigctldradiomodel_help')\"\n        >\n          <i class=\"bi bi-question-circle\" />\n        </button>\n      </label>\n      <select\n        id=\"radioModelSelect\"\n        v-model.number=\"settings.remote.RADIO.model_id\"\n        class=\"form-select form-select-sm w-50\"\n        aria-label=\"Radio Model\"\n        @change=\"onChange\"\n      >\n        <!-- Your extensive list of options -->\n        <option\n          selected\n          value=\"0\"\n        >\n          -- ignore --\n        </option>\n        <option value=\"1\">\n          Hamlib Dummy\n        </option>\n        <option value=\"2\">\n          Hamlib NET rigctl\n        </option>\n        <option value=\"4\">\n          FLRig FLRig\n        </option>\n        <option value=\"5\">\n          TRXManager TRXManager 5.7.630+\n        </option>\n        <option value=\"6\">\n          Hamlib Dummy No VFO\n        </option>\n        <option value=\"29001\">ADAT www.adat.ch ADT-200A (29001)</option>\n        <option value=\"25016\">AE9RB Si570 Peaberry V1 (25016)</option>\n        <option value=\"25017\">AE9RB Si570 Peaberry V2 (25017)</option>\n        <option value=\"9\">Airspy SDR#/gpredict (9)</option>\n        <option value=\"17001\">Alinco DX-77 (17001)</option>\n        <option value=\"17002\">Alinco DX-SR8 (17002)</option>\n        <option value=\"25006\">AmQRP DDS-60 (25006)</option>\n        <option value=\"25013\">AMSAT-UK FUNcube Dongle (25013)</option>\n        <option value=\"25018\">AMSAT-UK FUNcube Dongle Pro+ (25018)</option>\n        <option value=\"37001\">AnyTone D578A (37001)</option>\n        <option value=\"5008\">AOR AR2700 (5008)</option>\n        <option value=\"5006\">AOR AR3000A (5006)</option>\n        <option value=\"5005\">AOR AR3030 (5005)</option>\n        <option value=\"5004\">AOR AR5000 (5004)</option>\n        <option value=\"5014\">AOR AR5000A (5014)</option>\n        <option value=\"5003\">AOR AR7030 (5003)</option>\n        <option value=\"5015\">AOR AR7030 Plus (5015)</option>\n        <option value=\"5002\">AOR AR8000 (5002)</option>\n        <option value=\"5001\">AOR AR8200 (5001)</option>\n        <option value=\"5013\">AOR AR8600 (5013)</option>\n        <option value=\"5016\">AOR SR2200 (5016)</option>\n        <option value=\"32001\">Barrett 2050 (32001)</option>\n        <option value=\"32003\">Barrett 4050 (32003)</option>\n        <option value=\"32002\">Barrett 950 (32002)</option>\n        <option value=\"2053\">BG2FX FX4/C/CR/L (2053)</option>\n        <option value=\"34001\">CODAN Envoy (34001)</option>\n        <option value=\"34002\">CODAN NGT (34002)</option>\n        <option value=\"25003\">Coding Technologies Digital World Traveller (25003)</option>\n        <option value=\"39001\">Commradio CTX-10 (39001)</option>\n        <option value=\"2055\">DL2MAN (tr)uSDX (2055)</option>\n        <option value=\"31002\">Dorji DRA818U (31002)</option>\n        <option value=\"31001\">Dorji DRA818V (31001)</option>\n        <option value=\"9002\">Drake R-8A (9002)</option>\n        <option value=\"9003\">Drake R-8B (9003)</option>\n        <option value=\"23003\">DTTS Microwave Society DttSP IPC (23003)</option>\n        <option value=\"23004\">DTTS Microwave Society DttSP UDP (23004)</option>\n        <option value=\"33001\">ELAD FDM-DUO (33001)</option>\n        <option value=\"2021\">Elecraft K2 (2021)</option>\n        <option value=\"2029\">Elecraft K3 (2029)</option>\n        <option value=\"2043\">Elecraft K3S (2043)</option>\n        <option value=\"2047\">Elecraft K4 (2047)</option>\n        <option value=\"2044\">Elecraft KX2 (2044)</option>\n        <option value=\"2045\">Elecraft KX3 (2045)</option>\n        <option value=\"2038\">Elecraft XG3 (2038)</option>\n        <option value=\"25001\">Elektor Elektor 3/04 (25001)</option>\n        <option value=\"25007\">Elektor Elektor SDR-USB (25007)</option>\n        <option value=\"25012\">FiFi FiFi-SDR (25012)</option>\n        <option value=\"2036\">FlexRadio 6xxx (2036)</option>\n        <option value=\"23001\">FlexRadio SDR-1000 (23001)</option>\n        <option value=\"23005\">FlexRadio SmartSDR Slice A (23005)</option>\n        <option value=\"23006\">FlexRadio SmartSDR Slice B (23006)</option>\n        <option value=\"23007\">FlexRadio SmartSDR Slice C (23007)</option>\n        <option value=\"23008\">FlexRadio SmartSDR Slice D (23008)</option>\n        <option value=\"23009\">FlexRadio SmartSDR Slice E (23009)</option>\n        <option value=\"23010\">FlexRadio SmartSDR Slice F (23010)</option>\n        <option value=\"23011\">FlexRadio SmartSDR Slice G (23011)</option>\n        <option value=\"23012\">FlexRadio SmartSDR Slice H (23012)</option>\n        <option value=\"2048\">FlexRadio/Apache PowerSDR (2048)</option>\n        <option value=\"25015\">Funkamateur FA-SDR (25015)</option>\n        <option value=\"35001\">GOMSPACE GS100 (35001)</option>\n        <option value=\"1052\">Guohe PMR-171 (1052)</option>\n        <option value=\"1051\">Guohe Q900 (1051)</option>\n        <option value=\"2046\">Hilberling PT-8000A (2046)</option>\n        <option value=\"25019\">HobbyPCB RS-HFIQ (25019)</option>\n        <option value=\"3054\">Icom IC ID-1 (3054)</option>\n        <option value=\"3002\">Icom IC-1275 (3002)</option>\n        <option value=\"3003\">Icom IC-271 (3003)</option>\n        <option value=\"3072\">Icom IC-2730 (3072)</option>\n        <option value=\"3004\">Icom IC-275 (3004)</option>\n        <option value=\"3005\">Icom IC-375 (3005)</option>\n        <option value=\"3006\">Icom IC-471 (3006)</option>\n        <option value=\"3007\">Icom IC-475 (3007)</option>\n        <option value=\"3008\">Icom IC-575 (3008)</option>\n        <option value=\"3060\">Icom IC-7000 (3060)</option>\n        <option value=\"3055\">Icom IC-703 (3055)</option>\n        <option value=\"3085\">Icom IC-705 (3085)</option>\n        <option value=\"3009\">Icom IC-706 (3009)</option>\n        <option value=\"3010\">Icom IC-706MkII (3010)</option>\n        <option value=\"3011\">Icom IC-706MkIIG (3011)</option>\n        <option value=\"3012\">Icom IC-707 (3012)</option>\n        <option value=\"3070\">Icom IC-7100 (3070)</option>\n        <option value=\"3013\">Icom IC-718 (3013)</option>\n        <option value=\"3061\">Icom IC-7200 (3061)</option>\n        <option value=\"3014\">Icom IC-725 (3014)</option>\n        <option value=\"3015\">Icom IC-726 (3015)</option>\n        <option value=\"3016\">Icom IC-728 (3016)</option>\n        <option value=\"3017\">Icom IC-729 (3017)</option>\n        <option value=\"3073\">Icom IC-7300 (3073)</option>\n        <option value=\"3019\">Icom IC-735 (3019)</option>\n        <option value=\"3020\">Icom IC-736 (3020)</option>\n        <option value=\"3021\">Icom IC-737 (3021)</option>\n        <option value=\"3022\">Icom IC-738 (3022)</option>\n        <option value=\"3067\">Icom IC-7410 (3067)</option>\n        <option value=\"3023\">Icom IC-746 (3023)</option>\n        <option value=\"3046\">Icom IC-746PRO (3046)</option>\n        <option value=\"3024\">Icom IC-751 (3024)</option>\n        <option value=\"3026\">Icom IC-756 (3026)</option>\n        <option value=\"3027\">Icom IC-756PRO (3027)</option>\n        <option value=\"3047\">Icom IC-756PROII (3047)</option>\n        <option value=\"3057\">Icom IC-756PROIII (3057)</option>\n        <option value=\"3063\">Icom IC-7600 (3063)</option>\n        <option value=\"3028\">Icom IC-761 (3028)</option>\n        <option value=\"3078\">Icom IC-7610 (3078)</option>\n        <option value=\"3029\">Icom IC-765 (3029)</option>\n        <option value=\"3062\">Icom IC-7700 (3062)</option>\n        <option value=\"3030\">Icom IC-775 (3030)</option>\n        <option value=\"3092\">Icom IC-7760 (3092)</option>\n        <option value=\"3045\">Icom IC-78 (3045)</option>\n        <option value=\"3056\">Icom IC-7800 (3056)</option>\n        <option value=\"3031\">Icom IC-781 (3031)</option>\n        <option value=\"3075\">Icom IC-7850/7851 (3075)</option>\n        <option value=\"3032\">Icom IC-820H (3032)</option>\n        <option value=\"3034\">Icom IC-821H (3034)</option>\n        <option value=\"3090\">Icom IC-905 (3090)</option>\n        <option value=\"3044\">Icom IC-910 (3044)</option>\n        <option value=\"3068\">Icom IC-9100 (3068)</option>\n        <option value=\"3065\">Icom IC-92D (3065)</option>\n        <option value=\"3035\">Icom IC-970 (3035)</option>\n        <option value=\"3081\">Icom IC-9700 (3081)</option>\n        <option value=\"3086\">Icom IC-F8101 (3086)</option>\n        <option value=\"30001\">Icom IC-M700PRO (30001)</option>\n        <option value=\"30003\">Icom IC-M710 (30003)</option>\n        <option value=\"30002\">Icom IC-M802 (30002)</option>\n        <option value=\"30004\">Icom IC-M803 (30004)</option>\n        <option value=\"4002\">Icom IC-PCR100 (4002)</option>\n        <option value=\"4001\">Icom IC-PCR1000 (4001)</option>\n        <option value=\"4003\">Icom IC-PCR1500 (4003)</option>\n        <option value=\"4004\">Icom IC-PCR2500 (4004)</option>\n        <option value=\"3036\">Icom IC-R10 (3036)</option>\n        <option value=\"3058\">Icom IC-R20 (3058)</option>\n        <option value=\"3080\">Icom IC-R30 (3080)</option>\n        <option value=\"3077\">Icom IC-R6 (3077)</option>\n        <option value=\"3040\">Icom IC-R7000 (3040)</option>\n        <option value=\"3037\">Icom IC-R71 (3037)</option>\n        <option value=\"3041\">Icom IC-R7100 (3041)</option>\n        <option value=\"3038\">Icom IC-R72 (3038)</option>\n        <option value=\"3039\">Icom IC-R75 (3039)</option>\n        <option value=\"3042\">Icom ICR-8500 (3042)</option>\n        <option value=\"3079\">Icom IC-R8600 (3079)</option>\n        <option value=\"3043\">Icom IC-R9000 (3043)</option>\n        <option value=\"3066\">Icom IC-R9500 (3066)</option>\n        <option value=\"3069\">Icom IC-RX7 (3069)</option>\n        <option value=\"3083\">Icom ID-31 (3083)</option>\n        <option value=\"3082\">Icom ID-4100 (3082)</option>\n        <option value=\"3084\">Icom ID-51 (3084)</option>\n        <option value=\"3071\">Icom ID-5100 (3071)</option>\n        <option value=\"6001\">JRC JST-145 (6001)</option>\n        <option value=\"6002\">JRC JST-245 (6002)</option>\n        <option value=\"6005\">JRC NRD-525 (6005)</option>\n        <option value=\"6006\">JRC NRD-535D (6006)</option>\n        <option value=\"6007\">JRC NRD-545 DSP (6007)</option>\n        <option value=\"18001\">Kachina 505DSP (18001)</option>\n        <option value=\"2015\">Kenwood R-5000 (2015)</option>\n        <option value=\"2033\">Kenwood TH-D72A (2033)</option>\n        <option value=\"2042\">Kenwood TH-D74 (2042)</option>\n        <option value=\"2017\">Kenwood TH-D7A (2017)</option>\n        <option value=\"2019\">Kenwood TH-F6A (2019)</option>\n        <option value=\"2020\">Kenwood TH-F7E (2020)</option>\n        <option value=\"2023\">Kenwood TH-G71 (2023)</option>\n        <option value=\"2026\">Kenwood TM-D700 (2026)</option>\n        <option value=\"2034\">Kenwood TM-D710(G) (2034)</option>\n        <option value=\"2027\">Kenwood TM-V7 (2027)</option>\n        <option value=\"2035\">Kenwood TM-V71(A) (2035)</option>\n        <option value=\"2030\">Kenwood TRC-80 (2030)</option>\n        <option value=\"2025\">Kenwood TS-140S (2025)</option>\n        <option value=\"2014\">Kenwood TS-2000 (2014)</option>\n        <option value=\"2002\">Kenwood TS-440S (2002)</option>\n        <option value=\"2003\">Kenwood TS-450S (2003)</option>\n        <option value=\"2028\">Kenwood TS-480 (2028)</option>\n        <option value=\"2001\">Kenwood TS-50S (2001)</option>\n        <option value=\"2004\">Kenwood TS-570D (2004)</option>\n        <option value=\"2016\">Kenwood TS-570S (2016)</option>\n        <option value=\"2031\">Kenwood TS-590S (2031)</option>\n        <option value=\"2037\">Kenwood TS-590SG (2037)</option>\n        <option value=\"2024\">Kenwood TS-680S (2024)</option>\n        <option value=\"2005\">Kenwood TS-690S (2005)</option>\n        <option value=\"2006\">Kenwood TS-711 (2006)</option>\n        <option value=\"2007\">Kenwood TS-790 (2007)</option>\n        <option value=\"2008\">Kenwood TS-811 (2008)</option>\n        <option value=\"2009\">Kenwood TS-850 (2009)</option>\n        <option value=\"2010\">Kenwood TS-870S (2010)</option>\n        <option value=\"2041\">Kenwood TS-890S (2041)</option>\n        <option value=\"2022\">Kenwood TS-930 (2022)</option>\n        <option value=\"2011\">Kenwood TS-940S (2011)</option>\n        <option value=\"2012\">Kenwood TS-950S (2012)</option>\n        <option value=\"2013\">Kenwood TS-950SDX (2013)</option>\n        <option value=\"2039\">Kenwood TS-990S (2039)</option>\n        <option value=\"25011\">KTH-SDR kit Si570 PIC-USB (25011)</option>\n        <option value=\"2050\">Lab599 TX-500 (2050)</option>\n        <option value=\"10004\">Lowe HF-235 (10004)</option>\n        <option value=\"1045\">M0NKA mcHF QRP (1045)</option>\n        <option value=\"2049\">Malachite DSP (2049)</option>\n        <option value=\"36001\">MDS 4710 (36001)</option>\n        <option value=\"36002\">MDS 9710 (36002)</option>\n        <option value=\"38001\">Micom Micom 2/3 (38001)</option>\n        <option value=\"3074\">Microtelecom Perseus (3074)</option>\n        <option value=\"25008\">mRS miniVNA (25008)</option>\n        <option value=\"25014\">N2ADR HiQSDR (25014)</option>\n        <option value=\"10\">N2ADR James Ahlstrom Quisk (10)</option>\n        <option value=\"8\">N3FJP ACLog (8)</option>\n        <option value=\"2040\">OpenHPSDR PiHPSDR (2040)</option>\n        <option value=\"3053\">Optoelectronics OptoScan456 (3053)</option>\n        <option value=\"3052\">Optoelectronics OptoScan535 (3052)</option>\n        <option value=\"28001\">Philips/Simoco PRM8060 (28001)</option>\n        <option value=\"2052\">QRPLabs QCX/QDX (2052)</option>\n        <option value=\"2057\">QRPLabs QMX (2057)</option>\n        <option value=\"11005\">Racal RA3702 (11005)</option>\n        <option value=\"11003\">Racal RA6790/GM (11003)</option>\n        <option value=\"8004\">Radio Shack PRO-2052 (8004)</option>\n        <option value=\"24001\">RFT EKD-500 (24001)</option>\n        <option value=\"32004\">Rhode&Schwarz 4100 (32004)</option>\n        <option value=\"27002\">Rohde&Schwarz EB200 (27002)</option>\n        <option value=\"27004\">Rohde&Schwarz EK895/6 (27004)</option>\n        <option value=\"27001\">Rohde&Schwarz ESMC (27001)</option>\n        <option value=\"27003\">Rohde&Schwarz XK2100 (27003)</option>\n        <option value=\"27005\">Rohde&Schwarz XK852 (27005)</option>\n        <option value=\"25002\">SAT-Schneider DRT1 (25002)</option>\n        <option value=\"2056\">SDR Radio SDRConsole (2056)</option>\n        <option value=\"2051\">SDRPlay SDRUno (2051)</option>\n        <option value=\"2032\">SigFox Transfox (2032)</option>\n        <option value=\"14004\">Skanti TRP 8255 S R (14004)</option>\n        <option value=\"14002\">Skanti TRP8000 (14002)</option>\n        <option value=\"25009\">SoftRock Si570 AVR-USB (25009)</option>\n        <option value=\"22001\">TAPR DSP-10 (22001)</option>\n        <option value=\"3064\">Ten-Tec Delta II (3064)</option>\n        <option value=\"3051\">Ten-Tec Omni VI Plus (3051)</option>\n        <option value=\"16003\">Ten-Tec RX-320 (16003)</option>\n        <option value=\"16012\">Ten-Tec RX-331 (16012)</option>\n        <option value=\"16004\">Ten-Tec RX-340 (16004)</option>\n        <option value=\"16005\">Ten-Tec RX-350 (16005)</option>\n        <option value=\"16007\">Ten-Tec TT-516 Argonaut V (16007)</option>\n        <option value=\"16002\">Ten-Tec TT-538 Jupiter (16002)</option>\n        <option value=\"16001\">Ten-Tec TT-550 (16001)</option>\n        <option value=\"16008\">Ten-Tec TT-565/566 Orion I/II (16008)</option>\n        <option value=\"16009\">Ten-Tec TT-585 Paragon (16009)</option>\n        <option value=\"16011\">Ten-Tec TT-588 Omni VII (16011)</option>\n        <option value=\"16013\">Ten-Tec TT-599 Eagle (16013)</option>\n        <option value=\"2054\">Thetis  (2054)</option>\n        <option value=\"8002\">Uniden BC245xlt (8002)</option>\n        <option value=\"8006\">Uniden BC250D (8006)</option>\n        <option value=\"8001\">Uniden BC780xlt (8001)</option>\n        <option value=\"8003\">Uniden BC895xlt (8003)</option>\n        <option value=\"8012\">Uniden BC898T (8012)</option>\n        <option value=\"8010\">Uniden BCD-396T (8010)</option>\n        <option value=\"8011\">Uniden BCD-996T (8011)</option>\n        <option value=\"1033\">Vertex Standard VX-1700 (1033)</option>\n        <option value=\"12004\">Watkins-Johnson WJ-8888 (12004)</option>\n        <option value=\"15009\">Winradio WR-G313 (15009)</option>\n        <option value=\"3088\">Xiegu G90 (3088)</option>\n        <option value=\"3076\">Xiegu X108G (3076)</option>\n        <option value=\"3089\">Xiegu X5105 (3089)</option>\n        <option value=\"3087\">Xiegu X6100 (3087)</option>\n        <option value=\"3091\">Xiegu X6200 (3091)</option>\n        <option value=\"1017\">Yaesu FRG-100 (1017)</option>\n        <option value=\"1019\">Yaesu FRG-8800 (1019)</option>\n        <option value=\"1018\">Yaesu FRG-9600 (1018)</option>\n        <option value=\"1021\">Yaesu FT-100 (1021)</option>\n        <option value=\"1002\">Yaesu FT-1000 (1002)</option>\n        <option value=\"1003\">Yaesu FT-1000D (1003)</option>\n        <option value=\"1024\">Yaesu FT-1000MP (1024)</option>\n        <option value=\"1029\">Yaesu FT-2000 (1029)</option>\n        <option value=\"1027\">Yaesu FT-450 (1027)</option>\n        <option value=\"1046\">Yaesu FT-450D (1046)</option>\n        <option value=\"1039\">Yaesu FT-600 (1039)</option>\n        <option value=\"1047\">Yaesu FT-650 (1047)</option>\n        <option value=\"1049\">Yaesu FT-710 (1049)</option>\n        <option value=\"1010\">Yaesu FT-736R (1010)</option>\n        <option value=\"1005\">Yaesu FT-747GX (1005)</option>\n        <option value=\"1006\">Yaesu FT-757GX (1006)</option>\n        <option value=\"1007\">Yaesu FT-757GXII (1007)</option>\n        <option value=\"1009\">Yaesu FT-767GX (1009)</option>\n        <option value=\"1020\">Yaesu FT-817 (1020)</option>\n        <option value=\"1041\">Yaesu FT-818 (1041)</option>\n        <option value=\"1011\">Yaesu FT-840 (1011)</option>\n        <option value=\"1001\">Yaesu FT-847 (1001)</option>\n        <option value=\"1038\">Yaesu FT-847UNI (1038)</option>\n        <option value=\"1022\">Yaesu FT-857 (1022)</option>\n        <option value=\"1015\">Yaesu FT-890 (1015)</option>\n        <option value=\"1036\">Yaesu FT-891 (1036)</option>\n        <option value=\"1023\">Yaesu FT-897 (1023)</option>\n        <option value=\"1043\">Yaesu FT-897D (1043)</option>\n        <option value=\"1013\">Yaesu FT-900 (1013)</option>\n        <option value=\"1014\">Yaesu FT-920 (1014)</option>\n        <option value=\"1028\">Yaesu FT-950 (1028)</option>\n        <option value=\"1031\">Yaesu FT-980 (1031)</option>\n        <option value=\"1016\">Yaesu FT-990 (1016)</option>\n        <option value=\"1048\">Yaesu FT-990 Old Rom (1048)</option>\n        <option value=\"1035\">Yaesu FT-991 (1035)</option>\n        <option value=\"1042\">Yaesu FTDX-10 (1042)</option>\n        <option value=\"1040\">Yaesu FTDX-101D (1040)</option>\n        <option value=\"1044\">Yaesu FTDX-101MP (1044)</option>\n        <option value=\"1034\">Yaesu FTDX-1200 (1034)</option>\n        <option value=\"1037\">Yaesu FTDX-3000 (1037)</option>\n        <option value=\"1032\">Yaesu FTDX-5000 (1032)</option>\n        <option value=\"1030\">Yaesu FTDX-9000 (1030)</option>\n        <option value=\"1050\">Yaesu FTDX-9000 Old (1050)</option>\n        <option value=\"1025\">Yaesu MARK-V Field FT-1000MP (1025)</option>\n        <option value=\"1004\">Yaesu MARK-V FT-1000MP (1004)</option>\n        <option value=\"1026\">Yaesu VR-5000 (1026)</option>\n      </select>\n    </div>\n\n    <!-- Radio Port -->\n    <div class=\"input-group input-group-sm mb-1\">\n      <label class=\"input-group-text w-50 text-wrap\">\n        {{ $t('settings.radio.hamlibrigctldcomport') }}\n        <button\n          type=\"button\"\n          class=\"btn btn-link p-0 ms-2\"\n          data-bs-toggle=\"tooltip\"\n          :title=\"$t('settings.radio.hamlibrigctldcomport_help')\"\n        >\n          <i class=\"bi bi-question-circle\" />\n        </button>\n      </label>\n      <select\n        v-model=\"settings.remote.RADIO.serial_port\"\n        class=\"form-select form-select-sm w-50\"\n        @change=\"onChange\"\n      >\n        <option\n          v-for=\"device in serialStore.serialDevices\"\n          :key=\"device.port\"\n          :value=\"device.port\"\n        >\n          {{ device.description }}\n        </option>\n      </select>\n    </div>\n\n    <!-- Radio Custom Port -->\n    <div class=\"input-group input-group-sm mb-1\">\n      <label class=\"input-group-text w-50 text-wrap\">\n        {{ $t('settings.radio.hamlibrigctldcustomcomport') }}\n        <button\n          type=\"button\"\n          class=\"btn btn-link p-0 ms-2\"\n          data-bs-toggle=\"tooltip\"\n          :title=\"$t('settings.radio.hamlibrigctldcustomcomport_help')\"\n        >\n          <i class=\"bi bi-question-circle\" />\n        </button>\n      </label>\n\n      <input\n        id=\"rigctldIp\"\n        v-model=\"settings.remote.RADIO.serial_port\"\n        type=\"text\"\n        class=\"form-control\"\n        placeholder=\"settings.remote.RADIO.serial_port.port\"\n        aria-label=\"Rigctld IP\"\n        @change=\"onChange\"\n      >\n    </div>\n\n    <!-- Serial Speed -->\n    <div class=\"input-group input-group-sm mb-1\">\n      <label class=\"input-group-text w-50 text-wrap\">\n        {{ $t('settings.radio.hamlibrigctldserialspeed') }}\n        <button\n          type=\"button\"\n          class=\"btn btn-link p-0 ms-2\"\n          data-bs-toggle=\"tooltip\"\n          :title=\"$t('settings.radio.hamlibrigctldserialspeed_help')\"\n        >\n          <i class=\"bi bi-question-circle\" />\n        </button>\n      </label>\n      <select\n        id=\"serialSpeedSelect\"\n        v-model.number=\"settings.remote.RADIO.serial_speed\"\n        class=\"form-select form-select-sm w-50\"\n        @change=\"onChange\"\n      >\n        <option\n          selected\n          value=\"0\"\n        >\n          -- ignore --\n        </option>\n        <option value=\"1200\">\n          1200\n        </option>\n        <option value=\"2400\">\n          2400\n        </option>\n        <option value=\"4800\">\n          4800\n        </option>\n        <option value=\"9600\">\n          9600\n        </option>\n        <option value=\"19200\">\n          19200\n        </option>\n        <option value=\"38400\">\n          38400\n        </option>\n        <option value=\"57600\">\n          57600\n        </option>\n        <option value=\"115200\">\n          115200\n        </option>\n      </select>\n    </div>\n\n    <!-- Data Bits -->\n    <div class=\"input-group input-group-sm mb-1\">\n      <label class=\"input-group-text w-50 text-wrap\">\n        {{ $t('settings.radio.hamlibrigctlddatabits') }}\n        <button\n          type=\"button\"\n          class=\"btn btn-link p-0 ms-2\"\n          data-bs-toggle=\"tooltip\"\n          :title=\"$t('settings.radio.hamlibrigctlddatabits_help')\"\n        >\n          <i class=\"bi bi-question-circle\" />\n        </button>\n      </label>\n      <select\n        id=\"dataBitsSelect\"\n        v-model.number=\"settings.remote.RADIO.data_bits\"\n        class=\"form-select form-select-sm w-50\"\n        @change=\"onChange\"\n      >\n        <option\n          selected\n          value=\"0\"\n        >\n          -- ignore --\n        </option>\n        <option value=\"7\">\n          7\n        </option>\n        <option value=\"8\">\n          8\n        </option>\n      </select>\n    </div>\n\n    <!-- Stop Bits -->\n    <div class=\"input-group input-group-sm mb-1\">\n      <label class=\"input-group-text w-50 text-wrap\">\n        {{ $t('settings.radio.hamlibrigctldstopbits') }}\n        <button\n          type=\"button\"\n          class=\"btn btn-link p-0 ms-2\"\n          data-bs-toggle=\"tooltip\"\n          :title=\"$t('settings.radio.hamlibrigctldstopbits_help')\"\n        >\n          <i class=\"bi bi-question-circle\" />\n        </button>\n      </label>\n      <select\n        id=\"stopBitsSelect\"\n        v-model.number=\"settings.remote.RADIO.stop_bits\"\n        class=\"form-select form-select-sm w-50\"\n        @change=\"onChange\"\n      >\n        <option\n          selected\n          value=\"0\"\n        >\n          -- ignore --\n        </option>\n        <option value=\"1\">\n          1\n        </option>\n        <option value=\"2\">\n          2\n        </option>\n      </select>\n    </div>\n\n    <!-- Serial Handshake -->\n    <div class=\"input-group input-group-sm mb-1\">\n      <label class=\"input-group-text w-50 text-wrap\">\n        {{ $t('settings.radio.hamlibrigctldhandshake') }}\n        <button\n          type=\"button\"\n          class=\"btn btn-link p-0 ms-2\"\n          data-bs-toggle=\"tooltip\"\n          :title=\"$t('settings.radio.hamlibrigctldhandshake_help')\"\n        >\n          <i class=\"bi bi-question-circle\" />\n        </button>\n      </label>\n      <select\n        id=\"serialHandshakeSelect\"\n        v-model=\"settings.remote.RADIO.serial_handshake\"\n        class=\"form-select form-select-sm w-50\"\n        @change=\"onChange\"\n      >\n        <option\n          selected\n          value=\"ignore\"\n        >\n          -- ignore --\n        </option>\n        <option value=\"None\">\n          None (Default)\n        </option>\n        <!-- Add more options if needed -->\n      </select>\n    </div>\n\n    <!-- PTT Device Port -->\n    <div class=\"input-group input-group-sm mb-1\">\n      <label class=\"input-group-text w-50 text-wrap\">\n        {{ $t('settings.radio.hamlibrigctldpttdeviceport') }}\n        <button\n          type=\"button\"\n          class=\"btn btn-link p-0 ms-2\"\n          data-bs-toggle=\"tooltip\"\n          :title=\"$t('settings.radio.hamlibrigctldpttdeviceport_help')\"\n        >\n          <i class=\"bi bi-question-circle\" />\n        </button>\n      </label>\n      <select\n        v-model=\"settings.remote.RADIO.ptt_port\"\n        class=\"form-select form-select-sm w-50\"\n        @change=\"onChange\"\n      >\n        <option\n          v-for=\"device in serialStore.serialDevices\"\n          :key=\"device.port\"\n          :value=\"device.port\"\n        >\n          {{ device.description }}\n        </option>\n      </select>\n    </div>\n\n    <!-- PTT Type -->\n    <div class=\"input-group input-group-sm mb-1\">\n      <label class=\"input-group-text w-50 text-wrap\">\n        {{ $t('settings.radio.hamlibrigctldptttype') }}\n        <button\n          type=\"button\"\n          class=\"btn btn-link p-0 ms-2\"\n          data-bs-toggle=\"tooltip\"\n          :title=\"$t('settings.radio.hamlibrigctldptttype_help')\"\n        >\n          <i class=\"bi bi-question-circle\" />\n        </button>\n      </label>\n      <select\n        id=\"pttTypeSelect\"\n        v-model=\"settings.remote.RADIO.ptt_type\"\n        class=\"form-select form-select-sm w-50\"\n        @change=\"onChange\"\n      >\n        <option\n          selected\n          value=\"ignore\"\n        >\n          -- ignore --\n        </option>\n        <option value=\"NONE\">\n          NONE\n        </option>\n        <option value=\"RIG\">\n          RIG\n        </option>\n        <option value=\"USB\">\n          USB\n        </option>\n        <option value=\"RTS\">\n          Serial RTS\n        </option>\n        <option value=\"PARALLEL\">\n          Rig PARALLEL\n        </option>\n        <option value=\"MICDATA\">\n          Rig MICDATA\n        </option>\n        <option value=\"CM108\">\n          Rig CM108\n        </option>\n      </select>\n    </div>\n\n        <!-- PTT MODE -->\n    <div class=\"input-group input-group-sm mb-1\">\n      <label class=\"input-group-text w-50 text-wrap\">\n        {{ $t('settings.radio.hamlibrigctldpttmode') }}\n        <button\n          type=\"button\"\n          class=\"btn btn-link p-0 ms-2\"\n          data-bs-toggle=\"tooltip\"\n          :title=\"$t('settings.radio.hamlibrigctldpttmode')\"\n        >\n          <i class=\"bi bi-question-circle\" />\n        </button>\n      </label>\n      <select\n        id=\"dtrSelect\"\n        v-model=\"settings.remote.RADIO.ptt_mode\"\n        class=\"form-select form-select-sm w-50\"\n        @change=\"onChange\"\n      >\n        <option\n          selected\n          value=\"ignore\"\n        >\n          -- ignore --\n        </option>\n        <option value=\"TX\">\n          TX\n        </option>\n        <option value=\"TX_MIC\">\n          TX_MIC\n        </option>\n        <option value=\"TX_DATA\">\n          TX_DATA\n        </option>\n      </select>\n    </div>\n\n\n\n\n    <!-- DCD -->\n    <div class=\"input-group input-group-sm mb-1\">\n      <label class=\"input-group-text w-50 text-wrap\">\n        {{ $t('settings.radio.hamlibrigctlddcd') }}\n        <button\n          type=\"button\"\n          class=\"btn btn-link p-0 ms-2\"\n          data-bs-toggle=\"tooltip\"\n          :title=\"$t('settings.radio.hamlibrigctlddcd_help')\"\n        >\n          <i class=\"bi bi-question-circle\" />\n        </button>\n      </label>\n      <select\n        id=\"dcdSelect\"\n        v-model=\"settings.remote.RADIO.serial_dcd\"\n        class=\"form-select form-select-sm w-50\"\n        @change=\"onChange\"\n      >\n        <option\n          selected\n          value=\"ignore\"\n        >\n          -- ignore --\n        </option>\n        <option value=\"NONE\">\n          NONE\n        </option>\n        <option value=\"RIG\">\n          RIG/CAT\n        </option>\n        <option value=\"DSR\">\n          DSR\n        </option>\n        <option value=\"CTS\">\n          CTS\n        </option>\n        <option value=\"CD\">\n          CD\n        </option>\n        <option value=\"PARALLEL\">\n          PARALLEL\n        </option>\n      </select>\n    </div>\n\n    <!-- DTR -->\n    <div class=\"input-group input-group-sm mb-1\">\n      <label class=\"input-group-text w-50 text-wrap\">\n        {{ $t('settings.radio.hamlibrigctlddtr') }}\n        <button\n          type=\"button\"\n          class=\"btn btn-link p-0 ms-2\"\n          data-bs-toggle=\"tooltip\"\n          :title=\"$t('settings.radio.hamlibrigctlddtr_help')\"\n        >\n          <i class=\"bi bi-question-circle\" />\n        </button>\n      </label>\n      <select\n        id=\"dtrSelect\"\n        v-model=\"settings.remote.RADIO.serial_dtr\"\n        class=\"form-select form-select-sm w-50\"\n        @change=\"onChange\"\n      >\n        <option\n          selected\n          value=\"ignore\"\n        >\n          -- ignore --\n        </option>\n        <option value=\"OFF\">\n          OFF\n        </option>\n        <option value=\"ON\">\n          ON\n        </option>\n      </select>\n    </div>\n\n        <!-- RTS -->\n    <div class=\"input-group input-group-sm mb-1\">\n      <label class=\"input-group-text w-50 text-wrap\">\n        {{ $t('settings.radio.hamlibrigctldrts') }}\n        <button\n          type=\"button\"\n          class=\"btn btn-link p-0 ms-2\"\n          data-bs-toggle=\"tooltip\"\n          :title=\"$t('settings.radio.hamlibrigctldrts_help')\"\n        >\n          <i class=\"bi bi-question-circle\" />\n        </button>\n      </label>\n      <select\n        id=\"rtsSelect\"\n        v-model=\"settings.remote.RADIO.serial_rts\"\n        class=\"form-select form-select-sm w-50\"\n        @change=\"onChange\"\n      >\n        <option\n          selected\n          value=\"ignore\"\n        >\n          -- ignore --\n        </option>\n        <option value=\"OFF\">\n          OFF\n        </option>\n        <option value=\"ON\">\n          ON\n        </option>\n      </select>\n    </div>\n\n    <!-- Rigctld Command -->\n    <div class=\"input-group input-group-sm mb-1\">\n      <label class=\"input-group-text w-50 text-wrap\">\n        {{ $t('settings.radio.hamlibrigctldcommand') }}\n        <button\n          type=\"button\"\n          class=\"btn btn-link p-0 ms-2\"\n          data-bs-toggle=\"tooltip\"\n          :title=\"$t('settings.radio.hamlibrigctldcommand_help')\"\n        >\n          <i class=\"bi bi-question-circle\" />\n        </button>\n      </label>\n      <input\n        id=\"rigctldCommand\"\n        type=\"text\"\n        class=\"form-control\"\n        aria-label=\"Rigctld Command\"\n        disabled\n        :placeholder=\"$t('settings.radio.hamlibrigctldcommand_placeholder')\"\n      >\n      <button\n        id=\"btnHamlibCopyCommand\"\n        class=\"btn btn-outline-secondary\"\n        type=\"button\"\n      >\n        <i\n          id=\"btnHamlibCopyCommandBi\"\n          class=\"bi bi-clipboard\"\n        />\n      </button>\n    </div>\n\n    <!-- Rigctld Custom Arguments -->\n    <div class=\"input-group input-group-sm mb-1\">\n      <label class=\"input-group-text w-50 text-wrap\">\n        {{ $t('settings.radio.hamlibrigctldcustomarguments') }}\n        <button\n          type=\"button\"\n          class=\"btn btn-link p-0 ms-2\"\n          data-bs-toggle=\"tooltip\"\n          :title=\"$t('settings.radio.hamlibrigctldcustomarguments_help')\"\n        >\n          <i class=\"bi bi-question-circle\" />\n        </button>\n      </label>\n      <input\n        id=\"rigctldCustomArgs\"\n        v-model=\"settings.remote.RIGCTLD.arguments\"\n        type=\"text\"\n        class=\"form-control\"\n        :placeholder=\"$t('settings.radio.hamlibrigctldcustomarguments_placeholder')\"\n        aria-label=\"Rigctld Custom Arguments\"\n        @change=\"onChange\"\n      >\n    </div>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/settings_modem.vue",
    "content": "<script setup>\n\nimport { settingsStore as settings, onChange } from \"../store/settingsStore.js\";\n\n\n// Pinia setup\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\nsetActivePinia(pinia);\n\n\nimport { startModem, stopModem } from \"../js/api.js\";\n\nimport { useAudioStore } from \"../store/audioStore\";\nconst audioStore = useAudioStore(pinia);\n\n\nfunction reloadModem(){\n  stopModem();\n  setTimeout(startModem, 5000); // Executes startModem after 5000 milliseconds as server needs to shutdown first\n}\n\n</script>\n\n<template>\n  <!-- Top Info Area for Modem and Audio Settings -->\n  <div\n    class=\"alert alert-info\"\n    role=\"alert\"\n  >\n    <strong><i class=\"bi bi-gear-wide-connected me-1\" /></strong>{{ $t('settings.modem.introduction') }}\n  </div>\n\n  <div\n    class=\"alert alert-light\"\n    role=\"alert\"\n  >\n    <span class=\"text-danger\">{{ $t('settings.modem.serverrestart_notification') }}</span>\n  </div>\n\n  <!-- Start and Stop Modem Buttons -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n\n      {{ $t('settings.modem.restartserver') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.modem.restartserver_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <div class=\"w-50 d-flex justify-content-between\">\n      <button\n        type=\"button\"\n        class=\"btn btn-outline-secondary btn-sm w-100 me-1\"\n        data-bs-toggle=\"tooltip\"\n        title=\"Start the Modem\"\n        @click=\"reloadModem\"\n      >\n        <i class=\"bi bi-arrow-clockwise\" />\n        {{ $t('settings.reload') }}\n      </button>\n    </div>\n  </div>\n  <!-- Modem Port -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap text-danger\">\n      {{ $t('settings.modem.modemport') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.modem.modemport_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <input\n      id=\"modem_port\"\n      v-model.number=\"settings.remote.NETWORK.modemport\"\n      type=\"number\"\n      class=\"form-control\"\n      placeholder=\"Enter modem port\"\n      maxlength=\"5\"\n      max=\"65534\"\n      min=\"1025\"\n      @change=\"onChange\"\n    >\n  </div>\n\n  <!-- Modem Host -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap text-danger\">\n      {{ $t('settings.modem.modemhost') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.modem.modemhost_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <select\n      id=\"modem_host\"\n      v-model=\"settings.remote.NETWORK.modemaddress\"\n      class=\"form-select form-select-sm w-50\"\n      @change=\"onChange\"\n    >\n      <option value=\"127.0.0.1\">\n        127.0.0.1 (Local operation)\n      </option>\n      <option value=\"localhost\">\n        localhost (Local operation)\n      </option>\n      <option value=\"0.0.0.0\">\n        0.0.0.0 (Remote operation)\n      </option>\n    </select>\n  </div>\n\n  <!-- Audio Input Device -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.modem.audioinputdevice') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.modem.audioinputdevice_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <select\n      v-model=\"settings.remote.AUDIO.input_device\"\n      class=\"form-select form-select-sm w-50\"\n      @change=\"onChange\"\n    >\n      <option\n        v-for=\"device in audioStore.audioInputs\"\n        :key=\"device.id\"\n        :value=\"device.id\"\n      >\n        {{ device.name }} [{{ device.api }}]\n      </option>\n    </select>\n  </div>\n\n  <!-- Audio Output Device -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.modem.audiooutputdevice') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.modem.audiooutputdevice_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <select\n      v-model=\"settings.remote.AUDIO.output_device\"\n      class=\"form-select form-select-sm w-50\"\n      @change=\"onChange\"\n    >\n      <option\n        v-for=\"device in audioStore.audioOutputs\"\n        :key=\"device.id\"\n        :value=\"device.id\"\n      >\n        {{ device.name }} [{{ device.api }}]\n      </option>\n    </select>\n  </div>\n\n  <!-- RX Audio Level -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.modem.rxaudiolevel') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.modem.rxaudiolevel_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <div class=\"input-group-text w-25\">\n      {{ settings.remote.AUDIO.rx_audio_level }}\n    </div>\n    <div class=\"w-25\">\n      <input\n        id=\"audioLevelRX\"\n        v-model.number=\"settings.remote.AUDIO.rx_audio_level\"\n        type=\"range\"\n        class=\"form-range\"\n        min=\"-30\"\n        max=\"20\"\n        step=\"1\"\n        @change=\"onChange\"\n      >\n    </div>\n  </div>\n\n  <!-- TX Audio Level -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.modem.txaudiolevel') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.modem.txaudiolevel_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <div class=\"input-group-text w-25\">\n      {{ settings.remote.AUDIO.tx_audio_level }}\n    </div>\n    <div class=\"w-25\">\n      <input\n        id=\"audioLevelTX\"\n        v-model.number=\"settings.remote.AUDIO.tx_audio_level\"\n        type=\"range\"\n        class=\"form-range\"\n        min=\"-30\"\n        max=\"20\"\n        step=\"1\"\n        @change=\"onChange\"\n      >\n    </div>\n  </div>\n\n<!-- RX Audio Auto Adjust -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.modem.enablerxautoadjust') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.modem.enablerxautoadjust_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <label class=\"input-group-text w-50\">\n      <div class=\"form-check form-switch form-check-inline\">\n        <input\n          id=\"enableRXAutoAudioSwitch\"\n          v-model=\"settings.remote.AUDIO.rx_auto_audio_level\"\n          class=\"form-check-input\"\n          type=\"checkbox\"\n          @change=\"onChange\"\n        >\n        <label\n          class=\"form-check-label\"\n          for=\"enableRXAutoAudioSwitch\"\n        >{{ $t('settings.enable') }}</label>\n      </div>\n    </label>\n  </div>\n\n<!-- TX Audio Auto Adjust -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.modem.enabletxautoadjust') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.modem.enabletxautoadjust_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <label class=\"input-group-text w-50\">\n      <div class=\"form-check form-switch form-check-inline\">\n        <input\n          id=\"enableTXAutoAudioSwitch\"\n          v-model=\"settings.remote.AUDIO.tx_auto_audio_level\"\n          class=\"form-check-input\"\n          type=\"checkbox\"\n          @change=\"onChange\"\n        >\n        <label\n          class=\"form-check-label\"\n          for=\"enableTXAutoAudioSwitch\"\n        >{{ $t('settings.enable') }}</label>\n      </div>\n    </label>\n  </div>\n\n  <!-- TX Delay -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.modem.txdelay') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.modem.txdelay_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <select\n      id=\"tx_delay\"\n      v-model.number=\"settings.remote.MODEM.tx_delay\"\n      class=\"form-select form-select-sm w-50\"\n      @change=\"onChange\"\n    >\n      <option value=\"0\">\n        0\n      </option>\n      <option value=\"50\">\n        50\n      </option>\n      <option value=\"100\">\n        100\n      </option>\n      <option value=\"150\">\n        150\n      </option>\n      <option value=\"200\">\n        200\n      </option>\n      <option value=\"250\">\n        250\n      </option>\n      <option value=\"300\">\n        300\n      </option>\n      <option value=\"350\">\n        350\n      </option>\n      <option value=\"400\">\n        400\n      </option>\n      <option value=\"450\">\n        450\n      </option>\n      <option value=\"500\">\n        500\n      </option>\n      <option value=\"550\">\n        550\n      </option>\n      <option value=\"600\">\n        600\n      </option>\n      <option value=\"650\">\n        650\n      </option>\n      <option value=\"700\">\n        700\n      </option>\n      <option value=\"750\">\n        750\n      </option>\n      <option value=\"800\">\n        800\n      </option>\n      <option value=\"850\">\n        850\n      </option>\n      <option value=\"900\">\n        900\n      </option>\n      <option value=\"950\">\n        950\n      </option>\n      <option value=\"1000\">\n        1000\n      </option>\n    </select>\n  </div>\n\n  <!-- Maximum Used Bandwidth -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.modem.maximumbandwidth') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.modem.maximumbandwidth_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <select\n      id=\"maximum_bandwidth\"\n      v-model.number=\"settings.remote.MODEM.maximum_bandwidth\"\n      class=\"form-select form-select-sm w-50\"\n      @change=\"onChange\"\n    >\n      <option value=\"250\">\n        250 Hz\n      </option>\n      <option value=\"500\">\n        500 Hz\n      </option>\n      <option value=\"1700\">\n        1700 Hz\n      </option>\n      <option value=\"2438\">\n        2438 Hz\n      </option>\n    </select>\n  </div>\n</template>\n\n\n"
  },
  {
    "path": "freedata_gui/src/components/settings_rigcontrol.vue",
    "content": "<template>\n  <!-- Top Info Area for Rig Control Settings -->\n  <div\n    class=\"alert alert-info\"\n    role=\"alert\"\n  >\n    <strong><i class=\"bi bi-gear-wide-connected me-1\" /></strong>{{ $t('settings.radio.introduction') }}\n  </div>\n\n  <div\n    class=\"alert alert-warning\"\n    role=\"alert\"\n  >\n    {{ $t('settings.radio.info') }}\n  </div>\n\n\n  <!-- Rig Control Selection -->\n  <div class=\"input-group mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.radio.rigcontroltype') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.radio.rigcontroltype_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <select\n      id=\"rigcontrol_radiocontrol\"\n      v-model=\"settings.remote.RADIO.control\"\n      class=\"form-select form-select-sm w-50\"\n      @change=\"onChange\"\n    >\n      <option value=\"disabled\">\n        Disabled / VOX (no rig control - use with VOX)\n      </option>\n      <option value=\"serial_ptt\">\n        Serial PTT via DTR/RTS\n      </option>\n      <option value=\"rigctld\">\n        Rigctld (external Hamlib)\n      </option>\n      <option value=\"rigctld_bundle\">\n        Rigctld (internal Hamlib)\n      </option>\n      <option value=\"flrig\">\n        flrig\n      </option>\n    </select>\n  </div>\n\n\n  <hr class=\"m-2\">\n\n  <!-- Tab Navigation -->\n  <nav>\n    <div\n      id=\"nav-tab\"\n      class=\"nav nav-tabs\"\n      role=\"tablist\"\n    >\n      <button\n        id=\"nav-hamlib-tab\"\n        class=\"nav-link active\"\n        data-bs-toggle=\"tab\"\n        data-bs-target=\"#nav-hamlib\"\n        type=\"button\"\n        role=\"tab\"\n        aria-controls=\"nav-hamlib\"\n        aria-selected=\"true\"\n      >\n        {{ $t('settings.radio.tabhamlib') }}\n      </button>\n\n      <button\n        id=\"nav-serial-tab\"\n        class=\"nav-link\"\n        data-bs-toggle=\"tab\"\n        data-bs-target=\"#nav-serial\"\n        type=\"button\"\n        role=\"tab\"\n        aria-controls=\"nav-serial\"\n        aria-selected=\"false\"\n      >\n        {{ $t('settings.radio.tabserial') }}\n      </button>\n\n      <button\n        id=\"nav-flrig-tab\"\n        class=\"nav-link\"\n        data-bs-toggle=\"tab\"\n        data-bs-target=\"#nav-flrig\"\n        type=\"button\"\n        role=\"tab\"\n        aria-controls=\"nav-flrig\"\n        aria-selected=\"false\"\n      >\n        {{ $t('settings.radio.tabflrig') }}\n      </button>\n    </div>\n  </nav>\n\n  <!-- Tab Content -->\n  <div\n    id=\"nav-tabContent\"\n    class=\"tab-content mt-2\"\n  >\n    <!-- Hamlib Settings -->\n    <div\n      id=\"nav-hamlib\"\n      class=\"tab-pane fade show active\"\n      role=\"tabpanel\"\n      aria-labelledby=\"nav-hamlib-tab\"\n      tabindex=\"0\"\n    >\n      <settings_hamlib />\n    </div>\n\n    <!-- Serial PTT Settings -->\n    <div\n      id=\"nav-serial\"\n      class=\"tab-pane fade\"\n      role=\"tabpanel\"\n      aria-labelledby=\"nav-serial-tab\"\n      tabindex=\"2\"\n    >\n      <settings_serial_ptt />\n    </div>\n\n    <!-- Flrig settings -->\n    <div\n      id=\"nav-flrig\"\n      class=\"tab-pane fade\"\n      role=\"tabpanel\"\n      aria-labelledby=\"nav-flrig-tab\"\n      tabindex=\"2\"\n    >\n      <settings_flrig />\n    </div>\n\n\n  </div>\n\n  <hr class=\"m-2\">\n</template>\n\n<script>\nimport { settingsStore as settings, onChange } from \"../store/settingsStore.js\";\nimport settings_hamlib from \"./settings_hamlib.vue\";\nimport settings_serial_ptt from \"./settings_serial_ptt.vue\";\nimport settings_flrig from \"./settings_flrig.vue\";\n\nexport default {\n  components: {\n    settings_hamlib,\n    settings_serial_ptt,\n    settings_flrig\n  },\n  computed: {\n    settings() {\n      return settings;\n    }\n  },\n  methods: {\n    onChange\n  }\n};\n</script>\n"
  },
  {
    "path": "freedata_gui/src/components/settings_screen.vue",
    "content": "\n<template>\n  <div\n    class=\"container-fluid p-2\"\n    style=\"height: calc(-48px + 100vh);\"\n  >\n    <div class=\"card text-center h-100\">\n      <div class=\"card-header\">\n        <!-- SETTINGS Nav tabs -->\n        <ul\n          class=\"nav nav-tabs card-header-tabs\"\n          role=\"tablist\"\n        >\n          <li\n            class=\"nav-item\"\n            role=\"presentation\"\n          >\n            <button\n              id=\"station-tab\"\n              class=\"nav-link active show\"\n              data-bs-toggle=\"tab\"\n              data-bs-target=\"#station\"\n              type=\"button\"\n              role=\"tab\"\n              aria-controls=\"station\"\n              aria-selected=\"true\"\n            >\n              {{ $t('settings.tabstation') }}\n            </button>\n          </li>\n          <li\n            class=\"nav-item\"\n            role=\"presentation\"\n          >\n            <button\n              id=\"gui-tab\"\n              class=\"nav-link\"\n              data-bs-toggle=\"tab\"\n              data-bs-target=\"#gui\"\n              type=\"button\"\n              role=\"tab\"\n              aria-controls=\"gui\"\n              aria-selected=\"false\"\n            >\n              {{ $t('settings.tabgui') }}\n            </button>\n          </li>\n          <li\n            class=\"nav-item\"\n            role=\"presentation\"\n          >\n            <button\n              id=\"chat-tab\"\n              class=\"nav-link\"\n              data-bs-toggle=\"tab\"\n              data-bs-target=\"#chat\"\n              type=\"button\"\n              role=\"tab\"\n              aria-controls=\"chat\"\n              aria-selected=\"false\"\n            >\n              {{ $t('settings.tabchat') }}\n            </button>\n          </li>\n          <li\n            class=\"nav-item\"\n            role=\"presentation\"\n          >\n            <button\n              id=\"rigcontrol-tab\"\n              class=\"nav-link\"\n              data-bs-toggle=\"tab\"\n              data-bs-target=\"#rigcontrol\"\n              type=\"button\"\n              role=\"tab\"\n              aria-controls=\"rigcontrol\"\n              aria-selected=\"false\"\n            >\n              {{ $t('settings.tabradiocontrol') }}\n            </button>\n          </li>\n          <li\n            class=\"nav-item\"\n            role=\"presentation\"\n          >\n            <button\n              id=\"modem-tab\"\n              class=\"nav-link\"\n              data-bs-toggle=\"tab\"\n              data-bs-target=\"#modem\"\n              type=\"button\"\n              role=\"tab\"\n              aria-controls=\"modem\"\n              aria-selected=\"false\"\n            >\n              {{ $t('settings.tabmodem') }}\n            </button>\n          </li>\n          <li\n            class=\"nav-item\"\n            role=\"presentation\"\n          >\n            <button\n              id=\"web-tab\"\n              class=\"nav-link\"\n              data-bs-toggle=\"tab\"\n              data-bs-target=\"#web\"\n              type=\"button\"\n              role=\"tab\"\n              aria-controls=\"web\"\n              aria-selected=\"false\"\n            >\n              {{ $t('settings.tabweb') }}\n            </button>\n          </li>\n          <li\n            class=\"nav-item\"\n            role=\"presentation\"\n          >\n            <button\n              id=\"experiments-tab\"\n              class=\"nav-link\"\n              data-bs-toggle=\"tab\"\n              data-bs-target=\"#experiments\"\n              type=\"button\"\n              role=\"tab\"\n              aria-controls=\"experiments\"\n              aria-selected=\"false\"\n            >\n              {{ $t('settings.tabexperimental') }}\n            </button>\n          </li>\n          <li\n            class=\"nav-item\"\n            role=\"presentation\"\n          >\n            <button\n              id=\"links-tab\"\n              class=\"nav-link\"\n              data-bs-toggle=\"tab\"\n              data-bs-target=\"#url\"\n              type=\"button\"\n              role=\"tab\"\n              aria-controls=\"url\"\n              aria-selected=\"false\"\n            >\n              {{ $t('settings.tablinks') }}\n            </button>\n          </li>\n        </ul>\n      </div>\n      <div\n        class=\"card-body p-2 overflow-auto\"\n        style=\"flex: 1 1 auto;\"\n      >\n        <!-- SETTINGS Nav Tab panes -->\n        <div class=\"tab-content\">\n          <!-- Station tab contents-->\n          <div\n            id=\"station\"\n            class=\"tab-pane fade show active\"\n            role=\"tabpanel\"\n            aria-labelledby=\"station-tab\"\n            tabindex=\"0\"\n          >\n            <settings_station />\n          </div>\n\n          <!-- GUI tab contents-->\n          <div\n            id=\"gui\"\n            class=\"tab-pane fade\"\n            role=\"tabpanel\"\n            aria-labelledby=\"gui-tab\"\n            tabindex=\"0\"\n          >\n            <settings_gui />\n          </div>\n\n          <div\n            id=\"chat\"\n            class=\"tab-pane fade\"\n            role=\"tabpanel\"\n            aria-labelledby=\"chat-tab\"\n            tabindex=\"0\"\n          >\n            <settings_chat />\n          </div>\n\n          <div\n            id=\"rigcontrol\"\n            class=\"tab-pane fade\"\n            role=\"tabpanel\"\n            aria-labelledby=\"rigcontrol-tab\"\n            tabindex=\"0\"\n          >\n            <settings_rigcontrol />\n          </div>\n\n          <div\n            id=\"modem\"\n            class=\"tab-pane fade\"\n            role=\"tabpanel\"\n            aria-labelledby=\"modem-tab\"\n            tabindex=\"0\"\n          >\n            <settings_modem />\n          </div>\n          <div\n            id=\"web\"\n            class=\"tab-pane fade\"\n            role=\"tabpanel\"\n            aria-labelledby=\"web-tab\"\n            tabindex=\"0\"\n          >\n            <settings_web />\n          </div>\n          <div\n            id=\"experiments\"\n            class=\"tab-pane fade\"\n            role=\"tabpanel\"\n            aria-labelledby=\"experiments-tab\"\n            tabindex=\"0\"\n          >\n            <settings_exp />\n          </div>\n          <div\n            id=\"url\"\n            class=\"tab-pane fade\"\n            role=\"tabpanel\"\n            aria-labelledby=\"url-tab\"\n            tabindex=\"0\"\n          >\n            <settings_url />\n          </div>\n        </div>\n      </div>\n    </div>\n  </div>\n</template>\n<script>\nimport settings_station from \"./settings_station.vue\";\nimport settings_gui from \"./settings_gui.vue\";\nimport settings_chat from \"./settings_chat.vue\";\nimport settings_rigcontrol from \"./settings_rigcontrol.vue\";\nimport settings_modem from \"./settings_modem.vue\";\nimport settings_web from \"./settings_web.vue\";\nimport settings_exp from \"./settings_exp.vue\";\nimport settings_url from \"./settings_url.vue\";\n\n\n\nexport default {\n  components: {\n    settings_station,\n    settings_gui,\n    settings_chat,\n    settings_rigcontrol,\n    settings_modem,\n    settings_web,\n    settings_exp,\n    settings_url\n  },\n};\n\n\n\n</script>"
  },
  {
    "path": "freedata_gui/src/components/settings_serial_ptt.vue",
    "content": "<template>\n  <!-- PTT COM Port Selector -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.radio.serialpttcomport') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.radio.serialpttcomport_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <select\n      v-model=\"settings.remote.RADIO.ptt_port\"\n      class=\"form-select form-select-sm w-50\"\n      @change=\"onChange\"\n    >\n      <option\n        v-for=\"device in serialStore.serialDevices\"\n        :key=\"device.port\"\n        :value=\"device.port\"\n      >\n        {{ device.description }}\n      </option>\n    </select>\n  </div>\n\n  <!-- Radio Custom Port -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.radio.serialpttcustomcomport') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.radio.serialpttcustomcomport_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n\n    <input\n      id=\"rigctldIp\"\n      v-model=\"settings.remote.RADIO.ptt_port\"\n      type=\"text\"\n      class=\"form-control\"\n      placeholder=\"settings.remote.RADIO.ptt_port.port\"\n      aria-label=\"Rigctld IP\"\n      @change=\"onChange\"\n    >\n  </div>\n  <!-- PTT via DTR Selector -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.radio.serialpttviadtr') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.radio.serialpttviadtr_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <select\n      id=\"pttDtrSelect\"\n      v-model=\"settings.remote.RADIO.serial_dtr\"\n      class=\"form-select form-select-sm w-50\"\n      @change=\"onChange\"\n    >\n      <option value=\"ignore\">\n        -- Disabled --\n      </option>\n      <option value=\"OFF\">\n        LOW\n      </option>\n      <option value=\"ON\">\n        HIGH\n      </option>\n    </select>\n  </div>\n\n  <!-- PTT via RTS Selector -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.radio.serialpttviarts') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.radio.serialpttviarts_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <select\n      id=\"pttRtsSelect\"\n      v-model=\"settings.remote.RADIO.serial_rts\"\n      class=\"form-select form-select-sm w-50\"\n      @change=\"onChange\"\n    >\n      <option value=\"ignore\">\n        -- Disabled --\n      </option>\n      <option value=\"OFF\">\n        LOW\n      </option>\n      <option value=\"ON\">\n        HIGH\n      </option>\n    </select>\n  </div>\n</template>\n\n\n<script setup>\nimport { settingsStore as settings, onChange } from \"../store/settingsStore.js\";\nimport { useSerialStore } from \"../store/serialStore\";\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\n\nsetActivePinia(pinia);\nconst serialStore = useSerialStore(pinia);\n</script>"
  },
  {
    "path": "freedata_gui/src/components/settings_station.vue",
    "content": "<template>\n  <div\n    class=\"alert alert-info\"\n    role=\"alert\"\n  >\n    <strong><i class=\"bi bi-gear-wide-connected me-1\" /></strong>{{ $t('settings.station.introduction') }}\n  </div>\n\n  <!-- Station Callsign -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <span class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.station.callsign') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.station.callsign_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </span>\n    <input\n      id=\"myCall\"\n      v-model=\"settings.remote.STATION.mycall\"\n      type=\"text\"\n      class=\"form-control\"\n      style=\"text-transform: uppercase\"\n      :placeholder=\"$t('settings.station.callsign_placeholder')\"\n      aria-label=\"Station Callsign\"\n      @change=\"validateCall\"\n    >\n  </div>\n\n  <!-- Station SSID -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <span class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.station.callsignssid') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.station.callsignssid_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </span>\n    <select\n      id=\"myCallSSID\"\n      v-model.number=\"settings.remote.STATION.myssid\"\n      class=\"form-select form-select-sm w-50\"\n      @change=\"onChange\"\n    >\n      <option value=\"0\">\n        0\n      </option>\n      <option value=\"1\">\n        1\n      </option>\n      <option value=\"2\">\n        2\n      </option>\n      <option value=\"3\">\n        3\n      </option>\n      <option value=\"4\">\n        4\n      </option>\n      <option value=\"5\">\n        5\n      </option>\n      <option value=\"6\">\n        6\n      </option>\n      <option value=\"7\">\n        7\n      </option>\n      <option value=\"8\">\n        8\n      </option>\n      <option value=\"9\">\n        9\n      </option>\n      <option value=\"10\">\n        10\n      </option>\n      <option value=\"11\">\n        11\n      </option>\n      <option value=\"12\">\n        12\n      </option>\n      <option value=\"13\">\n        13\n      </option>\n      <option value=\"14\">\n        14\n      </option>\n      <option value=\"15\">\n        15\n      </option>\n    </select>\n  </div>\n\n  <!-- Station Grid Locator -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <span class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.station.locator') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.station.locator_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </span>\n\n    <input\n  id=\"myGrid\"\n  v-model=\"settings.remote.STATION.mygrid\"\n  type=\"text\"\n  class=\"form-control\"\n  :placeholder=\"$t('settings.station.locator_placeholder')\"\n  maxlength=\"6\"\n  aria-label=\"Station Grid Locator\"\n  @change=\"checkGridsquare\"\n/>\n\n  </div>\n\n  <!-- Respond to CQ Callings -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.station.respondtocq') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.station.respondtocq_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <label class=\"input-group-text w-50\">\n      <div class=\"form-check form-switch form-check-inline\">\n        <input\n          id=\"respondCQSwitch\"\n          v-model=\"settings.remote.STATION.respond_to_cq\"\n          class=\"form-check-input\"\n          type=\"checkbox\"\n          @change=\"onChange\"\n        >\n        <label\n          class=\"form-check-label\"\n          for=\"respondCQSwitch\"\n        >{{ $t('settings.enable') }}</label>\n      </div>\n    </label>\n  </div>\n\n  <!-- Enable Callsign Blacklist -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.station.enablecallsignblacklist') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.station.enablecallsignblacklist_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <label class=\"input-group-text w-50\">\n      <div class=\"form-check form-switch form-check-inline\">\n        <input\n          id=\"respondEnableBlacklistSwitch\"\n          v-model=\"settings.remote.STATION.enable_callsign_blacklist\"\n          class=\"form-check-input\"\n          type=\"checkbox\"\n          @change=\"onChange\"\n        >\n        <label\n          class=\"form-check-label\"\n          for=\"respondEnableBlacklistSwitch\"\n        >{{ $t('settings.enable') }}</label>\n      </div>\n    </label>\n  </div>\n\n  <!-- Callsign Blacklist Textarea -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.station.callsignblacklist') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.station.callsignblacklist_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <div class=\"w-50\">\n      <div class=\"form-floating\">\n        <textarea\n          id=\"callsignBlacklistfloatingTextarea\"\n          v-model=\"settings.remote.STATION.callsign_blacklist\"\n          class=\"form-control\"\n          :placeholder=\"$t('settings.station.callsignblacklist_placeholder')\"\n          style=\"height: 150px\"\n          @change=\"onChange\"\n        />\n        <label for=\"callsignBlacklistfloatingTextarea\">{{ $t('settings.station.callsignblacklist_help') }}</label>\n      </div>\n    </div>\n  </div>\n</template>\n\n<script setup>\nimport { onMounted } from \"vue\";\nimport { settingsStore as settings, onChange, getRemote } from \"../store/settingsStore.js\";\nimport { validateCallsignWithoutSSID } from \"../js/freedata\";\nimport * as bootstrap from \"bootstrap\";\nimport i18next from \"../js/i18n\";\n\n// Initialize Bootstrap tooltips\nonMounted(() => {\n  const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle=\"tooltip\"]');\n  [...tooltipTriggerList].forEach(tooltipTriggerEl => new bootstrap.Tooltip(tooltipTriggerEl));\n});\n\n\nfunction checkGridsquare(e) {\n  let value = e.target.value.trim();\n  const regex = /^[A-Ra-r]{2}[0-9]{2}([A-Xa-x]{2})?$/;\n\n  if (regex.test(value)) {\n    let formatted =\n      value.substring(0, 2).toUpperCase() +\n      value.substring(2, 4) +\n      (value.length === 6 ? value.substring(4, 6).toLowerCase() : \"\");\n\n    settings.remote.STATION.mygrid = formatted;\n    onChange();\n  } else {\n    alert(i18next.t('settings.station.locator_error'));\n  }\n}\n\n\n// Function to validate and update callsign\nfunction validateCall() {\n  let call = settings.remote.STATION.mycall;\n  settings.remote.STATION.mycall = call.toUpperCase();\n\n  if (validateCallsignWithoutSSID(settings.remote.STATION.mycall)) {\n    onChange();\n  } else {\n    getRemote();\n  }\n}\n</script>\n"
  },
  {
    "path": "freedata_gui/src/components/settings_url.vue",
    "content": "<script setup>\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\nsetActivePinia(pinia);\n\nfunction openWebExternal(url) {\n  window.open(url, \"_blank\");\n}\n</script>\n\n<template>\n  <div class=\"input-group input-group-sm mb-1\">\n    <div\n      class=\"btn-toolbar mx-auto\"\n      role=\"toolbar\"\n      aria-label=\"Toolbar with button groups\"\n    >\n      <div class=\"btn-group\">\n        <button\n          id=\"fdWww\"\n          class=\"btn btn-secondary bi bi-bookmarks me-2 mt-1\"\n          data-bs-toggle=\"tooltip\"\n          data-bs-trigger=\"hover\"\n          title=\"FreeDATA website\"\n          role=\"button\"\n          @click=\"openWebExternal('https://freedata.app')\"\n        >\n          FD Website\n        </button>\n      </div>\n      <div class=\"btn-group\">\n        <button\n          id=\"wikiUrl\"\n          class=\"btn btn-secondary bi bi-wikipedia me-2 mt-1\"\n          data-bs-toggle=\"tooltip\"\n          data-bs-trigger=\"hover\"\n          title=\"Wiki\"\n          role=\"button\"\n          @click=\"openWebExternal('https://wiki.freedata.app')\"\n        >\n          FD Wiki\n        </button>\n      </div>\n      <div class=\"btn-group\">\n        <button\n          id=\"openExplorer\"\n          class=\"btn btn-sm bi bi-geo-alt btn-secondary me-2 mt-1\"\n          type=\"button\"\n          data-bs-placement=\"bottom\"\n          @click=\"openWebExternal('https://explorer.freedata.app')\"\n        >\n          FD Explorer map\n        </button>\n      </div>\n      <div class=\"btn-group\">\n        <button\n          id=\"btnStats\"\n          class=\"btn btn-sm btn-secondary me-2 bi bi-graph-up mt-1\"\n          type=\"button\"\n          data-bs-placement=\"bottom\"\n          @click=\"openWebExternal('https://statistics.freedata.app/')\"\n        >\n          FD Statistics\n        </button>\n      </div>\n\n      <div class=\"btn-group\">\n        <button\n          id=\"ghUrl\"\n          class=\"btn btn-secondary bi bi-github me-2 mt-1\"\n          data-bs-toggle=\"tooltip\"\n          data-bs-trigger=\"hover\"\n          title=\"Github\"\n          role=\"button\"\n          @click=\"openWebExternal('https://github.com/dj2ls')\"\n        >\n          DJ2LS's Github\n        </button>\n      </div>\n\n      <div class=\"btn-group\">\n        <button\n          id=\"discordUrl\"\n          class=\"btn btn-secondary bi bi-discord mt-1\"\n          data-bs-toggle=\"tooltip\"\n          data-bs-trigger=\"hover\"\n          title=\"Discord\"\n          role=\"button\"\n          @click=\"openWebExternal('https://discord.freedata.app')\"\n        >\n          FD Discord\n        </button>\n      </div>\n    </div>\n  </div>\n</template>\n"
  },
  {
    "path": "freedata_gui/src/components/settings_web.vue",
    "content": "<script setup>\n\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\nsetActivePinia(pinia);\n\nimport { settingsStore as settings, onChange } from \"../store/settingsStore.js\";\n</script>\n\n<template>\n  <!-- Top Info Area for Explorer Settings -->\n  <div\n    class=\"alert alert-info\"\n    role=\"alert\"\n  >\n    <strong><i class=\"bi bi-gear-wide-connected me-1\" /></strong>{{ $t('settings.web.introduction') }}\n  </div>\n\n  <div\n    class=\"alert alert-light\"\n    role=\"alert\"\n  >\n    {{ $t('settings.web.description') }}\n  </div>\n\n  <!-- Explorer Publishing -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.web.enableexplorer') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.web.enableexplorer_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <label class=\"input-group-text w-50\">\n      <div class=\"form-check form-switch form-check-inline\">\n        <input\n          id=\"ExplorerSwitch\"\n          v-model=\"settings.remote.STATION.enable_explorer\"\n          class=\"form-check-input\"\n          type=\"checkbox\"\n          @change=\"onChange\"\n        >\n        <label\n          class=\"form-check-label\"\n          for=\"ExplorerSwitch\"\n        >{{ $t('settings.enable') }}</label>\n      </div>\n    </label>\n  </div>\n\n  <!-- Explorer Stats Publishing -->\n  <div class=\"input-group input-group-sm mb-1\">\n    <label class=\"input-group-text w-50 text-wrap\">\n      {{ $t('settings.web.enablestats') }}\n      <button\n        type=\"button\"\n        class=\"btn btn-link p-0 ms-2\"\n        data-bs-toggle=\"tooltip\"\n        :title=\"$t('settings.web.enablestats_help')\"\n      >\n        <i class=\"bi bi-question-circle\" />\n      </button>\n    </label>\n    <label class=\"input-group-text w-50\">\n      <div class=\"form-check form-switch form-check-inline\">\n        <input\n          id=\"ExplorerStatsSwitch\"\n          v-model=\"settings.remote.STATION.enable_stats\"\n          class=\"form-check-input\"\n          type=\"checkbox\"\n          @change=\"onChange\"\n        >\n        <label\n          class=\"form-check-label\"\n          for=\"ExplorerStatsSwitch\"\n        >{{ $t('settings.enable') }}</label>\n      </div>\n    </label>\n  </div>\n</template>\n\n\n"
  },
  {
    "path": "freedata_gui/src/js/api.js",
    "content": "// Pinia setup\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\nsetActivePinia(pinia);\nimport { computed } from \"vue\";\n\nimport {\n  validateCallsignWithSSID,\n  validateCallsignWithoutSSID,\n} from \"./freedata\";\nimport { processFreedataMessages } from \"./messagesHandler\";\nimport { useStateStore } from \"../store/stateStore.js\";\nconst state = useStateStore(pinia);\nimport { useChatStore } from \"../store/chatStore.js\";\nconst chatStore = useChatStore(pinia);\n\n// Build URL with adjusted port if needed\nfunction buildURL(endpoint) {\n  const { protocol, hostname, port } = window.location;\n  const adjustedPort = port === \"8080\" ? \"5000\" : port;\n  return `${protocol}//${hostname}:${adjustedPort}${endpoint}`;\n}\n\n// Check network connectivity\nconst isNetworkConnected = computed(\n  () => state.modem_connection !== \"disconnected\",\n);\nfunction checkNetworkConnectivity() {\n  if (!isNetworkConnected.value) {\n    console.warn(\"Network is disconnected. API call aborted.\");\n    return false;\n  }\n  return true;\n}\n// Set network traffic state\nfunction setNetworkTrafficBusy(isBusy) {\n  state.is_network_traffic = isBusy;\n}\n\n// Fetch GET request\nasync function apiGet(endpoint) {\n  if (!checkNetworkConnectivity()) return;\n\n  setNetworkTrafficBusy(true); // Set the network busy state to true\n\n  try {\n    const response = await fetch(buildURL(endpoint));\n    if (!response.ok) {\n      throw new Error(`REST response not ok: ${response.statusText}`);\n    }\n    return await response.json();\n  } catch (error) {\n    console.error(\"Error getting from REST:\", error);\n  } finally {\n    setNetworkTrafficBusy(false); // Set the network busy state back to false\n  }\n}\n\n// Fetch POST request\nexport async function apiPost(endpoint, payload = {}) {\n  if (!checkNetworkConnectivity()) return;\n\n  setNetworkTrafficBusy(true); // Set the network busy state to true\n\n  try {\n    const response = await fetch(buildURL(endpoint), {\n      method: \"POST\",\n      headers: {\n        \"Content-Type\": \"application/json\",\n      },\n      body: JSON.stringify(payload),\n    });\n\n    if (!response.ok) {\n      throw new Error(`REST response not ok: ${response.statusText}`);\n    }\n\n    return await response.json();\n  } catch (error) {\n    console.error(\"Error posting to REST:\", error);\n  } finally {\n    setNetworkTrafficBusy(false); // Set the network busy state back to false\n  }\n}\n\n// Fetch PATCH request\nexport async function apiPatch(endpoint, payload = {}) {\n  if (!checkNetworkConnectivity()) return;\n\n  setNetworkTrafficBusy(true); // Set the network busy state to true\n\n  try {\n    const response = await fetch(buildURL(endpoint), {\n      method: \"PATCH\",\n      headers: {\n        \"Content-Type\": \"application/json\",\n      },\n      body: JSON.stringify(payload),\n    });\n\n    if (!response.ok) {\n      throw new Error(`REST response not ok: ${response.statusText}`);\n    }\n\n    return await response.json();\n  } catch (error) {\n    console.error(\"Error patching to REST:\", error);\n  } finally {\n    setNetworkTrafficBusy(false); // Set the network busy state back to false\n  }\n}\n\n// Fetch DELETE request\nexport async function apiDelete(endpoint, payload = {}) {\n  if (!checkNetworkConnectivity()) return;\n\n  setNetworkTrafficBusy(true); // Set the network busy state to true\n\n  try {\n    const response = await fetch(buildURL(endpoint), {\n      method: \"DELETE\",\n      headers: {\n        \"Content-Type\": \"application/json\",\n      },\n      body: JSON.stringify(payload),\n    });\n\n    if (!response.ok) {\n      throw new Error(`REST response not ok: ${response.statusText}`);\n    }\n\n    return await response.json();\n  } catch (error) {\n    console.error(\"Error deleting from REST:\", error);\n  } finally {\n    setNetworkTrafficBusy(false); // Set the network busy state back to false\n  }\n}\n\n// functions using updated apiGet and apiPost\nexport async function getVersion() {\n  let data = await apiGet(\"/version\");\n  if (data && data.version) {\n    return data.version;\n  }\n  return 0;\n}\n\nexport async function getSysInfo() {\n  let data = await apiGet(\"/version\");\n  console.log(data);\n  return {\n    api_version: data?.api_version || \"N/A\",\n    modem_version: data?.modem_version || \"N/A\",\n    os_info: {\n      system: data?.os_info?.system || \"N/A\",\n      node: data?.os_info?.node || \"N/A\",\n      release: data?.os_info?.release || \"N/A\",\n      version: data?.os_info?.version || \"N/A\",\n      machine: data?.os_info?.machine || \"N/A\",\n      processor: data?.os_info?.processor || \"N/A\",\n    },\n    python_info: {\n      build: data?.python_info?.build || [\"N/A\", \"N/A\"],\n      compiler: data?.python_info?.compiler || \"N/A\",\n      branch: data?.python_info?.branch || \"N/A\",\n      implementation: data?.python_info?.implementation || \"N/A\",\n      revision: data?.python_info?.revision || \"N/A\",\n      version: data?.python_info?.version || \"N/A\",\n    },\n  };\n}\n\nexport async function getConfig() {\n  return await apiGet(\"/config\");\n}\n\nexport async function setConfig(config) {\n  return await apiPost(\"/config\", config);\n}\n\nexport async function getAudioDevices() {\n  return await apiGet(\"/devices/audio\");\n}\n\nexport async function getSerialDevices() {\n  return await apiGet(\"/devices/serial\");\n}\n\nexport async function setModemBeacon(enabled = false, away_from_key = false) {\n  return await apiPost(\"/modem/beacon\", { enabled, away_from_key });\n}\n\nexport async function sendModemCQ() {\n  return await apiPost(\"/modem/cqcqcq\");\n}\n\nexport async function sendModemPing(dxcall) {\n  if (\n    validateCallsignWithSSID(dxcall) === false &&\n    validateCallsignWithoutSSID(dxcall) === true\n  ) {\n    dxcall = String(dxcall).toUpperCase().trim() + \"-0\";\n  }\n  dxcall = String(dxcall).toUpperCase().trim();\n  if (validateCallsignWithSSID(dxcall)) {\n    return await apiPost(\"/modem/ping_ping\", { dxcall });\n  }\n}\n\nexport async function sendModemARQRaw(mycall, dxcall, data, uuid) {\n  return await apiPost(\"/modem/send_arq_raw\", {\n    mycallsign: mycall,\n    dxcall,\n    data,\n    uuid,\n  });\n}\n\nexport async function stopTransmission() {\n  return await apiPost(\"/modem/stop_transmission\");\n}\n\nexport async function sendModemTestFrame() {\n  return await apiPost(\"/modem/send_test_frame\");\n}\n\nexport async function sendSineTone(state) {\n  return await apiPost(\"/radio/tune\", { enable_tuning: state });\n}\n\nexport async function startModem() {\n  return await apiPost(\"/modem/start\");\n}\n\nexport async function stopModem() {\n  return await apiPost(\"/modem/stop\");\n}\n\nexport async function getModemState() {\n  return await apiGet(\"/modem/state\");\n}\n\nexport async function setRadioParametersFrequency(frequency) {\n  return await apiPost(\"/radio\", { radio_frequency: frequency });\n}\n\nexport async function setRadioParametersMode(mode) {\n  return await apiPost(\"/radio\", { radio_mode: mode });\n}\n\nexport async function setRadioParametersRFLevel(rf_level) {\n  return await apiPost(\"/radio\", { radio_rf_level: rf_level });\n}\n\nexport async function setRadioParametersTuner(state) {\n  return await apiPost(\"/radio\", { radio_tuner: state });\n}\n\nexport async function getRadioStatus() {\n  return await apiGet(\"/radio\");\n}\n\nexport async function getFreedataMessages() {\n  chatStore.loading = true;\n  try {\n    const res = await apiGet(\"/freedata/messages\");\n    if (res) {\n      processFreedataMessages(res);\n    }\n  } catch (error) {\n    console.error(\"Error fetching messages:\", error);\n  } finally {\n    chatStore.loading = false;\n  }\n}\n\nexport async function getFreedataMessageById(id) {\n  let res = await apiGet(`/freedata/messages/${id}`);\n  return res;\n}\n\nexport async function getFreedataAttachmentBySha512(data_sha512) {\n  let res = await apiGet(`/freedata/messages/attachment/${data_sha512}`);\n  return res;\n}\n\nexport async function sendFreedataMessage(destination, body, attachments) {\n  return await apiPost(\"/freedata/messages\", {\n    destination,\n    body,\n    attachments,\n  });\n}\n\nexport async function postFreedataMessageADIF(id) {\n  return await apiPost(`/freedata/messages/${id}/adif`, {\n    action: \"retransmit\",\n  });\n}\n\nexport async function retransmitFreedataMessage(id) {\n  return await apiPatch(`/freedata/messages/${id}`, { action: \"retransmit\" });\n}\n\nexport async function setFreedataMessageAsRead(id) {\n  return await apiPatch(`/freedata/messages/${id}`, { is_read: true });\n}\n\nexport async function deleteFreedataMessage(id) {\n  return await apiDelete(`/freedata/messages/${id}`);\n}\n\nexport async function getBeaconDataByCallsign(callsign) {\n  return await apiGet(`/freedata/beacons/${callsign}`);\n}\n\nexport async function getStationInfo(callsign) {\n  return await apiGet(`/freedata/station/${callsign}`);\n}\n\nexport async function setStationInfo(callsign, info) {\n  return await apiPost(`/freedata/station/${callsign}`, info);\n}\n"
  },
  {
    "path": "freedata_gui/src/js/eventHandler.js",
    "content": "import { toRaw } from \"vue\";\nimport { displayToast } from \"./popupHandler\";\nimport {\n  getFreedataMessages,\n  getModemState,\n  getRadioStatus,\n  getSysInfo,\n} from \"./api\";\nimport { processFreedataMessages } from \"./messagesHandler\";\nimport { processRadioStatus } from \"./radioHandler\";\nimport i18next from \"./i18n\";\n\n// ----------------- init pinia stores -------------\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\nsetActivePinia(pinia);\nimport { useStateStore } from \"../store/stateStore\";\nconst stateStore = useStateStore(pinia);\nimport { useAudioStore } from \"../store/audioStore\";\nconst audioStore = useAudioStore(pinia);\nimport { useSerialStore } from \"../store/serialStore\";\nconst serialStore = useSerialStore(pinia);\nimport { getRemote } from \"../store/settingsStore\";\n\nexport async function loadAllData() {\n  let stateData = await getModemState();\n  console.log(stateData);\n  getSysInfo().then((res) => {\n    if (res) {\n      stateStore.api_version = res.api_version;\n      stateStore.modem_version = res.modem_version;\n      stateStore.os_info = res.os_info;\n      stateStore.python_info = res.python_info;\n    }\n  });\n  audioStore.loadAudioDevices();\n  serialStore.loadSerialDevices();\n  console.log(audioStore.audioInputs);\n  await getRadioStatus();\n  getRemote();\n  getOverallHealth();\n  getFreedataMessages();\n  processFreedataMessages();\n  processRadioStatus();\n}\n\nexport function connectionFailed(endpoint, event) {\n  console.log(event);\n  stateStore.modem_connection = \"disconnected\";\n}\n\nexport function stateDispatcher(data) {\n  data = JSON.parse(data);\n\n  if (data.type === \"state-change\" || data.type === \"state\") {\n    stateStore.modem_connection = \"connected\";\n    stateStore.busy_state = data.is_modem_busy;\n    stateStore.channel_busy = data.channel_busy;\n    stateStore.is_codec2_traffic = data.is_codec2_traffic;\n    stateStore.is_modem_running = data.is_modem_running;\n    stateStore.dbfs_level = Math.round(data.audio_dbfs);\n    stateStore.dbfs_level_percent = Math.round(\n      Math.pow(10, data.audio_dbfs / 20) * 100,\n    );\n    stateStore.radio_status = data.radio_status;\n    stateStore.channel_busy_slot = data.channel_busy_slot;\n    stateStore.beacon_state = data.is_beacon_running;\n    stateStore.away_from_key = data.is_away_from_key;\n\n    stateStore.activities = Object.entries(data.activities).reverse();\n    build_HSL();\n  }\n\n  if (data.type === \"radio-change\" || data.type === \"radio\") {\n    stateStore.s_meter_strength_raw = Math.round(data.s_meter_strength);\n    stateStore.s_meter_strength_percent = Math.round(\n      Math.pow(10, data.s_meter_strength / 20) * 100,\n    );\n    stateStore.radio_status = data.radio_status;\n    stateStore.frequency = data.radio_frequency;\n    stateStore.mode = data.radio_mode;\n\n    let swr = data.radio_swr;\n    stateStore.swr_raw = parseFloat(data.radio_swr).toFixed(2);\n    if (swr >= 0.0 && swr <= 6.0) {\n      swr = (swr / 6.0) * 100;\n      stateStore.swr_percent = swr.toFixed(2);\n    } else {\n      stateStore.swr_percent = 0.0;\n    }\n\n    stateStore.tuner = data.radio_tuner;\n    stateStore.rf_level = Math.round(data.radio_rf_level / 5) * 5;\n  }\n}\n\nexport function eventDispatcher(data) {\n  data = JSON.parse(data);\n\n  if (data.scatter !== undefined) {\n    stateStore.scatter = JSON.parse(data.scatter);\n    return;\n  }\n\n  switch (data[\"message-db\"]) {\n    case \"changed\":\n      console.log(\"fetching new messages...\");\n      var messages = getFreedataMessages();\n      processFreedataMessages(messages);\n      return;\n  }\n\n  switch (data.ptt) {\n    case true:\n    case false:\n      stateStore.ptt_state = data.ptt;\n      return;\n  }\n\n  switch (data.modem) {\n    case \"started\":\n      displayToast(\"success\", \"bi-arrow-left-right\", \"Modem started\", 5000);\n      loadAllData();\n      return;\n\n    case \"stopped\":\n      displayToast(\"warning\", \"bi-arrow-left-right\", \"Modem stopped\", 5000);\n      return;\n\n    case \"restarted\":\n      displayToast(\"secondary\", \"bi-bootstrap-reboot\", \"Modem restarted\", 5000);\n      loadAllData();\n      return;\n\n    case \"failed\":\n      displayToast(\n        \"danger\",\n        \"bi-bootstrap-reboot\",\n        i18next.t(\"popups.startupfailed\"),\n        5000,\n      );\n      return;\n  }\n\n  var message = \"\";\n  console.log(data);\n  switch (data.type) {\n    case \"hello-client\":\n      message = i18next.t(\"popups.connectedtoserver\");\n      displayToast(\"success\", \"bi-ethernet\", message, 5000);\n      stateStore.modem_connection = \"connected\";\n\n      loadAllData();\n      return;\n\n    case \"message-logging\":\n      if (data.endpoint === \"wavelog\" || data.endpoint === \"udp\") {\n        if (data.status === true) {\n          const message = `\n            <div>\n                <strong>${i18next.t(\"popups.adiflogheader\")}:</strong>\n                <span class=\"badge bg-success\">${i18next.t(\"popups.adiflogtext1\")}${data.message}${i18next.t(\"popups.adiflogtext2\")}</span>\n                <div class=\"mt-2\">\n                <span class=\"badge bg-secondary\">${data.endpoint} ${i18next.t(\"popups.adiflogheader\")}</span>\n                </div>\n            </div>\n          `;\n          displayToast(\"success\", \"bi-check-circle\", message, 5000);\n        } else {\n          const message = `\n            <div>\n                <strong>${i18next.t(\"popups.adiflogheader\")}:</strong>\n                <span class=\"badge bg-danger\">${data.message}</span>\n                <div class=\"mt-2\">\n                <span class=\"badge bg-secondary\">${data.endpoint} ${i18next.t(\"popups.adiflogerror\")}</span>\n                </div>\n            </div>\n                  `;\n          displayToast(\"warning\", \"bi-exclamation-circle\", message, 5000);\n        }\n      }\n      return;\n\n    case \"frame-handler\":\n      switch (data.received) {\n        case \"CQ\":\n          message = `\n      <div>\n        <strong>${i18next.t(\"popups.cqreceived\")}:</strong>\n        <span class=\"badge bg-info text-dark\">${data.dxcallsign}</span>\n        <div class=\"mt-2\">\n          <span class=\"badge bg-secondary\">${i18next.t(\"popups.snr\")}: ${data.snr}</span>\n          <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.gridsquare\")}: ${data.gridsquare}</span>\n        </div>\n      </div>\n    `;\n          displayToast(\"info\", \"bi-info-circle\", message, 5000);\n          break;\n\n        case \"QRV\":\n          message = `\n      <div>\n        <strong>${i18next.t(\"popups.qrvreceived\")}:</strong>\n        <span class=\"badge bg-info text-dark\">${data.dxcallsign}</span>\n        <div class=\"mt-2\">\n          <span class=\"badge bg-secondary\">${i18next.t(\"popups.snr\")}: ${data.snr}</span>\n          <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.gridsquare\")}: ${data.gridsquare}</span>\n        </div>\n      </div>\n    `;\n          displayToast(\"info\", \"bi-info-circle\", message, 5000);\n          break;\n\n        case \"PING\":\n          message = `\n      <div>\n        <strong>${i18next.t(\"popups.pingreceived\")}:</strong>\n        <span class=\"badge bg-info text-dark\">${data.dxcallsign}</span>\n        <div class=\"mt-2\">\n          <span class=\"badge bg-secondary\">${i18next.t(\"popups.snr\")}: ${data.snr}</span>\n        </div>\n      </div>\n    `;\n          displayToast(\"warning\", \"bi-exclamation-circle\", message, 5000);\n          break;\n\n        case \"PING_ACK\":\n          message = `\n      <div>\n        <strong>${i18next.t(\"popups.pingackreceived\")}:</strong>\n        <span class=\"badge bg-info text-dark\">${data.dxcallsign}</span>\n        <div class=\"mt-2\">\n          <span class=\"badge bg-secondary\">${i18next.t(\"popups.snr\")}: ${data.snr}</span>\n          <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.gridsquare\")}: ${data.gridsquare}</span>\n        </div>\n      </div>\n    `;\n          displayToast(\"success\", \"bi-check-circle\", message, 5000);\n          break;\n\n        default:\n          console.log(\"unknown event data received: ${data.gridsquare}\");\n      }\n      return;\n\n    case \"arq\":\n      if (data[\"arq-transfer-outbound\"]) {\n        stateStore.arq_is_receiving = false;\n        switch (data[\"arq-transfer-outbound\"].state) {\n          case \"NEW\":\n            message = `\n              <div>\n                <strong>${i18next.t(\"popups.newtransmissionwith\")}:</strong>\n                <span class=\"badge bg-info text-dark\">${data[\"arq-transfer-outbound\"].dxcall}</span>\n                <div class=\"mt-2\">\n                  <span class=\"badge bg-secondary\">${i18next.t(\"popups.sessionid\")}: ${data[\"arq-transfer-outbound\"].session_id}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.totalbytes\")}: ${data[\"arq-transfer-outbound\"].total_bytes}</span>\n                </div>\n              </div>\n            `;\n            displayToast(\"success\", \"bi-check-circle\", message, 10000);\n            stateStore.dxcallsign = data[\"arq-transfer-outbound\"].dxcall;\n            stateStore.arq_transmission_percent = 0;\n            stateStore.arq_total_bytes =\n              data[\"arq-transfer-outbound\"].total_bytes;\n            return;\n          case \"OPEN_SENT\":\n            message = `\n              <div>\n                <strong>${i18next.t(\"popups.openingtransmissionwith\")}:</strong>\n                <span class=\"badge bg-info text-dark\">${data[\"arq-transfer-outbound\"].dxcall}</span>\n                <div class=\"mt-2\">\n                  <span class=\"badge bg-secondary\">${i18next.t(\"popups.sessionid\")}: ${data[\"arq-transfer-outbound\"].session_id}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.totalbytes\")}: ${data[\"arq-transfer-outbound\"].total_bytes}</span>\n                </div>\n              </div>\n            `;\n            displayToast(\"info\", \"bi-check-circle\", message, 10000);\n            return;\n\n          case \"INFO_SENT\":\n            console.info(\"state INFO_SENT needs to be implemented\");\n            return;\n\n          case \"BURST_SENT\":\n            message = `\n              <div>\n                <strong>${i18next.t(\"popups.ongoingtransmissionwith\")}:</strong>\n                <span class=\"badge bg-info text-dark\">${data[\"arq-transfer-outbound\"].dxcall}</span>\n                <div class=\"mt-2\">\n                  <span class=\"badge bg-secondary\">${i18next.t(\"popups.sessionid\")}: ${data[\"arq-transfer-outbound\"].session_id}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.transmittedbytes\")}: ${data[\"arq-transfer-outbound\"].received_bytes}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.totalbytes\")}: ${data[\"arq-transfer-outbound\"].total_bytes}</span>\n                </div>\n              </div>\n            `;\n            displayToast(\"info\", \"bi-info-circle\", message, 5000);\n            stateStore.arq_transmission_percent = Math.round(\n              (data[\"arq-transfer-outbound\"].received_bytes /\n                data[\"arq-transfer-outbound\"].total_bytes) *\n                100,\n            );\n            stateStore.arq_total_bytes =\n              data[\"arq-transfer-outbound\"].total_bytes;\n            stateStore.arq_speed_list_timestamp.value = toRaw(\n              data[\"arq-transfer-outbound\"].statistics.time_histogram,\n            );\n            stateStore.arq_speed_list_bpm.value = toRaw(\n              data[\"arq-transfer-outbound\"].statistics.bpm_histogram,\n            );\n            stateStore.arq_speed_list_snr.value = toRaw(\n              data[\"arq-transfer-outbound\"].statistics.snr_histogram,\n            );\n\n            stateStore.arq_bytes_per_minute =\n              data[\"arq-transfer-outbound\"].statistics.bytes_per_minute;\n            stateStore.arq_bits_per_second =\n              data[\"arq-transfer-outbound\"].statistics.bits_per_second;\n\n            stateStore.speed_level = data[\"arq-transfer-outbound\"].speed_level;\n            return;\n\n          case \"ABORTING\":\n            console.info(\"state ABORTING needs to be implemented\");\n            return;\n\n          case \"ABORTED\":\n            message = `\n              <div>\n                <strong>${i18next.t(\"popups.transmissionabortedwith\")}:</strong>\n                <span class=\"badge bg-info text-dark\">${data[\"arq-transfer-outbound\"].dxcall}</span>\n                <div class=\"mt-2\">\n                  <span class=\"badge bg-primary\">${i18next.t(\"popups.state\")}: ${data[\"arq-transfer-outbound\"].state}</span>\n                  <span class=\"badge bg-secondary\">${i18next.t(\"popups.sessionid\")}: ${data[\"arq-transfer-outbound\"].session_id}</span>\n                </div>\n              </div>\n            `;\n            displayToast(\"warning\", \"bi-exclamation-triangle\", message, 5000);\n            stateStore.arq_transmission_percent = 0;\n            stateStore.arq_total_bytes = 0;\n            stateStore.arq_bytes_per_minute = 0;\n            stateStore.arq_bits_per_second = 0;\n            return;\n\n          case \"ENDED\":\n            message = `\n              <div>\n                <strong>${i18next.t(\"popups.transmissionendedwith\")}:</strong>\n                <span class=\"badge bg-info text-dark\">${data[\"arq-transfer-outbound\"].dxcall}</span>\n                <div class=\"mt-2\">\n                  <span class=\"badge bg-primary\">${i18next.t(\"popups.state\")}: ${data[\"arq-transfer-outbound\"].state}</span>\n                  <span class=\"badge bg-secondary\">${i18next.t(\"popups.sessionid\")}: ${data[\"arq-transfer-outbound\"].session_id}</span>\n                    <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.bytesperminute\")}: ${data[\"arq-transfer-outbound\"].statistics.bytes_per_minute}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.totalbytes\")}: ${data[\"arq-transfer-outbound\"].statistics.total_bytes}</span>\n                </div>\n              </div>\n            `;\n            displayToast(\"success\", \"bi-info-circle\", message, 5000);\n            stateStore.arq_transmission_percent = Math.round(\n              (data[\"arq-transfer-outbound\"].received_bytes /\n                data[\"arq-transfer-outbound\"].total_bytes) *\n                100,\n            );\n            stateStore.arq_total_bytes =\n              data[\"arq-transfer-outbound\"].total_bytes;\n\n            stateStore.arq_bytes_per_minute =\n              data[\"arq-transfer-outbound\"].statistics.bytes_per_minute;\n            stateStore.arq_bits_per_second =\n              data[\"arq-transfer-outbound\"].statistics.bits_per_second;\n\n            // Reset progressbar values after a delay\n            setTimeout(() => {\n              stateStore.arq_transmission_percent = 0;\n              stateStore.arq_total_bytes = 0;\n              stateStore.arq_bytes_per_minute = 0;\n              stateStore.arq_bits_per_second = 0;\n            }, 5000);\n            return;\n          case \"FAILED\":\n            message = `\n              <div>\n                <strong>${i18next.t(\"popups.transmissionfailedwith\")}:</strong>\n                <span class=\"badge bg-info text-dark\">${data[\"arq-transfer-outbound\"].dxcall}</span>\n                <div class=\"mt-2\">\n                  <span class=\"badge bg-primary\">${i18next.t(\"popups.state\")}: ${data[\"arq-transfer-outbound\"].state}</span>\n                  <span class=\"badge bg-secondary\">${i18next.t(\"popups.sessionid\")}: ${data[\"arq-transfer-outbound\"].session_id}</span>\n                </div>\n              </div>\n            `;\n            displayToast(\"danger\", \"bi-x-octagon\", message, 5000);\n            // Reset progressbar values after a delay\n            setTimeout(() => {\n              stateStore.arq_transmission_percent = 0;\n              stateStore.arq_total_bytes = 0;\n              stateStore.arq_bytes_per_minute = 0;\n              stateStore.arq_bits_per_second = 0;\n            }, 5000);\n\n            return;\n        }\n      }\n\n      if (data[\"arq-transfer-inbound\"]) {\n        stateStore.arq_is_receiving = true;\n        switch (data[\"arq-transfer-inbound\"].state) {\n          case \"NEW\":\n            message = `\n              <div>\n                <strong>${i18next.t(\"popups.newtransmissionwith\")}:</strong>\n                <span class=\"badge bg-info text-dark\">${data[\"arq-transfer-inbound\"].dxcall}</span>\n                <div class=\"mt-2\">\n                  <span class=\"badge bg-secondary\">${i18next.t(\"popups.sessionid\")}: ${data[\"arq-transfer-inbound\"].session_id}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.totalbytes\")}: ${data[\"arq-transfer-inbound\"].total_bytes}</span>\n                </div>\n              </div>\n            `;\n            displayToast(\"info\", \"bi-info-circle\", message, 10000);\n            stateStore.dxcallsign = data[\"arq-transfer-inbound\"].dxcall;\n            stateStore.arq_transmission_percent = 0;\n            stateStore.arq_total_bytes =\n              data[\"arq-transfer-inbound\"].total_bytes;\n            return;\n\n          case \"OPEN_ACK_SENT\":\n            message = `\n              <div>\n                <strong>${i18next.t(\"popups.confirmingtransmissionwith\")}:${data[\"arq-transfer-inbound\"].dxcall}</strong>\n                <span class=\"badge bg-info text-dark\">${data[\"arq-transfer-inbound\"].dxcall}</span>\n                <div class=\"mt-2\">\n                  <span class=\"badge bg-secondary\">${i18next.t(\"popups.sessionid\")}: ${data[\"arq-transfer-inbound\"].session_id}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.receivedbytes\")}: ${data[\"arq-transfer-inbound\"].received_bytes}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.totalbytes\")}: ${data[\"arq-transfer-inbound\"].total_bytes}</span>\n                </div>\n              </div>\n            `;\n            displayToast(\"info\", \"bi-arrow-left-right\", message, 5000);\n            stateStore.arq_transmission_percent = Math.round(\n              (data[\"arq-transfer-inbound\"].received_bytes /\n                data[\"arq-transfer-inbound\"].total_bytes) *\n                100,\n            );\n            stateStore.arq_total_bytes =\n              data[\"arq-transfer-inbound\"].total_bytes;\n            return;\n\n          case \"INFO_ACK_SENT\":\n            message = `\n              <div>\n                <strong>${i18next.t(\"popups.openingtransmissionwith\")}:${data[\"arq-transfer-inbound\"].dxcall}</strong>\n                <span class=\"badge bg-info text-dark\">${data[\"arq-transfer-inbound\"].dxcall}</span>\n                <div class=\"mt-2\">\n                  <span class=\"badge bg-secondary\">${i18next.t(\"popups.sessionid\")}: ${data[\"arq-transfer-inbound\"].session_id}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.receivedbytes\")}: ${data[\"arq-transfer-inbound\"].received_bytes}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.totalbytes\")}: ${data[\"arq-transfer-inbound\"].total_bytes}</span>\n                </div>\n              </div>\n            `;\n            displayToast(\"info\", \"bi-info-circle\", message, 5000);\n            stateStore.arq_transmission_percent = Math.round(\n              (data[\"arq-transfer-inbound\"].received_bytes /\n                data[\"arq-transfer-inbound\"].total_bytes) *\n                100,\n            );\n            stateStore.arq_total_bytes =\n              data[\"arq-transfer-inbound\"].total_bytes;\n            return;\n\n          case \"BURST_REPLY_SENT\":\n            message = `\n              <div>\n                <strong>${i18next.t(\"popups.ongoingtransmissionwith\")}:</strong>\n                <span class=\"badge bg-info text-dark\">${data[\"arq-transfer-inbound\"].dxcall}</span>\n                <div class=\"mt-2\">\n                  <span class=\"badge bg-secondary\">${i18next.t(\"popups.sessionid\")}: ${data[\"arq-transfer-inbound\"].session_id}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.receivedbytes\")}: ${data[\"arq-transfer-inbound\"].received_bytes}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.totalbytes\")}: ${data[\"arq-transfer-inbound\"].total_bytes}</span>\n                </div>\n              </div>\n            `;\n            displayToast(\"info\", \"bi-info-circle\", message, 5000);\n\n            stateStore.arq_transmission_percent = Math.round(\n              (data[\"arq-transfer-inbound\"].received_bytes /\n                data[\"arq-transfer-inbound\"].total_bytes) *\n                100,\n            );\n            stateStore.arq_total_bytes =\n              data[\"arq-transfer-inbound\"].received_bytes;\n            stateStore.arq_speed_list_timestamp.value = toRaw(\n              data[\"arq-transfer-inbound\"].statistics.time_histogram,\n            );\n            stateStore.arq_speed_list_bpm.value = toRaw(\n              data[\"arq-transfer-inbound\"].statistics.bpm_histogram,\n            );\n            stateStore.arq_speed_list_snr.value = toRaw(\n              data[\"arq-transfer-inbound\"].statistics.snr_histogram,\n            );\n\n            stateStore.arq_bytes_per_minute =\n              data[\"arq-transfer-inbound\"].statistics.bytes_per_minute;\n            stateStore.arq_bits_per_second =\n              data[\"arq-transfer-inbound\"].statistics.bits_per_second;\n            stateStore.speed_level = data[\"arq-transfer-inbound\"].speed_level;\n            return;\n\n          case \"ENDED\":\n            message = `\n              <div>\n                <strong>${i18next.t(\"popups.transmissionendedwith\")}:</strong>\n                <span class=\"badge bg-info text-dark\">${data[\"arq-transfer-inbound\"].dxcall}</span>\n                <div class=\"mt-2\">\n                  <span class=\"badge bg-primary\">${i18next.t(\"popups.state\")}: ${data[\"arq-transfer-inbound\"].state}</span>\n                  <span class=\"badge bg-secondary\">${i18next.t(\"popups.sessionid\")}: ${data[\"arq-transfer-inbound\"].session_id}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.bytesperminute\")}: ${data[\"arq-transfer-inbound\"].statistics.bytes_per_minute}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.totalbytes\")}: ${data[\"arq-transfer-inbound\"].statistics.total_bytes}</span>\n                </div>\n              </div>\n            `;\n\n            displayToast(\"info\", \"bi-info-circle\", message, 5000);\n            //newMessageReceived(\n            //  data[\"arq-transfer-inbound\"].data,\n            //  data[\"arq-transfer-inbound\"]\n            //);\n            stateStore.arq_transmission_percent = Math.round(\n              (data[\"arq-transfer-inbound\"].statistics.received_bytes /\n                data[\"arq-transfer-inbound\"].statistics.total_bytes) *\n                100,\n            );\n\n            stateStore.arq_bytes_per_minute =\n              data[\"arq-transfer-inbound\"].statistics.bytes_per_minute;\n            stateStore.arq_bits_per_second =\n              data[\"arq-transfer-inbound\"].statistics.bits_per_second;\n\n            stateStore.arq_total_bytes =\n              data[\"arq-transfer-inbound\"].total_bytes;\n\n            // Reset progressbar values after a delay\n            setTimeout(() => {\n              stateStore.arq_transmission_percent = 0;\n              stateStore.arq_total_bytes = 0;\n              stateStore.arq_bytes_per_minute = 0;\n              stateStore.arq_bits_per_second = 0;\n            }, 5000);\n            return;\n\n          case \"ABORTED\":\n            message = `\n              <div>\n                <strong>${i18next.t(\"popups.transmissionabortedwith\")}:</strong>\n                <span class=\"badge bg-info text-dark\">${data[\"arq-transfer-inbound\"].dxcall}</span>\n                <div class=\"mt-2\">\n                  <span class=\"badge bg-primary\">${i18next.t(\"popups.state\")}: ${data[\"arq-transfer-inbound\"].state}</span>\n                  <span class=\"badge bg-secondary\">${i18next.t(\"popups.sessionid\")}: ${data[\"arq-transfer-inbound\"].session_id}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.receivedbytes\")}: ${data[\"arq-transfer-inbound\"].received_bytes}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.totalbytes\")}: ${data[\"arq-transfer-inbound\"].total_bytes}</span>\n                </div>\n              </div>\n            `;\n            displayToast(\"danger\", \"bi-x-octagon\", message, 5000);\n            stateStore.arq_transmission_percent = 0;\n            stateStore.arq_total_bytes = 0;\n            return;\n\n          case \"FAILED\":\n            message = `\n              <div>\n                <strong>${i18next.t(\"popups.transmissionfailedwith\")}:</strong>\n                <span class=\"badge bg-info text-dark\">${data[\"arq-transfer-inbound\"].dxcall}</span>\n                <div class=\"mt-2\">\n                  <span class=\"badge bg-primary\">${i18next.t(\"popups.state\")}: ${data[\"arq-transfer-inbound\"].state}</span>\n                  <span class=\"badge bg-secondary\">${i18next.t(\"popups.sessionid\")}: ${data[\"arq-transfer-inbound\"].session_id}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.receivedbytes\")}: ${data[\"arq-transfer-inbound\"].received_bytes}</span>\n                  <span class=\"badge bg-warning text-dark\">${i18next.t(\"popups.totalbytes\")}: ${data[\"arq-transfer-inbound\"].total_bytes}</span>\n                </div>\n              </div>\n            `;\n            displayToast(\"danger\", \"bi-x-octagon\", message, 5000);\n            // Reset progressbar values after a delay\n            setTimeout(() => {\n              stateStore.arq_transmission_percent = 0;\n              stateStore.arq_total_bytes = 0;\n              stateStore.arq_bytes_per_minute = 0;\n              stateStore.arq_bits_per_second = 0;\n            }, 5000);\n            return;\n        }\n      }\n      return;\n  }\n}\n\nfunction build_HSL() {\n  for (let i = 0; i < stateStore.activities.length; i++) {\n    if (\n      stateStore.activities[i][1].direction !== \"received\" ||\n      stateStore.activities[i][1].origin === undefined\n    ) {\n      continue;\n    }\n    let found = false;\n    for (let ii = 0; ii < stateStore.heard_stations.length; ii++) {\n      if (\n        stateStore.heard_stations[ii].origin ===\n        stateStore.activities[i][1].origin\n      ) {\n        found = true;\n        if (\n          stateStore.heard_stations[ii].timestamp <\n          stateStore.activities[i][1].timestamp\n        ) {\n          stateStore.heard_stations[ii] = stateStore.activities[i][1];\n        }\n      }\n    }\n    if (!found) {\n      stateStore.heard_stations.push(stateStore.activities[i][1]);\n    }\n  }\n  stateStore.heard_stations.sort((a, b) => b.timestamp - a.timestamp);\n}\n\nexport function getOverallHealth() {\n  let health = 0;\n  if (stateStore.modem_connection !== \"connected\") {\n    health += 5;\n    stateStore.is_modem_running = false;\n    stateStore.radio_status = false;\n  }\n  if (!stateStore.is_modem_running) health += 3;\n  if (stateStore.radio_status === false) health += 2;\n  if (process.env.FDUpdateAvail === \"1\") health += 1;\n  return health;\n}\n"
  },
  {
    "path": "freedata_gui/src/js/event_sock.js",
    "content": "import {\n  eventDispatcher,\n  stateDispatcher,\n  connectionFailed,\n  loadAllData,\n} from \"../js/eventHandler.js\";\nimport { addDataToWaterfall } from \"../js/waterfallHandler.js\";\n\n// ----------------- init pinia stores -------------\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\nsetActivePinia(pinia);\n\nimport { useStateStore } from \"../store/stateStore.js\";\nconst state = useStateStore(pinia);\n\nfunction connect(endpoint, dispatcher) {\n  const { protocol, hostname, port } = window.location;\n  const wsProtocol = protocol === \"https:\" ? \"wss:\" : \"ws:\";\n  const adjustedPort = port === \"8080\" ? \"5000\" : port;\n  const socket = new WebSocket(\n    `${wsProtocol}//${hostname}:${adjustedPort}/${endpoint}`,\n  );\n\n  // handle opening\n  socket.addEventListener(\"open\", function () {\n    console.log(`Connected to the WebSocket server: ${endpoint}`);\n    // when connected again, initially load all data from server\n    loadAllData();\n    state.modem_connection = \"connected\";\n  });\n\n  // handle data\n  socket.addEventListener(\"message\", function (event) {\n    dispatcher(event.data);\n  });\n\n  // handle errors\n  socket.addEventListener(\"error\", function (event) {\n    connectionFailed(endpoint, event);\n  });\n\n  // handle closing and reconnect\n  socket.addEventListener(\"close\", function (event) {\n    console.log(`WebSocket connection closed: ${event.code}`);\n\n    // Reconnect handler\n    setTimeout(() => {\n      connect(endpoint, dispatcher);\n    }, 1000);\n  });\n}\n\n// Initial connection attempts to endpoints\nexport function initConnections() {\n  connect(\"states\", stateDispatcher);\n  connect(\"events\", eventDispatcher);\n  connect(\"fft\", addDataToWaterfall);\n}\n"
  },
  {
    "path": "freedata_gui/src/js/freedata.js",
    "content": "/**\n * Binary to ASCII replacement\n * @param {string} data in normal/usual utf-8 format\n * @returns base64 encoded string\n */\nexport function btoa_FD(data) {\n  //exports.btoa_FD = function (data) {\n  return Buffer.from(data, \"utf-8\").toString(\"base64\");\n}\n/**\n * ASCII to Binary replacement\n * @param {string} data in base64 encoding\n * @returns utf-8 normal/usual string\n */\nexport function atob_FD(data) {\n  //exports.atob_FD = function (data) {\n  return Buffer.from(data, \"base64\").toString(\"utf-8\");\n}\n/**\n * UTF8 to ASCII btoa\n * @param {string} data in base64 encoding\n * @returns base64 bota compatible data for use in browser\n */\nexport function atob(data) {\n  //exports.atob = function (data) {\n  return window.btoa(Buffer.from(data, \"base64\").toString(\"utf8\"));\n}\n//https://medium.com/@asadise/sorting-a-json-array-according-one-property-in-javascript-18b1d22cd9e9\n/**\n * Sort a json collection by a property ascending\n * @param {string} property property to sort on\n * @returns sorted json collection\n */\nexport function sortByProperty(property) {\n  return function (a, b) {\n    if (a[property] > b[property]) return 1;\n    else if (a[property] < b[property]) return -1;\n\n    return 0;\n  };\n}\n\n//https://medium.com/@asadise/sorting-a-json-array-according-one-property-in-javascript-18b1d22cd9e9\n/**\n * Sort a json collection by a property descending\n * @param {string} property property to sort on\n * @returns sorted json collection\n */\nexport function sortByPropertyDesc(property) {\n  return function (a, b) {\n    if (a[property] < b[property]) return 1;\n    else if (a[property] > b[property]) return -1;\n\n    return 0;\n  };\n}\n\n/**\n * Validate a call sign with SSID\n * @param {string} callsign callsign to check\n * @returns true or false if callsign appears to be valid with an SSID\n */\nexport function validateCallsignWithSSID(callsign) {\n  const patt = new RegExp(\"^[A-Za-z0-9]{1,7}-[0-9]{1,3}$\");\n  if (!callsign || !patt.test(callsign)) {\n    console.error(\n      `Call sign given is not in correct format or missing; callsign passed is: ${callsign}`,\n    );\n    return false;\n  }\n  return true;\n}\n\n/**\n * Validate a call sign without SSID\n * @param {string} callsign callsign to check\n * @returns true or false if callsign appears to be valid without an SSID\n */\nexport function validateCallsignWithoutSSID(callsign) {\n  const patt = new RegExp(\"^[A-Za-z0-9]{1,7}$\");\n  if (!callsign || !patt.test(callsign)) {\n    console.error(\n      `Call sign given is not in correct format or missing; callsign passed is: ${callsign}`,\n    );\n    return false;\n  }\n  return true;\n}\n\n/**\n * Get application data path based on the environment.\n * In a browser environment, this function now returns a fixed path or directory name.\n * @returns {string} path for storage\n */\nexport function getAppDataPath() {\n  // For browser environments, return the fixed path or directory name \"FreeDATA\".\n  return \"FreeDATA\"; // Adjust this value as needed for your application.\n}\n\n/**\n * Retrieve data from localStorage.\n * @param {string} key - The key of the data to retrieve.\n * @returns {string|null} The retrieved value or null if not found.\n */\nexport function getFromLocalStorage(key) {\n  try {\n    return localStorage.getItem(key);\n  } catch (error) {\n    console.error(\"Failed to retrieve data from localStorage:\", error);\n    return null;\n  }\n}\n\n/**\n * Remove data from localStorage.\n * @param {string} key - The key of the data to remove.\n */\nexport function removeFromLocalStorage(key) {\n  try {\n    localStorage.removeItem(key);\n  } catch (error) {\n    console.error(\"Failed to remove data from localStorage:\", error);\n  }\n}\n\n/**\n * Set GUI Color Mode.\n * @param {string} colorMOde - The colormode, light, dark, auto.\n */\nexport function applyColorMode(colorMode) {\n  // If set to \"auto\", detect the OS preference using matchMedia\n\n  console.log(colorMode);\n  if (colorMode === \"auto\") {\n    colorMode =\n      window.matchMedia &&\n      window.matchMedia(\"(prefers-color-scheme: dark)\").matches\n        ? \"dark\"\n        : \"light\";\n  }\n  // If it's an empty string, default to \"light\"\n  else if (colorMode === \"\") {\n    colorMode = \"light\";\n  }\n\n  // Apply the theme by setting the attribute on the document element\n  document.documentElement.setAttribute(\"data-bs-theme\", colorMode);\n}\n"
  },
  {
    "path": "freedata_gui/src/js/i18n.js",
    "content": "import i18next from \"i18next\";\n\n// Function to load translation JSON files from the locales folder.\n// It expects file names like \"en_english.json\" or \"de_deutsch.json\"\nfunction loadLocaleMessages() {\n  // Automatically load all JSON files in ../locales\n  const locales = require.context(\n    \"../locales\",\n    true,\n    /[A-Za-z0-9-_,\\s]+\\.json$/i,\n  );\n  const resources = {};\n  const availableLanguages = [];\n\n  locales.keys().forEach((key) => {\n    // Use regex to extract the ISO code and language name from the file name.\n    // For example, \"./en_english.json\" extracts iso: \"en\", name: \"english\"\n    const matched = key.match(/\\.\\/([^_]+)_([^.]+)\\.json$/i);\n    if (matched && matched.length > 2) {\n      const iso = matched[1];\n      const name = matched[2];\n      // Load the translation JSON file\n      const translations = locales(key);\n      // Wrap translations into the default namespace (\"translation\")\n      resources[iso] = { translation: translations };\n      availableLanguages.push({ iso, name });\n    }\n  });\n\n  return { resources, availableLanguages };\n}\n\nconst { resources, availableLanguages } = loadLocaleMessages();\n\ni18next.init(\n  {\n    lng: \"en\",\n    fallbackLng: \"en\",\n    resources,\n  },\n  (err) => {\n    if (err) {\n      console.error(\"i18next initialization error:\", err);\n    } else {\n      console.log(\"i18next is ready.\");\n    }\n  },\n);\n\nexport default i18next;\nexport { availableLanguages };\n"
  },
  {
    "path": "freedata_gui/src/js/messagesHandler.js",
    "content": "import { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\nsetActivePinia(pinia);\n\nimport { useChatStore } from \"../store/chatStore.js\";\nconst chatStore = useChatStore(pinia);\n\nimport {\n  sendFreedataMessage,\n  deleteFreedataMessage,\n  retransmitFreedataMessage,\n  getFreedataAttachmentBySha512,\n  getFreedataMessageById,\n  postFreedataMessageADIF,\n} from \"./api\";\nimport { useIsMobile } from \"@/js/mobile_devices\";\nconst { isMobile } = useIsMobile(768);\n\n/**\n * Process FreeDATA messages and update chat store.\n * @param {Object} data - The data object containing messages.\n */\nexport async function processFreedataMessages(data) {\n  if (data && Array.isArray(data.messages)) {\n    chatStore.callsign_list = createCallsignListFromAPI(data);\n    chatStore.sorted_chat_list = createSortedMessagesList(data);\n\n    if (!chatStore.selectedCallsign && !isMobile) {\n      chatStore.selectedCallsign = Object.keys(chatStore.sorted_chat_list)[0];\n    }\n  }\n}\n\n/**\n * Create a list of callsigns from the API data.\n * @param {Object} data - The data object containing messages.\n * @returns {Object} - The callsign list.\n */\nfunction createCallsignListFromAPI(data) {\n  const callsignList = {};\n  chatStore.totalUnreadMessages = 0;\n\n  data.messages.forEach((message) => {\n    const callsign =\n      message.direction === \"receive\" ? message.origin : message.destination;\n\n    // Increment global unread count if the message is not read.\n    if (!message.is_read) {\n      chatStore.totalUnreadMessages++;\n    }\n\n    // Create or update the callsign entry.\n    if (!callsignList[callsign]) {\n      callsignList[callsign] = {\n        timestamp: message.timestamp,\n        body: message.body,\n        unread_messages: !message.is_read ? 1 : 0,\n      };\n    } else {\n      // Update the unread count if the message is unread.\n      if (!message.is_read) {\n        callsignList[callsign].unread_messages++;\n      }\n      // Update stored details if this message is newer.\n      if (\n        new Date(message.timestamp) > new Date(callsignList[callsign].timestamp)\n      ) {\n        callsignList[callsign].timestamp = message.timestamp;\n        callsignList[callsign].body = message.body;\n      }\n    }\n  });\n\n  // Get the keys sorted in descending order by timestamp.\n  const sortedKeys = Object.keys(callsignList).sort(\n    (a, b) =>\n      new Date(callsignList[b].timestamp) - new Date(callsignList[a].timestamp),\n  );\n\n  // Rebuild the object with keys in sorted order.\n  const sortedCallsignList = {};\n  sortedKeys.forEach((key) => {\n    sortedCallsignList[key] = callsignList[key];\n  });\n\n  return sortedCallsignList;\n}\n\n/**\n * Create a sorted list of messages by callsign.\n * @param {Object} data - The data object containing messages.\n * @returns {Object} - The sorted messages list.\n */\nfunction createSortedMessagesList(data) {\n  const callsignMessages = {};\n\n  data.messages.forEach((message) => {\n    // Determine the callsign based on message direction.\n    const callsign =\n      message.direction === \"receive\" ? message.origin : message.destination;\n\n    if (!callsignMessages[callsign]) {\n      callsignMessages[callsign] = [];\n    }\n\n    callsignMessages[callsign].push(message);\n  });\n\n  return callsignMessages;\n}\n\n/**\n * Send a new FreeDATA message.\n * @param {string} dxcall - The callsign to send the message to.\n * @param {string} body - The message body.\n * @param {Array} attachments - The message attachments.\n */\nexport function newMessage(dxcall, body, attachments) {\n  sendFreedataMessage(dxcall, body, attachments);\n  chatStore.triggerScrollToBottom();\n}\n\n/**\n * Repeat the transmission of a message by its ID.\n * @param {string} id - The ID of the message.\n */\nexport function repeatMessageTransmission(id) {\n  retransmitFreedataMessage(id);\n}\n\n/**\n * Delete all messages associated with a callsign from the database.\n * @param {string} callsign - The callsign to delete messages for.\n */\nexport function deleteCallsignFromDB(callsign) {\n  for (const message of chatStore.sorted_chat_list[callsign]) {\n    deleteFreedataMessage(message.id);\n  }\n}\n\n/**\n * Delete a specific message by its ID from the database.\n * @param {string} id - The ID of the message.\n */\nexport function deleteMessageFromDB(id) {\n  deleteFreedataMessage(id);\n}\n\n/**\n * Send a specific message by its ID via ADIF UDP.\n * @param {string} id - The ID of the message.\n */\nexport function sendADIFviaUDP(id) {\n  postFreedataMessageADIF(id);\n}\n\n/**\n * Request information about a message by its ID\n * @param {string} id - The ID of the message.\n */\nexport function requestMessageInfo(id) {\n  return getFreedataMessageById(id)\n    .then((result) => {\n      console.log(result);\n\n      try {\n        chatStore.messageInfoById = JSON.parse(result);\n      } catch (error) {\n        console.error(\"Error parsing JSON:\", error);\n        chatStore.messageInfoById = null;\n      }\n\n      return result;\n    })\n    .catch((error) => {\n      console.error(\"Error fetching message:\", error);\n    });\n}\n\n/**\n * Retrieve an attachment by its SHA-512 hash.\n * @param {string} data_sha512 - The SHA-512 hash of the attachment.\n * @returns {Promise<Object>} - The attachment data.\n */\nexport async function getMessageAttachment(data_sha512) {\n  return await getFreedataAttachmentBySha512(data_sha512);\n}\n"
  },
  {
    "path": "freedata_gui/src/js/mobile_devices.js",
    "content": "import { ref, computed, onMounted, onUnmounted } from \"vue\";\n\nexport function useIsMobile(breakpoint = 720) {\n  const windowWidth = ref(window.innerWidth);\n\n  const updateWidth = () => {\n    windowWidth.value = window.innerWidth;\n  };\n\n  onMounted(() => window.addEventListener(\"resize\", updateWidth));\n  onUnmounted(() => window.removeEventListener(\"resize\", updateWidth));\n\n  const isMobile = computed(() => windowWidth.value < breakpoint);\n  return { isMobile, windowWidth };\n}\n"
  },
  {
    "path": "freedata_gui/src/js/popupHandler.js",
    "content": "import { v4 as uuidv4 } from \"uuid\";\nimport * as bootstrap from \"bootstrap\";\n\nexport function displayToast(type, icon, content, duration) {\n  const mainToastContainer = document.getElementById(\"mainToastContainer\");\n\n  const randomID = uuidv4();\n  const toastCode = `\n    <div class=\"toast align-items-center border-1 bg-body-tertiary\" id=\"${randomID}\" role=\"alert\" aria-live=\"assertive\" aria-atomic=\"true\">\n      <div class=\"d-flex\">\n        <div class=\"toast-body  p-0 m-0 rounded-2 w-100\">\n          <div class=\"row p-1 m-0\">\n            <div class=\"col-auto bg-${type} rounded-start rounded-2 d-flex align-items-center\">\n              <i class=\"bi ${icon}\" style=\"font-size: 1rem; color: white;\"></i>\n            </div>\n            <div class=\"col p-2\">\n              ${content}\n            </div>\n          </div>\n        </div>\n        <button type=\"button\" class=\"btn-close me-2 m-auto\" data-bs-dismiss=\"toast\" aria-label=\"Close\"></button>\n      </div>\n    </div>\n  `;\n\n  // Insert toast to toast container\n  mainToastContainer.insertAdjacentHTML(\"beforeend\", toastCode);\n\n  // Register toast\n  const toastHTMLElement = document.getElementById(randomID);\n  const toast = bootstrap.Toast.getOrCreateInstance(toastHTMLElement); // Returns a Bootstrap toast instance\n  toast._config.delay = duration;\n\n  // Show toast\n  toast.show();\n\n  // Register event listener to remove toast when hidden\n  toastHTMLElement.addEventListener(\n    \"hidden.bs.toast\",\n    function handleToastHidden() {\n      toastHTMLElement.removeEventListener(\n        \"hidden.bs.toast\",\n        handleToastHidden,\n      );\n      toastHTMLElement.remove();\n    },\n  );\n}\n"
  },
  {
    "path": "freedata_gui/src/js/radioHandler.js",
    "content": "// pinia store setup\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\nsetActivePinia(pinia);\n\nimport { useStateStore } from \"../store/stateStore\";\nconst stateStore = useStateStore(pinia);\n\nimport { getRadioStatus } from \"./api\";\n\nexport async function processRadioStatus() {\n  try {\n    let result = await getRadioStatus();\n\n    if (!result || typeof result !== \"object\") {\n      throw new Error(\"Invalid radio status\");\n    }\n\n    stateStore.mode = result.radio_mode;\n    stateStore.frequency = result.radio_frequency;\n    stateStore.rf_level = Math.round(result.radio_rf_level / 5) * 5; // round to 5er steps\n    stateStore.tuner = result.radio_tuner;\n  } catch (error) {\n    console.error(\"Error fetching radio status:\", error);\n    // Handle the error appropriately\n    // For example, you can set default values or update the UI to indicate an error\n    stateStore.mode = \"unknown\";\n    stateStore.frequency = 0;\n    stateStore.rf_level = 0;\n    stateStore.tuner = \"unknown\";\n  }\n}\n"
  },
  {
    "path": "freedata_gui/src/js/stationHandler.js",
    "content": "import { useStationStore } from \"../store/stationStore.js\";\nconst station = useStationStore();\n\nimport { getStationInfo, setStationInfo } from \"../js/api\";\n\nexport async function getStationInfoByCallsign(callsign) {\n  try {\n    const result = await getStationInfo(callsign);\n\n    // Check if info is null and assign default values if it is\n    if (\n      result == null ||\n      typeof result === \"undefined\" ||\n      result.info == null\n    ) {\n      station.stationInfo.callsign = \"N/A\";\n      station.stationInfo.location.gridsquare = \"N/A\";\n      station.stationInfo.info = {\n        name: \"\",\n        city: \"\",\n        age: \"\",\n        radio: \"\",\n        antenna: \"\",\n        email: \"\",\n        website: \"\",\n        socialMedia: {\n          facebook: \"\",\n          \"twitter-x\": \"\",\n          mastodon: \"\",\n          instagram: \"\",\n          linkedin: \"\",\n          youtube: \"\",\n          tiktok: \"\",\n        },\n        comments: \"\",\n      };\n    } else {\n      station.stationInfo.callsign = result.callsign || \"N/A\";\n      station.stationInfo.location.gridsquare =\n        result.location?.gridsquare || \"N/A\";\n\n      station.stationInfo.info = {\n        name: result.info.name || \"\",\n        city: result.info.city || \"\",\n        age: result.info.age || \"\",\n        radio: result.info.radio || \"\",\n        antenna: result.info.antenna || \"\",\n        email: result.info.email || \"\",\n        website: result.info.website || \"\",\n        socialMedia: {\n          facebook: result.info.socialMedia.facebook || \"\",\n          \"twitter-x\": result.info.socialMedia[\"twitter-x\"] || \"\",\n          mastodon: result.info.socialMedia.mastodon || \"\",\n          instagram: result.info.socialMedia.instagram || \"\",\n          linkedin: result.info.socialMedia.linkedin || \"\",\n          youtube: result.info.socialMedia.youtube || \"\",\n          tiktok: result.info.socialMedia.tiktok || \"\",\n        },\n        comments: result.info.comments || \"\",\n      };\n    }\n  } catch (error) {\n    console.error(\"Error fetching station info:\", error);\n  }\n}\n\nexport async function setStationInfoByCallsign(callsign) {\n  console.log(station.stationInfo);\n  setStationInfo(callsign, station.stationInfo);\n}\n"
  },
  {
    "path": "freedata_gui/src/js/waterfallHandler.js",
    "content": "import { Spectrum } from \"../assets/waterfall/spectrum.js\";\n\nimport { setActivePinia } from \"pinia\";\nimport pinia from \"../store/index\";\nsetActivePinia(pinia);\n\nimport { settingsStore as settings } from \"../store/settingsStore.js\";\n\nvar spectrum = new Object();\nvar spectrums = [];\nexport function initWaterfall(id) {\n  spectrum = new Spectrum(id, {\n    spectrumPercent: 0,\n    wf_rows: 1024, //Assuming 1 row = 1 pixe1, 192 is the height of the spectrum container\n    wf_size: 1024,\n  });\n  spectrum.setColorMap(settings.local.wf_theme);\n  spectrums.push(spectrum);\n  return spectrum;\n}\n\nexport function addDataToWaterfall(data) {\n  data = JSON.parse(data);\n  if (data.constructor !== Array) return;\n  spectrums.forEach((element) => {\n    //console.log(element);\n    element.addData(data);\n  });\n  //window.dispatchEvent(new CustomEvent(\"wf-data-avail\", {bubbles:true, detail: data }));\n}\n/**\n * Setwaterfall colormap array by index\n * @param {number} index colormap index to use\n */\nexport function setColormap() {\n  let index = settings.local.wf_theme;\n  if (isNaN(index)) index = 0;\n  console.log(\"Setting waterfall colormap to \" + index);\n  spectrums.forEach((element) => {\n    //console.log(element);\n    element.setColorMap(index);\n  });\n}\n"
  },
  {
    "path": "freedata_gui/src/locales/cz_Čeština.json",
    "content": "{\n    \"general\": {\n        \"bytes\": \"Bajty\",\n        \"size\": \"Velikost\",\n        \"speed\": \"Rychlost\",\n        \"statistics\": \"Statistika\",\n        \"duration\": \"Trvání\",\n        \"chart\": \"Graf\",\n        \"dxcallsign\": \"dxcallsign\",\n        \"destination\": \"cíl\",\n        \"stop\": \"Zastavit\",\n        \"modem\": \"Modem\",\n        \"frequency\": \"frekvence\"\n    },\n    \"popups\": {\n        \"startupfailed\": \"Nepovedlo se zapnout modem - špatná konfigurace?\",\n        \"connectedtoserver\": \"Připojeno k serveru\",\n        \"cqreceived\": \"Přijato CQ\",\n        \"gridsquare\": \"Mřížka\",\n        \"snr\": \"SNR\",\n        \"qrvreceived\": \"přijato QRV\",\n        \"pingreceived\": \"přijat PING\",\n        \"pingackreceived\": \"PING ACK received\",\n        \"newtransmissionwith\": \"Nové spojení s\",\n        \"sessionid\": \"ID sezení\",\n        \"totalbytes\": \"Celkem bajtu\",\n        \"openingtransmissionwith\": \"Otevírám spojení s\",\n        \"ongoingtransmissionwith\": \"Probíhající spojené s\",\n        \"transmittedbytes\": \"Odeslané Bajty\",\n        \"transmissionabortedwith\": \"Spojení ZRUŠENO s\",\n        \"state\": \"stav\",\n        \"transmissionendedwith\": \"Spojení UKONČENO s\",\n        \"bytesperminute\": \"Bajtu za minutu\",\n        \"transmissionfailedwith\": \"Spojení se NEPOVEDLO s\",\n        \"confirmingtransmissionwith\": \"Confirming transmission with\",\n        \"receivedbytes\": \"Přijaté Bajty\"\n    },\n    \"navbar\": {\n        \"frequency_help\": \"Jaká je frekvence, Kennethe?\",\n        \"speedlevel_help\": \"Rychlost\",\n        \"totalbytes_help\": \"Total bytes of transmission\",\n        \"connectedstation_help\": \"Aktuální nebo poslední stanice\",\n        \"from\": \"od\",\n        \"to\": \"pro\",\n        \"pttstate_help\": \"PTT trigger state\",\n        \"modemstate_help\" : \"Stav modemu\",\n        \"bytestransferred\": \"Bytes transferred\",\n        \"modemcheck\": \"Healthcheck\",\n        \"modemcheck_help\": \"Stav FreeDATA\",\n        \"home\": \"Domu\",\n        \"home_help\": \"Domu\",\n        \"chat\": \"RF Konverzace\",\n        \"chat_help\": \"RF Konverzace\",\n        \"settings\": \"Nastavení\",\n        \"settings_help\": \"Nastavení\",\n        \"station\": \"Stanice\",\n        \"station_help\": \"Nastavuje informace o stanici\"\n\n    },\n    \"grid\": {\n        \"frequencydescription\": \"Commonly used frequencies are listed here, and are all USB. Simply click on a entry or manually enter a frequency in the textbox to tune your rig if rig control is enabled.\",\n        \"frequencyselection\": \"Frequency selection\",\n        \"savepreset\": \"Uložit preset\",\n        \"savepreset_help\": \"Save current grid layout as a preset that can be restored using restore preset button\",\n        \"restorepreset\": \"Obnovit preset\",\n        \"restorepreset_help\": \"Restore your saved grid preset (clears current grid)\",\n        \"cleargrid\": \"Smazat mřížku\",\n        \"cleargrid_help\": \"Odebere všechny widgety z mřížky\",\n        \"gridedit\": \"úprava mřížky\",\n        \"managegridwidgets\": \"Manage grid widgets\",\n        \"gridwidgetsdescription\": \"Grid widgets allow you to customize the display. You may add additional widgets to fit your needs. You can move and resize the individual widgets!\",\n        \"fillgrid\": \"Vyplnit mřížku common widgety\",\n        \"fillgridsmallscreen\": \"Vyplnit mřížku pro malé obrazovky\",\n        \"activity\": \"Aktivita\",\n        \"audio\": \"Audio\",\n        \"broadcasts\": \"Broadcasts\",\n        \"radiocontrol\": \"Radio control/Status\",\n        \"statistics\": \"Statistika\",\n        \"other\": \"Ostatní\",\n        \"components\": {\n            \"tune\": \"Ladění\",\n            \"stop_help\": \"Zruší všechny probíhající spojení\",\n            \"transmissioncharts\": \"Graf přenosu\",\n            \"scatterdiagram\": \"Bodový diagram\",\n            \"onair\": \"on air\",\n            \"ping\": \"Ping\",\n            \"ping_help\": \"Send a ping request to a remote station\",\n            \"heardstations\": \"Heard Stations\",\n            \"time\": \"Čas\",\n            \"freq\": \"Frekvence\",\n            \"dxcall\": \"DXCall\",\n            \"grid\": \"Lokátor\",\n            \"dist\": \"Vzdálenost\",\n            \"type\": \"Typ\",\n            \"snr\": \"SNR\",\n            \"afk\": \"AFK?\",\n            \"audio\": \"Audio\",\n            \"broadcasts\": \"Broadcasts\",\n            \"transmitting\": \"Odesálání...\",\n            \"pingstation\": \"PING Stanice\",\n            \"sendingping\": \"Sending PING...\",\n            \"sendingcq\": \"Odesilám CQ...\",\n            \"callcq\": \"Výzva CQ\",\n            \"cqcqcq\": \"CQ CQ CQ\",\n            \"togglebeacon\": \"toggle beacon\",\n            \"togglebeacon_help\": \"Toggle beacon mode. While sending a beacon, you can receive ping requests and open a datachannel. If a datachannel is opened, the beacon pauses.\",\n            \"enablebeacon\": \"Enable beacon\",\n            \"awayfromkey\": \"Away from key\",\n            \"radiocontrol\": \"Ovládání rádia\",\n            \"radiocontrolmode\": \"Mód\",\n            \"powerpercent\": \"% výkonu\",\n            \"tuner\": \"Tuner\",\n            \"activity\": \"Aktivita\",\n            \"beacon\": \"Maják\",\n            \"active\": \"Aktivní\",\n            \"inactive\": \"Neaktivní\",\n            \"connected\": \"Připojeno\",\n            \"disconnected\": \"Odpojeno\",\n            \"online\": \"Online\",\n            \"offline\": \"Offline\",\n            \"received\": \"přijato\",\n            \"transmitted\": \"odesláno\",\n            \"msgstatustransmitting\": \"Odesílání\",\n            \"msgstatustransmitted\": \"Odeslána\",\n            \"msgstatusfailed\": \"Chyba při odesílání\",\n            \"msgstatusqueued\": \"Ve frontě\"\n        }\n    },\n    \"modals\": {\n        \"close\": \"Zavřít\",\n        \"options\": \"Options\",\n        \"savechanges\": \"Uložit změny\",\n        \"beaconhistogram\": \"Beacon histogram\",\n        \"furtheroptions\": \"Further options\",\n        \"deletechat\": \"Smazat konverzaci\",\n        \"startnewchat\": \"Zahájit novou konverzaci\",\n        \"newchatline1\": \"Zadej cílovou volačku\",\n        \"newchatline2\": \"Napiš první zprávu\",\n        \"newchatline3\": \"Klikni na ZAHÁJIT NOVOU KONVERZACI\",\n        \"newchatline4\": \"Zprávu najdeš vlevo v RF Konverzacích\",\n        \"firstmessage\": \"První Zpráva\",\n        \"audiotuning\": \"Audio tuning\",\n        \"audiotuninginfo\": \"Adjust audio levels. Value in dB. Default value is 0\",\n        \"testframe\": \"Testovací rámec\",\n        \"testframetransmit\": \"Vysílání ( 5s )\",\n        \"audiotuningrxlevel\": \"RX Level\",\n        \"audiotuningtxlevel\": \"TX Level,\",\n        \"audiotuningtransmitsine\": \"Vysílání sinusovky\",\n        \"audiotuningtransmitsine30s\": \"Vysílání (max 30s)\",\n        \"systemcheck\": \"Kontrola systému\",\n        \"reloadgui\": \"Přenačíst GUI\",\n        \"network\": \"Síť\",\n        \"remoteinfo\": \"For remote operation, please go to settings/modem and set the server ip to 0.0.0.0\",\n        \"apiurl\": \"API Url\",\n        \"furthersettings\": \"For further settings please go to settings/modem\",\n        \"restartserveronproblem\": \"In case of unusual problems, you can reload the internal modem manually. If the problem persists, consider a server restart.\",\n        \"manualmodemrestart\": \"Manual modem restart\",\n        \"manualmodemrestart_help\": \"Restart the modem. Please set your audio and radio settings first!\",\n        \"radiocontrol\": \"Radio control\",\n        \"radiocontrolinfo\": \"This is just a quick setting! For further options, please go to settings/rig control\",\n        \"rigcontrolmethod\": \"Rig control method\",\n        \"rigcontrolmethoddisabled\": \"Disabled ( no rig control; use with VOX)\",\n        \"rigcontrolmethodserialptt\": \"Serial PTT via DTR/RTS\",\n        \"rigcontrolmethodrigctld\": \"Rigctld ( external Hamlib instance)\",\n        \"rigcontrolmethodrigctldbundle\": \"Rigctld ( internal Hamlib)\",\n        \"radioport\": \"Radio port\",\n        \"testhamlib\": \"Test Hamlib\",\n        \"systeminfo\": \"System info\",\n        \"systeminfoalert\": \"Zašlete následující informace při hlášení chyby\",\n        \"apiinformation\": \"API Information\",\n        \"apiversion\": \"API Version\",\n        \"modemversion\": \"Modem Version\",\n        \"osinfo\": \"Operating System Information\",\n        \"system\": \"System\",\n        \"node\": \"Node\",\n        \"release\": \"Release\",\n        \"version\": \"Version\",\n        \"machine\": \"Machine\",\n        \"processor\": \"Processor\",\n        \"pythoninformation\": \"Python Information\",\n        \"build\": \"Build\",\n        \"compiler\": \"Compiler\",\n        \"branch\": \"Branch\",\n        \"implementation\": \"Implementation\",\n        \"revision\": \"Revision\"\n    },\n    \"chat\": {\n        \"startnewchat\": \"Zahájit novou konverzaci\",\n        \"insertemoji\": \"Vložit Emotikonu\",\n        \"entermessage_placeholder\": \"Zpráva - Odešlete stiskem kl. [Enter]\",\n        \"attempt\": \"pokus\",\n        \"utc\": \"UTC\",\n        \"adif\": \"ADIF\"\n    },\n    \"settings\": {\n        \"enable\": \"Aktivovat\",\n        \"default\": \"Výchozí\",\n        \"reload\": \"Přenačíst\",\n        \"tabstation\": \"Stanice\",\n        \"tabgui\": \"GUI\",\n        \"tabradiocontrol\":\"Rig Control\",\n        \"tabmodem\": \"Modem\",\n        \"tabchat\": \"Zprávy\",\n        \"tabexperimental\": \"Exp\",\n        \"tabweb\": \"Web\",\n        \"tablinks\": \"Odkazy\",\n        \"gui\": {\n            \"introduction\": \"GUI související nastavení, jako je přizpůsobení vodopádového motivu, jazyka nebo chování prohlížeče.\",\n            \"browserautolaunch\": \"Automaticky spustit prohlížeč\",\n            \"browserautolaunch_help\": \"Automaticy otevře prohlížeč s GUI odkazem při startu serveru\",\n            \"selectlanguage\": \"Zvolte jazyk\",\n            \"selectlanguage_help\": \"Nastaví preferovaný jazyk pro GUI\",\n            \"waterfalltheme\": \"Téma vodopádu\",\n            \"waterfalltheme_help\": \"Nastaví barevné téma pro vodopád\"\n        },\n        \"station\": {\n            \"introduction\": \"Nastavení stanice, volací značka, lokátor a základní chování.\\n\",\n            \"callsign\": \"Volací značka\",\n            \"callsign_help\": \"Zadej platnou volací značku (Maximálně 7 znaku, bez speciálních znaku)\",\n            \"callsign_placeholder\": \"Zadej svoji volací značku a ulož ji\",\n            \"callsignssid\": \"SSID\",\n            \"callsignssid_help\": \"Nastaví SSID pro tuto stanici\",\n            \"locator\": \"Lokátor\",\n            \"locator_help\": \"Zadej lokátor (Maximálně 6 znaku; kratší bude náhodný)\",\n            \"locator_placeholder\": \"Tvuj lokátor\",\n            \"respondtocq\": \"Odpovědět na výzvu pomocí QRV odpovědi\",\n            \"respondtocq_help\": \"QRV Odpovědět je odeslána s náhodným zpožděním\",\n            \"enablecallsignblacklist\": \"Aktivovat černou listinu volacích značek\",\n            \"enablecallsignblacklist_help\": \"Ignoruje požadavky od volacích značek na černé listině\",\n            \"callsignblacklist\": \"Černá listina volacích značek\",\n            \"callsignblacklist_placeholder\": \"Seznam volacích značek\",\n            \"callsignblacklist_help\": \"Jedna volací značka na řádek\"\n        },\n        \"chat\": {\n            \"introduction\": \"Nastavení zpráv, automatické opakování a konfigurace ADIF připojení.\",\n            \"enablemessageautorepeat\": \"Aktivovat automatické opakování zpráv\",\n            \"enablemessageautorepeat_help\": \"Pokusí se znovu odeslat zprávu při obdržení beaconu\",\n            \"enableadifloggingudp\": \"Aktivovat adif logování přes UDP\",\n            \"adifloggingudphost\": \"ADIF logovací UDP hostitel\",\n            \"adifloggingudphost_help\": \"ADIF server, např., 127.0.0.1\",\n            \"adifloggingudphost_placeholder\": \"Zadej ADIF server\",\n            \"adifloggingudpport\": \"ADIF logovací UDP port\",\n            \"adifloggingudpport_help\": \"ADIF server port, e.g., 2237\",\n            \"adifloggingudpport_placeholder\": \"Zadej ADIF server port\",\n            \"adifloggingwavelog\": \"Aktivovat logování pomocí Wavelog API\",\n            \"enableadifloggingwavelog_help\": \"Aktivuje ADIF logování pomocí Wavelog\",\n            \"adifloggingwaveloghost\": \"Wavelog API hostitel\",\n            \"adifloggingwaveloghost_placeholder\": \"Zadej hostitele\",\n            \"adifloggingwaveloghost_help\": \"Wavelog API server, např., 127.0.0.1\",\n            \"adifloggingwavelogapi\": \"Wavelog API klíč\",\n            \"adifloggingwavelogapi_placeholder\": \"Zadej API klíč\",\n            \"adifloggingwavelogapi_help\": \"Zadej Wavelog API klíč\"\n        },\n        \"modem\": {\n            \"introduction\": \"Modem and Audio related settings, including starting/stopping the modem, configuring audio devices, and adjusting audio levels.\",\n            \"serverrestart_notification\": \"Červeně označená nastavení vyžaduji restart serveru!\",\n            \"restartserver\": \"Manualní ovládání modemu\",\n            \"restartserver_help\": \"Zapne nebo vypne modem. Nejprve se ujištěte, že máte nastavené audio a modem.\",\n            \"modemport\": \"Modem port\",\n            \"modemport_help\": \"Set the modem port. A server restart is required\",\n            \"modemhost\": \"Modem host\",\n            \"modemhost_help\": \"set the modem host address. A server restart is required\",\n            \"audioinputdevice\": \"Vstupní zvukové zařízení\",\n            \"audioinputdevice_help\": \"Vyber mikrofon nebo line-in zařízení\",\n            \"audiooutputdevice\": \"Výstupní zvukové zařízení\",\n            \"audiooutputdevice_help\": \"Vyber reproduktor nebo line-out zařízení\",\n            \"rxaudiolevel\": \"Hlasitost přijmu\",\n            \"rxaudiolevel_help\": \"Nastavuje zesílení hlasitosti přijmu\",\n            \"txaudiolevel\": \"hlasitost vysílání\",\n            \"txaudiolevel_help\": \"Nastavuje zesílení hlasitosti vysílání\",\n            \"txdelay\": \"Spoždění vysílání v ms\",\n            \"txdelay_help\": \"O kolik pozdeji se ma zahájit vysílání, v milisekundách\",\n            \"maximumbandwidth\": \"Maximální šířka pásma\",\n            \"maximumbandwidth_help\": \"Nastaví maximálně použitou šířku pásma\"\n        },\n        \"web\": {\n            \"introduction\": \"Explorer related settings, including enabling Explorer publishing and Explorer stats publishing.\",\n            \"description\": \" Publish information like your frequency or heard stations to https://explorer.freedata.app, so other users can see your stations status. Publishing stats is currently under development and might be broken.\",\n            \"enableexplorer\": \"Odeslat detajly stanice\",\n            \"enableexplorer_help\": \"Sdílí informace o stanici s FreeDATA webovou službou.\",\n            \"enablestats\":\"Odesílat statistiky\",\n            \"enablestats_help\": \"Sdílí statistky o stanici s FreeDATA webovou službou.\"\n        },\n        \"exp\": {\n            \"introduction\": \"Varování: Tyto funkce mohou být nekompletní. Určenou pouze pro zkušené uživatele!\",\n            \"info\": \"Info: Zatím nejsou dostupné žádné experimentální funkce.\"\n        },\n        \"radio\": {\n            \"introduction\": \"Rig Control related settings, including selecting your rig control method and configuring specific settings.\",\n            \"info\": \"Please select Rig Control first.\",\n            \"rigcontroltype\": \"Rig Control\",\n            \"rigcontroltype_help\": \"Choose how the software controls your radio\",\n            \"tabhamlib\": \"Hamlib\",\n            \"tabserial\": \"Seriová linka\",\n            \"serialpttcomport\": \"PTT Com port\",\n            \"serialpttcomport_help\": \"Select the COM port connected to your radio for PTT control\",\n            \"serialpttcustomcomport\": \"PTT Custom COM port\",\n            \"serialpttcustomcomport_help\": \"Override the com port of your radio if its not listed above\",\n            \"serialpttviadtr\": \"PTT pomocí DTR\",\n            \"serialpttviadtr_help\": \"Configure DTR line behavior for PTT control\",\n            \"serialpttviarts\": \"PTT pomocí RTS\",\n            \"serialpttviarts_help\": \"Configure RTS line behavior for PTT control\",\n            \"hamlibrigctldenablevfo\": \"Rigctld VFO parameter\",\n            \"hamlibrigctldenablevfo_help\": \"Enable VFO support in rigctld\",\n            \"hamlibrigctldhost\": \"Rigctld IP\",\n            \"hamlibrigctldhost_help\": \"Enter the IP address of the rigctld server\",\n            \"hamlibrigctldhost_placeholder\": \"Enter Rigctld IP\",\n            \"hamlibrigctldport\": \"Rigctld Port\",\n            \"hamlibrigctldport_help\": \"Enter the port number of the rigctld server\",\n            \"hamlibrigctldport_placeholder\": \"Enter Rigctld Port\",\n            \"hamlibrigctldradiomodel\": \"Radio model\",\n            \"hamlibrigctldradiomodel_help\": \"Select your radio model for rig control\",\n            \"hamlibrigctldcomport\": \"Radio COM port\",\n            \"hamlibrigctldcomport_help\": \"Select the serial port connected to your radio\",\n            \"hamlibrigctldcustomcomport\": \"Radio custom COM port\",\n            \"hamlibrigctldcustomcomport_help\": \"Override the com port of your radio if its not listed above\",\n            \"hamlibrigctldserialspeed\": \"Rychlost\",\n            \"hamlibrigctldserialspeed_help\": \"Set the baud rate for serial communication\",\n            \"hamlibrigctlddatabits\": \"Počet data bitu\",\n            \"hamlibrigctlddatabits_help\": \"Choose the number of data bits\",\n            \"hamlibrigctldstopbits\": \"Počet stop bitu\",\n            \"hamlibrigctldstopbits_help\": \"Set the baud rate for serial communication\",\n            \"hamlibrigctldhandshake\": \"Choose the number of stop bits\",\n            \"hamlibrigctldhandshake_help\": \"Set the serial handshake method\",\n            \"hamlibrigctldpttdeviceport\": \"PTT device port\",\n            \"hamlibrigctldpttdeviceport_help\": \"Select the port used for PTT control\",\n            \"hamlibrigctldptttype\": \"Typ klíčování\",\n            \"hamlibrigctldptttype_help\": \"Select the method for PTT control\",\n            \"hamlibrigctlddcd\": \"DCD\",\n            \"hamlibrigctlddcd_help\": \"Select the Data Carrier Detect method\",\n            \"hamlibrigctlddtr\": \"DTR\",\n            \"hamlibrigctlddtr_help\": \"Set the DTR line state\",\n            \"hamlibrigctldcommand\": \"Rigctld příkaz\",\n            \"hamlibrigctldcommand_help\": \"Auto-populated command based on settings\",\n            \"hamlibrigctldcommand_placeholder\": \"Auto-populated from above settings\",\n            \"hamlibrigctldcustomarguments\": \" Rigctld custom arguments\",\n            \"hamlibrigctldcustomarguments_help\": \"Additional arguments for rigctld (usually not needed)\",\n            \"hamlibrigctldcustomarguments_placeholder\": \"Optional custom arguments\"\n        }\n    }\n}\n"
  },
  {
    "path": "freedata_gui/src/locales/de_Deutsch.json",
    "content": "{\n    \"general\": {\n        \"bytes\": \"Bytes\",\n        \"size\": \"Größe\",\n        \"speed\": \"Geschwindigkeit\",\n        \"statistics\": \"Statistik\",\n        \"duration\": \"Dauer\",\n        \"chart\": \"Tabelle\",\n        \"dxcallsign\": \"dxcallsign\",\n        \"destination\": \"Ziel\",\n        \"stop\": \"Stop\",\n        \"modem\": \"Modem\",\n        \"frequency\": \"Frequenz\"\n    },\n    \"popups\": {\n        \"startupfailed\": \"Modemstart fehlgeschlagen - fehlerhafte Konfiguration?\",\n        \"connectedtoserver\": \"Mit dem Server verbunden\",\n        \"cqreceived\": \"CQ empfangen\",\n        \"gridsquare\": \"Grid Square\",\n        \"snr\": \"SNR\",\n        \"qrvreceived\": \"QRV empfangen\",\n        \"pingreceived\": \"PING empfangen\",\n        \"pingackreceived\": \"PING ACK empfangen\",\n        \"newtransmissionwith\": \"Neue Übertragung mit\",\n        \"sessionid\": \"Session ID\",\n        \"totalbytes\": \"Gesamt bytes\",\n        \"openingtransmissionwith\": \"Start der Übertragung mit\",\n        \"ongoingtransmissionwith\": \"Laufende Übertragung mit\",\n        \"transmittedbytes\": \"Übertragene Bytes\",\n        \"transmissionabortedwith\": \"Übertragung ABGEBROCHEN mit\",\n        \"state\": \"Status\",\n        \"transmissionendedwith\": \"Übertragung BEENDET mit\",\n        \"bytesperminute\": \"Bytes pro Minute\",\n        \"transmissionfailedwith\": \"Übertragung FEHLGESCHLAGEN mit\",\n        \"confirmingtransmissionwith\": \"Bestätige Übertragung mit\",\n        \"receivedbytes\": \"Empfangene Bytes\",\n\t    \"adiflogheader\": \"ADIF\",\n        \"adiflogtext1\": \"QSO mit\",\n        \"adiflogtext2\": \"Zum Log hinzugefügt.\",\n        \"adiflogerror\": \"ADIF Export-Fehler\"\n    },\n    \"navbar\": {\n        \"frequency_help\": \"Wie ist die Frequenz?\",\n        \"speedlevel_help\": \"Speed Level\",\n        \"totalbytes_help\": \"Gesamtanzahl der übertragenen Bytes\",\n        \"connectedstation_help\": \"Aktuelle oder zuletzt verbundene Station\",\n        \"from\": \"von\",\n        \"to\": \"zu\",\n        \"pttstate_help\": \"PTT Status\",\n        \"modemstate_help\": \"Modemstatus\",\n        \"bytestransferred\": \"Bytes übertragen\",\n        \"modemcheck\": \"System Status\",\n        \"modemcheck_help\": \"FreeDATA Status prüfen\",\n        \"home\": \"Home\",\n        \"home_help\": \"Home\",\n        \"chat\": \"HF Chat\",\n        \"chat_help\": \"HF Chat\",\n        \"settings\": \"Einstellungen\",\n        \"settings_help\": \"Einstellungen\",\n        \"station\": \"Station\",\n        \"station_help\": \"Stationsinfo setzen\"\n    },\t\t   \n    \"grid\": {\n        \"frequencydescription\": \"Häufig verwendete Frequenzen (alle in USB) sind hier aufgelistet. Klicke einfach auf einen Eintrag oder gebe manuell eine Frequenz in das Textfeld ein, um den Transceiver abzustimmen. Nur bei aktivierter Hamlib-Steuerung.\",\n        \"frequencyselection\": \"Auswahl der Frequenz\",\n        \"savepreset\": \"Voreinstellung speichern\",\n        \"savepreset_help\": \"Speichern des aktuellen Rasterlayouts als Voreinstellung. Kann mit der Schaltfläche 'Voreinstellung laden' wiederhergestellt werden.\",\n        \"restorepreset\": \"Voreinstellung laden\",\n        \"restorepreset_help\": \"Wiederherstellen des gespeicherten Rasterlayouts (löscht das aktuelle Layout)\",\n        \"cleargrid\": \"Raster löschen\",\n        \"cleargrid_help\": \"Alle Elemente aus dem Raster löschen\",\n        \"gridedit\": \"Raster editieren\",\n        \"managegridwidgets\": \"Raster-Widgets verwalten\",\n        \"gridwidgetsdescription\": \"Mit Raster-Widgets kann man die Oberfläche individualisieren. Du kannst zusätzliche Widgets hinzufügen, die Deinen Bedürfnissen entsprechen. Einzelne Widgets lassen sich verschieben und in der Größe verändern!\",\n        \"fillgrid\": \"Raster mit gängigen Widgets füllen\",\n        \"fillgridsmallscreen\": \"Raster für kleine Bildschirme ausfüllen\",\n        \"activity\": \"Aktivität\",\n        \"audio\": \"Audio\",\n        \"broadcasts\": \"Broadcasts\",\n        \"radiocontrol\": \"Transceiversteuerung/Status\",\n        \"statistics\": \"Statistik\",\n        \"other\": \"Diverses\",\n        \"uploadpreset\": \"Einstell. Hochladen\",\n        \"uploadpreset_help\": \"Lade eine Datei mit GUI-Einstellungen hoch\",\n        \"downloadpreset\": \"Einstell. Herunterladen\",\n        \"downloadpreset_help\": \"Lade die GUI-Einstellungen herunter um sie zu speichern und zu teilen\",\n        \"components\": {\n            \"tune\": \"Tune\",\n            \"stop_help\": \"Sitzung abbrechen und Aussendung beenden\",\n            \"transmissioncharts\": \"Übertragungs-Diagramme\",\n            \"scatterdiagram\": \"Streuungs-Diagramm\",\n            \"onair\": \"on air\",\n            \"ping\": \"Ping\",\n            \"ping_help\": \"Sende eine Ping-Anfrage an eine entfernte Station\",\n            \"newmessage_help\": \"Sende eine neue Nachricht an eine entfernte Station\",\n            \"startnewchat_help\": \"Beginne oder setze einen Chat mit einer entfernten Station fort\", \n            \"heardstations\": \"gehörte Stationen\",\n            \"time\": \"Zeit\",\n            \"freq\": \"Freq\",\n            \"dxcall\": \"DXCall\",\n            \"grid\": \"Grid\",\n            \"dist\": \"Entf\",\n            \"type\": \"Typ\",\n            \"snr\": \"SNR\",\n            \"afk\": \"AFK?\",\n            \"audio\": \"Audio\",\n            \"broadcasts\": \"Broadcasts\",\n            \"transmitting\": \"Sende...\",\n            \"pingstation\": \"PING Station\",\n            \"sendingcq\": \"Sende CQ...\",\n\t    \"sendingping\": \"Sende PING...\",\n            \"callcq\": \"CQ rufen\",\n            \"cqcqcq\": \"CQ CQ CQ\",\n            \"cqcqcq_help\": \"Sende ein CQ\",\n            \"togglebeacon\": \"Bake einschalten\",\n            \"togglebeacon_help\": \"Umschalten auf Baken-Modus. Im Baken-Modus kann man Ping-Anfragen empfangen und einen Datenkanal öffnen. Wenn ein Datenkanal geöffnet wird, wird das aussenden von Baken pausiert.\",\n            \"enablebeacon\": \"Bake einschalten\",\n            \"awayfromkey\": \"Away from key\",\n            \"radiocontrol\": \"Transceiversteuerung\",\n            \"radiocontrolmode\": \"Mode\",\n            \"powerpercent\": \"% Leistung\",\n            \"tuner\": \"Tuner\",\n            \"activity\": \"Aktivität\",\n            \"beacon\": \"Bake\",\n\t    \"active\": \"Aktiv\",\n            \"inactive\": \"Inaktiv\",\n            \"connected\": \"Verbunden\",\n            \"disconnected\": \"Getrennt\",\n            \"online\": \"Online\",\n            \"offline\": \"Offline\",\n            \"received\": \"empfangen\",\n            \"transmitted\": \"gesendet\",\n \t        \"msgstatustransmitting\": \"Übermittlung\",\n            \"msgstatustransmitted\": \"Übermittelt\",\n            \"msgstatusfailed\": \"Fehlgeschlagen\",\n            \"msgstatusqueued\": \"Warteschlange\"\n        }\n    },\n    \"modals\": {\n        \"close\": \"Schließen\",\n        \"options\": \"Optionen\",\n        \"savechanges\": \"Änderungen speichern\",\n        \"beaconhistogram\": \"Baken-Histogramm\",\n        \"furtheroptions\": \"Weitere Optionen\",\n        \"deletechat\": \"Chat löschen\",\n        \"startnewchat\": \"Neuen Chat starten\",\n\t    \"startnewchat2\": \"Neuen Chat starten (zuerst entferntes Rufzeichen eingeben)\",\n        \"newchatline1\": \"Zielrufzeichen eingeben\",\n        \"newchatline2\": \"Erste Nachricht eingeben\",\n        \"newchatline3\": \"Klicke NEUEN CHAT STARTEN\",\n        \"newchatline4\": \"Überprüfe die Chat-Registerkarte auf der linken Seite auf Nachrichten\",\n        \"firstmessage\": \"Erste Nachricht\",\n        \"audiotuning\": \"Audio tuning\",\n        \"audiotuninginfo\": \"Audiopegel einstellen: Wert in dB, Standardwert ist 0.\",\n        \"testframe\": \"Test frame\",\n        \"testframetransmit\": \"Senden (5s)\",\n        \"audiotuningrxlevel\": \"RX Pegel\",\n        \"audiotuningtxlevel\": \"TX Pegel\",\n        \"audiotuningtransmitsine\": \"Sinus senden\",\n        \"audiotuningtransmitsine30s\": \"TX (max 30s)\",\n        \"systemcheck\": \"System Status\",\n        \"reloadgui\": \"GUI neu laden\",\n        \"network\": \"Netzwerk\",\n        \"remoteinfo\": \"Für den Remotebetrieb setze die Server IP unter Einstellungen/Modem auf 0.0.0.0\",\n        \"apiurl\": \"API Url\",\n        \"furthersettings\": \"Weitere Einstellungen in Einstellungen/Modem\",\n        \"restartserveronproblem\": \"Bei Problemen, bitte das Modem manuell neu starten. Wenn das Problem weiterhin besteht, bitte den Server neu starten.\",\n        \"manualmodemrestart\": \"Manueller Modem-Neustart\",\n        \"manualmodemrestart_help\": \"Modem-Neustart. Bitte zuerst die Audio- und Transceivereinstellungen vornehmen!\",\n        \"radiocontrol\": \"Transceiversteuerung\",\n        \"radiocontrolinfo\": \"Dies ist nur eine Schnelleinstellung! Weitere Optionen siehe Einstellungen/Transceiversteuerung\",\n        \"rigcontrolmethod\": \"Methode Transceiversteuerung\",\n        \"rigcontrolmethoddisabled\": \"Aus (keine TRX-Steuerung. VOX benutzen)\",\n        \"rigcontrolmethodserialptt\": \"Seriell, PTT via DTR/RTS\",\n        \"rigcontrolmethodrigctld\": \"Rigctld (Externe Hamlib-Instanz)\",\n        \"rigcontrolmethodrigctldbundle\": \"Rigctld (Interne Hamlib-Instanz)\",\n        \"radioport\": \"Radio port\",\n        \"testhamlib\": \"Hamlib-Test\",\n        \"systeminfo\": \"System-Info\",\n        \"systeminfoalert\": \"Bitte teile diese Informationen bei eröffnen eines Tickets mit\",\n        \"apiinformation\": \"API Information\",\n        \"apiversion\": \"API Version\",\n        \"modemversion\": \"Modem Version\",\n        \"osinfo\": \"Betriebssystem Informationen\",\n        \"system\": \"System\",\n        \"node\": \"Knoten\",\n        \"release\": \"Release\",\n        \"version\": \"Version\",\n        \"machine\": \"Maschine\",\n        \"processor\": \"Prozessor\",\n        \"pythoninformation\": \"Python Information\",\n        \"build\": \"Build\",\n        \"compiler\": \"Compiler\",\n        \"branch\": \"Zweig\",\n        \"implementation\": \"Implementierung\",\n        \"revision\": \"Revision\"\n    },\n    \"chat\": {\n        \"startnewchat\": \"Neuen Chat starten\",\n        \"insertemoji\": \"Emoji einfügen\",\n        \"entermessage_placeholder\": \"Nachricht - Senden mit [Enter]\",\n        \"attempt\": \"Versuch\",\n        \"utc\": \"UTC\",\n        \"adif\": \"ADIF\",\n\t\"new\": \"neu\",\n        \"selectChat\": \"Bitte starte oder wähle einen Chat aus\",\n        \"noConversations\": \"bislang noch kein Chat hier\",\n        \"loadingMessages\": \"Lade Nachrichten...\"\n    },\n    \"settings\": {\n        \"enable\": \"Aktivieren\",\n        \"default\": \"Standard\",\n        \"reload\": \"Reload\",\n        \"tabstation\": \"Station\",\n        \"tabgui\": \"GUI\",\n        \"tabradiocontrol\":\"Rig Einstellungen\",\n        \"tabmodem\": \"Modem\",\n        \"tabchat\": \"Chat\",\n        \"tabexperimental\": \"Exp\",\n        \"tabweb\": \"Web\",\n        \"tablinks\": \"Links\",\n        \"gui\": {\n            \"introduction\": \"Spezifische Einstellungen wie Wasserfall-Farbgebung, Sprache oder Browser-Verhalten.\",\n            \"browserautolaunch\": \"Browser automatisch starten\",\n            \"browserautolaunch_help\": \"Bem Server-Start automatisch einen Browser und die GUI öffnen\",\n            \"selectlanguage\": \"Sprache auswählen\",\n            \"selectlanguage_help\": \"Wähle eine Sprache für die grafische Oberfläche\",\n            \"waterfalltheme\": \"Wasserfall-Farbgebung\",\n            \"waterfalltheme_help\": \"Wähle ein Farbthema für das Wasserfalldiagramm\",\n\t        \"colormode\": \"Farbmodus\",\n            \"colormode_help\": \"Farbmodus der GUI einstellen\",\n            \"colormodelight\": \"hell\",\n            \"colormodedark\": \"dunkel\",\n            \"colormodeauto\": \"auto\"\n         },\n        \"station\": {\n            \"introduction\": \"Stationsbezogene Einstellungen, wie das Ändern des Rufzeichens, des Standorts und des allgemeinen Verhaltens.\",\n            \"callsign\": \"Rufzeichen\",\n            \"callsign_help\": \"Gebe ein gültiges Rufzeichen ein (maximal 7 Zeichen, keine Sonderzeichen)\",\n            \"callsign_placeholder\": \"Rufzeichen eingeben und speichern\",\n            \"callsignssid\": \"Rufzeichen SSID\",\n            \"callsignssid_help\": \"Eine SSID für diese Station\",\n            \"locator\": \"Grid- / Maidenhead Locator\",\n            \"locator_help\": \"Einen Locator eingeben (maximal 6 Zeichen; kürzere Zeichen werden zufällig ausgewählt)\",\n            \"locator_placeholder\": \"Dein Grid Locator\",\n            \"respondtocq\": \"CQ-Rufe mit einem 'QRV' beantworten\",\n            \"respondtocq_help\": \"QRV-Antwort wird mit zufälliger Verzögerung gesendet\",\n            \"enablecallsignblacklist\": \"Rufzeichen-Blacklist einschalten\",\n            \"enablecallsignblacklist_help\": \"Anfragen von Rufzeichen auf der schwarzen Liste ignorieren\",\n            \"callsignblacklist\": \"Rufzeichen-Blacklist\",\n            \"callsignblacklist_placeholder\": \"Rufzeichenliste\",\n            \"callsignblacklist_help\": \"Ein Rufzeichen pro Zeile\"\n        },\n        \"chat\": {\n            \"introduction\": \"Nachrichtenbezogene Einstellungen, wie die Aktivierung der automatischen Nachrichtenwiederholung und die Konfiguration des ADIF-Loggings.\",\n            \"enablemessageautorepeat\": \"Automatische Nachrichtenwiederholung aktivieren\",\n            \"enablemessageautorepeat_help\": \"Nachricht bei Bakenempfang erneut senden\",\n            \"enableadifloggingudp\": \"ADIF Logging per UDP\",\n            \"enableadifloggingudp_help\": \"ADIF Logging per UDP einschalten\",\n            \"adifloggingudphost\": \"ADIF Logging UDP Host\",\n            \"adifloggingudphost_help\": \"ADIF Server Host, z.B. '127.0.0.1'\",\n            \"adifloggingudphost_placeholder\": \"ADIF Server Host eingeben\",\n            \"adifloggingudpport\": \"ADIF Logging UDP Port\",\n            \"adifloggingudpport_help\": \"ADIF Server Port, z.B. '2237'\",\n            \"adifloggingudpport_placeholder\": \"ADIF Server Port eingeben\",\n            \"adifloggingwavelog\": \"Logging über Cloudlog/Wavelog API\",\n            \"enableadifloggingwavelog_help\": \"ADIF Logging über Cloudlog/Wavelog einschalten\",\n            \"adifloggingwaveloghost\": \"Cloudlog/Wavelog API Host\",\n            \"adifloggingwaveloghost_placeholder\": \"Host eingeben\",\n            \"adifloggingwaveloghost_help\": \"Cloudlog/Wavelog API Server Host, z.B. '127.0.0.1'\",\n            \"adifloggingwavelogapi\": \"Cloudlog/Wavelog API Key\",\n            \"adifloggingwavelogapi_placeholder\": \"API Key eingeben\",\n            \"adifloggingwavelogapi_help\": \"Cloudlog/Wavelog API Key eingeben\"\n        },\n        \"modem\": {\n            \"introduction\": \"Modem- und Audioeinstellungen, einschließlich Starten/Stoppen des Modems, Konfigurieren von Audiogeräten und Anpassen der Audiopegel.\",\n            \"serverrestart_notification\": \"Einstellungen in ROT erfordern einen Serverneustart!\",\n            \"restartserver\": \"Manuelle Modemsteuerung\",\n            \"restartserver_help\": \"Modem Starten oder Stoppen. Vergewissere Dich, dass zuvor die Audio- und Transceivereinstellungen konfiguriert wurden\",\n            \"modemport\": \"Modem Port\",\n            \"modemport_help\": \"Modemport konfigurieren. Ein Serverneustart ist erforderlich\",\n            \"modemhost\": \"Modem Host\",\n            \"modemhost_help\": \"Einstellen der Modem-Hostadresse. Ein Neustart des Servers ist erforderlich\",\n            \"audioinputdevice\": \"Audio Eingabegerät\",\n            \"audioinputdevice_help\": \"Mikrofon- oder Line-In-Gerät auswählen\",\n            \"audiooutputdevice\": \"Audio Ausgabegerät\",\n            \"audiooutputdevice_help\": \"Lautsprecher- oder Line-Out-Gerät auswählen\",\n            \"rxaudiolevel\": \"RX Audio Pegel\",\n            \"rxaudiolevel_help\": \"Einstellen des Empfangspegels\",\n            \"txaudiolevel\": \"TX Audio Pegel\",\n            \"txaudiolevel_help\": \"Einstellen des Sendepegels\",\n            \"txdelay\": \"TX-Verzögerung in ms\",\n            \"txdelay_help\": \"Sendeverzögerung, in Millisekuinden\",\n            \"maximumbandwidth\": \"Maximale Bandbreite\",\n            \"maximumbandwidth_help\": \"Wähle die maximale Bandbreite, die das Modem nutzen soll\",\n\t    \"enabletxautoadjust\": \"Auto TX Audio Pegel\", \n            \"enablerxautoadjust\": \"Auto RX Audio Pegel\",\n            \"enabletxautoadjust_help\": \"Automatische Einstellung des Sendepegels auf den höchstmöglichen Wert\" , \n            \"enablerxautoadjust_help\": \"Automatische Einstellung des Empfangspegels auf den höchstmöglichen Wert\"\n        },\n        \"web\": {\n            \"introduction\": \"Explorer-bezogene Einstellungen, einschließlich der Aktivierung der Explorer-Veröffentlichung und der Veröffentlichung von Explorer-Statistiken.\",\n            \"description\": \"Veröffentliche Informationen wie die Frequenz oder gehörte Stationen auf https://explorer.freedata.app, damit andere Benutzer den Status deiner Station sehen können. Die Veröffentlichung von Statistiken befindet sich derzeit in der Entwicklung und kann daher fehlerhaft sein.\",\n            \"enableexplorer\": \"Stationsdetails veröffentlichen\",\n            \"enableexplorer_help\": \"Teile den Status deiner Station mit dem FreeDATA-Webdienst\",\n            \"enablestats\":\"Statistiken veröffentlichen\",\n            \"enablestats_help\": \"Teile die Statistiken deiner Station mit dem FreeDATA-Webdienst\"\n        },\n        \"exp\": {\n            \"introduction\": \"Warnung: Diese Funktionen können unvollständig sein. Sie sind NUR für erfahrene Benutzer!\",\n            \"info\": \"Info: Noch keine Funktionen zum Testen veröffentlicht\",\n\t    \"enableringbuffer\": \"Ringpuffer einschalten\",\n            \"enableringbuffer_help\": \"Aktivieren eines experimentellen Ringpuffers, der bei einer leistungsschwachen CPU effizienter sein kann\",\n            \"enablevhf\": \"UKW-Modus aktivieren -- derzeit nur CQ --\",\n            \"enablevhf_help\": \"Aktiviert den experimentellen UKW-Modus zum Testen\"\n        },\n        \"radio\": {\n            \"introduction\": \"Einstellungen für die Transceiversteuerung, einschließlich der Auswahl der Rig-Control Methode und der Konfiguration spezifischer Einstellungen.\",\n            \"info\": \"Bitte zuerst Transceiversteurung auswählen.\",\n            \"rigcontroltype\": \"Transceiversteuerung\",\n            \"rigcontroltype_help\": \"Auswählen, wie die Software deinen Transceiver steuert\",\n            \"tabhamlib\": \"Hamlib\",\n            \"tabserial\": \"Seriell\",\n\t    \"tabflrig\": \"flrig\",\n            \"serialpttcomport\": \"PTT COM-Port\",\n            \"serialpttcomport_help\": \"Wähle  den COM-Port, der mit dem Transceiver für die PTT-Steuerung verbunden ist.\",\n            \"serialpttcustomcomport\": \"PTT Benutzerdefinierter COM-Port\",\n            \"serialpttcustomcomport_help\": \"COM-Port override, wenn er oben nicht aufgeführt ist.\",\n            \"serialpttviadtr\": \"PTT via DTR\",\n            \"serialpttviadtr_help\": \"Konfiguriere das Verhalten der DTR-Leitung für die PTT-Steuerung“\",\n            \"serialpttviarts\": \"PTT via RTS\",\n            \"serialpttviarts_help\": \"Konfigurieren Sie das Verhalten der RTS-Leitung für die PTT-Steuerung\",\n            \"hamlibrigctldenablevfo\": \"Rigctld VFO Parameter\",\n            \"hamlibrigctldenablevfo_help\": \"VFO-Unterstützung in Rigctld einschalten\",\n            \"hamlibrigctldhost\": \"Rigctld IP\",\n            \"hamlibrigctldhost_help\": \"Gib die IP-Adresse des Rigctld-Servers ein\",\n            \"hamlibrigctldhost_placeholder\": \"Rigctld IP eingeben\",\n            \"hamlibrigctldport\": \"Rigctld Port\",\n            \"hamlibrigctldport_help\": \"Gib die Portnummer für den Rigctld-Server ein\",\n            \"hamlibrigctldport_placeholder\": \"Rigctld Port eingeben\",\n            \"hamlibrigctldradiomodel\": \"Transceiver-Modell\",\n            \"hamlibrigctldradiomodel_help\": \"Transceiver-Modell für die Rig-Steuerung auswählen\",\n            \"hamlibrigctldcomport\": \"Transceiver COM-Port\",\n            \"hamlibrigctldcomport_help\": \"Wähle den seriellen Anschluss, an den deinen Transceiver angeschlossen ist\",\n            \"hamlibrigctldcustomcomport\": \"Benutzerdefinierter Transceiver COM-Port\",\n            \"hamlibrigctldcustomcomport_help\": \"COM-Port override, wenn er oben nicht aufgeführt ist.\",\n            \"hamlibrigctldserialspeed\": \"Serielle Baudrate\",\n            \"hamlibrigctldserialspeed_help\": \"Einstellen der Baudrate für die serielle Kommunikation\",\n            \"hamlibrigctlddatabits\": \"Datenbits\",\n            \"hamlibrigctlddatabits_help\": \"Anzahl Datenbits auswählen\",\n            \"hamlibrigctldstopbits\": \"Stoppbits\",\n            \"hamlibrigctldstopbits_help\": \"Einstellen der Baudrate für die serielle Kommunikation\",\n            \"hamlibrigctldhandshake\": \"Handshake-Methode\",\n            \"hamlibrigctldhandshake_help\": \"Einstellen der seriellen Handshake-Methode\",\n            \"hamlibrigctldpttdeviceport\": \"PTT Geräte-Port\",\n            \"hamlibrigctldpttdeviceport_help\": \"Wähle den für die PTT-Steuerung verwendeten Anschluss\",\n            \"hamlibrigctldptttype\": \"PTT Typ\",\n            \"hamlibrigctldptttype_help\": \"Wähle die Methode für die PTT-Steuerung\",\n            \"hamlibrigctlddcd\": \"DCD\",\n            \"hamlibrigctlddcd_help\": \"Wählen Sie die DCD-Methode\",\n            \"hamlibrigctlddtr\": \"DTR\",\n            \"hamlibrigctlddtr_help\": \"Einstellen des DTR-Leitungsstatus\",\n            \"hamlibrigctldcommand\": \"Rigctld Befehlszeile\",\n            \"hamlibrigctldcommand_help\": \"Automatisch erzeugte Befehlszeile, basierend auf den vorgenommenen Einstellungen\",\n            \"hamlibrigctldcommand_placeholder\": \"Wird automatisch aus den obigen Einstellungen ausgefüllt\",\n            \"hamlibrigctldcustomarguments\": \"Rigctld benutzerdefinierte Argumente\",\n            \"hamlibrigctldcustomarguments_help\": \"Zusätzliche Argumente für rigctld (normalerweise nicht erforderlich)\",\n            \"hamlibrigctldcustomarguments_placeholder\": \"Optionale benutzerdefinierte Argumente\",\n\t    \"flrigport\": \"Flrig Port\",\n            \"flrigport_help\": \"Lege den flrig-Port fest, auf den der flrig-Server hört (Standard: 12345)\",\n            \"flrighost\": \"Flrig Host\",\n            \"flrighost_help\": \"Lege die Hostadresse des flrig-Servers fest. Meist localhost oder 127.0.0.1\"\n        }\n    }\n}\n"
  },
  {
    "path": "freedata_gui/src/locales/en_English.json",
    "content": "{\n    \"general\": {\n        \"bytes\": \"Bytes\",\n        \"size\": \"Size\",\n        \"speed\": \"Speed\",\n        \"statistics\": \"Statistics\",\n        \"duration\": \"Duration\",\n        \"chart\": \"Chart\",\n        \"dxcallsign\": \"dxcallsign\",\n        \"destination\": \"destination\",\n        \"stop\": \"Stop\",\n        \"modem\": \"Modem\",\n        \"frequency\": \"frequency\"\n    },\n    \"popups\": {\n        \"startupfailed\": \"Modem startup failed - bad config?\",\n        \"connectedtoserver\": \"Connected to server\",\n        \"cqreceived\": \"CQ received\",\n        \"gridsquare\": \"Grid Square\",\n        \"snr\": \"SNR\",\n        \"qrvreceived\": \"QRV received\",\n        \"pingreceived\": \"PING received\",\n        \"pingackreceived\": \"PING ACK received\",\n        \"newtransmissionwith\": \"New transmission with\",\n        \"sessionid\": \"Session ID\",\n        \"totalbytes\": \"Total bytes\",\n        \"openingtransmissionwith\": \"Opening transmission with\",\n        \"ongoingtransmissionwith\": \"Ongoing transmission with\",\n        \"transmittedbytes\": \"Transmitted Bytes\",\n        \"transmissionabortedwith\": \"Transmission ABORTED with\",\n        \"state\": \"State\",\n        \"transmissionendedwith\": \"Transmission ENDED with\",\n        \"bytesperminute\": \"Bytes per minute\",\n        \"transmissionfailedwith\": \"Transmission FAILED with\",\n        \"confirmingtransmissionwith\": \"Confirming transmission with\",\n        \"receivedbytes\": \"Received Bytes\",\n        \"adiflogheader\": \"ADIF\",\n        \"adiflogtext1\": \"QSO with\",\n        \"adiflogtext2\": \"added to the log.\",\n        \"adiflogerror\": \"ADIF export error\"\n    },\n    \"navbar\": {\n        \"frequency_help\": \"What's the frequency, Kenneth?\",\n        \"speedlevel_help\": \"Speed Level\",\n        \"totalbytes_help\": \"Total bytes of transmission\",\n        \"connectedstation_help\": \"Current or last connected station\",\n        \"from\": \"from\",\n        \"to\": \"to\",\n        \"pttstate_help\": \"PTT trigger state\",\n        \"modemstate_help\": \"Modem state\",\n        \"bytestransferred\": \"Bytes transferred\",\n        \"modemcheck\": \"Healthcheck\",\n        \"modemcheck_help\": \"Check FreeDATA Status\",\n        \"home\": \"Home\",\n        \"home_help\": \"Home\",\n        \"chat\": \"RF Chat\",\n        \"chat_help\": \"RF Chat\",\n        \"settings\": \"Settings\",\n        \"settings_help\": \"Settings\",\n        \"station\": \"Station\",\n        \"station_help\": \"Set station info\"\n    },\n    \"grid\": {\n        \"frequencydescription\": \"Commonly used frequencies are listed here, and are all USB. Simply click on a entry or manually enter a frequency in the textbox to tune your rig if rig control is enabled.\",\n        \"frequencyselection\": \"Frequency selection\",\n        \"savepreset\": \"Save preset\",\n        \"savepreset_help\": \"Save current grid layout as a preset that can be restored using restore preset button\",\n        \"restorepreset\": \"Restore preset\",\n        \"restorepreset_help\": \"Restore your saved grid preset (clears current grid)\",\n        \"cleargrid\": \"Clear grid\",\n        \"cleargrid_help\": \"Clear all items from the grid\",\n        \"gridedit\": \"grid edit\",\n        \"managegridwidgets\": \"Manage grid widgets\",\n        \"gridwidgetsdescription\": \"Grid widgets allow you to customize the display. You may add additional widgets to fit your needs. You can move and resize the individual widgets!\",\n        \"fillgrid\": \"Fill grid with common widgets\",\n        \"fillgridsmallscreen\": \"Fill grid for small screens\",\n        \"activity\": \"Activity\",\n        \"audio\": \"Audio\",\n        \"broadcasts\": \"Broadcasts\",\n        \"radiocontrol\": \"Radio control/Status\",\n        \"statistics\": \"Statistics\",\n        \"other\": \"Other\",\n        \"uploadpreset\": \"Upload Preset\",\n        \"uploadpreset_help\": \"Upload a preset file\",\n        \"downloadpreset\": \"Download Preset\",\n        \"downloadpreset_help\": \"Download preset file for sharing or saving\",\n        \"components\": {\n            \"tune\": \"Tune\",\n            \"stop_help\": \"Abort session and stop transmissions\",\n            \"transmissioncharts\": \"Transmission charts\",\n            \"scatterdiagram\": \"Scatter diagram\",\n            \"onair\": \"on air\",\n            \"ping\": \"Ping\",\n            \"ping_help\": \"Send a ping request to a remote station\",\n            \"newmessage_help\": \"Send a new message to a remote station\",\n            \"startnewchat_help\": \"Start or continue a conversation with another station\", \n            \"heardstations\": \"Heard Stations\",\n            \"time\": \"Time\",\n            \"freq\": \"Freq\",\n            \"dxcall\": \"DXCall\",\n            \"grid\": \"Grid\",\n            \"dist\": \"Dist\",\n            \"type\": \"Type\",\n            \"snr\": \"SNR\",\n            \"afk\": \"AFK?\",\n            \"audio\": \"Audio\",\n            \"broadcasts\": \"Broadcasts\",\n            \"transmitting\": \"Sending...\",\n            \"pingstation\": \"PING Station\",\n            \"sendingcq\": \"Sending CQ...\",\n            \"sendingping\": \"Sending PING...\",\n            \"callcq\": \"Call CQ\",\n            \"cqcqcq\": \"CQ CQ CQ\",\n            \"cqcqcq_help\": \"Send a CQ to the world\",\n            \"togglebeacon\": \"toggle beacon\",\n            \"togglebeacon_help\": \"Toggle beacon mode. While sending a beacon, you can receive ping requests and open a datachannel. If a datachannel is opened, the beacon pauses.\",\n            \"enablebeacon\": \"Enable beacon\",\n            \"awayfromkey\": \"Away from key\",\n            \"radiocontrol\": \"Radio control\",\n            \"radiocontrolmode\": \"Mode\",\n            \"powerpercent\": \"% Power\",\n            \"tuner\": \"Tuner\",\n            \"activity\": \"Activity\",\n            \"beacon\": \"Beacon\",\n            \"active\": \"Active\",\n            \"inactive\": \"Inactive\",\n            \"connected\": \"Connected\",\n            \"disconnected\": \"Disconnected\",\n            \"online\": \"Online\",\n            \"offline\": \"Offline\",\n            \"received\": \"received\",\n            \"transmitted\": \"transmitted\",\n            \"msgstatustransmitting\": \"transmitting\",\n            \"msgstatustransmitted\": \"transmitted\",\n            \"msgstatusfailed\": \"failed\",\n            \"msgstatusqueued\": \"queued\"\n        }\n    },\n    \"modals\": {\n        \"close\": \"Close\",\n        \"options\": \"Options\",\n        \"savechanges\": \"Save changes\",\n        \"beaconhistogram\": \"Beacon histogram\",\n        \"furtheroptions\": \"Further options\",\n        \"deletechat\": \"Delete chat\",\n        \"startnewchat\": \"Start a new chat\",\n        \"startnewchat2\": \"Start a new chat (enter dx call sign first)\",\n        \"newchatline1\": \"Enter destination callsign\",\n        \"newchatline2\": \"Enter a first message\",\n        \"newchatline3\": \"Click START NEW CHAT\",\n        \"newchatline4\": \"Check the chat tab on left side for messages\",\n        \"firstmessage\": \"First message\",\n        \"audiotuning\": \"Audio tuning\",\n        \"audiotuninginfo\": \"Adjust audio levels. Value in dB. Default value is 0\",\n        \"testframe\": \"Test frame\",\n        \"testframetransmit\": \"Transmit (5s)\",\n        \"audiotuningrxlevel\": \"RX Level\",\n        \"audiotuningtxlevel\": \"TX Level,\",\n        \"audiotuningtransmitsine\": \"Transmit sine\",\n        \"audiotuningtransmitsine30s\": \"Transmit (max 30s)\",\n        \"systemcheck\": \"System check\",\n        \"reloadgui\": \"Reload GUI\",\n        \"network\": \"Network\",\n        \"remoteinfo\": \"For remote operation, please go to settings/modem and set the server ip to 0.0.0.0\",\n        \"apiurl\": \"API Url\",\n        \"furthersettings\": \"For further settings please go to settings/modem\",\n        \"restartserveronproblem\": \"In case of unusual problems, you can reload the internal modem manually. If the problem persists, consider a server restart.\",\n        \"manualmodemrestart\": \"Manual modem restart\",\n        \"manualmodemrestart_help\": \"Restart the modem. Please set your audio and radio settings first!\",\n        \"radiocontrol\": \"Radio control\",\n        \"radiocontrolinfo\": \"This is just a quick setting! For further options, please go to settings/rig control\",\n        \"rigcontrolmethod\": \"Rig control method\",\n        \"rigcontrolmethoddisabled\": \"Disabled (no rig control; use with VOX)\",\n        \"rigcontrolmethodserialptt\": \"Serial PTT via DTR/RTS\",\n        \"rigcontrolmethodrigctld\": \"Rigctld (external Hamlib instance)\",\n        \"rigcontrolmethodrigctldbundle\": \"Rigctld (internal Hamlib)\",\n        \"radioport\": \"Radio port\",\n        \"testhamlib\": \"Test Hamlib\",\n        \"systeminfo\": \"System info\",\n        \"systeminfoalert\": \"Please share this information when opening an issue\",\n        \"apiinformation\": \"API Information\",\n        \"apiversion\": \"API Version\",\n        \"modemversion\": \"Modem Version\",\n        \"osinfo\": \"Operating System Information\",\n        \"system\": \"System\",\n        \"node\": \"Node\",\n        \"release\": \"Release\",\n        \"version\": \"Version\",\n        \"machine\": \"Machine\",\n        \"processor\": \"Processor\",\n        \"pythoninformation\": \"Python Information\",\n        \"build\": \"Build\",\n        \"compiler\": \"Compiler\",\n        \"branch\": \"Branch\",\n        \"implementation\": \"Implementation\",\n        \"revision\": \"Revision\"\n    },\n    \"chat\": {\n        \"startnewchat\": \"Start a new chat\",\n        \"insertemoji\": \"Insert Emoji\",\n        \"entermessage_placeholder\": \"Message - Send with [Enter]\",\n        \"attempt\": \"attempt\",\n        \"utc\": \"UTC\",\n        \"adif\": \"ADIF\",\n        \"new\": \"new\",\n        \"selectChat\": \"Please select or create a chat\",\n        \"noConversations\": \"No conversations, yet\",\n        \"loadingMessages\": \"Loading messages...\"\n    },\n    \"settings\": {\n        \"enable\": \"Enable\",\n        \"default\": \"default\",\n        \"reload\": \"Reload\",\n        \"tabstation\": \"Station\",\n        \"tabgui\": \"GUI\",\n        \"tabradiocontrol\":\"Rig Control\",\n        \"tabmodem\": \"Modem\",\n        \"tabchat\": \"Chat\",\n        \"tabexperimental\": \"Exp\",\n        \"tabweb\": \"Web\",\n        \"tablinks\": \"Links\",\n        \"gui\": {\n            \"introduction\": \"GUI related settings like customizing waterfall theme, language or browser behaviour.\",\n            \"browserautolaunch\": \"Auto launch browser\",\n            \"browserautolaunch_help\": \"Launch browser to GUI URL on server startup\",\n            \"selectlanguage\": \"Select language\",\n            \"selectlanguage_help\": \"Select the preferred language used for GUI\",\n            \"waterfalltheme\": \"Waterfall theme\",\n            \"waterfalltheme_help\": \"Select color theme for waterfall display\",\n            \"colormode\": \"Color Mode\",\n            \"colormode_help\": \"Set the GUI color mode\",\n            \"colormodelight\": \"light\",\n            \"colormodedark\": \"dark\",\n            \"colormodeauto\": \"auto\"\n        },\n        \"station\": {\n            \"introduction\": \"Station related settings, like changing your callsign, location and general behaviour.\",\n            \"callsign\": \"Callsign\",\n            \"callsign_help\": \"Enter a valid callsign (Max 7 chars, no special chars)\",\n            \"callsign_placeholder\": \"Enter your callsign and save it\",\n            \"callsignssid\": \"Callsign SSID\",\n            \"callsignssid_help\": \"Set a SSID for this station\",\n            \"locator\": \"Grid Locator / Maidenhead\",\n            \"locator_help\": \"Enter a grid locator (Max 6 chars; shorter will randomize)\",\n            \"locator_error\": \"Enter a correct grid locator, like JN12ea or JN12!\",\n            \"locator_placeholder\": \"Your grid locator\",\n            \"respondtocq\": \"Respond to CQ callings with a QRV reply\",\n            \"respondtocq_help\": \"QRV reply sent with random delay\",\n            \"enablecallsignblacklist\": \"Enable callsign blacklist\",\n            \"enablecallsignblacklist_help\": \"Ignore requests from blacklisted callsigns\",\n            \"callsignblacklist\": \"Callsign blacklist\",\n            \"callsignblacklist_placeholder\": \"List of callsigns\",\n            \"callsignblacklist_help\": \"One callsign per line\"\n        },\n        \"chat\": {\n            \"introduction\": \"Message related settings, like enabling message auto repeat and configuring ADIF log connection.\",\n            \"enablemessageautorepeat\": \"Enable message auto repeat\",\n            \"enablemessageautorepeat_help\": \"Re-send message on beacon\",\n            \"enableadifloggingudp\": \"Enable adif logging via UDP\",\n            \"enableadifloggingudp_help\": \"ADIF Logging via UDP instead of TCP\",\n            \"adifloggingudphost\": \"ADIF Logging UDP host\",\n            \"adifloggingudphost_help\": \"ADIF server host, e.g., 127.0.0.1\",\n            \"adifloggingudphost_placeholder\": \"Enter ADIF server host\",\n            \"adifloggingudpport\": \"ADIF Logging UDP port\",\n            \"adifloggingudpport_help\": \"ADIF server port, e.g., 2237\",\n            \"adifloggingudpport_placeholder\": \"Enter ADIF server port\",\n            \"adifloggingwavelog\": \"Enable logging via Wavelog API\",\n            \"enableadifloggingwavelog_help\": \"Enable ADIF Logging via Wavelog\",\n            \"adifloggingwaveloghost\": \"Wavelog API Host\",\n            \"adifloggingwaveloghost_placeholder\": \"Enter Host\",\n            \"adifloggingwaveloghost_help\": \"Wavelog API server host, e.g., 127.0.0.1\",\n            \"adifloggingwavelogapi\": \"Wavelog API key\",\n            \"adifloggingwavelogapi_placeholder\": \"Enter API key\",\n            \"adifloggingwavelogapi_help\": \"Enter Wavelog api key\"\n        },\n        \"modem\": {\n            \"introduction\": \"Modem and Audio related settings, including starting/stopping the modem, configuring audio devices, and adjusting audio levels.\",\n            \"serverrestart_notification\": \"Settings in RED require a server restart!\",\n            \"restartserver\": \"Manual modem control\",\n            \"restartserver_help\": \"Start or stop the modem. Ensure your audio and radio settings are configured first.\",\n            \"modemport\": \"Modem port\",\n            \"modemport_help\": \"Set the modem port. A server restart is required\",\n            \"modemhost\": \"Modem host\",\n            \"modemhost_help\": \"set the modem host address. A server restart is required\",\n            \"audioinputdevice\": \"Audio Input Device\",\n            \"audioinputdevice_help\": \"Select your microphone or line-in device\",\n            \"audiooutputdevice\": \"Audio Output Device\",\n            \"audiooutputdevice_help\": \"Select your speaker or line-out device\",\n            \"rxaudiolevel\": \"RX Audio Level\",\n            \"rxaudiolevel_help\": \"Adjust to set the receive audio gain\",\n            \"txaudiolevel\": \"TX Audio Level\",\n            \"txaudiolevel_help\": \"Adjust to set the transmit audio gain\",\n            \"txdelay\": \"TX delay in ms\",\n            \"txdelay_help\": \"Delay before transmitting, in milliseconds\",\n            \"maximumbandwidth\": \"Maximum used bandwidth\",\n            \"maximumbandwidth_help\": \"Select the maximum bandwidth the modem will use\",\n            \"enabletxautoadjust\": \"Auto TX audio level\", \n            \"enablerxautoadjust\": \"Auto RX audio level\",\n            \"enabletxautoadjust_help\": \"Set TX audio level automatically to highest possible value\" , \n            \"enablerxautoadjust_help\": \"Set RX audio level automatically to highest possible value\"            \n        },\n        \"web\": {\n            \"introduction\": \"Explorer related settings, including enabling Explorer publishing and Explorer stats publishing.\",\n            \"description\": \" Publish information like your frequency or heard stations to https://explorer.freedata.app, so other users can see your stations status. Publishing stats is currently under development and might be broken.\",\n            \"enableexplorer\": \"Publish station details\",\n            \"enableexplorer_help\": \"Share your station's status with FreeDATA web service\",\n            \"enablestats\":\"Publish statistics\",\n            \"enablestats_help\": \"Share your station's statistics with FreeDATA web service\"\n        },\n        \"exp\": {\n            \"introduction\": \"Warning: These features may be incomplete. They are for experienced users ONLY!\",\n            \"info\": \"Info: No features publishes for testing, yet\",\n            \"enableringbuffer\": \"Enable ring buffer\",\n            \"enableringbuffer_help\": \"Enable an experimental ring buffer which can be more efficient on low power CPU\",\n            \"enablevhf\": \"Enable VHF modes -- only CQ for now --\",\n            \"enablevhf_help\": \"Enable experimental VHF modes for testing and playing\"\n        },\n        \"radio\": {\n            \"introduction\": \"Rig Control related settings, including selecting your rig control method and configuring specific settings.\",\n            \"info\": \"Please select Rig Control first.\",\n            \"rigcontroltype\": \"Rig Control\",\n            \"rigcontroltype_help\": \"Choose how the software controls your radio\",\n            \"tabhamlib\": \"Hamlib\",\n            \"tabserial\": \"Serial\",\n            \"tabflrig\": \"flrig\",\n            \"serialpttcomport\": \"PTT Com port\",\n            \"serialpttcomport_help\": \"Select the COM port connected to your radio for PTT control\",\n            \"serialpttcustomcomport\": \"PTT Custom COM port\",\n            \"serialpttcustomcomport_help\": \"Override the com port of your radio if its not listed above\",\n            \"serialpttviadtr\": \"PTT via DTR\",\n            \"serialpttviadtr_help\": \"Configure DTR line behavior for PTT control\",\n            \"serialpttviarts\": \"PTT via RTS\",\n            \"serialpttviarts_help\": \"Configure RTS line behavior for PTT control\",\n            \"hamlibrigctldenablevfo\": \"Rigctld VFO parameter\",\n            \"hamlibrigctldenablevfo_help\": \"Enable VFO support in rigctld\",\n            \"hamlibrigctldhost\": \"Rigctld IP\",\n            \"hamlibrigctldhost_help\": \"Enter the IP address of the rigctld server\",\n            \"hamlibrigctldhost_placeholder\": \"Enter Rigctld IP\",\n            \"hamlibrigctldport\": \"Rigctld Port\",\n            \"hamlibrigctldport_help\": \"Enter the port number of the rigctld server\",\n            \"hamlibrigctldport_placeholder\": \"Enter Rigctld Port\",\n            \"hamlibrigctldradiomodel\": \"Radio model\",\n            \"hamlibrigctldradiomodel_help\": \"Select your radio model for rig control\",\n            \"hamlibrigctldcomport\": \"Radio COM port\",\n            \"hamlibrigctldcomport_help\": \"Select the serial port connected to your radio\",\n            \"hamlibrigctldcustomcomport\": \"Radio custom COM port\",\n            \"hamlibrigctldcustomcomport_help\": \"Override the com port of your radio if its not listed above\",\n            \"hamlibrigctldserialspeed\": \"Serial speed\",\n            \"hamlibrigctldserialspeed_help\": \"Set the baud rate for serial communication\",\n            \"hamlibrigctlddatabits\": \"Data bits\",\n            \"hamlibrigctlddatabits_help\": \"Choose the number of data bits\",\n            \"hamlibrigctldstopbits\": \"Stop bits\",\n            \"hamlibrigctldstopbits_help\": \"Set the baud rate for serial communication\",\n            \"hamlibrigctldhandshake\": \"Choose the number of stop bits\",\n            \"hamlibrigctldhandshake_help\": \"Set the serial handshake method\",\n            \"hamlibrigctldpttdeviceport\": \"PTT device port\",\n            \"hamlibrigctldpttdeviceport_help\": \"Select the port used for PTT control\",\n            \"hamlibrigctldptttype\": \"PTT type\",\n            \"hamlibrigctldptttype_help\": \"Select the method for PTT control\",\n            \"hamlibrigctlddcd\": \"DCD\",\n            \"hamlibrigctlddcd_help\": \"Select the Data Carrier Detect method\",\n            \"hamlibrigctlddtr\": \"DTR\",\n            \"hamlibrigctlddtr_help\": \"Set the DTR line state\",\n             \"hamlibrigctldrts\": \"RTS\",\n            \"hamlibrigctldrts_help\": \"Set the RTS line state\",\n            \"hamlibrigctldcommand\": \"Rigctld command\",\n            \"hamlibrigctldcommand_help\": \"Auto-populated command based on settings\",\n            \"hamlibrigctldcommand_placeholder\": \"Auto-populated from above settings\",\n            \"hamlibrigctldcustomarguments\": \" Rigctld custom arguments\",\n            \"hamlibrigctldcustomarguments_help\": \"Additional arguments for rigctld (usually not needed)\",\n            \"hamlibrigctldcustomarguments_placeholder\": \"Optional custom arguments\",\n            \"hamlibrigctldpttmode\": \"PTT Mode\",\n            \"hamlibrigctldpttmode_help\": \"Set the PTT Mode, for some radios it isnt default (TX)\",\n            \"flrigport\": \"Flrig port\",\n            \"flrigport_help\": \"Set the port where the flrig server is listening (Default: 12345)\",\n            \"flrighost\": \"Flrig host\",\n            \"flrighost_help\": \"Set the host adress of the server, mostly localhost or 127.0.0.1\"\n        }\n    }\n}\n"
  },
  {
    "path": "freedata_gui/src/locales/it_Italiano.json",
    "content": "{\n    \"general\": {\n        \"bytes\": \"Bytes\",\n        \"size\": \"Dimensione\",\n        \"speed\": \"Velocità\",\n        \"statistics\": \"Statistiche\",\n        \"duration\": \"Durata\",\n        \"chart\": \"Chart\",\n        \"dxcallsign\": \"dxcallsign\",\n        \"destination\": \"destinazione\",\n        \"stop\": \"Stop\",\n        \"modem\": \"Modem\",\n        \"frequency\": \"frequenza\"\n    },\n    \"popups\": {\n        \"startupfailed\": \"Start del modem non riuscito - errore nel file di configurazione?\",\n        \"connectedtoserver\": \"Connesso al server\",\n        \"cqreceived\": \"Ricevuto CQ\",\n        \"gridsquare\": \"Grid Square\",\n        \"snr\": \"SNR\",\n        \"qrvreceived\": \"Ricevuto QRV\",\n        \"pingreceived\": \"Ricevuto PING\",\n        \"pingackreceived\": \"Ricevuto PING ACK\",\n        \"newtransmissionwith\": \"Nuova trasmissione con\",\n        \"sessionid\": \"ID della sessione\",\n        \"totalbytes\": \"Bytes totali\",\n        \"openingtransmissionwith\": \"Apro la trasmissione con\",\n        \"ongoingtransmissionwith\": \"Trasmissione attiva con\",\n        \"transmittedbytes\": \"Bytes trasmessi\",\n        \"transmissionabortedwith\": \"Trasmissione INTERROTTA con\",\n        \"state\": \"Stato\",\n        \"transmissionendedwith\": \"Trasmissione FINITA con\",\n        \"bytesperminute\": \"Bytes per minuto\",\n        \"transmissionfailedwith\": \"Trasmissione FALLITA con\",\n        \"confirmingtransmissionwith\": \"Trasmissione confermata con\",\n        \"receivedbytes\": \"Bytes ricevuti\",\n        \"adiflogheader\": \"ADIF\",\n        \"adiflogtext1\": \"QSO con\",\n        \"adiflogtext2\": \"aggiunto al log.\",\n        \"adiflogerror\": \"errore esportando ADIF\"\n    },\n    \"navbar\": {\n        \"frequency_help\": \"Quale è la frequenza?\",\n        \"speedlevel_help\": \"Velocità\",\n        \"totalbytes_help\": \"Bytes totali della trasmissione\",\n        \"connectedstation_help\": \"Stazione corrente o ultima connessa\",\n        \"from\": \"Da\",\n        \"to\": \"A\",\n        \"pttstate_help\": \"Stato del PTT\",\n        \"modemstate_help\": \"Stato del Modem\",\n        \"bytestransferred\": \"Bytes trasferiti\",\n        \"modemcheck\": \"Healthcheck\",\n        \"modemcheck_help\": \"Test dello stato di FreeDATA\",\n        \"home\": \"Home\",\n        \"home_help\": \"Home\",\n        \"chat\": \"RF Chat\",\n        \"chat_help\": \"RF Chat\",\n        \"settings\": \"Configurazione\",\n        \"settings_help\": \"Configurazione\",\n        \"station\": \"Stazione\",\n        \"station_help\": \"Definisci le informazioni della stazione\"\n    },\n    \"grid\": {\n        \"frequencydescription\": \"Le frequenze comuni sono qui listate e sono tutte USB. Click su una riga per scegliere o digita manualmente una frequenza nello spazio di input per sintonizzare la radio se è abilitato il suo controllo.\",\n        \"frequencyselection\": \"Selezione della frequenza\",\n        \"savepreset\": \"Salva le preselezioni\",\n        \"savepreset_help\": \"Salva la disposizione corrente come preselezione che può essere ripristinata con il pulsante di ripristino della preselezione\",\n        \"restorepreset\": \"Ripristino preselezione\",\n        \"restorepreset_help\": \"Ripristina una preselezione che hai salvato (cancella la disposizione corrente)\",\n        \"cleargrid\": \"Cancella la disposizione\",\n        \"cleargrid_help\": \"Cancella tutte le componenti della disposizione\",\n        \"gridedit\": \"modifica la griglia\",\n        \"managegridwidgets\": \"Gestisce ciò che appare nella disposizione\",\n        \"gridwidgetsdescription\": \"Questo permette di personalizzare ciò che viene visualizzatoy. Puoi aggiungere altre componenti secondo le tue esigenze. Puoi spostare o ridimensionare ogni componente!\",\n        \"fillgrid\": \"Riempi la griglia con le componenti più comuni\",\n        \"fillgridsmallscreen\": \"Riempi la gliglia con le componenti per schermi piccoli\",\n        \"activity\": \"Attività\",\n        \"audio\": \"Audio\",\n        \"broadcasts\": \"Trasmetti\",\n        \"radiocontrol\": \"Controllo/Stato della radio\",\n        \"statistics\": \"Statistiche\",\n        \"other\": \"Altro\",\n        \"uploadpreset\": \"Carica Preselezioni\",\n        \"uploadpreset_help\": \"Carica un file di preselezioni\",\n        \"downloadpreset\": \"Scarica preselezioni\",\n        \"downloadpreset_help\": \"Scarica un file di preselezioni fer salvataggio o condivisione\",\n        \"components\": {\n            \"tune\": \"Sintonizza\",\n            \"stop_help\": \"Interrompi la sessione e chiudi la trasmissione\",\n            \"transmissioncharts\": \"Carte di trasmissione\",\n            \"scatterdiagram\": \"Diagramma sparso\",\n            \"onair\": \"in aria\",\n            \"ping\": \"Ping\",\n            \"ping_help\": \"Manda una richiesta di ping a una stazione remota\",\n            \"newmessage_help\": \"Invia un nuovo messaggio a una stazione remota\",\n            \"startnewchat_help\": \"Inizia o continua una conversazione con un'altra stazione\",\n            \"heardstations\": \"Stazioni ricevute\",\n            \"time\": \"Tempo\",\n            \"freq\": \"Freq\",\n            \"dxcall\": \"DXCall\",\n            \"grid\": \"Grid\",\n            \"dist\": \"Dist\",\n            \"type\": \"Tipo\",\n            \"snr\": \"SNR\",\n            \"afk\": \"AFK?\",\n            \"audio\": \"Audio\",\n            \"broadcasts\": \"Trasmissione\",\n            \"transmitting\": \"Sto inviando...\",\n            \"pingstation\": \"PING Stazione\",\n            \"sendingcq\": \"Invio CQ...\",\n            \"sendingping\": \"Invio PING...\",\n            \"callcq\": \"Chiamo CQ\",\n            \"cqcqcq\": \"CQ CQ CQ\",\n            \"cqcqcq_help\": \"Trasmetti un CQ a tutti\",\n            \"togglebeacon\": \"attiva/disattiva beacon\",\n            \"togglebeacon_help\": \"Attiva/disattiva la modalità beacon. Mentre invii un beacon, puoi ricevere una richiesta di ping e aprire un canale per scambio di dati. If viene aperto uno scambio di dati il beacon entra in pausa.\",\n            \"enablebeacon\": \"Attiva il beacon\",\n            \"awayfromkey\": \"Lontano dalla tastiera\",\n            \"radiocontrol\": \"Controllo della radio\",\n            \"radiocontrolmode\": \"Modo\",\n            \"powerpercent\": \"% Potenza\",\n            \"tuner\": \"Sintonia\",\n            \"activity\": \"Attività\",\n            \"beacon\": \"Beacon\",\n            \"active\": \"Attivo\",\n            \"inactive\": \"Inattivo\",\n            \"connected\": \"Connesso\",\n            \"disconnected\": \"Disconnesso\",\n            \"online\": \"Online\",\n            \"offline\": \"Offline\",\n            \"received\": \"ricevuto\",\n            \"transmitted\": \"trasmesso\",\n            \"msgstatustransmitting\": \"in trasmissione\",\n            \"msgstatustransmitted\": \"trasmesso\",\n            \"msgstatusfailed\": \"fallito\",\n            \"msgstatusqueued\": \"accodato\"\n        }\n    },\n    \"modals\": {\n        \"close\": \"Chiudi\",\n        \"options\": \"Opzioni\",\n        \"savechanges\": \"Salva i cambiamenti\",\n        \"beaconhistogram\": \"Isogramma dei beacon\",\n        \"furtheroptions\": \"Altre opzioni\",\n        \"deletechat\": \"Cancella la chat\",\n        \"startnewchat\": \"Inizia una nuova chat\",\n        \"startnewchat2\": \"Inizia una nuova chat (prima digita il nominativo del destinatario)\",\n        \"newchatline1\": \"Digita il callsign di destinazione\",\n        \"newchatline2\": \"Digita il primo messaggio\",\n        \"newchatline3\": \"Click su INIZIA UNA NUOVA CHAT\",\n        \"newchatline4\": \"Controlla la tab della chat sul lato sinistro per i messaggi\",\n        \"firstmessage\": \"Primo messaggio\",\n        \"audiotuning\": \"Regolazione audio\",\n        \"audiotuninginfo\": \"Regola il livello audio. Valori in dB. Valore di default 0\",\n        \"testframe\": \"Test frame\",\n        \"testframetransmit\": \"Trasmetti (5s)\",\n        \"audiotuningrxlevel\": \"Livello RX\",\n        \"audiotuningtxlevel\": \"Livello TX\",\n        \"audiotuningtransmitsine\": \"Trasmetti un segnale sinusoidale\",\n        \"audiotuningtransmitsine30s\": \"Trasmetti (max 30s)\",\n        \"systemcheck\": \"Controlli di sistema\",\n        \"reloadgui\": \"Ricarica la GUI\",\n        \"network\": \"Rete\",\n        \"remoteinfo\": \"Per operazioni remote vai a configurazione/modem e metti 0.0.0.0 come indirizzo del server\",\n        \"apiurl\": \"API Url\",\n        \"furthersettings\": \"Per altre configurazioni vai a configurazione/modem\",\n        \"restartserveronproblem\": \"In caso di problemi strani puoi ricaricare il modem manualmente. Se il problema persiste prova a far ripartire il server.\",\n        \"manualmodemrestart\": \"Restart manuale del modem\",\n        \"manualmodemrestart_help\": \"Restart del modem. Configura l'audio e la radio prima!\",\n        \"radiocontrol\": \"Controllo della radio\",\n        \"radiocontrolinfo\": \"Questo è solo una configurazione rapida! Per altre opzioni vai a configurazione/controllo radio\",\n        \"rigcontrolmethod\": \"Metodo di controllo della radio\",\n        \"rigcontrolmethoddisabled\": \"Disabilitato (nessun controllo della radio; usalo con VOX)\",\n        \"rigcontrolmethodserialptt\": \"PTT seriale con DTR/RTS\",\n        \"rigcontrolmethodrigctld\": \"Rigctld (Hamlib esterna)\",\n        \"rigcontrolmethodrigctldbundle\": \"Rigctld (Hamlib interna)\",\n        \"radioport\": \"Porta della radio\",\n        \"testhamlib\": \"Provat Hamlib\",\n        \"systeminfo\": \"Informazioni del sistema\",\n        \"systeminfoalert\": \"Per favore condividi queste informazioni quando apri una richiesta di supporto\",\n        \"apiinformation\": \"Informazioni API\",\n        \"apiversion\": \"Versione API\",\n        \"modemversion\": \"Versione del Modem\",\n        \"osinfo\": \"Informazioni sul sistema operativo\",\n        \"system\": \"Sistema\",\n        \"node\": \"Nodo\",\n        \"release\": \"Rilascio\",\n        \"version\": \"Versione\",\n        \"machine\": \"Macchina\",\n        \"processor\": \"Processore\",\n        \"pythoninformation\": \"Informazioni Python\",\n        \"build\": \"Build\",\n        \"compiler\": \"Compiler\",\n        \"branch\": \"Branch\",\n        \"implementation\": \"Implementazione\",\n        \"revision\": \"Revisione\"\n    },\n    \"chat\": {\n        \"startnewchat\": \"Inizia una nuova chat\",\n        \"insertemoji\": \"Inserisci Emoji\",\n        \"entermessage_placeholder\": \"Messaggio - Invia con [Invio]\",\n        \"attempt\": \"tentativo\",\n        \"utc\": \"UTC\",\n        \"adif\": \"ADIF\",\n        \"new\": \"nuovo\",\n        \"selectChat\": \"Seleziona o inizia una chat\",\n        \"noConversations\": \"Ancora nessuna conversazione\",\n        \"loadingMessages\": \"Caricamento messaggi...\"\n    },\n    \"settings\": {\n        \"enable\": \"Abilita\",\n        \"default\": \"default\",\n        \"reload\": \"Ricarica\",\n        \"tabstation\": \"Stazione\",\n        \"tabgui\": \"GUI\",\n        \"tabradiocontrol\":\"Controllo radio\",\n        \"tabmodem\": \"Modem\",\n        \"tabchat\": \"Chat\",\n        \"tabexperimental\": \"Sperimentale\",\n        \"tabweb\": \"Web\",\n        \"tablinks\": \"Links\",\n        \"gui\": {\n            \"introduction\": \"confidurazione di parametri della GUI quali personalizzazione del tema della waterfall, linguaggio o comportamento del browser.\",\n            \"browserautolaunch\": \"Apri automaticamente il browser\",\n            \"browserautolaunch_help\": \"Apri automaticamente il browser (o una finestra) per l'URL della GUI quando parte il server\",\n            \"selectlanguage\": \"Seleziona la lingua\",\n            \"selectlanguage_help\": \"Seleziona la lingua preferita della GUI\",\n            \"waterfalltheme\": \"Tema per la waterfall\",\n            \"waterfalltheme_help\": \"Seleziona il tema di colore per la waterfall\",\n            \"colormode\": \"Color Mode\",\n            \"colormode_help\": \"Definisci il colore della GUI\",\n            \"colormodelight\": \"light\",\n            \"colormodedark\": \"dark\",\n            \"colormodeauto\": \"auto\"\n        },\n        \"station\": {\n            \"introduction\": \"Configurazione relativa alla stazione, quale nominativo, localizzazione e comportamento generale.\",\n            \"callsign\": \"Nominativo\",\n            \"callsign_help\": \"Digita un nominativo valido (Massimo 7 char, no caratteri speciali)\",\n            \"callsign_placeholder\": \"Digita il tuo nominativo e salvalo\",\n            \"callsignssid\": \"SSID\",\n            \"callsignssid_help\": \"Definisci un SSID per questa stazione\",\n            \"locator\": \"Grid Locator / Maidenhead\",\n            \"locator_help\": \"Digita un grid locator (Massimo 6 char; più corto sarà randomizzato)\",\n            \"locator_placeholder\": \"Tuo grid locator\",\n            \"respondtocq\": \"Rispondi a un CQ con una risposta QRV\",\n            \"respondtocq_help\": \"Risposta QRV inviata con un ritardo casuale\",\n            \"enablecallsignblacklist\": \"Abilita la blacklist dei nominativi\",\n            \"enablecallsignblacklist_help\": \"Ignora richieste dai nominativi in blacklist\",\n            \"callsignblacklist\": \"Blacklist dei nominativi\",\n            \"callsignblacklist_placeholder\": \"Lista di nominativi\",\n            \"callsignblacklist_help\": \"Un nominativo per riga\"\n        },\n        \"chat\": {\n            \"introduction\": \"Configurazione per i messaggi, come attivare la ripetizione automatica dei messaggi o la connessione al log ADIF.\",\n            \"enablemessageautorepeat\": \"Abilita la ripetizione automatica dei messaggi\",\n            \"enablemessageautorepeat_help\": \"Invia un messaggio di nuovo se ricevi un beacon\",\n            \"enableadifloggingudp\": \"Abilita il log in formato ADIF via UDP\",\n            \"enableadifloggingudp_help\": \"Log ADIF via UDP anziché TCP\",\n            \"adifloggingudphost\": \"Host per il log ADIF con UDP\",\n            \"adifloggingudphost_help\": \"ADIF host IP, ad esemempio 127.0.0.1\",\n            \"adifloggingudphost_placeholder\": \"Digita l'indirizzo IP del server ADIF\",\n            \"adifloggingudpport\": \"Porta UDP del server ADIF\",\n            \"adifloggingudpport_help\": \"ADIF server port, ad esempio 2237\",\n            \"adifloggingudpport_placeholder\": \"Digita la porta UDP del server ADIF\",\n            \"adifloggingwavelog\": \"Abilita il log con le API Wavelog\",\n            \"enableadifloggingwavelog_help\": \"Abilita il log con le API Wavelog\",\n            \"adifloggingwaveloghost\": \"Host con API Wavelog\",\n            \"adifloggingwaveloghost_placeholder\": \"Digita IP dellìhost\",\n            \"adifloggingwaveloghost_help\": \"Host del server con API Wavelog, ad esempio 127.0.0.1\",\n            \"adifloggingwavelogapi\": \"Wavelog API key\",\n            \"adifloggingwavelogapi_placeholder\": \"Digita la API key\",\n            \"adifloggingwavelogapi_help\": \"Digita la API key di Wavelog\"\n        },\n        \"modem\": {\n            \"introduction\": \"Definizione relative al Modem e all'Audio, incluso start/stop del modem, definizione delle periferiche audio, e livelli audio.\",\n            \"serverrestart_notification\": \"I parametri in ROSSO richiedono un restart del server!\",\n            \"restartserver\": \"Controllo manuale del server\",\n            \"restartserver_help\": \"Start / stop del modem. Controlla che audio e radio siano configurate prima di far partire il modem.\",\n            \"modemport\": \"Porta del modem\",\n            \"modemport_help\": \"Definisce la porta del modem. Se modificata serve far ripartire il modem\",\n            \"modemhost\": \"Host del modem\",\n            \"modemhost_help\": \"Definisce l'indirizzo dell'host del modem. Se modificata serve far ripartire il modem\",\n            \"audioinputdevice\": \"Periferica audio di input\",\n            \"audioinputdevice_help\": \"Seleziona la periferica microfono o line-in\",\n            \"audiooutputdevice\": \"Periferica audio di output\",\n            \"audiooutputdevice_help\": \"Seleziona la periferica speaker o line-out\",\n            \"rxaudiolevel\": \"Levello ausio RX\",\n            \"rxaudiolevel_help\": \"Regolazione del livello audio in RX\",\n            \"txaudiolevel\": \"Livello audio TX\",\n            \"txaudiolevel_help\": \"Regolazione del livello audio in TX\",\n            \"txdelay\": \"Ritardo in ms per la trasmissione\",\n            \"txdelay_help\": \"Ritardo prima di trasmettere, in millisecondi\",\n            \"maximumbandwidth\": \"Massima ampiezza di banda usabile\",\n            \"maximumbandwidth_help\": \"Seleziona la lassima ampiezza di banda che il modem può usare\",\n            \"enabletxautoadjust\": \"Livello audio TX auto\", \n            \"enablerxautoadjust\": \"Livello audio RX auto\",\n            \"enabletxautoadjust_help\": \"Regola il livello audio in TX automaticamente al valore più alto possibile\" , \n            \"enablerxautoadjust_help\": \"Regola il livello audio in RX automaticamente al valore più alto possibile\"            \n        },\n        \"web\": {\n            \"introduction\": \"Parametri per Explorer, compreso l'attivazione di Explorer per i dati e le statistiche.\",\n            \"description\": \" Pubblica informazioni come la frequenza o le stazioni sentite su https://explorer.freedata.app, in modo che altri utenti possano vedere lo stato della tua stazione. Questa funzione è in corso di sviluppo e potrebbe non funzionare.\",\n            \"enableexplorer\": \"Pubblica i dettagli della stazione\",\n            \"enableexplorer_help\": \"Condividi lo stato della tua stazione con il web service di FreeDATA\",\n            \"enablestats\":\"Pubblica le statistiche\",\n            \"enablestats_help\": \"Condividi lo stato della tua stazione con il web service di FreeDATA\"\n        },\n        \"exp\": {\n            \"introduction\": \"Attenzione: Queste funzioni possono essere incomplete. Sono SOLO per utenti esperti!\",\n            \"info\": \"Info: Non sono ancora state rese disponibili funzioni per il test\",\n            \"enableringbuffer\": \"Attiva il ring buffer\",\n            \"enableringbuffer_help\": \"Attiva un ring buffer sperimentale che può essere più efficiente su CPU di bassa potenza\",\n            \"enablevhf\": \"Abilita i modi VHF -- per adesso solo CQ --\",\n            \"enablevhf_help\": \"Modi VHF sperimentali per test\"\n        },\n        \"radio\": {\n            \"introduction\": \"Parametri per il controllo della radio, compreso il metodo di controllo e le configurazioni specifiche del metodo.\",\n            \"info\": \"Prima seleziona il metodo di controllo della radio.\",\n            \"rigcontroltype\": \"Controllo della radio\",\n            \"rigcontroltype_help\": \"Scegli con il software controlla la tua radio\",\n            \"tabhamlib\": \"Hamlib\",\n            \"tabserial\": \"Seriale\",\n            \"tabflrig\": \"flrig\",\n            \"serialpttcomport\": \"PTT Com port\",\n            \"serialpttcomport_help\": \"Seleziona la porta seriale connessa con la radio per il controllo PTT\",\n            \"serialpttcustomcomport\": \"PTT Custom COM port\",\n            \"serialpttcustomcomport_help\": \"Sovrascrivi la porta seriale della radio se non compare nella lista\",\n            \"serialpttviadtr\": \"PTT via DTR\",\n            \"serialpttviadtr_help\": \"Configura DTR come controllò per il PTT\",\n            \"serialpttviarts\": \"PTT via RTS\",\n            \"serialpttviarts_help\": \"Configura RTS come controllò per il PTT\",\n            \"hamlibrigctldenablevfo\": \"Parametro VFO di rigctld\",\n            \"hamlibrigctldenablevfo_help\": \"Attiva il supporto del parametro VFO in rigctld\",\n            \"hamlibrigctldhost\": \"Rigctld IP\",\n            \"hamlibrigctldhost_help\": \"Digita l'indirizzo IP del server rigctld\",\n            \"hamlibrigctldhost_placeholder\": \"Digita IP di rigctld\",\n            \"hamlibrigctldport\": \"Rigctld Port\",\n            \"hamlibrigctldport_help\": \"Digita il numero di porta del server rigctld\",\n            \"hamlibrigctldport_placeholder\": \"Digita la porta rigctld\",\n            \"hamlibrigctldradiomodel\": \"Modello della radio\",\n            \"hamlibrigctldradiomodel_help\": \"Seleziona il modella della radio da controllare\",\n            \"hamlibrigctldcomport\": \"Radio COM port\",\n            \"hamlibrigctldcomport_help\": \"Seleziona la porta seriale a cui è connessa la radio\",\n            \"hamlibrigctldcustomcomport\": \"Radio custom COM port\",\n            \"hamlibrigctldcustomcomport_help\": \"Sovrascrivi la porta seriale della radio se non compare nella lista\",\n            \"hamlibrigctldserialspeed\": \"Serial speed\",\n            \"hamlibrigctldserialspeed_help\": \"Definisce la velocità della comunicazione in baud\",\n            \"hamlibrigctlddatabits\": \"Data bits\",\n            \"hamlibrigctlddatabits_help\": \"Scegli in numero di bits dei dati\",\n            \"hamlibrigctldstopbits\": \"Stop bits\",\n            \"hamlibrigctldstopbits_help\": \"Definisce il numero di bits di stop per la seriale\",\n            \"hamlibrigctldhandshake\": \"Scegli il numero di bits di stop\",\n            \"hamlibrigctldhandshake_help\": \"Definisce il metodo di handshake della seriale\",\n            \"hamlibrigctldpttdeviceport\": \"PTT device port\",\n            \"hamlibrigctldpttdeviceport_help\": \"Scegli la porta per il controllo del PTT\",\n            \"hamlibrigctldptttype\": \"PTT type\",\n            \"hamlibrigctldptttype_help\": \"Scegli il metodo di controllo del PTT\",\n            \"hamlibrigctlddcd\": \"DCD\",\n            \"hamlibrigctlddcd_help\": \"Scegli il metodo Data Carrier Detect\",\n            \"hamlibrigctlddtr\": \"DTR\",\n            \"hamlibrigctlddtr_help\": \"Scegli il metodo Data Terminal Ready\",\n            \"hamlibrigctldcommand\": \"Rigctld command\",\n            \"hamlibrigctldcommand_help\": \"Definisci automaticamente il comando sulla base dei parametri definiti\",\n            \"hamlibrigctldcommand_placeholder\": \"Definisci automaticamente dai parametri precedenti\",\n            \"hamlibrigctldcustomarguments\": \" Argomenti specifici di rigctld\",\n            \"hamlibrigctldcustomarguments_help\": \"Parametri addizionali di rigctld (normalmente non necessari)\",\n            \"hamlibrigctldcustomarguments_placeholder\": \"Parametri addizionali\",\n            \"flrigport\": \"Porta Flrig\",\n            \"flrigport_help\": \"Definisce la porta dove il server flrig ascolta (Default: 12345)\",\n            \"flrighost\": \"Host Flrig\",\n            \"flrighost_help\": \"Definisce l'indirizzo del server, in genere localhost o 127.0.0.1\"\n        }\n    }\n}\n"
  },
  {
    "path": "freedata_gui/src/locales/no_Norsk.json",
    "content": "{\n    \"general\": {\n        \"bytes\": \"Bytes\",\n        \"size\": \"Størrelse\",\n        \"speed\": \"Hastighet\",\n        \"statistics\": \"Statistikk\",\n        \"duration\": \"Varighet\",\n        \"chart\": \"Diagram\",\n        \"dxcallsign\": \"dxkallesignal\",\n        \"destination\": \"destinasjon\",\n        \"stop\": \"Stopp\",\n        \"modem\": \"Modem\",\n        \"frequency\": \"frekvens\"\n    },\n    \"popups\": {\n        \"startupfailed\": \"Oppstart av modem mislyktes - dårlig konfig?\",\n        \"connectedtoserver\": \"Koblet til server\",\n        \"cqreceived\": \"CQ mottatt\",\n        \"gridsquare\": \"Grid Square\",\n        \"snr\": \"SNR\",\n        \"qrvreceived\": \"QRV mottatt\",\n        \"pingreceived\": \"PING mottatt\",\n        \"pingackreceived\": \"PING ACK mottatt\",\n        \"newtransmissionwith\": \"Ny overføring med\",\n        \"sessionid\": \"Økt-ID\",\n        \"totalbytes\": \"Totalt antall bytes\",\n        \"openingtransmissionwith\": \"Åpne overføring med\",\n        \"ongoingtransmissionwith\": \"Pågående overføring med\",\n        \"transmittedbytes\": \"Overførte bytes\",\n        \"transmissionabortedwith\": \"Overføring AVBRUTT med\",\n        \"state\": \"Tilstand\",\n        \"transmissionendedwith\": \"Sending AVSLUTTET med\",\n        \"bytesperminute\": \"Byte per minutt\",\n        \"transmissionfailedwith\": \"Overføring MISLYKKET med\",\n        \"confirmingtransmissionwith\": \"Bekrefter overføring med\",\n        \"receivedbytes\": \"Mottatte bytes\",\n        \"adiflogheader\": \"ADIF\",\n        \"adiflogtext1\": \"QSO med\",\n        \"adiflogtext2\": \"lagt til i loggen.\",\n        \"adiflogerror\": \"ADIF export feilet\"\n    },\n    \"navbar\": {\n        \"frequency_help\": \"Hva er frekvensen, Kenneth?\",\n        \"speedlevel_help\": \"Hastighetsnivå\",\n        \"totalbytes_help\": \"Totalt overført bytes\",\n        \"connectedstation_help\": \"Nåværende eller siste tilkoblede stasjon\",\n        \"from\": \"fra\",\n        \"to\": \"til\",\n        \"pttstate_help\": \"PTT tilstand\",\n        \"modemstate_help\" : \"Modemtilstand\",\n        \"bytestransferred\": \"Bytes overført\",\n        \"modemcheck\": \"Modemsjekk\",\n        \"modemcheck_help\": \"Sjekk FreeDATA-status\",\n        \"home\": \"Hjem\",\n        \"home_help\": \"Hjem\",\n        \"chat\": \"RF Chat\",\n        \"chat_help\": \"RF Chat\",\n        \"settings\": \"Innstillinger\",\n        \"settings_help\": \"Innstillinger\",\n        \"station\": \"Stasjon\",\n        \"station_help\": \"Stasjonsinformasjon\"\n    },\n    \"grid\": {\n        \"frequencydescription\": \"Vanlig brukte frekvenser er oppført her, og er alle USB. Bare klikk på en oppføring eller skriv inn en frekvens manuelt i tekstboksen for å justere riggen din hvis riggkontroll er aktivert.\",\n        \"frequencyselection\": \"Frekvensvalg\",\n        \"savepreset\": \"Lagre forhåndsinnstilling\",\n        \"savepreset_help\": \"Lagre gjeldende rutenettoppsett som en forhåndsinnstilling som kan gjenopprettes ved å bruke gjenopprettknappen\",\n        \"restorepreset\": \"Gjenopprett forhåndsinnstilling\",\n        \"restorepreset_help\": \"Gjenopprett den lagrede rutenettforhåndsinnstillingen (tømmer gjeldende rutenett)\",\n        \"cleargrid\": \"Tøm rutenett\",\n        \"cleargrid_help\": \"Fjern alle elementer fra rutenettet\",\n        \"gridedit\": \"rutenettredigering\",\n        \"managegridwidgets\": \"Administrer rutenettwidgets\",\n        \"gridwidgetsdescription\": \"Rutenett-widgeter lar deg tilpasse skjermen. Du kan legge til flere widgets for å tilpasse dine behov. Du kan flytte og endre størrelsen på de individuelle widgetene!\",\n        \"fillgrid\": \"Fyll rutenettet med de mest vanlige widgets\",\n        \"fillgridsmallscreen\": \"Fyll rutenett for små skjermer\",\n        \"activity\": \"Aktivitet\",\n        \"audio\": \"Lyd\",\n        \"broadcasts\": \"Kringkasting\",\n        \"radiocontrol\": \"Radiokontroll/Status\",\n        \"statistics\": \"Statistikk\",\n        \"other\": \"Annet\",\n        \"uploadpreset\": \"Last opp forhåndsinnstilling\",\n        \"uploadpreset_help\": \"Last opp en forhåndsinnstilt fil\",\n        \"downloadpreset\": \"Last ned forhåndsinnstilling\",\n        \"downloadpreset_help\": \"Last ned forhåndsinnstilt fil for deling eller lagring\",\n        \"components\": {\n            \"tune\": \"Tune\",\n            \"stop_help\": \"Avbryt økten og stopp overføringer\",\n            \"transmissioncharts\": \"Overføringskart\",\n            \"scatterdiagram\": \"Spredningsdiagram\",\n            \"onair\": \"på lufta\",\n            \"ping\": \"Ping\",\n            \"ping_help\": \"Send en ping-forespørsel til en ekstern stasjon\",\n            \"newmessage_help\": \"Send en ny melding til en ekstern stasjon\",\n            \"startnewchat_help\": \"Start eller fortsett en samtale med en annen stasjon\",\n            \"heardstations\": \"Hørte stasjoner\",\n            \"time\": \"Tid\",\n            \"freq\": \"Frek\",\n            \"dxcall\": \"DXCall\",\n            \"grid\": \"Grid\",\n            \"dist\": \"Dist\",\n            \"type\": \"Type\",\n            \"snr\": \"SNR\",\n            \"afk\": \"AFK?\",\n            \"audio\": \"Lyd\",\n            \"broadcasts\": \"Sendinger\",\n            \"transmitting\": \"Sender...\",\n            \"pingstation\": \"PING stasjon\",\n            \"sendingcq\": \"Sender CQ...\",\n            \"sendingping\": \"Sending PING...\",\n            \"callcq\": \"Send CQ\",\n            \"cqcqcq\": \"CQ CQ CQ\",\n            \"togglebeacon\": \"veksle beacon\",\n            \"togglebeacon_help\": \"Slå av beacon-modus. Mens du sender et beacon, kan du motta ping-forespørsler og åpne en datakanal. Hvis en datakanal åpnes, stopper beaconet.\",\n            \"enablebeacon\": \"Aktiver beacon\",\n            \"awayfromkey\": \"Borte fra tastaturet\",\n            \"radiocontrol\": \"Radiokontroll\",\n            \"radiocontrolmode\": \"Mode\",\n            \"powerpercent\": \"% Effekt\",\n            \"tuner\": \"Tuner\",\n            \"activity\": \"Aktivitet\", \"beacon\": \"Beacon\",\n            \"active\": \"Aktiv\",\n            \"inactive\": \"Inaktiv\",\n            \"connected\": \"Tilkoblet\",\n            \"disconnected\": \"Koblet fra\", \"online\": \"Online\",\n            \"offline\": \"Frakoblet\",\n            \"received\": \"mottatt\",\n            \"transmitted\": \"overført\",\n            \"msgstatustransmitting\": \"transmitting\",\n            \"msgstatustransmitted\": \"transmitted\",\n            \"msgstatusfailed\": \"mislyktes\",\n            \"msgstatusqueued\": \"i kø\"\n        }\n    },\n    \"modals\": {\n        \"close\": \"Lukke\",\n        \"options\": \"Alternativer\",\n        \"savechanges\": \"Lagre endringer\",\n        \"beaconhistogram\": \"Beacon histogram\",\n        \"furtheroptions\": \"Ytterligere alternativer\",\n        \"deletechat\": \"Slett chat\",\n        \"startnewchat\": \"Start en ny chat\",\n        \"startnewchat2\": \"Start en ny chat (skriv inn dx-kallesignalet først)\",\n        \"newchatline1\": \"Angi destinasjonskallesignal\",\n        \"newchatline2\": \"Skriv inn en første melding\",\n        \"newchatline3\": \"Klikk START NY CHAT\",\n        \"newchatline4\": \"Sjekk chat-fanen på venstre side for meldinger\",\n        \"firstmessage\": \"Første melding\",\n        \"audiotuning\": \"Lydinnstilling\",\n        \"audiotuninginfo\": \"Juster lydnivåer. Verdi i dB. Standardverdien er 0\",\n        \"testframe\": \"Test frame\",\n        \"testframetransmit\": \"Send ( 5s )\",\n        \"audiotuningrxlevel\": \"RX Nivå\",\n        \"audiotuningtxlevel\": \"TX Nivå,\",\n        \"audiotuningtransmitsine\": \"Send sinus\",\n        \"audiotuningtransmitsine30s\": \"Sende (maks 30s)\",\n        \"systemcheck\": \"Systemsjekk\",\n        \"reloadgui\": \"Last inn GUI på nytt\",\n        \"network\": \"Nettverk\",\n        \"remoteinfo\": \"For ekstern betjening, gå til innstillinger/modem og sett serverens ip til 0.0.0.0\",\n        \"apiurl\": \"API URL\",\n        \"furthersettings\": \"For ytterligere innstillinger, gå til innstillinger/modem\",\n        \"restartserveronproblem\": \"Ved uvanlige problemer kan du laste det interne modemet på nytt manuelt. Hvis problemet vedvarer, bør du vurdere en omstart av serveren.\",\n        \"manualmodemrestart\": \"Manuell omstart av modemet\",\n        \"manualmodemrestart_help\": \"Start modemet på nytt. Still inn lyd- og radioinnstillingene først!\",\n        \"radiocontrol\": \"Radiokontroll\",\n        \"radiocontrolinfo\": \"Dette er bare en rask innstilling! For flere alternativer, gå til innstillinger/riggkontroll\",\n        \"rigcontrolmethod\": \"Riggkontrollmetode\",\n        \"rigcontrolmethoddisabled\": \"Deaktivert (ingen riggkontroll; bruk med VOX)\",\n        \"rigcontrolmethodserialptt\": \"Seriell PTT via DTR/RTS\",\n        \"rigcontrolmethodrigctld\": \"Rigctld (ekstern Hamlib-forekomst)\",\n        \"rigcontrolmethodrigctldbundle\": \"Rigctld (intern Hamlib)\",\n        \"radioport\": \"Radio port\",\n        \"testhamlib\": \"Test Hamlib\",\n        \"systeminfo\": \"System info\",\n        \"systeminfoalert\": \"Vennligst del denne informasjonen når du åpner et problem\",\n        \"apiinformation\": \"API-informasjon\",\n        \"apiversion\": \"API-versjon\",\n        \"modemversion\": \"Modemversjon\",\n        \"osinfo\": \"Operativsysteminformasjon\",\n        \"system\": \"System\",\n        \"node\": \"Node\",\n        \"release\": \"Utgivelse\",\n        \"version\": \"Versjon\",\n        \"machine\": \"Maskin\",\n        \"processor\": \"Prosessor\",\n        \"pythoninformation\": \"Python-informasjon\",\n        \"build\": \"Bygget\",\n        \"compiler\": \"Kompilator\",\n        \"branch\": \"gren\",\n        \"implementation\": \"Implementering\",\n        \"revision\": \"Revisjon\"\n    },\n    \"chat\": {\n        \"startnewchat\": \"Start en ny chat\",\n        \"insertemoji\": \"Sett inn emoji\",\n        \"entermessage_placeholder\": \"Melding - Send med [Enter]\",\n        \"attempt\": \"forsøk\",\n        \"utc\": \"UTC\",\n        \"adif\": \"ADIF\",\n        \"new\": \"ny\",\n        \"selectChat\": \"Velg eller start en ny chat\",\n        \"noConversations\": \"Ingen meldinger...\",\n        \"loadingMessages\": \"Henter meldinger...\"\n    },\n    \"settings\": {\n        \"enable\": \"Aktiver\",\n        \"default\": \"standard\",\n        \"reload\": \"Last inn på nytt\",\n        \"tabstation\": \"Stasjon\",\n        \"tabgui\": \"GUI\",\n        \"tabradiocontrol\":\"Riggkontroll\",\n        \"tabmodem\": \"Modem\",\n        \"tabchat\": \"Chat\",\n        \"tabexperimental\": \"Exp\",\n        \"tabweb\": \"Web\",\n        \"tablinks\": \"Lenker\",\n        \"gui\": {\n            \"introduction\": \"GUI-relaterte innstillinger som å tilpasse fossefalltema, språk eller nettleseratferd.\",\n            \"browserautolaunch\": \"Start nettleseren automatisk\",\n            \"browserautolaunch_help\": \"Start nettleseren til GUI URL ved oppstart av serveren\",\n            \"selectlanguage\": \"Velg språk\",\n            \"selectlanguage_help\": \"Velg det foretrukne språket som brukes for GUI\",\n            \"waterfalltheme\": \"Fossefalltema\",\n            \"waterfalltheme_help\": \"Velg fargetema for fossefallvisning\",\n            \"colormode\": \"Fargemodus\",\n            \"colormode_help\": \"GUI-fargemodus\",\n            \"colormodelight\": \"lys\",\n            \"colormodedark\": \"mørk\",\n            \"colormodeauto\": \"auto\"\n        },\n        \"station\": {\n            \"introduction\": \"Stasjonsrelaterte innstillinger, som å endre kallesignal, plassering og generell oppførsel.\",\n            \"callsign\": \"Kallesignal\",\n            \"callsign_help\": \"Skriv inn et gyldig kallesignal (maks. 7 tegn, ingen spesielle tegn)\",\n            \"callsign_placeholder\": \"Skriv inn kallesignalet ditt og lagre det\",\n            \"callsignssid\": \"Kallesignal SSID\",\n            \"callsignssid_help\": \"Angi en SSID for denne stasjonen\",\n            \"locator\": \"Grid Locator / Maidenhead\",\n            \"locator_help\": \"Skriv inn en Grid Locator (maks. 6 tegn; kortere vil randomisere)\",\n            \"locator_placeholder\": \"Din grid locator\",\n            \"respondtocq\": \"Svar på CQ-oppkall med et QRV-svar\",\n            \"respondtocq_help\": \"QRV-svar sendt med tilfeldig forsinkelse\",\n            \"enablecallsignblacklist\": \"Aktiver svarteliste for kallesignaler\",\n            \"enablecallsignblacklist_help\": \"Ignorer forespørsler fra svartelistede kallesignaler\",\n            \"callsignblacklist\": \"Kallesignal svarteliste\",\n            \"callsignblacklist_placeholder\": \"Liste over kallesignaler\",\n            \"callsignblacklist_help\": \"Ett kallesignal per linje\"\n        },\n        \"chat\": {\n            \"introduction\": \"Meldingsrelaterte innstillinger, som å aktivere automatisk repetisjon av meldinger og konfigurere ADIF-loggtilkobling.\",\n            \"enablemessageautorepeat\": \"Aktiver automatisk repetisjon av melding\",\n            \"enablemessageautorepeat_help\": \"Send melding på nytt når man mottar beacon\",\n            \"enableadifloggingudp\": \"Aktiver adif-logging via UDP\",\n            \"enableadifloggingudp_help\": \"ADIF-logging via UDP i stedet for TCP\",\n            \"adifloggingudphost\": \"ADIF Logging UDP-vert\",\n            \"adifloggingudphost_help\": \"ADIF-serververt, f.eks. 127.0.0.1\",\n            \"adifloggingudphost_placeholder\": \"Skriv inn ADIF-serververt\",\n            \"adifloggingudpport\": \"ADIF Logging UDP-port\",\n            \"adifloggingudpport_help\": \"ADIF-serverport, f.eks. 2237\",\n            \"adifloggingudpport_placeholder\": \"Skriv inn ADIF-serverporten\",\n            \"adifloggingwavelog\": \"Aktiver logging via Wavelog API\",\n            \"enableadifloggingwavelog_help\": \"Aktiver ADIF-logging via Wavelog\",\n            \"adifloggingwaveloghost\": \"Wavelog API-vert\",\n            \"adifloggingwaveloghost_placeholder\": \"Skriv inn vert\",\n            \"adifloggingwaveloghost_help\": \"Wavelog API-serververt, f.eks. 127.0.0.1\",\n            \"adifloggingwavelogapi\": \"Wavelog API-nøkkel\",\n            \"adifloggingwavelogapi_placeholder\": \"Skriv inn API-nøkkel\",\n            \"adifloggingwavelogapi_help\": \"Skriv inn Wavelog API-nøkkel\"\n        },\n        \"modem\": {\n            \"introduction\": \"Modem- og lydrelaterte innstillinger, inkludert start/stopping av modemet, konfigurering av lydenheter og justering av lydnivåer.\",\n            \"serverrestart_notification\": \"Innstillinger i RØDT krever omstart av serveren!\",\n            \"restartserver\": \"Manuell modemkontroll\",\n            \"restartserver_help\": \"Start eller stopp modemet. Sørg for at lyd- og radioinnstillingene er konfigurert først.\",\n            \"modemport\": \"Modemport\",\n            \"modemport_help\": \"Still inn modemporten. En omstart av serveren er nødvendig\",\n            \"modemhost\": \"Modemvert\",\n            \"modemhost_help\": \"angi modemvertsadressen. En omstart av serveren er nødvendig\",\n            \"audioinputdevice\": \"Lydinngangsenhet\",\n            \"audioinputdevice_help\": \"Velg mikrofonen eller linjeinngangen din\",\n            \"audiooutputdevice\": \"Lydutgangsenhet\",\n            \"audiooutputdevice_help\": \"Velg din høyttaler eller linje ut enhet\",\n            \"rxaudiolevel\": \"RX lydnivå\",\n            \"rxaudiolevel_help\": \"Juster for å stille inn lydnivå for mottak\",\n            \"txaudiolevel\": \"TX lydnivå\",\n            \"txaudiolevel_help\": \"Juster for å stille inn lydnivå for sending\",\n            \"txdelay\": \"TX-forsinkelse i ms\",\n            \"txdelay_help\": \"Forsinkelse før sending, i millisekunder\",\n            \"maximumbandwidth\": \"Maksimal brukt båndbredde\",\n            \"maximumbandwidth_help\": \"Velg maksimal båndbredde modemet skal bruke\",\n            \"enabletxautoadjust\": \"Auto TX audio nivå\",\n            \"enablerxautoadjust\": \"Auto RX audio nivå\",\n            \"enabletxautoadjust_help\": \"Sett TX-lydnivået automatisk til høyest mulig verdi\" ,\n            \"enablerxautoadjust_help\": \"Sett RX-lydnivået automatisk til høyest mulig verdi\"\n        },\n        \"web\": {\n            \"introduction\": \"Explorer-relaterte innstillinger, inkludert aktivering av Explorer-publisering og Explorer-statistikkpublisering.\",\n            \"description\": \"Publiser informasjon som frekvensen din eller hørte stasjoner til https://explorer.freedata.app, slik at andre brukere kan se stasjonens status. Publiseringsstatistikk er for øyeblikket under utvikling og kan være ustabilt.\",\n            \"enableexplorer\": \"Publiser stasjonsdetaljer\",\n            \"enableexplorer_help\": \"Del stasjonens status med FreeDATA-netttjenesten\",\n            \"enablestats\":\"Publiser statistikk\",\n            \"enablestats_help\": \"Del stasjonens statistikk med FreeDATA-netttjenesten\"\n        },\n        \"exp\": {\n            \"introduction\": \"Advarsel: Disse funksjonene kan være ustabile. De er KUN for erfarne brukere!\",\n            \"info\": \"Info: Ingen funksjoner publiseres for testing ennå\",\n            \"enableringbuffer\": \"Aktiver ringbuffer\",\n            \"enableringbuffer_help\": \"Aktiver en eksperimentell ringbuffer som kan være mer effektiv på CPU med liten prosessor\",\n            \"enablevhf\": \"Aktiver VHF-moduser -- bare CQ foreløpig --\",\n            \"enablevhf_help\": \"Aktiver eksperimentelle VHF-moduser for testing\"\n        },\n        \"radio\": {\n            \"introduction\": \"Riggkontrollrelaterte innstillinger, inkludert valg av riggkontrollmetode og konfigurering av spesifikke innstillinger.\",\n            \"info\": \"Velg Riggkontroll først.\",\n            \"rigcontroltype\": \"Riggkontroll\",\n            \"rigcontroltype_help\": \"Velg hvordan programvaren styrer radioen din\",\n            \"tabhamlib\": \"Hamlib\",\n            \"tabserial\": \"Seriell\",\n            \"tabflrig\": \"flrig\",\n            \"serialpttcomport\": \"PTT Com port\",\n            \"serialpttcomport_help\": \"Velg COM-porten koblet til radioen for PTT-kontroll\",\n            \"serialpttcustomcomport\": \"PTT egendefinert COM port\",\n            \"serialpttcustomcomport_help\": \"Overstyr com-porten på radioen hvis den ikke er oppført ovenfor\",\n            \"serialpttviadtr\": \"PTT via DTR\",\n            \"serialpttviadtr_help\": \"Konfigurer DTR-linjeoppførsel for PTT-kontroll\",\n            \"serialpttviarts\": \"PTT via RTS\",\n            \"serialpttviarts_help\": \"Konfigurer RTS-linjeoppførsel for PTT-kontroll\",\n            \"hamlibrigctldenablevfo\": \"Rigctld VFO parameter\",\n            \"hamlibrigctldenablevfo_help\": \"Aktiver VFO-støtte i rigctld\",\n            \"hamlibrigctldhost\": \"Rigctld IP\",\n            \"hamlibrigctldhost_help\": \"Skriv inn IP-adressen til rigctld-serveren\",\n            \"hamlibrigctldhost_placeholder\": \"Skriv inn Rigctld IP\",\n            \"hamlibrigctldport\": \"Rigctld Port\",\n            \"hamlibrigctldport_help\": \"Skriv inn portnummeret til rigctld-serveren\",\n            \"hamlibrigctldport_placeholder\": \"Gå inn i Rigctld Port\",\n            \"hamlibrigctldradiomodel\": \"Radiomodell\",\n            \"hamlibrigctldradiomodel_help\": \"Velg din radiomodell for riggkontroll\",\n            \"hamlibrigctldcomport\": \"Radio COM port\",\n            \"hamlibrigctldcomport_help\": \"Velg den serielle porten som er koblet til radioen\",\n            \"hamlibrigctldcustomcomport\": \"Egendefinert COM-port for radio\",\n            \"hamlibrigctldcustomcomport_help\": \"Overstyr com-porten på radioen hvis den ikke er oppført ovenfor\",\n            \"hamlibrigctldserialspeed\": \"Seriell hastighet\",\n            \"hamlibrigctldserialspeed_help\": \"Still inn overføringshastigheten for seriell kommunikasjon\",\n            \"hamlibrigctlddatabits\": \"Databiter\",\n            \"hamlibrigctlddatabits_help\": \"Velg antall databiter\",\n            \"hamlibrigctldstopbits\": \"Stoppbiter\",\n            \"hamlibrigctldstopbits_help\": \"Still inn overføringshastigheten for seriell kommunikasjon\",\n            \"hamlibrigctldhandshake\": \"Velg antall stoppbiter\",\n            \"hamlibrigctldhandshake_help\": \"Angi metoden for seriell håndtrykk\",\n            \"hamlibrigctldpttdeviceport\": \"PTT-enhetsport\",\n            \"hamlibrigctldpttdeviceport_help\": \"Velg porten som brukes for PTT-kontroll\",\n            \"hamlibrigctldptttype\": \"PTT-type\",\n            \"hamlibrigctldptttype_help\": \"Velg metoden for PTT-kontroll\",\n            \"hamlibrigctlddcd\": \"DCD\",\n            \"hamlibrigctlddcd_help\": \"Velg Data Carrier Detect-metoden\",\n            \"hamlibrigctlddtr\": \"DTR\",\n            \"hamlibrigctlddtr_help\": \"Still inn DTR-linjetilstanden\",\n            \"hamlibrigctldcommand\": \"Rigctld kommando\",\n            \"hamlibrigctldcommand_help\": \"Automatisk utfylt kommando basert på innstillinger\",\n            \"hamlibrigctldcommand_placeholder\": \"Automatisk utfylt fra innstillingene ovenfor\",\n            \"hamlibrigctldcustomarguments\": \"Rigctld egendefinerte argumenter\",\n            \"hamlibrigctldcustomarguments_help\": \"Ytterligere argumenter for rigctld (vanligvis ikke ndvendig)\",\n            \"hamlibrigctldcustomarguments_placeholder\": \"Valgfrie egendefinerte argumenter\",\n            \"flrigport\": \"Flrig port\",\n            \"flrigport_help\": \"Angi porten der flrig-serveren lytter (standard: 12345)\",\n            \"flrighost\": \"Flrig host\",\n            \"flrighost_help\": \"Angi vertsadressen til serveren, vanligvis localhost eller 127.0.0.1\"\n        }\n    }\n}\n"
  },
  {
    "path": "freedata_gui/src/main.js",
    "content": "import { createApp } from \"vue\";\nimport { createPinia } from \"pinia\";\nimport App from \"./App.vue\";\nimport i18next from \"./js/i18n\";\nimport I18NextVue from \"i18next-vue\";\n\nimport { Chart, Filler } from \"chart.js\";\nimport { getRemote, settingsStore as settings } from \"./store/settingsStore\";\nimport { initConnections } from \"./js/event_sock.js\";\nimport { getModemState } from \"./js/api\";\nimport { applyColorMode } from \"./js/freedata.js\";\n\n// Register the Filler plugin globally\nChart.register(Filler);\n\n// Create the Vue app\nconst app = createApp(App);\n\napp.use(I18NextVue, { i18next });\n\n// Create and use the Pinia store\nconst pinia = createPinia();\napp.use(pinia);\n\n// Mount the app\napp.mount(\"#app\");\n\n// Initialize settings and connections\ngetRemote().then(() => {\n  initConnections();\n  getModemState();\n\n  // Update the i18next language based on the stored settings\n  i18next.changeLanguage(settings.local.language);\n\n  //Apply Color Mode to gui\n  applyColorMode(settings.local.colormode);\n});\n"
  },
  {
    "path": "freedata_gui/src/store/audioStore.js",
    "content": "import { defineStore } from \"pinia\";\nimport { getAudioDevices } from \"../js/api\";\nimport { ref } from \"vue\";\n\n// Define skel fallback data\nconst skel = [\n  {\n    api: \"ERR\",\n    id: \"0000\",\n    name: \"No devices received from modem\",\n    native_index: 0,\n  },\n];\n\nexport const useAudioStore = defineStore(\"audioStore\", () => {\n  const audioInputs = ref([]);\n  const audioOutputs = ref([]);\n\n  const loadAudioDevices = async () => {\n    try {\n      const devices = await getAudioDevices();\n      // Check if devices are valid and have entries, otherwise use skel\n      audioInputs.value = devices && devices.in.length > 0 ? devices.in : skel;\n      audioOutputs.value =\n        devices && devices.out.length > 0 ? devices.out : skel;\n    } catch (error) {\n      console.error(\"Failed to load audio devices:\", error);\n      // Use skel as fallback in case of error\n      audioInputs.value = skel;\n      audioOutputs.value = skel;\n    }\n  };\n\n  return {\n    audioInputs,\n    audioOutputs,\n    loadAudioDevices,\n  };\n});\n"
  },
  {
    "path": "freedata_gui/src/store/chatStore.js",
    "content": "import { defineStore } from \"pinia\";\nimport { ref } from \"vue\";\n\nexport const useChatStore = defineStore(\"chatStore\", () => {\n  var callsign_list = ref();\n  var sorted_chat_list = ref();\n  var newChatCallsign = ref();\n  var newChatMessage = ref();\n  var totalUnreadMessages = ref(0);\n\n  // Indicator if we are loading data\n  var loading = ref(false);\n\n  /* ------------------------------------------------ */\n  // Scroll to bottom functions\n  const scrollTrigger = ref(0);\n\n  function triggerScrollToBottom() {\n    scrollTrigger.value++;\n  }\n\n  var selectedCallsign = ref();\n  var messageInfoById = ref(); // holds a unique message if requested by id\n  // we need a default value in our ref because of our message info modal\n\n  var inputText = ref(\"\");\n\n  var sorted_beacon_list = ref({});\n  var unsorted_beacon_list = ref({});\n\n  var chartSpeedPER0 = ref();\n  var chartSpeedPER25 = ref();\n  var chartSpeedPER75 = ref();\n\n  //    var beaconDataArray = ref([-3, 10, 8, 5, 3, 0, -5, 10, 8, 5, 3, 0, -5, 10, 8, 5, 3, 0, -5, 10, 8, 5, 3, 0, -5])\n  //    var beaconLabelArray = ref(['18:10', '19:00', '23:00', '01:13', '04:25', '08:15', '09:12', '18:10', '19:00', '23:00', '01:13', '04:25', '08:15', '09:12', '18:10', '19:00', '23:00', '01:13', '04:25', '08:15', '09:12', '01:13', '04:25', '08:15', '09:12'])\n  var beaconDataArray = ref([]);\n  var beaconLabelArray = ref([]);\n\n  var arq_speed_list_bpm = ref([]);\n  var arq_speed_list_timestamp = ref([]);\n  var arq_speed_list_snr = ref([]);\n\n  return {\n    selectedCallsign,\n    newChatCallsign,\n    newChatMessage,\n    totalUnreadMessages,\n    inputText,\n    messageInfoById,\n    callsign_list,\n    sorted_chat_list,\n    chartSpeedPER0,\n    chartSpeedPER25,\n    chartSpeedPER75,\n    beaconDataArray,\n    beaconLabelArray,\n    unsorted_beacon_list,\n    sorted_beacon_list,\n    arq_speed_list_bpm,\n    arq_speed_list_snr,\n    arq_speed_list_timestamp,\n    scrollTrigger,\n    triggerScrollToBottom,\n    loading,\n  };\n});\n"
  },
  {
    "path": "freedata_gui/src/store/index.js",
    "content": "import { createPinia } from \"pinia\";\n\nconst pinia = createPinia();\n\nexport default pinia;\n"
  },
  {
    "path": "freedata_gui/src/store/serialStore.js",
    "content": "import { defineStore } from \"pinia\";\nimport { getSerialDevices } from \"../js/api\"; // Make sure this points to the correct file\nimport { ref } from \"vue\";\n\n// Define \"skel\" fallback data for serial devices\nconst skelSerial = [\n  {\n    description: \"No devices received from modem\",\n    port: \"ignore\", // Using \"ignore\" as a placeholder value\n  },\n];\n\nexport const useSerialStore = defineStore(\"serialStore\", () => {\n  const serialDevices = ref([]);\n\n  const loadSerialDevices = async () => {\n    try {\n      const devices = await getSerialDevices();\n      // Check if devices are valid and have entries, otherwise use skelSerial\n      serialDevices.value =\n        devices && devices.length > 0 ? devices : skelSerial;\n    } catch (error) {\n      console.error(\"Failed to load serial devices:\", error);\n      // Use skelSerial as fallback in case of error\n      serialDevices.value = skelSerial;\n    }\n\n    // Ensure the \"-- ignore --\" option is always available\n    if (!serialDevices.value.some((device) => device.port === \"ignore\")) {\n      serialDevices.value.push({ description: \"-- ignore --\", port: \"ignore\" });\n    }\n  };\n\n  return {\n    serialDevices,\n    loadSerialDevices,\n  };\n});\n"
  },
  {
    "path": "freedata_gui/src/store/settingsStore.js",
    "content": "import { reactive, watch } from \"vue\";\nimport { getConfig, setConfig } from \"../js/api\";\n\n// Default configuration\nconst defaultConfig = {\n  local: {\n    host: \"127.0.0.1\",\n    port: \"5000\",\n    spectrum: \"waterfall\",\n    wf_theme: 2,\n    enable_sys_notification: false,\n    grid_layout: \"[]\",\n    grid_preset: \"[]\",\n    grid_enabled: true,\n    language: \"en\",\n    colormode: \"light\",\n  },\n  remote: {\n    AUDIO: {\n      input_device: \"\",\n      output_device: \"\",\n      rx_audio_level: 0,\n      tx_audio_level: 0,\n      rx_auto_audio_level: true,\n      tx_auto_audio_level: false,\n    },\n    MODEM: {\n      tx_delay: 0,\n      enable_morse_identifier: false,\n      maximum_bandwidth: 3000,\n    },\n    NETWORK: {\n      modemaddress: \"127.0.0.1\",\n      modemport: 5000,\n    },\n    RADIO: {\n      control: \"disabled\",\n      model_id: 0,\n      serial_port: \"\",\n      serial_speed: \"\",\n      data_bits: 0,\n      stop_bits: 0,\n      serial_handshake: \"\",\n      ptt_port: \"\",\n      ptt_type: \"\",\n      ptt_mode: \"\",\n      serial_dcd: \"\",\n      serial_dtr: \"\",\n      serial_rts: \"\",\n    },\n    RIGCTLD: {\n      ip: \"127.0.0.1\",\n      port: 0,\n      path: \"\",\n      command: \"\",\n      arguments: \"\",\n      enable_vfo: false,\n    },\n    FLRIG: {\n      ip: \"127.0.0.1\",\n      port: 12345,\n    },\n    STATION: {\n      enable_explorer: false,\n      enable_stats: false,\n      mycall: \"DEFAULT\",\n      myssid: 0,\n      mygrid: \"\",\n      ssid_list: [],\n      respond_to_cq: false,\n      enable_callsign_blacklist: false,\n      callsign_blacklist: [],\n    },\n    MESSAGES: {\n      enable_auto_repeat: false,\n    },\n    SOCKET_INTERFACE: {\n      enable: false,\n      host: \"127.0.0.1\",\n      cmd_port: 8000,\n      data_port: 8001,\n    },\n\n    QSO_LOGGING: {\n      enable_adif_udp: false,\n      adif_udp_host: \"127.0.0.1\",\n      adif_udp_port: \"2237\",\n      enable_adif_wavelog: false,\n      adif_wavelog_host: \"127.0.0.1\",\n      adif_wavelog_api_key: \"\",\n    },\n\n    GUI: {\n      auto_run_browser: true,\n    },\n    EXP: {\n      enable_ring_buffer: false,\n      enable_vhf: false,\n    },\n  },\n};\n\n// Initialize local settings from browser storage\nconst localConfig =\n  JSON.parse(localStorage.getItem(\"localConfig\")) || defaultConfig.local;\nconsole.log(\"--------- LOCAL CONFIG -----------\");\nconsole.log(localConfig);\n\nexport const settingsStore = reactive({ ...defaultConfig, local: localConfig });\n// Function to handle remote configuration changes\n\nexport function onChange() {\n  let remote_config = settingsStore.remote;\n  let blacklistContent = remote_config.STATION.callsign_blacklist;\n  // Check if the content is a string\n  if (typeof blacklistContent === \"string\") {\n    // Split the string by newlines to create an array\n    blacklistContent = blacklistContent\n      .split(\"\\n\") // Split text by newlines\n      .map((item) => item.trim()) // Trim whitespace from each line\n      .filter((item) => item !== \"\"); // Remove empty lines\n\n    // Update the settings store with the validated array\n    remote_config.STATION.callsign_blacklist = blacklistContent;\n  }\n\n  // Ensure it's an array, even if the data comes in incorrectly formatted\n  if (!Array.isArray(blacklistContent)) {\n    // Convert any other data types to an empty array as a fallback\n    remote_config.STATION.callsign_blacklist = [];\n  }\n\n  setConfig(remote_config).then((conf) => {\n    settingsStore.remote = conf;\n    settingsStore.remote.STATION.callsign_blacklist =\n      conf.STATION.callsign_blacklist.join(\"\\n\");\n  });\n}\n\n// Function to fetch remote configuration\nexport function getRemote() {\n  return getConfig().then((conf) => {\n    if (conf !== undefined) {\n      settingsStore.remote = conf;\n      settingsStore.remote.STATION.callsign_blacklist =\n        conf.STATION.callsign_blacklist.join(\"\\n\");\n      onChange();\n    } else {\n      console.warn(\"Received undefined configuration, using default!\");\n      settingsStore.remote = defaultConfig.remote;\n    }\n  });\n}\n\n// Watcher to save local settings on change\nwatch(\n  () => settingsStore.local,\n  () => {\n    saveLocalSettingsToConfig();\n  },\n  { deep: true },\n);\n\n// Function to save local settings to browser storage\nexport function saveLocalSettingsToConfig() {\n  localStorage.setItem(\"localConfig\", JSON.stringify(settingsStore.local));\n  console.log(\"Settings saved!\");\n}\n"
  },
  {
    "path": "freedata_gui/src/store/stateStore.js",
    "content": "import { defineStore } from \"pinia\";\nimport { ref } from \"vue\";\n\nexport const useStateStore = defineStore(\"stateStore\", () => {\n  var busy_state = ref();\n  var arq_state = ref(\"-\");\n  var frequency = ref(0);\n  var new_frequency = ref(14093000);\n  var mode = ref(\"-\");\n  var rf_level = ref(10);\n  var bandwidth = ref(\"-\");\n\n  var swr_raw = ref(0);\n  var swr_percent = ref(0);\n\n  var tuner = ref();\n\n  var dbfs_level_percent = ref(0);\n  var dbfs_level = ref(0);\n  var radio_status = ref(false);\n\n  var ptt_state = ref(false);\n\n  var speed_level = ref(0);\n  var fft = ref();\n  var channel_busy = ref(false);\n  var channel_busy_slot = ref([false, false, false, false, false]);\n  var scatter = ref([]);\n  var s_meter_strength_percent = ref(0);\n  var s_meter_strength_raw = ref(0);\n\n  var modem_connection = ref(\"disconnected\");\n  var modemStartCount = ref(0);\n  var is_modem_running = ref();\n\n  var arq_total_bytes = ref(0);\n  var arq_transmission_percent = ref(0);\n\n  var activities = ref([]);\n  var heard_stations = ref([]);\n  var dxcallsign = ref(\"\");\n\n  var arq_session_state = ref(\"\");\n  var beacon_state = ref(false);\n  var away_from_key = ref(false);\n\n  var audio_recording = ref(false);\n\n  var hamlib_status = ref(\"\");\n  var tx_audio_level = ref(\"\");\n  var rx_audio_level = ref(\"\");\n\n  var alc = ref(\"\");\n\n  var is_codec2_traffic = ref(\"\");\n\n  var arq_speed_list_timestamp = ref([]);\n  var arq_speed_list_bpm = ref([]);\n  var arq_speed_list_snr = ref([]);\n  var arq_bytes_per_minute = ref();\n  var arq_bits_per_second = ref();\n\n  var arq_is_receiving = ref(false);\n\n  /* TODO Those 3 can be removed I guess , DJ2LS*/\n  var arq_seconds_until_finish = ref();\n  var arq_seconds_until_timeout = ref();\n  var arq_seconds_until_timeout_percent = ref();\n\n  var rigctld_started = ref();\n  var rigctld_process = ref();\n\n  var api_version = ref();\n  var modem_version = ref();\n\n  var os_info = ref({\n    system: \"\",\n    node: \"\",\n    release: \"\",\n    version: \"\",\n    machine: \"\",\n    processor: \"\",\n  });\n  var python_info = ref({\n    build: [\"\", \"\"],\n    compiler: \"\",\n    branch: \"\",\n    implementation: \"\",\n    revision: \"\",\n    version: \"\",\n  });\n\n  var rx_buffer_length = ref();\n\n  // New state for network traffic\n  var is_network_traffic = ref(false);\n\n  return {\n    dxcallsign,\n    busy_state,\n    arq_state,\n    new_frequency,\n    frequency,\n    mode,\n    bandwidth,\n    tuner,\n    swr_raw,\n    swr_percent,\n    dbfs_level,\n    dbfs_level_percent,\n    speed_level,\n    fft,\n    channel_busy,\n    channel_busy_slot,\n    scatter,\n    ptt_state,\n    s_meter_strength_percent,\n    s_meter_strength_raw,\n    arq_total_bytes,\n    audio_recording,\n    hamlib_status,\n    tx_audio_level,\n    rx_audio_level,\n    alc,\n    modemStartCount,\n    arq_transmission_percent,\n    arq_speed_list_bpm,\n    arq_speed_list_timestamp,\n    arq_speed_list_snr,\n    arq_bytes_per_minute,\n    arq_bits_per_second,\n    arq_seconds_until_finish,\n    arq_seconds_until_timeout,\n    arq_seconds_until_timeout_percent,\n    arq_is_receiving,\n    modem_connection,\n    is_modem_running,\n    arq_session_state,\n    is_codec2_traffic,\n    rf_level,\n    activities,\n    heard_stations,\n    beacon_state,\n    away_from_key,\n    rigctld_started,\n    rigctld_process,\n    python_info,\n    modem_version,\n    api_version,\n    os_info,\n    rx_buffer_length,\n    radio_status,\n    is_network_traffic,\n  };\n});\n"
  },
  {
    "path": "freedata_gui/src/store/stationStore.js",
    "content": "import { defineStore } from \"pinia\";\nimport { ref } from \"vue\";\nexport const useStationStore = defineStore(\"stationStore\", () => {\n  const stationInfo = ref({\n    callsign: \"N/A\", // Default value for callsign\n    location: {\n      gridsquare: \"N/A\", // Default value for gridsquare\n    },\n    info: {\n      name: \"\",\n      city: \"\",\n      age: \"\",\n      radio: \"\",\n      antenna: \"\",\n      email: \"\",\n      website: \"\",\n      socialMedia: {\n        facebook: \"\",\n        \"twitter-x\": \"\", // Use twitter-x to correspond to the Twitter X icon\n        mastodon: \"\",\n        instagram: \"\",\n        linkedin: \"\",\n        youtube: \"\",\n        tiktok: \"\",\n      },\n      comments: \"\",\n    },\n  });\n  return {\n    stationInfo,\n  };\n});\n"
  },
  {
    "path": "freedata_gui/src/styles.css",
    "content": "/* disable scrolling in main window */\nbody {\n  padding-right: 0px !important;\n  overflow-y: hidden !important;\n  overflow-x: hidden !important;\n  padding-top: calc(env(safe-area-inset-top));\n  padding-bottom: env(safe-area-inset-bottom);\n  padding-left: env(safe-area-inset-left);\n  margin: 0;\n}\n\n.header {\n  padding-top: calc(env(safe-area-inset-top));\n}\n\n.footer {\n  padding-bottom: env(safe-area-inset-bottom);\n}\n\n/*Progress bars with centered text*/\n.progress {\n  position: relative;\n  transform: translateZ(0);\n}\n\n.progress span {\n  position: absolute;\n  display: block;\n  width: 100%;\n  color: black;\n}\n\n/* smooth scrolling */\nhtml {\n  scroll-behavior: smooth;\n}\n\n/* hide scrollbar in callsign list */\n#callsignlist::-webkit-scrollbar {\n  display: none;\n}\n\n#chatModuleMessage {\n  resize: none;\n}\n\n#expand_textarea_label {\n  border: 0;\n  padding: 1px;\n}\n\n/* fixed border table header */\n.tableFixHead {\n  overflow: auto;\n  height: 90vh;\n}\n.tableFixHead thead th {\n  position: sticky;\n  top: 0;\n  z-index: 1;\n}\ntable {\n  border-collapse: collapse;\n  width: 100%;\n}\nth,\ntd {\n  padding: 8px 16px;\n}\n\nth {\n  background: #eee;\n}\n\n/* ------ emoji picker customization --------- */\n.picker {\n  border-radius: 10px;\n}\n\nemoji-picker {\n  width: 100%;\n}\n\n/* force gpu usage\nhttps://stackoverflow.com/questions/13176746/css-keyframe-animation-cpu-usage-is-high-should-it-be-this-way/13293044#13293044\n*/\n\n.force-gpu {\n  transform: translateZ(0);\n  -webkit-transform: translateZ(0);\n  -ms-transform: translateZ(0);\n  will-change: transform;\n}\n\n/* force disable transition effects\nhttps://stackoverflow.com/a/9622873\n*/\n.disable-effects {\n  -webkit-transition: none;\n  -moz-transition: none;\n  -ms-transition: none;\n  -o-transition: none;\n  transition: none;\n}\n\n/* image overlay */\n\n.image-overlay:hover {\n  opacity: 0.75 !important;\n  transition: 0.5s;\n}\n\n/* theme area */\n\n/* default light theme mods */\n[data-bs-theme=\"light\"] {\n  .card-header {\n    background-color: var(--bs-card-cap-bg);\n    /*--bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.3);*/\n  }\n}\n/* default dark theme mods */\n[data-bs-theme=\"dark\"] {\n  /* default dark theme mods */\n}\n"
  },
  {
    "path": "freedata_gui/vue.config.js",
    "content": "module.exports = {\n  transpileDependencies: [],\n  publicPath: \"/gui/\",\n};\n"
  },
  {
    "path": "freedata_server/.gitignore",
    "content": "# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribution / packaging\n.Python\nbuild/\ndevelop-eggs/\ndist/\ndownloads/\neggs/\n.eggs/\nlib/\nlib64/\nparts/\nsdist/\nvar/\nwheels/\npip-wheel-metadata/\nshare/python-wheels/\n*.egg-info/\n.installed.cfg\n*.egg\nMANIFEST\n\n# PyInstaller\n#  Usually these files are written by a python script from a template\n#  before PyInstaller builds the exe, so as to inject date/other infos into it.\n*.manifest\n*.spec\n\n# Installer logs\npip-log.txt\npip-delete-this-directory.txt\n\n# Unit test / coverage reports\nhtmlcov/\n.tox/\n.nox/\n.coverage\n.coverage.*\n.cache\nnosetests.xml\ncoverage.xml\n*.cover\n*.py,cover\n.hypothesis/\n.pytest_cache/\n\n# Translations\n*.mo\n*.pot\n\n# Django stuff:\n*.log\nlocal_settings.py\ndb.sqlite3\ndb.sqlite3-journal\n\n# Flask stuff:\ninstance/\n.webassets-cache\n\n# Scrapy stuff:\n.scrapy\n\n# Sphinx documentation\ndocs/_build/\n\n# PyBuilder\ntarget/\n\n# Jupyter Notebook\n.ipynb_checkpoints\n\n# IPython\nprofile_default/\nipython_config.py\n\n# pyenv\n.python-version\n\n# pipenv\n#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.\n#   However, in case of collaboration, if having platform-specific dependencies or dependencies\n#   having no cross-platform support, pipenv may install dependencies that don't work, or not\n#   install all needed dependencies.\n#Pipfile.lock\n\n# PEP 582; used by e.g. github.com/David-OConnor/pyflow\n__pypackages__/\n\n# Celery stuff\ncelerybeat-schedule\ncelerybeat.pid\n\n# SageMath parsed files\n*.sage.py\n\n# Environments\n.env\n.venv\nenv/\nvenv/\nENV/\nenv.bak/\nvenv.bak/\n\n# Spyder project settings\n.spyderproject\n.spyproject\n\n# Rope project settings\n.ropeproject\n\n# mkdocs documentation\n/site\n\n# mypy\n.mypy_cache/\n.dmypy.json\ndmypy.json\n\n# Pyre type checker\n.pyre/\n\n# FreeDATA config\nconfig.ini\n\n#FreeData DB\nfreedata-messages.db"
  },
  {
    "path": "freedata_server/__init__.py",
    "content": ""
  },
  {
    "path": "freedata_server/adif_udp_logger.py",
    "content": "import socket\nimport structlog\nimport threading\n\ndef send_adif_qso_data(ctx, adif_data):\n    \"\"\"\n    Sends ADIF QSO data to the specified server via UDP in a non-blocking manner.\n\n    Parameters:\n    ctx.config_manager (dict): ctx.config_manageruration settings.\n    ctx.event_manager: An event manager to log success/failure.\n    adif_data (str): ADIF-formatted QSO data.\n    \"\"\"\n    log = structlog.get_logger()\n    \n    # Check if ADIF UDP logging is enabled\n    adif = ctx.config_manager.config['QSO_LOGGING'].get('enable_adif_udp', 'False')\n    if not adif:\n        return  # Exit if ADIF UDP logging is disabled\n\n    adif_log_host = ctx.config_manager.config['QSO_LOGGING'].get('adif_udp_host', '127.0.0.1')\n    adif_log_port = int(ctx.config_manager.config['QSO_LOGGING'].get('adif_udp_port', '2237'))\n\n    def send_thread():\n        sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)\n        # Set a timeout of 3 seconds to avoid blocking indefinitely\n        sock.settimeout(3)\n\n        callsign_start = adif_data.find(f\">\") + 1\n        callsign_end = adif_data.find(f\"<QSO_DATE\", callsign_start)\n        call_value = adif_data[callsign_start:callsign_end]\n\n        try:\n            sock.sendto(adif_data.encode('utf-8'), (adif_log_host, adif_log_port))\n            log.info(f\"[CHAT] ADIF QSO data sent to: {adif_log_host}:{adif_log_port}\")\n            ctx.event_manager.freedata_logging(type=\"udp\", status=True, message=f\" {call_value} \")\n\n        except socket.timeout:\n            log.info(f\"[CHAT] Timeout occurred sending ADIF data to {adif_log_host}:{adif_log_port}\")\n            ctx.event_manager.freedata_logging(type=\"udp\", status=True, message=f\" {call_value} \")\n        except Exception as e:\n            log.info(f\"[CHAT] Error sending ADIF data: {e}\")\n            ctx.event_manager.freedata_logging(type=\"udp\", status=True, message=f\" {call_value} \")\n\n        finally:\n            sock.close()\n\n    # Run the sending function in a separate thread\n    thread = threading.Thread(target=send_thread, daemon=True)\n    thread.start()\n"
  },
  {
    "path": "freedata_server/api/__init__.py",
    "content": ""
  },
  {
    "path": "freedata_server/api/command_helpers.py",
    "content": "import asyncio\nfrom context import AppContext\nimport structlog\n\nlogger = structlog.get_logger()\nasync def enqueue_tx_command(\n    ctx: AppContext,\n    cmd_class,\n    params: dict = None\n) -> bool:\n    \"\"\"\n    Enqueue a transmit command using the application context's managers.\n\n    Args:\n        ctx: AppContext containing config, state, event managers, etc.\n        cmd_class: The command class to instantiate and run.\n        params: A dict of parameters for the command (optional).\n\n    Returns:\n        bool: True if the command ran successfully, False otherwise.\n    \"\"\"\n    params = params or {}\n    try:\n        # Instantiate the command with required components\n        command = cmd_class(ctx, params)\n        logger.info(\"Enqueueing transmit command\", command=command.get_name())\n        # Run in a thread to avoid blocking the event loop\n        result = await asyncio.to_thread(command.run)\n        return bool(result)\n    except Exception as e:\n        logger.error(\"Command execution failed\", error=str(e))\n        return False\n\n"
  },
  {
    "path": "freedata_server/api/common.py",
    "content": "from fastapi import HTTPException\nfrom fastapi.responses import JSONResponse\n\n# Returns a standard API response\ndef api_response(data, status=200):\n    return JSONResponse(content=data, status_code=status)\n\n\ndef api_abort(message, code):\n    print(message)\n    raise HTTPException(status_code=code, detail={\"error\": message})\n\n\ndef api_ok(message=\"ok\"):\n    return api_response({'message': message})\n\n\n# Validates a parameter\ndef validate(req, param, validator, is_required=True):\n    if param not in req:\n        if is_required:\n            api_abort(f\"Required parameter '{param}' is missing.\", 400)\n        else:\n            return True\n    if not validator(req[param]):\n        api_abort(f\"Value of '{param}' is invalid.\", 400)\n"
  },
  {
    "path": "freedata_server/api/config.py",
    "content": "from fastapi import APIRouter, Request, Depends\nfrom api.common import api_response, api_abort, api_ok, validate\nimport api_validations as validations\nfrom context import AppContext, get_ctx\nrouter = APIRouter()\n\n@router.get(\"/\", summary=\"Get Modem Configuration\", tags=[\"Configuration\"], responses={\n    200: {\n        \"description\": \"Current modem configuration settings.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"AUDIO\": {\n                        \"input_device\": \"2fc0\",\n                        \"output_device\": \"3655\",\n                        \"rx_audio_level\": 0,\n                        \"tx_audio_level\": 2\n                    },\n                    \"MESSAGES\": {\n                        \"enable_auto_repeat\": True\n                    },\n                    \"MODEM\": {\n                        \"enable_morse_identifier\": False,\n                        \"enable_socket_interface\": False,\n                        \"maximum_bandwidth\": 2438,\n                        \"tx_delay\": 200\n                    },\n                    \"NETWORK\": {\n                        \"modemaddress\": \"\",\n                        \"modemport\": 5000\n                    },\n                    \"RADIO\": {\n                        \"control\": \"rigctld\",\n                        \"data_bits\": 8,\n                        \"model_id\": 1001,\n                        \"ptt_port\": \"ignore\",\n                        \"ptt_type\": \"USB\",\n                        \"serial_dcd\": \"NONE\",\n                        \"serial_dtr\": \"OFF\",\n                        \"serial_handshake\": \"ignore\",\n                        \"serial_port\": \"/dev/cu.Bluetooth-Incoming-Port\",\n                        \"serial_speed\": 38400,\n                        \"stop_bits\": 1\n                    },\n                    \"RIGCTLD\": {\n                        \"arguments\": \"\",\n                        \"command\": \"\",\n                        \"ip\": \"127.0.0.1\",\n                        \"path\": \"\",\n                        \"port\": 4532\n                    },\n                    \"SOCKET_INTERFACE\": {\n                        \"cmd_port\": 0,\n                        \"data_port\": 0,\n                        \"enable\": False,\n                        \"host\": \"\"\n                    },\n                    \"STATION\": {\n                        \"enable_explorer\": True,\n                        \"enable_stats\": True,\n                        \"mycall\": \"LA3QMA\",\n                        \"mygrid\": \"JP20ql\",\n                        \"myssid\": 0,\n                        \"ssid_list\": [0,1,2,3,4,5,6,7,8,9],\n                        \"respond_to_cq\": True,\n                    }\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    }\n})\nasync def get_config(ctx: AppContext = Depends(get_ctx)):\n    \"\"\"\n    Retrieve the current modem configuration.\n\n    Returns:\n        dict: The modem configuration settings.\n    \"\"\"\n    cfg = ctx.config_manager.config\n    if cfg is None:\n        api_abort(\"Configuration not found\", 404)\n    return cfg\n\n\n@router.post(\"/\", summary=\"Update Modem Configuration\", tags=[\"Configuration\"], responses={\n    200: {\n        \"description\": \"Modem configuration updated successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"AUDIO\": {\n                        \"input_device\": \"2fc0\",\n                        \"output_device\": \"3655\",\n                        \"rx_audio_level\": 0,\n                        \"tx_audio_level\": 2\n                    },\n                    # ...\n                }\n            }\n        }\n    },\n    400: {\n        \"description\": \"Invalid configuration data.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Invalid config\"\n                }\n            }\n        }\n    },\n    500: {\n        \"description\": \"Error writing configuration.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Error writing config\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    }\n})\nasync def post_config(\n    new_cfg: dict,\n    ctx: AppContext = Depends(get_ctx),\n):\n    \"\"\"\n    Update the modem configuration with new settings.\n\n    Parameters:\n        new_cfg (dict): The new configuration payload.\n        ctx (AppContext): Injected application context.\n\n    Returns:\n        dict: The updated modem configuration.\n\n    Raises:\n        HTTPException via api_abort on validation or write errors.\n    \"\"\"\n    # Validate incoming data\n    if not validations.validate_remote_config(new_cfg):\n        api_abort(\"Invalid configuration\", 400)\n\n    # Read and compare\n    old_cfg = ctx.config_manager.read()\n    if old_cfg == new_cfg:\n        return old_cfg\n\n    # Write new config\n    print(ctx.config_manager.write(new_cfg))\n    if not ctx.config_manager.write(new_cfg):\n        api_abort(\"Error writing configuration\", 500)\n\n    # Trigger modem restart\n    ctx.modem_service.put(\"restart\")\n\n    # Return updated configuration\n    updated = ctx.config_manager.read()\n    return updated"
  },
  {
    "path": "freedata_server/api/devices.py",
    "content": "from fastapi import APIRouter, Depends\nfrom api.common import api_response, api_abort\nimport audio\nimport serial_ports\nfrom context import AppContext, get_ctx\n\nrouter = APIRouter()\n\n\n@router.get(\"/audio\", summary=\"Get Audio Devices\", tags=[\"Devices\"], responses={\n    200: {\n        \"description\": \"List of available audio input and output devices.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"in\": [\n                        {\n                            \"api\": \"ALSA\",\n                            \"id\": \"8eb1\",\n                            \"name\": \"pipewire\",\n                            \"native_index\": 4\n                        },\n                        {\n                            \"api\": \"ALSA\",\n                            \"id\": \"8e7a\",\n                            \"name\": \"default\",\n                            \"native_index\": 5\n                        }\n                    ],\n                    \"out\": [\n                        {\n                            \"api\": \"ALSA\",\n                            \"id\": \"ae79\",\n                            \"name\": \"HDA Intel HDMI: 0 (hw:0,3)\",\n                            \"native_index\": 0\n                        },\n                        {\n                            \"api\": \"ALSA\",\n                            \"id\": \"67fd\",\n                            \"name\": \"HDA Intel HDMI: 1 (hw:0,7)\",\n                            \"native_index\": 1\n                        },\n                        {\n                            \"api\": \"ALSA\",\n                            \"id\": \"b68c\",\n                            \"name\": \"HDA Intel HDMI: 2 (hw:0,8)\",\n                            \"native_index\": 2\n                        },\n                        {\n                            \"api\": \"ALSA\",\n                            \"id\": \"ba84\",\n                            \"name\": \"hdmi\",\n                            \"native_index\": 3\n                        },\n                        {\n                            \"api\": \"ALSA\",\n                            \"id\": \"8eb1\",\n                            \"name\": \"pipewire\",\n                            \"native_index\": 4\n                        },\n                        {\n                            \"api\": \"ALSA\",\n                            \"id\": \"8e7a\",\n                            \"name\": \"default\",\n                            \"native_index\": 5\n                        }\n                    ]\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def get_audio_devices(ctx: AppContext = Depends(get_ctx)):\n    \"\"\"\n    Retrieve a list of available audio input and output devices.\n\n    Returns:\n        dict: A JSON object containing lists of input and output audio devices.\n    \"\"\"\n    try:\n        dev_in, dev_out = audio.fetch_audio_devices([], [])\n    except Exception as e:\n        api_abort(f\"Error fetching audio devices: {e}\", 503)\n    return api_response({'in': dev_in, 'out': dev_out})\n\n\n\n@router.get(\"/serial\", summary=\"Get Serial Devices\", tags=[\"Devices\"], responses={\n    200: {\n        \"description\": \"List of available serial devices (COM ports).\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": [\n                    {\n                        \"description\": \"n/a [26a9]\",\n                        \"port\": \"/dev/ttyS4\"\n                    }\n                ]\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def get_serial_devices(ctx: AppContext = Depends(get_ctx)):\n    \"\"\"\n    Retrieve a list of available serial devices (COM ports).\n\n    Returns:\n        list: A list of dictionaries containing serial port information.\n    \"\"\"\n    try:\n        devices = serial_ports.get_ports()\n    except Exception as e:\n        api_abort(f\"Error fetching serial ports: {e}\", 503)\n    return api_response(devices)\n"
  },
  {
    "path": "freedata_server/api/freedata.py",
    "content": "from fastapi import APIRouter, Depends, HTTPException\nfrom api.common import api_response, api_abort\nfrom api.command_helpers import enqueue_tx_command\nfrom message_system_db_messages import DatabaseManagerMessages\nfrom message_system_db_attachments import DatabaseManagerAttachments\nfrom message_system_db_beacon import DatabaseManagerBeacon\nfrom message_system_db_station import DatabaseManagerStations\nimport command_message_send\nimport adif_udp_logger\nimport wavelog_api_logger\nfrom context import AppContext, get_ctx\n\nrouter = APIRouter()\n\n\ndef _mgr_msgs(ctx: AppContext):\n    return DatabaseManagerMessages(ctx)\n\ndef _mgr_attach(ctx: AppContext):\n    return DatabaseManagerAttachments(ctx)\n\ndef _mgr_beacon(ctx: AppContext):\n    return DatabaseManagerBeacon(ctx)\n\ndef _mgr_stations(ctx: AppContext):\n    return DatabaseManagerStations(ctx)\n\n\n\n@router.get(\"/messages/{message_id}\", summary=\"Get Message by ID\", tags=[\"FreeDATA\"], responses={\n    200: {\"description\": \"Message found and returned.\"},\n    404: {\"description\": \"Message not found.\"}\n})\nasync def get_freedata_message(\n    message_id: str,\n    ctx: AppContext = Depends(get_ctx)\n):\n    message = _mgr_msgs(ctx).get_message_by_id_json(message_id)\n    if message is None:\n        api_abort(\"Message not found\", 404)\n    return api_response(message)\n\n@router.post(\"/messages\", summary=\"Transmit Message\", tags=[\"FreeDATA\"], responses={\n    200: {\n        \"description\": \"Message transmitted successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"destination\": \"XX1XXX-6\",\n                    \"body\": \"Hello FreeDATA\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    }\n})\nasync def post_freedata_message(\n    payload: dict,\n    ctx: AppContext = Depends(get_ctx)\n):\n    # Transmit FreeDATA message\n    await enqueue_tx_command(ctx, command_message_send.SendMessageCommand, payload)\n    return api_response(payload)\n\n@router.post(\"/messages/{message_id}/adif\", summary=\"Send Message ADIF Log\", tags=[\"FreeDATA\"], responses={\n    200: {\n        \"description\": \"ADIF log sent successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"adif_output\": \"ADIF data...\"\n                }\n            }\n        }\n    },\n    400: {\n        \"description\": \"Bad Request: The request was malformed or missing required parameters.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Invalid message ID.\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Message not found.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def post_freedata_message_adif_log(\n    message_id: str,\n    ctx: AppContext = Depends(get_ctx)\n):\n    adif = _mgr_msgs(ctx).get_message_by_id_adif(message_id)\n    if not adif:\n        api_abort(\"Message not found or ADIF unavailable\", 404)\n    # send logs\n    adif_udp_logger.send_adif_qso_data(ctx, adif)\n    wavelog_api_logger.send_wavelog_qso_data(ctx, adif)\n    return api_response({\"adif_output\": adif})\n\n@router.patch(\"/messages/{message_id}\", summary=\"Update Message by ID\", tags=[\"FreeDATA\"], responses={\n    200: {\n        \"description\": \"Message updated successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"is_read\": True\n                }\n            }\n        }\n    },\n    400: {\n        \"description\": \"Bad Request: The request was malformed or missing required parameters.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Invalid parameters.\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"Message not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Message not found.\"\n                }\n            }\n        }\n    }\n})\nasync def patch_freedata_message(\n    message_id: str,\n    payload: dict,\n    ctx: AppContext = Depends(get_ctx)\n):\n    if payload.get(\"action\") == \"retransmit\":\n        _mgr_msgs(ctx).update_message(message_id, {'status':'queued'})\n        _mgr_msgs(ctx).increment_message_attempts(message_id)\n        result = {\"message_id\": message_id, \"status\": \"queued\"}\n    else:\n        result = _mgr_msgs(ctx).update_message(message_id, update_data=payload)\n    if result is None:\n        api_abort(\"Message not found\", 404)\n    return api_response(result)\n\n\n@router.get(\"/messages\", summary=\"Get All Messages\", tags=[\"FreeDATA\"], responses={\n    200: {\n        \"description\": \"List of all messages.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"total_messages\": 1,\n                    \"messages\": [\n                        {\n                            \"id\": \"DXCALL-6_MYCALL-0_2024-04-12T20:39:05.302479\",\n                            \"timestamp\": \"2024-04-12T20:39:05.302479\",\n                            \"origin\": \"DXCALL-6\",\n                            \"via\": None,\n                            \"destination\": \"MYCALL-0\",\n                            \"direction\": \"receive\",\n                            \"body\": \"Hello !\",\n                            \"attachments\": [],\n                            \"status\": \"received\",\n                            \"priority\": 10,\n                            \"is_read\": False,\n                            \"statistics\": {\n                                \"total_bytes\": 120,\n                                \"duration\": 29.76698660850525,\n                                \"bytes_per_minute\": 241,\n                                \"time_histogram\": {\n                                    \"0\": \"2024-04-12T20:39:23.423169\",\n                                    \"1\": \"2024-04-12T20:39:30.504638\",\n                                    \"2\": \"2024-04-12T20:39:37.745075\"\n                                },\n                                \"snr_histogram\": {\n                                    \"0\": -6,\n                                    \"1\": -6,\n                                    \"2\": -6\n                                },\n                                \"bpm_histogram\": {\n                                    \"0\": 198,\n                                    \"1\": 265,\n                                    \"2\": 252\n                                }\n                            }\n                        }\n                    ]\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    }\n})\nasync def get_freedata_messages(\n    ctx: AppContext = Depends(get_ctx)\n):\n    filters = {k: v for k, v in ctx.config_manager.read().get('FILTERS', {}).items()}\n    # use query params if needed\n    # filters = dict(ctx.request.query_params)\n    result = _mgr_msgs(ctx).get_all_messages_json(filters=filters)\n    return api_response(result)\n\n\n\n\n@router.delete(\"/messages/{message_id}\", summary=\"Delete Message by ID\", tags=[\"FreeDATA\"], responses={\n    200: {\n        \"description\": \"Message deleted successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"message\": \"DXCALL-0_MYCALL-5_2024-04-04T17:22:14.002502 deleted\",\n                    \"status\": \"success\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"Message not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"message\": \"Message not found\",\n                    \"status\": \"failure\"\n                }\n            }\n        }\n    }\n})\nasync def delete_freedata_message(\n    message_id: str,\n    ctx: AppContext = Depends(get_ctx)\n):\n    ok = _mgr_msgs(ctx).delete_message(message_id)\n    if not ok:\n        api_abort(\"Message not found\", 404)\n    return api_response({\"message\": f\"{message_id} deleted\", \"status\": \"success\"})\n\n@router.get(\"/messages/{message_id}/attachments\", summary=\"Get Attachments by Message ID\", tags=[\"FreeDATA\"], responses={\n    200: {\n        \"description\": \"List of attachments for the specified message.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"attachments\": [\n                        {\n                            \"id\": \"attachment1\",\n                            \"filename\": \"file1.txt\",\n                            \"file_size\": 1024,\n                            \"file_type\": \"text/plain\",\n                            \"data_sha512\": \"abcdef1234567890...\"\n                        },\n                        {\n                            \"id\": \"attachment2\",\n                            \"filename\": \"image.png\",\n                            \"file_size\": 2048,\n                            \"file_type\": \"image/png\",\n                            \"data_sha512\": \"123456abcdef7890...\"\n                        }\n                    ]\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def get_message_attachments(\n    message_id: str,\n    ctx: AppContext = Depends(get_ctx)\n):\n    attachments = _mgr_attach(ctx).get_attachments_by_message_id_json(message_id)\n    return api_response({\"attachments\": attachments})\n\n@router.get(\"/messages/attachment/{data_sha512}\", summary=\"Get Attachment by SHA512\", tags=[\"FreeDATA\"], responses={\n    200: {\n        \"description\": \"Retrieve a specific attachment by its SHA512 hash.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"id\": \"attachment1\",\n                    \"filename\": \"file1.txt\",\n                    \"file_size\": 1024,\n                    \"file_type\": \"text/plain\",\n                    \"data_sha512\": \"abcdef1234567890...\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested attachment was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Attachment not found.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def get_message_attachment(\n    data_sha512: str,\n    ctx: AppContext = Depends(get_ctx)\n):\n    attachment = _mgr_attach(ctx).get_attachment_by_sha512(data_sha512)\n    if attachment is None:\n        api_abort(\"Attachment not found\", 404)\n    return api_response(attachment)\n\n\n@router.get(\"/beacons\", summary=\"Get Received Beacons\", tags=[\"FreeDATA\"], responses={\n    200: {\n        \"description\": \"List of received beacons.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"total_beacons\": 2,\n                    \"beacons\": [\n                        {\n                            \"id\": \"DXCALL-0_MYCALL-5_2024-04-04T17:22:14.002502\",\n                            \"timestamp\": \"2024-04-04T17:22:14.002502\",\n                            \"origin\": \"DXCALL-0\",\n                            \"via\": None,\n                            \"destination\": \"MYCALL-5\",\n                            \"direction\": \"receive\",\n                            \"body\": \"Hello FreeDATA\",\n                            \"attachments\": [],\n                            \"status\": \"received\",\n                            \"priority\": 10,\n                            \"is_read\": False,\n                            \"statistics\": {\n                                \"total_bytes\": 120,\n                                \"duration\": 29.77,\n                                \"bytes_per_minute\": 241,\n                                \"time_histogram\": {\n                                    \"0\": \"2024-04-04T17:22:23.423169\",\n                                    \"1\": \"2024-04-04T17:22:30.504638\",\n                                    \"2\": \"2024-04-04T17:22:37.745075\"\n                                },\n                                \"snr_histogram\": {\n                                    \"0\": -6,\n                                    \"1\": -6,\n                                    \"2\": -6\n                                },\n                                \"bpm_histogram\": {\n                                    \"0\": 198,\n                                    \"1\": 265,\n                                    \"2\": 252\n                                }\n                            }\n                        }\n                    ]\n                }\n            }\n        }\n    },\n    400: {\n        \"description\": \"Bad Request: The request was malformed or missing required parameters.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Invalid request.\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    },\n    500: {\n        \"description\": \"Internal Server Error: An unexpected error occurred on the server.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Internal server error.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def get_all_beacons(\n    ctx: AppContext = Depends(get_ctx)\n):\n    beacons = _mgr_beacon(ctx).get_all_beacons()\n    return api_response(beacons)\n\n\n@router.get(\"/beacons/{callsign}\", summary=\"Get Beacon by Callsign\", tags=[\"FreeDATA\"], responses={\n    200: {\n        \"description\": \"List of beacons from the specified callsign.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"beacons\": [\n                        {\n                            \"id\": \"DXCALL-0_MYCALL-5_2024-04-04T17:22:14.002502\",\n                            \"timestamp\": \"2024-04-04T17:22:14.002502\",\n                            \"origin\": \"DXCALL-0\",\n                            \"via\": None,\n                            \"destination\": \"MYCALL-5\",\n                            \"direction\": \"receive\",\n                            \"body\": \"Hello FreeDATA\",\n                            \"attachments\": [],\n                            \"status\": \"received\",\n                            \"priority\": 10,\n                            \"is_read\": False,\n                            \"statistics\": {\n                                \"total_bytes\": 120,\n                                \"duration\": 29.77,\n                                \"bytes_per_minute\": 241,\n                                \"time_histogram\": {\n                                    \"0\": \"2024-04-04T17:22:23.423169\",\n                                    \"1\": \"2024-04-04T17:22:30.504638\",\n                                    \"2\": \"2024-04-04T17:22:37.745075\"\n                                },\n                                \"snr_histogram\": {\n                                    \"0\": -6,\n                                    \"1\": -6,\n                                    \"2\": -6\n                                },\n                                \"bpm_histogram\": {\n                                    \"0\": 198,\n                                    \"1\": 265,\n                                    \"2\": 252\n                                }\n                            }\n                        }\n                    ]\n                }\n            }\n        }\n    },\n    400: {\n        \"description\": \"Bad Request: The request was malformed or missing required parameters.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Invalid request.\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    },\n    500: {\n        \"description\": \"Internal Server Error: An unexpected error occurred on the server.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Internal server error.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def get_beacons_by_callsign(\n    callsign: str,\n    ctx: AppContext = Depends(get_ctx)\n):\n    beacons = _mgr_beacon(ctx).get_beacons_by_callsign(callsign)\n    return api_response(beacons)\n\n\n\n@router.get(\"/station/{callsign}\", summary=\"Get Station Info\", tags=[\"FreeDATA\"], responses={\n    200: {\n        \"description\": \"Retrieve station information by callsign.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"callsign\": \"MYCALL-0\",\n                    \"location\": \"Springfield\",\n                    \"frequency\": \"14093000\",\n                    \"mode\": \"PKTUSB\",\n                    \"status\": \"active\",\n                    \"additional_info\": \"Station details here.\"\n                }\n            }\n        }\n    },\n    400: {\n        \"description\": \"Bad Request: The request was malformed or missing required parameters.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Invalid callsign parameter.\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested station was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Station not found.\"\n                }\n            }\n        }\n    },\n    500: {\n        \"description\": \"Internal Server Error: An unexpected error occurred on the server.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Internal server error.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def get_station_info(\n    callsign: str,\n    ctx: AppContext = Depends(get_ctx)\n):\n    station = _mgr_stations(ctx).get_station(callsign)\n    if station is None:\n        api_abort(\"Station not found\", 404)\n    return api_response(station)\n\n@router.post(\"/station/{callsign}\", summary=\"Set Station Info\", tags=[\"FreeDATA\"], responses={\n    200: {\n        \"description\": \"Station information updated successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"callsign\": \"MYCALL-0\",\n                    \"location\": \"Springfield\",\n                    \"frequency\": \"14093000\",\n                    \"mode\": \"PKTUSB\",\n                    \"status\": \"active\",\n                    \"additional_info\": \"Updated station details.\"\n                }\n            }\n        }\n    },\n    400: {\n        \"description\": \"Bad Request: The request was malformed or missing required parameters.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Invalid input data.\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested station was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Station not found.\"\n                }\n            }\n        }\n    },\n    500: {\n        \"description\": \"Internal Server Error: An unexpected error occurred on the server.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Internal server error.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def set_station_info(\n    callsign: str,\n    payload: dict,\n    ctx: AppContext = Depends(get_ctx)\n):\n    info = payload.get(\"info\")\n    if not isinstance(info, dict):\n        api_abort(\"Invalid input data\", 400)\n    result = _mgr_stations(ctx).update_station_info(callsign, new_info=info)\n    if result is None:\n        api_abort(\"Station not found\", 404)\n    return api_response(result)\n"
  },
  {
    "path": "freedata_server/api/general.py",
    "content": "from fastapi import APIRouter, Depends\nimport platform\nfrom context import AppContext, get_ctx\n\nrouter = APIRouter()\n\n@router.get(\n    \"/\",\n    summary=\"API Root\",\n    tags=[\"General\"],\n    responses={\n        200: {\"description\": \"API information.\"},\n        404: {\"description\": \"Resource not found.\"},\n        503: {\"description\": \"Service unavailable.\"},\n    },\n)\nasync def index(ctx: AppContext = Depends(get_ctx)):\n    \"\"\"\n    Retrieve API metadata.\n\n    Returns:\n        dict: A JSON object containing API metadata.\n    \"\"\"\n    return {\n        'name': 'FreeDATA API',\n        'description': 'A sample API that provides free data services',\n        'api_version': ctx.constants.API_VERSION,\n        'modem_version': ctx.constants.MODEM_VERSION,\n        'license': ctx.constants.LICENSE,\n        'documentation': ctx.constants.DOCUMENTATION_URL,\n    }\n\n@router.get(\n    \"/version\",\n    summary=\"Get Modem Version\",\n    tags=[\"General\"],\n    responses={\n        200: {\"description\": \"Successful Response.\"},\n    },\n)\nasync def get_modem_version(ctx: AppContext = Depends(get_ctx)):\n    \"\"\"\n    Retrieve the modem version, API version, OS information, and Python information.\n\n    Returns:\n        dict: A JSON object containing version information.\n    \"\"\"\n    os_info = {\n        'system': platform.system(),\n        'node': platform.node(),\n        'release': platform.release(),\n        'version': platform.version(),\n        'machine': platform.machine(),\n        'processor': platform.processor(),\n    }\n\n    python_info = {\n        'build': platform.python_build(),\n        'compiler': platform.python_compiler(),\n        'implementation': platform.python_implementation(),\n        'version': platform.python_version(),\n    }\n\n    return {\n        'api_version': ctx.constants.API_VERSION,\n        'modem_version': ctx.constants.MODEM_VERSION,\n        'os_info': os_info,\n        'python_info': python_info,\n    }\n"
  },
  {
    "path": "freedata_server/api/modem.py",
    "content": "from fastapi import APIRouter, Depends, HTTPException\nfrom api.common import api_response, api_abort, api_ok\nfrom api.command_helpers import enqueue_tx_command\nimport command_cq, command_beacon, command_ping, command_test, command_fec, command_arq_raw\nimport api_validations as validations\nfrom context import AppContext, get_ctx\n\nrouter = APIRouter()\n\n\n\n@router.get(\"/state\", summary=\"Get Modem State\", tags=[\"Modem\"], responses={\n    200: {\n        \"description\": \"Current modem state information.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"activities\": {\n                        \"161dd75ef3b5847a\": {\n                            \"activity_type\": \"ARQ_BURST_ACK\",\n                            \"direction\": \"received\",\n                            \"frequency\": \"14093000\",\n                            \"frequency_offset\": 0,\n                            \"session_id\": 105,\n                            \"snr\": 4,\n                            \"timestamp\": 1713034266\n                        },\n                        \"168e90799d13b7b4\": {\n                            \"activity_type\": \"ARQ_SESSION_INFO_ACK\",\n                            \"direction\": \"received\",\n                            \"frequency\": \"14093000\",\n                            \"frequency_offset\": 0,\n                            \"session_id\": 105,\n                            \"snr\": -3,\n                            \"timestamp\": 1713034248\n                        },\n                        \"2218b849e937d36d\": {\n                            \"activity_type\": \"QRV\",\n                            \"direction\": \"received\",\n                            \"frequency\": \"14093000\",\n                            \"frequency_offset\": 0,\n                            \"gridsquare\": \"JP15OW\",\n                            \"origin\": \"SOMECALL-1\",\n                            \"snr\": 2,\n                            \"timestamp\": 1713034200\n                        },\n                        \"3fb424827f4632ab\": {\n                            \"activity_type\": \"BEACON\",\n                            \"direction\": \"received\",\n                            \"frequency\": \"14093000\",\n                            \"frequency_offset\": 0,\n                            \"gridsquare\": \"JP22AI\",\n                            \"origin\": \"CALLSIGN-1\",\n                            \"snr\": -8,\n                            \"timestamp\": 1713034455\n                        },\n                        \"743222d1dd64ce9d\": {\n                            \"activity_type\": \"ARQ_SESSION_OPEN_ACK\",\n                            \"direction\": \"received\",\n                            \"frequency\": \"14093000\",\n                            \"frequency_offset\": 0,\n                            \"origin\": \"CALL-1\",\n                            \"session_id\": 105,\n                            \"snr\": -2,\n                            \"timestamp\": 1713034243\n                        },\n                        \"7589edf6bf23ceed\": {\n                            \"activity_type\": \"ARQ_BURST_ACK\",\n                            \"direction\": \"received\",\n                            \"frequency\": \"14093000\",\n                            \"frequency_offset\": 0,\n                            \"session_id\": 105,\n                            \"snr\": 2,\n                            \"timestamp\": 1713034275\n                        },\n                        \"9d2c5a98fe0f9894\": {\n                            \"activity_type\": \"QRV\",\n                            \"direction\": \"received\",\n                            \"frequency\": \"14093000\",\n                            \"frequency_offset\": 0,\n                            \"gridsquare\": \"JP12AW\",\n                            \"origin\": \"CALLME-1\",\n                            \"snr\": 5,\n                            \"timestamp\": 1713034178\n                        },\n                        \"f85609dced4ea40a\": {\n                            \"activity_type\": \"ARQ_BURST_ACK\",\n                            \"direction\": \"received\",\n                            \"frequency\": \"14093000\",\n                            \"frequency_offset\": 0,\n                            \"session_id\": 105,\n                            \"snr\": 0,\n                            \"timestamp\": 1713034257\n                        }\n                    },\n                    \"audio_dbfs\": -7.915304862713354,\n                    \"channel_busy_slot\": [False, False, True, False, False],\n                    \"is_away_from_key\": False,\n                    \"is_beacon_running\": True,\n                    \"is_modem_busy\": False,\n                    \"is_modem_running\": True,\n                    \"radio_frequency\": \"14093000\",\n                    \"radio_mode\": \"PKTUSB\",\n                    \"radio_status\": True,\n                    \"s_meter_strength\": \"20\",\n                    \"type\": \"state\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    }\n})\nasync def get_modem_state(ctx: AppContext = Depends(get_ctx)):\n    \"\"\"\n    Retrieve the current state of the modem.\n\n    Returns:\n        dict: A JSON object containing modem state information.\n    \"\"\"\n    state = ctx.state_manager.sendState()\n    if state is None:\n        api_abort(\"Modem state not available\", 404)\n    return api_response(state)\n\n@router.post(\"/cqcqcq\", summary=\"Send CQ Command\", tags=[\"Modem\"], responses={\n    200: {\n        \"description\": \"CQ command sent successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"message\": \"ok\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def post_cq(ctx: AppContext = Depends(get_ctx)):\n    \"\"\"\n    Trigger the modem to send a CQ.\n    \"\"\"\n    if not ctx.state_manager.is_modem_running:\n        api_abort(\"Modem not running\", 503)\n    await enqueue_tx_command(ctx, command_cq.CQCommand)\n    return api_ok()\n\n\n@router.post(\"/beacon\", summary=\"Enable/Disable Modem Beacon\", tags=[\"Modem\"], responses={\n    200: {\n        \"description\": \"Beacon status updated successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"enabled\": True,\n                    \"away_from_key\": False\n                }\n            }\n        }\n    },\n    400: {\n        \"description\": \"Invalid input parameters.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Incorrect value for 'enabled' or 'away_from_key'. Should be bool.\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def post_beacon(\n    payload: dict,\n    ctx: AppContext = Depends(get_ctx),\n):\n    \"\"\"\n    Enable or disable the modem beacon.\n    \"\"\"\n    enabled = payload.get('enabled')\n    away = payload.get('away_from_key')\n    if not isinstance(enabled, bool) or not isinstance(away, bool):\n        api_abort(\"Expected booleans for 'enabled' and 'away_from_key'\", 400)\n    if not ctx.state_manager.is_modem_running:\n        api_abort(\"Modem not running\", 503)\n    ctx.state_manager.set('is_beacon_running', enabled)\n    ctx.state_manager.set('is_away_from_key', away)\n    if enabled and not ctx.state_manager.getARQ():\n        await enqueue_tx_command(ctx, command_beacon.BeaconCommand, payload)\n    return api_response({\"enabled\": enabled, \"away_from_key\": away})\n\n@router.post(\"/ping_ping\", summary=\"Trigger Modem to PING a Station\", tags=[\"Modem\"], responses={\n    200: {\n        \"description\": \"Ping command sent successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"message\": True\n                }\n            }\n        }\n    },\n    400: {\n        \"description\": \"Invalid input parameters.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Invalid 'dxcall' parameter.\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def post_ping(\n    payload: dict,\n    ctx: AppContext = Depends(get_ctx),\n):\n    \"\"\"\n    Trigger the modem to send a PING to a station.\n    \"\"\"\n    if not ctx.state_manager.is_modem_running:\n        api_abort(\"Modem not running\", 503)\n    dxcall = payload.get('dxcall')\n    if not dxcall or not validations.validate_freedata_callsign(dxcall):\n        api_abort(\"Invalid 'dxcall' parameter.\", 400)\n    await enqueue_tx_command(ctx, command_ping.PingCommand, payload)\n    return api_response({\"message\": True})\n\n\n@router.post(\"/send_test_frame\", summary=\"Send Test Frame\", tags=[\"Modem\"], responses={\n    200: {\n        \"description\": \"Test frame sent successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"message\": \"ok\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def post_send_test(\n    ctx: AppContext = Depends(get_ctx),\n):\n    \"\"\"\n    Trigger the modem to send a test frame.\n    \"\"\"\n    if not ctx.state_manager.is_modem_running:\n        api_abort(\"Modem not running\", 503)\n    await enqueue_tx_command(ctx, command_test.TestCommand)\n    return api_ok()\n\n@router.post(\"/fec_transmit\", summary=\"FEC Transmit\", tags=[\"Modem\"], responses={\n    200: {\n        \"description\": \"FEC frame transmitted successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"message\": \"FEC transmission started.\"\n                }\n            }\n        }\n    },\n    400: {\n        \"description\": \"Bad Request: The request was malformed or missing required parameters.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Invalid parameters.\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    },\n    500: {\n        \"description\": \"Internal Server Error: An unexpected error occurred on the server.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Internal server error.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def post_fec(\n    payload: dict,\n    ctx: AppContext = Depends(get_ctx),\n):\n    \"\"\"\n    Trigger FEC frame transmission.\n    \"\"\"\n    if not ctx.state_manager.is_modem_running:\n        api_abort(\"Modem not running\", 503)\n    if 'message' not in payload:\n        api_abort(\"Field 'message' required.\", 400)\n    await enqueue_tx_command(ctx, command_fec.FecCommand, payload)\n    return api_response({\"message\": \"FEC transmission started.\"})\n\n\n@router.post(\"/start\", summary=\"Start Modem\", tags=[\"Modem\"], responses={\n    200: {\n        \"description\": \"Modem started successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"examples\": {\n                    \"modem_started\": {\n                        \"summary\": \"Modem Started\",\n                        \"value\": {\n                            \"modem\": \"started\"\n                        }\n                    },\n                    \"message_ok\": {\n                        \"summary\": \"Message OK\",\n                        \"value\": {\n                            \"message\": \"ok\"\n                        }\n                    }\n                }\n            }\n        }\n    },\n    400: {\n        \"description\": \"Bad Request: The request was malformed or missing required parameters.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Invalid parameters.\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    },\n    500: {\n        \"description\": \"Internal Server Error: An unexpected error occurred on the server.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Internal server error.\"\n                }\n            }\n        }\n    }\n})\nasync def post_start(ctx: AppContext = Depends(get_ctx)):\n    \"\"\"\n    Trigger the modem to start.\n    \"\"\"\n    if ctx.state_manager.is_modem_running:\n        api_abort(\"Modem already running\", 503)\n    ctx.modem_service.put(\"start\")\n    return api_response({\"modem\": \"started\"})\n\n\n@router.post(\"/stop\", summary=\"Stop Modem\", tags=[\"Modem\"], responses={\n    200: {\n        \"description\": \"Modem stopped successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"examples\": {\n                    \"modem_stopped\": {\n                        \"summary\": \"Modem Stopped\",\n                        \"value\": {\n                            \"modem\": \"stopped\"\n                        }\n                    },\n                    \"message_ok\": {\n                        \"summary\": \"Message OK\",\n                        \"value\": {\n                            \"message\": \"ok\"\n                        }\n                    }\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def post_stop(ctx: AppContext = Depends(get_ctx)):\n    \"\"\"\n    Trigger the modem to stop.\n    \"\"\"\n    #if not ctx.state_manager.is_modem_running:\n    #    api_abort(\"Modem not running\", 503)\n    ctx.modem_service.put(\"stop\")\n    return api_response({\"modem\": \"stopped\"})\n\n\n\n@router.post(\"/send_arq_raw\", summary=\"Send ARQ Raw Data\", tags=[\"Modem\"], responses={\n    200: {\n        \"description\": \"ARQ raw data sent successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"data\": \"RnJlZURBVEEgaXMgdGhlIGJlc3Qh\",\n                    \"dxcall\": \"XX1XXX-6\",\n                    \"type\": \"raw\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running or busy.\",\n        \"content\": {\n            \"application/json\": {\n                \"examples\": {\n                    \"modem_not_running\": {\n                        \"summary\": \"Modem Not Running\",\n                        \"value\": {\n                            \"error\": \"Modem not running.\"\n                        }\n                    },\n                    \"modem_busy\": {\n                        \"summary\": \"Modem Busy\",\n                        \"value\": {\n                            \"error\": \"Modem Busy.\"\n                        }\n                    }\n                }\n            }\n        }\n    }\n})\nasync def post_arq_raw(\n    payload: dict,\n    ctx: AppContext = Depends(get_ctx),\n):\n    \"\"\"\n    Send ARQ raw data to a specified station.\n    \"\"\"\n    if not ctx.state_manager.is_modem_running:\n        api_abort(\"Modem not running.\", 503)\n    if ctx.state_manager.is_modem_busy:\n        api_abort(\"Modem Busy.\", 503)\n    dxcall = payload.get('dxcall')\n    data_type = payload.get('type')\n    raw_data = payload.get('data')\n    if not dxcall or not validations.validate_freedata_callsign(dxcall):\n        api_abort(\"Invalid 'dxcall' parameter.\", 400)\n    if data_type not in ['raw','raw_lzma','raw_gzip']:\n        api_abort(\"Invalid 'type' parameter.\", 400)\n    if not raw_data:\n        api_abort(\"Missing 'data' parameter.\", 400)\n    await enqueue_tx_command(ctx, command_arq_raw.SendARQRawCommand, payload)\n    return api_response({\"data\": raw_data, \"dxcall\": dxcall, \"type\": data_type})\n\n@router.post(\"/stop_transmission\", summary=\"Stop Transmission\", tags=[\"Modem\"], responses={\n    200: {\n        \"description\": \"Transmission stopped successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"message\": \"ok\"\n                }\n            }\n        }\n    },\n    400: {\n        \"description\": \"Bad Request: The request was malformed or missing required parameters.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Invalid request.\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    },\n    500: {\n        \"description\": \"Internal Server Error: An unexpected error occurred on the server.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Internal server error.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Modem not running.\"\n                }\n            }\n        }\n    }\n})\nasync def post_stop_transmission(ctx: AppContext = Depends(get_ctx)):\n    \"\"\"\n    Stop the current transmission.\n    \"\"\"\n    try:\n        ctx.state_manager.stop_transmission()\n    except Exception:\n        pass\n    return api_ok()\n"
  },
  {
    "path": "freedata_server/api/radio.py",
    "content": "from fastapi import APIRouter, Depends\nfrom api.common import api_response, api_abort\nfrom api.command_helpers import enqueue_tx_command\nimport command_transmit_sine\nfrom context import AppContext, get_ctx\n\nrouter = APIRouter()\n\n\n\n@router.get(\"/\", summary=\"Get Radio Parameters\", tags=[\"Radio\"], responses={\n    200: {\n        \"description\": \"Current radio parameters.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"radio_frequency\": \"14093000\",\n                    \"radio_mode\": \"PKTUSB\",\n                    \"radio_rf_level\": 100,\n                    \"radio_status\": True,\n                    \"radio_swr\": 0,\n                    \"radio_tuner\": False,\n                    \"s_meter_strength\": \"20\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    }\n})\nasync def get_radio(ctx: AppContext = Depends(get_ctx)):\n    \"\"\"\n    Retrieve current radio parameters.\n\n    Returns:\n        dict: The current radio parameters.\n    \"\"\"\n    params = ctx.state_manager.get_radio_status()\n    if params is None:\n        api_abort(\"Radio parameters not found\", 404)\n    return api_response(params)\n\n@router.post(\"/\", summary=\"Set Radio Parameters\", tags=[\"Radio\"], responses={\n    200: {\n        \"description\": \"Radio parameters updated successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"radio_frequency\": \"14093000\",\n                    \"radio_mode\": \"PKTUSB\",\n                    \"radio_rf_level\": 100,\n                    \"radio_status\": True,\n                    \"radio_swr\": 0,\n                    \"radio_tuner\": True,\n                    \"s_meter_strength\": \"20\"\n                }\n            }\n        }\n    },\n    400: {\n        \"description\": \"Bad Request: The request was malformed or missing required parameters.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Invalid parameters.\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    }\n})\nasync def post_radio(\n    new_params: dict,\n    ctx: AppContext = Depends(get_ctx),\n):\n    \"\"\"\n    Set radio parameters: frequency, mode, RF level, tuner state.\n\n    Parameters:\n        new_params (dict): The radio parameters to set.\n        ctx (AppContext): Injected application context.\n\n    Returns:\n        dict: The applied radio parameters.\n    \"\"\"\n    radio_manager = ctx.radio_manager\n    if \"radio_frequency\" in new_params:\n        radio_manager.set_frequency(new_params[\"radio_frequency\"])\n    if \"radio_mode\" in new_params:\n        radio_manager.set_mode(new_params[\"radio_mode\"])\n    if \"radio_rf_level\" in new_params:\n        radio_manager.set_rf_level(int(new_params[\"radio_rf_level\"]))\n    if \"radio_tuner\" in new_params:\n        radio_manager.set_tuner(new_params[\"radio_tuner\"])\n    return api_response(new_params)\n\n\n@router.post(\"/tune\", summary=\"Enable/Disable Radio Tuning\", tags=[\"Radio\"], responses={\n    200: {\n        \"description\": \"Radio tuning status updated successfully.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"enable_tuning\": True\n                }\n            }\n        }\n    },\n    400: {\n        \"description\": \"Bad Request: The request was malformed or missing required parameters.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Invalid parameters.\"\n                }\n            }\n        }\n    },\n    404: {\n        \"description\": \"The requested resource was not found.\",\n        \"content\": {\n            \"application/json\": {\n                \"example\": {\n                    \"error\": \"Resource not found.\"\n                }\n            }\n        }\n    },\n    503: {\n        \"description\": \"Modem not running or busy.\",\n        \"content\": {\n            \"application/json\": {\n                \"examples\": {\n                    \"modem_not_running\": {\n                        \"summary\": \"Modem Not Running\",\n                        \"value\": {\n                            \"error\": \"Modem not running.\"\n                        }\n                    },\n                    \"modem_busy\": {\n                        \"summary\": \"Modem Busy\",\n                        \"value\": {\n                            \"error\": \"Modem Busy.\"\n                        }\n                    }\n                }\n            }\n        }\n    }\n})\nasync def post_radio_tune(\n    params: dict,\n    ctx: AppContext = Depends(get_ctx),\n):\n    \"\"\"\n    Enable or disable radio tuning tone.\n\n    Parameters:\n        params (dict): {'enable_tuning': bool}\n        ctx (AppContext): Injected application context.\n\n    Raises:\n        HTTPException via api_abort if modem not running or busy.\n    \"\"\"\n    enable = params.get(\"enable_tuning\")\n    if enable:\n        if not ctx.state_manager.is_modem_running:\n            api_abort(\"Modem not running\", 503)\n        await enqueue_tx_command(ctx, command_transmit_sine.TransmitSine)\n    else:\n        ctx.rf_modem.stop_sine()\n    return api_response(params)\n    return api_response(data)\n"
  },
  {
    "path": "freedata_server/api/websocket.py",
    "content": "from fastapi import APIRouter, WebSocket, Depends\nfrom context import AppContext, get_ctx\n\nrouter = APIRouter()\n\n@router.websocket(\"/events\")\nasync def websocket_events(\n    websocket: WebSocket,\n    ctx: AppContext = Depends(get_ctx)\n):\n    \"\"\"\n    WebSocket endpoint for event streams.\n    \"\"\"\n    await websocket.accept()\n    await ctx.websocket_manager.handle_connection(\n        websocket,\n        ctx.websocket_manager.events_client_list,\n        ctx.modem_events\n    )\n\n@router.websocket(\"/fft\")\nasync def websocket_fft(\n    websocket: WebSocket,\n    ctx: AppContext = Depends(get_ctx)\n):\n    \"\"\"\n    WebSocket endpoint for FFT data streams.\n    \"\"\"\n    await websocket.accept()\n    await ctx.websocket_manager.handle_connection(\n        websocket,\n        ctx.websocket_manager.fft_client_list,\n        ctx.modem_fft\n    )\n\n@router.websocket(\"/states\")\nasync def websocket_states(\n    websocket: WebSocket,\n    ctx: AppContext = Depends(get_ctx)\n):\n    \"\"\"\n    WebSocket endpoint for state updates.\n    \"\"\"\n    await websocket.accept()\n    await ctx.websocket_manager.handle_connection(\n        websocket,\n        ctx.websocket_manager.states_client_list,\n        ctx.state_queue\n    )\n"
  },
  {
    "path": "freedata_server/api_validations.py",
    "content": "\"\"\" This module provides a set of validation functions used within the FreeData system. It includes:\n\nvalidate_remote_config: Ensures that a remote configuration is present.\nvalidate_freedata_callsign: Checks if a callsign conforms to a defined pattern. Note: The current regular expression allows 1 to 7 alphanumeric characters followed by a hyphen and 1 to 3 digits, but it may require adjustment to fully support all SSID values from 0 to 255.\nvalidate_message_attachment: Validates that a message attachment (represented as a dictionary) includes the required fields ('name', 'type', 'data') and that the 'name' and 'data' fields are not empty.\n\n\"\"\"\n\n\nimport re\n\nGRID_RE = re.compile(r'^[A-Ra-r]{2}[0-9]{2}([A-Xa-x]{2})?$')\nCALL_RE = re.compile(r'^[A-Z0-9]{1,7}(-[0-9]{1,3})?$', re.IGNORECASE)\n\n\ndef validate_gridsquare(value: str):\n    \"\"\"Validate and normalize a Maidenhead grid locator (4 or 6 characters).\"\"\"\n    if not value or not isinstance(value, str):\n        return None\n    raw = value.strip()\n    if not GRID_RE.match(raw):\n        return None\n    return raw[0:2].upper() + raw[2:4] + (raw[4:6].lower() if len(raw) == 6 else \"\")\n\n\ndef validate_freedata_callsign(value: str):\n    \"\"\"\n    Validate a ham radio callsign.\n\n    Rules:\n      - Up to 7 alphanumeric characters for the base.\n      - Optional -SSID with a number 0–255.\n    \"\"\"\n    if not value or not isinstance(value, str):\n        return None\n    raw = value.strip().upper()\n    match = CALL_RE.fullmatch(raw)\n    if not match:\n        return None\n\n    if \"-\" in raw:\n        base, ssid = raw.split(\"-\", 1)\n        try:\n            ssid_num = int(ssid)\n            if 0 <= ssid_num <= 255:\n                return f\"{base}-{ssid_num}\"\n            return None\n        except ValueError:\n            return None\n    return raw\n\n\ndef validate_remote_config(config: dict) -> bool:\n    \"\"\"\n    Validate 'mycall' and 'mygrid' in STATION.\n    Returns False if either one is invalid.\n    \"\"\"\n    if not config or \"STATION\" not in config:\n        return False\n\n    station = config[\"STATION\"]\n\n    call = validate_freedata_callsign(station.get(\"mycall\"))\n    grid = validate_gridsquare(station.get(\"mygrid\"))\n\n    if not call or not grid:\n        return False\n\n    # Write back normalized values\n    station[\"mycall\"] = call\n    station[\"mygrid\"] = grid\n    return True\n\n\ndef validate_message_attachment(attachment):\n    \"\"\"Validates a message attachment.\n\n    This function checks if the attachment includes the required fields ('name', 'type', 'data')\n    and that the 'name' and 'data' fields are not empty. It raises a ValueError if\n    any of these conditions are not met. Note: The 'type' field is not checked for\n    emptiness as some files may not have a MIME type.\n\n    Args:\n        attachment: The message attachment to validate (represented as a dictionary).\n\n    Raises:\n        ValueError: If the attachment is missing a required field or if the 'name' or 'data' field is empty.\n    \"\"\"\n    for field in ['name', 'type', 'data']:\n        if field not in attachment:\n            raise ValueError(f\"Attachment missing '{field}'\")\n\n        # check for content length, except type\n        # there are some files out there, don't having a mime type\n        if len(attachment[field]) < 1 and field not in [\"type\"]:\n            raise ValueError(f\"Attachment has empty '{field}'\")\n"
  },
  {
    "path": "freedata_server/arq_data_type_handler.py",
    "content": "\"\"\"\nThis module implements the ARQDataTypeHandler class, which is responsible for\npreparing, handling, and processing different types of ARQ session data within the FreeData system.\nIt supports various session types (raw, compressed, and p2p-related) defined in the ARQ_SESSION_TYPES enumeration,\nand routes data to the appropriate methods for compression, decompression, and event handling.\n\"\"\"\n\n\n\nimport structlog\nimport lzma\nimport gzip\nimport zlib\nfrom message_p2p import message_received, message_failed, message_transmitted\nfrom enum import Enum\n\nclass ARQ_SESSION_TYPES(Enum):\n    \"\"\"Enumeration for ARQ session types.\n\n    This class defines various session types used in the ARQ protocol,\n    each associated with a unique integer value. These session types\n    help in identifying the format and compression method of the data\n    being transmitted in ARQ communications.\n    \"\"\"\n\n    raw = 0\n    raw_lzma = 10\n    raw_gzip = 11\n    p2pmsg_zlib = 20\n    p2p_connection = 30\n\n\nclass ARQDataTypeHandler:\n    def __init__(self, ctx):\n        self.logger = structlog.get_logger(type(self).__name__)\n\n        self.ctx = ctx\n\n        self.handlers = {\n            ARQ_SESSION_TYPES.raw: {\n                'prepare': self.prepare_raw,\n                'handle': self.handle_raw,\n                'failed': self.failed_raw,\n                'transmitted': self.transmitted_raw,\n            },\n            ARQ_SESSION_TYPES.raw_lzma: {\n                'prepare': self.prepare_raw_lzma,\n                'handle': self.handle_raw_lzma,\n                'failed': self.failed_raw_lzma,\n                'transmitted': self.transmitted_raw_lzma,\n            },\n            ARQ_SESSION_TYPES.raw_gzip: {\n                'prepare': self.prepare_raw_gzip,\n                'handle': self.handle_raw_gzip,\n                'failed': self.failed_raw_gzip,\n                'transmitted': self.transmitted_raw_gzip,\n            },\n            ARQ_SESSION_TYPES.p2pmsg_zlib: {\n                'prepare': self.prepare_p2pmsg_zlib,\n                'handle': self.handle_p2pmsg_zlib,\n                'failed' : self.failed_p2pmsg_zlib,\n                'transmitted': self.transmitted_p2pmsg_zlib,\n            },\n            ARQ_SESSION_TYPES.p2p_connection: {\n                'prepare': self.prepare_p2p_connection,\n                'handle': self.handle_p2p_connection,\n                'failed': self.failed_p2p_connection,\n                'transmitted': self.transmitted_p2p_connection,\n            },\n        }\n\n    @staticmethod\n    def get_session_type_from_value(value):\n        \"\"\"Retrieves the ARQ session type corresponding to the given value.\n\n        This method iterates through the available ARQ session types and\n        returns the matching type if the provided value equals the type's value.\n        If no match is found, it returns None.\n\n        Args:\n            value: The integer value representing the ARQ session type.\n\n        Returns:\n            The corresponding ARQ_SESSION_TYPES enum member, or None if no match is found.\n        \"\"\"\n        for session_type in ARQ_SESSION_TYPES:\n            if session_type.value == value:\n                return session_type\n        return None\n\n    def dispatch(self, type_byte: int, data: bytearray, statistics: dict):\n        \"\"\"Dispatches the handling of received ARQ data based on its type.\n\n        This method retrieves the session type corresponding to the given type byte,\n        and then invokes the appropriate handler function from the `handlers` dictionary.\n        If no handler is found for the given type, it logs a warning message.\n\n        Args:\n            type_byte: The integer representing the type of ARQ data received.\n            data: The raw bytes of the received ARQ data.\n            statistics: A dictionary containing statistics related to the ARQ session.\n\n        Returns:\n            The result returned by the specific handler function, or None if no handler is found.\n        \"\"\"\n        session_type = self.get_session_type_from_value(type_byte)\n\n        self.ctx.state_manager.setARQ(False)\n\n        if session_type and session_type in self.handlers and 'handle' in self.handlers[session_type]:\n            return self.handlers[session_type]['handle'](data, statistics)\n        else:\n            self.log(f\"Unknown handling endpoint for type: {type_byte}\", isWarning=True)\n\n    def failed(self, type_byte: int, data: bytearray, statistics: dict):\n        \"\"\"Handles the failure of an ARQ session based on the provided type byte.\n\n        This method retrieves the session type from the given type byte and calls\n        the corresponding 'failed' handler if it exists within the registered handlers.\n        If no handler is found, it logs a warning message indicating an unknown endpoint.\n\n        Args:\n            type_byte: The integer representing the type of ARQ session that failed.\n            data: The bytearray containing the data related to the failed session.\n            statistics: A dictionary containing statistics related to the ARQ session.\n\n        Returns:\n            The result of the 'failed' handler if found, otherwise None.\n        \"\"\"\n        session_type = self.get_session_type_from_value(type_byte)\n\n        self.ctx.state_manager.setARQ(False)\n\n        if session_type in self.handlers and 'failed' in self.handlers[session_type]:\n            return self.handlers[session_type]['failed'](data, statistics)\n        else:\n            self.log(f\"Unknown handling endpoint: {session_type}\", isWarning=True)\n\n    def prepare(self, data: bytearray, session_type=ARQ_SESSION_TYPES.raw):\n        \"\"\"Prepares data for transmission based on the specified ARQ session type.\n\n        This method checks if a prepare handler exists for the given session type\n        and invokes it if available. If no handler is found, it logs a warning message.\n\n        Args:\n            data: The bytearray of data to be prepared.\n            session_type: The ARQ_SESSION_TYPES enum member representing the session type.\n\n        Returns:\n            A tuple containing the prepared data and the integer value of the session type,\n            or None if no prepare handler is found for the given session type.\n        \"\"\"\n        if session_type in self.handlers and 'prepare' in self.handlers[session_type]:\n            return self.handlers[session_type]['prepare'](data), session_type.value\n        else:\n            self.log(f\"Unknown preparation endpoint: {session_type}\", isWarning=True)\n\n    def transmitted(self, type_byte: int, data: bytearray, statistics: dict):\n        \"\"\"Handles the successful transmission of ARQ data based on its type.\n\n        This method retrieves the session type from the given type byte and calls\n        the corresponding 'transmitted' handler if it exists within the registered handlers.\n        If no handler is found, it logs a warning message indicating an unknown endpoint.\n\n        Args:\n            type_byte: The integer representing the type of ARQ data transmitted.\n            data: The bytearray containing the transmitted data.\n            statistics: A dictionary containing statistics related to the ARQ session.\n\n        Returns:\n            The result of the 'transmitted' handler if found, otherwise None.\n        \"\"\"\n        session_type = self.get_session_type_from_value(type_byte)\n\n        self.ctx.state_manager.setARQ(False)\n\n        if session_type in self.handlers and 'transmitted' in self.handlers[session_type]:\n            return self.handlers[session_type]['transmitted'](data, statistics)\n        else:\n            self.log(f\"Unknown handling endpoint: {session_type}\", isWarning=True)\n\n    def log(self, message, isWarning=False):\n        \"\"\"Logs a message with the appropriate log level.\n\n        This method formats the message to include the class name and then logs it\n        using either the `logger.warn` method if `isWarning` is True, or the\n        `logger.info` method otherwise.\n\n        Args:\n            message: The message to be logged.\n            isWarning: A boolean indicating whether the message should be logged as a warning.\n        \"\"\"\n        msg = f\"[{type(self).__name__}]: {message}\"\n        logger = self.logger.warn if isWarning else self.logger.info\n        logger(msg)\n\n    def prepare_raw(self, data):\n        \"\"\"Prepares raw data for transmission.\n\n        This method simply logs the size of the raw data being prepared and returns it as is.\n        No compression or other transformations are applied to raw data.\n\n        Args:\n            data: The bytearray containing the raw data to be prepared.\n\n        Returns:\n            The raw data as a bytearray.\n        \"\"\"\n        self.log(f\"Preparing uncompressed data: {len(data)} Bytes\")\n        return data\n\n    def handle_raw(self, data, statistics):\n        \"\"\"Handles raw data.\n\n        This method simply logs the size of the raw data being handled and returns it as is.\n        No decompression or other transformations are applied to raw data.\n\n        Args:\n            data: The bytearray containing the raw data to be handled.\n            statistics: A dictionary containing statistics related to the ARQ session.\n\n        Returns:\n            The raw data as a bytearray.\n        \"\"\"\n        self.log(f\"Handling uncompressed data: {len(data)} Bytes\")\n        return data\n\n    def failed_raw(self, data, statistics):\n        \"\"\"Handles the failure of raw data transmission.\n\n        This method is a placeholder for handling failures related to raw data.\n        Currently, it does nothing and returns None.\n\n        Args:\n            data: The bytearray containing the raw data.\n            statistics: A dictionary containing statistics related to the ARQ session.\n\n        Returns:\n            None\n        \"\"\"\n        return\n\n    def transmitted_raw(self, data, statistics):\n        \"\"\"Handles the successful transmission of raw data.\n\n        This method simply returns the raw data.  No decompression or other\n        transformations are applied to raw data.\n\n        Args:\n            data: The bytearray containing the raw data.\n            statistics: A dictionary containing statistics related to the ARQ session.\n\n        Returns:\n            The raw data as a bytearray.\n        \"\"\"\n        return data\n\n    def prepare_raw_lzma(self, data):\n        \"\"\"Prepares raw data for transmission using LZMA compression.\n\n        This method compresses the given data using LZMA and logs the size of the data\n        before and after compression.\n\n        Args:\n            data: The bytearray containing the raw data to be compressed.\n\n        Returns:\n            The LZMA-compressed data as a bytearray.\n        \"\"\"\n        compressed_data = lzma.compress(data)\n        self.log(f\"Preparing LZMA compressed data: {len(data)} Bytes >>> {len(compressed_data)} Bytes\")\n        return compressed_data\n\n    def handle_raw_lzma(self, data, statistics):\n        \"\"\"Handles LZMA compressed raw data.\n\n        This method decompresses the provided LZMA data and logs the size of the data\n        before and after decompression.\n\n        Args:\n            data: The bytearray containing the LZMA compressed data.\n            statistics: A dictionary containing statistics related to the ARQ session.\n\n        Returns:\n            The decompressed data as a bytearray.\n        \"\"\"\n        decompressed_data = lzma.decompress(data)\n        self.log(f\"Handling LZMA compressed data: {len(decompressed_data)} Bytes from {len(data)} Bytes\")\n        return decompressed_data\n\n    def failed_raw_lzma(self, data, statistics):\n        \"\"\"Handles the failure of LZMA compressed raw data transmission.\n\n        This method is a placeholder for handling failures related to LZMA compressed raw data.\n        Currently, it does nothing and returns None.\n\n        Args:\n            data: The bytearray containing the LZMA compressed raw data.\n            statistics: A dictionary containing statistics related to the ARQ session.\n\n        Returns:\n            None\n        \"\"\"\n        return\n\n    def transmitted_raw_lzma(self, data, statistics):\n        \"\"\"Handles the successful transmission of LZMA compressed raw data.\n\n        This method decompresses the LZMA compressed data and returns the result.\n\n        Args:\n            data: The bytearray containing the LZMA compressed data.\n            statistics: A dictionary containing statistics related to the ARQ session.\n\n        Returns:\n            The decompressed data as a bytearray.\n        \"\"\"\n        decompressed_data = lzma.decompress(data)\n        return decompressed_data\n\n    def prepare_raw_gzip(self, data):\n        \"\"\"Prepares raw data for transmission using GZIP compression.\n\n        This method compresses the given data using GZIP and logs the size of the data\n        before and after compression.\n\n        Args:\n            data: The bytearray containing the raw data to be compressed.\n\n        Returns:\n            The GZIP-compressed data as a bytearray.\n        \"\"\"\n        compressed_data = gzip.compress(data)\n        self.log(f\"Preparing GZIP compressed data: {len(data)} Bytes >>> {len(compressed_data)} Bytes\")\n        return compressed_data\n\n    def handle_raw_gzip(self, data, statistics):\n        \"\"\"Handles GZIP compressed raw data.\n\n        This method decompresses the provided GZIP data and logs the size of the data\n        before and after decompression.\n\n        Args:\n            data: The bytearray containing the GZIP compressed data.\n            statistics: A dictionary containing statistics related to the ARQ session.\n\n        Returns:\n            The decompressed data as a bytearray.\n        \"\"\"\n        decompressed_data = gzip.decompress(data)\n        self.log(f\"Handling GZIP compressed data: {len(decompressed_data)} Bytes from {len(data)} Bytes\")\n        return decompressed_data\n\n    def failed_raw_gzip(self, data, statistics):\n        \"\"\"Handles the failure of GZIP compressed raw data transmission.\n\n        This method is a placeholder for handling failures related to GZIP compressed raw data.\n        Currently, it does nothing and returns None.\n\n        Args:\n            data: The bytearray containing the GZIP compressed raw data.\n            statistics: A dictionary containing statistics related to the ARQ session.\n\n        Returns:\n            None\n        \"\"\"\n        return\n\n    def transmitted_raw_gzip(self, data, statistics):\n        \"\"\"Handles the successful transmission of GZIP compressed raw data.\n\n        This method decompresses the GZIP compressed data and returns the result.\n\n        Args:\n            data: The bytearray containing the GZIP compressed data.\n            statistics: A dictionary containing statistics related to the ARQ session.\n\n        Returns:\n            The decompressed data as a bytearray.\n        \"\"\"\n        decompressed_data = gzip.decompress(data)\n        return decompressed_data\n\n    def prepare_p2pmsg_zlib(self, data):\n        \"\"\"Prepares P2PMSG data for transmission using ZLIB compression.\n\n        This method compresses the given data using ZLIB with a specific level, wbits, and strategy,\n        and logs the size of the data before and after compression. The custom compression method ensures, we can send data without a compression header\n\n        Args:\n            data: The bytearray containing the P2PMSG data to be compressed.\n\n        Returns:\n            The ZLIB-compressed data as a bytearray.\n        \"\"\"\n\n        compressor = zlib.compressobj(level=6, wbits=-zlib.MAX_WBITS, strategy=zlib.Z_FILTERED)\n        compressed_data = compressor.compress(data) + compressor.flush()\n\n        self.log(f\"Preparing ZLIB compressed P2PMSG data: {len(data)} Bytes >>> {len(compressed_data)} Bytes\")\n        return compressed_data\n\n    def handle_p2pmsg_zlib(self, data, statistics):\n        \"\"\"Handles ZLIB compressed P2PMSG data.\n\n        This method decompresses the provided ZLIB-compressed P2PMSG data,\n        logs the size before and after decompression, and then triggers the\n        message_received event.\n\n        Args:\n            data: The bytearray containing the ZLIB compressed P2PMSG data.\n            statistics: A dictionary containing statistics related to the ARQ session.\n\n        Returns:\n            The decompressed data as a bytearray.\n        \"\"\"\n        decompressor = zlib.decompressobj(wbits=-zlib.MAX_WBITS)\n        decompressed_data = decompressor.decompress(data)\n        decompressed_data += decompressor.flush()\n\n        self.log(f\"Handling ZLIB compressed P2PMSG data: {len(decompressed_data)} Bytes from {len(data)} Bytes\")\n        message_received(self.ctx, decompressed_data, statistics)\n        return decompressed_data\n\n    def failed_p2pmsg_zlib(self, data, statistics):\n        \"\"\"Handles failed ZLIB compressed P2PMSG data.\n\n        This method decompresses the ZLIB compressed data, logs information about the failure,\n        and triggers a message_failed event.\n\n        Args:\n            data: The bytearray containing the ZLIB compressed P2PMSG data.\n            statistics: A dictionary containing statistics related to the ARQ session.\n\n        Returns:\n            The decompressed data as a bytearray.\n        \"\"\"\n        decompressor = zlib.decompressobj(wbits=-zlib.MAX_WBITS)\n        decompressed_data = decompressor.decompress(data)\n        decompressed_data += decompressor.flush()\n\n        self.log(f\"Handling failed ZLIB compressed P2PMSG data: {len(decompressed_data)} Bytes from {len(data)} Bytes\", isWarning=True)\n        message_failed(self.ctx, decompressed_data, statistics)\n        return decompressed_data\n\n    def transmitted_p2pmsg_zlib(self, data, statistics):\n        \"\"\"Handles the successful transmission of ZLIB compressed P2PMSG data.\n\n        This method decompresses the provided ZLIB compressed P2PMSG data,\n        logs the size before and after decompression, and then triggers the\n        message_transmitted event.\n\n        Args:\n            data: The bytearray containing the ZLIB compressed P2PMSG data.\n            statistics: A dictionary containing statistics related to the ARQ session.\n\n        Returns:\n            The decompressed data as a bytearray.\n        \"\"\"\n        # Create a decompression object with the same wbits setting used for compression\n        decompressor = zlib.decompressobj(wbits=-zlib.MAX_WBITS)\n        decompressed_data = decompressor.decompress(data)\n        decompressed_data += decompressor.flush()\n\n        message_transmitted(self.ctx, decompressed_data, statistics)\n        return decompressed_data\n    \n    \n    def prepare_p2p_connection(self, data):\n        \"\"\"Prepares P2P connection data for transmission using ZLIB compression.\n\n        This method compresses the provided data using ZLIB with specific settings for\n        peer-to-peer connection sessions. It logs the size of the data before and after\n        compression and prints the current P2P connection sessions.\n\n        Args:\n            data: The bytearray containing the P2P connection data to be compressed.\n\n        Returns:\n            The ZLIB-compressed data as a bytearray.\n        \"\"\"\n\n        compressor = zlib.compressobj(level=6, wbits=-zlib.MAX_WBITS, strategy=zlib.Z_FILTERED)\n        compressed_data = compressor.compress(data) + compressor.flush()\n\n        self.log(f\"Preparing zlib compressed P2P_CONNECTION data: {len(data)} Bytes >>> {len(compressed_data)} Bytes\")\n        print(self.ctx.state_manager.p2p_connection_sessions)\n        return compressed_data\n\n    def handle_p2p_connection(self, data, statistics):\n\n        decompressor = zlib.decompressobj(wbits=-zlib.MAX_WBITS)\n        decompressed_data = decompressor.decompress(data)\n        decompressed_data += decompressor.flush()\n\n        self.log(f\"Handling gzip compressed P2P_CONNECTION data: {len(decompressed_data)} Bytes from {len(data)} Bytes\")\n        for session_id in self.ctx.state_manager.p2p_connection_sessions:\n            self.ctx.state_manager.p2p_connection_sessions[session_id].received_arq(decompressed_data)\n\n    def failed_p2p_connection(self, data, statistics):\n\n        decompressor = zlib.decompressobj(wbits=-zlib.MAX_WBITS)\n        decompressed_data = decompressor.decompress(data)\n        decompressed_data += decompressor.flush()\n        self.log(f\"Handling failed gzip compressed P2P_CONNECTION data: {len(decompressed_data)} Bytes from {len(data)} Bytes\", isWarning=True)\n        for session_id in self.ctx.state_manager.p2p_connection_sessions:\n            self.ctx.state_manager.p2p_connection_sessions[session_id].failed_arq()\n\n    def transmitted_p2p_connection(self, data, statistics):\n\n        decompressor = zlib.decompressobj(wbits=-zlib.MAX_WBITS)\n        decompressed_data = decompressor.decompress(data)\n        decompressed_data += decompressor.flush()\n        for session_id in self.ctx.state_manager.p2p_connection_sessions:\n            self.ctx.state_manager.p2p_connection_sessions[session_id].transmitted_arq(decompressed_data)"
  },
  {
    "path": "freedata_server/arq_session.py",
    "content": "import datetime\nimport threading\nimport data_frame_factory\nimport structlog\nfrom event_manager import EventManager\nfrom modem_frametypes import FRAME_TYPE\nimport time\nfrom arq_data_type_handler import ARQDataTypeHandler\nfrom codec2 import FREEDV_MODE_USED_SLOTS, FREEDV_MODE\nimport stats\nclass ARQSession:\n    \"\"\"Manages an ARQ (Automatic Repeat reQuest) session.\n\n    This class handles the transmission and reception of data using the ARQ protocol,\n    managing session state, statistics, and data handling.\n    \"\"\"\n    SPEED_LEVEL_DICT = {\n        0: {\n            'mode': FREEDV_MODE.datac4,\n            'min_snr': -10,\n            'duration_per_frame': 5.17,\n            'bandwidth': 250,\n            'slots': FREEDV_MODE_USED_SLOTS.datac4,\n        },\n        1: {\n            'mode': FREEDV_MODE.data_ofdm_500,\n            'min_snr': 0,\n            'duration_per_frame': 3.19,\n            'bandwidth': 500,\n            'slots': FREEDV_MODE_USED_SLOTS.data_ofdm_500,\n        },\n        2: {\n            'mode': FREEDV_MODE.datac1,\n            'min_snr': 3,\n            'duration_per_frame': 4.18,\n            'bandwidth': 1700,\n            'slots': FREEDV_MODE_USED_SLOTS.datac1,\n        },\n        3: {\n            'mode': FREEDV_MODE.data_ofdm_2438,\n            'min_snr': 8.5,\n            'duration_per_frame': 5.5,\n            'bandwidth': 2438,\n            'slots': FREEDV_MODE_USED_SLOTS.data_ofdm_2438,\n        },\n        # 4: {\n        #    'mode': FREEDV_MODE.qam16c2,\n        #    'min_snr': 11,\n        #    'duration_per_frame': 2.8,\n        #    'bandwidth': 2438,\n        #    'slots': FREEDV_MODE_USED_SLOTS.qam16c2,\n        # },\n    }\n\n    def __init__(self, ctx, dxcall: str):\n        \"\"\"Initializes a new ARQ session.\n\n        This method sets up the ARQ session with the provided configuration,\n        modem, DX call sign, and state manager. It initializes various\n        session parameters and data structures.\n\n        Args:\n            config (dict): The configuration dictionary.\n            modem: The modem object.\n            dxcall (str): The DX call sign.\n            state_manager: The state manager object.\n        \"\"\"\n        self.logger = structlog.get_logger(type(self).__name__)\n        self.ctx = ctx\n        #self.ctx.state_manager = freedata_server.states\n        self.ctx.state_manager.setARQ(True)\n\n        self.is_IRS = False # state for easy check \"is IRS\" or is \"ISS\"\n\n        self.protocol_version = self.ctx.constants.ARQ_PROTOCOL_VERSION\n\n        self.snr = []\n\n        self.dxcall = dxcall\n        self.dx_snr = []\n\n        self.speed_level = 0\n        self.previous_speed_level = 0\n\n        self.frames_per_burst = 1\n\n        self.frame_factory = data_frame_factory.DataFrameFactory(self.ctx)\n        self.event_frame_received = threading.Event()\n\n        self.arq_data_type_handler = ARQDataTypeHandler(self.ctx)\n        self.id = None\n        self.session_started = time.time()\n        self.session_ended = 0\n        self.session_max_age = 500\n\n        # this timestamp is updated by \"set_state\", everytime we have a state change.\n        # we will use the schedule manager, for checking, how old is the state change for deciding, how we continue with the message\n        self.last_state_change_timestamp = time.time()\n\n        self.statistics = stats.stats(self.ctx)\n\n        # histogram lists for storing statistics\n        self.snr_histogram = []\n        self.bpm_histogram = []\n        self.bps_histogram = []\n        self.time_histogram = []\n\n    def log(self, message, isWarning=False):\n        \"\"\"Logs a message with session context.\n\n        Logs a message, including the class name, session ID, and current state,\n        using the appropriate log level (warning or info).\n\n        Args:\n            message: The message to be logged.\n            isWarning: A boolean indicating whether the message should be logged as a warning.\n        \"\"\"\n        msg = f\"[{type(self).__name__}][id={self.id}][{self.dxcall}][state={self.state}]: {message}\"\n        logger = self.logger.warn if isWarning else self.logger.info\n        logger(msg)\n\n    def get_mode_by_speed_level(self, speed_level):\n        \"\"\"Returns the FreeDV mode for the given speed level.\n\n        This method retrieves the FreeDV mode associated with a specific speed level\n        from the SPEED_LEVEL_DICT.\n\n        Args:\n            speed_level (int): The speed level.\n\n        Returns:\n            modem_frametypes.FREEDV_MODE: The FreeDV mode corresponding to the speed level.\n        \"\"\"\n        return self.SPEED_LEVEL_DICT[speed_level][\"mode\"]\n\n    def transmit_frame(self, frame: bytearray, mode='auto'):\n        \"\"\"Transmits a given frame using the modem.\n\n        This method transmits the provided frame using the configured modem.\n        If the mode is set to 'auto', it determines the appropriate FreeDV mode\n        based on the current speed level.\n\n        Args:\n            frame (bytearray): The frame to be transmitted.\n            mode (str, optional): The FreeDV mode to use for transmission. Defaults to 'auto'.\n        \"\"\"\n        self.log(\"Transmitting frame\")\n        if mode in ['auto']:\n            mode = self.get_mode_by_speed_level(self.speed_level)\n\n        self.ctx.rf_modem.transmit(mode, 1, 1, frame)\n\n    def set_state(self, state):\n        \"\"\"Sets the state of the ARQ session.\n\n        This method updates the session state and logs the state change.\n        It also updates the timestamp of the last state change.\n\n        Args:\n            state: The new state of the ARQ session.\n        \"\"\"\n        self.last_state_change_timestamp = time.time()\n        if self.state == state:\n            self.log(f\"{type(self).__name__} state {self.state.name} unchanged.\")\n        else:\n            self.log(f\"{type(self).__name__} state change from {self.state.name} to {state.name} at {self.last_state_change_timestamp}\")\n        self.state = state\n\n    def get_data_payload_size(self):\n        \"\"\"Returns the available data payload size for the current speed level.\n\n        This method calculates the available data payload size for ARQ burst frames\n        based on the current speed level and FreeDV mode.\n\n        Returns:\n            int: The available data payload size in bytes.\n        \"\"\"\n        return self.frame_factory.get_available_data_payload_for_mode(\n            FRAME_TYPE.ARQ_BURST_FRAME,\n            self.SPEED_LEVEL_DICT[self.speed_level][\"mode\"]\n            )\n\n    def set_details(self, snr, frequency_offset):\n        \"\"\"Sets the SNR and frequency offset for the ARQ session.\n\n        This method updates the signal-to-noise ratio (SNR) and frequency offset\n        values for the current session.\n\n        Args:\n            snr: The signal-to-noise ratio.\n            frequency_offset: The frequency offset.\n        \"\"\"\n        self.snr = snr\n        self.frequency_offset = frequency_offset\n\n    def on_frame_received(self, frame):\n        \"\"\"Handles received frames based on the current session state.\n\n        This method processes incoming frames, triggering state transitions and\n        data handling based on the frame type and current session state.\n        It logs received frame types and ignores unknown state transitions.\n\n        Args:\n            frame: The received frame.\n        \"\"\"\n        self.event_frame_received.set()\n        self.log(f\"Received {frame['frame_type']}\")\n        frame_type = frame['frame_type_int']\n        if self.state in self.STATE_TRANSITION and frame_type in self.STATE_TRANSITION[self.state]:\n            action_name = self.STATE_TRANSITION[self.state][frame_type]\n            received_data, type_byte = getattr(self, action_name)(frame)\n\n            if isinstance(received_data, bytearray) and isinstance(type_byte, int):\n                self.arq_data_type_handler.dispatch(type_byte, received_data,\n                                                    self.update_histograms(len(received_data), len(received_data)))\n            return\n\n        self.log(f\"Ignoring unknown transition from state {self.state.name} with frame {frame['frame_type']}\")\n\n    def is_session_outdated(self):\n        \"\"\"Checks if the session is outdated.\n\n        This method checks if the session has ended and if the end time is\n        older than the session_max_age. It returns True if the session is\n        outdated, False otherwise.\n\n        Returns:\n            bool: True if the session is outdated, False otherwise.\n        \"\"\"\n        session_alivetime = time.time() - self.session_max_age\n        return self.session_ended < session_alivetime and self.state.name in [\n            'FAILED',\n            'ENDED',\n            'ABORTED',\n        ]\n\n    def calculate_session_duration(self):\n        \"\"\"Calculates the duration of the ARQ session.\n\n        This method calculates the duration of the session, taking into account\n        whether the session has ended or is still ongoing.\n\n        Returns:\n            float: The duration of the session in seconds.\n        \"\"\"\n        if self.session_ended == 0:\n            return time.time() - self.session_started\n\n        return self.session_ended - self.session_started\n\n    def calculate_session_statistics(self, confirmed_bytes, total_bytes):\n        \"\"\"Calculates session statistics.\n\n        This method calculates various statistics for the ARQ session, including\n        duration, bytes per minute, bits per second, and histograms for time,\n        SNR, BPM, and BPS.\n\n        Args:\n            confirmed_bytes: The number of confirmed bytes transmitted.\n            total_bytes: The total number of bytes transmitted.\n\n        Returns:\n            dict: A dictionary containing the calculated session statistics.\n        \"\"\"\n        duration = self.calculate_session_duration()\n        # total_bytes = self.total_length\n        # self.total_length\n        duration_in_minutes = duration / 60  # Convert duration from seconds to minutes\n\n        # Calculate bytes per minute\n        if duration_in_minutes > 0:\n            bytes_per_minute = int(confirmed_bytes / duration_in_minutes)\n        else:\n            bytes_per_minute = 0\n\n        # Calculate bits per second\n        bits_per_second = int((confirmed_bytes * 8) / duration)\n\n\n        # Convert histograms lists to dictionaries\n        time_histogram_dict = dict(enumerate(self.time_histogram))\n        snr_histogram_dict = dict(enumerate(self.snr_histogram))\n        bpm_histogram_dict = dict(enumerate(self.bpm_histogram))\n        bps_histogram_dict = dict(enumerate(self.bps_histogram))\n\n        return {\n            'total_bytes': total_bytes,\n            'duration': duration,\n            'bytes_per_minute': bytes_per_minute,\n            'bits_per_second': bits_per_second,\n            'time_histogram': time_histogram_dict,\n            'snr_histogram': snr_histogram_dict,\n            'bpm_histogram': bpm_histogram_dict,\n            'bps_histogram': bps_histogram_dict,\n        }\n\n    def update_histograms(self, confirmed_bytes, total_bytes):\n        \"\"\"Updates session histograms with the latest statistics.\n\n        This method calculates and updates the histograms for SNR, bytes per\n        minute (BPM), bits per second (BPS), and time, using the provided\n        confirmed and total bytes. It limits the histogram size to the last\n        20 entries.\n\n        Args:\n            confirmed_bytes: The number of confirmed bytes transmitted.\n            total_bytes: The total number of bytes transmitted.\n\n        Returns:\n            dict: A dictionary containing the calculated session statistics.\n        \"\"\"\n        stats = self.calculate_session_statistics(confirmed_bytes, total_bytes)\n        self.snr_histogram.append(self.snr)\n        self.bpm_histogram.append(stats['bytes_per_minute'])\n        self.bps_histogram.append(stats['bits_per_second'])\n        self.time_histogram.append(datetime.datetime.now().isoformat())\n\n        # Limit the size of each histogram to the last 20 entries\n        self.snr_histogram = self.snr_histogram[-20:]\n        self.bpm_histogram = self.bpm_histogram[-20:]\n        self.bps_histogram = self.bps_histogram[-20:]\n        self.time_histogram = self.time_histogram[-20:]\n\n        return stats\n\n    def check_channel_busy(self, channel_busy_slot, mode_slot):\n        \"\"\"Checks if the channel is busy based on channel busy slots and mode slots.\n\n        This method iterates through the channel_busy_slot and mode_slot lists.\n        It returns False if a channel is both busy and the mode is active,\n        indicating the channel is available. Otherwise, it returns True.\n\n        Args:\n            channel_busy_slot: A list of booleans representing channel busy status.\n            mode_slot: A list of booleans representing mode activity status.\n\n        Returns:\n            bool: True if the channel is available, False otherwise.\n        \"\"\"\n        for busy, mode in zip(channel_busy_slot, mode_slot):\n            if busy and mode:\n                return False\n        return True\n\n    def get_appropriate_speed_level(self, snr, maximum_bandwidth=None):\n        \"\"\"\n        Determines the appropriate speed level based on the SNR, channel busy slot, and maximum bandwidth.\n\n        Parameters:\n        - snr (float): The signal-to-noise ratio.\n        - channel_busy_slot (list of bool): The busy condition of the channels.\n        - maximum_bandwidth (float, optional): The maximum bandwidth. If None, uses the default from the configuration.\n\n        Returns:\n        - int: The appropriate speed level.\n        \"\"\"\n        # Use default maximum bandwidth from configuration if not provided\n        if maximum_bandwidth is None:\n            maximum_bandwidth = self.ctx.config_manager.config['MODEM']['maximum_bandwidth']\n\n        # Adjust maximum_bandwidth if set to 0 (use maximum available bandwidth from speed levels)\n        if maximum_bandwidth == 0:\n            maximum_bandwidth = max(details['bandwidth'] for details in self.SPEED_LEVEL_DICT.values())\n\n        # Iterate through speed levels in reverse order to find the highest appropriate one\n        for level in sorted(self.SPEED_LEVEL_DICT.keys(), reverse=True):\n            details = self.SPEED_LEVEL_DICT[level]\n            mode_slots = details['slots'].value\n            if (snr >= details['min_snr'] and\n                details['bandwidth'] <= maximum_bandwidth and\n                self.check_channel_busy(self.ctx.state_manager.channel_busy_slot, mode_slots)):\n                return level\n\n        # Return the lowest level if no higher level is found\n        return min(self.SPEED_LEVEL_DICT.keys())\n    \n    def reset_session(self):\n        \"\"\"Resets the ARQ session to its initial state.\n\n        This method clears all session-related data, including received bytes,\n        histograms, type byte, total length, CRC values, received data,\n        maximum bandwidth, and the abort flag.\n        \"\"\"\n        self.received_bytes = 0\n        self.snr_histogram = []\n        self.bpm_histogram = []\n        self.bps_histogram = []\n        self.time_histogram = []\n        self.type_byte = None\n        self.total_length = 0\n        self.total_crc = ''\n        self.received_data = None\n        self.received_bytes = 0\n        self.received_crc = None\n        self.maximum_bandwidth = 0\n        self.abort = False"
  },
  {
    "path": "freedata_server/arq_session_irs.py",
    "content": "import threading\nimport arq_session\nimport helpers\nfrom modem_frametypes import FRAME_TYPE\nfrom codec2 import FREEDV_MODE\nfrom enum import Enum\nimport time\nfrom p2p_connection import States as P2PStates\n\nclass IRS_State(Enum):\n    \"\"\"Enumeration representing the states of an IRS (Information Receiving Station) ARQ session.\n\n    This enumeration defines the various states that an ARQ session on the\n    Information Receiving Station (IRS) side can transition through during\n    the data transfer process.\n\n    Attributes:\n        NEW: Initial state of a new session.\n        OPEN_ACK_SENT: State after sending an acknowledgement to the session open request.\n        INFO_ACK_SENT: State after sending an acknowledgement to the session information frame.\n        BURST_REPLY_SENT: State after sending an acknowledgement to a burst data frame.\n        ENDED: State after successfully receiving all data and confirming the checksum.\n        FAILED: State after a session failure, such as a timeout or CRC mismatch.\n        ABORTED: State after the session is explicitly aborted.\n        RESUME: State allowing transmission resumption after a waiting period. This state is set after a period longer than TIMEOUT_DATA to ensure clean states.\n    \"\"\"\n    NEW = 0\n    OPEN_ACK_SENT = 1\n    INFO_ACK_SENT = 2\n    BURST_REPLY_SENT = 3\n    ENDED = 4\n    FAILED = 5\n    ABORTED = 6\n    RESUME = 7 # State, which allows resuming of a transmission - will be set after some waiting time, higher than TIMEOUT_DATA for ensuring clean states\n\nclass ARQSessionIRS(arq_session.ARQSession):\n    \"\"\"Manages an ARQ session on the Information Receiving Station (IRS) side.\n\n    This class extends the base ARQSession class and implements the specific\n    logic and state transitions for the IRS during an ARQ data transfer.\n    \"\"\"\n\n    TIMEOUT_CONNECT = 55 #14.2\n    TIMEOUT_DATA = 90\n\n    STATE_TRANSITION = {\n        IRS_State.NEW: { \n            FRAME_TYPE.ARQ_SESSION_OPEN.value : 'send_open_ack',\n            FRAME_TYPE.ARQ_STOP.value: 'send_stop_ack'\n        },\n        IRS_State.OPEN_ACK_SENT: { \n            FRAME_TYPE.ARQ_SESSION_OPEN.value: 'send_open_ack',\n            FRAME_TYPE.ARQ_SESSION_INFO.value: 'send_info_ack',\n            FRAME_TYPE.ARQ_STOP.value: 'send_stop_ack'\n\n        },\n        IRS_State.INFO_ACK_SENT: {\n            FRAME_TYPE.ARQ_SESSION_INFO.value: 'send_info_ack',\n            FRAME_TYPE.ARQ_BURST_FRAME.value: 'receive_data',\n            FRAME_TYPE.ARQ_STOP.value: 'send_stop_ack'\n\n        },\n        IRS_State.BURST_REPLY_SENT: {\n            FRAME_TYPE.ARQ_BURST_FRAME.value: 'receive_data',\n            FRAME_TYPE.ARQ_STOP.value: 'send_stop_ack'\n\n        },\n        IRS_State.ENDED: {\n            FRAME_TYPE.ARQ_BURST_FRAME.value: 'receive_data',\n            FRAME_TYPE.ARQ_STOP.value: 'send_stop_ack'\n\n        },\n        IRS_State.FAILED: {\n            FRAME_TYPE.ARQ_BURST_FRAME.value: 'receive_data',\n            #FRAME_TYPE.ARQ_SESSION_OPEN.value: 'send_open_ack',\n        },\n        IRS_State.ABORTED: {\n            FRAME_TYPE.ARQ_STOP.value: 'send_stop_ack',\n            #FRAME_TYPE.ARQ_SESSION_OPEN.value: 'send_open_ack',\n            #FRAME_TYPE.ARQ_SESSION_INFO.value: 'send_info_ack',\n            #FRAME_TYPE.ARQ_BURST_FRAME.value: 'receive_data',\n        },\n        IRS_State.RESUME: {\n            FRAME_TYPE.ARQ_SESSION_OPEN.value: 'send_open_ack',\n            FRAME_TYPE.ARQ_BURST_FRAME.value: 'receive_data',\n\n        }\n\n\n\n    }\n\n    def __init__(self, ctx, dxcall: str, session_id: int):\n        \"\"\"Initializes a new ARQ session on the Information Receiving Station (IRS) side.\n\n        This method initializes an ARQSessionIRS object, setting up the session\n        parameters and state for the IRS. It inherits from the arq_session.ARQSession\n        class and adds IRS-specific attributes.\n\n        Args:\n            config (dict): The configuration dictionary.\n            modem: The modem object.\n            dxcall (str): The DX call sign.\n            session_id (int): The unique ID of the session.\n        \"\"\"\n        super().__init__(ctx, dxcall)\n        self.ctx = ctx\n        self.id = session_id\n        self.dxcall = dxcall\n        self.version = self.ctx.constants.ARQ_PROTOCOL_VERSION\n        self.is_IRS = True\n\n        self.state = IRS_State.NEW\n        self.state_enum = IRS_State  # needed for access State enum from outside\n\n        # instance of p2p connection\n        self.running_p2p_connection = None\n        try:\n            self.running_p2p_connection = self.ctx.state_manager.get_p2p_connection_session(self.id)\n            # register arq session in p2p connection\n            self.running_p2p_connection.running_arq_session = self\n            self.running_p2p_connection.set_state(P2PStates.ARQ_SESSION)\n        except Exception as e:\n            self.log(\"Error getting p2p connection session\")\n\n        self.type_byte = None\n        self.total_length = 0\n        self.total_crc = ''\n        self.received_data = None\n        self.received_bytes = 0\n        self.received_crc = None\n\n        self.maximum_bandwidth = 0\n\n        self.abort = False\n\n    def all_data_received(self):\n        \"\"\"Checks if all data has been received.\n\n        This method compares the total expected length of the data with the\n        number of bytes received so far.\n\n        Returns:\n            bool: True if all data has been received, False otherwise.\n        \"\"\"\n        print(f\"{self.total_length} vs {self.received_bytes}\")\n        return self.total_length == self.received_bytes\n\n    def final_crc_matches(self) -> bool:\n        \"\"\"Checks if the final CRC matches the received data.\n\n        This method calculates the CRC32 checksum of the received data and\n        compares it with the expected CRC received from the sender.\n\n        Returns:\n            bool: True if the CRC matches, False otherwise.\n        \"\"\"\n        return self.total_crc == helpers.get_crc_32(bytes(self.received_data)).hex()\n\n    def transmit_and_wait(self, frame, timeout, mode):\n        \"\"\"Transmits a frame and waits for a response.\n\n        This method transmits the given frame using the specified mode and waits\n        for a response event within the given timeout period. If no response is\n        received and the session is not aborted or failed, it logs a timeout\n        message and calls the transmission_failed method.\n\n        Args:\n            frame: The frame to be transmitted.\n            timeout: The timeout period in seconds.\n            mode: The FreeDV mode to use for transmission.\n        \"\"\"\n        self.event_frame_received.clear()\n        self.transmit_frame(frame, mode)\n        self.log(f\"Waiting {timeout} seconds...\")\n        if not self.event_frame_received.wait(timeout) and self.state not in [IRS_State.ABORTED, IRS_State.FAILED]:\n            self.log(\"Timeout waiting for ISS. Session failed.\")\n            self.transmission_failed()\n\n    def launch_transmit_and_wait(self, frame, timeout, mode):\n        \"\"\"Launches the transmit_and_wait method in a separate thread.\n\n        This method creates and starts a new daemon thread to execute the\n        transmit_and_wait method, allowing the main thread to continue\n        without blocking.\n\n        Args:\n            frame: The frame to be transmitted.\n            timeout: The timeout period in seconds.\n            mode: The FreeDV mode to use for transmission.\n        \"\"\"\n        thread_wait = threading.Thread(target = self.transmit_and_wait, \n                                       args = [frame, timeout, mode], daemon=True)\n        thread_wait.start()\n    \n    def send_open_ack(self, open_frame):\n        \"\"\"Sends an acknowledgement to the ARQ session open request.\n\n        This method handles the reception of an ARQ_SESSION_OPEN frame.\n        It negotiates the maximum transmission bandwidth, checks protocol\n        version compatibility, and sends an ARQ_SESSION_OPEN_ACK frame.\n\n        Args:\n            open_frame: The received ARQ_SESSION_OPEN frame.\n\n        Returns:\n            Tuple[None, None]: Returns None for both data and type_byte as this method doesn't handle data.\n        \"\"\"\n        # check for maximum bandwidth. If ISS bandwidth is higher than own, then use own\n        if open_frame['maximum_bandwidth'] > self.ctx.config_manager.config['MODEM']['maximum_bandwidth']:\n            self.maximum_bandwidth = self.ctx.config_manager.config['MODEM']['maximum_bandwidth']\n        else:\n            self.maximum_bandwidth = open_frame['maximum_bandwidth']\n        self.log(f\"Negotiated transmission bandwidth {self.maximum_bandwidth}Hz\")\n\n        self.ctx.event_manager.send_arq_session_new(\n            False, self.id, self.dxcall, 0, self.state.name)\n\n        if open_frame['protocol_version'] not in [self.protocol_version]:\n            self.abort = True\n            self.log(f\"Protocol version mismatch! Setting disconnect flag!\", isWarning=True)\n            self.set_state(IRS_State.ABORTED)\n\n        ack_frame = self.frame_factory.build_arq_session_open_ack(\n            self.id,\n            self.dxcall, \n            self.version,\n            self.snr, flag_abort=self.abort)\n\n        self.launch_transmit_and_wait(ack_frame, self.TIMEOUT_CONNECT, mode=FREEDV_MODE.signalling)\n        if not self.abort:\n            self.set_state(IRS_State.OPEN_ACK_SENT)\n        return None, None\n\n    def send_info_ack(self, info_frame):\n        \"\"\"Sends an acknowledgement to the ARQ session information frame.\n\n        This method handles the reception of an ARQ_SESSION_INFO frame.\n        It extracts session details, calibrates speed settings, and sends\n        an ARQ_SESSION_INFO_ACK frame.\n\n        Args:\n            info_frame: The received ARQ_SESSION_INFO frame.\n\n        Returns:\n            Tuple[None, None]: Returns None for both data and type_byte as this method doesn't handle data.\n        \"\"\"\n        # Get session info from ISS\n        if self.received_bytes == 0:\n            self.received_data = bytearray(info_frame['total_length'])\n        self.total_length = info_frame['total_length']\n        self.total_crc = info_frame['total_crc']\n        self.dx_snr.append(info_frame['snr'])\n        self.type_byte = info_frame['type']\n\n        self.calibrate_speed_settings()\n\n        self.log(f\"New transfer of {self.total_length} bytes, received_bytes: {self.received_bytes}\")\n        self.ctx.event_manager.send_arq_session_new(False, self.id, self.dxcall, self.total_length, self.state.name)\n\n        info_ack = self.frame_factory.build_arq_session_info_ack(\n            self.id, self.received_bytes, self.snr,\n            self.speed_level, self.frames_per_burst, flag_abort=self.abort)\n        self.launch_transmit_and_wait(info_ack, self.TIMEOUT_CONNECT, mode=FREEDV_MODE.signalling)\n        if not self.abort:\n            self.set_state(IRS_State.INFO_ACK_SENT)\n        return None, None\n\n    def process_incoming_data(self, frame):\n        \"\"\"Processes incoming data from a received frame.\n\n        This method handles incoming data frames, checking for offset\n        mismatches, extracting the relevant data portion, and updating the\n        received data buffer. It also logs progress and sends ARQ session\n        progress events.\n\n        Args:\n            frame: The received data frame.\n\n        Returns:\n            bool: True if the data was processed successfully, False otherwise.\n        \"\"\"\n        if frame['offset'] != self.received_bytes:\n            # TODO: IF WE HAVE AN OFFSET BECAUSE OF A SPEED LEVEL CHANGE FOR EXAMPLE,\n            # TODO: WE HAVE TO DISCARD THE LAST BYTES, BUT NOT returning False!!\n            # CASE: ACK is going lost.\n            self.log(f\"Discarding data offset: Offset = {frame['offset']} | Already received: {self.received_bytes}\", isWarning=True)\n            self.received_bytes = frame['offset']\n            \n\n            #return False\n\n        # update p2p connection timeout\n        if self.running_p2p_connection:\n            try:\n                self.running_p2p_connection.last_data_timestamp = time.time()\n                self.running_p2p_connection.running_arq_session = self\n                self.running_p2p_connection.set_state(P2PStates.ARQ_SESSION)\n            except Exception as e:\n                self.log(f\"Error handling P2P states: {e}\")\n\n        remaining_data_length = self.total_length - self.received_bytes\n        self.log(f\"Remaining data: {remaining_data_length}\", isWarning=True)\n        # Is this the last data part?\n        if remaining_data_length < len(frame['data']):\n            # we only want the remaining length, not the entire frame data \n            data_part = frame['data'][:remaining_data_length]\n        else:\n            # we want the entire frame data\n            data_part = frame['data']\n            \n\n            \n\n        self.received_data[frame['offset']:] = data_part\n        #self.received_bytes += len(data_part)\n        self.received_bytes = len(self.received_data)\n        print(self.received_bytes)\n        print(self.received_data)\n        self.log(f\"Received {self.received_bytes}/{self.total_length} bytes\")\n        self.ctx.event_manager.send_arq_session_progress(\n            False, self.id, self.dxcall, self.received_bytes, self.total_length, self.state.name, self.speed_level, self.calculate_session_statistics(self.received_bytes, self.total_length))\n\n        return True\n\n    def receive_data(self, burst_frame):\n        \"\"\"Receives and processes a burst data frame.\n\n        This method processes the incoming burst data frame, sends acknowledgements,\n        updates session state, and handles session completion or failure.\n\n        Args:\n            burst_frame: The received ARQ_BURST_FRAME.\n\n        Returns:\n            Tuple[bytearray, int]: The received data and its type byte if the transmission is successful,\n                                    or None, None in case of failure or incomplete transmission.\n        \"\"\"\n        self.process_incoming_data(burst_frame)\n        # update statistics\n        self.update_histograms(self.received_bytes, self.total_length)\n\n        if not self.all_data_received():\n            self.calibrate_speed_settings(burst_frame=burst_frame)\n            ack = self.frame_factory.build_arq_burst_ack(\n                self.id,\n                self.speed_level,\n                flag_abort=self.abort\n            )\n\n            self.set_state(IRS_State.BURST_REPLY_SENT)\n            self.ctx.event_manager.send_arq_session_progress(False, self.id, self.dxcall, self.received_bytes,\n                                                         self.total_length, self.state.name, self.speed_level,\n                                                         statistics=self.calculate_session_statistics(\n                                                             self.received_bytes, self.total_length))\n\n            self.launch_transmit_and_wait(ack, self.TIMEOUT_DATA, mode=FREEDV_MODE.signalling_ack)\n            return None, None\n\n        if self.final_crc_matches():\n            self.log(\"All data received successfully!\")\n            ack = self.frame_factory.build_arq_burst_ack(self.id,\n                                                         self.speed_level,\n                                                         flag_final=True,\n                                                         flag_checksum=True)\n            self.transmit_frame(ack, mode=FREEDV_MODE.signalling_ack)\n            self.log(\"ACK sent\")\n            self.session_ended = time.time()\n            self.set_state(IRS_State.ENDED)\n\n            return self.received_data, self.type_byte\n        else:\n            ack = self.frame_factory.build_arq_burst_ack(self.id,\n                                                         self.speed_level,\n                                                         flag_final=True,\n                                                         flag_checksum=False)\n            self.transmit_frame(ack, mode=FREEDV_MODE.signalling_ack)\n            self.log(\"CRC fail at the end of transmission!\", isWarning=True)\n            self.log(f\"Failed Data [Is real:{len(self.received_data)}/Is calculated:{seld.received_bytes}/Should:{self.total_bytes}]:{self.received_data}\",isWarning=True)\n            return self.transmission_failed()\n\n\n    def calibrate_speed_settings(self, burst_frame=None):\n        \"\"\"Calibrates the speed settings for the ARQ session based on SNR and bandwidth.\n\n        This method determines the appropriate speed level for the session based on the\n        current SNR and available bandwidth. It also sets the appropriate decode\n        modes for the modem, ensuring smooth transitions between speed levels.\n\n        Args:\n            burst_frame (optional): The received burst frame, used to get the sender's speed level. Defaults to None.\n\n        Returns:\n            int: The calculated speed level.\n        \"\"\"\n        if burst_frame:\n            received_speed_level = burst_frame['speed_level']\n        else:\n            received_speed_level = 0\n\n        latest_snr = self.snr if self.snr else -10\n        appropriate_speed_level = self.get_appropriate_speed_level(latest_snr, self.maximum_bandwidth)\n        modes_to_decode = {}\n\n        # Log the latest SNR, current, appropriate speed levels, and the previous speed level\n        self.log(\n            f\"Latest SNR: {latest_snr}, Current Speed Level: {self.speed_level}, Appropriate Speed Level: {appropriate_speed_level}, Previous Speed Level: {self.previous_speed_level}\",\n            isWarning=True)\n\n        # Adjust the speed level by one step towards the appropriate level, if needed\n        #if appropriate_speed_level > self.speed_level and self.speed_level < len(self.SPEED_LEVEL_DICT) - 1:\n        #    # we need to ensure, the received data is equal to our speed level before changing it\n        #    if received_speed_level == self.speed_level:\n        #        self.speed_level += 1\n        #elif appropriate_speed_level < self.speed_level and self.speed_level > 0:\n        #    #if received_speed_level == self.speed_level:\n        #    #    self.speed_level -= 1\n\n        # Always decode the current mode\n        current_mode = self.get_mode_by_speed_level(self.speed_level).value\n        modes_to_decode[current_mode] = True\n\n        # Update previous speed level\n        if self.previous_speed_level != self.speed_level:\n            self.previous_speed_level = self.speed_level  # Update the previous speed level\n\n        # Ensure, previous mode is decoded as well\n        previous_mode = self.get_mode_by_speed_level(self.previous_speed_level).value\n        modes_to_decode[previous_mode] = True\n\n        # Ensure, appropriate mode is decoded as well\n        appropriate_mode = self.get_mode_by_speed_level(appropriate_speed_level).value\n        modes_to_decode[appropriate_mode] = True\n\n        self.log(f\"Modes to Decode: {list(modes_to_decode.keys())}\", isWarning=True)\n        # Apply the new decode mode based on the updated and previous speed levels\n        self.ctx.rf_modem.demodulator.set_decode_mode(modes_to_decode)\n\n        # finally update the speed level to the appropriate one\n        self.speed_level = appropriate_speed_level\n\n        return self.speed_level\n\n    def abort_transmission(self):\n        \"\"\"Aborts the ARQ transmission.\n\n        This method sets the abort flag to True, signaling that the\n        transmission should be terminated.\n        \"\"\"\n        self.log(\"Aborting transmission... setting abort flag\")\n        self.abort = True\n\n    def send_stop_ack(self, stop_frame):\n        \"\"\"Sends a stop acknowledgement and finalizes the session.\n\n        This method handles the reception of an ARQ_STOP frame by sending an\n        ARQ_STOP_ACK, setting the session state to ABORTED, and sending session\n        finished events. It also pushes session statistics if enabled.\n\n        Args:\n            stop_frame: The received ARQ_STOP frame.\n\n        Returns:\n            Tuple[None, None]: Returns None for both data and type_byte as this method doesn't handle data.\n        \"\"\"\n        stop_ack = self.frame_factory.build_arq_stop_ack(self.id)\n        self.launch_transmit_and_wait(stop_ack, self.TIMEOUT_CONNECT, mode=FREEDV_MODE.signalling_ack)\n        self.set_state(IRS_State.ABORTED)\n        self.ctx.state_manager.setARQ(False)\n        session_stats = self.calculate_session_statistics(self.received_bytes, self.total_length)\n\n        self.ctx.event_manager.send_arq_session_finished(\n                False, self.id, self.dxcall, False, self.state.name, statistics=session_stats)\n        if self.ctx.config_manager.config['STATION']['enable_stats']:\n            self.statistics.push(self.state.name, session_stats, self.dxcall)\n\n        return None, None\n\n    def transmission_failed(self, irs_frame=None):\n        \"\"\"Handles transmission failures.\n\n        This method is called when a transmission fails. It sets the session\n        state to FAILED, logs the failure, sends session finished events,\n        pushes session statistics if enabled, and disables ARQ.\n\n        Args:\n            irs_frame (optional): The received IRS frame. Defaults to None.\n\n        Returns:\n            Tuple[None, None]: Returns None for both data and type_byte.\n        \"\"\"\n        # final function for failed transmissions\n        self.session_ended = time.time()\n        self.set_state(IRS_State.FAILED)\n        self.log(\"Transmission failed!\")\n        #self.ctx.rf_modem.demodulator.set_decode_mode()\n        session_stats = self.calculate_session_statistics(self.received_bytes, self.total_length)\n        self.received_data = None\n        self.received_bytes = 0\n        self.ctx.event_manager.send_arq_session_finished(True, self.id, self.dxcall,False, self.state.name, statistics=session_stats)\n        if self.ctx.config_manager.config['STATION']['enable_stats']:\n            self.statistics.push(self.state.name, session_stats, self.dxcall)\n\n        self.ctx.state_manager.setARQ(False)\n        return None, None\n\n    def transmission_aborted(self):\n        \"\"\"Handles the abortion of the transmission.\n\n        This method is called when the transmission is aborted. It sets the\n        session state to ABORTED, logs the abortion, sends session finished\n        events, and disables ARQ.\n\n        Returns:\n            Tuple[None, None]: Returns None for both data and type_byte.\n        \"\"\"\n        if self.state not in [IRS_State.ABORTED, IRS_State.ENDED]:\n            self.log(\"session aborted\")\n            self.session_ended = time.time()\n            self.set_state(IRS_State.ABORTED)\n            # break actual retries\n            self.event_frame_received.set()\n\n\n            #self.ctx.rf_modem.demodulator.set_decode_mode()\n            self.ctx.event_manager.send_arq_session_finished(\n                True, self.id, self.dxcall, False, self.state.name, statistics=self.calculate_session_statistics(self.received_bytes, self.total_length))\n            self.ctx.state_manager.setARQ(False)\n        return None, None"
  },
  {
    "path": "freedata_server/arq_session_iss.py",
    "content": "import threading\nimport data_frame_factory\nimport random\nfrom codec2 import FREEDV_MODE\nfrom modem_frametypes import FRAME_TYPE\nimport arq_session\nimport helpers\nfrom enum import Enum\nimport time\nimport stats\n\nclass ISS_State(Enum):\n    \"\"\"Enumeration representing the states of an ISS (Information Sending Station) ARQ session.\n\n    This enumeration defines the various states that an ARQ session on the\n    Information Sending Station (ISS) side can transition through during\n    the data transfer process.\n\n    Attributes:\n        NEW: Initial state of a new session.\n        OPEN_SENT: State after sending an ARQ session open request.\n        INFO_SENT: State after sending the session information frame.\n        BURST_SENT: State after sending a burst data frame.\n        ENDED: State after successfully transmitting all data and receiving confirmation.\n        FAILED: State after a session failure, such as a timeout or abort.\n        ABORTING: State while running the abort sequence and waiting for a stop acknowledgement.\n        ABORTED: State after receiving a stop acknowledgement, indicating session termination.\n    \"\"\"\n    NEW = 0\n    OPEN_SENT = 1\n    INFO_SENT = 2\n    BURST_SENT = 3\n    ENDED = 4\n    FAILED = 5\n    ABORTING = 6 # state while running abort sequence and waiting for stop ack\n    ABORTED = 7 # stop ack received\n\nclass ARQSessionISS(arq_session.ARQSession):\n    \"\"\"Manages an ARQ session on the Information Sending Station (ISS) side.\n\n    This class extends the base ARQSession and handles the transmission of data\n    using the ARQ protocol. It manages session state, retries, timeouts, and\n    data transfer.\n    \"\"\"\n\n    RETRIES_CONNECT = 5\n    RETRIES_INFO = 10\n    RETRIES_DATA = 25\n    RETRIES_STOP = 5\n\n    # DJ2LS: 3 seconds seems to be too small for radios with a too slow PTT toggle time\n    # DJ2LS: 3.5 seconds is working well WITHOUT a channel busy detection delay\n    TIMEOUT_CHANNEL_BUSY = 0\n    TIMEOUT_CONNECT_ACK = 4.5 + TIMEOUT_CHANNEL_BUSY\n    TIMEOUT_TRANSFER = 3.5 + TIMEOUT_CHANNEL_BUSY\n    TIMEOUT_STOP_ACK = 4.5 + TIMEOUT_CHANNEL_BUSY\n\n    STATE_TRANSITION = {\n        ISS_State.OPEN_SENT: {\n            FRAME_TYPE.ARQ_SESSION_OPEN_ACK.value: 'send_info',\n        },\n        ISS_State.INFO_SENT: {\n            FRAME_TYPE.ARQ_SESSION_OPEN_ACK.value: 'send_info',\n            FRAME_TYPE.ARQ_SESSION_INFO_ACK.value: 'send_data',\n        },\n        ISS_State.BURST_SENT: {\n            FRAME_TYPE.ARQ_SESSION_INFO_ACK.value: 'send_data',\n            FRAME_TYPE.ARQ_BURST_ACK.value: 'send_data',\n        },\n        ISS_State.FAILED:{\n            FRAME_TYPE.ARQ_STOP_ACK.value: 'transmission_aborted'\n        },\n        ISS_State.ABORTING: {\n            FRAME_TYPE.ARQ_STOP_ACK.value: 'transmission_aborted',\n\n        },\n        ISS_State.ABORTED: {\n            FRAME_TYPE.ARQ_STOP_ACK.value: 'transmission_aborted',\n        }\n    }\n\n    def __init__(self, ctx, dxcall: str, data: bytearray, type_byte: bytes):\n        \"\"\"Initializes a new ARQ session on the Information Sending Station (ISS) side.\n\n        This method sets up the ARQ session for the ISS, initializing session\n        parameters, data, CRC, state, and frame factory. It also enables the\n        decoder for signalling ACK bursts.\n\n        Args:\n            config (dict): The configuration dictionary.\n            modem: The modem object.\n            dxcall (str): The DX call sign.\n            state_manager: The state manager object.\n            data (bytearray): The data to be transmitted.\n            type_byte (bytes): The type byte of the data.\n        \"\"\"\n        super().__init__(ctx, dxcall)\n        self.ctx = ctx\n        self.dxcall = dxcall\n        self.data = data\n        self.total_length = len(data)\n        self.data_crc = helpers.get_crc_32(self.data)\n        self.type_byte = type_byte\n        self.confirmed_bytes = 0\n        self.expected_byte_offset = 0\n\n        # instance of p2p connection\n        self.running_p2p_connection = None\n\n        self.state = ISS_State.NEW\n        self.state_enum = ISS_State # needed for access State enum from outside\n        self.id = self.generate_id()\n\n        self.is_IRS = False\n\n        # enable decoder for signalling ACK bursts\n        self.ctx.rf_modem.demodulator.set_decode_mode(modes_to_decode=None, is_arq_irs=False)\n\n        self.frame_factory = data_frame_factory.DataFrameFactory(self.ctx)\n\n    def generate_id(self):\n        \"\"\"Generates a unique session ID.\n\n        This method attempts to generate a unique 8-bit session ID. It first\n        checks for existing sessions with matching CRC to allow resuming\n        interrupted transmissions. If no match is found, it generates a new\n        ID based on the data CRC and ensures it's not already in use.\n\n        Returns:\n            int: The generated session ID (1-255), or False if all IDs are exhausted.\n        \"\"\"\n        # Iterate through existing sessions to find a matching CRC\n        for session_id, session_data in self.ctx.state_manager.arq_iss_sessions.items():\n            if session_data.data_crc == self.data_crc and session_data.state in [ISS_State.FAILED, ISS_State.ABORTED]:\n                # If a matching CRC is found, use this session ID\n                self.log(f\"Matching CRC found, deleting existing session and resuming transmission\", isWarning=True)\n                self.ctx.state_manager.remove_arq_iss_session(session_id)\n                return session_id\n        self.log(f\"No matching CRC found, creating new session id\", isWarning=False)\n\n        # Compute 8-bit integer from the 32-bit CRC\n        # Convert the byte sequence to a 32-bit integer (little-endian)\n        checksum_int = int.from_bytes(self.data_crc, byteorder='little')\n        random_int = checksum_int % 256\n\n        # Check if the generated 8-bit integer can be used\n        if random_int not in self.ctx.state_manager.arq_iss_sessions:\n            return random_int\n\n        # If the generated ID is already used, generate a new random ID\n        while True:\n            random_int = random.randint(1, 255)\n            if random_int not in self.ctx.state_manager.arq_iss_sessions:\n                return random_int\n            if len(self.ctx.state_manager.arq_iss_sessions) >= 255:\n                # Return False if all possible session IDs are exhausted\n                return False\n\n    def transmit_wait_and_retry(self, frame_or_burst, timeout, retries, mode, isARQBurst=False):\n        \"\"\"Transmits a frame or burst, waits for a response, and retries if necessary.\n\n        This method transmits the given frame or burst of frames, waits for a\n        response event, and retries the transmission if a timeout occurs.\n        It handles retries up to the specified limit and implements a fallback\n        mechanism for ARQ bursts by switching to a lower speed level if\n        necessary.\n\n        Args:\n            frame_or_burst: The frame or list of frames to be transmitted.\n            timeout (float): The timeout period in seconds.\n            retries (int): The maximum number of retries.\n            mode: The FreeDV mode to use for transmission.\n            isARQBurst (bool, optional): True if transmitting an ARQ burst, False otherwise. Defaults to False.\n        \"\"\"\n        while retries > 0 and self.state not in [ISS_State.ABORTED, ISS_State.ABORTING]:\n            self.event_frame_received = threading.Event()\n            if isinstance(frame_or_burst, list): burst = frame_or_burst\n            else: burst = [frame_or_burst]\n            for f in burst:\n                self.transmit_frame(f, mode)\n            self.event_frame_received.clear()\n            self.log(f\"Waiting {timeout} seconds...\")\n            if self.event_frame_received.wait(timeout):\n                return\n            self.log(\"Timeout!\")\n            retries = retries - 1\n\n            # TODO TEMPORARY TEST FOR SENDING IN LOWER SPEED LEVEL IF WE HAVE TWO FAILED TRANSMISSIONS!!!\n            if retries == self.RETRIES_DATA - 2 and isARQBurst and self.speed_level > 0 and self.state not in [ISS_State.ABORTED, ISS_State.ABORTING]:\n                self.log(\"SENDING IN FALLBACK SPEED LEVEL\", isWarning=True)\n                self.speed_level = 0\n                print(f\" CONFIRMED BYTES: {self.confirmed_bytes}\")\n                self.send_data({'flag':{'ABORT': False, 'FINAL': False}, 'speed_level': self.speed_level}, fallback=True)\n\n                return\n\n        self.set_state(ISS_State.FAILED)\n        self.transmission_failed()\n\n    def launch_twr(self, frame_or_burst, timeout, retries, mode, isARQBurst=False):\n        \"\"\"Launches the transmit_wait_and_retry method in a separate thread.\n\n        Creates and starts a daemon thread to execute the transmit_wait_and_retry\n        method. This allows the transmission and retry process to occur in the\n        background without blocking the main thread.\n\n        Args:\n            frame_or_burst: The frame or burst of frames to transmit.\n            timeout (float): The timeout for each transmission attempt.\n            retries (int): The number of transmission retries to attempt.\n            mode: The FreeDV mode to use for transmission.\n            isARQBurst (bool, optional): True if the transmission is an ARQ burst, False otherwise. Defaults to False.\n        \"\"\"\n        twr = threading.Thread(target = self.transmit_wait_and_retry, args=[frame_or_burst, timeout, retries, mode, isARQBurst], daemon=True)\n        twr.start()\n\n    def start(self):\n        \"\"\"Starts the ARQ session.\n\n        This method initiates the ARQ session by sending a session open frame\n        to the IRS and setting the session state to OPEN_SENT. It also sends\n        an ARQ session new event.\n        \"\"\"\n        maximum_bandwidth = self.ctx.config_manager.config['MODEM']['maximum_bandwidth']\n        print(maximum_bandwidth)\n        self.ctx.event_manager.send_arq_session_new(\n            True, self.id, self.dxcall, self.total_length, self.state.name)\n        session_open_frame = self.frame_factory.build_arq_session_open(self.dxcall, self.id, maximum_bandwidth, self.protocol_version)\n        self.launch_twr(session_open_frame, self.TIMEOUT_CONNECT_ACK, self.RETRIES_CONNECT, mode=FREEDV_MODE.signalling)\n        self.set_state(ISS_State.OPEN_SENT)\n\n    def update_speed_level(self, frame):\n        \"\"\"Updates the transmission speed level based on the received frame.\n\n        This method extracts the speed level from the received frame and updates\n        the session's speed level accordingly. It logs the speed level change\n        and handles cases where the received speed level is outside the\n        allowable range.\n\n        Args:\n            frame: The received frame containing the new speed level.\n        \"\"\"\n        self.log(\"---------------------------------------------------------\", isWarning=True)\n\n        # Log the received frame for debugging\n        self.log(f\"Received frame: {frame}\", isWarning=True)\n\n        # Extract the speed_level directly from the frame\n        if 'speed_level' in frame:\n            new_speed_level = frame['speed_level']\n            # Ensure the new speed level is within the allowable range\n            if 0 <= new_speed_level < len(self.SPEED_LEVEL_DICT):\n                # Log the speed level change if it's different from the current speed level\n                if new_speed_level != self.speed_level:\n                    self.log(f\"Changing speed level from {self.speed_level} to {new_speed_level}\", isWarning=True)\n                    self.speed_level = new_speed_level  # Update the current speed level\n                else:\n                    self.log(\"Received speed level is the same as the current speed level.\", isWarning=True)\n            else:\n                self.log(f\"Received speed level {new_speed_level} is out of allowable range.\", isWarning=True)\n        else:\n            self.log(\"No speed level specified in the received frame.\", isWarning=True)\n\n    def send_info(self, irs_frame):\n        \"\"\"Sends the session information frame to the IRS.\n\n        This method builds and sends the ARQ_SESSION_INFO frame containing\n        details about the data to be transmitted, such as total length, CRC,\n        SNR, and data type. It also handles transmission retries and aborts\n        based on the received IRS frame.\n\n        Args:\n            irs_frame: The received frame from the IRS.\n\n        Returns:\n            Tuple[None, None]: Returns None for both data and type_byte as this method doesn't handle data.\n        \"\"\"\n        # check if we received an abort flag\n        if irs_frame[\"flag\"][\"ABORT\"]:\n            return self.transmission_aborted(irs_frame=irs_frame)\n\n        info_frame = self.frame_factory.build_arq_session_info(self.id, self.total_length,\n                                                               self.data_crc,\n                                                               self.snr, self.type_byte)\n\n        self.launch_twr(info_frame, self.TIMEOUT_CONNECT_ACK, self.RETRIES_INFO, mode=FREEDV_MODE.signalling)\n        self.set_state(ISS_State.INFO_SENT)\n\n        return None, None\n\n    def send_data(self, irs_frame, fallback=None):\n        \"\"\"Sends data bursts to the IRS.\n\n        This method handles sending data bursts to the IRS, managing speed\n        level adjustments, acknowledgements, and session progress updates.\n        It also handles transmission aborts and session completion or failure.\n\n        Args:\n            irs_frame: The received frame from the IRS.\n            fallback (bool, optional): Indicates if this is a fallback transmission attempt at a lower speed level. Defaults to None.\n\n        Returns:\n            Tuple[None, None]: Returns None for both data and type_byte as this method doesn't handle data directly.\n        \"\"\"\n        if 'offset' in irs_frame:\n            self.log(f\"received data offset: {irs_frame['offset']}\", isWarning=True)\n            self.expected_byte_offset = irs_frame['offset']\n\n        # interrupt transmission when aborting\n        if self.state in [ISS_State.ABORTED, ISS_State.ABORTING]:\n            #self.event_frame_received.set()\n            #self.send_stop()\n            return\n\n        # update statistics\n        self.update_histograms(self.confirmed_bytes, self.total_length)\n        self.update_speed_level(irs_frame)\n\n        # update p2p connection timeout\n        if self.running_p2p_connection:\n            self.running_p2p_connection.last_data_timestamp = time.time()\n\n        if self.expected_byte_offset > self.total_length:\n            self.confirmed_bytes = self.total_length\n        elif not fallback:\n            self.confirmed_bytes = self.expected_byte_offset\n\n        self.log(f\"IRS confirmed {self.confirmed_bytes}/{self.total_length} bytes\")\n        self.ctx.event_manager.send_arq_session_progress(True, self.id, self.dxcall, self.confirmed_bytes, self.total_length, self.state.name, self.speed_level, statistics=self.calculate_session_statistics(self.confirmed_bytes, self.total_length))\n\n        # check if we received an abort flag\n        if irs_frame[\"flag\"][\"ABORT\"]:\n            self.transmission_aborted(irs_frame=irs_frame)\n            return None, None\n\n        if irs_frame[\"flag\"][\"FINAL\"]:\n            if self.confirmed_bytes == self.total_length and irs_frame[\"flag\"][\"CHECKSUM\"]:\n                self.transmission_ended(irs_frame)\n\n            else:\n                self.transmission_failed()\n            return None, None\n\n        payload_size = self.get_data_payload_size()\n        burst = []\n        for _ in range(0, self.frames_per_burst):\n            offset = self.confirmed_bytes\n            #self.expected_byte_offset = offset\n            payload = self.data[offset : offset + payload_size]\n            #self.expected_byte_offset = offset + payload_size\n            self.expected_byte_offset = offset + len(payload)\n            #print(f\"EXPECTED----------------------{self.expected_byte_offset}\")\n            data_frame = self.frame_factory.build_arq_burst_frame(\n                self.SPEED_LEVEL_DICT[self.speed_level][\"mode\"],\n                self.id, offset, payload, self.speed_level)\n            burst.append(data_frame)\n        self.launch_twr(burst, self.TIMEOUT_TRANSFER, self.RETRIES_DATA, mode='auto', isARQBurst=True)\n        self.set_state(ISS_State.BURST_SENT)\n        return None, None\n\n    def transmission_ended(self, irs_frame):\n        \"\"\"Handles the successful completion of the transmission.\n\n        This method is called when the transmission ends successfully. It sets\n        the session state to ENDED, logs the completion, sends session finished\n        events, transmits session statistics, and cleans up the session.\n\n        Args:\n            irs_frame: The received IRS frame.\n\n        Returns:\n            Tuple[None, None]: Returns None for both data and type_byte.\n        \"\"\"\n        # final function for sucessfully ended transmissions\n        self.session_ended = time.time()\n        self.set_state(ISS_State.ENDED)\n        self.log(f\"All data transfered! flag_final={irs_frame['flag']['FINAL']}, flag_checksum={irs_frame['flag']['CHECKSUM']}\")\n        self.ctx.event_manager.send_arq_session_finished(True, self.id, self.dxcall,True, self.state.name, statistics=self.calculate_session_statistics(self.confirmed_bytes, self.total_length))\n\n        #print(self.ctx.state_manager.p2p_connection_sessions)\n        #print(self.arq_data_type_handler.state_manager.p2p_connection_sessions)\n        session_stats = self.calculate_session_statistics(self.confirmed_bytes, self.total_length)\n        self.arq_data_type_handler.transmitted(self.type_byte, self.data, session_stats)\n\n        self.ctx.state_manager.remove_arq_iss_session(self.id)\n        self.ctx.state_manager.setARQ(False)\n        return None, None\n\n    def transmission_failed(self, irs_frame=None):\n        \"\"\"Handles transmission failures.\n\n        This method is called when a transmission fails. It sets the session\n        state to FAILED, logs the failure, sends session finished events,\n        and disables ARQ. It also notifies the ARQ data type handler about\n        the failure.\n\n        Args:\n            irs_frame (optional): The received IRS frame, if any. Defaults to None.\n\n        Returns:\n            Tuple[None, None]: Returns None for both data and type_byte.\n        \"\"\"\n        # final function for failed transmissions\n        self.session_ended = time.time()\n        self.set_state(ISS_State.FAILED)\n        self.log(\"Transmission failed!\")\n        session_stats=self.calculate_session_statistics(self.confirmed_bytes, self.total_length)\n        self.ctx.event_manager.send_arq_session_finished(True, self.id, self.dxcall,False, self.state.name, session_stats)\n\n        self.ctx.state_manager.setARQ(False)\n\n        self.arq_data_type_handler.failed(self.type_byte, self.data, statistics=self.calculate_session_statistics(self.confirmed_bytes, self.total_length))\n        return None, None\n\n    def abort_transmission(self, send_stop=False, irs_frame=None):\n        \"\"\"Starts the ARQ transmission abort sequence.\n\n        This method initiates the abort sequence, sets the session state to\n        ABORTING, sends session finished events, clears the audio output queue,\n        and optionally sends a stop frame after a delay.\n\n        Args:\n            send_stop (bool, optional): Whether to send an ARQ_STOP frame. Defaults to False.\n            irs_frame (optional): The received IRS frame, if any. Defaults to None.\n        \"\"\"\n        self.log(\"aborting transmission...\")\n        self.set_state(ISS_State.ABORTING)\n\n        self.ctx.event_manager.send_arq_session_finished(\n            True, self.id, self.dxcall, False, self.state.name, statistics=self.calculate_session_statistics(self.confirmed_bytes, self.total_length))\n\n        # clear audio out queue\n        self.ctx.rf_modem.audio_out_queue.queue.clear()\n\n        # break actual retries\n        self.event_frame_received.set()\n\n        # wait for transmit function to be ready before setting event\n        while self.ctx.state_manager.isTransmitting():\n            threading.Event().wait(0.100)\n\n        # break actual retries\n        self.event_frame_received.set()\n\n        if send_stop:\n            # sleep some time for avoiding packet collission\n            threading.Event().wait(self.TIMEOUT_STOP_ACK)\n            self.send_stop()\n\n        self.ctx.state_manager.setARQ(False)\n\n    def send_stop(self):\n        \"\"\"Sends an ARQ stop frame.\n\n        This method builds and sends an ARQ_STOP frame to the IRS, initiating\n        the termination of the ARQ session. It uses the launch_twr method\n        for transmission and retries.\n        \"\"\"\n        stop_frame = self.frame_factory.build_arq_stop(self.id)\n        self.launch_twr(stop_frame, self.TIMEOUT_STOP_ACK, self.RETRIES_STOP, mode=FREEDV_MODE.signalling)\n\n    def transmission_aborted(self, irs_frame=None):\n        \"\"\"Handles the abortion of the transmission.\n\n        This method is called when the transmission is aborted. It sets the\n        session state to ABORTED, logs the abortion, sends session finished\n        events, and disables ARQ.\n\n        Args:\n            irs_frame (optional): The received IRS frame, if any. Defaults to None.\n\n        Returns:\n            Tuple[None, None]: Returns None for both data and type_byte.\n        \"\"\"\n\n        # Only run this part, if we are not already aborted or ended the session.\n        if self.state not in [ISS_State.ABORTED, ISS_State.ENDED]:\n            self.log(\"session aborted\")\n            self.session_ended = time.time()\n            self.set_state(ISS_State.ABORTED)\n            # break actual retries\n            self.event_frame_received.set()\n\n            self.ctx.event_manager.send_arq_session_finished(\n                True, self.id, self.dxcall, False, self.state.name, statistics=self.calculate_session_statistics(self.confirmed_bytes, self.total_length))\n            #self.ctx.state_manager.remove_arq_iss_session(self.id)\n            self.ctx.state_manager.setARQ(False)\n        return None, None\n"
  },
  {
    "path": "freedata_server/audio.py",
    "content": "\"\"\"\nGather information about audio devices.\n\"\"\"\nimport multiprocessing\nimport sounddevice as sd\nimport structlog\nimport numpy as np\nimport queue\nimport helpers\nimport time\n\nlog = structlog.get_logger(\"audio\")\n\n\ndef get_audio_devices():\n    \"\"\"\n    return list of input and output audio devices in own process to avoid crashes of portaudio on raspberry pi\n\n    also uses a process data manager\n    \"\"\"\n    # we need to run this on Windows for multiprocessing support\n    # multiprocessing.freeze_support()\n    # multiprocessing.get_context(\"spawn\")\n\n    # we need to reset and initialize sounddevice before running the multiprocessing part.\n    # If we are not doing this at this early point, not all devices will be displayed\n    #sd._terminate()\n    #sd._initialize()\n\n    # log.debug(\"[AUD] get_audio_devices\")\n    with multiprocessing.Manager() as manager:\n        proxy_input_devices = manager.list()\n        proxy_output_devices = manager.list()\n        # print(multiprocessing.get_start_method())\n        proc = multiprocessing.Process(\n            target=fetch_audio_devices, args=(proxy_input_devices, proxy_output_devices)\n        )\n        proc.start()\n        proc.join(3)\n\n        # additional logging for audio devices\n        # log.debug(\"[AUD] get_audio_devices: input_devices:\", list=f\"{proxy_input_devices}\")\n        # log.debug(\"[AUD] get_audio_devices: output_devices:\", list=f\"{proxy_output_devices}\")\n        return list(proxy_input_devices), list(proxy_output_devices)\n\n\ndef device_crc(device) -> str:\n    \"\"\"Generates a CRC16 checksum for an audio device.\n\n    This function creates a unique identifier for an audio device based on its\n    name and host API. It uses a CRC16 checksum to generate a hexadecimal\n    representation of the combined device name and host API.\n\n    Args:\n        device (dict): A dictionary containing the device 'name' and 'hostapi'.\n\n    Returns:\n        str: The hexadecimal representation of the CRC16 checksum.\n    \"\"\"\n    crc_hwid = helpers.get_crc_16(bytes(f\"{device['name']}.{device['hostapi']}\", encoding=\"utf-8\"))\n    crc_hwid = crc_hwid.hex()\n    return crc_hwid\n\ndef fetch_audio_devices(input_devices, output_devices):\n    \"\"\"\n    get audio devices from portaudio\n\n    Args:\n      input_devices: proxy variable for input devices\n      output_devices: proxy variable for output devices\n\n    Returns:\n\n    \"\"\"\n    devices = sd.query_devices(device=None, kind=None)\n\n    for index, device in enumerate(devices):\n        # Use a try/except block because Windows doesn't have an audio device range\n        try:\n            name = device[\"name\"]\n            # Ignore some Flex Radio devices to make device selection simpler\n            if name.startswith(\"DAX RESERVED\") or name.startswith(\"DAX IQ\"):\n                continue\n\n            max_output_channels = device[\"max_output_channels\"]\n            max_input_channels = device[\"max_input_channels\"]\n\n        except KeyError:\n            continue\n        except Exception as err:\n            print(err)\n            max_input_channels = 0\n            max_output_channels = 0\n\n        if max_input_channels > 0:\n            hostapi_name = sd.query_hostapis(device['hostapi'])['name']\n\n            new_input_device = {\"id\": device_crc(device), \n                                \"name\": device['name'], \n                                \"api\": hostapi_name,\n                                \"native_index\":index}\n            # check if device not in device list\n            if new_input_device not in input_devices:\n                input_devices.append(new_input_device)\n\n        if max_output_channels > 0:\n            hostapi_name = sd.query_hostapis(device['hostapi'])['name']\n            new_output_device = {\"id\": device_crc(device), \n                                 \"name\": device['name'], \n                                 \"api\": hostapi_name,\n                                 \"native_index\":index}\n            # check if device not in device list\n            if new_output_device not in output_devices:\n                output_devices.append(new_output_device)\n\n    return input_devices, output_devices\n\n\ndef get_device_index_from_crc(crc, isInput: bool):\n    \"\"\"Retrieves the native device index and name from the provided CRC.\n\n    This function searches for an audio device with the given CRC and returns\n    its native index and name. It handles both input and output devices based\n    on the isInput flag.\n\n    Args:\n        crc (str): The CRC of the audio device.\n        isInput (bool): True if searching for an input device, False for an output device.\n\n    Returns:\n        tuple: A tuple containing the native device index and name, or (None, None) if not found.\n    \"\"\"\n    try:\n        in_devices = []\n        out_devices = []\n\n        fetch_audio_devices(in_devices, out_devices)\n\n        if isInput:\n            detected_devices = in_devices\n        else:\n            detected_devices = out_devices\n\n        for i, dev in enumerate(detected_devices):\n            if dev['id'] == crc:\n                return (dev['native_index'], dev['name'])\n\n    except Exception as e:\n        log.warning(f\"Audio device {crc} not detected \", devices=detected_devices, isInput=isInput)\n        return [None, None]\n\ndef test_audio_devices(input_id: str, output_id: str) -> list:\n    \"\"\"Tests the specified input and output audio devices.\n\n    This function checks the validity and settings of the given input and\n    output audio devices. It uses the device CRC to identify the devices\n    and attempts to check their settings using sounddevice.\n\n    Args:\n        input_id (str): The CRC of the input audio device.\n        output_id (str): The CRC of the output audio device.\n\n    Returns:\n        list: A list of booleans indicating the test results for input and output devices, respectively.\n    \"\"\"\n    test_result = [False, False]\n    try:\n        result = get_device_index_from_crc(input_id, True)\n        if result is None:\n            # in_dev_index, in_dev_name = None, None\n            raise ValueError(f\"[Audio-Test] Invalid input device index {input_id}.\")\n        else:\n            in_dev_index, in_dev_name = result\n            sd.check_input_settings(\n                device=in_dev_index,\n                channels=1,\n                dtype=\"int16\",\n                samplerate=48000,\n            )\n            test_result[0] = True\n    except (sd.PortAudioError, ValueError) as e:\n        log.warning(f\"[Audio-Test] Input device error ({input_id}):\", e=e)\n        test_result[0] = False\n    try:\n        result = get_device_index_from_crc(output_id, False)\n        if result is None:\n            # out_dev_index, out_dev_name = None, None\n            raise ValueError(f\"[Audio-Test] Invalid output device index {output_id}.\")\n        else:\n            out_dev_index, out_dev_name = result\n            sd.check_output_settings(\n                device=out_dev_index,\n                channels=1,\n                dtype=\"int16\",\n                samplerate=48000,\n            )\n            test_result[1] = True\n\n\n    except (sd.PortAudioError, ValueError) as e:\n        log.warning(f\"[Audio-Test] Output device error ({output_id}):\", e=e)\n        test_result[1] = False\n\n    sd._terminate()\n    sd._initialize()\n    return test_result\n\ndef set_audio_volume(datalist: np.ndarray, dB: float) -> np.ndarray:\n    \"\"\"\n    Scale values for the provided audio samples by dB.\n\n    :param datalist: Audio samples to scale\n    :type datalist: np.ndarray\n    :param dB: Decibels to scale samples, constrained to the range [-50, 50]\n    :type dB: float\n    :return: Scaled audio samples\n    :rtype: np.ndarray\n    \"\"\"\n    try:\n        dB = float(dB)\n    except ValueError as e:\n        print(f\"[MDM] Changing audio volume failed with error: {e}\")\n        dB = 0.0  # 0 dB means no change\n\n    # Clip dB value to the range [-50, 50]\n    dB = np.clip(dB, -30, 20)\n\n    # Ensure datalist is an np.ndarray\n    if not isinstance(datalist, np.ndarray):\n        print(\"[MDM] Invalid data type for datalist. Expected np.ndarray.\")\n        return datalist\n\n    # Convert dB to linear scale\n    scale_factor = 10 ** (dB / 20)\n\n    # Scale samples\n    scaled_data = datalist * scale_factor\n\n    # Clip values to int16 range and convert data type\n    return np.clip(scaled_data, -32768, 32767).astype(np.int16)\n\n\ndef normalize_audio(datalist: np.ndarray) -> np.ndarray:\n    \"\"\"\n    Normalize the audio samples so the loudest value reaches 95% of the maximum possible value for np.int16\n    :param datalist: Audio samples to normalize\n    :type datalist: np.ndarray\n    :return: Normalized audio samples, clipped to the range of int16\n    :rtype: np.ndarray\n    \"\"\"\n    if not isinstance(datalist, np.ndarray):\n        #print(\"[MDM] Invalid datalist type. Expected np.ndarray.\")\n        return datalist\n\n    # Ensure datalist is not empty\n    if datalist.size == 0:\n        #print(\"[MDM] Datalist is empty. Returning unmodified.\")\n        return datalist\n\n    # Find the maximum absolute value in the data\n    max_value = np.max(np.abs(datalist))\n\n    # If max_value is 0, return the datalist (avoid division by zero)\n    if max_value == 0:\n        #print(\"[MDM] Max value is zero. Cannot normalize. Returning unmodified.\")\n        return datalist\n\n    # Define the target max value as 95% of the maximum for np.int16\n    target_max_value = int(32767 * 0.85)\n\n    # Compute the normalization factor\n    normalization_factor = target_max_value / max_value\n\n    # Normalize the audio data\n    normalized_data = datalist * normalization_factor\n\n    # Clip to the int16 range and cast\n    normalized_data = np.clip(normalized_data, -32768, 32767).astype(np.int16)\n\n    # Debug information: normalization factor, loudest value before, and after normalization\n    loudest_before = max_value\n    loudest_after = np.max(np.abs(normalized_data))\n    # print(f\"[AUDIO] Normalization factor: {normalization_factor:.6f}, Loudest before: {loudest_before}, Loudest after: {loudest_after}\")\n\n    return normalized_data\n\n\n# Global variables to manage channel status\nCHANNEL_BUSY_DELAY = 0  # Counter for channel busy delay\nSLOT_DELAY = [0] * 5  # Counters for delays in each slot\n\n# Constants for delay logic\nDELAY_INCREMENT = 2  # Amount to increase delay\nMAX_DELAY = 200  # Maximum allowable delay\n\n# Predefined frequency ranges (slots) for FFT analysis\n# These ranges are based on an FFT length of 800 samples\nSLOT_RANGES = [\n    (0, 65),  # Slot 1: Frequency range from 0 to 65\n    (65, 120),  # Slot 2: Frequency range from 65 to 120\n    (120, 176),  # Slot 3: Frequency range from 120 to 176\n    (176, 231),  # Slot 4: Frequency range from 176 to 231\n    (231, 315)  # Slot 5: Frequency range from 231 to 315\n]\n\n# Initialize a queue to store FFT results for visualization\nfft_queue = queue.Queue()\n\n# Variable to track the time of the last RMS calculation\nlast_rms_time = 0\n\ndef prepare_data_for_fft(data, target_length_samples=800):\n    \"\"\"\n    Prepare the input data for FFT by ensuring it meets the required length.\n\n    Parameters:\n    - data: numpy.ndarray of type np.int16, representing the audio data.\n    - target_length_samples: int, the desired length of the data in samples.\n\n    Returns:\n    - numpy.ndarray of type np.int16 with a length of target_length_samples.\n    \"\"\"\n    # Check if the input data type is np.int16\n    if data.dtype != np.int16:\n        raise ValueError(\"Audio data must be of type np.int16\")\n\n    # If data is shorter than the target length, pad with zeros\n    if len(data) < target_length_samples:\n        return np.pad(data, (0, target_length_samples - len(data)), 'constant', constant_values=(0,))\n    else:\n        # If data is longer or equal to the target length, truncate it\n        return data[:target_length_samples]\n\ndef calculate_rms_dbfs(data):\n    \"\"\"\n    Calculate the Root Mean Square (RMS) value of the audio data and\n    convert it to dBFS (decibels relative to full scale).\n\n    Parameters:\n    - data: numpy.ndarray of type np.int16, representing the audio data.\n\n    Returns:\n    - float: RMS value in dBFS. Returns -100 if the RMS value is 0.\n    \"\"\"\n    # Compute the RMS value using int32 to prevent overflow\n    rms = np.sqrt(np.mean(np.square(data, dtype=np.int32), dtype=np.float64))\n    # Convert the RMS value to dBFS\n    return 20 * np.log10(rms / 32768) if rms > 0 else -100\n\n\ndef calculate_fft(data, fft_queue, states) -> None:\n    \"\"\"Calculates the FFT of audio data and updates channel busy status.\n\n    This function performs FFT on the provided audio data, identifies\n    significant frequency components, and updates the channel busy status\n    based on activity within predefined frequency slots. It also calculates\n    and updates the RMS level of the audio data.\n\n    Args:\n        data (np.ndarray): The audio data as a NumPy array.\n        fft_queue (queue.Queue): A queue to store FFT results for visualization.\n        states (StateManager): The state manager object to update channel busy status.\n    \"\"\"\n    global CHANNEL_BUSY_DELAY, last_rms_time\n\n    try:\n        # Prepare the data for FFT processing by ensuring it meets the target length\n        data = prepare_data_for_fft(data)\n\n        # Compute the real FFT of the audio data\n        fftarray = np.fft.rfft(data)\n\n        # Calculate the amplitude spectrum in decibels (dB)\n        dfft = 10.0 * np.log10(np.abs(fftarray) + 1e-12)  # Adding a small constant to avoid log(0)\n\n        # Compute the average amplitude of the spectrum\n        avg_amplitude = np.mean(dfft)\n\n        # Set the threshold for significant frequency components; adjust the offset as needed\n        threshold = avg_amplitude + 13\n\n        # Identify frequency components that exceed the threshold\n        significant_frequencies = dfft > threshold\n\n        # Check if the system is neither transmitting nor receiving\n        not_transmitting = not states.isTransmitting()\n        not_receiving = not states.is_receiving_codec2_signal()\n\n        if not_transmitting:\n            # Highlight significant frequencies in the dfft array\n            dfft[significant_frequencies] = 100\n\n            # Get the current time\n            current_time = time.time()\n\n            # Update the RMS value every second\n            if current_time - last_rms_time >= 1.0:\n                # Calculate the RMS value in dBFS\n                audio_dbfs = calculate_rms_dbfs(data)\n\n                # Update the state with the new RMS value\n                states.set(\"audio_dbfs\", audio_dbfs)\n\n                # Update the last RMS calculation time\n                last_rms_time = current_time\n\n        # Convert the dfft array to integers for further processing\n        dfft = dfft.astype(int)\n\n        # Convert the dfft array to a list for queue insertion\n        dfftlist = dfft.tolist()\n\n        # Initialize the slot busy status list\n        slotbusy = [False] * len(SLOT_RANGES)\n\n        # Flag to determine if additional delay should be added\n        addDelay = False\n\n        # Iterate over each slot range to detect activity\n        for slot, (range_start, range_end) in enumerate(SLOT_RANGES):\n            # Check if any frequency in the slot exceeds the threshold\n            if np.any(significant_frequencies[range_start:range_end]) and not_transmitting and not_receiving:\n                # Mark that additional delay should be added\n                addDelay = True\n\n                # Set the current slot as busy\n                slotbusy[slot] = True\n\n                # Increment the slot delay, ensuring it does not exceed the maximum\n                SLOT_DELAY[slot] = min(SLOT_DELAY[slot] + DELAY_INCREMENT, MAX_DELAY)\n            else:\n                # Decrement the slot delay, ensuring it does not go below zero\n                SLOT_DELAY[slot] = max(SLOT_DELAY[slot] - 1, 0)\n\n                # Set the slot busy status based on the current delay\n                slotbusy[slot] = SLOT_DELAY[slot] > 0\n\n        # Update the state with the current slot busy statuses\n        states.set_channel_slot_busy(slotbusy)\n\n        if addDelay:\n            # Set the channel busy condition due to traffic\n            states.set_channel_busy_condition_traffic(True)\n\n            # Increment the channel busy delay, ensuring it does not exceed the maximum\n            CHANNEL_BUSY_DELAY = min(CHANNEL_BUSY_DELAY + DELAY_INCREMENT, MAX_DELAY)\n        else:\n            # Decrement the channel busy delay, ensuring it does not go below zero\n            CHANNEL_BUSY_DELAY = max(CHANNEL_BUSY_DELAY - 1, 0)\n\n            # If the channel busy delay has reset, clear the busy condition\n            if CHANNEL_BUSY_DELAY == 0:\n                states.set_channel_busy_condition_traffic(False)\n\n        # Clear any existing items in the FFT queue\n        while not fft_queue.empty():\n            fft_queue.get()\n\n        # Add the processed dfft list to the FFT queue, limited to the first 315 elements\n        fft_queue.put(dfftlist[:315])\n\n    except Exception as err:\n        # Log any exceptions that occur during the FFT calculation\n        print(f\"[MDM] calculate_fft: Exception: {err}\")\n\n\ndef terminate():\n    \"\"\"Terminates the audio instance.\n\n    This function terminates the sounddevice instance if it's initialized,\n    releasing audio resources and preventing potential issues during shutdown.\n    \"\"\"\n    log.warning(\"[SHUTDOWN] terminating audio instance...\")\n    if sd._initialized:\n        sd._terminate()\n"
  },
  {
    "path": "freedata_server/audio_buffer.py",
    "content": "import numpy as np\nimport threading\nimport structlog\nlog = structlog.get_logger(\"buffer\")\n\nclass CircularBuffer:\n    \"\"\"A circular buffer for storing audio samples.\n\n    The buffer is implemented as a NumPy array of a fixed size.  The push()\n    method adds samples to the buffer, and the pop() method removes samples\n    from the buffer.  Both methods block if the buffer is full or empty,\n    respectively.\n    \"\"\"\n    def __init__(self, size):\n        self.size = size\n        self.buffer = np.zeros(size, dtype=np.int16)\n        self.head = 0  # Read pointer.\n        self.tail = 0  # Write pointer.\n        self.nbuffer = 0  # Number of samples stored.\n        self.lock = threading.Lock()\n        self.cond = threading.Condition(self.lock)\n        log.debug(\"[BUF] Creating ring buffer\", size=size)\n\n    def push(self, samples):\n        \"\"\"Push samples onto the buffer.\n\n        Args:\n            samples: The samples to push onto the buffer.\n\n        Blocks until there is enough space in the buffer.\n        \"\"\"\n        with self.cond:\n            samples_len = len(samples)\n            # Block until there is room.\n            while self.nbuffer + samples_len > self.size:\n                self.cond.wait()\n            end_space = self.size - self.tail\n            if samples_len <= end_space:\n                self.buffer[self.tail:self.tail + samples_len] = samples\n            else:\n                self.buffer[self.tail:] = samples[:end_space]\n                self.buffer[:samples_len - end_space] = samples[end_space:]\n            self.tail = (self.tail + samples_len) % self.size\n            self.nbuffer += samples_len\n            self.cond.notify_all()\n\n    def pop(self, n):\n        with self.cond:\n            while self.nbuffer < n:\n                self.cond.wait()\n            end_space = self.size - self.head\n            if n <= end_space:\n                result = self.buffer[self.head:self.head + n].copy()\n            else:\n                result = np.concatenate((\n                    self.buffer[self.head:].copy(),\n                    self.buffer[:n - end_space].copy()\n                ))\n            # Update head and count.\n            self.head = (self.head + n) % self.size\n            self.nbuffer -= n\n            if self.nbuffer > 0:\n                # Reassemble the valid data contiguously at the start.\n                if self.head + self.nbuffer <= self.size:\n                    self.buffer[:self.nbuffer] = self.buffer[self.head:self.head + self.nbuffer]\n                else:\n                    part1 = self.size - self.head\n                    self.buffer[:part1] = self.buffer[self.head:]\n                    self.buffer[part1:self.nbuffer] = self.buffer[:self.nbuffer - part1]\n                self.head = 0\n                self.tail = self.nbuffer\n            self.cond.notify_all()\n            return result\n"
  },
  {
    "path": "freedata_server/codec2.py",
    "content": "\"\"\"\nPython interface to the C-language codec2 library.\n\"\"\"\n# -*- coding: utf-8 -*-\n\n# pylint: disable=invalid-name, line-too-long, c-extension-no-member\n# pylint: disable=import-outside-toplevel, attribute-defined-outside-init\n\nimport ctypes\nfrom ctypes import *\nimport hashlib\nimport glob\nimport os\nimport sys\nfrom enum import Enum\nfrom threading import Lock\nimport codec2_filter_coeff\nimport numpy as np\nimport structlog\n\nlog = structlog.get_logger(\"codec2\")\n\n\n# Enum for codec2 modes\nclass FREEDV_MODE(Enum):\n    \"\"\"\n    Enumeration for codec2 modes and names\n    \"\"\"\n    signalling = 19\n    signalling_ack = 20\n    datac0 = 14\n    datac1 = 10\n    datac3 = 12\n    datac4 = 18\n    datac13 = 19\n    datac14 = 20\n    data_ofdm_200 = 21200\n    data_ofdm_250 = 21250\n    data_ofdm_500 = 21500\n    data_ofdm_1700 = 211700\n    data_ofdm_2438 = 2124381\n    data_vhf_1 = 201\n\n    #data_qam_2438 = 2124382\n    #qam16c2 = 22\n\nclass FREEDV_MODE_USED_SLOTS(Enum):\n    \"\"\"\n    Enumeration for codec2 used slots\n    \"\"\"\n    sig0 = [False, False, True, False, False]\n    sig1 = [False, False, True, False, False]\n    datac0 = [False, False, True, False, False]\n    datac1 = [False, True, True, True, False]\n    datac3 = [False, False, True, False, False]\n    datac4 = [False, False, True, False, False]\n    datac13 = [False, False, True, False, False]\n    datac14 = [False, False, True, False, False]\n    data_ofdm_200 = [False, False, True, False, False]\n    data_ofdm_250 = [False, False, True, False, False]\n    data_ofdm_500 = [False, False, True, False, False]\n    data_ofdm_1700 = [False, True, True, True, False]\n    data_ofdm_2438 = [True, True, True, True, True]\n    data_qam_2438 = [True, True, True, True, True]\n    qam16c2 = [True, True, True, True, True]\n\n# Function for returning the mode value\ndef freedv_get_mode_value_by_name(mode: str) -> int:\n    \"\"\"\n    Get the codec2 mode by entering its string\n\n    Args:\n        mode: String representation of the codec2 mode.\n\n    Returns:\n        int\n    \"\"\"\n    return FREEDV_MODE[mode.lower()].value\n\n\n# Function for returning the mode name\ndef freedv_get_mode_name_by_value(mode: int) -> str:\n    \"\"\"\n    Get the codec2 mode name as string\n    Args:\n        mode: Integer value of the codec2 mode.\n\n    Returns:\n        string\n    \"\"\"\n    return FREEDV_MODE(mode).name\n\n# Get the directory of the current script file\nscript_dir = os.path.dirname(os.path.abspath(__file__))\nsys.path.append(script_dir)\n\n# Use script_dir to construct the paths for file search\nif sys.platform == \"linux\":\n    files = glob.glob(os.path.join(script_dir, \"**/*libcodec2*\"), recursive=True)\n    #files.append(os.path.join(script_dir, \"libcodec2.so\"))\nelif sys.platform == \"darwin\":\n    if hasattr(sys, \"_MEIPASS\"):\n        files = glob.glob(os.path.join(getattr(sys, \"_MEIPASS\"), '**/*libcodec2*'), recursive=True)\n    else:\n        files = glob.glob(os.path.join(script_dir, \"**/*libcodec2*.dylib\"), recursive=True)\nelif sys.platform in [\"win32\", \"win64\"]:\n    files = glob.glob(os.path.join(script_dir, \"**\\\\*libcodec2*.dll\"), recursive=True)\nelse:\n    files = []\napi = None\n\nfor file in files:\n    try:\n        api = ctypes.CDLL(file)\n        log.info(\"[C2 ] Libcodec2 loaded\", path=file)\n        break\n    except OSError as err:\n        pass\n        #log.info(\"[C2 ] Error:  Libcodec2 found but not loaded\", path=file, e=err)\n\n# Quit module if codec2 cant be loaded\nif api is None or \"api\" not in locals():\n    log.critical(\"[C2 ] Error:  Libcodec2 not loaded - Exiting\")\n    sys.exit(1)\n\n#log.info(\"[C2 ] Libcodec2 loaded...\", path=file)\n# ctypes function init\n\n# api.freedv_set_tuning_range.restype = ctypes.c_int\n# api.freedv_set_tuning_range.argype = [ctypes.c_void_p, ctypes.c_float, ctypes.c_float]\n\napi.freedv_open.argype = [ctypes.c_int]  # type: ignore\napi.freedv_open.restype = ctypes.c_void_p\n\napi.freedv_set_sync.argype = [ctypes.c_void_p, ctypes.c_int]  # type: ignore\napi.freedv_set_sync.restype = ctypes.c_void_p\n\napi.freedv_open_advanced.argtype = [ctypes.c_int, ctypes.c_void_p]  # type: ignore\napi.freedv_open_advanced.restype = ctypes.c_void_p\n\napi.freedv_get_bits_per_modem_frame.argtype = [ctypes.c_void_p]  # type: ignore\napi.freedv_get_bits_per_modem_frame.restype = ctypes.c_int\n\napi.freedv_get_modem_extended_stats.argtype = [ctypes.c_void_p, ctypes.c_void_p]\napi.freedv_get_modem_extended_stats.restype = ctypes.c_int\n\napi.freedv_nin.argtype = [ctypes.c_void_p]  # type: ignore\napi.freedv_nin.restype = ctypes.c_int\n\napi.freedv_rawdatarx.argtype = [ctypes.c_void_p, ctypes.c_char_p, ctypes.c_char_p]  # type: ignore\napi.freedv_rawdatarx.restype = ctypes.c_int\n\napi.freedv_rawdatatx.argtype = [ctypes.c_void_p, ctypes.c_char_p, ctypes.c_char_p]  # type: ignore\napi.freedv_rawdatatx.restype = ctypes.c_int\n\napi.freedv_rawdatapostambletx.argtype = [ctypes.c_void_p, ctypes.c_char_p, ctypes.c_char_p]  # type: ignore\napi.freedv_rawdatapostambletx.restype = ctypes.c_int\n\napi.freedv_rawdatapreambletx.argtype = [ctypes.c_void_p, ctypes.c_char_p, ctypes.c_char_p]  # type: ignore\napi.freedv_rawdatapreambletx.restype = ctypes.c_int\n\napi.freedv_get_n_max_modem_samples.argtype = [ctypes.c_void_p]  # type: ignore\napi.freedv_get_n_max_modem_samples.restype = ctypes.c_int\n\napi.freedv_set_frames_per_burst.argtype = [ctypes.c_void_p, ctypes.c_int]  # type: ignore\napi.freedv_set_frames_per_burst.restype = ctypes.c_void_p\n\napi.freedv_get_rx_status.argtype = [ctypes.c_void_p]  # type: ignore\napi.freedv_get_rx_status.restype = ctypes.c_int\n\napi.freedv_get_modem_stats.argtype = [ctypes.c_void_p, ctypes.c_void_p, ctypes.c_void_p]  # type: ignore\napi.freedv_get_modem_stats.restype = ctypes.c_int\n\napi.freedv_get_n_tx_postamble_modem_samples.argtype = [ctypes.c_void_p]  # type: ignore\napi.freedv_get_n_tx_postamble_modem_samples.restype = ctypes.c_int\n\napi.freedv_get_n_tx_preamble_modem_samples.argtype = [ctypes.c_void_p]  # type: ignore\napi.freedv_get_n_tx_preamble_modem_samples.restype = ctypes.c_int\n\napi.freedv_get_n_tx_modem_samples.argtype = [ctypes.c_void_p]  # type: ignore\napi.freedv_get_n_tx_modem_samples.restype = ctypes.c_int\n\napi.freedv_get_n_max_modem_samples.argtype = [ctypes.c_void_p]  # type: ignore\napi.freedv_get_n_max_modem_samples.restype = ctypes.c_int\n\napi.freedv_ofdm_print_info.argtype = [ctypes.c_void_p]  # type: ignore\napi.freedv_ofdm_print_info.restype = ctypes.c_void_p\n\napi.FREEDV_FS_8000 = 8000  # type: ignore\n\n\n# ------- MODEM STATS STRUCTURES\nMODEM_STATS_NC_MAX = 50 + 1 * 2\nMODEM_STATS_NR_MAX = 320 * 2\nMODEM_STATS_ET_MAX = 8\nMODEM_STATS_EYE_IND_MAX = 160\nMODEM_STATS_NSPEC = 512\nMODEM_STATS_MAX_F_HZ = 4000\nMODEM_STATS_MAX_F_EST = 4\n\n\nclass MODEMSTATS(ctypes.Structure):\n    \"\"\"Modem statistics structure\"\"\"\n\n    _fields_ = [\n        (\"Nc\", ctypes.c_int),\n        (\"snr_est\", ctypes.c_float),\n        (\"rx_symbols\", (ctypes.c_float * MODEM_STATS_NR_MAX) * MODEM_STATS_NC_MAX),\n        (\"nr\", ctypes.c_int),\n        (\"sync\", ctypes.c_int),\n        (\"foff\", ctypes.c_float),\n        (\"rx_timing\", ctypes.c_float),\n        (\"clock_offset\", ctypes.c_float),\n        (\"sync_metric\", ctypes.c_float),\n        (\"pre\", ctypes.c_int),\n        (\"post\", ctypes.c_int),\n        (\"uw_fails\", ctypes.c_int),\n        (\"rx_eye\", (ctypes.c_float * MODEM_STATS_ET_MAX) * MODEM_STATS_EYE_IND_MAX),\n        (\"neyetr\", ctypes.c_int),  # How many eye traces are plotted\n        (\"neyesamp\", ctypes.c_int),  # How many samples in the eye diagram\n        (\"f_est\", (ctypes.c_float * MODEM_STATS_MAX_F_EST)),\n        (\"fft_buf\", (ctypes.c_float * MODEM_STATS_NSPEC * 2)),\n        (\"fft_cfg\", ctypes.c_void_p)\n    ]\n\n\n# Return code flags for freedv_get_rx_status() function\napi.FREEDV_RX_TRIAL_SYNC = 0x1  # type: ignore # demodulator has trial sync\napi.FREEDV_RX_SYNC = 0x2  # type: ignore # demodulator has sync\napi.FREEDV_RX_BITS = 0x4  # type: ignore # data bits have been returned\napi.FREEDV_RX_BIT_ERRORS = 0x8  # type: ignore # FEC may not have corrected all bit errors (not all parity checks OK)\n\napi.rx_sync_flags_to_text = [  # type: ignore\n    \"----\",\n    \"---T\",\n    \"--S-\",\n    \"--ST\",\n    \"-B--\",\n    \"-B-T\",\n    \"-BS-\",\n    \"-BST\",\n    \"E---\",\n    \"E--T\",\n    \"E-S-\",\n    \"E-ST\",\n    \"EB--\",\n    \"EB-T\",\n    \"EBS-\",\n    \"EBST\",\n]\n\n# Audio buffer ---------------------------------------------------------\nclass audio_buffer:\n    \"\"\"\n    Thread-safe audio buffer, which fits the needs of codec2\n\n    made by David Rowe, VK5DGR\n    \"\"\"\n\n    # A buffer of int16 samples, using a fixed length numpy array self.buffer for storage\n    # self.nbuffer is the current number of samples in the buffer\n    def __init__(self, size):\n        log.debug(\"[C2 ] Creating audio buffer\", size=size)\n        self.size = size\n        self.buffer = np.zeros(size, dtype=np.int16)\n        self.nbuffer = 0\n        self.mutex = Lock()\n\n    def push(self, samples):\n        \"\"\"\n        Push new data to buffer\n\n        Args:\n            samples:\n\n        Returns:\n            Nothing\n        \"\"\"\n        self.mutex.acquire()\n        # Add samples at the end of the buffer\n        assert self.nbuffer + len(samples) <= self.size\n        self.buffer[self.nbuffer : self.nbuffer + len(samples)] = samples\n        self.nbuffer += len(samples)\n        self.mutex.release()\n\n    def pop(self, size):\n        \"\"\"\n        get data from buffer in size of NIN\n        Args:\n          size:\n\n        Returns:\n            Nothing\n        \"\"\"\n        self.mutex.acquire()\n        # Remove samples from the start of the buffer\n        self.nbuffer -= size\n        self.buffer[: self.nbuffer] = self.buffer[size : size + self.nbuffer]\n        assert self.nbuffer >= 0\n        self.mutex.release()\n\n\n\n\n# Resampler ---------------------------------------------------------\n\n# Oversampling rate\napi.FDMDV_OS_48 = 6  # type: ignore\n# Number of oversampling taps at 48kHz\napi.FDMDV_OS_TAPS_48K = 48  # type: ignore\n# Number of oversampling filter taps at 8kHz\napi.FDMDV_OS_TAPS_48_8K = api.FDMDV_OS_TAPS_48K // api.FDMDV_OS_48  # type: ignore\napi.fdmdv_8_to_48_short.argtype = [ctypes.c_void_p, ctypes.c_void_p, ctypes.c_int]  # type: ignore\napi.fdmdv_48_to_8_short.argtype = [ctypes.c_void_p, ctypes.c_void_p, ctypes.c_int]  # type: ignore\n\n\nclass resampler:\n    \"\"\"\n    Re-sampler class\n    \"\"\"\n\n    # Re-sample an array of variable length, we just store the filter memories here\n    MEM8 = api.FDMDV_OS_TAPS_48_8K\n    MEM48 = api.FDMDV_OS_TAPS_48K\n\n    def __init__(self):\n        log.debug(\"[C2 ] Create 48<->8 kHz resampler\")\n        self.filter_mem8 = np.zeros(self.MEM8, dtype=np.int16)\n        self.filter_mem48 = np.zeros(self.MEM48)\n\n    def resample48_to_8(self, in48):\n        \"\"\"\n        Audio resampler integration from codec2\n        Downsample audio from 48000Hz to 8000Hz\n        Args:\n            in48: input data as np.int16\n\n        Returns:\n            Downsampled 8000Hz data as np.int16\n        \"\"\"\n        assert in48.dtype == np.int16\n        # Length of input vector must be an integer multiple of api.FDMDV_OS_48\n        assert len(in48) % api.FDMDV_OS_48 == 0  # type: ignore\n\n        # Concatenate filter memory and input samples\n        in48_mem = np.zeros(self.MEM48 + len(in48), dtype=np.int16)\n        in48_mem[: self.MEM48] = self.filter_mem48\n        in48_mem[self.MEM48 :] = in48\n\n        # In C: pin48=&in48_mem[MEM48]\n        pin48 = ctypes.byref(np.ctypeslib.as_ctypes(in48_mem), 2 * self.MEM48)\n        n8 = int(len(in48) / api.FDMDV_OS_48)  # type: ignore\n        out8 = np.zeros(n8, dtype=np.int16)\n        api.fdmdv_48_to_8_short(out8.ctypes, pin48, n8)  # type: ignore\n\n        # Store memory for next time\n        self.filter_mem48 = in48_mem[: self.MEM48]\n\n        return out8\n\n    def resample8_to_48(self, in8):\n        \"\"\"\n        Audio resampler integration from codec2\n        Re-sample audio from 8000Hz to 48000Hz\n        Args:\n            in8: input data as np.int16\n\n        Returns:\n            48000Hz audio as np.int16\n        \"\"\"\n        assert in8.dtype == np.int16\n\n        # Concatenate filter memory and input samples\n        in8_mem = np.zeros(self.MEM8 + len(in8), dtype=np.int16)\n        in8_mem[: self.MEM8] = self.filter_mem8\n        in8_mem[self.MEM8 :] = in8\n\n        # In C: pin8=&in8_mem[MEM8]\n        pin8 = ctypes.byref(np.ctypeslib.as_ctypes(in8_mem), 2 * self.MEM8)\n        out48 = np.zeros(api.FDMDV_OS_48 * len(in8), dtype=np.int16)  # type: ignore\n        api.fdmdv_8_to_48_short(out48.ctypes, pin8, len(in8))  # type: ignore\n\n        # Store memory for next time\n        self.filter_mem8 = in8_mem[: self.MEM8]\n\n        return out48\n\ndef open_instance(mode: int) -> ctypes.c_void_p:\n    data_custom = 21\n    if mode in [FREEDV_MODE.data_ofdm_200.value, FREEDV_MODE.data_ofdm_250.value, FREEDV_MODE.data_ofdm_500.value, FREEDV_MODE.data_ofdm_1700.value, FREEDV_MODE.data_ofdm_2438.value]:\n    #if mode in [FREEDV_MODE.data_ofdm_500.value, FREEDV_MODE.data_ofdm_2438.value, FREEDV_MODE.data_qam_2438]:\n        custom_params = ofdm_configurations[mode]\n        return ctypes.cast(\n                    api.freedv_open_advanced(\n                        data_custom,\n                        ctypes.byref(custom_params),\n                    ),\n                    ctypes.c_void_p,\n                )\n\n    elif mode in [FREEDV_MODE.data_vhf_1.value]:\n        fsk_custom = 9\n        custom_params = fsk_configurations[mode]\n        return ctypes.cast(\n            api.freedv_open_advanced(\n                fsk_custom,\n                ctypes.byref(custom_params),\n            ),\n            ctypes.c_void_p,\n        )\n    else:\n        if mode not in [data_custom]:\n            return ctypes.cast(api.freedv_open(mode), ctypes.c_void_p)\n\n\ndef get_bytes_per_frame(mode: int) -> int:\n    \"\"\"\n    Provide bytes per frame information for accessing from data handler\n\n    :param mode: Codec2 mode to query\n    :type mode: int or str\n    :return: Bytes per frame of the supplied codec2 data mode\n    :rtype: int\n    \"\"\"\n    freedv = open_instance(mode)\n    # TODO add close session\n    # get number of bytes per frame for mode\n    return int(api.freedv_get_bits_per_modem_frame(freedv) / 8)\n\n\nMAX_UW_BITS = 64#192\n\nclass OFDM_CONFIG(ctypes.Structure):\n    _fields_ = [\n        (\"tx_centre\", ctypes.c_float),  # TX Centre Audio Frequency\n        (\"rx_centre\", ctypes.c_float),  # RX Centre Audio Frequency\n        (\"fs\", ctypes.c_float),  # Sample Frequency\n        (\"rs\", ctypes.c_float),  # Symbol Rate\n        (\"ts\", ctypes.c_float),  # Symbol duration\n        (\"tcp\", ctypes.c_float),  # Cyclic Prefix duration\n        (\"timing_mx_thresh\", ctypes.c_float),  # Threshold for timing metrics\n        (\"nc\", ctypes.c_int),  # Number of carriers\n        (\"ns\", ctypes.c_int),  # Number of Symbol frames\n        (\"np\", ctypes.c_int),  # Number of freedata_server frames per packet\n        (\"bps\", ctypes.c_int),  # Bits per Symbol\n        (\"txtbits\", ctypes.c_int),  # Number of auxiliary data bits\n        (\"nuwbits\", ctypes.c_int),  # Number of unique word bits\n        (\"bad_uw_errors\", ctypes.c_int),  # Threshold for bad unique word detection\n        (\"ftwindowwidth\", ctypes.c_int),  # Filter window width\n        (\"edge_pilots\", ctypes.c_int),  # Edge pilots configuration\n        (\"state_machine\", ctypes.c_char_p),  # Name of sync state machine used\n        (\"codename\", ctypes.c_char_p),  # LDPC codename\n        (\"tx_uw\", ctypes.c_uint8 * MAX_UW_BITS),  # User defined unique word\n        (\"amp_est_mode\", ctypes.c_int),  # Amplitude estimator algorithm mode\n        (\"tx_bpf_en\", ctypes.c_bool),  # TX BPF enable flag\n        (\"rx_bpf_en\", ctypes.c_bool),  # RX BPF enable flag\n        (\"tx_bpf_proto\", ctypes.POINTER(ctypes.c_float)),  # low pass prototype for complex BPF\n        (\"tx_bpf_proto_n\", ctypes.c_int),  # number of taps in low pass prototype\n        (\"foff_limiter\", ctypes.c_bool),  # Frequency offset limiter enable flag\n        (\"amp_scale\", ctypes.c_float),  # Amplitude scale factor\n        (\"clip_gain1\", ctypes.c_float),  # Pre-clipping gain\n        (\"clip_gain2\", ctypes.c_float),  # Post-clipping gain\n        (\"clip_en\", ctypes.c_bool),  # Clipping enable flag\n        (\"mode\", ctypes.c_char * 16),  # OFDM mode in string form\n        (\"data_mode\", ctypes.c_char_p),  # Data mode (\"streaming\", \"burst\", etc.)\n        (\"fmin\", ctypes.c_float),  # Minimum frequency for tuning range\n        (\"fmax\", ctypes.c_float),  # Maximum frequency for tuning range\n\n    ]\n\nclass FREEDV_ADVANCED(ctypes.Structure):\n    \"\"\"Advanced structure for fsk and ofdm modes\"\"\"\n    _fields_ = [\n        (\"interleave_frames\", ctypes.c_int),\n        (\"M\", ctypes.c_int),\n        (\"Rs\", ctypes.c_int),\n        (\"Fs\", ctypes.c_int),\n        (\"first_tone\", ctypes.c_int),\n        (\"tone_spacing\", ctypes.c_int),\n        (\"codename\", ctypes.c_char_p),\n        (\"config\", ctypes.POINTER(OFDM_CONFIG))\n    ]\n\nclass FREEDV_ADVANCED_FSK(ctypes.Structure):\n    \"\"\"Advanced structure for fsk and ofdm modes\"\"\"\n    _fields_ = [\n        (\"interleave_frames\", ctypes.c_int),\n        (\"M\", ctypes.c_int),\n        (\"Rs\", ctypes.c_int),\n        (\"Fs\", ctypes.c_int),\n        (\"first_tone\", ctypes.c_int),\n        (\"tone_spacing\", ctypes.c_int),\n        (\"codename\", ctypes.c_char_p),\n    ]\n\napi.freedv_open_advanced.argtypes = [ctypes.c_int, ctypes.POINTER(FREEDV_ADVANCED)]\napi.freedv_open_advanced.restype = ctypes.c_void_p\n\ndef create_default_ofdm_config():\n\n    ofdm_default_config = OFDM_CONFIG(\n        tx_centre=1500.0,\n        rx_centre=1500.0,\n        fs=8000.0,\n        rs=62.5,\n        ts=0.016,\n        tcp=0.006,\n        timing_mx_thresh=0.10,\n        nc=9,\n        ns=5,\n        np=29,\n        bps=2,\n        txtbits=0,\n        nuwbits=40,\n        bad_uw_errors=10,\n        ftwindowwidth=80,\n        edge_pilots=False,\n        state_machine=\"data\".encode('utf-8'),\n        codename=\"H_1024_2048_4f\".encode('utf-8'),\n        tx_uw=(c_uint8 * MAX_UW_BITS)(*([0] * MAX_UW_BITS)),\n        amp_est_mode=1,\n        tx_bpf_en=False,\n        rx_bpf_en=False,\n        tx_bpf_proto=codec2_filter_coeff.testFilter,\n        tx_bpf_proto_n=int(ctypes.sizeof(codec2_filter_coeff.testFilter) / ctypes.sizeof(ctypes.c_float)),\n        foff_limiter=False,\n        amp_scale=300E3,\n        clip_gain1=2.2,\n        clip_gain2=0.8,\n        clip_en=False,\n        mode=\"CUSTOM\".encode('utf-8'),\n        data_mode=\"streaming\".encode('utf-8'),\n        fmin=-50.0,\n        fmax=50.0,\n    )\n\n    return FREEDV_ADVANCED(\n        interleave_frames = 0,\n        M = 2,\n        Rs = 100,\n        Fs = 8000,\n        first_tone = 1000,\n        tone_spacing = 200,\n        codename = \"H_256_512_4\".encode(\"utf-8\"),\n        config = ctypes.pointer(ofdm_default_config),\n    )\n\n\ndef create_tx_uw(nuwbits, uw_sequence):\n    \"\"\"\n    Creates a tx_uw ctypes array filled with the uw_sequence up to nuwbits.\n    If uw_sequence is shorter than nuwbits, the rest of the array is filled with zeros.\n\n    :param nuwbits: The number of bits for the tx_uw array, should not exceed MAX_UW_BITS.\n    :param uw_sequence: List of integers representing the unique word sequence.\n    :return: A ctypes array representing the tx_uw.\n    \"\"\"\n    # Ensure nuwbits does not exceed MAX_UW_BITS\n    if nuwbits > MAX_UW_BITS:\n        raise ValueError(f\"nuwbits exceeds MAX_UW_BITS: {MAX_UW_BITS}\")\n\n    tx_uw_array = (ctypes.c_uint8 * MAX_UW_BITS)(*([0] * MAX_UW_BITS))\n    for i in range(min(len(uw_sequence), MAX_UW_BITS)):\n        tx_uw_array[i] = uw_sequence[i]\n    return tx_uw_array\n\n\ndef create_default_fsk_config():\n    return FREEDV_ADVANCED(\n            interleave_frames = 0,\n            M = 2,\n            Rs = 100,\n            Fs = 8000,\n            first_tone = 1000,\n            tone_spacing = 200,\n            codename = \"H_256_512_4\".encode(\"utf-8\"),\n            config = None\n        )\n\ndef get_centered_first_tone(config, center=1500):\n    \"\"\"\n    Calculate and return the first tone frequency so that the set of tones\n    is centered at the given center frequency.\n\n    The tones are assumed to be spaced equally based on config.tone_spacing,\n    and config.M is the total number of tones.\n\n    Args:\n        config: A configuration object with the following attributes:\n            - M (int): Total number of tones.\n            - tone_spacing (float): Spacing between consecutive tones.\n        center (float): Desired center frequency (default is 1500 Hz).\n\n    Returns:\n        float: The computed value for the first tone.\n    \"\"\"\n    return int(center - ((config.M - 1) * config.tone_spacing) // 2)\n\n\ndata_vhf_1_config = create_default_fsk_config()\ndata_vhf_1_config.interleave_frames = 1\ndata_vhf_1_config.M = 4\ndata_vhf_1_config.Rs = 200\ndata_vhf_1_config.tone_spacing = 400\ndata_vhf_1_config.codename = \"H_256_512_4\".encode(\"utf-8\")\ndata_vhf_1_config.first_tone = get_centered_first_tone(data_vhf_1_config)\n\n# ---------------- OFDM 500 Hz Bandwidth ---------------#\n\n# DATAC13 # OFDM 200\ndata_ofdm_200_config = create_default_ofdm_config()\ndata_ofdm_200_config.config.contents.ns = 5\ndata_ofdm_200_config.config.contents.np = 18\ndata_ofdm_200_config.config.contents.tcp = 0.006\ndata_ofdm_200_config.config.contents.ts = 0.016\ndata_ofdm_200_config.config.contents.rs = 1.0 / data_ofdm_200_config.config.contents.ts\ndata_ofdm_200_config.config.contents.nc = 3\ndata_ofdm_200_config.config.contents.timing_mx_thresh = 0.45\ndata_ofdm_200_config.config.contents.bad_uw_errors = 18\ndata_ofdm_200_config.config.contents.codename = \"H_256_512_4\".encode('utf-8')\ndata_ofdm_200_config.config.contents.amp_scale = 2.5*300E3\ndata_ofdm_200_config.config.contents.nuwbits = 48\ndata_ofdm_200_config.config.contents.tx_uw = create_tx_uw(data_ofdm_200_config.config.contents.nuwbits, [1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0])\ndata_ofdm_200_config.config.contents.clip_gain1 = 1.2\ndata_ofdm_200_config.config.contents.clip_gain2 = 1.0\ndata_ofdm_200_config.config.contents.tx_bpf_en = False\ndata_ofdm_200_config.config.contents.tx_bpf_proto = codec2_filter_coeff.generate_filter_coefficients(8000, 400, 101)\ndata_ofdm_200_config.config.contents.tx_bpf_proto_n = 101 # TODO sizeof(filtP200S400) / sizeof(float);\n\n\n# DATAC4 # OFDM 250\ndata_ofdm_250_config = create_default_ofdm_config()\ndata_ofdm_250_config.config.contents.ns = 5\ndata_ofdm_250_config.config.contents.np = 47\ndata_ofdm_250_config.config.contents.tcp = 0.006\ndata_ofdm_250_config.config.contents.ts = 0.016\ndata_ofdm_250_config.config.contents.rs = 1.0 / data_ofdm_250_config.config.contents.ts\ndata_ofdm_250_config.config.contents.nc = 4\ndata_ofdm_250_config.config.contents.timing_mx_thresh = 0.5\ndata_ofdm_250_config.config.contents.bad_uw_errors = 12\ndata_ofdm_250_config.config.contents.codename = \"H_1024_2048_4f\".encode('utf-8')\ndata_ofdm_250_config.config.contents.amp_scale = 2*300E3\ndata_ofdm_250_config.config.contents.nuwbits = 32\ndata_ofdm_250_config.config.contents.tx_uw = create_tx_uw(data_ofdm_250_config.config.contents.nuwbits, [1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0])\ndata_ofdm_250_config.config.contents.clip_gain1 = 1.2\ndata_ofdm_250_config.config.contents.clip_gain2 = 1.0\ndata_ofdm_250_config.config.contents.tx_bpf_en = True\ndata_ofdm_250_config.config.contents.tx_bpf_proto = codec2_filter_coeff.generate_filter_coefficients(8000, 400, 101)\ndata_ofdm_250_config.config.contents.tx_bpf_proto_n = 101 # TODO sizeof(filtP200S400) / sizeof(float);\n\n\n# OFDM 500\ndata_ofdm_500_config = create_default_ofdm_config()\ndata_ofdm_500_config.config.contents.ns = 5\ndata_ofdm_500_config.config.contents.np = 32\ndata_ofdm_500_config.config.contents.tcp = 0.006\ndata_ofdm_500_config.config.contents.ts = 0.016\ndata_ofdm_500_config.config.contents.rs = 1.0 / data_ofdm_500_config.config.contents.ts\ndata_ofdm_500_config.config.contents.nc = 8\ndata_ofdm_500_config.config.contents.timing_mx_thresh = 0.1\ndata_ofdm_500_config.config.contents.bad_uw_errors = 18\ndata_ofdm_500_config.config.contents.codename = \"H_1024_2048_4f\".encode('utf-8')\ndata_ofdm_500_config.config.contents.amp_scale = 300E3 # 290E3\ndata_ofdm_500_config.config.contents.nuwbits = 56\ndata_ofdm_500_config.config.contents.tx_uw = create_tx_uw(data_ofdm_500_config.config.contents.nuwbits, [0, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1])\ndata_ofdm_500_config.config.contents.clip_gain1 = 2.5 # 2.8\ndata_ofdm_500_config.config.contents.clip_gain2 = 1.0 #0.9\ndata_ofdm_500_config.config.contents.tx_bpf_en = True\ndata_ofdm_500_config.config.contents.tx_bpf_proto = codec2_filter_coeff.generate_filter_coefficients(8000, 600, 100)\ndata_ofdm_500_config.config.contents.tx_bpf_proto_n = 100\n\n\n# DATAC1 # OFDM1700\ndata_ofdm_1700_config = create_default_ofdm_config()\ndata_ofdm_1700_config.config.contents.ns = 5\ndata_ofdm_1700_config.config.contents.np = 38\ndata_ofdm_1700_config.config.contents.tcp = 0.006\ndata_ofdm_1700_config.config.contents.ts = 0.016\ndata_ofdm_1700_config.config.contents.nc = 27\ndata_ofdm_1700_config.config.contents.nuwbits = 16\ndata_ofdm_1700_config.config.contents.timing_mx_thresh = 0.10\ndata_ofdm_1700_config.config.contents.bad_uw_errors = 6\ndata_ofdm_1700_config.config.contents.codename = b\"H_4096_8192_3d\"\ndata_ofdm_1700_config.config.contents.clip_gain1 = 2.7\ndata_ofdm_1700_config.config.contents.clip_gain2 = 0.8\ndata_ofdm_1700_config.config.contents.amp_scale = 145E3\ndata_ofdm_1700_config.config.contents.tx_bpf_en = False\ndata_ofdm_1700_config.config.contents.tx_bpf_proto = codec2_filter_coeff.generate_filter_coefficients(8000, 2000, 100)\ndata_ofdm_1700_config.config.contents.tx_bpf_proto_n = 100\ndata_ofdm_1700_config.config.contents.tx_uw = create_tx_uw(data_ofdm_1700_config.config.contents.nuwbits, [1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0])\n\n\n\"\"\"\n# DATAC3\ndata_ofdm_500_config = create_default_ofdm_config()\ndata_ofdm_500_config.config.contents.ns = 5\ndata_ofdm_500_config.config.contents.np = 29\ndata_ofdm_500_config.config.contents.tcp = 0.006\ndata_ofdm_500_config.config.contents.ts = 0.016\ndata_ofdm_500_config.config.contents.rs = 1.0 / data_ofdm_500_config.config.contents.ts\ndata_ofdm_500_config.config.contents.nc = 9\ndata_ofdm_500_config.config.contents.nuwbits = 40\ndata_ofdm_500_config.config.contents.timing_mx_thresh = 0.10\ndata_ofdm_500_config.config.contents.bad_uw_errors = 10\ndata_ofdm_500_config.config.contents.codename = b\"H_1024_2048_4f\"\ndata_ofdm_500_config.config.contents.clip_gain1 = 2.2\ndata_ofdm_500_config.config.contents.clip_gain2 = 0.8\ndata_ofdm_500_config.config.contents.tx_uw = create_tx_uw(data_ofdm_500_config.config.contents.nuwbits, [1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0])\n\"\"\"\n\n# ---------------- OFDM 2438 Hz Bandwidth 16200,9720 ---------------#\ndata_ofdm_2438_config = create_default_ofdm_config()\ndata_ofdm_2438_config.config.contents.ns = 5\ndata_ofdm_2438_config.config.contents.np = 52\ndata_ofdm_2438_config.config.contents.tcp = 0.004\ndata_ofdm_2438_config.config.contents.ts = 0.016\ndata_ofdm_2438_config.config.contents.rs = 1.0 / data_ofdm_2438_config.config.contents.ts\ndata_ofdm_2438_config.config.contents.nc = 39\ndata_ofdm_2438_config.config.contents.nuwbits = 24\ndata_ofdm_2438_config.config.contents.timing_mx_thresh = 0.10\ndata_ofdm_2438_config.config.contents.bad_uw_errors = 8\ndata_ofdm_2438_config.config.contents.amp_est_mode = 0\ndata_ofdm_2438_config.config.contents.amp_scale = 106E3\ndata_ofdm_2438_config.config.contents.codename = \"H_16200_9720\".encode('utf-8')\ndata_ofdm_2438_config.config.contents.clip_gain1 = 3.3\ndata_ofdm_2438_config.config.contents.clip_gain2 = 1.5 #0.8 - a test in real world shows, 0.8 seems to be not enough for decoding. Lets test this some more time.\ndata_ofdm_2438_config.config.contents.timing_mx_thresh = 0.10\ndata_ofdm_2438_config.config.contents.tx_uw = create_tx_uw(data_ofdm_2438_config.config.contents.nuwbits, [1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1])\ndata_ofdm_2438_config.config.contents.tx_bpf_en = True\ndata_ofdm_2438_config.config.contents.tx_bpf_proto = codec2_filter_coeff.generate_filter_coefficients(8000, 2700, 100)\ndata_ofdm_2438_config.config.contents.tx_bpf_proto_n = 100\n\n# ---------------- QAM 2438 Hz Bandwidth ---------------#\n\"\"\"\ndata_qam_2438_config = create_default_ofdm_config()\ndata_qam_2438_config.config.contents.bps = 4\ndata_qam_2438_config.config.contents.ns = 5\ndata_qam_2438_config.config.contents.np = 26\ndata_qam_2438_config.config.contents.tcp = 0.005\ndata_qam_2438_config.config.contents.ts = 0.018\ndata_qam_2438_config.config.contents.rs = 1.0 / data_qam_2438_config.config.contents.ts\ndata_qam_2438_config.config.contents.nc = 39\ndata_qam_2438_config.config.contents.nuwbits = 162\ndata_qam_2438_config.config.contents.timing_mx_thresh = 0.10\ndata_qam_2438_config.config.contents.bad_uw_errors = 50\ndata_qam_2438_config.config.contents.amp_est_mode = 0\ndata_qam_2438_config.config.contents.amp_scale = 145E3\ndata_qam_2438_config.config.contents.codename = b\"H_16200_9720\"\ndata_qam_2438_config.config.contents.clip_gain1 = 2.7\ndata_qam_2438_config.config.contents.clip_gain2 = 0.8\ndata_qam_2438_config.config.contents.timing_mx_thresh = 0.10\ndata_qam_2438_config.config.contents.tx_uw = create_tx_uw(162, [1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0])\n\"\"\"\n\nofdm_configurations = {\n    FREEDV_MODE.data_ofdm_200.value: data_ofdm_200_config,\n    FREEDV_MODE.data_ofdm_250.value: data_ofdm_250_config,\n    FREEDV_MODE.data_ofdm_500.value: data_ofdm_500_config,\n    FREEDV_MODE.data_ofdm_1700.value: data_ofdm_1700_config,\n    FREEDV_MODE.data_ofdm_2438.value: data_ofdm_2438_config,\n    #FREEDV_MODE.data_qam_2438.value: data_qam_2438_config,\n}\nfsk_configurations = {\n    FREEDV_MODE.data_vhf_1.value: data_vhf_1_config\n}\n"
  },
  {
    "path": "freedata_server/codec2_filter_coeff.py",
    "content": "import numpy as np\n#from scipy.signal import freqz\nimport ctypes\n\ntestFilter = (ctypes.c_float * 3)(1.000000,1.000000,1.000000)\n\ndef generate_filter_coefficients(Fs_Hz, bandwidth_Hz, taps):\n    \"\"\"Generates filter coefficients for a sinc filter.\n\n    This function calculates the coefficients for a sinc filter based on the\n    provided sampling frequency, bandwidth, and number of taps. The\n    coefficients are returned as a ctypes array of floats, with real and\n    imaginary parts interleaved.\n\n    Args:\n        Fs_Hz (float): The sampling frequency in Hz.\n        bandwidth_Hz (float): The bandwidth of the filter in Hz.\n        taps (int): The number of taps for the filter.\n\n    Returns:\n        ctypes.c_float array: The filter coefficients as a ctypes array.\n    \"\"\"\n    B = bandwidth_Hz / Fs_Hz\n    Ntap = taps\n    h = np.zeros(Ntap, dtype=np.csingle)\n\n    # Generating filter coefficients\n    for i in range(Ntap):\n        n = i - (Ntap - 1) / 2\n        h[i] = B * np.sinc(n * B)\n\n    # Convert to ctypes array (interleaved real and imaginary)\n    CArrayType = ctypes.c_float * (len(h) * 2)\n    return CArrayType(*(np.hstack([np.real(h), np.imag(h)]).tolist()))\n\n\"\"\"\ndef plot_filter():\n\n    Fs = 8000  # Sampling frequency\n    bandwidth = 2438  # Bandwidth in Hz\n    centre_freq = 1500  # Centre frequency in Hz\n\n    # Generate filter coefficients\n    h = generate_filter_coefficients(Fs, bandwidth, centre_freq)\n    print(h)\n\n    # Frequency response\n    w, H = freqz(h, worN=8000, fs=Fs)\n\n    # Plotting\n    plt.figure(figsize=(12, 6))\n    plt.plot(w, 20 * np.log10(np.abs(H)), 'b')\n    plt.title('Frequency Response')\n    plt.ylabel('Magnitude [dB]')\n    plt.grid(True)\n    plt.show()\n\n\"\"\""
  },
  {
    "path": "freedata_server/command.py",
    "content": "from data_frame_factory import DataFrameFactory\nimport queue\nfrom codec2 import FREEDV_MODE\nimport structlog\nfrom state_manager import StateManager\nfrom arq_data_type_handler import ARQDataTypeHandler\n\n\nclass TxCommand:\n    \"\"\"Base class for transmit commands.\n\n    This class provides a common interface and basic functionality for all\n    transmit commands, including logging, parameter handling, frame building,\n    and transmission via the modem.\n    \"\"\"\n\n    def __init__(self, ctx, apiParams:dict = {}):\n        \"\"\"Initializes a new TxCommand instance.\n\n        This method sets up the command with the given configuration, state\n        manager, event manager, API parameters, and socket command handler.\n        It also initializes a DataFrameFactory for building frames and an\n        ARQDataTypeHandler for ARQ data handling.\n\n        Args:\n            config (dict): The configuration dictionary.\n            state_manager (StateManager): The state manager object.\n            event_manager: The event manager object.\n            apiParams (dict, optional): API parameters for the command. Defaults to {}.\n            socket_command_handler (optional): The socket command handler object. Defaults to None.\n        \"\"\"\n        self.ctx = ctx\n        self.logger = structlog.get_logger(type(self).__name__)\n        self.set_params_from_api(apiParams)\n        self.frame_factory = DataFrameFactory(self.ctx)\n        self.arq_data_type_handler = ARQDataTypeHandler(self.ctx)\n\n    def log(self, message, isWarning = False):\n        \"\"\"Logs a message with the command's name.\n\n        This method logs a message prefixed with the command's name, using\n        either a warning or info log level based on the isWarning flag.\n\n        Args:\n            message (str): The message to log.\n            isWarning (bool, optional): Whether to log as a warning. Defaults to False.\n        \"\"\"\n        msg = f\"[{type(self).__name__}]: {message}\"\n        logger = self.logger.warn if isWarning else self.logger.info\n        logger(msg)\n\n    def set_params_from_api(self, apiParams):\n        \"\"\"Sets parameters from the API.\n\n        This method is intended to be overridden by subclasses to handle\n        setting specific parameters from the API request.\n\n        Args:\n            apiParams (dict): A dictionary of API parameters.\n        \"\"\"\n        pass\n\n    def get_name(self):\n        \"\"\"Returns the name of the command.\n\n        This method returns the name of the command, which is the name of the\n        class.\n\n        Returns:\n            str: The name of the command.\n        \"\"\"\n        return type(self).__name__\n\n    def emit_event(self):\n        \"\"\"Emits an event to the event queue.\n\n        This method is a placeholder for emitting events related to the\n        command's execution. It's intended to be overridden by subclasses\n        to provide specific event handling.\n\n        Args:\n            event_queue (queue.Queue): The event queue.\n        \"\"\"\n        pass\n\n    def log_message(self):\n        \"\"\"Generates a log message for the command.\n\n        This method returns a string indicating that the command is running,\n        including the command's name.\n\n        Returns:\n            str: The log message.\n        \"\"\"\n        return f\"Running {self.get_name()}\"\n\n    def build_frame(self):\n        \"\"\"Builds the frame for the command.\n\n        This method is a placeholder for building the frame to be transmitted.\n        It's intended to be overridden by subclasses to generate the\n        appropriate frame data.\n        \"\"\"\n        pass\n\n    def get_tx_mode(self):\n        \"\"\"Returns the transmission mode for the command.\n\n        This method returns the default transmission mode for the command,\n        which is FREEDV_MODE.signalling. Subclasses can override this method\n        to specify a different mode.\n\n        Returns:\n            FREEDV_MODE: The transmission mode.\n        \"\"\"\n\n        if self.ctx.config_manager.config['EXP'].get('enable_vhf'):\n            mode = FREEDV_MODE.data_vhf_1\n        else:\n            mode = FREEDV_MODE.signalling\n\n        return mode\n    \n    def make_modem_queue_item(self, mode, repeat, repeat_delay, frame):\n        \"\"\"Creates a dictionary representing a modem queue item.\n\n        This method creates a dictionary containing the parameters for a\n        modem transmission, including the mode, repeat count, repeat delay,\n        and the frame data.\n\n        Args:\n            mode: The transmission mode.\n            repeat (int): The number of times to repeat the transmission.\n            repeat_delay (float): The delay between repetitions in seconds.\n            frame (bytearray): The frame data to transmit.\n\n        Returns:\n            dict: A dictionary representing the modem queue item.\n        \"\"\"\n        return {\n            'mode': mode,\n            'repeat': repeat,\n            'repeat_delay': repeat_delay,\n            'frame': frame,\n        }\n\n    def transmit(self):\n        \"\"\"Transmits the command frame via the modem.\n\n        This method builds the command frame and transmits it once using the\n        modem with the configured transmission mode.\n\n        Args:\n            modem: The modem object.\n        \"\"\"\n        frame = self.build_frame()\n        self.ctx.rf_modem.transmit(self.get_tx_mode(), 1, 0, frame)\n\n    def run(self):\n        \"\"\"Runs the command.\n\n        This method emits an event to the event queue, logs a message\n        indicating the command is running, and transmits the command frame\n        via the modem.\n\n        Args:\n            event_queue (queue.Queue): The event queue.\n            modem: The modem object.\n        \"\"\"\n        self.emit_event()\n        self.logger.info(self.log_message())\n        self.transmit()\n\n    def test(self, event_queue: queue.Queue):\n        \"\"\"Tests the command by building and returning the frame.\n\n        This method emits an event, logs a message, and builds the frame\n        that would be transmitted, but doesn't actually transmit it.\n        This is useful for testing the frame building logic without\n        using the modem.\n\n        Args:\n            event_queue (queue.Queue): The event queue.\n\n        Returns:\n            bytearray: The built frame.\n        \"\"\"\n        self.emit_event()\n        self.logger.info(self.log_message())\n        return self.build_frame()\n"
  },
  {
    "path": "freedata_server/command_arq_raw.py",
    "content": "import queue\nfrom command import TxCommand\nimport api_validations\nimport base64\nfrom queue import Queue\nfrom arq_session_iss import ARQSessionISS\nfrom arq_data_type_handler import ARQ_SESSION_TYPES\nimport numpy as np\nimport threading\n\nclass ARQRawCommand(TxCommand):\n    \"\"\"Command for transmitting raw data via ARQ.\n\n    This command handles the transmission of raw data using the ARQ protocol.\n    It prepares the data, creates an ARQ session, and starts the\n    transmission.\n    \"\"\"\n\n    def set_params_from_api(self, apiParams):\n        \"\"\"Sets parameters for the command from the API request.\n\n        This method extracts parameters such as dxcall, data type, and raw\n        data from the provided API parameters dictionary. It validates the\n        dxcall and sets default values if necessary.\n\n        Args:\n            apiParams (dict): A dictionary containing the API parameters.\n        \"\"\"\n        self.dxcall = apiParams['dxcall']\n        if not api_validations.validate_freedata_callsign(self.dxcall):\n            self.dxcall = f\"{self.dxcall}-0\"\n\n        try:\n            self.type = ARQ_SESSION_TYPES[apiParams['type']]\n        except KeyError:\n            self.type = ARQ_SESSION_TYPES.raw\n\n        self.data = base64.b64decode(apiParams['data'])\n\n    def run(self):\n        \"\"\"Executes the ARQ raw data transmission command.\n\n        This method prepares the data for transmission, creates an ARQ session,\n        and starts the transmission process. It includes a random delay to\n        mitigate packet collisions and handles potential errors during session\n        startup.\n\n        Args:\n            event_queue (Queue): The event queue for emitting events.\n            modem: The modem object for transmission.\n\n        Returns:\n            ARQSessionISS or bool: The ARQSessionISS object if the session\n            starts successfully, False otherwise.\n        \"\"\"\n        try:\n            self.emit_event()\n            self.logger.info(self.log_message())\n\n            # wait some random time and wait if we have an ongoing codec2 transmission\n            # on our channel. This should prevent some packet collision\n            random_delay = np.random.randint(0, 6)\n            threading.Event().wait(random_delay)\n            self.ctx.state_manager.channel_busy_condition_codec2.wait(5)\n\n            prepared_data, type_byte = self.arq_data_type_handler.prepare(self.data, self.type)\n\n            iss = ARQSessionISS(self.ctx, self.dxcall, prepared_data, type_byte)\n            if iss.id:\n                self.ctx.state_manager.register_arq_iss_session(iss)\n                iss.start()\n                return iss\n        except Exception as e:\n            self.log(f\"Error starting ARQ session: {e}\", isWarning=True)\n\n        return False"
  },
  {
    "path": "freedata_server/command_beacon.py",
    "content": "from command import TxCommand\n\nclass BeaconCommand(TxCommand):\n    \"\"\"Command for transmitting beacon frames.\n\n    This command builds and transmits beacon frames, indicating the station's\n    status (away from key or not).\n    \"\"\"\n\n    def build_frame(self):\n        \"\"\"Builds a beacon frame.\n\n        This method retrieves the station's \"away from key\" status from the\n        state manager and uses it to build a beacon frame.\n\n        Returns:\n            bytearray: The built beacon frame.\n        \"\"\"\n        beacon_state = self.ctx.state_manager.is_away_from_key\n        return self.frame_factory.build_beacon(beacon_state)\n\n\n    #def transmit(self, freedata_server):\n    #    super().transmit(freedata_server)\n    #    if self.config['MODEM']['enable_morse_identifier']:\n    #        mycall = f\"{self.config['STATION']['mycall']}-{self.config['STATION']['myssid']}\"\n    #        freedata_server.transmit_morse(\"morse\", 1, 0, mycall)\n"
  },
  {
    "path": "freedata_server/command_cq.py",
    "content": "from command import TxCommand\nfrom codec2 import FREEDV_MODE\nclass CQCommand(TxCommand):\n    \"\"\"Command for transmitting CQ frames.\n\n    This command builds and transmits CQ (Calling Any Station) frames using\n    the FreeDV protocol.\n    \"\"\"\n\n    def build_frame(self):\n        \"\"\"Builds a CQ frame.\n\n        This method uses the frame factory to build a CQ (Calling Any Station)\n        frame.\n\n        Returns:\n            bytearray: The built CQ frame.\n        \"\"\"\n        return self.frame_factory.build_cq()\n"
  },
  {
    "path": "freedata_server/command_fec.py",
    "content": "from command import TxCommand\nimport base64\n\nclass FecCommand(TxCommand):\n    \"\"\"Command for transmitting data using Forward Error Correction (FEC).\n\n    This command prepares and transmits data packets using FEC, optionally\n    sending a wakeup frame beforehand. It supports base64-encoded payloads\n    and handles various FEC modes.\n    \"\"\"\n\n    def set_params_from_api(self, apiParams):\n        \"\"\"Sets parameters from the API request.\n\n        This method extracts the FEC mode, wakeup flag, and base64-encoded\n        payload from the API parameters. It decodes the payload and raises\n        a TypeError if the payload is not a valid base64 string.\n\n        Args:\n            apiParams (dict): A dictionary containing the API parameters.\n\n        Raises:\n            TypeError: If the payload is not a valid base64 string.\n\n        Returns:\n            dict: The API parameters after processing.\n        \"\"\"\n        self.mode = apiParams['mode']\n        self.wakeup = apiParams['wakeup']\n        payload_b64 = apiParams['payload']\n\n        if len(payload_b64) % 4:\n            raise TypeError(\"Invalid base64 payload\")\n        self.payload = base64.b64decode(payload_b64)\n\n        return super().set_params_from_api(apiParams)\n    \n    def build_wakeup_frame(self):\n        \"\"\"Builds a wakeup frame for FEC.\n\n        This method uses the frame factory to build a wakeup frame for the\n        specified FEC mode.\n\n        Returns:\n            bytearray: The built wakeup frame.\n        \"\"\"\n        return self.frame_factory.build_fec_wakeup(self.mode)\n\n    def build_frame(self):\n        \"\"\"Builds the FEC frame.\n\n        This method uses the frame factory to build the FEC frame with the\n        specified mode and payload.\n\n        Returns:\n            bytearray: The built FEC frame.\n        \"\"\"\n        return self.frame_factory.build_fec(self. mode, self.payload)\n    \n    def transmit(self, tx_frame_queue):\n        \"\"\"Transmits the FEC frame, optionally sending a wakeup frame first.\n\n        This method transmits the built FEC frame via the provided queue.\n        If the wakeup flag is set, it sends a wakeup frame before the\n        actual data frame.\n\n        Args:\n            tx_frame_queue: The transmission queue.\n        \"\"\"\n        if self.wakeup:\n            tx_queue_item = self.make_modem_queue_item(self.get_c2_mode(), 1, 0, self.build_wakeup_frame())\n            tx_frame_queue.put(tx_queue_item)\n\n        tx_queue_item = self.make_modem_queue_item(self.get_c2_mode(), 1, 0, self.build_frame())\n        tx_frame_queue.put(tx_queue_item)\n"
  },
  {
    "path": "freedata_server/command_message_send.py",
    "content": "from command import TxCommand\nimport api_validations\nimport base64\nfrom queue import Queue\nfrom arq_session_iss import ARQSessionISS\nfrom message_p2p import MessageP2P\nfrom arq_data_type_handler import ARQ_SESSION_TYPES\nfrom message_system_db_manager import DatabaseManager\nfrom message_system_db_messages import DatabaseManagerMessages\nimport threading\nimport numpy as np\nimport time\n\n\nclass SendMessageCommand(TxCommand):\n    \"\"\"Command to send a P2P message using an ARQ transfer session\n    \"\"\"\n\n    def set_params_from_api(self, apiParams):\n        \"\"\"Sets parameters from the API request.\n\n        This method creates a MessageP2P object from the API parameters,\n        and adds the message to the database with the status 'queued'.\n\n        Args:\n            apiParams (dict): A dictionary containing the API parameters.\n        \"\"\"\n        origin = f\"{self.ctx.config_manager.config['STATION']['mycall']}-{self.ctx.config_manager.config['STATION']['myssid']}\"\n        self.message = MessageP2P.from_api_params(origin, apiParams)\n        DatabaseManagerMessages(self.ctx).add_message(self.message.to_dict(), statistics={}, direction='transmit', status='queued', frequency=self.ctx.state_manager.radio_frequency)\n\n    def transmit(self):\n        \"\"\"Transmits the first queued message using ARQ.\n\n        This method retrieves the first queued message from the database,\n        prepares the data using the ARQ data type handler, creates an\n        ARQSessionISS, and starts the transmission. It includes error\n        handling and logging.\n\n        Args:\n            modem: The modem object.\n        \"\"\"\n        if self.ctx.state_manager.getARQ():\n            self.log(\"Modem busy, waiting until ready...\")\n            return\n\n        if not self.ctx.rf_modem:\n            self.log(\"Modem not running...\", isWarning=True)\n            return\n\n        first_queued_message = DatabaseManagerMessages(self.ctx).get_first_queued_message()\n        if not first_queued_message:\n            self.log(\"No queued message in database.\")\n            return\n        try:\n            self.log(f\"Queued message found: {first_queued_message['id']}\")\n            #DatabaseManagerMessages(self.ctx.event_manager).update_message(first_queued_message[\"id\"], update_data={'status': 'transmitting'}, frequency=self.ctx.state_manager.radio_frequency)\n            message_dict = DatabaseManagerMessages(self.ctx).get_message_by_id(first_queued_message[\"id\"])\n            message = MessageP2P.from_api_params(message_dict['origin'], message_dict)\n\n            # wait some random time and wait if we have an ongoing codec2 transmission\n            # on our channel. This should prevent some packet collision\n            random_delay = np.random.randint(0, 10)\n            threading.Event().wait(random_delay)\n            while self.ctx.state_manager.is_receiving_codec2_signal():\n                threading.Event().wait(0.1)\n\n            # we are going to wait and check if we received any other codec2 signal within 10s.\n            # if so, we are returning, message stays queued.\n            # this helps to avoid packet collisions.\n            time_to_wait = 10\n            time_waiting_for_free_channel = time.time() + time_to_wait\n            self.log(f\"Checking channel if free for {time_to_wait}s\", isWarning=False)\n            while time.time() < time_waiting_for_free_channel:\n                threading.Event().wait(0.1)\n                if self.ctx.state_manager.is_receiving_codec2_signal():\n                    self.log(f\"Codec2 signal found, skipping  message until next cycle\", isWarning=True)\n                    return\n\n            # If we came until here, we are setting status to transmitting, otherwise it stays in queued\n            DatabaseManagerMessages(self.ctx).update_message(first_queued_message[\"id\"], update_data={'status': 'transmitting'}, frequency=self.ctx.state_manager.radio_frequency)\n\n\n            # Convert JSON string to bytes (using UTF-8 encoding)\n            payload = message.to_payload().encode('utf-8')\n            json_bytearray = bytearray(payload)\n            data, data_type = self.arq_data_type_handler.prepare(json_bytearray, ARQ_SESSION_TYPES.p2pmsg_zlib)\n            iss = ARQSessionISS(self.ctx,\n                                self.message.destination,\n                                data,\n                                data_type\n                                )\n            self.ctx.state_manager.register_arq_iss_session(iss)\n            iss.start()\n        except Exception as e:\n            self.log(f\"Error starting ARQ session: {e}\", isWarning=True)\n"
  },
  {
    "path": "freedata_server/command_p2p_connection.py",
    "content": "import queue\nfrom command import TxCommand\nimport api_validations\nimport base64\nfrom queue import Queue\nfrom p2p_connection import P2PConnection\n\nclass P2PConnectionCommand(TxCommand):\n    \"\"\"Command to initiate a P2P connection.\n\n    This command sets up a P2P connection between two stations, handling\n    session creation, registration, and connection establishment.\n    \"\"\"\n\n    def set_params_from_api(self, apiParams):\n        \"\"\"Sets parameters from the API request.\n\n        This method extracts the origin and destination callsigns from the\n        API parameters and validates them, adding a default SSID if necessary.\n\n        Args:\n            apiParams (dict): A dictionary containing the API parameters.\n        \"\"\"\n        self.origin = apiParams['origin']\n        if not api_validations.validate_freedata_callsign(self.origin):\n            self.origin = f\"{self.origin}-0\"\n\n        self.destination = apiParams['destination']\n        if not api_validations.validate_freedata_callsign(self.destination):\n            self.destination = f\"{self.destination}-0\"\n\n\n    def connect(self):\n        \"\"\"Placeholder for the connect method.\n\n        This method is currently not implemented and serves as a placeholder\n        for future functionality related to P2P connection establishment.\n\n        Args:\n            event_queue (Queue): The event queue.\n            modem: The modem object.\n        \"\"\"\n        pass\n\n    def run(self):\n        \"\"\"Executes the P2P connection command.\n\n        This method creates a P2PConnection session, registers it with the\n        state manager, initiates the connection, and handles potential errors\n        during session startup.\n\n        Args:\n            event_queue (Queue): The event queue.\n            modem: The modem object.\n\n        Returns:\n            P2PConnection or bool: The P2PConnection object if successful, False otherwise.\n        \"\"\"\n        try:\n            session = P2PConnection(self.ctx, self.origin, self.destination)\n            if session.session_id:\n                self.ctx.state_manager.register_p2p_connection_session(session)\n                session.connect()\n                return session\n            return False\n\n        except Exception as e:\n            self.log(f\"Error starting P2P Connection session: {e}\", isWarning=True)\n\n        return False"
  },
  {
    "path": "freedata_server/command_ping.py",
    "content": "from command import TxCommand\nimport api_validations\nfrom message_system_db_manager import DatabaseManager\n\n\nclass PingCommand(TxCommand):\n    \"\"\"Command for transmitting ping frames.\n\n    This command sends a ping frame to a specified station, identified by\n    its callsign. It also updates the callsign database.\n    \"\"\"\n\n\n    def set_params_from_api(self, apiParams):\n        \"\"\"Sets parameters from the API request.\n\n        This method extracts the destination callsign (dxcall) from the API\n        parameters, validates it, adds a default SSID if needed, and updates\n        the callsign database.\n\n        Args:\n            apiParams (dict): A dictionary containing the API parameters.\n\n        Returns:\n            dict: The API parameters after processing.\n        \"\"\"\n        self.dxcall = apiParams['dxcall']\n        if not api_validations.validate_freedata_callsign(self.dxcall):\n            self.dxcall = f\"{self.dxcall}-0\"\n        # update callsign database...\n        DatabaseManager(self.ctx).get_or_create_station(self.dxcall)\n\n        return super().set_params_from_api(apiParams)\n\n    def build_frame(self):\n        \"\"\"Builds a ping frame.\n\n        This method uses the frame factory to build a ping frame addressed\n        to the specified destination callsign.\n\n        Returns:\n            bytearray: The built ping frame.\n        \"\"\"\n        return self.frame_factory.build_ping(self.dxcall)\n"
  },
  {
    "path": "freedata_server/command_qrv.py",
    "content": "from command import TxCommand\n\nclass QRVCommand(TxCommand):\n    \"\"\"Command for transmitting QRV frames.\n\n    This command builds and transmits QRV (Ready to Receive) frames.\n    \"\"\"\n\n    def build_frame(self):\n        \"\"\"Builds a QRV frame.\n\n        This method uses the frame factory to build a QRV (Ready to Receive)\n        frame.\n\n        Returns:\n            bytearray: The built QRV frame.\n        \"\"\"\n        return self.frame_factory.build_qrv()\n"
  },
  {
    "path": "freedata_server/command_test.py",
    "content": "from command import TxCommand\nimport codec2\nfrom codec2 import FREEDV_MODE\n\n\nclass TestCommand(TxCommand):\n    \"\"\"Command for transmitting test frames.\n\n    This command builds and transmits test frames using a specific FreeDV\n    mode (data_ofdm_500).\n    \"\"\"\n\n    def build_frame(self):\n        \"\"\"Builds a test frame.\n\n        This method uses the frame factory to build a test frame using the\n        specified FreeDV mode.\n\n        Returns:\n            bytearray: The built test frame.\n        \"\"\"\n        return self.frame_factory.build_test(self.get_tx_mode().name)\n\n    def get_tx_mode(self):\n        \"\"\"Returns the transmission mode for test frames.\n\n        This method returns the specific FreeDV mode (data_ofdm_500) used for\n        transmitting test frames.\n\n        Returns:\n            codec2.FREEDV_MODE: The FreeDV mode for test frames.\n        \"\"\"\n        if self.ctx.config_manager.config['EXP'].get('enable_vhf'):\n            mode = FREEDV_MODE.data_vhf_1\n        else:\n            mode = FREEDV_MODE.data_ofdm_500\n\n        return mode\n"
  },
  {
    "path": "freedata_server/command_transmit_sine.py",
    "content": "from command import TxCommand\n\nclass TransmitSine(TxCommand):\n    \"\"\"Command for transmitting a sine wave.\n\n    This command instructs the modem to transmit a continuous sine wave,\n    which can be used for testing and calibration.\n    \"\"\"\n    def transmit(self):\n        \"\"\"Transmits a sine wave.\n\n        This method instructs the modem to transmit a sine wave.  It is used\n        for testing and calibration purposes.\n\n        Args:\n            modem: The modem object.\n        \"\"\"\n        self.ctx.rf_modem.transmit_sine()\n        # Code for debugging morse stuff...\n        #modem.transmit_morse(0,0,[b''])"
  },
  {
    "path": "freedata_server/config.ini.example",
    "content": "[NETWORK]\nmodemaddress = 127.0.0.1\nmodemport = 5000\n\n[STATION]\nmycall = AA1AAA\nmygrid = JN48ea\nmyssid = 1\nssid_list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]\nenable_explorer = False\nenable_stats = False\nrespond_to_cq = True\nenable_callsign_blacklist = False\ncallsign_blacklist = []\n\n[AUDIO]\ninput_device = 5a1c\noutput_device = bd6c\nrx_audio_level = 0\ntx_audio_level = 0\nrx_auto_audio_level = True\ntx_auto_audio_level = False\n\n[RIGCTLD]\nip = 127.0.0.1\nport = 4532\npath = \ncommand = \narguments = \nenable_vfo = False\n\n[FLRIG]\nip = 127.0.0.1\nport = 12345\n\n[RADIO]\ncontrol = disabled\nmodel_id = 1001\nserial_port = /dev/cu.Bluetooth-Incoming-Port\nserial_speed = 38400\ndata_bits = 8\nstop_bits = 1\nserial_handshake = ignore\nptt_port = ignore\nptt_mode = TX\nptt_type = USB\nserial_dcd = NONE\nserial_dtr = OFF\nserial_rts = OFF\n\n[MODEM]\nenable_morse_identifier = False\ntx_delay = 50\nmaximum_bandwidth = 2438\n\n[SOCKET_INTERFACE]\nenable = False\nhost = 127.0.0.1\ncmd_port = 9000\ndata_port = 9001\n\n[MESSAGES]\nenable_auto_repeat = True\n\n[QSO_LOGGING]\nenable_adif_udp = False\nadif_udp_host = 127.0.0.1\nadif_udp_port = 2237\nenable_adif_wavelog = False\nadif_wavelog_host = http://raspberrypi\nadif_wavelog_api_key = API-KEY\n\n[GUI]\nauto_run_browser = True\n\n[EXP]\nenable_ring_buffer = False\nenable_vhf = False\n\n"
  },
  {
    "path": "freedata_server/config.py",
    "content": "import configparser\nimport structlog\nimport json\n\n\nclass CONFIG:\n    \"\"\"\n    CONFIG class for handling with config files\n\n    \"\"\"\n\n    config_types = {\n        'NETWORK': {\n            'modemaddress': str,\n            'modemport': int,\n        },\n        'STATION': {\n            'mycall': str,\n            'mygrid': str,\n            'myssid': int,\n            'ssid_list': list,\n            'enable_explorer': bool,\n            'enable_stats': bool,\n            'respond_to_cq': bool,\n            'enable_callsign_blacklist': bool,\n            'callsign_blacklist': list\n\n        },\n        'AUDIO': {\n            'input_device': str,\n            'output_device': str,\n            'rx_audio_level': int,\n            'tx_audio_level': int,\n            'rx_auto_audio_level': bool,\n            'tx_auto_audio_level': bool,\n        },\n        'RADIO': {\n            'control': str,\n            'serial_port': str,\n            'model_id': int,\n            'serial_speed': int,\n            'data_bits': int,\n            'stop_bits': int,\n            'serial_handshake': str,\n            'ptt_port': str,\n            'ptt_mode': str,\n            'ptt_type': str,\n            'serial_dcd': str,\n            'serial_dtr': str,\n            'serial_rts': str,\n        },\n        'RIGCTLD': {\n            'ip': str,\n            'port': int,\n            'path': str,\n            'command': str,\n            'arguments': str,\n            'enable_vfo': bool,\n        },\n        'FLRIG': {\n            'ip': str,\n            'port': int,\n        },\n        'MODEM': {\n            'enable_morse_identifier': bool,\n            'maximum_bandwidth': int,\n            'tx_delay': int,\n        },\n        'SOCKET_INTERFACE': {\n            'enable': bool,\n            'host': str,\n            'cmd_port': int,\n            'data_port': int,\n        },\n        'MESSAGES': {\n            'enable_auto_repeat': bool,\n        },\n        'QSO_LOGGING': {\n            'enable_adif_udp': bool,\n            'adif_udp_host': str,\n            'adif_udp_port': int,\n            'enable_adif_wavelog': bool,\n            'adif_wavelog_host': str,\n            'adif_wavelog_api_key': str,\n        },\n\n        'GUI': {\n            'auto_run_browser': bool,\n        },\n        'EXP': {\n            'enable_ring_buffer': bool,\n            'enable_vhf': bool,\n        }\n    }\n\n    default_values = {\n        list: '[]',\n        bool: 'False',\n        int: '0',\n        str: '',\n    }\n\n    def __init__(self, ctx, configfile: str):\n        \"\"\"Initializes a new CONFIG instance.\n\n        This method initializes the configuration handler with the specified\n        config file. It sets up the logger, config parser, and validates\n        the config file's existence and structure.\n\n        Args:\n            configfile (str): The path to the configuration file.\n        \"\"\"\n        self.ctx = ctx\n        # set up logger\n        self.log = structlog.get_logger(type(self).__name__)\n\n        # init configparser\n        self.parser = configparser.ConfigParser(inline_comment_prefixes=\"#\", allow_no_value=True)\n\n        try:\n            self.config_name = configfile\n        except Exception:\n            self.config_name = \"config.ini\"\n\n        # self.log.info(\"[CFG] config init\", file=self.config_name)\n\n        # check if config file exists\n        self.config_exists()\n\n        # validate config structure\n        self.validate_config()\n\n        # read config\n        self.config = self.read()\n        \n    def config_exists(self):\n        \"\"\"Checks if the configuration file exists and can be read.\n\n        This method attempts to read the configuration file and returns True\n        if successful, False otherwise. It logs any errors encountered during\n        the reading process.\n\n        Returns:\n            bool: True if the config file exists and is readable, False otherwise.\n        \"\"\"\n        try:\n            return bool(self.parser.read(self.config_name, None))\n        except Exception as configerror:\n            self.log.error(\"[CFG] logfile init error\", e=configerror)\n            return False\n\n    # Validates config data\n    def validate_data(self, data):\n        \"\"\"Validates the data types of configuration settings.\n\n        This method checks if the provided data matches the expected data\n        types defined in config_types. It raises a ValueError if a data type\n        mismatch is found.\n\n        Args:\n            data (dict): The configuration data to validate.\n\n        Raises:\n            ValueError: If a data type mismatch is found.\n        \"\"\"\n        for section in data:\n            for setting in data[section]:\n                if not isinstance(data[section][setting], self.config_types[section][setting]):\n                    message = (f\"{section}.{setting} must be {self.config_types[section][setting]}.\"\n                               f\" '{data[section][setting]}' {type(data[section][setting])} given.\")\n                    raise ValueError(message)\n\n    def validate_config(self):\n        \"\"\"Validates and updates the configuration file structure.\n\n        This method checks the existing configuration file against the\n        defined config_types. It removes any undefined sections or settings,\n        adds missing sections and settings with default values, and then\n        writes the updated configuration back to the file.\n\n        Returns:\n            dict or bool: A dictionary containing the updated configuration\n            data if successful, False otherwise.\n        \"\"\"\n        existing_sections = self.parser.sections()\n\n        # Remove sections and settings not defined in self.config_types\n        for section in existing_sections:\n            if section not in self.config_types:\n                self.parser.remove_section(section)\n                self.log.info(f\"[CFG] Removing undefined section: {section}\")\n                continue\n            existing_settings = self.parser.options(section)\n            for setting in existing_settings:\n                if setting not in self.config_types[section]:\n                    self.parser.remove_option(section, setting)\n                    self.log.info(f\"[CFG] Removing undefined setting: {section}.{setting}\")\n\n        # Add missing sections and settings from self.config_types\n        for section, settings in self.config_types.items():\n            if section not in existing_sections:\n                self.parser.add_section(section)\n                self.log.info(f\"[CFG] Adding missing section: {section}\")\n            for setting, value_type in settings.items():\n                if not self.parser.has_option(section, setting):\n                    default_value = self.default_values.get(value_type, None)\n\n                    self.parser.set(section, setting, str(default_value))\n                    self.log.info(f\"[CFG] Adding missing setting: {section}.{setting}\")\n        return self.write_to_file()\n\n    def handle_setting(self, section, setting, value, is_writing=False):\n        \"\"\"Handles special data type conversions for config settings.\n\n        This method performs data type conversions for specific config settings,\n        such as lists and booleans, when reading from or writing to the config\n        file. It also handles KeyErrors if a setting is not found in the\n        config_types dictionary.\n\n        Args:\n            section (str): The config section name.\n            setting (str): The config setting name.\n            value: The value to be converted.\n            is_writing (bool, optional): True if writing to the config file,\n                False if reading from it. Defaults to False.\n\n        Returns:\n            The converted value, or the original value if no conversion is needed.\n        \"\"\"\n        try:\n            if self.config_types[section][setting] == list:\n                if is_writing:\n                    # When writing, ensure the value is a list and then convert it to JSON\n                    if isinstance(value, str):\n                        value = json.loads(value)  # Convert JSON string to list\n                    return json.dumps(value)  # Convert list to JSON string\n                else:\n                    # When reading, convert the JSON string back to a list\n                    if isinstance(value, str):\n                        return json.loads(value)\n                    return value  # Return as-is if already a list\n\n            elif self.config_types[section][setting] == bool and not is_writing:\n                return self.parser.getboolean(section, setting)\n\n            elif self.config_types[section][setting] == int and not is_writing:\n                return self.parser.getint(section, setting)\n\n            else:\n                return value\n        except KeyError as key:\n            self.log.error(\"[CFG] key error in logfile, please check 'config.ini.example' for help\", key=key)\n\n    # Sets and writes config data from a dict containing data settings\n    def write(self, data):\n        \"\"\"Writes the provided data to the configuration file.\n\n        This method validates the input data, converts it to the appropriate\n        types, writes it to the configuration file, and returns the updated\n        configuration as a dictionary. It logs any errors encountered\n        during the writing process.\n\n        Args:\n            data (dict): A dictionary containing the configuration data to write.\n\n        Returns:\n            dict or bool: A dictionary containing the updated configuration\n            data if successful, False otherwise.\n        \"\"\"\n        # Validate config data before writing\n        self.validate_data(data)\n        for section in data:\n            # init section if it doesn't exist yet\n            if not section.upper() in self.parser.keys():\n                self.parser[section] = {}\n\n            for setting in data[section]:\n                new_value = self.handle_setting(\n                    section, setting, data[section][setting], True)\n                try:\n                    self.parser[section][setting] = str(new_value)\n                except Exception as e:\n                    self.log.error(\"[CFG] error setting config key\", e=e)\n        return self.write_to_file()\n\n    def write_to_file(self):\n        \"\"\"Writes the current configuration to the config file.\n\n        This method writes the in-memory configuration data to the\n        configuration file. It then rereads and returns the updated\n        configuration. It logs any errors encountered during the writing\n        process.\n\n        Returns:\n            dict or bool: A dictionary containing the updated configuration\n            data if successful, False otherwise.\n        \"\"\"\n        try:\n            with open(self.config_name, 'w') as configfile:\n                self.parser.write(configfile)\n                self.ctx.config = self.read()\n\n                return self.ctx.config\n        except Exception as conferror:\n            self.log.error(\"[CFG] reading logfile\", e=conferror)\n            return False\n\n    def read(self):\n        \"\"\"Reads the configuration file.\n\n        This method reads the configuration file, handles special setting data\n        type conversions, and returns the configuration as a dictionary.\n        It logs any errors encountered during the reading process.\n\n        Returns:\n            dict or bool: A dictionary containing the configuration data if\n            successful, False otherwise.\n        \"\"\"\n        # self.log.info(\"[CFG] reading...\")\n        if not self.config_exists():\n            return False\n        try:\n            # at first just copy the config as read from file\n            result = {s: dict(self.parser.items(s)) for s in self.parser.sections()}\n\n            # handle the special settings\n            for section in result:\n                for setting in result[section]:\n                    result[section][setting] = self.handle_setting(\n                       section, setting, result[section][setting], False)\n\n            # store config in config manager instance\n            self.config = result\n\n            return result\n        except Exception as conferror:\n            self.log.error(\"[CFG] reading logfile\", e=conferror)\n            return False\n\n"
  },
  {
    "path": "freedata_server/constants.py",
    "content": "# Module for saving some constants\nCONFIG_ENV_VAR = 'FREEDATA_CONFIG'\nDEFAULT_CONFIG_FILE = 'config.ini'\nMODEM_VERSION = \"0.17.8-beta\"\nAPI_VERSION = 3\nARQ_PROTOCOL_VERSION = 1\nLICENSE = 'GPL3.0'\nDOCUMENTATION_URL = 'https://wiki.freedata.app'\nSTATS_API_URL = 'https://api.freedata.app/stats.php'\nEXPLORER_API_URL = 'https://api.freedata.app/explorer.php'\nMESSAGE_SYSTEM_DATABASE_VERSION = 0"
  },
  {
    "path": "freedata_server/context.py",
    "content": "from queue import Queue\nfrom event_manager import EventManager\nfrom state_manager import StateManager\nfrom schedule_manager import ScheduleManager\nfrom radio_manager import RadioManager\nfrom config import CONFIG\nfrom service_manager import SM as ServiceManager\nfrom message_system_db_manager import DatabaseManager\nfrom message_system_db_attachments import DatabaseManagerAttachments\nfrom websocket_manager import wsm as WebsocketManager\nimport constants\nfrom fastapi import Request, WebSocket\nclass AppContext:\n    def __init__(self, config_file: str):\n        self.config_manager = CONFIG(self, config_file)\n        self.constants = constants\n        self.p2p_data_queue = Queue()\n        self.state_queue = Queue()\n        self.modem_events = Queue()\n        self.modem_fft = Queue()\n        self.modem_service = Queue()\n        self.event_manager = EventManager(self, [self.modem_events])\n        self.state_manager = StateManager(self.state_queue)\n        self.schedule_manager = ScheduleManager(self)\n        self.service_manager = ServiceManager(self)\n        self.websocket_manager = WebsocketManager(self)\n        self.radio_manager = RadioManager(self)\n        self.socket_interface_manager = None # Socket interface instance, We start it as we need it\n        self.rf_modem = None # Modem instnace, we start it as we need it\n        self.message_system_db_manager = DatabaseManager(self)\n        self.message_system_db_attachments = DatabaseManagerAttachments(self)\n\n        self.TESTMODE = False\n        self.TESTMODE_TRANSMIT_QUEUE = Queue() # This is a helper queue which holds bursts to be transmitted for helping using tests\n        self.TESTMODE_RECEIVE_QUEUE = Queue() # This is a helper queue which holds received bursts for helping using tests\n        self.TESTMODE_EVENTS = Queue() # This is a helper queue which holds events\n\n    def startup(self):\n\n        # initially read config\n        self.config_manager.read()\n\n        self.websocket_manager.startWorkerThreads(self)\n\n        # start modem service\n        self.modem_service.put(\"start\")\n\n        # DB setup\n        db = DatabaseManager(self.event_manager)\n        db.check_database_version()\n        db.initialize_default_values()\n        db.database_repair_and_cleanup()\n        DatabaseManagerAttachments(self).clean_orphaned_attachments()\n\n    def shutdown(self):\n        try:\n            for s in self.state_manager.arq_irs_sessions.values():\n                s.transmission_aborted()\n            for s in self.state_manager.arq_iss_sessions.values():\n                s.abort_transmission(send_stop=False)\n                s.transmission_aborted()\n        except Exception:\n            pass\n        self.websocket_manager.shutdown()\n        self.schedule_manager.stop()\n        self.service_manager.shutdown()\n        #self._audio.terminate()\n        import os\n        os._exit(0)\n# Dependency provider for FastAPI (HTTP & WebSocket)\ndef get_ctx(request: Request = None, websocket: WebSocket = None) -> AppContext:\n    \"\"\"\n    Provide the application context for HTTP requests or WebSocket connections.\n\n    FastAPI will pass either a Request or WebSocket instance.\n\n    Returns:\n        AppContext: The application context stored in state.\n    \"\"\"\n    conn = request or websocket\n    return conn.app.state.ctx\n"
  },
  {
    "path": "freedata_server/cw.py",
    "content": "import numpy as np\n\n\"\"\"\n morse code generator\n MorseCodePlayer().text_to_signal(\"DJ2LS-1\")\n\n \n \"\"\"\n\n\nclass MorseCodePlayer:\n    \"\"\"Generates and plays morse code audio.\n\n    This class provides functionality to convert text to morse code and then\n    to an audio signal, allowing for the generation and playback of morse\n    code. It supports customization of the code speed (WPM), tone frequency,\n    and sampling rate.\n    \"\"\"\n\n    def __init__(self, wpm=25, f=1500, fs=48000):\n        \"\"\"Initializes the MorseCodePlayer.\n\n        Args:\n            wpm (int, optional): Words per minute, defining the speed of the morse code. Defaults to 25.\n            f (int, optional): Tone frequency in Hz. Defaults to 1500.\n            fs (int, optional): Sampling rate in Hz. Defaults to 48000.\n        \"\"\"\n        self.wpm = wpm\n        self.f0 = f\n        self.fs = fs\n        self.dot_duration = 1.2/(self.wpm)\n        self.dash_duration = 3*self.dot_duration\n        self.pause_duration = self.dot_duration\n        self.word_pause_duration = 7*self.dot_duration\n        self.morse_alphabet = {\n            'A': '.-', 'B': '-...', 'C': '-.-.', 'D': '-..', 'E': '.', 'F': '..-.', 'G': '--.', 'H': '....',\n            'I': '..', 'J': '.---', 'K': '-.-', 'L': '.-..', 'M': '--', 'N': '-.', 'O': '---', 'P': '.--.',\n            'Q': '--.-', 'R': '.-.', 'S': '...', 'T': '-', 'U': '..-', 'V': '...-', 'W': '.--', 'X': '-..-',\n            'Y': '-.--', 'Z': '--..', '0': '-----', '1': '.----', '2': '..---', '3': '...--', '4': '....-',\n            '5': '.....', '6': '-....', '7': '--...', '8': '---..', '9': '----.', '.': '.-.-.-', ',': '--..--',\n            '?': '..--..', \"'\": '.----.', '!': '-.-.--', '/': '-..-.', '(': '-.--.', ')': '-.--.-', '&': '.-...',\n            ':': '---...', ';': '-.-.-.', '=': '-...-', '+': '.-.-.', '-': '-....-', '_': '..--.-', '\"': '.-..-.',\n            '$': '...-..-', '@': '.--.-.'\n        }\n\n    def text_to_morse(self, text):\n        \"\"\"Converts text to morse code.\n\n        This method takes a string of text as input and converts it to morse\n        code, using the defined morse alphabet. It handles spaces and\n        non-alphanumeric characters.\n\n        Args:\n            text (str): The text to convert.\n\n        Returns:\n            str: The morse code representation of the input text.\n        \"\"\"\n        morse = ''\n        for char in text:\n            if char.upper() in self.morse_alphabet:\n                morse += self.morse_alphabet[char.upper()] + ' '\n            elif char == ' ':\n                morse += ' '\n        return morse\n\n    def morse_to_signal(self, morse):\n        \"\"\"Converts morse code to an audio signal.\n\n        This method takes a string of morse code as input and generates a\n        corresponding audio signal. Dots and dashes are represented by sine\n        waves of appropriate durations, and pauses are represented by\n        silence.\n\n        Args:\n            morse (str): The morse code string to convert.\n\n        Returns:\n            numpy.ndarray: The generated audio signal.\n        \"\"\"\n        signal = np.array([], dtype=np.int16)\n        for char in morse:\n            if char == '.':\n                duration = self.dot_duration  # Using class-defined duration\n                t = np.linspace(0, duration, int(self.fs * duration), endpoint=False)\n                s = 0.5 * np.sin(2 * np.pi * self.f0 * t)\n                signal = np.concatenate((signal, np.int16(s * 32767)))\n                pause_samples = int(self.pause_duration * self.fs)\n                signal = np.concatenate((signal, np.zeros(pause_samples, dtype=np.int16)))\n\n            elif char == '-':\n                duration = self.dash_duration  # Using class-defined duration\n                t = np.linspace(0, duration, int(self.fs * duration), endpoint=False)\n                s = 0.5 * np.sin(2 * np.pi * self.f0 * t)\n                signal = np.concatenate((signal, np.int16(s * 32767)))\n                pause_samples = int(self.pause_duration * self.fs)\n                signal = np.concatenate((signal, np.zeros(pause_samples, dtype=np.int16)))\n\n            elif char == ' ':\n                pause_samples = int(self.word_pause_duration * self.fs)\n                signal = np.concatenate((signal, np.zeros(pause_samples, dtype=np.int16)))\n                pause_samples = int(self.pause_duration * self.fs)\n                signal = np.concatenate((signal, np.zeros(pause_samples, dtype=np.int16)))\n\n        return signal\n\n    def text_to_signal(self, text):\n        \"\"\"Converts text to a morse code audio signal.\n\n        This method takes text as input, converts it to morse code using the\n        `text_to_morse` method, and then converts the morse code to an audio\n        signal using the `morse_to_signal` method.\n\n        Args:\n            text (str): The text to convert to an audio signal.\n\n        Returns:\n            numpy.ndarray: The generated audio signal as a NumPy array.\n        \"\"\"\n        morse = self.text_to_morse(text)\n        return self.morse_to_signal(morse)\n\n"
  },
  {
    "path": "freedata_server/data_frame_factory.py",
    "content": "from modem_frametypes import FRAME_TYPE as FR_TYPE\nimport helpers\nimport codec2\nimport maidenhead\n\nclass DataFrameFactory:\n\n    LENGTH_SIG0_FRAME = 14\n    LENGTH_SIG1_FRAME = 14\n    LENGTH_ACK_FRAME = 3\n\n    \"\"\"\n        helpers.set_flag(byte, 'DATA-ACK-NACK', True, FLAG_POSITIONS)\n        helpers.get_flag(byte, 'DATA-ACK-NACK', FLAG_POSITIONS)    \n    \"\"\"\n    ARQ_FLAGS = {\n        'FINAL': 0,  # Bit-position for indicating the FINAL state\n        'ABORT': 1, # Bit-position for indicating the ABORT request\n        'CHECKSUM': 2,  # Bit-position for indicating the CHECKSUM is correct or not\n    }\n\n    BEACON_FLAGS = {\n        'AWAY_FROM_KEY': 0,  # Bit-position for indicating the AWAY FROM KEY state\n    }\n\n    P2P_FLAGS = {\n        'HAS_DATA': 0,  # Bit-position for indicating the BUFFER EMPTY state\n        'ANNOUNCE_ARQ': 1,  # Bit-position for announcing an ARQ session\n    }\n\n    def __init__(self, ctx):\n        self.ctx = ctx\n\n        self.myfullcall = f\"{self.ctx.config_manager.config['STATION']['mycall']}-{self.ctx.config_manager.config['STATION']['myssid']}\"\n        self.mygrid = maidenhead.generate_full_maidenhead(self.ctx.config_manager.config[\"STATION\"][\"mygrid\"])\n\n        # table for holding our frame templates\n        self.template_list = {}\n\n        self._load_broadcast_templates()\n        self._load_ping_templates()\n        self._load_arq_templates()\n        self._load_p2p_connection_templates()\n\n    def _load_broadcast_templates(self):\n        # cq frame\n        self.template_list[FR_TYPE.CQ.value] = {\n            \"frame_length\": self.LENGTH_SIG0_FRAME,\n            \"origin\": 6,\n            \"gridsquare\": 4\n        }\n\n        # qrv frame\n        self.template_list[FR_TYPE.QRV.value] = {\n            \"frame_length\": self.LENGTH_SIG0_FRAME,\n            \"origin\": 6,\n            \"gridsquare\": 4,\n            \"snr\": 1\n        }\n\n        # beacon frame\n        self.template_list[FR_TYPE.BEACON.value] = {\n            \"frame_length\": self.LENGTH_SIG0_FRAME,\n            \"origin\": 6,\n            \"gridsquare\": 4,\n            \"flag\": 1\n        }\n\n    def _load_ping_templates(self):\n        # ping frame\n        self.template_list[FR_TYPE.PING.value] = {\n            \"frame_length\": self.LENGTH_SIG0_FRAME,\n            \"destination_crc\": 3,\n            \"origin_crc\": 3,\n            \"origin\": 6\n        }\n\n        # ping ack\n        self.template_list[FR_TYPE.PING_ACK.value] = {\n            \"frame_length\": self.LENGTH_SIG0_FRAME,\n            \"destination_crc\": 3,\n            \"origin_crc\": 3,\n            \"gridsquare\": 4,\n            \"snr\": 1,\n        }\n\n\n    def _load_arq_templates(self):\n\n        self.template_list[FR_TYPE.ARQ_SESSION_OPEN.value] = {\n            \"frame_length\": self.LENGTH_SIG0_FRAME,\n            \"destination_crc\": 3,\n            \"origin\": 6,\n            \"session_id\": 1,\n            \"maximum_bandwidth\": 2,\n            \"protocol_version\" : 1\n        }\n\n        self.template_list[FR_TYPE.ARQ_SESSION_OPEN_ACK.value] = {\n            \"frame_length\": self.LENGTH_SIG0_FRAME,\n            \"session_id\": 1,\n            \"origin\": 6,\n            \"destination_crc\": 3,\n            \"version\": 1,\n            \"snr\": 1,\n            \"flag\": 1,\n        }\n\n        self.template_list[FR_TYPE.ARQ_SESSION_INFO.value] = {\n            \"frame_length\": self.LENGTH_SIG0_FRAME,\n            \"session_id\": 1,\n            \"total_length\": 4,\n            \"total_crc\": 4,\n            \"snr\": 1,\n            \"flag\": 1,\n            \"type\": 1,\n        }\n\n        self.template_list[FR_TYPE.ARQ_SESSION_INFO_ACK.value] = {\n            \"frame_length\": self.LENGTH_SIG0_FRAME,\n            \"session_id\": 1,\n            \"offset\": 4,\n            \"snr\": 1,\n            \"speed_level\": 1,\n            \"frames_per_burst\": 1,\n            \"flag\": 1,\n        }\n\n        self.template_list[FR_TYPE.ARQ_STOP.value] = {\n            \"frame_length\": self.LENGTH_SIG0_FRAME,\n            \"session_id\": 1,\n        }\n\n        self.template_list[FR_TYPE.ARQ_STOP_ACK.value] = {\n            \"frame_length\": self.LENGTH_SIG0_FRAME,\n            \"session_id\": 1,\n        }\n\n        # arq burst frame\n        self.template_list[FR_TYPE.ARQ_BURST_FRAME.value] = {\n            \"frame_length\": None,\n            \"session_id\": 1,\n            \"speed_level\": 1,\n            \"offset\": 4,\n            \"data\": \"dynamic\",\n        }\n\n        # arq burst ack\n        self.template_list[FR_TYPE.ARQ_BURST_ACK.value] = {\n            \"frame_length\": self.LENGTH_ACK_FRAME,\n            \"session_id\": 1,\n            #\"offset\":4,\n            \"speed_level\": 1,\n            #\"frames_per_burst\": 1,\n            #\"snr\": 1,\n            \"flag\": 1,\n        }\n    \n    def _load_p2p_connection_templates(self):\n        # p2p connect request\n        self.template_list[FR_TYPE.P2P_CONNECTION_CONNECT.value] = {\n            \"frame_length\": self.LENGTH_SIG1_FRAME,\n            \"destination\": 6,\n            \"origin\": 6,\n            \"session_id\": 1,\n        }\n        \n        # connect ACK\n        self.template_list[FR_TYPE.P2P_CONNECTION_CONNECT_ACK.value] = {\n            \"frame_length\": self.LENGTH_SIG1_FRAME,\n            \"destination_crc\": 3,\n            \"origin\": 6,\n            \"session_id\": 1,\n        }\n        \n        # heartbeat for \"is alive\"\n        self.template_list[FR_TYPE.P2P_CONNECTION_HEARTBEAT.value] = {\n            \"frame_length\": self.LENGTH_SIG1_FRAME,\n            \"session_id\": 1,\n            \"flag\": 1\n        }\n\n        # ack heartbeat\n        self.template_list[FR_TYPE.P2P_CONNECTION_HEARTBEAT_ACK.value] = {\n            \"frame_length\": self.LENGTH_SIG1_FRAME,\n            \"session_id\": 1,\n            \"flag\": 1,\n        }\n\n        # p2p payload frames\n        self.template_list[FR_TYPE.P2P_CONNECTION_PAYLOAD.value] = {\n            \"frame_length\": None,\n            \"session_id\": 1,\n            \"sequence_id\": 1,\n            \"flag\": 1,\n            \"data\": \"dynamic\",\n        }\n\n        # p2p payload frames\n        self.template_list[FR_TYPE.P2P_CONNECTION_PAYLOAD.value] = {\n            \"frame_length\": None,\n            \"session_id\": 1,\n            \"sequence_id\": 1,\n            \"flag\": 1,\n            \"data\": \"dynamic\",\n        }\n\n        # p2p payload frame ack\n        self.template_list[FR_TYPE.P2P_CONNECTION_PAYLOAD_ACK.value] = {\n            \"frame_length\": self.LENGTH_ACK_FRAME,\n            \"session_id\": 1,\n            \"sequence_id\": 1,\n        }\n        \n        # heartbeat for \"is alive\"\n        self.template_list[FR_TYPE.P2P_CONNECTION_DISCONNECT.value] = {\n            \"frame_length\": self.LENGTH_SIG1_FRAME,\n            \"session_id\": 1,\n        }\n\n        # ack heartbeat\n        self.template_list[FR_TYPE.P2P_CONNECTION_DISCONNECT_ACK.value] = {\n            \"frame_length\": self.LENGTH_SIG1_FRAME,\n            \"session_id\": 1,\n        }\n\n\n\n    def construct(self, frametype, content, frame_length = LENGTH_SIG1_FRAME):\n        frame_template = self.template_list[frametype.value]\n\n        if isinstance(frame_template[\"frame_length\"], int):\n            frame_length = frame_template[\"frame_length\"]\n        else:\n            frame_length -= 2\n\n        frame = bytearray(frame_length)\n        if frametype in [FR_TYPE.ARQ_BURST_ACK]:\n            buffer_position = 0\n        else:\n            frame[:1] = bytes([frametype.value])\n            buffer_position = 1\n        for key, item_length in frame_template.items():\n            if key == \"frame_length\":\n                continue\n            if not isinstance(item_length, int):\n                item_length = len(content[key])\n\n            #print(frame_length)\n            #print(item_length)\n            #print(content)\n            if buffer_position + item_length > frame_length:\n                raise OverflowError(\"Frame data overflow!\")\n            frame[buffer_position: buffer_position + item_length] = content[key]\n            buffer_position += item_length\n\n        return frame\n\n    def deconstruct(self, frame, mode_name=None):\n\n        buffer_position = 1\n        # Handle the case where the frame type is not recognized\n        #raise ValueError(f\"Unknown frame type: {frametype}\")\n        if mode_name in [\"SIGNALLING_ACK\"] and int.from_bytes(frame[:1], \"big\") not in [FR_TYPE.P2P_CONNECTION_PAYLOAD_ACK.value]:\n            frametype = FR_TYPE.ARQ_BURST_ACK.value\n            frame_template = self.template_list.get(frametype)\n            frame = bytes([frametype]) + frame\n        else:\n            # Extract frametype and get the corresponding template\n            frametype = int.from_bytes(frame[:1], \"big\")\n            frame_template = self.template_list.get(frametype)\n\n        extracted_data = {\"frame_type\": FR_TYPE(frametype).name, \"frame_type_int\": frametype}\n        for key, item_length in frame_template.items():\n            if key == \"frame_length\":\n                continue\n\n            # data is always on the last payload slots\n            if item_length in [\"dynamic\"] and key in[\"data\"]:\n                #print(len(frame))\n                data = frame[buffer_position:-2]\n                item_length = len(data)\n            else:\n                data = frame[buffer_position: buffer_position + item_length]\n\n            # Process the data based on the key\n            if key in [\"origin\", \"destination\"]:\n                extracted_data[key] = helpers.bytes_to_callsign(data).decode()\n\n            elif key in [\"origin_crc\", \"destination_crc\", \"total_crc\"]:\n                extracted_data[key] = data.hex()\n\n            elif key == \"gridsquare\":\n                extracted_data[key] = helpers.decode_grid(data)\n\n            elif key in [\"session_id\", \"speed_level\", \n                            \"frames_per_burst\", \"version\",\n                            \"offset\", \"total_length\", \"state\", \"type\", \"maximum_bandwidth\", \"protocol_version\"]:\n                extracted_data[key] = int.from_bytes(data, 'big')\n\n            elif key in [\"snr\"]:\n                extracted_data[key] = helpers.snr_from_bytes(data)\n\n            elif key == \"flag\":\n\n                data = int.from_bytes(data, \"big\")\n                extracted_data[key] = {}\n                # check for frametype for selecting the correspinding flag dictionary\n                if frametype in [FR_TYPE.ARQ_SESSION_OPEN_ACK.value, FR_TYPE.ARQ_SESSION_INFO_ACK.value, FR_TYPE.ARQ_BURST_ACK.value]:\n                    flag_dict = self.ARQ_FLAGS\n                    for flag in flag_dict:\n                        # Update extracted_data with the status of each flag\n                        # get_flag returns True or False based on the bit value at the flag's position\n                        extracted_data[key][flag] = helpers.get_flag(data, flag, flag_dict)\n\n                if frametype in [FR_TYPE.BEACON.value]:\n                    flag_dict = self.BEACON_FLAGS\n                    for flag in flag_dict:\n                        # Update extracted_data with the status of each flag\n                        # get_flag returns True or False based on the bit value at the flag's position\n                        extracted_data[key][flag] = helpers.get_flag(data, flag, flag_dict)\n\n                if frametype in [FR_TYPE.P2P_CONNECTION_PAYLOAD.value, FR_TYPE.P2P_CONNECTION_HEARTBEAT.value, FR_TYPE.P2P_CONNECTION_HEARTBEAT_ACK.value]:\n                    flag_dict = self.P2P_FLAGS\n                    for flag in flag_dict:\n                        # Update extracted_data with the status of each flag\n                        # get_flag returns True or False based on the bit value at the flag's position\n                        extracted_data[key][flag] = helpers.get_flag(data, flag, flag_dict)\n\n            else:\n                extracted_data[key] = data\n\n            buffer_position += item_length\n\n        return extracted_data\n\n    def get_bytes_per_frame(self, mode: codec2.FREEDV_MODE) -> int:\n        freedv = codec2.open_instance(mode.value)\n        bytes_per_frame = int(codec2.api.freedv_get_bits_per_modem_frame(freedv) / 8)\n        return bytes_per_frame\n    \n    def get_available_data_payload_for_mode(self, type: FR_TYPE, mode:codec2.FREEDV_MODE):\n        whole_frame_length = self.get_bytes_per_frame(mode)\n        available = whole_frame_length - 2 # 2Bytes CRC16\n        available -= 1 # Frame Type\n        for field, length in self.template_list[type.value].items():\n            if field != 'frame_length' and isinstance(length, int):\n                available -= length\n        return available\n\n    def build_ping(self, destination):\n        payload = {\n            \"destination_crc\": helpers.get_crc_24(destination),\n            \"origin_crc\": helpers.get_crc_24(self.myfullcall),\n            \"origin\": helpers.callsign_to_bytes(self.myfullcall),\n        }\n        return self.construct(FR_TYPE.PING, payload)\n\n    def build_ping_ack(self, destination, snr):\n        payload = {\n            \"destination_crc\": helpers.get_crc_24(destination),\n            \"origin_crc\": helpers.get_crc_24(self.myfullcall),\n            \"gridsquare\": helpers.encode_grid(self.mygrid),\n            \"snr\": helpers.snr_to_bytes(snr)\n        }\n        return self.construct(FR_TYPE.PING_ACK, payload)\n\n    def build_cq(self):\n        payload = {\n            \"origin\": helpers.callsign_to_bytes(self.myfullcall),\n            \"gridsquare\": helpers.encode_grid(self.mygrid)\n        }\n        return self.construct(FR_TYPE.CQ, payload)\n\n    def build_qrv(self, snr):\n        payload = {\n            \"origin\": helpers.callsign_to_bytes(self.myfullcall),\n            \"gridsquare\": helpers.encode_grid(self.mygrid),\n            \"snr\": helpers.snr_to_bytes(snr)\n        }\n        return self.construct(FR_TYPE.QRV, payload)\n\n    def build_beacon(self, flag_away_from_key=False):\n        flag = 0b00000000\n        if flag_away_from_key:\n            flag = helpers.set_flag(flag, 'AWAY_FROM_KEY', True, self.BEACON_FLAGS)\n\n        payload = {\n            \"origin\": helpers.callsign_to_bytes(self.myfullcall),\n            \"gridsquare\": helpers.encode_grid(self.mygrid),\n            \"flag\": flag.to_bytes(1, 'big'),\n\n        }\n        return self.construct(FR_TYPE.BEACON, payload)\n\n    def build_fec_is_writing(self):\n        payload = {\n            \"origin\": helpers.callsign_to_bytes(self.myfullcall),\n        }\n        return self.construct(FR_TYPE.IS_WRITING, payload)\n\n    def build_fec_wakeup(self, mode):\n        mode_int = codec2.freedv_get_mode_value_by_name(mode)\n\n        payload = {\n            \"origin\": helpers.callsign_to_bytes(self.myfullcall),\n            \"mode\": bytes([mode_int]),\n            \"n_bursts\": bytes([1]) # n payload bursts,\n\n        }\n        return self.construct(FR_TYPE.FEC_WAKEUP, payload)\n\n    def build_fec(self, mode, payload):\n        mode_int = codec2.freedv_get_mode_value_by_name(mode)\n        payload_per_frame = codec2.get_bytes_per_frame(mode_int) - 2\n        fec_payload_length = payload_per_frame - 1\n        fec_frame = bytearray(payload_per_frame)\n        fec_frame[:1] = bytes([FR_TYPE.FEC.value])\n        fec_frame[1:payload_per_frame] = bytes(payload[:fec_payload_length])\n        return fec_frame\n\n    def build_test(self, mode):\n        mode_int = codec2.freedv_get_mode_value_by_name(mode)\n        payload_per_frame = codec2.get_bytes_per_frame(mode_int) - 2\n        test_frame = bytearray(payload_per_frame)\n        test_frame[:1] = bytes([FR_TYPE.TEST_FRAME.value])\n        return test_frame\n\n    def build_arq_session_open(self, destination, session_id, maximum_bandwidth, protocol_version):\n        payload = {\n            \"destination_crc\": helpers.get_crc_24(destination),\n            \"origin\": helpers.callsign_to_bytes(self.myfullcall),\n            \"session_id\": session_id.to_bytes(1, 'big'),\n            \"maximum_bandwidth\": maximum_bandwidth.to_bytes(2, 'big'),\n            \"protocol_version\": protocol_version.to_bytes(1, 'big'),\n        }\n        return self.construct(FR_TYPE.ARQ_SESSION_OPEN, payload)\n\n    def build_arq_session_open_ack(self, session_id, destination, version, snr, flag_abort=False):\n        flag = 0b00000000\n        if flag_abort:\n            flag = helpers.set_flag(flag, 'ABORT', True, self.ARQ_FLAGS)\n\n        payload = {\n            \"session_id\": session_id.to_bytes(1, 'big'),\n            \"origin\": helpers.callsign_to_bytes(self.myfullcall),\n            \"destination_crc\": helpers.get_crc_24(destination),\n            \"version\": bytes([version]),\n            \"snr\": helpers.snr_to_bytes(1),\n            \"flag\": flag.to_bytes(1, 'big'),\n        }\n        return self.construct(FR_TYPE.ARQ_SESSION_OPEN_ACK, payload)\n    \n    def build_arq_session_info(self, session_id: int, total_length: int, total_crc: bytes, snr, type):\n        flag = 0b00000000\n\n        payload = {\n            \"session_id\": session_id.to_bytes(1, 'big'),\n            \"total_length\": total_length.to_bytes(4, 'big'),\n            \"total_crc\": total_crc,\n            \"snr\": helpers.snr_to_bytes(1),\n            \"flag\": flag.to_bytes(1, 'big'),\n            \"type\": type.to_bytes(1, 'big'),\n\n        }\n        return self.construct(FR_TYPE.ARQ_SESSION_INFO, payload)\n\n    def build_arq_stop(self, session_id: int):\n        payload = {\n            \"session_id\": session_id.to_bytes(1, 'big'),\n        }\n        return self.construct(FR_TYPE.ARQ_STOP, payload)\n\n    def build_arq_stop_ack(self, session_id: int):\n        payload = {\n            \"session_id\": session_id.to_bytes(1, 'big'),\n        }\n        return self.construct(FR_TYPE.ARQ_STOP_ACK, payload)\n\n    def build_arq_session_info_ack(self, session_id, offset, snr, speed_level, frames_per_burst, flag_final=False, flag_abort=False):\n        flag = 0b00000000\n        if flag_final:\n            flag = helpers.set_flag(flag, 'FINAL', True, self.ARQ_FLAGS)\n        if flag_abort:\n            flag = helpers.set_flag(flag, 'ABORT', True, self.ARQ_FLAGS)\n\n        payload = {\n            \"frame_length\": self.LENGTH_SIG0_FRAME,\n            \"session_id\": session_id.to_bytes(1, 'big'),\n            \"offset\": offset.to_bytes(4, 'big'),\n            \"snr\": helpers.snr_to_bytes(1),\n            \"speed_level\": speed_level.to_bytes(1, 'big'),\n            \"frames_per_burst\": frames_per_burst.to_bytes(1, 'big'),\n            \"flag\": flag.to_bytes(1, 'big'),\n        }        \n        return self.construct(FR_TYPE.ARQ_SESSION_INFO_ACK, payload)\n\n    def build_arq_burst_frame(self, freedv_mode: codec2.FREEDV_MODE, session_id: int, offset: int, data: bytes, speed_level: int):\n        payload = {\n            \"session_id\": session_id.to_bytes(1, 'big'),\n            \"speed_level\": speed_level.to_bytes(1, 'big'),\n            \"offset\": offset.to_bytes(4, 'big'),\n            \"data\": data,\n        }\n        return self.construct(\n            FR_TYPE.ARQ_BURST_FRAME, payload, self.get_bytes_per_frame(freedv_mode)\n        )\n\n    def build_arq_burst_ack(self, session_id: bytes, speed_level: int, flag_final=False, flag_checksum=False, flag_abort=False):\n        flag = 0b00000000\n        if flag_final:\n            flag = helpers.set_flag(flag, 'FINAL', True, self.ARQ_FLAGS)\n\n        if flag_checksum:\n            flag = helpers.set_flag(flag, 'CHECKSUM', True, self.ARQ_FLAGS)\n\n        if flag_abort:\n            flag = helpers.set_flag(flag, 'ABORT', True, self.ARQ_FLAGS)\n\n        payload = {\n            \"session_id\": session_id.to_bytes(1, 'big'),\n            \"speed_level\": speed_level.to_bytes(1, 'big'),\n            \"flag\": flag.to_bytes(1, 'big'),\n        }\n        return self.construct(FR_TYPE.ARQ_BURST_ACK, payload)\n    \n    def build_p2p_connection_connect(self, destination, origin, session_id):\n        payload = {\n            \"destination\": helpers.callsign_to_bytes(destination),\n            \"origin\": helpers.callsign_to_bytes(origin),\n            \"session_id\": session_id.to_bytes(1, 'big'),\n        }\n        return self.construct(FR_TYPE.P2P_CONNECTION_CONNECT, payload)\n    \n    def build_p2p_connection_connect_ack(self, destination, origin, session_id):\n        payload = {\n            \"destination_crc\": helpers.get_crc_24(destination),\n            \"origin\": helpers.callsign_to_bytes(origin),\n            \"session_id\": session_id.to_bytes(1, 'big'),\n        }\n        return self.construct(FR_TYPE.P2P_CONNECTION_CONNECT_ACK, payload)\n    \n    def build_p2p_connection_heartbeat(self, session_id, flag_has_data=False, flag_announce_arq=False):\n        flag = 0b00000000\n        if flag_has_data:\n            flag = helpers.set_flag(flag, 'HAS_DATA', True, self.P2P_FLAGS)\n        if flag_announce_arq:\n            flag = helpers.set_flag(flag, 'ANNOUNCE_ARQ', True, self.P2P_FLAGS)\n\n        payload = {\n            \"session_id\": session_id.to_bytes(1, 'big'),\n            \"flag\": flag.to_bytes(1, 'big'),\n        }\n        return self.construct(FR_TYPE.P2P_CONNECTION_HEARTBEAT, payload)\n\n    def build_p2p_connection_heartbeat_ack(self, session_id, flag_has_data=False, flag_announce_arq=False):\n        flag = 0b00000000\n        if flag_has_data:\n            flag = helpers.set_flag(flag, 'HAS_DATA', True, self.P2P_FLAGS)\n        if flag_announce_arq:\n            flag = helpers.set_flag(flag, 'ANNOUNCE_ARQ', True, self.P2P_FLAGS)\n\n        payload = {\n            \"session_id\": session_id.to_bytes(1, 'big'),\n            \"flag\": flag.to_bytes(1, 'big'),\n        }\n        return self.construct(FR_TYPE.P2P_CONNECTION_HEARTBEAT_ACK, payload)\n    \n    def build_p2p_connection_payload(self, freedv_mode: codec2.FREEDV_MODE, session_id: int, sequence_id: int, data: bytes, flag_has_data=False, flag_announce_arq=False):\n        flag = 0b00000000\n        if flag_has_data:\n            flag = helpers.set_flag(flag, 'HAS_DATA', True, self.P2P_FLAGS)\n        if flag_announce_arq:\n            flag = helpers.set_flag(flag, 'ANNOUNCE_ARQ', True, self.P2P_FLAGS)\n\n        payload = {\n            \"session_id\": session_id.to_bytes(1, 'big'),\n            \"sequence_id\": sequence_id.to_bytes(1, 'big'),\n            \"flag\": flag.to_bytes(1, 'big'),\n            \"data\": data,\n        }\n        #print(self.get_bytes_per_frame(freedv_mode))\n        return self.construct(\n            FR_TYPE.P2P_CONNECTION_PAYLOAD,\n            payload,\n            self.get_bytes_per_frame(freedv_mode),\n        )\n    \n    def build_p2p_connection_payload_ack(self, session_id, sequence_id):\n        payload = {\n            \"session_id\": session_id.to_bytes(1, 'big'),\n            \"sequence_id\": sequence_id.to_bytes(1, 'big'),\n        }\n        return self.construct(FR_TYPE.P2P_CONNECTION_PAYLOAD_ACK, payload)\n\n    def build_p2p_connection_disconnect(self, session_id):\n        payload = {\n            \"session_id\": session_id.to_bytes(1, 'big'),\n        }\n        return self.construct(FR_TYPE.P2P_CONNECTION_DISCONNECT, payload)\n\n    def build_p2p_connection_disconnect_ack(self, session_id):\n        payload = {\n            \"session_id\": session_id.to_bytes(1, 'big'),\n        }\n        return self.construct(FR_TYPE.P2P_CONNECTION_DISCONNECT_ACK, payload)\n"
  },
  {
    "path": "freedata_server/demodulator.py",
    "content": "import numpy as np\nimport codec2\nimport ctypes\nimport structlog\nimport threading\nimport audio\nimport itertools\nfrom audio_buffer import CircularBuffer\n\n\nfrom codec2 import (FREEDV_MODE)\n\nTESTMODE = False\n\nclass Demodulator():\n\n    MODE_DICT = {}\n    # Iterate over the FREEDV_MODE enum members\n    for mode in codec2.FREEDV_MODE:\n            MODE_DICT[mode.value] = {\n                'decode': False,\n                'bytes_per_frame': None,\n                'bytes_out': None,\n                'audio_buffer': None,\n                'nin': None,\n                'instance': None,\n                'state_buffer': [],\n                'name': mode.name.upper(),\n                'decoding_thread': None\n            }\n\n    def __init__(self, ctx):\n        self.ctx = ctx\n\n        self.log = structlog.get_logger(\"Demodulator\")\n\n        self.shutdown_flag = threading.Event()\n\n        self.AUDIO_FRAMES_PER_BUFFER_RX = 4800\n        self.buffer_overflow_counter = [0] * len(codec2.FREEDV_MODE)\n        self.is_codec2_traffic_counter = 0\n        self.is_codec2_traffic_cooldown = 5\n\n        # Audio Stream object\n        self.stream = None\n\n        # init codec2 resampler\n        self.resampler = codec2.resampler()\n\n        self.init_codec2()\n\n        # enable decoding of signalling modes\n        if self.ctx.config_manager.config['EXP'].get('enable_vhf'):\n            self.MODE_DICT[codec2.FREEDV_MODE.data_vhf_1.value][\"decode\"] = True\n            self.MODE_DICT[codec2.FREEDV_MODE.signalling.value][\"decode\"] = True\n            self.MODE_DICT[codec2.FREEDV_MODE.signalling_ack.value][\"decode\"] = True\n        else:\n            self.MODE_DICT[codec2.FREEDV_MODE.signalling.value][\"decode\"] = True\n            self.MODE_DICT[codec2.FREEDV_MODE.signalling_ack.value][\"decode\"] = True\n\n\n\n    def init_codec2(self):\n        # Open codec2 instances\n        for mode in codec2.FREEDV_MODE:\n            self.init_codec2_mode(mode.value)\n\n\n    def init_codec2_mode(self, mode):\n        \"\"\"\n        Init codec2 and return some important parameters\n        \"\"\"\n\n        # create codec2 instance\n        c2instance = codec2.open_instance(mode)\n\n        # get bytes per frame\n        bytes_per_frame = int(\n            codec2.api.freedv_get_bits_per_modem_frame(c2instance) / 8\n        )\n        # create byte out buffer\n        bytes_out = ctypes.create_string_buffer(bytes_per_frame)\n        # set initial frames per burst\n        codec2.api.freedv_set_frames_per_burst(c2instance, 1)\n\n        # init audio buffer\n        if self.ctx.config_manager.config['EXP'].get('enable_ring_buffer'):\n            self.log.debug(\"[MDM] [buffer]\", enable_ring_buffer=True)\n            audio_buffer = CircularBuffer(2 * self.AUDIO_FRAMES_PER_BUFFER_RX)\n        else:\n            self.log.debug(\"[MDM] [buffer]\", enable_ring_buffer=False)\n            audio_buffer = codec2.audio_buffer(2 * self.AUDIO_FRAMES_PER_BUFFER_RX)\n\n\n\n\n\n        # get initial nin\n        nin = codec2.api.freedv_nin(c2instance)\n\n        # Additional Datac0-specific information - these are not referenced anywhere else.\n        # self.signalling_datac0_payload_per_frame = self.signalling_datac0_bytes_per_frame - 2\n        # self.signalling_datac0_n_nom_modem_samples = codec2.api.freedv_get_n_nom_modem_samples(\n        #     self.signalling_datac0_freedv\n        # )\n        # self.signalling_datac0_n_tx_modem_samples = codec2.api.freedv_get_n_tx_modem_samples(\n        #     self.signalling_datac0_freedv\n        # )\n        # self.signalling_datac0_n_tx_preamble_modem_samples = (\n        #     codec2.api.freedv_get_n_tx_preamble_modem_samples(self.signalling_datac0_freedv)\n        # )\n        # self.signalling_datac0_n_tx_postamble_modem_samples = (\n        #     codec2.api.freedv_get_n_tx_postamble_modem_samples(self.signalling_datac0_freedv)\n        # )\n\n        self.MODE_DICT[mode][\"instance\"] = c2instance\n        self.MODE_DICT[mode][\"bytes_per_frame\"] = bytes_per_frame\n        self.MODE_DICT[mode][\"bytes_out\"] = bytes_out\n        self.MODE_DICT[mode][\"audio_buffer\"] = audio_buffer\n        self.MODE_DICT[mode][\"nin\"] = nin\n\n    def start(self, stream):\n        if self.ctx.TESTMODE:\n            self.stream = None\n        else:\n            self.stream = stream\n\n        for mode in self.MODE_DICT:\n            # Start decoder threads\n            self.MODE_DICT[mode]['decoding_thread'] = threading.Thread(\n                target=self.demodulate_audio,args=[mode], name=self.MODE_DICT[mode]['name'], daemon=True\n            )\n            self.MODE_DICT[mode]['decoding_thread'].start()\n\n    def get_frequency_offset(self, freedv: ctypes.c_void_p) -> float:\n        \"\"\"\n        Ask codec2 for the calculated (audio) frequency offset of the received signal.\n\n        :param freedv: codec2 instance to query\n        :type freedv: ctypes.c_void_p\n        :return: Offset of audio frequency in Hz\n        :rtype: float\n        \"\"\"\n        modemStats = codec2.MODEMSTATS()\n        codec2.api.freedv_get_modem_extended_stats(freedv, ctypes.byref(modemStats))\n        offset = round(modemStats.foff) * (-1)\n        return offset\n\n    def demodulate_audio(self, mode) -> int:\n        \"\"\"\n        De-modulate supplied audio stream with supplied codec2 instance.\n        Decoded audio is placed into `bytes_out`.\n        \"\"\"\n\n        audiobuffer = self.MODE_DICT[mode][\"audio_buffer\"]\n        nin = self.MODE_DICT[mode][\"nin\"]\n        freedv = self.MODE_DICT[mode][\"instance\"]\n        bytes_out = self.MODE_DICT[mode][\"bytes_out\"]\n        bytes_per_frame= self.MODE_DICT[mode][\"bytes_per_frame\"]\n        state_buffer = self.MODE_DICT[mode][\"state_buffer\"]\n        mode_name = self.MODE_DICT[mode][\"name\"]\n\n        last_rx_status = 0\n\n        try:\n            while self.stream and self.stream.active and not self.shutdown_flag.is_set() or self.ctx.TESTMODE:\n                threading.Event().wait(0.01)\n                if audiobuffer.nbuffer >= nin and not self.shutdown_flag.is_set():\n                    # demodulate audio\n                    if not self.ctx.state_manager.isTransmitting():\n                        nbytes = codec2.api.freedv_rawdatarx(\n                            freedv, bytes_out, audiobuffer.buffer.ctypes\n                        )\n\n                        # get current freedata_server states and write to list\n                        # 1 trial\n                        # 2 sync\n                        # 3 trial sync\n                        # 6 decoded\n                        # 10 error decoding == NACK\n                        rx_status = codec2.api.freedv_get_rx_status(freedv)\n\n                        if rx_status not in [0]:\n                            self.is_codec2_traffic_counter = self.is_codec2_traffic_cooldown\n\n                            if last_rx_status != rx_status:\n                                self.log.debug(f\"[MDM] [DEMOD] [mode={mode_name}] [State: {last_rx_status} >>> {rx_status}]\", sync_flag=codec2.api.rx_sync_flags_to_text[rx_status])\n                                last_rx_status = rx_status\n\n                        # decrement codec traffic counter for making state smoother\n                        if self.is_codec2_traffic_counter > 0:\n                            self.is_codec2_traffic_counter -= 1\n                            self.ctx.state_manager.set_channel_busy_condition_codec2(True)\n                        else:\n                            self.ctx.state_manager.set_channel_busy_condition_codec2(False)\n                        if rx_status == 10:\n                            state_buffer.append(rx_status)\n                    else:\n                        nbytes = 0\n                        self.reset_data_sync()\n                        #audiobuffer.nbuffer = 0\n\n\n\n                    audiobuffer.pop(nin)\n                    nin = codec2.api.freedv_nin(freedv)\n                    if nbytes == bytes_per_frame:\n                        self.log.debug(\n                            \"[MDM] [demod_audio] Pushing received data to received_queue\", nbytes=nbytes, mode_name=mode_name\n                        )\n                        snr = self.calculate_snr(freedv)\n                        self.get_scatter(freedv)\n\n                        item = {\n                            'payload': bytes_out,\n                            'freedv': freedv,\n                            'bytes_per_frame': bytes_per_frame,\n                            'snr': snr,\n                            'frequency_offset': self.get_frequency_offset(freedv),\n                            'mode_name': mode_name\n                        }\n\n                        self.ctx.rf_modem.data_queue_received.put(item)\n\n\n                        state_buffer = []\n        except Exception as e:\n            error_message = str(e)\n            # we expect this error when shutdown\n            if error_message in [\"PortAudio not initialized [PaErrorCode -10000]\", \"Invalid stream pointer [PaErrorCode -9988]\"]:\n                return\n            else:\n                self.log.warning(\n                    \"[MDM] [demod_audio] demod loop ended\", mode=mode_name, e=e\n                )\n                audio.sd._terminate()\n\n\n    def set_frames_per_burst(self, frames_per_burst: int) -> None:\n        \"\"\"\n        Configure codec2 to send the configured number of frames per burst.\n\n        :param frames_per_burst: Number of frames per burst requested\n        :type frames_per_burst: int\n        \"\"\"\n        # Limit frames per burst to acceptable values\n        frames_per_burst = min(frames_per_burst, 1)\n        frames_per_burst = max(frames_per_burst, 5)\n\n        # FIXME\n        frames_per_burst = 1\n\n        codec2.api.freedv_set_frames_per_burst(self.dat0_datac1_freedv, frames_per_burst)\n        codec2.api.freedv_set_frames_per_burst(self.dat0_datac3_freedv, frames_per_burst)\n        codec2.api.freedv_set_frames_per_burst(self.dat0_datac4_freedv, frames_per_burst)\n\n    def calculate_snr(self, freedv: ctypes.c_void_p) -> float:\n        \"\"\"\n        Ask codec2 for data about the received signal and calculate\n        the signal-to-noise ratio.\n\n        :param freedv: codec2 instance to query\n        :type freedv: ctypes.c_void_p\n        :return: Signal-to-noise ratio of the decoded data\n        :rtype: float\n        \"\"\"\n        try:\n            modem_stats_snr = ctypes.c_float()\n            modem_stats_sync = ctypes.c_int()\n\n            codec2.api.freedv_get_modem_stats(\n                freedv, ctypes.byref(modem_stats_sync), ctypes.byref(modem_stats_snr)\n            )\n            modem_stats_snr = modem_stats_snr.value\n            modem_stats_sync = modem_stats_sync.value\n\n            snr = round(modem_stats_snr, 1)\n            self.log.info(\"[MDM] calculate_snr: \", snr=snr)\n            # snr = np.clip(\n            #    snr, -127, 127\n            # )  # limit to max value of -128/128 as a possible fix of #188\n            return int(snr)\n        except Exception as err:\n            self.log.error(f\"[MDM] calculate_snr: Exception: {err}\")\n            return 0\n\n    def get_scatter(self, freedv: ctypes.c_void_p) -> None:\n        \"\"\"\n        Ask codec2 for data about the received signal and calculate the scatter plot.\n\n        :param freedv: codec2 instance to query\n        :type freedv: ctypes.c_void_p\n        \"\"\"\n       \n        modemStats = codec2.MODEMSTATS()\n        ctypes.cast(\n            codec2.api.freedv_get_modem_extended_stats(freedv, ctypes.byref(modemStats)),\n            ctypes.c_void_p,\n        )\n\n        scatterdata = []\n        # original function before itertool\n        # for i in range(codec2.MODEM_STATS_NC_MAX):\n        #    for j in range(1, codec2.MODEM_STATS_NR_MAX, 2):\n        #        # print(f\"{modemStats.rx_symbols[i][j]} - {modemStats.rx_symbols[i][j]}\")\n        #        xsymbols = round(modemStats.rx_symbols[i][j - 1] // 1000)\n        #        ysymbols = round(modemStats.rx_symbols[i][j] // 1000)\n        #        if xsymbols != 0.0 and ysymbols != 0.0:\n        #            scatterdata.append({\"x\": str(xsymbols), \"y\": str(ysymbols)})\n\n        for i, j in itertools.product(range(codec2.MODEM_STATS_NC_MAX), range(1, codec2.MODEM_STATS_NR_MAX, 2)):\n            # print(f\"{modemStats.rx_symbols[i][j]} - {modemStats.rx_symbols[i][j]}\")\n            xsymbols = round(modemStats.rx_symbols[i][j - 1] // 1000)\n            ysymbols = round(modemStats.rx_symbols[i][j] // 1000)\n            if xsymbols != 0.0 and ysymbols != 0.0:\n                scatterdata.append({\"x\": str(xsymbols), \"y\": str(ysymbols)})\n\n        # Send all the data if we have too-few samples, otherwise send a sampling\n        if 150 > len(scatterdata) > 0:\n            self.ctx.event_manager.send_scatter_change(scatterdata)\n\n        else:\n            # only take every tenth data point\n            self.ctx.event_manager.send_scatter_change(scatterdata[::10])\n\n    def reset_data_sync(self) -> None:\n        \"\"\"\n        reset sync state for modes\n\n        :param frames_per_burst: Number of frames per burst requested\n        :type frames_per_burst: int\n        \"\"\"\n        for mode in self.MODE_DICT:\n            codec2.api.freedv_set_sync(self.MODE_DICT[mode][\"instance\"], 0)\n\n    def set_decode_mode(self, modes_to_decode=None, is_arq_irs=False, is_p2p_connection=False):\n        # Reset all modes to not decode\n        for m in self.MODE_DICT:\n            self.MODE_DICT[m][\"decode\"] = False\n\n        # signalling is always true\n        self.MODE_DICT[codec2.FREEDV_MODE.signalling.value][\"decode\"] = True\n\n        if self.ctx.config_manager.config['EXP'].get('enable_vhf'):\n            self.MODE_DICT[codec2.FREEDV_MODE.data_vhf_1.value][\"decode\"] = True\n\n\n        # we only need to decode signalling ack as ISS or within P2P Connection\n        if is_arq_irs and not is_p2p_connection:\n            self.MODE_DICT[codec2.FREEDV_MODE.signalling_ack.value][\"decode\"] = False\n        else:\n            self.MODE_DICT[codec2.FREEDV_MODE.signalling_ack.value][\"decode\"] = True\n\n\n        # lowest speed level is always true\n        # TODO DO we need this for all states? we only need this on IRS and P2P Connection\n        self.MODE_DICT[codec2.FREEDV_MODE.datac4.value][\"decode\"] = True\n\n        # Enable specified modes\n        if modes_to_decode:\n            for mode, decode in modes_to_decode.items():\n                if mode in self.MODE_DICT:\n                    self.MODE_DICT[mode][\"decode\"] = decode\n\n    def shutdown(self):\n        print(\"shutting down demodulators...\")\n        self.shutdown_flag.set()\n        for mode in self.MODE_DICT:\n            self.MODE_DICT[mode]['decoding_thread'].join(3)"
  },
  {
    "path": "freedata_server/event_manager.py",
    "content": "import base64\nimport json\nimport structlog\n\nclass EventManager:\n    \"\"\"Manages and broadcasts events within the FreeDATA server.\n\n    This class handles the broadcasting of various events, including PTT\n    changes, scatter changes, buffer overflows, custom events, ARQ session\n    updates, and freedata_server status changes, to multiple queues. It\n    provides a centralized mechanism for distributing event information\n    throughout the application.\n    \"\"\"\n\n    def __init__(self, ctx, queues):\n        \"\"\"Initializes the EventManager with a list of queues.\n\n        Args:\n            queues (list): A list of queues to which events will be broadcast.\n        \"\"\"\n        self.queues = queues\n        self.ctx = ctx\n        self.logger = structlog.get_logger('Event Manager')\n        self.lastpttstate = False\n\n    def broadcast(self, data):\n        \"\"\"Broadcasts an event to all registered queues.\n\n        This method broadcasts the given event data to all queues registered\n        with the EventManager. It clears a queue if its size exceeds 10 to\n        prevent excessive queue buildup.\n\n        Args:\n            data: The event data to broadcast.\n        \"\"\"\n        if self.ctx.TESTMODE:\n            self.ctx.TESTMODE_EVENTS.put(data)\n\n        for q in self.queues:\n            self.logger.debug(f\"Event: \", ev=data)\n            if q.qsize() > 10:\n                q.queue.clear()\n            q.put(data)\n\n    def send_ptt_change(self, on:bool = False):\n        \"\"\"Sends a PTT change event.\n\n        This method broadcasts a \"ptt\" event indicating whether the Push-to-Talk\n        (PTT) is activated or deactivated. It avoids sending duplicate events\n        by checking the last PTT state.\n\n        Args:\n            on (bool, optional): True if PTT is activated, False otherwise. Defaults to False.\n        \"\"\"\n        if (on == self.lastpttstate):\n            return\n        self.lastpttstate= on\n        self.broadcast({\"ptt\": bool(on)})\n\n    def send_scatter_change(self, data):\n        \"\"\"Sends a scatter change event.\n\n        This method broadcasts a \"scatter\" event containing the provided\n        scatter data as a JSON string.\n\n        Args:\n            data: The scatter data to send.\n        \"\"\"\n        self.broadcast({\"scatter\": json.dumps(data)})\n\n    def send_buffer_overflow(self, data):\n        \"\"\"Sends a buffer overflow event.\n\n        This method broadcasts a \"buffer-overflow\" event, indicating that a\n        buffer overflow has occurred. The event data includes the provided\n        data converted to a string.\n\n        Args:\n            data: The buffer overflow data to send.\n        \"\"\"\n        self.broadcast({\"buffer-overflow\": str(data)})\n\n    def send_custom_event(self, **event_data):\n        \"\"\"Sends a custom event.\n\n        This method broadcasts a custom event with the provided keyword\n        arguments as the event data. This allows for flexible creation and\n        distribution of application-specific events.\n\n        Args:\n            **event_data: Keyword arguments representing the event data.\n        \"\"\"\n        self.broadcast(event_data)\n\n    def send_arq_session_new(self, outbound: bool, session_id, dxcall, total_bytes, state):\n        \"\"\"Sends an event for a new ARQ session.\n\n        This method broadcasts an event indicating the start of a new ARQ\n        (Automatic Repeat reQuest) session. The event includes information\n        about the session's direction (inbound or outbound), session ID,\n        destination callsign, total bytes to be transferred, and initial\n        state.\n\n        Args:\n            outbound (bool): True if the session is outbound (sending data),\n                False if it's inbound (receiving data).\n            session_id: The unique ID of the ARQ session.\n            dxcall (str): The callsign of the remote station.\n            total_bytes (int): The total number of bytes to be transferred.\n            state (str): The initial state of the ARQ session.\n        \"\"\"\n        direction = 'outbound' if outbound else 'inbound'\n        event = {\n                \"type\": \"arq\",\n                f\"arq-transfer-{direction}\": {\n                'session_id': session_id,\n                'dxcall': dxcall,\n                'total_bytes': total_bytes,\n                'state': state,\n            }\n        }\n        self.broadcast(event)\n\n    def send_arq_session_progress(self, outbound: bool, session_id, dxcall, received_bytes, total_bytes, state, speed_level, statistics=None):\n        \"\"\"Sends an ARQ session progress update event.\n\n        This method broadcasts an event indicating the progress of an ARQ\n        session. The event includes the session ID, destination callsign,\n        received and total bytes, current state, speed level, and any\n        relevant statistics.\n\n        Args:\n            outbound (bool): True if the session is outbound, False otherwise.\n            session_id: The ID of the ARQ session.\n            dxcall (str): The callsign of the remote station.\n            received_bytes (int): The number of bytes received so far.\n            total_bytes (int): The total number of bytes to be transferred.\n            state (str): The current state of the ARQ session.\n            speed_level: The current speed level of the ARQ session.\n            statistics (dict, optional): A dictionary containing session statistics. Defaults to None.\n        \"\"\"\n        if statistics is None:\n            statistics = {}\n\n        direction = 'outbound' if outbound else 'inbound'\n        event = {\n                \"type\": \"arq\",\n                f\"arq-transfer-{direction}\": {\n                'session_id': session_id,\n                'dxcall': dxcall,\n                'received_bytes': received_bytes,\n                'total_bytes': total_bytes,\n                'state': state,\n                'speed_level': speed_level,\n                'statistics': statistics,\n            }\n        }\n        self.broadcast(event)\n\n    def send_arq_session_finished(self, outbound: bool, session_id, dxcall, success: bool, state: bool, data=False, statistics=None):\n        \"\"\"Sends an ARQ session finished event.\n\n        This method broadcasts an event indicating the completion of an ARQ\n        session. The event includes information about the session's direction,\n        ID, destination callsign, success status, final state, data\n        (if any), and statistics. It base64-encodes any data included in\n        the event.\n\n        Args:\n            outbound (bool): True if the session was outbound, False otherwise.\n            session_id: The ID of the ARQ session.\n            dxcall (str): The callsign of the remote station.\n            success (bool): True if the session completed successfully, False otherwise.\n            state (str): The final state of the ARQ session.\n            data (any, optional): The data transferred during the session. Defaults to False.\n            statistics (dict, optional): A dictionary of session statistics. Defaults to None.\n        \"\"\"\n        if statistics is None:\n            statistics = {}\n        if data:\n            if isinstance(data, dict):\n                data = json.dumps(data).encode('utf-8')\n                # Base64 encode the bytes-like object\n            data = base64.b64encode(data).decode(\"UTF-8\")\n        direction = 'outbound' if outbound else 'inbound'\n        event = {\n                \"type\" : \"arq\",\n                f\"arq-transfer-{direction}\": {\n                'session_id': session_id,\n                'dxcall': dxcall,\n                'statistics': statistics,\n                'success': bool(success),\n                'state': state,\n                'data': data\n            }\n        }\n        self.broadcast(event)\n\n    def modem_started(self):\n        \"\"\"Sends a freedata_server started event.\n\n        This method broadcasts an event indicating that the FreeDATA freedata_server\n        has started successfully.\n        \"\"\"\n        event = {\"freedata_server\": \"started\"}\n        self.broadcast(event)\n\n    def modem_restarted(self):\n        \"\"\"Sends a freedata_server restarted event.\n\n        This method broadcasts an event indicating that the FreeDATA freedata_server\n        has been restarted.\n        \"\"\"\n        event = {\"freedata_server\": \"restarted\"}\n        self.broadcast(event)\n\n    def modem_stopped(self):\n        \"\"\"Sends a freedata_server stopped event.\n\n        This method broadcasts an event indicating that the FreeDATA freedata_server\n        has stopped.\n        \"\"\"\n        event = {\"freedata_server\": \"stopped\"}\n        self.broadcast(event)\n\n    def modem_failed(self):\n        \"\"\"Sends a freedata_server failed event.\n\n        This method broadcasts an event indicating that the FreeDATA freedata_server\n        has failed to start or has encountered an error.\n        \"\"\"\n        event = {\"freedata_server\": \"failed\"}\n        self.broadcast(event)\n\n    def freedata_message_db_change(self, message_id=None):\n        \"\"\"Sends a FreeDATA message database change event.\n\n        This method broadcasts an event indicating that the FreeDATA message\n        database has been changed. The event includes the ID of the message\n        that triggered the change, if available.\n\n        Args:\n            message_id (any, optional): The ID of the changed message. Defaults to None.\n        \"\"\"\n        self.broadcast({\"message-db\": \"changed\", \"message_id\": message_id})\n\n    def freedata_logging(self, type, status, message):\n        \"\"\"Broadcasts a FreeDATA logging event.\n\n        This method broadcasts an event related to FreeDATA logging,\n        indicating the type of logging endpoint and its status. It is\n        used to inform other parts of the application about logging\n        activities.\n\n        Args:\n            type (str): The type of logging endpoint (e.g., \"file\", \"websocket\").\n            status (any): The status of the logging operation.\n            message (str): The message to be displayed\n        \"\"\"\n\n        self.broadcast({\"type\": \"message-logging\", \"endpoint\": type, \"status\": status, \"message\": message})\n"
  },
  {
    "path": "freedata_server/exceptions.py",
    "content": "\"\"\"\nCustom exceptions for FreeDATA Python code\n\"\"\"\n\n\nclass NoCallsign(UserWarning):\n    \"\"\"Raised when a required callsign is not provided\"\"\"\n\n\nclass MessageStatusError(UserWarning):\n    pass"
  },
  {
    "path": "freedata_server/explorer.py",
    "content": "# -*- coding: UTF-8 -*-\n\"\"\"\nCreated on 05.11.23\n\n@author: DJ2LS\n\"\"\"\n# pylint: disable=invalid-name, line-too-long, c-extension-no-member\n# pylint: disable=import-outside-toplevel, attribute-defined-outside-init\n\nimport requests\nimport json\nimport structlog\nfrom constants import EXPLORER_API_URL\n\nlog = structlog.get_logger(\"explorer\")\n\nclass Explorer:\n    \"\"\"Pushes station and last heard data to the FreeDATA explorer.\n\n    This class collects station information, including callsign, gridsquare,\n    frequency, signal strength, version, bandwidth, beacon status, and\n    last heard stations, and pushes this data to the FreeDATA explorer API.\n    \"\"\"\n    def __init__(self, ctx):\n        \"\"\"Initializes the Explorer.\n\n        This method initializes the Explorer with the modem version,\n        configuration manager, state manager, and the URL of the FreeDATA\n        explorer API.\n\n        Args:\n            modem_version (str): The version of the FreeDATA modem.\n            config_manager (ConfigManager): The configuration manager object.\n            states (StateManager): The state manager object.\n        \"\"\"\n        self.ctx = ctx\n        self.modem_version = self.ctx.constants.MODEM_VERSION\n        self.explorer_url = self.ctx.constants.EXPLORER_API_URL\n\n    def push(self):\n        \"\"\"Pushes station and last heard data to the explorer.\n\n        This method collects station information from the configuration and\n        state manager, formats it as JSON, and sends it to the FreeDATA\n        explorer API. It includes error handling and logging for successful\n        pushes, failed pushes, and connection issues.\n        \"\"\"\n\n        frequency = 0 if self.ctx.state_manager.radio_frequency is None else self.ctx.state_manager.radio_frequency\n        band = \"USB\"\n        callsign = f\"{self.ctx.config_manager.config['STATION']['mycall']}-{self.ctx.config_manager.config['STATION']['myssid']}\"\n        gridsquare = str(self.ctx.config_manager.config['STATION']['mygrid'])\n        version = str(self.modem_version)\n        bandwidth = str(self.ctx.config_manager.config['MODEM']['maximum_bandwidth'])\n        beacon = str(self.ctx.state_manager.is_beacon_running)\n        strength = str(self.ctx.state_manager.s_meter_strength)\n        away_from_key = str(self.ctx.state_manager.is_away_from_key)\n\n        # Stop pushing if default callsign\n        if callsign in ['AA1AAA-1', 'XX1XXX-6']:\n            return\n\n        headers = {\"Content-Type\": \"application/json\"}\n        station_data = {\n            'callsign': callsign,\n            'gridsquare': gridsquare,\n            'frequency': frequency,\n            'strength': strength,\n            'band': band,\n            'version': version,\n            'bandwidth': bandwidth,\n            'beacon': beacon,\n            \"lastheard\": [],\n            \"away_from_key\": away_from_key\n        }\n\n        for i in self.ctx.state_manager.heard_stations:\n            try:\n                callsign = i[0]\n                grid = i[1]\n                timestamp = i[2]\n                frequency = i[6]\n                try:\n                    snr = i[4].split(\"/\")[1] if isinstance(i[4], str) and \"/\" in i[4] else str(i[4])\n                except Exception as e:\n                    snr = \"N/A\"\n                    log.warning(\"[EXPLORER] SNR parsing failed\", e=e)\n                station_data[\"lastheard\"].append({\n                    \"callsign\": callsign,\n                    \"grid\": grid,\n                    \"snr\": snr,\n                    \"timestamp\": timestamp,\n                    \"frequency\": frequency\n                })\n            except Exception as e:\n                log.debug(\"[EXPLORER] not publishing station\", e=e)\n        station_data = json.dumps(station_data)\n        try:\n            response = requests.post(self.explorer_url, json=station_data, headers=headers)\n            if response.status_code == 200:\n                log.info(\"[EXPLORER] Data pushed successfully\")\n            else:\n                log.error(\"[EXPLORER] Failed to push data\", status_code=response.status_code, response_text=response.text)\n        except requests.exceptions.RequestException as e:\n            log.warning(\"[EXPLORER] Connection lost\", e=e)\n"
  },
  {
    "path": "freedata_server/flrig.py",
    "content": "\nimport xmlrpc.client\nimport threading\nimport time\nimport logging\n\nclass radio:\n    def __init__(self, ctx):\n        self.ctx = ctx\n        self.logger = logging.getLogger(__name__)\n        self.host = self.ctx.config_manager.config[\"FLRIG\"][\"ip\"]\n        self.port = self.ctx.config_manager.config[\"FLRIG\"][\"port\"]\n        self.poll_interval = 1.0\n\n        self.server = None\n        self.connected = False\n\n        self.parameters = {\n            'frequency': '---',\n            'mode': '---',\n            'alc': '---',\n            'strength': '---',\n            'bandwidth': '---',\n            'rf': '---',\n            'ptt': False,\n            'tuner': False,\n            'swr': '---'\n        }\n\n        self._stop_event = threading.Event()\n        self._thread = threading.Thread(target=self._poll_loop, daemon=True)\n        self._thread.start()\n\n    def connect(self, **kwargs):\n        try:\n            self.server = xmlrpc.client.ServerProxy(f\"http://{self.host}:{self.port}\")\n            self.connected = True\n            self.logger.info(\"Connected to FLRig\")\n            self.ctx.state_manager.set_radio(\"radio_status\", True)\n            return True\n        except Exception as e:\n            self.logger.error(f\"FLRig connection failed: {e}\")\n            self.connected = False\n            self.server = None\n            self.ctx.state_manager.set_radio(\"radio_status\", False)\n            return False\n\n    def disconnect(self, **kwargs):\n        self.logger.info(\"Disconnected from FLRig\")\n        self.connected = False\n        self.server = None\n        self.ctx.state_manager.set_radio(\"radio_status\", False)\n        return True\n\n    def _poll_loop(self):\n        while not self._stop_event.is_set():\n            if not self.connected:\n                self.connect()\n            if self.connected:\n                try:\n                    self.get_frequency()\n                    self.get_mode()\n                    self.get_rf()\n                    self.get_ptt()\n                    self.get_swr()\n                    self.get_frequency()\n                    self.get_mode()\n                    self.get_level()\n\n\n                except Exception as e:\n                    self.logger.warning(f\"Polling error: {e}\")\n                    self.connected = False\n                    self.server = None\n            time.sleep(self.poll_interval)\n\n    def get_frequency(self):\n        self.parameters['frequency'] = self.server.rig.get_vfo()\n        return self.parameters['frequency']\n\n    def get_rf(self):\n\n        current_power_level = self.server.rig.get_power()\n        max_power_level = self.server.rig.get_maxpwr()\n        power_percentage = (int(current_power_level) / int(max_power_level)) * 100\n        self.parameters['rf'] = round(power_percentage, 0)\n        return self.parameters['rf']\n\n\n    def set_frequency(self, frequency):\n        self.parameters['frequency'] = frequency\n        if self.connected:\n            try:\n                self.server.main.set_frequency(float(frequency))\n\n            except Exception as e:\n                self.logger.error(f\"Set frequency failed: {e}\")\n                self.connected = False\n\n    def get_mode(self):\n        self.parameters['mode'] = self.server.rig.get_mode()\n        return self.parameters['mode']\n\n    def set_mode(self, mode):\n        self.parameters['mode'] = mode\n        if self.connected:\n            try:\n                self.server.rig.set_mode(mode)\n            except Exception as e:\n                self.logger.error(f\"Set mode failed: {e}\")\n                self.connected = False\n\n    def get_level(self):\n        self.parameters['strength'] = self.server.rig.get_smeter()\n\n    def get_alc(self):\n        return None\n\n    def get_meter(self):\n        return None\n\n    def get_bandwidth(self):\n        return self.parameters['bandwidth']\n\n    def set_bandwidth(self, bandwidth):\n        if self.connected:\n            try:\n                self.server.rig.set_bandwidth(int(bandwidth))\n\n            except Exception as e:\n                self.logger.error(f\"Set bandwidth failed: {e}\")\n                self.connected = False\n\n    def set_rf_level(self, rf):\n        if self.connected:\n            try:\n                # Get max power from rig\n                max_power = self.server.rig.get_maxpwr()\n\n                # Calculate absolute power in watts (rounded to int)\n                power_watts = int((float(rf) / 100) * float(max_power))\n\n                # Set power level in watts\n                self.server.rig.set_power(power_watts)\n\n            except Exception as e:\n                self.logger.error(f\"Set RF level failed: {e}\")\n                self.connected = False\n\n    def get_strength(self):\n        return self.parameters['strength']\n\n    def get_tuner(self):\n        return self.parameters['tuner']\n\n    def set_tuner(self, state):\n        self.parameters['tuner'] = state\n        return None\n\n    def get_swr(self):\n        self.parameters['swr'] = self.server.rig.get_swrmeter()\n        return self.parameters['swr']\n\n    def get_ptt(self):\n        self.parameters['ptt'] = self.server.rig.get_ptt()\n        return self.parameters['ptt']\n\n    def set_ptt(self, state):\n        self.parameters['ptt'] = state\n        if self.connected:\n            try:\n                if state:\n                    result = self.server.rig.set_ptt(1)\n                else:\n                    result = self.server.rig.set_ptt(0)\n            except Exception as e:\n                self.logger.error(f\"Set PTT failed: {e}\")\n        return state\n\n    def set_tuner(self, state):\n        self.parameters['ptt'] = state\n        if self.connected:\n            try:\n                self.server.rig.tune(state)\n            except Exception as e:\n                self.logger.error(f\"Set Tune failed: {e}\")\n        return state\n\n\n    def get_status(self):\n        return self.connected\n\n    def get_parameters(self):\n        return self.parameters\n\n    def close_rig(self):\n        self.logger.info(\"Closing FLRig interface\")\n        self._stop_event.set()\n        self._thread.join()\n\n    def stop_service(self):\n        self.close_rig()"
  },
  {
    "path": "freedata_server/frame_dispatcher.py",
    "content": "\"\"\"\nFRAME DISPATCHER - We are dispatching the received frames to the needed functions\n\n\n\"\"\"\nimport threading\nimport structlog\nfrom modem_frametypes import FRAME_TYPE as FR_TYPE\nimport event_manager\nfrom data_frame_factory import DataFrameFactory\n\nfrom frame_handler import FrameHandler\nfrom frame_handler_ping import PingFrameHandler\nfrom frame_handler_cq import CQFrameHandler\nfrom frame_handler_arq_session import ARQFrameHandler\nfrom frame_handler_p2p_connection import P2PConnectionFrameHandler\nfrom frame_handler_beacon import BeaconFrameHandler\n\n\n\nclass DISPATCHER:\n    \"\"\"Dispatches received frames to appropriate handlers.\n\n    This class manages the dispatching of received frames to the correct\n    handler based on the frame type. It initializes frame handlers, starts\n    worker threads for receiving and processing frames, and provides a\n    mechanism for stopping the dispatcher.\n    \"\"\"\n\n    FRAME_HANDLER = {\n        FR_TYPE.ARQ_SESSION_OPEN_ACK.value: {\"class\": ARQFrameHandler, \"name\": \"ARQ OPEN ACK\"},\n        FR_TYPE.ARQ_SESSION_OPEN.value: {\"class\": ARQFrameHandler, \"name\": \"ARQ Data Channel Open\"},\n        FR_TYPE.ARQ_SESSION_INFO_ACK.value: {\"class\": ARQFrameHandler, \"name\": \"ARQ INFO ACK\"},\n        FR_TYPE.ARQ_SESSION_INFO.value: {\"class\": ARQFrameHandler, \"name\": \"ARQ Data Channel Info\"},\n        FR_TYPE.P2P_CONNECTION_CONNECT.value: {\"class\": P2PConnectionFrameHandler, \"name\": \"P2P Connection CONNECT\"},\n        FR_TYPE.P2P_CONNECTION_CONNECT_ACK.value: {\"class\": P2PConnectionFrameHandler, \"name\": \"P2P Connection CONNECT ACK\"},\n        FR_TYPE.P2P_CONNECTION_DISCONNECT.value: {\"class\": P2PConnectionFrameHandler, \"name\": \"P2P Connection DISCONNECT\"},\n        FR_TYPE.P2P_CONNECTION_DISCONNECT_ACK.value: {\"class\": P2PConnectionFrameHandler,\n                                                   \"name\": \"P2P Connection DISCONNECT ACK\"},\n        FR_TYPE.P2P_CONNECTION_PAYLOAD.value: {\"class\": P2PConnectionFrameHandler,\n                                                   \"name\": \"P2P Connection PAYLOAD\"},\n        FR_TYPE.P2P_CONNECTION_PAYLOAD_ACK.value: {\"class\": P2PConnectionFrameHandler,\n                                                   \"name\": \"P2P Connection PAYLOAD ACK\"},\n        FR_TYPE.P2P_CONNECTION_HEARTBEAT.value: {\"class\": P2PConnectionFrameHandler,\n                                                   \"name\": \"P2P Connection HEARTBEAT\"},\n        FR_TYPE.P2P_CONNECTION_HEARTBEAT_ACK.value: {\"class\": P2PConnectionFrameHandler,\n                                                 \"name\": \"P2P Connection HEARTBEAT ACK\"},\n        FR_TYPE.ARQ_STOP.value: {\"class\": ARQFrameHandler, \"name\": \"ARQ STOP\"},\n        FR_TYPE.ARQ_STOP_ACK.value: {\"class\": ARQFrameHandler, \"name\": \"ARQ STOP ACK\"},\n        FR_TYPE.BEACON.value: {\"class\": BeaconFrameHandler, \"name\": \"BEACON\"},\n        FR_TYPE.ARQ_BURST_FRAME.value:{\"class\": ARQFrameHandler, \"name\": \"BURST FRAME\"},\n        FR_TYPE.ARQ_BURST_ACK.value: {\"class\": ARQFrameHandler, \"name\":  \"BURST ACK\"},\n        FR_TYPE.CQ.value: {\"class\": CQFrameHandler, \"name\":  \"CQ\"},\n        FR_TYPE.PING_ACK.value: {\"class\": FrameHandler, \"name\":  \"PING ACK\"},\n        FR_TYPE.PING.value: {\"class\": PingFrameHandler, \"name\":  \"PING\"},\n        FR_TYPE.QRV.value: {\"class\": FrameHandler, \"name\":  \"QRV\"},\n        #FR_TYPE.IS_WRITING.value: {\"class\": FrameHandler, \"name\": \"IS_WRITING\"},\n        #FR_TYPE.FEC.value: {\"class\": FrameHandler, \"name\":  \"FEC\"},\n        #FR_TYPE.FEC_WAKEUP.value: {\"class\": FrameHandler, \"name\":  \"FEC WAKEUP\"},\n    }\n\n    def __init__(self, ctx):\n\n        \"\"\"Initializes the frame dispatcher.\n\n        This method sets up the frame dispatcher with the provided\n        configuration, event manager, state manager, and modem. It\n        initializes frame handlers and starts the receive worker thread.\n\n        Args:\n            config (dict): The configuration dictionary.\n            event_manager (EventManager): The event manager object.\n            states (StateManager): The state manager object.\n            modem: The modem object.\n        \"\"\"\n        self.log = structlog.get_logger(\"frame_dispatcher\")\n        self.ctx = ctx\n        self.log.info(\"loading frame dispatcher.....\\n\")\n        self.stop_event = threading.Event()\n\n        self.frame_factory = DataFrameFactory(self.ctx)\n\n        self.arq_sessions = []\n\n\n    def start(self):\n        \"\"\"Starts worker threads for transmit and receive operations.\"\"\"\n        threading.Thread(target=self.worker_receive, name=\"Receive Worker\", daemon=True).start()\n\n    def stop(self):\n        self.stop_event.set()\n\n    def worker_receive(self) -> None:\n        \"\"\"Queue received data for processing\"\"\"\n        while not self.stop_event.is_set():\n            try:\n                data = self.ctx.rf_modem.data_queue_received.get(timeout=1)\n                if data:\n                    self.process_data(\n                        data['payload'],\n                        data['freedv'],\n                        data['bytes_per_frame'],\n                        data['snr'],\n                        data['frequency_offset'],\n                        data['mode_name'],\n                    )\n            except Exception:\n                continue\n\n    def process_data(self, bytes_out, freedv, bytes_per_frame: int, snr, frequency_offset, mode_name) -> None:\n        \"\"\"Processes received data frames.\n\n        This method deconstructs the received data into a frame dictionary,\n        identifies the frame type, and dispatches the frame to the\n        appropriate handler based on its type. It logs warnings for\n        unknown frame types.\n\n        Args:\n            bytes_out (bytes): The raw frame data.\n            freedv: The FreeDV instance.\n            bytes_per_frame (int): The number of bytes per frame.\n            snr (float): The signal-to-noise ratio of the received frame.\n            frequency_offset (float): The frequency offset of the received frame.\n            mode_name (str): The name of the FreeDV mode.\n        \"\"\"\n        # get frame as dictionary\n        deconstructed_frame = self.frame_factory.deconstruct(bytes_out, mode_name=mode_name)\n        frametype = deconstructed_frame[\"frame_type_int\"]\n        if frametype not in self.FRAME_HANDLER:\n            self.log.warning(\n                \"[DISPATCHER] unknown burst\", frametype=FR_TYPE(frametype).name)\n            return\n\n        # instantiate handler\n        handler_class = self.FRAME_HANDLER[frametype]['class']\n        handler: FrameHandler = handler_class(self.ctx, self.FRAME_HANDLER[frametype]['name'])\n        handler.handle(deconstructed_frame, snr, frequency_offset, freedv, bytes_per_frame)\n\n    def get_id_from_frame(self, data):\n        \"\"\"Extracts the session ID from an ARQ_SESSION_OPEN frame.\n\n        This method checks if the provided data represents an\n        ARQ_SESSION_OPEN frame and, if so, extracts and returns the session\n        ID. Otherwise, it returns None. This method is currently not used\n        in the code.\n\n        Args:\n            data (bytes): The frame data.\n\n        Returns:\n            bytes or None: The session ID if the frame is an ARQ_SESSION_OPEN\n            frame, None otherwise.\n        \"\"\"\n        if data[:1] == FR_TYPE.ARQ_SESSION_OPEN:\n            return data[13:14]\n        return None\n"
  },
  {
    "path": "freedata_server/frame_handler.py",
    "content": "import helpers\nfrom event_manager import EventManager\nfrom state_manager import StateManager\nimport structlog\nimport time\nfrom codec2 import FREEDV_MODE\nfrom message_system_db_manager import DatabaseManager\nfrom message_system_db_station import DatabaseManagerStations\nfrom message_system_db_messages import DatabaseManagerMessages\n\nimport maidenhead\n\nTESTMODE = False\n\n\nclass FrameHandler():\n    \"\"\"Base class for handling received frames.\n\n        This class provides common functionality for processing received frames,\n        including checking if the frame is addressed to the current station,\n        adding activity to the activity list, managing heard stations, emitting\n        events, and transmitting responses. Subclasses implement the\n        `follow_protocol` method to handle specific frame types and protocols.\n    \"\"\"\n    def __init__(self, ctx, name: str) -> None:\n        \"\"\"Initializes a new FrameHandler instance.\n\n            Args:\n                name (str): The name of the frame handler.\n                config (dict): The configuration dictionary.\n                states (StateManager): The state manager object.\n                event_manager (EventManager): The event manager object.\n                modem: The modem object.\n        \"\"\"\n        \n        self.ctx = ctx\n        \n        self.name = name\n        self.logger = structlog.get_logger(\"Frame Handler\")\n\n        self.details = {\n            'frame' : None, \n            'snr' : 0, \n            'frequency_offset': 0,\n            'freedv_inst': None, \n            'bytes_per_frame': 0\n        }\n\n    def is_frame_for_me(self):\n        \"\"\"Checks if the received frame is addressed to this station.\n\n        This method checks if the received frame is intended for this\n        station by verifying the destination callsign CRC and SSID against\n        the station's configured callsign and SSID list. It also checks for\n        session IDs in the case of ARQ and P2P frames.\n\n        Returns:\n            bool: True if the frame is for this station, False otherwise.\n        \"\"\"\n        call_with_ssid = self.ctx.config_manager.config['STATION']['mycall'] + \"-\" + str(self.ctx.config_manager.config['STATION']['myssid'])\n        ft = self.details['frame']['frame_type']\n        valid = False\n                \n        # Check for callsign checksum\n        if ft in ['ARQ_SESSION_OPEN', 'ARQ_SESSION_OPEN_ACK', 'PING', 'PING_ACK']:\n\n            valid, mycallsign = helpers.check_callsign(\n                call_with_ssid,\n                self.details[\"frame\"][\"destination_crc\"],\n                self.ctx.config_manager.config['STATION']['ssid_list'])\n\n        # Check for session id on IRS side\n        elif ft in ['ARQ_SESSION_INFO', 'ARQ_BURST_FRAME', 'ARQ_STOP']:\n            session_id = self.details['frame']['session_id']\n            if session_id in self.ctx.state_manager.arq_irs_sessions:\n                valid = True\n\n        # Check for session id on ISS side\n        elif ft in ['ARQ_SESSION_INFO_ACK', 'ARQ_BURST_ACK', 'ARQ_STOP_ACK']:\n            session_id = self.details['frame']['session_id']\n            if session_id in self.ctx.state_manager.arq_iss_sessions:\n                valid = True\n\n        # check for p2p connection\n        elif ft in ['P2P_CONNECTION_CONNECT']:\n            #Need to make sure this does not affect any other features in FreeDATA.\n            #This will allow the client to respond to any call sent in the \"MYCALL\" command\n\n\n            self.details[\"frame\"][\"destination_crc\"] = helpers.get_crc_24(self.details[\"frame\"][\"destination\"])\n            if self.ctx.socket_interface_manager and self.ctx.socket_interface_manager.socket_interface_callsigns:\n                print(\"checking callsings....\")\n                print(self.ctx.socket_interface_manager.socket_interface_callsigns)\n                for callsign in self.ctx.socket_interface_manager.socket_interface_callsigns:\n                    print(\"check:\", callsign)\n                    valid, mycallsign = helpers.check_callsign(\n                        callsign,\n                        self.details[\"frame\"][\"destination_crc\"].hex(),\n                        self.ctx.config_manager.config['STATION']['ssid_list'])\n                    if valid is True:\n                        break\n            else:\n                print(\"no socket interface manager\")\n                valid, mycallsign = helpers.check_callsign(\n                    call_with_ssid,\n                    self.details[\"frame\"][\"destination_crc\"].hex(),\n                    self.ctx.config_manager.config['STATION']['ssid_list'])\n            print(\"check done .... \")\n\n\n        #check for p2p connection\n        elif ft in ['P2P_CONNECTION_CONNECT_ACK', 'P2P_CONNECTION_PAYLOAD', 'P2P_CONNECTION_PAYLOAD_ACK', 'P2P_CONNECTION_HEARTBEAT','P2P_CONNECTION_HEARTBEAT_ACK', 'P2P_CONNECTION_DISCONNECT', 'P2P_CONNECTION_DISCONNECT_ACK']:\n            session_id = self.details['frame']['session_id']\n            if session_id in self.ctx.state_manager.p2p_connection_sessions:\n                valid = True\n\n        else:\n            valid = False\n\n        if not valid:\n            self.logger.info(f\"[Frame handler] {ft} received but not for us.\")\n        return valid\n\n\n    def should_respond(self):\n        \"\"\"Checks if the frame handler should respond to the received frame.\n\n        This method simply calls is_frame_for_me() to determine if a\n        response is necessary. It can be overridden by subclasses to\n        implement more complex response logic.\n\n        Returns:\n            bool: True if the handler should respond, False otherwise.\n        \"\"\"\n        return self.is_frame_for_me()\n\n    def is_origin_on_blacklist(self):\n        \"\"\"Checks if the origin callsign is on the blacklist.\n\n        This method checks if the origin callsign of the received frame is\n        present in the callsign blacklist defined in the configuration.\n        It handles callsigns with SSIDs by removing the suffix and performs\n        a case-insensitive comparison.\n\n        Returns:\n            bool: True if the origin callsign is blacklisted, False otherwise.\n        \"\"\"\n        origin_callsign = self.details[\"frame\"][\"origin\"]\n\n        for blacklist_callsign in self.ctx.config_manager.config[\"STATION\"][\"callsign_blacklist\"]:\n            if helpers.get_crc_24(origin_callsign).hex() == helpers.get_crc_24(blacklist_callsign).hex():\n                return True\n\n            if origin_callsign == blacklist_callsign or origin_callsign.startswith(blacklist_callsign):\n                return True\n        return False\n\n\n    def add_to_activity_list(self):\n        \"\"\"Adds the received frame to the activity list.\n\n        This method extracts relevant information from the received frame,\n        such as origin, destination, gridsquare, SNR, frequency offset,\n        activity type, session ID, and away-from-key status, and adds it\n        as a new activity to the state manager's activity list.\n        \"\"\"\n        frame = self.details['frame']\n\n        activity = {\n            \"direction\": \"received\",\n            \"snr\": self.details['snr'],\n            \"frequency_offset\": self.details['frequency_offset'],\n            \"activity_type\": frame[\"frame_type\"]\n        }\n        if \"origin\" in frame:\n            activity[\"origin\"] = frame[\"origin\"]\n\n        if \"destination\" in frame:\n            activity[\"destination\"] = frame[\"destination\"]\n\n        if \"gridsquare\" in frame:\n            activity[\"gridsquare\"] = frame[\"gridsquare\"]\n\n        if \"session_id\" in frame:\n            activity[\"session_id\"] = frame[\"session_id\"]\n\n        if \"flag\" in frame:\n            if \"AWAY_FROM_KEY\" in frame[\"flag\"]:\n                activity[\"away_from_key\"] = frame[\"flag\"][\"AWAY_FROM_KEY\"]\n\n        self.ctx.state_manager.add_activity(activity)\n\n    def add_to_heard_stations(self):\n        \"\"\"Adds the received frame's origin station to the heard stations list.\n\n        This method extracts information from the received frame, including\n        callsign, gridsquare, signal strength, frequency offset, and\n        away-from-key status, and adds it to the heard stations list in the\n        state manager. It also calculates the distance between the current\n        station and the received station if gridsquares are available.\n        \"\"\"\n        frame = self.details['frame']\n\n        if 'origin' not in frame:\n            return\n\n        dxgrid = frame.get('gridsquare', \"------\")\n\n\n        # Initialize distance values\n        distance_km = None\n        distance_miles = None\n        if dxgrid != \"------\":\n            distance_dict = maidenhead.distance_between_locators(self.ctx.config_manager.config['STATION']['mygrid'], dxgrid)\n            distance_km = distance_dict['kilometers']\n            distance_miles = distance_dict['miles']\n\n        away_from_key = False\n        if \"flag\" in self.details['frame']:\n            if \"AWAY_FROM_KEY\" in self.details['frame'][\"flag\"]:\n                away_from_key = self.details['frame'][\"flag\"][\"AWAY_FROM_KEY\"]\n\n        helpers.add_to_heard_stations(\n            frame['origin'],\n            dxgrid,\n            self.name,\n            self.details['snr'],\n            self.details['frequency_offset'],\n            self.ctx.state_manager.radio_frequency,\n            self.ctx.state_manager.heard_stations,\n            distance_km=distance_km,  # Pass the kilometer distance\n            distance_miles=distance_miles,  # Pass the miles distance\n            away_from_key=away_from_key\n        )\n    def make_event(self):\n        \"\"\"Creates a frame received event dictionary.\n\n        This method constructs a dictionary containing information about the\n        received frame, including timestamps, callsigns, gridsquares, signal\n        strength, and distance. This dictionary is used for emitting events\n        related to frame reception.\n\n        Returns:\n            dict: A dictionary containing the event data.\n        \"\"\"\n\n        event = {\n            \"type\": \"frame-handler\",\n            \"received\": self.details['frame']['frame_type'],\n            \"timestamp\": int(time.time()),\n            \"mycallsign\": self.ctx.config_manager.config['STATION']['mycall'],\n            \"myssid\": self.ctx.config_manager.config['STATION']['myssid'],\n            \"snr\": str(self.details['snr']),\n        }\n        if 'origin' in self.details['frame']:\n            event['dxcallsign'] = self.details['frame']['origin']\n\n        if 'gridsquare' in self.details['frame']:\n            event['gridsquare'] = self.details['frame']['gridsquare']\n            if event['gridsquare'] != \"------\":\n                distance = maidenhead.distance_between_locators(self.ctx.config_manager.config['STATION']['mygrid'], self.details['frame']['gridsquare'])\n                event['distance_kilometers'] = distance['kilometers']\n                event['distance_miles'] = distance['miles']\n            else:\n                event['distance_kilometers'] = 0\n                event['distance_miles'] = 0\n\n        if \"flag\" in self.details['frame'] and \"AWAY_FROM_KEY\" in self.details['frame'][\"flag\"]:\n            event['away_from_key'] = self.details['frame'][\"flag\"][\"AWAY_FROM_KEY\"]\n\n        return event\n\n    def emit_event(self):\n        \"\"\"Emits a frame received event.\n\n        This method creates an event dictionary containing information about\n        the received frame, such as the frame type, timestamp, callsigns,\n        gridsquare, SNR, distance, and away-from-key status. It then\n        broadcasts this event through the event manager.\n        \"\"\"\n        event_data = self.make_event()\n        print(event_data)\n        self.ctx.event_manager.broadcast(event_data)\n\n    def get_tx_mode(self):\n        \"\"\"Returns the transmission mode for acknowledgements.\n\n        This method returns the FreeDV mode used for transmitting\n        acknowledgement frames. Currently, it always returns the signalling\n        mode.\n\n        Returns:\n            FREEDV_MODE: The FreeDV mode for transmissions.\n        \"\"\"\n        return FREEDV_MODE.signalling\n\n    def transmit(self, frame):\n        \"\"\"Transmits a frame using the modem.\n\n        This method transmits the given frame using the modem. In test mode,\n        it broadcasts the frame through the event manager instead of using\n        the modem.\n\n        Args:\n            frame: The frame to transmit.\n        \"\"\"\n        if not TESTMODE:\n            self.ctx.rf_modem.transmit(self.get_tx_mode(), 1, 0, frame)\n        else:\n            self.ctx.event_manager.broadcast(frame)\n\n    def follow_protocol(self):\n        \"\"\"Handles protocol-specific actions for the received frame.\n\n        This method is intended to be overridden by subclasses to implement\n        specific protocol handling logic for different frame types. The base\n        implementation does nothing.\n        \"\"\"\n        pass\n\n    def log(self):\n        \"\"\"Logs the frame type being handled.\"\"\"\n        self.logger.info(f\"[Frame Handler] Handling frame {self.details['frame']['frame_type']}\")\n\n    def handle(self, frame, snr, frequency_offset, freedv_inst, bytes_per_frame):\n        \"\"\"Handles a received frame.\n\n        This method processes the received frame, updates internal state,\n        performs blacklist checks, adds the frame to activity lists and heard\n        stations, emits an event, and calls the follow_protocol method for\n        subclass-specific handling.\n\n        Args:\n            frame (dict): The received frame data.\n            snr (float): The signal-to-noise ratio of the received frame.\n            frequency_offset (float): The frequency offset of the received frame.\n            freedv_inst: The FreeDV instance.\n            bytes_per_frame (int): The number of bytes per frame.\n\n        Returns:\n            bool: True if the frame was processed successfully, False if it was blocked due to blacklisting.\n        \"\"\"\n\n        self.details['frame'] = frame\n        self.details['snr'] = snr\n        self.details['frequency_offset'] = frequency_offset\n        self.details['freedv_inst'] = freedv_inst\n        self.details['bytes_per_frame'] = bytes_per_frame\n\n        print(self.details)\n\n        if 'origin' not in self.details['frame'] and 'session_id' in self.details['frame']:\n            dxcall = self.ctx.state_manager.get_dxcall_by_session_id(self.details['frame']['session_id'])\n            if dxcall:\n                self.details['frame']['origin'] = dxcall\n\n        # look in database for a full callsign if only crc is present\n        if 'origin' not in self.details['frame'] and 'origin_crc' in self.details['frame']:\n            self.details['frame']['origin'] = DatabaseManager(self.ctx).get_callsign_by_checksum(frame['origin_crc'])\n\n        if \"location\" in self.details['frame'] and \"gridsquare\" in self.details['frame']['location']:\n            DatabaseManagerStations(self.ctx).update_station_location(self.details['frame']['origin'], frame['gridsquare'])\n\n\n        if 'origin' in self.details['frame']:\n            # try to find station info in database\n            try:\n                station = DatabaseManagerStations(self.ctx).get_station(self.details['frame']['origin'])\n                if station and station[\"location\"] and \"gridsquare\" in station[\"location\"]:\n                    dxgrid = station[\"location\"][\"gridsquare\"]\n                else:\n                    dxgrid = \"------\"\n\n                # overwrite gridsquare only if not provided by frame\n                if \"gridsquare\" not in self.details['frame']:\n                    self.details['frame']['gridsquare'] = dxgrid\n\n            except Exception as e:\n                self.logger.info(f\"[Frame Handler] Error getting gridsquare from callsign info: {e}\")\n\n        # check if callsign is blacklisted\n        if self.ctx.config_manager.config[\"STATION\"][\"enable_callsign_blacklist\"]:\n            if self.is_origin_on_blacklist():\n                self.logger.info(f\"[Frame Handler] Callsign blocked: {self.details['frame']['origin']}\")\n                return False\n\n        self.log()\n        self.add_to_heard_stations()\n        self.add_to_activity_list()\n        self.emit_event()\n        self.follow_protocol()\n        return True\n\n\n    def check_for_queued_message(self):\n        \"\"\"Checks for queued messages to send.\n\n        This method checks if auto-repeat is enabled in the configuration\n        and if the received signal strength is above a certain threshold.\n        If both conditions are met, it sets any messages addressed to the\n        originating station to 'queued' status in the message database.\n        \"\"\"\n\n        # only check for queued messages, if we have enabled this and if we have a minimum snr received\n        if self.ctx.config_manager.config[\"MESSAGES\"][\"enable_auto_repeat\"] and self.details[\"snr\"] >= -2:\n            # set message to queued if beacon received\n            DatabaseManagerMessages(self.ctx).set_message_to_queued_for_callsign(\n                self.details['frame'][\"origin\"])"
  },
  {
    "path": "freedata_server/frame_handler_arq_session.py",
    "content": "from queue import Queue\nimport frame_handler\nfrom event_manager import EventManager\nfrom state_manager import StateManager\nfrom modem_frametypes import FRAME_TYPE as FR\nfrom arq_session_irs import ARQSessionIRS\nfrom arq_session_iss import ARQSessionISS\nfrom arq_session_irs import IRS_State\n\n\nclass ARQFrameHandler(frame_handler.FrameHandler):\n    \"\"\"Handles ARQ frames and manages ARQ sessions.\n\n    This class processes incoming ARQ frames, manages ARQ sessions for both\n    ISS (Information Sending Station) and IRS (Information Receiving Station),\n    and dispatches frames to the appropriate session based on their type\n    and session ID.\n    \"\"\"\n\n    def follow_protocol(self):\n        \"\"\"Processes the received ARQ frame based on its type.\n\n        This method handles different ARQ frame types, including session\n        open, information, burst data, stop, and various acknowledgements.\n        It manages session creation, retrieval, and updates based on the\n        frame type and session ID.\n        \"\"\"\n\n        if not self.should_respond():\n            return\n\n        frame = self.details['frame']\n        session_id = frame['session_id']\n        snr = self.details[\"snr\"]\n        frequency_offset = self.details[\"frequency_offset\"]\n\n        if frame['frame_type_int'] == FR.ARQ_SESSION_OPEN.value:\n            print(\"Received ARQ_SESSION_OPEN frame\")\n            print(f\"Session ID: {session_id}\")\n\n            # Handle cases where the session_id is already present in arq_irs_sessions\n            if session_id in self.ctx.state_manager.arq_irs_sessions:\n                print(f\"ARQ session already in memory: {session_id}\")\n                session = self.ctx.state_manager.arq_irs_sessions[session_id]\n                current_state = session.state\n                print(f\"ARQ session state: {current_state}\")\n\n\n                # Lost OPEN_ACK case .. ISS will retry opening a session\n                if current_state in [IRS_State.NEW, IRS_State.OPEN_ACK_SENT]:\n                    print(\"Lost OPEN_ACK case: ISS will retry opening a session.\")\n                # Case where a transmission has failed, we want to continue the transmission\n                elif current_state in [IRS_State.FAILED, IRS_State.ABORTED]:\n                    print(\"Transmission failed: Will continue the transmission.\")\n                    # TODO Lets consider adding an additional state here\n                    session.state = IRS_State.NEW\n\n                # Case where we just want to retransmit an already transmitted message\n                elif current_state == IRS_State.ENDED:\n                    print(\"Retransmitting an already transmitted message.\")\n                    session.reset_session()\n                    session.state = IRS_State.NEW\n\n            # Normal case when receiving a SESSION_OPEN for the first time\n            else:\n                print(\"First-time reception of SESSION_OPEN frame.\")\n                if self.ctx.state_manager.check_if_running_arq_session():\n                    self.logger.warning(\"DISCARDING SESSION OPEN because of ongoing ARQ session \", frame=frame)\n                    return\n                session = ARQSessionIRS(self.ctx,frame['origin'],session_id)\n                self.ctx.state_manager.register_arq_irs_session(session)\n\n        elif frame['frame_type_int'] in [\n            FR.ARQ_SESSION_INFO.value,\n            FR.ARQ_BURST_FRAME.value,\n            FR.ARQ_STOP.value,\n        ]:\n            print(\"Received ARQ frame of type: INFO, BURST, or STOP.\")\n            session = self.ctx.state_manager.get_arq_irs_session(session_id)\n\n        elif frame['frame_type_int'] in [\n            FR.ARQ_SESSION_OPEN_ACK.value,\n            FR.ARQ_SESSION_INFO_ACK.value,\n            FR.ARQ_BURST_ACK.value,\n            FR.ARQ_STOP_ACK.value\n        ]:\n            print(\"Received ARQ ACK frame of type: OPEN_ACK, INFO_ACK, BURST_ACK, or STOP_ACK.\")\n            session = self.ctx.state_manager.get_arq_iss_session(session_id)\n\n        else:\n            self.logger.warning(\"DISCARDING FRAME\", frame=frame)\n            return\n\n        session.set_details(snr, frequency_offset)\n        session.on_frame_received(frame)\n"
  },
  {
    "path": "freedata_server/frame_handler_beacon.py",
    "content": "import frame_handler\nimport datetime\nfrom message_system_db_beacon import DatabaseManagerBeacon\nfrom message_system_db_messages import DatabaseManagerMessages\n\n\nfrom message_system_db_manager import DatabaseManager\nclass BeaconFrameHandler(frame_handler.FrameHandler):\n    \"\"\"Handles received beacon frames.\n\n    This class processes received beacon frames, stores them in the database,\n    and checks for queued messages to be sent based on configuration and\n    signal strength.\n    \"\"\"\n\n    def follow_protocol(self):\n        \"\"\"Processes the received beacon frame.\n\n        This method adds the beacon information to the database and checks\n        for queued messages to send if auto-repeat is enabled and the\n        signal strength is above a certain threshold.\n        \"\"\"\n        DatabaseManagerBeacon(self.ctx).add_beacon(datetime.datetime.now(),\n                                                             self.details['frame'][\"origin\"],\n                                                             self.details[\"snr\"],\n                                                             self.details['frame'][\"gridsquare\"]\n                                                             )\n\n        self.check_for_queued_message()\n"
  },
  {
    "path": "freedata_server/frame_handler_cq.py",
    "content": "import threading\n\nimport frame_handler_ping\nimport helpers\nimport data_frame_factory\nimport frame_handler\nfrom message_system_db_messages import DatabaseManagerMessages\nimport numpy as np\n\nclass CQFrameHandler(frame_handler.FrameHandler):\n    \"\"\"Handles received CQ frames.\n\n    This class processes received CQ (Calling Any Station) frames and sends\n    a QRV (Ready to Receive) frame as an acknowledgement if the station is\n    not currently busy with ARQ. It also checks for queued messages to be\n    sent based on the configuration.\n    \"\"\"\n\n    #def should_respond(self):\n    #    self.logger.debug(f\"Respond to CQ: {self.ctx.config_manager.config['MODEM']['respond_to_cq']}\")\n    #    return bool(self.ctx.config_manager.config['MODEM']['respond_to_cq'] and not self.ctx.state_manager.getARQ())\n\n    def follow_protocol(self):\n        \"\"\"Processes the received CQ frame.\n\n        This method checks if the modem is currently busy with ARQ. If not,\n        it sends a QRV frame as an acknowledgement and checks for queued\n        messages to send.\n        \"\"\"\n\n        if self.ctx.state_manager.getARQ():\n            return\n\n        self.logger.debug(\n            f\"[Modem] Responding to request from [{self.details['frame']['origin']}]\",\n            snr=self.details['snr'],\n        )\n\n        self.send_ack()\n        self.check_for_queued_message()\n\n    def send_ack(self):\n        factory = data_frame_factory.DataFrameFactory(self.ctx)\n        qrv_frame = factory.build_qrv(self.details['snr'])\n\n        # wait some random time and wait if we have an ongoing codec2 transmission\n        # on our channel. This should prevent some packet collision\n        random_delay = np.random.randint(0, 6)\n        threading.Event().wait(random_delay)\n        self.ctx.state_manager.channel_busy_condition_codec2.wait(5)\n\n        self.transmit(qrv_frame)\n\n"
  },
  {
    "path": "freedata_server/frame_handler_p2p_connection.py",
    "content": "from queue import Queue\nimport frame_handler\nfrom event_manager import EventManager\nfrom state_manager import StateManager\nfrom modem_frametypes import FRAME_TYPE as FR\nfrom p2p_connection import P2PConnection\n\nclass P2PConnectionFrameHandler(frame_handler.FrameHandler):\n    \"\"\"Handles P2P connection frames.\n\n    This class processes P2P connection frames, manages P2P connections,\n    and dispatches frames to the appropriate connection based on their\n    type and session ID.\n    \"\"\"\n\n    def follow_protocol(self):\n        \"\"\"Processes received P2P connection frames.\n\n        This method handles different P2P frame types, including connection\n        requests, acknowledgements, payload data, disconnections, and payload\n        acknowledgements. It manages connection creation, retrieval, and\n        updates based on the frame type and session ID.\n        \"\"\"\n\n        if not self.should_respond():\n            return\n\n        frame = self.details['frame']\n        session_id = frame['session_id']\n        snr = self.details[\"snr\"]\n        frequency_offset = self.details[\"frequency_offset\"]\n\n        if frame['frame_type_int'] == FR.P2P_CONNECTION_CONNECT.value:\n\n            # Lost OPEN_ACK case .. ISS will retry opening a session\n            if session_id in self.ctx.state_manager.arq_irs_sessions:\n                session = self.ctx.state_manager.p2p_connection_sessions[session_id]\n\n            # Normal case when receiving a SESSION_OPEN for the first time\n            else:\n            #    if self.ctx.state_manager.check_if_running_arq_session():\n            #        self.logger.warning(\"DISCARDING SESSION OPEN because of ongoing ARQ session \", frame=frame)\n            #        return\n                session = P2PConnection(self.ctx,\n                                        frame['origin'],\n                                        frame['destination'],\n                                        )\n                session.session_id = session_id\n                self.ctx.state_manager.register_p2p_connection_session(session)\n\n        elif frame['frame_type_int'] in [\n            FR.P2P_CONNECTION_CONNECT_ACK.value,\n            FR.P2P_CONNECTION_DISCONNECT.value,\n            FR.P2P_CONNECTION_DISCONNECT_ACK.value,\n            FR.P2P_CONNECTION_PAYLOAD.value,\n            FR.P2P_CONNECTION_PAYLOAD_ACK.value,\n            FR.P2P_CONNECTION_HEARTBEAT.value,\n            FR.P2P_CONNECTION_HEARTBEAT_ACK.value,\n        ]:\n            session = self.ctx.state_manager.get_p2p_connection_session(session_id)\n\n        else:\n            self.logger.warning(\"DISCARDING FRAME\", frame=frame)\n            return\n\n        session.set_details(snr, frequency_offset)\n        session.on_frame_received(frame)\n"
  },
  {
    "path": "freedata_server/frame_handler_ping.py",
    "content": "import frame_handler\nimport helpers\nimport data_frame_factory\nfrom message_system_db_messages import DatabaseManagerMessages\n\n\nclass PingFrameHandler(frame_handler.FrameHandler):\n    \"\"\"Handles received PING frames.\n\n    This class processes received PING frames, sends acknowledgements, and\n    checks for queued messages to be sent based on configuration.\n    \"\"\"\n\n    #def is_frame_for_me(self):\n    #    call_with_ssid = self.config['STATION']['mycall'] + \"-\" + str(self.config['STATION']['myssid'])\n    #    valid, mycallsign = helpers.check_callsign(\n    #        call_with_ssid,\n    #        self.details[\"frame\"][\"destination_crc\"],\n    #        self.config['STATION']['ssid_list'])\n\n    #    if not valid:\n    #        ft = self.details['frame']['frame_type']\n    #        self.logger.info(f\"[Modem] {ft} received but not for us.\")\n    #    return valid\n\n    def follow_protocol(self):\n        \"\"\"Processes the received PING frame.\n\n        This method checks if the frame is for the current station and if\n        the modem is not busy with ARQ. If both conditions are met, it sends\n        a PING acknowledgement and checks for queued messages to send.\n        \"\"\"\n        if not bool(self.is_frame_for_me() and not self.ctx.state_manager.getARQ()):\n            return\n        self.logger.debug(\n            f\"[Modem] Responding to request from [{self.details['frame']['origin']}]\",\n            snr=self.details['snr'],\n        )\n        self.send_ack()\n        self.check_for_queued_message()\n    def send_ack(self):\n        \"\"\"Sends a PING acknowledgement frame.\n\n        This method builds a PING acknowledgement frame using the received\n        frame's origin CRC and SNR, and transmits it using the modem.\n        \"\"\"\n        factory = data_frame_factory.DataFrameFactory(self.ctx)\n        ping_ack_frame = factory.build_ping_ack(\n            self.details['frame']['origin_crc'], \n            self.details['snr']\n        )\n        self.transmit(ping_ack_frame)\n"
  },
  {
    "path": "freedata_server/helpers.py",
    "content": "# -*- coding: utf-8 -*-\n\"\"\"\nCreated on Fri Dec 25 21:25:14 2020\n\n@author: DJ2LS\n\"\"\"\nimport time\nfrom datetime import datetime,timezone\nimport structlog\nimport numpy as np\nimport threading\nimport hashlib\nimport hmac\nimport os\nimport sys\nfrom pathlib import Path\nimport platform\nimport subprocess\nimport psutil\nimport glob\n\n\nlog = structlog.get_logger(\"helpers\")\n\n\ndef wait(seconds: float) -> bool:\n    \"\"\"\n\n    Args:\n        seconds:\n\n    Returns:\n    \"\"\"\n    timeout = time.time() + seconds\n\n    while time.time() < timeout:\n        threading.Event().wait(0.01)\n    return True\n\n\ndef get_crc_8(data: str) -> bytes:\n    \"\"\"\n    Calculate CRC-8-CCITT checksum for the given data using the ITU I.432.1 specification.\n\n    Args:\n        data (str): Input data as a string.\n\n    Returns:\n        bytes: CRC-8-CCITT checksum of the provided data.\n    \"\"\"\n    crc = 0x00\n    polynomial = 0x07\n    xor_out = 0x55\n\n    if not isinstance(data, (bytes, bytearray)):\n        data = bytes(data, \"utf-8\")\n\n    for byte in data:\n        crc ^= byte\n        for _ in range(8):\n            if crc & 0x80:\n                crc = (crc << 1) ^ polynomial\n            else:\n                crc <<= 1\n            crc &= 0xFF\n\n    # Final XOR value\n    crc ^= xor_out\n    return crc.to_bytes(1, byteorder=\"big\")\n\n\ndef get_crc_16(data: str) -> bytes:\n    \"\"\"\n    Calculate CRC-16-CCITT-FALSE checksum for the given data using the provided specification.\n\n    Args:\n        data (str): Input data as a string.\n\n    Returns:\n        bytes: CRC-16-CCITT-FALSE checksum of the provided data.\n    \"\"\"\n    crc = 0xFFFF\n    polynomial = 0x1021\n    xor_out = 0\n    if not isinstance(data, (bytes, bytearray)):\n        data = bytes(data, \"utf-8\")\n\n    for byte in data:\n        crc ^= byte << 8\n        for _ in range(8):\n            if crc & 0x8000:\n                crc = (crc << 1) ^ polynomial\n            else:\n                crc <<= 1\n            crc &= 0xFFFF\n\n    # Final XOR value\n    crc ^= xor_out\n    return crc.to_bytes(2, byteorder=\"big\")\n\n\ndef get_crc_24(data: str) -> bytes:\n    \"\"\"\n    Calculate CRC-24-OPENPGP checksum for the given data using the provided specification.\n\n    Args:\n        data (str): Input data as a string.\n\n    Returns:\n        bytes: CRC-24-OPENPGP checksum of the provided data.\n    \"\"\"\n    crc = 0xB704CE\n    polynomial = 0x864CFB\n    xor_out = 0\n\n    if not isinstance(data, (bytes, bytearray)):\n        data = bytes(data, \"utf-8\")\n\n    for byte in data:\n        crc ^= byte << 16\n        for _ in range(8):\n            if crc & 0x800000:\n                crc = (crc << 1) ^ polynomial\n            else:\n                crc <<= 1\n            crc &= 0xFFFFFF\n\n    # Final XOR value\n    crc ^= xor_out\n    return crc.to_bytes(3, byteorder=\"big\")\n\n\ndef get_crc_32(data: str) -> bytes:\n    \"\"\"\n    Calculate CRC-32 checksum for the given data using the Ethernet specification.\n\n    Args:\n        data (str): Input data as a string.\n\n    Returns:\n        bytes: CRC-32 checksum of the provided data.\n    \"\"\"\n\n    def reflect(data, width):\n        \"\"\"\n        Reflects the bits in the given data.\n\n        Args:\n            data (int): The data to reflect.\n            width (int): The bit width of the data.\n\n        Returns:\n            int: The reflected data.\n        \"\"\"\n        reflected_data = 0\n        for i in range(width):\n            if data & (1 << i):\n                reflected_data |= (1 << (width - 1 - i))\n        return reflected_data\n\n    crc = 0xFFFFFFFF\n    polynomial = 0x04C11DB7\n    xor_out = 0\n\n    if not isinstance(data, (bytes, bytearray)):\n        data = bytes(data, \"utf-8\")\n\n    for byte in data:\n        byte = reflect(byte, 8)\n        crc ^= byte << 24\n        for _ in range(8):\n            if crc & 0x80000000:\n                crc = (crc << 1) ^ polynomial\n            else:\n                crc <<= 1\n            crc &= 0xFFFFFFFF\n\n    crc = reflect(crc, 32)\n    crc ^= 0xFFFFFFFF\n    crc ^= xor_out\n    return crc.to_bytes(4, byteorder=\"big\")\n\n\nfrom datetime import datetime, timezone\nimport time\n\n\ndef add_to_heard_stations(dxcallsign, dxgrid, datatype, snr, offset, frequency, heard_stations_list, distance_km=None,\n                          distance_miles=None, away_from_key=False):\n    \"\"\"\n    Args:\n        dxcallsign (str): The callsign of the DX station.\n        dxgrid (str): The Maidenhead grid square of the DX station.\n        datatype (str): The type of data received (e.g., FT8, CW).\n        snr (int): Signal-to-noise ratio of the received signal.\n        offset (float): Frequency offset.\n        frequency (float): Base frequency of the received signal.\n        heard_stations_list (list): List containing heard stations.\n        distance_km (float): Distance to the DX station in kilometers.\n        distance_miles (float): Distance to the DX station in miles.\n        away_from_key (bool): Away from key indicator\n\n    Returns:\n        Nothing. The function updates the heard_stations_list in-place.\n    \"\"\"\n    # Convert current timestamp to an integer\n    current_timestamp = int(datetime.now(timezone.utc).timestamp())\n\n    # Initialize the new entry\n    new_entry = [\n        dxcallsign, dxgrid, current_timestamp, datatype, snr, offset, frequency, distance_km, distance_miles, away_from_key\n    ]\n\n    # Check if the buffer is empty or if the callsign is not already in the list\n    if not any(dxcallsign == station[0] for station in heard_stations_list):\n        heard_stations_list.append(new_entry)\n    else:\n        # Search for the existing entry and update\n        for i, entry in enumerate(heard_stations_list):\n            if entry[0] == dxcallsign:\n                heard_stations_list[i] = new_entry\n                break\n\n\ndef callsign_to_bytes(callsign: str) -> bytes:\n    \"\"\"\n\n    Args:\n        callsign:\n\n    Returns:\n\n    \"\"\"\n    # http://www.aprs.org/aprs11/SSIDs.txt\n    # -0 Your primary station usually fixed and message capable\n    # -1 generic additional station, digi, mobile, wx, etc\n    # -2 generic additional station, digi, mobile, wx, etc\n    # -3 generic additional station, digi, mobile, wx, etc\n    # -4 generic additional station, digi, mobile, wx, etc\n    # -5 Other networks (Dstar, Iphones, Androids, Blackberry's etc)\n    # -6 Special activity, Satellite ops, camping or 6 meters, etc\n    # -7 walkie talkies, HT's or other human portable\n    # -8 boats, sailboats, RV's or second main mobile\n    # -9 Primary Mobile (usually message capable)\n    # -10 internet, Igates, echolink, winlink, AVRS, APRN, etc\n    # -11 balloons, aircraft, spacecraft, etc\n    # -12 APRStt, DTMF, RFID, devices, one-way trackers*, etc\n    # -13 Weather stations\n    # -14 Truckers or generally full time drivers\n    # -15 generic additional station, digi, mobile, wx, etc\n\n    # Try converting to bytestring if possible type string\n    try:\n        callsign = callsign.encode(\"utf-8\")\n    except TypeError:\n        # This is expected depending on the type of the `callsign` argument.\n        # log.debug(\"[HLP] callsign_to_bytes: Error converting callsign to bytes:\", e=err)\n        pass\n    except Exception as err:\n        log.debug(\"[HLP] callsign_to_bytes: Error converting callsign to bytes:\", e=err, data=callsign)\n\n    # Need this step to reduce the needed payload by the callsign\n    # (stripping \"-\" out of the callsign)\n    callsign = callsign.split(b\"-\")\n    ssid = 0\n    try:\n        ssid = int(callsign[1])\n    except IndexError:\n        # This is expected when callsign doesn't have a dash.\n        # log.debug(\"[HLP] callsign_to_bytes: Error callsign SSID to integer:\", e=err)\n        pass\n    except Exception as err:\n        log.debug(\"[HLP] callsign_to_bytes: Error splitting callsign/ssid:\", e=err)\n\n    # callsign = callsign[0]\n    # bytestring = bytearray(8)\n    # bytestring[:len(callsign)] = callsign\n    # bytestring[7:8] = bytes([ssid])\n\n    # ---- callsign with encoding always 6 bytes long\n    callsign = callsign[0].decode(\"utf-8\")\n    ssid = bytes([ssid]).decode(\"utf-8\")\n    return encode_call(callsign + ssid)\n    # return bytes(bytestring)\n\n\ndef bytes_to_callsign(bytestring: bytes) -> bytes:\n    \"\"\"\n    Convert our callsign, received by a frame to a callsign in a human readable format\n\n    Args:\n        bytestring:\n\n    Returns:\n        bytes\n    \"\"\"\n    # http://www.aprs.org/aprs11/SSIDs.txt\n    # -0 Your primary station usually fixed and message capable\n    # -1 generic additional station, digi, mobile, wx, etc\n    # -2 generic additional station, digi, mobile, wx, etc\n    # -3 generic additional station, digi, mobile, wx, etc\n    # -4 generic additional station, digi, mobile, wx, etc\n    # -5 Other networks (Dstar, Iphones, Androids, Blackberry's etc)\n    # -6 Special activity, Satellite ops, camping or 6 meters, etc\n    # -7 walkie talkies, HT's or other human portable\n    # -8 boats, sailboats, RV's or second main mobile\n    # -9 Primary Mobile (usually message capable)\n    # -10 internet, Igates, echolink, winlink, AVRS, APRN, etc\n    # -11 balloons, aircraft, spacecraft, etc\n    # -12 APRStt, DTMF, RFID, devices, one-way trackers*, etc\n    # -13 Weather stations\n    # -14 Truckers or generally full time drivers\n    # -15 generic additional station, digi, mobile, wx, etc\n\n    # we need to do this step to reduce the needed paypload by the callsign ( stripping \"-\" out of the callsign )\n    \"\"\"\n    callsign = bytes(bytestring[:7])\n    callsign = callsign.rstrip(b\"\\x00\")\n    ssid = int.from_bytes(bytes(bytestring[7:8]), \"big\")\n\n    callsign = callsign + b\"-\"\n    callsign = callsign.decode(\"utf-8\")\n    callsign = callsign + str(ssid)\n    callsign = callsign.encode(\"utf-8\")\n\n    return bytes(callsign)\n    \"\"\"\n    decoded = decode_call(bytestring)\n    callsign = decoded[:-1]\n    ssid = ord(bytes(decoded[-1], \"utf-8\"))\n    return bytes(f\"{callsign}-{ssid}\", \"utf-8\")\n\ndef separate_callsign_from_ssid(callsign:bytes):\n    # We want the callsign without SSID\n    splitted_callsign = callsign.split(b\"-\")\n    callsign = splitted_callsign[0]\n    ssid = splitted_callsign[1].decode()\n    return callsign, ssid\n\n\ndef check_callsign(callsign: str, crc_to_check: bytes, ssid_list):\n    \"\"\"\n    Function to check a crc against a callsign to calculate the\n    ssid by generating crc until we find the correct SSID\n\n    Args:\n        callsign: Callsign which we want to check\n        crc_to_check: The CRC which we want the callsign to check against\n\n    Returns:\n        [True, Callsign + SSID]\n        False\n    \"\"\"\n    if not isinstance(callsign, (bytes)):\n        callsign = bytes(callsign,'utf-8')\n\n    try:\n        # We want the callsign without SSID\n        splitted_callsign = callsign.split(b\"-\")\n        callsign = splitted_callsign[0]\n        ssid = splitted_callsign[1].decode()\n\n\n    except IndexError:\n        # This is expected when `callsign` doesn't have a dash.\n        ssid = 0\n    except Exception as err:\n        log.debug(\"[HLP] check_callsign: Error converting to bytes:\", e=err)\n\n    # ensure, we are always have the own ssid in ssid_list even if it is empty\n    if ssid not in ssid_list:\n        ssid_list.append(str(ssid))\n\n    for ssid in ssid_list:\n        call_with_ssid = callsign + b'-' + (str(ssid)).encode('utf-8')\n        callsign_crc = get_crc_24(call_with_ssid)\n        callsign_crc = callsign_crc.hex()\n        if callsign_crc == crc_to_check:\n            log.debug(\"[HLP] check_callsign matched:\", call_with_ssid=call_with_ssid, checksum=crc_to_check)\n            return [True, call_with_ssid.decode()]\n\n        if get_crc_24(callsign).hex() == crc_to_check:\n            log.debug(\"[HLP] check_callsign matched:\", call_without_ssid=callsign, checksum=crc_to_check)\n            return [True, callsign.decode()]\n\n    log.debug(\"[HLP] check_callsign: Check failed:\", callsign=callsign, crc_to_check=crc_to_check, own_crc=callsign_crc)\n    return [False, b'']\n\n\ndef check_session_id(id: bytes, id_to_check: bytes):\n    \"\"\"\n    Funktion to check if we received the correct session id\n\n    Args:\n        id: our own session id\n        id_to_check: The session id byte we want to check\n\n    Returns:\n        True\n        False\n    \"\"\"\n    if id_to_check == b'\\x00':\n        return False\n    log.debug(\"[HLP] check_sessionid: Checking:\", ownid=id, check=id_to_check)\n    return id == id_to_check\n\n\ndef encode_grid(grid):\n    \"\"\"\n    @author: DB1UJ\n    Args:\n        grid:string: maidenhead QTH locater [a-r][a-r][0-9][0-9][a-x][a-x]\n    Returns:\n        4 bytes contains 26 bit valid data with encoded grid locator\n    \"\"\"\n    out_code_word = 0\n\n    grid = grid.upper()  # upper case to be save\n\n    int_first = ord(grid[0]) - 65  # -65 offset for \"A\" become zero, utf8 table\n    int_sec = ord(grid[1]) - 65  # -65 offset for \"A\" become zero, utf8 table\n\n    int_val = (int_first * 18) + int_sec  # encode for modulo devision, 2 numbers in 1\n\n    out_code_word = int_val & 0b111111111  # only 9 bit LSB A - R * A - R is needed\n    out_code_word <<= 9  # shift 9 bit left having space next bits, letter A-R * A-R\n\n    int_val = int(grid[2:4])  # number string to number int, highest value 99\n    out_code_word |= int_val & 0b1111111  # using bit OR to add new value\n    out_code_word <<= 7  # shift 7 bit left having space next bits, letter A-X\n\n    int_val = ord(grid[4]) - 65  # -65 offset for 'A' become zero, utf8 table\n    out_code_word |= int_val & 0b11111  # using bit OR to add new value\n    out_code_word <<= 5  # shift 5 bit left having space next bits, letter A-X\n\n    int_val = ord(grid[5]) - 65  # -65 offset for 'A' become zero, utf8 table\n    out_code_word |= int_val & 0b11111  # using bit OR to add new value\n\n    return out_code_word.to_bytes(length=4, byteorder=\"big\")\n\n\ndef decode_grid(b_code_word: bytes):\n    \"\"\"\n    @author: DB1UJ\n    Args:\n        b_code_word:bytes: 4 bytes with 26 bit valid data LSB\n    Returns:\n        grid:str: upper case maidenhead QTH locater [A-R][A-R][0-9][0-9][A-X][A-X]\n    \"\"\"\n    code_word = int.from_bytes(b_code_word, byteorder=\"big\", signed=False)\n\n    grid = chr((code_word & 0b11111) + 65)\n    code_word >>= 5\n\n    grid = chr((code_word & 0b11111) + 65) + grid\n    code_word >>= 7\n\n    grid = str(int(code_word & 0b1111111)) + grid\n    if (code_word & 0b1111111) < 10:\n        grid = f\"0{grid}\"\n    code_word >>= 9\n\n    int_val = int(code_word & 0b111111111)\n    int_first, int_sec = divmod(int_val, 18)\n    return chr(int(int_first) + 65) + chr(int(int_sec) + 65) + grid\n\n\ndef encode_call(call):\n    \"\"\"\n    @author: DB1UJ\n    Args:\n        call:string: ham radio call sign [A-Z,0-9], last char SSID 0-63\n\n    Returns:\n        6 bytes contains 6 bits/sign encoded 8 char call sign with binary SSID\n        (only upper letters + numbers, SSID)\n    \"\"\"\n    out_code_word = 0\n\n    call = call.upper()  # upper case to be save\n\n    for char in call:\n        int_val = ord(char) - 48  # -48 reduce bits, begin with first number utf8 table\n        out_code_word <<= 6  # shift left 6 bit, making space for a new char\n        out_code_word |= (\n            int_val & 0b111111\n        )  # bit OR adds the new char, masked with AND 0b111111\n    out_code_word >>= 6  # clean last char\n    out_code_word <<= 6  # make clean space\n    out_code_word |= ord(call[-1]) & 0b111111  # add the SSID uncoded only 0 - 63\n\n    return out_code_word.to_bytes(length=6, byteorder=\"big\")\n\n\ndef decode_call(b_code_word: bytes):\n    \"\"\"\n    @author: DB1UJ\n    Args:\n        b_code_word:bytes: 6 bytes with 6 bits/sign valid data char signs LSB\n\n    Returns:\n        call:str: upper case ham radio call sign [A-Z,0-9] + binary SSID\n    \"\"\"\n    code_word = int.from_bytes(b_code_word, byteorder=\"big\", signed=False)\n    ssid = chr(code_word & 0b111111)  # save the uncoded binary SSID\n\n    call = str()\n    while code_word != 0:\n        call = chr((code_word & 0b111111) + 48) + call\n        code_word >>= 6\n\n    call = call[:-1] + ssid  # remove the last char from call and replace with SSID\n\n    return call\n\n\ndef snr_to_bytes(snr):\n    \"\"\"create a byte from snr value \"\"\"\n    # make sure we have onl 1 byte snr\n    # min max = -12.7 / 12.7\n    # enough for detecting if a channel is good or bad\n    snr = snr * 10\n    snr = np.clip(snr, -127, 127)\n    snr = int(snr).to_bytes(1, byteorder='big', signed=True)\n    return snr\n\n\ndef snr_from_bytes(snr):\n    \"\"\"create int from snr byte\"\"\"\n    snr = int.from_bytes(snr, byteorder='big', signed=True)\n    snr = snr / 10\n    return snr\n\n\ndef safe_execute(default, exception, function, *args):\n    \"\"\"\n    https://stackoverflow.com/a/36671208\n    from json import loads\n    safe_execute(\"Oh no, explosions occurred!\", TypeError, loads, None)\n\n    \"\"\"\n    try:\n        return function(*args)\n    except exception:\n        return default\n\n\ndef return_key_from_object(default, obj, key):\n\n    try:\n        return obj[key]\n    except KeyError:\n        return default\n\n\ndef bool_to_string(state):\n    return \"True\" if state else \"False\"\n\n\n\n\ndef get_hmac_salt(dxcallsign: bytes, mycallsign: bytes):\n    filename = f\"freedata_hmac_STATION_{mycallsign.decode('utf-8')}_REMOTE_{dxcallsign.decode('utf-8')}.txt\"\n    if sys.platform in [\"linux\"]:\n\n        if hasattr(sys, \"_MEIPASS\"):\n            filepath = getattr(sys, \"_MEIPASS\") + '/hmac/' + filename\n        else:\n            subfolder = Path('hmac')\n            filepath = subfolder / filename\n\n\n    elif sys.platform in [\"darwin\"]:\n        if hasattr(sys, \"_MEIPASS\"):\n            filepath = getattr(sys, \"_MEIPASS\") + '/hmac/' + filename\n        else:\n            subfolder = Path('hmac')\n            filepath = subfolder / filename\n\n    elif sys.platform in [\"win32\", \"win64\"]:\n        if hasattr(sys, \"_MEIPASS\"):\n            filepath = getattr(sys, \"_MEIPASS\") + '/hmac/' + filename\n        else:\n            subfolder = Path('hmac')\n            filepath = subfolder / filename\n    else:\n        try:\n            subfolder = Path('hmac')\n            filepath = subfolder / filename\n        except Exception as e:\n            log.error(\n                \"[Modem] [HMAC] File lookup error\", file=filepath,\n            )\n\n    # check if file exists else return false\n    if not check_if_file_exists(filepath):\n        return False\n\n    log.info(\"[SCK] [HMAC] File lookup\", file=filepath)\n\n    try:\n        with open(filepath, \"r\") as file:\n            line = file.readlines()\n            hmac_salt = bytes(line[-1], \"utf-8\").split(b'\\n')\n            hmac_salt = hmac_salt[0]\n            return hmac_salt if delete_last_line_from_hmac_list(filepath, -1) else False\n    except Exception as e:\n        log.warning(\"[SCK] [HMAC] File lookup failed\", file=filepath, e=e)\n        return False\n\ndef search_hmac_salt(dxcallsign: bytes, mycallsign: bytes, search_token, data_frame, token_iters):\n\n    filename = f\"freedata_hmac_STATION_{mycallsign.decode('utf-8')}_REMOTE_{dxcallsign.decode('utf-8')}.txt\"\n    if sys.platform in [\"linux\"]:\n\n        if hasattr(sys, \"_MEIPASS\"):\n            filepath = getattr(sys, \"_MEIPASS\") + '/hmac/' + filename\n        else:\n            subfolder = Path('hmac')\n            filepath = subfolder / filename\n\n\n    elif sys.platform in [\"darwin\"]:\n        if hasattr(sys, \"_MEIPASS\"):\n            filepath = getattr(sys, \"_MEIPASS\") + '/hmac/' + filename\n        else:\n            subfolder = Path('hmac')\n            filepath = subfolder / filename\n\n    elif sys.platform in [\"win32\", \"win64\"]:\n        if hasattr(sys, \"_MEIPASS\"):\n            filepath = getattr(sys, \"_MEIPASS\") + '/hmac/' + filename\n        else:\n            subfolder = Path('hmac')\n            filepath = subfolder / filename\n    else:\n        try:\n            subfolder = Path('hmac')\n            filepath = subfolder / filename\n        except Exception as e:\n            log.error(\n                \"[Modem] [HMAC] File lookup error\", file=filepath,\n            )\n\n    # check if file exists else return false\n    if not check_if_file_exists(filepath):\n        log.warning(\n            \"[Modem] [HMAC] Token file not found\", file=filepath,\n        )\n        return False\n\n    try:\n        with open(filepath, \"r\") as file:\n            token_list = file.readlines()\n\n            token_iters = min(token_iters, len(token_list))\n            for _ in range(1, token_iters + 1):\n                key = token_list[len(token_list) - _][:-1]\n                key = bytes(key, \"utf-8\")\n                search_digest = hmac.new(key, data_frame, hashlib.sha256).digest()[:4]\n                # TODO Remove this debugging information if not needed anymore\n                # print(\"-----------------------------------------\")\n                # print(_)\n                # print(f\" key-------------{key}\")\n                # print(f\" key-------------{token_list[len(token_list) - _][:-1]}\")\n                # print(f\" key-------------{key.hex()}\")\n                # print(f\" search token----{search_token.hex()}\")\n                # print(f\" search digest---{search_digest.hex()}\")\n                if search_token.hex() == search_digest.hex():\n                    token_position = len(token_list) - _\n                    delete_last_line_from_hmac_list(filepath, token_position)\n                    log.info(\n                        \"[Modem] [HMAC] Signature found\", expected=search_token.hex(),\n                    )\n                    return True\n\n\n        log.warning(\n            \"[Modem] [HMAC] Signature not found\", expected=search_token.hex(), filepath=filepath,\n        )\n        return False\n\n    except Exception as e:\n        log.warning(\n            \"[Modem] [HMAC] Lookup failed\", e=e, expected=search_token,\n        )\n        return False\n\n\ndef delete_last_line_from_hmac_list(filepath, position):\n    # check if file exists else return false\n    if not check_if_file_exists(filepath):\n        return False\n\n    try:\n        linearray = []\n        with open(filepath, \"r\") as file:\n            linearray = file.readlines()[:position]\n            #print(linearray)\n\n        with open(filepath, \"w\") as file:\n            #print(linearray)\n            for line in linearray:\n                file.write(line)\n\n        return True\n\n    except Exception:\n        return False\n\ndef check_if_file_exists(path):\n    try:\n        # check if file size is present and filesize > 0\n        if os.path.isfile(path):\n            filesize = os.path.getsize(path)\n            if filesize > 0:\n                return True\n            else:\n                return False\n        else:\n            return False\n    except Exception as e:\n        log.warning(\n            \"[Modem] [FILE] Lookup failed\", e=e, path=path,\n        )\n        return False\n\n\ndef set_bit(byte, position, value):\n    \"\"\"Set the bit at 'position' to 'value' in the given byte.\"\"\"\n    if not 0 <= position <= 7:\n        raise ValueError(\"Position must be between 0 and 7\")\n\n    if value:\n        return byte | (1 << position)\n    else:\n        return byte & ~(1 << position)\n\ndef get_bit(byte, position):\n    \"\"\"Get the boolean value of the bit at 'position' in the given byte.\"\"\"\n    if not 0 <= position <= 7:\n        raise ValueError(\"Position must be between 0 and 7\")\n\n    return (byte & (1 << position)) != 0\n\ndef set_flag(byte, flag_name, value, flag_dict):\n    \"\"\"Set the flag in the byte according to the flag dictionary.\n\n    # Define a dictionary mapping flag names to their bit positions\n        flag_dict = {\n            'FLAG1': 0,  # Bit position for FLAG1\n            'FLAG2': 1,  # Bit position for FLAG2, etc.\n            'FLAG3': 2\n        }\n\n    \"\"\"\n    if flag_name not in flag_dict:\n        raise ValueError(f\"Unknown flag name: {flag_name}\")\n    position = flag_dict[flag_name]\n    return set_bit(byte, position, value)\n\n\ndef get_flag(byte, flag_name, flag_dict):\n    \"\"\"Get the value of the flag from the byte according to the flag dictionary.\"\"\"\n    if flag_name not in flag_dict:\n        raise ValueError(f\"Unknown flag name: {flag_name}\")\n    position = flag_dict[flag_name]\n    return get_bit(byte, position)\n\n\ndef find_binary_paths(binary_name=\"rigctld\", search_system_wide=False):\n    \"\"\"\n    Search for a binary within the current working directory, its subdirectories, and optionally,\n    system-wide locations and the PATH environment variable.\n\n    :param binary_name: The base name of the binary to search for, without extension.\n    :param search_system_wide: Boolean flag to enable or disable system-wide search.\n    :return: A list of full paths to the binary if found, otherwise an empty list.\n    \"\"\"\n    binary_paths = []  # Initialize an empty list to store found paths\n    # Adjust binary name for Windows\n    if platform.system() == 'Windows':\n        binary_name += \".exe\"\n\n    # Search in the current working directory and subdirectories\n    root_path = os.getcwd()\n    for dirpath, dirnames, filenames in os.walk(root_path):\n        if binary_name in filenames:\n            binary_paths.append(os.path.join(dirpath, binary_name))\n\n    # If system-wide search is enabled, look in system locations and PATH\n    if search_system_wide:\n        system_paths = os.environ.get('PATH', '').split(os.pathsep)\n        # Optionally add common binary locations for Unix-like and Windows systems\n        if platform.system() != 'Windows':\n            system_paths.extend(['/usr/bin', '/usr/local/bin', '/bin'])\n        else:\n            system_paths.extend(glob.glob(\"C:\\\\Program Files\\\\Hamlib*\\\\bin\"))\n            system_paths.extend(glob.glob(\"C:\\\\Program Files (x86)\\\\Hamlib*\\\\bin\"))\n\n        for path in system_paths:\n            potential_path = os.path.join(path, binary_name)\n            if os.path.isfile(potential_path):\n                binary_paths.append(potential_path)\n\n    return binary_paths\n\n\n\ndef kill_and_execute(binary_path, additional_args=None):\n    \"\"\"\n    Kills any running instances of the binary across Linux, macOS, and Windows, then starts a new one non-blocking.\n\n    :param binary_path: The full path to the binary to execute.\n    :param additional_args: A list of additional arguments to pass to the binary.\n    :return: subprocess.Popen object of the started process\n    \"\"\"\n    # Kill any existing instances of the binary\n    for proc in psutil.process_iter(attrs=['pid', 'name', 'cmdline']):\n        try:\n            cmdline = proc.info['cmdline']\n            # Ensure cmdline is iterable and not None\n            if cmdline and binary_path in ' '.join(cmdline):\n                proc.kill()\n                print(f\"Killed running instance with PID: {proc.info['pid']}\")\n        except (psutil.NoSuchProcess, psutil.AccessDenied, psutil.ZombieProcess):\n            pass  # Process no longer exists or no permission to kill\n\n    # Execute the binary with additional arguments non-blocking\n    command = [binary_path] + (additional_args if additional_args else [])\n    return subprocess.Popen(command)\n\ndef kill_process(proc):\n    try:\n        ps_proc = psutil.Process(proc.pid)\n        ps_proc.kill()\n        print(f\"Killed running instance with PID: {proc.pid}\")\n    except (psutil.NoSuchProcess, psutil.AccessDenied, psutil.ZombieProcess) as e:\n        print(f\"Failed to kill process: {e}\")\n"
  },
  {
    "path": "freedata_server/list_ports_winreg.py",
    "content": "#! python\n#\n# Enumerate serial ports on Windows including a human readable description\n# and hardware information using winreg.\n#\n# Using winreg helps find virtual comports\n# Taken from https://github.com/pyserial/pyserial/pull/70 since pyserial isnt getting recent updates\ntry:\n    # Python 3.X\n    import winreg\nexcept ImportError:\n    # Python 2.7 compatibility\n    try:\n        import _winreg as winreg\n    except ImportError:\n        winreg = None\n\nfrom serial.tools import list_ports_common\nfrom serial.tools import list_ports_windows\n\nSERIAL_REGISTRY_PATH = 'HARDWARE\\\\DEVICEMAP\\\\SERIALCOMM'\n\n\ndef regval_to_listport(winport):\n    \"\"\"Convert a windows port from registry key to pyserial's ListPortInfo.\n\n    Args:\n        winport (tuple): Windows registry value (description, device, value).\n\n    Returns:\n        listport (ListPortInfo): comport device details.\n    \"\"\"\n    # Create the ListPortInfo\n    description, device, _ = winport\n    listport = list_ports_common.ListPortInfo(device)\n\n    # Format the description like other ListPortInfo\n    description = description.replace('\\\\Device\\\\', '')\n    listport.description = \"{} ({})\".format(description, device)\n\n    return listport\n\n\n# end regval_to_listport\n\n\ndef winreg_comports():\n    \"\"\"Return windows comports found in the registry.\n\n    See Also:\n        list_ports_winreg.comports(), list_ports_winreg.comports_list(),\n        list_ports_windows.comports()\n\n    Note:\n        This should include virtual comports, and it is significantly faster\n        than list_ports_windows.comports(). However, list_ports_windows has far\n        more information. comports() contains all list_ports_windows.comports()\n        and winreg_comports() that were not found from list_ports_windows.\n\n    Returns:\n        comports (list): Sorted list of ListPortInfo.\n    \"\"\"\n    try:\n        # Get the Serial Coms registry\n        key = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, SERIAL_REGISTRY_PATH)\n\n        # Get key info - number of values (subkeys, num_vals, last_modified)\n        num_values = winreg.QueryInfoKey(key)[1]\n\n        # Make a generator of comports\n        for i in range(num_values):\n            # get registry value for the comport\n            value = winreg.EnumValue(key, i)\n            yield regval_to_listport(value)\n\n        # Close the registry key\n        winreg.CloseKey(key)\n    except (AttributeError, WindowsError, EnvironmentError):\n        # winreg is None or there was a key error\n        pass\n\n\n# end winreg_comports\n\n\ndef comports_list():\n    \"\"\"Return a list of comports found from list_ports_windows and comports\n    found in the window registry.\n\n    See Also:\n        list_ports_winreg.comports(), list_ports_winreg.winreg_comports(),\n        list_ports_windows.comports()\n\n    Note:\n        This should include virtual comports. This method contains all\n        list_ports_windows.comports() and winreg_comports() that were not found\n        from list_ports_windows.\n\n    Returns:\n        comports (list): List of ListPortInfo comport details.\n    \"\"\"\n    comports = list(list_ports_windows.comports())\n\n    comports[len(comports):] = [li for li in winreg_comports()\n                                if li not in comports]\n\n    return comports\n\n\n# end comports_list\n\n\ndef comports(include_links=False):\n    \"\"\"Generator for comports found from list ports windows and comports found\n    in the windows registry.\n\n    See Also:\n        list_ports_winreg.comports_list(), list_ports_winreg.winreg_comports(),\n        list_ports_windows.comports()\n\n    Note:\n        This should include virtual comports. This method contains all\n        list_ports_windows.comports() and winreg_comports() that were not found\n        from list_ports_windows.\n\n    Yields:\n        comport (ListPortInfo): Comport details.\n\n    Returns:\n        comports (generator): Generator of ListPortInfo comports.\n    \"\"\"\n    existing = []\n    for comport in list_ports_windows.comports():\n        existing.append(comport)\n        yield comport\n\n    for li in winreg_comports():\n        if li not in existing:\n            existing.append(li)\n            yield li\n\n\n# end comports\n\n\n# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n# test\nif __name__ == '__main__':\n    for port, desc, hwid in sorted(comports()):\n        print(\"%s: %s [%s]\" % (port, desc, hwid))"
  },
  {
    "path": "freedata_server/log_handler.py",
    "content": "import logging.config\nimport structlog\nimport sys\n\ndef setup_logging(filename: str = \"\", level: str = \"DEBUG\"):\n    \"\"\"\n    Configure stdlib logging + structlog.\n    - File handler: RotatingFileHandler (10 MB, 10 backups)\n    - Console: colored\n    \"\"\"\n    timestamper = structlog.processors.TimeStamper(fmt=\"iso\")\n    pre_chain = [\n        structlog.stdlib.add_log_level,\n        timestamper,\n    ]\n\n    config_dict = {\n        \"version\": 1,\n        \"disable_existing_loggers\": False,\n        \"formatters\": {\n            \"plain\": {\n                \"()\": structlog.stdlib.ProcessorFormatter,\n                \"processor\": structlog.dev.ConsoleRenderer(colors=False),\n                \"foreign_pre_chain\": pre_chain,\n            },\n            \"colored\": {\n                \"()\": structlog.stdlib.ProcessorFormatter,\n                \"processor\": structlog.dev.ConsoleRenderer(colors=True),\n                \"foreign_pre_chain\": pre_chain,\n            },\n        },\n        \"handlers\": {\n            \"default\": {\n                \"level\": level,\n                \"class\": \"logging.StreamHandler\",\n                \"formatter\": \"colored\",\n                \"stream\": \"ext://sys.stdout\",\n            },\n        },\n        \"loggers\": {\n            \"\": {\n                \"handlers\": [\"default\"],\n                \"level\": level,\n                \"propagate\": True,\n            },\n        },\n    }\n\n    if filename:\n        config_dict[\"handlers\"][\"file\"] = {\n            \"level\": level,\n            \"class\": \"logging.handlers.RotatingFileHandler\",\n            \"filename\": filename,\n            \"maxBytes\": 10 * 1024 * 1024,   # 10 MB\n            \"backupCount\": 10,\n            \"formatter\": \"plain\",\n        }\n        config_dict[\"loggers\"][\"\"][\"handlers\"].append(\"file\")\n\n    logging.config.dictConfig(config_dict)\n\n    structlog.configure(\n        processors=[\n            structlog.stdlib.add_log_level,\n            structlog.stdlib.PositionalArgumentsFormatter(),\n            timestamper,\n            structlog.processors.StackInfoRenderer(),\n            structlog.processors.format_exc_info,\n            structlog.stdlib.ProcessorFormatter.wrap_for_formatter,\n        ],\n        logger_factory=structlog.stdlib.LoggerFactory(),\n        wrapper_class=structlog.stdlib.BoundLogger,\n        cache_logger_on_first_use=True,\n    )\n\n    logger = structlog.get_logger()\n\n    def handle_exception(exc_type, exc_value, exc_traceback):\n        if issubclass(exc_type, KeyboardInterrupt):\n            sys.__excepthook__(exc_type, exc_value, exc_traceback)\n            return\n        logger.error(\"Uncaught exception\", exc_info=(exc_type, exc_value, exc_traceback))\n\n    sys.excepthook = handle_exception\n\n    if filename:\n        logger.info(\"Logger initialized\", log_file=filename)\n\n    return logger\n"
  },
  {
    "path": "freedata_server/maidenhead.py",
    "content": "import math\nimport random\n\ndef haversine(lat1, lon1, lat2, lon2):\n    \"\"\"\n    Calculate the great circle distance in kilometers between two points\n    on the Earth (specified in decimal degrees).\n\n    Parameters:\n    lat1, lon1: Latitude and longitude of point 1.\n    lat2, lon2: Latitude and longitude of point 2.\n\n    Returns:\n    float: Distance between the two points in kilometers.\n    \"\"\"\n    # Radius of the Earth in kilometers. Use 3956 for miles\n    R = 6371.0\n\n    # Convert latitude and longitude from degrees to radians\n    lat1 = math.radians(lat1)\n    lon1 = math.radians(lon1)\n    lat2 = math.radians(lat2)\n    lon2 = math.radians(lon2)\n\n    # Difference in coordinates\n    dlon = lon2 - lon1\n    dlat = lat2 - lat1\n\n    # Haversine formula\n    a = math.sin(dlat / 2) ** 2 + math.cos(lat1) * math.cos(lat2) * math.sin(dlon / 2) ** 2\n    c = 2 * math.atan2(math.sqrt(a), math.sqrt(1 - a))\n\n    distance = R * c\n\n    return distance\n\n\ndef maidenhead_to_latlon(grid_square):\n    \"\"\"\n    Convert a Maidenhead locator to latitude and longitude coordinates.\n    The output coordinates represent the southwestern corner of the grid square.\n\n    Parameters:\n    grid_square (str): The Maidenhead locator.\n\n    Returns:\n    tuple: A tuple containing the latitude and longitude (in that order) of the grid square's center.\n    \"\"\"\n\n    grid_square = generate_full_maidenhead(grid_square)\n\n    grid_square = grid_square.upper()\n    lon = -180 + (ord(grid_square[0]) - ord('A')) * 20\n    lat = -90 + (ord(grid_square[1]) - ord('A')) * 10\n    lon += (int(grid_square[2]) * 2)\n    lat += int(grid_square[3])\n\n    if len(grid_square) >= 6:\n        lon += (ord(grid_square[4]) - ord('A')) * (5 / 60)\n        lat += (ord(grid_square[5]) - ord('A')) * (2.5 / 60)\n\n    # not needed now as we always have 6 digits\n    if len(grid_square) == 8:\n        lon += int(grid_square[6]) * (5 / 600)\n        lat += int(grid_square[7]) * (2.5 / 600)\n\n    # Adjust to the center of the grid square\n    # not needed now as we always have 6 digits\n    if len(grid_square) <= 4:\n        lon += 1\n        lat += 0.5\n    elif len(grid_square) == 6:\n        lon += 2.5 / 60\n        lat += 1.25 / 60\n    else:\n        lon += 2.5 / 600\n        lat += 1.25 / 600\n\n    return lat, lon\n\n\ndef distance_between_locators(locator1, locator2):\n    \"\"\"\n    Calculate the distance between two Maidenhead locators and return the result as a dictionary.\n\n    Parameters:\n    locator1 (str): The first Maidenhead locator.\n    locator2 (str): The second Maidenhead locator.\n\n    Returns:\n    dict: A dictionary containing the distances in kilometers and miles.\n    \"\"\"\n    lat1, lon1 = maidenhead_to_latlon(locator1)\n    lat2, lon2 = maidenhead_to_latlon(locator2)\n    km = haversine(lat1, lon1, lat2, lon2)\n    miles = km * 0.621371\n    return {'kilometers': km, 'miles': miles}\n\n\nimport random\n\n\nimport random\nimport string\n\ndef generate_full_maidenhead(grid_square):\n    \"\"\"\n    Convert a Maidenhead locator of 2 or 4 characters to a 6-character locator\n    by generating random characters for the missing positions, while ensuring the correct format:\n    1-2: Uppercase letters (A-R)\n    3-4: Digits (0-9)\n    5-6: Lowercase letters (a-r)\n\n    Parameters:\n    grid_square (str): A 2, 4, or 6 character Maidenhead locator.\n\n    Returns:\n    str: A 6-character Maidenhead locator.\n    \"\"\"\n\n    grid_square = grid_square.upper()\n\n    # If the grid square is longer than 6 characters, strip it to 6 characters\n    if len(grid_square) > 6:\n        grid_square = grid_square[:6]\n\n    if len(grid_square) == 2:\n        # Generate random digits for positions 3 and 4\n        grid_square += f\"{random.randint(0, 9)}{random.randint(0, 9)}\"\n        # Generate random lowercase letters from 'a' to 'r' for positions 5 and 6\n        grid_square += random.choice(\"abcdefghijklmnopqr\")\n        grid_square += random.choice(\"abcdefghijklmnopqr\")\n\n    elif len(grid_square) == 4:\n        # Generate random lowercase letters from 'a' to 'r' for positions 5 and 6\n        grid_square += random.choice(\"abcdefghijklmnopqr\")\n        grid_square += random.choice(\"abcdefghijklmnopqr\")\n\n    elif len(grid_square) == 6:\n        # If grid square is valid and already 6 characters, enforce format\n        grid_square = grid_square[:2].upper() + grid_square[2:4] + grid_square[4:6].lower()\n        return grid_square\n\n    else:\n        raise ValueError(\"Grid square must be 2, 4, or 6 characters long.\")\n\n    # Adjust the case for the last two characters\n    grid_square = grid_square[:4] + grid_square[4:].lower()\n    return grid_square\n\n\n"
  },
  {
    "path": "freedata_server/message_p2p.py",
    "content": "from datetime import datetime, timezone\nimport api_validations\nimport base64\nimport json\nfrom message_system_db_messages import DatabaseManagerMessages\n\n\ndef message_received(ctx, data, statistics):\n    \"\"\"Handles a received P2P message.\n\n    This function processes a received P2P message by decoding the data,\n    converting it to a dictionary, and adding it to the message database.\n\n    Args:\n        event_manager (EventManager): The event manager instance.\n        state_manager (StateManager): The state manager instance.\n        data (bytes): The received message data.\n        statistics (dict): Statistics about the message transmission.\n    \"\"\"\n    decompressed_json_string = data.decode('utf-8')\n    received_message_obj = MessageP2P.from_payload(decompressed_json_string)\n    received_message_dict = MessageP2P.to_dict(received_message_obj)\n    DatabaseManagerMessages(ctx).add_message(received_message_dict, statistics, direction='receive', status='received', is_read=False, frequency=ctx.state_manager.radio_frequency)\n\ndef message_transmitted(ctx, data, statistics):\n    \"\"\"Handles a transmitted P2P message.\n\n    This function processes a transmitted P2P message by decoding the\n    data, converting it to a dictionary, and updating the message status\n    and statistics in the database.\n\n    Args:\n        event_manager (EventManager): The event manager instance.\n        state_manager (StateManager): The state manager instance.\n        data (bytes): The transmitted message data.\n        statistics (dict): Statistics about the message transmission.\n    \"\"\"\n    decompressed_json_string = data.decode('utf-8')\n    payload_message_obj = MessageP2P.from_payload(decompressed_json_string)\n    payload_message = MessageP2P.to_dict(payload_message_obj)\n    # Todo we need to optimize this - WIP\n    DatabaseManagerMessages(ctx).update_message(payload_message[\"id\"], update_data={'status': 'transmitted'})\n    DatabaseManagerMessages(ctx).update_message(payload_message[\"id\"], update_data={'statistics': statistics}, frequency=ctx.state_manager.radio_frequency)\n\n\ndef message_failed(ctx, data, statistics):\n    \"\"\"Handles a failed P2P message transmission.\n\n    This function processes a failed P2P message transmission by decoding\n    the data, converting it to a dictionary, and updating the message\n    status and statistics in the database.\n\n    Args:\n        event_manager (EventManager): The event manager instance.\n        state_manager (StateManager): The state manager instance.\n        data (bytes): The message data that failed to transmit.\n        statistics (dict): Statistics related to the failed transmission.\n    \"\"\"\n    decompressed_json_string = data.decode('utf-8')\n    payload_message_obj = MessageP2P.from_payload(decompressed_json_string)\n    payload_message = MessageP2P.to_dict(payload_message_obj)\n    # Todo we need to optimize this - WIP\n    DatabaseManagerMessages(ctx).update_message(payload_message[\"id\"], update_data={'status': 'failed'})\n    DatabaseManagerMessages(ctx).update_message(payload_message[\"id\"], update_data={'statistics': statistics}, frequency=ctx.state_manager.radio_frequency)\n\nclass MessageP2P:\n    \"\"\"Represents a P2P message.\n\n    This class encapsulates a peer-to-peer (P2P) message, including its ID,\n    timestamp, origin, destination, message body, and attachments. It\n    provides methods for creating messages from API parameters or payloads,\n    encoding and decoding attachments, converting messages to dictionaries\n    or payloads, and generating unique message IDs.\n    \"\"\"\n    def __init__(self, id: str, origin: str, destination: str, body: str, attachments: list) -> None:\n        \"\"\"Initializes a new MessageP2P instance.\n\n        Args:\n            id (str): The unique ID of the message.\n            origin (str): The callsign of the originating station.\n            destination (str): The callsign of the destination station.\n            body (str): The message body text.\n            attachments (list): A list of attachments, where each attachment\n                is a dictionary with 'name', 'data', and 'mime_type' keys.\n        \"\"\"\n        self.id = id\n        self.timestamp = datetime.now(timezone.utc).isoformat()\n        self.origin = origin\n        self.destination = destination\n        self.body = body\n        self.attachments = attachments\n\n    @classmethod\n    def from_api_params(cls, origin: str, params: dict):\n        \"\"\"Creates a MessageP2P object from API parameters.\n\n        This method creates a new P2P message object from the given API\n        parameters, including origin, destination, message body, and\n        attachments. It validates the destination callsign and attachments,\n        decodes attachments, generates a message ID if not provided, and\n        returns a new MessageP2P instance.\n\n        Args:\n            origin (str): The callsign of the originating station.\n            params (dict): A dictionary containing the message parameters\n                ('destination', 'body', and optionally 'attachments' and 'id').\n\n        Raises:\n            ValueError: If the destination callsign is invalid.\n\n        Returns:\n            MessageP2P: A new MessageP2P object.\n        \"\"\"\n\n        destination = params['destination']\n        if not api_validations.validate_freedata_callsign(destination):\n            destination = f\"{destination}-0\"\n\n        if not api_validations.validate_freedata_callsign(destination):\n            raise ValueError(f\"Invalid destination given ({params['destination']})\")\n\n        body = params['body']\n\n        attachments = []\n        if 'attachments' in params: \n            for a in params['attachments']:\n                api_validations.validate_message_attachment(a)\n                attachments.append(cls.__decode_attachment__(a))\n\n        timestamp = datetime.now(timezone.utc).isoformat()\n        if 'id' not in params:\n            msg_id = f\"{origin}_{destination}_{timestamp}\"\n        else:\n            msg_id = params[\"id\"]\n\n        return cls(msg_id, origin, destination, body, attachments)\n        \n    @classmethod\n    def from_payload(cls, payload):\n        \"\"\"Creates a MessageP2P object from a payload string.\n\n        This method creates a new P2P message object from the given payload\n        string. It decodes the JSON payload, decodes any attachments, and\n        returns a new MessageP2P instance.\n\n        Args:\n            payload (str): The JSON payload string.\n\n        Returns:\n            MessageP2P: A new MessageP2P object.\n        \"\"\"\n        payload_message = json.loads(payload)\n        attachments = list(map(cls.__decode_attachment__, payload_message['attachments']))\n        return cls(payload_message['id'], payload_message['origin'], payload_message['destination'],\n                   payload_message['body'], attachments)\n\n    def get_id(self) -> str:\n        \"\"\"Generates a unique message ID.\n\n        This method generates a unique ID for the message based on the\n        origin, destination, and timestamp. It is used if no ID is provided\n        during message creation.\n\n        Returns:\n            str: The generated message ID.\n        \"\"\"\n        return f\"{self.origin}_{self.destination}_{self.timestamp}\"\n\n    def __encode_attachment__(self, binary_attachment: dict):\n        \"\"\"Encodes an attachment using base64.\n\n        This method takes a binary attachment dictionary (containing 'name',\n        'data', and 'mime_type' keys) and base64-encodes the 'data' field.\n\n        Args:\n            binary_attachment (dict): The attachment dictionary to encode.\n\n        Returns:\n            dict: The encoded attachment dictionary.\n        \"\"\"\n        encoded_attachment = binary_attachment.copy()\n        encoded_attachment['data'] = str(base64.b64encode(binary_attachment['data']), 'utf-8')\n        return encoded_attachment\n    \n    def __decode_attachment__(encoded_attachment: dict):\n        \"\"\"Decodes a base64-encoded attachment.\n\n        This method takes an encoded attachment dictionary (containing\n        'name', 'data', and 'mime_type' keys) and base64-decodes the\n        'data' field.\n\n        Args:\n            encoded_attachment (dict): The attachment dictionary to decode.\n\n        Returns:\n            dict: The decoded attachment dictionary.\n        \"\"\"\n        decoded_attachment = encoded_attachment.copy()\n        decoded_attachment['data'] = base64.b64decode(encoded_attachment['data'])\n        return decoded_attachment\n\n    def to_dict(self):\n        \"\"\"Converts the message to a dictionary.\n\n        This method converts the message object to a dictionary, encoding\n        any attachments using base64. The resulting dictionary can be\n        easily serialized to JSON or used for storage in a database.\n\n        Returns:\n            dict: A dictionary representation of the message.\n        \"\"\"\n\n        return {\n            'id': self.id,\n            'origin': self.origin,\n            'destination': self.destination,\n            'body': self.body,\n            'attachments': list(map(self.__encode_attachment__, self.attachments)),\n        }\n    \n    def to_payload(self):\n        \"\"\"Make a byte array ready to be sent out of the message data\"\"\"\n        json_string = json.dumps(self.to_dict())\n        return json_string\n\n"
  },
  {
    "path": "freedata_server/message_system_db_attachments.py",
    "content": "from message_system_db_manager import DatabaseManager\nfrom message_system_db_model import MessageAttachment, Attachment, P2PMessage\nimport json\nimport hashlib\n\nclass DatabaseManagerAttachments(DatabaseManager):\n    \"\"\"Manages database operations for message attachments.\n\n    This class extends the DatabaseManager and provides methods for adding,\n    retrieving, and deleting message attachments in the database. It also\n    handles orphaned attachments and database sessions.\n    \"\"\"\n    def __init__(self, ctx):\n        \"\"\"Initializes DatabaseManagerAttachments.\n\n        Args:\n            event_manager (EventManager): The event manager instance.\n        \"\"\"\n        #self.ctx = ctx\n        super().__init__(ctx)\n\n    def add_attachment(self, session, message, attachment_data):\n        \"\"\"Adds an attachment to the database and links it to a message.\n\n        This method adds a new attachment to the database if it doesn't\n        already exist, based on its SHA-512 hash. It then creates a link\n        between the message and the attachment using the MessageAttachment\n        association table. It handles cases where the attachment already\n        exists and logs appropriate messages.\n\n        Args:\n            session: The database session object.\n            message: The message object to link the attachment to.\n            attachment_data (dict): A dictionary containing the attachment\n                data, including 'name', 'type', 'data', and optionally\n                'checksum_crc32'.\n\n        Returns:\n            Attachment: The Attachment object that was added or found.\n        \"\"\"\n        hash_sha512 = hashlib.sha512(attachment_data['data'].encode()).hexdigest()\n        existing_attachment = session.query(Attachment).filter_by(hash_sha512=hash_sha512).first()\n\n        if not existing_attachment:\n            attachment = Attachment(\n                name=attachment_data['name'],\n                data_type=attachment_data['type'],\n                data=attachment_data['data'],\n                checksum_crc32=attachment_data.get('checksum_crc32', ''),\n                hash_sha512=hash_sha512\n            )\n            session.add(attachment)\n            session.flush()  # Ensure the attachment is persisted and has an ID\n            self.log(f\"Added attachment to database: {attachment.name}\")\n        else:\n            attachment = existing_attachment\n            self.log(f\"Attachment {attachment.name} already exists in database\")\n\n        # Link the message and the attachment through MessageAttachment\n        link = MessageAttachment(message=message, attachment=attachment)\n        session.add(link)\n        self.log(f\"Linked message with attachment: {attachment.name}\")\n\n        return attachment\n\n    def get_attachments_by_message_id(self, message_id):\n        \"\"\"Retrieves attachments associated with a message ID.\n\n        This method retrieves all attachments linked to a given message ID\n        from the database. It returns a list of dictionaries, where each\n        dictionary represents an attachment. It handles cases where no\n        message or attachments are found and logs any database errors.\n\n        Args:\n            message_id: The ID of the message whose attachments are to be retrieved.\n\n        Returns:\n            list: A list of dictionaries, each representing an attachment,\n            or an empty list if no attachments or message are found.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            # Fetch the message by its ID\n            message = session.query(P2PMessage).filter_by(id=message_id).first()\n            if message:\n                # Navigate through the association to get attachments\n                attachments = [ma.attachment.to_dict() for ma in message.message_attachments]\n                return attachments\n            else:\n                return []\n        except Exception as e:\n            self.log(f\"Error fetching attachments for message ID {message_id}: {e}\", isWarning=True)\n            return []\n        finally:\n            session.remove()\n\n    def get_attachments_by_message_id_json(self, message_id):\n        \"\"\"Retrieves attachments for a message as a JSON string.\n\n        This method retrieves attachments associated with a given message ID\n        and returns them as a JSON-formatted string. It calls\n        get_attachments_by_message_id to fetch the attachments and then\n        serializes them to JSON.\n\n        Args:\n            message_id: The ID of the message.\n\n        Returns:\n            str: A JSON string representing the attachments.\n        \"\"\"\n        attachments = self.get_attachments_by_message_id(message_id)\n        return json.dumps(attachments)\n\n    def get_attachment_by_sha512(self, hash_sha512):\n        \"\"\"Retrieves an attachment by its SHA-512 hash.\n\n        This method queries the database for an attachment matching the\n        provided SHA-512 hash. If found, it returns the attachment data as\n        a dictionary; otherwise, it returns None. It handles potential\n        database errors and logs appropriate messages.\n\n        Args:\n            hash_sha512 (str): The SHA-512 hash of the attachment to retrieve.\n\n        Returns:\n            dict or None: The attachment data as a dictionary if found,\n            None otherwise.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            attachment = session.query(Attachment).filter_by(hash_sha512=hash_sha512).first()\n            if attachment:\n                return attachment.to_dict()\n            else:\n                self.log(f\"No attachment found with SHA-512 hash: {hash_sha512}\")\n                return None\n        except Exception as e:\n            self.log(f\"Error fetching attachment with SHA-512 hash {hash_sha512}: {e}\", isWarning=True)\n            return None\n        finally:\n            session.remove()\n\n    def delete_attachments_by_message_id(self, message_id):\n        \"\"\"\n        Deletes attachment associations for a given message ID.\n\n        For each attachment linked to the message:\n          - If the attachment is linked to more than one message, only the association for this message is deleted.\n          - If the attachment is linked only to this message, both the association and the attachment record are deleted.\n\n        Parameters:\n            message_id (str): The ID of the message whose attachment associations should be deleted.\n\n        Returns:\n            bool: True if the deletion was successful, False otherwise.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            # Find all attachment associations for the given message ID.\n            links = session.query(MessageAttachment).filter_by(message_id=message_id).all()\n            if not links:\n                self.log(f\"No attachments linked with message ID {message_id} found.\")\n                return True\n\n            for link in links:\n                # Count how many associations exist for this attachment.\n                link_count = session.query(MessageAttachment).filter_by(attachment_id=link.attachment_id).count()\n                if link_count > 1:\n                    # More than one link exists, so only remove the association.\n                    session.delete(link)\n                    self.log(\n                        f\"Deleted link for attachment '{link.attachment.name}' from message {message_id} (other links exist).\")\n                else:\n                    # Only one link exists, so delete both the association and the attachment.\n                    session.delete(link)\n                    session.delete(link.attachment)\n                    self.log(f\"Deleted attachment '{link.attachment.name}' from message {message_id} (only link).\")\n\n            session.commit()\n            return True\n        except Exception as e:\n            session.rollback()\n            self.log(f\"Error deleting attachments for message ID {message_id}: {e}\", isWarning=True)\n            return False\n        finally:\n            session.remove()\n\n\n    def clean_orphaned_attachments(self):\n        \"\"\"\n        Checks for orphaned attachments in the database, i.e. attachments that have no\n        MessageAttachment links to any messages. Optionally, deletes these orphaned attachments.\n\n        Parameters:\n            cleanup (bool): If True, deletes the orphaned attachments; if False, only returns them.\n\n        Returns:\n            If cleanup is False:\n                list: A list of dictionaries representing the orphaned attachments.\n            If cleanup is True:\n                dict: A summary dictionary with the count of deleted attachments.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            orphaned = []\n            # Get all attachments in the database.\n            attachments = session.query(Attachment).all()\n            for attachment in attachments:\n                # Count the number of MessageAttachment links for this attachment.\n                link_count = session.query(MessageAttachment).filter_by(attachment_id=attachment.id).count()\n                if link_count == 0:\n                    orphaned.append(attachment)\n\n            for attachment in orphaned:\n                self.log(f\"Deleting orphaned attachment: {attachment.name}\")\n                session.delete(attachment)\n            self.log(f\"Checked for orphaned attachments\")\n            session.commit()\n            return {'status': 'success', 'deleted_count': len(orphaned)}\n        except Exception as e:\n            session.rollback()\n            self.log(f\"Error checking orphaned attachments: {e}\", isWarning=True)\n            return None\n        finally:\n            session.remove()\n"
  },
  {
    "path": "freedata_server/message_system_db_beacon.py",
    "content": "from message_system_db_manager import DatabaseManager\nfrom message_system_db_model import Beacon, Station\nfrom datetime import timezone, timedelta, datetime\n\nclass DatabaseManagerBeacon(DatabaseManager):\n    \"\"\"Manages database operations for beacon signals.\n\n    This class extends the DatabaseManager and provides methods for\n    interacting with beacon data in the database. It includes\n    functionality for adding, retrieving, and cleaning up beacon records.\n    \"\"\"\n    def __init__(self, ctx):\n        \"\"\"Initializes the DatabaseManagerBeacon.\n\n        Args:\n            event_manager (EventManager): The event manager instance.\n        \"\"\"\n        super().__init__(ctx)\n\n    def add_beacon(self, timestamp, callsign, snr, gridsquare):\n        \"\"\"Adds a new beacon record to the database.\n\n        This method adds a new beacon record to the database, associating\n        it with the given callsign, timestamp, SNR, and gridsquare. It\n        creates the station if it doesn't exist and updates the station's\n        location if the gridsquare has changed. It handles potential\n        database errors and performs rollbacks if necessary.\n\n        Args:\n            timestamp (datetime): The timestamp of the beacon signal.\n            callsign (str): The callsign of the station transmitting the beacon.\n            snr (float): The signal-to-noise ratio of the beacon signal.\n            gridsquare (str): The gridsquare of the station.\n        \"\"\"\n        session = None\n        try:\n            session = self.get_thread_scoped_session()\n            # Ensure the station exists or create it, and get the station object\n            station = self.get_or_create_station(callsign, session)\n            # Initialize location as an empty dict if None\n            if not station.location:\n                station.location = {}\n\n            # Now, check and update the station's location with gridsquare if it has changed\n            if station.location.get('gridsquare') != gridsquare:\n                self.log(f\"Updating location for {callsign}\")\n                station.location['gridsquare'] = gridsquare  # Update directly without re-serialization\n                session.flush()\n\n            # Now, add the beacon\n            new_beacon = Beacon(timestamp=timestamp, snr=snr, callsign=callsign)\n            session.add(new_beacon)\n            session.commit()\n            self.log(f\"Added beacon for {callsign}\")\n\n        except Exception as e:\n            self.log(f\"An error occurred while adding beacon for {callsign}: {e}\", isWarning=True)\n            if session:\n                session.rollback()\n        finally:\n            if session and not session.is_active:\n                session.remove()\n\n    def get_beacons_by_callsign(self, callsign):\n        \"\"\"Retrieves beacon records for a specific callsign.\n\n        This method retrieves all beacon records associated with the given\n        callsign from the database. It returns a list of dictionaries,\n        where each dictionary represents a beacon record, including its\n        ID, timestamp, SNR, and gridsquare. It handles cases where no\n        station or beacons are found and logs any database errors.\n\n        Args:\n            callsign (str): The callsign of the station.\n\n        Returns:\n            list: A list of dictionaries, each representing a beacon\n            record, or an empty list if no beacons or station are found.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            # Query the station by callsign\n            station = session.query(Station).filter_by(callsign=callsign).first()\n            if station:\n                # Access the beacons directly thanks to the back_populated relationship\n                beacons = station.beacons\n                # Convert beacon objects to a dictionary if needed, or directly return the list\n                beacons_data = [{\n                    'id': beacon.id,\n                    'timestamp': beacon.timestamp.isoformat(),\n                    'snr': beacon.snr,\n                    'gridsquare': station.location.get('gridsquare') if station.location else None\n                } for beacon in beacons]\n                return beacons_data\n            else:\n                self.log(f\"No station found with callsign {callsign}\")\n                return []\n        except Exception as e:\n            self.log(f\"An error occurred while fetching beacons for callsign {callsign}: {e}\", isWarning=True)\n            return []\n        finally:\n            session.remove()\n\n    def get_all_beacons(self):\n        \"\"\"Retrieves all beacon records from the database.\n\n        This method retrieves all beacon records from the database,\n        including their associated gridsquare information. It returns a\n        list of dictionaries, where each dictionary represents a beacon\n        record. It handles potential database errors and logs appropriate\n        messages.\n\n        Returns:\n            list: A list of dictionaries, each representing a beacon\n            record, or an empty list if an error occurs.\n        \"\"\"\n        session = None\n        try:\n            session = self.get_thread_scoped_session()\n            # Query all beacons\n            beacons_query = session.query(Beacon).all()\n\n            # Optionally format the result for easier consumption\n            beacons_list = []\n            for beacon in beacons_query:\n                # Fetch the associated station for each beacon to get the 'gridsquare' information\n                station = session.query(Station).filter_by(callsign=beacon.callsign).first()\n                gridsquare = station.location.get('gridsquare') if station and station.location else None\n\n                beacons_list.append({\n                    'id': beacon.id,\n                    'timestamp': beacon.timestamp.isoformat(),\n                    'snr': beacon.snr,\n                    'callsign': beacon.callsign,\n                    'gridsquare': gridsquare\n                })\n\n            return beacons_list\n\n        except Exception as e:\n            self.log(f\"An error occurred while fetching all beacons: {e}\", isWarning=True)\n            return []  # Return an empty list or handle the error as appropriate\n        finally:\n            if session and not session.is_active:\n                session.remove()\n\n    def beacon_cleanup_older_than_days(self, days):\n        \"\"\"Deletes beacon records older than a specified number of days.\n\n        This method cleans up old beacon records from the database by\n        deleting entries older than the specified number of days. It\n        handles database errors and performs rollbacks if necessary.\n\n        Args:\n            days (int): The number of days old a beacon must be to be deleted.\n\n        Returns:\n            int: The number of deleted beacon records, or 0 if an error occurred.\n        \"\"\"\n        session = None\n        try:\n            session = self.get_thread_scoped_session()\n            # Calculate the threshold timestamp\n            older_than_timestamp = datetime.now(timezone.utc) - timedelta(days=days)\n\n            # Query and delete beacons older than the calculated timestamp\n            delete_query = session.query(Beacon).filter(Beacon.timestamp < older_than_timestamp)\n            deleted_count = delete_query.delete(synchronize_session='fetch')\n            session.commit()\n\n            self.log(f\"Deleted {deleted_count} beacons older than {days} days\")\n            return deleted_count\n\n        except Exception as e:\n            self.log(f\"An error occurred during beacon cleanup: {e}\", isWarning=True)\n            if session:\n                session.rollback()\n            return 0  # Return 0 or handle the error as appropriate\n        finally:\n            if session and not session.is_active:\n                session.remove()"
  },
  {
    "path": "freedata_server/message_system_db_manager.py",
    "content": "from sqlalchemy import create_engine, text, inspect\nfrom sqlalchemy.orm import scoped_session, sessionmaker\nfrom threading import local\nfrom message_system_db_model import Base, Config, Station, Status, P2PMessage\nimport structlog\nimport helpers\nimport os\nimport sys\nfrom constants import MESSAGE_SYSTEM_DATABASE_VERSION\n\nclass DatabaseManager:\n    \"\"\"Manages database connections and operations.\n\n    This class provides a base for database interactions, handling\n    database connections, session management, logging, and common\n    database operations such as initialization, repair, and retrieval of\n    stations and statuses.\n    \"\"\"\n    DATABASE_ENV_VAR = 'FREEDATA_DATABASE'\n    DEFAULT_DATABASE_FILE = 'freedata-messages.db'\n\n    def __init__(self, ctx):\n        \"\"\"Initializes the DatabaseManager.\n\n        Args:\n            event_manager (EventManager): The event manager instance.\n        \"\"\"\n        self.ctx = ctx\n\n        db_file = self.get_database()\n        self.engine = create_engine(db_file, echo=False)\n        self.thread_local = local()\n        self.session_factory = sessionmaker(bind=self.engine)\n        Base.metadata.create_all(self.engine)\n\n        self.logger = structlog.get_logger(type(self).__name__)\n\n    def get_database(self):\n        \"\"\"Retrieves the database file path.\n\n        This method determines the database file path based on the\n        environment variable `FREEDATA_DATABASE`. If the variable is set,\n        its value is used as the path. Otherwise, it defaults to\n        `freedata-messages.db` in the script directory.\n\n        Returns:\n            str: The database file path as a SQLAlchemy URL.\n        \"\"\"\n        script_directory = os.path.dirname(os.path.abspath(__file__))\n        sys.path.append(script_directory)\n\n        if self.DATABASE_ENV_VAR in os.environ:\n            #db_path = os.getenv(self.DATABASE_ENV_VAR, os.path.join(script_directory, self.DEFAULT_DATABASE_FILE))\n            db_path = os.getenv(self.DATABASE_ENV_VAR)\n        else:\n            db_path = os.path.join(script_directory, self.DEFAULT_DATABASE_FILE)\n        return 'sqlite:///' + db_path\n\n    def initialize_default_values(self):\n        \"\"\"Initializes default values in the database.\n\n        This method adds predefined status values to the database if they\n        don't already exist. It ensures that the database has the\n        necessary status entries for tracking message states. It handles\n        potential database errors and performs rollbacks if necessary.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            statuses = [\n                \"transmitting\",\n                \"transmitted\",\n                \"received\",\n                \"failed\",\n                \"failed_checksum\",\n                \"aborted\",\n                \"queued\"\n            ]\n\n            # Add default statuses if they don't exist\n            for status_name in statuses:\n                existing_status = session.query(Status).filter_by(name=status_name).first()\n                if not existing_status:\n                    new_status = Status(name=status_name)\n                    session.add(new_status)\n\n            session.commit()\n            self.log(\"Initialized database\")\n        except Exception as e:\n            session.rollback()\n            self.log(f\"An error occurred while initializing default values: {e}\", isWarning=True)\n        finally:\n            session.remove()\n\n    def database_repair_and_cleanup(self):\n        \"\"\"Repairs and cleans up the database.\n\n        This method performs several database maintenance tasks:\n        1. Updates messages with \"transmitting\" status to \"failed\" if the\n           FreeDATA server was interrupted during transmission.\n        2. Vacuums the database to reclaim unused space.\n        3. Reindexes the database to improve query performance.\n        4. Performs an integrity check to ensure database consistency.\n        It handles potential errors during these operations and logs\n        appropriate messages.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n\n            # Fetch the 'failed' status ID\n            failed_status = session.query(Status).filter_by(name=\"failed\").first()\n            if not failed_status:\n                raise ValueError(\"Failed status not found in the database\")\n\n            # Fetch the 'transmitting' status ID\n            transmitting_status = session.query(Status).filter_by(name=\"transmitting\").first()\n            if transmitting_status:\n                # Check if any messages have the status \"transmitting\" and update them to \"failed\"\n                messages_to_update = session.query(P2PMessage).filter_by(status_id=transmitting_status.id).all()\n                for message in messages_to_update:\n                    message.status_id = failed_status.id\n\n                session.commit()\n                len_repaired_message = len(messages_to_update)\n                if len_repaired_message > 0:\n                    self.log(f\"Repaired {len_repaired_message} messages ('transmitting' to 'failed')\")\n\n            # Vacuum the database to reclaim space\n            session.execute(text(\"VACUUM\"))\n            self.log(\"Database vacuumed successfully\")\n\n            # Reindex all tables to improve query performance\n            session.execute(text(\"REINDEX\"))\n            self.log(\"Database reindexed successfully\")\n\n            # Perform an integrity check on the database\n            result = session.execute(text(\"PRAGMA integrity_check\")).fetchone()\n            if result[0] == 'ok':\n                self.log(\"Database integrity check passed\")\n            else:\n                self.log(\"Database integrity check failed\", isWarning=True)\n\n        except Exception as e:\n            session.rollback()\n            self.log(f\"An error occurred while checking databse: {e}\", isWarning=True)\n        finally:\n            session.remove()\n\n    def log(self, message, isWarning=False):\n        \"\"\"Logs a message with appropriate log level.\n\n        This method logs the given message using either `self.logger.warn`\n        if isWarning is True, or `self.logger.info` otherwise. It\n        prepends the class name to the message for context.\n\n        Args:\n            message (str): The message to log.\n            isWarning (bool, optional): Whether to log as a warning. Defaults to False.\n        \"\"\"\n        msg = f\"[{type(self).__name__}]: {message}\"\n        logger = self.logger.warn if isWarning else self.logger.info\n        logger(msg)\n\n    def get_thread_scoped_session(self):\n        \"\"\"Retrieves a thread-scoped database session.\n\n        This method returns a database session that is scoped to the\n        current thread. If no session exists for the current thread, it\n        creates a new one. This ensures that each thread uses its own\n        session, preventing conflicts and data corruption.\n\n        Returns:\n            scoped_session: The thread-scoped database session.\n        \"\"\"\n        if not hasattr(self.thread_local, \"session\"):\n            self.thread_local.session = scoped_session(self.session_factory)\n        return self.thread_local.session\n\n    def get_or_create_station(self, callsign, session=None):\n        \"\"\"Retrieves or creates a station record.\n\n        This method retrieves a station record from the database based on\n        the given callsign. If the station doesn't exist, it creates a\n        new record with the callsign and its CRC checksum. It handles\n        database sessions and transactions appropriately, committing\n        changes only if it created the session.\n\n        Args:\n            callsign (str): The callsign of the station.\n            session (scoped_session, optional): An existing database session.\n                Defaults to None.\n\n        Returns:\n            Station or None: The Station object if found or created, None if an error occurred.\n        \"\"\"\n        own_session = False\n        if not session:\n            session = self.get_thread_scoped_session()\n            own_session = True\n\n        try:\n            station = session.query(Station).filter_by(callsign=callsign).first()\n            if not station:\n                self.log(f\"Updating station list with {callsign}\")\n                station = Station(callsign=callsign, checksum=helpers.get_crc_24(callsign).hex())\n                session.add(station)\n                session.flush()\n\n            if own_session:\n                session.commit()  # Only commit if we created the session\n\n            return station\n\n        except Exception as e:\n            self.log(f\"An error occurred while getting or creating station {callsign}: {e}\", isWarning=True)\n            if own_session:\n                session.rollback()\n            return None  # Indicate failure\n\n        finally:\n            if own_session:\n                session.remove()\n\n    def get_callsign_by_checksum(self, checksum):\n        \"\"\"Retrieves a callsign by its checksum.\n\n        This method searches for a station in the database matching the\n        provided checksum and returns the corresponding callsign if found.\n        It logs messages indicating success or failure and handles\n        potential database errors.\n\n        Args:\n            checksum (str): The checksum to search for.\n\n        Returns:\n            str or None: The callsign if found, None otherwise.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            station = session.query(Station).filter_by(checksum=checksum).first()\n            if station:\n                self.log(f\"Found callsign [{station.callsign}] for checksum [{station.checksum}]\")\n                return station.callsign\n            else:\n                self.log(f\"No callsign found for [{checksum}]\")\n                return None\n        except Exception as e:\n            self.log(f\"Error fetching callsign for checksum {checksum}: {e}\", isWarning=True)\n            return None  # Or handle the error as needed\n        finally:\n            session.remove()\n\n    def get_or_create_status(self, session, status_name):\n        \"\"\"Retrieves or creates a status record.\n\n        This method retrieves a status record from the database based on\n        the given status name. If the status doesn't exist, it creates a\n        new record. It uses the provided session to interact with the\n        database and flushes the session to ensure the new status ID is\n        available immediately.\n\n        Args:\n            session (scoped_session): The database session object.\n            status_name (str): The name of the status.\n\n        Returns:\n            Status: The Status object, either retrieved or newly created.\n        \"\"\"\n        status = session.query(Status).filter_by(name=status_name).first()\n        if not status:\n            status = Status(name=status_name)\n            session.add(status)\n            session.flush()  # To get the ID immediately\n        return status\n\n\n    def check_database_version(self):\n        \"\"\"Updates the database schema to the expected version.\n\n            This method is called by `check_database_version` if the current\n            schema version is older than the expected version. It performs\n            the necessary schema updates based on the current and expected\n            versions. Currently, it only logs a message indicating that\n            schema updates are not yet implemented. It takes the current and\n            expected versions as arguments, but doesn't use them yet.\n\n            Args:\n            current_version (int): The current database schema version.\n            expected_version (int): The expected database schema version.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            config = session.query(Config).filter_by(db_variable='database_version').first()\n            if config is None:\n                config = Config(db_variable='database_version', db_version=\"0\")\n                session.add(config)\n                session.commit()\n                self.log(\"No database version found. Assuming version 0 and storing it.\")\n\n            current_version = int(config.db_version)\n            expected_version = int(MESSAGE_SYSTEM_DATABASE_VERSION)\n\n            if current_version < expected_version:\n                self.log(\n                    f\"Database schema outdated (current: {current_version}, expected: {expected_version}). Updating schema...\")\n                self.update_database_schema()\n                config.db_version = str(expected_version)\n                session.commit()\n                self.log(\"Database schema updated successfully.\")\n            elif current_version > expected_version:\n                self.log(\"Database version is newer than the expected version. Manual intervention might be required.\",\n                         isWarning=True)\n            else:\n                self.log(\"Database schema is up-to-date.\")\n        except Exception as e:\n            session.rollback()\n            self.log(f\"Database version check failed: {e}\", isWarning=True)\n        finally:\n            session.remove()\n\n    def update_database_schema(self):\n        \"\"\"Updates the database schema to the latest version.\n\n        This method updates both tables and columns within the database\n        schema. It checks for and adds any missing tables or columns\n        defined in the model. It logs the progress and results of the\n        schema update.\n\n        Returns:\n            bool: True if the schema update was completely successful,\n            False otherwise.\n        \"\"\"\n        self.log(\"Starting schema update...\")\n        tables_success = self.update_tables_schema()\n        columns_success = self.update_columns_schema()\n\n        if tables_success and columns_success:\n            self.log(\"Database schema update completed successfully.\")\n            return True\n        else:\n            self.log(\"Database schema update completed with errors.\", isWarning=True)\n            return False\n\n    def update_tables_schema(self):\n        \"\"\"Updates the database schema by adding new tables.\n\n        This method checks for any new tables defined in the data model\n        (Base.metadata) that are not present in the database. If new\n        tables are found, it creates them in the database. It logs the\n        names of the tables being added and any errors encountered during\n        the process.\n\n        Returns:\n            bool: True if the table update was successful, False otherwise.\n        \"\"\"\n        self.log(\"Checking for new tables to add to the schema.\")\n        success = True\n        inspector = inspect(self.engine)\n        existing_tables = inspector.get_table_names()\n\n        new_tables = [table for table in Base.metadata.sorted_tables if table.name not in existing_tables]\n\n        if new_tables:\n            table_names = \", \".join(table.name for table in new_tables)\n            self.log(f\"New tables to be added: {table_names}\")\n            try:\n                Base.metadata.create_all(self.engine, tables=new_tables)\n                self.log(\"New tables have been added successfully.\")\n            except Exception as e:\n                self.log(f\"Error while adding new tables: {e}\", isWarning=True)\n                success = False\n        else:\n            self.log(\"No new tables to add.\")\n        return success\n\n    def update_columns_schema(self):\n        \"\"\"Updates the database schema by adding missing columns.\n\n        This method checks for any missing columns in existing tables by\n        comparing the database schema with the defined models. If missing\n        columns are found, it adds them to the respective tables using\n        ALTER TABLE statements. It handles different column types,\n        nullability, and default values. It logs the DDL statements and\n        any errors encountered during the process.\n\n        Returns:\n            bool: True if the column update was successful, False otherwise.\n        \"\"\"\n\n        self.log(\"Checking for missing columns in existing tables.\")\n        success = True\n        inspector = inspect(self.engine)\n        existing_tables = inspector.get_table_names()\n\n        for table in Base.metadata.sorted_tables:\n            if table.name in existing_tables:\n                existing_columns_info = inspector.get_columns(table.name)\n                existing_column_names = {col[\"name\"] for col in existing_columns_info}\n\n                for column in table.columns:\n                    if column.name not in existing_column_names:\n                        col_name = column.name\n                        col_type = column.type.compile(dialect=self.engine.dialect)\n                        nullable_clause = \"\" if column.nullable else \"NOT NULL\"\n                        default_clause = \"\"\n                        if column.default is not None and hasattr(column.default, \"arg\"):\n                            default_value = column.default.arg\n                            if isinstance(default_value, str):\n                                default_clause = f\" DEFAULT '{default_value}'\"\n                            else:\n                                default_clause = f\" DEFAULT {default_value}\"\n\n                        ddl = (\n                            f\"ALTER TABLE {table.name} ADD COLUMN {col_name} {col_type} \"\n                            f\"{nullable_clause}{default_clause}\"\n                        )\n                        ddl = \" \".join(ddl.split())\n                        self.log(f\"Adding missing column with DDL: {ddl}\")\n                        try:\n                            with self.engine.connect() as conn:\n                                conn.execute(text(ddl))\n                            self.log(f\"Column '{col_name}' added to table '{table.name}'.\")\n                        except Exception as e:\n                            self.log(f\"Failed to add column '{col_name}' to table '{table.name}': {e}\", isWarning=True)\n                            success = False\n        return success\n"
  },
  {
    "path": "freedata_server/message_system_db_messages.py",
    "content": "from message_system_db_manager import DatabaseManager\nfrom message_system_db_attachments import DatabaseManagerAttachments\nfrom message_system_db_model import Status, P2PMessage\nfrom message_system_db_station import DatabaseManagerStations\nfrom sqlalchemy.exc import IntegrityError\nfrom datetime import datetime, timedelta\nimport json\nfrom exceptions import MessageStatusError\n\nclass DatabaseManagerMessages(DatabaseManager):\n    \"\"\"Manages database operations for P2P messages.\n\n    This class extends the DatabaseManager and provides methods for\n    managing P2P messages in the database, including adding, retrieving,\n    updating, deleting messages, handling attachments, and managing\n    message statuses.\n    \"\"\"\n    def __init__(self, ctx):\n        \"\"\"Initializes DatabaseManagerMessages.\n\n        Args:\n            ctx (EventManager): The event manager instance.\n        \"\"\"\n        super().__init__(ctx)\n\n        self.attachments_manager = DatabaseManagerAttachments(self.ctx)\n        self.stations_manager = DatabaseManagerStations(self.ctx)\n\n    def add_message(self, message_data, statistics, direction='receive', status=None, is_read=True, frequency=None):\n        \"\"\"Adds a new P2P message to the database.\n\n        This method adds a new P2P message record to the database,\n        including its associated attachments. It handles station creation,\n        status management, timestamp parsing, and attachment processing.\n        It also logs the addition and triggers a database change event.\n\n        Args:\n            message_data (dict): A dictionary containing the message data.\n            statistics (dict): A dictionary containing message statistics.\n            direction (str, optional): The direction of the message ('send' or 'receive'). Defaults to 'receive'.\n            status (str, optional): The status of the message. Defaults to None.\n            is_read (bool, optional): Whether the message has been read. Defaults to True.\n            frequency (float, optional): The frequency of the message. Defaults to None.\n\n        Returns:\n            str or None: The message ID if successfully added, None otherwise.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            # Create and add the origin and destination Stations\n            origin = self.stations_manager.get_or_create_station(message_data['origin'], session)\n            destination = self.stations_manager.get_or_create_station(message_data['destination'], session)\n\n            # Create and add Status if provided\n            if status:\n                status = self.get_or_create_status(session, status)\n\n            # Parse the timestamp from the message ID\n            timestamp = datetime.fromisoformat(message_data['id'].split('_')[2])\n\n            if frequency and frequency not in ['---']:\n                statistics[\"frequency\"] = frequency\n\n            # Create the P2PMessage instance\n            new_message = P2PMessage(\n                id=message_data['id'],\n                origin_callsign=origin.callsign,\n                destination_callsign=destination.callsign,\n                body=message_data['body'],\n                timestamp=timestamp,\n                direction=direction,\n                status_id=status.id if status else None,\n                is_read=is_read,\n                attempt=0,\n                statistics=statistics            )\n\n            session.add(new_message)\n\n            # Process and add attachments\n            if 'attachments' in message_data:\n                for attachment_data in message_data['attachments']:\n                    self.attachments_manager.add_attachment(session, new_message, attachment_data)\n\n            session.commit()\n            self.log(f\"Added data to database: {new_message.id}\")\n            self.ctx.event_manager.freedata_message_db_change(message_id=new_message.id)\n            return new_message.id\n        except IntegrityError as e:\n            session.rollback()  # Roll back the session to a clean state\n            self.log(f\"Message with ID {message_data['id']} already exists in the database.\", isWarning=True)\n            return None\n\n        except Exception as e:\n            session.rollback()\n            self.log(f\"error adding new message to database with error: {e}\", isWarning=True)\n            return None  # Return None to indicate an error\n\n        finally:\n            session.remove()\n\n    def get_all_messages(self, filters=None):\n        \"\"\"Retrieves all P2P messages from the database, optionally filtered.\n\n        This method retrieves all P2P messages from the database. It\n        supports optional filtering based on criteria such as message ID,\n        callsign (origin, via, or destination), direction, etc. The\n        results are returned as a list of dictionaries, each representing\n        a message. It handles database errors and logs appropriate\n        messages.\n\n        Args:\n            filters (dict, optional): A dictionary of filter criteria.\n                Available filters include 'id', 'callsign',\n                'origin_callsign', 'via_callsign',\n                'destination_callsign', and 'direction'. Defaults to\n                None.\n\n        Returns:\n            list: A list of dictionaries, each representing a message, or\n            an empty list if an error occurs or no messages match the\n            filters.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            query = session.query(P2PMessage)\n\n            if filters:\n                for key, value in filters.items():\n                    if key == 'id':\n                        query = query.filter(P2PMessage.id == value)\n                    elif key == 'callsign':\n                        query = query.filter(\n                            (P2PMessage.origin_callsign.contains(value)) |\n                            (P2PMessage.via_callsign.contains(value)) |\n                            (P2PMessage.destination_callsign.contains(value))\n                        )\n                    elif key in ['origin_callsign', 'via_callsign', 'destination_callsign', 'direction']:\n                        query = query.filter(getattr(P2PMessage, key).contains(value))\n\n            messages = query.all()\n            return [message.to_dict() for message in messages]\n\n        except Exception as e:\n            self.log(f\"error fetching database messages with error: {e}\", isWarning=True)\n            self.log(f\"---> please delete or update existing database\", isWarning=True)\n\n            return []\n\n        finally:\n            session.remove()\n\n    def get_all_messages_json(self, filters=None):\n        \"\"\"Retrieves all P2P messages as a JSON string, with a header.\n\n        This method retrieves all messages, optionally filtered, and\n        returns them as a JSON string. It includes a header containing the\n        total number of messages. It calls get_all_messages to fetch the\n        messages and then formats them as a JSON string.\n\n        Args:\n            filters (dict, optional): Filter criteria for messages. See\n                get_all_messages for details. Defaults to None.\n\n        Returns:\n            dict: A dictionary containing the total number of messages and\n            the messages themselves, formatted for JSON serialization.\n        \"\"\"\n        messages_dict = self.get_all_messages(filters)\n        messages_with_header = {'total_messages': len(messages_dict), 'messages': messages_dict}\n        return messages_with_header\n\n    def get_message_by_id(self, message_id):\n        \"\"\"Retrieves a P2P message by its ID.\n\n        This method retrieves a specific P2P message from the database\n        based on its ID. It returns the message data as a dictionary if\n        found, or None if not found or if an error occurs. It handles\n        database errors and logs appropriate messages.\n\n        Args:\n            message_id (str): The ID of the message to retrieve.\n\n        Returns:\n            dict or None: The message data as a dictionary if found, None\n            otherwise.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            message = session.query(P2PMessage).filter_by(id=message_id).first()\n            if message:\n                return message.to_dict()\n            else:\n                return None\n        except Exception as e:\n            self.log(f\"Error fetching message with ID {message_id}: {e}\", isWarning=True)\n            return None\n        finally:\n            session.remove()\n\n    def get_message_by_id_json(self, message_id):\n        \"\"\"Retrieves a P2P message by ID as a JSON string.\n\n        This method retrieves a message by its ID and returns it as a JSON\n        string. It calls get_message_by_id to fetch the message and then\n        serializes it to JSON.\n\n        Args:\n            message_id (str): The ID of the message.\n\n        Returns:\n            str: The message data as a JSON string, or an empty JSON object if not found.\n        \"\"\"\n        message_dict = self.get_message_by_id(message_id)\n        return json.dumps(message_dict)  # Convert to JSON string\n\n    def get_message_by_id_adif(self, message_id):\n        \"\"\"\n        Fetches a message by ID and returns it in ADIF format.\n\n        Parameters:\n        message_id (str): The ID of the message to retrieve.\n\n        Returns:\n        str: The ADIF formatted message, or None if the message is not found.\n        \"\"\"\n        message_dict = self.get_message_by_id(message_id)\n        if message_dict:\n            try:\n                # Extract fields from the message dictionary\n                origin = message_dict.get(\"origin\", \"\")\n                destination = message_dict.get(\"destination\", \"\")\n                timestamp = message_dict.get(\"timestamp\", \"\")\n                direction = message_dict.get(\"direction\", \"\").lower()  # Ensure case insensitivity\n                status = message_dict.get(\"status\", \"\")\n                statistics = message_dict.get(\"statistics\", {})\n\n                # Determine the CALL based on the direction\n                if direction == \"receive\":\n                    call = origin.split(\"-\")[0]  # Take the part before the \"-\" if it exists\n                else:\n                    call = destination.split(\"-\")[0]  # Take the part before the \"-\" if it exists\n\n                # Fetch station info\n                origin_info = self.stations_manager.get_station(origin)\n\n                # Parse the timestamp for QSO date and time, strip fractional seconds\n                timestamp_clean = timestamp.split(\".\")[0]  # Remove fractional seconds\n                qso_date = timestamp_clean.split(\"T\")[0].replace(\"-\", \"\")  # Extract the date part and remove hyphens\n\n                # Extract the time and format it as HHMMSS\n                time_on = datetime.strptime(timestamp_clean.split(\"T\")[1], \"%H:%M:%S\").strftime(\"%H%M%S\")\n\n                # Calculate TIME_OFF by adding duration to TIME_ON\n                duration = statistics.get(\"duration\", 0.0)  # Duration in seconds\n                time_on_obj = datetime.strptime(timestamp_clean.split(\"T\")[1],\n                                                \"%H:%M:%S\")  # Parse time_on as a datetime object\n                time_off_obj = time_on_obj + timedelta(seconds=duration)\n                time_off = time_off_obj.strftime(\"%H%M%S\")  # Format time_off back to HHMMSS format\n\n                # Set ADIF Fields\n                mode = \"DYNAMIC\"\n                submode = \"FREEDATA\"\n                comment = f\"QSO via FreeDATA RF-Chat\"\n\n                # Gridsquare handling\n                print(origin_info)\n                if origin_info and \"location\" in origin_info and origin_info[\"location\"] is not None:\n                    print(origin_info[\"location\"])\n                    grid = origin_info[\"location\"].get(\"gridsquare\", \"\")\n                else:\n                    grid = \"\"\n\n                # Extract and adjust the frequency (Hz to MHz)\n                frequency_hz = statistics.get(\"frequency\")  # Get the frequency, may be None\n                if frequency_hz is not None:\n                    try:\n                        # Convert frequency_hz to float if it's a string\n                        frequency_value = float(frequency_hz)\n                    except ValueError:\n                        frequency_value = 0.0\n                    frequency_mhz = round(frequency_value / 1_000_000, 3)  # Convert Hz to MHz\n                    frequency_str = str(frequency_mhz)\n                else:\n                    frequency_str = \"14.000000\"  # Default if frequency is missing\n\n                # Construct the ADIF message\n                adif_fields = [\n                    f\"<CALL:{len(call)}>{call}\",\n                    f\"<QSO_DATE:{len(qso_date)}>{qso_date}\",\n                    f\"<TIME_ON:{len(time_on)}>{time_on}\",\n                    f\"<TIME_OFF:{len(time_off)}>{time_off}\",  # Include TIME_OFF\n                    f\"<FREQ:{len(frequency_str)}>{frequency_str}\",  # Frequency in MHz\n                    f\"<MODE:{len(mode)}>{mode}\",\n                    f\"<SUBMODE:{len(submode)}>{submode}\",\n                    f\"<COMMENT:{len(comment)}>{comment}\",\n                    f\"<GRIDSQUARE:{len(grid)}>{grid}\",\n                    #f\"<DIRECTION:{len(direction)}>{direction}\",\n                    #f\"<STATUS:{len(status)}>{status}\",\n                    #f\"<DURATION:{len(str(duration))}>{duration}\",\n                    \"<EOR>\"\n                ]\n\n                return \"\".join(adif_fields)\n\n            except Exception as e:\n                self.log(f\"Error converting message {message_id} to ADIF: {e}\", isWarning=True)\n                return None\n        else:\n            self.log(f\"Message with ID {message_id} not found.\", isWarning=True)\n            return None\n\n    def delete_message(self, message_id):\n        \"\"\"Deletes a P2P message from the database.\n\n        This method deletes a P2P message and its associated attachments\n        from the database. It first deletes the attachment links (and the\n        attachments themselves if they are not linked to other\n        messages). Then, it deletes the message record and logs the\n        deletion, triggering a database change event.\n\n        Args:\n            message_id (str): The ID of the message to delete.\n\n        Returns:\n            dict: A dictionary indicating the status of the deletion\n            ('success' or 'failure') and a corresponding message.\n        \"\"\"\n\n        # Delete attachment links associated with this message.\n        # This call will check each attachment link:\n        # - If the attachment is used by other messages, only the link is removed.\n        # - If the attachment is solely linked to this message, the attachment record is deleted.\n        self.attachments_manager.delete_attachments_by_message_id(message_id)\n\n\n        session = self.get_thread_scoped_session()\n        try:\n            message = session.query(P2PMessage).filter_by(id=message_id).first()\n            if message:\n\n                if message.to_dict()[\"status\"] in [\"transmitting\", \"queued\"]:\n                    raise MessageStatusError(\"Message is queued or transmitting\")\n\n                session.delete(message)\n                session.commit()\n\n                self.log(f\"Deleted: {message_id}\")\n                self.ctx.event_manager.freedata_message_db_change(message_id=message_id)\n                return {'status': 'success', 'message': f'Message {message_id} deleted'}\n            else:\n                return {'status': 'failure', 'message': 'Message not found'}\n        except Exception as e:\n            session.rollback()\n            self.log(f\"Error deleting message with ID {message_id}: {e}\", isWarning=True)\n            return {'status': 'failure', 'message': 'error deleting message'}\n        except MessageStatusError as e:\n            session.rollback()\n            self.log(f\"Error deleting message with ID {message_id}: {e}\", isWarning=True)\n            return {'status': 'failure', 'message': e}\n\n        finally:\n            session.remove()\n\n    def update_message(self, message_id, update_data, frequency=None):\n        \"\"\"Updates a P2P message in the database.\n\n        This method updates an existing P2P message in the database with\n        the provided data. It allows updating various fields of the\n        message, including body, status, statistics, read status, attempt\n        count, and priority. It handles database errors, performs\n        rollbacks if necessary, and triggers a database change event upon\n        successful update.\n\n        Args:\n            message_id (str): The ID of the message to update.\n            update_data (dict): A dictionary containing the fields to\n                update and their new values.\n            frequency (float, optional): The frequency to update in\n                statistics. Defaults to None.\n\n        Returns:\n            dict: A dictionary indicating the status of the update\n            ('success' or 'failure') and a corresponding message.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            message = session.query(P2PMessage).filter_by(id=message_id).first()\n            if message:\n                # Update fields of the message as per update_data\n                for key, value in update_data.items():\n                    if key == 'status':\n                        setattr(message, key, self.get_or_create_status(session, value))\n                    elif key == 'statistics':\n                        statistics = value\n                        if frequency and frequency not in ['---']:\n                            statistics[\"frequency\"] = frequency\n                        setattr(message, key, statistics)\n                    elif key in ['body', 'is_read', 'attempt', 'priority']:\n                        setattr(message, key, value)\n\n                session.commit()\n                self.log(f\"Updated: {message_id}\")\n                self.ctx.event_manager.freedata_message_db_change(message_id=message_id)\n                return {'status': 'success', 'message': f'Message {message_id} updated'}\n            else:\n                return {'status': 'failure', 'message': 'Message not found'}\n\n        except Exception as e:\n            session.rollback()\n            self.log(f\"Error updating message with ID {message_id}: {e}\", isWarning=True)\n            return {'status': 'failure', 'message': 'error updating message'}\n\n        finally:\n            session.remove()\n\n    def get_first_queued_message(self):\n        \"\"\"Retrieves the first queued P2P message from the database.\n\n        This method retrieves the oldest queued message from the database\n        based on its timestamp. It returns the message data as a\n        dictionary if found, or None if no queued messages are found or\n        an error occurs. It handles cases where the \"queued\" status is\n        not found and logs appropriate messages.\n\n        Returns:\n            dict or None: The data of the first queued message as a\n            dictionary, or None if no queued messages are found or if an\n            error occurs.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            # Find the status object for \"queued\"\n            queued_status = session.query(Status).filter_by(name='queued').first()\n            if queued_status:\n                # Query for the first (oldest) message with status \"queued\"\n                message = session.query(P2PMessage)\\\n                    .filter_by(status=queued_status)\\\n                    .order_by(P2PMessage.timestamp)\\\n                    .first()\n                if message:\n                    self.log(f\"Found queued message with ID {message.id}\")\n                    return message.to_dict()\n                else:\n                    return None\n            else:\n                self.log(\"Queued status not found\", isWarning=True)\n                return None\n        except Exception as e:\n            self.log(f\"Error fetching the first queued message: {e}\", isWarning=True)\n            return None\n        finally:\n            session.remove()\n\n    def increment_message_attempts(self, message_id, session=None):\n        \"\"\"Increments the attempt count for a message.\n\n        This method increments the attempt count for a given message in\n        the database. It handles database sessions and transactions,\n        committing changes only if it created the session. It logs\n        messages indicating success, failure (message not found), or\n        errors during the process.\n\n        Args:\n            message_id (str): The ID of the message to update.\n            session (scoped_session, optional): An existing database\n                session. Defaults to None.\n        \"\"\"\n        own_session = False\n        if not session:\n            session = self.get_thread_scoped_session()\n            own_session = True\n        try:\n            message = session.query(P2PMessage).filter_by(id=message_id).first()\n            if message:\n                message.attempt += 1\n                if own_session:\n                    session.commit()\n                self.log(f\"Incremented attempt count for message {message_id}\")\n            else:\n                self.log(f\"Message with ID {message_id} not found\")\n        except Exception as e:\n            if own_session:\n                session.rollback()\n            self.log(f\"An error occurred while incrementing attempts for message {message_id}: {e}\")\n        finally:\n            if own_session:\n                session.remove()\n\n\n    def set_message_to_queued_for_callsign(self, callsign):\n        \"\"\"Sets the first failed message for a callsign to 'queued'.\n\n        This method finds the first message in the database with the given\n        destination callsign that has a 'failed' status and fewer than 10\n        attempts. If such a message is found, its status is changed to\n        'queued', its attempt count is incremented, and the changes are\n        committed to the database. It handles cases where the 'failed' or\n        'queued' statuses are not found and logs appropriate messages.\n\n        Args:\n            callsign (str): The destination callsign of the message.\n\n        Returns:\n            dict: A dictionary indicating the status ('success' or\n            'failure') and a message describing the outcome.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            # Find the 'failed' status object\n            failed_status = session.query(Status).filter_by(name='failed').first()\n            # Find the 'queued' status object\n            queued_status = session.query(Status).filter_by(name='queued').first()\n\n            # Ensure both statuses are found\n            if not failed_status or not queued_status:\n                self.log(\"Failed or queued status not found\", isWarning=True)\n                return {'status': 'failure', 'message': 'Failed or queued status not found'}\n\n            # Query for messages with the specified callsign, 'failed' status, and fewer than 10 attempts\n            message = session.query(P2PMessage) \\\n                .filter(P2PMessage.destination_callsign == callsign) \\\n                .filter(P2PMessage.status_id == failed_status.id) \\\n                .filter(P2PMessage.attempt < 10) \\\n                .first()\n\n            if message:\n                # Increment attempt count using the existing function\n                self.increment_message_attempts(message.id, session)\n\n                message.status_id = queued_status.id\n                self.log(f\"Set message {message.id} to queued and incremented attempt\")\n\n                session.commit()\n                return {'status': 'success', 'message': f'message(s) set to queued'}\n            else:\n                return {'status': 'failure', 'message': 'No eligible messages found'}\n        except Exception as e:\n            session.rollback()\n            self.log(f\"An error occurred while setting messages to queued: {e}\", isWarning=True)\n            return {'status': 'failure', 'message': 'error setting message to queued'}\n        finally:\n            session.remove()\n"
  },
  {
    "path": "freedata_server/message_system_db_model.py",
    "content": "from sqlalchemy import Index, Boolean, Column, String, Integer, JSON, ForeignKey, DateTime\nfrom sqlalchemy.orm import declarative_base, relationship\n\nBase = declarative_base()\n\nclass MessageAttachment(Base):\n    \"\"\"Represents the association between a message and an attachment.\n\n    This association object links P2PMessage and Attachment records in\n    the database, representing a many-to-many relationship between\n    messages and attachments. It uses foreign keys and cascading deletes\n    to maintain data integrity.\n    \"\"\"\n    __tablename__ = 'message_attachment'\n    message_id = Column(String, ForeignKey('p2p_message.id', ondelete='CASCADE'), primary_key=True)\n    attachment_id = Column(Integer, ForeignKey('attachment.id', ondelete='CASCADE'), primary_key=True)\n\n    message = relationship('P2PMessage', back_populates='message_attachments')\n    attachment = relationship('Attachment', back_populates='message_attachments')\n\nclass Config(Base):\n    \"\"\"Represents a configuration setting in the database.\n\n    This class maps to the 'config' table in the database and stores\n    configuration settings. It currently only stores the database\n    version.\n    \"\"\"\n    __tablename__ = 'config'\n    db_variable = Column(String, primary_key=True)  # Unique identifier for the configuration setting\n    db_version = Column(String)\n\n    def to_dict(self):\n        \"\"\"Converts the Config object to a dictionary.\n\n        Returns:\n            dict: A dictionary representation of the Config object.\n        \"\"\"\n        return {\n            'db_variable': self.db_variable,\n            'db_version': self.db_version\n        }\n\n\nclass Beacon(Base):\n    \"\"\"Represents a beacon signal received by the station.\n\n    This class maps to the 'beacon' table and stores information about\n    received beacon signals, including the timestamp, signal-to-noise\n    ratio (SNR), and the callsign of the transmitting station. It is\n    linked to the Station table via a foreign key.\n    \"\"\"\n    __tablename__ = 'beacon'\n    id = Column(Integer, primary_key=True)\n    timestamp = Column(DateTime)\n    snr = Column(Integer)\n    callsign = Column(String, ForeignKey('station.callsign'))\n    station = relationship(\"Station\", back_populates=\"beacons\")\n\n    Index('idx_beacon_callsign', 'callsign')\n\nclass Station(Base):\n    \"\"\"Represents a station in the network.\n\n    This class maps to the 'station' table and stores information about\n    stations, including their callsign, checksum, location (as JSON),\n    and additional info (as JSON). It has a relationship with the Beacon\n    table, representing the beacons received from this station.\n    \"\"\"\n    __tablename__ = 'station'\n    callsign = Column(String, primary_key=True)\n    checksum = Column(String, nullable=True)\n    location = Column(JSON, nullable=True)\n    info = Column(JSON, nullable=True)\n    beacons = relationship(\"Beacon\", order_by=\"Beacon.id\", back_populates=\"station\")\n\n    Index('idx_station_callsign_checksum', 'callsign', 'checksum')\n\n    def to_dict(self):\n        \"\"\"Converts the Station object to a dictionary.\n\n        Returns:\n            dict: A dictionary representation of the Station object.\n        \"\"\"\n        return {\n            'callsign': self.callsign,\n            'checksum': self.checksum,\n            'location': self.location,\n            'info': self.info,\n\n        }\nclass Status(Base):\n    \"\"\"Represents the status of a P2P message.\n\n    This class maps to the 'status' table and stores the possible\n    statuses a message can have (e.g., 'queued', 'transmitted',\n    'received', 'failed'). The `name` field is unique to prevent\n    duplicate status entries.\n    \"\"\"\n    __tablename__ = 'status'\n    id = Column(Integer, primary_key=True)\n    name = Column(String, unique=True)\n\nclass P2PMessage(Base):\n    \"\"\"Represents a peer-to-peer (P2P) message.\n\n    This class maps to the 'p2p_message' table and stores information\n    about P2P messages, including sender, recipient, message body,\n    attachments, transmission attempts, timestamp, status, priority,\n    direction, statistics (JSON), and read status. It has relationships\n    with the Station, Status, and Attachment tables.\n    \"\"\"\n    __tablename__ = 'p2p_message'\n    id = Column(String, primary_key=True)\n    origin_callsign = Column(String, ForeignKey('station.callsign'))\n    via_callsign = Column(String, ForeignKey('station.callsign'), nullable=True)\n    destination_callsign = Column(String, ForeignKey('station.callsign'))\n    body = Column(String, nullable=True)\n    message_attachments = relationship('MessageAttachment',\n                                       back_populates='message',\n                                       cascade='all, delete-orphan')\n    attempt = Column(Integer, default=0)\n    timestamp = Column(DateTime)\n    status_id = Column(Integer, ForeignKey('status.id'), nullable=True)\n    status = relationship('Status', backref='p2p_messages')\n    priority = Column(Integer, default=10)\n    direction = Column(String)\n    statistics = Column(JSON, nullable=True)\n    is_read = Column(Boolean, default=True)\n\n    Index('idx_p2p_message_origin_timestamp', 'origin_callsign', 'via_callsign', 'destination_callsign', 'timestamp')\n\n    def to_dict(self):\n        \"\"\"Converts the P2PMessage object to a dictionary.\n\n        This method converts the P2PMessage object and its associated\n        attachments to a dictionary format, suitable for serialization or\n        other data processing. It retrieves the attachment data using\n        the to_dict method of each attachment object. It formats the\n        timestamp as an ISO 8601 string.\n\n        Returns:\n            dict: A dictionary representation of the P2PMessage object,\n            including its attachments.\n        \"\"\"\n        attachments_list = [ma.attachment.to_dict() for ma in self.message_attachments]\n\n        return {\n            'id': self.id,\n            'timestamp': self.timestamp.isoformat() if self.timestamp else None,\n            'attempt': self.attempt,\n            'origin': self.origin_callsign,\n            'via': self.via_callsign,\n            'destination': self.destination_callsign,\n            'direction': self.direction,\n            'body': self.body,\n            'attachments': attachments_list,\n            'status': self.status.name if self.status else None,\n            'priority': self.priority,\n            'is_read': self.is_read,\n            'statistics': self.statistics\n        }\n\nclass Attachment(Base):\n    \"\"\"Represents a file attachment associated with a message.\n\n    This class maps to the 'attachment' table and stores information\n    about attachments, including their name, data type, data content,\n    CRC32 checksum, and SHA-512 hash. It has a relationship with the\n    MessageAttachment association table.\n    \"\"\"\n    __tablename__ = 'attachment'\n    id = Column(Integer, primary_key=True)\n    name = Column(String)\n    data_type = Column(String)\n    data = Column(String)\n    checksum_crc32 = Column(String)\n    hash_sha512 = Column(String)\n    message_attachments = relationship(\"MessageAttachment\", back_populates=\"attachment\")\n\n    Index('idx_attachments_id_message_id', 'id', 'hash_sha512')\n\n    def to_dict(self):\n        \"\"\"Converts the Attachment object to a dictionary.\n\n        Returns:\n            dict: A dictionary representation of the Attachment object.\n        \"\"\"\n        return {\n            'id': self.id,\n            'name': self.name,\n            'type': self.data_type,\n            'data': self.data,\n            'checksum_crc32': self.checksum_crc32,\n            'hash_sha512' : self.hash_sha512\n        }\n"
  },
  {
    "path": "freedata_server/message_system_db_station.py",
    "content": "from sqlalchemy.exc import SQLAlchemyError\nfrom message_system_db_model import Station\nfrom message_system_db_manager import DatabaseManager\n\nclass DatabaseManagerStations(DatabaseManager):\n    \"\"\"Manages database operations for stations.\n\n    This class extends the DatabaseManager and provides methods for\n    retrieving, creating, and updating station information in the database.\n    It handles database sessions and logging.\n    \"\"\"\n    def __init__(self, ctx):\n        \"\"\"Initializes DatabaseManagerStations.\n\n        Args:\n            event_manager (EventManager): The event manager instance.\n        \"\"\"\n        super().__init__(ctx)\n\n    def get_station(self, callsign):\n        \"\"\"\n        Retrieves a station by its callsign.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            station = session.query(Station).filter_by(callsign=callsign).first()\n            if station:\n                return station.to_dict()\n            else:\n                self.log(f\"No data found: {callsign}\")\n                return None\n        except Exception as e:\n            self.log(f\"error fetching database station with error: {e}\", isWarning=True)\n            self.log(f\"---> please delete or update existing database\", isWarning=True)\n\n            return []\n\n        finally:\n            session.remove()\n\n    def update_station_info(self, callsign, new_info):\n        \"\"\"\n        Updates the information of a station identified by its callsign.\n\n        Args:\n            callsign (str): The callsign of the station to update.\n            new_info (str): The new information to store in the 'info' column.\n\n        Returns:\n            bool: True if the update was successful, False otherwise.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            station = self.get_or_create_station(callsign, session)\n\n            if station:\n                station.info = new_info\n                session.commit()\n                return True\n            else:\n                self.log(f\"No station found with callsign {callsign}\", isWarning=True)\n                return False\n        except SQLAlchemyError as e:\n            session.rollback()\n            self.log(f\"Failed to update station {callsign} with error: {e}\", isError=True)\n            return False\n        finally:\n            session.remove()\n\n\n    def update_station_location(self, callsign, gridsquare):\n        \"\"\"\n        Updates the location information of a station identified by its callsign.\n\n        Args:\n            callsign (str): The callsign of the station to update.\n            gridsquare (str): The new gridsquare to store in the 'location' column.\n\n        Returns:\n            bool: True if the update was successful, False otherwise.\n        \"\"\"\n        session = self.get_thread_scoped_session()\n        try:\n            # Ensure the station exists or create it, and get the station object\n            station = self.get_or_create_station(callsign, session)\n\n            if station:\n                # Initialize location as an empty dict if None\n                if not station.location:\n                    station.location = {}\n\n                # Update the station's location with gridsquare if it has changed\n                if station.location.get('gridsquare') != gridsquare:\n                    self.log(f\"Updating location for {callsign}\")\n                    station.location['gridsquare'] = gridsquare  # Update directly without re-serialization\n                    session.flush()\n                else:\n                    self.log(f\"No changes needed for {callsign}'s location\")\n\n                session.commit()\n                return True\n            else:\n                self.log(f\"No station found with callsign {callsign}\", isWarning=True)\n                return False\n        except SQLAlchemyError as e:\n            session.rollback()\n            self.log(f\"Failed to update location for station {callsign} with error: {e}\", isError=True)\n            return False\n        finally:\n            session.remove()\n"
  },
  {
    "path": "freedata_server/modem.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\"\"\"\nCreated on Wed Dec 23 07:04:24 2020\n\n@author: DJ2LS\n\"\"\"\n\n# pylint: disable=invalid-name, line-too-long, c-extension-no-member\n# pylint: disable=import-outside-toplevel\n\nimport queue\nimport time\nimport codec2\nimport numpy as np\nimport sounddevice as sd\nimport structlog\nimport cw\nimport audio\nimport demodulator\nimport modulator\n\n\nclass RF:\n    \"\"\"Handles FreeDATA modem functionality.\n\n    This class manages the audio interface, modulation, demodulation, and\n    transmission of FreeDATA signals. It interacts with the demodulator,\n    modulator, audio devices, and radio manager to handle data transmission\n    and reception.\n    \"\"\"\n\n    log = structlog.get_logger(\"RF\")\n\n    def __init__(self, ctx) -> None:\n        \"\"\"Initializes the RF modem.\n\n        Args:\n            self.ctx.config_manager (dict): self.ctx.config_manageruration dictionary.\n            event_manager (EventManager): Event manager instance.\n            fft_queue (Queue): Queue for FFT data.\n            self.ctx.modem_service (Queue): Queue for freedata_server service commands.\n            states (StateManager): State manager instance.\n            radio_manager (RadioManager): Radio manager instance.\n        \"\"\"\n\n        self.ctx = ctx\n        self.sampler_avg = 0\n        self.buffer_avg = 0\n\n        # these are crc ids now\n        self.audio_input_device = self.ctx.config_manager.config['AUDIO']['input_device']\n        self.audio_output_device = self.ctx.config_manager.config['AUDIO']['output_device']\n\n\n\n        self.ctx.radio_managercontrol = self.ctx.config_manager.config['RADIO']['control']\n        self.rigctld_ip = self.ctx.config_manager.config['RIGCTLD']['ip']\n        self.rigctld_port = self.ctx.config_manager.config['RIGCTLD']['port']\n\n\n        self.tx_audio_level = self.ctx.config_manager.config['AUDIO']['tx_audio_level']\n        self.rx_audio_level = self.ctx.config_manager.config['AUDIO']['rx_audio_level']\n\n\n        self.ptt_state = False\n        self.enqueuing_audio = False # set to True, while we are processing audio\n\n        self.AUDIO_SAMPLE_RATE = 48000\n        self.modem_sample_rate = codec2.api.FREEDV_FS_8000\n\n        # 8192 Let's do some tests with very small chunks for TX\n        # 8 * (self.AUDIO_SAMPLE_RATE/self.modem_sample_rate) == 48\n        self.AUDIO_CHANNELS = 1\n        self.MODE = 0\n        self.rms_counter = 0\n\n        self.audio_out_queue = queue.Queue()\n\n        # Make sure our resampler will work\n        assert (self.AUDIO_SAMPLE_RATE / self.modem_sample_rate) == codec2.api.FDMDV_OS_48  # type: ignore\n\n        self.data_queue_received = queue.Queue()\n\n        self.demodulator = demodulator.Demodulator(self.ctx)\n        self.modulator = modulator.Modulator(self.ctx)\n\n    def start_modem(self):\n        \"\"\"Starts the modem.\n\n        This method initializes the audio devices and starts the demodulator.\n        In test mode, it bypasses audio initialization. It raises a\n        RuntimeError if audio initialization fails.\n\n        Returns:\n            bool: True if the modem started successfully.\n\n        Raises:\n            RuntimeError: If audio device initialization fails.\n        \"\"\"\n        if self.ctx.TESTMODE:\n            self.log.warning(\"RUNNING IN TEST MODE\")\n            self.resampler = codec2.resampler() # we need a resampler in test mode\n            self.demodulator.start(None)\n            return True\n        else:\n            if not self.init_audio():\n                raise RuntimeError(\"Unable to init audio devices\")\n            self.demodulator.start(self.sd_input_stream)\n\n        return True\n\n    def stop_modem(self):\n        \"\"\"Stops the modem.\n\n        This method stops the FreeDATA freedata_server service, closes audio input and\n        output streams, and handles any exceptions during the process.\n        \"\"\"\n        try:\n            # let's stop the freedata_server service\n            self.ctx.modem_service.put(\"stop\")\n            # simulate audio class active state for reducing cli output\n            # self.stream = lambda: None\n            # self.stream.active = False\n            # self.stream.stop\n            self.sd_input_stream.close()\n            self.sd_output_stream.close()\n        except Exception as e:\n            self.log.error(\"[MDM] Error stopping freedata_server\", e=e)\n\n    def init_audio(self):\n        \"\"\"Initializes the audio input and output streams.\n\n        This method retrieves the audio device indices based on their CRC\n        checksums from the self.ctx.config_manageruration, sets up the default audio\n        parameters, initializes the Codec2 resampler, and starts the\n        SoundDevice input and output streams with appropriate callbacks and\n        buffer sizes. It logs information about the selected audio devices\n        and handles potential exceptions during initialization.\n\n        Returns:\n            bool: True if audio initialization was successful, False otherwise.\n        \"\"\"\n        self.log.info(f\"[MDM] init: get audio devices\", input_device=self.audio_input_device,\n                      output_device=self.audio_output_device)\n        try:\n            result = audio.get_device_index_from_crc(self.audio_input_device, True)\n            if result is None:\n                raise ValueError(\"Invalid input device\")\n            else:\n                in_dev_index, in_dev_name = result\n\n            result = audio.get_device_index_from_crc(self.audio_output_device, False)\n            if result is None:\n                raise ValueError(\"Invalid output device\")\n            else:\n                out_dev_index, out_dev_name = result\n\n            self.log.info(f\"[MDM] init: receiving audio from '{in_dev_name}'\")\n            self.log.info(f\"[MDM] init: transmiting audio on '{out_dev_name}'\")\n            self.log.debug(\"[MDM] init: starting pyaudio callback and decoding threads\")\n\n            sd.default.samplerate = self.AUDIO_SAMPLE_RATE\n            sd.default.device = (in_dev_index, out_dev_index)\n\n            # init codec2 resampler\n            self.resampler = codec2.resampler()\n\n            # SoundDevice audio input stream\n            self.sd_input_stream = sd.InputStream(\n                channels=1,\n                dtype=\"int16\",\n                callback=self.sd_input_audio_callback,\n                device=in_dev_index,\n                samplerate=self.AUDIO_SAMPLE_RATE,\n                blocksize=4800,\n            )\n            self.sd_input_stream.start()\n\n            self.sd_output_stream = sd.OutputStream(\n                channels=1,\n                dtype=\"int16\",\n                callback=self.sd_output_audio_callback,\n                device=out_dev_index,\n                samplerate=self.AUDIO_SAMPLE_RATE,\n                blocksize=2400,\n            )\n            self.sd_output_stream.start()\n\n            return True\n\n        except Exception as audioerr:\n            self.log.error(\"[MDM] init: starting pyaudio callback failed\", e=audioerr)\n            self.stop_modem()\n            return False\n\n    def transmit_sine(self):\n        \"\"\" Transmit a sine wave for audio tuning \"\"\"\n        self.ctx.state_manager.setTransmitting(True)\n        self.log.info(\"[MDM] TRANSMIT\", mode=\"SINE\")\n        start_of_transmission = time.time()\n\n        f0 = 1500  # Frequency of sine wave in Hz\n        fs = 48000  # Sample rate in Hz\n        max_duration = 30  # Maximum duration in seconds\n\n        # Create sine wave signal\n        t = np.linspace(0, max_duration, int(fs * max_duration), endpoint=False)\n        s = 0.5 * np.sin(2 * np.pi * f0 * t)\n        signal = np.int16(s * 32767)  # Convert to 16-bit integer PCM format\n\n        signal = audio.normalize_audio(signal)\n\n        # Set audio volume and prepare buffer for transmission\n        txbuffer_out = audio.set_audio_volume(signal, self.tx_audio_level)\n\n        # Transmit audio\n        self.enqueue_audio_out(txbuffer_out)\n\n        end_of_transmission = time.time()\n        transmission_time = end_of_transmission - start_of_transmission\n        self.ctx.state_manager.setTransmitting(False)\n\n        self.log.debug(\"[MDM] ON AIR TIME\", time=transmission_time)\n\n    def stop_sine(self):\n        \"\"\" Stop transmitting sine wave\"\"\"\n        # clear audio out queue\n        self.audio_out_queue.queue.clear()\n        self.ctx.state_manager.setTransmitting(False)\n        self.log.debug(\"[MDM] Stopped transmitting sine\")\n\n    def transmit_morse(self, repeats, repeat_delay, frames):\n        \"\"\"Transmits Morse code.\n\n        This method transmits the station's callsign as Morse code. It waits\n        for any ongoing transmissions to complete, sets the transmitting\n        state, generates the Morse code audio signal, normalizes it, and\n        enqueues it for output. It logs the transmission mode and on-air\n        time. The repeats, repeat_delay, and frames arguments are not\n        currently used in this method.\n\n        Args:\n            repeats: Currently unused.\n            repeat_delay: Currently unused.\n            frames: Currently unused.\n        \"\"\"\n        self.ctx.state_manager.waitForTransmission()\n        self.ctx.state_manager.setTransmitting(True)\n        # if we're transmitting FreeDATA signals, reset channel busy state\n        self.log.debug(\n            \"[MDM] TRANSMIT\", mode=\"MORSE\"\n        )\n        start_of_transmission = time.time()\n        txbuffer_out = cw.MorseCodePlayer().text_to_signal(self.ctx.config_manager.config['STATION'].get('mycall'))\n        txbuffer_out = audio.normalize_audio(txbuffer_out)\n        # transmit audio\n        self.enqueue_audio_out(txbuffer_out)\n\n        end_of_transmission = time.time()\n        transmission_time = end_of_transmission - start_of_transmission\n        self.log.debug(\"[MDM] ON AIR TIME\", time=transmission_time)\n\n\n    def transmit(\n            self, mode, repeats: int, repeat_delay: int, frames: bytearray\n    ) -> None:\n        \"\"\"Transmits data using the specified mode and parameters.\n\n        This method transmits data using the given FreeDV mode, number of\n        repeats, repeat delay, and frames. It handles synchronization with\n        other transmissions, creates the modulated burst, resamples the\n        audio, sets the transmit audio level, enqueues the audio for\n        output, and logs transmission details.\n\n        Args:\n            mode: The FreeDV mode to use for transmission.\n            repeats (int): The number of times to repeat the frames.\n            repeat_delay (int): The delay between repetitions in milliseconds.\n            frames (bytearray): The data frames to transmit.\n        \"\"\"\n\n        if self.ctx.TESTMODE:\n            self.ctx.TESTMODE_TRANSMIT_QUEUE.put([mode, frames])\n            return\n\n        self.demodulator.reset_data_sync()\n        # Wait for some other thread that might be transmitting\n        self.ctx.state_manager.waitForTransmission()\n        self.ctx.state_manager.setTransmitting(True)\n        # self.ctx.state_manager.channel_busy_event.wait()\n\n        start_of_transmission = time.time()\n        txbuffer = self.modulator.create_burst(mode, repeats, repeat_delay, frames)\n\n        # Re-sample back up to 48k (resampler works on np.int16)\n        x = np.frombuffer(txbuffer, dtype=np.int16)\n        \n        if self.ctx.config_manager.config['AUDIO'].get('tx_auto_audio_level'):\n            x = audio.normalize_audio(x)\n        x = audio.set_audio_volume(x, self.tx_audio_level)\n        txbuffer_out = self.resampler.resample8_to_48(x)\n        # transmit audio\n        self.enqueue_audio_out(txbuffer_out)\n\n        end_of_transmission = time.time()\n        transmission_time = end_of_transmission - start_of_transmission\n        self.log.debug(\"[MDM] ON AIR TIME\", time=transmission_time)\n\n\n\n    def enqueue_audio_out(self, audio_48k) -> None:\n        \"\"\"Enqueues audio data for output.\n\n        This method enqueues the provided 48kHz audio data for output. It\n        handles PTT activation, event signaling, slicing the audio into\n        blocks, and adding the blocks to the output queue. It also manages\n        the transmitting state and waits for the transmission to complete\n        before deactivating PTT.\n\n        Args:\n            audio_48k (numpy.ndarray): The 48kHz audio data to enqueue.\n        \"\"\"\n        self.enqueuing_audio = True\n        if not self.ctx.state_manager.isTransmitting():\n            self.ctx.state_manager.setTransmitting(True)\n        if self.ctx.radio_manager:\n            self.ctx.radio_manager.set_ptt(True)\n        else:\n            self.log.warning(\"Radio manager not yet initialized...should happen soon, some errors might occur\")  #\n\n        self.ctx.event_manager.send_ptt_change(True)\n\n        # slice audio data to needed blocklength\n        if self.ctx.TESTMODE:\n            block_size = 2400\n        else:\n            block_size = self.sd_output_stream.blocksize\n\n        pad_length = -len(audio_48k) % block_size\n        padded_data = np.pad(audio_48k, (0, pad_length), mode='constant')\n        sliced_audio_data = padded_data.reshape(-1, block_size)\n        # add each block to audio out queue\n        for block in sliced_audio_data:\n            self.audio_out_queue.put(block)\n\n\n        self.enqueuing_audio = False\n        self.ctx.state_manager.transmitting_event.wait()\n\n        if self.ctx.radio_manager:\n            self.ctx.radio_manager.set_ptt(False)\n        else:\n            self.log.warning(\"Radio manager not yet initialized...should happen soon, some errors might occur\")  #\n\n\n        self.ctx.event_manager.send_ptt_change(False)\n\n        return\n\n    def sd_output_audio_callback(self, outdata: np.ndarray, frames: int, time, status) -> None:\n        \"\"\"Callback function for the audio output stream.\n\n        This method is called by the SoundDevice output stream to provide\n        audio data for playback. It retrieves audio chunks from the output\n        queue, resamples them to 8kHz, calculates the FFT, and sends the\n        data to the output stream. It also manages the transmitting state\n        and handles exceptions during audio processing.\n\n        Args:\n            outdata (np.ndarray): The output audio buffer.\n            frames (int): The number of frames to output.\n            time: The current time.\n            status: The status of the output stream.\n        \"\"\"\n\n        try:\n            if not self.audio_out_queue.empty() and not self.enqueuing_audio:\n                chunk = self.audio_out_queue.get_nowait()\n                audio_8k = self.resampler.resample48_to_8(chunk)\n                audio.calculate_fft(audio_8k, self.ctx.modem_fft, self.ctx.state_manager)\n                outdata[:] = chunk.reshape(outdata.shape)\n\n            else:\n                # reset transmitting state only, if we are not actively processing audio\n                # for avoiding a ptt toggle state bug\n                if self.audio_out_queue.empty() and not self.enqueuing_audio:\n                    self.ctx.state_manager.setTransmitting(False)\n                # Fill with zeros if the queue is empty\n                outdata.fill(0)\n        except Exception as e:\n            self.log.warning(\"[AUDIO STATUS]\", status=status, time=time, frames=frames, e=e)\n            outdata.fill(0)\n\n    def sd_input_audio_callback(self, indata: np.ndarray, frames: int, time, status) -> None:\n        \"\"\"Callback function for the audio input stream.\n\n        This method is called by the SoundDevice input stream when audio\n        data is available. It resamples the incoming 48kHz audio to 8kHz,\n        adjusts the audio level, calculates FFT data if not transmitting,\n        and pushes the audio data to the appropriate demodulator buffers.\n        It handles buffer overflows and logs audio exceptions.\n\n        Args:\n            indata (np.ndarray): Input audio data buffer.\n            frames (int): Number of frames received.\n            time: Current time.\n            status: Input stream status.\n        \"\"\"\n        if status:\n            self.log.warning(\"[AUDIO STATUS]\", status=status, time=time, frames=frames)\n            # FIXME on windows input overflows crashing the rx audio stream. Lets restart the server then\n            #if status.input_overflow:\n            #    self.self.ctx.modem_service.put(\"restart\")\n            return\n        try:\n            audio_48k = np.frombuffer(indata, dtype=np.int16)\n            audio_8k = self.resampler.resample48_to_8(audio_48k)\n            if self.ctx.config_manager.config['AUDIO'].get('rx_auto_audio_level'):\n                audio_8k = audio.normalize_audio(audio_8k)\n\n            audio_8k_level_adjusted = audio.set_audio_volume(audio_8k, self.rx_audio_level)\n\n            if not self.ctx.state_manager.isTransmitting():\n                audio.calculate_fft(audio_8k_level_adjusted, self.ctx.modem_fft, self.ctx.state_manager)\n\n            length_audio_8k_level_adjusted = len(audio_8k_level_adjusted)\n            # Avoid buffer overflow by filling only if buffer for\n            # selected datachannel mode is not full\n            index = 0\n            for mode in self.demodulator.MODE_DICT:\n                mode_data = self.demodulator.MODE_DICT[mode]\n                audiobuffer = mode_data['audio_buffer']\n                decode = mode_data['decode']\n                index += 1\n                if audiobuffer:\n                    if (audiobuffer.nbuffer + length_audio_8k_level_adjusted) > audiobuffer.size:\n                        self.demodulator.buffer_overflow_counter[index] += 1\n                        self.ctx.event_manager.send_buffer_overflow(self.demodulator.buffer_overflow_counter)\n                    elif decode:\n                        audiobuffer.push(audio_8k_level_adjusted)\n        except Exception as e:\n            self.log.warning(\"[AUDIO EXCEPTION]\", status=status, time=time, frames=frames, e=e)"
  },
  {
    "path": "freedata_server/modem_frametypes.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\nfrom enum import Enum\n\n\nclass FRAME_TYPE(Enum):\n    \"\"\"Lookup for frame types\"\"\"\n    ARQ_STOP = 10\n    ARQ_STOP_ACK = 11\n    ARQ_SESSION_OPEN = 12\n    ARQ_SESSION_OPEN_ACK = 13\n    ARQ_SESSION_INFO = 14\n    ARQ_SESSION_INFO_ACK = 15\n    ARQ_BURST_FRAME = 20\n    ARQ_BURST_ACK = 21\n    P2P_CONNECTION_CONNECT = 30\n    P2P_CONNECTION_CONNECT_ACK = 31\n    P2P_CONNECTION_HEARTBEAT = 32\n    P2P_CONNECTION_HEARTBEAT_ACK = 33\n    P2P_CONNECTION_PAYLOAD = 34\n    P2P_CONNECTION_PAYLOAD_ACK = 35\n    P2P_CONNECTION_DISCONNECT = 36\n    P2P_CONNECTION_DISCONNECT_ACK = 37\n    #MESH_BROADCAST = 100\n    #MESH_SIGNALLING_PING = 101\n    #MESH_SIGNALLING_PING_ACK = 102\n    CQ = 200\n    QRV = 201\n    PING = 210\n    PING_ACK = 211\n    #IS_WRITING = 215\n    BEACON = 250\n    #FEC = 251\n    #FEC_WAKEUP = 252\n    IDENT = 254\n    TEST_FRAME = 255\n"
  },
  {
    "path": "freedata_server/modulator.py",
    "content": "import ctypes\nimport codec2\nimport structlog\nfrom codec2 import FREEDV_MODE\nfrom codec2 import FREEDV_ADVANCED_FSK\n\n\nclass Modulator:\n    \"\"\"Modulates data using Codec2 and handles transmission parameters.\n\n    This class manages the modulation of data using the Codec2 library. It\n    handles various FreeDV modes, adds preambles, postambles, and silence\n    to the transmitted data, and creates bursts of modulated frames. It\n    also initializes and manages Codec2 instances for different modes.\n    \"\"\"\n    log = structlog.get_logger(\"RF\")\n\n    def __init__(self, ctx):\n        \"\"\"Initializes the Modulator with configuration parameters.\n\n        Args:\n            config (dict): Configuration dictionary containing modem settings.\n        \"\"\"\n\n        self.ctx = ctx\n\n        self.tx_delay = self.ctx.config_manager.config['MODEM']['tx_delay']\n        self.modem_sample_rate = codec2.api.FREEDV_FS_8000\n\n        # Initialize codec2, rig control, and data threads\n        self.init_codec2()\n\n    def init_codec2(self):\n        \"\"\"Initializes Codec2 instances for different FreeDV modes.\n\n        This method initializes multiple instances of the Codec2 library,\n        each corresponding to a different FreeDV mode used for\n        transmission. This allows for efficient switching between modes\n        during operation.\n        \"\"\"\n        # Open codec2 instances\n\n        # INIT TX MODES - here we need all modes.\n        self.freedv_datac0_tx = codec2.open_instance(codec2.FREEDV_MODE.datac0.value)\n        self.freedv_datac1_tx = codec2.open_instance(codec2.FREEDV_MODE.datac1.value)\n        self.freedv_datac3_tx = codec2.open_instance(codec2.FREEDV_MODE.datac3.value)\n        self.freedv_datac4_tx = codec2.open_instance(codec2.FREEDV_MODE.datac4.value)\n        self.freedv_datac13_tx = codec2.open_instance(codec2.FREEDV_MODE.datac13.value)\n        self.freedv_datac14_tx = codec2.open_instance(codec2.FREEDV_MODE.datac14.value)\n        self.data_ofdm_200_tx = codec2.open_instance(codec2.FREEDV_MODE.data_ofdm_200.value)\n        self.data_ofdm_250_tx = codec2.open_instance(codec2.FREEDV_MODE.data_ofdm_250.value)\n        self.data_ofdm_500_tx = codec2.open_instance(codec2.FREEDV_MODE.data_ofdm_500.value)\n        self.data_ofdm_1700_tx = codec2.open_instance(codec2.FREEDV_MODE.data_ofdm_1700.value)\n        self.data_ofdm_2438_tx = codec2.open_instance(codec2.FREEDV_MODE.data_ofdm_2438.value)\n        self.data_vhf_1 = codec2.open_instance(codec2.FREEDV_MODE.data_vhf_1.value)\n\n        #self.freedv_qam16c2_tx = codec2.open_instance(codec2.FREEDV_MODE.qam16c2.value)\n        #self.data_qam_2438_tx = codec2.open_instance(codec2.FREEDV_MODE.data_qam_2438.value)\n\n    def transmit_add_preamble(self, buffer, freedv):\n        \"\"\"Adds a preamble to the transmit buffer.\n\n        This method adds a preamble to the given buffer based on the\n        provided FreeDV instance. The preamble is generated using the\n        `freedv_rawdatapreambletx` function from the Codec2 API.\n\n        Args:\n            buffer (bytes): The buffer to add the preamble to.\n            freedv: The FreeDV instance.\n\n        Returns:\n            bytes: The buffer with the preamble appended.\n        \"\"\"\n        # Init buffer for preample\n        n_tx_preamble_modem_samples = codec2.api.freedv_get_n_tx_preamble_modem_samples(\n            freedv\n        )\n        mod_out_preamble = ctypes.create_string_buffer(n_tx_preamble_modem_samples * 2)\n\n        # Write preamble to txbuffer\n        codec2.api.freedv_rawdatapreambletx(freedv, mod_out_preamble)\n        buffer += bytes(mod_out_preamble)\n        return buffer\n\n    def transmit_add_postamble(self, buffer, freedv):\n        \"\"\"Adds a postamble to the transmit buffer.\n\n        This method adds a postamble to the given buffer based on the\n        provided FreeDV instance. The postamble is generated using the\n        `freedv_rawdatapostambletx` function from the Codec2 API.\n\n        Args:\n            buffer (bytes): The buffer to add the postamble to.\n            freedv: The FreeDV instance.\n\n        Returns:\n            bytes: The buffer with the postamble appended.\n        \"\"\"\n        # Init buffer for postamble\n        n_tx_postamble_modem_samples = (\n            codec2.api.freedv_get_n_tx_postamble_modem_samples(freedv)\n        )\n        mod_out_postamble = ctypes.create_string_buffer(\n            n_tx_postamble_modem_samples * 2\n        )\n        # Write postamble to txbuffer\n        codec2.api.freedv_rawdatapostambletx(freedv, mod_out_postamble)\n        # Append postamble to txbuffer\n        buffer += bytes(mod_out_postamble)\n        return buffer\n\n    def transmit_add_silence(self, buffer, duration):\n        \"\"\"Adds silence to the transmit buffer.\n\n        This method adds a specified duration of silence to the given buffer.\n        The silence is represented as an empty buffer of the appropriate\n        size based on the modem sample rate.\n\n        Args:\n            buffer (bytes): The buffer to add silence to.\n            duration (int): The duration of silence in milliseconds.\n\n        Returns:\n            bytes: The buffer with the silence appended.\n        \"\"\"\n        data_delay = int(self.modem_sample_rate * (duration / 1000))  # type: ignore\n        mod_out_silence = ctypes.create_string_buffer(data_delay * 2)\n        buffer += bytes(mod_out_silence)\n        return buffer\n\n    def transmit_create_frame(self, txbuffer, freedv, frame):\n        \"\"\"Creates and modulates a data frame.\n\n        This method creates a data frame with a CRC checksum, modulates it\n        using the provided FreeDV instance, and appends the modulated data\n        to the given transmit buffer. It uses the Codec2 API for CRC\n        generation and modulation.\n\n        Args:\n            txbuffer (bytes): The transmit buffer to append to.\n            freedv: The FreeDV instance.\n            frame (bytes): The data frame to modulate.\n\n        Returns:\n            bytes: The updated transmit buffer.\n        \"\"\"\n        # Get number of bytes per frame for mode\n        bytes_per_frame = int(codec2.api.freedv_get_bits_per_modem_frame(freedv) / 8)\n        payload_bytes_per_frame = bytes_per_frame - 2\n        #print(payload_bytes_per_frame)\n        # Init buffer for data\n        n_tx_modem_samples = codec2.api.freedv_get_n_tx_modem_samples(freedv)\n        mod_out = ctypes.create_string_buffer(n_tx_modem_samples * 2)\n\n        # Create buffer for data\n        # Use this if CRC16 checksum is required (DATAc1-3)\n        buffer = bytearray(payload_bytes_per_frame)\n        # Set buffersize to length of data which will be sent\n        buffer[: len(frame)] = frame  # type: ignore\n\n        # Create crc for data frame -\n        #   Use the crc function shipped with codec2\n        #   to avoid CRC algorithm incompatibilities\n        # Generate CRC16\n        crc = ctypes.c_ushort(\n            codec2.api.freedv_gen_crc16(bytes(buffer), payload_bytes_per_frame)\n        )\n        # Convert crc to 2-byte (16-bit) hex string\n        crc = crc.value.to_bytes(2, byteorder=\"big\")\n        # Append CRC to data buffer\n        buffer += crc\n        assert (bytes_per_frame == len(buffer))\n        data = (ctypes.c_ubyte * bytes_per_frame).from_buffer_copy(buffer)\n        # modulate DATA and save it into mod_out pointer\n        codec2.api.freedv_rawdatatx(freedv, mod_out, data)\n        txbuffer += bytes(mod_out)\n        return txbuffer\n\n    def create_burst(\n            self, mode, repeats: int, repeat_delay: int, frames: bytearray\n    ) -> bytes:\n        \"\"\"Creates a burst of modulated frames.\n\n        This method creates a burst transmission by repeating the given\n        frames multiple times with a specified delay between repetitions.\n        It adds preambles, postambles, and silence to the transmission as\n        needed. It selects the appropriate FreeDV instance based on the\n        provided mode and handles potential mode transitions.\n\n        Args:\n            mode: The FreeDV mode to use for modulation.\n            repeats (int): The number of times to repeat the frames.\n            repeat_delay (int): The delay between repetitions in milliseconds.\n            frames (bytearray or list): The frame(s) to modulate and transmit as a burst. Can be a single frame as a bytearray or a list of frames.\n\n        Returns:\n            bytes: The modulated burst data.\n        \"\"\"\n        # get freedv instance by mode\n        mode_transition = {\n            codec2.FREEDV_MODE.signalling_ack: self.freedv_datac14_tx,\n            codec2.FREEDV_MODE.signalling: self.freedv_datac13_tx,\n            codec2.FREEDV_MODE.datac0: self.freedv_datac0_tx,\n            codec2.FREEDV_MODE.datac1: self.freedv_datac1_tx,\n            codec2.FREEDV_MODE.datac3: self.freedv_datac3_tx,\n            codec2.FREEDV_MODE.datac4: self.freedv_datac4_tx,\n            codec2.FREEDV_MODE.datac13: self.freedv_datac13_tx,\n            codec2.FREEDV_MODE.datac14: self.freedv_datac14_tx,\n            codec2.FREEDV_MODE.data_ofdm_200: self.data_ofdm_200_tx,\n            codec2.FREEDV_MODE.data_ofdm_250: self.data_ofdm_250_tx,\n            codec2.FREEDV_MODE.data_ofdm_500: self.data_ofdm_500_tx,\n            codec2.FREEDV_MODE.data_ofdm_1700: self.data_ofdm_1700_tx,\n            codec2.FREEDV_MODE.data_ofdm_2438: self.data_ofdm_2438_tx,\n            #codec2.FREEDV_MODE.qam16c2: self.freedv_qam16c2_tx,\n            #codec2.FREEDV_MODE.data_qam_2438: self.freedv_data_qam_2438_tx,\n            codec2.FREEDV_MODE.data_vhf_1: self.data_vhf_1\n        }\n        if mode in mode_transition:\n            freedv = mode_transition[mode]\n        else:\n            print(\"wrong mode.................\")\n            print(mode)\n            #return False\n\n\n        # Open codec2 instance\n        self.MODE = mode\n        self.log.debug(\n            \"[MDM] TRANSMIT\", mode=self.MODE.name, delay=self.tx_delay\n        )\n\n        txbuffer = bytes()\n\n\n        # Add empty data to handle ptt toggle time\n        if self.tx_delay > 0:\n            txbuffer = self.transmit_add_silence(txbuffer, self.tx_delay)\n\n        if not isinstance(frames, list): frames = [frames]\n        for _ in range(repeats):\n\n            # Create modulation for all frames in the list\n            for frame in frames:\n                if not self.ctx.config_manager.config['EXP'].get('enable_vhf'):\n                    txbuffer = self.transmit_add_preamble(txbuffer, freedv)\n                txbuffer = self.transmit_create_frame(txbuffer, freedv, frame)\n                if not self.ctx.config_manager.config['EXP'].get('enable_vhf'):\n                    txbuffer = self.transmit_add_postamble(txbuffer, freedv)\n\n            # Add delay to end of frames\n            txbuffer = self.transmit_add_silence(txbuffer, repeat_delay)\n\n        return txbuffer\n\n"
  },
  {
    "path": "freedata_server/p2p_connection.py",
    "content": "import threading\nfrom enum import Enum\nfrom modem_frametypes import FRAME_TYPE\nfrom codec2 import FREEDV_MODE\nimport data_frame_factory\nimport structlog\nimport random\nfrom queue import Queue\nimport time\nfrom arq_data_type_handler import ARQDataTypeHandler, ARQ_SESSION_TYPES\nfrom arq_session_iss import ARQSessionISS\nimport helpers\nimport zlib\n\nclass States(Enum):\n    NEW = 0\n    CONNECTING = 1\n    CONNECT_SENT = 2\n    CONNECT_ACK_SENT = 3\n    CONNECTED = 4\n    AWAITING_DATA = 5\n    PAYLOAD_TRANSMISSION = 6\n    PAYLOAD_SENT = 7\n    ARQ_SESSION = 8\n    DISCONNECTING = 9\n    DISCONNECTED = 10\n    ABORTED = 11\n    FAILED = 12\n\n\nclass P2PConnection:\n    STATE_TRANSITION = {\n        States.NEW: {\n            FRAME_TYPE.P2P_CONNECTION_CONNECT.value: 'connected_irs',\n            FRAME_TYPE.P2P_CONNECTION_HEARTBEAT.value: 'received_heartbeat',\n\n        },\n        States.CONNECTING: {\n            FRAME_TYPE.P2P_CONNECTION_CONNECT_ACK.value: 'connected_iss',\n        },\n        States.CONNECTED: {\n            FRAME_TYPE.P2P_CONNECTION_CONNECT.value: 'connected_irs',\n            FRAME_TYPE.P2P_CONNECTION_CONNECT_ACK.value: 'connected_iss',\n            FRAME_TYPE.P2P_CONNECTION_PAYLOAD.value: 'received_data',\n            FRAME_TYPE.P2P_CONNECTION_DISCONNECT.value: 'received_disconnect',\n            FRAME_TYPE.P2P_CONNECTION_HEARTBEAT.value: 'received_heartbeat',\n            FRAME_TYPE.P2P_CONNECTION_HEARTBEAT_ACK.value: 'received_heartbeat_ack',\n\n        },\n        States.PAYLOAD_TRANSMISSION: {\n            FRAME_TYPE.P2P_CONNECTION_PAYLOAD_ACK.value: 'transmitted_data',\n            FRAME_TYPE.P2P_CONNECTION_DISCONNECT.value: 'received_disconnect',\n            FRAME_TYPE.P2P_CONNECTION_HEARTBEAT.value: 'received_heartbeat',\n            FRAME_TYPE.P2P_CONNECTION_HEARTBEAT_ACK.value: 'received_heartbeat_ack',\n\n        },\n        States.PAYLOAD_SENT: {\n            FRAME_TYPE.P2P_CONNECTION_PAYLOAD_ACK.value: 'transmitted_data',\n            FRAME_TYPE.P2P_CONNECTION_DISCONNECT.value: 'received_disconnect',\n            FRAME_TYPE.P2P_CONNECTION_HEARTBEAT.value: 'received_heartbeat',\n            FRAME_TYPE.P2P_CONNECTION_HEARTBEAT_ACK.value: 'received_heartbeat_ack',\n\n        },\n        States.AWAITING_DATA: {\n            FRAME_TYPE.P2P_CONNECTION_PAYLOAD.value: 'received_data',\n            FRAME_TYPE.P2P_CONNECTION_DISCONNECT.value: 'received_disconnect',\n            FRAME_TYPE.P2P_CONNECTION_HEARTBEAT.value: 'received_heartbeat',\n            FRAME_TYPE.P2P_CONNECTION_HEARTBEAT_ACK.value: 'received_heartbeat_ack',\n        },\n        States.ARQ_SESSION: {\n            FRAME_TYPE.P2P_CONNECTION_PAYLOAD_ACK.value: 'transmitted_data',\n            FRAME_TYPE.P2P_CONNECTION_DISCONNECT.value: 'received_disconnect',\n            FRAME_TYPE.P2P_CONNECTION_HEARTBEAT_ACK.value: 'received_heartbeat_ack',\n\n        },\n        States.DISCONNECTING: {\n            FRAME_TYPE.P2P_CONNECTION_DISCONNECT.value: 'received_disconnect',\n            FRAME_TYPE.P2P_CONNECTION_DISCONNECT_ACK.value: 'received_disconnect_ack',\n        },\n        States.DISCONNECTED: {\n            FRAME_TYPE.P2P_CONNECTION_DISCONNECT.value: 'received_disconnect',\n            FRAME_TYPE.P2P_CONNECTION_DISCONNECT_ACK.value: 'received_disconnect_ack',\n\n        },\n        States.ABORTED:{\n            FRAME_TYPE.P2P_CONNECTION_DISCONNECT.value: 'received_disconnect',\n            FRAME_TYPE.P2P_CONNECTION_DISCONNECT_ACK.value: 'received_disconnect_ack',\n        },\n        States.FAILED: {\n            FRAME_TYPE.P2P_CONNECTION_DISCONNECT.value: 'received_disconnect',\n            FRAME_TYPE.P2P_CONNECTION_DISCONNECT_ACK.value: 'received_disconnect_ack',\n            FRAME_TYPE.P2P_CONNECTION_HEARTBEAT.value: 'received_heartbeat',\n        },\n    }\n\n    def __init__(self, ctx, origin: str, destination: str):\n        self.ctx = ctx\n        self.logger = structlog.get_logger(type(self).__name__)\n\n        self.frame_factory = data_frame_factory.DataFrameFactory(self.ctx)\n\n\n        self.destination = destination\n        self.destination_crc = helpers.get_crc_24(destination)\n        self.origin = origin\n        self.bandwidth = 2300\n\n        if self.ctx.rf_modem:\n            self.ctx.rf_modem.demodulator.set_decode_mode(is_p2p_connection=True)\n\n        self.p2p_data_tx_queue = Queue()\n        #Remove after testing\n        self.p2p_data_rx_queue = Queue()\n\n        self.arq_data_type_handler = ARQDataTypeHandler(self.ctx)\n\n\n        self.state = States.NEW\n        self.session_id = self.generate_id()\n\n        self.event_frame_received = threading.Event()\n\n\n\n        self.RETRIES_CONNECT = 3\n        self.TIMEOUT_CONNECT = 5\n        self.TIMEOUT_DATA = 5\n        self.RETRIES_DATA = 5\n        self.TIMEOUT_HEARTBEAT = 10\n        self.ENTIRE_CONNECTION_TIMEOUT = 180\n\n        self.is_ISS = False # Indicator, if we are ISS or IRS\n        self.is_Master = False # Indicator, if we are Maste or Not\n\n\n        self.last_data_timestamp= time.time()\n        self.start_data_processing_worker()\n\n        self.flag_has_data = False\n        self.flag_announce_arq = False\n\n        self.transmission_in_progress = False # indicatews, if we are waiting for an ongoing transmission\n        self.running_arq_session = None\n    def start_data_processing_worker(self):\n        \"\"\"Starts a worker thread to monitor the transmit data queue and process data.\"\"\"\n\n        def data_processing_worker():\n            last_isalive = 0\n            while True:\n                now = time.time()\n                if now > self.last_data_timestamp + self.ENTIRE_CONNECTION_TIMEOUT and self.state not in [States.DISCONNECTING, States.DISCONNECTED, States.ARQ_SESSION, States.FAILED, States.PAYLOAD_TRANSMISSION]:\n                    self.disconnect()\n                    return\n\n                # this is our heartbeat logic, only ISS will run it\n                if now > self.last_data_timestamp + 5 and self.state in [States.CONNECTED, States.PAYLOAD_SENT] and self.is_ISS and not self.transmission_in_progress:\n                    self.log(\"Sending heartbeat\")\n\n                    if self.p2p_data_tx_queue.empty():\n                        self.flag_has_data = False\n                    else:\n                        self.flag_has_data = True\n                    self.transmit_heartbeat(has_data=self.flag_has_data)\n\n                if self.state in [States.CONNECTED, States.PAYLOAD_SENT] and self.is_Master:\n                    threading.Event().wait(0.5)\n                    self.process_data_queue()\n\n\n                # call every 60s\n                if now - last_isalive >= 60:\n                    try:\n                        self.ctx.socket_interface_manager.command_server.command_handler.socket_respond_iamalive()\n                    except Exception as e:\n                        self.log(\"Failed to send IAMALIVE command\", e)\n                    last_isalive = now\n\n                threading.Event().wait(0.100)\n\n\n\n\n        # Create and start the worker thread\n        worker_thread = threading.Thread(target=data_processing_worker, daemon=True)\n        worker_thread.start()\n\n    def generate_id(self):\n        while True:\n            random_int = random.randint(1,255)\n            if random_int not in self.ctx.state_manager.p2p_connection_sessions:\n                return random_int\n\n            if len(self.ctx.state_manager.p2p_connection_sessions) >= 255:\n                return False\n\n    def set_details(self, snr, frequency_offset):\n        self.snr = snr\n        self.frequency_offset = frequency_offset\n\n    def log(self, message, isWarning = False):\n        msg = f\"[{type(self).__name__}][id={self.session_id}][state={self.state}][ISS={bool(self.is_ISS)}][Master={bool(self.is_Master)}]: {message}\"\n        logger = self.logger.warn if isWarning else self.logger.info\n        logger(msg)\n\n    def set_state(self, state):\n        if self.state == state:\n            self.log(f\"{type(self).__name__} state {self.state.name} unchanged.\")\n        else:\n            self.log(f\"{type(self).__name__} state change from {self.state.name} to {state.name}\")\n        self.state = state\n\n    def on_frame_received(self, frame):\n        self.last_data_timestamp = time.time()\n        self.event_frame_received.set()\n        self.log(f\"Received {frame['frame_type']}\")\n        frame_type = frame['frame_type_int']\n        if self.state in self.STATE_TRANSITION:\n            if frame_type in self.STATE_TRANSITION[self.state]:\n                action_name = self.STATE_TRANSITION[self.state][frame_type]\n                response = getattr(self, action_name)(frame)\n                return\n\n        self.log(f\"Ignoring unknown transition from state {self.state.name} with frame {frame['frame_type']}\")\n\n    def transmit_frame(self, frame: bytearray, mode='auto'):\n        if mode in ['auto']:\n            mode = self.get_mode_by_speed_level(self.speed_level)\n\n        self.ctx.rf_modem.transmit(mode, 1, 1, frame)\n\n    def transmit_wait_and_retry(self, frame_or_burst, timeout, retries, mode):\n        while retries > 0:\n            self.event_frame_received = threading.Event()\n            self.transmission_in_progress = True\n            if isinstance(frame_or_burst, list): burst = frame_or_burst\n            else: burst = [frame_or_burst]\n            for f in burst:\n                self.transmit_frame(f, mode)\n            self.event_frame_received.clear()\n            self.log(f\"Waiting {timeout} seconds...\")\n            if self.event_frame_received.wait(timeout):\n                self.transmission_in_progress = False\n                return\n            self.log(\"Timeout!\")\n            retries = retries - 1\n\n        #self.connected_iss() # override connection state for simulation purposes\n        #self.session_failed()\n\n    def launch_twr(self, frame_or_burst, timeout, retries, mode):\n        twr = threading.Thread(target = self.transmit_wait_and_retry, args=[frame_or_burst, timeout, retries, mode], daemon=True)\n        twr.start()\n\n    def transmit_and_wait_irs(self, frame, timeout, mode):\n        self.event_frame_received.clear()\n        self.transmit_frame(frame, mode)\n        #self.log(f\"Waiting {timeout} seconds...\")\n        #if not self.event_frame_received.wait(timeout):\n        #    self.log(\"Timeout waiting for ISS. Session failed.\")\n        #    self.transmission_failed()\n\n    def launch_twr_irs(self, frame, timeout, mode):\n        thread_wait = threading.Thread(target = self.transmit_and_wait_irs,\n                                       args = [frame, timeout, mode], daemon=True)\n        thread_wait.start()\n\n    def connect(self):\n        self.set_state(States.CONNECTING)\n        self.is_ISS = True\n        self.last_data_timestamp = time.time()\n        session_open_frame = self.frame_factory.build_p2p_connection_connect(self.destination, self.origin, self.session_id)\n        self.launch_twr(session_open_frame, self.TIMEOUT_CONNECT, self.RETRIES_CONNECT, mode=FREEDV_MODE.signalling)\n        return\n\n    def connected_iss(self, frame=None):\n        self.log(\"CONNECTED ISS...........................\")\n        self.set_state(States.CONNECTED)\n        self.is_ISS = True\n        self.is_Master = True\n        if self.ctx.socket_interface_manager and hasattr(self.ctx.socket_interface_manager.command_server, \"command_handler\"):\n            self.ctx.socket_interface_manager.command_server.command_handler.socket_respond_connected(self.origin, self.destination, self.bandwidth)\n\n    def connected_irs(self, frame):\n        self.log(\"CONNECTED IRS...........................\")\n        self.ctx.state_manager.register_p2p_connection_session(self)\n        self.ctx.socket_interface_manager.command_server.command_handler.session = self\n        self.set_state(States.CONNECTED)\n        self.is_ISS = False\n        self.is_Master = False\n        self.origin = frame[\"origin\"]\n        self.destination = frame[\"destination\"]\n        self.destination_crc = frame[\"destination_crc\"]\n        #self.log(frame)\n\n        self.log(f\"destination: {self.destination} - origin: {self.origin}\")\n\n\n        if self.ctx.socket_interface_manager and hasattr(self.ctx.socket_interface_manager.command_server, \"command_handler\"):\n            self.ctx.socket_interface_manager.command_server.command_handler.socket_respond_connected(self.origin, self.destination, self.bandwidth)\n\n        session_open_frame = self.frame_factory.build_p2p_connection_connect_ack(self.destination, self.origin, self.session_id)\n        self.launch_twr_irs(session_open_frame, self.ENTIRE_CONNECTION_TIMEOUT, mode=FREEDV_MODE.signalling)\n\n    def session_failed(self):\n        self.set_state(States.FAILED)\n        if self.ctx.socket_interface_manager and hasattr(self.ctx.socket_interface_manager.command_server, \"command_handler\"):\n            self.ctx.socket_interface_manager.command_server.command_handler.socket_respond_disconnected()\n\n\n    def process_data_queue(self, frame=None):\n        if self.p2p_data_tx_queue.empty():\n            self.is_Master = False\n            return\n\n        self.is_Master = True\n\n        buffer_size = self.get_tx_queue_buffer_size()\n        self.ctx.socket_interface_manager.command_server.command_handler.socket_respond_buffer_size(buffer_size)\n\n        raw_data = self.p2p_data_tx_queue.get()\n        sequence_id = random.randint(0,255)\n\n\n        compressor = zlib.compressobj(level=6, wbits=-zlib.MAX_WBITS, strategy=zlib.Z_FILTERED)\n        data = compressor.compress(raw_data) + compressor.flush()\n\n        self.log(f\"Processing data....{len(data)} Bytes - {raw_data}\")\n\n\n        if  len(data) <= 11:\n            mode = FREEDV_MODE.signalling\n        elif 11 < len(data) <= 32:\n            mode = FREEDV_MODE.datac4\n        else:\n            self.log(\"Using ARQ for sending data...\")\n            self.set_state(States.ARQ_SESSION)\n            self.transmit_arq(raw_data)\n            return\n\n        # Additional return statement for avoiding wrong data.\n        if self.state is States.ARQ_SESSION:\n            return\n\n        self.log(\"Using burst for sending data...\")\n        self.set_state(States.PAYLOAD_TRANSMISSION)\n        if self.p2p_data_tx_queue.empty():\n            self.flag_has_data = False\n        else:\n            self.flag_has_data = True\n\n        payload = self.frame_factory.build_p2p_connection_payload(mode, self.session_id, sequence_id, data, flag_has_data=self.flag_has_data)\n        self.launch_twr(payload, self.TIMEOUT_DATA, self.RETRIES_DATA, mode=mode)\n\n\n        return\n\n    def received_data(self, frame):\n        self.log(f\"received data...\")\n\n        ack_data = self.frame_factory.build_p2p_connection_payload_ack(self.session_id, 0)\n        self.launch_twr_irs(ack_data, self.ENTIRE_CONNECTION_TIMEOUT, mode=FREEDV_MODE.signalling_ack)\n\n        if not frame[\"flag\"][\"HAS_DATA\"]:\n            self.set_state(States.CONNECTED)\n        else:\n            self.set_state(States.AWAITING_DATA)\n\n        try:\n            received_data = frame['data'].rstrip(b'\\x00')\n\n            decompressor = zlib.decompressobj(wbits=-zlib.MAX_WBITS)\n            received_data = decompressor.decompress(received_data)\n            received_data += decompressor.flush()\n\n            if self.ctx.socket_interface_manager and hasattr(self.ctx.socket_interface_manager.data_server, \"data_handler\"):\n                self.log(f\"sending {len(received_data)} bytes to data socket client: {received_data}\")\n                self.ctx.socket_interface_manager.data_server.data_handler.send_data_to_client(received_data)\n\n        except Exception as e:\n            self.log(f\"Error sending data to socket: {e}\")\n\n\n\n\n    def transmitted_data(self, frame):\n        self.log(\"Transmitted data...\")\n        if self.p2p_data_tx_queue.empty():\n            self.log(\"Transmitted all data...\")\n            self.set_state(States.CONNECTED)\n        else:\n            self.log(\"Moving to next payload...\")\n            self.set_state(States.PAYLOAD_SENT)\n\n        buffer_size = self.get_tx_queue_buffer_size()\n        self.ctx.socket_interface_manager.command_server.command_handler.socket_respond_buffer_size(buffer_size)\n\n\n    def transmit_heartbeat(self, has_data=False, announce_arq=False):\n        # heartbeats will be transmit by ISS only, therefore only IRS can reveice heartbeat ack\n        self.last_data_timestamp = time.time()\n        if self.ctx.state_manager.is_receiving_codec2_signal():\n            return\n        heartbeat = self.frame_factory.build_p2p_connection_heartbeat(self.session_id, flag_has_data=has_data, flag_announce_arq=announce_arq)\n        self.launch_twr(heartbeat, self.TIMEOUT_HEARTBEAT, 10, mode=FREEDV_MODE.signalling)\n\n    def transmit_heartbeat_ack(self):\n        self.log(\"Transmitting heartbeat ACK\")\n\n        if self.p2p_data_tx_queue.empty():\n            self.flag_has_data = False\n        else:\n            self.flag_has_data = True\n\n        self.last_data_timestamp = time.time()\n        heartbeat_ack = self.frame_factory.build_p2p_connection_heartbeat_ack(self.session_id, flag_has_data=self.flag_has_data,flag_announce_arq=self.flag_announce_arq)\n        self.launch_twr_irs(heartbeat_ack, self.ENTIRE_CONNECTION_TIMEOUT, mode=FREEDV_MODE.signalling)\n\n    def received_heartbeat(self, frame):\n        # we don't accept heartbeats as ISS\n        if self.is_ISS:\n            return\n\n        # ensure we have correct state\n        if self.state is States.NEW:\n            self.connected_irs()\n\n        self.log(\"Received heartbeat...\")\n        self.last_data_timestamp = time.time()\n\n        if frame[\"flag\"][\"HAS_DATA\"]:\n            self.log(\"Opposite station has data\")\n            self.is_Master = False\n\n        else:\n\n            if self.p2p_data_tx_queue.empty():\n                self.log(\"Opposite station's data buffer is empty as well -- We won't become data master now\")\n                self.is_Master = False\n                self.flag_has_data = False\n            else:\n                self.log(\"Opposite station's data buffer is empty. We can become data master now\")\n                self.is_Master = True\n                self.flag_has_data = True\n\n\n\n        if frame[\"flag\"][\"ANNOUNCE_ARQ\"]:\n            self.log(\"Opposite station announced ARQ, changing state\")\n            self.is_Master = False\n            self.set_state(States.ARQ_SESSION)\n        self.transmit_heartbeat_ack()\n\n    def received_heartbeat_ack(self, frame):\n        self.last_data_timestamp = time.time()\n        self.log(\"Received heartbeat ack from opposite...\")\n\n        if frame[\"flag\"][\"HAS_DATA\"] and not self.flag_has_data:\n            self.log(\"other station has data, we are not\")\n            self.is_Master = False\n            self.set_state(States.AWAITING_DATA)\n        elif frame[\"flag\"][\"HAS_DATA\"] and self.flag_has_data:\n            self.log(\"other station has data and we as well, we become master\")\n            self.is_Master = True\n            self.set_state(States.CONNECTED)\n        else:\n            self.log(\"other station has no data, we become master now\")\n            self.is_Master = True\n            self.set_state(States.CONNECTED)\n\n        if frame[\"flag\"][\"ANNOUNCE_ARQ\"]:\n            self.log(\"other station announced arq, changing state\")\n            self.is_Master = False\n            self.set_state(States.ARQ_SESSION)\n\n        self.event_frame_received.set()\n\n\n\n    def disconnect(self):\n        if self.state not in [States.DISCONNECTING, States.DISCONNECTED, States.ARQ_SESSION]:\n            self.set_state(States.DISCONNECTING)\n\n            self.abort_arq()\n\n            disconnect_frame = self.frame_factory.build_p2p_connection_disconnect(self.session_id)\n            self.launch_twr(disconnect_frame, self.TIMEOUT_CONNECT, self.RETRIES_CONNECT, mode=FREEDV_MODE.signalling)\n        return\n\n    def abort_connection(self):\n        # abort is a dirty disconnect\n        self.log(\"ABORTING...............\")\n\n        self.abort_arq()\n\n        self.event_frame_received.set()\n        self.set_state(States.DISCONNECTED)\n\n    def abort_arq(self):\n        try:\n            if self.running_arq_session:\n                self.running_arq_session.abort_transmission()\n        except Exception as e:\n            self.log(f\"Error stopping ARQ session {e}\")\n        finally:\n            self.delete_arq_session()\n\n    def received_disconnect(self, frame):\n        self.log(\"DISCONNECTED...............\")\n        self.set_state(States.DISCONNECTED)\n\n        self.abort_arq()\n\n        if self.ctx.socket_interface_manager:\n            self.ctx.socket_interface_manager.command_server.command_handler.socket_respond_disconnected()\n        self.is_ISS = False\n        disconnect_ack_frame = self.frame_factory.build_p2p_connection_disconnect_ack(self.session_id)\n        self.launch_twr_irs(disconnect_ack_frame, self.ENTIRE_CONNECTION_TIMEOUT, mode=FREEDV_MODE.signalling)\n\n    def received_disconnect_ack(self, frame):\n        self.log(\"DISCONNECTED...............\")\n        self.set_state(States.DISCONNECTED)\n        if self.ctx.socket_interface_manager:\n            self.ctx.socket_interface_manager.command_server.command_handler.socket_respond_disconnected()\n\n\n\n    def transmit_arq(self, data):\n        \"\"\"\n        This function needs to be fixed - we want to send ARQ data within a p2p connection\n        check p2p_connection handler in arq_data_type_handler\n\n        \"\"\"\n        self.set_state(States.ARQ_SESSION)\n        if self.is_ISS:\n            arq_destination = self.destination\n        else:\n            arq_destination = self.origin\n\n        threading.Event().wait(3)\n\n        prepared_data, type_byte = self.arq_data_type_handler.prepare(data, ARQ_SESSION_TYPES.p2p_connection)\n        iss = ARQSessionISS(self.ctx, arq_destination, prepared_data, type_byte)\n        iss.id = self.session_id\n        # register p2p connection to arq session\n        iss.running_p2p_connection = self\n        self.running_arq_session = iss\n        if iss.id:\n            self.ctx.state_manager.register_arq_iss_session(iss)\n            iss.start()\n            return iss\n\n    def transmitted_arq(self, transmitted_data):\n        self.last_data_timestamp = time.time()\n        self.set_state(States.CONNECTED)\n        self.is_Master = True\n        self.delete_arq_session()\n        self.running_arq_session = None\n\n    def received_arq(self, received_data):\n        self.last_data_timestamp = time.time()\n        self.set_state(States.CONNECTED)\n        self.running_arq_session = None\n\n        self.delete_arq_session()\n\n        try:\n            if self.ctx.socket_interface_manager and hasattr(self.ctx.socket_interface_manager.data_server, \"data_handler\"):\n                self.log(f\"sending {len(received_data)} bytes to data socket client\")\n                self.ctx.socket_interface_manager.data_server.data_handler.send_data_to_client(received_data)\n\n        except Exception as e:\n            self.log(f\"Error sending data to socket: {e}\")\n\n    def failed_arq(self):\n        self.set_state(States.CONNECTED)\n        self.delete_arq_session()\n\n    def delete_arq_session(self):\n        \"\"\"\n        Delete both ARQ IRS and ISS sessions.\n        For each session type, retrieve the session by ID and then remove it.\n        Log any errors encountered during retrieval or removal.\n        \"\"\"\n        for kind in ('irs', 'iss'):\n            get = getattr(self.ctx.state_manager, f\"get_arq_{kind}_session\")\n            remove = getattr(self.ctx.state_manager, f\"remove_arq_{kind}_session\")\n            try:\n                # Retrieve the session (may raise if not found)\n                session = get(self.session_id)\n                # Remove the session\n                remove(session.id)\n            except Exception as e:\n                self.log(f\"Error handling ARQ {kind.upper()} session: {e}\", isWarning=True)\n\n    def get_tx_queue_buffer_size(self):\n        return sum(len(item) for item in list(self.p2p_data_tx_queue.queue))\n"
  },
  {
    "path": "freedata_server/radio_manager.py",
    "content": "import rigctld\nimport flrig\nimport rigdummy\nimport serial_ptt\nimport threading\n\nclass RadioManager:\n    def __init__(self, ctx):\n\n        self.ctx = ctx\n\n        self.radiocontrol = self.ctx.config_manager.config['RADIO']['control']\n\n\n        self.refresh_rate = 1\n        self.stop_event = threading.Event()\n        self.update_thread = threading.Thread(target=self.update_parameters, daemon=True)\n        self._init_rig_control()\n\n    def _init_rig_control(self):\n        # Check how we want to control the radio\n        if self.radiocontrol in [\"rigctld\", \"rigctld_bundle\"]:\n            self.radio = rigctld.radio(self.ctx)\n        elif self.radiocontrol == \"serial_ptt\":\n            self.radio = serial_ptt.radio(self.ctx)\n        elif self.radiocontrol == \"flrig\":\n            self.radio = flrig.radio(self.ctx)\n        else:\n            self.radio = rigdummy.radio()\n\n        self.update_thread.start()\n\n    def set_ptt(self, state):\n        self.radio.set_ptt(state)\n        # set disabled ptt twice for reducing chance of stuck PTT\n        if not state:\n            self.radio.set_ptt(state)\n\n        # send ptt state via socket interface\n        try:\n            if self.ctx.config_manager.config['SOCKET_INTERFACE']['enable'] and self.ctx.socket_interface_manager.command_server.command_handler:\n                self.socket_interface_manager.command_server.command_handler.socket_respond_ptt(state)\n        except Exception as e:\n            print(e)\n\n    def set_tuner(self, state):\n        self.radio.set_tuner(state)\n        self.ctx.state_manager.set_radio(\"radio_tuner\", state)\n\n    def set_frequency(self, frequency):\n        self.radio.set_frequency(frequency)\n        self.ctx.state_manager.set_radio(\"radio_frequency\", frequency)\n\n    def set_mode(self, mode):\n        self.radio.set_mode(mode)\n        self.ctx.state_manager.set_radio(\"radio_mode\", mode)\n\n    def set_rf_level(self, level):\n        self.radio.set_rf_level(level)\n        self.ctx.state_manager.set_radio(\"radio_rf_level\", level)\n\n    def update_parameters(self):\n        while not self.stop_event.is_set():\n            parameters = self.radio.get_parameters()\n\n            self.ctx.state_manager.set_radio(\"radio_frequency\", parameters['frequency'])\n            self.ctx.state_manager.set_radio(\"radio_mode\", parameters['mode'])\n            self.ctx.state_manager.set_radio(\"radio_bandwidth\", parameters['bandwidth'])\n            self.ctx.state_manager.set_radio(\"radio_rf_level\", parameters['rf'])\n            self.ctx.state_manager.set_radio(\"radio_tuner\", parameters['tuner'])\n\n            if self.ctx.state_manager.isTransmitting():\n                self.radio_alc = parameters['alc']\n                self.ctx.state_manager.set_radio(\"radio_swr\", parameters['swr'])\n\n            self.ctx.state_manager.set_radio(\"s_meter_strength\", parameters['strength'])\n            threading.Event().wait(self.refresh_rate)\n\n    def stop(self):\n        self.stop_event.set()\n        self.radio.disconnect()\n        self.radio.stop_service()"
  },
  {
    "path": "freedata_server/rigctld.py",
    "content": "import socket\nimport structlog\nimport helpers\nimport threading\nfrom enum import IntEnum\n\nclass PTTMode(IntEnum):\n    RX = 0\n    TX = 1\n    TX_MIC = 2\n    TX_DATA = 3\n\n\nclass radio:\n    \"\"\"Controls a radio using rigctld.\n\n    This class provides methods to interact with a radio using the\n    rigctld server. It supports connecting, disconnecting, setting\n    parameters (PTT, mode, frequency, bandwidth, RF level, tuner),\n    retrieving radio parameters, starting and stopping the rigctld\n    service, and handling VFO settings.\n    \"\"\"\n\n    log = structlog.get_logger(\"radio (rigctld)\")\n\n    def __init__(self, ctx):\n        \"\"\"Initializes the radio controller.\n\n        Args:\n            config (dict): Configuration dictionary.\n            states (StateManager): State manager instance.\n            hostname (str, optional): Hostname or IP address of the\n                rigctld server. Defaults to \"localhost\".\n            port (int, optional): Port number of the rigctld server.\n                Defaults to 4532.\n            timeout (int, optional): Timeout for socket operations in\n                seconds. Defaults to 3.\n        \"\"\"\n\n        self.ctx = ctx\n        self.hostname = self.ctx.config_manager.config['RIGCTLD']['ip']\n        self.port = self.ctx.config_manager.config['RIGCTLD']['port']\n        self.ptt_mode = self.ctx.config_manager.config['RADIO']['ptt_mode']\n        self.timeout = 3\n        self.rigctld_process = None\n        self.max_connection_attempts = 60\n        self.restart_interval = 10\n        self.connection = None\n        self.connected = False\n        self.shutdown = False\n        self.await_response = threading.Event()\n        self.await_response.set()\n\n        self.parameters = {\n            'frequency': '---',\n            'mode': '---',\n            'alc': '---',\n            'strength': '---',\n            'bandwidth': '---',\n            'rf': '---',\n            'ptt': False,  # Initial PTT state is set to False,\n            'tuner': False,\n            'swr': '---',\n            'chk_vfo': False,\n            'vfo': '---',\n        }\n\n        # start rigctld...\n        if self.ctx.config_manager.config[\"RADIO\"][\"control\"] in [\"rigctld_bundle\"]:\n            self.stop_service()\n            self.start_service()\n\n        # connect to radio\n        self.connect()\n\n    def connect(self):\n\n        if self.shutdown:\n            return\n\n        if self.ctx.config_manager.config[\"RADIO\"][\"control\"] not in [\"rigctld\", \"rigctld_bundle\"]:\n            return\n\n        for attempt in range(1, self.max_connection_attempts + 1):\n            try:\n                self.log.info(\n                    f\"[RIGCTLD] Connection attempt {attempt}/{self.max_connection_attempts} \"\n                    f\"to {self.hostname}:{self.port}\"\n                )\n                self.connection = socket.create_connection(\n                    (self.hostname, self.port), timeout=self.timeout\n                )\n                self.connection.settimeout(self.timeout)\n                # allow rigctld to warm up\n                threading.Event().wait(2)\n\n                # success path\n                self.connected = True\n                self.ctx.state_manager.set_radio(\"radio_status\", True)\n                self.log.info(f\"[RIGCTLD] Connected to rigctld at {self.hostname}:{self.port}\")\n\n                self.check_vfo()\n                self.get_vfo()\n                return\n\n            except Exception as err:\n                self.connected = False\n                self.ctx.state_manager.set_radio(\"radio_status\", False)\n                self.log.warning(f\"[RIGCTLD] Attempt {attempt} failed: {err}\")\n\n                # after every restart_interval failures, restart service\n                if attempt % self.restart_interval == 0 and attempt < self.max_connection_attempts and self.ctx.config_manager.config[\"RADIO\"][\"control\"] in [\"rigctld_bundle\"]:\n                    self.log.info(\n                        f\"[RIGCTLD] Reached {attempt} failures, \"\n                        f\"restarting rigctld service.\"\n                    )\n                    try:\n                        self.stop_service()\n                        self.start_service()\n                    except Exception as svc_err:\n                        self.log.error(\n                            f\"[RIGCTLD] Failed to restart rigctld service: {svc_err}\"\n                        )\n                    # give service a moment to start\n                    threading.Event().wait(5)\n                else:\n                    # brief pause before next attempt\n                    threading.Event().wait(1)\n\n        # if still not connected after all attempts\n        if not self.connected:\n            self.log.error(\n                f\"[RIGCTLD] Could not establish connection after \"\n                f\"{self.max_connection_attempts} attempts\"\n            )\n\n    def disconnect(self):\n        \"\"\"Disconnects from the rigctld server.\n\n        This method disconnects from the rigctld server, updates the\n        radio status, resets radio parameters, and closes the socket\n        connection.\n        \"\"\"\n        self.shutdown = True\n        self.connected = False\n        if self.connection:\n            self.connection.close()\n        del self.connection\n        self.connection = None\n        self.ctx.state_manager.set_radio(\"radio_status\", False)\n        self.parameters = {\n            'frequency': '---',\n            'mode': '---',\n            'alc': '---',\n            'strength': '---',\n            'bandwidth': '---',\n            'rf': '---',\n            'ptt': False,  # Initial PTT state is set to False,\n            'tuner': False,\n            'swr': '---',\n            'vfo': '---'\n        }\n\n    def send_command(self, command):\n        \"\"\"Sends a command to the rigctld server.\n\n        This method sends a command to the rigctld server and waits for a\n        response. It handles potential timeouts and other errors during\n        communication. It uses a threading.Event to synchronize command\n        sending and avoid concurrent access to the socket.\n\n        Args:\n            command (str): The command to send to rigctld.\n\n        Returns:\n            str or None: The response from rigctld, or None if an error\n            occurred, the response contains 'RPRT', or the response\n            contains 'None'.\n\n        Raises:\n            TimeoutError: If a timeout occurs while waiting for a response.\n        \"\"\"\n        if self.connected:\n            # wait if we have another command awaiting its response...\n            # we need to set a timeout for avoiding a blocking state\n            if not self.await_response.wait(timeout=1):  # Check if timeout occurred\n                raise TimeoutError(f\"[RIGCTLD] Timeout waiting for response from rigctld before sending command: [{command}]\")\n\n            try:\n                self.await_response.clear()  # Signal that a command is awaiting response\n                if self.connection:\n                    self.connection.sendall(command.encode('utf-8') + b\"\\n\")\n                else:\n                    return None\n\n                response = self.connection.recv(1024)\n                self.await_response.set()  # Signal that the response has been received\n                stripped_result = response.decode('utf-8').strip()\n                if 'RPRT' in stripped_result:\n                    return None\n\n                if 'None' in stripped_result:\n                    return None\n\n                return stripped_result\n\n            except socket.timeout:\n                self.log.warning(f\"[RIGCTLD] Timeout waiting for response from rigctld: [{command}]\")\n                self.connected = False  # Set connected to False if timeout occurs\n                return None  # Return None to indicate timeout\n            except Exception as err:\n                self.log.warning(f\"[RIGCTLD] Error sending command [{command}] to rigctld: {err}\")\n                self.connected = False\n                return None  # Return None to indicate error\n            finally:\n                self.await_response.set()  # Ensure await_response is always set in case of exceptions\n        return \"\"\n\n    def insert_vfo(self, command):\n        \"\"\"Inserts the VFO into rigctld commands if supported.\n\n        This method modifies rigctld commands to include the VFO\n        information if VFO support is enabled and the VFO is set. It\n        takes a command string as input and returns the modified command\n        string with the VFO inserted.\n\n        Args:\n            command (str): The rigctld command string.\n\n        Returns:\n            str: The modified command string with VFO inserted, or the\n            original command string if VFO is not supported or not set.\n        \"\"\"\n        #self.get_vfo()\n        if self.parameters['chk_vfo'] and self.parameters['vfo'] and self.parameters['vfo'] not in [None, False, 'err', 0]:\n            return f\"{command[:1].strip()} {self.parameters['vfo']} {command[1:].strip()}\"\n\n        return command\n\n    def set_ptt(self, state):\n\n        if not self.connected:\n            return False\n        try:\n            if state:\n                try:\n                    ptt_mode = int(PTTMode[self.ptt_mode])\n                except Exception:\n                    self.log.warning(\"[RIGCTLD] Invalid or unset ptt_mode, falling back to TX (1)\")\n                    ptt_mode = PTTMode.TX\n            else:\n                ptt_mode = PTTMode.RX\n\n            command = self.insert_vfo(f\"T {int(ptt_mode)}\")\n            self.send_command(command)\n\n            # Parameter-Update\n            self.parameters['ptt'] = (ptt_mode in (PTTMode.TX, PTTMode.TX_MIC, PTTMode.TX_DATA))\n\n            self.log.info(f\"[RIGCTLD] Setting PTT: {ptt_mode.name} ({int(ptt_mode)})\")\n            return True\n        except Exception as err:\n            self.log.warning(f\"[RIGCTLD] Error setting PTT: {err}\")\n            self.connected = False\n            return False\n\n    def set_mode(self, mode):\n        \"\"\"Set the mode.\n\n        Args:\n            mode (str): The mode to set.\n\n        Returns:\n            bool: True if the mode was set successfully, False otherwise.\n        \"\"\"\n        if self.connected:\n            try:\n                command = f\"M {mode} 0\"\n                command = self.insert_vfo(command)\n\n                self.send_command(command)\n                self.parameters['mode'] = mode\n                return True\n            except Exception as err:\n                self.log.warning(f\"[RIGCTLD] Error setting mode: {err}\")\n                self.connected = False\n        return False\n\n    def set_frequency(self, frequency):\n        \"\"\"Set the frequency.\n\n        Args:\n            frequency (str): The frequency to set.\n\n        Returns:\n            bool: True if the frequency was set successfully, False otherwise.\n        \"\"\"\n        if self.connected:\n            try:\n                command = f\"F {frequency}\"\n                command = self.insert_vfo(command)\n                self.send_command(command)\n                self.parameters['frequency'] = frequency\n                return True\n            except Exception as err:\n                self.log.warning(f\"[RIGCTLD] Error setting frequency: {err}\")\n                self.connected = False\n        return False\n\n    def set_bandwidth(self, bandwidth):\n        \"\"\"Set the bandwidth.\n\n        Args:\n            bandwidth (str): The bandwidth to set.\n\n        Returns:\n            bool: True if the bandwidth was set successfully, False otherwise.\n        \"\"\"\n        if self.connected:\n            try:\n                command = f\"M {self.parameters['mode']} {bandwidth}\"\n                command = self.insert_vfo(command)\n                self.send_command(command)\n                self.parameters['bandwidth'] = bandwidth\n                return True\n            except Exception as err:\n                self.log.warning(f\"[RIGCTLD] Error setting bandwidth: {err}\")\n                self.connected = False\n        return False\n    \n\n\n    def set_rf_level(self, rf):\n        \"\"\"Set the RF.\n\n        Args:\n            rf (str): The RF to set.\n\n        Returns:\n            bool: True if the RF was set successfully, False otherwise.\n        \"\"\"\n        if self.connected:\n            try:\n                command = f\"L RFPOWER {rf/100}\" #RF RFPOWER --> RFPOWER == IC705\n                command = self.insert_vfo(command)\n                self.send_command(command)\n                self.parameters['rf'] = rf\n                return True\n            except Exception as err:\n                self.log.warning(f\"[RIGCTLD] Error setting RF: {err}\")\n                self.connected = False\n        return False\n\n    def set_tuner(self, state):\n        \"\"\"Set the TUNER state.\n\n        Args:\n            state (bool): True to enable PTT, False to disable.\n\n        Returns:\n            bool: True if the PTT state was set successfully, False otherwise.\n        \"\"\"\n        if self.connected:\n            try:\n\n                if state:\n                    command = 'U TUNER 1'\n                else:\n                    command = 'U TUNER 0'\n\n                command = self.insert_vfo(command)\n                self.send_command(command)\n\n                self.parameters['tuner'] = state  # Update PTT state in parameters\n                return True\n            except Exception as err:\n                self.log.warning(f\"[RIGCTLD] Error setting TUNER state: {err}\")\n                self.connected = False\n        return False\n\n    def get_tuner(self):\n        \"\"\"Set the TUNER state.\n\n        Args:\n            state (bool): True to enable PTT, False to disable.\n\n        Returns:\n            bool: True if the PTT state was set successfully, False otherwise.\n        \"\"\"\n        if self.connected:\n            try:\n\n                command = self.insert_vfo('u TUNER')\n                result = self.send_command(command)\n\n                state = result not in [None, ''] and int(result) == 1\n                self.parameters['tuner'] = state\n                return True\n            except Exception as err:\n                self.log.warning(f\"[RIGCTLD] Error getting TUNER state: {err}\")\n                self.get_vfo()\n\n        return False\n\n    def get_parameters(self):\n        if not self.connected:\n            self.connect()\n\n        if self.connected:\n            #self.check_vfo()\n            self.get_vfo()\n            self.get_frequency()\n            self.get_mode_bandwidth()\n            self.get_alc()\n            self.get_strength()\n            self.get_rf()\n            self.get_tuner()\n            self.get_swr()\n\n        return self.parameters\n\n    def dump_caps(self):\n        \"\"\"Dumps rigctld capabilities.\n\n        This method sends the '\\\\dump_caps' command to rigctld and prints\n        the response. It is used for debugging and informational\n        purposes. It handles potential errors during command execution.\n        \"\"\"\n        try:\n            vfo_response = self.send_command(r'\\dump_caps')\n            print(vfo_response)\n\n        except Exception as e:\n            self.log.warning(f\"Error getting dump_caps: {e}\")\n\n    def check_vfo(self):\n        \"\"\"Checks for VFO support.\n\n        This method checks if the connected radio supports VFO by sending\n        the '\\\\chk_vfo' command to rigctld. It updates the 'chk_vfo'\n        parameter accordingly and handles potential errors during the\n        check.\n        \"\"\"\n        try:\n            vfo_response = self.send_command(r'\\chk_vfo')\n            if vfo_response in [1, \"1\"]:\n                self.parameters['chk_vfo'] = True\n            else:\n                self.parameters['chk_vfo'] = False\n\n        except Exception as e:\n            self.log.warning(f\"Error getting chk_vfo: {e}\")\n            self.parameters['chk_vfo'] = False\n\n    def get_vfo(self):\n        \"\"\"Gets the current VFO.\n\n        This method retrieves the current VFO from the radio using the 'v'\n        command if VFO support is enabled. It updates the 'vfo' parameter\n        with the retrieved VFO or sets it to 'currVFO' if no specific VFO\n        is returned. If VFO support is disabled, it sets 'vfo' to False.\n        It handles potential errors during VFO retrieval.\n        \"\"\"\n        try:\n            if self.parameters['chk_vfo']:\n\n                vfo_response = self.send_command('v')\n\n                if vfo_response not in [None, 'None', '']:\n                    self.parameters['vfo'] = vfo_response.strip('')\n                else:\n                    self.parameters['vfo'] = 'currVFO'\n\n\n            else:\n                self.parameters['vfo'] = False\n\n        except Exception as e:\n            self.log.warning(f\"Error getting vfo: {e}\")\n            self.parameters['vfo'] = 'err'\n\n    def get_frequency(self):\n        \"\"\"Gets the current frequency from the radio.\n\n        This method retrieves the current frequency from the radio using\n        the 'f' command, with VFO support if enabled. It updates the\n        'frequency' parameter with the retrieved frequency or sets it to\n        'err' if an error occurs or no frequency is returned. It handles\n        potential errors during frequency retrieval.\n        \"\"\"\n        try:\n            command = self.insert_vfo('f')\n            frequency_response = self.send_command(command)\n            if frequency_response not in [None, '']:\n                self.parameters['frequency'] = int(frequency_response)\n            else:\n                self.parameters['frequency'] = 'err'\n\n        except Exception as e:\n            self.log.warning(f\"Error getting frequency: {e}\")\n            self.parameters['frequency'] = 'err'\n\n    def get_mode_bandwidth(self):\n        \"\"\"Gets the current mode and bandwidth from the radio.\n\n        This method retrieves the current mode and bandwidth from the\n        radio using the 'm' command, with VFO support if enabled. It\n        updates the 'mode' and 'bandwidth' parameters accordingly. It\n        handles potential errors during retrieval, including ValueError\n        if the response cannot be parsed correctly.\n        \"\"\"\n        try:\n            command = self.insert_vfo('m')\n            response = self.send_command(command)\n\n            if response not in [None, '']:\n                response = response.strip()\n                mode, bandwidth = response.split('\\n', 1)\n                bandwidth = int(bandwidth)\n                self.parameters['mode'] = mode\n                self.parameters['bandwidth'] = bandwidth\n            else:\n                self.parameters['mode'] = 'err'\n                self.parameters['bandwidth'] = 'err'\n        except ValueError:\n            self.parameters['mode'] = 'err'\n            self.parameters['bandwidth'] = 'err'\n        except Exception as e:\n            self.log.warning(f\"Error getting mode and bandwidth: {e}\")\n            self.parameters['mode'] = 'err'\n            self.parameters['bandwidth'] = 'err'\n\n    def get_alc(self):\n        \"\"\"Gets the ALC (Automatic Level Control) value.\n\n        This method retrieves the ALC value from the radio using the 'l\n        ALC' command, with VFO support if enabled. It updates the 'alc'\n        parameter with the retrieved value or sets it to 'err' if an\n        error occurs or no value is returned. It handles potential\n        errors during ALC retrieval.\n        \"\"\"\n        try:\n            command = self.insert_vfo('l ALC')\n            alc_response = self.send_command(command)\n            if alc_response not in [False, None, '', 'None', 0]:\n                self.parameters['alc'] = float(alc_response)\n            else:\n                self.parameters['alc'] = 'err'\n\n        except Exception as e:\n            self.log.warning(f\"Error getting ALC: {e}\")\n            self.parameters['alc'] = 'err'\n            self.get_vfo()\n\n    def get_strength(self):\n        \"\"\"Gets the signal strength.\n\n        This method retrieves the signal strength from the radio using\n        the 'l STRENGTH' command, with VFO support if enabled. It updates\n        the 'strength' parameter with the retrieved value or sets it to\n        'err' if an error occurs or no value is returned. It handles\n        potential errors during strength retrieval.\n        \"\"\"\n        try:\n            command = self.insert_vfo('l STRENGTH')\n            strength_response = self.send_command(command)\n            if strength_response not in [None, '']:\n                self.parameters['strength'] = int(strength_response)\n            else:\n                self.parameters['strength'] = 'err'\n        except Exception as e:\n            self.log.warning(f\"Error getting strength: {e}\")\n            self.parameters['strength'] = 'err'\n            self.get_vfo()\n\n    def get_rf(self):\n        \"\"\"Gets the RF power level.\n\n        This method retrieves the RF power level from the radio using the\n        'l RFPOWER' command, with VFO support if enabled. It updates the\n        'rf' parameter with the retrieved value (converted to integer\n        percentage) or sets it to 'err' if an error occurs or no value is\n        returned. It handles potential ValueErrors during conversion and\n        other exceptions during retrieval.\n        \"\"\"\n        try:\n            command = self.insert_vfo('l RFPOWER')\n            rf_response = self.send_command(command)\n            if rf_response not in [None, '']:\n                self.parameters['rf'] = int(float(rf_response) * 100)\n            else:\n                self.parameters['rf'] = 'err'\n        except ValueError:\n            self.parameters['rf'] = 'err'\n        except Exception as e:\n            self.log.warning(f\"Error getting RF power: {e}\")\n            self.parameters['rf'] = 'err'\n            self.get_vfo()\n\n    def get_swr(self):\n        \"\"\"Gets the SWR (Standing Wave Ratio) value.\n\n        This method retrieves the SWR value from the radio using the 'l\n        SWR' command, with VFO support if enabled. It updates the 'swr'\n        parameter with the retrieved value or sets it to 'err' if an\n        error occurs or no value is returned. It handles potential\n        ValueErrors and other exceptions during retrieval.\n        \"\"\"\n        try:\n            command = self.insert_vfo('l SWR')\n            rf_response = self.send_command(command)\n            if rf_response not in [None, '']:\n                self.parameters['swr'] = rf_response\n            else:\n                self.parameters['swr'] = 'err'\n        except ValueError:\n            self.parameters['swr'] = 'err'\n        except Exception as e:\n            self.log.warning(f\"Error getting SWR: {e}\")\n            self.parameters['swr'] = 'err'\n            self.get_vfo()\n\n    def start_service(self):\n        \"\"\"Starts the rigctld service.\n\n        This method attempts to start the rigctld service using the\n        configured parameters and any additional arguments. It searches\n        for the rigctld binary in common locations, and if found,\n        attempts to execute it. It handles potential errors during\n        startup and logs informational and warning messages.\n        \"\"\"\n        binary_name = \"rigctld\"\n        binary_paths = helpers.find_binary_paths(binary_name, search_system_wide=True)\n        additional_args = self.format_rigctld_args()\n        print(binary_paths)\n        if binary_paths:\n            for binary_path in binary_paths:\n                try:\n                    self.log.info(f\"Attempting to start rigctld using binary found at: {binary_path}\")\n                    self.rigctld_process = helpers.kill_and_execute(binary_path, additional_args)\n                    self.log.info(f\"Successfully executed rigctld\", args=additional_args)\n                    return  # Exit the function after successful execution\n                except Exception as e:\n                    self.log.warning(f\"Failed to start rigctld with binary at {binary_path}: {e}\")  # Log the error\n            self.log.warning(\"Failed to start rigctld with all found binaries.\", binaries=binary_paths)\n        else:\n            self.log.warning(\"Rigctld binary not found.\")\n\n    def stop_service(self):\n        \"\"\"Stops the rigctld service.\n\n        This method stops the rigctld service if it was previously\n        started by this class. It uses the helper function\n        `helpers.kill_process` to terminate the rigctld process.\n        \"\"\"\n        if self.rigctld_process:\n            self.log.info(\"Stopping rigctld service\")  # Log the action\n            helpers.kill_process(self.rigctld_process)\n\n\n    def format_rigctld_args(self):\n        \"\"\"Formats the arguments for starting rigctld.\n\n        This method reads the configuration and constructs the command-line\n        arguments for starting the rigctld process. It handles various\n        settings like model ID, serial port parameters, PTT configuration,\n        and custom arguments. Values defined as 'ignore', 0, or '0' in the\n        configuration are skipped. The method returns a list of formatted\n        arguments.\n\n        Returns:\n            list: A list of strings representing the formatted rigctld arguments.\n        \"\"\"\n        config = self.ctx.config_manager.config['RADIO']\n        config_rigctld = self.ctx.config_manager.config['RIGCTLD']\n        args = []\n\n        # Helper function to check if the value should be ignored\n        def should_ignore(value):\n            return value in ['ignore', 0]\n\n        # Model ID, Serial Port, and Speed\n        if not should_ignore(config.get('model_id')):\n            args += ['-m', str(config['model_id'])]\n        if not should_ignore(config.get('serial_port')):\n            args += ['-r', config['serial_port']]\n        if not should_ignore(config.get('serial_speed')):\n            args += ['-s', str(config['serial_speed'])]\n\n        # PTT Port and Type\n        if not should_ignore(config.get('ptt_port')):\n            args += ['-p', config['ptt_port']]\n        if not should_ignore(config.get('ptt_type')):\n            args += ['-P', config['ptt_type']]\n\n        # Serial DCD and DTR\n        if not should_ignore(config.get('serial_dcd')):\n            args += ['-D', config['serial_dcd']]\n\n        if not should_ignore(config.get('serial_dtr')):\n            args += ['--set-conf', f'dtr_state={config[\"serial_dtr\"]}']\n\n        if not should_ignore(config.get('serial_rts')):\n            args += ['--set-conf', f'rts_state={config[\"serial_rts\"]}']\n\n        # Handling Data Bits and Stop Bits\n        if not should_ignore(config.get('data_bits')):\n            args += ['--set-conf', f'data_bits={config[\"data_bits\"]}']\n        if not should_ignore(config.get('stop_bits')):\n            args += ['--set-conf', f'stop_bits={config[\"stop_bits\"]}']\n\n        if self.ctx.config_manager.config['RIGCTLD']['enable_vfo']:\n            args += ['--vfo']\n\n        # Handle custom arguments for rigctld\n        # Custom args are split via ' ' so python doesn't add extranaeous quotes on windows\n        args += config_rigctld[\"arguments\"].split(\" \")\n        print(\"Hamlib args ==>\" + str(args))\n        \n        return args\n\n"
  },
  {
    "path": "freedata_server/rigdummy.py",
    "content": "\nclass radio:\n    \"\"\" \"\"\"\n\n    def __init__(self):\n        self.parameters = {\n            'frequency': '---',\n            'mode': '---',\n            'alc': '---',\n            'strength': '---',\n            'bandwidth': '---',\n            'rf': '---',\n            'ptt': False,  # Initial PTT state is set to False\n            'tuner': False,\n            'swr': '---'\n        }\n\n    def connect(self, **kwargs):\n        \"\"\"\n\n        Args:\n          **kwargs:\n\n        Returns:\n\n        \"\"\"\n        return True\n\n    def disconnect(self, **kwargs):\n        \"\"\"\n\n        Args:\n          **kwargs:\n\n        Returns:\n\n        \"\"\"\n        return True\n\n    def get_frequency(self):\n        \"\"\" \"\"\"\n        return self.parameters['frequency']\n\n    def get_mode(self):\n        \"\"\" \"\"\"\n        return self.parameters['mode']\n\n    def get_level(self):\n        \"\"\" \"\"\"\n        return None\n\n    def get_alc(self):\n        \"\"\" \"\"\"\n        return None\n\n    def get_meter(self):\n        \"\"\" \"\"\"\n        return None\n\n    def get_bandwidth(self):\n        \"\"\" \"\"\"\n        return None\n\n    def get_strength(self):\n        \"\"\" \"\"\"\n        return None\n\n    def get_tuner(self):\n        \"\"\" \"\"\"\n        return None\n\n    def get_swr(self):\n        \"\"\" \"\"\"\n        return None\n\n    def set_bandwidth(self):\n        \"\"\" \"\"\"\n        return None\n    def set_mode(self, mode):\n        \"\"\"\n\n        Args:\n          mode:\n\n        Returns:\n\n        \"\"\"\n        self.parameters['mode'] = mode\n        return None\n\n    def set_tuner(self, state):\n        \"\"\"\n\n        Args:\n          mode:\n\n        Returns:\n\n        \"\"\"\n        return None\n\n    def set_frequency(self, frequency):\n        \"\"\"\n\n        Args:\n          mode:\n\n        Returns:\n\n        \"\"\"\n        self.parameters['frequency'] = frequency\n\n        return None\n    def get_status(self):\n        \"\"\"\n\n        Args:\n          mode:\n\n        Returns:\n\n        \"\"\"\n        return True\n    def get_ptt(self):\n        \"\"\" \"\"\"\n        return None\n\n    def set_ptt(self, state):\n        \"\"\"\n\n        Args:\n          state:\n\n        Returns:\n\n        \"\"\"\n        return state\n\n    def close_rig(self):\n        \"\"\" \"\"\"\n        return\n\n\n    def get_parameters(self):\n        return self.parameters\n\n    def stop_service(self):\n        pass"
  },
  {
    "path": "freedata_server/schedule_manager.py",
    "content": "import sched\nimport time\nimport threading\n\nimport command_message_send\n#from freedata_server.context import AppContext\n#from message_system_db_manager import DatabaseManager\nfrom message_system_db_messages import DatabaseManagerMessages\nfrom message_system_db_beacon import DatabaseManagerBeacon\nimport explorer\nimport command_beacon\nimport structlog\nfrom arq_session_irs import IRS_State\nfrom arq_session_iss import ISS_State\n\nclass ScheduleManager:\n    \"\"\"Manages scheduled tasks for the FreeDATA modem.\n\n    This class schedules and executes various tasks related to the FreeDATA\n    modem, including checking for queued messages, publishing to the\n    explorer, transmitting beacons, cleaning up old beacons, and updating\n    transmission states. It uses the `sched` module for scheduling and\n    runs tasks in a separate thread.\n    \"\"\"\n    #def __init__(self, modem_version, config_manager, state_manger, event_manager):\n    def __init__(self, ctx):\n\n        \"\"\"Initializes the ScheduleManager.\n\n        Args:\n            modem_version (str): The version of the FreeDATA modem.\n            config_manager (ConfigManager): The configuration manager instance.\n            state_manger (StateManager): The state manager instance.\n            event_manager (EventManager): The event manager instance.\n        \"\"\"\n        self.log = structlog.get_logger(\"SCHEDULE_MANAGER\")\n\n        self.ctx = ctx\n\n        self.scheduler = sched.scheduler(time.time, threading.Event().wait)\n        self.events = {\n            'check_for_queued_messages': {'function': self.check_for_queued_messages, 'interval': 15},\n            'explorer_publishing': {'function': self.push_to_explorer, 'interval': 60},\n            'transmitting_beacon': {'function': self.transmit_beacon, 'interval': 600},\n            'beacon_cleanup': {'function': self.delete_beacons, 'interval': 600},\n            'update_transmission_state': {'function': self.update_transmission_state, 'interval': 10},\n        }\n        self.running = False  # Flag to control the running state\n        self.scheduler_thread = None  # Reference to the scheduler thread\n\n        self.modem = None\n\n    def schedule_event(self, event_function, interval):\n        \"\"\"Schedules and executes a recurring event.\n\n        This method executes the given event function and then reschedules\n        it to run again after the specified interval, as long as the\n        ScheduleManager is still running.\n\n        Args:\n            event_function (function): The function to execute.\n            interval (int): The time interval between executions in seconds.\n        \"\"\"\n        event_function()  # Execute the event function\n        if self.running:  # Only reschedule if still running\n            self.scheduler.enter(interval, 1, self.schedule_event, (event_function, interval))\n\n    def start(self, modem):\n        \"\"\"Starts the scheduled tasks.\n\n        This method initializes and starts the scheduler in a separate\n        thread. It waits for a short period to allow the freedata_server to\n        initialize, retrieves the freedata_server instance, sets the running\n        flag, schedules the initial events, and starts the scheduler\n        thread.\n\n        Args:\n            modem: The FreeDATA modem instance.\n        \"\"\"\n\n        # wait some time for the modem to be ready\n        threading.Event().wait(timeout=0.1)\n\n        # get actual freedata_server instance\n        self.modem = modem\n\n        self.running = True  # Set the running flag to True\n        for event_info in self.events.values():\n            # Schedule each event for the first time\n            self.scheduler.enter(0, 1, self.schedule_event, (event_info['function'], event_info['interval']))\n\n        # Run the scheduler in a separate thread\n        self.scheduler_thread = threading.Thread(target=self.scheduler.run, daemon=False)\n        self.scheduler_thread.start()\n\n    def stop(self):\n        \"\"\"Stops the scheduler and its associated thread.\n\n        This method stops the scheduler by setting the running flag to\n        False, canceling any pending scheduled events, and waiting for the\n        scheduler thread to finish. It logs messages indicating the\n        shutdown process.\n        \"\"\"\n        self.log.warning(\"[SHUTDOWN] stopping schedule manager....\")\n        self.running = False  # Clear the running flag to stop scheduling new events\n        # Clear scheduled events to break the scheduler out of its waiting state\n        for event in list(self.scheduler.queue):\n            self.scheduler.cancel(event)\n\n        # Wait for the scheduler thread to finish\n        if self.scheduler_thread:\n            self.scheduler_thread.join(1)\n        self.log.warning(\"[SHUTDOWN] schedule manager stopped\")\n    def transmit_beacon(self):\n        \"\"\"Transmits a beacon signal.\n\n        This method transmits a beacon signal if beacon transmission is\n        enabled, the freedata_server is running, and no ARQ transmission is in\n        progress. It handles potential exceptions during beacon\n        transmission.\n        \"\"\"\n        try:\n            if not self.ctx.state_manager.getARQ() and self.ctx.state_manager.is_beacon_running and self.ctx.state_manager.is_modem_running:\n                    cmd = command_beacon.BeaconCommand(self.ctx)\n                    cmd.run()\n        except Exception as e:\n            print(e)\n\n    def delete_beacons(self):\n        \"\"\"Deletes old beacon records from the database.\n\n        This method periodically cleans up old beacon records from the\n        database that are older than two days. It handles potential\n        exceptions during the cleanup process.\n        \"\"\"\n        try:\n            DatabaseManagerBeacon(self.ctx).beacon_cleanup_older_than_days(2)\n        except Exception as e:\n            print(e)\n\n    def push_to_explorer(self):\n\n\n        if self.ctx.config_manager.config['STATION']['enable_explorer'] and self.ctx.state_manager.is_modem_running:\n            try:\n                explorer.Explorer(self.ctx).push()\n            except Exception as e:\n                print(e)\n\n    def check_for_queued_messages(self):\n        \"\"\"Checks for and sends queued messages.\n\n        This method checks for queued messages in the database and transmits\n        the first queued message if the freedata_server is running, not currently\n        transmitting other data (ARQ or Codec2), and a queued message is\n        available. It handles potential exceptions during message retrieval\n        and transmission.\n        \"\"\"\n        if not self.ctx.state_manager.getARQ() and not self.ctx.state_manager.channel_busy_event.is_set() and self.ctx.state_manager.is_modem_running:\n            try:\n                if first_queued_message := DatabaseManagerMessages(self.ctx).get_first_queued_message():\n                    command = command_message_send.SendMessageCommand(self.ctx,first_queued_message)\n                    command.transmit()\n            except Exception as e:\n                print(e)\n        return\n\n    def update_transmission_state(self):\n        \"\"\"Updates and cleans up ARQ session states.\n\n        This method periodically checks the state of active ARQ sessions.\n        It sets inactive IRS (Information Receiving Station) sessions to\n        RESUME, deletes successfully completed or failed/aborted sessions,\n        and handles potential exceptions during state updates and session\n        deletion.\n        \"\"\"\n\n        session_to_be_deleted = set()\n\n        for session_id in self.ctx.state_manager.arq_irs_sessions:\n            session = self.ctx.state_manager.arq_irs_sessions[session_id]\n\n            # set an IRS session to RESUME for being ready getting the data again\n            if session.is_IRS and session.last_state_change_timestamp + 90 < time.time():\n                try:\n                    # if session state is already RESUME, don't set it again for avoiding a flooded cli\n                    if session.state not in [session.state_enum.RESUME]:\n                        self.log.info(f\"[SCHEDULE] [ARQ={session_id}] Setting state to\", old_state=session.state,\n                                      state=IRS_State.RESUME)\n                        session.state = session.set_state(session.state_enum.RESUME)\n                        session.state = session.state_enum.RESUME\n\n                    # if session is received successfully, indiciated by ENDED state, delete it\n                    if session.state in [session.state_enum.ENDED]:\n                        session_to_be_deleted.add(session)\n\n                except Exception as e:\n                    self.log.warning(\"[SCHEDULE] error setting ARQ state\", error=e)\n\n        for session_id in self.ctx.state_manager.arq_iss_sessions:\n            session = self.ctx.state_manager.arq_iss_sessions[session_id]\n            if not session.is_IRS and session.last_state_change_timestamp + 90 < time.time() and session.state in [\n                ISS_State.ABORTED, ISS_State.FAILED]:\n                session_to_be_deleted.add(session)\n\n        # finally delete sessions\n        try:\n            for session in session_to_be_deleted:\n                if session.is_IRS:\n                    self.ctx.state_manager.remove_arq_irs_session(session.id)\n                else:\n                    self.ctx.state_manager.remove_arq_iss_session(session.id)\n\n        except Exception as e:\n            self.log.warning(\"[SCHEDULE] error deleting ARQ session\", error=e)"
  },
  {
    "path": "freedata_server/serial_ports.py",
    "content": "import serial.tools.list_ports\nimport helpers\nimport sys\n\n\ndef get_ports():\n    \"\"\"Retrieves a list of available serial ports.\n\n    This function retrieves a list of available serial ports on the system,\n    including their names and descriptions. On Windows, it uses a specific\n    registry lookup to get detailed port information. For other platforms,\n    it uses the standard serial.tools.list_ports function. It calculates a\n    CRC-16 checksum of the hardware ID (HWID) for each port and appends it\n    to the description to ensure unique entries.\n\n    Windows part taken from https://github.com/pyserial/pyserial/pull/70 as a temporary fix\n\n    Returns:\n        list: A list of dictionaries, where each dictionary represents a\n        serial port and contains 'port' (str) and 'description' (str) keys.\n    \"\"\"\n\n    serial_devices = []\n    if sys.platform == 'win32':\n        import list_ports_winreg\n        ports = list_ports_winreg.comports(include_links=False)\n    else:\n\n        ports = serial.tools.list_ports.comports(include_links=False)\n\n    for port, desc, hwid in ports:\n        # calculate hex of hwid if we have unique names\n        crc_hwid = helpers.get_crc_16(bytes(hwid, encoding=\"utf-8\"))\n        crc_hwid = crc_hwid.hex()\n        description = f\"{desc} [{crc_hwid}]\"\n        serial_devices.append(\n            {\"port\": str(port), \"description\": str(description)}\n        )\n    return serial_devices\n"
  },
  {
    "path": "freedata_server/serial_ptt.py",
    "content": "import serial\nimport structlog\n\nclass radio:\n    \"\"\"Controls PTT via serial port.\n\n    This class manages PTT (Push-to-Talk) control using a serial port. It\n    handles serial connection setup, RTS/DTR line manipulation based on\n    configuration, and PTT activation/deactivation. It also provides basic\n    radio parameter handling, although most of these methods currently\n    return None.\n    \"\"\"\n\n    log = structlog.get_logger(\"radio (rigctld)\")\n\n    def __init__(self, ctx):\n        \"\"\"Initializes the serial PTT controller.\n\n        Args:\n            config (dict): Configuration dictionary.\n            state_manager (StateManager): State manager instance.\n        \"\"\"\n        self.ctx = ctx\n        \n        self.parameters = {\n            'frequency': '---',\n            'mode': '---',\n            'alc': '---',\n            'strength': '---',\n            'bandwidth': '---',\n            'rf': '---',\n            'ptt': False,  # Initial PTT state is set to False\n            'tuner': False,\n            'swr': '---'\n        }\n        self.serial_rts = self.ctx.config_manager.config[\"RADIO\"][\"serial_rts\"]\n        self.serial_dtr = self.ctx.config_manager.config[\"RADIO\"][\"serial_dtr\"]\n        self.serial_comport = self.ctx.config_manager.config[\"RADIO\"][\"ptt_port\"]\n\n        try:\n            if self.serial_comport in [\"ignore\"]:\n                self.ctx.state_manager.set_radio(\"radio_status\", False)\n                raise serial.SerialException\n            self.serial_connection = serial.Serial(self.serial_comport)\n            # Set initial states for RTS and DTR based on config\n            self.set_rts_state(self.serial_rts)\n            self.set_dtr_state(self.serial_dtr)\n            self.set_ptt(False)\n\n            self.ctx.state_manager.set_radio(\"radio_status\", True)\n        except serial.SerialException as e:\n            self.log.warning(f\"Error: could not open PTT port {self.serial_comport}: {e}\")\n            self.ctx.state_manager.set_radio(\"radio_status\", False)\n            self.serial_connection = None\n\n    def connect(self, **kwargs):\n        \"\"\"\n        Args:\n          **kwargs:\n\n        Returns:\n\n        \"\"\"\n        return True\n\n    def disconnect(self, **kwargs):\n        \"\"\"\n        Args:\n          **kwargs:\n\n        Returns:\n\n        \"\"\"\n        if self.serial_connection and self.serial_connection.is_open:\n            self.serial_connection.close()\n            print(\"Serial connection closed.\")\n        return True\n\n    def get_frequency(self):\n        \"\"\" \"\"\"\n        return None\n\n    def get_mode(self):\n        \"\"\" \"\"\"\n        return None\n\n    def get_level(self):\n        \"\"\" \"\"\"\n        return None\n\n    def get_alc(self):\n        \"\"\" \"\"\"\n        return None\n\n    def get_meter(self):\n        \"\"\" \"\"\"\n        return None\n\n    def get_bandwidth(self):\n        \"\"\" \"\"\"\n        return None\n\n    def get_strength(self):\n        \"\"\" \"\"\"\n        return None\n\n    def get_tuner(self):\n        \"\"\" \"\"\"\n        return None\n\n    def get_swr(self):\n        \"\"\" \"\"\"\n        return None\n\n    def set_bandwidth(self):\n        \"\"\" \"\"\"\n        return None\n\n    def set_mode(self, mode):\n        \"\"\"\n        Args:\n          mode:\n\n        Returns:\n\n        \"\"\"\n        return None\n\n    def set_tuner(self, state):\n        \"\"\"\n        Args:\n          mode:\n\n        Returns:\n\n        \"\"\"\n        return None\n\n    def set_frequency(self, frequency):\n        \"\"\"\n        Args:\n          mode:\n\n        Returns:\n\n        \"\"\"\n        return None\n\n    def get_status(self):\n        \"\"\"\n        Args:\n          mode:\n\n        Returns:\n\n        \"\"\"\n        return True\n\n    def get_ptt(self):\n        \"\"\" \"\"\"\n        return self.parameters['ptt']\n\n    def set_ptt(self, state):\n        \"\"\"\n        Args:\n          state: Boolean - True to activate PTT, False to deactivate\n\n        Returns:\n          state: Boolean - The new PTT state\n        \"\"\"\n        if self.serial_connection is None:\n            self.log.warning(\"Error: Serial connection not established.\")\n            return self.parameters['ptt']\n\n        try:\n            self.set_rts_state(state)\n            self.set_dtr_state(state)\n            self.parameters['ptt'] = state\n        except serial.SerialException as e:\n            self.log.warning(f\"Error: {e}\")\n            self.parameters['ptt'] = False\n        return self.parameters['ptt']\n\n    def set_rts_state(self, state):\n        \"\"\"\n        Args:\n          state: Boolean - True to activate, False to deactivate\n\n        Sets the RTS line based on the configuration.\n        \"\"\"\n        if self.serial_rts == \"ON\":\n            self.serial_connection.rts = state\n        else:\n            self.serial_connection.rts = not state\n\n    def set_dtr_state(self, state):\n        \"\"\"\n        Args:\n          state: Boolean - True to activate, False to deactivate\n\n        Sets the DTR line based on the configuration.\n        \"\"\"\n        if self.serial_dtr == \"ON\":\n            self.serial_connection.dtr = state\n        else:\n            self.serial_connection.dtr = not state\n\n    def close_rig(self):\n        \"\"\" \"\"\"\n        return\n\n\n    def get_parameters(self):\n        return self.parameters\n\n    def stop_service(self):\n        pass"
  },
  {
    "path": "freedata_server/server.py",
    "content": "import os\nimport sys\n# we need to add script directory to the sys path for avoiding problems with pip package\nscript_directory = os.path.dirname(os.path.abspath(__file__))\nsys.path.append(script_directory)\n\nimport threading\nimport webbrowser\nfrom contextlib import asynccontextmanager\n\nfrom fastapi import FastAPI, Request\nfrom fastapi.middleware.cors import CORSMiddleware\nfrom fastapi.staticfiles import StaticFiles\n\nfrom log_handler import setup_logging\nfrom constants import CONFIG_ENV_VAR, DEFAULT_CONFIG_FILE, API_VERSION\nfrom context import AppContext\n\nimport uvicorn\n\n\n# --- Resolve config path FIRST (no logger needed yet) ---\ndef resolve_config_path() -> str:\n    \"\"\"\n    Determine the configuration file to use (env var or default next to this file).\n    Exits if not found.\n    \"\"\"\n    candidate = os.getenv(\n        CONFIG_ENV_VAR,\n        os.path.join(os.path.dirname(__file__), DEFAULT_CONFIG_FILE),\n    )\n    if not os.path.exists(candidate):\n        # We cannot log to file yet since we don't know the directory; write to stderr.\n        sys.stderr.write(f\"[FATAL] Config file not found: {candidate}\\n\")\n        sys.exit(1)\n    return os.path.abspath(candidate)\n\n\nconfig_file = resolve_config_path()\n\n# --- Logging setup: log file MUST be in the same directory as the config file ---\nconfig_dir = os.path.dirname(config_file)\nlog_file = os.path.join(config_dir, \"freedata_server.log\")\nlogger = setup_logging(filename=log_file, level=\"INFO\")\nlogger.info(\"Using config\", file=config_file, log_file=log_file)\n\n# --- AppContext startup ---\nctx = AppContext(config_file)\nctx.startup()\n\n\n@asynccontextmanager\nasync def lifespan(app: FastAPI):\n    # nothing to do on startup here, ctx already initialized\n    yield\n    # shutdown on exit\n    ctx.shutdown()\n    logger.info(\"Shutdown complete\")\n\n# Create FastAPI app with unified lifespan\napp = FastAPI(\n    title=\"FreeDATA API\",\n    version=str(API_VERSION),\n    lifespan=lifespan,\n)\n\n# store ctx for dependency injection\napp.state.ctx = ctx\n\n# CORS configuration\napp.add_middleware(\n    CORSMiddleware,\n    allow_origins=[\"*\"],\n    allow_credentials=True,\n    allow_methods=[\"*\"],\n    allow_headers=[\"*\"],\n)\n\n# HTTP middleware: disable caching and logging\n@app.middleware(\"http\")\nasync def nocache(request: Request, call_next):\n    response = await call_next(request)\n    response.headers[\"Cache-Control\"] = \"no-store, no-cache, must-revalidate, private\"\n    response.headers[\"Pragma\"] = \"no-cache\"\n    # structlog stdlib logger akzeptiert %-Formatierung; alternativ key/value:\n    logger.info(\"[API] %s %s → %d\", request.method, request.url.path, response.status_code)\n    return response\n\n# Static GUI mounting\npotential_gui_dirs = [\n    \"../freedata_gui/dist\",\n    \"freedata_gui/dist\",\n    \"FreeDATA/freedata_gui/dist\",\n    os.path.join(os.path.dirname(__file__), \"gui\"),\n]\ngui_dir = next((d for d in potential_gui_dirs if os.path.isdir(d)), None)\nif gui_dir:\n    app.mount(\"/gui\", StaticFiles(directory=gui_dir, html=True), name=\"static\")\nelse:\n    logger.warning(\"GUI directory not found: %s\", gui_dir)\n\n# Register routers\nfrom api.general import router as general_router\nfrom api.config import router as config_router\nfrom api.devices import router as devices_router\nfrom api.radio import router as radio_router\nfrom api.modem import router as modem_router\nfrom api.freedata import router as freedata_router\nfrom api.websocket import router as websocket_router\n\napp.include_router(general_router, prefix=\"\", tags=[\"General\"])\napp.include_router(config_router, prefix=\"/config\", tags=[\"Configuration\"])\napp.include_router(devices_router, prefix=\"/devices\", tags=[\"Devices\"])\napp.include_router(radio_router, prefix=\"/radio\", tags=[\"Radio\"])\napp.include_router(modem_router, prefix=\"/modem\", tags=[\"Modem\"])\napp.include_router(freedata_router, prefix=\"/freedata\", tags=[\"FreeDATA\"])\napp.include_router(websocket_router, prefix=\"\", tags=[\"WebSocket\"])\n\n\ndef open_browser_after_delay(url, delay=2):\n    \"\"\"Opens the specified URL in a web browser after a delay.\n\n    This function opens the given URL in a new browser window or tab after\n    a specified delay. It is used to automatically open the FreeDATA GUI\n    in a browser after the server has started.\n\n    Args:\n        url (str): The URL to open.\n        delay (int, optional): The delay in seconds before opening the browser. Defaults to 2.\n    \"\"\"\n    threading.Event().wait(delay)\n    webbrowser.open(url, new=0, autoraise=True)\n\n\nif __name__ == \"__main__\":\n    host = ctx.config_manager.config.get('NETWORK', {}).get('modemaddress') or '0.0.0.0'\n    port = int(ctx.config_manager.config.get('NETWORK', {}).get('modemport', 5000))\n\n    # Launch GUI if available\n    if gui_dir and os.path.isdir(gui_dir):\n        url = f\"http://{host}:{port}/gui\"\n        logger.info(\"---------------------------------------------------\")\n        logger.info(\"                                                   \")\n        logger.info(f\"[GUI] AVAILABLE ON {url}\")\n        logger.info(\"just open it in your browser\")\n        logger.info(\"                                                   \")\n        logger.info(\"---------------------------------------------------\")\n\n        if ctx.config_manager.config.get('GUI', {}).get('auto_run_browser', True):\n            threading.Thread(target=open_browser_after_delay, args=(url, 2), daemon=True).start()\n\n    uvicorn.run(app, host=host, port=port, log_config=None, log_level=\"info\")\n"
  },
  {
    "path": "freedata_server/service_manager.py",
    "content": "import threading\nimport frame_dispatcher\nimport modem\nimport structlog\nimport audio\nimport radio_manager\nfrom socket_interface import SocketInterfaceHandler\nimport queue\n\nclass SM:\n    \"\"\"Manages the FreeDATA server services.\n\n    This class controls the starting, stopping, and restarting of the modem,\n    radio manager, and socket interface. It handles commands from the modem\n    service queue and performs actions based on the received commands.\n    \"\"\"\n    def __init__(self, ctx):\n        \"\"\"Initializes the service manager.\n\n        This method sets up the service manager with references to the main\n        application object and its components, including the config manager,\n        modem, radio manager, state manager, event manager, and schedule\n        manager. It also initializes the socket interface manager if enabled\n        in the configuration and starts the runner thread.\n\n        Args:\n            app: The main application object.\n        \"\"\"\n        \n        \n        self.log = structlog.get_logger(\"service manager\")\n        self.ctx = ctx\n        self.ctx.rf_modem = False\n\n        self.shutdown_flag = threading.Event()\n\n\n        self.runner_thread = threading.Thread(\n            target=self.runner, name=\"runner thread\", daemon=False\n        )\n\n        self.runner_thread.start()\n\n\n    def runner(self):\n        \"\"\"Main loop for handling service commands.\n\n        This method continuously monitors the modem service queue for\n        commands and executes the corresponding actions. It handles starting,\n        stopping, and restarting the modem, radio manager, and socket\n        interface.\n        \"\"\"\n        while not self.shutdown_flag.is_set():\n            try:\n                cmd = self.ctx.modem_service.get()\n                if self.shutdown_flag.is_set():\n                    return\n\n                if cmd in ['start']:\n                    self.ctx.config_manager.read()\n\n                    self.start_radio_manager()\n                    self.start_modem()\n\n                    if self.ctx.config_manager.config['SOCKET_INTERFACE']['enable']:\n                        self.ctx.socket_interface_manager = SocketInterfaceHandler(self.ctx).start_servers()\n                    else:\n                        self.ctx.socket_interface_manager = None\n\n                elif cmd in ['stop'] and self.ctx.rf_modem:\n                    self.stop_modem()\n                    self.stop_radio_manager()\n                    if self.ctx.config_manager.config['SOCKET_INTERFACE']['enable'] and self.ctx.socket_interface_manager:\n                        self.ctx.socket_interface_manager.stop_servers()\n                    # we need to wait a bit for avoiding a portaudio crash\n                    threading.Event().wait(0.5)\n\n                elif cmd in ['restart']:\n                    self.stop_modem()\n                    self.stop_radio_manager()\n                    if self.ctx.config_manager.config['SOCKET_INTERFACE']['enable'] and self.ctx.socket_interface_manager:\n                        self.ctx.socket_interface_manager.stop_servers()\n                        self.ctx.socket_interface_manager = None\n\n                    # we need to wait a bit for avoiding a portaudio crash\n                    threading.Event().wait(0.5)\n                    self.log.info(\"reading config...\")\n                    self.ctx.config_manager.read()\n\n                    self.log.info(\"starting modem\")\n                    if self.start_modem():\n                        self.ctx.event_manager.modem_restarted()\n\n                    self.log.info(\"starting radio manager\")\n                    self.start_radio_manager()\n\n                    if self.ctx.config_manager.config['SOCKET_INTERFACE']['enable']:\n                        self.ctx.socket_interface_manager = SocketInterfaceHandler(self.ctx).start_servers()\n                    else:\n                        self.ctx.socket_interface_manager = None\n\n                else:\n                    if not self.shutdown_flag.is_set():\n                        self.log.warning(\"[SVC] freedata_server command processing failed\", cmd=cmd, state=self.ctx.state_manager.is_modem_running)\n\n            # Queue is empty\n            except queue.Empty:\n                pass\n\n            # finally clear processing commands\n            self.ctx.modem_service.queue.clear()\n\n    def start_modem(self):\n        \"\"\"Starts the FreeDATA modem.\n\n        This method initializes and starts the RF modem, frame dispatcher,\n        and schedule manager. It performs checks for valid callsign and\n        audio device functionality before starting the modem.\n\n        Returns:\n            bool: True if the modem started successfully, False otherwise.\n        \"\"\"\n\n        if self.ctx.config_manager.config['STATION']['mycall'] in ['XX1XXX']:\n            self.log.warning(\"wrong callsign in config! interrupting startup\")\n            return False\n\n        if self.ctx.state_manager.is_modem_running:\n            self.log.warning(\"freedata_server already running\")\n            return False\n\n        if not self.ctx.TESTMODE:\n            # test audio devices\n            audio_test = self.test_audio()\n            if False in audio_test or None in audio_test or self.ctx.state_manager.is_modem_running:\n                self.log.warning(\"starting freedata_server failed\", input_test=audio_test[0], output_test=audio_test[1])\n                self.ctx.state_manager.set(\"is_modem_running\", False)\n                self.ctx.event_manager.modem_failed()\n                return False\n\n        self.log.info(\"starting freedata_server....\")\n        self.ctx.rf_modem = modem.RF(self.ctx)\n        self.frame_dispatcher = frame_dispatcher.DISPATCHER(self.ctx)\n        self.frame_dispatcher.start()\n\n        self.ctx.event_manager.modem_started()\n        self.ctx.state_manager.set(\"is_modem_running\", True)\n        self.ctx.rf_modem.start_modem()\n        self.ctx.schedule_manager.start(self.ctx.rf_modem)\n\n        return True\n        \n    def stop_modem(self):\n        \"\"\"Stops the FreeDATA modem and related services.\n\n        This method stops the RF modem, frame dispatcher, and schedule\n        manager. It also updates the modem running state and emits a\n        'modem_stopped' event. It handles potential AttributeErrors that\n        may occur during the stopping process if components are not\n        initialized.\n        \"\"\"\n        self.log.warning(\"stopping modem....\")\n        try:\n            if self.ctx.rf_modem and hasattr(self.ctx, 'modem_service'):\n                self.ctx.rf_modem.stop_modem()\n                self.ctx.rf_modem = None\n        except AttributeError:\n            pass\n        self.ctx.state_manager.set(\"is_modem_running\", False)\n        try:\n            if self.ctx.schedule_manager and hasattr(self.ctx, 'schedule_manager'):\n                self.ctx.schedule_manager.stop()\n        except AttributeError:\n            pass\n        try:\n            if self.frame_dispatcher and hasattr(self.ctx, 'frame_dispatcher'):\n                self.frame_dispatcher.stop()\n        except AttributeError:\n            pass\n\n        self.ctx.event_manager.modem_stopped()\n\n    def test_audio(self):\n        \"\"\"Tests the configured audio devices.\n\n        This method tests the input and output audio devices specified in\n        the configuration. It logs the test results and returns a list\n        indicating whether each device passed the test.\n\n        Returns:\n            list: A list of booleans, where the first element represents the\n            input device test result and the second element represents the\n            output device test result. Returns [False, False] if an error\n            occurs during testing.\n        \"\"\"\n        try:\n            audio_test = audio.test_audio_devices(self.ctx.config_manager.config['AUDIO']['input_device'],\n                                                  self.ctx.config_manager.config['AUDIO']['output_device'])\n            self.log.info(\"tested audio devices\", result=audio_test)\n\n            return audio_test\n        except Exception as e:\n            self.log.error(\"Error testing audio devices\", e=e)\n            return [False, False]\n\n    def start_radio_manager(self):\n\n        \"\"\"Starts the radio manager.\n\n        This method initializes and starts the RadioManager, which handles\n        communication with the radio.\n        \"\"\"\n        self.ctx.radio_manager = radio_manager.RadioManager(self.ctx)\n\n    def stop_radio_manager(self):\n        \"\"\"Stops the radio manager.\n\n        This method stops the RadioManager and releases the associated\n        resources. It handles potential AttributeErrors if the radio manager\n        has not been initialized.\n        \"\"\"\n        if hasattr(self.ctx, 'radio_manager'):\n            self.ctx.radio_manager.stop()\n            self.ctx.radio_manager = None\n\n    def shutdown(self):\n        \"\"\"Shuts down the service manager.\n\n        This method stops the modem, sets the shutdown flag, and waits for\n        the runner thread to finish. This ensures a clean shutdown of all\n        managed services.\n        \"\"\"\n        self.log.warning(\"[SHUTDOWN] stopping service manager....\")\n        self.ctx.modem_service.put(\"stop\")\n        threading.Event().wait(2) # we need some time before processing with the shutdown_event_flag\n        self.shutdown_flag.set()\n        self.runner_thread.join(0.5)\n"
  },
  {
    "path": "freedata_server/socket_interface.py",
    "content": "\"\"\" WORK IN PROGRESS by DJ2LS\"\"\"\nimport time\n\n\"\"\"\naccess command handler from external via: \n    self.socket_manager.command_server.command_handler.<function>\n    self.socket_manager.data_server.data_handler.<function>\n\n\"\"\"\n\nimport socketserver\nimport threading\nimport structlog\nimport select\nfrom socket_interface_commands import SocketCommandHandler\nfrom socket_interface_data import SocketDataHandler\nimport io\n\nclass CommandSocket(socketserver.BaseRequestHandler):\n    #def __init__(self, request, client_address, server):\n    def setup(self):\n        super().setup()\n        self.logger = structlog.get_logger(type(self).__name__)\n        self.ctx = self.server.ctx\n        self.command_handler = SocketCommandHandler(self.request, self.ctx)\n        self.server.command_handler = self.command_handler\n        self.handlers = {\n            'CONNECT': self.command_handler.handle_connect,\n            'DISCONNECT': self.command_handler.handle_disconnect,\n            'MYCALL': self.command_handler.handle_mycall,\n            'BW': self.command_handler.handle_bw,\n            'ABORT': self.command_handler.handle_abort,\n            'PUBLIC': self.command_handler.handle_public,\n            'CWID': self.command_handler.handle_cwid,\n            'LISTEN': self.command_handler.handle_listen,\n            'COMPRESSION': self.command_handler.handle_compression,\n            'WINLINK SESSION': self.command_handler.handle_winlink_session,\n            'VERSION': self.command_handler.handle_version,\n\n        }\n        # Register this CommandSocket's command_handler with the command_server\n        #if hasattr(self.ctx.socket_interface_manager, 'command_server'):\n        #    self.ctx.socket_interface_manager.command_server.command_handler = self.command_handler\n\n\n    def log(self, message, isWarning = False):\n        msg = f\"[{type(self).__name__}]: {message}\"\n        logger = self.logger.warn if isWarning else self.logger.info\n        logger(msg)\n\n    def handle(self):\n        self.log(f\"Client connected: {self.client_address}\")\n        try:\n            # Wrap the socket in a binary file-like object.\n            file_obj = self.request.makefile('rb')\n            # Setting newline='\\r' makes a carriage return the delimiter for readline().\n            text_file = io.TextIOWrapper(file_obj, encoding='utf-8', newline='\\r')\n            while True:\n                try:\n                    line = text_file.readline()\n                except OSError as e:\n                    if e.errno == 57:  # Socket is not connected\n                        self.log(\"Socket is not connected. Exiting handler.\", isWarning=True)\n                        break\n                    else:\n                        raise\n                if not line:  # End of stream indicates closed connection\n                    break\n                self.log(f\"<<<<< {line}\")\n                self.parse_command(line)\n        finally:\n            self.log(f\"Command connection closed with {self.client_address}\")\n\n    def parse_command(self, data):\n        for command in self.handlers:\n            if data.startswith(command):\n                # Extract command arguments after the command itself\n                args = data[len(command):].strip().split()\n                self.dispatch_command(command, args)\n                return\n        message = \"WRONG \\r\"\n        self.request.sendall(message.encode('utf-8'))\n\n    def dispatch_command(self, command, data):\n        if command in self.handlers:\n            handler = self.handlers[command]\n            handler(data)\n        else:\n            message = \"WRONG \\r\"\n            self.request.sendall(message.encode('utf-8'))\n\n\nclass DataSocket(socketserver.BaseRequestHandler):\n    #def __init__(self, request, client_address, server):\n    def setup(self):\n        super().setup()\n        self.ctx = self.server.ctx\n        self.data_handler = SocketDataHandler(self.request, self.ctx)\n        self.server.data_handler = self.data_handler\n        self.logger = structlog.get_logger(type(self).__name__)\n\n        # not sure if we really need this\n        #if hasattr(self.ctx.socket_interface_manager, 'data_server'):\n        #    self.ctx.socket_interface_manager.data_server.data_handler = self.data_handler\n\n    def log(self, message, isWarning = False):\n        msg = f\"[{type(self).__name__}]: {message}\"\n        logger = self.logger.warn if isWarning else self.logger.info\n        logger(msg)\n\n    def handle(self):\n        self.log(f\"Data connection established with {self.client_address}\")\n        try:\n            while True:\n                \n                ready_to_read, _, _ = select.select([self.request], [], [], 1)  # 1-second timeout\n                if ready_to_read:\n                    self.data = self.request.recv(1024).strip()\n                    if not self.data:\n                        break\n                    try:\n                        self.log(f\"Data received from {self.client_address}: [{len(self.data)}] - {self.data.decode()}\")\n                    except Exception:\n                        self.log(f\"Data received from {self.client_address}: [{len(self.data)}] - {self.data}\")\n\n\n                    for session_id in self.ctx.state_manager.p2p_connection_sessions:\n                        session = self.ctx.state_manager.p2p_connection_sessions[session_id]\n\n                        #print(f\"sessions: {self.ctx.state_manager.p2p_connection_sessions}\")\n                        #print(f\"session_id: {session_id}\")\n                        #print(f\"session: {session}\")\n                        #print(f\"data to send: {self.data}\")\n\n                        #print(session.p2p_data_tx_queue.empty())\n                        session.p2p_data_tx_queue.put(self.data)\n                        #print(session.p2p_data_tx_queue.empty())\n\n                # Check if there's something to send from the queue, without blocking\n                \"\"\"\n                TODO This part isnt needed anymore, since socket_interface_data.py handles this\n                \n                for session_id in self.ctx.state_manager.p2p_connection_sessions:\n                    session = self.ctx.state_manager.get_p2p_connection_session(session_id)\n                    if not session.p2p_data_rx_queue.empty():\n                        data_to_send = session.p2p_data_rx_queue.get_nowait()  # Use get_nowait to avoid blocking\n                        self.request.sendall(data_to_send)\n                        self.log(f\"Sent data to {self.client_address}\")\n                \"\"\"\n\n        finally:\n            self.log(f\"Data connection closed with {self.client_address}\")\n\n\n\nclass CustomThreadedTCPServer(socketserver.ThreadingMixIn, socketserver.TCPServer):\n    allow_reuse_address = True\n    allow_reuse_port = True\n\n    def __init__(self, server_address, RequestHandlerClass, bind_and_activate=True, **kwargs):\n        # add all paramters to class\n        for k,v in kwargs.items():\n            setattr(self, k, v)\n        super().__init__(server_address, RequestHandlerClass, bind_and_activate=bind_and_activate)\n\n    #def finish_request(self, request, client_address):\n    #    self.RequestHandlerClass(request, client_address, self, **self.extra_args)\n\nclass SocketInterfaceHandler:\n    def __init__(self, ctx):\n        self.ctx = ctx\n        \n        self.logger = structlog.get_logger(type(self).__name__)\n\n        self.ip = self.ctx.config_manager.config[\"SOCKET_INTERFACE\"][\"host\"]\n        self.command_port = self.ctx.config_manager.config[\"SOCKET_INTERFACE\"][\"cmd_port\"]\n        self.data_port = self.ctx.config_manager.config[\"SOCKET_INTERFACE\"][\"data_port\"]\n        self.command_server = None\n        self.data_server = None\n        self.command_server_thread = None\n        self.data_server_thread = None\n        self.socket_interface_callsigns = None\n        self.connecting_callsign = None\n        self.socket_interface_bandwidth = None\n\n    def log(self, message, isWarning = False):\n        msg = f\"[{type(self).__name__}]: {message}\"\n        logger = self.logger.warn if isWarning else self.logger.info\n        logger(msg)\n\n    def start_servers(self):\n\n        if self.command_port == 0:\n            self.command_port = 8300\n\n        if self.data_port == 0:\n            self.data_port = 8301\n\n        # in your SocketInterfaceHandler.start_servers():\n        self.command_server = CustomThreadedTCPServer(\n            (self.ip, self.command_port),\n            CommandSocket,\n            ctx=self.ctx,\n            socket_interface_manager=self\n        )\n        threading.Thread(target=self.command_server.serve_forever, daemon=True).start()\n\n        self.data_server = CustomThreadedTCPServer(\n            (self.ip, self.data_port),\n            DataSocket,\n            ctx=self.ctx,\n            socket_interface_manager=self\n        )\n        threading.Thread(target=self.data_server.serve_forever, daemon=True).start()\n        self.command_server.command_handler = None\n\n        self.log(f\"Interfaces started\")\n        return self\n\n    def run_server(self,ip, port, handler):\n        try:\n            with CustomThreadedTCPServer((ip, port), handler, ctx=self.ctx, socket_interface_manager = self) as server:\n                self.log(f\"Server starting on ip:port: {ip}:{port}\")\n                if port == self.command_port:\n                    self.command_server = server\n                else:\n                    self.data_server = server\n                server.serve_forever()\n                self.log(f\"Server started on ip:port: {ip}:{port}\")\n        except Exception as e:\n            self.log(f\"Error starting server on ip:port: {ip}:{port} | {e}\", isWarning=True)\n\n    def stop_servers(self):\n        # Gracefully shutdown the server\n        if self.command_server:\n            self.command_server.shutdown()\n            if self.command_server_thread:\n                self.command_server_thread.join(3)\n            del self.command_server\n        if self.data_server:\n            self.data_server.shutdown()\n            if self.data_server_thread:\n                self.data_server_thread.join(3)\n            del self.data_server\n\n        self.log(f\"socket interfaces stopped\")\n"
  },
  {
    "path": "freedata_server/socket_interface_commands.py",
    "content": "\"\"\" WORK IN PROGRESS by DJ2LS\"\"\"\nfrom command_p2p_connection import P2PConnectionCommand\nimport structlog\n\nclass SocketCommandHandler:\n\n    def __init__(self, cmd_request, ctx):\n        self.logger = structlog.get_logger(type(self).__name__)\n        self.cmd_request = cmd_request\n        self.session = None\n        self.ctx = ctx\n\n    def log(self, message, isWarning = False):\n        msg = f\"[{type(self).__name__}]: {message}\"\n        logger = self.logger.warn if isWarning else self.logger.info\n        logger(msg)\n\n    def send_response(self, message):\n        try:\n            self.log(f\">>>>> {message}\")\n            full_message = f\"{message}\\r\"\n            self.cmd_request.sendall(full_message.encode())\n        except Exception as e:\n            self.log(f\"Error sending to socket: {message}\", isWarning = True)\n    def handle_connect(self, data):\n        try:\n            params = {\n                'origin': data[0],\n                'destination': data[1],\n            }\n\n            cmd = P2PConnectionCommand(self.ctx, params)\n            self.session = cmd.run()\n            self.send_response(f\"OK\")\n            self.send_response(f\"REGISTERED {data[0]}\")\n            self.send_response(f\"UNENCRYPTED LINK\")\n            self.ctx.socket_interface_manager.connecting_callsign = data[0]\n            #if self.session.session_id:\n            #    self.ctx.state_manager.register_p2p_connection_session(self.session)\n            #    self.send_response(\"OK\")\n            #    self.session.connect()\n            #else:\n            #    self.send_response(\"ERROR\")\n        except:\n            self.send_response(f\"ERR: {data}\")\n\n    def handle_disconnect(self, data):\n        self.send_response(f\"OK\")\n        try:\n            self.session.disconnect()\n        except Exception as e:\n            self.log(f\"Error disconnecting socket: {e}\", isWarning = True)\n\n    def handle_mycall(self, data):\n        #Storing all of the callsigns assigned by client, to make sure they are checked later in new frames.\n        self.ctx.socket_interface_manager.socket_interface_callsigns = data\n        self.send_response(f\"OK\")\n        self.send_response(f\"UNENCRYPTED LINK\")\n        self.send_response(f\"ENCRYPTION DISABLED\")\n\n    def handle_bw(self, data):\n        # Logic for handling BW command\n        self.ctx.socket_interface_manager.socket_interface_bandwidth = int(data[0])\n        self.send_response(f\"OK\")\n\n    def handle_abort(self, data):\n        # Logic for handling ABORT command\n        self.send_response(f\"OK\")\n        try:\n            self.session.abort_connection()\n        except Exception as e:\n            self.send_response(f\"ERR: {e}\")\n        self.send_response(f\"DISCONNECTED\")\n\n    def handle_public(self, data):\n        # Logic for handling PUBLIC command\n        self.send_response(f\"OK\")\n\n    def handle_cwid(self, data):\n        # Logic for handling CWID command\n        self.send_response(f\"OK\")\n\n    def handle_listen(self, data):\n        # Logic for handling LISTEN command\n        self.send_response(f\"OK\")\n\n    def handle_compression(self, data):\n        # Logic for handling COMPRESSION command\n        # We are always sending OK, as we have our own compression\n        self.send_response(f\"OK\")\n\n    def handle_winlink_session(self, data):\n        # Logic for handling WINLINK SESSION command\n        #self.send_response(f\"NOT IMPLEMENTED: {data}\")\n        self.send_response(f\"OK\")\n\n    def handle_version(self, data):\n        # Logic for handling VERSION command\n        # maybe we need to use a different version, like 5.0\n        self.send_response(f\"VERSION FREEDATA\")\n\n    def socket_respond_disconnected(self):\n        self.send_response(\"DISCONNECTED\")\n\n    def socket_respond_connected(self, origin, destination, bandwidth):\n        print(\"[socket interface_commands] socket_respond_connected\")\n        if self.ctx.socket_interface_manager.connecting_callsign:\n            #message = f\"CONNECTED {self.ctx.socket_interface_manager.connecting_callsign} {destination} {bandwidth}\"\n            message = f\"CONNECTED {origin} {destination} {bandwidth}\"\n        else:\n            message = f\"CONNECTED {origin} {destination} {bandwidth}\"\n        self.send_response(f\"UNENCRYPTED LINK\")\n        self.send_response(f\"LINK REGISTERED\")\n        self.send_response(message)\n\n    def socket_respond_iamalive(self):\n        try:\n            self.send_response(f\"IAMALIVE\")\n        except Exception as e:\n            self.log(f\"sending iamalive failed {e}\")\n    def socket_respond_buffer_size(self, buffer_size):\n        self.send_response(f\"BUFFER {buffer_size}\")\n\n    def socket_respond_ptt(self, state):\n        \"\"\" send the PTT state via command socket\"\"\"\n        if state:\n            message = f\"PTT ON\"\n        else:\n            message = f\"PTT OFF\"\n\n        self.send_response(message)\n"
  },
  {
    "path": "freedata_server/socket_interface_data.py",
    "content": "\"\"\" WORK IN PROGRESS by DJ2LS\"\"\"\n\n\nclass SocketDataHandler:\n\n    def __init__(self, cmd_request, ctx):\n        self.cmd_request = cmd_request\n        self.ctx = ctx\n        self.session = None\n\n    def send_response(self, message):\n        full_message = f\"{message}\\r\"\n        self.cmd_request.sendall(full_message.encode())\n\n    def send_data_to_client(self, data):\n        self.cmd_request.sendall(data + b'\\r')\n"
  },
  {
    "path": "freedata_server/state_manager.py",
    "content": "import time\nimport threading\nimport numpy as np\nclass StateManager:\n    \"\"\"Manages and updates the state of the FreeDATA server.\n\n    This class stores and manages various state variables related to the\n    FreeDATA server, including modem status, channel activity, ARQ sessions,\n    radio parameters, and P2P connections. It provides methods to update\n    and retrieve state information, as well as manage events and\n    synchronization.\n    \"\"\"\n    def __init__(self, statequeue):\n\n        # state related settings\n        self.statequeue = statequeue\n        self.newstate = None\n        self.newradio = None\n        self.last = time.time()\n\n        # freedata_server related states\n        # not every state is needed to publish, yet\n        # TODO can we reduce them?\n        self.channel_busy_slot = [False, False, False, False, False]\n        self.channel_busy_event = threading.Event()\n        self.channel_busy_condition_traffic = threading.Event()\n        self.channel_busy_condition_codec2 = threading.Event()\n\n        self.is_modem_running = False\n\n        self.is_modem_busy = threading.Event()\n        self.setARQ(False)\n\n        self.is_beacon_running = False\n        self.is_away_from_key = False\n\n        # If true, any wait() call is blocking\n        self.transmitting_event = threading.Event()\n        self.setTransmitting(False)\n        \n        self.audio_dbfs = 0\n        self.dxcallsign: bytes = b\"ZZ9YY-0\"\n        self.dxgrid: bytes = b\"------\"\n\n        self.heard_stations = []\n        self.activities_list = {}\n\n        self.arq_iss_sessions = {}\n        self.arq_irs_sessions = {}\n\n        self.p2p_connection_sessions = {}\n\n        #self.mesh_routing_table = []\n\n        self.radio_frequency = 0\n        self.radio_mode = None\n        self.radio_bandwidth = 0\n        self.radio_rf_level = 0\n        self.s_meter_strength = 0\n        self.radio_tuner = False\n        self.radio_swr = 0\n        # Set rig control status regardless or rig control method\n        self.radio_status = False\n\n    def sendState(self):\n        \"\"\"Sends the current state to the state queue.\n\n        This method retrieves the current state using get_state_event() and\n        puts it into the state queue for processing and distribution.\n\n        Returns:\n            dict: The current state.\n        \"\"\"\n        currentState = self.get_state_event(False)\n        self.statequeue.put(currentState)\n        return currentState\n\n    def sendStateUpdate(self, state):\n        \"\"\"Sends a state update to the state queue.\n\n        This method puts the given state update into the state queue for\n        processing and distribution.\n\n        Args:\n            state (dict): The state update to send.\n        \"\"\"\n        self.statequeue.put(state)\n\n    def set(self, key, value):\n        \"\"\"Sets a state variable and sends an update if the state changes.\n\n        This method sets the specified state variable to the given value.\n        If the new state is different from the current state, it generates\n        a state update event and sends it to the state queue.\n\n        Args:\n            key (str): The name of the state variable.\n            value: The new value for the state variable.\n        \"\"\"\n        setattr(self, key, value)\n        #print(f\"State ==> Setting {key} to value {value}\")\n        # only process data if changed\n        new_state = self.get_state_event(True)\n        if new_state != self.newstate:\n            self.newstate = new_state\n            self.sendStateUpdate(new_state)\n\n    def set_radio(self, key, value):\n        \"\"\"Sets a radio parameter and sends an update if the value changes.\n\n        This method sets the specified radio parameter to the given value.\n        If the new value is different from the current value, it generates\n        a radio update event and sends it to the state queue.\n\n        Args:\n            key (str): The name of the radio parameter.\n            value: The new value for the radio parameter.\n        \"\"\"\n        setattr(self, key, value)\n        #print(f\"State ==> Setting {key} to value {value}\")\n        # only process data if changed\n        new_radio = self.get_radio_event(True)\n        if new_radio != self.newradio:\n            self.newradio = new_radio\n            self.sendStateUpdate(new_radio)\n\n    def set_channel_slot_busy(self, array):\n        \"\"\"Sets the channel busy status for each slot.\n\n        This method updates the channel busy status for each slot based on\n        the provided array. If any slot's status changes, it generates a\n        state update event and sends it to the state queue.\n\n        Args:\n            array (list): A list of booleans representing the busy status of each slot.\n        \"\"\"\n        for i in range(0,len(array),1):\n            if not array[i] == self.channel_busy_slot[i]:\n                self.channel_busy_slot = array\n                self.newstate = self.get_state_event(True)\n                self.sendStateUpdate(self.newstate)\n                continue\n    \n    def get_state_event(self, isChangedState):\n        \"\"\"Generates a state event dictionary.\n\n        This method creates a dictionary containing the current state\n        information, including modem and beacon status, channel activity,\n        radio status, and audio levels. The type of event ('state' or\n        'state-change') is determined by the isChangedState flag.\n\n        Args:\n            isChangedState (bool): True if the event represents a state change,\n                False if it's a full state update.\n\n        Returns:\n            dict: A dictionary containing the state information.\n        \"\"\"\n        msgtype = \"state-change\"\n        if (not isChangedState):\n            msgtype = \"state\"\n\n        return {\n            \"type\": msgtype,\n            \"is_modem_running\": self.is_modem_running,\n            \"is_beacon_running\": self.is_beacon_running,\n            \"is_away_from_key\": self.is_away_from_key,\n            \"radio_status\": self.radio_status,\n            \"channel_busy_slot\": self.channel_busy_slot,\n            \"is_codec2_traffic\": self.is_receiving_codec2_signal(),\n            \"audio_dbfs\": self.audio_dbfs,\n            \"activities\": self.activities_list,\n            \"is_modem_busy\" : self.getARQ()\n        }\n\n    def get_radio_event(self, isChangedState):\n        \"\"\"Generates a radio event dictionary.\n\n        This method creates a dictionary containing the current radio state\n        information, including frequency, mode, RF level, S-meter strength,\n        SWR, and tuner status. The type of event ('radio' or 'radio-change')\n        is determined by the isChangedState flag.\n\n        Args:\n            isChangedState (bool): True if this is a radio change event,\n                False for a full radio state update.\n\n        Returns:\n            dict: A dictionary containing the radio state information.\n        \"\"\"\n        msgtype = \"radio-change\"\n        if (not isChangedState):\n            msgtype = \"radio\"\n\n        return {\n            \"type\": msgtype,\n            \"radio_status\": self.radio_status,\n            \"radio_frequency\": self.radio_frequency,\n            \"radio_rf_level\": self.radio_rf_level,\n            \"radio_mode\": self.radio_mode,\n            \"s_meter_strength\": self.s_meter_strength,\n            \"radio_swr\" : self.radio_swr,\n            \"radio_tuner\": self.radio_tuner,\n        }\n    \n    # .wait() blocks until the event is set\n    def isTransmitting(self):\n        \"\"\"Checks if the server is currently transmitting.\n\n        This method returns True if the transmitting_event is not set,\n        indicating that a transmission is in progress. Otherwise, it\n        returns False.\n\n        Returns:\n            bool: True if transmitting, False otherwise.\n        \"\"\"\n        return not self.transmitting_event.is_set()\n    \n    # .wait() blocks until the event is set\n    def setTransmitting(self, transmitting: bool):\n        \"\"\"Sets the transmitting status of the server.\n\n        This method controls the transmitting_event, which is used for\n        synchronization and blocking other operations during transmissions.\n        If transmitting is True, the event is cleared (set to non-signaled\n        state), causing any threads waiting on it to block. If transmitting\n        is False, the event is set (signaled state), allowing waiting\n        threads to proceed.\n\n        Args:\n            transmitting (bool): True if the server is transmitting, False otherwise.\n        \"\"\"\n        if transmitting:\n            self.transmitting_event.clear()\n        else:\n            self.transmitting_event.set()\n\n    def setARQ(self, busy):\n        \"\"\"Sets the ARQ status.\n\n        This method sets the is_modem_busy event based on the provided\n        busy flag. If busy is True, the event is cleared, indicating that\n        the modem is busy with ARQ. If busy is False, the event is set,\n        indicating that the modem is available.\n\n        Args:\n            busy (bool): True if ARQ is busy, False otherwise.\n        \"\"\"\n        if busy:\n            self.is_modem_busy.clear()\n        else:\n            self.is_modem_busy.set()\n\n    def getARQ(self):\n        \"\"\"Gets the ARQ status.\n\n        This method returns True if the is_modem_busy event is not set,\n        indicating that ARQ is currently not busy. Otherwise, it returns\n        False.\n\n        Returns:\n            bool: True if ARQ is not busy, False otherwise.\n        \"\"\"\n        return not self.is_modem_busy.is_set()\n\n    def waitForTransmission(self):\n        \"\"\"Waits for any ongoing transmissions to complete.\n\n        This method blocks the calling thread until the transmitting_event\n        is set, indicating that the server is no longer transmitting.\n        \"\"\"\n        self.transmitting_event.wait()\n\n    def waitForChannelBusy(self):\n        \"\"\"Waits for the channel busy event.\n\n        This method waits for the channel_busy_event to be set, with a\n        timeout of 2 seconds. This is used to pause operations when the\n        channel is detected as busy.\n        \"\"\"\n        self.channel_busy_event.wait(2)\n\n    def register_arq_iss_session(self, session):\n        \"\"\"Registers an ARQ ISS session.\n\n        This method registers an ARQ Information Sending Station (ISS) session\n        by storing it in the arq_iss_sessions dictionary. It returns True\n        if the session is successfully registered, False if a session with\n        the same ID already exists.\n\n        Args:\n            session (ARQSessionISS): The ARQ ISS session to register.\n\n        Returns:\n            bool: True if the session was registered, False otherwise.\n        \"\"\"\n        if session.id in self.arq_iss_sessions:\n            return False\n        self.arq_iss_sessions[session.id] = session\n        return True\n\n    def register_arq_irs_session(self, session):\n        \"\"\"Registers an ARQ IRS session.\n\n        This method registers an ARQ Information Receiving Station (IRS)\n        session, storing it in the arq_irs_sessions dictionary. It\n        returns True if the session is registered successfully, or False\n        if a session with the same ID already exists.\n\n        Args:\n            session (ARQSessionIRS): The ARQ IRS session to register.\n\n        Returns:\n            bool: True if the session was registered, False otherwise.\n        \"\"\"\n        if session.id in self.arq_irs_sessions:\n            return False\n        self.arq_irs_sessions[session.id] = session\n        return True\n\n    def check_if_running_arq_session(self, irs=False):\n        \"\"\"Checks if there is a running ARQ session.\n\n        This method iterates through either the ISS or IRS ARQ sessions,\n        depending on the 'irs' flag. It cleans up outdated sessions and\n        checks if any remaining sessions are not in a final state (ENDED,\n        ABORTED, or FAILED).\n\n        Args:\n            irs (bool, optional): If True, checks IRS sessions; otherwise,\n                checks ISS sessions. Defaults to False (ISS sessions).\n\n        Returns:\n            bool: True if there is a running ARQ session, False otherwise.\n        \"\"\"\n        sessions = self.arq_irs_sessions if irs else self.arq_iss_sessions\n\n        for session_id in sessions:\n            # do a session cleanup of outdated sessions before\n            if sessions[session_id].is_session_outdated():\n                print(f\"session cleanup.....{session_id}\")\n                if irs:\n                    self.remove_arq_irs_session(session_id)\n                else:\n                    self.remove_arq_iss_session(session_id)\n\n            # check again if session id exists in session because of cleanup\n            if session_id in sessions and sessions[session_id].state.name not in ['ENDED', 'ABORTED', 'FAILED']:\n                print(f\"[State Manager] running session...[{session_id}]\")\n                return True\n        return False\n\n    def get_arq_iss_session(self, id):\n        \"\"\"Retrieves an ARQ ISS session by ID.\n\n        This method returns the ARQ Information Sending Station (ISS) session\n        associated with the given ID. If no session with the given ID is\n        found, it returns None.\n\n        Args:\n            id: The ID of the ARQ ISS session.\n\n        Returns:\n            ARQSessionISS or None: The ARQSessionISS object if found, None otherwise.\n        \"\"\"\n        if id not in self.arq_iss_sessions:\n            #raise RuntimeError(f\"ARQ ISS Session '{id}' not found!\")\n            # DJ2LS: WIP We need to find a better way of handling this\n            pass\n        return self.arq_iss_sessions[id]\n\n    def get_arq_irs_session(self, id):\n        \"\"\"Retrieves an ARQ IRS session by ID.\n\n        This method returns the ARQ Information Receiving Station (IRS) session\n        associated with the given ID. It returns None if no session with the\n        given ID is found.\n\n        Args:\n            id: The ID of the ARQ IRS session.\n\n        Returns:\n            ARQSessionIRS or None: The ARQSessionIRS object if found, None otherwise.\n        \"\"\"\n        if id not in self.arq_irs_sessions:\n            #raise RuntimeError(f\"ARQ IRS Session '{id}' not found!\")\n            # DJ2LS: WIP We need to find a better way of handling this\n            pass\n        return self.arq_irs_sessions[id]\n\n    def remove_arq_iss_session(self, id):\n        \"\"\"Removes an ARQ ISS session.\n\n        This method removes the ARQ Information Sending Station (ISS) session\n        associated with the given ID from the arq_iss_sessions dictionary.\n\n        Args:\n            id: The ID of the ARQ ISS session to remove.\n        \"\"\"\n        if id in self.arq_iss_sessions:\n            del self.arq_iss_sessions[id]\n\n    def remove_arq_irs_session(self, id):\n        \"\"\"Removes an ARQ IRS session.\n\n        This method removes the ARQ Information Receiving Station (IRS) session\n        associated with the given ID from the arq_irs_sessions dictionary.\n\n        Args:\n            id: The ID of the ARQ IRS session to remove.\n        \"\"\"\n        if id in self.arq_irs_sessions:\n            del self.arq_irs_sessions[id]\n\n    def stop_transmission(self):\n        \"\"\"Stops any ongoing ARQ transmissions.\n\n        This method iterates through all active ARQ Information Sending Station (ISS)\n        and Information Receiving Station (IRS) sessions and aborts their transmissions.\n        ISS sessions are removed after being stopped, while IRS sessions are retained\n        to allow for potential resumption.\n        \"\"\"\n        # Stop and remove IRS sessions\n        for session_id in list(self.arq_irs_sessions.keys()):\n            session = self.arq_irs_sessions[session_id]\n            session.transmission_aborted()\n            # For now, we don't remove IRS session because of resuming transmissions. \n            #self.remove_arq_irs_session(session_id)\n\n        # Stop and remove ISS sessions\n        for session_id in list(self.arq_iss_sessions.keys()):\n            session = self.arq_iss_sessions[session_id]\n            session.abort_transmission(send_stop=False)\n            session.transmission_aborted()\n            self.remove_arq_iss_session(session_id)\n\n    def add_activity(self, activity_data):\n        \"\"\"Adds a new activity to the activities list.\n\n        This method generates a unique ID for the activity, adds a timestamp\n        and frequency if not provided, and stores the activity data in the\n        activities list. It then triggers a state update.\n\n        Args:\n            activity_data (dict): A dictionary containing the activity data.\n        \"\"\"\n        # Generate a random 8-byte string as hex\n        activity_id = np.random.bytes(8).hex()\n\n        # if timestamp not provided, add it here\n        if 'timestamp' not in activity_data:\n            activity_data['timestamp'] = int(time.time())\n\n        # if frequency not provided, add it here\n        if 'frequency' not in activity_data:\n            activity_data['frequency'] = self.radio_frequency\n        self.activities_list[activity_id] = activity_data\n        self.sendStateUpdate(self.newstate)\n\n    def calculate_channel_busy_state(self):\n        \"\"\"Calculates and sets the overall channel busy state.\n\n        This method determines the channel busy state based on the status\n        of channel_busy_condition_traffic and\n        channel_busy_condition_codec2. If both events are set (not busy),\n        it sets the channel_busy_event, indicating the channel is available.\n        Otherwise, it resets the channel_busy_event.\n        \"\"\"\n        if self.channel_busy_condition_traffic.is_set() and self.channel_busy_condition_codec2.is_set():\n            self.channel_busy_event.set()\n        else:\n            self.channel_busy_event = threading.Event()\n\n    def set_channel_busy_condition_traffic(self, busy):\n        \"\"\"Sets the channel busy condition based on data traffic.\n\n        This method sets or clears the channel_busy_condition_traffic event\n        based on the provided busy flag. If busy is False, the event is set,\n        indicating no traffic. If busy is True, the event is cleared,\n        indicating traffic. It then recalculates the overall channel busy\n        state.\n\n        Args:\n            busy (bool): True if there is data traffic, False otherwise.\n        \"\"\"\n        if not busy:\n            self.channel_busy_condition_traffic.set()\n        else:\n            self.channel_busy_condition_traffic = threading.Event()\n        self.calculate_channel_busy_state()\n\n    def set_channel_busy_condition_codec2(self, traffic):\n        \"\"\"Sets the channel busy condition based on Codec2 traffic.\n\n        This method sets or clears the channel_busy_condition_codec2 event\n        based on the provided traffic flag. If traffic is False, the event\n        is set, indicating no Codec2 traffic. If traffic is True, the event\n        is cleared, indicating ongoing Codec2 traffic. It then recalculates\n        the overall channel busy state.\n\n        Args:\n            traffic (bool): True if there is Codec2 traffic, False otherwise.\n        \"\"\"\n        if not traffic:\n            self.channel_busy_condition_codec2.set()\n        else:\n            self.channel_busy_condition_codec2 = threading.Event()\n        self.calculate_channel_busy_state()\n\n    def is_receiving_codec2_signal(self):\n        \"\"\"Checks if the server is receiving a Codec2 signal.\n\n        This method returns True if the channel_busy_condition_codec2 event\n        is not set, indicating that a Codec2 signal is being received.\n        Otherwise, it returns False.\n\n        Returns:\n            bool: True if a Codec2 signal is being received, False otherwise.\n        \"\"\"\n        return not self.channel_busy_condition_codec2.is_set()\n\n    def get_radio_status(self):\n        \"\"\"Returns the current radio status.\n\n        This method returns a dictionary containing the current status\n        information of the radio, including its status, frequency, mode,\n        RF level, S-meter strength, SWR, and tuner status.\n\n        Returns:\n            dict: A dictionary containing the radio status information.\n        \"\"\"\n        return {\n            \"radio_status\": self.radio_status,\n            \"radio_frequency\": self.radio_frequency,\n            \"radio_mode\": self.radio_mode,\n            \"radio_rf_level\": self.radio_rf_level,\n            \"s_meter_strength\": self.s_meter_strength,\n            \"radio_swr\": self.radio_swr,\n            \"radio_tuner\": self.radio_tuner,\n        }\n\n    def register_p2p_connection_session(self, session):\n        \"\"\"Registers a P2P connection session.\n\n        This method registers a peer-to-peer (P2P) connection session by\n        storing it in the p2p_connection_sessions dictionary. It returns\n        True if the session is successfully registered, or False if a\n        session with the same ID already exists.\n\n        Args:\n            session (P2PConnection): The P2P connection session object.\n\n        Returns:\n            bool: True if the session was registered, False otherwise.\n        \"\"\"\n        if session.session_id in self.p2p_connection_sessions:\n            print(\"session already registered...\", session.session_id)\n            return False\n        self.p2p_connection_sessions[session.session_id] = session\n        return True\n\n    def get_p2p_connection_session(self, id):\n        if id not in self.p2p_connection_sessions:\n            pass\n        return self.p2p_connection_sessions[id]\n\n    def get_dxcall_by_session_id(self, session_id):\n        \"\"\"\n        Retrieves the dxcall associated with a given session ID by checking both ISS and IRS sessions.\n\n        Args:\n            session_id (str): The ID of the session.\n\n        Returns:\n            str: The dxcall associated with the session ID, or None if not found.\n        \"\"\"\n        try:\n            # Check ISS sessions\n            if session_id in self.arq_iss_sessions:\n                return self.arq_iss_sessions[session_id].dxcall\n\n            # Check IRS sessions\n            if session_id in self.arq_irs_sessions:\n                return self.arq_irs_sessions[session_id].dxcall\n#Part of the code to solve P2P connections with the ability to respond to SSIDs other than the one set on the modem.\n#I will circle back around and check that this is really the best way to handle this edge case...\n            if session_id in self.p2p_connection_sessions:\n                return self.p2p_connection_sessions[session_id].destination\n\n            # If not found in either session dictionary\n            print(f\"Session ID {session_id} not found in ISS or IRS sessions\")\n            return None\n        except KeyError:\n            print(f\"Error retrieving session ID {session_id}\")\n            return None\n"
  },
  {
    "path": "freedata_server/stats.py",
    "content": "# -*- coding: UTF-8 -*-\n\"\"\"\nCreated on 05.11.23\n\n@author: DJ2LS\n\"\"\"\n# pylint: disable=invalid-name, line-too-long, c-extension-no-member\n# pylint: disable=import-outside-toplevel, attribute-defined-outside-init\nimport requests\nimport json\nimport structlog\nfrom constants import MODEM_VERSION, STATS_API_URL\n\nlog = structlog.get_logger(\"stats\")\n\nclass stats:\n    \"\"\"Handles the collection and submission of FreeData session statistics.\n\n    This class collects various statistics about FreeData sessions, including\n    SNR, data rate, file size, and duration. It then pushes these statistics\n    to a remote API endpoint for aggregation and analysis.\n    \"\"\"\n    def __init__(self, ctx):\n        self.api_url = STATS_API_URL\n        self.ctx = ctx\n    def push(self, status, session_statistics, dxcall, receiving=True):\n        \"\"\"Pushes session statistics to the remote API endpoint.\n\n        This method collects session statistics, including average SNR, bytes\n        per minute, file size, duration, and status, and sends them as a JSON\n        payload to the configured API endpoint. It also includes histogram data\n        for time, SNR, and BPM.\n\n        Args:\n            status (str): The status of the session (e.g., 'ENDED', 'FAILED').\n            session_statistics (dict): A dictionary containing session statistics.\n            dxcall (str): The callsign of the remote station.\n            receiving (bool, optional): True if the session was receiving data, False otherwise. Defaults to True.\n        \"\"\"\n        try:\n            snr_raw = [item[\"snr\"] for item in self.ctx.state_manager.arq_speed_list]\n            avg_snr = round(sum(snr_raw) / len(snr_raw), 2)\n        except Exception:\n            avg_snr = 0\n\n        if receiving:\n            station = \"IRS\"\n        else:\n            station = \"ISS\"\n\n        mycallsign = self.ctx.config_manager.config['STATION']['mycall']\n        ssid = self.ctx.config_manager.config['STATION']['myssid']\n        full_callsign = f\"{mycallsign}-{ssid}\"\n\n        headers = {\"Content-Type\": \"application/json\"}\n        station_data = {\n            'callsign': full_callsign,\n            'dxcallsign': dxcall,\n            'gridsquare': self.ctx.config_manager.config['STATION']['mygrid'],\n            'dxgridsquare': str(self.ctx.state_manager.dxgrid, \"utf-8\"),\n            'frequency': 0 if self.ctx.state_manager.radio_frequency is None else self.ctx.state_manager.radio_frequency,\n            'avgsnr': avg_snr,\n            'bytesperminute': session_statistics['bytes_per_minute'],\n            'filesize': session_statistics['total_bytes'],\n            'duration': session_statistics['duration'],\n            'status': status,\n            'direction': station,\n            'version': MODEM_VERSION,\n            'time_histogram': session_statistics['time_histogram'],  # Adding new histogram data\n            'snr_histogram': session_statistics['snr_histogram'],  # Adding new histogram data\n            'bpm_histogram': session_statistics['bpm_histogram'],  # Adding new histogram data\n        }\n\n        station_data = json.dumps(station_data)\n        try:\n            response = requests.post(self.api_url, json=station_data, headers=headers)\n            log.info(\"[STATS] push\", code=response.status_code)\n\n            # print(response.status_code)\n            # print(response.content)\n\n        except Exception as e:\n            log.warning(\"[API] connection lost\")"
  },
  {
    "path": "freedata_server/wavelog_api_logger.py",
    "content": "import requests\nimport threading\nimport structlog\n\n\ndef send_wavelog_qso_data(ctx, wavelog_data):\n    \"\"\"\n    Sends wavelog QSO data to the specified server via API call.\n\n    Parameters:\n    server_host:port (str)\n    server_api_key (str)\n    wavelog_data (str): wavelog-formatted ADIF QSO data.\n    \"\"\"\n\n    log = structlog.get_logger()\n\n    # If False then exit the function\n    wavelog = ctx.config_manager.config['QSO_LOGGING'].get('enable_adif_wavelog', 'False')\n\n    if not wavelog:\n        return  # exit as we don't want to log Wavelog\n\n    wavelog_host = ctx.config_manager.config['QSO_LOGGING'].get('adif_wavelog_host', 'http://localhost/')\n    wavelog_api_key = ctx.config_manager.config['QSO_LOGGING'].get('adif_wavelog_api_key', '')\n\n    # check if the last part in the HOST URL from the config is correct\n    if wavelog_host.endswith(\"/\"):\n        url = wavelog_host + \"index.php/api/qso\"\n    else:\n        url = wavelog_host + \"/\" + \"index.php/api/qso\"\n\n    headers = {\n        \"Content-Type\": \"application/json\",\n        \"Accept\": \"application/json\"\n    }\n\n    data = {\n        \"key\": wavelog_api_key,\n        \"station_profile_id\": \"1\",\n        \"type\": \"adif\",\n        \"string\": wavelog_data\n    }\n\n    def send_api():\n        try:\n            response = requests.post(url, headers=headers, json=data)\n            response.raise_for_status()  # Raise an error for bad status codes\n            log.info(f\"[CHAT] Wavelog API: {wavelog_data}\")\n\n            callsign_start = wavelog_data.find(f\">\") + 1\n            callsign_end = wavelog_data.find(f\"<QSO_DATE\", callsign_start)\n            call_value = wavelog_data[callsign_start:callsign_end]\n\n            ctx.event_manager.freedata_logging(type=\"wavelog\", status=True, message=f\" {call_value} \")\n\n        except Exception as e:\n            ctx.event_manager.freedata_logging(type=\"wavelog\", status=False, message=f\"{e}\")\n\n    # Run the API call in a background thread to avoid blocking the main thread\n    thread = threading.Thread(target=send_api, daemon=True)\n    thread.start()"
  },
  {
    "path": "freedata_server/websocket_manager.py",
    "content": "import threading\nimport json\nimport asyncio\nimport structlog\n\n\nclass wsm:\n    \"\"\"Manages WebSocket connections and data transmission.\n\n    This class handles WebSocket connections from clients, manages client\n    lists for different data types (events, FFT, states), and transmits\n    data to connected clients via worker threads. It ensures a clean\n    shutdown of WebSocket connections and related resources.\n    \"\"\"\n    def __init__(self, ctx):\n        \"\"\"Initializes the WebSocket manager.\n\n        This method sets up the logger, shutdown flag, client lists for\n        different data types, and worker threads.\n        \"\"\"\n        self.log = structlog.get_logger(\"WEBSOCKET_MANAGER\")\n        self.shutdown_flag = threading.Event()\n\n        self.ctx = ctx\n\n        # WebSocket client sets\n        self.events_client_list = set()\n        self.fft_client_list = set()\n        self.states_client_list = set()\n\n        self.events_thread = None\n        self.states_thread = None\n        self.fft_thread = None\n        \n    async def handle_connection(self, websocket, client_list, event_queue):\n        \"\"\"Handles a WebSocket connection.\n\n        This method adds the new client to the provided list and continuously\n        listens for incoming messages. If a client disconnects, it removes\n        the client from the list and logs the event.\n\n        Args:\n            websocket: The WebSocket object representing the client connection.\n            client_list (set): The set of connected WebSocket clients.\n            event_queue (queue.Queue): The event queue. Currently unused.\n        \"\"\"\n        client_list.add(websocket)\n        while not self.shutdown_flag.is_set():\n            try:\n                await websocket.receive_text()\n            except Exception as e:\n                self.log.warning(f\"Client connection lost\", e=e)\n                try:\n                    client_list.remove(websocket)\n                except Exception as err:\n                    self.log.error(f\"Error removing client from list\", e=e, err=err)\n                break\n\n    def transmit_sock_data_worker(self, client_list, event_queue):\n        \"\"\"Worker thread function for transmitting data to WebSocket clients.\n\n        This method continuously retrieves events from the provided queue and\n        sends them as JSON strings to all connected clients in the specified\n        list. It handles client disconnections gracefully.\n\n        Args:\n            client_list (set): The set of connected WebSocket clients.\n            event_queue (queue.Queue): The queue containing events to be transmitted.\n        \"\"\"\n        while not self.shutdown_flag.is_set():\n            try:\n                event = event_queue.get(timeout=1)\n\n                if event:\n                    json_event = json.dumps(event)\n                    clients = client_list.copy()\n                    for client in clients:\n                        try:\n                            asyncio.run(client.send_text(json_event))\n                        except Exception:\n                            client_list.remove(client)\n            except Exception:\n                continue\n\n\n\n    def startWorkerThreads(self, app):\n        \"\"\"Starts worker threads for handling WebSocket data transmission.\n\n        This method creates and starts daemon threads for transmitting modem\n        events, state updates, and FFT data to connected WebSocket clients.\n        Each thread uses the transmit_sock_data_worker method to send data\n        from the respective queues to the appropriate client lists.\n\n        Args:\n            app: The main application object containing the event queues and client lists.\n        \"\"\"\n        self.events_thread = threading.Thread(target=self.transmit_sock_data_worker, daemon=True, args=(self.events_client_list, self.ctx.modem_events))\n        self.events_thread.start()\n\n        self.states_thread = threading.Thread(target=self.transmit_sock_data_worker, daemon=True, args=(self.states_client_list, self.ctx.state_queue))\n        self.states_thread.start()\n\n        self.fft_thread = threading.Thread(target=self.transmit_sock_data_worker, daemon=True, args=(self.fft_client_list, self.ctx.modem_fft))\n        self.fft_thread.start()\n        \n    def shutdown(self):\n        \"\"\"Shuts down the WebSocket manager.\n\n        This method sets the shutdown flag, waits for worker threads to\n        finish, and logs the shutdown process. It ensures a clean shutdown\n        of WebSocket connections and related threads.\n        \"\"\"\n        self.log.warning(\"[SHUTDOWN] closing websockets...\")\n        self.shutdown_flag.set()\n        if self.events_thread:\n            self.events_thread.join(0.5)\n        if self.states_thread:\n            self.states_thread.join(0.5)\n        if self.states_thread:\n            self.fft_thread.join(0.5)\n        self.log.warning(\"[SHUTDOWN] websockets closed\")"
  },
  {
    "path": "requirements.txt",
    "content": "numpy\npsutil\nPyAudio\npyserial\nsounddevice\nstructlog\nrequests\nasyncio\nchardet\ncolorama\nordered-set\nnuitka<=2.7.13\npyinstaller\nwebsocket-client\nfastapi[standard]\nuvicorn[standard]\n\n# Development and test dependencies\nautopep8\nblack\nisort\npycodestyle\npytest\npytest-cov\npytest-cover\npytest-coverage\npytest-rerunfailures\npick\nsqlalchemy"
  },
  {
    "path": "setup.py",
    "content": "from setuptools import setup, find_packages\nimport freedata_server.constants as constants\n# Reading requirements.txt for dependencies\nwith open('requirements.txt') as f:\n    required = f.read().splitlines()\n\nwith open(\"README.md\", \"r\", encoding=\"utf-8\") as fh:\n    long_description = fh.read()\n\nsetup(\n    name='freedata',\n    version=constants.MODEM_VERSION,\n    packages=find_packages(where='.'),\n    package_dir={'': '.'},\n    install_requires=required,\n    python_requires='>=3.9',\n    author='DJ2LS',\n    author_email='dj2ls@proton.me',\n    description='INFO: THIS PACKAGE IS NOT YET WORKING - PLEASE USE THE OFFICIAL SCRIPT BASED SETUP',\n    long_description=long_description,\n    long_description_content_type=\"text/markdown\",\n    url='https://github.com/DJ2LS/FreeDATA',\n    license='GPL3.0',\n    entry_points={\n        'console_scripts': [\n            'freedata=freedata_server.server:main',  # Points to the main() function in server.py\n        ],\n    },\n    include_package_data=True,  # Ensure non-python files are included if specified\n    package_data={\n        # Include all files under any directory within the 'freedata_server' package\n        'freedata_server': ['lib/**/*'],  # Recursive include for all files in 'lib' and its subdirectories\n        'freedata_gui': ['dist/**/*'],  # gui folder\n\n    },\n)\n"
  },
  {
    "path": "tests/test_arq_session.py",
    "content": "import sys\nimport time\nsys.path.append('freedata_server')\n\nimport unittest\nimport unittest.mock\nimport config\nfrom context import AppContext\n\nimport helpers\nimport queue\nimport threading\nimport base64\nfrom command_arq_raw import ARQRawCommand\nfrom state_manager import StateManager\nfrom frame_dispatcher import DISPATCHER\nimport random\nimport structlog\nimport numpy as np\nfrom event_manager import EventManager\nfrom state_manager import StateManager\nfrom data_frame_factory import DataFrameFactory\nimport codec2\nimport arq_session_irs\nimport os\n\n\nclass DummyCtx:\n    def __init__(self):\n        pass\n\n\n\nclass TestARQSession(unittest.TestCase):\n\n    @classmethod\n    def setUpClass(cls):\n\n\n        cls.logger = structlog.get_logger(\"TESTS\")\n\n        # ISS\n\n        cls.ctx_ISS = AppContext('freedata_server/config.ini.example')\n        cls.ctx_ISS.TESTMODE = True\n        cls.ctx_ISS.startup()\n\n\n        # IRS\n        cls.ctx_IRS = AppContext('freedata_server/config.ini.example')\n        cls.ctx_IRS.TESTMODE = True\n        cls.ctx_IRS.startup()\n\n        # simulate a busy condition\n        cls.ctx_IRS.state_manager.channel_busy_slot = [True, False, False, False, False]\n        # Frame loss probability in %\n        cls.loss_probability = 0\n\n\n        cls.channels_running = False\n\n    @classmethod\n    def tearDownClass(cls):\n        # Clean shutdown after all tests\n        cls.ctx_IRS.shutdown()\n        cls.ctx_ISS.shutdown()\n\n\n    def channelWorker(self, ctx_a, ctx_b):\n        while self.channels_running:\n            try:\n                # Station A gets the data from its transmit queue\n                transmission = ctx_a.TESTMODE_TRANSMIT_QUEUE.get(timeout=1)\n                print(f\"Station A sending: {transmission[1]}\", len(transmission[1]), transmission[0])\n\n                transmission[1] += bytes(2) # 2bytes crc simulation\n\n                if random.randint(0, 100) < self.loss_probability:\n                    self.logger.info(f\"[{threading.current_thread().name}] Frame lost...\")\n                    continue\n\n                # Forward data from Station A to Station B's receive queue\n                if ctx_b:\n                    ctx_b.TESTMODE_RECEIVE_QUEUE.put(transmission)\n                    self.logger.info(f\"Data forwarded to Station B\")\n\n                frame_bytes = transmission[1]\n                if len(frame_bytes) == 5:\n                    mode_name = \"SIGNALLING_ACK\"\n                else:\n                    mode_name = transmission[0]\n\n                snr = 15\n                ctx_b.service_manager.frame_dispatcher.process_data(\n                    frame_bytes, None, len(frame_bytes), snr, 0, mode_name=mode_name\n                )\n\n            except queue.Empty:\n                continue\n\n        self.logger.info(f\"[{threading.current_thread().name}] Channel closed.\")\n\n    def waitForSession(self, q, outbound = False):\n            key = 'arq-transfer-outbound' if outbound else 'arq-transfer-inbound'\n            while True and self.channels_running:\n                ev = q.get()\n                if key in ev and ('success' in ev[key] or 'ABORTED' in ev[key]):\n                    self.logger.info(f\"[{threading.current_thread().name}] {key} session ended.\")\n                    break\n\n    def establishChannels(self):\n        self.channels_running = True\n        self.channelA = threading.Thread(target=self.channelWorker,args=[self.ctx_ISS, self.ctx_IRS],name = \"channelA\")\n        self.channelA.start()\n\n        self.channelB = threading.Thread(target=self.channelWorker,args=[self.ctx_IRS, self.ctx_ISS],name = \"channelB\")\n        self.channelB.start()\n\n\n    def waitAndCloseChannels(self):\n        self.waitForSession(self.ctx_ISS.TESTMODE_EVENTS, True)\n        self.channels_running = False\n        self.waitForSession(self.ctx_IRS.TESTMODE_EVENTS, False)\n        self.channels_running = False\n\n    def DisabledtestARQSessionSmallPayload(self):\n        # set Packet Error Rate (PER) / frame loss probability\n        self.loss_probability = 30\n\n        self.establishChannels()\n        params = {\n            'dxcall': \"AA1AAA-1\",\n            'data': base64.b64encode(bytes(\"Hello world!\", encoding=\"utf-8\")),\n            'type': \"raw_lzma\"\n        }\n        cmd = ARQRawCommand(self.ctx_ISS, params)\n        cmd.run()\n        self.waitAndCloseChannels()\n        print(self.ctx_ISS.TESTMODE_EVENTS.empty())\n\n        while not self.ctx_ISS.TESTMODE_EVENTS.empty():\n            event = self.ctx_ISS.TESTMODE_EVENTS.get()\n            success = event.get('arq-transfer-outbound', {}).get('success', None)\n            if success is not None:\n                self.assertTrue(success, f\"Test failed because of wrong success: {success}\")\n\n        #self.ctx_IRS.shutdown()\n        #self.ctx_ISS.shutdown()\n\n    def testARQSessionLargePayload(self):\n        # set Packet Error Rate (PER) / frame loss probability\n        self.loss_probability = 0\n\n        self.establishChannels()\n        params = {\n            'dxcall': \"AA1AAA-1\",\n            'data': base64.b64encode(np.random.bytes(1000)),\n            'type': \"raw_lzma\"\n        }\n        cmd = ARQRawCommand(self.ctx_ISS, params)\n        cmd.run()\n\n        self.waitAndCloseChannels()\n        #del cmd\n        print(self.ctx_ISS.TESTMODE_EVENTS.empty())\n\n        while not self.ctx_ISS.TESTMODE_EVENTS.empty():\n            event = self.ctx_ISS.TESTMODE_EVENTS.get()\n            success = event.get('arq-transfer-outbound', {}).get('success', None)\n            if success is not None:\n                self.assertTrue(success, f\"Test failed because of wrong success: {success}\")\n\n        #self.ctx_IRS.shutdown()\n        #self.ctx_ISS.shutdown()\n\n\n    def DisabledtestARQSessionAbortTransmissionISS(self):\n        # set Packet Error Rate (PER) / frame loss probability\n        self.loss_probability = 0\n\n        self.establishChannels()\n        params = {\n            'dxcall': \"AA1AAA-1\",\n            'data': base64.b64encode(np.random.bytes(100)),\n        }\n        cmd = ARQRawCommand(self.ctx_ISS, params)\n        cmd.run()\n\n        threading.Event().wait(np.random.randint(10,10))\n        for id in self.ctx_ISS.state_manager.arq_iss_sessions:\n            self.ctx_ISS.state_manager.arq_iss_sessions[id].abort_transmission()\n\n        self.waitAndCloseChannels()\n\n\n        del cmd\n\n    def DisabledtestARQSessionAbortTransmissionIRS(self):\n        # set Packet Error Rate (PER) / frame loss probability\n        self.loss_probability = 0\n\n        self.establishChannels()\n        params = {\n            'dxcall': \"AA1AAA-1\",\n            'data': base64.b64encode(np.random.bytes(100)),\n        }\n        cmd = ARQRawCommand(self.ctx_ISS, params)\n        cmd.run()\n\n        threading.Event().wait(np.random.randint(1,10))\n        for id in self.ctx_IRS.state_manager.arq_irs_sessions:\n            self.ctx_IRS.state_manager.arq_irs_sessions[id].abort_transmission()\n\n        self.waitAndCloseChannels()\n        del cmd\n\n    def DisabledtestSessionCleanupISS(self):\n\n        params = {\n            'dxcall': \"AA1AAA-1\",\n            'data': base64.b64encode(np.random.bytes(100)),\n        }\n        cmd = ARQRawCommand(self.config, self.iss_state_manager, self.iss_event_queue, params)\n        cmd.run(self.iss_event_queue, self.iss_modem)\n        for session_id in self.iss_state_manager.arq_iss_sessions:\n            session = self.iss_state_manager.arq_iss_sessions[session_id]\n            ISS_States = session.state_enum\n            session.state = ISS_States.FAILED\n            session.session_ended = time.time() - 1000\n            if session.is_session_outdated():\n                self.logger.info(f\"session [{session_id}] outdated - deleting it\")\n                self.iss_state_manager.remove_arq_iss_session(session_id)\n                break\n        del cmd\n\n    def DisabledtestSessionCleanupIRS(self):\n        session = arq_session_irs.ARQSessionIRS(self.config,\n                            self.irs_modem,\n                            'AA1AAA-1',\n                            random.randint(0, 255),\n                            self.irs_state_manager\n                                                )\n        self.irs_state_manager.register_arq_irs_session(session)\n        for session_id in self.irs_state_manager.arq_irs_sessions:\n            session = self.irs_state_manager.arq_irs_sessions[session_id]\n            irs_States = session.state_enum\n            session.state = irs_States.FAILED\n            session.session_ended = time.time() - 1000\n            if session.is_session_outdated():\n                self.logger.info(f\"session [{session_id}] outdated - deleting it\")\n                self.irs_state_manager.remove_arq_irs_session(session_id)\n                break\n\nif __name__ == '__main__':\n    unittest.main()\n"
  },
  {
    "path": "tests/test_config.py",
    "content": "import os\nimport sys\nimport shutil\nimport tempfile\nimport unittest\n\n# Ensure freedata_server package is on the path\nROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', 'freedata_server'))\nsys.path.insert(0, ROOT)\n\nimport config\nfrom context import AppContext\n\nclass DummyCtx:\n    def __init__(self):\n        pass\n\nclass TestConfigMethods(unittest.TestCase):\n    @classmethod\n    def setUpClass(cls):\n        # Copy example ini to a temp file so we don't overwrite the source\n        base = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', 'freedata_server'))\n        example_path = os.path.join(base, 'config.ini.example')\n        cls.temp_ini = tempfile.NamedTemporaryFile(delete=False, suffix='.ini').name\n        shutil.copy(example_path, cls.temp_ini)\n        cls.ctx = DummyCtx()\n        cls.config = config.CONFIG(cls.ctx, cls.temp_ini)\n\n    @classmethod\n    def tearDownClass(cls):\n        # Remove temp file\n        try:\n            os.remove(cls.temp_ini)\n        except OSError:\n            pass\n\n    def test_config_exists(self):\n        # Should find the copied temp file\n        self.assertTrue(self.config.config_exists())\n\n\n    def test_read(self):\n        data = self.config.read()\n        self.assertIsInstance(data, dict)\n        self.assertIn('STATION', data)\n        self.assertIn('AUDIO', data)\n        self.assertIn('RADIO', data)\n\n    def test_write(self):\n        data = self.config.read()\n        old_call = data['STATION']['mycall']\n        new_call = 'T1CALL'\n        self.assertNotEqual(old_call, new_call)\n\n        # Update value and write\n        data['STATION']['mycall'] = new_call\n        updated = self.config.write(data)\n        self.assertEqual(updated['STATION']['mycall'], new_call)\n\n        # Confirm persisted\n        reloaded = self.config.read()\n        self.assertEqual(reloaded['STATION']['mycall'], new_call)\n\n        # Restore original\n        reloaded['STATION']['mycall'] = old_call\n        restored = self.config.write(reloaded)\n        self.assertEqual(restored['STATION']['mycall'], old_call)\n\n    def test_validate_data(self):\n        # Invalid: ssid_list must be a list, not a string\n        with self.assertRaises(ValueError):\n            self.config.validate_data({'STATION': {'ssid_list': 'abc'}})\n\n        # Valid case returns None\n        result = self.config.validate_data({'STATION': {'ssid_list': [1, 2, 3]}})\n        self.assertIsNone(result)\n\nif __name__ == '__main__':\n    unittest.main()"
  },
  {
    "path": "tests/test_data_frame_factory.py",
    "content": "import os\nimport sys\nimport unittest\n\n# Ensure freedata_server package is on the path\nROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', 'freedata_server'))\nsys.path.insert(0, ROOT)\n\nfrom config import CONFIG\nfrom data_frame_factory import DataFrameFactory\nfrom codec2 import FREEDV_MODE\nimport helpers\nfrom modem_frametypes import FRAME_TYPE\n\n# Dummy Context with config\nclass DummyCtx:\n    def __init__(self, config_path):\n        from config import CONFIG\n        self.config_manager = CONFIG(self, config_path)\n\n\nclass TestDataFrameFactory(unittest.TestCase):\n\n    @classmethod\n    def setUpClass(cls):\n        # Setup minimal context and config\n        base = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', 'freedata_server'))\n        example_path = os.path.join(base, 'config.ini.example')\n        cls.ctx = DummyCtx(example_path)\n        cls.ctx.config_manager.config[\"STATION\"][\"mycall\"] = \"T1CALL\"\n        cls.ctx.config_manager.config[\"STATION\"][\"mygrid\"] = \"AB12aa\"\n\n        cls.factory = DataFrameFactory(cls.ctx)\n\n    def test_build_beacon(self):\n        beacon_frame = self.factory.build_beacon()\n        beacon_data = self.factory.deconstruct(beacon_frame)\n        self.assertEqual(beacon_data['origin'], self.factory.myfullcall.upper())\n        self.assertEqual(beacon_data['gridsquare'], self.factory.mygrid.upper())\n\n    def test_build_ping(self):\n        dxcall = \"DJ2LS-3\"\n        ping_frame = self.factory.build_ping(dxcall)\n        ping_data = self.factory.deconstruct(ping_frame)\n        self.assertEqual(ping_data['origin'], self.factory.myfullcall)\n        self.assertEqual(ping_data['destination_crc'], helpers.get_crc_24(dxcall).hex())\n\n    def test_build_arq_connect(self):\n        dxcall = \"DJ2LS-4\"\n        session_id = 123\n        frame = self.factory.build_arq_session_open(dxcall, session_id, 1700, 1)\n        frame_data = self.factory.deconstruct(frame)\n        self.assertEqual(frame_data['origin'], self.factory.myfullcall)\n        self.assertEqual(frame_data['session_id'], session_id)\n\n    def test_build_cq(self):\n        frame = self.factory.build_cq()\n        frame_data = self.factory.deconstruct(frame)\n        self.assertEqual(frame_data['origin'], self.factory.myfullcall)\n        self.assertEqual(frame_data['gridsquare'], self.factory.mygrid.upper())\n\n    def test_build_burst_data_frames(self):\n        session_id = 123\n        offset = 40\n        payload = b'Hello World!'\n        frame = self.factory.build_arq_burst_frame(FREEDV_MODE.datac3, session_id, offset, payload, 0)\n        frame_data = self.factory.deconstruct(frame)\n        self.assertEqual(frame_data['session_id'], session_id)\n        self.assertEqual(frame_data['offset'], offset)\n        extracted = frame_data['data'][:len(payload)]\n        self.assertEqual(extracted, payload)\n\n        # Check overflow condition\n        oversized_payload = payload * 1000\n        with self.assertRaises(OverflowError):\n            self.factory.build_arq_burst_frame(FREEDV_MODE.datac3, session_id, offset, oversized_payload, 0)\n\n    def test_available_payload(self):\n        available = self.factory.get_available_data_payload_for_mode(FRAME_TYPE.ARQ_BURST_FRAME, FREEDV_MODE.datac3)\n        self.assertEqual(available, 119)\n\nif __name__ == '__main__':\n    unittest.main()\n"
  },
  {
    "path": "tests/test_data_type_handler.py",
    "content": "import sys\nimport unittest\nimport queue\n\nsys.path.append('freedata_server')\n\nfrom context import AppContext\nfrom arq_data_type_handler import ARQDataTypeHandler, ARQ_SESSION_TYPES\n\nclass TestDispatcher(unittest.TestCase):\n\n    @classmethod\n    def setUpClass(cls):\n        cls.ctx = AppContext('freedata_server/config.ini.example')\n        cls.event_manager = cls.ctx.event_manager\n        cls.state_manager = cls.ctx.state_manager\n        cls.arq_data_type_handler = ARQDataTypeHandler(cls.ctx)\n\n    @classmethod\n    def tearDownClass(cls):\n        # Clean shutdown after all tests\n        cls.ctx.shutdown()\n\n    def test_data_type_handler_raw(self):\n        example_data = b\"Hello FreeDATA!\"\n        formatted_data, type_byte = self.arq_data_type_handler.prepare(example_data, ARQ_SESSION_TYPES.raw)\n        dispatched_data = self.arq_data_type_handler.dispatch(type_byte, formatted_data, statistics={})\n        self.assertEqual(example_data, dispatched_data)\n\n    def test_data_type_handler_lzma(self):\n        example_data = b\"Hello FreeDATA! \" * 50\n        formatted_data, type_byte = self.arq_data_type_handler.prepare(example_data, ARQ_SESSION_TYPES.raw_lzma)\n        self.assertLess(len(formatted_data), len(example_data), \"LZMA komprimiert nicht richtig!\")\n        dispatched_data = self.arq_data_type_handler.dispatch(type_byte, formatted_data, statistics={})\n        self.assertEqual(example_data, dispatched_data)\n\n    def test_data_type_handler_gzip(self):\n        example_data = b\"Hello FreeDATA! \" * 50\n        formatted_data, type_byte = self.arq_data_type_handler.prepare(example_data, ARQ_SESSION_TYPES.raw_gzip)\n        self.assertLess(len(formatted_data), len(example_data), \"GZIP komprimiert nicht richtig!\")\n        dispatched_data = self.arq_data_type_handler.dispatch(type_byte, formatted_data, statistics={})\n        self.assertEqual(example_data, dispatched_data)\n\nif __name__ == '__main__':\n    unittest.main()\n"
  },
  {
    "path": "tests/test_message_database.py",
    "content": "import sys\nimport unittest\nimport queue\nimport base64\nimport numpy as np\n\nsys.path.append('freedata_server')\n\nfrom context import AppContext\nfrom message_p2p import MessageP2P\nfrom message_system_db_messages import DatabaseManagerMessages\nfrom message_system_db_attachments import DatabaseManagerAttachments\n\nclass TestDatabaseMessageSystem(unittest.TestCase):\n\n    @classmethod\n    def setUpClass(cls):\n        # echten Context bauen\n        cls.ctx = AppContext('freedata_server/config.ini.example')\n        cls.ctx.config_manager.read()\n\n        # Komponenten über Context\n        cls.event_manager = cls.ctx.event_manager\n        cls.database_manager = DatabaseManagerMessages(cls.ctx)\n        cls.database_manager_attachments = DatabaseManagerAttachments(cls.ctx)\n        cls.mycall = f\"{cls.ctx.config_manager.config['STATION']['mycall']}-{cls.ctx.config_manager.config['STATION']['myssid']}\"\n\n    @classmethod\n    def tearDownClass(cls):\n        # Clean shutdown after all tests\n        cls.ctx.shutdown()\n\n    def test_add_to_database(self):\n        attachment = {\n            'name': 'test.gif',\n            'type': 'image/gif',\n            'data': str(base64.b64encode(np.random.bytes(1024)), 'utf-8')\n        }\n        apiParams = {'destination': 'DJ2LS-3', 'body': 'Hello World!', 'attachments': [attachment]}\n        message = MessageP2P.from_api_params(self.mycall, apiParams)\n        payload = message.to_payload()\n        received_message = MessageP2P.from_payload(payload)\n        received_message_dict = MessageP2P.to_dict(received_message)\n        self.database_manager.add_message(received_message_dict, statistics={})\n        result = self.database_manager.get_message_by_id(message.id)\n\n        self.assertEqual(result[\"destination\"], message.destination)\n\n    def test_delete_from_database(self):\n        attachment = {\n            'name': 'test.gif',\n            'type': 'image/gif',\n            'data': str(base64.b64encode(np.random.bytes(1024)), 'utf-8')\n        }\n        apiParams = {'destination': 'DJ2LS-3', 'body': 'Hello World!', 'attachments': [attachment]}\n        message = MessageP2P.from_api_params(self.mycall, apiParams)\n        payload = message.to_payload()\n        received_message = MessageP2P.from_payload(payload)\n        received_message_dict = MessageP2P.to_dict(received_message)\n        self.database_manager.add_message(received_message_dict, statistics={})\n\n        messages = self.database_manager.get_all_messages()\n        self.assertTrue(messages, \"No messages found to delete!\")\n\n        message_id = messages[0][\"id\"]\n        self.database_manager.delete_message(message_id)\n\n        after_delete = self.database_manager.get_all_messages()\n        ids_after_delete = [m['id'] for m in after_delete]\n        self.assertNotIn(message_id, ids_after_delete)\n\n    def test_update_message(self):\n        attachment = {\n            'name': 'test.gif',\n            'type': 'image/gif',\n            'data': str(base64.b64encode(np.random.bytes(1024)), 'utf-8')\n        }\n\n        apiParams = {'destination': 'DJ2LS-3', 'body': 'Hello World!', 'attachments': [attachment]}\n        message = MessageP2P.from_api_params(self.mycall, apiParams)\n        payload = message.to_payload()\n        received_message = MessageP2P.from_payload(payload)\n        received_message_dict = MessageP2P.to_dict(received_message)\n\n        message_id = self.database_manager.add_message(received_message_dict, statistics={}, direction='receive')\n        self.database_manager.update_message(message_id, {'body': 'hello123'})\n\n        result = self.database_manager.get_message_by_id(message_id)\n        self.assertIn('hello123', result['body'])\n\n    def test_get_attachments(self):\n        attachments = []\n        for i in range(3):\n            attachments.append({\n                'name': f'test{i}.gif',\n                'type': 'image/gif',\n                'data': str(base64.b64encode(np.random.bytes(1024)), 'utf-8')\n            })\n\n        apiParams = {'destination': 'DJ2LS-3', 'body': 'Hello World!', 'attachments': attachments}\n        message = MessageP2P.from_api_params(self.mycall, apiParams)\n        payload = message.to_payload()\n        received_message = MessageP2P.from_payload(payload)\n        received_message_dict = MessageP2P.to_dict(received_message)\n\n        message_id = self.database_manager.add_message(received_message_dict, statistics={})\n        result = self.database_manager_attachments.get_attachments_by_message_id(message_id)\n        attachment_names = [attachment['name'] for attachment in result]\n\n        for i in range(3):\n            self.assertIn(f'test{i}.gif', attachment_names)\n\n    def test_increment_attempts(self):\n        apiParams = {'destination': 'DJ2LS-3', 'body': 'Hello World!', 'attachments': []}\n        message = MessageP2P.from_api_params(self.mycall, apiParams)\n        payload = message.to_payload()\n        received_message = MessageP2P.from_payload(payload)\n        received_message_dict = MessageP2P.to_dict(received_message)\n\n        message_id = self.database_manager.add_message(received_message_dict, statistics={})\n        self.database_manager.increment_message_attempts(message_id)\n\n        result = self.database_manager.get_message_by_id(message_id)\n        self.assertEqual(result[\"attempt\"], 1)\n\n\nif __name__ == '__main__':\n    unittest.main()\n"
  },
  {
    "path": "tests/test_message_p2p.py",
    "content": "import sys\nsys.path.append('freedata_server')\n\nimport unittest\nimport queue\nimport numpy as np\nimport base64\n\nfrom config import CONFIG\nfrom context import AppContext\nfrom message_p2p import MessageP2P\nfrom message_system_db_messages import DatabaseManagerMessages\nfrom event_manager import EventManager\n\n\nclass TestMessageP2P(unittest.TestCase):\n\n    @classmethod\n    def setUpClass(cls):\n        cls.ctx = AppContext('freedata_server/config.ini.example')\n        cls.ctx.config_manager.read()\n\n        cls.event_manager = cls.ctx.event_manager\n        cls.database_manager = DatabaseManagerMessages(cls.ctx)\n        cls.mycall = f\"{cls.ctx.config_manager.config['STATION']['mycall']}-{cls.ctx.config_manager.config['STATION']['myssid']}\"\n\n    @classmethod\n    def tearDownClass(cls):\n        # Wichtig: Alles herunterfahren!\n        cls.ctx.shutdown()\n\n    def test_from_api_params(self):\n        api_params = {\n            'destination': 'DJ2LS-3',\n            'body': 'Hello World!',\n        }\n        message = MessageP2P.from_api_params(self.mycall, api_params)\n        self.assertEqual(message.destination, api_params['destination'])\n        self.assertEqual(message.body, api_params['body'])\n\n    def test_to_payload_with_attachment(self):\n        attachment = {\n            'name': 'test.gif',\n            'type': 'image/gif',\n            'data': str(base64.b64encode(np.random.bytes(1024)), 'utf-8')\n        }\n        apiParams = {\n            'destination': 'DJ2LS-3',\n            'body': 'Hello World!',\n            'attachments': [attachment]\n        }\n        message = MessageP2P.from_api_params(self.mycall, apiParams)\n\n        payload = message.to_payload()\n        received_message = MessageP2P.from_payload(payload)\n\n        self.assertEqual(message.origin, received_message.origin)\n        self.assertEqual(message.destination, received_message.destination)\n        self.assertEqual(len(received_message.attachments), 1)\n        self.assertEqual(received_message.attachments[0]['name'], attachment['name'])\n\n    def test_to_payload_with_attachment_and_database(self):\n        attachment = {\n            'name': 'test.gif',\n            'type': 'image/gif',\n            'data': str(base64.b64encode(np.random.bytes(1024)), 'utf-8')\n        }\n        apiParams = {\n            'destination': 'DJ2LS-3',\n            'body': 'Hello World!',\n            'attachments': [attachment]\n        }\n        message = MessageP2P.from_api_params(self.mycall, apiParams)\n\n        payload = message.to_payload()\n        received_message = MessageP2P.from_payload(payload)\n        received_message_dict = MessageP2P.to_dict(received_message)\n        self.database_manager.add_message(received_message_dict, statistics={})\n\n        result = self.database_manager.get_message_by_id(message.id)\n\n        self.assertEqual(message.origin, received_message.origin)\n        self.assertEqual(message.destination, received_message.destination)\n        self.assertEqual(result[\"is_read\"], True)\n        self.assertEqual(result[\"destination\"], message.destination)\n\n\nif __name__ == '__main__':\n    unittest.main()\n"
  },
  {
    "path": "tests/test_message_protocol.py",
    "content": "import sys\nimport time\nimport unittest\nimport unittest.mock\nimport queue\nimport threading\nimport random\nimport structlog\nimport base64\nimport numpy as np\n\nsys.path.append('freedata_server')\n\nfrom config import CONFIG\nfrom context import AppContext\nfrom event_manager import EventManager\nfrom state_manager import StateManager\nfrom data_frame_factory import DataFrameFactory\nfrom frame_dispatcher import DISPATCHER\nimport codec2\nimport command_message_send\n\n\nclass TestModem:\n    def __init__(self, event_q, state_q):\n        self.data_queue_received = queue.Queue()\n        self.demodulator = unittest.mock.Mock()\n        self.event_manager = EventManager([event_q])\n        self.logger = structlog.get_logger('Modem')\n        self.states = StateManager(state_q)\n\n    def getFrameTransmissionTime(self, mode):\n        samples = 0\n        c2instance = codec2.open_instance(mode.value)\n        samples += codec2.api.freedv_get_n_tx_preamble_modem_samples(c2instance)\n        samples += codec2.api.freedv_get_n_tx_modem_samples(c2instance)\n        samples += codec2.api.freedv_get_n_tx_postamble_modem_samples(c2instance)\n        time = samples / 8000\n        return time\n\n    def transmit(self, mode, repeats: int, repeat_delay: int, frames: bytearray) -> bool:\n        tx_time = self.getFrameTransmissionTime(mode) + 0.1\n        self.logger.info(f\"TX {tx_time} seconds...\")\n        threading.Event().wait(tx_time)\n\n        transmission = {\n            'mode': mode,\n            'bytes': frames,\n        }\n        self.data_queue_received.put(transmission)\n\n\nclass TestMessageProtocol(unittest.TestCase):\n\n    @classmethod\n    def setUpClass(cls):\n        cls.logger = structlog.get_logger(\"TESTS\")\n\n        # ISS\n\n        cls.ctx_ISS = AppContext('freedata_server/config.ini.example')\n        cls.ctx_ISS.TESTMODE = True\n        cls.ctx_ISS.startup()\n\n\n        # IRS\n        cls.ctx_IRS = AppContext('freedata_server/config.ini.example')\n        cls.ctx_IRS.TESTMODE = True\n        cls.ctx_IRS.startup()\n\n        # simulate a busy condition\n        cls.ctx_IRS.state_manager.channel_busy_slot = [True, False, False, False, False]\n        # Frame loss probability in %\n        cls.loss_probability = 0\n\n\n        cls.channels_running = False\n\n    @classmethod\n    def tearDownClass(cls):\n        cls.ctx_IRS.shutdown()\n        cls.ctx_ISS.shutdown()\n\n\n    def channelWorker(self, ctx_a, ctx_b):\n        while self.channels_running:\n            try:\n                # Station A gets the data from its transmit queue\n                transmission = ctx_a.TESTMODE_TRANSMIT_QUEUE.get(timeout=1)\n                print(f\"Station A sending: {transmission[1]}\", len(transmission[1]), transmission[0])\n\n                transmission[1] += bytes(2) # 2bytes crc simulation\n\n                if random.randint(0, 100) < self.loss_probability:\n                    self.logger.info(f\"[{threading.current_thread().name}] Frame lost...\")\n                    continue\n\n                # Forward data from Station A to Station B's receive queue\n                if ctx_b:\n                    ctx_b.TESTMODE_RECEIVE_QUEUE.put(transmission)\n                    self.logger.info(f\"Data forwarded to Station B\")\n\n                frame_bytes = transmission[1]\n                if len(frame_bytes) == 5:\n                    mode_name = \"SIGNALLING_ACK\"\n                else:\n                    mode_name = transmission[0]\n\n                snr = 15\n                ctx_b.service_manager.frame_dispatcher.process_data(\n                    frame_bytes, None, len(frame_bytes), snr, 0, mode_name=mode_name\n                )\n\n            except queue.Empty:\n                continue\n\n        self.logger.info(f\"[{threading.current_thread().name}] Channel closed.\")\n\n    def waitForSession(self, event_queue, outbound=False):\n        key = 'arq-transfer-outbound' if outbound else 'arq-transfer-inbound'\n        while self.channels_running:\n            try:\n                ev = event_queue.get(timeout=2)\n                if key in ev and ('success' in ev[key] or 'ABORTED' in ev[key]):\n                    self.logger.info(f\"[{threading.current_thread().name}] {key} session ended.\")\n                    break\n            except queue.Empty:\n                continue\n\n    def establishChannels(self):\n        self.channels_running = True\n        self.channelA = threading.Thread(target=self.channelWorker,args=[self.ctx_ISS, self.ctx_IRS],name = \"channelA\")\n        self.channelA.start()\n\n        self.channelB = threading.Thread(target=self.channelWorker,args=[self.ctx_IRS, self.ctx_ISS],name = \"channelB\")\n        self.channelB.start()\n\n    def waitAndCloseChannels(self):\n        self.waitForSession(self.ctx_ISS.modem_events, True)\n        self.channels_running = False\n        self.waitForSession(self.ctx_IRS.modem_events, False)\n        self.channels_running = False\n\n    def testMessageViaSession(self):\n        self.loss_probability = 0  # no loss\n        self.establishChannels()\n\n        params = {\n            'destination': \"AA1AAA-1\",\n            'body': 'Hello World',\n        }\n\n        command = command_message_send.SendMessageCommand(self.ctx, params)\n        command.run()\n\n        #del cmd\n        print(self.ctx_ISS.TESTMODE_EVENTS.empty())\n\n        while not self.ctx_ISS.TESTMODE_EVENTS.empty():\n            event = self.ctx_ISS.TESTMODE_EVENTS.get()\n            success = event.get('arq-transfer-outbound', {}).get('success', None)\n            if success is not None:\n                self.assertTrue(success, f\"Test failed because of wrong success: {success}\")\n\nif __name__ == '__main__':\n    unittest.main()\n"
  },
  {
    "path": "tests/test_p2p_connection.py",
    "content": "import sys\nimport time\nimport unittest\nimport unittest.mock\nimport queue\nimport threading\nimport random\nimport socket\nimport structlog\nimport numpy as np\n\nsys.path.append('freedata_server')\n\nfrom config import CONFIG\nfrom data_frame_factory import DataFrameFactory\nfrom state_manager import StateManager\nfrom event_manager import EventManager\nfrom frame_dispatcher import DISPATCHER\nfrom socket_interface import SocketInterfaceHandler\nimport codec2\n\nclass TestModem:\n    def __init__(self, event_q, state_q):\n        self.data_queue_received = queue.Queue()\n        self.demodulator = unittest.mock.Mock()\n        self.event_manager = EventManager([event_q])\n        self.logger = structlog.get_logger('Modem')\n        self.states = StateManager(state_q)\n\n    def getFrameTransmissionTime(self, mode):\n        samples = 0\n        c2instance = codec2.open_instance(mode.value)\n        samples += codec2.api.freedv_get_n_tx_preamble_modem_samples(c2instance)\n        samples += codec2.api.freedv_get_n_tx_modem_samples(c2instance)\n        samples += codec2.api.freedv_get_n_tx_postamble_modem_samples(c2instance)\n        return samples / 8000\n\n    def transmit(self, mode, repeats: int, repeat_delay: int, frames: bytearray) -> bool:\n        tx_time = self.getFrameTransmissionTime(mode) + 0.1\n        self.logger.info(f\"TX {tx_time} seconds...\")\n        threading.Event().wait(tx_time)\n        self.data_queue_received.put({\n            'mode': mode,\n            'bytes': frames,\n        })\n\nclass TestP2PConnectionSession(unittest.TestCase):\n\n    @classmethod\n    def setUpClass(cls):\n        config_manager = CONFIG('freedata_server/config.ini.example')\n        cls.config = config_manager.read()\n        cls.logger = structlog.get_logger(\"TESTS\")\n        cls.channels_running = True\n\n        # ISS Setup\n        cls.iss_event_queue = queue.Queue()\n        cls.iss_state_queue = queue.Queue()\n        cls.iss_modem = TestModem(cls.iss_event_queue, cls.iss_state_queue)\n        conf = config_manager.read()\n        conf['SOCKET_INTERFACE']['cmd_port'] = 8000\n        conf['SOCKET_INTERFACE']['data_port'] = 8001\n        config_manager.write(conf)\n        cls.iss_socket_interface_manager = SocketInterfaceHandler(cls.iss_modem, config_manager, StateManager(queue.Queue()), EventManager([queue.Queue()])).start_servers()\n\n        cls.iss_socket_cmd_client = socket.create_connection(('127.0.0.1', 8000))\n        cls.iss_socket_data_client = socket.create_connection(('127.0.0.1', 8001))\n\n        # IRS Setup\n        cls.irs_event_queue = queue.Queue()\n        cls.irs_state_queue = queue.Queue()\n        cls.irs_modem = TestModem(cls.irs_event_queue, cls.irs_state_queue)\n        conf = config_manager.read()\n        conf['SOCKET_INTERFACE']['cmd_port'] = 9000\n        conf['SOCKET_INTERFACE']['data_port'] = 9001\n        config_manager.write(conf)\n        cls.irs_socket_interface_manager = SocketInterfaceHandler(cls.irs_modem, config_manager, StateManager(queue.Queue()), EventManager([queue.Queue()])).start_servers()\n\n        cls.irs_socket_cmd_client = socket.create_connection(('127.0.0.1', 9000))\n        cls.irs_socket_data_client = socket.create_connection(('127.0.0.1', 9001))\n\n        # Channels\n        cls.iss_frame_dispatcher = DISPATCHER(cls.config, EventManager([queue.Queue()]), StateManager(queue.Queue()), cls.iss_modem, cls.iss_socket_interface_manager)\n        cls.irs_frame_dispatcher = DISPATCHER(cls.config, EventManager([queue.Queue()]), StateManager(queue.Queue()), cls.irs_modem, cls.irs_socket_interface_manager)\n\n        cls.connected_event = threading.Event()\n        cls.loss_probability = 0\n\n        threading.Thread(target=cls.read_from_socket, args=(cls.iss_socket_cmd_client, 'CMD', 'ISS'), daemon=True).start()\n        threading.Thread(target=cls.read_from_socket, args=(cls.iss_socket_data_client, 'DATA', 'ISS'), daemon=True).start()\n        threading.Thread(target=cls.read_from_socket, args=(cls.irs_socket_cmd_client, 'CMD', 'IRS'), daemon=True).start()\n        threading.Thread(target=cls.read_from_socket, args=(cls.irs_socket_data_client, 'DATA', 'IRS'), daemon=True).start()\n\n    @staticmethod\n    def read_from_socket(sock, type=None, direction=None):\n        while True:\n            try:\n                data = sock.recv(48)\n                if not data:\n                    break\n                print(f\"\\nReceived {type}-{direction}: {data.decode().strip()}\\n\")\n            except Exception:\n                break\n\n    def channelWorker(self, modem_transmit_queue, frame_dispatcher):\n        while self.channels_running:\n            try:\n                transmission = modem_transmit_queue.get(timeout=1)\n                if random.randint(0, 100) < self.loss_probability:\n                    continue\n                frame_dispatcher.process_data(transmission['bytes'], None, len(transmission['bytes']), 0, 0, \"test\")\n            except queue.Empty:\n                continue\n\n    def DisabledtestConnect(self):\n        self.channels_running = True\n\n        self.iss_to_irs_channel = threading.Thread(target=self.channelWorker, args=(self.iss_modem.data_queue_received, self.irs_frame_dispatcher))\n        self.iss_to_irs_channel.start()\n\n        self.irs_to_iss_channel = threading.Thread(target=self.channelWorker, args=(self.irs_modem.data_queue_received, self.iss_frame_dispatcher))\n        self.irs_to_iss_channel.start()\n\n        time.sleep(2)\n\n        cmd = 'CONNECT AA1AAA-1 BB2BBB-2 2300\\r\\n'\n        self.iss_socket_cmd_client.sendall(cmd.encode('utf-8'))\n\n        data = 'HELLO WORLD TEST\\r\\n'\n        self.iss_socket_data_client.sendall(data.encode('utf-8'))\n\n        time.sleep(5)  # wait for some packets to go through\n\n        self.channels_running = False\n        self.iss_to_irs_channel.join()\n        self.irs_to_iss_channel.join()\n\n    @classmethod\n    def tearDownClass(cls):\n        cls.iss_socket_cmd_client.close()\n        cls.iss_socket_data_client.close()\n        cls.irs_socket_cmd_client.close()\n        cls.irs_socket_data_client.close()\n\nif __name__ == '__main__':\n    unittest.main()\n"
  },
  {
    "path": "tests/test_protocols.py",
    "content": "import sys\nsys.path.append('freedata_server')\n\nimport unittest\nfrom context import AppContext\nimport queue\n\nfrom command_ping import PingCommand\nfrom command_cq import CQCommand\nimport frame_handler\nimport frame_dispatcher\nclass TestProtocols(unittest.TestCase):\n\n    @classmethod\n    def setUpClass(cls):\n        # Create a full AppContext\n        cls.ctx = AppContext('freedata_server/config.ini.example')\n        cls.ctx.startup()\n\n        frame_handler.TESTMODE = True\n\n        cls.config = cls.ctx.config_manager.config\n        cls.state_manager = cls.ctx.state_manager\n        cls.event_manager = cls.ctx.event_manager\n        cls.modem = cls.ctx.rf_modem  # if already started, otherwise create\n        cls.frame_dispatcher = frame_dispatcher.DISPATCHER(cls.ctx)\n\n    @classmethod\n    def tearDownClass(cls):\n        # Clean shutdown\n        cls.ctx.shutdown()\n\n    def shortcutTransmission(self, frame_bytes):\n        \"\"\"Inject a frame directly into the frame dispatcher.\"\"\"\n        self.frame_dispatcher.process_data(frame_bytes, None, len(frame_bytes), 0, 0, mode_name=\"TEST\")\n\n    def assertEventReceivedType(self, event_type):\n        \"\"\"Assert that an event with a specific type was received.\"\"\"\n        ev = self.ctx.event_manager.queues[0].get(timeout=5)\n        self.assertIn('type', ev)\n        self.assertEqual(ev['type'], event_type)\n\n    def testPingWithAck(self):\n        # Prepare and transmit a PING\n        api_params = {\"dxcall\": \"AA1AAA-1\"}\n        ping_cmd = PingCommand(self.ctx, api_params)\n        frame = ping_cmd.test(self.ctx)\n\n        # Send frame to dispatcher\n        self.shortcutTransmission(frame)\n        self.assertEventReceivedType('PING')\n\n        # Simulate receiving the ACK\n        event_frame = self.event_manager.queues[0].get(timeout=5)\n        self.shortcutTransmission(event_frame)\n        self.assertEventReceivedType('PING_ACK')\n\n        print(\"✅ PING/PING_ACK successfully verified.\")\n\n    def testCQWithQRV(self):\n        self.ctx.config_manager.config['STATION']['respond_to_cq'] = True\n        self.state_manager.set_channel_busy_condition_codec2(False)\n\n        # Prepare and transmit a CQ\n        api_params = {}\n        cq_cmd = CQCommand(self.ctx, api_params)\n        frame = cq_cmd.test(self.event_manager.queues[0])\n\n        # Send frame to dispatcher\n        self.shortcutTransmission(frame)\n        self.assertEventReceivedType('CQ')\n\n        # Simulate receiving the QRV\n        event_frame = self.event_manager.queues[0].get(timeout=5)\n        self.shortcutTransmission(event_frame)\n        self.assertEventReceivedType('QRV')\n\n        print(\"✅ CQ/QRV successfully verified.\")\n\nif __name__ == '__main__':\n    unittest.main()\n"
  },
  {
    "path": "tests/test_server.py",
    "content": "import unittest\nfrom subprocess import Popen, PIPE\nimport shlex, os\nimport requests\nimport time\nimport json\n# API Server integration testst\nclass TestIntegration(unittest.TestCase):\n\n    process = None\n    url = \"http://127.0.0.1:5000\"\n\n    @classmethod\n    def setUpClass(cls):\n        cmd = \"python3 freedata_server/server.py\"\n        my_env = os.environ.copy()\n        my_env[\"FREEDATA_CONFIG\"] = \"freedata_server/config.ini.example\"\n        cls.process = Popen(shlex.split(cmd), stdin=PIPE, env=my_env)\n        cls.wait_for_server(cls.url)\n        time.sleep(5)\n\n    @classmethod\n    def wait_for_server(cls, url, timeout=30):\n        \"\"\"Wait for the server to start\"\"\"\n        start_time = time.time()\n        while time.time() - start_time < timeout:\n            try:\n                r = requests.get(url)\n                if r.status_code == 200:\n                    return True\n            except requests.exceptions.ConnectionError:\n                time.sleep(1)\n        raise RuntimeError(\"Server not ready after waiting for 30 seconds\")\n\n    @classmethod\n    def tearDownClass(cls):\n        cls.process.stdin.close()\n        cls.process.terminate()\n        cls.process.wait()\n\n    def test_index(self):\n        r = requests.get(self.url)\n        self.assertEqual(r.status_code, 200)\n\n        data = r.json()\n        self.assertEqual(data['api_version'], 3)\n\n    def test_config_get(self):\n        r = requests.get(self.url + '/config')\n        self.assertEqual(r.status_code, 200)\n\n        config = r.json()\n        self.assertIsInstance(config, dict)\n\n        self.assertIn('NETWORK', config)\n        self.assertIn('STATION', config)\n        self.assertIn('AUDIO', config)\n        self.assertIn('MODEM', config)\n        self.assertIn('RADIO', config)\n\n    def test_config_post(self):\n        config = {'STATION': {'mygrid' : 'JN48ea'}}\n        r = requests.post(self.url + '/config', \n                          headers={'Content-type': 'application/json'},\n                          data = json.dumps(config))\n        self.assertEqual(r.status_code, 200)\n\n        r = requests.get(self.url + '/config')\n        self.assertEqual(r.status_code, 200)\n        config = r.json()\n        self.assertEqual(config['NETWORK']['modemport'], 5000)\n\nif __name__ == '__main__':\n    unittest.main()\n"
  },
  {
    "path": "tools/Linux/FreeDATA.desktop",
    "content": "[Desktop Entry]\nName=FreeDATA\nComment=Amateur Radio Software\n# Change USER to your user account name and edjust the path as needed\nIcon=/home/deej/freedata/FreeDATA/freedata_gui/public/favicon-32x32.png\nTerminal=true\nExec=bash -c 'cd ~/freedata; bash ./run-freedata-linux.sh'\nType=Application\nCategories=AudioVideo;Audio;HamRadio;\nStartupNotify=true\n"
  },
  {
    "path": "tools/Linux/README-Desktop-icon.txt",
    "content": "Copy the file \"FreeDATA.Desktop\" to the \"Desktop\" directory under your home directory.\n\ncp FreeDATA.Desktop ~/Desktop\n\nEdit ~/Desktop/FreeDATA.Desktop and change \"USER\" in the Icon line \nto your login account name and adjust the path to the FreeDATA icon as needed.\n\nIf you are running on as Raspberry Pi, open the File Browser (the yellow \"Folder\" icon at the top of the screen).\n\nGo to Edit, Preferences.\n\nClick the box next to \"Don't ask options on launch executable file\".\n\nClick \"Close\" in the bottom right.\n\nLogout then log back in, and then you should be able to double click the \"FreeDATA\" icon to run the program.\n\n"
  },
  {
    "path": "tools/Linux/README.txt",
    "content": "Suggested instructions for using the install and run scripts.\n\nBefore running the install script, ensure that your account is in the\n\"dialout\" group, and that your account has \"sudo\" privileges.  Refer to \nyour particular OS variant for instructions on how to do this.\n\nTo install the FreeDATA software:\n\nOpen a terminal shell and run the following commands:\n\nmkdir ~/freedata\n\ncd ~/freedata\n\nwget https://raw.githubusercontent.com/DJ2LS/FreeDATA/main/tools/Linux/install-freedata-linux.sh\n\nwget https://raw.githubusercontent.com/DJ2LS/FreeDATA/main/tools/Linux/run-freedata-linux.sh\n\nTo install from the main FreeDATA branch, run:\nbash install-freedata-linux.sh\n\nor to install from the develop FreeDATA branch, run:\nbash install-freedata-linux.sh develop\n\n\nTo run the FreeDATA software:\n\nOpen a terminal shell and run the following commands:\n\ncd ~/freedata\n\nbash run-freedata-linux.sh\n\n\nTo view debugging output while running FreeDATA:\n\nOpen a terminal shell.\n\ncd ~/freedata\n\nTo view the GUI debug output:\ntail -f FreeDATA-client.log\n\nTo view the server debug output:\ntail -f FreeDATA-server.log\n\n\nThe run script looks for the config.ini file at: \n$HOME/.config/FreeDATA/config.ini\n\nIf it isn't found, we place a copy of config.ini.example into that location\nto give FreeDATA something to start with.  Changes to the defaults can be\nmade within the FreeDATA GUI.\n"
  },
  {
    "path": "tools/Linux/install-freedata-linux.sh",
    "content": "#!/bin/bash\n#\n# Simple script to install and also update FreeDATA in Linux\n# To update FreeDATA, simply re-run the script in the same location\n#\n# Please note this script is not meant to cover all possible installations\n# but hopefully can be used as a guide if you are installing on other \n# flavours of Linux\n#\n# Currently tested in Debian [11, 12], Ubuntu [22.04, 24.04], Fedora [40,41]\n# Untested additions for Linux Mint [21.3]\n# \n# First option passed is the branch of FreeDATA to run.  Defaults to main.\n# Second option passed is the version of Hamlib to use.  Defaults to 4.5.5.\n#\n# Run this script by typing in the terminal (without the quotes):\n# \"bash install-freedata-linux.sh (FreeDATA-branch) (hamlib-version)\"\n#\n# Examples:\n#\n# Install FreeDATA main branch and default Hamlib version:\n# \"bash install-freedata-linux.sh\"\n#\n# Install FreeDATA develop branch and default Hamlib version:\n# \"bash install-freedata-linux.sh develop\"\n#\n# Install FreeDATA develop branch and Hamlib version 4.6.2:\n# \"bash install-freedata-linux.sh develop 4.6.2\"\n#\n# Install FreeDATA main branch and Hamlib version 4.6.2:\n# \"bash install-freedata-linux.sh main 4.6.2\"\n#\n# This script creates three subdirectories in the directory it is run\n# FreeDATA: Contains the FreeDATA software\n# FreeDATA-venv: Contains the Python virtual environment\n# FreeDATA-hamlib: Contains the hamlib libraries\n#\n# It also installs nvm and node into $HOME/.nvm\n#\n# FreeDATA config file is stored in $HOME/.config/FreeDATA/config.ini\n# See the run-freedata-linux.sh for more details\n#\n# Dj Merrill - N1JOV\n#\n#\n# Changelog:\n# 2.8:\t16 Sep 2025\n#\tAdd initial support for Debian 13\n#\n# 2.7:\t14 Sep 2025 (deej)\n#\tAdd comment that this script will also update FreeDATA\n#\n# 2.6:\t02 May 2025 (deej)\n# \tAllow any Hamlib released version as a second command line argument.\n#\tNote this requires specifying the FreeDATA branch as the\n#\tfirst argument\n#\n# 2.5:\t29 Apr 2025 (deej)\n# \tAllow any FreeDATA branch\n#\n# 2.4:\t26 Apr 2025 (petrkr)\n# \tAdd python3-dev package for debian based distros. Fixes build PyAudio\n#\n# 2.3:\t01 Feb 2025 (deej)\n# \tAdd untested additions for Linux Mint 21.3\n#\n# 2.2:\t01 Feb 2025 (deej)\n# \tCheck if account is in the dialout group\n#\tAdd a warning about account needing to be in sudoers\n#\n# 2.1:\t01 Feb 2025 (deej)\n# \tAdd support for Fedora 41\n#\n# 2.0:\t04 Oct 2024 (deej)\n# \tAdd support for Fedora 40\n#\n# 1.9:\t14 Sep 2024 (deej)\n# \tTweak OS version checking section to handle minor OS revisions better\n#\n# 1.8:\t23 July 2024 ( DJ2LS )\n# \tAdd support for browser based gui\n#\n# 1.7:\t31 May 2024 ( DJ2LS )\n# \tAdd support for version specific setup\n#\n# 1.6:\t22 May 2024\n#\tReflect directory name changes in prep for merging develop to main\n#\n# 1.5:\t12 May 2024\n#\t\"dr-freedata-001\" branch of codec2 merged to main so we don't\n#\tneed to checkout that branch specifically\n#\n# 1.4:\t05 May 2024\n#\tChange to \"dr-freedata-001\" branch of codec2 for develop mode\n#\tAdded comments in scripts and README.txt for config file location\n#\tIf hamlib 4.5.5 is already in FreeDATA-hamlib, don't reinstall\n#\n# 1.3:\t02 May 2024\n#\tRemove dependency on distro supplied hamlib library which can be old\n#\tDownload and install hamlib 4.5.5 into ./FreeDATA-hamlib\n#\tAdd support for Debian 11 and Ubuntu 22.04\n#\n# 1.2:\t30 Apr 2024\n#\tRemove dependency on distro supplied nodejs which can be too old\n#\tInstall nodejs version 20 into ~/.nvm\n#\n# 1.1:\t26 Apr 2024\n#\tAdd support for installing from FreeDATA develop branch\n#\tAdd support for Ubuntu 24.04\n#\t\n# 1.0:\tInitial release 25 Apr 2024 supporting Debian 12\n#\n\n# Account needs to be in the dialout group for some radios to work\ncheckdial=`grep -i $USER /etc/group | grep -i dialout`\n\nif [ -z \"$checkdial\" ];\nthen\n\techo \"Please add your account\" $USER \"to the dialout group in /etc/group and then re-run this script.\"\n\texit 1;\nfi\n\ncase $1 in\n   \"\" | \"main\")\n\tbranch=\"main\"\n   ;;\n   *)\n   branch=$1\n   ;;\nesac\n\nif [ ! -z \"$2\" ];\nthen\n\thamlibver=$2\nelse\n\thamlibver=\"4.5.5\"\nfi\n\nosname=`grep -E '^(NAME)=' /etc/os-release | cut -d\\\" -f2`\nosversion=`grep -E '^(VERSION_ID)=' /etc/os-release | cut -d\\\" -f2`\n\necho \"\"\necho \"Running on\" $osname \"version\" $osversion\necho \"Installing FreeDATA from branch\" $branch \"with Hamlib version\" $hamlibver\necho \"\"\n\necho \"*************************************************************************\"\necho \"*************************************************************************\"\necho \"Installing software prerequisites\"\necho \"If prompted, enter your password to run the sudo command\"\necho \"\"\necho \"If the sudo command gives an error saying Sorry, or not in sudoers file,\"\necho \"or something to that effect, check to make sure your account has sudo\"\necho \"privileges.  This generally means a listing in /etc/sudoers or in a file\"\necho \"in the directory /etc/sudoers.d\"\necho \"*************************************************************************\"\n\ncase $osname in\n   \"Debian GNU/Linux\")\n\tcase $osversion in\n\t   \"11\" | \"12\" | \"13\")\n\t\tsudo apt install --upgrade -y fonts-noto-color-emoji git build-essential cmake python3 portaudio19-dev python3-pyaudio python3-pip python3-colorama python3-venv wget python3-dev\n\t   ;;\n\n\t   *)\n\t   \techo \"*************************************************************************\"\n\t   \techo \"This version of Linux is not yet supported by this script.\"\n\t   \techo $osname $osversion\n\t   \techo \"*************************************************************************\"\n\t\texit 1\n\t   ;;\n\n\tesac\n\n   ;;\n\n   \"Ubuntu\" | \"Linux Mint\")\n\tcase $osversion in\n\t   \"21.3\" | \"22.04\" | \"24.04\")\n\t\tsudo apt install --upgrade -y fonts-noto-color-emoji git build-essential cmake python3 portaudio19-dev python3-pyaudio python3-pip python3-colorama python3-venv wget python3-dev\n\t   ;;\n\n\t   *)\n\t   \techo \"*************************************************************************\"\n\t   \techo \"This version of Linux is not yet supported by this script.\"\n\t   \techo $osname $osversion\n\t   \techo \"*************************************************************************\"\n\t\texit 1\n\t   ;;\n\tesac\n   ;;\n   \"Fedora Linux\")\n\tcase $osversion in\n\t   \"VERSION_ID=40\" | \"VERSION_ID=41\")\n\t\tsudo dnf install -y git cmake make automake gcc gcc-c++ kernel-devel wget portaudio-devel python3-pyaudio python3-pip python3-colorama python3-virtualenv google-noto-emoji-fonts python3-devel\n\t   ;;\n\tesac\n   ;;\n\n   *)\n\techo \"*************************************************************************\"\n\techo \"This version of Linux is not yet supported by this script.\"\n\techo $osname $osversion\n\techo \"*************************************************************************\"\n\texit 1\n   ;;\nesac\n\necho \"*************************************************************************\"\necho \"Installing nvm and node v 20 into ~/.nvm\"\necho \"*************************************************************************\"\nwget https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh\nif [ -f \"install.sh\" ];\nthen\n\tXDG_CONFIG_HOME=\"\"\n\tchmod 750 install.sh\n\t./install.sh\nelse\n\techo \"Something went wrong.  nvm install.sh not downloaded.\"\n\texit 1\nfi\n\nif [ -f \"$HOME/.nvm/bash_completion\" ];\nthen\n\texport NVM_DIR=\"$HOME/.nvm\"\n\t[ -s \"$NVM_DIR/nvm.sh\" ] && \\. \"$NVM_DIR/nvm.sh\"\n\t[ -s \"$NVM_DIR/bash_completion\" ] && \\. \"$NVM_DIR/bash_completion\"\n\tnvm install 20\n\techo \"npm is version\" `npm -v`\n\techo \"node is version\" `node -v`\n\trm -f install.sh\nelse\n\techo \"Something went wrong.  $HOME/.nvm environment not created properly.\"\n\texit 1\nfi\n\necho \"*************************************************************************\"\necho \"Checking for hamlib\" $hamlibver \"FreeDATA-hamlib\"\necho \"*************************************************************************\"\n\nif [ -d \"FreeDATA-hamlib.old\" ];\nthen\n\trm -rf FreeDATA-hamlib.old\nfi\n\nif [ -d \"FreeDATA-hamlib\" ];\nthen\n\tif [ -f \"./FreeDATA-hamlib/bin/rigctl\" ];\n\tthen\n\t\tcheckhamlibver=`./FreeDATA-hamlib/bin/rigctl --version | cut -f3 -d\" \"`\n\t\tif [ \"$checkhamlibver\" != \"$hamlibver\" ];\n\t\tthen\n\t\t\tmv FreeDATA-hamlib FreeDATA-hamlib.old\n\t\telse\n\t\t\techo \"Hamlib\" $hamlibver \"found, no installation needed.\"\n\t\tfi\n\telse\n\t\tmv FreeDATA-hamlib FreeDATA-hamlib.old\n\tfi\nfi\n\nif [ ! -d \"FreeDATA-hamlib\" ];\nthen\n\techo \"Installing hamlib\" $hamlibver \"into FreeDATA-hamlib\"\n\tcurdir=`pwd`\n\twget https://github.com/Hamlib/Hamlib/releases/download/$hamlibver/hamlib-$hamlibver.tar.gz\n\tif [ -f \"hamlib-$hamlibver.tar.gz\" ];\n\tthen\n\t\ttar -xplf hamlib-$hamlibver.tar.gz\n\telse\n\t\techo \"Something went wrong.  hamlib-\"$hamlibver\".tar.gz not downloaded.\"\n\t\texit 1\n\tfi\n\tif [ -d \"hamlib-$hamlibver\" ];\n\tthen\n\t\tcd hamlib-$hamlibver\n\t\t./configure --prefix=$curdir/FreeDATA-hamlib\n\t\tmake\n\t\tmake install\n\t\tcd ..\n\telse\n\t\techo \"Something went wrong.  hamlib-\"$hamlibver\" directory not found.\"\n\t\texit 1\n\tfi\n\tif [ ! -f \"$curdir/FreeDATA-hamlib/bin/rigctl\" ];\n\tthen\n\t\techo \"Something went wrong.\" $curdir\"/FreeDATA.hamlib/bin/rigctl not found.\"\n                exit 1\n\telse\n\t\techo \"Cleaning up files from hamlib build.\"\n\t\trm -f hamlib-$hamlibver.tar.gz\n\t\trm -rf hamlib-$hamlibver\n        fi\nfi\n\necho \"*************************************************************************\"\necho \"Checking for old FreeDATA directories\"\necho \"*************************************************************************\"\nif [ -d \"FreeDATA.old\" ];\nthen\n\trm -rf FreeDATA.old\nfi\nif [ -d \"FreeDATA-venv.old\" ];\nthen\n\trm -rf FreeDATA-venv.old\nfi\nif [ -d \"FreeDATA\" ];\nthen\n\tmv FreeDATA FreeDATA.old\nfi\nif [ -d \"FreeDATA-venv\" ];\nthen\n\tmv FreeDATA-venv FreeDATA-venv.old\nfi\n\necho \"*************************************************************************\"\necho \"Creating Python Virtual Environment FreeDATA-venv\"\necho \"*************************************************************************\"\npython3 -m venv FreeDATA-venv\n\necho \"*************************************************************************\"\necho \"Activating the Python Virtual Environment\"\necho \"*************************************************************************\"\nif [ -f \"./FreeDATA-venv/bin/activate\" ];\nthen\n\tsource ./FreeDATA-venv/bin/activate\nelse\n\techo \"Something went wrong.  FreeDATA-venv virtual environment not created properly.\"\n\texit 1\nfi\n\necho \"*************************************************************************\"\necho \"Updating pip and wheel\"\necho \"*************************************************************************\"\npip install --upgrade pip wheel\n\necho \"*************************************************************************\"\necho \"Downloading the FreeDATA software from the git repo\"\necho \"*************************************************************************\"\nif [ \"$branch\" == \"develop\" ];\nthen\n  echo \"Downloading development version\"\n  git clone https://github.com/DJ2LS/FreeDATA.git -b develop\nelse \n    echo \"Downloading specific version: $branch\"\n    git clone https://github.com/DJ2LS/FreeDATA.git -b $branch\nfi\n\necho \"*************************************************************************\"\necho \"Changing Directory into FreeDATA\"\necho \"*************************************************************************\"\nif [ -d \"FreeDATA\" ];\nthen\n\tcd FreeDATA\nelse\n\techo \"Something went wrong.  FreeDATA software not downloaded from git.\"\n\texit 1\nfi\n\necho \"*************************************************************************\"\necho \"Installing required Python programs into the virtual environment\"\necho \"*************************************************************************\"\npip install --upgrade -r requirements.txt\n\necho \"*************************************************************************\"\necho \"Changing into the server directory\"\necho \"*************************************************************************\"\ncd freedata_server/lib\n\necho \"*************************************************************************\"\necho \"Checking and removing any old codec2 libraries\"\necho \"*************************************************************************\"\nif [ -d \"codec2\" ];\nthen\n\tmv codec2 codec2.old\nfi\n\necho \"*************************************************************************\"\necho \"Downloading the latest codec library\"\necho \"*************************************************************************\"\ngit clone https://github.com/drowe67/codec2.git\n\necho \"*************************************************************************\"\necho \"Changing into the codec2 library directory\"\necho \"*************************************************************************\"\nif [ -d \"codec2\" ];\nthen\n\tcd codec2\nelse\n\techo \"Something went wrong.  Codec2 software not downloaded from git.\"\n\texit 1\nfi\n\t\necho \"*************************************************************************\"\necho \"Setting up the codec2 build\"\necho \"*************************************************************************\"\nmkdir build_linux\ncd build_linux\n\necho \"*************************************************************************\"\necho \"Building the codec2 library\"\necho \"*************************************************************************\"\ncmake ..\nmake -j4\n\nif [ ! -f \"src/libcodec2.so.1.2\" ];\nthen\n\techo \"Something went wrong.  Codec2 software not built.\"\n\texit 1\nfi\n\necho \"*************************************************************************\"\necho \"Building the FreeDATA GUI frontend\"\necho \"*************************************************************************\"\ncd ../../../..\ncd freedata_gui\nnpm i\n#npm audit fix --force\n#npm i\nnpm run build\n\n# Return to the directory we started in\ncd ../..\n"
  },
  {
    "path": "tools/Linux/run-freedata-linux.sh",
    "content": "#!/bin/bash\n#\n# Simple script to run FreeDATA in Linux\n# Dj Merrill - N1JOV\n#\n# Run this script in the directory that contains the \"FreeDATA\", \n# \"FreeDATA-venv\", and \"FreeDATA-hamlib\" directories \n# created by the install-freedata-linux.sh script\n#\n# Two log files are created in this directory:\n# FreeDATA-server.log: debug output from the server process\n# FreeDATA-client.log: debug output from the GUI front end\n# To view live, \"tail -f FreeDATA-server.log\" or \"tail -f FreeDATA-client.log\"\n#\n# We expect the config.ini file to be at $HOME/.config/FreeDATA/config.ini\n# If it isn't found, we copy config.ini.example there\n#\n# 1.9:  09 May 2025 (deej)\n#\tAdd a check to make sure the FD server terminated properly\n# 1.8:  22 May 2024 (DJ2LS)\n#\tadd support for browser based gui\n# 1.7:  22 May 2024\n#\tSlightly change the way we shutdown the server\n# 1.6:  05 May 2024\n#\tDon't stop rigctld if it was started separate from FreeDATA\n#\tWe only want to clean up FreeDATA initiated processes\n# 1.5:  05 May 2024\n#\tCheck for rigctld at exit and stop it if needed\n# 1.4:  05 May 2024\n#\tAdded comments on how to view log outputs in realtime\n# 1.3:  02 May 2024\n#\tAdd support for hamlib installed by FreeDATA install script\n# 1.2:  30 Apr 2024\n# 1.1:  26 Apr 2024\n# 1.0:\t25 Apr 2024 Initial release\n#\n\n# Set path to find our hamlib install\nexport PATH=./FreeDATA-hamlib/bin:$PATH\nexport LD_LIBRARY_PATH=./FreeDATA-hamlib/lib:$LD_LIBRARY_PATH\n\nif [ ! -f \"FreeDATA-hamlib/bin/rigctl\" ];\nthen\n\techo \"Something went wrong.  FreeDATA-hamlib/bin/rigctl not found.\"\n\texit 1\nfi\n\n# Activate the Python Virtual Environment\nsource ./FreeDATA-venv/bin/activate\n\n# Check to see if there is an old server running, and stop it if there is\ncheckoldserver=`ps auxw | grep FreeDATA | grep server.py`\n\nif [ ! -z \"$checkoldserver\" ];\nthen\n\toldserverpid=`echo $checkoldserver | cut -d\" \" -f2`\n\techo \"*************************************************************************\"\n\techo \"Found old FreeDATA server at PID\" $oldserverpid \"- stopping it\"\n\techo \"*************************************************************************\"\n\tkill $oldserverpid\n\tsleep 7s\nfi\n\n# Check for an already running rigctld process\n# This was probably started by other means so we should leave this \n# alone when we exit\ncheckrigexist=`ps auxw | grep -i rigctld | grep -v grep`\n\necho \"*************************************************************************\"\necho \"Running the FreeDATA server processes\"\necho \"*************************************************************************\"\n\n# New versions use freedata_server, old version use modem\nif [ -d \"FreeDATA/freedata_server\" ];\nthen\n\tserverdir=\"FreeDATA/freedata_server\"\nelse\n\tserverdir=\"FreeDATA/modem\"\nfi\n\nif [ ! -d \"$HOME/.config/FreeDATA\" ];\nthen\n\tmkdir -p $HOME/.config/FreeDATA\nfi\nif [ ! -f \"$HOME/.config/FreeDATA/config.ini\" ];\nthen\n\techo \"*************************************************************************\"\n\techo \"No config file found.  Copying example config file to\"\n\techo $HOME/.config/FreeDATA/config.ini\n\techo \"*************************************************************************\"\n\tcp $serverdir/config.ini.example $HOME/.config/FreeDATA/config.ini\nfi\n\nFREEDATA_CONFIG=$HOME/.config/FreeDATA/config.ini FREEDATA_DATABASE=$HOME/.config/FreeDATA/freedata-messages.db python3 $serverdir/server.py > FreeDATA-server.log 2>&1 &\nserverpid=$!\necho \"Process ID of FreeDATA server is\" $serverpid\n\n\n\n\n# Function to handle Ctrl-C\nfunction ctrl_c() {\n    echo \"*************************************************************************\"\n    echo \"Stopping the server processes\"\n    echo \"*************************************************************************\"\n    kill -INT $serverpid\n\n    # Give time for the server to clean up rigctld if needed\n    sleep 5s\n\n    # If rigctld was already running before starting FreeDATA, leave it alone\n    # otherwise we should clean it up\n    if [ -z \"$checkrigexist\" ]; then\n        # rigctld was started by FreeDATA and should have stopped when the\n        # server exited.  If it didn't, stop it now.\n        checkrigctld=$(ps auxw | grep -i rigctld | grep -v grep)\n        if [ ! -z \"$checkrigctld\" ]; then\n            echo \"*************************************************************************\"\n            echo \"Stopping rigctld\"\n            echo \"*************************************************************************\"\n            rigpid=$(echo $checkrigctld | awk '{print $2}')\n            kill $rigpid\n        fi\n    fi\n\n    # Check to make sure the server stopped, and terminate if needed\n    checkfdserver=`ps auxw | grep $serverpid | grep -i FreeDATA | grep -v grep`\n    if [ ! -z \"$checkfdserver\" ]; then\n        echo \"*************************************************************************\"\n        echo \"Stopping FreeDATA server\"\n        echo \"*************************************************************************\"\n        kill $serverpid\n    fi\n\n    # Return to the directory we started in\n    cd ..\n\n    # Exit the script\n    exit 0\n}\n\n\n# Trap Ctrl-C (SIGINT) and call the ctrl_c function\ntrap ctrl_c SIGINT\n\n# Wait indefinitely for Ctrl-C\necho \"Server started with PID $serverpid. Press Ctrl-C to stop.\"\nwhile true; do\n    sleep 1\ndone\n\n"
  },
  {
    "path": "tools/Windows/GUI-Install-Requirements.bat",
    "content": "@echo off\nREM Place this batch file in FreeData/freedata_gui and then run it\nREM ie. c:\\FD-Src\\freedata_gui\necho Install requirements for GUI...\n\ncall npm install\n\npause\n"
  },
  {
    "path": "tools/Windows/GUI-Launch.bat",
    "content": "REM Place this batch file in FreeData/freedata_gui and then run it\nREM ie. c:\\FD-Src\\freedata_gui\n\ncall npm start\npause\n"
  },
  {
    "path": "tools/Windows/GUI-Update-Requirements.bat",
    "content": "@echo off\nREM Place this batch file in FreeData/freedata_gui and then run it\nREM ie. c:\\FD-Src\\freedata_gui\necho Check for and install updated requirements\n\ncall npm update\n\npause\n"
  },
  {
    "path": "tools/Windows/Modem-Install-Requirements.bat",
    "content": "REM Place this batch file in FreeData/freedata_server and then run it\nREM ie. c:\\FD-Src\\freedata_server\n\npython -m pip install -r ..\\requirements.txt\npause\n"
  },
  {
    "path": "tools/Windows/Modem-Launch.bat",
    "content": "REM Place this batch file in FreeData/freedata_server and then run it\nREM ie. c:\\FD-Src\\freedata_server\n\nREM Set environment variable to let modem know where to find config, change if you need to specify a different config\nset FREEDATA_CONFIG=.\\config.ini \n\nREM launch freedata_server\npython server.py\n\npause\n"
  },
  {
    "path": "tools/Windows/Modem-Update-Requirements.bat",
    "content": "REM Place this batch file in FreeData/freedata_server and then run it to update requirements\nREM ie. c:\\FD-Src\\freedata_server\n\npython -m pip install --upgrade -r ..\\requirements.txt\npause\n"
  },
  {
    "path": "tools/Windows/Modem-list-audio-devs.bat",
    "content": "@echo off\nREM PLace in modem directory and run to retrieve list of audio devices; you'll need the CRC for the config.ini\n\npython ..\\tools\\list_audio_devices.py\n\npause"
  },
  {
    "path": "tools/Windows/copy-files.bat",
    "content": "@echo off\nREM This will copy the helper batch files to the approriate places for you\n\necho Copying GUI scripts to GUI directory\ncopy GUI* ..\\..\\freedata_gui\\\n\necho Copying Modem scripts to Modem directory\ncopy MODEM* ..\\..\\freedata_server\\\n\npause"
  },
  {
    "path": "tools/custom_mode_tests/create_custom_ofdm_mod.py",
    "content": "\"\"\"\n\nFreeDATA % python3.11 tools/custom_mode_tests/create_custom_ofdm_mod.py | ./freedata_server/lib/codec2/build_osx/src/freedv_data_raw_rx --vv --framesperburst 1 DATAC1 - /dev/null\n\n\n\"\"\"\nimport sys\nsys.path.append('freedata_server')\nimport numpy as np\n\nmodem_path = '/../../freedata_server'\nif modem_path not in sys.path:\n    sys.path.append(modem_path)\n\n\n\n#import freedata_server.codec2 as codec2\nfrom codec2 import *\nimport threading\nimport modulator as modulator\nimport demodulator as demodulator\nimport config as config\n\nMODE = FREEDV_MODE.datac1\ndef demod(txbuffer):\n    c2instance = open_instance(MODE.value)\n    print(f\"DEMOD: {MODE}\")\n    # get bytes per frame\n    bytes_per_frame = int(\n        api.freedv_get_bits_per_modem_frame(c2instance) / 8\n    )\n    # create byte out buffer\n    bytes_out = ctypes.create_string_buffer(bytes_per_frame)\n\n    # set initial frames per burst\n    api.freedv_set_frames_per_burst(c2instance, 1)\n\n    # init audio buffer\n    audiobuffer = audio_buffer(len(txbuffer))\n\n\n    # get initial nin\n    nin = api.freedv_nin(c2instance)\n    audiobuffer.push(txbuffer)\n    threading.Event().wait(0.01)\n\n\n    while audiobuffer.nbuffer >= nin:\n        # demodulate audio\n        nbytes = api.freedv_rawdatarx(\n            freedv, bytes_out, audiobuffer.buffer.ctypes\n        )\n        # get current freedata_server states and write to list\n        # 1 trial\n        # 2 sync\n        # 3 trial sync\n        # 6 decoded\n        # 10 error decoding == NACK\n        rx_status = api.freedv_get_rx_status(freedv)\n        #print(rx_status)\n\n        # decrement codec traffic counter for making state smoother\n\n        audiobuffer.pop(nin)\n        nin = api.freedv_nin(freedv)\n        if nbytes == bytes_per_frame:\n            print(\"DECODED!!!!\")\n\n    print(\"---------------------------------\")\n    print(\"ENDED\")\n    print(nin)\n    print(audiobuffer.nbuffer)\n\nconfig = config.CONFIG('config.ini')\nmodulator = modulator.Modulator(config.read())\n#freedv = open_instance(FREEDV_MODE.data_ofdm_2438.value)\n#freedv = open_instance(FREEDV_MODE.datac14.value)\n#freedv = open_instance(FREEDV_MODE.datac1.value)\nfreedv = open_instance(MODE.value)\nprint(f\"MODULATE: {MODE}\")\n#freedv = open_instance(FREEDV_MODE.data_ofdm_500.value)\n#freedv = open_instance(FREEDV_MODE.qam16c2.value)\n\n\nframes = 1\ntxbuffer = bytearray()\n\nfor frame in range(0,frames):\n    #txbuffer = modulator.transmit_add_silence(txbuffer, 1000)\n    txbuffer = modulator.transmit_add_preamble(txbuffer, freedv)\n    txbuffer = modulator.transmit_create_frame(txbuffer, freedv, b'123')\n    txbuffer = modulator.transmit_add_postamble(txbuffer, freedv)\n    txbuffer = modulator.transmit_add_silence(txbuffer, 1000)\n\n#sys.stdout.buffer.flush()\n#sys.stdout.buffer.write(txbuffer)\n#sys.stdout.buffer.flush()\ndemod(txbuffer)\n\n"
  },
  {
    "path": "tools/custom_mode_tests/over_the_air_mode_test.py",
    "content": "import sys\nsys.path.append('freedata_server')\n\nimport threading\nimport ctypes\nfrom codec2 import open_instance, api, audio_buffer, FREEDV_MODE, resampler\nimport modulator\nimport config\nimport helpers\nimport numpy as np\n\n\nclass FreeDV:\n    def __init__(self, mode, config_file):\n        self.mode = mode\n        self.config = config.CONFIG(config_file)\n        self.modulator = modulator.Modulator(self.config.read())\n        self.freedv = open_instance(self.mode.value)\n\n    def demodulate(self, txbuffer):\n        print(f\"DEMOD: {self.mode} {self.mode.value}\")\n        c2instance = open_instance(self.mode.value)\n        bytes_per_frame = int(api.freedv_get_bits_per_modem_frame(c2instance) / 8)\n        bytes_out = ctypes.create_string_buffer(bytes_per_frame)\n        api.freedv_set_frames_per_burst(c2instance, 1)\n        audiobuffer = audio_buffer(len(txbuffer))\n        nin = api.freedv_nin(c2instance)\n        audiobuffer.push(txbuffer)\n        threading.Event().wait(0.01)\n\n        while audiobuffer.nbuffer >= nin:\n            nbytes = api.freedv_rawdatarx(self.freedv, bytes_out, audiobuffer.buffer.ctypes)\n            rx_status = api.freedv_get_rx_status(self.freedv)\n            nin = api.freedv_nin(self.freedv)\n            print(f\"{rx_status} - {nin}\")\n\n            audiobuffer.pop(nin)\n\n            if nbytes == bytes_per_frame:\n                print(\"DECODED!!!!\")\n                api.freedv_set_sync(self.freedv, 0)\n\n        print(\"---------------------------------\")\n        print(\"ENDED\")\n        print(nin)\n        print(audiobuffer.nbuffer)\n\n    def write_to_file(self, txbuffer, filename):\n        with open(filename, 'wb') as f:\n            f.write(txbuffer)\n        print(f\"TX buffer written to {filename}\")\n\n# Usage example\nif __name__ == \"__main__\":\n\n    # geht\n    MODE = FREEDV_MODE.data_ofdm_250\n    RX_MODE = FREEDV_MODE.datac4\n\n    # fail\n    #MODE = FREEDV_MODE.datac4\n    #RX_MODE = FREEDV_MODE.data_ofdm_250\n\n    FRAMES = 1\n\n    freedv_instance = FreeDV(MODE, 'config.ini')\n    freedv_rx_instance = FreeDV(RX_MODE, 'config.ini')\n\n    message = b'ABC'\n    txbuffer = freedv_instance.modulator.create_burst(MODE, FRAMES, 100, message)\n    freedv_instance.write_to_file(txbuffer, 'ota_audio.raw')\n    txbuffer = np.frombuffer(txbuffer, dtype=np.int16)\n    freedv_rx_instance.demodulate(txbuffer)\n\n\n# ./src/freedv_data_raw_rx --framesperburst 2 --testframes DATAC0 - /dev/null --vv\n# aplay -f S16_LE ../raw/test_datac1_006.raw\n# cat ota_audio.raw | ./freedata_server/lib/codec2/codec2/build_macos/src/freedv_data_raw_rx DATAC0 - /dev/null -vv\n\"\"\"\nPython --> Python --> C\n\n\n\n#x = np.frombuffer(txbuffer, dtype=np.int16)\n    #resampler = resampler()\n    #txbuffer = resampler.resample8_to_48(x)\n    #txbuffer = resampler.resample48_to_8(txbuffer)\n    #print(txbuffer)\n\n\n\n\n\"\"\""
  },
  {
    "path": "tools/custom_mode_tests/plot_speed_levels.py",
    "content": "import matplotlib.pyplot as plt\nimport numpy as np\n\ncodec2_modes = {\n    'datac4': {\n        'min_snr': -4,\n        'bit_rate': 87,  # Bit rate in bits per second\n        'bandwidth': 250,  # Bandwidth in Hz\n    },\n    'data_ofdm_500': {\n        'min_snr': 1,\n        'bit_rate': 276,\n        'bandwidth': 500,\n    },\n    'datac1': {\n        'min_snr': 5,\n        'bit_rate': 980,\n        'bandwidth': 1700,\n    },\n    #'datac2000': {\n    #    'min_snr': 7.5,\n    #    'bit_rate': 1280,\n    #    'bandwidth': 2000,\n    #},\n    'data_ofdm_2438': {\n        'min_snr': 8.5,\n        'bit_rate': 1830,\n        'bandwidth': 2438,\n    },\n}\n\n\n# Extracting data from the dictionary\nsnr_values = [info['min_snr'] for info in codec2_modes.values()]\nbit_rates = [info['bit_rate'] for info in codec2_modes.values()]\nbandwidths = [info['bandwidth'] for info in codec2_modes.values()]\nmodes = list(codec2_modes.keys())  # Get the mode names\n\n\n\n# Plot bit/s vs SNR\nplt.figure(figsize=(12, 6))\nplt.subplot(1, 2, 1)\nplt.scatter(snr_values, bit_rates, color='b')\nfor i, txt in enumerate(modes):\n    plt.annotate(txt, (snr_values[i], bit_rates[i]))  # Annotate each point with mode name\nplt.plot(snr_values, bit_rates, '--', color='b')\n\nplt.yscale(\"log\")\n\nplt.xlabel('SNR (dB)')\nplt.ylabel('Bit/s')\nplt.title('Bit Rate vs SNR')\nplt.grid(True)\n\n# Plot bandwidth vs SNR\nplt.subplot(1, 2, 2)\nplt.scatter(snr_values, bandwidths, color='g')\nfor i, txt in enumerate(modes):\n    plt.annotate(txt, (snr_values[i], bandwidths[i]))  # Annotate each point with mode name\nplt.plot(snr_values, bandwidths, '--', color='g')\nplt.xlabel('SNR (dB)')\nplt.ylabel('Bandwidth (Hz)')\nplt.title('Bandwidth vs SNR')\nplt.grid(True)\n\n# Show plot\nplt.tight_layout()\nplt.show()\n"
  },
  {
    "path": "tools/custom_mode_tests/run_mode_tests.py",
    "content": "\"\"\"\nAI-Generated FreeDATA Mode Testing Script by DJ2LS using ChatGPT\n\nThis script tests different FreeDV modes for their ability to modulate and demodulate data.\nIt evaluates the following metrics:\n- Average audio volume in dB\n- Max possible audio volume in dB\n- Peak-to-Average Power Ratio (PAPR)\n- Frequency spectrum analysis using FFT\n\nThe script runs predefined mode pairs in both transmission and reception directions,\nand visualizes the results in separate plots.\n\"\"\"\n\n\nimport sys\n\nsys.path.append('freedata_server')\n\nimport ctypes\nimport threading\nimport numpy as np\nimport matplotlib.pyplot as plt\nimport pandas as pd\nfrom collections import defaultdict\nfrom scipy.fftpack import fft\nfrom codec2 import open_instance, api, audio_buffer, FREEDV_MODE, resampler\nimport modulator\nimport config\nimport helpers\n\n\nclass FreeDV:\n    def __init__(self, mode, config_file):\n        self.mode = mode\n        self.config = config.CONFIG(config_file)\n        self.modulator = modulator.Modulator(self.config.read())\n        self.freedv = open_instance(self.mode.value)\n\n    def demodulate(self, txbuffer):\n        c2instance = open_instance(self.mode.value)\n        bytes_per_frame = int(api.freedv_get_bits_per_modem_frame(c2instance) / 8)\n        bytes_out = ctypes.create_string_buffer(bytes_per_frame)\n        api.freedv_set_frames_per_burst(c2instance, 1)\n        audiobuffer = audio_buffer(len(txbuffer))\n        nin = api.freedv_nin(c2instance)\n        audiobuffer.push(txbuffer)\n        threading.Event().wait(0.01)\n\n        while audiobuffer.nbuffer >= nin:\n            nbytes = api.freedv_rawdatarx(self.freedv, bytes_out, audiobuffer.buffer.ctypes)\n            rx_status = api.freedv_get_rx_status(self.freedv)\n            nin = api.freedv_nin(self.freedv)\n            audiobuffer.pop(nin)\n            if nbytes == bytes_per_frame:\n                api.freedv_set_sync(self.freedv, 0)\n                return True  # Passed\n\n        return False  # Failed\n\n    def compute_audio_metrics(self, txbuffer):\n        \"\"\"Compute Average Volume in dB, Max Possible Volume, PAPR, and FFT for a given signal.\"\"\"\n        # Ensure correct dtype and normalize to float range [-1, 1]\n        txbuffer = txbuffer.astype(np.float32) / 32768.0\n\n        avg_volume = np.mean(np.abs(txbuffer))\n        avg_volume_db = 20 * np.log10(avg_volume) if avg_volume > 0 else -np.inf\n        max_possible_volume_db = 20 * np.log10(1.0)  # Max possible volume when signal is fully utilized\n        max_val = np.max(np.abs(txbuffer))\n\n        # Prevent division by zero and ensure reasonable values\n        if avg_volume == 0 or max_val == 0:\n            papr = 0\n        else:\n            papr = 10 * np.log10((max_val ** 2) / (avg_volume ** 2))\n\n        # Compute FFT\n        fft_values = np.abs(fft(txbuffer))[:len(txbuffer) // 2]\n        freqs = np.fft.fftfreq(len(txbuffer), d=1 / 8000)[:len(txbuffer) // 2]  # Assuming 8 kHz sample rate\n\n        return avg_volume_db, max_possible_volume_db, papr, freqs, fft_values\n\n    def write_to_file(self, txbuffer, filename):\n        with open(filename, 'wb') as f:\n            f.write(txbuffer)\n\n\ndef plot_audio_metrics(avg_volume_per_mode, avg_max_volume_per_mode, avg_papr_per_mode):\n    \"\"\"Plot audio metrics in a separate window.\"\"\"\n    plt.figure(figsize=(10, 5))\n    modes = list(avg_volume_per_mode.keys())\n    volume_values = list(avg_volume_per_mode.values())\n    max_volume_values = list(avg_max_volume_per_mode.values())\n    papr_values = list(avg_papr_per_mode.values())\n\n    plt.plot(modes, volume_values, marker='o', linestyle='-', label='Average Volume (dB)')\n    plt.plot(modes, max_volume_values, marker='x', linestyle='--', label='Max Possible Volume (dB)', color='blue')\n    plt.plot(modes, papr_values, marker='s', linestyle='-', label='Average PAPR (dB)', color='red')\n    plt.ylabel('Volume (dB) / PAPR (dB)')\n    plt.xlabel('Modes')\n    plt.title('Audio Metrics per Mode')\n    plt.legend()\n    plt.xticks(rotation=45, ha='right')\n    plt.pause(0.1)\n\n\ndef plot_fft_per_mode(fft_data):\n    \"\"\"Plot FFTs in a separate window.\"\"\"\n    for mode, (freqs, fft_values) in fft_data.items():\n        plt.figure(figsize=(8, 4))\n        plt.plot(freqs, fft_values, label=f'FFT {mode}')\n        plt.xlabel('Frequency (Hz)')\n        plt.ylabel('Magnitude')\n        plt.title(f'FFT of {mode}')\n        plt.legend()\n    plt.pause(0.1)\n\n\ndef plot_results_summary(results):\n    \"\"\"Plot pass/fail results for each mode pair.\"\"\"\n    mode_pairs = [f\"{tx} -> {rx}\" for tx, rx, _, _, _, _ in results]\n    pass_fail = [1 if result[2] else -1 for result in results]  # Convert True/False to 1/0\n    colors = ['green' if r == 1 else 'red' for r in pass_fail]\n\n    plt.figure(figsize=(10, 5))\n    plt.bar(mode_pairs, pass_fail, color=colors)\n    plt.ylabel('Pass (1) / Fail (0)')\n    plt.xlabel('Mode Pairs')\n    plt.title('Mode Constellation Pass/Fail Summary')\n    plt.xticks(rotation=45, ha='right')\n    plt.ylim(-1, 1)  # Ensure bars are properly visible\n    plt.show()\n\ndef test_freedv_mode_pairs(mode_pairs, config_file='config.ini'):\n    results = []\n    fft_data = {}\n    volume_per_mode = {}\n    max_volume_per_mode = {}\n    papr_per_mode = {}\n\n    for tx_mode, rx_mode in mode_pairs:\n        for test_tx, test_rx in [(tx_mode, rx_mode), (rx_mode, tx_mode)]:\n            freedv_tx = FreeDV(test_tx, config_file)\n            freedv_rx = FreeDV(test_rx, config_file)\n\n            message = b'ABC'\n            txbuffer = freedv_tx.modulator.create_burst(test_tx, 1, 100, message)\n            txbuffer = np.frombuffer(txbuffer, dtype=np.int16)\n\n            result = freedv_rx.demodulate(txbuffer)\n            avg_volume_db, max_possible_volume_db, papr, freqs, fft_values = freedv_tx.compute_audio_metrics(txbuffer)\n            results.append((test_tx.name, test_rx.name, result, avg_volume_db, max_possible_volume_db, papr))\n            volume_per_mode[test_tx.name] = avg_volume_db\n            max_volume_per_mode[test_tx.name] = max_possible_volume_db\n            papr_per_mode[test_tx.name] = papr\n            fft_data[test_tx.name] = (freqs, fft_values)\n\n    return results, volume_per_mode, max_volume_per_mode, papr_per_mode, fft_data\n\n\nif __name__ == \"__main__\":\n    test_mode_pairs = [\n        (FREEDV_MODE.datac13, FREEDV_MODE.data_ofdm_200),\n        (FREEDV_MODE.datac14, FREEDV_MODE.datac14),\n        (FREEDV_MODE.datac4, FREEDV_MODE.data_ofdm_250),\n        (FREEDV_MODE.data_ofdm_500, FREEDV_MODE.data_ofdm_500),\n        (FREEDV_MODE.datac0, FREEDV_MODE.datac0),\n        (FREEDV_MODE.datac3, FREEDV_MODE.datac3),\n        (FREEDV_MODE.datac1, FREEDV_MODE.data_ofdm_1700),\n        (FREEDV_MODE.data_ofdm_2438, FREEDV_MODE.data_ofdm_2438),\n    ]\n    results, avg_volume_per_mode, avg_max_volume_per_mode, avg_papr_per_mode, fft_data = test_freedv_mode_pairs(\n        test_mode_pairs)\n    plot_audio_metrics(avg_volume_per_mode, avg_max_volume_per_mode, avg_papr_per_mode)\n    plot_fft_per_mode(fft_data)\n    plot_results_summary(results)\n"
  },
  {
    "path": "tools/macOS/README.md",
    "content": "## FreeDATA Scripts for Apple macOS\n\n### Preface\n\nThe installation requires an already working MacPorts or Homebrew installation on your Mac, please follow the corresponding instrutions on https://www.macports.org/install.php or https://brew.sh  \nThe scripts run on Apple Silicon. It's not tested on Intel Macs.\\\nI include two short instruction how to install MacPorts or Homebrew. Please install only one of them!\n\n#### Short MacPorts installation instructions\n\nInstall the Apple Command Line Tools\\\nOpen the Terminal, you find it in the Utilities Folder inside the Applications Folder, and execute the following command:\n\n```\n% xcode-select --install\n```\n\nDownload the required MacPorts version from the link above and install it as usual. (Double click the pkg and follow the instructions)\nIf you have the Terminal open, please close it completely [command+q] to make shure that the MacPorts environment is loaded.\n\n#### Short Homebrew installation instructions\n\nInstall the Apple Command Line Tools\\\nOpen the Terminal, you find it in the Utilities Folder inside the Applications Folder, and execute the following command:\n\n```\n% xcode-select --install\n```\n\nThis will take some time, depending on the speed of your mac and internet connections. After successfull installation install brew:\n\n```\n% /bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"\n```\n\nbrew tells you at the end of the installation, to execute some commands. please don't forget them. Close the Terminal completely [command+q]\\\n\n### Install FreeDATA\n\nOpen the Terminal and execute the following commands:\n\n```\n% mkdir ~/freedata\n% cd ~/freedata\n% curl -o install-freedata-macos.sh https://raw.githubusercontent.com/DJ2LS/FreeDATA/main/install-freedata-macos.sh\n% curl -o run-freedata-macos.sh https://raw.githubusercontent.com/DJ2LS/FreeDATA/main/run-freedata-macos.sh\n\n% bash install-freedata-macos.sh\n```\n\n### Run FreeDATA\n\nAs usual, open the Terminal and execute the following commands:\n\n```\n$ cd ~/freedata\n$ bash run-freedata-macos.sh\n```\n\nYour browser should open the FreeDATA webinterface. Please follow the instructions on https://wiki.freedata.app to configure FreeDATA.\n"
  },
  {
    "path": "tools/macOS/install-freedata-macos.sh",
    "content": "#!/bin/bash\n#\n# Simple script to install FreeDATA in Linux\n# Dj Merrill - N1JOV\n#\n# modified Version for macOS\n# All credits to the original creators\n# Oliver - HB9HBO\n# \n# Run this script by typing in the terminal (without the quotes):\n# \"bash install-freedata-macos.sh\" to install from the main branch \n# \"bash install-freedata-macos.sh develop\" to install from the develop branch\n#\n# This script creates three subdirectories in the directory it is run\n# FreeDATA: Contains the FreeDATA software\n# FreeDATA-venv: Contains the Python virtual environment\n# FreeDATA-hamlib: Contains the hamlib libraries\n#\n# FreeDATA config file is stored in $HOME/Library/Application Support/FreeDATA/config.ini\n# See the run-freedata-macos.sh for more details\n#\n#\n#\n# Changelog:\n# 2.4:\t29 Jan 2025 (hb9hbo)\n#\tOS version handling and further macports refinement\n#\n# 2.3:  26 Jan 2025 (vk1kcm)\n#\tclean up macport install\n#\n# 2.2:\t24 Jan 2025 (hb9hbo)\n#\tinstall with brew and macports\n#\n# 2.1:\t23 Jan 2025 (hb9hbo)\n#\tInitial macOS version\n#\n# 2.0:\t04 Oct 2024 (deej)\n# \tAdd support for Fedora 40\n#\n# 1.9:\t14 Sep 2024 (deej)\n# \tTweak OS version checking section to handle minor OS revisions better\n#\n# 1.8:\t23 July 2024 ( DJ2LS )\n# \tAdd support for browser based gui\n#\n# 1.7:\t31 May 2024 ( DJ2LS )\n# \tAdd support for version specific setup\n#\n# 1.6:\t22 May 2024\n#\tReflect directory name changes in prep for merging develop to main\n#\n# 1.5:\t12 May 2024\n#\t\"dr-freedata-001\" branch of codec2 merged to main so we don't\n#\tneed to checkout that branch specifically\n#\n# 1.4:\t05 May 2024\n#\tChange to \"dr-freedata-001\" branch of codec2 for develop mode\n#\tAdded comments in scripts and README.txt for config file location\n#\tIf hamlib 4.5.5 is already in FreeDATA-hamlib, don't reinstall\n#\n# 1.3:\t02 May 2024\n#\tRemove dependency on distro supplied hamlib library which can be old\n#\tDownload and install hamlib 4.5.5 into ./FreeDATA-hamlib\n#\tAdd support for Debian 11 and Ubuntu 22.04\n#\n# 1.2:\t30 Apr 2024\n#\tRemove dependency on distro supplied nodejs which can be too old\n#\tInstall nodejs version 20 into ~/.nvm\n#\n# 1.1:\t26 Apr 2024\n#\tAdd support for installing from FreeDATA develop branch\n#\tAdd support for Ubuntu 24.04\n#\t\n# 1.0:\tInitial release 25 Apr 2024 supporting Debian 12\n#\n\ncase $1 in\n   \"\" | \"main\")\n\targs=\"main\"\n   ;;\n   \"develop\")\n\targs=\"develop\"\n   ;;\n  v*)\n  args=$1\n  ;;\n  *)\n\techo \"Argument\" $1 \"not valid.  Exiting.\"\n\texit 1\n   ;;\nesac\n\n\n\n\n#///////////////////////////////////////////////////////////////////////////////\n# find macos and version\t\n# \nosname=`sw_vers -productName`\nosversion=`sw_vers -productVersion | cut -d\".\" -f1`\n\n\n#////////////////////////////////////////////////////////////////////////////////\n# find installed additional Package Manager\n#\t\nport=`which port`\nbrew=`which brew`\n\nif [[ -x $port && -x $brew ]];\nthen\n\techo \"MacPorts and homebrew installed!\"\n\techo \"selecting MacPorts for installation\"\n\tpkgmgr='macports'\n\tbrew=''\nfi\n\nif [[ -x $port  ]];\nthen\n\tpkgmgr='macports'\n\tpkgmgrversion=`port version | cut -d\" \" -f2 | awk -F. '{print $1 \".\" $2}'`\nelif [[ -x $brew ]];\nthen\n\tpkgmgr='homebrew'\nelse\n\techo \"Neither MacPorts nor homebrew installed\"\n\techo \"please install one!\"\n\texit 1\nfi\n\n\necho \"Running on $osname version $osversion with $pkgmgr\"\n\n\necho \"*************************************************************************\"\necho \"Installing software prerequisites\"\necho \"If prompted, enter your password to run the sudo command\"\necho \"*************************************************************************\"\n\n\n\n#////////////////////////////////////////////////////////////////////////////////\n# Variables for MacPorts install\n# we don't want break an already installed and working python3\n#\nmp_pkgs=\"wget cmake portaudio nvm nodejs22 npm10\"\nmp_path=\"/opt/local/bin\"\nmp_py_version=\"313\"\nmp_pkg_python=\"python$mp_py_version\"\nmp_pkg_pip=\"py$mp_py_version-pip\"\nmp_pkg_virtualenv=\"py$mp_py_version-virtualenv\"\nmp_path_python=\"$mp_path/python3\"\nmp_path_pip=\"$mp_path/pip3\"\nmp_path_virtualenv=\"$mp_path/virtualenv\"\nmp_select_python=0\nmp_select_pip=0\nmp_select_virtualenv=0\n\ncase $osname in\n\t\"macOS\")\n\tcase $osversion in\n\t\t\"14\" | \"15\")\n\t\t\tcase $pkgmgr in\n\t\t\t\t\"macports\")\n\n\t\t\t\t\t#////////////////////////////////////////////////////////////////////////////////\n\t\t\t\t\t# update the MacPorts package cache\n\t\t\t\t\t#\n\t\t\t\t\techo \"Installing FreeDATA on top of MacPorts\"\n\t\t\t\t\tsudo port selfupdate\n\n\n\t\t\t\t\t#////////////////////////////////////////////////////////////////////////////////\n\t\t\t\t\t# Check for working python3 in macports\n\t\t\t\t\t#\n\t\t\t\t\tif [ ! -f \"$mp_path_python\" ] && [ ! -x \"$mp_path_python\" ];\n\t\t\t\t\tthen\n\t\t\t\t\t\techo \"Python3 not installed, add $mp_pkg_python\"\n\t\t\t\t\t\tmp_pkgs=\"$mp_pkg_python $mp_pkgs\"\n\t\t\t\t\t\tmp_select_python=1\n\t\t\t\t\tfi\n\t\n\t\n\t\t\t\t\t#////////////////////////////////////////////////////////////////////////////////\n\t\t\t\t\t# Check for working pip in macports\n\t\t\t\t\t#\n\t\t\t\t\tif [ ! -f \"$mp_path_pip\" ] && [ ! -x \"$mp_path_pip\" ];\n\t\t\t\t\tthen\n\t\t\t\t\t\techo \"Python pip not installed, add $mp_pkg_pip\"\n\t\t\t\t\t\tmp_pkgs=\"$mp_pkg_pip $mp_pkgs\"\n\t\t\t\t\t\tmp_select_pip=1\n\t\t\t\t\tfi\n\t\n\n\t\t\t\t\t#////////////////////////////////////////////////////////////////////////////////\n\t\t\t\t\t# Check for installed virtualenv  in macports\n\t\t\t\t\t#\n\t\t\t\t\tif [ ! -f \"$mp_path_virtualenv\" ] && [ ! -x \"$mp_path_virtualenv\" ];\n\t\t\t\t\tthen\n\t\t\t\t\t\techo \"Python pip not installed, add $mp_pkg_virtualenv\"\n\t\t\t\t\t\tmp_pkgs=\"$mp_pkg_virtualenv $mp_pkgs\"\n\t\t\t\t\t\tmp_select_virtualenv=1\n\t\t\t\t\tfi\n\t\n\t\n\t\t\t\t\t#////////////////////////////////////////////////////////////////////////////////\n\t\t\t\t\t# install required packages\n\t\t\t\t\t#\n\t\t\t\t\techo \"Installing required Packages.\"\t\t\t\n\t\t\t\t\tsudo port -N install $mp_pkgs\n\t\n\t\n\t\t\t\t\t#////////////////////////////////////////////////////////////////////////////////\n\t\t\t\t\t# select python3.10 and/or pip313 as the default version, if not installed\n\t\t\t\t\t#\n\t\t\t\t\tif [ \"$mp_select_python\" -eq 1 ];\n\t\t\t\t\tthen\n\t\t\t\t\t\techo \"Selecting $mp_pkg_python\"\n\t\t\t\t\t\tsudo port select --set python3 \"python$mp_py_version\"\n\t\t\t\t\tfi\n\t\t\t\t\tif [ \"$mp_select_pip\" -eq 1 ];\n\t\t\t\t\tthen\n\t\t\t\t\t\techo \"Selecting $mp_pkg_pip\"\n\t\t\t\t\t\tsudo port select --set pip3 \"pip$mp_py_version\"\n\t\t\t\t\tfi\n\t\t\t\t\tif [ \"$mp_select_virtualenv\" -eq 1 ];\n\t\t\t\t\tthen\n\t\t\t\t\t\techo \"Selecting $mp_pkg_virtualenv\"\n\t\t\t\t\t\tsudo port select --set virtualenv \"virtualenv$mp_py_version\"\n\t\t\t\t\tfi\n\n\t\t\t\t\t#////////////////////////////////////////////////////////////////////////////////\n\t\t\t\t\t# adding macports Path to $PATH\n\t\t\t\t\t#\n\t\t\t\t\tif [[ ! $PATH =~ \"$mp_path\" ]];\n\t\t\t\t\tthen\n\t\t\t\t\t\techo \"Adding $mp_path to \\$PATH\"\n\t\t\t\t\t\texport PATH=\"$mp_path\":$PATH\n\t\t\t\t\tfi\n\t\t\t\t\t;;\n\t\n\t\t\t\t\"homebrew\")\n\t\t\t\t\t#/////////////////////////////////////////////////////////////////////////\n\t\t\t\t\t# more testing needed\n\t\t\t\t\techo \"Installing FreeDATA on top of homebrew\"\n\t\t\t\t\tbrew update\n\t\t\t\t\tbrew install wget cmake portaudio python pyenv-virtualenv nvm node@22 npm\n\t\t\t\t\texport PATH=\"/opt/homebrew/opt/node@22/bin:/opt/homebrew/bin:$PATH\"\n\t\t\t\t\t;;\n\t\n\t\t\t\t*)\n\t\t\t\t\techo \"*************************************************************************\"\n\t\t\t\t\techo \"$osname $osversion $pkgmgr\"\n\t\t\t\t\techo \"This installation is not compatible, please install macports or homebrew\"\n\t\t\t\t\techo \"*************************************************************************\"\n\t\t\t\t\texit 1\n\t\t\t   \t\t;;\n\t\t\tesac\n\t\t\t;;\n\n\t\t*)\n\t\t\techo \"*************************************************************************\"\n\t\t\techo \"This version of MacOS is not yet supported by this script.\"\n\t\t\techo $osname $osversion\n\t\t\techo \"*************************************************************************\"\n\t\t\texit 1\n\t\t\t;;\n\tesac\n\t;;\n\n\t*)\n\t\techo \"*************************************************************************\"\n\t\techo \"This Operating System is not supported\"\n\t\techo $osname $osversion\n\t\techo \"*************************************************************************\"\n\t\texit 1\n\t\t;;\n\nesac\n\n\n\n#///////////////////////////////////////////////////////////////////////////////\n# find No CPU's and use half of them for compiling (make -j $ncpu)\n#\nncpu=`sysctl hw.ncpu | awk '{print $2}'`\nncpu=$(($ncpu / 2))\nif [ $ncpu -lt 1 ];\nthen\n\tncpu=1\nfi\n\n\n\necho \"*************************************************************************\"\necho \"Checking for hamlib 4.5.5 in FreeDATA-hamlib\"\necho \"*************************************************************************\"\n\nif [ -d \"FreeDATA-hamlib.old\" ];\nthen\n\trm -rf FreeDATA-hamlib.old\nfi\n\nif [ -d \"FreeDATA-hamlib\" ];\nthen\n\tif [ -f \"./FreeDATA-hamlib/bin/rigctl\" ];\n\tthen\n\t\tcheckhamlibver=`./FreeDATA-hamlib/bin/rigctl --version | cut -f3 -d\" \"`\n\t\tif [ \"$checkhamlibver\" != \"4.5.5\" ];\n\t\tthen\n\t\t\tmv FreeDATA-hamlib FreeDATA-hamlib.old\n\t\telse\n\t\t\techo \"Hamlib 4.5.5 found, no installation needed.\"\n\t\tfi\n\telse\n\t\tmv FreeDATA-hamlib FreeDATA-hamlib.old\n\tfi\nfi\n\nif [ ! -d \"FreeDATA-hamlib\" ];\nthen\n\techo \"Installing hamlib 4.5.5 into FreeDATA-hamlib\"\n\tcurdir=`pwd`\n\twget https://github.com/Hamlib/Hamlib/releases/download/4.5.5/hamlib-4.5.5.tar.gz\n\tif [ -f \"hamlib-4.5.5.tar.gz\" ];\n\tthen\n\t\ttar -xf hamlib-4.5.5.tar.gz\n\telse\n\t\techo \"Something went wrong.  hamlib-4.5.5.tar.gz not downloaded.\"\n\t\texit 1\n\tfi\n\tif [ -d \"hamlib-4.5.5\" ];\n\tthen\n\t\tcd hamlib-4.5.5\n\n\n\t\t#///////////////////////////////////////////////////////////////////////////////\n\t\t# make sure the Libraries and Includes where found, no need for libusb\n\t\t#\n\t\t./configure --prefix=$curdir/FreeDATA-hamlib CPPFLAGS=\"-I/opt/local/include\" LDFLAGS=\"-L/opt/local/lib/\" --without-libusb\n\t\tmake -j $ncpu\n\t\tmake install\n\t\tcd ..\n\telse\n\t\techo \"Something went wrong.  hamlib-4.5.5 directory not found.\"\n\t\texit 1\n\tfi\n\tif [ ! -f \"$curdir/FreeDATA-hamlib/bin/rigctl\" ];\n\tthen\n\t\techo \"Something went wrong.\" $curdir\"/FreeDATA.hamlib/bin/rigctl not found.\"\n                exit 1\n\telse\n\t\techo \"Cleaning up files from hamlib build.\"\n\t\trm -f hamlib-4.5.5.tar.gz\n\t\trm -rf hamlib-4.5.5\n        fi\nfi\n\n\necho \"*************************************************************************\"\necho \"Checking for old FreeDATA directories\"\necho \"*************************************************************************\"\nif [ -d \"FreeDATA.old\" ];\nthen\n\trm -rf FreeDATA.old\nfi\nif [ -d \"FreeDATA-venv.old\" ];\nthen\n\trm -rf FreeDATA-venv.old\nfi\nif [ -d \"FreeDATA\" ];\nthen\n\tmv FreeDATA FreeDATA.old\nfi\nif [ -d \"FreeDATA-venv\" ];\nthen\n\tmv FreeDATA-venv FreeDATA-venv.old\nfi\n\necho \"*************************************************************************\"\necho \"Creating Python Virtual Environment FreeDATA-venv\"\necho \"*************************************************************************\"\npython3 -m venv FreeDATA-venv\n\necho \"*************************************************************************\"\necho \"Activating the Python Virtual Environment\"\necho \"*************************************************************************\"\nif [ -f \"./FreeDATA-venv/bin/activate\" ];\nthen\n\tsource ./FreeDATA-venv/bin/activate\nelse\n\techo \"Something went wrong.  FreeDATA-venv virtual environment not created properly.\"\n\texit 1\nfi\n\necho \"*************************************************************************\"\necho \"Updating pip and wheel\"\necho \"*************************************************************************\"\npip3 install --upgrade pip wheel\n\necho \"*************************************************************************\"\necho \"Downloading the FreeDATA software from the git repo\"\necho \"*************************************************************************\"\nif [ \"$args\" == \"develop\" ];\nthen\n  echo \"Downloading development version\"\n  git clone https://github.com/DJ2LS/FreeDATA.git -b develop\n\tgit checkout develop\nelif [[ $args == v* ]];\nthen\n    echo \"Downloading specific version: $args\"\n    git clone https://github.com/DJ2LS/FreeDATA.git -b $args\nelse\n    echo \"Downloading regular version\"\n\tgit clone https://github.com/DJ2LS/FreeDATA.git\nfi\n\n\necho \"*************************************************************************\"\necho \"Changing Directory into FreeDATA\"\necho \"*************************************************************************\"\nif [ -d \"FreeDATA\" ];\nthen\n\tcd FreeDATA\nelse\n\techo \"Something went wrong.  FreeDATA software not downloaded from git.\"\n\texit 1\nfi\n\n\necho \"*************************************************************************\"\necho \"Installing required Python programs into the virtual environment\"\necho \"*************************************************************************\"\n\n#///////////////////////////////////////////////////////////////////////////////\n# Compiler can't find the Includes and Libraries\n#\t\nif [ $pkgmgr == \"macports\" ];\nthen\n\tCFLAGS=\"-I/opt/local/include\" LDFLAGS=\"-L/opt/local/lib\" pip3 install --upgrade -r requirements.txt\nfi\nif [ $pkgmgr == \"homebrew\" ];\nthen\n\tCFLAGS=\"-I/opt/homebrew/include\" LDFLAGS=\"-L/opt/homebrew/lib\" pip3 install --upgrade -r requirements.txt\nfi\n\n\necho \"*************************************************************************\"\necho \"Changing into the server directory\"\necho \"*************************************************************************\"\ncd freedata_server/lib\n\n\necho \"*************************************************************************\"\necho \"Checking and removing any old codec2 libraries\"\necho \"*************************************************************************\"\nif [ -d \"codec2\" ];\nthen\n\tmv codec2 codec2.old\nfi\n\necho \"*************************************************************************\"\necho \"Downloading the latest codec library\"\necho \"*************************************************************************\"\ngit clone https://github.com/drowe67/codec2.git\n\n\necho \"*************************************************************************\"\necho \"Changing into the codec2 library directory\"\necho \"*************************************************************************\"\nif [ -d \"codec2\" ];\nthen\n\tcd codec2\nelse\n\techo \"Something went wrong.  Codec2 software not downloaded from git.\"\n\texit 1\nfi\n\t\necho \"*************************************************************************\"\necho \"Setting up the codec2 build\"\necho \"*************************************************************************\"\nmkdir build_macos\ncd build_macos\n\necho \"*************************************************************************\"\necho \"Building the codec2 library\"\necho \"*************************************************************************\"\ncmake ..\nmake -j $ncpu\n\nif [ ! -f \"src/libcodec2.1.2.dylib\" ];\nthen\n\techo \"Something went wrong.  Codec2 software not built.\"\n\texit 1\nfi\n\necho \"*************************************************************************\"\necho \"Building the FreeDATA GUI frontend\"\necho \"*************************************************************************\"\ncd ../../../..\ncd freedata_gui\nnpm i\nnpm run build\n\n# Return to the directory we started in\ncd ../..\n\necho \"\"\necho \"*************************************************************************\"\necho \"FreeDATA is installed, run with 'bash run-freedata-macos.sh'\"\necho \"*************************************************************************\"\necho \"\"\n"
  },
  {
    "path": "tools/macOS/run-freedata-macos.sh",
    "content": "#!/bin/bash\n#\n# Simple script to run FreeDATA in Linux\n# Dj Merrill - N1JOV\n#\n# slightly modified Version for macOS\n# All credits to the original creators\n# Oliver - HB9HBO\n#\n# Run this script in the directory that contains the \"FreeDATA\", \n# \"FreeDATA-venv\", and \"FreeDATA-hamlib\" directories \n# created by the install-freedata-linux.sh script\n#\n# Two log files are created in this directory:\n# FreeDATA-server.log: debug output from the server process\n# FreeDATA-client.log: debug output from the GUI front end\n# To view live, \"tail -f FreeDATA-server.log\" or \"tail -f FreeDATA-client.log\"\n#\n# We expect the config.ini file to be at $HOME/.config/FreeDATA/config.ini\n# If it isn't found, we copy config.ini.example there\n#\n# 2.0:\t30 Jan 2025 (HB9HBO)\n#\tchecks if MacPorts or brew is installed\n# 1.9:\t29.Jan 2025 (HB9HBO)\n#\tMacOS version \n# 1.8:  22 May 2024 (DJ2LS)\n#\tadd support for browser based gui\n# 1.7:  22 May 2024\n#\tSlightly change the way we shutdown the server\n# 1.6:  05 May 2024\n#\tDon't stop rigctld if it was started separate from FreeDATA\n#\tWe only want to clean up FreeDATA initiated processes\n# 1.5:  05 May 2024\n#\tCheck for rigctld at exit and stop it if needed\n# 1.4:  05 May 2024\n#\tAdded comments on how to view log outputs in realtime\n# 1.3:  02 May 2024\n#\tAdd support for hamlib installed by FreeDATA install script\n# 1.2:  30 Apr 2024\n# 1.1:  26 Apr 2024\n# 1.0:\t25 Apr 2024 Initial release\n#\n\n\n#///////////////////////////////////////////////////////////////\n# verify installation of a pakage manager\n\nport=`which port`\nbrew=`which brew`\n\nif [ ! -x \"$port\" ] && [ ! -x \"$brew\" ];\nthen\n\techo \"Macports or Homebrew not found in PATH!\"\n\techo \"Maybe you forgot adding the search path to your .bashrc or .zprofile?\"\n\techo \"Or try a logout/login, so the ENV Variables would setup correctly \"\n\texit 1\nfi\n\n\n\n# Set path to find our hamlib install\nexport PATH=./FreeDATA-hamlib/bin:$PATH\nexport LD_LIBRARY_PATH=./FreeDATA-hamlib/lib:$LD_LIBRARY_PATH\n\nif [ ! -f \"FreeDATA-hamlib/bin/rigctl\" ];\nthen\n\techo \"Something went wrong.  FreeDATA-hamlib/bin/rigctl not found.\"\n\texit 1\nfi\n\n# Activate the Python Virtual Environment\nsource ./FreeDATA-venv/bin/activate\n\n# Check to see if there is an old server running, and stop it if there is\ncheckoldserver=`ps auxw | grep FreeDATA | grep server.py`\n\nif [ ! -z \"$checkoldserver\" ];\nthen\n\toldserverpid=`echo $checkoldserver | cut -d\" \" -f2`\n\techo \"*************************************************************************\"\n\techo \"Found old FreeDATA server at PID\" $oldserverpid \"- stopping it\"\n\techo \"*************************************************************************\"\n\tkill $oldserverpid\n\tsleep 7\nfi\n\n# Check for an already running rigctld process\n# This was probably started by other means so we should leave this \n# alone when we exit\ncheckrigexist=`ps auxw | grep -i rigctld | grep -v grep`\n\necho \"*************************************************************************\"\necho \"Running the FreeDATA server component\"\necho \"*************************************************************************\"\n\n# New versions use freedata_server, old version use modem\nif [ -d \"FreeDATA/freedata_server\" ];\nthen\n\tserverdir=\"FreeDATA/freedata_server\"\nelse\n\tserverdir=\"FreeDATA/modem\"\nfi\n\n\n#////////////////////////////////////////////////////////////////\n#\tChanges for macOS\n#\tPut the config and DB-file on a macOS like location\n#\nif [ ! -d $HOME/Library/Application\\ Support/FreeDATA ];\nthen\n\tmkdir -p $HOME/Library/Application\\ Support/FreeDATA\nfi\nif [ ! -f $HOME/Library/Application\\ Support/FreeDATA/config.ini ];\nthen\n\techo \"*************************************************************************\"\n\techo \"No config file found.  Copying example config file to\"\n\techo $HOME/Library/Application\\ Support/FreeDATA/config.ini\n\techo \"*************************************************************************\"\n\n\tcp $serverdir/config.ini.example $HOME/Library/Application\\ Support/FreeDATA/config.ini\n\n\n\t#////////////////////////////////////////////////////////////////\n\t# Change the Server Port, macOS uses TCP 5000 for AirPlay\n\t#\n\tsed -i'' -e 's/modemport = 5000/modemport = 5050/' $HOME/Library/Application\\ Support/FreeDATA/config.ini\n\nfi\n\n\n#////////////////////////////////////////////////////////////////\n#\tConfig and DB-File macOS like\n#\nFREEDATA_CONFIG=$HOME/Library/Application\\ Support/FreeDATA/config.ini FREEDATA_DATABASE=$HOME/Library/Application\\ Support/FreeDATA/freedata-messages.db python3 $serverdir/server.py > FreeDATA-server.log 2>&1 &\nserverpid=$!\necho \"Process ID of FreeDATA server is\" $serverpid\n\n\n\n# Function to handle Ctrl-C\nfunction ctrl_c() {\n    echo \"*************************************************************************\"\n    echo \"Stopping the server component\"\n    echo \"*************************************************************************\"\n    kill -INT $serverpid\n\n\t#################################################################\n\t# \tmacOS Change 5s to 5, doesn't like s\n    # Give time for the server to clean up rigctld if needed\n    sleep 5\n\n    # If rigctld was already running before starting FreeDATA, leave it alone\n    # otherwise we should clean it up\n    if [ -z \"$checkrigexist\" ]; then\n        # rigctld was started by FreeDATA and should have stopped when the\n        # server exited.  If it didn't, stop it now.\n        checkrigctld=$(ps auxw | grep -i rigctld | grep -v grep)\n        if [ ! -z \"$checkrigctld\" ]; then\n            echo \"*************************************************************************\"\n            echo \"Stopping rigctld\"\n            echo \"*************************************************************************\"\n            rigpid=$(echo $checkrigctld | awk '{print $2}')\n            kill $rigpid\n        fi\n    fi\n\n    # Return to the directory we started in\n    cd ..\n\n    # Exit the script\n    exit 0\n}\n\n\n# Trap Ctrl-C (SIGINT) and call the ctrl_c function\ntrap ctrl_c SIGINT\n\n# Wait indefinitely for Ctrl-C\necho \"Server started with PID $serverpid. Press Ctrl-C to stop.\"\nwhile true; do\n    sleep 1\ndone\n\n"
  },
  {
    "path": "tools/run-server.sh",
    "content": "FREEDATA_CONFIG=freedata_server/config.ini FREEDATA_DATABASE=freedata_server/freedata-messages.db python3 freedata_server/server.py\n"
  },
  {
    "path": "tools/run-tests.sh",
    "content": "#npm test --prefix freedata_gui\npython3 -m unittest discover tests\n\n"
  },
  {
    "path": "tools/socket_interface/socket_client.py",
    "content": "import socket\nimport threading\n\n\ndef receive_messages(sock):\n    while True:\n        try:\n            # Receive messages from the server\n            data = sock.recv(48)\n            if not data:\n                # If no data is received, break out of the loop\n                print(\"Disconnected from server.\")\n                break\n            print(f\"\\nReceived from server: {data.decode()}\\n> \", end='')\n        except Exception as e:\n            print(f\"Error receiving data: {e}\")\n            sock.close()\n            break\n\n\ndef tcp_client(server_ip, server_port):\n    # Create a socket object\n    client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\n\n    # Connect the client to the server\n    client_socket.connect((server_ip, server_port))\n\n    print(f\"Connected to server {server_ip} on port {server_port}\")\n\n    # Start the receiving thread\n    threading.Thread(target=receive_messages, args=(client_socket,), daemon=True).start()\n\n    try:\n        while True:\n            # Send data to the server\n            message = input(\"> \")\n            if message.lower() == 'quit':\n                break\n            message += '\\r'\n            client_socket.sendall(message.encode('utf-8'))\n    except Exception as e:\n        print(f\"An error occurred: {e}\")\n    finally:\n        # Close the connection when done\n        client_socket.close()\n        print(\"Connection closed.\")\n\n\n# Example usage\nif __name__ == \"__main__\":\n    SERVER_IP = \"127.0.0.1\"  # Server IP address\n    SERVER_PORT = 8300  # Server port number\n    tcp_client(SERVER_IP, SERVER_PORT)\n"
  },
  {
    "path": "tools/socket_interface/socket_data_client.py",
    "content": "import socket\nimport threading\n\n\ndef receive_messages(sock):\n    while True:\n        try:\n            # Receive messages from the server\n            data = sock.recv(48)\n            if not data:\n                # If no data is received, break out of the loop\n                print(\"Disconnected from server.\")\n                break\n            print(f\"\\nReceived from server: {data.decode()}\\n> \", end='')\n        except Exception as e:\n            print(f\"Error receiving data: {e}\")\n            sock.close()\n            break\n\n\ndef tcp_client(server_ip, server_port):\n    # Create a socket object\n    client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\n\n    # Connect the client to the server\n    client_socket.connect((server_ip, server_port))\n\n    print(f\"Connected to server {server_ip} on port {server_port}\")\n\n    # Start the receiving thread\n    threading.Thread(target=receive_messages, args=(client_socket,), daemon=True).start()\n\n    try:\n        while True:\n            # Send data to the server\n            message = input(\"> \")\n            if message.lower() == 'quit':\n                break\n            client_socket.sendall(message.encode('utf-8'))\n    except Exception as e:\n        print(f\"An error occurred: {e}\")\n    finally:\n        # Close the connection when done\n        client_socket.close()\n        print(\"Connection closed.\")\n\n\n# Example usage\nif __name__ == \"__main__\":\n    SERVER_IP = \"127.0.0.1\"  # Server IP address\n    SERVER_PORT = 8301  # Server port number\n    tcp_client(SERVER_IP, SERVER_PORT)\n"
  }
]